diff --git a/Make.config b/Make.config index b73afe176d..58b9e706c7 100644 --- a/Make.config +++ b/Make.config @@ -213,8 +213,8 @@ MACCATALYST_NUGET_VERSION_FULL=$(MACCATALYST_NUGET_VERSION_NO_METADATA)+$(NUGET_ # Xcode version should have both a major and a minor version (even if the minor version is 0) XCODE_VERSION=16.0 -XCODE_URL=https://dl.internalx.com/internal-files/xcodes/Xcode_16-beta.xip -XCODE_DEVELOPER_ROOT=/Applications/Xcode_16.0.0-beta.app/Contents/Developer +XCODE_URL=https://dl.internalx.com/internal-files/xcodes/Xcode_16-beta_2.xip +XCODE_DEVELOPER_ROOT=/Applications/Xcode_16.0.0-beta2.app/Contents/Developer XCODE_PRODUCT_BUILD_VERSION:=$(shell /usr/libexec/PlistBuddy -c 'Print :ProductBuildVersion' $(XCODE_DEVELOPER_ROOT)/../version.plist 2>/dev/null || echo " $(shell tput setaf 1 2>/dev/null)The required Xcode ($(XCODE_VERSION)) is not installed in $(basename $(basename $(XCODE_DEVELOPER_ROOT)))$(shell tput sgr0 2>/dev/null)" >&2) # We define stable Xcode as the Xcode app being named like "Xcode_#.#[.#].app" diff --git a/runtime/trampolines.m b/runtime/trampolines.m index 9183d963eb..c7fbd4938f 100644 --- a/runtime/trampolines.m +++ b/runtime/trampolines.m @@ -1153,11 +1153,13 @@ void *xamarin_nsnumber_to_nfloat (NSNumber *number, void *ptr, MonoClass *manage // If called multiple times in succession, the returned pointer can be passed as the second ptr argument, and it need only be freed once done iterating. void *xamarin_nsvalue_to_nsrange (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle) { NSRange *valueptr = (NSRange *) (ptr ? ptr : xamarin_calloc (sizeof (NSRange))); *valueptr = [value rangeValue]; return valueptr; } #if HAVE_UIKIT // Yep, these CoreGraphics-looking category method is defined in UIKit. +#if !TARGET_OS_WATCH void *xamarin_nsvalue_to_cgaffinetransform (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle) { CGAffineTransform *valueptr = (CGAffineTransform *) (ptr ? ptr : xamarin_calloc (sizeof (CGAffineTransform))); *valueptr = [value CGAffineTransformValue]; return valueptr; } void *xamarin_nsvalue_to_cgpoint (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle) { CGPoint *valueptr = (CGPoint *) (ptr ? ptr : xamarin_calloc (sizeof (CGPoint))); *valueptr = [value CGPointValue]; return valueptr; } void *xamarin_nsvalue_to_cgrect (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle) { CGRect *valueptr = (CGRect *) (ptr ? ptr : xamarin_calloc (sizeof (CGRect))); *valueptr = [value CGRectValue]; return valueptr; } void *xamarin_nsvalue_to_cgsize (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle) { CGSize *valueptr = (CGSize *) (ptr ? ptr : xamarin_calloc (sizeof (CGSize))); *valueptr = [value CGSizeValue]; return valueptr; } void *xamarin_nsvalue_to_cgvector (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle) { CGVector *valueptr = (CGVector *) (ptr ? ptr : xamarin_calloc (sizeof (CGVector))); *valueptr = [value CGVectorValue]; return valueptr; } +#endif void *xamarin_nsvalue_to_nsdirectionaledgeinsets(NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle) {NSDirectionalEdgeInsets *valueptr =(NSDirectionalEdgeInsets *) (ptr ? ptr : xamarin_calloc (sizeof (NSDirectionalEdgeInsets)));*valueptr = [value directionalEdgeInsetsValue];return valueptr; } #endif #if HAVE_COREANIMATION @@ -1217,7 +1219,9 @@ xamarin_nsvalue_to_scnvector3 (NSValue *value, void *ptr, MonoClass *managedType } void *xamarin_nsvalue_to_scnvector4 (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle) { SCNVector4 *valueptr = (SCNVector4 *) (ptr ? ptr : xamarin_calloc (sizeof (SCNVector4))); *valueptr = [value SCNVector4Value]; return valueptr; } #if HAVE_UIKIT +#if !TARGET_OS_WATCH void *xamarin_nsvalue_to_uiedgeinsets (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle) { UIEdgeInsets *valueptr = (UIEdgeInsets *) (ptr ? ptr : xamarin_calloc (sizeof (UIEdgeInsets))); *valueptr = [value UIEdgeInsetsValue]; return valueptr; } +#endif void *xamarin_nsvalue_to_uioffset (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle) { UIOffset *valueptr = (UIOffset *) (ptr ? ptr : xamarin_calloc (sizeof (UIOffset))); *valueptr = [value UIOffsetValue]; return valueptr; } #endif @@ -1244,11 +1248,13 @@ id xamarin_nfloat_to_nsnumber (MonoObject *value, void *context, GCHandle *excep id xamarin_nsrange_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle) { return [NSValue valueWithRange: *(NSRange *) mono_object_unbox (value)]; } #if HAVE_UIKIT // yep, these CoreGraphics-looking category methods are defined in UIKit +#if !TARGET_OS_WATCH id xamarin_cgaffinetransform_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle) { return [NSValue valueWithCGAffineTransform: *(CGAffineTransform *) mono_object_unbox (value)]; } id xamarin_cgpoint_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle) { return [NSValue valueWithCGPoint: *(CGPoint *) mono_object_unbox (value)]; } id xamarin_cgrect_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle) { return [NSValue valueWithCGRect: *(CGRect *) mono_object_unbox (value)]; } id xamarin_cgsize_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle) { return [NSValue valueWithCGSize: *(CGSize *) mono_object_unbox (value)]; } id xamarin_cgvector_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle) { return [NSValue valueWithCGVector: *(CGVector *) mono_object_unbox (value)]; } +#endif id xamarin_nsdirectionaledgeinsets_to_nsvalue(MonoObject *value, void *context, GCHandle *exception_gchandle) { return [NSValue valueWithDirectionalEdgeInsets:*(NSDirectionalEdgeInsets *)mono_object_unbox (value)]; } #endif #if HAVE_COREANIMATION @@ -1269,7 +1275,7 @@ id xamarin_mkcoordinatespan_to_nsvalue (MonoObject *value, void *context, id xamarin_scnmatrix4_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle) { return [NSValue valueWithSCNMatrix4: *(SCNMatrix4 *) mono_object_unbox (value)]; } id xamarin_scnvector3_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle) { return [NSValue valueWithSCNVector3: *(SCNVector3 *) mono_object_unbox (value)]; } id xamarin_scnvector4_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle) { return [NSValue valueWithSCNVector4: *(SCNVector4 *) mono_object_unbox (value)]; } -#if HAVE_UIKIT +#if HAVE_UIKIT && !TARGET_OS_WATCH id xamarin_uiedgeinsets_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle) { return [NSValue valueWithUIEdgeInsets: *(UIEdgeInsets *) mono_object_unbox (value)]; } id xamarin_uioffset_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle) { return [NSValue valueWithUIOffset: *(UIOffset *) mono_object_unbox (value)]; } #endif @@ -1600,6 +1606,7 @@ xamarin_get_nsvalue_converter (MonoClass *managedType, MonoMethod *method, bool if (!strcmp (fullname, "Foundation.NSRange")) { func = to_managed ? (void *) xamarin_nsvalue_to_nsrange : (void *) xamarin_nsrange_to_nsvalue; #if HAVE_UIKIT // yep, these CoreGraphics-looking category methods are defined in UIKit +#if !TARGET_OS_WATCH } else if (!strcmp (fullname, "CoreGraphics.CGAffineTransform")) { func = to_managed ? (void *) xamarin_nsvalue_to_cgaffinetransform : (void *) xamarin_cgaffinetransform_to_nsvalue; } else if (!strcmp (fullname, "CoreGraphics.CGPoint")) { @@ -1610,6 +1617,7 @@ xamarin_get_nsvalue_converter (MonoClass *managedType, MonoMethod *method, bool func = to_managed ? (void *) xamarin_nsvalue_to_cgsize : (void *) xamarin_cgsize_to_nsvalue; } else if (!strcmp (fullname, "CoreGraphics.CGVector")) { func = to_managed ? (void *) xamarin_nsvalue_to_cgvector : (void *) xamarin_cgvector_to_nsvalue; +#endif } else if (!strcmp (fullname, "UIKit.NSDirectionalEdgeInsets")) { func = to_managed ? (void *) xamarin_nsvalue_to_nsdirectionaledgeinsets : (void *) xamarin_nsdirectionaledgeinsets_to_nsvalue; #endif @@ -1641,7 +1649,7 @@ xamarin_get_nsvalue_converter (MonoClass *managedType, MonoMethod *method, bool func = to_managed ? (void *) xamarin_nsvalue_to_scnvector3 : (void *) xamarin_scnvector3_to_nsvalue; } else if (!strcmp (fullname, "SceneKit.SCNVector4")) { func = to_managed ? (void *) xamarin_nsvalue_to_scnvector4 : (void *) xamarin_scnvector4_to_nsvalue; -#if HAVE_UIKIT +#if HAVE_UIKIT && !TARGET_OS_WATCH } else if (!strcmp (fullname, "UIKit.UIEdgeInsets")) { func = to_managed ? (void *) xamarin_nsvalue_to_uiedgeinsets : (void *) xamarin_uiedgeinsets_to_nsvalue; } else if (!strcmp (fullname, "UIKit.UIOffset")) { diff --git a/runtime/xamarin/trampolines.h b/runtime/xamarin/trampolines.h index ebf3689483..7745555211 100644 --- a/runtime/xamarin/trampolines.h +++ b/runtime/xamarin/trampolines.h @@ -141,11 +141,13 @@ void *xamarin_nsnumber_to_nfloat (NSNumber *number, void *ptr, MonoClass *manage // Returns a pointer to the value type, which must be freed using xamarin_free void *xamarin_nsvalue_to_nsrange (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle); +#if !TARGET_OS_WATCH void *xamarin_nsvalue_to_cgaffinetransform (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle); void *xamarin_nsvalue_to_cgpoint (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle); void *xamarin_nsvalue_to_cgrect (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle); void *xamarin_nsvalue_to_cgsize (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle); void *xamarin_nsvalue_to_cgvector (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle); +#endif void *xamarin_nsvalue_to_catransform3d (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle); void *xamarin_nsvalue_to_cllocationcoordinate2d (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle); void *xamarin_nsvalue_to_cmtime (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle); @@ -156,7 +158,9 @@ void *xamarin_nsvalue_to_mkcoordinatespan (NSValue *value, void *ptr, Mono void *xamarin_nsvalue_to_scnmatrix4 (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle); void *xamarin_nsvalue_to_scnvector3 (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle); void *xamarin_nsvalue_to_scnvector4 (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle); +#if !TARGET_OS_WATCH void *xamarin_nsvalue_to_uiedgeinsets (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle); +#endif void *xamarin_nsvalue_to_uioffset (NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle); void *xamarin_nsvalue_to_nsdirectionaledgeinsets(NSValue *value, void *ptr, MonoClass *managedType, void *context, GCHandle *exception_gchandle); @@ -177,11 +181,13 @@ id xamarin_nfloat_to_nsnumber (MonoObject *value, void *context, GCHandle *excep id xamarin_nfloat_to_nsnumber (MonoObject *value, void *context, GCHandle *exception_gchandle); id xamarin_nsrange_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle); +#if !TARGET_OS_WATCH id xamarin_cgaffinetransform_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle); id xamarin_cgpoint_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle); id xamarin_cgrect_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle); id xamarin_cgsize_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle); id xamarin_cgvector_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle); +#endif id xamarin_catransform3d_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle); id xamarin_cllocationcoordinate2d_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle); id xamarin_cmtime_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle); @@ -192,8 +198,10 @@ id xamarin_mkcoordinatespan_to_nsvalue (MonoObject *value, void *context, id xamarin_scnmatrix4_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle); id xamarin_scnvector3_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle); id xamarin_scnvector4_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle); +#if !TARGET_OS_WATCH id xamarin_uiedgeinsets_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle); id xamarin_uioffset_to_nsvalue (MonoObject *value, void *context, GCHandle *exception_gchandle); +#endif id xamarin_nsdirectionaledgeinsets_to_nsvalue(MonoObject *value, void *context, GCHandle *exception_gchandle); // These functions can be passed as xamarin_id_to_managed_func/xamarin_managed_to_id_func parameters diff --git a/tests/cecil-tests/Documentation.KnownFailures.txt b/tests/cecil-tests/Documentation.KnownFailures.txt index a6a8bf1068..af9bc49c35 100644 --- a/tests/cecil-tests/Documentation.KnownFailures.txt +++ b/tests/cecil-tests/Documentation.KnownFailures.txt @@ -74454,7 +74454,6 @@ P:UIKit.UIMenu.SelectedElements P:UIKit.UIMenuController.DidHideMenuNotification P:UIKit.UIMenuController.DidShowMenuNotification P:UIKit.UIMenuController.MenuFrameDidChangeNotification -P:UIKit.UIMenuController.MenuVisible P:UIKit.UIMenuController.WillHideMenuNotification P:UIKit.UIMenuController.WillShowMenuNotification P:UIKit.UIMenuElement.AccessibilityIdentifier @@ -74536,7 +74535,6 @@ P:UIKit.UIPasteboard.Automatic P:UIKit.UIPasteboard.ChangedNotification P:UIKit.UIPasteboard.ChangedTypesAddedKey P:UIKit.UIPasteboard.ChangedTypesRemovedKey -P:UIKit.UIPasteboard.Persistent P:UIKit.UIPasteboard.RemovedNotification P:UIKit.UIPasteboard.TypeListColor P:UIKit.UIPasteboard.TypeListImage diff --git a/tests/test-libraries/testgenerator.cs b/tests/test-libraries/testgenerator.cs index 6aa5782320..fb35dc4a72 100644 --- a/tests/test-libraries/testgenerator.cs +++ b/tests/test-libraries/testgenerator.cs @@ -803,6 +803,8 @@ using Bindings.Test; using XamarinTests.ObjCRuntime; using Xamarin.Utils; +#if !__WATCHOS__ + namespace MonoTouchFixtures.ObjCRuntime { [TestFixture] @@ -1412,6 +1414,7 @@ namespace MonoTouchFixtures.ObjCRuntime { w.AppendLine (@" } }"); + w.AppendLine ("#endif // __WATCHOS__"); File.WriteAllText ("RegistrarTest.generated.cs", w.ToString ()); } diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-Accessibility.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-Accessibility.todo index 8d151946b0..6bb5723b88 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-Accessibility.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-Accessibility.todo @@ -3,3 +3,14 @@ !missing-pinvoke! AXAssistiveAccessEnabled is not bound !missing-pinvoke! AXOpenSettingsFeature is not bound !missing-pinvoke! AXPrefersNonBlinkingTextInsertionIndicator is not bound +!missing-field! AXTechnologyAutomation not bound +!missing-field! AXTechnologyFullKeyboardAccess not bound +!missing-field! AXTechnologyHoverText not bound +!missing-field! AXTechnologySpeakScreen not bound +!missing-field! AXTechnologySwitchControl not bound +!missing-field! AXTechnologyVoiceControl not bound +!missing-field! AXTechnologyVoiceOver not bound +!missing-field! AXTechnologyZoom not bound +!missing-selector! +AXRequest::currentRequest not bound +!missing-selector! AXRequest::technology not bound +!missing-type! AXRequest not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-AuthenticationServices.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-AuthenticationServices.todo index e222b9c6ab..3ab4c8aba6 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-AuthenticationServices.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-AuthenticationServices.todo @@ -108,3 +108,4 @@ !missing-type! ASPasskeyRegistrationCredentialExtensionOutput not bound !missing-type! ASPublicKeyCredentialClientData not bound !missing-type! ASWebAuthenticationSessionCallback not bound +!missing-selector! +ASSettingsHelper::requestCredentialProviderExtensionEnablementWithCompletionHandler: not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-BackgroundTasks.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-BackgroundTasks.todo deleted file mode 100644 index c64ebba6fc..0000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-BackgroundTasks.todo +++ /dev/null @@ -1,10 +0,0 @@ -!missing-selector! BGContinuedProcessingTask::reason not bound -!missing-selector! BGContinuedProcessingTask::title not bound -!missing-selector! BGContinuedProcessingTask::updateProgress: not bound -!missing-selector! BGContinuedProcessingTaskRequest::initWithIdentifier: not bound -!missing-selector! BGContinuedProcessingTaskRequest::reason not bound -!missing-selector! BGContinuedProcessingTaskRequest::setReason: not bound -!missing-selector! BGContinuedProcessingTaskRequest::setTitle: not bound -!missing-selector! BGContinuedProcessingTaskRequest::title not bound -!missing-type! BGContinuedProcessingTask not bound -!missing-type! BGContinuedProcessingTaskRequest not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-CoreAnimation.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-CoreAnimation.todo index 34dfc677cc..ee8cff6a1b 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-CoreAnimation.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-CoreAnimation.todo @@ -39,3 +39,8 @@ !missing-selector! CASpringAnimation::setAllowsOverdamping: not bound !missing-type! CAMetalDisplayLink not bound !missing-type! CAMetalDisplayLinkUpdate not bound +!missing-field! CAToneMapModeAutomatic not bound +!missing-field! CAToneMapModeIfSupported not bound +!missing-field! CAToneMapModeNever not bound +!missing-selector! CALayer::setToneMapMode: not bound +!missing-selector! CALayer::toneMapMode not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-CoreGraphics.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-CoreGraphics.todo index a2058f1587..2afa910b49 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-CoreGraphics.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-CoreGraphics.todo @@ -10,6 +10,13 @@ !missing-pinvoke! CGContextGetEDRTargetHeadroom is not bound !missing-pinvoke! CGContextSetEDRTargetHeadroom is not bound !missing-pinvoke! CGImageContainsImageSpecificToneMappingMetadata is not bound -!missing-pinvoke! CGImageCreateWithEDRHeadroom is not bound !missing-pinvoke! CGImageGetContentHeadroom is not bound !missing-pinvoke! CGImageShouldToneMap is not bound +!missing-enum-value! CGPdfTagType native value CGPDFTagTypeObject = 800 not bound +!missing-field! kCGColorSpaceCoreMedia709 not bound +!missing-field! kCGDefaultHDRImageContentHeadroom not bound +!missing-pinvoke! CGImageCreateCopyWithContentHeadroom is not bound +!missing-pinvoke! CGImageCreateWithContentHeadroom is not bound +!missing-pinvoke! CGPDFContextSetIDTree is not bound +!missing-pinvoke! CGPDFContextSetPageTagStructureTree is not bound +!missing-pinvoke! CGPDFContextSetParentTree is not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-CoreMIDI.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-CoreMIDI.todo index 103e213aa3..68947d7b79 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-CoreMIDI.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-CoreMIDI.todo @@ -10,7 +10,6 @@ !deprecated-attribute-missing! MIDICIProfileState::initWithChannel:enabledProfiles:disabledProfiles: missing a [Deprecated] attribute !deprecated-attribute-missing! MIDICIResponder missing a [Deprecated] attribute !deprecated-attribute-missing! MIDICISession missing a [Deprecated] attribute -!missing-enum! MIDICICategoryBitmap not bound !missing-enum! MIDICIDeviceType not bound !missing-enum! MIDICIManagementMessageType not bound !missing-enum! MIDICIProcessInquiryMessageType not bound @@ -21,7 +20,6 @@ !missing-enum! MIDIUMPFunctionBlockDirection not bound !missing-enum! MIDIUMPFunctionBlockMIDI1Info not bound !missing-enum! MIDIUMPFunctionBlockUIHint not bound -!missing-enum! MIDIUMPProtocolBitmap not bound !missing-enum! UMPStreamMessageFormat not bound !missing-enum! UMPStreamMessageStatus not bound !missing-enum-value! MidiMessageType native value kMIDIMessageTypeFlexData = 13 not bound @@ -34,14 +32,11 @@ !missing-field! MIDICIDeviceWasAddedNotification not bound !missing-field! MIDICIDeviceWasRemovedNotification not bound !missing-field! MIDICIProfileObjectKey not bound -!missing-field! MIDICIProfileStateChangedNotification not bound !missing-field! MIDICIProfileWasRemovedNotification not bound !missing-field! MIDIUMPEndpointObjectKey not bound -!missing-field! MIDIUMPEndpointUpdatedNotification not bound !missing-field! MIDIUMPEndpointWasAddedNotification not bound !missing-field! MIDIUMPEndpointWasRemovedNotification not bound !missing-field! MIDIUMPFunctionBlockObjectKey not bound -!missing-field! MIDIUMPFunctionBlockUpdatedNotification not bound !missing-selector! +MIDICIDeviceManager::sharedInstance not bound !missing-selector! +MIDIUMPEndpointManager::sharedInstance not bound !missing-selector! MIDI2DeviceInfo::family not bound @@ -115,3 +110,8 @@ !missing-type! MIDIUMPFunctionBlock not bound !missing-type! MIDIUMPMutableEndpoint not bound !missing-type! MIDIUMPMutableFunctionBlock not bound +!missing-enum! MIDICICategoryOptions not bound +!missing-enum! MIDIUMPProtocolOptions not bound +!missing-field! MIDICIProfileWasUpdatedNotification not bound +!missing-field! MIDIUMPEndpointWasUpdatedNotification not bound +!missing-field! MIDIUMPFunctionBlockWasUpdatedNotification not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-CoreML.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-CoreML.todo index 93ab127e46..7788e5af8f 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-CoreML.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-CoreML.todo @@ -76,3 +76,9 @@ !unknown-field! MLModelCollectionDidChangeNotification bound !unknown-type! MLModelCollection bound !unknown-type! MLModelCollectionEntry bound +!missing-enum! MLSpecializationStrategy not bound +!missing-selector! +MLModelAsset::modelAssetWithSpecificationData:blobMapping:error: not bound +!missing-selector! MLMultiArray::initWithShape:dataType:strides: not bound +!missing-selector! MLMultiArray::transferToMultiArray: not bound +!missing-selector! MLOptimizationHints::setSpecializationStrategy: not bound +!missing-selector! MLOptimizationHints::specializationStrategy not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-CoreMotion.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-CoreMotion.todo index 58c4096e6a..4af452db25 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-CoreMotion.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-CoreMotion.todo @@ -9,3 +9,6 @@ !missing-selector! CMHeadphoneActivityManager::stopActivityUpdates not bound !missing-selector! CMHeadphoneActivityManager::stopStatusUpdates not bound !missing-type! CMHeadphoneActivityManager not bound +!missing-selector! CMHeadphoneMotionManager::isConnectionStatusActive not bound +!missing-selector! CMHeadphoneMotionManager::startConnectionStatusUpdates not bound +!missing-selector! CMHeadphoneMotionManager::stopConnectionStatusUpdates not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-FileProvider.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-FileProvider.todo index 97434b54d5..c42e56926a 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-FileProvider.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-FileProvider.todo @@ -2,3 +2,5 @@ !missing-enum-value! NSFileProviderError native value NSFileProviderErrorApplicationExtensionNotFound = -2014 not bound !missing-enum-value! NSFileProviderError native value NSFileProviderErrorProviderDomainNotFound = -2013 not bound !missing-enum-value! NSFileProviderError native value NSFileProviderErrorProviderDomainTemporarilyUnavailable = -2012 not bound +!missing-selector! NSFileProviderDomain::setSupportsSyncingTrash: not bound +!missing-selector! NSFileProviderDomain::supportsSyncingTrash not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-ImageIO.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-ImageIO.todo index a70551dbf5..04649501e2 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-ImageIO.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-ImageIO.todo @@ -14,3 +14,10 @@ !missing-field! kIIOStereoAggressors_SubTypeURI not bound !missing-field! kIIOStereoAggressors_Type not bound !missing-pinvoke! CGImageSourceSetAllowableTypes is not bound +!missing-field! kCGImageDestinationEncodeBaseIsSDR not bound +!missing-field! kCGImageDestinationEncodeRequest not bound +!missing-field! kCGImageDestinationEncodeRequestOptions not bound +!missing-field! kCGImageDestinationEncodeToISOGainmap not bound +!missing-field! kCGImageDestinationEncodeToISOHDR not bound +!missing-field! kCGImageDestinationEncodeTonemapMode not bound +!missing-field! kCGImageDestinationEncodeToSDR not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-Matter.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-Matter.todo index 993d9b7fb9..5f2426d2c8 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-Matter.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-Matter.todo @@ -11175,3 +11175,25 @@ !missing-type! MTRValveConfigurationAndControlClusterOpenParams not bound !missing-type! MTRValveConfigurationAndControlClusterValveFaultEvent not bound !missing-type! MTRValveConfigurationAndControlClusterValveStateChangedEvent not bound +!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithDefaultStorageBehavior not bound +!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithReportToPersistenceDelayTime:reportToPersistenceDelayTimeMax:recentReportTimesMaxCount:timeBetweenReportsTooShortThreshold:timeBetweenReportsTooShortMinThreshold:reportToPersistenceDelayMaxMultiplier:deviceReportingExcessivelyIntervalThreshold: not bound +!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithStorageBehaviorOptimizationDisabled not bound +!missing-selector! MTRDeviceControllerParameters::setStorageBehaviorConfiguration: not bound +!missing-selector! MTRDeviceControllerParameters::storageBehaviorConfiguration not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::deviceReportingExcessivelyIntervalThreshold not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::disableStorageBehaviorOptimization not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::recentReportTimesMaxCount not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayMaxMultiplier not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayTime not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayTimeMax not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setDeviceReportingExcessivelyIntervalThreshold: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setDisableStorageBehaviorOptimization: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setRecentReportTimesMaxCount: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayMaxMultiplier: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayTime: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayTimeMax: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setTimeBetweenReportsTooShortMinThreshold: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setTimeBetweenReportsTooShortThreshold: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::timeBetweenReportsTooShortMinThreshold not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::timeBetweenReportsTooShortThreshold not bound +!missing-type! MTRDeviceStorageBehaviorConfiguration not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-UIKit.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-UIKit.todo index c0d95553fd..c0a77cc071 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-UIKit.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-UIKit.todo @@ -367,3 +367,24 @@ !missing-type! UIZoomTransitionInteractionContext not bound !missing-type! UIZoomTransitionOptions not bound !missing-type! UIZoomTransitionSourceViewProviderContext not bound +!missing-enum! UIAccessibilityExpandedStatus not bound +!missing-field! UIAccessibilityCustomActionCategoryEdit not bound +!missing-selector! NSObject::accessibilityExpandedStatus not bound +!missing-selector! NSObject::accessibilityExpandedStatusBlock not bound +!missing-selector! NSObject::accessibilityHitTest:withEvent: not bound +!missing-selector! NSObject::accessibilityNextTextNavigationElement not bound +!missing-selector! NSObject::accessibilityNextTextNavigationElementBlock not bound +!missing-selector! NSObject::accessibilityPreviousTextNavigationElement not bound +!missing-selector! NSObject::accessibilityPreviousTextNavigationElementBlock not bound +!missing-selector! NSObject::setAccessibilityExpandedStatus: not bound +!missing-selector! NSObject::setAccessibilityExpandedStatusBlock: not bound +!missing-selector! NSObject::setAccessibilityNextTextNavigationElement: not bound +!missing-selector! NSObject::setAccessibilityNextTextNavigationElementBlock: not bound +!missing-selector! NSObject::setAccessibilityPreviousTextNavigationElement: not bound +!missing-selector! NSObject::setAccessibilityPreviousTextNavigationElementBlock: not bound +!missing-selector! UIAccessibilityCustomAction::category not bound +!missing-selector! UIAccessibilityCustomAction::setCategory: not bound +!missing-selector! UITextView::setWritingToolsAllowedInputOptions: not bound +!missing-selector! UITextView::setWritingToolsBehavior: not bound +!missing-selector! UITextView::writingToolsAllowedInputOptions not bound +!missing-selector! UITextView::writingToolsBehavior not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-WebKit.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-WebKit.todo index ff051a00a4..4f7193cd85 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-WebKit.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/iOS-WebKit.todo @@ -1 +1,5 @@ -!deprecated-attribute-missing! WKBackForwardListItem::title missing a [Deprecated] attribute +!missing-selector! WKWebView::isWritingToolsActive not bound +!missing-selector! WKWebViewConfiguration::setSupportsAdaptiveImageGlyph: not bound +!missing-selector! WKWebViewConfiguration::setWritingToolsBehavior: not bound +!missing-selector! WKWebViewConfiguration::supportsAdaptiveImageGlyph not bound +!missing-selector! WKWebViewConfiguration::writingToolsBehavior not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-AVFoundation.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-AVFoundation.todo index c91b5327af..bb81b75e23 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-AVFoundation.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-AVFoundation.todo @@ -706,3 +706,4 @@ !missing-type! AVPlayerItemSegment not bound !missing-type! AVRenderedCaptionImage not bound !missing-type! AVVideoPerformanceMetrics not bound +!missing-selector! AVMediaExtensionProperties::extensionIdentifier not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-Accessibility.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-Accessibility.todo index 8d151946b0..6bb5723b88 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-Accessibility.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-Accessibility.todo @@ -3,3 +3,14 @@ !missing-pinvoke! AXAssistiveAccessEnabled is not bound !missing-pinvoke! AXOpenSettingsFeature is not bound !missing-pinvoke! AXPrefersNonBlinkingTextInsertionIndicator is not bound +!missing-field! AXTechnologyAutomation not bound +!missing-field! AXTechnologyFullKeyboardAccess not bound +!missing-field! AXTechnologyHoverText not bound +!missing-field! AXTechnologySpeakScreen not bound +!missing-field! AXTechnologySwitchControl not bound +!missing-field! AXTechnologyVoiceControl not bound +!missing-field! AXTechnologyVoiceOver not bound +!missing-field! AXTechnologyZoom not bound +!missing-selector! +AXRequest::currentRequest not bound +!missing-selector! AXRequest::technology not bound +!missing-type! AXRequest not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-AppKit.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-AppKit.todo index 9807a198b6..122f2173ca 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-AppKit.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-AppKit.todo @@ -121,3 +121,8 @@ !missing-selector! NSWindow::requestSharingOfWindowUsingPreview:title:completionHandler: not bound !missing-type! NSAdaptiveImageGlyph not bound !missing-type! NSSharingCollaborationModeRestriction not bound +!missing-selector! NSTextView::setWritingToolsAllowedInputOptions: not bound +!missing-selector! NSTextView::setWritingToolsBehavior: not bound +!missing-selector! NSTextView::writingToolsAllowedInputOptions not bound +!missing-selector! NSTextView::writingToolsBehavior not bound +!missing-selector! NSWindow::cascadingReferenceFrame not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-AuthenticationServices.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-AuthenticationServices.todo index 21edac3c42..ca1677a94a 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-AuthenticationServices.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-AuthenticationServices.todo @@ -117,3 +117,4 @@ !missing-type! ASPasskeyRegistrationCredentialExtensionInput not bound !missing-type! ASPasskeyRegistrationCredentialExtensionOutput not bound !missing-type! ASWebAuthenticationSessionCallback not bound +!missing-selector! +ASSettingsHelper::requestCredentialProviderExtensionEnablementWithCompletionHandler: not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreAnimation.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreAnimation.todo index f58f0a30dc..01a7618e3b 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreAnimation.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreAnimation.todo @@ -24,3 +24,8 @@ !missing-selector! CASpringAnimation::setAllowsOverdamping: not bound !missing-type! CAMetalDisplayLink not bound !missing-type! CAMetalDisplayLinkUpdate not bound +!missing-field! CAToneMapModeAutomatic not bound +!missing-field! CAToneMapModeIfSupported not bound +!missing-field! CAToneMapModeNever not bound +!missing-selector! CALayer::setToneMapMode: not bound +!missing-selector! CALayer::toneMapMode not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreGraphics.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreGraphics.todo index c87f980ad6..0b75857453 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreGraphics.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreGraphics.todo @@ -16,6 +16,13 @@ !missing-pinvoke! CGContextGetEDRTargetHeadroom is not bound !missing-pinvoke! CGContextSetEDRTargetHeadroom is not bound !missing-pinvoke! CGImageContainsImageSpecificToneMappingMetadata is not bound -!missing-pinvoke! CGImageCreateWithEDRHeadroom is not bound !missing-pinvoke! CGImageGetContentHeadroom is not bound !missing-pinvoke! CGImageShouldToneMap is not bound +!missing-enum-value! CGPdfTagType native value CGPDFTagTypeObject = 800 not bound +!missing-field! kCGColorSpaceCoreMedia709 not bound +!missing-field! kCGDefaultHDRImageContentHeadroom not bound +!missing-pinvoke! CGImageCreateCopyWithContentHeadroom is not bound +!missing-pinvoke! CGImageCreateWithContentHeadroom is not bound +!missing-pinvoke! CGPDFContextSetIDTree is not bound +!missing-pinvoke! CGPDFContextSetPageTagStructureTree is not bound +!missing-pinvoke! CGPDFContextSetParentTree is not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreMIDI.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreMIDI.todo index 103e213aa3..68947d7b79 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreMIDI.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreMIDI.todo @@ -10,7 +10,6 @@ !deprecated-attribute-missing! MIDICIProfileState::initWithChannel:enabledProfiles:disabledProfiles: missing a [Deprecated] attribute !deprecated-attribute-missing! MIDICIResponder missing a [Deprecated] attribute !deprecated-attribute-missing! MIDICISession missing a [Deprecated] attribute -!missing-enum! MIDICICategoryBitmap not bound !missing-enum! MIDICIDeviceType not bound !missing-enum! MIDICIManagementMessageType not bound !missing-enum! MIDICIProcessInquiryMessageType not bound @@ -21,7 +20,6 @@ !missing-enum! MIDIUMPFunctionBlockDirection not bound !missing-enum! MIDIUMPFunctionBlockMIDI1Info not bound !missing-enum! MIDIUMPFunctionBlockUIHint not bound -!missing-enum! MIDIUMPProtocolBitmap not bound !missing-enum! UMPStreamMessageFormat not bound !missing-enum! UMPStreamMessageStatus not bound !missing-enum-value! MidiMessageType native value kMIDIMessageTypeFlexData = 13 not bound @@ -34,14 +32,11 @@ !missing-field! MIDICIDeviceWasAddedNotification not bound !missing-field! MIDICIDeviceWasRemovedNotification not bound !missing-field! MIDICIProfileObjectKey not bound -!missing-field! MIDICIProfileStateChangedNotification not bound !missing-field! MIDICIProfileWasRemovedNotification not bound !missing-field! MIDIUMPEndpointObjectKey not bound -!missing-field! MIDIUMPEndpointUpdatedNotification not bound !missing-field! MIDIUMPEndpointWasAddedNotification not bound !missing-field! MIDIUMPEndpointWasRemovedNotification not bound !missing-field! MIDIUMPFunctionBlockObjectKey not bound -!missing-field! MIDIUMPFunctionBlockUpdatedNotification not bound !missing-selector! +MIDICIDeviceManager::sharedInstance not bound !missing-selector! +MIDIUMPEndpointManager::sharedInstance not bound !missing-selector! MIDI2DeviceInfo::family not bound @@ -115,3 +110,8 @@ !missing-type! MIDIUMPFunctionBlock not bound !missing-type! MIDIUMPMutableEndpoint not bound !missing-type! MIDIUMPMutableFunctionBlock not bound +!missing-enum! MIDICICategoryOptions not bound +!missing-enum! MIDIUMPProtocolOptions not bound +!missing-field! MIDICIProfileWasUpdatedNotification not bound +!missing-field! MIDIUMPEndpointWasUpdatedNotification not bound +!missing-field! MIDIUMPFunctionBlockWasUpdatedNotification not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreML.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreML.todo index 93ab127e46..7788e5af8f 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreML.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreML.todo @@ -76,3 +76,9 @@ !unknown-field! MLModelCollectionDidChangeNotification bound !unknown-type! MLModelCollection bound !unknown-type! MLModelCollectionEntry bound +!missing-enum! MLSpecializationStrategy not bound +!missing-selector! +MLModelAsset::modelAssetWithSpecificationData:blobMapping:error: not bound +!missing-selector! MLMultiArray::initWithShape:dataType:strides: not bound +!missing-selector! MLMultiArray::transferToMultiArray: not bound +!missing-selector! MLOptimizationHints::setSpecializationStrategy: not bound +!missing-selector! MLOptimizationHints::specializationStrategy not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreMotion.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreMotion.todo index 83e04bb08e..91a10fdd12 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreMotion.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-CoreMotion.todo @@ -17,3 +17,6 @@ !missing-selector! CMMotionActivity::walking not bound !missing-type! CMHeadphoneActivityManager not bound !missing-type! CMMotionActivity not bound +!missing-selector! CMHeadphoneMotionManager::isConnectionStatusActive not bound +!missing-selector! CMHeadphoneMotionManager::startConnectionStatusUpdates not bound +!missing-selector! CMHeadphoneMotionManager::stopConnectionStatusUpdates not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-FSKit.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-FSKit.todo index 8bb2d2005b..c9a1be0c1d 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-FSKit.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-FSKit.todo @@ -4,8 +4,6 @@ !missing-selector! +FSEntityIdentifier::identifierWithUUID:byteQualifier: not bound !missing-selector! +FSEntityIdentifier::identifierWithUUID:longByteQualifier: not bound !missing-selector! +FSFileName::nameWithCString: not bound -!missing-selector! +FSKitConstants::forceLoadOption not bound -!missing-selector! +FSKitConstants::moduleExtensionPointName not bound !missing-selector! +FSProbeResult::resultWithResult:name:containerID: not bound !missing-selector! FSEntityIdentifier::initWithBytes:length: not bound !missing-selector! FSEntityIdentifier::initWithUUID:byteQualifier: not bound @@ -17,7 +15,6 @@ !missing-selector! FSProbeResult::containerID not bound !missing-selector! FSProbeResult::name not bound !missing-selector! FSProbeResult::result not bound -!missing-type! FSKitConstants not bound !missing-type! FSProbeResult not bound !missing-enum! FSContainerState not bound !missing-enum! FSExtentType not bound @@ -33,6 +30,8 @@ !missing-enum! FSVolumeState not bound !missing-field! FSKitVersionNumber not bound !missing-field! FSKitVersionString not bound +!missing-field! FSTaskParameterConstantForceLoad not bound +!missing-field! FSTaskParameterConstantReadOnly not bound !missing-pinvoke! fs_errorForCocoaError is not bound !missing-pinvoke! fs_errorForMachError is not bound !missing-pinvoke! fs_errorForPOSIXError is not bound @@ -253,6 +252,8 @@ !missing-selector! FSMessageConnection::logLocalizedMessage:table:bundle:array: not bound !missing-selector! FSModuleIdentity::attributes not bound !missing-selector! FSModuleIdentity::bundleIdentifier not bound +!missing-selector! FSModuleIdentity::isEnabled not bound +!missing-selector! FSModuleIdentity::isSystem not bound !missing-selector! FSModuleIdentity::url not bound !missing-selector! FSMutableFileDataBuffer::capacity not bound !missing-selector! FSMutableFileDataBuffer::initWithCapacity: not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-ImageIO.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-ImageIO.todo index a70551dbf5..04649501e2 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-ImageIO.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-ImageIO.todo @@ -14,3 +14,10 @@ !missing-field! kIIOStereoAggressors_SubTypeURI not bound !missing-field! kIIOStereoAggressors_Type not bound !missing-pinvoke! CGImageSourceSetAllowableTypes is not bound +!missing-field! kCGImageDestinationEncodeBaseIsSDR not bound +!missing-field! kCGImageDestinationEncodeRequest not bound +!missing-field! kCGImageDestinationEncodeRequestOptions not bound +!missing-field! kCGImageDestinationEncodeToISOGainmap not bound +!missing-field! kCGImageDestinationEncodeToISOHDR not bound +!missing-field! kCGImageDestinationEncodeTonemapMode not bound +!missing-field! kCGImageDestinationEncodeToSDR not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-Matter.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-Matter.todo index 993d9b7fb9..5f2426d2c8 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-Matter.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-Matter.todo @@ -11175,3 +11175,25 @@ !missing-type! MTRValveConfigurationAndControlClusterOpenParams not bound !missing-type! MTRValveConfigurationAndControlClusterValveFaultEvent not bound !missing-type! MTRValveConfigurationAndControlClusterValveStateChangedEvent not bound +!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithDefaultStorageBehavior not bound +!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithReportToPersistenceDelayTime:reportToPersistenceDelayTimeMax:recentReportTimesMaxCount:timeBetweenReportsTooShortThreshold:timeBetweenReportsTooShortMinThreshold:reportToPersistenceDelayMaxMultiplier:deviceReportingExcessivelyIntervalThreshold: not bound +!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithStorageBehaviorOptimizationDisabled not bound +!missing-selector! MTRDeviceControllerParameters::setStorageBehaviorConfiguration: not bound +!missing-selector! MTRDeviceControllerParameters::storageBehaviorConfiguration not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::deviceReportingExcessivelyIntervalThreshold not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::disableStorageBehaviorOptimization not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::recentReportTimesMaxCount not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayMaxMultiplier not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayTime not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayTimeMax not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setDeviceReportingExcessivelyIntervalThreshold: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setDisableStorageBehaviorOptimization: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setRecentReportTimesMaxCount: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayMaxMultiplier: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayTime: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayTimeMax: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setTimeBetweenReportsTooShortMinThreshold: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setTimeBetweenReportsTooShortThreshold: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::timeBetweenReportsTooShortMinThreshold not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::timeBetweenReportsTooShortThreshold not bound +!missing-type! MTRDeviceStorageBehaviorConfiguration not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-VideoToolbox.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-VideoToolbox.todo index 045ffe61ea..bca4c020e9 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-VideoToolbox.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-VideoToolbox.todo @@ -70,3 +70,4 @@ !missing-pinvoke! VTRAWProcessingSessionProcessFrame is not bound !missing-pinvoke! VTRAWProcessingSessionSetParameterChangedHander is not bound !missing-pinvoke! VTRAWProcessingSessionSetProcessingParameters is not bound +!missing-field! kVTDecoderExtensionProperties_ExtensionIdentifierKey not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-WebKit.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-WebKit.todo index ff051a00a4..4f7193cd85 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-WebKit.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-WebKit.todo @@ -1 +1,5 @@ -!deprecated-attribute-missing! WKBackForwardListItem::title missing a [Deprecated] attribute +!missing-selector! WKWebView::isWritingToolsActive not bound +!missing-selector! WKWebViewConfiguration::setSupportsAdaptiveImageGlyph: not bound +!missing-selector! WKWebViewConfiguration::setWritingToolsBehavior: not bound +!missing-selector! WKWebViewConfiguration::supportsAdaptiveImageGlyph not bound +!missing-selector! WKWebViewConfiguration::writingToolsBehavior not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Accessibility.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Accessibility.todo index 8d151946b0..6bb5723b88 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Accessibility.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Accessibility.todo @@ -3,3 +3,14 @@ !missing-pinvoke! AXAssistiveAccessEnabled is not bound !missing-pinvoke! AXOpenSettingsFeature is not bound !missing-pinvoke! AXPrefersNonBlinkingTextInsertionIndicator is not bound +!missing-field! AXTechnologyAutomation not bound +!missing-field! AXTechnologyFullKeyboardAccess not bound +!missing-field! AXTechnologyHoverText not bound +!missing-field! AXTechnologySpeakScreen not bound +!missing-field! AXTechnologySwitchControl not bound +!missing-field! AXTechnologyVoiceControl not bound +!missing-field! AXTechnologyVoiceOver not bound +!missing-field! AXTechnologyZoom not bound +!missing-selector! +AXRequest::currentRequest not bound +!missing-selector! AXRequest::technology not bound +!missing-type! AXRequest not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-BackgroundTasks.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-BackgroundTasks.todo deleted file mode 100644 index c64ebba6fc..0000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-BackgroundTasks.todo +++ /dev/null @@ -1,10 +0,0 @@ -!missing-selector! BGContinuedProcessingTask::reason not bound -!missing-selector! BGContinuedProcessingTask::title not bound -!missing-selector! BGContinuedProcessingTask::updateProgress: not bound -!missing-selector! BGContinuedProcessingTaskRequest::initWithIdentifier: not bound -!missing-selector! BGContinuedProcessingTaskRequest::reason not bound -!missing-selector! BGContinuedProcessingTaskRequest::setReason: not bound -!missing-selector! BGContinuedProcessingTaskRequest::setTitle: not bound -!missing-selector! BGContinuedProcessingTaskRequest::title not bound -!missing-type! BGContinuedProcessingTask not bound -!missing-type! BGContinuedProcessingTaskRequest not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-CoreAnimation.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-CoreAnimation.todo index db0b3c85b0..13c4159ca8 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-CoreAnimation.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-CoreAnimation.todo @@ -36,3 +36,8 @@ !missing-selector! CASpringAnimation::setAllowsOverdamping: not bound !missing-type! CAMetalDisplayLink not bound !missing-type! CAMetalDisplayLinkUpdate not bound +!missing-field! CAToneMapModeAutomatic not bound +!missing-field! CAToneMapModeIfSupported not bound +!missing-field! CAToneMapModeNever not bound +!missing-selector! CALayer::setToneMapMode: not bound +!missing-selector! CALayer::toneMapMode not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-CoreGraphics.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-CoreGraphics.todo index a2058f1587..2afa910b49 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-CoreGraphics.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-CoreGraphics.todo @@ -10,6 +10,13 @@ !missing-pinvoke! CGContextGetEDRTargetHeadroom is not bound !missing-pinvoke! CGContextSetEDRTargetHeadroom is not bound !missing-pinvoke! CGImageContainsImageSpecificToneMappingMetadata is not bound -!missing-pinvoke! CGImageCreateWithEDRHeadroom is not bound !missing-pinvoke! CGImageGetContentHeadroom is not bound !missing-pinvoke! CGImageShouldToneMap is not bound +!missing-enum-value! CGPdfTagType native value CGPDFTagTypeObject = 800 not bound +!missing-field! kCGColorSpaceCoreMedia709 not bound +!missing-field! kCGDefaultHDRImageContentHeadroom not bound +!missing-pinvoke! CGImageCreateCopyWithContentHeadroom is not bound +!missing-pinvoke! CGImageCreateWithContentHeadroom is not bound +!missing-pinvoke! CGPDFContextSetIDTree is not bound +!missing-pinvoke! CGPDFContextSetPageTagStructureTree is not bound +!missing-pinvoke! CGPDFContextSetParentTree is not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-CoreMIDI.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-CoreMIDI.todo index dd1c05a3d3..810f1f56d5 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-CoreMIDI.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-CoreMIDI.todo @@ -1,5 +1,4 @@ !missing-pinvoke! MIDIEventListForEachEvent is not bound -!missing-enum! MIDICICategoryBitmap not bound !missing-enum! MIDICIDeviceType not bound !missing-enum! MIDICIManagementMessageType not bound !missing-enum! MIDICIProcessInquiryMessageType not bound @@ -10,10 +9,11 @@ !missing-enum! MIDIUMPFunctionBlockDirection not bound !missing-enum! MIDIUMPFunctionBlockMIDI1Info not bound !missing-enum! MIDIUMPFunctionBlockUIHint not bound -!missing-enum! MIDIUMPProtocolBitmap not bound !missing-enum! UMPStreamMessageFormat not bound !missing-enum! UMPStreamMessageStatus not bound !missing-enum-value! MidiMessageType native value kMIDIMessageTypeFlexData = 13 not bound !missing-enum-value! MidiMessageType native value kMIDIMessageTypeInvalid = 255 not bound !missing-enum-value! MidiUtilityStatus native value kMIDIUtilityStatusDeltaClockstampTicksPerQuarterNote = 3 not bound !missing-enum-value! MidiUtilityStatus native value kMIDIUtilityStatusTicksSinceLastEvent = 4 not bound +!missing-enum! MIDICICategoryOptions not bound +!missing-enum! MIDIUMPProtocolOptions not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-CoreML.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-CoreML.todo index 647c7695c9..ab47b2988c 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-CoreML.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-CoreML.todo @@ -73,3 +73,9 @@ !missing-type! MLOptimizationHints not bound !missing-type! MLState not bound !missing-type! MLStateConstraint not bound +!missing-enum! MLSpecializationStrategy not bound +!missing-selector! +MLModelAsset::modelAssetWithSpecificationData:blobMapping:error: not bound +!missing-selector! MLMultiArray::initWithShape:dataType:strides: not bound +!missing-selector! MLMultiArray::transferToMultiArray: not bound +!missing-selector! MLOptimizationHints::setSpecializationStrategy: not bound +!missing-selector! MLOptimizationHints::specializationStrategy not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-ImageIO.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-ImageIO.todo index a70551dbf5..04649501e2 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-ImageIO.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-ImageIO.todo @@ -14,3 +14,10 @@ !missing-field! kIIOStereoAggressors_SubTypeURI not bound !missing-field! kIIOStereoAggressors_Type not bound !missing-pinvoke! CGImageSourceSetAllowableTypes is not bound +!missing-field! kCGImageDestinationEncodeBaseIsSDR not bound +!missing-field! kCGImageDestinationEncodeRequest not bound +!missing-field! kCGImageDestinationEncodeRequestOptions not bound +!missing-field! kCGImageDestinationEncodeToISOGainmap not bound +!missing-field! kCGImageDestinationEncodeToISOHDR not bound +!missing-field! kCGImageDestinationEncodeTonemapMode not bound +!missing-field! kCGImageDestinationEncodeToSDR not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Matter.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Matter.todo index 232d6ff21f..5ff1d1729e 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Matter.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-Matter.todo @@ -2241,3 +2241,25 @@ !missing-type! MTRValveConfigurationAndControlClusterOpenParams not bound !missing-type! MTRValveConfigurationAndControlClusterValveFaultEvent not bound !missing-type! MTRValveConfigurationAndControlClusterValveStateChangedEvent not bound +!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithDefaultStorageBehavior not bound +!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithReportToPersistenceDelayTime:reportToPersistenceDelayTimeMax:recentReportTimesMaxCount:timeBetweenReportsTooShortThreshold:timeBetweenReportsTooShortMinThreshold:reportToPersistenceDelayMaxMultiplier:deviceReportingExcessivelyIntervalThreshold: not bound +!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithStorageBehaviorOptimizationDisabled not bound +!missing-selector! MTRDeviceControllerParameters::setStorageBehaviorConfiguration: not bound +!missing-selector! MTRDeviceControllerParameters::storageBehaviorConfiguration not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::deviceReportingExcessivelyIntervalThreshold not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::disableStorageBehaviorOptimization not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::recentReportTimesMaxCount not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayMaxMultiplier not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayTime not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayTimeMax not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setDeviceReportingExcessivelyIntervalThreshold: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setDisableStorageBehaviorOptimization: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setRecentReportTimesMaxCount: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayMaxMultiplier: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayTime: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayTimeMax: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setTimeBetweenReportsTooShortMinThreshold: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setTimeBetweenReportsTooShortThreshold: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::timeBetweenReportsTooShortMinThreshold not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::timeBetweenReportsTooShortThreshold not bound +!missing-type! MTRDeviceStorageBehaviorConfiguration not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-UIKit.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-UIKit.todo index 787403c406..e28d83f297 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-UIKit.todo +++ b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-UIKit.todo @@ -203,3 +203,39 @@ !unknown-field! UIPasteboardDetectionPatternProbableWebURL bound !unknown-field! UIPasteboardDetectionPatternShipmentTrackingNumber bound !unknown-native-enum! UIPasteControlDisplayMode bound +!missing-enum! UIAccessibilityExpandedStatus not bound +!missing-field! UIAccessibilityCustomActionCategoryEdit not bound +!missing-selector! +UIViewControllerTransition::coverVerticalTransition not bound +!missing-selector! +UIViewControllerTransition::crossDissolveTransition not bound +!missing-selector! +UIViewControllerTransition::flipHorizontalTransition not bound +!missing-selector! +UIViewControllerTransition::partialCurlTransition not bound +!missing-selector! +UIViewControllerTransition::zoomWithOptions:sourceViewProvider: not bound +!missing-selector! NSObject::accessibilityExpandedStatus not bound +!missing-selector! NSObject::accessibilityExpandedStatusBlock not bound +!missing-selector! NSObject::accessibilityHitTest:withEvent: not bound +!missing-selector! NSObject::setAccessibilityExpandedStatus: not bound +!missing-selector! NSObject::setAccessibilityExpandedStatusBlock: not bound +!missing-selector! UIAccessibilityCustomAction::category not bound +!missing-selector! UIAccessibilityCustomAction::setCategory: not bound +!missing-selector! UIViewController::preferredTransition not bound +!missing-selector! UIViewController::setPreferredTransition: not bound +!missing-selector! UIZoomTransitionAlignmentRectContext::sourceView not bound +!missing-selector! UIZoomTransitionAlignmentRectContext::zoomedViewController not bound +!missing-selector! UIZoomTransitionInteractionContext::location not bound +!missing-selector! UIZoomTransitionInteractionContext::velocity not bound +!missing-selector! UIZoomTransitionInteractionContext::willBegin not bound +!missing-selector! UIZoomTransitionOptions::alignmentRectProvider not bound +!missing-selector! UIZoomTransitionOptions::dimmingColor not bound +!missing-selector! UIZoomTransitionOptions::dimmingVisualEffect not bound +!missing-selector! UIZoomTransitionOptions::interactiveDismissShouldBegin not bound +!missing-selector! UIZoomTransitionOptions::setAlignmentRectProvider: not bound +!missing-selector! UIZoomTransitionOptions::setDimmingColor: not bound +!missing-selector! UIZoomTransitionOptions::setDimmingVisualEffect: not bound +!missing-selector! UIZoomTransitionOptions::setInteractiveDismissShouldBegin: not bound +!missing-selector! UIZoomTransitionSourceViewProviderContext::sourceViewController not bound +!missing-selector! UIZoomTransitionSourceViewProviderContext::zoomedViewController not bound +!missing-type! UIViewControllerTransition not bound +!missing-type! UIZoomTransitionAlignmentRectContext not bound +!missing-type! UIZoomTransitionInteractionContext not bound +!missing-type! UIZoomTransitionOptions not bound +!missing-type! UIZoomTransitionSourceViewProviderContext not bound diff --git a/tests/xtro-sharpie/iOS-Accessibility.todo b/tests/xtro-sharpie/iOS-Accessibility.todo index 8d151946b0..6bb5723b88 100644 --- a/tests/xtro-sharpie/iOS-Accessibility.todo +++ b/tests/xtro-sharpie/iOS-Accessibility.todo @@ -3,3 +3,14 @@ !missing-pinvoke! AXAssistiveAccessEnabled is not bound !missing-pinvoke! AXOpenSettingsFeature is not bound !missing-pinvoke! AXPrefersNonBlinkingTextInsertionIndicator is not bound +!missing-field! AXTechnologyAutomation not bound +!missing-field! AXTechnologyFullKeyboardAccess not bound +!missing-field! AXTechnologyHoverText not bound +!missing-field! AXTechnologySpeakScreen not bound +!missing-field! AXTechnologySwitchControl not bound +!missing-field! AXTechnologyVoiceControl not bound +!missing-field! AXTechnologyVoiceOver not bound +!missing-field! AXTechnologyZoom not bound +!missing-selector! +AXRequest::currentRequest not bound +!missing-selector! AXRequest::technology not bound +!missing-type! AXRequest not bound diff --git a/tests/xtro-sharpie/iOS-AuthenticationServices.todo b/tests/xtro-sharpie/iOS-AuthenticationServices.todo index e222b9c6ab..3ab4c8aba6 100644 --- a/tests/xtro-sharpie/iOS-AuthenticationServices.todo +++ b/tests/xtro-sharpie/iOS-AuthenticationServices.todo @@ -108,3 +108,4 @@ !missing-type! ASPasskeyRegistrationCredentialExtensionOutput not bound !missing-type! ASPublicKeyCredentialClientData not bound !missing-type! ASWebAuthenticationSessionCallback not bound +!missing-selector! +ASSettingsHelper::requestCredentialProviderExtensionEnablementWithCompletionHandler: not bound diff --git a/tests/xtro-sharpie/iOS-BackgroundTasks.todo b/tests/xtro-sharpie/iOS-BackgroundTasks.todo deleted file mode 100644 index c64ebba6fc..0000000000 --- a/tests/xtro-sharpie/iOS-BackgroundTasks.todo +++ /dev/null @@ -1,10 +0,0 @@ -!missing-selector! BGContinuedProcessingTask::reason not bound -!missing-selector! BGContinuedProcessingTask::title not bound -!missing-selector! BGContinuedProcessingTask::updateProgress: not bound -!missing-selector! BGContinuedProcessingTaskRequest::initWithIdentifier: not bound -!missing-selector! BGContinuedProcessingTaskRequest::reason not bound -!missing-selector! BGContinuedProcessingTaskRequest::setReason: not bound -!missing-selector! BGContinuedProcessingTaskRequest::setTitle: not bound -!missing-selector! BGContinuedProcessingTaskRequest::title not bound -!missing-type! BGContinuedProcessingTask not bound -!missing-type! BGContinuedProcessingTaskRequest not bound diff --git a/tests/xtro-sharpie/iOS-CoreAnimation.todo b/tests/xtro-sharpie/iOS-CoreAnimation.todo index 34dfc677cc..ee8cff6a1b 100644 --- a/tests/xtro-sharpie/iOS-CoreAnimation.todo +++ b/tests/xtro-sharpie/iOS-CoreAnimation.todo @@ -39,3 +39,8 @@ !missing-selector! CASpringAnimation::setAllowsOverdamping: not bound !missing-type! CAMetalDisplayLink not bound !missing-type! CAMetalDisplayLinkUpdate not bound +!missing-field! CAToneMapModeAutomatic not bound +!missing-field! CAToneMapModeIfSupported not bound +!missing-field! CAToneMapModeNever not bound +!missing-selector! CALayer::setToneMapMode: not bound +!missing-selector! CALayer::toneMapMode not bound diff --git a/tests/xtro-sharpie/iOS-CoreGraphics.todo b/tests/xtro-sharpie/iOS-CoreGraphics.todo index a2058f1587..2afa910b49 100644 --- a/tests/xtro-sharpie/iOS-CoreGraphics.todo +++ b/tests/xtro-sharpie/iOS-CoreGraphics.todo @@ -10,6 +10,13 @@ !missing-pinvoke! CGContextGetEDRTargetHeadroom is not bound !missing-pinvoke! CGContextSetEDRTargetHeadroom is not bound !missing-pinvoke! CGImageContainsImageSpecificToneMappingMetadata is not bound -!missing-pinvoke! CGImageCreateWithEDRHeadroom is not bound !missing-pinvoke! CGImageGetContentHeadroom is not bound !missing-pinvoke! CGImageShouldToneMap is not bound +!missing-enum-value! CGPdfTagType native value CGPDFTagTypeObject = 800 not bound +!missing-field! kCGColorSpaceCoreMedia709 not bound +!missing-field! kCGDefaultHDRImageContentHeadroom not bound +!missing-pinvoke! CGImageCreateCopyWithContentHeadroom is not bound +!missing-pinvoke! CGImageCreateWithContentHeadroom is not bound +!missing-pinvoke! CGPDFContextSetIDTree is not bound +!missing-pinvoke! CGPDFContextSetPageTagStructureTree is not bound +!missing-pinvoke! CGPDFContextSetParentTree is not bound diff --git a/tests/xtro-sharpie/iOS-CoreMIDI.todo b/tests/xtro-sharpie/iOS-CoreMIDI.todo index 103e213aa3..68947d7b79 100644 --- a/tests/xtro-sharpie/iOS-CoreMIDI.todo +++ b/tests/xtro-sharpie/iOS-CoreMIDI.todo @@ -10,7 +10,6 @@ !deprecated-attribute-missing! MIDICIProfileState::initWithChannel:enabledProfiles:disabledProfiles: missing a [Deprecated] attribute !deprecated-attribute-missing! MIDICIResponder missing a [Deprecated] attribute !deprecated-attribute-missing! MIDICISession missing a [Deprecated] attribute -!missing-enum! MIDICICategoryBitmap not bound !missing-enum! MIDICIDeviceType not bound !missing-enum! MIDICIManagementMessageType not bound !missing-enum! MIDICIProcessInquiryMessageType not bound @@ -21,7 +20,6 @@ !missing-enum! MIDIUMPFunctionBlockDirection not bound !missing-enum! MIDIUMPFunctionBlockMIDI1Info not bound !missing-enum! MIDIUMPFunctionBlockUIHint not bound -!missing-enum! MIDIUMPProtocolBitmap not bound !missing-enum! UMPStreamMessageFormat not bound !missing-enum! UMPStreamMessageStatus not bound !missing-enum-value! MidiMessageType native value kMIDIMessageTypeFlexData = 13 not bound @@ -34,14 +32,11 @@ !missing-field! MIDICIDeviceWasAddedNotification not bound !missing-field! MIDICIDeviceWasRemovedNotification not bound !missing-field! MIDICIProfileObjectKey not bound -!missing-field! MIDICIProfileStateChangedNotification not bound !missing-field! MIDICIProfileWasRemovedNotification not bound !missing-field! MIDIUMPEndpointObjectKey not bound -!missing-field! MIDIUMPEndpointUpdatedNotification not bound !missing-field! MIDIUMPEndpointWasAddedNotification not bound !missing-field! MIDIUMPEndpointWasRemovedNotification not bound !missing-field! MIDIUMPFunctionBlockObjectKey not bound -!missing-field! MIDIUMPFunctionBlockUpdatedNotification not bound !missing-selector! +MIDICIDeviceManager::sharedInstance not bound !missing-selector! +MIDIUMPEndpointManager::sharedInstance not bound !missing-selector! MIDI2DeviceInfo::family not bound @@ -115,3 +110,8 @@ !missing-type! MIDIUMPFunctionBlock not bound !missing-type! MIDIUMPMutableEndpoint not bound !missing-type! MIDIUMPMutableFunctionBlock not bound +!missing-enum! MIDICICategoryOptions not bound +!missing-enum! MIDIUMPProtocolOptions not bound +!missing-field! MIDICIProfileWasUpdatedNotification not bound +!missing-field! MIDIUMPEndpointWasUpdatedNotification not bound +!missing-field! MIDIUMPFunctionBlockWasUpdatedNotification not bound diff --git a/tests/xtro-sharpie/iOS-CoreML.todo b/tests/xtro-sharpie/iOS-CoreML.todo index 93ab127e46..7788e5af8f 100644 --- a/tests/xtro-sharpie/iOS-CoreML.todo +++ b/tests/xtro-sharpie/iOS-CoreML.todo @@ -76,3 +76,9 @@ !unknown-field! MLModelCollectionDidChangeNotification bound !unknown-type! MLModelCollection bound !unknown-type! MLModelCollectionEntry bound +!missing-enum! MLSpecializationStrategy not bound +!missing-selector! +MLModelAsset::modelAssetWithSpecificationData:blobMapping:error: not bound +!missing-selector! MLMultiArray::initWithShape:dataType:strides: not bound +!missing-selector! MLMultiArray::transferToMultiArray: not bound +!missing-selector! MLOptimizationHints::setSpecializationStrategy: not bound +!missing-selector! MLOptimizationHints::specializationStrategy not bound diff --git a/tests/xtro-sharpie/iOS-CoreMotion.todo b/tests/xtro-sharpie/iOS-CoreMotion.todo index 58c4096e6a..4af452db25 100644 --- a/tests/xtro-sharpie/iOS-CoreMotion.todo +++ b/tests/xtro-sharpie/iOS-CoreMotion.todo @@ -9,3 +9,6 @@ !missing-selector! CMHeadphoneActivityManager::stopActivityUpdates not bound !missing-selector! CMHeadphoneActivityManager::stopStatusUpdates not bound !missing-type! CMHeadphoneActivityManager not bound +!missing-selector! CMHeadphoneMotionManager::isConnectionStatusActive not bound +!missing-selector! CMHeadphoneMotionManager::startConnectionStatusUpdates not bound +!missing-selector! CMHeadphoneMotionManager::stopConnectionStatusUpdates not bound diff --git a/tests/xtro-sharpie/iOS-FileProvider.todo b/tests/xtro-sharpie/iOS-FileProvider.todo index 97434b54d5..c42e56926a 100644 --- a/tests/xtro-sharpie/iOS-FileProvider.todo +++ b/tests/xtro-sharpie/iOS-FileProvider.todo @@ -2,3 +2,5 @@ !missing-enum-value! NSFileProviderError native value NSFileProviderErrorApplicationExtensionNotFound = -2014 not bound !missing-enum-value! NSFileProviderError native value NSFileProviderErrorProviderDomainNotFound = -2013 not bound !missing-enum-value! NSFileProviderError native value NSFileProviderErrorProviderDomainTemporarilyUnavailable = -2012 not bound +!missing-selector! NSFileProviderDomain::setSupportsSyncingTrash: not bound +!missing-selector! NSFileProviderDomain::supportsSyncingTrash not bound diff --git a/tests/xtro-sharpie/iOS-ImageIO.todo b/tests/xtro-sharpie/iOS-ImageIO.todo index a70551dbf5..04649501e2 100644 --- a/tests/xtro-sharpie/iOS-ImageIO.todo +++ b/tests/xtro-sharpie/iOS-ImageIO.todo @@ -14,3 +14,10 @@ !missing-field! kIIOStereoAggressors_SubTypeURI not bound !missing-field! kIIOStereoAggressors_Type not bound !missing-pinvoke! CGImageSourceSetAllowableTypes is not bound +!missing-field! kCGImageDestinationEncodeBaseIsSDR not bound +!missing-field! kCGImageDestinationEncodeRequest not bound +!missing-field! kCGImageDestinationEncodeRequestOptions not bound +!missing-field! kCGImageDestinationEncodeToISOGainmap not bound +!missing-field! kCGImageDestinationEncodeToISOHDR not bound +!missing-field! kCGImageDestinationEncodeTonemapMode not bound +!missing-field! kCGImageDestinationEncodeToSDR not bound diff --git a/tests/xtro-sharpie/iOS-Matter.todo b/tests/xtro-sharpie/iOS-Matter.todo index 993d9b7fb9..5f2426d2c8 100644 --- a/tests/xtro-sharpie/iOS-Matter.todo +++ b/tests/xtro-sharpie/iOS-Matter.todo @@ -11175,3 +11175,25 @@ !missing-type! MTRValveConfigurationAndControlClusterOpenParams not bound !missing-type! MTRValveConfigurationAndControlClusterValveFaultEvent not bound !missing-type! MTRValveConfigurationAndControlClusterValveStateChangedEvent not bound +!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithDefaultStorageBehavior not bound +!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithReportToPersistenceDelayTime:reportToPersistenceDelayTimeMax:recentReportTimesMaxCount:timeBetweenReportsTooShortThreshold:timeBetweenReportsTooShortMinThreshold:reportToPersistenceDelayMaxMultiplier:deviceReportingExcessivelyIntervalThreshold: not bound +!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithStorageBehaviorOptimizationDisabled not bound +!missing-selector! MTRDeviceControllerParameters::setStorageBehaviorConfiguration: not bound +!missing-selector! MTRDeviceControllerParameters::storageBehaviorConfiguration not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::deviceReportingExcessivelyIntervalThreshold not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::disableStorageBehaviorOptimization not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::recentReportTimesMaxCount not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayMaxMultiplier not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayTime not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayTimeMax not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setDeviceReportingExcessivelyIntervalThreshold: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setDisableStorageBehaviorOptimization: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setRecentReportTimesMaxCount: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayMaxMultiplier: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayTime: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayTimeMax: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setTimeBetweenReportsTooShortMinThreshold: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setTimeBetweenReportsTooShortThreshold: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::timeBetweenReportsTooShortMinThreshold not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::timeBetweenReportsTooShortThreshold not bound +!missing-type! MTRDeviceStorageBehaviorConfiguration not bound diff --git a/tests/xtro-sharpie/iOS-UIKit.todo b/tests/xtro-sharpie/iOS-UIKit.todo index c0d95553fd..c0a77cc071 100644 --- a/tests/xtro-sharpie/iOS-UIKit.todo +++ b/tests/xtro-sharpie/iOS-UIKit.todo @@ -367,3 +367,24 @@ !missing-type! UIZoomTransitionInteractionContext not bound !missing-type! UIZoomTransitionOptions not bound !missing-type! UIZoomTransitionSourceViewProviderContext not bound +!missing-enum! UIAccessibilityExpandedStatus not bound +!missing-field! UIAccessibilityCustomActionCategoryEdit not bound +!missing-selector! NSObject::accessibilityExpandedStatus not bound +!missing-selector! NSObject::accessibilityExpandedStatusBlock not bound +!missing-selector! NSObject::accessibilityHitTest:withEvent: not bound +!missing-selector! NSObject::accessibilityNextTextNavigationElement not bound +!missing-selector! NSObject::accessibilityNextTextNavigationElementBlock not bound +!missing-selector! NSObject::accessibilityPreviousTextNavigationElement not bound +!missing-selector! NSObject::accessibilityPreviousTextNavigationElementBlock not bound +!missing-selector! NSObject::setAccessibilityExpandedStatus: not bound +!missing-selector! NSObject::setAccessibilityExpandedStatusBlock: not bound +!missing-selector! NSObject::setAccessibilityNextTextNavigationElement: not bound +!missing-selector! NSObject::setAccessibilityNextTextNavigationElementBlock: not bound +!missing-selector! NSObject::setAccessibilityPreviousTextNavigationElement: not bound +!missing-selector! NSObject::setAccessibilityPreviousTextNavigationElementBlock: not bound +!missing-selector! UIAccessibilityCustomAction::category not bound +!missing-selector! UIAccessibilityCustomAction::setCategory: not bound +!missing-selector! UITextView::setWritingToolsAllowedInputOptions: not bound +!missing-selector! UITextView::setWritingToolsBehavior: not bound +!missing-selector! UITextView::writingToolsAllowedInputOptions not bound +!missing-selector! UITextView::writingToolsBehavior not bound diff --git a/tests/xtro-sharpie/iOS-WebKit.todo b/tests/xtro-sharpie/iOS-WebKit.todo index ff051a00a4..4f7193cd85 100644 --- a/tests/xtro-sharpie/iOS-WebKit.todo +++ b/tests/xtro-sharpie/iOS-WebKit.todo @@ -1 +1,5 @@ -!deprecated-attribute-missing! WKBackForwardListItem::title missing a [Deprecated] attribute +!missing-selector! WKWebView::isWritingToolsActive not bound +!missing-selector! WKWebViewConfiguration::setSupportsAdaptiveImageGlyph: not bound +!missing-selector! WKWebViewConfiguration::setWritingToolsBehavior: not bound +!missing-selector! WKWebViewConfiguration::supportsAdaptiveImageGlyph not bound +!missing-selector! WKWebViewConfiguration::writingToolsBehavior not bound diff --git a/tests/xtro-sharpie/iOS-iAd.todo b/tests/xtro-sharpie/iOS-iAd.todo deleted file mode 100644 index f739c40117..0000000000 --- a/tests/xtro-sharpie/iOS-iAd.todo +++ /dev/null @@ -1,2 +0,0 @@ -!unknown-field! ADClientErrorDomain bound -!unknown-type! ADClient bound diff --git a/tests/xtro-sharpie/macOS-AVFoundation.todo b/tests/xtro-sharpie/macOS-AVFoundation.todo index c91b5327af..bb81b75e23 100644 --- a/tests/xtro-sharpie/macOS-AVFoundation.todo +++ b/tests/xtro-sharpie/macOS-AVFoundation.todo @@ -706,3 +706,4 @@ !missing-type! AVPlayerItemSegment not bound !missing-type! AVRenderedCaptionImage not bound !missing-type! AVVideoPerformanceMetrics not bound +!missing-selector! AVMediaExtensionProperties::extensionIdentifier not bound diff --git a/tests/xtro-sharpie/macOS-Accessibility.todo b/tests/xtro-sharpie/macOS-Accessibility.todo index 8d151946b0..6bb5723b88 100644 --- a/tests/xtro-sharpie/macOS-Accessibility.todo +++ b/tests/xtro-sharpie/macOS-Accessibility.todo @@ -3,3 +3,14 @@ !missing-pinvoke! AXAssistiveAccessEnabled is not bound !missing-pinvoke! AXOpenSettingsFeature is not bound !missing-pinvoke! AXPrefersNonBlinkingTextInsertionIndicator is not bound +!missing-field! AXTechnologyAutomation not bound +!missing-field! AXTechnologyFullKeyboardAccess not bound +!missing-field! AXTechnologyHoverText not bound +!missing-field! AXTechnologySpeakScreen not bound +!missing-field! AXTechnologySwitchControl not bound +!missing-field! AXTechnologyVoiceControl not bound +!missing-field! AXTechnologyVoiceOver not bound +!missing-field! AXTechnologyZoom not bound +!missing-selector! +AXRequest::currentRequest not bound +!missing-selector! AXRequest::technology not bound +!missing-type! AXRequest not bound diff --git a/tests/xtro-sharpie/macOS-AppKit.todo b/tests/xtro-sharpie/macOS-AppKit.todo index 4c66fe9541..7905b6d9d9 100644 --- a/tests/xtro-sharpie/macOS-AppKit.todo +++ b/tests/xtro-sharpie/macOS-AppKit.todo @@ -120,3 +120,8 @@ !missing-selector! NSWindow::requestSharingOfWindowUsingPreview:title:completionHandler: not bound !missing-type! NSAdaptiveImageGlyph not bound !missing-type! NSSharingCollaborationModeRestriction not bound +!missing-selector! NSTextView::setWritingToolsAllowedInputOptions: not bound +!missing-selector! NSTextView::setWritingToolsBehavior: not bound +!missing-selector! NSTextView::writingToolsAllowedInputOptions not bound +!missing-selector! NSTextView::writingToolsBehavior not bound +!missing-selector! NSWindow::cascadingReferenceFrame not bound diff --git a/tests/xtro-sharpie/macOS-AuthenticationServices.todo b/tests/xtro-sharpie/macOS-AuthenticationServices.todo index a4af755f54..d6eb604f2a 100644 --- a/tests/xtro-sharpie/macOS-AuthenticationServices.todo +++ b/tests/xtro-sharpie/macOS-AuthenticationServices.todo @@ -118,3 +118,4 @@ !missing-type! ASPasskeyRegistrationCredentialExtensionInput not bound !missing-type! ASPasskeyRegistrationCredentialExtensionOutput not bound !missing-type! ASWebAuthenticationSessionCallback not bound +!missing-selector! +ASSettingsHelper::requestCredentialProviderExtensionEnablementWithCompletionHandler: not bound diff --git a/tests/xtro-sharpie/macOS-CoreAnimation.todo b/tests/xtro-sharpie/macOS-CoreAnimation.todo index f58f0a30dc..01a7618e3b 100644 --- a/tests/xtro-sharpie/macOS-CoreAnimation.todo +++ b/tests/xtro-sharpie/macOS-CoreAnimation.todo @@ -24,3 +24,8 @@ !missing-selector! CASpringAnimation::setAllowsOverdamping: not bound !missing-type! CAMetalDisplayLink not bound !missing-type! CAMetalDisplayLinkUpdate not bound +!missing-field! CAToneMapModeAutomatic not bound +!missing-field! CAToneMapModeIfSupported not bound +!missing-field! CAToneMapModeNever not bound +!missing-selector! CALayer::setToneMapMode: not bound +!missing-selector! CALayer::toneMapMode not bound diff --git a/tests/xtro-sharpie/macOS-CoreGraphics.todo b/tests/xtro-sharpie/macOS-CoreGraphics.todo index c87f980ad6..0b75857453 100644 --- a/tests/xtro-sharpie/macOS-CoreGraphics.todo +++ b/tests/xtro-sharpie/macOS-CoreGraphics.todo @@ -16,6 +16,13 @@ !missing-pinvoke! CGContextGetEDRTargetHeadroom is not bound !missing-pinvoke! CGContextSetEDRTargetHeadroom is not bound !missing-pinvoke! CGImageContainsImageSpecificToneMappingMetadata is not bound -!missing-pinvoke! CGImageCreateWithEDRHeadroom is not bound !missing-pinvoke! CGImageGetContentHeadroom is not bound !missing-pinvoke! CGImageShouldToneMap is not bound +!missing-enum-value! CGPdfTagType native value CGPDFTagTypeObject = 800 not bound +!missing-field! kCGColorSpaceCoreMedia709 not bound +!missing-field! kCGDefaultHDRImageContentHeadroom not bound +!missing-pinvoke! CGImageCreateCopyWithContentHeadroom is not bound +!missing-pinvoke! CGImageCreateWithContentHeadroom is not bound +!missing-pinvoke! CGPDFContextSetIDTree is not bound +!missing-pinvoke! CGPDFContextSetPageTagStructureTree is not bound +!missing-pinvoke! CGPDFContextSetParentTree is not bound diff --git a/tests/xtro-sharpie/macOS-CoreMIDI.todo b/tests/xtro-sharpie/macOS-CoreMIDI.todo index 103e213aa3..68947d7b79 100644 --- a/tests/xtro-sharpie/macOS-CoreMIDI.todo +++ b/tests/xtro-sharpie/macOS-CoreMIDI.todo @@ -10,7 +10,6 @@ !deprecated-attribute-missing! MIDICIProfileState::initWithChannel:enabledProfiles:disabledProfiles: missing a [Deprecated] attribute !deprecated-attribute-missing! MIDICIResponder missing a [Deprecated] attribute !deprecated-attribute-missing! MIDICISession missing a [Deprecated] attribute -!missing-enum! MIDICICategoryBitmap not bound !missing-enum! MIDICIDeviceType not bound !missing-enum! MIDICIManagementMessageType not bound !missing-enum! MIDICIProcessInquiryMessageType not bound @@ -21,7 +20,6 @@ !missing-enum! MIDIUMPFunctionBlockDirection not bound !missing-enum! MIDIUMPFunctionBlockMIDI1Info not bound !missing-enum! MIDIUMPFunctionBlockUIHint not bound -!missing-enum! MIDIUMPProtocolBitmap not bound !missing-enum! UMPStreamMessageFormat not bound !missing-enum! UMPStreamMessageStatus not bound !missing-enum-value! MidiMessageType native value kMIDIMessageTypeFlexData = 13 not bound @@ -34,14 +32,11 @@ !missing-field! MIDICIDeviceWasAddedNotification not bound !missing-field! MIDICIDeviceWasRemovedNotification not bound !missing-field! MIDICIProfileObjectKey not bound -!missing-field! MIDICIProfileStateChangedNotification not bound !missing-field! MIDICIProfileWasRemovedNotification not bound !missing-field! MIDIUMPEndpointObjectKey not bound -!missing-field! MIDIUMPEndpointUpdatedNotification not bound !missing-field! MIDIUMPEndpointWasAddedNotification not bound !missing-field! MIDIUMPEndpointWasRemovedNotification not bound !missing-field! MIDIUMPFunctionBlockObjectKey not bound -!missing-field! MIDIUMPFunctionBlockUpdatedNotification not bound !missing-selector! +MIDICIDeviceManager::sharedInstance not bound !missing-selector! +MIDIUMPEndpointManager::sharedInstance not bound !missing-selector! MIDI2DeviceInfo::family not bound @@ -115,3 +110,8 @@ !missing-type! MIDIUMPFunctionBlock not bound !missing-type! MIDIUMPMutableEndpoint not bound !missing-type! MIDIUMPMutableFunctionBlock not bound +!missing-enum! MIDICICategoryOptions not bound +!missing-enum! MIDIUMPProtocolOptions not bound +!missing-field! MIDICIProfileWasUpdatedNotification not bound +!missing-field! MIDIUMPEndpointWasUpdatedNotification not bound +!missing-field! MIDIUMPFunctionBlockWasUpdatedNotification not bound diff --git a/tests/xtro-sharpie/macOS-CoreML.todo b/tests/xtro-sharpie/macOS-CoreML.todo index 93ab127e46..7788e5af8f 100644 --- a/tests/xtro-sharpie/macOS-CoreML.todo +++ b/tests/xtro-sharpie/macOS-CoreML.todo @@ -76,3 +76,9 @@ !unknown-field! MLModelCollectionDidChangeNotification bound !unknown-type! MLModelCollection bound !unknown-type! MLModelCollectionEntry bound +!missing-enum! MLSpecializationStrategy not bound +!missing-selector! +MLModelAsset::modelAssetWithSpecificationData:blobMapping:error: not bound +!missing-selector! MLMultiArray::initWithShape:dataType:strides: not bound +!missing-selector! MLMultiArray::transferToMultiArray: not bound +!missing-selector! MLOptimizationHints::setSpecializationStrategy: not bound +!missing-selector! MLOptimizationHints::specializationStrategy not bound diff --git a/tests/xtro-sharpie/macOS-CoreMotion.todo b/tests/xtro-sharpie/macOS-CoreMotion.todo index 83e04bb08e..91a10fdd12 100644 --- a/tests/xtro-sharpie/macOS-CoreMotion.todo +++ b/tests/xtro-sharpie/macOS-CoreMotion.todo @@ -17,3 +17,6 @@ !missing-selector! CMMotionActivity::walking not bound !missing-type! CMHeadphoneActivityManager not bound !missing-type! CMMotionActivity not bound +!missing-selector! CMHeadphoneMotionManager::isConnectionStatusActive not bound +!missing-selector! CMHeadphoneMotionManager::startConnectionStatusUpdates not bound +!missing-selector! CMHeadphoneMotionManager::stopConnectionStatusUpdates not bound diff --git a/tests/xtro-sharpie/macOS-FSKit.todo b/tests/xtro-sharpie/macOS-FSKit.todo index 3b42518bb2..f46a1a8829 100644 --- a/tests/xtro-sharpie/macOS-FSKit.todo +++ b/tests/xtro-sharpie/macOS-FSKit.todo @@ -47,8 +47,6 @@ !missing-selector! +FSFileName::nameWithCString: not bound !missing-selector! +FSFileName::nameWithData: not bound !missing-selector! +FSFileName::nameWithString: not bound -!missing-selector! +FSKitConstants::forceLoadOption not bound -!missing-selector! +FSKitConstants::moduleExtensionPointName not bound !missing-selector! +FSKitMetaBlockRange::rangeWithOffset:blockLength:numOfBlocks: not bound !missing-selector! +FSKitStatfsResult::statFSWithBlockSize:ioSize:totalBlocks:availableBlocks:freeBlocks:totalFiles:freeFiles:fsSubType:fsTypeName: not bound !missing-selector! +FSKitUtils::stringWithFormatString:locale:arguments: not bound @@ -338,7 +336,6 @@ !missing-type! FSItemAttributes not bound !missing-type! FSItemGetAttributesRequest not bound !missing-type! FSItemSetAttributesRequest not bound -!missing-type! FSKitConstants not bound !missing-type! FSKitMetaBlockRange not bound !missing-type! FSKitStatfsResult not bound !missing-type! FSKitUtils not bound @@ -356,3 +353,7 @@ !missing-type! FSVolumeDescription not bound !missing-type! FSVolumeIdentifier not bound !missing-type! FSVolumeSupportedCapabilities not bound +!missing-field! FSTaskParameterConstantForceLoad not bound +!missing-field! FSTaskParameterConstantReadOnly not bound +!missing-selector! FSModuleIdentity::isEnabled not bound +!missing-selector! FSModuleIdentity::isSystem not bound diff --git a/tests/xtro-sharpie/macOS-ImageIO.todo b/tests/xtro-sharpie/macOS-ImageIO.todo index a70551dbf5..04649501e2 100644 --- a/tests/xtro-sharpie/macOS-ImageIO.todo +++ b/tests/xtro-sharpie/macOS-ImageIO.todo @@ -14,3 +14,10 @@ !missing-field! kIIOStereoAggressors_SubTypeURI not bound !missing-field! kIIOStereoAggressors_Type not bound !missing-pinvoke! CGImageSourceSetAllowableTypes is not bound +!missing-field! kCGImageDestinationEncodeBaseIsSDR not bound +!missing-field! kCGImageDestinationEncodeRequest not bound +!missing-field! kCGImageDestinationEncodeRequestOptions not bound +!missing-field! kCGImageDestinationEncodeToISOGainmap not bound +!missing-field! kCGImageDestinationEncodeToISOHDR not bound +!missing-field! kCGImageDestinationEncodeTonemapMode not bound +!missing-field! kCGImageDestinationEncodeToSDR not bound diff --git a/tests/xtro-sharpie/macOS-Matter.todo b/tests/xtro-sharpie/macOS-Matter.todo index 993d9b7fb9..5f2426d2c8 100644 --- a/tests/xtro-sharpie/macOS-Matter.todo +++ b/tests/xtro-sharpie/macOS-Matter.todo @@ -11175,3 +11175,25 @@ !missing-type! MTRValveConfigurationAndControlClusterOpenParams not bound !missing-type! MTRValveConfigurationAndControlClusterValveFaultEvent not bound !missing-type! MTRValveConfigurationAndControlClusterValveStateChangedEvent not bound +!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithDefaultStorageBehavior not bound +!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithReportToPersistenceDelayTime:reportToPersistenceDelayTimeMax:recentReportTimesMaxCount:timeBetweenReportsTooShortThreshold:timeBetweenReportsTooShortMinThreshold:reportToPersistenceDelayMaxMultiplier:deviceReportingExcessivelyIntervalThreshold: not bound +!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithStorageBehaviorOptimizationDisabled not bound +!missing-selector! MTRDeviceControllerParameters::setStorageBehaviorConfiguration: not bound +!missing-selector! MTRDeviceControllerParameters::storageBehaviorConfiguration not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::deviceReportingExcessivelyIntervalThreshold not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::disableStorageBehaviorOptimization not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::recentReportTimesMaxCount not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayMaxMultiplier not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayTime not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayTimeMax not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setDeviceReportingExcessivelyIntervalThreshold: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setDisableStorageBehaviorOptimization: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setRecentReportTimesMaxCount: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayMaxMultiplier: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayTime: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayTimeMax: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setTimeBetweenReportsTooShortMinThreshold: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setTimeBetweenReportsTooShortThreshold: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::timeBetweenReportsTooShortMinThreshold not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::timeBetweenReportsTooShortThreshold not bound +!missing-type! MTRDeviceStorageBehaviorConfiguration not bound diff --git a/tests/xtro-sharpie/macOS-VideoToolbox.todo b/tests/xtro-sharpie/macOS-VideoToolbox.todo index 045ffe61ea..bca4c020e9 100644 --- a/tests/xtro-sharpie/macOS-VideoToolbox.todo +++ b/tests/xtro-sharpie/macOS-VideoToolbox.todo @@ -70,3 +70,4 @@ !missing-pinvoke! VTRAWProcessingSessionProcessFrame is not bound !missing-pinvoke! VTRAWProcessingSessionSetParameterChangedHander is not bound !missing-pinvoke! VTRAWProcessingSessionSetProcessingParameters is not bound +!missing-field! kVTDecoderExtensionProperties_ExtensionIdentifierKey not bound diff --git a/tests/xtro-sharpie/macOS-WebKit.todo b/tests/xtro-sharpie/macOS-WebKit.todo index ff051a00a4..4f7193cd85 100644 --- a/tests/xtro-sharpie/macOS-WebKit.todo +++ b/tests/xtro-sharpie/macOS-WebKit.todo @@ -1 +1,5 @@ -!deprecated-attribute-missing! WKBackForwardListItem::title missing a [Deprecated] attribute +!missing-selector! WKWebView::isWritingToolsActive not bound +!missing-selector! WKWebViewConfiguration::setSupportsAdaptiveImageGlyph: not bound +!missing-selector! WKWebViewConfiguration::setWritingToolsBehavior: not bound +!missing-selector! WKWebViewConfiguration::supportsAdaptiveImageGlyph not bound +!missing-selector! WKWebViewConfiguration::writingToolsBehavior not bound diff --git a/tests/xtro-sharpie/tvOS-Accessibility.todo b/tests/xtro-sharpie/tvOS-Accessibility.todo index 8d151946b0..6bb5723b88 100644 --- a/tests/xtro-sharpie/tvOS-Accessibility.todo +++ b/tests/xtro-sharpie/tvOS-Accessibility.todo @@ -3,3 +3,14 @@ !missing-pinvoke! AXAssistiveAccessEnabled is not bound !missing-pinvoke! AXOpenSettingsFeature is not bound !missing-pinvoke! AXPrefersNonBlinkingTextInsertionIndicator is not bound +!missing-field! AXTechnologyAutomation not bound +!missing-field! AXTechnologyFullKeyboardAccess not bound +!missing-field! AXTechnologyHoverText not bound +!missing-field! AXTechnologySpeakScreen not bound +!missing-field! AXTechnologySwitchControl not bound +!missing-field! AXTechnologyVoiceControl not bound +!missing-field! AXTechnologyVoiceOver not bound +!missing-field! AXTechnologyZoom not bound +!missing-selector! +AXRequest::currentRequest not bound +!missing-selector! AXRequest::technology not bound +!missing-type! AXRequest not bound diff --git a/tests/xtro-sharpie/tvOS-BackgroundTasks.todo b/tests/xtro-sharpie/tvOS-BackgroundTasks.todo deleted file mode 100644 index c64ebba6fc..0000000000 --- a/tests/xtro-sharpie/tvOS-BackgroundTasks.todo +++ /dev/null @@ -1,10 +0,0 @@ -!missing-selector! BGContinuedProcessingTask::reason not bound -!missing-selector! BGContinuedProcessingTask::title not bound -!missing-selector! BGContinuedProcessingTask::updateProgress: not bound -!missing-selector! BGContinuedProcessingTaskRequest::initWithIdentifier: not bound -!missing-selector! BGContinuedProcessingTaskRequest::reason not bound -!missing-selector! BGContinuedProcessingTaskRequest::setReason: not bound -!missing-selector! BGContinuedProcessingTaskRequest::setTitle: not bound -!missing-selector! BGContinuedProcessingTaskRequest::title not bound -!missing-type! BGContinuedProcessingTask not bound -!missing-type! BGContinuedProcessingTaskRequest not bound diff --git a/tests/xtro-sharpie/tvOS-CoreAnimation.todo b/tests/xtro-sharpie/tvOS-CoreAnimation.todo index db0b3c85b0..13c4159ca8 100644 --- a/tests/xtro-sharpie/tvOS-CoreAnimation.todo +++ b/tests/xtro-sharpie/tvOS-CoreAnimation.todo @@ -36,3 +36,8 @@ !missing-selector! CASpringAnimation::setAllowsOverdamping: not bound !missing-type! CAMetalDisplayLink not bound !missing-type! CAMetalDisplayLinkUpdate not bound +!missing-field! CAToneMapModeAutomatic not bound +!missing-field! CAToneMapModeIfSupported not bound +!missing-field! CAToneMapModeNever not bound +!missing-selector! CALayer::setToneMapMode: not bound +!missing-selector! CALayer::toneMapMode not bound diff --git a/tests/xtro-sharpie/tvOS-CoreGraphics.todo b/tests/xtro-sharpie/tvOS-CoreGraphics.todo index a2058f1587..2afa910b49 100644 --- a/tests/xtro-sharpie/tvOS-CoreGraphics.todo +++ b/tests/xtro-sharpie/tvOS-CoreGraphics.todo @@ -10,6 +10,13 @@ !missing-pinvoke! CGContextGetEDRTargetHeadroom is not bound !missing-pinvoke! CGContextSetEDRTargetHeadroom is not bound !missing-pinvoke! CGImageContainsImageSpecificToneMappingMetadata is not bound -!missing-pinvoke! CGImageCreateWithEDRHeadroom is not bound !missing-pinvoke! CGImageGetContentHeadroom is not bound !missing-pinvoke! CGImageShouldToneMap is not bound +!missing-enum-value! CGPdfTagType native value CGPDFTagTypeObject = 800 not bound +!missing-field! kCGColorSpaceCoreMedia709 not bound +!missing-field! kCGDefaultHDRImageContentHeadroom not bound +!missing-pinvoke! CGImageCreateCopyWithContentHeadroom is not bound +!missing-pinvoke! CGImageCreateWithContentHeadroom is not bound +!missing-pinvoke! CGPDFContextSetIDTree is not bound +!missing-pinvoke! CGPDFContextSetPageTagStructureTree is not bound +!missing-pinvoke! CGPDFContextSetParentTree is not bound diff --git a/tests/xtro-sharpie/tvOS-CoreMIDI.todo b/tests/xtro-sharpie/tvOS-CoreMIDI.todo index dd1c05a3d3..810f1f56d5 100644 --- a/tests/xtro-sharpie/tvOS-CoreMIDI.todo +++ b/tests/xtro-sharpie/tvOS-CoreMIDI.todo @@ -1,5 +1,4 @@ !missing-pinvoke! MIDIEventListForEachEvent is not bound -!missing-enum! MIDICICategoryBitmap not bound !missing-enum! MIDICIDeviceType not bound !missing-enum! MIDICIManagementMessageType not bound !missing-enum! MIDICIProcessInquiryMessageType not bound @@ -10,10 +9,11 @@ !missing-enum! MIDIUMPFunctionBlockDirection not bound !missing-enum! MIDIUMPFunctionBlockMIDI1Info not bound !missing-enum! MIDIUMPFunctionBlockUIHint not bound -!missing-enum! MIDIUMPProtocolBitmap not bound !missing-enum! UMPStreamMessageFormat not bound !missing-enum! UMPStreamMessageStatus not bound !missing-enum-value! MidiMessageType native value kMIDIMessageTypeFlexData = 13 not bound !missing-enum-value! MidiMessageType native value kMIDIMessageTypeInvalid = 255 not bound !missing-enum-value! MidiUtilityStatus native value kMIDIUtilityStatusDeltaClockstampTicksPerQuarterNote = 3 not bound !missing-enum-value! MidiUtilityStatus native value kMIDIUtilityStatusTicksSinceLastEvent = 4 not bound +!missing-enum! MIDICICategoryOptions not bound +!missing-enum! MIDIUMPProtocolOptions not bound diff --git a/tests/xtro-sharpie/tvOS-CoreML.todo b/tests/xtro-sharpie/tvOS-CoreML.todo index 647c7695c9..ab47b2988c 100644 --- a/tests/xtro-sharpie/tvOS-CoreML.todo +++ b/tests/xtro-sharpie/tvOS-CoreML.todo @@ -73,3 +73,9 @@ !missing-type! MLOptimizationHints not bound !missing-type! MLState not bound !missing-type! MLStateConstraint not bound +!missing-enum! MLSpecializationStrategy not bound +!missing-selector! +MLModelAsset::modelAssetWithSpecificationData:blobMapping:error: not bound +!missing-selector! MLMultiArray::initWithShape:dataType:strides: not bound +!missing-selector! MLMultiArray::transferToMultiArray: not bound +!missing-selector! MLOptimizationHints::setSpecializationStrategy: not bound +!missing-selector! MLOptimizationHints::specializationStrategy not bound diff --git a/tests/xtro-sharpie/tvOS-ImageIO.todo b/tests/xtro-sharpie/tvOS-ImageIO.todo index a70551dbf5..04649501e2 100644 --- a/tests/xtro-sharpie/tvOS-ImageIO.todo +++ b/tests/xtro-sharpie/tvOS-ImageIO.todo @@ -14,3 +14,10 @@ !missing-field! kIIOStereoAggressors_SubTypeURI not bound !missing-field! kIIOStereoAggressors_Type not bound !missing-pinvoke! CGImageSourceSetAllowableTypes is not bound +!missing-field! kCGImageDestinationEncodeBaseIsSDR not bound +!missing-field! kCGImageDestinationEncodeRequest not bound +!missing-field! kCGImageDestinationEncodeRequestOptions not bound +!missing-field! kCGImageDestinationEncodeToISOGainmap not bound +!missing-field! kCGImageDestinationEncodeToISOHDR not bound +!missing-field! kCGImageDestinationEncodeTonemapMode not bound +!missing-field! kCGImageDestinationEncodeToSDR not bound diff --git a/tests/xtro-sharpie/tvOS-Matter.todo b/tests/xtro-sharpie/tvOS-Matter.todo index 232d6ff21f..5ff1d1729e 100644 --- a/tests/xtro-sharpie/tvOS-Matter.todo +++ b/tests/xtro-sharpie/tvOS-Matter.todo @@ -2241,3 +2241,25 @@ !missing-type! MTRValveConfigurationAndControlClusterOpenParams not bound !missing-type! MTRValveConfigurationAndControlClusterValveFaultEvent not bound !missing-type! MTRValveConfigurationAndControlClusterValveStateChangedEvent not bound +!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithDefaultStorageBehavior not bound +!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithReportToPersistenceDelayTime:reportToPersistenceDelayTimeMax:recentReportTimesMaxCount:timeBetweenReportsTooShortThreshold:timeBetweenReportsTooShortMinThreshold:reportToPersistenceDelayMaxMultiplier:deviceReportingExcessivelyIntervalThreshold: not bound +!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithStorageBehaviorOptimizationDisabled not bound +!missing-selector! MTRDeviceControllerParameters::setStorageBehaviorConfiguration: not bound +!missing-selector! MTRDeviceControllerParameters::storageBehaviorConfiguration not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::deviceReportingExcessivelyIntervalThreshold not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::disableStorageBehaviorOptimization not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::recentReportTimesMaxCount not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayMaxMultiplier not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayTime not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayTimeMax not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setDeviceReportingExcessivelyIntervalThreshold: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setDisableStorageBehaviorOptimization: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setRecentReportTimesMaxCount: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayMaxMultiplier: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayTime: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayTimeMax: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setTimeBetweenReportsTooShortMinThreshold: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setTimeBetweenReportsTooShortThreshold: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::timeBetweenReportsTooShortMinThreshold not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::timeBetweenReportsTooShortThreshold not bound +!missing-type! MTRDeviceStorageBehaviorConfiguration not bound diff --git a/tests/xtro-sharpie/tvOS-UIKit.todo b/tests/xtro-sharpie/tvOS-UIKit.todo index 787403c406..e28d83f297 100644 --- a/tests/xtro-sharpie/tvOS-UIKit.todo +++ b/tests/xtro-sharpie/tvOS-UIKit.todo @@ -203,3 +203,39 @@ !unknown-field! UIPasteboardDetectionPatternProbableWebURL bound !unknown-field! UIPasteboardDetectionPatternShipmentTrackingNumber bound !unknown-native-enum! UIPasteControlDisplayMode bound +!missing-enum! UIAccessibilityExpandedStatus not bound +!missing-field! UIAccessibilityCustomActionCategoryEdit not bound +!missing-selector! +UIViewControllerTransition::coverVerticalTransition not bound +!missing-selector! +UIViewControllerTransition::crossDissolveTransition not bound +!missing-selector! +UIViewControllerTransition::flipHorizontalTransition not bound +!missing-selector! +UIViewControllerTransition::partialCurlTransition not bound +!missing-selector! +UIViewControllerTransition::zoomWithOptions:sourceViewProvider: not bound +!missing-selector! NSObject::accessibilityExpandedStatus not bound +!missing-selector! NSObject::accessibilityExpandedStatusBlock not bound +!missing-selector! NSObject::accessibilityHitTest:withEvent: not bound +!missing-selector! NSObject::setAccessibilityExpandedStatus: not bound +!missing-selector! NSObject::setAccessibilityExpandedStatusBlock: not bound +!missing-selector! UIAccessibilityCustomAction::category not bound +!missing-selector! UIAccessibilityCustomAction::setCategory: not bound +!missing-selector! UIViewController::preferredTransition not bound +!missing-selector! UIViewController::setPreferredTransition: not bound +!missing-selector! UIZoomTransitionAlignmentRectContext::sourceView not bound +!missing-selector! UIZoomTransitionAlignmentRectContext::zoomedViewController not bound +!missing-selector! UIZoomTransitionInteractionContext::location not bound +!missing-selector! UIZoomTransitionInteractionContext::velocity not bound +!missing-selector! UIZoomTransitionInteractionContext::willBegin not bound +!missing-selector! UIZoomTransitionOptions::alignmentRectProvider not bound +!missing-selector! UIZoomTransitionOptions::dimmingColor not bound +!missing-selector! UIZoomTransitionOptions::dimmingVisualEffect not bound +!missing-selector! UIZoomTransitionOptions::interactiveDismissShouldBegin not bound +!missing-selector! UIZoomTransitionOptions::setAlignmentRectProvider: not bound +!missing-selector! UIZoomTransitionOptions::setDimmingColor: not bound +!missing-selector! UIZoomTransitionOptions::setDimmingVisualEffect: not bound +!missing-selector! UIZoomTransitionOptions::setInteractiveDismissShouldBegin: not bound +!missing-selector! UIZoomTransitionSourceViewProviderContext::sourceViewController not bound +!missing-selector! UIZoomTransitionSourceViewProviderContext::zoomedViewController not bound +!missing-type! UIViewControllerTransition not bound +!missing-type! UIZoomTransitionAlignmentRectContext not bound +!missing-type! UIZoomTransitionInteractionContext not bound +!missing-type! UIZoomTransitionOptions not bound +!missing-type! UIZoomTransitionSourceViewProviderContext not bound diff --git a/tests/xtro-sharpie/watchOS-Accessibility.todo b/tests/xtro-sharpie/watchOS-Accessibility.todo index 8d151946b0..6bb5723b88 100644 --- a/tests/xtro-sharpie/watchOS-Accessibility.todo +++ b/tests/xtro-sharpie/watchOS-Accessibility.todo @@ -3,3 +3,14 @@ !missing-pinvoke! AXAssistiveAccessEnabled is not bound !missing-pinvoke! AXOpenSettingsFeature is not bound !missing-pinvoke! AXPrefersNonBlinkingTextInsertionIndicator is not bound +!missing-field! AXTechnologyAutomation not bound +!missing-field! AXTechnologyFullKeyboardAccess not bound +!missing-field! AXTechnologyHoverText not bound +!missing-field! AXTechnologySpeakScreen not bound +!missing-field! AXTechnologySwitchControl not bound +!missing-field! AXTechnologyVoiceControl not bound +!missing-field! AXTechnologyVoiceOver not bound +!missing-field! AXTechnologyZoom not bound +!missing-selector! +AXRequest::currentRequest not bound +!missing-selector! AXRequest::technology not bound +!missing-type! AXRequest not bound diff --git a/tests/xtro-sharpie/watchOS-CoreGraphics.todo b/tests/xtro-sharpie/watchOS-CoreGraphics.todo index a2058f1587..2afa910b49 100644 --- a/tests/xtro-sharpie/watchOS-CoreGraphics.todo +++ b/tests/xtro-sharpie/watchOS-CoreGraphics.todo @@ -10,6 +10,13 @@ !missing-pinvoke! CGContextGetEDRTargetHeadroom is not bound !missing-pinvoke! CGContextSetEDRTargetHeadroom is not bound !missing-pinvoke! CGImageContainsImageSpecificToneMappingMetadata is not bound -!missing-pinvoke! CGImageCreateWithEDRHeadroom is not bound !missing-pinvoke! CGImageGetContentHeadroom is not bound !missing-pinvoke! CGImageShouldToneMap is not bound +!missing-enum-value! CGPdfTagType native value CGPDFTagTypeObject = 800 not bound +!missing-field! kCGColorSpaceCoreMedia709 not bound +!missing-field! kCGDefaultHDRImageContentHeadroom not bound +!missing-pinvoke! CGImageCreateCopyWithContentHeadroom is not bound +!missing-pinvoke! CGImageCreateWithContentHeadroom is not bound +!missing-pinvoke! CGPDFContextSetIDTree is not bound +!missing-pinvoke! CGPDFContextSetPageTagStructureTree is not bound +!missing-pinvoke! CGPDFContextSetParentTree is not bound diff --git a/tests/xtro-sharpie/watchOS-CoreMIDI.todo b/tests/xtro-sharpie/watchOS-CoreMIDI.todo index dd1c05a3d3..810f1f56d5 100644 --- a/tests/xtro-sharpie/watchOS-CoreMIDI.todo +++ b/tests/xtro-sharpie/watchOS-CoreMIDI.todo @@ -1,5 +1,4 @@ !missing-pinvoke! MIDIEventListForEachEvent is not bound -!missing-enum! MIDICICategoryBitmap not bound !missing-enum! MIDICIDeviceType not bound !missing-enum! MIDICIManagementMessageType not bound !missing-enum! MIDICIProcessInquiryMessageType not bound @@ -10,10 +9,11 @@ !missing-enum! MIDIUMPFunctionBlockDirection not bound !missing-enum! MIDIUMPFunctionBlockMIDI1Info not bound !missing-enum! MIDIUMPFunctionBlockUIHint not bound -!missing-enum! MIDIUMPProtocolBitmap not bound !missing-enum! UMPStreamMessageFormat not bound !missing-enum! UMPStreamMessageStatus not bound !missing-enum-value! MidiMessageType native value kMIDIMessageTypeFlexData = 13 not bound !missing-enum-value! MidiMessageType native value kMIDIMessageTypeInvalid = 255 not bound !missing-enum-value! MidiUtilityStatus native value kMIDIUtilityStatusDeltaClockstampTicksPerQuarterNote = 3 not bound !missing-enum-value! MidiUtilityStatus native value kMIDIUtilityStatusTicksSinceLastEvent = 4 not bound +!missing-enum! MIDICICategoryOptions not bound +!missing-enum! MIDIUMPProtocolOptions not bound diff --git a/tests/xtro-sharpie/watchOS-CoreML.todo b/tests/xtro-sharpie/watchOS-CoreML.todo index 647c7695c9..ca60dfaf29 100644 --- a/tests/xtro-sharpie/watchOS-CoreML.todo +++ b/tests/xtro-sharpie/watchOS-CoreML.todo @@ -73,3 +73,8 @@ !missing-type! MLOptimizationHints not bound !missing-type! MLState not bound !missing-type! MLStateConstraint not bound +!missing-enum! MLSpecializationStrategy not bound +!missing-selector! MLMultiArray::initWithShape:dataType:strides: not bound +!missing-selector! MLMultiArray::transferToMultiArray: not bound +!missing-selector! MLOptimizationHints::setSpecializationStrategy: not bound +!missing-selector! MLOptimizationHints::specializationStrategy not bound diff --git a/tests/xtro-sharpie/watchOS-CoreMotion.todo b/tests/xtro-sharpie/watchOS-CoreMotion.todo index 58c4096e6a..4af452db25 100644 --- a/tests/xtro-sharpie/watchOS-CoreMotion.todo +++ b/tests/xtro-sharpie/watchOS-CoreMotion.todo @@ -9,3 +9,6 @@ !missing-selector! CMHeadphoneActivityManager::stopActivityUpdates not bound !missing-selector! CMHeadphoneActivityManager::stopStatusUpdates not bound !missing-type! CMHeadphoneActivityManager not bound +!missing-selector! CMHeadphoneMotionManager::isConnectionStatusActive not bound +!missing-selector! CMHeadphoneMotionManager::startConnectionStatusUpdates not bound +!missing-selector! CMHeadphoneMotionManager::stopConnectionStatusUpdates not bound diff --git a/tests/xtro-sharpie/watchOS-ImageIO.todo b/tests/xtro-sharpie/watchOS-ImageIO.todo index a70551dbf5..04649501e2 100644 --- a/tests/xtro-sharpie/watchOS-ImageIO.todo +++ b/tests/xtro-sharpie/watchOS-ImageIO.todo @@ -14,3 +14,10 @@ !missing-field! kIIOStereoAggressors_SubTypeURI not bound !missing-field! kIIOStereoAggressors_Type not bound !missing-pinvoke! CGImageSourceSetAllowableTypes is not bound +!missing-field! kCGImageDestinationEncodeBaseIsSDR not bound +!missing-field! kCGImageDestinationEncodeRequest not bound +!missing-field! kCGImageDestinationEncodeRequestOptions not bound +!missing-field! kCGImageDestinationEncodeToISOGainmap not bound +!missing-field! kCGImageDestinationEncodeToISOHDR not bound +!missing-field! kCGImageDestinationEncodeTonemapMode not bound +!missing-field! kCGImageDestinationEncodeToSDR not bound diff --git a/tests/xtro-sharpie/watchOS-Matter.todo b/tests/xtro-sharpie/watchOS-Matter.todo index 232d6ff21f..5ff1d1729e 100644 --- a/tests/xtro-sharpie/watchOS-Matter.todo +++ b/tests/xtro-sharpie/watchOS-Matter.todo @@ -2241,3 +2241,25 @@ !missing-type! MTRValveConfigurationAndControlClusterOpenParams not bound !missing-type! MTRValveConfigurationAndControlClusterValveFaultEvent not bound !missing-type! MTRValveConfigurationAndControlClusterValveStateChangedEvent not bound +!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithDefaultStorageBehavior not bound +!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithReportToPersistenceDelayTime:reportToPersistenceDelayTimeMax:recentReportTimesMaxCount:timeBetweenReportsTooShortThreshold:timeBetweenReportsTooShortMinThreshold:reportToPersistenceDelayMaxMultiplier:deviceReportingExcessivelyIntervalThreshold: not bound +!missing-selector! +MTRDeviceStorageBehaviorConfiguration::configurationWithStorageBehaviorOptimizationDisabled not bound +!missing-selector! MTRDeviceControllerParameters::setStorageBehaviorConfiguration: not bound +!missing-selector! MTRDeviceControllerParameters::storageBehaviorConfiguration not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::deviceReportingExcessivelyIntervalThreshold not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::disableStorageBehaviorOptimization not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::recentReportTimesMaxCount not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayMaxMultiplier not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayTime not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::reportToPersistenceDelayTimeMax not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setDeviceReportingExcessivelyIntervalThreshold: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setDisableStorageBehaviorOptimization: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setRecentReportTimesMaxCount: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayMaxMultiplier: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayTime: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setReportToPersistenceDelayTimeMax: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setTimeBetweenReportsTooShortMinThreshold: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::setTimeBetweenReportsTooShortThreshold: not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::timeBetweenReportsTooShortMinThreshold not bound +!missing-selector! MTRDeviceStorageBehaviorConfiguration::timeBetweenReportsTooShortThreshold not bound +!missing-type! MTRDeviceStorageBehaviorConfiguration not bound diff --git a/tests/xtro-sharpie/watchOS-UIKit.todo b/tests/xtro-sharpie/watchOS-UIKit.todo index 46458a1bd8..56d95c3df6 100644 --- a/tests/xtro-sharpie/watchOS-UIKit.todo +++ b/tests/xtro-sharpie/watchOS-UIKit.todo @@ -32,3 +32,4 @@ !missing-selector! NSTextAttachment::setImage: not bound !missing-selector! NSTextAttachment::setLineLayoutPadding: not bound !missing-type! NSTextAttachment not bound +!missing-enum! UIAccessibilityExpandedStatus not bound