diff --git a/Make.config b/Make.config index b89ea8a52749..a30eb8d4949c 100644 --- a/Make.config +++ b/Make.config @@ -140,8 +140,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=13.0 -XCODE_URL=https://dl.internalx.com/internal-files/xcodes/Xcode_13_beta_2.xip -XCODE_DEVELOPER_ROOT=/Applications/Xcode_13.0.0-beta2.app/Contents/Developer +XCODE_URL=https://dl.internalx.com/internal-files/xcodes/Xcode_13_beta_3.xip +XCODE_DEVELOPER_ROOT=/Applications/Xcode_13.0.0-beta3.app/Contents/Developer XCODE_PRODUCT_BUILD_VERSION:=$(shell /usr/libexec/PlistBuddy -c 'Print :ProductBuildVersion' $(XCODE_DEVELOPER_ROOT)/../version.plist) # Mono version embedded in XI/XM (NEEDED_MONO_VERSION/BRANCH) are specified in mk/mono.mk diff --git a/src/automaticassessmentconfiguration.cs b/src/automaticassessmentconfiguration.cs index 0afa95e6ac0b..acc232cafa9c 100644 --- a/src/automaticassessmentconfiguration.cs +++ b/src/automaticassessmentconfiguration.cs @@ -164,12 +164,6 @@ interface AEAssessmentApplication : NSCopying [Export ("requiresSignatureValidation")] bool RequiresSignatureValidation { get; set; } - - [Export ("initWithBundleIdentifier:")] - IntPtr Constructor (string bundleIdentifier); - - [Export ("initWithBundleIdentifier:teamIdentifier:")] - IntPtr Constructor (string bundleIdentifier, [NullAllowed] string teamIdentifier); } [Mac (12,0), iOS (15,0), MacCatalyst (15,0)] diff --git a/src/coremotion.cs b/src/coremotion.cs index d5e1a22fa877..504bc18391fc 100644 --- a/src/coremotion.cs +++ b/src/coremotion.cs @@ -457,10 +457,6 @@ interface CMAltimeter { [Export ("isAbsoluteAltitudeAvailable")] bool IsAbsoluteAltitudeAvailable { get; } - [Watch (8,0), NoTV, NoMac, iOS (15, 0), MacCatalyst (15,0)] - [Export ("absoluteAltitudeUpdateInterval")] - double AbsoluteAltitudeUpdateInterval { get; set; } - [Watch (8,0), NoTV, NoMac, iOS (15,0), MacCatalyst (15,0)] [Export ("startAbsoluteAltitudeUpdatesToQueue:withHandler:")] void StartAbsoluteAltitudeUpdates (NSOperationQueue queue, Action handler); diff --git a/src/uikit.cs b/src/uikit.cs index d0f3c227214d..6b54f4fa6168 100644 --- a/src/uikit.cs +++ b/src/uikit.cs @@ -19749,7 +19749,7 @@ interface UISceneActivationConditions : NSSecureCoding { [iOS (13,0), TV (13,0), NoWatch] [BaseType (typeof (NSObject))] - interface UISceneActivationRequestOptions { + interface UISceneActivationRequestOptions : NSCopying { [NullAllowed, Export ("requestingScene", ArgumentSemantic.Strong)] UIScene RequestingScene { get; set; } diff --git a/tests/introspection/ApiSelectorTest.cs b/tests/introspection/ApiSelectorTest.cs index c950326388f5..5134f48fa7e8 100644 --- a/tests/introspection/ApiSelectorTest.cs +++ b/tests/introspection/ApiSelectorTest.cs @@ -122,6 +122,8 @@ protected virtual bool Skip (Type type, string selectorName) // iOS 10 beta 2 case "GKBehavior": case "MDLTransform": + // UISceneActivationRequestOptions started conforming to NSCopying oin Xcode 13 + case "UISceneActivationRequestOptions": switch (selectorName) { case "copyWithZone:": return true; diff --git a/tests/monotouch-test/SystemConfiguration/StatusCodeErrorTest.cs b/tests/monotouch-test/SystemConfiguration/StatusCodeErrorTest.cs index 47d34f8ae7af..50e434b0b830 100644 --- a/tests/monotouch-test/SystemConfiguration/StatusCodeErrorTest.cs +++ b/tests/monotouch-test/SystemConfiguration/StatusCodeErrorTest.cs @@ -27,7 +27,14 @@ public void InvalidStatusCode () // "Operation not permitted" (might be localized so we just check non-null) Assert.NotNull (s, "1"); s = StatusCodeError.GetErrorDescription ((StatusCode) Int32.MinValue); - Assert.Null (s, "MinValue"); + // in previous version of xcode, if the error was not known you would get a null ptr, in Xcode 13 and later you + // get a message stating that the error is not knwon. + if (TestRuntime.CheckXcodeVersion (13, 0, 0)) { + Assert.NotNull (s, "MinValue null"); + Assert.True (s.StartsWith ("Unknown error:"), "MinValue value"); + } else { + Assert.Null (s, "MinValue"); + } } } } diff --git a/tests/xtro-sharpie/MacCatalyst-AVFoundation.todo b/tests/xtro-sharpie/MacCatalyst-AVFoundation.todo index 59f21d848c01..394aa8d7f4da 100644 --- a/tests/xtro-sharpie/MacCatalyst-AVFoundation.todo +++ b/tests/xtro-sharpie/MacCatalyst-AVFoundation.todo @@ -1,110 +1,22 @@ -!missing-enum! AVCaptureDeviceTransportControlsPlaybackMode not bound -!missing-enum! AVVideoFieldMode not bound -!missing-field! AVCaptureDeviceTypeExternalUnknown not bound -!missing-field! AVCaptureSessionPreset320x240 not bound -!missing-field! AVCaptureSessionPreset960x540 not bound -!missing-field! AVFragmentedMovieTrackTotalSampleDataLengthDidChangeNotification not bound -!missing-field! AVVideoCodecAppleProRes422 not bound -!missing-field! AVVideoCodecAppleProRes4444 not bound -!missing-field! AVVideoColorPrimaries_EBU_3213 not bound -!missing-field! AVVideoDecompressionPropertiesKey not bound -!missing-field! AVVideoEncoderSpecificationKey not bound -!missing-field! AVVideoTransferFunction_SMPTE_240M_1995 not bound -!missing-field! AVVideoYCbCrMatrix_SMPTE_240M_1995 not bound -!missing-protocol! AVCaptureFileOutputDelegate not bound -!missing-protocol-conformance! AVCaptureSynchronizedDataCollection should conform to NSFastEnumeration -!missing-protocol-conformance! AVSampleBufferDisplayLayer should conform to AVQueuedSampleBufferRendering (defined in 'AVSampleBufferDisplayLayerQueueManagement' category) -!missing-protocol-member! AVCaptureFileOutputRecordingDelegate::captureOutput:didPauseRecordingToOutputFileAtURL:fromConnections: not found -!missing-protocol-member! AVCaptureFileOutputRecordingDelegate::captureOutput:didResumeRecordingToOutputFileAtURL:fromConnections: not found -!missing-protocol-member! AVCaptureFileOutputRecordingDelegate::captureOutput:willFinishRecordingToOutputFileAtURL:fromConnections:error: not found -!missing-release-attribute-on-return-value! CoreMedia.CMSampleBuffer AVFoundation.AVAssetReaderOutput::CopyNextSampleBuffer()'s selector's ('copyNextSampleBuffer') Objective-C method family ('copy') indicates that the native method returns a retained object, and as such a '[return: Release]' attribute is required. -!missing-release-attribute-on-return-value! CoreVideo.CVPixelBuffer AVFoundation.AVVideoCompositionRenderContext::CreatePixelBuffer()'s selector's ('newPixelBuffer') Objective-C method family ('new') indicates that the native method returns a retained object, and as such a '[return: Release]' attribute is required. -!missing-selector! +AVCaptureAudioFileOutput::availableOutputFileTypes not bound -!missing-selector! AVAsset::preferredDisplayCriteria not bound -!missing-selector! AVAudioPlayer::currentDevice not bound -!missing-selector! AVAudioPlayer::setCurrentDevice: not bound -!missing-selector! AVAudioSession::activateWithOptions:completionHandler: not bound -!missing-selector! AVAudioUnitComponent::availableArchitectures not bound -!missing-selector! AVAudioUnitComponent::componentURL not bound -!missing-selector! AVAudioUnitComponent::configurationDictionary not bound -!missing-selector! AVAudioUnitComponent::hasCustomView not bound -!missing-selector! AVAudioUnitComponent::iconURL not bound -!missing-selector! AVAudioUnitComponent::passesAUVal not bound -!missing-selector! AVAudioUnitComponent::setUserTagNames: not bound -!missing-selector! AVAudioUnitComponent::supportsNumberInputChannels:outputChannels: not bound -!missing-selector! AVAudioUnitComponent::userTagNames not bound -!missing-selector! AVCaptureAudioChannel::isEnabled not bound -!missing-selector! AVCaptureAudioChannel::setEnabled: not bound -!missing-selector! AVCaptureAudioChannel::setVolume: not bound -!missing-selector! AVCaptureAudioChannel::volume not bound -!missing-selector! AVCaptureAudioDataOutput::audioSettings not bound -!missing-selector! AVCaptureAudioDataOutput::setAudioSettings: not bound -!missing-selector! AVCaptureAudioFileOutput::audioSettings not bound -!missing-selector! AVCaptureAudioFileOutput::init not bound -!missing-selector! AVCaptureAudioFileOutput::metadata not bound -!missing-selector! AVCaptureAudioFileOutput::setAudioSettings: not bound -!missing-selector! AVCaptureAudioFileOutput::setMetadata: not bound -!missing-selector! AVCaptureAudioFileOutput::startRecordingToOutputFileURL:outputFileType:recordingDelegate: not bound -!missing-selector! AVCaptureAudioPreviewOutput::init not bound -!missing-selector! AVCaptureAudioPreviewOutput::outputDeviceUniqueID not bound -!missing-selector! AVCaptureAudioPreviewOutput::setOutputDeviceUniqueID: not bound -!missing-selector! AVCaptureAudioPreviewOutput::setVolume: not bound -!missing-selector! AVCaptureAudioPreviewOutput::volume not bound -!missing-selector! AVCaptureConnection::isVideoFieldModeSupported not bound -!missing-selector! AVCaptureConnection::setVideoFieldMode: not bound -!missing-selector! AVCaptureConnection::videoFieldMode not bound -!missing-selector! AVCaptureDevice::activeInputSource not bound -!missing-selector! AVCaptureDevice::inputSources not bound -!missing-selector! AVCaptureDevice::isInUseByAnotherApplication not bound -!missing-selector! AVCaptureDevice::linkedDevices not bound -!missing-selector! AVCaptureDevice::setActiveInputSource: not bound -!missing-selector! AVCaptureDevice::setTransportControlsPlaybackMode:speed: not bound -!missing-selector! AVCaptureDevice::transportControlsPlaybackMode not bound -!missing-selector! AVCaptureDevice::transportControlsSpeed not bound -!missing-selector! AVCaptureDevice::transportControlsSupported not bound -!missing-selector! AVCaptureDevice::transportType not bound -!missing-selector! AVCaptureDeviceInputSource::inputSourceID not bound -!missing-selector! AVCaptureDeviceInputSource::localizedName not bound -!missing-selector! AVCaptureFileOutput::delegate not bound -!missing-selector! AVCaptureFileOutput::isRecordingPaused not bound -!missing-selector! AVCaptureFileOutput::pauseRecording not bound -!missing-selector! AVCaptureFileOutput::resumeRecording not bound -!missing-selector! AVCaptureFileOutput::setDelegate: not bound -!missing-selector! AVCaptureScreenInput::capturesCursor not bound -!missing-selector! AVCaptureScreenInput::capturesMouseClicks not bound -!missing-selector! AVCaptureScreenInput::cropRect not bound -!missing-selector! AVCaptureScreenInput::init not bound -!missing-selector! AVCaptureScreenInput::minFrameDuration not bound -!missing-selector! AVCaptureScreenInput::removesDuplicateFrames not bound -!missing-selector! AVCaptureScreenInput::scaleFactor not bound -!missing-selector! AVCaptureScreenInput::setCapturesCursor: not bound -!missing-selector! AVCaptureScreenInput::setCapturesMouseClicks: not bound -!missing-selector! AVCaptureScreenInput::setCropRect: not bound -!missing-selector! AVCaptureScreenInput::setMinFrameDuration: not bound -!missing-selector! AVCaptureScreenInput::setRemovesDuplicateFrames: not bound -!missing-selector! AVCaptureScreenInput::setScaleFactor: not bound -!missing-selector! AVPlayer::audioOutputDeviceUniqueID not bound -!missing-selector! AVPlayer::preferredVideoDecoderGPURegistryID not bound -!missing-selector! AVPlayer::setAudioOutputDeviceUniqueID: not bound -!missing-selector! AVPlayer::setPreferredVideoDecoderGPURegistryID: not bound -!missing-selector! AVSampleBufferAudioRenderer::audioOutputDeviceUniqueID not bound -!missing-selector! AVSampleBufferAudioRenderer::setAudioOutputDeviceUniqueID: not bound -!missing-selector! AVSpeechSynthesizer::setUsesApplicationAudioSession: not bound -!missing-selector! AVSpeechSynthesizer::usesApplicationAudioSession not bound -!missing-type! AVCaptureAudioFileOutput not bound -!missing-type! AVCaptureAudioPreviewOutput not bound -!missing-type! AVCaptureDeviceInputSource not bound -!missing-type! AVCaptureScreenInput not bound -## appended from unclassified file !deprecated-attribute-missing! AVPlayer::masterClock missing a [Deprecated] attribute !deprecated-attribute-missing! AVPlayer::setMasterClock: missing a [Deprecated] attribute +!missing-enum! AVAudioRoutingArbitrationCategory not bound +!missing-enum! AVCaptureDeviceTransportControlsPlaybackMode not bound +!missing-enum! AVCaptureMicrophoneMode not bound +!missing-enum! AVCaptureSystemUserInterface not bound !missing-enum! AVDelegatingPlaybackCoordinatorRateChangeOptions not bound !missing-enum! AVDelegatingPlaybackCoordinatorSeekOptions not bound !missing-enum! AVPlayerAudiovisualBackgroundPlaybackPolicy not bound !missing-enum! AVSampleBufferRequestDirection not bound !missing-enum! AVSampleBufferRequestMode not bound +!missing-enum! AVVideoFieldMode not bound !missing-enum-value! AVError native value AVErrorContentKeyRequestCancelled = -11879 not bound !missing-enum-value! AVError native value AVErrorOperationCancelled = -11878 not bound +!missing-field! AVAudioSessionSpatialAudioEnabledKey not bound +!missing-field! AVAudioSessionSpatialPlaybackCapabilitiesChangedNotification not bound +!missing-field! AVCaptureDeviceTypeExternalUnknown not bound +!missing-field! AVCaptureSessionPreset320x240 not bound +!missing-field! AVCaptureSessionPreset960x540 not bound !missing-field! AVCoordinatedPlaybackSuspensionReasonAudioSessionInterrupted not bound !missing-field! AVCoordinatedPlaybackSuspensionReasonCoordinatedPlaybackNotPossible not bound !missing-field! AVCoordinatedPlaybackSuspensionReasonPlayingInterstitial not bound @@ -113,6 +25,7 @@ !missing-field! AVCoordinatedPlaybackSuspensionReasonUserIsChangingCurrentTime not bound !missing-field! AVFileTypeAppleiTT not bound !missing-field! AVFileTypeSCC not bound +!missing-field! AVFragmentedMovieTrackTotalSampleDataLengthDidChangeNotification not bound !missing-field! AVMetadataIdentifierQuickTimeMetadataIsMontage not bound !missing-field! AVMetadataQuickTimeMetadataKeyIsMontage not bound !missing-field! AVMovieShouldSupportAliasDataReferencesKey not bound @@ -131,23 +44,44 @@ !missing-field! AVPlayerWaitingForCoordinatedPlaybackReason not bound !missing-field! AVURLAssetShouldSupportAliasDataReferencesKey not bound !missing-field! AVURLAssetURLRequestAttributionKey not bound +!missing-field! AVVideoCodecAppleProRes422 not bound +!missing-field! AVVideoCodecAppleProRes4444 not bound +!missing-field! AVVideoColorPrimaries_EBU_3213 not bound +!missing-field! AVVideoDecompressionPropertiesKey not bound +!missing-field! AVVideoEncoderSpecificationKey not bound !missing-field! AVVideoRangeHLG not bound !missing-field! AVVideoRangePQ not bound !missing-field! AVVideoRangeSDR not bound +!missing-field! AVVideoTransferFunction_SMPTE_240M_1995 not bound +!missing-field! AVVideoYCbCrMatrix_SMPTE_240M_1995 not bound !missing-protocol! AVAssetReaderCaptionValidationHandling not bound +!missing-protocol! AVCaptureFileOutputDelegate not bound !missing-protocol! AVPlaybackCoordinatorPlaybackControlDelegate not bound !missing-protocol! AVPlayerPlaybackCoordinatorDelegate not bound +!missing-protocol-conformance! AVCaptureSynchronizedDataCollection should conform to NSFastEnumeration +!missing-protocol-conformance! AVSampleBufferDisplayLayer should conform to AVQueuedSampleBufferRendering (defined in 'AVSampleBufferDisplayLayerQueueManagement' category) !missing-protocol-member! AVAssetDownloadDelegate::URLSession:assetDownloadTask:willDownloadVariants: not found +!missing-protocol-member! AVCaptureFileOutputRecordingDelegate::captureOutput:didPauseRecordingToOutputFileAtURL:fromConnections: not found +!missing-protocol-member! AVCaptureFileOutputRecordingDelegate::captureOutput:didResumeRecordingToOutputFileAtURL:fromConnections: not found +!missing-protocol-member! AVCaptureFileOutputRecordingDelegate::captureOutput:willFinishRecordingToOutputFileAtURL:fromConnections:error: not found !missing-protocol-member! AVVideoCompositing::canConformColorOfSourceFrames not found +!missing-release-attribute-on-return-value! CoreMedia.CMSampleBuffer AVFoundation.AVAssetReaderOutput::CopyNextSampleBuffer()'s selector's ('copyNextSampleBuffer') Objective-C method family ('copy') indicates that the native method returns a retained object, and as such a '[return: Release]' attribute is required. +!missing-release-attribute-on-return-value! CoreVideo.CVPixelBuffer AVFoundation.AVVideoCompositionRenderContext::CreatePixelBuffer()'s selector's ('newPixelBuffer') Objective-C method family ('new') indicates that the native method returns a retained object, and as such a '[return: Release]' attribute is required. !missing-selector! +AVAssetDownloadConfiguration::downloadConfigurationWithAsset:title: not bound !missing-selector! +AVAssetReaderOutputCaptionAdaptor::assetReaderOutputCaptionAdaptorWithAssetReaderTrackOutput: not bound !missing-selector! +AVAssetVariantQualifier::assetVariantQualifierWithPredicate: not bound !missing-selector! +AVAssetVariantQualifier::assetVariantQualifierWithVariant: not bound !missing-selector! +AVAssetVariantQualifier::predicateForChannelCount:mediaSelectionOption:operatorType: not bound +!missing-selector! +AVAssetVariantQualifier::predicateForPresentationHeight:operatorType: not bound +!missing-selector! +AVAssetVariantQualifier::predicateForPresentationWidth:operatorType: not bound !missing-selector! +AVAssetWriterInputCaptionAdaptor::assetWriterInputCaptionAdaptorWithAssetWriterInput: not bound -!missing-selector! +AVPlayerInterstitialEvent::interstitialEventWithPrimaryItem:identifier:date:templateItems:restrictions:resumptionOffset:playoutLimit: not bound +!missing-selector! +AVAudioRoutingArbiter::sharedRoutingArbiter not bound +!missing-selector! +AVCaptureAudioFileOutput::availableOutputFileTypes not bound +!missing-selector! +AVCaptureDevice::activeMicrophoneMode not bound +!missing-selector! +AVCaptureDevice::isPortraitEffectEnabled not bound +!missing-selector! +AVCaptureDevice::preferredMicrophoneMode not bound +!missing-selector! +AVCaptureDevice::showSystemUserInterface: not bound !missing-selector! +AVPlayerInterstitialEvent::interstitialEventWithPrimaryItem:identifier:date:templateItems:restrictions:resumptionOffset:playoutLimit:userDefinedAttributes: not bound -!missing-selector! +AVPlayerInterstitialEvent::interstitialEventWithPrimaryItem:identifier:time:templateItems:restrictions:resumptionOffset:playoutLimit: not bound !missing-selector! +AVPlayerInterstitialEvent::interstitialEventWithPrimaryItem:identifier:time:templateItems:restrictions:resumptionOffset:playoutLimit:userDefinedAttributes: not bound !missing-selector! +AVPlayerInterstitialEventMonitor::interstitialEventMonitorWithPrimaryPlayer: not bound !missing-selector! +AVSampleBufferGenerator::notifyOfDataReadyForSampleBuffer:completionHandler: not bound @@ -156,9 +90,10 @@ !missing-selector! AVAsset::loadChapterMetadataGroupsWithTitleLocale:containingItemsWithCommonKeys:completionHandler: not bound !missing-selector! AVAsset::loadMediaSelectionGroupForMediaCharacteristic:completionHandler: not bound !missing-selector! AVAsset::loadMetadataForFormat:completionHandler: not bound +!missing-selector! AVAsset::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVAsset::loadTracksWithMediaCharacteristic:completionHandler: not bound !missing-selector! AVAsset::loadTracksWithMediaType:completionHandler: not bound -!missing-selector! AVAsset::loadTrackWithTrackID:completionHandler: not bound +!missing-selector! AVAsset::preferredDisplayCriteria not bound !missing-selector! AVAssetDownloadConfiguration::artworkData not bound !missing-selector! AVAssetDownloadConfiguration::auxiliaryContentConfigurations not bound !missing-selector! AVAssetDownloadConfiguration::optimizesAuxiliaryContentConfigurations not bound @@ -204,13 +139,83 @@ !missing-selector! AVAsynchronousVideoCompositionRequest::sourceSampleDataTrackIDs not bound !missing-selector! AVAsynchronousVideoCompositionRequest::sourceTimedMetadataByTrackID: not bound !missing-selector! AVAudioPCMBuffer::initWithPCMFormat:bufferListNoCopy:deallocator: not bound +!missing-selector! AVAudioPlayer::currentDevice not bound +!missing-selector! AVAudioPlayer::setCurrentDevice: not bound +!missing-selector! AVAudioRoutingArbiter::beginArbitrationWithCategory:completionHandler: not bound +!missing-selector! AVAudioRoutingArbiter::leaveArbitration not bound +!missing-selector! AVAudioSession::activateWithOptions:completionHandler: not bound +!missing-selector! AVAudioSession::setSupportsMultichannelContent:error: not bound +!missing-selector! AVAudioSession::supportsMultichannelContent not bound +!missing-selector! AVAudioSessionPortDescription::isSpatialAudioEnabled not bound +!missing-selector! AVAudioUnitComponent::availableArchitectures not bound +!missing-selector! AVAudioUnitComponent::componentURL not bound +!missing-selector! AVAudioUnitComponent::configurationDictionary not bound +!missing-selector! AVAudioUnitComponent::hasCustomView not bound +!missing-selector! AVAudioUnitComponent::iconURL not bound +!missing-selector! AVAudioUnitComponent::passesAUVal not bound +!missing-selector! AVAudioUnitComponent::setUserTagNames: not bound +!missing-selector! AVAudioUnitComponent::supportsNumberInputChannels:outputChannels: not bound +!missing-selector! AVAudioUnitComponent::userTagNames not bound !missing-selector! AVAudioUnitSampler::overallGain not bound !missing-selector! AVAudioUnitSampler::setOverallGain: not bound +!missing-selector! AVCaptureAudioChannel::isEnabled not bound +!missing-selector! AVCaptureAudioChannel::setEnabled: not bound +!missing-selector! AVCaptureAudioChannel::setVolume: not bound +!missing-selector! AVCaptureAudioChannel::volume not bound +!missing-selector! AVCaptureAudioDataOutput::audioSettings not bound +!missing-selector! AVCaptureAudioDataOutput::setAudioSettings: not bound +!missing-selector! AVCaptureAudioFileOutput::audioSettings not bound +!missing-selector! AVCaptureAudioFileOutput::init not bound +!missing-selector! AVCaptureAudioFileOutput::metadata not bound +!missing-selector! AVCaptureAudioFileOutput::setAudioSettings: not bound +!missing-selector! AVCaptureAudioFileOutput::setMetadata: not bound +!missing-selector! AVCaptureAudioFileOutput::startRecordingToOutputFileURL:outputFileType:recordingDelegate: not bound +!missing-selector! AVCaptureAudioPreviewOutput::init not bound +!missing-selector! AVCaptureAudioPreviewOutput::outputDeviceUniqueID not bound +!missing-selector! AVCaptureAudioPreviewOutput::setOutputDeviceUniqueID: not bound +!missing-selector! AVCaptureAudioPreviewOutput::setVolume: not bound +!missing-selector! AVCaptureAudioPreviewOutput::volume not bound +!missing-selector! AVCaptureConnection::isVideoFieldModeSupported not bound +!missing-selector! AVCaptureConnection::setVideoFieldMode: not bound +!missing-selector! AVCaptureConnection::videoFieldMode not bound +!missing-selector! AVCaptureDevice::activeInputSource not bound +!missing-selector! AVCaptureDevice::inputSources not bound +!missing-selector! AVCaptureDevice::isInUseByAnotherApplication not bound +!missing-selector! AVCaptureDevice::isPortraitEffectActive not bound +!missing-selector! AVCaptureDevice::linkedDevices not bound !missing-selector! AVCaptureDevice::minimumFocusDistance not bound +!missing-selector! AVCaptureDevice::setActiveInputSource: not bound +!missing-selector! AVCaptureDevice::setTransportControlsPlaybackMode:speed: not bound +!missing-selector! AVCaptureDevice::transportControlsPlaybackMode not bound +!missing-selector! AVCaptureDevice::transportControlsSpeed not bound +!missing-selector! AVCaptureDevice::transportControlsSupported not bound +!missing-selector! AVCaptureDevice::transportType not bound !missing-selector! AVCaptureDeviceFormat::isHighPhotoQualitySupported not bound +!missing-selector! AVCaptureDeviceFormat::isPortraitEffectSupported not bound +!missing-selector! AVCaptureDeviceFormat::videoFrameRateRangeForPortraitEffect not bound +!missing-selector! AVCaptureDeviceInputSource::inputSourceID not bound +!missing-selector! AVCaptureDeviceInputSource::localizedName not bound +!missing-selector! AVCaptureFileOutput::delegate not bound +!missing-selector! AVCaptureFileOutput::isRecordingPaused not bound +!missing-selector! AVCaptureFileOutput::pauseRecording not bound +!missing-selector! AVCaptureFileOutput::resumeRecording not bound +!missing-selector! AVCaptureFileOutput::setDelegate: not bound +!missing-selector! AVCaptureScreenInput::capturesCursor not bound +!missing-selector! AVCaptureScreenInput::capturesMouseClicks not bound +!missing-selector! AVCaptureScreenInput::cropRect not bound +!missing-selector! AVCaptureScreenInput::init not bound +!missing-selector! AVCaptureScreenInput::minFrameDuration not bound +!missing-selector! AVCaptureScreenInput::removesDuplicateFrames not bound +!missing-selector! AVCaptureScreenInput::scaleFactor not bound +!missing-selector! AVCaptureScreenInput::setCapturesCursor: not bound +!missing-selector! AVCaptureScreenInput::setCapturesMouseClicks: not bound +!missing-selector! AVCaptureScreenInput::setCropRect: not bound +!missing-selector! AVCaptureScreenInput::setMinFrameDuration: not bound +!missing-selector! AVCaptureScreenInput::setRemovesDuplicateFrames: not bound +!missing-selector! AVCaptureScreenInput::setScaleFactor: not bound +!missing-selector! AVComposition::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVComposition::loadTracksWithMediaCharacteristic:completionHandler: not bound !missing-selector! AVComposition::loadTracksWithMediaType:completionHandler: not bound -!missing-selector! AVComposition::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVCoordinatedPlaybackParticipant::identifier not bound !missing-selector! AVCoordinatedPlaybackParticipant::isReadyToPlay not bound !missing-selector! AVCoordinatedPlaybackParticipant::suspensionReasons not bound @@ -229,30 +234,30 @@ !missing-selector! AVDelegatingPlaybackCoordinatorBufferingCommand::completionDueDate not bound !missing-selector! AVDelegatingPlaybackCoordinatorPauseCommand::anticipatedPlaybackRate not bound !missing-selector! AVDelegatingPlaybackCoordinatorPauseCommand::shouldBufferInAnticipationOfPlayback not bound -!missing-selector! AVDelegatingPlaybackCoordinatorPlaybackControlCommand::expectedCurrentItemIdentifier not bound -!missing-selector! AVDelegatingPlaybackCoordinatorPlaybackControlCommand::originator not bound !missing-selector! AVDelegatingPlaybackCoordinatorPlayCommand::hostClockTime not bound !missing-selector! AVDelegatingPlaybackCoordinatorPlayCommand::itemTime not bound !missing-selector! AVDelegatingPlaybackCoordinatorPlayCommand::rate not bound +!missing-selector! AVDelegatingPlaybackCoordinatorPlaybackControlCommand::expectedCurrentItemIdentifier not bound +!missing-selector! AVDelegatingPlaybackCoordinatorPlaybackControlCommand::originator not bound !missing-selector! AVDelegatingPlaybackCoordinatorSeekCommand::anticipatedPlaybackRate not bound !missing-selector! AVDelegatingPlaybackCoordinatorSeekCommand::completionDueDate not bound !missing-selector! AVDelegatingPlaybackCoordinatorSeekCommand::itemTime not bound !missing-selector! AVDelegatingPlaybackCoordinatorSeekCommand::shouldBufferInAnticipationOfPlayback not bound +!missing-selector! AVFragmentedAsset::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVFragmentedAsset::loadTracksWithMediaCharacteristic:completionHandler: not bound !missing-selector! AVFragmentedAsset::loadTracksWithMediaType:completionHandler: not bound -!missing-selector! AVFragmentedAsset::loadTrackWithTrackID:completionHandler: not bound +!missing-selector! AVFragmentedMovie::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVFragmentedMovie::loadTracksWithMediaCharacteristic:completionHandler: not bound !missing-selector! AVFragmentedMovie::loadTracksWithMediaType:completionHandler: not bound -!missing-selector! AVFragmentedMovie::loadTrackWithTrackID:completionHandler: not bound +!missing-selector! AVMovie::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVMovie::loadTracksWithMediaCharacteristic:completionHandler: not bound !missing-selector! AVMovie::loadTracksWithMediaType:completionHandler: not bound -!missing-selector! AVMovie::loadTrackWithTrackID:completionHandler: not bound +!missing-selector! AVMutableComposition::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVMutableComposition::loadTracksWithMediaCharacteristic:completionHandler: not bound !missing-selector! AVMutableComposition::loadTracksWithMediaType:completionHandler: not bound -!missing-selector! AVMutableComposition::loadTrackWithTrackID:completionHandler: not bound +!missing-selector! AVMutableMovie::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVMutableMovie::loadTracksWithMediaCharacteristic:completionHandler: not bound !missing-selector! AVMutableMovie::loadTracksWithMediaType:completionHandler: not bound -!missing-selector! AVMutableMovie::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVMutableVideoComposition::setSourceSampleDataTrackIDs: not bound !missing-selector! AVMutableVideoComposition::sourceSampleDataTrackIDs not bound !missing-selector! AVMutableVideoCompositionInstruction::requiredSourceSampleDataTrackIDs not bound @@ -267,9 +272,13 @@ !missing-selector! AVPlaybackCoordinator::setSuspensionReasonsThatTriggerWaiting: not bound !missing-selector! AVPlaybackCoordinator::suspensionReasons not bound !missing-selector! AVPlaybackCoordinator::suspensionReasonsThatTriggerWaiting not bound +!missing-selector! AVPlayer::audioOutputDeviceUniqueID not bound !missing-selector! AVPlayer::audiovisualBackgroundPlaybackPolicy not bound !missing-selector! AVPlayer::playbackCoordinator not bound +!missing-selector! AVPlayer::preferredVideoDecoderGPURegistryID not bound +!missing-selector! AVPlayer::setAudioOutputDeviceUniqueID: not bound !missing-selector! AVPlayer::setAudiovisualBackgroundPlaybackPolicy: not bound +!missing-selector! AVPlayer::setPreferredVideoDecoderGPURegistryID: not bound !missing-selector! AVPlayer::setSourceClock: not bound !missing-selector! AVPlayer::sourceClock not bound !missing-selector! AVPlayerInterstitialEvent::identifier not bound @@ -288,7 +297,9 @@ !missing-selector! AVPlayerPlaybackCoordinator::player not bound !missing-selector! AVPlayerPlaybackCoordinator::setDelegate: not bound !missing-selector! AVSampleBufferAudioRenderer::allowedAudioSpatializationFormats not bound +!missing-selector! AVSampleBufferAudioRenderer::audioOutputDeviceUniqueID not bound !missing-selector! AVSampleBufferAudioRenderer::setAllowedAudioSpatializationFormats: not bound +!missing-selector! AVSampleBufferAudioRenderer::setAudioOutputDeviceUniqueID: not bound !missing-selector! AVSampleBufferGenerator::createSampleBufferForRequest: not bound !missing-selector! AVSampleBufferGenerator::initWithAsset:timebase: not bound !missing-selector! AVSampleBufferRequest::direction not bound @@ -326,6 +337,8 @@ !missing-selector! AVSampleCursor::stepByPresentationTime:wasPinned: not bound !missing-selector! AVSampleCursor::stepInDecodeOrderByCount: not bound !missing-selector! AVSampleCursor::stepInPresentationOrderByCount: not bound +!missing-selector! AVSpeechSynthesizer::setUsesApplicationAudioSession: not bound +!missing-selector! AVSpeechSynthesizer::usesApplicationAudioSession not bound !missing-selector! AVURLAsset::findCompatibleTrackForCompositionTrack:completionHandler: not bound !missing-selector! AVURLAsset::variants not bound !missing-selector! AVVideoComposition::sourceSampleDataTrackIDs not bound @@ -339,35 +352,22 @@ !missing-type! AVAssetVariantQualifier not bound !missing-type! AVAssetVariantVideoAttributes not bound !missing-type! AVAssetWriterInputCaptionAdaptor not bound +!missing-type! AVAudioRoutingArbiter not bound +!missing-type! AVCaptureAudioFileOutput not bound +!missing-type! AVCaptureAudioPreviewOutput not bound +!missing-type! AVCaptureDeviceInputSource not bound +!missing-type! AVCaptureScreenInput not bound !missing-type! AVCoordinatedPlaybackParticipant not bound !missing-type! AVCoordinatedPlaybackSuspension not bound !missing-type! AVDelegatingPlaybackCoordinator not bound !missing-type! AVDelegatingPlaybackCoordinatorBufferingCommand not bound !missing-type! AVDelegatingPlaybackCoordinatorPauseCommand not bound -!missing-type! AVDelegatingPlaybackCoordinatorPlaybackControlCommand not bound !missing-type! AVDelegatingPlaybackCoordinatorPlayCommand not bound +!missing-type! AVDelegatingPlaybackCoordinatorPlaybackControlCommand not bound !missing-type! AVDelegatingPlaybackCoordinatorSeekCommand not bound !missing-type! AVPlaybackCoordinator not bound !missing-type! AVPlayerPlaybackCoordinator not bound !missing-type! AVSampleBufferGenerator not bound !missing-type! AVSampleBufferRequest not bound !missing-type! AVSampleCursor not bound -!missing-enum! AVAudioRoutingArbitrationCategory not bound -!missing-enum! AVCaptureMicrophoneMode not bound -!missing-enum! AVCaptureSystemUserInterface not bound -!missing-field! AVAudioSessionSpatialAudioEnabledKey not bound -!missing-field! AVAudioSessionSpatialPlaybackCapabilitiesChangedNotification not bound -!missing-selector! +AVAudioRoutingArbiter::sharedRoutingArbiter not bound -!missing-selector! +AVCaptureDevice::activeMicrophoneMode not bound -!missing-selector! +AVCaptureDevice::isPortraitEffectEnabled not bound -!missing-selector! +AVCaptureDevice::preferredMicrophoneMode not bound -!missing-selector! +AVCaptureDevice::showSystemUserInterface: not bound -!missing-selector! AVAudioRoutingArbiter::beginArbitrationWithCategory:completionHandler: not bound -!missing-selector! AVAudioRoutingArbiter::leaveArbitration not bound -!missing-selector! AVAudioSession::setSupportsMultichannelContent:error: not bound -!missing-selector! AVAudioSession::supportsMultichannelContent not bound -!missing-selector! AVAudioSessionPortDescription::isSpatialAudioEnabled not bound -!missing-selector! AVCaptureDevice::isPortraitEffectActive not bound -!missing-selector! AVCaptureDeviceFormat::isPortraitEffectSupported not bound -!missing-selector! AVCaptureDeviceFormat::videoFrameRateRangeForPortraitEffect not bound -!missing-type! AVAudioRoutingArbiter not bound +## appended from unclassified file diff --git a/tests/xtro-sharpie/MacCatalyst-AppKit.todo b/tests/xtro-sharpie/MacCatalyst-AppKit.todo index 7a8157c3267d..e1572110f6c4 100644 --- a/tests/xtro-sharpie/MacCatalyst-AppKit.todo +++ b/tests/xtro-sharpie/MacCatalyst-AppKit.todo @@ -57,10 +57,10 @@ !missing-enum! NSDatePickerStyle not bound !missing-enum! NSDisplayGamut not bound !missing-enum! NSDocumentChangeType not bound +!missing-enum! NSDragOperation not bound !missing-enum! NSDraggingContext not bound !missing-enum! NSDraggingFormation not bound !missing-enum! NSDraggingItemEnumerationOptions not bound -!missing-enum! NSDragOperation not bound !missing-enum! NSDrawerState not bound !missing-enum! NSEventButtonMask not bound !missing-enum! NSEventGestureAxis not bound @@ -109,26 +109,26 @@ !missing-enum! NSMultibyteGlyphPacking not bound !missing-enum! NSOpenGLContextParameter not bound !missing-enum! NSOpenGLGlobalOption not bound +!missing-enum! NSPDFPanelOptions not bound !missing-enum! NSPageControllerTransitionStyle not bound !missing-enum! NSPaperOrientation not bound !missing-enum! NSPasteboardContentsOptions not bound !missing-enum! NSPasteboardReadingOptions not bound !missing-enum! NSPasteboardWritingOptions not bound !missing-enum! NSPathStyle not bound -!missing-enum! NSPDFPanelOptions not bound !missing-enum! NSPickerTouchBarItemControlRepresentation not bound !missing-enum! NSPickerTouchBarItemSelectionMode not bound !missing-enum! NSPointingDeviceType not bound +!missing-enum! NSPopUpArrowPosition not bound !missing-enum! NSPopoverAppearance not bound !missing-enum! NSPopoverBehavior not bound -!missing-enum! NSPopUpArrowPosition not bound !missing-enum! NSPressureBehavior not bound +!missing-enum! NSPrintPanelOptions not bound +!missing-enum! NSPrintRenderingQuality not bound !missing-enum! NSPrinterTableStatus not bound !missing-enum! NSPrintingOrientation not bound !missing-enum! NSPrintingPageOrder not bound !missing-enum! NSPrintingPaginationMode not bound -!missing-enum! NSPrintPanelOptions not bound -!missing-enum! NSPrintRenderingQuality not bound !missing-enum! NSProgressIndicatorStyle not bound !missing-enum! NSProgressIndicatorThickness not bound !missing-enum! NSRemoteNotificationType not bound @@ -139,11 +139,11 @@ !missing-enum! NSSaveOperationType not bound !missing-enum! NSScrollArrowPosition not bound !missing-enum! NSScrollElasticity not bound +!missing-enum! NSScrollViewFindBarPosition not bound !missing-enum! NSScrollerArrow not bound !missing-enum! NSScrollerKnobStyle not bound !missing-enum! NSScrollerPart not bound !missing-enum! NSScrollerStyle not bound -!missing-enum! NSScrollViewFindBarPosition not bound !missing-enum! NSScrubberAlignment not bound !missing-enum! NSScrubberMode not bound !missing-enum! NSSegmentDistribution not bound @@ -163,6 +163,12 @@ !missing-enum! NSStackViewDistribution not bound !missing-enum! NSStackViewGravity not bound !missing-enum! NSStatusItemBehavior not bound +!missing-enum! NSTIFFCompression not bound +!missing-enum! NSTabPosition not bound +!missing-enum! NSTabState not bound +!missing-enum! NSTabViewBorderType not bound +!missing-enum! NSTabViewControllerTabStyle not bound +!missing-enum! NSTabViewType not bound !missing-enum! NSTableColumnResizingOptions not bound !missing-enum! NSTableRowActionEdge not bound !missing-enum! NSTableViewAnimationOptions not bound @@ -174,19 +180,13 @@ !missing-enum! NSTableViewRowSizeStyle not bound !missing-enum! NSTableViewSelectionHighlightStyle not bound !missing-enum! NSTableViewStyle not bound -!missing-enum! NSTabPosition not bound -!missing-enum! NSTabState not bound -!missing-enum! NSTabViewBorderType not bound -!missing-enum! NSTabViewControllerTabStyle not bound -!missing-enum! NSTabViewType not bound !missing-enum! NSTextFieldBezelStyle not bound !missing-enum! NSTextFinderAction not bound !missing-enum! NSTextFinderMatchingType not bound !missing-enum! NSTextInputTraitType not bound !missing-enum! NSTickMarkPosition not bound -!missing-enum! NSTIFFCompression not bound -!missing-enum! NSTitlebarSeparatorStyle not bound !missing-enum! NSTitlePosition not bound +!missing-enum! NSTitlebarSeparatorStyle not bound !missing-enum! NSTokenStyle not bound !missing-enum! NSToolbarDisplayMode not bound !missing-enum! NSToolbarItemGroupControlRepresentation not bound @@ -271,8 +271,8 @@ !missing-field! NSAccessibilityColumnHeaderUIElementsAttribute not bound !missing-field! NSAccessibilityColumnIndexRangeAttribute not bound !missing-field! NSAccessibilityColumnRole not bound -!missing-field! NSAccessibilityColumnsAttribute not bound !missing-field! NSAccessibilityColumnTitlesAttribute not bound +!missing-field! NSAccessibilityColumnsAttribute not bound !missing-field! NSAccessibilityComboBoxRole not bound !missing-field! NSAccessibilityConfirmAction not bound !missing-field! NSAccessibilityContainsProtectedContentAttribute not bound @@ -329,8 +329,8 @@ !missing-field! NSAccessibilityGrowAreaRole not bound !missing-field! NSAccessibilityHandleRole not bound !missing-field! NSAccessibilityHandlesAttribute not bound -!missing-field! NSAccessibilityHeaderAttribute not bound !missing-field! NSAccessibilityHeadIndentMarkerTypeValue not bound +!missing-field! NSAccessibilityHeaderAttribute not bound !missing-field! NSAccessibilityHelpAttribute not bound !missing-field! NSAccessibilityHelpTagCreatedNotification not bound !missing-field! NSAccessibilityHelpTagRole not bound @@ -345,8 +345,8 @@ !missing-field! NSAccessibilityIncrementAction not bound !missing-field! NSAccessibilityIncrementArrowSubrole not bound !missing-field! NSAccessibilityIncrementButtonAttribute not bound -!missing-field! NSAccessibilityIncrementorRole not bound !missing-field! NSAccessibilityIncrementPageSubrole not bound +!missing-field! NSAccessibilityIncrementorRole not bound !missing-field! NSAccessibilityIndexAttribute not bound !missing-field! NSAccessibilityInsertionPointLineNumberAttribute not bound !missing-field! NSAccessibilityLabelUIElementsAttribute not bound @@ -360,9 +360,9 @@ !missing-field! NSAccessibilityLeftTabStopMarkerTypeValue not bound !missing-field! NSAccessibilityLevelIndicatorRole not bound !missing-field! NSAccessibilityLineForIndexParameterizedAttribute not bound -!missing-field! NSAccessibilityLinkedUIElementsAttribute not bound !missing-field! NSAccessibilityLinkRole not bound !missing-field! NSAccessibilityLinkTextAttribute not bound +!missing-field! NSAccessibilityLinkedUIElementsAttribute not bound !missing-field! NSAccessibilityListItemIndexTextAttribute not bound !missing-field! NSAccessibilityListItemLevelTextAttribute not bound !missing-field! NSAccessibilityListItemPrefixTextAttribute not bound @@ -386,10 +386,10 @@ !missing-field! NSAccessibilityMenuButtonRole not bound !missing-field! NSAccessibilityMenuItemRole not bound !missing-field! NSAccessibilityMenuRole not bound +!missing-field! NSAccessibilityMinValueAttribute not bound !missing-field! NSAccessibilityMinimizeButtonAttribute not bound !missing-field! NSAccessibilityMinimizeButtonSubrole not bound !missing-field! NSAccessibilityMinimizedAttribute not bound -!missing-field! NSAccessibilityMinValueAttribute not bound !missing-field! NSAccessibilityMisspelledTextAttribute not bound !missing-field! NSAccessibilityModalAttribute not bound !missing-field! NSAccessibilityMovedNotification not bound @@ -406,14 +406,15 @@ !missing-field! NSAccessibilityPickAction not bound !missing-field! NSAccessibilityPlaceholderValueAttribute not bound !missing-field! NSAccessibilityPointsUnitValue not bound -!missing-field! NSAccessibilityPopoverRole not bound !missing-field! NSAccessibilityPopUpButtonRole not bound +!missing-field! NSAccessibilityPopoverRole not bound !missing-field! NSAccessibilityPositionAttribute not bound !missing-field! NSAccessibilityPressAction not bound !missing-field! NSAccessibilityPreviousContentsAttribute not bound !missing-field! NSAccessibilityPriorityKey not bound !missing-field! NSAccessibilityProgressIndicatorRole not bound !missing-field! NSAccessibilityProxyAttribute not bound +!missing-field! NSAccessibilityRTFForRangeParameterizedAttribute not bound !missing-field! NSAccessibilityRadioButtonRole not bound !missing-field! NSAccessibilityRadioGroupRole not bound !missing-field! NSAccessibilityRaiseAction not bound @@ -435,7 +436,6 @@ !missing-field! NSAccessibilityRowIndexRangeAttribute not bound !missing-field! NSAccessibilityRowRole not bound !missing-field! NSAccessibilityRowsAttribute not bound -!missing-field! NSAccessibilityRTFForRangeParameterizedAttribute not bound !missing-field! NSAccessibilityRulerMarkerRole not bound !missing-field! NSAccessibilityRulerRole not bound !missing-field! NSAccessibilityScreenPointForLayoutPointParameterizedAttribute not bound @@ -514,6 +514,7 @@ !missing-field! NSAccessibilityTopLevelUIElementAttribute not bound !missing-field! NSAccessibilityUIElementDestroyedNotification not bound !missing-field! NSAccessibilityUIElementsKey not bound +!missing-field! NSAccessibilityURLAttribute not bound !missing-field! NSAccessibilityUnderlineColorTextAttribute not bound !missing-field! NSAccessibilityUnderlineTextAttribute not bound !missing-field! NSAccessibilityUnitDescriptionAttribute not bound @@ -525,7 +526,6 @@ !missing-field! NSAccessibilityUnknownSortDirectionValue not bound !missing-field! NSAccessibilityUnknownSubrole not bound !missing-field! NSAccessibilityUnknownUnitValue not bound -!missing-field! NSAccessibilityURLAttribute not bound !missing-field! NSAccessibilityValueAttribute not bound !missing-field! NSAccessibilityValueChangedNotification not bound !missing-field! NSAccessibilityValueDescriptionAttribute not bound @@ -552,9 +552,9 @@ !missing-field! NSAccessibilityZoomButtonAttribute not bound !missing-field! NSAccessibilityZoomButtonSubrole not bound !missing-field! NSAlignmentBinding not bound +!missing-field! NSAllRomanInputSourcesLocaleIdentifier not bound !missing-field! NSAllowsEditingMultipleValuesSelectionBindingOption not bound !missing-field! NSAllowsNullArgumentBindingOption not bound -!missing-field! NSAllRomanInputSourcesLocaleIdentifier not bound !missing-field! NSAlternateImageBinding not bound !missing-field! NSAlternateTitleBinding not bound !missing-field! NSAlwaysPresentsApplicationModalAlertsBindingOption not bound @@ -566,6 +566,9 @@ !missing-field! NSAnimationTriggerOrderOut not bound !missing-field! NSAntialiasThresholdChangedNotification not bound !missing-field! NSApp not bound +!missing-field! NSAppKitIgnoredException not bound +!missing-field! NSAppKitVersionNumber not bound +!missing-field! NSAppKitVirtualMemoryException not bound !missing-field! NSAppearanceNameAccessibilityHighContrastAqua not bound !missing-field! NSAppearanceNameAccessibilityHighContrastDarkAqua not bound !missing-field! NSAppearanceNameAccessibilityHighContrastVibrantDark not bound @@ -575,9 +578,6 @@ !missing-field! NSAppearanceNameLightContent not bound !missing-field! NSAppearanceNameVibrantDark not bound !missing-field! NSAppearanceNameVibrantLight not bound -!missing-field! NSAppKitIgnoredException not bound -!missing-field! NSAppKitVersionNumber not bound -!missing-field! NSAppKitVirtualMemoryException not bound !missing-field! NSApplicationDidBecomeActiveNotification not bound !missing-field! NSApplicationDidChangeOcclusionStateNotification not bound !missing-field! NSApplicationDidChangeScreenParametersNotification not bound @@ -591,6 +591,8 @@ !missing-field! NSApplicationLaunchIsDefaultLaunchKey not bound !missing-field! NSApplicationLaunchRemoteNotificationKey not bound !missing-field! NSApplicationLaunchUserNotificationKey not bound +!missing-field! NSApplicationProtectedDataDidBecomeAvailableNotification not bound +!missing-field! NSApplicationProtectedDataWillBecomeUnavailableNotification not bound !missing-field! NSApplicationWillBecomeActiveNotification not bound !missing-field! NSApplicationWillFinishLaunchingNotification not bound !missing-field! NSApplicationWillHideNotification not bound @@ -662,8 +664,8 @@ !missing-field! NSDeviceColorSpaceName not bound !missing-field! NSDeviceIsPrinter not bound !missing-field! NSDeviceIsScreen not bound -!missing-field! NSDeviceResolution not bound !missing-field! NSDeviceRGBColorSpace not bound +!missing-field! NSDeviceResolution not bound !missing-field! NSDeviceSize not bound !missing-field! NSDeviceWhiteColorSpace not bound !missing-field! NSDirectoryFileType not bound @@ -674,10 +676,10 @@ !missing-field! NSDocumentEditedBinding not bound !missing-field! NSDoubleClickArgumentBinding not bound !missing-field! NSDoubleClickTargetBinding not bound +!missing-field! NSDragPboard not bound !missing-field! NSDraggingException not bound !missing-field! NSDraggingImageComponentIconKey not bound !missing-field! NSDraggingImageComponentLabelKey not bound -!missing-field! NSDragPboard not bound !missing-field! NSDrawerDidCloseNotification not bound !missing-field! NSDrawerDidOpenNotification not bound !missing-field! NSDrawerWillCloseNotification not bound @@ -779,10 +781,10 @@ !missing-field! NSGraphicsContextPSFormat not bound !missing-field! NSGraphicsContextRepresentationFormatAttributeName not bound !missing-field! NSGridViewSizeForContent not bound +!missing-field! NSHTMLPboardType not bound !missing-field! NSHandlesContentAsCompoundValueBindingOption not bound !missing-field! NSHeaderTitleBinding not bound !missing-field! NSHiddenBinding not bound -!missing-field! NSHTMLPboardType not bound !missing-field! NSIllegalSelectorException not bound !missing-field! NSImageBinding not bound !missing-field! NSImageCacheException not bound @@ -799,6 +801,7 @@ !missing-field! NSImageHintCTM not bound !missing-field! NSImageHintInterpolation not bound !missing-field! NSImageHintUserInterfaceLayoutDirection not bound +!missing-field! NSImageIPTCData not bound !missing-field! NSImageInterlaced not bound !missing-field! NSImageLoopCount not bound !missing-field! NSImageNameActionTemplate not bound @@ -895,9 +898,9 @@ !missing-field! NSImageNameTouchBarNewMessageTemplate not bound !missing-field! NSImageNameTouchBarOpenInBrowserTemplate not bound !missing-field! NSImageNameTouchBarPauseTemplate not bound -!missing-field! NSImageNameTouchBarPlayheadTemplate not bound !missing-field! NSImageNameTouchBarPlayPauseTemplate not bound !missing-field! NSImageNameTouchBarPlayTemplate not bound +!missing-field! NSImageNameTouchBarPlayheadTemplate not bound !missing-field! NSImageNameTouchBarQuickLookTemplate not bound !missing-field! NSImageNameTouchBarRecordStartTemplate not bound !missing-field! NSImageNameTouchBarRecordStopTemplate not bound @@ -941,8 +944,8 @@ !missing-field! NSImageNameUserGroup not bound !missing-field! NSImageNameUserGuest not bound !missing-field! NSImageProgressive not bound -!missing-field! NSImageRepRegistryDidChangeNotification not bound !missing-field! NSImageRGBColorTable not bound +!missing-field! NSImageRepRegistryDidChangeNotification not bound !missing-field! NSIncludedKeysBinding not bound !missing-field! NSInitialKeyBinding not bound !missing-field! NSInitialValueBinding not bound @@ -955,9 +958,9 @@ !missing-field! NSLightGray not bound !missing-field! NSLocalizedKeyDictionaryBinding not bound !missing-field! NSManagedObjectContextBinding not bound -!missing-field! NSMaximumRecentsBinding not bound !missing-field! NSMaxValueBinding not bound !missing-field! NSMaxWidthBinding not bound +!missing-field! NSMaximumRecentsBinding not bound !missing-field! NSMenuDidAddItemNotification not bound !missing-field! NSMenuDidBeginTrackingNotification not bound !missing-field! NSMenuDidChangeItemNotification not bound @@ -997,6 +1000,12 @@ !missing-field! NSOutlineViewSelectionDidChangeNotification not bound !missing-field! NSOutlineViewSelectionIsChangingNotification not bound !missing-field! NSOutlineViewShowHideButtonKey not bound +!missing-field! NSPDFPboardType not bound +!missing-field! NSPICTPboardType not bound +!missing-field! NSPPDIncludeNotFoundException not bound +!missing-field! NSPPDIncludeStackOverflowException not bound +!missing-field! NSPPDIncludeStackUnderflowException not bound +!missing-field! NSPPDParseException not bound !missing-field! NSPasteboardCommunicationException not bound !missing-field! NSPasteboardNameDrag not bound !missing-field! NSPasteboardNameFind not bound @@ -1016,16 +1025,16 @@ !missing-field! NSPasteboardTypeRuler not bound !missing-field! NSPasteboardTypeSound not bound !missing-field! NSPasteboardTypeString not bound +!missing-field! NSPasteboardTypeTIFF not bound !missing-field! NSPasteboardTypeTabularText not bound !missing-field! NSPasteboardTypeTextFinderOptions not bound -!missing-field! NSPasteboardTypeTIFF not bound !missing-field! NSPasteboardTypeURL not bound !missing-field! NSPasteboardURLReadingContentsConformToTypesKey not bound !missing-field! NSPasteboardURLReadingFileURLsOnlyKey not bound !missing-field! NSPatternColorSpace not bound -!missing-field! NSPDFPboardType not bound -!missing-field! NSPICTPboardType not bound !missing-field! NSPlainFileType not bound +!missing-field! NSPopUpButtonCellWillPopUpNotification not bound +!missing-field! NSPopUpButtonWillPopUpNotification not bound !missing-field! NSPopoverCloseReasonDetachToWindow not bound !missing-field! NSPopoverCloseReasonKey not bound !missing-field! NSPopoverCloseReasonStandard not bound @@ -1033,14 +1042,8 @@ !missing-field! NSPopoverDidShowNotification not bound !missing-field! NSPopoverWillCloseNotification not bound !missing-field! NSPopoverWillShowNotification not bound -!missing-field! NSPopUpButtonCellWillPopUpNotification not bound -!missing-field! NSPopUpButtonWillPopUpNotification not bound !missing-field! NSPositioningRectBinding not bound !missing-field! NSPostScriptPboardType not bound -!missing-field! NSPPDIncludeNotFoundException not bound -!missing-field! NSPPDIncludeStackOverflowException not bound -!missing-field! NSPPDIncludeStackUnderflowException not bound -!missing-field! NSPPDParseException not bound !missing-field! NSPredicateBinding not bound !missing-field! NSPredicateFormatBindingOption not bound !missing-field! NSPreferredScrollerStyleDidChangeNotification not bound @@ -1054,9 +1057,8 @@ !missing-field! NSPrintFirstPage not bound !missing-field! NSPrintFormName not bound !missing-field! NSPrintHeaderAndFooter not bound -!missing-field! NSPrintHorizontallyCentered not bound !missing-field! NSPrintHorizontalPagination not bound -!missing-field! NSPrintingCommunicationException not bound +!missing-field! NSPrintHorizontallyCentered not bound !missing-field! NSPrintJobDisposition not bound !missing-field! NSPrintJobFeatures not bound !missing-field! NSPrintJobSavingFileNameExtensionHidden not bound @@ -1090,15 +1092,16 @@ !missing-field! NSPrintSpoolJob not bound !missing-field! NSPrintTime not bound !missing-field! NSPrintTopMargin not bound -!missing-field! NSPrintVerticallyCentered not bound !missing-field! NSPrintVerticalPagination not bound +!missing-field! NSPrintVerticallyCentered not bound +!missing-field! NSPrintingCommunicationException not bound +!missing-field! NSRTFDPboardType not bound +!missing-field! NSRTFPboardType not bound +!missing-field! NSRTFPropertyStackOverflowException not bound !missing-field! NSRaisesForNotApplicableKeysBindingOption not bound !missing-field! NSRecentSearchesBinding not bound !missing-field! NSRepresentedFilenameBinding not bound !missing-field! NSRowHeightBinding not bound -!missing-field! NSRTFDPboardType not bound -!missing-field! NSRTFPboardType not bound -!missing-field! NSRTFPropertyStackOverflowException not bound !missing-field! NSRuleEditorPredicateComparisonModifier not bound !missing-field! NSRuleEditorPredicateCompoundType not bound !missing-field! NSRuleEditorPredicateCustomSelector not bound @@ -1127,8 +1130,8 @@ !missing-field! NSSelectedTagBinding not bound !missing-field! NSSelectedValueBinding not bound !missing-field! NSSelectedValuesBinding not bound -!missing-field! NSSelectionIndexesBinding not bound !missing-field! NSSelectionIndexPathsBinding not bound +!missing-field! NSSelectionIndexesBinding not bound !missing-field! NSSelectorNameBindingOption not bound !missing-field! NSSelectsAllWhenSettingContentBindingOption not bound !missing-field! NSSharingServiceNameAddToAperture not bound @@ -1213,6 +1216,8 @@ !missing-field! NSSplitViewWillResizeSubviewsNotification not bound !missing-field! NSStringPboardType not bound !missing-field! NSSystemColorsDidChangeNotification not bound +!missing-field! NSTIFFException not bound +!missing-field! NSTIFFPboardType not bound !missing-field! NSTableViewColumnDidMoveNotification not bound !missing-field! NSTableViewColumnDidResizeNotification not bound !missing-field! NSTableViewRowViewKey not bound @@ -1242,11 +1247,12 @@ !missing-field! NSTextReadException not bound !missing-field! NSTextViewDidChangeSelectionNotification not bound !missing-field! NSTextViewDidChangeTypingAttributesNotification not bound +!missing-field! NSTextViewDidSwitchToNSLayoutManagerNotification not bound !missing-field! NSTextViewWillChangeNotifyingTextViewNotification not bound +!missing-field! NSTextViewWillSwitchToNSLayoutManagerNotification not bound !missing-field! NSTextWriteException not bound -!missing-field! NSTIFFException not bound -!missing-field! NSTIFFPboardType not bound !missing-field! NSTitleBinding not bound +!missing-field! NSToolTipBinding not bound !missing-field! NSToolbarCloudSharingItemIdentifier not bound !missing-field! NSToolbarCustomizeToolbarItemIdentifier not bound !missing-field! NSToolbarDidRemoveItemNotification not bound @@ -1259,7 +1265,6 @@ !missing-field! NSToolbarSpaceItemIdentifier not bound !missing-field! NSToolbarToggleSidebarItemIdentifier not bound !missing-field! NSToolbarWillAddItemNotification not bound -!missing-field! NSToolTipBinding not bound !missing-field! NSTouchBarItemIdentifierCandidateList not bound !missing-field! NSTouchBarItemIdentifierCharacterPicker not bound !missing-field! NSTouchBarItemIdentifierFixedSpaceLarge not bound @@ -1272,19 +1277,19 @@ !missing-field! NSTouchBarItemIdentifierTextList not bound !missing-field! NSTouchBarItemIdentifierTextStyle not bound !missing-field! NSTransparentBinding not bound -!missing-field! NSTypedStreamVersionException not bound !missing-field! NSTypeIdentifierAddressText not bound !missing-field! NSTypeIdentifierDateText not bound !missing-field! NSTypeIdentifierPhoneNumberText not bound !missing-field! NSTypeIdentifierTransitInformationText not bound +!missing-field! NSTypedStreamVersionException not bound !missing-field! NSURLPboardType not bound +!missing-field! NSVCardPboardType not bound !missing-field! NSValidatesImmediatelyBindingOption not bound !missing-field! NSValueBinding not bound !missing-field! NSValuePathBinding not bound !missing-field! NSValueTransformerBindingOption not bound !missing-field! NSValueTransformerNameBindingOption not bound !missing-field! NSValueURLBinding not bound -!missing-field! NSVCardPboardType not bound !missing-field! NSViewAnimationEffectKey not bound !missing-field! NSViewAnimationEndFrameKey not bound !missing-field! NSViewAnimationFadeInEffect not bound @@ -1572,9 +1577,10 @@ !missing-protocol! NSSpringLoadingDestination not bound !missing-protocol! NSStackViewDelegate not bound !missing-protocol! NSStandardKeyBindingResponding not bound +!missing-protocol! NSTabViewDelegate not bound !missing-protocol! NSTableViewDataSource not bound !missing-protocol! NSTableViewDelegate not bound -!missing-protocol! NSTabViewDelegate not bound +!missing-protocol! NSTextAttachmentCell not bound !missing-protocol! NSTextCheckingClient not bound !missing-protocol! NSTextContent not bound !missing-protocol! NSTextFieldDelegate not bound @@ -1647,13 +1653,13 @@ !missing-selector! +NSBindingSelectionMarker::noSelectionMarker not bound !missing-selector! +NSBindingSelectionMarker::notApplicableSelectionMarker not bound !missing-selector! +NSBindingSelectionMarker::setDefaultPlaceholder:forMarker:onClass:withBinding: not bound +!missing-selector! +NSBitmapImageRep::TIFFRepresentationOfImageRepsInArray: not bound +!missing-selector! +NSBitmapImageRep::TIFFRepresentationOfImageRepsInArray:usingCompression:factor: not bound !missing-selector! +NSBitmapImageRep::getTIFFCompressionTypes:count: not bound -!missing-selector! +NSBitmapImageRep::imageRepsWithData: not bound !missing-selector! +NSBitmapImageRep::imageRepWithData: not bound +!missing-selector! +NSBitmapImageRep::imageRepsWithData: not bound !missing-selector! +NSBitmapImageRep::localizedNameForTIFFCompressionType: not bound !missing-selector! +NSBitmapImageRep::representationOfImageRepsInArray:usingType:properties: not bound -!missing-selector! +NSBitmapImageRep::TIFFRepresentationOfImageRepsInArray: not bound -!missing-selector! +NSBitmapImageRep::TIFFRepresentationOfImageRepsInArray:usingCompression:factor: not bound !missing-selector! +NSBrowser::cellClass not bound !missing-selector! +NSBrowser::removeSavedColumnsWithAutosaveName: not bound !missing-selector! +NSBrowserCell::branchImage not bound @@ -1668,10 +1674,10 @@ !missing-selector! +NSButtonTouchBarItem::buttonTouchBarItemWithIdentifier:image:target:action: not bound !missing-selector! +NSButtonTouchBarItem::buttonTouchBarItemWithIdentifier:title:image:target:action: not bound !missing-selector! +NSButtonTouchBarItem::buttonTouchBarItemWithIdentifier:title:target:action: not bound +!missing-selector! +NSCIImageRep::imageRepWithCIImage: not bound !missing-selector! +NSCell::defaultFocusRingType not bound !missing-selector! +NSCell::defaultMenu not bound !missing-selector! +NSCell::prefersTrackingUntilMouseUp not bound -!missing-selector! +NSCIImageRep::imageRepWithCIImage: not bound !missing-selector! +NSCollectionViewLayout::invalidationContextClass not bound !missing-selector! +NSCollectionViewLayout::layoutAttributesClass not bound !missing-selector! +NSCollectionViewLayoutAttributes::layoutAttributesForDecorationViewOfKind:withIndexPath: not bound @@ -1689,12 +1695,12 @@ !missing-selector! +NSColor::colorFromPasteboard: not bound !missing-selector! +NSColor::colorNamed: not bound !missing-selector! +NSColor::colorNamed:bundle: not bound +!missing-selector! +NSColor::colorWithCGColor: not bound +!missing-selector! +NSColor::colorWithCIColor: not bound !missing-selector! +NSColor::colorWithCalibratedHue:saturation:brightness:alpha: not bound !missing-selector! +NSColor::colorWithCalibratedRed:green:blue:alpha: not bound !missing-selector! +NSColor::colorWithCalibratedWhite:alpha: not bound !missing-selector! +NSColor::colorWithCatalogName:colorName: not bound -!missing-selector! +NSColor::colorWithCGColor: not bound -!missing-selector! +NSColor::colorWithCIColor: not bound !missing-selector! +NSColor::colorWithColorSpace:components:count: not bound !missing-selector! +NSColor::colorWithColorSpace:hue:saturation:brightness:alpha: not bound !missing-selector! +NSColor::colorWithDeviceCyan:magenta:yellow:black:alpha: not bound @@ -1758,9 +1764,11 @@ !missing-selector! +NSColor::shadowColor not bound !missing-selector! +NSColor::systemBlueColor not bound !missing-selector! +NSColor::systemBrownColor not bound +!missing-selector! +NSColor::systemCyanColor not bound !missing-selector! +NSColor::systemGrayColor not bound !missing-selector! +NSColor::systemGreenColor not bound !missing-selector! +NSColor::systemIndigoColor not bound +!missing-selector! +NSColor::systemMintColor not bound !missing-selector! +NSColor::systemOrangeColor not bound !missing-selector! +NSColor::systemPinkColor not bound !missing-selector! +NSColor::systemPurpleColor not bound @@ -1805,6 +1813,8 @@ !missing-selector! +NSColorSpace::sRGBColorSpace not bound !missing-selector! +NSControl::cellClass not bound !missing-selector! +NSControl::setCellClass: not bound +!missing-selector! +NSCursor::IBeamCursor not bound +!missing-selector! +NSCursor::IBeamCursorForVerticalLayout not bound !missing-selector! +NSCursor::arrowCursor not bound !missing-selector! +NSCursor::closedHandCursor not bound !missing-selector! +NSCursor::contextualMenuCursor not bound @@ -1815,8 +1825,6 @@ !missing-selector! +NSCursor::dragCopyCursor not bound !missing-selector! +NSCursor::dragLinkCursor not bound !missing-selector! +NSCursor::hide not bound -!missing-selector! +NSCursor::IBeamCursor not bound -!missing-selector! +NSCursor::IBeamCursorForVerticalLayout not bound !missing-selector! +NSCursor::openHandCursor not bound !missing-selector! +NSCursor::operationNotAllowedCursor not bound !missing-selector! +NSCursor::pointingHandCursor not bound @@ -1829,6 +1837,7 @@ !missing-selector! +NSCursor::resizeUpDownCursor not bound !missing-selector! +NSCursor::setHiddenUntilMouseMoves: not bound !missing-selector! +NSCursor::unhide not bound +!missing-selector! +NSDocument::allowedClassesForRestorableStateKeyPath: not bound !missing-selector! +NSDocument::autosavesDrafts not bound !missing-selector! +NSDocument::autosavesInPlace not bound !missing-selector! +NSDocument::canConcurrentlyReadDocumentsOfType: not bound @@ -1944,19 +1953,22 @@ !missing-selector! +NSImageRep::imageRepClassForFileType: not bound !missing-selector! +NSImageRep::imageRepClassForPasteboardType: not bound !missing-selector! +NSImageRep::imageRepClassForType: not bound -!missing-selector! +NSImageRep::imageRepsWithContentsOfFile: not bound -!missing-selector! +NSImageRep::imageRepsWithContentsOfURL: not bound -!missing-selector! +NSImageRep::imageRepsWithPasteboard: not bound !missing-selector! +NSImageRep::imageRepWithContentsOfFile: not bound !missing-selector! +NSImageRep::imageRepWithContentsOfURL: not bound !missing-selector! +NSImageRep::imageRepWithPasteboard: not bound +!missing-selector! +NSImageRep::imageRepsWithContentsOfFile: not bound +!missing-selector! +NSImageRep::imageRepsWithContentsOfURL: not bound +!missing-selector! +NSImageRep::imageRepsWithPasteboard: not bound !missing-selector! +NSImageRep::imageTypes not bound !missing-selector! +NSImageRep::imageUnfilteredFileTypes not bound !missing-selector! +NSImageRep::imageUnfilteredPasteboardTypes not bound !missing-selector! +NSImageRep::imageUnfilteredTypes not bound -!missing-selector! +NSImageRep::registeredImageRepClasses not bound !missing-selector! +NSImageRep::registerImageRepClass: not bound +!missing-selector! +NSImageRep::registeredImageRepClasses not bound !missing-selector! +NSImageRep::unregisterImageRepClass: not bound +!missing-selector! +NSImageSymbolConfiguration::configurationPreferringMulticolor not bound +!missing-selector! +NSImageSymbolConfiguration::configurationWithHierarchicalColor: not bound +!missing-selector! +NSImageSymbolConfiguration::configurationWithPaletteColors: not bound !missing-selector! +NSImageSymbolConfiguration::configurationWithPointSize:weight: not bound !missing-selector! +NSImageSymbolConfiguration::configurationWithPointSize:weight:scale: not bound !missing-selector! +NSImageSymbolConfiguration::configurationWithScale: not bound @@ -1988,6 +2000,9 @@ !missing-selector! +NSOpenGLContext::currentContext not bound !missing-selector! +NSOpenGLView::defaultPixelFormat not bound !missing-selector! +NSOpenPanel::openPanel not bound +!missing-selector! +NSPDFImageRep::imageRepWithData: not bound +!missing-selector! +NSPDFPanel::panel not bound +!missing-selector! +NSPICTImageRep::imageRepWithData: not bound !missing-selector! +NSPageLayout::pageLayout not bound !missing-selector! +NSPasteboard::generalPasteboard not bound !missing-selector! +NSPasteboard::pasteboardByFilteringData:ofType: not bound @@ -1997,55 +2012,53 @@ !missing-selector! +NSPasteboard::pasteboardWithUniqueName not bound !missing-selector! +NSPasteboard::typesFilterableTo: not bound !missing-selector! +NSPathCell::pathComponentCellClass not bound -!missing-selector! +NSPDFImageRep::imageRepWithData: not bound -!missing-selector! +NSPDFPanel::panel not bound !missing-selector! +NSPickerTouchBarItem::pickerTouchBarItemWithIdentifier:images:selectionMode:target:action: not bound !missing-selector! +NSPickerTouchBarItem::pickerTouchBarItemWithIdentifier:labels:selectionMode:target:action: not bound -!missing-selector! +NSPICTImageRep::imageRepWithData: not bound !missing-selector! +NSPredicateEditorRowTemplate::templatesWithAttributeKeyPaths:inEntityDescription: not bound -!missing-selector! +NSPrinter::printerNames not bound -!missing-selector! +NSPrinter::printerTypes not bound -!missing-selector! +NSPrinter::printerWithName: not bound -!missing-selector! +NSPrinter::printerWithName:domain:includeUnavailable: not bound -!missing-selector! +NSPrinter::printerWithType: not bound !missing-selector! +NSPrintInfo::defaultPrinter not bound !missing-selector! +NSPrintInfo::setDefaultPrinter: not bound !missing-selector! +NSPrintInfo::setSharedPrintInfo: not bound !missing-selector! +NSPrintInfo::sharedPrintInfo not bound !missing-selector! +NSPrintInfo::sizeForPaperName: not bound -!missing-selector! +NSPrintOperation::currentOperation not bound !missing-selector! +NSPrintOperation::EPSOperationWithView:insideRect:toData: not bound !missing-selector! +NSPrintOperation::EPSOperationWithView:insideRect:toData:printInfo: not bound !missing-selector! +NSPrintOperation::EPSOperationWithView:insideRect:toPath:printInfo: not bound !missing-selector! +NSPrintOperation::PDFOperationWithView:insideRect:toData: not bound !missing-selector! +NSPrintOperation::PDFOperationWithView:insideRect:toData:printInfo: not bound !missing-selector! +NSPrintOperation::PDFOperationWithView:insideRect:toPath:printInfo: not bound +!missing-selector! +NSPrintOperation::currentOperation not bound !missing-selector! +NSPrintOperation::printOperationWithView: not bound !missing-selector! +NSPrintOperation::printOperationWithView:printInfo: not bound !missing-selector! +NSPrintOperation::setCurrentOperation: not bound !missing-selector! +NSPrintPanel::printPanel not bound +!missing-selector! +NSPrinter::printerNames not bound +!missing-selector! +NSPrinter::printerTypes not bound +!missing-selector! +NSPrinter::printerWithName: not bound +!missing-selector! +NSPrinter::printerWithName:domain:includeUnavailable: not bound +!missing-selector! +NSPrinter::printerWithType: not bound +!missing-selector! +NSResponder::allowedClassesForRestorableStateKeyPath: not bound !missing-selector! +NSResponder::restorableStateKeyPaths not bound !missing-selector! +NSRulerView::registerUnitWithName:abbreviation:unitToPointsConversionFactor:stepUpCycle:stepDownCycle: not bound !missing-selector! +NSRunningApplication::currentApplication not bound -!missing-selector! +NSRunningApplication::runningApplicationsWithBundleIdentifier: not bound !missing-selector! +NSRunningApplication::runningApplicationWithProcessIdentifier: not bound +!missing-selector! +NSRunningApplication::runningApplicationsWithBundleIdentifier: not bound !missing-selector! +NSRunningApplication::terminateAutomaticallyTerminableApplications not bound !missing-selector! +NSSavePanel::savePanel not bound !missing-selector! +NSScreen::deepestScreen not bound !missing-selector! +NSScreen::mainScreen not bound !missing-selector! +NSScreen::screens not bound !missing-selector! +NSScreen::screensHaveSeparateSpaces not bound -!missing-selector! +NSScroller::isCompatibleWithOverlayScrollers not bound -!missing-selector! +NSScroller::preferredScrollerStyle not bound -!missing-selector! +NSScroller::scrollerWidth not bound -!missing-selector! +NSScroller::scrollerWidthForControlSize: not bound -!missing-selector! +NSScroller::scrollerWidthForControlSize:scrollerStyle: not bound !missing-selector! +NSScrollView::contentSizeForFrameSize:hasHorizontalScroller:hasVerticalScroller:borderType: not bound !missing-selector! +NSScrollView::contentSizeForFrameSize:horizontalScrollerClass:verticalScrollerClass:borderType:controlSize:scrollerStyle: not bound !missing-selector! +NSScrollView::frameSizeForContentSize:hasHorizontalScroller:hasVerticalScroller:borderType: not bound !missing-selector! +NSScrollView::frameSizeForContentSize:horizontalScrollerClass:verticalScrollerClass:borderType:controlSize:scrollerStyle: not bound !missing-selector! +NSScrollView::rulerViewClass not bound !missing-selector! +NSScrollView::setRulerViewClass: not bound +!missing-selector! +NSScroller::isCompatibleWithOverlayScrollers not bound +!missing-selector! +NSScroller::preferredScrollerStyle not bound +!missing-selector! +NSScroller::scrollerWidth not bound +!missing-selector! +NSScroller::scrollerWidthForControlSize: not bound +!missing-selector! +NSScroller::scrollerWidthForControlSize:scrollerStyle: not bound !missing-selector! +NSScrubberLayout::layoutAttributesClass not bound !missing-selector! +NSScrubberLayoutAttributes::layoutAttributesForItemAtIndex: not bound !missing-selector! +NSScrubberSelectionStyle::outlineOverlayStyle not bound @@ -2094,8 +2107,8 @@ !missing-selector! +NSStoryboard::mainStoryboard not bound !missing-selector! +NSStoryboard::storyboardWithName:bundle: not bound !missing-selector! +NSStoryboardSegue::segueWithIdentifier:source:destination:performHandler: not bound -!missing-selector! +NSTableViewRowAction::rowActionWithStyle:title:handler: not bound !missing-selector! +NSTabViewItem::tabViewItemWithViewController: not bound +!missing-selector! +NSTableViewRowAction::rowActionWithStyle:title:handler: not bound !missing-selector! +NSTextField::labelWithAttributedString: not bound !missing-selector! +NSTextField::labelWithString: not bound !missing-selector! +NSTextField::textFieldWithString: not bound @@ -2297,8 +2310,8 @@ !missing-selector! NSApplication::discardEventsMatchingMask:beforeEvent: not bound !missing-selector! NSApplication::dockTile not bound !missing-selector! NSApplication::effectiveAppearance not bound -!missing-selector! NSApplication::enabledRemoteNotificationTypes not bound !missing-selector! NSApplication::enableRelaunchOnLogin not bound +!missing-selector! NSApplication::enabledRemoteNotificationTypes not bound !missing-selector! NSApplication::endModalSession: not bound !missing-selector! NSApplication::endSheet: not bound !missing-selector! NSApplication::endSheet:returnCode: not bound @@ -2311,6 +2324,7 @@ !missing-selector! NSApplication::isActive not bound !missing-selector! NSApplication::isFullKeyboardAccessEnabled not bound !missing-selector! NSApplication::isHidden not bound +!missing-selector! NSApplication::isProtectedDataAvailable not bound !missing-selector! NSApplication::isRegisteredForRemoteNotifications not bound !missing-selector! NSApplication::isRunning not bound !missing-selector! NSApplication::keyWindow not bound @@ -2321,17 +2335,17 @@ !missing-selector! NSApplication::modalWindow not bound !missing-selector! NSApplication::nextEventMatchingMask:untilDate:inMode:dequeue: not bound !missing-selector! NSApplication::occlusionState not bound -!missing-selector! NSApplication::orderedDocuments not bound -!missing-selector! NSApplication::orderedWindows not bound !missing-selector! NSApplication::orderFrontCharacterPalette: not bound !missing-selector! NSApplication::orderFrontColorPanel: not bound !missing-selector! NSApplication::orderFrontStandardAboutPanel: not bound !missing-selector! NSApplication::orderFrontStandardAboutPanelWithOptions: not bound +!missing-selector! NSApplication::orderedDocuments not bound +!missing-selector! NSApplication::orderedWindows not bound !missing-selector! NSApplication::postEvent:atStart: not bound !missing-selector! NSApplication::presentationOptions not bound !missing-selector! NSApplication::preventWindowOrdering not bound -!missing-selector! NSApplication::registerForRemoteNotifications not bound !missing-selector! NSApplication::registerForRemoteNotificationTypes: not bound +!missing-selector! NSApplication::registerForRemoteNotifications not bound !missing-selector! NSApplication::registerServicesMenuSendTypes:returnTypes: not bound !missing-selector! NSApplication::registerUserInterfaceItemSearchHandler: not bound !missing-selector! NSApplication::removeWindowsItem: not bound @@ -2378,19 +2392,19 @@ !missing-selector! NSApplication::updateWindowsItem: not bound !missing-selector! NSApplication::userInterfaceLayoutDirection not bound !missing-selector! NSApplication::validRequestorForSendType:returnType: not bound +!missing-selector! NSApplication::windowWithWindowNumber: not bound !missing-selector! NSApplication::windows not bound !missing-selector! NSApplication::windowsMenu not bound -!missing-selector! NSApplication::windowWithWindowNumber: not bound !missing-selector! NSArrayController::add: not bound !missing-selector! NSArrayController::addObject: not bound !missing-selector! NSArrayController::addObjects: not bound !missing-selector! NSArrayController::addSelectedObjects: not bound !missing-selector! NSArrayController::addSelectionIndexes: not bound !missing-selector! NSArrayController::alwaysUsesMultipleValuesMarker not bound -!missing-selector! NSArrayController::arrangedObjects not bound !missing-selector! NSArrayController::arrangeObjects: not bound -!missing-selector! NSArrayController::automaticallyRearrangesObjects not bound +!missing-selector! NSArrayController::arrangedObjects not bound !missing-selector! NSArrayController::automaticRearrangementKeyPaths not bound +!missing-selector! NSArrayController::automaticallyRearrangesObjects not bound !missing-selector! NSArrayController::avoidsEmptySelection not bound !missing-selector! NSArrayController::canInsert not bound !missing-selector! NSArrayController::canSelectNext not bound @@ -2410,11 +2424,11 @@ !missing-selector! NSArrayController::removeObjectsAtArrangedObjectIndexes: not bound !missing-selector! NSArrayController::removeSelectedObjects: not bound !missing-selector! NSArrayController::removeSelectionIndexes: not bound +!missing-selector! NSArrayController::selectNext: not bound +!missing-selector! NSArrayController::selectPrevious: not bound !missing-selector! NSArrayController::selectedObjects not bound !missing-selector! NSArrayController::selectionIndex not bound !missing-selector! NSArrayController::selectionIndexes not bound -!missing-selector! NSArrayController::selectNext: not bound -!missing-selector! NSArrayController::selectPrevious: not bound !missing-selector! NSArrayController::selectsInsertedObjects not bound !missing-selector! NSArrayController::setAlwaysUsesMultipleValuesMarker: not bound !missing-selector! NSArrayController::setAutomaticallyRearrangesObjects: not bound @@ -2481,6 +2495,9 @@ !missing-selector! NSBezierPath::stroke not bound !missing-selector! NSBezierPath::transformUsingAffineTransform: not bound !missing-selector! NSBezierPath::windingRule not bound +!missing-selector! NSBitmapImageRep::CGImage not bound +!missing-selector! NSBitmapImageRep::TIFFRepresentation not bound +!missing-selector! NSBitmapImageRep::TIFFRepresentationUsingCompression:factor: not bound !missing-selector! NSBitmapImageRep::bitmapData not bound !missing-selector! NSBitmapImageRep::bitmapFormat not bound !missing-selector! NSBitmapImageRep::bitmapImageRepByConvertingToColorSpace:renderingIntent: not bound @@ -2489,10 +2506,9 @@ !missing-selector! NSBitmapImageRep::bytesPerPlane not bound !missing-selector! NSBitmapImageRep::bytesPerRow not bound !missing-selector! NSBitmapImageRep::canBeCompressedUsing: not bound -!missing-selector! NSBitmapImageRep::CGImage not bound !missing-selector! NSBitmapImageRep::colorAtX:y: not bound -!missing-selector! NSBitmapImageRep::colorizeByMappingGray:toColor:blackMapping:whiteMapping: not bound !missing-selector! NSBitmapImageRep::colorSpace not bound +!missing-selector! NSBitmapImageRep::colorizeByMappingGray:toColor:blackMapping:whiteMapping: not bound !missing-selector! NSBitmapImageRep::getBitmapDataPlanes: not bound !missing-selector! NSBitmapImageRep::getCompression:factor: not bound !missing-selector! NSBitmapImageRep::getPixel:atX:y: not bound @@ -2512,8 +2528,6 @@ !missing-selector! NSBitmapImageRep::setCompression:factor: not bound !missing-selector! NSBitmapImageRep::setPixel:atX:y: not bound !missing-selector! NSBitmapImageRep::setProperty:withValue: not bound -!missing-selector! NSBitmapImageRep::TIFFRepresentation not bound -!missing-selector! NSBitmapImageRep::TIFFRepresentationUsingCompression:factor: not bound !missing-selector! NSBitmapImageRep::valueForProperty: not bound !missing-selector! NSBox::borderColor not bound !missing-selector! NSBox::borderRect not bound @@ -2560,8 +2574,8 @@ !missing-selector! NSBrowser::columnContentWidthForColumnWidth: not bound !missing-selector! NSBrowser::columnOfMatrix: not bound !missing-selector! NSBrowser::columnResizingType not bound -!missing-selector! NSBrowser::columnsAutosaveName not bound !missing-selector! NSBrowser::columnWidthForColumnContentWidth: not bound +!missing-selector! NSBrowser::columnsAutosaveName not bound !missing-selector! NSBrowser::defaultColumnWidth not bound !missing-selector! NSBrowser::delegate not bound !missing-selector! NSBrowser::displayAllColumns not bound @@ -2603,12 +2617,14 @@ !missing-selector! NSBrowser::reloadDataForRowIndexes:inColumn: not bound !missing-selector! NSBrowser::reusesColumns not bound !missing-selector! NSBrowser::rowHeight not bound +!missing-selector! NSBrowser::scrollColumnToVisible: not bound !missing-selector! NSBrowser::scrollColumnsLeftBy: not bound !missing-selector! NSBrowser::scrollColumnsRightBy: not bound -!missing-selector! NSBrowser::scrollColumnToVisible: not bound !missing-selector! NSBrowser::scrollRowToVisible:inColumn: not bound !missing-selector! NSBrowser::scrollViaScroller: not bound !missing-selector! NSBrowser::selectAll: not bound +!missing-selector! NSBrowser::selectRow:inColumn: not bound +!missing-selector! NSBrowser::selectRowIndexes:inColumn: not bound !missing-selector! NSBrowser::selectedCell not bound !missing-selector! NSBrowser::selectedCellInColumn: not bound !missing-selector! NSBrowser::selectedCells not bound @@ -2617,8 +2633,6 @@ !missing-selector! NSBrowser::selectedRowIndexesInColumn: not bound !missing-selector! NSBrowser::selectionIndexPath not bound !missing-selector! NSBrowser::selectionIndexPaths not bound -!missing-selector! NSBrowser::selectRow:inColumn: not bound -!missing-selector! NSBrowser::selectRowIndexes:inColumn: not bound !missing-selector! NSBrowser::sendAction not bound !missing-selector! NSBrowser::sendsActionOnArrowKeys not bound !missing-selector! NSBrowser::separatesColumns not bound @@ -2677,13 +2691,13 @@ !missing-selector! NSBrowserCell::setImage: not bound !missing-selector! NSBrowserCell::setLeaf: not bound !missing-selector! NSBrowserCell::setLoaded: not bound +!missing-selector! NSBundle::URLForImageResource: not bound !missing-selector! NSBundle::contextHelpForKey: not bound !missing-selector! NSBundle::imageForResource: not bound !missing-selector! NSBundle::loadNibFile:externalNameTable:withZone: not bound !missing-selector! NSBundle::loadNibNamed:owner:topLevelObjects: not bound !missing-selector! NSBundle::pathForImageResource: not bound !missing-selector! NSBundle::pathForSoundResource: not bound -!missing-selector! NSBundle::URLForImageResource: not bound !missing-selector! NSButton::activeCompressionOptions not bound !missing-selector! NSButton::allowsMixedState not bound !missing-selector! NSButton::alternateImage not bound @@ -2813,6 +2827,8 @@ !missing-selector! NSButtonTouchBarItem::setTitle: not bound !missing-selector! NSButtonTouchBarItem::target not bound !missing-selector! NSButtonTouchBarItem::title not bound +!missing-selector! NSCIImageRep::CIImage not bound +!missing-selector! NSCIImageRep::initWithCIImage: not bound !missing-selector! NSCachedImageRep::initWithSize:depth:separate:alpha: not bound !missing-selector! NSCachedImageRep::initWithWindow:rect: not bound !missing-selector! NSCachedImageRep::rect not bound @@ -2854,10 +2870,10 @@ !missing-selector! NSCell::doubleValue not bound !missing-selector! NSCell::draggingImageComponentsWithFrame:inView: not bound !missing-selector! NSCell::drawFocusRingMaskWithFrame:inView: not bound -!missing-selector! NSCell::drawingRectForBounds: not bound !missing-selector! NSCell::drawInteriorWithFrame:inView: not bound !missing-selector! NSCell::drawWithExpansionFrame:inView: not bound !missing-selector! NSCell::drawWithFrame:inView: not bound +!missing-selector! NSCell::drawingRectForBounds: not bound !missing-selector! NSCell::editWithFrame:inView:editor:delegate:event: not bound !missing-selector! NSCell::endEditing: not bound !missing-selector! NSCell::entryType not bound @@ -2880,9 +2896,9 @@ !missing-selector! NSCell::initImageCell: not bound !missing-selector! NSCell::initTextCell: not bound !missing-selector! NSCell::initWithCoder: not bound +!missing-selector! NSCell::intValue not bound !missing-selector! NSCell::integerValue not bound !missing-selector! NSCell::interiorBackgroundStyle not bound -!missing-selector! NSCell::intValue not bound !missing-selector! NSCell::isBezeled not bound !missing-selector! NSCell::isBordered not bound !missing-selector! NSCell::isContinuous not bound @@ -2925,16 +2941,16 @@ !missing-selector! NSCell::setEditable: not bound !missing-selector! NSCell::setEnabled: not bound !missing-selector! NSCell::setEntryType: not bound -!missing-selector! NSCell::setFloatingPointFormat:left:right: not bound !missing-selector! NSCell::setFloatValue: not bound +!missing-selector! NSCell::setFloatingPointFormat:left:right: not bound !missing-selector! NSCell::setFocusRingType: not bound !missing-selector! NSCell::setFont: not bound !missing-selector! NSCell::setFormatter: not bound !missing-selector! NSCell::setHighlighted: not bound !missing-selector! NSCell::setImage: not bound !missing-selector! NSCell::setImportsGraphics: not bound -!missing-selector! NSCell::setIntegerValue: not bound !missing-selector! NSCell::setIntValue: not bound +!missing-selector! NSCell::setIntegerValue: not bound !missing-selector! NSCell::setMenu: not bound !missing-selector! NSCell::setMnemonicLocation: not bound !missing-selector! NSCell::setNextState not bound @@ -2965,8 +2981,8 @@ !missing-selector! NSCell::tag not bound !missing-selector! NSCell::takeDoubleValueFrom: not bound !missing-selector! NSCell::takeFloatValueFrom: not bound -!missing-selector! NSCell::takeIntegerValueFrom: not bound !missing-selector! NSCell::takeIntValueFrom: not bound +!missing-selector! NSCell::takeIntegerValueFrom: not bound !missing-selector! NSCell::takeObjectValueFrom: not bound !missing-selector! NSCell::takeStringValueFrom: not bound !missing-selector! NSCell::target not bound @@ -2979,8 +2995,6 @@ !missing-selector! NSCell::usesSingleLineMode not bound !missing-selector! NSCell::wantsNotificationForMarkedText not bound !missing-selector! NSCell::wraps not bound -!missing-selector! NSCIImageRep::CIImage not bound -!missing-selector! NSCIImageRep::initWithCIImage: not bound !missing-selector! NSClickGestureRecognizer::buttonMask not bound !missing-selector! NSClickGestureRecognizer::numberOfClicksRequired not bound !missing-selector! NSClickGestureRecognizer::numberOfTouchesRequired not bound @@ -3023,8 +3037,8 @@ !missing-selector! NSCollectionView::deleteSections: not bound !missing-selector! NSCollectionView::deselectAll: not bound !missing-selector! NSCollectionView::deselectItemsAtIndexPaths: not bound -!missing-selector! NSCollectionView::draggingImageForItemsAtIndexes:withEvent:offset: not bound !missing-selector! NSCollectionView::draggingImageForItemsAtIndexPaths:withEvent:offset: not bound +!missing-selector! NSCollectionView::draggingImageForItemsAtIndexes:withEvent:offset: not bound !missing-selector! NSCollectionView::frameForItemAtIndex: not bound !missing-selector! NSCollectionView::frameForItemAtIndex:withNumberOfItems: not bound !missing-selector! NSCollectionView::indexPathForItem: not bound @@ -3062,9 +3076,9 @@ !missing-selector! NSCollectionView::reloadSections: not bound !missing-selector! NSCollectionView::scrollToItemsAtIndexPaths:scrollPosition: not bound !missing-selector! NSCollectionView::selectAll: not bound -!missing-selector! NSCollectionView::selectionIndexes not bound -!missing-selector! NSCollectionView::selectionIndexPaths not bound !missing-selector! NSCollectionView::selectItemsAtIndexPaths:scrollPosition: not bound +!missing-selector! NSCollectionView::selectionIndexPaths not bound +!missing-selector! NSCollectionView::selectionIndexes not bound !missing-selector! NSCollectionView::setAllowsEmptySelection: not bound !missing-selector! NSCollectionView::setAllowsMultipleSelection: not bound !missing-selector! NSCollectionView::setBackgroundColors: not bound @@ -3082,8 +3096,8 @@ !missing-selector! NSCollectionView::setMinItemSize: not bound !missing-selector! NSCollectionView::setPrefetchDataSource: not bound !missing-selector! NSCollectionView::setSelectable: not bound -!missing-selector! NSCollectionView::setSelectionIndexes: not bound !missing-selector! NSCollectionView::setSelectionIndexPaths: not bound +!missing-selector! NSCollectionView::setSelectionIndexes: not bound !missing-selector! NSCollectionView::supplementaryViewForElementKind:atIndexPath: not bound !missing-selector! NSCollectionView::toggleSectionCollapse: not bound !missing-selector! NSCollectionView::visibleItems not bound @@ -3143,12 +3157,12 @@ !missing-selector! NSCollectionViewItem::textField not bound !missing-selector! NSCollectionViewLayout::collectionView not bound !missing-selector! NSCollectionViewLayout::collectionViewContentSize not bound -!missing-selector! NSCollectionViewLayout::finalizeAnimatedBoundsChange not bound -!missing-selector! NSCollectionViewLayout::finalizeCollectionViewUpdates not bound -!missing-selector! NSCollectionViewLayout::finalizeLayoutTransition not bound !missing-selector! NSCollectionViewLayout::finalLayoutAttributesForDisappearingDecorationElementOfKind:atIndexPath: not bound !missing-selector! NSCollectionViewLayout::finalLayoutAttributesForDisappearingItemAtIndexPath: not bound !missing-selector! NSCollectionViewLayout::finalLayoutAttributesForDisappearingSupplementaryElementOfKind:atIndexPath: not bound +!missing-selector! NSCollectionViewLayout::finalizeAnimatedBoundsChange not bound +!missing-selector! NSCollectionViewLayout::finalizeCollectionViewUpdates not bound +!missing-selector! NSCollectionViewLayout::finalizeLayoutTransition not bound !missing-selector! NSCollectionViewLayout::indexPathsToDeleteForDecorationViewOfKind: not bound !missing-selector! NSCollectionViewLayout::indexPathsToDeleteForSupplementaryViewOfKind: not bound !missing-selector! NSCollectionViewLayout::indexPathsToInsertForDecorationViewOfKind: not bound @@ -3194,13 +3208,13 @@ !missing-selector! NSCollectionViewLayoutInvalidationContext::contentOffsetAdjustment not bound !missing-selector! NSCollectionViewLayoutInvalidationContext::contentSizeAdjustment not bound !missing-selector! NSCollectionViewLayoutInvalidationContext::invalidateDataSourceCounts not bound -!missing-selector! NSCollectionViewLayoutInvalidationContext::invalidatedDecorationIndexPaths not bound !missing-selector! NSCollectionViewLayoutInvalidationContext::invalidateDecorationElementsOfKind:atIndexPaths: not bound -!missing-selector! NSCollectionViewLayoutInvalidationContext::invalidatedItemIndexPaths not bound -!missing-selector! NSCollectionViewLayoutInvalidationContext::invalidatedSupplementaryIndexPaths not bound !missing-selector! NSCollectionViewLayoutInvalidationContext::invalidateEverything not bound !missing-selector! NSCollectionViewLayoutInvalidationContext::invalidateItemsAtIndexPaths: not bound !missing-selector! NSCollectionViewLayoutInvalidationContext::invalidateSupplementaryElementsOfKind:atIndexPaths: not bound +!missing-selector! NSCollectionViewLayoutInvalidationContext::invalidatedDecorationIndexPaths not bound +!missing-selector! NSCollectionViewLayoutInvalidationContext::invalidatedItemIndexPaths not bound +!missing-selector! NSCollectionViewLayoutInvalidationContext::invalidatedSupplementaryIndexPaths not bound !missing-selector! NSCollectionViewLayoutInvalidationContext::setContentOffsetAdjustment: not bound !missing-selector! NSCollectionViewLayoutInvalidationContext::setContentSizeAdjustment: not bound !missing-selector! NSCollectionViewTransitionLayout::currentLayout not bound @@ -3213,13 +3227,13 @@ !missing-selector! NSCollectionViewUpdateItem::indexPathAfterUpdate not bound !missing-selector! NSCollectionViewUpdateItem::indexPathBeforeUpdate not bound !missing-selector! NSCollectionViewUpdateItem::updateAction not bound +!missing-selector! NSColor::CGColor not bound !missing-selector! NSColor::alphaComponent not bound !missing-selector! NSColor::blackComponent not bound !missing-selector! NSColor::blendedColorWithFraction:ofColor: not bound !missing-selector! NSColor::blueComponent not bound !missing-selector! NSColor::brightnessComponent not bound !missing-selector! NSColor::catalogNameComponent not bound -!missing-selector! NSColor::CGColor not bound !missing-selector! NSColor::colorNameComponent not bound !missing-selector! NSColor::colorSpace not bound !missing-selector! NSColor::colorSpaceName not bound @@ -3311,9 +3325,9 @@ !missing-selector! NSColorPickerTouchBarItem::target not bound !missing-selector! NSColorSampler::showSamplerWithSelectionHandler: not bound !missing-selector! NSColorSpace::CGColorSpace not bound +!missing-selector! NSColorSpace::ICCProfileData not bound !missing-selector! NSColorSpace::colorSpaceModel not bound !missing-selector! NSColorSpace::colorSyncProfile not bound -!missing-selector! NSColorSpace::ICCProfileData not bound !missing-selector! NSColorSpace::initWithCGColorSpace: not bound !missing-selector! NSColorSpace::initWithColorSyncProfile: not bound !missing-selector! NSColorSpace::initWithICCProfileData: not bound @@ -3328,8 +3342,8 @@ !missing-selector! NSColorWell::setBordered: not bound !missing-selector! NSColorWell::setColor: not bound !missing-selector! NSColorWell::takeColorFrom: not bound -!missing-selector! NSComboBox::addItemsWithObjectValues: not bound !missing-selector! NSComboBox::addItemWithObjectValue: not bound +!missing-selector! NSComboBox::addItemsWithObjectValues: not bound !missing-selector! NSComboBox::completes not bound !missing-selector! NSComboBox::dataSource not bound !missing-selector! NSComboBox::delegate not bound @@ -3365,8 +3379,8 @@ !missing-selector! NSComboBox::setNumberOfVisibleItems: not bound !missing-selector! NSComboBox::setUsesDataSource: not bound !missing-selector! NSComboBox::usesDataSource not bound -!missing-selector! NSComboBoxCell::addItemsWithObjectValues: not bound !missing-selector! NSComboBoxCell::addItemWithObjectValue: not bound +!missing-selector! NSComboBoxCell::addItemsWithObjectValues: not bound !missing-selector! NSComboBoxCell::completedString: not bound !missing-selector! NSComboBoxCell::completes not bound !missing-selector! NSComboBoxCell::dataSource not bound @@ -3422,8 +3436,8 @@ !missing-selector! NSControl::ignoresMultiClick not bound !missing-selector! NSControl::initWithCoder: not bound !missing-selector! NSControl::initWithFrame: not bound -!missing-selector! NSControl::integerValue not bound !missing-selector! NSControl::intValue not bound +!missing-selector! NSControl::integerValue not bound !missing-selector! NSControl::invalidateIntrinsicContentSizeForCell: not bound !missing-selector! NSControl::isContinuous not bound !missing-selector! NSControl::isEnabled not bound @@ -3433,9 +3447,9 @@ !missing-selector! NSControl::performClick: not bound !missing-selector! NSControl::refusesFirstResponder not bound !missing-selector! NSControl::selectCell: not bound +!missing-selector! NSControl::selectWithFrame:editor:delegate:start:length: not bound !missing-selector! NSControl::selectedCell not bound !missing-selector! NSControl::selectedTag not bound -!missing-selector! NSControl::selectWithFrame:editor:delegate:start:length: not bound !missing-selector! NSControl::sendAction:to: not bound !missing-selector! NSControl::sendActionOn: not bound !missing-selector! NSControl::setAction: not bound @@ -3446,14 +3460,14 @@ !missing-selector! NSControl::setControlSize: not bound !missing-selector! NSControl::setDoubleValue: not bound !missing-selector! NSControl::setEnabled: not bound -!missing-selector! NSControl::setFloatingPointFormat:left:right: not bound !missing-selector! NSControl::setFloatValue: not bound +!missing-selector! NSControl::setFloatingPointFormat:left:right: not bound !missing-selector! NSControl::setFont: not bound !missing-selector! NSControl::setFormatter: not bound !missing-selector! NSControl::setHighlighted: not bound !missing-selector! NSControl::setIgnoresMultiClick: not bound -!missing-selector! NSControl::setIntegerValue: not bound !missing-selector! NSControl::setIntValue: not bound +!missing-selector! NSControl::setIntegerValue: not bound !missing-selector! NSControl::setNeedsDisplay not bound !missing-selector! NSControl::setObjectValue: not bound !missing-selector! NSControl::setRefusesFirstResponder: not bound @@ -3467,8 +3481,8 @@ !missing-selector! NSControl::tag not bound !missing-selector! NSControl::takeDoubleValueFrom: not bound !missing-selector! NSControl::takeFloatValueFrom: not bound -!missing-selector! NSControl::takeIntegerValueFrom: not bound !missing-selector! NSControl::takeIntValueFrom: not bound +!missing-selector! NSControl::takeIntegerValueFrom: not bound !missing-selector! NSControl::takeObjectValueFrom: not bound !missing-selector! NSControl::takeStringValueFrom: not bound !missing-selector! NSControl::target not bound @@ -3499,8 +3513,8 @@ !missing-selector! NSCursor::setOnMouseEntered: not bound !missing-selector! NSCursor::setOnMouseExited: not bound !missing-selector! NSCustomImageRep::delegate not bound -!missing-selector! NSCustomImageRep::drawingHandler not bound !missing-selector! NSCustomImageRep::drawSelector not bound +!missing-selector! NSCustomImageRep::drawingHandler not bound !missing-selector! NSCustomImageRep::initWithDrawSelector:delegate: not bound !missing-selector! NSCustomImageRep::initWithSize:flipped:drawingHandler: not bound !missing-selector! NSCustomTouchBarItem::customizationLabel not bound @@ -3602,11 +3616,12 @@ !missing-selector! NSDockTile::setShowsApplicationBadge: not bound !missing-selector! NSDockTile::showsApplicationBadge not bound !missing-selector! NSDockTile::size not bound +!missing-selector! NSDocument::PDFPrintOperation not bound !missing-selector! NSDocument::addWindowController: not bound !missing-selector! NSDocument::allowsDocumentSharing not bound -!missing-selector! NSDocument::autosavedContentsFileURL not bound !missing-selector! NSDocument::autosaveDocumentWithDelegate:didAutosaveSelector:contextInfo: not bound !missing-selector! NSDocument::autosaveWithImplicitCancellability:completionHandler: not bound +!missing-selector! NSDocument::autosavedContentsFileURL not bound !missing-selector! NSDocument::autosavingFileType not bound !missing-selector! NSDocument::autosavingIsImplicitlyCancellable not bound !missing-selector! NSDocument::backupFileURL not bound @@ -3669,7 +3684,6 @@ !missing-selector! NSDocument::moveDocumentWithCompletionHandler: not bound !missing-selector! NSDocument::moveToURL:completionHandler: not bound !missing-selector! NSDocument::objectSpecifier not bound -!missing-selector! NSDocument::PDFPrintOperation not bound !missing-selector! NSDocument::performActivityWithSynchronousWaiting:usingBlock: not bound !missing-selector! NSDocument::performAsynchronousFileAccessUsingBlock: not bound !missing-selector! NSDocument::performSynchronousFileAccessUsingBlock: not bound @@ -3743,8 +3757,8 @@ !missing-selector! NSDocument::willNotPresentError: not bound !missing-selector! NSDocument::willPresentError: not bound !missing-selector! NSDocument::windowControllerDidLoadNib: not bound -!missing-selector! NSDocument::windowControllers not bound !missing-selector! NSDocument::windowControllerWillLoadNib: not bound +!missing-selector! NSDocument::windowControllers not bound !missing-selector! NSDocument::windowForSheet not bound !missing-selector! NSDocument::windowNibName not bound !missing-selector! NSDocument::writableTypesForSaveOperation: not bound @@ -3755,6 +3769,7 @@ !missing-selector! NSDocument::writeToURL:ofType:error: not bound !missing-selector! NSDocument::writeToURL:ofType:forSaveOperation:originalContentsURL:error: not bound !missing-selector! NSDocument::writeWithBackupToFile:ofType:saveOperation: not bound +!missing-selector! NSDocumentController::URLsFromRunningOpenPanel not bound !missing-selector! NSDocumentController::addDocument: not bound !missing-selector! NSDocumentController::allowsAutomaticShareMenu not bound !missing-selector! NSDocumentController::autosavingDelay not bound @@ -3810,7 +3825,6 @@ !missing-selector! NSDocumentController::standardShareMenuItem not bound !missing-selector! NSDocumentController::typeForContentsOfURL:error: not bound !missing-selector! NSDocumentController::typeFromFileExtension: not bound -!missing-selector! NSDocumentController::URLsFromRunningOpenPanel not bound !missing-selector! NSDocumentController::validateUserInterfaceItem: not bound !missing-selector! NSDocumentController::willPresentError: not bound !missing-selector! NSDraggingImageComponent::contents not bound @@ -3865,10 +3879,11 @@ !missing-selector! NSDrawer::state not bound !missing-selector! NSDrawer::toggle: not bound !missing-selector! NSDrawer::trailingOffset not bound -!missing-selector! NSEPSImageRep::boundingBox not bound !missing-selector! NSEPSImageRep::EPSRepresentation not bound +!missing-selector! NSEPSImageRep::boundingBox not bound !missing-selector! NSEPSImageRep::initWithData: not bound !missing-selector! NSEPSImageRep::prepareGState not bound +!missing-selector! NSEvent::CGEvent not bound !missing-selector! NSEvent::absoluteX not bound !missing-selector! NSEvent::absoluteY not bound !missing-selector! NSEvent::absoluteZ not bound @@ -3877,7 +3892,6 @@ !missing-selector! NSEvent::buttonMask not bound !missing-selector! NSEvent::buttonNumber not bound !missing-selector! NSEvent::capabilityMask not bound -!missing-selector! NSEvent::CGEvent not bound !missing-selector! NSEvent::characters not bound !missing-selector! NSEvent::charactersByApplyingModifiers: not bound !missing-selector! NSEvent::charactersIgnoringModifiers not bound @@ -3920,9 +3934,9 @@ !missing-selector! NSEvent::timestamp not bound !missing-selector! NSEvent::touchesForView: not bound !missing-selector! NSEvent::touchesMatchingPhase:inView: not bound +!missing-selector! NSEvent::trackSwipeEventWithOptions:dampenAmountThresholdMin:max:usingHandler: not bound !missing-selector! NSEvent::trackingArea not bound !missing-selector! NSEvent::trackingNumber not bound -!missing-selector! NSEvent::trackSwipeEventWithOptions:dampenAmountThresholdMin:max:usingHandler: not bound !missing-selector! NSEvent::type not bound !missing-selector! NSEvent::uniqueID not bound !missing-selector! NSEvent::userData not bound @@ -3984,8 +3998,8 @@ !missing-selector! NSFont::underlineThickness not bound !missing-selector! NSFont::verticalFont not bound !missing-selector! NSFont::xHeight not bound -!missing-selector! NSFontAssetRequest::downloadedFontDescriptors not bound !missing-selector! NSFontAssetRequest::downloadFontAssetsWithCompletionHandler: not bound +!missing-selector! NSFontAssetRequest::downloadedFontDescriptors not bound !missing-selector! NSFontAssetRequest::initWithFontDescriptors:options: not bound !missing-selector! NSFontAssetRequest::progress not bound !missing-selector! NSFontCollection::exclusionDescriptors not bound @@ -4003,8 +4017,8 @@ !missing-selector! NSFontDescriptor::fontDescriptorWithSize: not bound !missing-selector! NSFontDescriptor::fontDescriptorWithSymbolicTraits: not bound !missing-selector! NSFontDescriptor::initWithFontAttributes: not bound -!missing-selector! NSFontDescriptor::matchingFontDescriptorsWithMandatoryKeys: not bound !missing-selector! NSFontDescriptor::matchingFontDescriptorWithMandatoryKeys: not bound +!missing-selector! NSFontDescriptor::matchingFontDescriptorsWithMandatoryKeys: not bound !missing-selector! NSFontDescriptor::matrix not bound !missing-selector! NSFontDescriptor::objectForKey: not bound !missing-selector! NSFontDescriptor::pointSize not bound @@ -4174,9 +4188,9 @@ !missing-selector! NSGradient::initWithStartingColor:endingColor: not bound !missing-selector! NSGradient::interpolatedColorAtLocation: not bound !missing-selector! NSGradient::numberOfColorStops not bound -!missing-selector! NSGraphicsContext::attributes not bound !missing-selector! NSGraphicsContext::CGContext not bound !missing-selector! NSGraphicsContext::CIContext not bound +!missing-selector! NSGraphicsContext::attributes not bound !missing-selector! NSGraphicsContext::colorRenderingIntent not bound !missing-selector! NSGraphicsContext::compositingOperation not bound !missing-selector! NSGraphicsContext::flushGraphics not bound @@ -4286,6 +4300,13 @@ !missing-selector! NSHelpManager::removeContextHelpForObject: not bound !missing-selector! NSHelpManager::setContextHelp:forObject: not bound !missing-selector! NSHelpManager::showContextHelpForObject:locationHint: not bound +!missing-selector! NSImage+NSImage::imageFileTypes not bound +!missing-selector! NSImage+NSImage::imagePasteboardTypes not bound +!missing-selector! NSImage+NSImage::imageUnfilteredFileTypes not bound +!missing-selector! NSImage+NSImage::imageUnfilteredPasteboardTypes not bound +!missing-selector! NSImage::CGImageForProposedRect:context:hints: not bound +!missing-selector! NSImage::TIFFRepresentation not bound +!missing-selector! NSImage::TIFFRepresentationUsingCompression:factor: not bound !missing-selector! NSImage::accessibilityDescription not bound !missing-selector! NSImage::addRepresentation: not bound !missing-selector! NSImage::addRepresentations: not bound @@ -4295,7 +4316,6 @@ !missing-selector! NSImage::cacheMode not bound !missing-selector! NSImage::cancelIncrementalLoad not bound !missing-selector! NSImage::capInsets not bound -!missing-selector! NSImage::CGImageForProposedRect:context:hints: not bound !missing-selector! NSImage::delegate not bound !missing-selector! NSImage::drawAtPoint:fromRect:operation:fraction: not bound !missing-selector! NSImage::drawInRect: not bound @@ -4320,8 +4340,8 @@ !missing-selector! NSImage::layerContentsForContentsScale: not bound !missing-selector! NSImage::lockFocus not bound !missing-selector! NSImage::lockFocusFlipped: not bound -!missing-selector! NSImage::matchesOnlyOnBestFittingAxis not bound !missing-selector! NSImage::matchesOnMultipleResolution not bound +!missing-selector! NSImage::matchesOnlyOnBestFittingAxis not bound !missing-selector! NSImage::name not bound !missing-selector! NSImage::prefersColorMatch not bound !missing-selector! NSImage::recache not bound @@ -4335,8 +4355,8 @@ !missing-selector! NSImage::setCacheMode: not bound !missing-selector! NSImage::setCapInsets: not bound !missing-selector! NSImage::setDelegate: not bound -!missing-selector! NSImage::setMatchesOnlyOnBestFittingAxis: not bound !missing-selector! NSImage::setMatchesOnMultipleResolution: not bound +!missing-selector! NSImage::setMatchesOnlyOnBestFittingAxis: not bound !missing-selector! NSImage::setName: not bound !missing-selector! NSImage::setPrefersColorMatch: not bound !missing-selector! NSImage::setResizingMode: not bound @@ -4344,14 +4364,9 @@ !missing-selector! NSImage::setTemplate: not bound !missing-selector! NSImage::setUsesEPSOnResolutionMismatch: not bound !missing-selector! NSImage::size not bound -!missing-selector! NSImage::TIFFRepresentation not bound -!missing-selector! NSImage::TIFFRepresentationUsingCompression:factor: not bound +!missing-selector! NSImage::symbolConfiguration not bound !missing-selector! NSImage::unlockFocus not bound !missing-selector! NSImage::usesEPSOnResolutionMismatch not bound -!missing-selector! NSImage+NSImage::imageFileTypes not bound -!missing-selector! NSImage+NSImage::imagePasteboardTypes not bound -!missing-selector! NSImage+NSImage::imageUnfilteredFileTypes not bound -!missing-selector! NSImage+NSImage::imageUnfilteredPasteboardTypes not bound !missing-selector! NSImageCell::imageAlignment not bound !missing-selector! NSImageCell::imageFrameStyle not bound !missing-selector! NSImageCell::imageScaling not bound @@ -4376,8 +4391,8 @@ !missing-selector! NSImageNSImage::setDataRetained: not bound !missing-selector! NSImageNSImage::setFlipped: not bound !missing-selector! NSImageNSImage::setScalesWhenResized: not bound -!missing-selector! NSImageRep::bitsPerSample not bound !missing-selector! NSImageRep::CGImageForProposedRect:context:hints: not bound +!missing-selector! NSImageRep::bitsPerSample not bound !missing-selector! NSImageRep::colorSpaceName not bound !missing-selector! NSImageRep::draw not bound !missing-selector! NSImageRep::drawAtPoint: not bound @@ -4399,6 +4414,7 @@ !missing-selector! NSImageRep::setPixelsWide: not bound !missing-selector! NSImageRep::setSize: not bound !missing-selector! NSImageRep::size not bound +!missing-selector! NSImageSymbolConfiguration::configurationByApplyingConfiguration: not bound !missing-selector! NSImageView::allowsCutCopyPaste not bound !missing-selector! NSImageView::animates not bound !missing-selector! NSImageView::contentTintColor not bound @@ -4516,9 +4532,9 @@ !missing-selector! NSMatrix::cellBackgroundColor not bound !missing-selector! NSMatrix::cellClass not bound !missing-selector! NSMatrix::cellFrameAtRow:column: not bound -!missing-selector! NSMatrix::cells not bound !missing-selector! NSMatrix::cellSize not bound !missing-selector! NSMatrix::cellWithTag: not bound +!missing-selector! NSMatrix::cells not bound !missing-selector! NSMatrix::delegate not bound !missing-selector! NSMatrix::deselectAllCells not bound !missing-selector! NSMatrix::deselectSelectedCell not bound @@ -4558,12 +4574,12 @@ !missing-selector! NSMatrix::selectAll: not bound !missing-selector! NSMatrix::selectCellAtRow:column: not bound !missing-selector! NSMatrix::selectCellWithTag: not bound +!missing-selector! NSMatrix::selectText: not bound +!missing-selector! NSMatrix::selectTextAtRow:column: not bound !missing-selector! NSMatrix::selectedCell not bound !missing-selector! NSMatrix::selectedCells not bound !missing-selector! NSMatrix::selectedColumn not bound !missing-selector! NSMatrix::selectedRow not bound -!missing-selector! NSMatrix::selectText: not bound -!missing-selector! NSMatrix::selectTextAtRow:column: not bound !missing-selector! NSMatrix::sendAction not bound !missing-selector! NSMatrix::sendAction:to:forAllCells: not bound !missing-selector! NSMatrix::sendDoubleAction not bound @@ -4674,6 +4690,8 @@ !missing-selector! NSMenu::update not bound !missing-selector! NSMenu::userInterfaceLayoutDirection not bound !missing-selector! NSMenuItem::action not bound +!missing-selector! NSMenuItem::allowsAutomaticKeyEquivalentLocalization not bound +!missing-selector! NSMenuItem::allowsAutomaticKeyEquivalentMirroring not bound !missing-selector! NSMenuItem::allowsKeyEquivalentWhenHidden not bound !missing-selector! NSMenuItem::attributedTitle not bound !missing-selector! NSMenuItem::hasSubmenu not bound @@ -4698,6 +4716,8 @@ !missing-selector! NSMenuItem::parentItem not bound !missing-selector! NSMenuItem::representedObject not bound !missing-selector! NSMenuItem::setAction: not bound +!missing-selector! NSMenuItem::setAllowsAutomaticKeyEquivalentLocalization: not bound +!missing-selector! NSMenuItem::setAllowsAutomaticKeyEquivalentMirroring: not bound !missing-selector! NSMenuItem::setAllowsKeyEquivalentWhenHidden: not bound !missing-selector! NSMenuItem::setAlternate: not bound !missing-selector! NSMenuItem::setAttributedTitle: not bound @@ -4757,10 +4777,10 @@ !missing-selector! NSMenuToolbarItem::setMenu: not bound !missing-selector! NSMenuToolbarItem::setShowsIndicator: not bound !missing-selector! NSMenuToolbarItem::showsIndicator not bound +!missing-selector! NSMovie::QTMovie not bound !missing-selector! NSMovie::init not bound !missing-selector! NSMovie::initWithCoder: not bound !missing-selector! NSMovie::initWithMovie: not bound -!missing-selector! NSMovie::QTMovie not bound !missing-selector! NSMutableFontCollection::addQueryForDescriptors: not bound !missing-selector! NSMutableFontCollection::exclusionDescriptors not bound !missing-selector! NSMutableFontCollection::queryDescriptors not bound @@ -4822,8 +4842,8 @@ !missing-selector! NSObject::pasteboardChangedOwner: not bound !missing-selector! NSObject::tableView:writeRows:toPasteboard: not bound !missing-selector! NSObject::unbind: not bound -!missing-selector! NSObject::validateMenuItem: not bound !missing-selector! NSObject::validModesForFontPanel: not bound +!missing-selector! NSObject::validateMenuItem: not bound !missing-selector! NSObject::valueClassForBinding: not bound !missing-selector! NSObject::view:stringForToolTip:point:userData: not bound !missing-selector! NSObjectController::add: not bound @@ -4899,8 +4919,8 @@ !missing-selector! NSOpenGLPixelBuffer::textureInternalFormat not bound !missing-selector! NSOpenGLPixelBuffer::textureMaxMipMapLevel not bound !missing-selector! NSOpenGLPixelBuffer::textureTarget not bound -!missing-selector! NSOpenGLPixelFormat::attributes not bound !missing-selector! NSOpenGLPixelFormat::CGLPixelFormatObj not bound +!missing-selector! NSOpenGLPixelFormat::attributes not bound !missing-selector! NSOpenGLPixelFormat::getValues:forAttribute:forVirtualScreen: not bound !missing-selector! NSOpenGLPixelFormat::initWithAttributes: not bound !missing-selector! NSOpenGLPixelFormat::initWithCGLPixelFormatObj: not bound @@ -4920,6 +4940,7 @@ !missing-selector! NSOpenGLView::update not bound !missing-selector! NSOpenGLView::wantsBestResolutionOpenGLSurface not bound !missing-selector! NSOpenGLView::wantsExtendedDynamicRangeOpenGLSurface not bound +!missing-selector! NSOpenPanel::URLs not bound !missing-selector! NSOpenPanel::allowsMultipleSelection not bound !missing-selector! NSOpenPanel::beginForDirectory:file:types:modelessDelegate:didEndSelector:contextInfo: not bound !missing-selector! NSOpenPanel::beginSheetForDirectory:file:types:modalForWindow:modalDelegate:didEndSelector:contextInfo: not bound @@ -4939,7 +4960,6 @@ !missing-selector! NSOpenPanel::setCanDownloadUbiquitousContents: not bound !missing-selector! NSOpenPanel::setCanResolveUbiquitousConflicts: not bound !missing-selector! NSOpenPanel::setResolvesAliases: not bound -!missing-selector! NSOpenPanel::URLs not bound !missing-selector! NSOutlineView::autoresizesOutlineColumn not bound !missing-selector! NSOutlineView::autosaveExpandedItems not bound !missing-selector! NSOutlineView::child:ofItem: not bound @@ -4980,6 +5000,33 @@ !missing-selector! NSOutlineView::shouldCollapseAutoExpandedItemsForDeposited: not bound !missing-selector! NSOutlineView::stronglyReferencesItems not bound !missing-selector! NSOutlineView::userInterfaceLayoutDirection not bound +!missing-selector! NSPDFImageRep::PDFRepresentation not bound +!missing-selector! NSPDFImageRep::bounds not bound +!missing-selector! NSPDFImageRep::currentPage not bound +!missing-selector! NSPDFImageRep::initWithData: not bound +!missing-selector! NSPDFImageRep::pageCount not bound +!missing-selector! NSPDFImageRep::setCurrentPage: not bound +!missing-selector! NSPDFInfo::URL not bound +!missing-selector! NSPDFInfo::attributes not bound +!missing-selector! NSPDFInfo::isFileExtensionHidden not bound +!missing-selector! NSPDFInfo::orientation not bound +!missing-selector! NSPDFInfo::paperSize not bound +!missing-selector! NSPDFInfo::setFileExtensionHidden: not bound +!missing-selector! NSPDFInfo::setOrientation: not bound +!missing-selector! NSPDFInfo::setPaperSize: not bound +!missing-selector! NSPDFInfo::setTagNames: not bound +!missing-selector! NSPDFInfo::setURL: not bound +!missing-selector! NSPDFInfo::tagNames not bound +!missing-selector! NSPDFPanel::accessoryController not bound +!missing-selector! NSPDFPanel::beginSheetWithPDFInfo:modalForWindow:completionHandler: not bound +!missing-selector! NSPDFPanel::defaultFileName not bound +!missing-selector! NSPDFPanel::options not bound +!missing-selector! NSPDFPanel::setAccessoryController: not bound +!missing-selector! NSPDFPanel::setDefaultFileName: not bound +!missing-selector! NSPDFPanel::setOptions: not bound +!missing-selector! NSPICTImageRep::PICTRepresentation not bound +!missing-selector! NSPICTImageRep::boundingBox not bound +!missing-selector! NSPICTImageRep::initWithData: not bound !missing-selector! NSPageController::arrangedObjects not bound !missing-selector! NSPageController::completeTransition not bound !missing-selector! NSPageController::delegate not bound @@ -5005,12 +5052,6 @@ !missing-selector! NSPageLayout::runModalWithPrintInfo: not bound !missing-selector! NSPageLayout::setAccessoryView: not bound !missing-selector! NSPageLayout::writePrintInfo not bound -!missing-selector! NSPanel::becomesKeyOnlyIfNeeded not bound -!missing-selector! NSPanel::isFloatingPanel not bound -!missing-selector! NSPanel::setBecomesKeyOnlyIfNeeded: not bound -!missing-selector! NSPanel::setFloatingPanel: not bound -!missing-selector! NSPanel::setWorksWhenModal: not bound -!missing-selector! NSPanel::worksWhenModal not bound !missing-selector! NSPanGestureRecognizer::buttonMask not bound !missing-selector! NSPanGestureRecognizer::numberOfTouchesRequired not bound !missing-selector! NSPanGestureRecognizer::setButtonMask: not bound @@ -5018,6 +5059,12 @@ !missing-selector! NSPanGestureRecognizer::setTranslation:inView: not bound !missing-selector! NSPanGestureRecognizer::translationInView: not bound !missing-selector! NSPanGestureRecognizer::velocityInView: not bound +!missing-selector! NSPanel::becomesKeyOnlyIfNeeded not bound +!missing-selector! NSPanel::isFloatingPanel not bound +!missing-selector! NSPanel::setBecomesKeyOnlyIfNeeded: not bound +!missing-selector! NSPanel::setFloatingPanel: not bound +!missing-selector! NSPanel::setWorksWhenModal: not bound +!missing-selector! NSPanel::worksWhenModal not bound !missing-selector! NSPasteboard::addTypes:owner: not bound !missing-selector! NSPasteboard::availableTypeFromArray: not bound !missing-selector! NSPasteboard::canReadItemWithDataConformingToTypes: not bound @@ -5052,6 +5099,7 @@ !missing-selector! NSPasteboardItem::setString:forType: not bound !missing-selector! NSPasteboardItem::stringForType: not bound !missing-selector! NSPasteboardItem::types not bound +!missing-selector! NSPathCell::URL not bound !missing-selector! NSPathCell::allowedTypes not bound !missing-selector! NSPathCell::backgroundColor not bound !missing-selector! NSPathCell::clickedPathComponentCell not bound @@ -5075,11 +5123,11 @@ !missing-selector! NSPathCell::setPlaceholderAttributedString: not bound !missing-selector! NSPathCell::setPlaceholderString: not bound !missing-selector! NSPathCell::setURL: not bound -!missing-selector! NSPathCell::URL not bound +!missing-selector! NSPathComponentCell::URL not bound !missing-selector! NSPathComponentCell::image not bound !missing-selector! NSPathComponentCell::setImage: not bound !missing-selector! NSPathComponentCell::setURL: not bound -!missing-selector! NSPathComponentCell::URL not bound +!missing-selector! NSPathControl::URL not bound !missing-selector! NSPathControl::allowedTypes not bound !missing-selector! NSPathControl::backgroundColor not bound !missing-selector! NSPathControl::clickedPathComponentCell not bound @@ -5106,38 +5154,13 @@ !missing-selector! NSPathControl::setPlaceholderAttributedString: not bound !missing-selector! NSPathControl::setPlaceholderString: not bound !missing-selector! NSPathControl::setURL: not bound -!missing-selector! NSPathControl::URL not bound +!missing-selector! NSPathControlItem::URL not bound !missing-selector! NSPathControlItem::attributedTitle not bound !missing-selector! NSPathControlItem::image not bound !missing-selector! NSPathControlItem::setAttributedTitle: not bound !missing-selector! NSPathControlItem::setImage: not bound !missing-selector! NSPathControlItem::setTitle: not bound !missing-selector! NSPathControlItem::title not bound -!missing-selector! NSPathControlItem::URL not bound -!missing-selector! NSPDFImageRep::bounds not bound -!missing-selector! NSPDFImageRep::currentPage not bound -!missing-selector! NSPDFImageRep::initWithData: not bound -!missing-selector! NSPDFImageRep::pageCount not bound -!missing-selector! NSPDFImageRep::PDFRepresentation not bound -!missing-selector! NSPDFImageRep::setCurrentPage: not bound -!missing-selector! NSPDFInfo::attributes not bound -!missing-selector! NSPDFInfo::isFileExtensionHidden not bound -!missing-selector! NSPDFInfo::orientation not bound -!missing-selector! NSPDFInfo::paperSize not bound -!missing-selector! NSPDFInfo::setFileExtensionHidden: not bound -!missing-selector! NSPDFInfo::setOrientation: not bound -!missing-selector! NSPDFInfo::setPaperSize: not bound -!missing-selector! NSPDFInfo::setTagNames: not bound -!missing-selector! NSPDFInfo::setURL: not bound -!missing-selector! NSPDFInfo::tagNames not bound -!missing-selector! NSPDFInfo::URL not bound -!missing-selector! NSPDFPanel::accessoryController not bound -!missing-selector! NSPDFPanel::beginSheetWithPDFInfo:modalForWindow:completionHandler: not bound -!missing-selector! NSPDFPanel::defaultFileName not bound -!missing-selector! NSPDFPanel::options not bound -!missing-selector! NSPDFPanel::setAccessoryController: not bound -!missing-selector! NSPDFPanel::setDefaultFileName: not bound -!missing-selector! NSPDFPanel::setOptions: not bound !missing-selector! NSPersistentDocument::configurePersistentStoreCoordinatorForURL:ofType:error: not bound !missing-selector! NSPersistentDocument::configurePersistentStoreCoordinatorForURL:ofType:modelConfiguration:storeOptions:error: not bound !missing-selector! NSPersistentDocument::managedObjectContext not bound @@ -5175,49 +5198,8 @@ !missing-selector! NSPickerTouchBarItem::setSelectionMode: not bound !missing-selector! NSPickerTouchBarItem::setTarget: not bound !missing-selector! NSPickerTouchBarItem::target not bound -!missing-selector! NSPICTImageRep::boundingBox not bound -!missing-selector! NSPICTImageRep::initWithData: not bound -!missing-selector! NSPICTImageRep::PICTRepresentation not bound -!missing-selector! NSPopover::animates not bound -!missing-selector! NSPopover::appearance not bound -!missing-selector! NSPopover::behavior not bound -!missing-selector! NSPopover::close not bound -!missing-selector! NSPopover::contentSize not bound -!missing-selector! NSPopover::contentViewController not bound -!missing-selector! NSPopover::delegate not bound -!missing-selector! NSPopover::init not bound -!missing-selector! NSPopover::initWithCoder: not bound -!missing-selector! NSPopover::isDetached not bound -!missing-selector! NSPopover::isShown not bound -!missing-selector! NSPopover::performClose: not bound -!missing-selector! NSPopover::positioningRect not bound -!missing-selector! NSPopover::setAnimates: not bound -!missing-selector! NSPopover::setAppearance: not bound -!missing-selector! NSPopover::setBehavior: not bound -!missing-selector! NSPopover::setContentSize: not bound -!missing-selector! NSPopover::setContentViewController: not bound -!missing-selector! NSPopover::setDelegate: not bound -!missing-selector! NSPopover::setPositioningRect: not bound -!missing-selector! NSPopover::showRelativeToRect:ofView:preferredEdge: not bound -!missing-selector! NSPopoverTouchBarItem::collapsedRepresentation not bound -!missing-selector! NSPopoverTouchBarItem::collapsedRepresentationImage not bound -!missing-selector! NSPopoverTouchBarItem::collapsedRepresentationLabel not bound -!missing-selector! NSPopoverTouchBarItem::customizationLabel not bound -!missing-selector! NSPopoverTouchBarItem::dismissPopover: not bound -!missing-selector! NSPopoverTouchBarItem::makeStandardActivatePopoverGestureRecognizer not bound -!missing-selector! NSPopoverTouchBarItem::popoverTouchBar not bound -!missing-selector! NSPopoverTouchBarItem::pressAndHoldTouchBar not bound -!missing-selector! NSPopoverTouchBarItem::setCollapsedRepresentation: not bound -!missing-selector! NSPopoverTouchBarItem::setCollapsedRepresentationImage: not bound -!missing-selector! NSPopoverTouchBarItem::setCollapsedRepresentationLabel: not bound -!missing-selector! NSPopoverTouchBarItem::setCustomizationLabel: not bound -!missing-selector! NSPopoverTouchBarItem::setPopoverTouchBar: not bound -!missing-selector! NSPopoverTouchBarItem::setPressAndHoldTouchBar: not bound -!missing-selector! NSPopoverTouchBarItem::setShowsCloseButton: not bound -!missing-selector! NSPopoverTouchBarItem::showPopover: not bound -!missing-selector! NSPopoverTouchBarItem::showsCloseButton not bound -!missing-selector! NSPopUpButton::addItemsWithTitles: not bound !missing-selector! NSPopUpButton::addItemWithTitle: not bound +!missing-selector! NSPopUpButton::addItemsWithTitles: not bound !missing-selector! NSPopUpButton::autoenablesItems not bound !missing-selector! NSPopUpButton::indexOfItem: not bound !missing-selector! NSPopUpButton::indexOfItemWithRepresentedObject: not bound @@ -5240,12 +5222,12 @@ !missing-selector! NSPopUpButton::removeAllItems not bound !missing-selector! NSPopUpButton::removeItemAtIndex: not bound !missing-selector! NSPopUpButton::removeItemWithTitle: not bound -!missing-selector! NSPopUpButton::selectedItem not bound -!missing-selector! NSPopUpButton::selectedTag not bound !missing-selector! NSPopUpButton::selectItem: not bound !missing-selector! NSPopUpButton::selectItemAtIndex: not bound !missing-selector! NSPopUpButton::selectItemWithTag: not bound !missing-selector! NSPopUpButton::selectItemWithTitle: not bound +!missing-selector! NSPopUpButton::selectedItem not bound +!missing-selector! NSPopUpButton::selectedTag not bound !missing-selector! NSPopUpButton::setAutoenablesItems: not bound !missing-selector! NSPopUpButton::setMenu: not bound !missing-selector! NSPopUpButton::setPreferredEdge: not bound @@ -5253,8 +5235,8 @@ !missing-selector! NSPopUpButton::setTitle: not bound !missing-selector! NSPopUpButton::synchronizeTitleAndSelectedItem not bound !missing-selector! NSPopUpButton::titleOfSelectedItem not bound -!missing-selector! NSPopUpButtonCell::addItemsWithTitles: not bound !missing-selector! NSPopUpButtonCell::addItemWithTitle: not bound +!missing-selector! NSPopUpButtonCell::addItemsWithTitles: not bound !missing-selector! NSPopUpButtonCell::altersStateOfSelectedItem not bound !missing-selector! NSPopUpButtonCell::arrowPosition not bound !missing-selector! NSPopUpButtonCell::attachPopUpWithFrame:inView: not bound @@ -5283,11 +5265,11 @@ !missing-selector! NSPopUpButtonCell::removeAllItems not bound !missing-selector! NSPopUpButtonCell::removeItemAtIndex: not bound !missing-selector! NSPopUpButtonCell::removeItemWithTitle: not bound -!missing-selector! NSPopUpButtonCell::selectedItem not bound !missing-selector! NSPopUpButtonCell::selectItem: not bound !missing-selector! NSPopUpButtonCell::selectItemAtIndex: not bound !missing-selector! NSPopUpButtonCell::selectItemWithTag: not bound !missing-selector! NSPopUpButtonCell::selectItemWithTitle: not bound +!missing-selector! NSPopUpButtonCell::selectedItem not bound !missing-selector! NSPopUpButtonCell::setAltersStateOfSelectedItem: not bound !missing-selector! NSPopUpButtonCell::setArrowPosition: not bound !missing-selector! NSPopUpButtonCell::setAutoenablesItems: not bound @@ -5299,6 +5281,44 @@ !missing-selector! NSPopUpButtonCell::synchronizeTitleAndSelectedItem not bound !missing-selector! NSPopUpButtonCell::titleOfSelectedItem not bound !missing-selector! NSPopUpButtonCell::usesItemFromMenu not bound +!missing-selector! NSPopover::animates not bound +!missing-selector! NSPopover::appearance not bound +!missing-selector! NSPopover::behavior not bound +!missing-selector! NSPopover::close not bound +!missing-selector! NSPopover::contentSize not bound +!missing-selector! NSPopover::contentViewController not bound +!missing-selector! NSPopover::delegate not bound +!missing-selector! NSPopover::init not bound +!missing-selector! NSPopover::initWithCoder: not bound +!missing-selector! NSPopover::isDetached not bound +!missing-selector! NSPopover::isShown not bound +!missing-selector! NSPopover::performClose: not bound +!missing-selector! NSPopover::positioningRect not bound +!missing-selector! NSPopover::setAnimates: not bound +!missing-selector! NSPopover::setAppearance: not bound +!missing-selector! NSPopover::setBehavior: not bound +!missing-selector! NSPopover::setContentSize: not bound +!missing-selector! NSPopover::setContentViewController: not bound +!missing-selector! NSPopover::setDelegate: not bound +!missing-selector! NSPopover::setPositioningRect: not bound +!missing-selector! NSPopover::showRelativeToRect:ofView:preferredEdge: not bound +!missing-selector! NSPopoverTouchBarItem::collapsedRepresentation not bound +!missing-selector! NSPopoverTouchBarItem::collapsedRepresentationImage not bound +!missing-selector! NSPopoverTouchBarItem::collapsedRepresentationLabel not bound +!missing-selector! NSPopoverTouchBarItem::customizationLabel not bound +!missing-selector! NSPopoverTouchBarItem::dismissPopover: not bound +!missing-selector! NSPopoverTouchBarItem::makeStandardActivatePopoverGestureRecognizer not bound +!missing-selector! NSPopoverTouchBarItem::popoverTouchBar not bound +!missing-selector! NSPopoverTouchBarItem::pressAndHoldTouchBar not bound +!missing-selector! NSPopoverTouchBarItem::setCollapsedRepresentation: not bound +!missing-selector! NSPopoverTouchBarItem::setCollapsedRepresentationImage: not bound +!missing-selector! NSPopoverTouchBarItem::setCollapsedRepresentationLabel: not bound +!missing-selector! NSPopoverTouchBarItem::setCustomizationLabel: not bound +!missing-selector! NSPopoverTouchBarItem::setPopoverTouchBar: not bound +!missing-selector! NSPopoverTouchBarItem::setPressAndHoldTouchBar: not bound +!missing-selector! NSPopoverTouchBarItem::setShowsCloseButton: not bound +!missing-selector! NSPopoverTouchBarItem::showPopover: not bound +!missing-selector! NSPopoverTouchBarItem::showsCloseButton not bound !missing-selector! NSPredicateEditor::rowTemplates not bound !missing-selector! NSPredicateEditor::setRowTemplates: not bound !missing-selector! NSPredicateEditorRowTemplate::compoundTypes not bound @@ -5327,28 +5347,9 @@ !missing-selector! NSPressureConfiguration::initWithPressureBehavior: not bound !missing-selector! NSPressureConfiguration::pressureBehavior not bound !missing-selector! NSPressureConfiguration::set not bound -!missing-selector! NSPrinter::acceptsBinary not bound -!missing-selector! NSPrinter::booleanForKey:inTable: not bound -!missing-selector! NSPrinter::deviceDescription not bound -!missing-selector! NSPrinter::domain not bound -!missing-selector! NSPrinter::floatForKey:inTable: not bound -!missing-selector! NSPrinter::host not bound -!missing-selector! NSPrinter::imageRectForPaper: not bound -!missing-selector! NSPrinter::intForKey:inTable: not bound -!missing-selector! NSPrinter::isColor not bound -!missing-selector! NSPrinter::isFontAvailable: not bound -!missing-selector! NSPrinter::isKey:inTable: not bound -!missing-selector! NSPrinter::isOutputStackInReverseOrder not bound -!missing-selector! NSPrinter::languageLevel not bound -!missing-selector! NSPrinter::name not bound -!missing-selector! NSPrinter::note not bound -!missing-selector! NSPrinter::pageSizeForPaper: not bound -!missing-selector! NSPrinter::rectForKey:inTable: not bound -!missing-selector! NSPrinter::sizeForKey:inTable: not bound -!missing-selector! NSPrinter::statusForTable: not bound -!missing-selector! NSPrinter::stringForKey:inTable: not bound -!missing-selector! NSPrinter::stringListForKey:inTable: not bound -!missing-selector! NSPrinter::type not bound +!missing-selector! NSPrintInfo::PMPageFormat not bound +!missing-selector! NSPrintInfo::PMPrintSession not bound +!missing-selector! NSPrintInfo::PMPrintSettings not bound !missing-selector! NSPrintInfo::bottomMargin not bound !missing-selector! NSPrintInfo::dictionary not bound !missing-selector! NSPrintInfo::horizontalPagination not bound @@ -5365,16 +5366,13 @@ !missing-selector! NSPrintInfo::orientation not bound !missing-selector! NSPrintInfo::paperName not bound !missing-selector! NSPrintInfo::paperSize not bound -!missing-selector! NSPrintInfo::PMPageFormat not bound -!missing-selector! NSPrintInfo::PMPrintSession not bound -!missing-selector! NSPrintInfo::PMPrintSettings not bound -!missing-selector! NSPrintInfo::printer not bound !missing-selector! NSPrintInfo::printSettings not bound +!missing-selector! NSPrintInfo::printer not bound !missing-selector! NSPrintInfo::rightMargin not bound !missing-selector! NSPrintInfo::scalingFactor not bound !missing-selector! NSPrintInfo::setBottomMargin: not bound -!missing-selector! NSPrintInfo::setHorizontallyCentered: not bound !missing-selector! NSPrintInfo::setHorizontalPagination: not bound +!missing-selector! NSPrintInfo::setHorizontallyCentered: not bound !missing-selector! NSPrintInfo::setJobDisposition: not bound !missing-selector! NSPrintInfo::setLeftMargin: not bound !missing-selector! NSPrintInfo::setOrientation: not bound @@ -5386,13 +5384,14 @@ !missing-selector! NSPrintInfo::setSelectionOnly: not bound !missing-selector! NSPrintInfo::setTopMargin: not bound !missing-selector! NSPrintInfo::setUpPrintOperationDefaultValues not bound -!missing-selector! NSPrintInfo::setVerticallyCentered: not bound !missing-selector! NSPrintInfo::setVerticalPagination: not bound +!missing-selector! NSPrintInfo::setVerticallyCentered: not bound !missing-selector! NSPrintInfo::takeSettingsFromPDFInfo: not bound !missing-selector! NSPrintInfo::topMargin not bound !missing-selector! NSPrintInfo::updateFromPMPageFormat not bound !missing-selector! NSPrintInfo::updateFromPMPrintSettings not bound !missing-selector! NSPrintInfo::verticalPagination not bound +!missing-selector! NSPrintOperation::PDFPanel not bound !missing-selector! NSPrintOperation::accessoryView not bound !missing-selector! NSPrintOperation::canSpawnSeparateThread not bound !missing-selector! NSPrintOperation::cleanUpOperation not bound @@ -5406,7 +5405,6 @@ !missing-selector! NSPrintOperation::jobTitle not bound !missing-selector! NSPrintOperation::pageOrder not bound !missing-selector! NSPrintOperation::pageRange not bound -!missing-selector! NSPrintOperation::PDFPanel not bound !missing-selector! NSPrintOperation::preferredRenderingQuality not bound !missing-selector! NSPrintOperation::printInfo not bound !missing-selector! NSPrintOperation::printPanel not bound @@ -5416,8 +5414,8 @@ !missing-selector! NSPrintOperation::setCanSpawnSeparateThread: not bound !missing-selector! NSPrintOperation::setJobStyleHint: not bound !missing-selector! NSPrintOperation::setJobTitle: not bound -!missing-selector! NSPrintOperation::setPageOrder: not bound !missing-selector! NSPrintOperation::setPDFPanel: not bound +!missing-selector! NSPrintOperation::setPageOrder: not bound !missing-selector! NSPrintOperation::setPrintInfo: not bound !missing-selector! NSPrintOperation::setPrintPanel: not bound !missing-selector! NSPrintOperation::setShowPanels: not bound @@ -5446,6 +5444,28 @@ !missing-selector! NSPrintPanel::setJobStyleHint: not bound !missing-selector! NSPrintPanel::setOptions: not bound !missing-selector! NSPrintPanel::updateFromPrintInfo not bound +!missing-selector! NSPrinter::acceptsBinary not bound +!missing-selector! NSPrinter::booleanForKey:inTable: not bound +!missing-selector! NSPrinter::deviceDescription not bound +!missing-selector! NSPrinter::domain not bound +!missing-selector! NSPrinter::floatForKey:inTable: not bound +!missing-selector! NSPrinter::host not bound +!missing-selector! NSPrinter::imageRectForPaper: not bound +!missing-selector! NSPrinter::intForKey:inTable: not bound +!missing-selector! NSPrinter::isColor not bound +!missing-selector! NSPrinter::isFontAvailable: not bound +!missing-selector! NSPrinter::isKey:inTable: not bound +!missing-selector! NSPrinter::isOutputStackInReverseOrder not bound +!missing-selector! NSPrinter::languageLevel not bound +!missing-selector! NSPrinter::name not bound +!missing-selector! NSPrinter::note not bound +!missing-selector! NSPrinter::pageSizeForPaper: not bound +!missing-selector! NSPrinter::rectForKey:inTable: not bound +!missing-selector! NSPrinter::sizeForKey:inTable: not bound +!missing-selector! NSPrinter::statusForTable: not bound +!missing-selector! NSPrinter::stringForKey:inTable: not bound +!missing-selector! NSPrinter::stringListForKey:inTable: not bound +!missing-selector! NSPrinter::type not bound !missing-selector! NSProgressIndicator::animate: not bound !missing-selector! NSProgressIndicator::animationDelay not bound !missing-selector! NSProgressIndicator::controlSize not bound @@ -5538,8 +5558,8 @@ !missing-selector! NSResponder::undoManager not bound !missing-selector! NSResponder::updateUserActivityState: not bound !missing-selector! NSResponder::userActivity not bound -!missing-selector! NSResponder::validateProposedFirstResponder:forEvent: not bound !missing-selector! NSResponder::validRequestorForSendType:returnType: not bound +!missing-selector! NSResponder::validateProposedFirstResponder:forEvent: not bound !missing-selector! NSResponder::wantsForwardedScrollEventsForAxis: not bound !missing-selector! NSResponder::wantsScrollEventsForSwipeTrackingOnAxis: not bound !missing-selector! NSResponder::willPresentError: not bound @@ -5572,8 +5592,8 @@ !missing-selector! NSRuleEditor::rowHeight not bound !missing-selector! NSRuleEditor::rowTypeForRow: not bound !missing-selector! NSRuleEditor::rowTypeKeyPath not bound -!missing-selector! NSRuleEditor::selectedRowIndexes not bound !missing-selector! NSRuleEditor::selectRowIndexes:byExtendingSelection: not bound +!missing-selector! NSRuleEditor::selectedRowIndexes not bound !missing-selector! NSRuleEditor::setCanRemoveAllRows: not bound !missing-selector! NSRuleEditor::setCriteria:andDisplayValues:forRowAtIndex: not bound !missing-selector! NSRuleEditor::setCriteriaKeyPath: not bound @@ -5660,6 +5680,7 @@ !missing-selector! NSRunningApplication::processIdentifier not bound !missing-selector! NSRunningApplication::terminate not bound !missing-selector! NSRunningApplication::unhide not bound +!missing-selector! NSSavePanel::URL not bound !missing-selector! NSSavePanel::accessoryView not bound !missing-selector! NSSavePanel::allowedContentTypes not bound !missing-selector! NSSavePanel::allowedFileTypes not bound @@ -5667,9 +5688,9 @@ !missing-selector! NSSavePanel::beginSheetForDirectory:file:modalForWindow:modalDelegate:didEndSelector:contextInfo: not bound !missing-selector! NSSavePanel::beginSheetModalForWindow:completionHandler: not bound !missing-selector! NSSavePanel::beginWithCompletionHandler: not bound -!missing-selector! NSSavePanel::cancel: not bound !missing-selector! NSSavePanel::canCreateDirectories not bound !missing-selector! NSSavePanel::canSelectHiddenExtension not bound +!missing-selector! NSSavePanel::cancel: not bound !missing-selector! NSSavePanel::delegate not bound !missing-selector! NSSavePanel::directory not bound !missing-selector! NSSavePanel::directoryURL not bound @@ -5710,7 +5731,6 @@ !missing-selector! NSSavePanel::tagNames not bound !missing-selector! NSSavePanel::title not bound !missing-selector! NSSavePanel::treatsFilePackagesAsDirectories not bound -!missing-selector! NSSavePanel::URL not bound !missing-selector! NSSavePanel::validateVisibleColumns not bound !missing-selector! NSScreen::backingAlignedRect:options: not bound !missing-selector! NSScreen::backingScaleFactor not bound @@ -5725,34 +5745,14 @@ !missing-selector! NSScreen::supportedWindowDepths not bound !missing-selector! NSScreen::userSpaceScaleFactor not bound !missing-selector! NSScreen::visibleFrame not bound +!missing-selector! NSScreenNSScreen::displayUpdateGranularity not bound +!missing-selector! NSScreenNSScreen::lastDisplayUpdateTimestamp not bound !missing-selector! NSScreenNSScreen::maximumExtendedDynamicRangeColorComponentValue not bound +!missing-selector! NSScreenNSScreen::maximumFramesPerSecond not bound !missing-selector! NSScreenNSScreen::maximumPotentialExtendedDynamicRangeColorComponentValue not bound !missing-selector! NSScreenNSScreen::maximumReferenceExtendedDynamicRangeColorComponentValue not bound -!missing-selector! NSScroller::arrowsPosition not bound -!missing-selector! NSScroller::checkSpaceForParts not bound -!missing-selector! NSScroller::controlSize not bound -!missing-selector! NSScroller::controlTint not bound -!missing-selector! NSScroller::drawArrow:highlight: not bound -!missing-selector! NSScroller::drawKnob not bound -!missing-selector! NSScroller::drawKnobSlotInRect:highlight: not bound -!missing-selector! NSScroller::drawParts not bound -!missing-selector! NSScroller::highlight: not bound -!missing-selector! NSScroller::hitPart not bound -!missing-selector! NSScroller::knobProportion not bound -!missing-selector! NSScroller::knobStyle not bound -!missing-selector! NSScroller::rectForPart: not bound -!missing-selector! NSScroller::scrollerStyle not bound -!missing-selector! NSScroller::setArrowsPosition: not bound -!missing-selector! NSScroller::setControlSize: not bound -!missing-selector! NSScroller::setControlTint: not bound -!missing-selector! NSScroller::setFloatValue:knobProportion: not bound -!missing-selector! NSScroller::setKnobProportion: not bound -!missing-selector! NSScroller::setKnobStyle: not bound -!missing-selector! NSScroller::setScrollerStyle: not bound -!missing-selector! NSScroller::testPart: not bound -!missing-selector! NSScroller::trackKnob: not bound -!missing-selector! NSScroller::trackScrollButtons: not bound -!missing-selector! NSScroller::usableParts not bound +!missing-selector! NSScreenNSScreen::maximumRefreshInterval not bound +!missing-selector! NSScreenNSScreen::minimumRefreshInterval not bound !missing-selector! NSScrollView::addFloatingSubview:forAxis: not bound !missing-selector! NSScrollView::allowsMagnification not bound !missing-selector! NSScrollView::autohidesScrollers not bound @@ -5787,11 +5787,11 @@ !missing-selector! NSScrollView::pageScroll not bound !missing-selector! NSScrollView::reflectScrolledClipView: not bound !missing-selector! NSScrollView::rulersVisible not bound +!missing-selector! NSScrollView::scrollWheel: not bound !missing-selector! NSScrollView::scrollerInsets not bound !missing-selector! NSScrollView::scrollerKnobStyle not bound !missing-selector! NSScrollView::scrollerStyle not bound !missing-selector! NSScrollView::scrollsDynamically not bound -!missing-selector! NSScrollView::scrollWheel: not bound !missing-selector! NSScrollView::setAllowsMagnification: not bound !missing-selector! NSScrollView::setAutohidesScrollers: not bound !missing-selector! NSScrollView::setAutomaticallyAdjustsContentInsets: not bound @@ -5836,6 +5836,31 @@ !missing-selector! NSScrollView::verticalRulerView not bound !missing-selector! NSScrollView::verticalScrollElasticity not bound !missing-selector! NSScrollView::verticalScroller not bound +!missing-selector! NSScroller::arrowsPosition not bound +!missing-selector! NSScroller::checkSpaceForParts not bound +!missing-selector! NSScroller::controlSize not bound +!missing-selector! NSScroller::controlTint not bound +!missing-selector! NSScroller::drawArrow:highlight: not bound +!missing-selector! NSScroller::drawKnob not bound +!missing-selector! NSScroller::drawKnobSlotInRect:highlight: not bound +!missing-selector! NSScroller::drawParts not bound +!missing-selector! NSScroller::highlight: not bound +!missing-selector! NSScroller::hitPart not bound +!missing-selector! NSScroller::knobProportion not bound +!missing-selector! NSScroller::knobStyle not bound +!missing-selector! NSScroller::rectForPart: not bound +!missing-selector! NSScroller::scrollerStyle not bound +!missing-selector! NSScroller::setArrowsPosition: not bound +!missing-selector! NSScroller::setControlSize: not bound +!missing-selector! NSScroller::setControlTint: not bound +!missing-selector! NSScroller::setFloatValue:knobProportion: not bound +!missing-selector! NSScroller::setKnobProportion: not bound +!missing-selector! NSScroller::setKnobStyle: not bound +!missing-selector! NSScroller::setScrollerStyle: not bound +!missing-selector! NSScroller::testPart: not bound +!missing-selector! NSScroller::trackKnob: not bound +!missing-selector! NSScroller::trackScrollButtons: not bound +!missing-selector! NSScroller::usableParts not bound !missing-selector! NSScrubber::backgroundColor not bound !missing-selector! NSScrubber::backgroundView not bound !missing-selector! NSScrubber::dataSource not bound @@ -5927,8 +5952,8 @@ !missing-selector! NSSearchField::centersPlaceholder not bound !missing-selector! NSSearchField::delegate not bound !missing-selector! NSSearchField::maximumRecents not bound -!missing-selector! NSSearchField::recentsAutosaveName not bound !missing-selector! NSSearchField::recentSearches not bound +!missing-selector! NSSearchField::recentsAutosaveName not bound !missing-selector! NSSearchField::rectForCancelButtonWhenCentered: not bound !missing-selector! NSSearchField::rectForSearchButtonWhenCentered: not bound !missing-selector! NSSearchField::rectForSearchTextWhenCentered: not bound @@ -5940,8 +5965,8 @@ !missing-selector! NSSearchField::setCentersPlaceholder: not bound !missing-selector! NSSearchField::setDelegate: not bound !missing-selector! NSSearchField::setMaximumRecents: not bound -!missing-selector! NSSearchField::setRecentsAutosaveName: not bound !missing-selector! NSSearchField::setRecentSearches: not bound +!missing-selector! NSSearchField::setRecentsAutosaveName: not bound !missing-selector! NSSearchField::setSearchMenuTemplate: not bound !missing-selector! NSSearchField::setSendsSearchStringImmediately: not bound !missing-selector! NSSearchField::setSendsWholeSearchString: not bound @@ -5950,8 +5975,8 @@ !missing-selector! NSSearchFieldCell::initTextCell: not bound !missing-selector! NSSearchFieldCell::initWithCoder: not bound !missing-selector! NSSearchFieldCell::maximumRecents not bound -!missing-selector! NSSearchFieldCell::recentsAutosaveName not bound !missing-selector! NSSearchFieldCell::recentSearches not bound +!missing-selector! NSSearchFieldCell::recentsAutosaveName not bound !missing-selector! NSSearchFieldCell::resetCancelButtonCell not bound !missing-selector! NSSearchFieldCell::resetSearchButtonCell not bound !missing-selector! NSSearchFieldCell::searchButtonCell not bound @@ -5962,8 +5987,8 @@ !missing-selector! NSSearchFieldCell::sendsWholeSearchString not bound !missing-selector! NSSearchFieldCell::setCancelButtonCell: not bound !missing-selector! NSSearchFieldCell::setMaximumRecents: not bound -!missing-selector! NSSearchFieldCell::setRecentsAutosaveName: not bound !missing-selector! NSSearchFieldCell::setRecentSearches: not bound +!missing-selector! NSSearchFieldCell::setRecentsAutosaveName: not bound !missing-selector! NSSearchFieldCell::setSearchButtonCell: not bound !missing-selector! NSSearchFieldCell::setSearchMenuTemplate: not bound !missing-selector! NSSearchFieldCell::setSendsSearchStringImmediately: not bound @@ -5990,8 +6015,8 @@ !missing-selector! NSSegmentedCell::menuForSegment: not bound !missing-selector! NSSegmentedCell::segmentCount not bound !missing-selector! NSSegmentedCell::segmentStyle not bound -!missing-selector! NSSegmentedCell::selectedSegment not bound !missing-selector! NSSegmentedCell::selectSegmentWithTag: not bound +!missing-selector! NSSegmentedCell::selectedSegment not bound !missing-selector! NSSegmentedCell::setEnabled:forSegment: not bound !missing-selector! NSSegmentedCell::setImage:forSegment: not bound !missing-selector! NSSegmentedCell::setImageScaling:forSegment: not bound @@ -6024,9 +6049,9 @@ !missing-selector! NSSegmentedControl::segmentCount not bound !missing-selector! NSSegmentedControl::segmentDistribution not bound !missing-selector! NSSegmentedControl::segmentStyle not bound +!missing-selector! NSSegmentedControl::selectSegmentWithTag: not bound !missing-selector! NSSegmentedControl::selectedSegment not bound !missing-selector! NSSegmentedControl::selectedSegmentBezelColor not bound -!missing-selector! NSSegmentedControl::selectSegmentWithTag: not bound !missing-selector! NSSegmentedControl::setEnabled:forSegment: not bound !missing-selector! NSSegmentedControl::setImage:forSegment: not bound !missing-selector! NSSegmentedControl::setImageScaling:forSegment: not bound @@ -6257,8 +6282,8 @@ !missing-selector! NSSpellChecker::guessesForWord: not bound !missing-selector! NSSpellChecker::guessesForWordRange:inString:language:inSpellDocumentWithTag: not bound !missing-selector! NSSpellChecker::hasLearnedWord: not bound -!missing-selector! NSSpellChecker::ignoredWordsInSpellDocumentWithTag: not bound !missing-selector! NSSpellChecker::ignoreWord:inSpellDocumentWithTag: not bound +!missing-selector! NSSpellChecker::ignoredWordsInSpellDocumentWithTag: not bound !missing-selector! NSSpellChecker::language not bound !missing-selector! NSSpellChecker::languageForWordRange:inString:orthography: not bound !missing-selector! NSSpellChecker::learnWord: not bound @@ -6466,6 +6491,90 @@ !missing-selector! NSStoryboardSegue::sourceController not bound !missing-selector! NSSwitch::setState: not bound !missing-selector! NSSwitch::state not bound +!missing-selector! NSTabView::addTabViewItem: not bound +!missing-selector! NSTabView::allowsTruncatedLabels not bound +!missing-selector! NSTabView::contentRect not bound +!missing-selector! NSTabView::controlSize not bound +!missing-selector! NSTabView::controlTint not bound +!missing-selector! NSTabView::delegate not bound +!missing-selector! NSTabView::drawsBackground not bound +!missing-selector! NSTabView::font not bound +!missing-selector! NSTabView::indexOfTabViewItem: not bound +!missing-selector! NSTabView::indexOfTabViewItemWithIdentifier: not bound +!missing-selector! NSTabView::insertTabViewItem:atIndex: not bound +!missing-selector! NSTabView::minimumSize not bound +!missing-selector! NSTabView::numberOfTabViewItems not bound +!missing-selector! NSTabView::removeTabViewItem: not bound +!missing-selector! NSTabView::selectFirstTabViewItem: not bound +!missing-selector! NSTabView::selectLastTabViewItem: not bound +!missing-selector! NSTabView::selectNextTabViewItem: not bound +!missing-selector! NSTabView::selectPreviousTabViewItem: not bound +!missing-selector! NSTabView::selectTabViewItem: not bound +!missing-selector! NSTabView::selectTabViewItemAtIndex: not bound +!missing-selector! NSTabView::selectTabViewItemWithIdentifier: not bound +!missing-selector! NSTabView::selectedTabViewItem not bound +!missing-selector! NSTabView::setAllowsTruncatedLabels: not bound +!missing-selector! NSTabView::setControlSize: not bound +!missing-selector! NSTabView::setControlTint: not bound +!missing-selector! NSTabView::setDelegate: not bound +!missing-selector! NSTabView::setDrawsBackground: not bound +!missing-selector! NSTabView::setFont: not bound +!missing-selector! NSTabView::setTabPosition: not bound +!missing-selector! NSTabView::setTabViewBorderType: not bound +!missing-selector! NSTabView::setTabViewItems: not bound +!missing-selector! NSTabView::setTabViewType: not bound +!missing-selector! NSTabView::tabPosition not bound +!missing-selector! NSTabView::tabViewBorderType not bound +!missing-selector! NSTabView::tabViewItemAtIndex: not bound +!missing-selector! NSTabView::tabViewItemAtPoint: not bound +!missing-selector! NSTabView::tabViewItems not bound +!missing-selector! NSTabView::tabViewType not bound +!missing-selector! NSTabView::takeSelectedTabViewItemFromSender: not bound +!missing-selector! NSTabViewController::addTabViewItem: not bound +!missing-selector! NSTabViewController::canPropagateSelectedChildViewControllerTitle not bound +!missing-selector! NSTabViewController::insertTabViewItem:atIndex: not bound +!missing-selector! NSTabViewController::removeTabViewItem: not bound +!missing-selector! NSTabViewController::selectedTabViewItemIndex not bound +!missing-selector! NSTabViewController::setCanPropagateSelectedChildViewControllerTitle: not bound +!missing-selector! NSTabViewController::setSelectedTabViewItemIndex: not bound +!missing-selector! NSTabViewController::setTabStyle: not bound +!missing-selector! NSTabViewController::setTabView: not bound +!missing-selector! NSTabViewController::setTabViewItems: not bound +!missing-selector! NSTabViewController::setTransitionOptions: not bound +!missing-selector! NSTabViewController::tabStyle not bound +!missing-selector! NSTabViewController::tabView not bound +!missing-selector! NSTabViewController::tabView:didSelectTabViewItem: not bound +!missing-selector! NSTabViewController::tabView:shouldSelectTabViewItem: not bound +!missing-selector! NSTabViewController::tabView:willSelectTabViewItem: not bound +!missing-selector! NSTabViewController::tabViewItemForViewController: not bound +!missing-selector! NSTabViewController::tabViewItems not bound +!missing-selector! NSTabViewController::toolbar:itemForItemIdentifier:willBeInsertedIntoToolbar: not bound +!missing-selector! NSTabViewController::toolbarAllowedItemIdentifiers: not bound +!missing-selector! NSTabViewController::toolbarDefaultItemIdentifiers: not bound +!missing-selector! NSTabViewController::toolbarSelectableItemIdentifiers: not bound +!missing-selector! NSTabViewController::transitionOptions not bound +!missing-selector! NSTabViewController::viewDidLoad not bound +!missing-selector! NSTabViewItem::color not bound +!missing-selector! NSTabViewItem::drawLabel:inRect: not bound +!missing-selector! NSTabViewItem::identifier not bound +!missing-selector! NSTabViewItem::image not bound +!missing-selector! NSTabViewItem::initWithIdentifier: not bound +!missing-selector! NSTabViewItem::initialFirstResponder not bound +!missing-selector! NSTabViewItem::label not bound +!missing-selector! NSTabViewItem::setColor: not bound +!missing-selector! NSTabViewItem::setIdentifier: not bound +!missing-selector! NSTabViewItem::setImage: not bound +!missing-selector! NSTabViewItem::setInitialFirstResponder: not bound +!missing-selector! NSTabViewItem::setLabel: not bound +!missing-selector! NSTabViewItem::setToolTip: not bound +!missing-selector! NSTabViewItem::setView: not bound +!missing-selector! NSTabViewItem::setViewController: not bound +!missing-selector! NSTabViewItem::sizeOfLabel: not bound +!missing-selector! NSTabViewItem::tabState not bound +!missing-selector! NSTabViewItem::tabView not bound +!missing-selector! NSTabViewItem::toolTip not bound +!missing-selector! NSTabViewItem::view not bound +!missing-selector! NSTabViewItem::viewController not bound !missing-selector! NSTableCellView::backgroundStyle not bound !missing-selector! NSTableCellView::draggingImageComponents not bound !missing-selector! NSTableCellView::imageView not bound @@ -6566,8 +6675,8 @@ !missing-selector! NSTableView::columnAutoresizingStyle not bound !missing-selector! NSTableView::columnForView: not bound !missing-selector! NSTableView::columnIndexesInRect: not bound -!missing-selector! NSTableView::columnsInRect: not bound !missing-selector! NSTableView::columnWithIdentifier: not bound +!missing-selector! NSTableView::columnsInRect: not bound !missing-selector! NSTableView::cornerView not bound !missing-selector! NSTableView::dataSource not bound !missing-selector! NSTableView::delegate not bound @@ -6577,9 +6686,9 @@ !missing-selector! NSTableView::didAddRowView:forRow: not bound !missing-selector! NSTableView::didRemoveRowView:forRow: not bound !missing-selector! NSTableView::doubleAction not bound -!missing-selector! NSTableView::draggingDestinationFeedbackStyle not bound !missing-selector! NSTableView::dragImageForRows:event:dragImageOffset: not bound !missing-selector! NSTableView::dragImageForRowsWithIndexes:tableColumns:event:offset: not bound +!missing-selector! NSTableView::draggingDestinationFeedbackStyle not bound !missing-selector! NSTableView::drawBackgroundInClipRect: not bound !missing-selector! NSTableView::drawGridInClipRect: not bound !missing-selector! NSTableView::drawRow:clipRect: not bound @@ -6599,8 +6708,8 @@ !missing-selector! NSTableView::headerView not bound !missing-selector! NSTableView::hiddenRowIndexes not bound !missing-selector! NSTableView::hideRowsAtIndexes:withAnimation: not bound -!missing-selector! NSTableView::highlightedTableColumn not bound !missing-selector! NSTableView::highlightSelectionInClipRect: not bound +!missing-selector! NSTableView::highlightedTableColumn not bound !missing-selector! NSTableView::indicatorImageInTableColumn: not bound !missing-selector! NSTableView::initWithCoder: not bound !missing-selector! NSTableView::initWithFrame: not bound @@ -6621,8 +6730,8 @@ !missing-selector! NSTableView::preparedCellAtColumn:row: not bound !missing-selector! NSTableView::rectOfColumn: not bound !missing-selector! NSTableView::rectOfRow: not bound -!missing-selector! NSTableView::registeredNibsByIdentifier not bound !missing-selector! NSTableView::registerNib:forIdentifier: not bound +!missing-selector! NSTableView::registeredNibsByIdentifier not bound !missing-selector! NSTableView::reloadData not bound !missing-selector! NSTableView::reloadDataForRowIndexes:columnIndexes: not bound !missing-selector! NSTableView::removeRowsAtIndexes:withAnimation: not bound @@ -6631,14 +6740,16 @@ !missing-selector! NSTableView::rowAtPoint: not bound !missing-selector! NSTableView::rowForView: not bound !missing-selector! NSTableView::rowHeight not bound -!missing-selector! NSTableView::rowsInRect: not bound !missing-selector! NSTableView::rowSizeStyle not bound !missing-selector! NSTableView::rowViewAtRow:makeIfNecessary: not bound +!missing-selector! NSTableView::rowsInRect: not bound !missing-selector! NSTableView::scrollColumnToVisible: not bound !missing-selector! NSTableView::scrollRowToVisible: not bound !missing-selector! NSTableView::selectAll: not bound !missing-selector! NSTableView::selectColumn:byExtendingSelection: not bound !missing-selector! NSTableView::selectColumnIndexes:byExtendingSelection: not bound +!missing-selector! NSTableView::selectRow:byExtendingSelection: not bound +!missing-selector! NSTableView::selectRowIndexes:byExtendingSelection: not bound !missing-selector! NSTableView::selectedColumn not bound !missing-selector! NSTableView::selectedColumnEnumerator not bound !missing-selector! NSTableView::selectedColumnIndexes not bound @@ -6646,8 +6757,6 @@ !missing-selector! NSTableView::selectedRowEnumerator not bound !missing-selector! NSTableView::selectedRowIndexes not bound !missing-selector! NSTableView::selectionHighlightStyle not bound -!missing-selector! NSTableView::selectRow:byExtendingSelection: not bound -!missing-selector! NSTableView::selectRowIndexes:byExtendingSelection: not bound !missing-selector! NSTableView::setAllowsColumnReordering: not bound !missing-selector! NSTableView::setAllowsColumnResizing: not bound !missing-selector! NSTableView::setAllowsColumnSelection: not bound @@ -6691,8 +6800,8 @@ !missing-selector! NSTableView::sizeToFit not bound !missing-selector! NSTableView::sortDescriptors not bound !missing-selector! NSTableView::style not bound -!missing-selector! NSTableView::tableColumns not bound !missing-selector! NSTableView::tableColumnWithIdentifier: not bound +!missing-selector! NSTableView::tableColumns not bound !missing-selector! NSTableView::textDidBeginEditing: not bound !missing-selector! NSTableView::textDidChange: not bound !missing-selector! NSTableView::textDidEndEditing: not bound @@ -6727,90 +6836,8 @@ !missing-selector! NSTableViewRowAction::setTitle: not bound !missing-selector! NSTableViewRowAction::style not bound !missing-selector! NSTableViewRowAction::title not bound -!missing-selector! NSTabView::addTabViewItem: not bound -!missing-selector! NSTabView::allowsTruncatedLabels not bound -!missing-selector! NSTabView::contentRect not bound -!missing-selector! NSTabView::controlSize not bound -!missing-selector! NSTabView::controlTint not bound -!missing-selector! NSTabView::delegate not bound -!missing-selector! NSTabView::drawsBackground not bound -!missing-selector! NSTabView::font not bound -!missing-selector! NSTabView::indexOfTabViewItem: not bound -!missing-selector! NSTabView::indexOfTabViewItemWithIdentifier: not bound -!missing-selector! NSTabView::insertTabViewItem:atIndex: not bound -!missing-selector! NSTabView::minimumSize not bound -!missing-selector! NSTabView::numberOfTabViewItems not bound -!missing-selector! NSTabView::removeTabViewItem: not bound -!missing-selector! NSTabView::selectedTabViewItem not bound -!missing-selector! NSTabView::selectFirstTabViewItem: not bound -!missing-selector! NSTabView::selectLastTabViewItem: not bound -!missing-selector! NSTabView::selectNextTabViewItem: not bound -!missing-selector! NSTabView::selectPreviousTabViewItem: not bound -!missing-selector! NSTabView::selectTabViewItem: not bound -!missing-selector! NSTabView::selectTabViewItemAtIndex: not bound -!missing-selector! NSTabView::selectTabViewItemWithIdentifier: not bound -!missing-selector! NSTabView::setAllowsTruncatedLabels: not bound -!missing-selector! NSTabView::setControlSize: not bound -!missing-selector! NSTabView::setControlTint: not bound -!missing-selector! NSTabView::setDelegate: not bound -!missing-selector! NSTabView::setDrawsBackground: not bound -!missing-selector! NSTabView::setFont: not bound -!missing-selector! NSTabView::setTabPosition: not bound -!missing-selector! NSTabView::setTabViewBorderType: not bound -!missing-selector! NSTabView::setTabViewItems: not bound -!missing-selector! NSTabView::setTabViewType: not bound -!missing-selector! NSTabView::tabPosition not bound -!missing-selector! NSTabView::tabViewBorderType not bound -!missing-selector! NSTabView::tabViewItemAtIndex: not bound -!missing-selector! NSTabView::tabViewItemAtPoint: not bound -!missing-selector! NSTabView::tabViewItems not bound -!missing-selector! NSTabView::tabViewType not bound -!missing-selector! NSTabView::takeSelectedTabViewItemFromSender: not bound -!missing-selector! NSTabViewController::addTabViewItem: not bound -!missing-selector! NSTabViewController::canPropagateSelectedChildViewControllerTitle not bound -!missing-selector! NSTabViewController::insertTabViewItem:atIndex: not bound -!missing-selector! NSTabViewController::removeTabViewItem: not bound -!missing-selector! NSTabViewController::selectedTabViewItemIndex not bound -!missing-selector! NSTabViewController::setCanPropagateSelectedChildViewControllerTitle: not bound -!missing-selector! NSTabViewController::setSelectedTabViewItemIndex: not bound -!missing-selector! NSTabViewController::setTabStyle: not bound -!missing-selector! NSTabViewController::setTabView: not bound -!missing-selector! NSTabViewController::setTabViewItems: not bound -!missing-selector! NSTabViewController::setTransitionOptions: not bound -!missing-selector! NSTabViewController::tabStyle not bound -!missing-selector! NSTabViewController::tabView not bound -!missing-selector! NSTabViewController::tabView:didSelectTabViewItem: not bound -!missing-selector! NSTabViewController::tabView:shouldSelectTabViewItem: not bound -!missing-selector! NSTabViewController::tabView:willSelectTabViewItem: not bound -!missing-selector! NSTabViewController::tabViewItemForViewController: not bound -!missing-selector! NSTabViewController::tabViewItems not bound -!missing-selector! NSTabViewController::toolbar:itemForItemIdentifier:willBeInsertedIntoToolbar: not bound -!missing-selector! NSTabViewController::toolbarAllowedItemIdentifiers: not bound -!missing-selector! NSTabViewController::toolbarDefaultItemIdentifiers: not bound -!missing-selector! NSTabViewController::toolbarSelectableItemIdentifiers: not bound -!missing-selector! NSTabViewController::transitionOptions not bound -!missing-selector! NSTabViewController::viewDidLoad not bound -!missing-selector! NSTabViewItem::color not bound -!missing-selector! NSTabViewItem::drawLabel:inRect: not bound -!missing-selector! NSTabViewItem::identifier not bound -!missing-selector! NSTabViewItem::image not bound -!missing-selector! NSTabViewItem::initialFirstResponder not bound -!missing-selector! NSTabViewItem::initWithIdentifier: not bound -!missing-selector! NSTabViewItem::label not bound -!missing-selector! NSTabViewItem::setColor: not bound -!missing-selector! NSTabViewItem::setIdentifier: not bound -!missing-selector! NSTabViewItem::setImage: not bound -!missing-selector! NSTabViewItem::setInitialFirstResponder: not bound -!missing-selector! NSTabViewItem::setLabel: not bound -!missing-selector! NSTabViewItem::setToolTip: not bound -!missing-selector! NSTabViewItem::setView: not bound -!missing-selector! NSTabViewItem::setViewController: not bound -!missing-selector! NSTabViewItem::sizeOfLabel: not bound -!missing-selector! NSTabViewItem::tabState not bound -!missing-selector! NSTabViewItem::tabView not bound -!missing-selector! NSTabViewItem::toolTip not bound -!missing-selector! NSTabViewItem::view not bound -!missing-selector! NSTabViewItem::viewController not bound +!missing-selector! NSText::RTFDFromRange: not bound +!missing-selector! NSText::RTFFromRange: not bound !missing-selector! NSText::alignCenter: not bound !missing-selector! NSText::alignLeft: not bound !missing-selector! NSText::alignRight: not bound @@ -6844,8 +6871,6 @@ !missing-selector! NSText::replaceCharactersInRange:withRTF: not bound !missing-selector! NSText::replaceCharactersInRange:withRTFD: not bound !missing-selector! NSText::replaceCharactersInRange:withString: not bound -!missing-selector! NSText::RTFDFromRange: not bound -!missing-selector! NSText::RTFFromRange: not bound !missing-selector! NSText::scrollRangeToVisible: not bound !missing-selector! NSText::selectAll: not bound !missing-selector! NSText::selectedRange not bound @@ -6923,8 +6948,8 @@ !missing-selector! NSTextField::setAllowsEditingTextAttributes: not bound !missing-selector! NSTextField::setAutomaticTextCompletionEnabled: not bound !missing-selector! NSTextField::setBackgroundColor: not bound -!missing-selector! NSTextField::setBezeled: not bound !missing-selector! NSTextField::setBezelStyle: not bound +!missing-selector! NSTextField::setBezeled: not bound !missing-selector! NSTextField::setBordered: not bound !missing-selector! NSTextField::setDelegate: not bound !missing-selector! NSTextField::setDrawsBackground: not bound @@ -7023,8 +7048,8 @@ !missing-selector! NSTextView::dragOperationForDraggingInfo:type: not bound !missing-selector! NSTextView::dragSelectionWithEvent:offset:slideBack: not bound !missing-selector! NSTextView::drawInsertionPointInRect:color:turnedOn: not bound -!missing-selector! NSTextView::drawsBackground not bound !missing-selector! NSTextView::drawViewBackgroundInRect: not bound +!missing-selector! NSTextView::drawsBackground not bound !missing-selector! NSTextView::enabledTextCheckingTypes not bound !missing-selector! NSTextView::handleTextCheckingResults:forRange:types:options:orthography:wordCount: not bound !missing-selector! NSTextView::importsGraphics not bound @@ -7032,8 +7057,8 @@ !missing-selector! NSTextView::initWithFrame: not bound !missing-selector! NSTextView::initWithFrame:textContainer: not bound !missing-selector! NSTextView::insertCompletion:forPartialWordRange:movement:isFinal: not bound -!missing-selector! NSTextView::insertionPointColor not bound !missing-selector! NSTextView::insertText: not bound +!missing-selector! NSTextView::insertionPointColor not bound !missing-selector! NSTextView::invalidateTextContainerOrigin not bound !missing-selector! NSTextView::isAutomaticDashSubstitutionEnabled not bound !missing-selector! NSTextView::isAutomaticDataDetectionEnabled not bound @@ -7077,9 +7102,9 @@ !missing-selector! NSTextView::rangesForUserCharacterAttributeChange not bound !missing-selector! NSTextView::rangesForUserParagraphAttributeChange not bound !missing-selector! NSTextView::rangesForUserTextChange not bound -!missing-selector! NSTextView::readablePasteboardTypes not bound !missing-selector! NSTextView::readSelectionFromPasteboard: not bound !missing-selector! NSTextView::readSelectionFromPasteboard:type: not bound +!missing-selector! NSTextView::readablePasteboardTypes not bound !missing-selector! NSTextView::replaceTextContainer: not bound !missing-selector! NSTextView::rulerView:didAddMarker: not bound !missing-selector! NSTextView::rulerView:didMoveMarker: not bound @@ -7161,6 +7186,8 @@ !missing-selector! NSTextView::textContainer not bound !missing-selector! NSTextView::textContainerInset not bound !missing-selector! NSTextView::textContainerOrigin not bound +!missing-selector! NSTextView::textContentStorage not bound +!missing-selector! NSTextView::textLayoutManager not bound !missing-selector! NSTextView::textStorage not bound !missing-selector! NSTextView::tightenKerning: not bound !missing-selector! NSTextView::toggleAutomaticDashSubstitution: not bound @@ -7188,6 +7215,8 @@ !missing-selector! NSTextView::updateTextTouchBarItems not bound !missing-selector! NSTextView::updateTouchBarItemIdentifiers not bound !missing-selector! NSTextView::useAllLigatures: not bound +!missing-selector! NSTextView::useStandardKerning: not bound +!missing-selector! NSTextView::useStandardLigatures: not bound !missing-selector! NSTextView::usesAdaptiveColorMappingForDarkAppearance not bound !missing-selector! NSTextView::usesFindBar not bound !missing-selector! NSTextView::usesFindPanel not bound @@ -7195,8 +7224,6 @@ !missing-selector! NSTextView::usesInspectorBar not bound !missing-selector! NSTextView::usesRolloverButtonForSelection not bound !missing-selector! NSTextView::usesRuler not bound -!missing-selector! NSTextView::useStandardKerning: not bound -!missing-selector! NSTextView::useStandardLigatures: not bound !missing-selector! NSTextView::validRequestorForSendType:returnType: not bound !missing-selector! NSTextView::writablePasteboardTypes not bound !missing-selector! NSTextView::writeSelectionToPasteboard:type: not bound @@ -7217,18 +7244,18 @@ !missing-selector! NSTokenField::delegate not bound !missing-selector! NSTokenField::setCompletionDelay: not bound !missing-selector! NSTokenField::setDelegate: not bound -!missing-selector! NSTokenField::setTokenizingCharacterSet: not bound !missing-selector! NSTokenField::setTokenStyle: not bound -!missing-selector! NSTokenField::tokenizingCharacterSet not bound +!missing-selector! NSTokenField::setTokenizingCharacterSet: not bound !missing-selector! NSTokenField::tokenStyle not bound +!missing-selector! NSTokenField::tokenizingCharacterSet not bound !missing-selector! NSTokenFieldCell::completionDelay not bound !missing-selector! NSTokenFieldCell::delegate not bound !missing-selector! NSTokenFieldCell::setCompletionDelay: not bound !missing-selector! NSTokenFieldCell::setDelegate: not bound -!missing-selector! NSTokenFieldCell::setTokenizingCharacterSet: not bound !missing-selector! NSTokenFieldCell::setTokenStyle: not bound -!missing-selector! NSTokenFieldCell::tokenizingCharacterSet not bound +!missing-selector! NSTokenFieldCell::setTokenizingCharacterSet: not bound !missing-selector! NSTokenFieldCell::tokenStyle not bound +!missing-selector! NSTokenFieldCell::tokenizingCharacterSet not bound !missing-selector! NSToolbar::allowsExtensionItems not bound !missing-selector! NSToolbar::allowsUserCustomization not bound !missing-selector! NSToolbar::autosavesConfiguration not bound @@ -7301,8 +7328,8 @@ !missing-selector! NSToolbarItem::tag not bound !missing-selector! NSToolbarItem::target not bound !missing-selector! NSToolbarItem::title not bound -!missing-selector! NSToolbarItem::toolbar not bound !missing-selector! NSToolbarItem::toolTip not bound +!missing-selector! NSToolbarItem::toolbar not bound !missing-selector! NSToolbarItem::validate not bound !missing-selector! NSToolbarItem::view not bound !missing-selector! NSToolbarItem::visibilityPriority not bound @@ -7422,9 +7449,9 @@ !missing-selector! NSUserDefaultsController::appliesImmediately not bound !missing-selector! NSUserDefaultsController::defaults not bound !missing-selector! NSUserDefaultsController::hasUnappliedChanges not bound -!missing-selector! NSUserDefaultsController::initialValues not bound !missing-selector! NSUserDefaultsController::initWithCoder: not bound !missing-selector! NSUserDefaultsController::initWithDefaults:initialValues: not bound +!missing-selector! NSUserDefaultsController::initialValues not bound !missing-selector! NSUserDefaultsController::revert: not bound !missing-selector! NSUserDefaultsController::revertToInitialValues: not bound !missing-selector! NSUserDefaultsController::save: not bound @@ -7444,13 +7471,13 @@ !missing-selector! NSView::acceptsTouchEvents not bound !missing-selector! NSView::addCursorRect:cursor: not bound !missing-selector! NSView::addGestureRecognizer: not bound -!missing-selector! NSView::additionalSafeAreaInsets not bound !missing-selector! NSView::addLayoutGuide: not bound !missing-selector! NSView::addSubview: not bound !missing-selector! NSView::addSubview:positioned:relativeTo: not bound !missing-selector! NSView::addToolTipRect:owner:userData: not bound !missing-selector! NSView::addTrackingArea: not bound !missing-selector! NSView::addTrackingRect:owner:userData:assumeInside: not bound +!missing-selector! NSView::additionalSafeAreaInsets not bound !missing-selector! NSView::adjustPageHeightNew:top:bottom:limit: not bound !missing-selector! NSView::adjustPageWidthNew:left:right:limit: not bound !missing-selector! NSView::adjustScroll: not bound @@ -7475,10 +7502,10 @@ !missing-selector! NSView::boundsRotation not bound !missing-selector! NSView::cacheDisplayInRect:toBitmapImageRep: not bound !missing-selector! NSView::canBecomeKeyView not bound -!missing-selector! NSView::candidateListTouchBarItem not bound !missing-selector! NSView::canDraw not bound !missing-selector! NSView::canDrawConcurrently not bound !missing-selector! NSView::canDrawSubviewsIntoLayer not bound +!missing-selector! NSView::candidateListTouchBarItem not bound !missing-selector! NSView::centerScanRect: not bound !missing-selector! NSView::compositingFilter not bound !missing-selector! NSView::contentFilters not bound @@ -7541,16 +7568,16 @@ !missing-selector! NSView::frameCenterRotation not bound !missing-selector! NSView::frameForAlignmentRect: not bound !missing-selector! NSView::frameRotation not bound +!missing-selector! NSView::gState not bound !missing-selector! NSView::gestureRecognizers not bound !missing-selector! NSView::getRectsBeingDrawn:count: not bound !missing-selector! NSView::getRectsExposedDuringLiveResize:count: not bound -!missing-selector! NSView::gState not bound !missing-selector! NSView::hasAmbiguousLayout not bound !missing-selector! NSView::heightAdjustLimit not bound !missing-selector! NSView::hitTest: not bound +!missing-selector! NSView::inLiveResize not bound !missing-selector! NSView::initWithCoder: not bound !missing-selector! NSView::initWithFrame: not bound -!missing-selector! NSView::inLiveResize not bound !missing-selector! NSView::inputContext not bound !missing-selector! NSView::intrinsicContentSize not bound !missing-selector! NSView::invalidateIntrinsicContentSize not bound @@ -7599,8 +7626,8 @@ !missing-selector! NSView::postsBoundsChangedNotifications not bound !missing-selector! NSView::postsFrameChangedNotifications not bound !missing-selector! NSView::prepareContentInRect: not bound -!missing-selector! NSView::preparedContentRect not bound !missing-selector! NSView::prepareForReuse not bound +!missing-selector! NSView::preparedContentRect not bound !missing-selector! NSView::preservesContentDuringLiveResize not bound !missing-selector! NSView::pressureConfiguration not bound !missing-selector! NSView::previousKeyView not bound @@ -7611,8 +7638,8 @@ !missing-selector! NSView::rectForSmartMagnificationAtPoint:inRect: not bound !missing-selector! NSView::rectPreservedDuringLiveResize not bound !missing-selector! NSView::reflectScrolledClipView: not bound -!missing-selector! NSView::registeredDraggedTypes not bound !missing-selector! NSView::registerForDraggedTypes: not bound +!missing-selector! NSView::registeredDraggedTypes not bound !missing-selector! NSView::releaseGState not bound !missing-selector! NSView::removeAllToolTips not bound !missing-selector! NSView::removeCursorRect:cursor: not bound @@ -7768,12 +7795,12 @@ !missing-selector! NSViewController::preferredMaximumSize not bound !missing-selector! NSViewController::preferredMinimumSize not bound !missing-selector! NSViewController::preferredScreenOrigin not bound -!missing-selector! NSViewController::presentedViewControllers not bound -!missing-selector! NSViewController::presentingViewController not bound !missing-selector! NSViewController::presentViewController:animator: not bound !missing-selector! NSViewController::presentViewController:asPopoverRelativeToRect:ofView:preferredEdge:behavior: not bound !missing-selector! NSViewController::presentViewControllerAsModalWindow: not bound !missing-selector! NSViewController::presentViewControllerAsSheet: not bound +!missing-selector! NSViewController::presentedViewControllers not bound +!missing-selector! NSViewController::presentingViewController not bound !missing-selector! NSViewController::removeChildViewControllerAtIndex: not bound !missing-selector! NSViewController::removeFromParentViewController not bound !missing-selector! NSViewController::representedObject not bound @@ -7906,8 +7933,8 @@ !missing-selector! NSWindow::frame not bound !missing-selector! NSWindow::frameAutosaveName not bound !missing-selector! NSWindow::frameRectForContentRect: not bound -!missing-selector! NSWindow::graphicsContext not bound !missing-selector! NSWindow::gState not bound +!missing-selector! NSWindow::graphicsContext not bound !missing-selector! NSWindow::handleCloseScriptCommand: not bound !missing-selector! NSWindow::handlePrintScriptCommand: not bound !missing-selector! NSWindow::handleSaveScriptCommand: not bound @@ -7917,11 +7944,11 @@ !missing-selector! NSWindow::hasTitleBar not bound !missing-selector! NSWindow::hidesOnDeactivate not bound !missing-selector! NSWindow::ignoresMouseEvents not bound -!missing-selector! NSWindow::initialFirstResponder not bound +!missing-selector! NSWindow::inLiveResize not bound !missing-selector! NSWindow::initWithContentRect:styleMask:backing:defer: not bound !missing-selector! NSWindow::initWithContentRect:styleMask:backing:defer:screen: not bound !missing-selector! NSWindow::initWithWindowRef: not bound -!missing-selector! NSWindow::inLiveResize not bound +!missing-selector! NSWindow::initialFirstResponder not bound !missing-selector! NSWindow::insertTitlebarAccessoryViewController:atIndex: not bound !missing-selector! NSWindow::invalidateCursorRectsForView: not bound !missing-selector! NSWindow::invalidateShadow not bound @@ -7958,21 +7985,21 @@ !missing-selector! NSWindow::maxSize not bound !missing-selector! NSWindow::mergeAllWindows: not bound !missing-selector! NSWindow::minFullScreenContentSize not bound +!missing-selector! NSWindow::minSize not bound !missing-selector! NSWindow::miniaturize: not bound !missing-selector! NSWindow::miniwindowImage not bound !missing-selector! NSWindow::miniwindowTitle not bound -!missing-selector! NSWindow::minSize not bound !missing-selector! NSWindow::mouseLocationOutsideOfEventStream not bound !missing-selector! NSWindow::moveTabToNewWindow: not bound !missing-selector! NSWindow::nextEventMatchingMask: not bound !missing-selector! NSWindow::nextEventMatchingMask:untilDate:inMode:dequeue: not bound !missing-selector! NSWindow::occlusionState not bound !missing-selector! NSWindow::orderBack: not bound -!missing-selector! NSWindow::orderedIndex not bound !missing-selector! NSWindow::orderFront: not bound !missing-selector! NSWindow::orderFrontRegardless not bound !missing-selector! NSWindow::orderOut: not bound !missing-selector! NSWindow::orderWindow:relativeTo: not bound +!missing-selector! NSWindow::orderedIndex not bound !missing-selector! NSWindow::parentWindow not bound !missing-selector! NSWindow::performClose: not bound !missing-selector! NSWindow::performMiniaturize: not bound @@ -8056,9 +8083,9 @@ !missing-selector! NSWindow::setMaxFullScreenContentSize: not bound !missing-selector! NSWindow::setMaxSize: not bound !missing-selector! NSWindow::setMinFullScreenContentSize: not bound +!missing-selector! NSWindow::setMinSize: not bound !missing-selector! NSWindow::setMiniwindowImage: not bound !missing-selector! NSWindow::setMiniwindowTitle: not bound -!missing-selector! NSWindow::setMinSize: not bound !missing-selector! NSWindow::setMovable: not bound !missing-selector! NSWindow::setMovableByWindowBackground: not bound !missing-selector! NSWindow::setOneShot: not bound @@ -8082,11 +8109,11 @@ !missing-selector! NSWindow::setTabbingIdentifier: not bound !missing-selector! NSWindow::setTabbingMode: not bound !missing-selector! NSWindow::setTitle: not bound +!missing-selector! NSWindow::setTitleVisibility: not bound +!missing-selector! NSWindow::setTitleWithRepresentedFilename: not bound !missing-selector! NSWindow::setTitlebarAccessoryViewControllers: not bound !missing-selector! NSWindow::setTitlebarAppearsTransparent: not bound !missing-selector! NSWindow::setTitlebarSeparatorStyle: not bound -!missing-selector! NSWindow::setTitleVisibility: not bound -!missing-selector! NSWindow::setTitleWithRepresentedFilename: not bound !missing-selector! NSWindow::setToolbar: not bound !missing-selector! NSWindow::setToolbarStyle: not bound !missing-selector! NSWindow::setViewsNeedDisplay: not bound @@ -8101,15 +8128,15 @@ !missing-selector! NSWindow::styleMask not bound !missing-selector! NSWindow::subtitle not bound !missing-selector! NSWindow::tab not bound +!missing-selector! NSWindow::tabGroup not bound !missing-selector! NSWindow::tabbedWindows not bound !missing-selector! NSWindow::tabbingIdentifier not bound !missing-selector! NSWindow::tabbingMode not bound -!missing-selector! NSWindow::tabGroup not bound !missing-selector! NSWindow::title not bound +!missing-selector! NSWindow::titleVisibility not bound !missing-selector! NSWindow::titlebarAccessoryViewControllers not bound !missing-selector! NSWindow::titlebarAppearsTransparent not bound !missing-selector! NSWindow::titlebarSeparatorStyle not bound -!missing-selector! NSWindow::titleVisibility not bound !missing-selector! NSWindow::toggleFullScreen: not bound !missing-selector! NSWindow::toggleTabBar: not bound !missing-selector! NSWindow::toggleTabOverview: not bound @@ -8180,6 +8207,12 @@ !missing-selector! NSWindowTabGroup::setOverviewVisible: not bound !missing-selector! NSWindowTabGroup::setSelectedWindow: not bound !missing-selector! NSWindowTabGroup::windows not bound +!missing-selector! NSWorkspace::URLForApplicationToOpenContentType: not bound +!missing-selector! NSWorkspace::URLForApplicationToOpenURL: not bound +!missing-selector! NSWorkspace::URLForApplicationWithBundleIdentifier: not bound +!missing-selector! NSWorkspace::URLsForApplicationsToOpenContentType: not bound +!missing-selector! NSWorkspace::URLsForApplicationsToOpenURL: not bound +!missing-selector! NSWorkspace::URLsForApplicationsWithBundleIdentifier: not bound !missing-selector! NSWorkspace::absolutePathForAppBundleWithIdentifier: not bound !missing-selector! NSWorkspace::accessibilityDisplayShouldDifferentiateWithoutColor not bound !missing-selector! NSWorkspace::accessibilityDisplayShouldIncreaseContrast not bound @@ -8195,8 +8228,8 @@ !missing-selector! NSWorkspace::extendPowerOffBy: not bound !missing-selector! NSWorkspace::fileLabelColors not bound !missing-selector! NSWorkspace::fileLabels not bound -!missing-selector! NSWorkspace::filenameExtension:isValidForType: not bound !missing-selector! NSWorkspace::fileSystemChanged not bound +!missing-selector! NSWorkspace::filenameExtension:isValidForType: not bound !missing-selector! NSWorkspace::findApplications not bound !missing-selector! NSWorkspace::frontmostApplication not bound !missing-selector! NSWorkspace::fullPathForApplication: not bound @@ -8205,21 +8238,21 @@ !missing-selector! NSWorkspace::hideOtherApplications not bound !missing-selector! NSWorkspace::iconForContentType: not bound !missing-selector! NSWorkspace::iconForFile: not bound -!missing-selector! NSWorkspace::iconForFiles: not bound !missing-selector! NSWorkspace::iconForFileType: not bound +!missing-selector! NSWorkspace::iconForFiles: not bound !missing-selector! NSWorkspace::isFilePackageAtPath: not bound !missing-selector! NSWorkspace::isSwitchControlEnabled not bound !missing-selector! NSWorkspace::isVoiceOverEnabled not bound +!missing-selector! NSWorkspace::launchAppWithBundleIdentifier:options:additionalEventParamDescriptor:launchIdentifier: not bound !missing-selector! NSWorkspace::launchApplication: not bound !missing-selector! NSWorkspace::launchApplication:showIcon:autolaunch: not bound !missing-selector! NSWorkspace::launchApplicationAtURL:options:configuration:error: not bound -!missing-selector! NSWorkspace::launchAppWithBundleIdentifier:options:additionalEventParamDescriptor:launchIdentifier: not bound !missing-selector! NSWorkspace::launchedApplications not bound !missing-selector! NSWorkspace::localizedDescriptionForType: not bound !missing-selector! NSWorkspace::menuBarOwningApplication not bound +!missing-selector! NSWorkspace::mountNewRemovableMedia not bound !missing-selector! NSWorkspace::mountedLocalVolumePaths not bound !missing-selector! NSWorkspace::mountedRemovableMedia not bound -!missing-selector! NSWorkspace::mountNewRemovableMedia not bound !missing-selector! NSWorkspace::noteFileSystemChanged not bound !missing-selector! NSWorkspace::noteFileSystemChanged: not bound !missing-selector! NSWorkspace::noteUserDefaultsChanged not bound @@ -8242,6 +8275,10 @@ !missing-selector! NSWorkspace::requestAuthorizationOfType:completionHandler: not bound !missing-selector! NSWorkspace::runningApplications not bound !missing-selector! NSWorkspace::selectFile:inFileViewerRootedAtPath: not bound +!missing-selector! NSWorkspace::setDefaultApplicationAtURL:toOpenContentType:completionHandler: not bound +!missing-selector! NSWorkspace::setDefaultApplicationAtURL:toOpenContentTypeOfFileAtURL:completionHandler: not bound +!missing-selector! NSWorkspace::setDefaultApplicationAtURL:toOpenFileAtURL:completionHandler: not bound +!missing-selector! NSWorkspace::setDefaultApplicationAtURL:toOpenURLsWithScheme:completionHandler: not bound !missing-selector! NSWorkspace::setDesktopImageURL:forScreen:options:error: not bound !missing-selector! NSWorkspace::setIcon:forFile:options: not bound !missing-selector! NSWorkspace::showSearchResultsForQueryString: not bound @@ -8250,8 +8287,6 @@ !missing-selector! NSWorkspace::typeOfFile:error: not bound !missing-selector! NSWorkspace::unmountAndEjectDeviceAtPath: not bound !missing-selector! NSWorkspace::unmountAndEjectDeviceAtURL:error: not bound -!missing-selector! NSWorkspace::URLForApplicationToOpenURL: not bound -!missing-selector! NSWorkspace::URLForApplicationWithBundleIdentifier: not bound !missing-selector! NSWorkspace::userDefaultsChanged not bound !missing-selector! NSWorkspaceOpenConfiguration::activates not bound !missing-selector! NSWorkspaceOpenConfiguration::addsToRecentItems not bound @@ -8301,10 +8336,10 @@ !missing-type! NSButton not bound !missing-type! NSButtonCell not bound !missing-type! NSButtonTouchBarItem not bound +!missing-type! NSCIImageRep not bound !missing-type! NSCachedImageRep not bound !missing-type! NSCandidateListTouchBarItem not bound !missing-type! NSCell not bound -!missing-type! NSCIImageRep not bound !missing-type! NSClickGestureRecognizer not bound !missing-type! NSClipView not bound !missing-type! NSCollectionView not bound @@ -8393,34 +8428,34 @@ !missing-type! NSOpenGLView not bound !missing-type! NSOpenPanel not bound !missing-type! NSOutlineView not bound +!missing-type! NSPDFImageRep not bound +!missing-type! NSPDFInfo not bound +!missing-type! NSPDFPanel not bound +!missing-type! NSPICTImageRep not bound !missing-type! NSPageController not bound !missing-type! NSPageLayout not bound -!missing-type! NSPanel not bound !missing-type! NSPanGestureRecognizer not bound +!missing-type! NSPanel not bound !missing-type! NSPasteboard not bound !missing-type! NSPasteboardItem not bound !missing-type! NSPathCell not bound !missing-type! NSPathComponentCell not bound !missing-type! NSPathControl not bound !missing-type! NSPathControlItem not bound -!missing-type! NSPDFImageRep not bound -!missing-type! NSPDFInfo not bound -!missing-type! NSPDFPanel not bound !missing-type! NSPersistentDocument not bound !missing-type! NSPickerTouchBarItem not bound -!missing-type! NSPICTImageRep not bound -!missing-type! NSPopover not bound -!missing-type! NSPopoverTouchBarItem not bound !missing-type! NSPopUpButton not bound !missing-type! NSPopUpButtonCell not bound +!missing-type! NSPopover not bound +!missing-type! NSPopoverTouchBarItem not bound !missing-type! NSPredicateEditor not bound !missing-type! NSPredicateEditorRowTemplate not bound !missing-type! NSPressGestureRecognizer not bound !missing-type! NSPressureConfiguration not bound -!missing-type! NSPrinter not bound !missing-type! NSPrintInfo not bound !missing-type! NSPrintOperation not bound !missing-type! NSPrintPanel not bound +!missing-type! NSPrinter not bound !missing-type! NSProgressIndicator not bound !missing-type! NSResponder not bound !missing-type! NSRotationGestureRecognizer not bound @@ -8430,8 +8465,8 @@ !missing-type! NSRunningApplication not bound !missing-type! NSSavePanel not bound !missing-type! NSScreen not bound -!missing-type! NSScroller not bound !missing-type! NSScrollView not bound +!missing-type! NSScroller not bound !missing-type! NSScrubber not bound !missing-type! NSScrubberArrangedView not bound !missing-type! NSScrubberFlowLayout not bound @@ -8476,6 +8511,9 @@ !missing-type! NSStoryboard not bound !missing-type! NSStoryboardSegue not bound !missing-type! NSSwitch not bound +!missing-type! NSTabView not bound +!missing-type! NSTabViewController not bound +!missing-type! NSTabViewItem not bound !missing-type! NSTableCellView not bound !missing-type! NSTableColumn not bound !missing-type! NSTableHeaderCell not bound @@ -8484,10 +8522,8 @@ !missing-type! NSTableView not bound !missing-type! NSTableViewDiffableDataSource not bound !missing-type! NSTableViewRowAction not bound -!missing-type! NSTabView not bound -!missing-type! NSTabViewController not bound -!missing-type! NSTabViewItem not bound !missing-type! NSText not bound +!missing-type! NSTextAttachmentCell not bound !missing-type! NSTextCheckingController not bound !missing-type! NSTextField not bound !missing-type! NSTextFieldCell not bound @@ -8522,37 +8558,3 @@ !missing-type! NSWorkspaceAuthorization not bound !missing-type! NSWorkspaceOpenConfiguration not bound ## appended from unclassified file -!missing-field! NSApplicationProtectedDataDidBecomeAvailableNotification not bound -!missing-field! NSApplicationProtectedDataWillBecomeUnavailableNotification not bound -!missing-field! NSImageIPTCData not bound -!missing-field! NSTextViewDidSwitchToNSLayoutManagerNotification not bound -!missing-field! NSTextViewWillSwitchToNSLayoutManagerNotification not bound -!missing-selector! +NSColor::systemCyanColor not bound -!missing-selector! +NSColor::systemMintColor not bound -!missing-selector! +NSDocument::allowedClassesForRestorableStateKeyPath: not bound -!missing-selector! +NSResponder::allowedClassesForRestorableStateKeyPath: not bound -!missing-selector! NSApplication::isProtectedDataAvailable not bound -!missing-selector! NSMenuItem::allowsAutomaticKeyEquivalentLocalization not bound -!missing-selector! NSMenuItem::allowsAutomaticKeyEquivalentMirroring not bound -!missing-selector! NSMenuItem::setAllowsAutomaticKeyEquivalentLocalization: not bound -!missing-selector! NSMenuItem::setAllowsAutomaticKeyEquivalentMirroring: not bound -!missing-selector! NSScreenNSScreen::displayUpdateGranularity not bound -!missing-selector! NSScreenNSScreen::lastDisplayUpdateTimestamp not bound -!missing-selector! NSScreenNSScreen::maximumFramesPerSecond not bound -!missing-selector! NSScreenNSScreen::maximumRefreshInterval not bound -!missing-selector! NSScreenNSScreen::minimumRefreshInterval not bound -!missing-selector! NSTextView::textContentStorage not bound -!missing-selector! NSTextView::textLayoutManager not bound -!missing-selector! NSWorkspace::setDefaultApplicationAtURL:toOpenContentType:completionHandler: not bound -!missing-selector! NSWorkspace::setDefaultApplicationAtURL:toOpenContentTypeOfFileAtURL:completionHandler: not bound -!missing-selector! NSWorkspace::setDefaultApplicationAtURL:toOpenFileAtURL:completionHandler: not bound -!missing-selector! NSWorkspace::setDefaultApplicationAtURL:toOpenURLsWithScheme:completionHandler: not bound -!missing-selector! NSWorkspace::URLForApplicationToOpenContentType: not bound -!missing-selector! NSWorkspace::URLsForApplicationsToOpenContentType: not bound -!missing-selector! NSWorkspace::URLsForApplicationsToOpenURL: not bound -!missing-selector! NSWorkspace::URLsForApplicationsWithBundleIdentifier: not bound -!missing-selector! +NSImageSymbolConfiguration::configurationPreferringMulticolor not bound -!missing-selector! +NSImageSymbolConfiguration::configurationWithHierarchicalColor: not bound -!missing-selector! +NSImageSymbolConfiguration::configurationWithPaletteColors: not bound -!missing-selector! NSImage::symbolConfiguration not bound -!missing-selector! NSImageSymbolConfiguration::configurationByApplyingConfiguration: not bound diff --git a/tests/xtro-sharpie/MacCatalyst-CHIP.ignore b/tests/xtro-sharpie/MacCatalyst-CHIP.ignore index 55b36f5f2717..87cb23a5831d 100644 --- a/tests/xtro-sharpie/MacCatalyst-CHIP.ignore +++ b/tests/xtro-sharpie/MacCatalyst-CHIP.ignore @@ -291,12 +291,10 @@ !missing-selector! CHIPSetupPayload::getAllOptionalVendorData: not bound !missing-selector! CHIPSetupPayload::productID not bound !missing-selector! CHIPSetupPayload::rendezvousInformation not bound -!missing-selector! CHIPSetupPayload::requiresCustomFlow not bound !missing-selector! CHIPSetupPayload::serialNumber not bound !missing-selector! CHIPSetupPayload::setDiscriminator: not bound !missing-selector! CHIPSetupPayload::setProductID: not bound !missing-selector! CHIPSetupPayload::setRendezvousInformation: not bound -!missing-selector! CHIPSetupPayload::setRequiresCustomFlow: not bound !missing-selector! CHIPSetupPayload::setSerialNumber: not bound !missing-selector! CHIPSetupPayload::setSetUpPINCode: not bound !missing-selector! CHIPSetupPayload::setUpPINCode not bound diff --git a/tests/xtro-sharpie/MacCatalyst-CHIP.todo b/tests/xtro-sharpie/MacCatalyst-CHIP.todo new file mode 100644 index 000000000000..64bb77894b6d --- /dev/null +++ b/tests/xtro-sharpie/MacCatalyst-CHIP.todo @@ -0,0 +1,150 @@ +!missing-enum! CHIPCommissioningFlow not bound +!missing-selector! CHIPAccountLogin::getSetupPIN:responseHandler: not bound +!missing-selector! CHIPAccountLogin::login:setupPIN:responseHandler: not bound +!missing-selector! CHIPAccountLogin::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPApplicationLauncher::launchApp:catalogVendorId:applicationId:responseHandler: not bound +!missing-selector! CHIPApplicationLauncher::readAttributeApplicationLauncherListWithResponseHandler: not bound +!missing-selector! CHIPApplicationLauncher::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPAudioOutput::readAttributeAudioOutputListWithResponseHandler: not bound +!missing-selector! CHIPAudioOutput::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPAudioOutput::renameOutput:name:responseHandler: not bound +!missing-selector! CHIPAudioOutput::selectOutput:responseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::configureAttributePresentValueWithMinInterval:maxInterval:responseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::configureAttributeStatusFlagsWithMinInterval:maxInterval:responseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::readAttributeOutOfServiceWithResponseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::readAttributePresentValueWithResponseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::readAttributeStatusFlagsWithResponseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::reportAttributePresentValueWithResponseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::reportAttributeStatusFlagsWithResponseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::writeAttributeOutOfServiceWithValue:responseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::writeAttributePresentValueWithValue:responseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeHardwareVersionStringWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeHardwareVersionWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeManufacturingDateWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributePartNumberWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeProductLabelWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeProductNameWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeProductURLWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeReachableWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeSerialNumberWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeSoftwareVersionStringWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeSoftwareVersionWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeUserLabelWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeVendorIDWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeVendorNameWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::writeAttributeUserLabelWithValue:responseHandler: not bound +!missing-selector! CHIPContentLaunch::launchContent:data:responseHandler: not bound +!missing-selector! CHIPContentLaunch::launchURL:displayString:responseHandler: not bound +!missing-selector! CHIPContentLaunch::readAttributeAcceptsHeaderListWithResponseHandler: not bound +!missing-selector! CHIPContentLaunch::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPContentLaunch::readAttributeSupportedStreamingTypesWithResponseHandler: not bound +!missing-selector! CHIPEthernetNetworkDiagnostics::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPEthernetNetworkDiagnostics::readAttributeCollisionCountWithResponseHandler: not bound +!missing-selector! CHIPEthernetNetworkDiagnostics::readAttributeOverrunCountWithResponseHandler: not bound +!missing-selector! CHIPEthernetNetworkDiagnostics::readAttributePacketRxCountWithResponseHandler: not bound +!missing-selector! CHIPEthernetNetworkDiagnostics::readAttributePacketTxCountWithResponseHandler: not bound +!missing-selector! CHIPEthernetNetworkDiagnostics::readAttributeTxErrCountWithResponseHandler: not bound +!missing-selector! CHIPEthernetNetworkDiagnostics::resetCounts: not bound +!missing-selector! CHIPFixedLabel::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPFixedLabel::readAttributeLabelListWithResponseHandler: not bound +!missing-selector! CHIPGeneralDiagnostics::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPGeneralDiagnostics::readAttributeNetworkInterfacesWithResponseHandler: not bound +!missing-selector! CHIPGeneralDiagnostics::readAttributeRebootCountWithResponseHandler: not bound +!missing-selector! CHIPKeypadInput::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPKeypadInput::sendKey:responseHandler: not bound +!missing-selector! CHIPMediaInput::hideInputStatus: not bound +!missing-selector! CHIPMediaInput::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPMediaInput::readAttributeMediaInputListWithResponseHandler: not bound +!missing-selector! CHIPMediaInput::renameInput:name:responseHandler: not bound +!missing-selector! CHIPMediaInput::selectInput:responseHandler: not bound +!missing-selector! CHIPMediaInput::showInputStatus: not bound +!missing-selector! CHIPMediaPlayback::mediaFastForward: not bound +!missing-selector! CHIPMediaPlayback::mediaNext: not bound +!missing-selector! CHIPMediaPlayback::mediaPause: not bound +!missing-selector! CHIPMediaPlayback::mediaPlay: not bound +!missing-selector! CHIPMediaPlayback::mediaPrevious: not bound +!missing-selector! CHIPMediaPlayback::mediaRewind: not bound +!missing-selector! CHIPMediaPlayback::mediaSkipBackward:responseHandler: not bound +!missing-selector! CHIPMediaPlayback::mediaSkipForward:responseHandler: not bound +!missing-selector! CHIPMediaPlayback::mediaSkipSeek:responseHandler: not bound +!missing-selector! CHIPMediaPlayback::mediaStartOver: not bound +!missing-selector! CHIPMediaPlayback::mediaStop: not bound +!missing-selector! CHIPMediaPlayback::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPOperationalCredentials::addOpCert:iCACertificate:iPKValue:caseAdminNode:adminVendorId:responseHandler: not bound +!missing-selector! CHIPOperationalCredentials::opCSRRequest:responseHandler: not bound +!missing-selector! CHIPRelativeHumidityMeasurement::configureAttributeMeasuredValueWithMinInterval:maxInterval:change:responseHandler: not bound +!missing-selector! CHIPRelativeHumidityMeasurement::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPRelativeHumidityMeasurement::readAttributeMaxMeasuredValueWithResponseHandler: not bound +!missing-selector! CHIPRelativeHumidityMeasurement::readAttributeMeasuredValueWithResponseHandler: not bound +!missing-selector! CHIPRelativeHumidityMeasurement::readAttributeMinMeasuredValueWithResponseHandler: not bound +!missing-selector! CHIPRelativeHumidityMeasurement::reportAttributeMeasuredValueWithResponseHandler: not bound +!missing-selector! CHIPSetupPayload::commissioningFlow not bound +!missing-selector! CHIPSetupPayload::setCommissioningFlow: not bound +!missing-selector! CHIPSoftwareDiagnostics::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPSoftwareDiagnostics::readAttributeCurrentHeapHighWatermarkWithResponseHandler: not bound +!missing-selector! CHIPSoftwareDiagnostics::resetWatermarks: not bound +!missing-selector! CHIPTargetNavigator::navigateTarget:data:responseHandler: not bound +!missing-selector! CHIPTargetNavigator::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPTargetNavigator::readAttributeTargetNavigatorListWithResponseHandler: not bound +!missing-selector! CHIPTestCluster::readAttributeListOctetStringWithResponseHandler: not bound +!missing-selector! CHIPTestCluster::readAttributeListStructOctetStringWithResponseHandler: not bound +!missing-selector! CHIPTestCluster::testUnknownCommand: not bound +!missing-selector! CHIPTrustedRootCertificates::addTrustedRootCertificate:responseHandler: not bound +!missing-selector! CHIPTrustedRootCertificates::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPTrustedRootCertificates::removeTrustedRootCertificate:responseHandler: not bound +!missing-selector! CHIPTvChannel::changeChannel:responseHandler: not bound +!missing-selector! CHIPTvChannel::changeChannelByNumber:minorNumber:responseHandler: not bound +!missing-selector! CHIPTvChannel::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPTvChannel::readAttributeCurrentTvChannelWithResponseHandler: not bound +!missing-selector! CHIPTvChannel::readAttributeTvChannelLineupWithResponseHandler: not bound +!missing-selector! CHIPTvChannel::readAttributeTvChannelListWithResponseHandler: not bound +!missing-selector! CHIPTvChannel::skipChannel:responseHandler: not bound +!missing-selector! CHIPWakeOnLan::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPWakeOnLan::readAttributeWakeOnLanMacAddressWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::configureAttributeConfigStatusWithMinInterval:maxInterval:responseHandler: not bound +!missing-selector! CHIPWindowCovering::configureAttributeCurrentPositionLiftWithMinInterval:maxInterval:change:responseHandler: not bound +!missing-selector! CHIPWindowCovering::configureAttributeCurrentPositionTiltWithMinInterval:maxInterval:change:responseHandler: not bound +!missing-selector! CHIPWindowCovering::configureAttributeWindowCoveringTypeWithMinInterval:maxInterval:responseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeConfigStatusWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeCurrentPositionLiftWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeCurrentPositionTiltWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeInstalledClosedLimitLiftWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeInstalledClosedLimitTiltWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeInstalledOpenLimitLiftWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeInstalledOpenLimitTiltWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeModeWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeWindowCoveringTypeWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::reportAttributeConfigStatusWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::reportAttributeCurrentPositionLiftWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::reportAttributeCurrentPositionTiltWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::reportAttributeWindowCoveringTypeWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::windowCoveringDownClose: not bound +!missing-selector! CHIPWindowCovering::windowCoveringGoToLiftPercentage:responseHandler: not bound +!missing-selector! CHIPWindowCovering::windowCoveringGoToLiftValue:responseHandler: not bound +!missing-selector! CHIPWindowCovering::windowCoveringGoToTiltPercentage:responseHandler: not bound +!missing-selector! CHIPWindowCovering::windowCoveringGoToTiltValue:responseHandler: not bound +!missing-selector! CHIPWindowCovering::windowCoveringStop: not bound +!missing-selector! CHIPWindowCovering::windowCoveringUpOpen: not bound +!missing-selector! CHIPWindowCovering::writeAttributeModeWithValue:responseHandler: not bound +!missing-type! CHIPAccountLogin not bound +!missing-type! CHIPApplicationLauncher not bound +!missing-type! CHIPAudioOutput not bound +!missing-type! CHIPBinaryInputBasic not bound +!missing-type! CHIPBridgedDeviceBasic not bound +!missing-type! CHIPContentLaunch not bound +!missing-type! CHIPEthernetNetworkDiagnostics not bound +!missing-type! CHIPFixedLabel not bound +!missing-type! CHIPGeneralDiagnostics not bound +!missing-type! CHIPKeypadInput not bound +!missing-type! CHIPMediaInput not bound +!missing-type! CHIPMediaPlayback not bound +!missing-type! CHIPRelativeHumidityMeasurement not bound +!missing-type! CHIPSoftwareDiagnostics not bound +!missing-type! CHIPTargetNavigator not bound +!missing-type! CHIPTrustedRootCertificates not bound +!missing-type! CHIPTvChannel not bound +!missing-type! CHIPWakeOnLan not bound +!missing-type! CHIPWindowCovering not bound diff --git a/tests/xtro-sharpie/MacCatalyst-CoreImage.todo b/tests/xtro-sharpie/MacCatalyst-CoreImage.todo index d2a4a2fc088c..2ad5c1fffe6d 100644 --- a/tests/xtro-sharpie/MacCatalyst-CoreImage.todo +++ b/tests/xtro-sharpie/MacCatalyst-CoreImage.todo @@ -1,3 +1,10 @@ +!missing-field! CIRAWDecoderVersion6 not bound +!missing-field! CIRAWDecoderVersion6DNG not bound +!missing-field! CIRAWDecoderVersion7 not bound +!missing-field! CIRAWDecoderVersion7DNG not bound +!missing-field! CIRAWDecoderVersion8 not bound +!missing-field! CIRAWDecoderVersion8DNG not bound +!missing-field! CIRAWDecoderVersionNone not bound !missing-field! kCIApplyOptionColorSpace not bound !missing-field! kCIApplyOptionDefinition not bound !missing-field! kCIApplyOptionExtent not bound @@ -7,14 +14,31 @@ !missing-field! kCIFilterGeneratorExportedKeyTargetObject not bound !missing-field! kCIImageTextureFormat not bound !missing-field! kCIImageTextureTarget not bound +!missing-field! kCIPropertiesKey not bound +!missing-protocol! CIPersonSegmentation not bound !missing-selector! +CIContext::offlineGPUCount not bound +!missing-selector! +CIFilter::convolutionRGB3X3Filter not bound +!missing-selector! +CIFilter::convolutionRGB5X5Filter not bound +!missing-selector! +CIFilter::convolutionRGB7X7Filter not bound +!missing-selector! +CIFilter::convolutionRGB9HorizontalFilter not bound +!missing-selector! +CIFilter::convolutionRGB9VerticalFilter not bound +!missing-selector! +CIFilter::linearLightBlendModeFilter not bound +!missing-selector! +CIFilter::personSegmentationFilter not bound +!missing-selector! +CIFilter::vividLightBlendModeFilter not bound !missing-selector! +CIFilterGenerator::filterGenerator not bound !missing-selector! +CIFilterGenerator::filterGeneratorWithContentsOfURL: not bound !missing-selector! +CIImage::imageWithCGLayer: not bound !missing-selector! +CIImage::imageWithCGLayer:options: not bound !missing-selector! +CIImage::imageWithTexture:size:flipped:options: not bound +!missing-selector! +CIKernel::kernelsWithMetalString:error: not bound +!missing-selector! +CIRAWFilter::filterWithCVPixelBuffer:properties: not bound +!missing-selector! +CIRAWFilter::filterWithImageData:identifierHint: not bound +!missing-selector! +CIRAWFilter::filterWithImageURL: not bound +!missing-selector! +CIRAWFilter::supportedCameraModels not bound +!missing-selector! CIContext::HEIF10RepresentationOfImage:colorSpace:options:error: not bound !missing-selector! CIContext::createCGLayerWithSize:info: not bound !missing-selector! CIContext::reclaimResources not bound +!missing-selector! CIContext::writeHEIF10RepresentationOfImage:toURL:colorSpace:options:error: not bound !missing-selector! CIFilter::apply: not bound !missing-selector! CIFilter::apply:arguments:options: not bound !missing-selector! CIFilter::isEnabled not bound @@ -22,8 +46,8 @@ !missing-selector! CIFilterGenerator::classAttributes not bound !missing-selector! CIFilterGenerator::connectObject:withKey:toObject:withKey: not bound !missing-selector! CIFilterGenerator::disconnectObject:withKey:toObject:withKey: not bound -!missing-selector! CIFilterGenerator::exportedKeys not bound !missing-selector! CIFilterGenerator::exportKey:fromObject:withName: not bound +!missing-selector! CIFilterGenerator::exportedKeys not bound !missing-selector! CIFilterGenerator::filter not bound !missing-selector! CIFilterGenerator::initWithContentsOfURL: not bound !missing-selector! CIFilterGenerator::registerFilterName: not bound @@ -36,31 +60,6 @@ !missing-selector! CIImage::initWithCGLayer:options: not bound !missing-selector! CIImage::initWithTexture:size:flipped:options: not bound !missing-selector! CIKernel::setROISelector: not bound -!missing-type! CIFilterGenerator not bound -## appended from unclassified file -!missing-field! CIRAWDecoderVersion6 not bound -!missing-field! CIRAWDecoderVersion6DNG not bound -!missing-field! CIRAWDecoderVersion7 not bound -!missing-field! CIRAWDecoderVersion7DNG not bound -!missing-field! CIRAWDecoderVersion8 not bound -!missing-field! CIRAWDecoderVersion8DNG not bound -!missing-field! CIRAWDecoderVersionNone not bound -!missing-field! kCIPropertiesKey not bound -!missing-protocol! CIPersonSegmentation not bound -!missing-selector! +CIFilter::convolutionRGB3X3Filter not bound -!missing-selector! +CIFilter::convolutionRGB5X5Filter not bound -!missing-selector! +CIFilter::convolutionRGB7X7Filter not bound -!missing-selector! +CIFilter::convolutionRGB9HorizontalFilter not bound -!missing-selector! +CIFilter::convolutionRGB9VerticalFilter not bound -!missing-selector! +CIFilter::linearLightBlendModeFilter not bound -!missing-selector! +CIFilter::personSegmentationFilter not bound -!missing-selector! +CIFilter::vividLightBlendModeFilter not bound -!missing-selector! +CIRAWFilter::filterWithCVPixelBuffer:properties: not bound -!missing-selector! +CIRAWFilter::filterWithImageData:identifierHint: not bound -!missing-selector! +CIRAWFilter::filterWithImageURL: not bound -!missing-selector! +CIRAWFilter::supportedCameraModels not bound -!missing-selector! CIContext::HEIF10RepresentationOfImage:colorSpace:options:error: not bound -!missing-selector! CIContext::writeHEIF10RepresentationOfImage:toURL:colorSpace:options:error: not bound !missing-selector! CIRAWFilter::baselineExposure not bound !missing-selector! CIRAWFilter::boostAmount not bound !missing-selector! CIRAWFilter::boostShadowAmount not bound @@ -127,4 +126,6 @@ !missing-selector! CIRAWFilter::shadowBias not bound !missing-selector! CIRAWFilter::sharpnessAmount not bound !missing-selector! CIRAWFilter::supportedDecoderVersions not bound +!missing-type! CIFilterGenerator not bound !missing-type! CIRAWFilter not bound +## appended from unclassified file diff --git a/tests/xtro-sharpie/MacCatalyst-CoreMIDI.todo b/tests/xtro-sharpie/MacCatalyst-CoreMIDI.todo index 8efdd95276a0..21c44c22e580 100644 --- a/tests/xtro-sharpie/MacCatalyst-CoreMIDI.todo +++ b/tests/xtro-sharpie/MacCatalyst-CoreMIDI.todo @@ -1,7 +1,15 @@ +!missing-enum! MIDINoteAttributeType not bound +!missing-enum! MIDIPerNoteManagementOptions not bound +!missing-enum! MIDIProgramChangeOptions not bound +!missing-enum! MIDIUtilityStatus not bound +!missing-enum-value! MidiMessageType native value kMIDIMessageTypeUnknownF = 15 not bound +!missing-enum-value! MidiSysExStatus native value kMIDISysExMixedDataSetHeader = 8 not bound +!missing-enum-value! MidiSysExStatus native value kMIDISysExMixedDataSetPayload = 9 not bound !missing-field! kMIDIDriverPropertyUsesSerial not bound !missing-field! kMIDIPropertyFactoryPatchNameFile not bound !missing-field! kMIDIPropertyUserPatchNameFile not bound !missing-pinvoke! MIDIDriverEnableMonitoring is not bound +!missing-pinvoke! MIDIEventListForEachEvent is not bound !missing-pinvoke! MIDIGetSerialPortDrivers is not bound !missing-pinvoke! MIDIGetSerialPortOwner is not bound !missing-pinvoke! MIDISetSerialPortOwner is not bound @@ -12,4 +20,3 @@ !missing-pinvoke! MIDISetupInstall is not bound !missing-pinvoke! MIDISetupToData is not bound ## appended from unclassified file -!missing-enum-value! MidiMessageType native value kMIDIMessageTypeUnknownF = 15 not bound diff --git a/tests/xtro-sharpie/MacCatalyst-GameController.todo b/tests/xtro-sharpie/MacCatalyst-GameController.todo new file mode 100644 index 000000000000..4527b6accfb2 --- /dev/null +++ b/tests/xtro-sharpie/MacCatalyst-GameController.todo @@ -0,0 +1,11 @@ +!missing-field! GCInputDirectionalCenterButton not bound +!missing-field! GCInputDirectionalTouchSurfaceButton not bound +!missing-field! GCInputMicroGamepadButtonA not bound +!missing-field! GCInputMicroGamepadButtonX not bound +!missing-field! GCInputMicroGamepadDpad not bound +!missing-selector! GCVirtualController::connectWithReplyHandler: not bound +!missing-selector! GCVirtualController::initWithConfiguration: not bound +!missing-selector! GCVirtualController::updateConfigurationForElement:configuration: not bound +!missing-selector! GCVirtualControllerElementConfiguration::actsAsTouchpad not bound +!missing-selector! GCVirtualControllerElementConfiguration::isHidden not bound +!missing-selector! GCVirtualControllerElementConfiguration::setActsAsTouchpad: not bound diff --git a/tests/xtro-sharpie/MacCatalyst-ImageIO.todo b/tests/xtro-sharpie/MacCatalyst-ImageIO.todo new file mode 100644 index 000000000000..b5a8ec1f4414 --- /dev/null +++ b/tests/xtro-sharpie/MacCatalyst-ImageIO.todo @@ -0,0 +1 @@ +!missing-field! kCGImagePropertyPNGPixelsAspectRatio not bound diff --git a/tests/xtro-sharpie/MacCatalyst-LocalAuthentication.todo b/tests/xtro-sharpie/MacCatalyst-LocalAuthentication.todo new file mode 100644 index 000000000000..db7eec04b3f3 --- /dev/null +++ b/tests/xtro-sharpie/MacCatalyst-LocalAuthentication.todo @@ -0,0 +1 @@ +!missing-enum-value! LAStatus native value LAErrorInvalidDimensions = -14 not bound diff --git a/tests/xtro-sharpie/MacCatalyst-LocalAuthenticationEmbeddedUI.todo b/tests/xtro-sharpie/MacCatalyst-LocalAuthenticationEmbeddedUI.todo index 0109b523f353..c1acdf86f235 100644 --- a/tests/xtro-sharpie/MacCatalyst-LocalAuthenticationEmbeddedUI.todo +++ b/tests/xtro-sharpie/MacCatalyst-LocalAuthenticationEmbeddedUI.todo @@ -1,3 +1,5 @@ !missing-selector! LAAuthenticationView::context not bound +!missing-selector! LAAuthenticationView::controlSize not bound !missing-selector! LAAuthenticationView::initWithContext: not bound +!missing-selector! LAAuthenticationView::initWithContext:controlSize: not bound !missing-type! LAAuthenticationView not bound diff --git a/tests/xtro-sharpie/MacCatalyst-Metal.todo b/tests/xtro-sharpie/MacCatalyst-Metal.todo index 8d54b7c2a0ef..c9e4b8ee598f 100644 --- a/tests/xtro-sharpie/MacCatalyst-Metal.todo +++ b/tests/xtro-sharpie/MacCatalyst-Metal.todo @@ -93,13 +93,34 @@ !incorrect-protocol-member! MTLTexture::allowGPUOptimizedContents is REQUIRED and should be abstract !incorrect-protocol-member! MTLTexture::isShareable is REQUIRED and should be abstract !incorrect-protocol-member! MTLTexture::newSharedTextureHandle is REQUIRED and should be abstract +!missing-enum! MTLAccelerationStructureInstanceDescriptorType not bound !missing-enum! MTLDeviceLocation not bound +!missing-enum! MTLMotionBorderMode not bound +!missing-enum-value! MTLAccelerationStructureUsage native value MTLAccelerationStructureUsageExtendedLimits = 4 not bound +!missing-enum-value! MTLCommandBufferError native value MTLCommandBufferErrorStackOverflow = 12 not bound +!missing-enum-value! MTLDataType native value MTLDataTypeLong = 81 not bound +!missing-enum-value! MTLDataType native value MTLDataTypeLong2 = 82 not bound +!missing-enum-value! MTLDataType native value MTLDataTypeLong3 = 83 not bound +!missing-enum-value! MTLDataType native value MTLDataTypeLong4 = 84 not bound +!missing-enum-value! MTLDataType native value MTLDataTypeULong = 85 not bound +!missing-enum-value! MTLDataType native value MTLDataTypeULong2 = 86 not bound +!missing-enum-value! MTLDataType native value MTLDataTypeULong3 = 87 not bound +!missing-enum-value! MTLDataType native value MTLDataTypeULong4 = 88 not bound +!missing-enum-value! MTLIntersectionFunctionSignature native value MTLIntersectionFunctionSignatureExtendedLimits = 32 not bound +!missing-enum-value! MTLIntersectionFunctionSignature native value MTLIntersectionFunctionSignatureInstanceMotion = 8 not bound +!missing-enum-value! MTLIntersectionFunctionSignature native value MTLIntersectionFunctionSignaturePrimitiveMotion = 16 not bound +!missing-enum-value! MTLLanguageVersion native value MTLLanguageVersion2_4 = 131076 not bound +!missing-enum-value! MTLRenderStages native value MTLRenderStageTile = 4 not bound !missing-field! MTLDeviceRemovalRequestedNotification not bound !missing-field! MTLDeviceWasAddedNotification not bound !missing-field! MTLDeviceWasRemovedNotification not bound !missing-pinvoke! MTLCopyAllDevices is not bound !missing-pinvoke! MTLCopyAllDevicesWithObserver is not bound !missing-pinvoke! MTLRemoveDeviceObserver is not bound +!missing-protocol! MTLFunctionStitchingAttribute not bound +!missing-protocol! MTLFunctionStitchingNode not bound +!missing-protocol-member! MTLAccelerationStructureCommandEncoder::writeCompactedAccelerationStructureSize:toBuffer:offset:sizeDataType: not found +!missing-protocol-member! MTLBinaryArchive::addFunctionWithDescriptor:library:error: not found !missing-protocol-member! MTLBlitCommandEncoder::getTextureAccessCounters:region:mipLevel:slice:resetCounters:countersBuffer:countersBufferOffset: not found !missing-protocol-member! MTLBlitCommandEncoder::resetTextureAccessCounters:region:mipLevel:slice: not found !missing-protocol-member! MTLBlitCommandEncoder::synchronizeResource: not found @@ -114,61 +135,19 @@ !missing-protocol-member! MTLDevice::location not found !missing-protocol-member! MTLDevice::locationNumber not found !missing-protocol-member! MTLDevice::maxTransferRate not found +!missing-protocol-member! MTLDevice::newLibraryWithStitchedDescriptor:completionHandler: not found +!missing-protocol-member! MTLDevice::newLibraryWithStitchedDescriptor:error: not found !missing-protocol-member! MTLDevice::peerCount not found !missing-protocol-member! MTLDevice::peerGroupID not found !missing-protocol-member! MTLDevice::peerIndex not found !missing-protocol-member! MTLDevice::recommendedMaxWorkingSetSize not found !missing-protocol-member! MTLDevice::supportsBCTextureCompression not found -!missing-protocol-member! MTLRenderCommandEncoder::memoryBarrierWithResources:count:afterStages:beforeStages: not found -!missing-protocol-member! MTLRenderCommandEncoder::memoryBarrierWithScope:afterStages:beforeStages: not found -!missing-protocol-member! MTLRenderCommandEncoder::textureBarrier not found -!missing-protocol-member! MTLTexture::firstMipmapInTail not found -!missing-protocol-member! MTLTexture::isSparse not found -!missing-protocol-member! MTLTexture::newRemoteTextureViewForDevice: not found -!missing-protocol-member! MTLTexture::remoteStorageTexture not found -!missing-protocol-member! MTLTexture::tailSizeInBytes not found -!missing-selector! MTLCaptureManager::init not bound -!missing-selector! MTLHeapDescriptor::hazardTrackingMode not bound -!missing-selector! MTLHeapDescriptor::resourceOptions not bound -!missing-selector! MTLHeapDescriptor::setHazardTrackingMode: not bound -!missing-selector! MTLHeapDescriptor::setResourceOptions: not bound -!missing-selector! MTLHeapDescriptor::setType: not bound -!missing-selector! MTLHeapDescriptor::type not bound -!missing-selector! MTLRasterizationRateLayerDescriptor::horizontal not bound -!missing-selector! MTLRasterizationRateLayerDescriptor::horizontalSampleStorage not bound -!missing-selector! MTLRasterizationRateLayerDescriptor::init not bound -!missing-selector! MTLRasterizationRateLayerDescriptor::sampleCount not bound -!missing-selector! MTLRasterizationRateLayerDescriptor::vertical not bound -!missing-selector! MTLRasterizationRateLayerDescriptor::verticalSampleStorage not bound -!missing-selector! MTLRasterizationRateMapDescriptor::label not bound -!missing-selector! MTLRasterizationRateMapDescriptor::layerCount not bound -!missing-selector! MTLRasterizationRateMapDescriptor::layers not bound -!missing-selector! MTLRasterizationRateMapDescriptor::screenSize not bound -!missing-selector! MTLRasterizationRateMapDescriptor::setLabel: not bound -!missing-selector! MTLRasterizationRateMapDescriptor::setScreenSize: not bound -## appended from unclassified file -!missing-enum! MTLAccelerationStructureInstanceDescriptorType not bound -!missing-enum! MTLMotionBorderMode not bound -!missing-enum-value! MTLAccelerationStructureUsage native value MTLAccelerationStructureUsageExtendedLimits = 4 not bound -!missing-enum-value! MTLCommandBufferError native value MTLCommandBufferErrorStackOverflow = 12 not bound -!missing-enum-value! MTLDataType native value MTLDataTypeLong = 81 not bound -!missing-enum-value! MTLDataType native value MTLDataTypeLong2 = 82 not bound -!missing-enum-value! MTLDataType native value MTLDataTypeLong3 = 83 not bound -!missing-enum-value! MTLDataType native value MTLDataTypeLong4 = 84 not bound -!missing-enum-value! MTLDataType native value MTLDataTypeULong = 85 not bound -!missing-enum-value! MTLDataType native value MTLDataTypeULong2 = 86 not bound -!missing-enum-value! MTLDataType native value MTLDataTypeULong3 = 87 not bound -!missing-enum-value! MTLDataType native value MTLDataTypeULong4 = 88 not bound -!missing-enum-value! MTLLanguageVersion native value MTLLanguageVersion2_4 = 131076 not bound -!missing-enum-value! MTLRenderStages native value MTLRenderStageTile = 4 not bound -!missing-protocol! MTLFunctionStitchingAttribute not bound -!missing-protocol! MTLFunctionStitchingNode not bound -!missing-protocol-member! MTLAccelerationStructureCommandEncoder::writeCompactedAccelerationStructureSize:toBuffer:offset:sizeDataType: not found -!missing-protocol-member! MTLBinaryArchive::addFunctionWithDescriptor:library:error: not found -!missing-protocol-member! MTLDevice::newLibraryWithDescriptor:error: not found !missing-protocol-member! MTLDevice::supportsFunctionPointersFromRender not found +!missing-protocol-member! MTLDevice::supportsPrimitiveMotionBlur not found !missing-protocol-member! MTLDevice::supportsRaytracingFromRender not found !missing-protocol-member! MTLDevice::supportsRenderDynamicLibraries not found +!missing-protocol-member! MTLRenderCommandEncoder::memoryBarrierWithResources:count:afterStages:beforeStages: not found +!missing-protocol-member! MTLRenderCommandEncoder::memoryBarrierWithScope:afterStages:beforeStages: not found !missing-protocol-member! MTLRenderCommandEncoder::setFragmentAccelerationStructure:atBufferIndex: not found !missing-protocol-member! MTLRenderCommandEncoder::setFragmentIntersectionFunctionTable:atBufferIndex: not found !missing-protocol-member! MTLRenderCommandEncoder::setFragmentIntersectionFunctionTables:withBufferRange: not found @@ -184,10 +163,16 @@ !missing-protocol-member! MTLRenderCommandEncoder::setVertexIntersectionFunctionTables:withBufferRange: not found !missing-protocol-member! MTLRenderCommandEncoder::setVertexVisibleFunctionTable:atBufferIndex: not found !missing-protocol-member! MTLRenderCommandEncoder::setVertexVisibleFunctionTables:withBufferRange: not found +!missing-protocol-member! MTLRenderCommandEncoder::textureBarrier not found !missing-protocol-member! MTLRenderPipelineState::functionHandleWithFunction:stage: not found !missing-protocol-member! MTLRenderPipelineState::newIntersectionFunctionTableWithDescriptor:stage: not found !missing-protocol-member! MTLRenderPipelineState::newRenderPipelineStateWithAdditionalBinaryFunctions:error: not found !missing-protocol-member! MTLRenderPipelineState::newVisibleFunctionTableWithDescriptor:stage: not found +!missing-protocol-member! MTLTexture::firstMipmapInTail not found +!missing-protocol-member! MTLTexture::isSparse not found +!missing-protocol-member! MTLTexture::newRemoteTextureViewForDevice: not found +!missing-protocol-member! MTLTexture::remoteStorageTexture not found +!missing-protocol-member! MTLTexture::tailSizeInBytes not found !missing-selector! +MTLAccelerationStructureMotionBoundingBoxGeometryDescriptor::descriptor not bound !missing-selector! +MTLAccelerationStructureMotionTriangleGeometryDescriptor::descriptor not bound !missing-selector! +MTLMotionKeyframeData::data not bound @@ -211,6 +196,7 @@ !missing-selector! MTLAccelerationStructureMotionTriangleGeometryDescriptor::triangleCount not bound !missing-selector! MTLAccelerationStructureMotionTriangleGeometryDescriptor::vertexBuffers not bound !missing-selector! MTLAccelerationStructureMotionTriangleGeometryDescriptor::vertexStride not bound +!missing-selector! MTLCaptureManager::init not bound !missing-selector! MTLComputePipelineDescriptor::preloadedLibraries not bound !missing-selector! MTLComputePipelineDescriptor::setPreloadedLibraries: not bound !missing-selector! MTLFunctionDescriptor::binaryArchives not bound @@ -234,6 +220,12 @@ !missing-selector! MTLFunctionStitchingInputNode::argumentIndex not bound !missing-selector! MTLFunctionStitchingInputNode::initWithArgumentIndex: not bound !missing-selector! MTLFunctionStitchingInputNode::setArgumentIndex: not bound +!missing-selector! MTLHeapDescriptor::hazardTrackingMode not bound +!missing-selector! MTLHeapDescriptor::resourceOptions not bound +!missing-selector! MTLHeapDescriptor::setHazardTrackingMode: not bound +!missing-selector! MTLHeapDescriptor::setResourceOptions: not bound +!missing-selector! MTLHeapDescriptor::setType: not bound +!missing-selector! MTLHeapDescriptor::type not bound !missing-selector! MTLInstanceAccelerationStructureDescriptor::instanceDescriptorType not bound !missing-selector! MTLInstanceAccelerationStructureDescriptor::motionTransformBuffer not bound !missing-selector! MTLInstanceAccelerationStructureDescriptor::motionTransformBufferOffset not bound @@ -258,8 +250,20 @@ !missing-selector! MTLPrimitiveAccelerationStructureDescriptor::setMotionKeyframeCount: not bound !missing-selector! MTLPrimitiveAccelerationStructureDescriptor::setMotionStartBorderMode: not bound !missing-selector! MTLPrimitiveAccelerationStructureDescriptor::setMotionStartTime: not bound +!missing-selector! MTLRasterizationRateLayerDescriptor::horizontal not bound +!missing-selector! MTLRasterizationRateLayerDescriptor::horizontalSampleStorage not bound +!missing-selector! MTLRasterizationRateLayerDescriptor::init not bound !missing-selector! MTLRasterizationRateLayerDescriptor::maxSampleCount not bound +!missing-selector! MTLRasterizationRateLayerDescriptor::sampleCount not bound +!missing-selector! MTLRasterizationRateLayerDescriptor::vertical not bound +!missing-selector! MTLRasterizationRateLayerDescriptor::verticalSampleStorage not bound !missing-selector! MTLRasterizationRateLayerDescriptorMTLRasterizationRateLayerDescriptor::setSampleCount: not bound +!missing-selector! MTLRasterizationRateMapDescriptor::label not bound +!missing-selector! MTLRasterizationRateMapDescriptor::layerCount not bound +!missing-selector! MTLRasterizationRateMapDescriptor::layers not bound +!missing-selector! MTLRasterizationRateMapDescriptor::screenSize not bound +!missing-selector! MTLRasterizationRateMapDescriptor::setLabel: not bound +!missing-selector! MTLRasterizationRateMapDescriptor::setScreenSize: not bound !missing-selector! MTLRenderPipelineDescriptor::fragmentLinkedFunctions not bound !missing-selector! MTLRenderPipelineDescriptor::fragmentPreloadedLibraries not bound !missing-selector! MTLRenderPipelineDescriptor::maxFragmentCallStackDepth not bound @@ -303,8 +307,4 @@ !missing-type! MTLMotionKeyframeData not bound !missing-type! MTLRenderPipelineFunctionsDescriptor not bound !missing-type! MTLStitchedLibraryDescriptor not bound -!missing-enum-value! MTLIntersectionFunctionSignature native value MTLIntersectionFunctionSignatureExtendedLimits = 32 not bound -!missing-enum-value! MTLIntersectionFunctionSignature native value MTLIntersectionFunctionSignatureInstanceMotion = 8 not bound -!missing-enum-value! MTLIntersectionFunctionSignature native value MTLIntersectionFunctionSignaturePrimitiveMotion = 16 not bound -!missing-protocol-member! MTLDevice::newLibraryWithDescriptor:completionHandler: not found -!missing-protocol-member! MTLDevice::supportsPrimitiveMotionBlur not found +## appended from unclassified file diff --git a/tests/xtro-sharpie/MacCatalyst-MetalPerformanceShadersGraph.todo b/tests/xtro-sharpie/MacCatalyst-MetalPerformanceShadersGraph.todo index 8161c8537103..fdfb87e16dc4 100644 --- a/tests/xtro-sharpie/MacCatalyst-MetalPerformanceShadersGraph.todo +++ b/tests/xtro-sharpie/MacCatalyst-MetalPerformanceShadersGraph.todo @@ -3,46 +3,70 @@ !missing-enum! MPSGraphOptions not bound !missing-enum! MPSGraphPaddingMode not bound !missing-enum! MPSGraphPaddingStyle not bound +!missing-enum! MPSGraphReductionMode not bound !missing-enum! MPSGraphResizeMode not bound +!missing-enum! MPSGraphScatterMode not bound +!missing-enum! MPSGraphSparseStorageType not bound !missing-enum! MPSGraphTensorNamedDataLayout not bound !missing-selector! +MPSGraphConvolution2DOpDescriptor::descriptorWithStrideInX:strideInY:dilationRateInX:dilationRateInY:groups:paddingLeft:paddingRight:paddingTop:paddingBottom:paddingStyle:dataLayout:weightsLayout: not bound !missing-selector! +MPSGraphConvolution2DOpDescriptor::descriptorWithStrideInX:strideInY:dilationRateInX:dilationRateInY:groups:paddingStyle:dataLayout:weightsLayout: not bound +!missing-selector! +MPSGraphCreateSparseOpDescriptor::descriptorWithStorageType:dataType: not bound !missing-selector! +MPSGraphDepthwiseConvolution2DOpDescriptor::descriptorWithDataLayout:weightsLayout: not bound !missing-selector! +MPSGraphDepthwiseConvolution2DOpDescriptor::descriptorWithStrideInX:strideInY:dilationRateInX:dilationRateInY:paddingLeft:paddingRight:paddingTop:paddingBottom:paddingStyle:dataLayout:weightsLayout: not bound +!missing-selector! +MPSGraphDepthwiseConvolution3DOpDescriptor::descriptorWithPaddingStyle: not bound +!missing-selector! +MPSGraphDepthwiseConvolution3DOpDescriptor::descriptorWithStrides:dilationRates:paddingValues:paddingStyle: not bound !missing-selector! +MPSGraphDevice::deviceWithMTLDevice: not bound !missing-selector! +MPSGraphPooling2DOpDescriptor::descriptorWithKernelWidth:kernelHeight:strideInX:strideInY:dilationRateInX:dilationRateInY:paddingLeft:paddingRight:paddingTop:paddingBottom:paddingStyle:dataLayout: not bound !missing-selector! +MPSGraphPooling2DOpDescriptor::descriptorWithKernelWidth:kernelHeight:strideInX:strideInY:paddingStyle:dataLayout: not bound +!missing-selector! +MPSGraphPooling4DOpDescriptor::descriptorWithKernelSizes:paddingStyle: not bound +!missing-selector! +MPSGraphPooling4DOpDescriptor::descriptorWithKernelSizes:strides:dilationRates:paddingValues:paddingStyle: not bound +!missing-selector! +MPSGraphStencilOpDescriptor::descriptorWithExplicitPadding: not bound +!missing-selector! +MPSGraphStencilOpDescriptor::descriptorWithOffsets:explicitPadding: not bound +!missing-selector! +MPSGraphStencilOpDescriptor::descriptorWithPaddingStyle: not bound +!missing-selector! +MPSGraphStencilOpDescriptor::descriptorWithReductionMode:offsets:strides:dilationRates:explicitPadding:boundaryMode:paddingStyle:paddingConstant: not bound +!missing-selector! MPSGraph::L2NormPooling4DGradientWithGradientTensor:sourceTensor:descriptor:name: not bound +!missing-selector! MPSGraph::L2NormPooling4DWithSourceTensor:descriptor:name: not bound !missing-selector! MPSGraph::absoluteWithTensor:name: not bound -!missing-selector! MPSGraph::acoshWithTensor:name: not bound !missing-selector! MPSGraph::acosWithTensor:name: not bound +!missing-selector! MPSGraph::acoshWithTensor:name: not bound !missing-selector! MPSGraph::additionWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::applyStochasticGradientDescentWithLearningRateTensor:variable:gradientTensor:name: not bound -!missing-selector! MPSGraph::asinhWithTensor:name: not bound !missing-selector! MPSGraph::asinWithTensor:name: not bound +!missing-selector! MPSGraph::asinhWithTensor:name: not bound !missing-selector! MPSGraph::assignVariable:withValueOfTensor:name: not bound !missing-selector! MPSGraph::atan2WithPrimaryTensor:secondaryTensor:name: not bound -!missing-selector! MPSGraph::atanhWithTensor:name: not bound !missing-selector! MPSGraph::atanWithTensor:name: not bound +!missing-selector! MPSGraph::atanhWithTensor:name: not bound !missing-selector! MPSGraph::avgPooling2DGradientWithGradientTensor:sourceTensor:descriptor:name: not bound !missing-selector! MPSGraph::avgPooling2DWithSourceTensor:descriptor:name: not bound +!missing-selector! MPSGraph::avgPooling4DGradientWithGradientTensor:sourceTensor:descriptor:name: not bound +!missing-selector! MPSGraph::avgPooling4DWithSourceTensor:descriptor:name: not bound !missing-selector! MPSGraph::ceilWithTensor:name: not bound !missing-selector! MPSGraph::clampWithTensor:minValueTensor:maxValueTensor:name: not bound +!missing-selector! MPSGraph::compileWithDevice:feeds:targetTensors:targetOperations:compilationDescriptor: not bound !missing-selector! MPSGraph::concatTensor:withTensor:dimension:name: not bound +!missing-selector! MPSGraph::concatTensors:dimension:interleave:name: not bound !missing-selector! MPSGraph::concatTensors:dimension:name: not bound !missing-selector! MPSGraph::constantWithData:shape:dataType: not bound !missing-selector! MPSGraph::constantWithScalar:dataType: not bound !missing-selector! MPSGraph::constantWithScalar:shape:dataType: not bound +!missing-selector! MPSGraph::controlDependencyWithOperations:dependentBlock:name: not bound !missing-selector! MPSGraph::convolution2DDataGradientWithIncomingGradientTensor:weightsTensor:outputShape:forwardConvolutionDescriptor:name: not bound !missing-selector! MPSGraph::convolution2DWeightsGradientWithIncomingGradientTensor:sourceTensor:outputShape:forwardConvolutionDescriptor:name: not bound !missing-selector! MPSGraph::convolution2DWithSourceTensor:weightsTensor:descriptor:name: not bound !missing-selector! MPSGraph::convolutionTranspose2DDataGradientWithIncomingGradientTensor:weightsTensor:outputShape:forwardConvolutionDescriptor:name: not bound !missing-selector! MPSGraph::convolutionTranspose2DWeightsGradientWithIncomingGradientTensor:sourceTensor:outputShape:forwardConvolutionDescriptor:name: not bound !missing-selector! MPSGraph::convolutionTranspose2DWithSourceTensor:weightsTensor:outputShape:descriptor:name: not bound -!missing-selector! MPSGraph::coshWithTensor:name: not bound !missing-selector! MPSGraph::cosWithTensor:name: not bound +!missing-selector! MPSGraph::coshWithTensor:name: not bound +!missing-selector! MPSGraph::depthToSpace2DTensor:widthAxis:heightAxis:depthAxis:blockSize:usePixelShuffleOrder:name: not bound +!missing-selector! MPSGraph::depthToSpace2DTensor:widthAxisTensor:heightAxisTensor:depthAxisTensor:blockSize:usePixelShuffleOrder:name: not bound !missing-selector! MPSGraph::depthwiseConvolution2DDataGradientWithIncomingGradientTensor:weightsTensor:outputShape:descriptor:name: not bound !missing-selector! MPSGraph::depthwiseConvolution2DWeightsGradientWithIncomingGradientTensor:sourceTensor:outputShape:descriptor:name: not bound !missing-selector! MPSGraph::depthwiseConvolution2DWithSourceTensor:weightsTensor:descriptor:name: not bound +!missing-selector! MPSGraph::depthwiseConvolution3DDataGradientWithIncomingGradientTensor:weightsTensor:outputShape:descriptor:name: not bound +!missing-selector! MPSGraph::depthwiseConvolution3DWeightsGradientWithIncomingGradientTensor:sourceTensor:outputShape:descriptor:name: not bound +!missing-selector! MPSGraph::depthwiseConvolution3DWithSourceTensor:weightsTensor:descriptor:name: not bound !missing-selector! MPSGraph::divisionNoNaNWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::divisionWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::dropoutTensor:rate:name: not bound @@ -54,14 +78,19 @@ !missing-selector! MPSGraph::exponentBase10WithTensor:name: not bound !missing-selector! MPSGraph::exponentBase2WithTensor:name: not bound !missing-selector! MPSGraph::exponentWithTensor:name: not bound +!missing-selector! MPSGraph::flatten2DTensor:axis:name: not bound +!missing-selector! MPSGraph::flatten2DTensor:axisTensor:name: not bound !missing-selector! MPSGraph::floorModuloWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::floorWithTensor:name: not bound +!missing-selector! MPSGraph::forLoopWithLowerBound:upperBound:step:initialBodyArguments:body:name: not bound +!missing-selector! MPSGraph::forLoopWithNumberOfIterations:initialBodyArguments:body:name: not bound !missing-selector! MPSGraph::gatherNDWithUpdatesTensor:indicesTensor:batchDimensions:name: not bound !missing-selector! MPSGraph::gatherWithUpdatesTensor:indicesTensor:axis:batchDimensions:name: not bound !missing-selector! MPSGraph::gradientForPrimaryTensor:withTensors:name: not bound !missing-selector! MPSGraph::greaterThanOrEqualToWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::greaterThanWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::identityWithTensor:name: not bound +!missing-selector! MPSGraph::ifWithPredicateTensor:thenBlock:elseBlock:name: not bound !missing-selector! MPSGraph::init not bound !missing-selector! MPSGraph::isFiniteWithTensor:name: not bound !missing-selector! MPSGraph::isInfiniteWithTensor:name: not bound @@ -78,10 +107,14 @@ !missing-selector! MPSGraph::logicalXNORWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::logicalXORWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::matrixMultiplicationWithPrimaryTensor:secondaryTensor:name: not bound -!missing-selector! MPSGraph::maximumWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::maxPooling2DGradientWithGradientTensor:sourceTensor:descriptor:name: not bound !missing-selector! MPSGraph::maxPooling2DWithSourceTensor:descriptor:name: not bound +!missing-selector! MPSGraph::maxPooling4DGradientWithGradientTensor:sourceTensor:descriptor:name: not bound +!missing-selector! MPSGraph::maxPooling4DWithSourceTensor:descriptor:name: not bound +!missing-selector! MPSGraph::maximumWithNaNPropagationWithPrimaryTensor:secondaryTensor:name: not bound +!missing-selector! MPSGraph::maximumWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::meanOfTensor:axes:name: not bound +!missing-selector! MPSGraph::minimumWithNaNPropagationWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::minimumWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::moduloWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::multiplicationWithPrimaryTensor:secondaryTensor:name: not bound @@ -105,8 +138,12 @@ !missing-selector! MPSGraph::placeholderWithShape:dataType:name: not bound !missing-selector! MPSGraph::placeholderWithShape:name: not bound !missing-selector! MPSGraph::powerWithPrimaryTensor:secondaryTensor:name: not bound +!missing-selector! MPSGraph::reLUGradientWithIncomingGradient:sourceTensor:name: not bound +!missing-selector! MPSGraph::reLUWithTensor:name: not bound !missing-selector! MPSGraph::readVariable:name: not bound !missing-selector! MPSGraph::reciprocalWithTensor:name: not bound +!missing-selector! MPSGraph::reductionArgMaximumWithTensor:axis:name: not bound +!missing-selector! MPSGraph::reductionArgMinimumWithTensor:axis:name: not bound !missing-selector! MPSGraph::reductionMaximumWithTensor:axes:name: not bound !missing-selector! MPSGraph::reductionMaximumWithTensor:axis:name: not bound !missing-selector! MPSGraph::reductionMinimumWithTensor:axes:name: not bound @@ -115,12 +152,13 @@ !missing-selector! MPSGraph::reductionProductWithTensor:axis:name: not bound !missing-selector! MPSGraph::reductionSumWithTensor:axes:name: not bound !missing-selector! MPSGraph::reductionSumWithTensor:axis:name: not bound -!missing-selector! MPSGraph::reLUGradientWithIncomingGradient:sourceTensor:name: not bound -!missing-selector! MPSGraph::reLUWithTensor:name: not bound !missing-selector! MPSGraph::reshapeTensor:withShape:name: not bound !missing-selector! MPSGraph::resizeTensor:size:mode:centerResult:alignCorners:layout:name: not bound !missing-selector! MPSGraph::resizeWithGradientTensor:input:mode:centerResult:alignCorners:layout:name: not bound !missing-selector! MPSGraph::reverseSquareRootWithTensor:name: not bound +!missing-selector! MPSGraph::reverseTensor:axes:name: not bound +!missing-selector! MPSGraph::reverseTensor:axesTensor:name: not bound +!missing-selector! MPSGraph::reverseTensor:name: not bound !missing-selector! MPSGraph::rintWithTensor:name: not bound !missing-selector! MPSGraph::roundWithTensor:name: not bound !missing-selector! MPSGraph::runAsyncWithFeeds:targetTensors:targetOperations:executionDescriptor: not bound @@ -129,32 +167,44 @@ !missing-selector! MPSGraph::runWithFeeds:targetTensors:targetOperations: not bound !missing-selector! MPSGraph::runWithMTLCommandQueue:feeds:targetOperations:resultsDictionary: not bound !missing-selector! MPSGraph::runWithMTLCommandQueue:feeds:targetTensors:targetOperations: not bound +!missing-selector! MPSGraph::scatterNDWithUpdatesTensor:indicesTensor:shape:batchDimensions:mode:name: not bound !missing-selector! MPSGraph::scatterNDWithUpdatesTensor:indicesTensor:shape:batchDimensions:name: not bound !missing-selector! MPSGraph::selectWithPredicateTensor:truePredicateTensor:falsePredicateTensor:name: not bound !missing-selector! MPSGraph::setOptions: not bound !missing-selector! MPSGraph::sigmoidGradientWithIncomingGradient:sourceTensor:name: not bound !missing-selector! MPSGraph::sigmoidWithTensor:name: not bound -!missing-selector! MPSGraph::signbitWithTensor:name: not bound !missing-selector! MPSGraph::signWithTensor:name: not bound -!missing-selector! MPSGraph::sinhWithTensor:name: not bound +!missing-selector! MPSGraph::signbitWithTensor:name: not bound !missing-selector! MPSGraph::sinWithTensor:name: not bound +!missing-selector! MPSGraph::sinhWithTensor:name: not bound +!missing-selector! MPSGraph::sliceGradientTensor:fwdInShapeTensor:starts:ends:strides:name: not bound +!missing-selector! MPSGraph::sliceGradientTensor:fwdInShapeTensor:starts:ends:strides:startMask:endMask:squeezeMask:name: not bound !missing-selector! MPSGraph::sliceTensor:dimension:start:length:name: not bound +!missing-selector! MPSGraph::sliceTensor:starts:ends:strides:name: not bound +!missing-selector! MPSGraph::sliceTensor:starts:ends:strides:startMask:endMask:squeezeMask:name: not bound !missing-selector! MPSGraph::softMaxCrossEntropyGradientWithIncomingGradientTensor:sourceTensor:labelsTensor:axis:reductionType:name: not bound !missing-selector! MPSGraph::softMaxCrossEntropyWithSourceTensor:labelsTensor:axis:reductionType:name: not bound !missing-selector! MPSGraph::softMaxGradientWithIncomingGradient:sourceTensor:axis:name: not bound !missing-selector! MPSGraph::softMaxWithTensor:axis:name: not bound +!missing-selector! MPSGraph::spaceToDepth2DTensor:widthAxis:heightAxis:depthAxis:blockSize:usePixelShuffleOrder:name: not bound +!missing-selector! MPSGraph::spaceToDepth2DTensor:widthAxisTensor:heightAxisTensor:depthAxisTensor:blockSize:usePixelShuffleOrder:name: not bound +!missing-selector! MPSGraph::sparseTensorWithDescriptor:tensors:shape:name: not bound +!missing-selector! MPSGraph::sparseTensorWithType:tensors:shape:dataType:name: not bound !missing-selector! MPSGraph::squareRootWithTensor:name: not bound !missing-selector! MPSGraph::squareWithTensor:name: not bound +!missing-selector! MPSGraph::stencilWithSourceTensor:weightsTensor:descriptor:name: not bound !missing-selector! MPSGraph::stochasticGradientDescentWithLearningRateTensor:valuesTensor:gradientTensor:name: not bound !missing-selector! MPSGraph::subtractionWithPrimaryTensor:secondaryTensor:name: not bound -!missing-selector! MPSGraph::tanhWithTensor:name: not bound !missing-selector! MPSGraph::tanWithTensor:name: not bound +!missing-selector! MPSGraph::tanhWithTensor:name: not bound !missing-selector! MPSGraph::tileGradientWithIncomingGradientTensor:sourceTensor:withMultiplier:name: not bound !missing-selector! MPSGraph::tileTensor:withMultiplier:name: not bound !missing-selector! MPSGraph::transposeTensor:dimension:withDimension:name: not bound !missing-selector! MPSGraph::variableWithData:shape:dataType:name: not bound !missing-selector! MPSGraph::varianceOfTensor:axes:name: not bound !missing-selector! MPSGraph::varianceOfTensor:meanTensor:axes:name: not bound +!missing-selector! MPSGraph::whileWithInitialInputs:before:after:name: not bound +!missing-selector! MPSGraphCompilationDescriptor::disableTypeInference not bound !missing-selector! MPSGraphConvolution2DOpDescriptor::dataLayout not bound !missing-selector! MPSGraphConvolution2DOpDescriptor::dilationRateInX not bound !missing-selector! MPSGraphConvolution2DOpDescriptor::dilationRateInY not bound @@ -180,6 +230,10 @@ !missing-selector! MPSGraphConvolution2DOpDescriptor::strideInX not bound !missing-selector! MPSGraphConvolution2DOpDescriptor::strideInY not bound !missing-selector! MPSGraphConvolution2DOpDescriptor::weightsLayout not bound +!missing-selector! MPSGraphCreateSparseOpDescriptor::dataType not bound +!missing-selector! MPSGraphCreateSparseOpDescriptor::setDataType: not bound +!missing-selector! MPSGraphCreateSparseOpDescriptor::setSparseStorageType: not bound +!missing-selector! MPSGraphCreateSparseOpDescriptor::sparseStorageType not bound !missing-selector! MPSGraphDepthwiseConvolution2DOpDescriptor::dataLayout not bound !missing-selector! MPSGraphDepthwiseConvolution2DOpDescriptor::dilationRateInX not bound !missing-selector! MPSGraphDepthwiseConvolution2DOpDescriptor::dilationRateInY not bound @@ -203,8 +257,32 @@ !missing-selector! MPSGraphDepthwiseConvolution2DOpDescriptor::strideInX not bound !missing-selector! MPSGraphDepthwiseConvolution2DOpDescriptor::strideInY not bound !missing-selector! MPSGraphDepthwiseConvolution2DOpDescriptor::weightsLayout not bound +!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::channelDimensionIndex not bound +!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::dilationRates not bound +!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::paddingStyle not bound +!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::paddingValues not bound +!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::setChannelDimensionIndex: not bound +!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::setDilationRates: not bound +!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::setPaddingStyle: not bound +!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::setPaddingValues: not bound +!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::setStrides: not bound +!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::strides not bound !missing-selector! MPSGraphDevice::metalDevice not bound !missing-selector! MPSGraphDevice::type not bound +!missing-selector! MPSGraphExecutable::encodeToCommandBuffer:inputsArray:resultsArray:executionDescriptor: not bound +!missing-selector! MPSGraphExecutable::feedTensors not bound +!missing-selector! MPSGraphExecutable::options not bound +!missing-selector! MPSGraphExecutable::runAsyncWithMTLCommandQueue:inputsArray:resultsArray:executionDescriptor: not bound +!missing-selector! MPSGraphExecutable::runWithMTLCommandQueue:inputsArray:resultsArray:executionDescriptor: not bound +!missing-selector! MPSGraphExecutable::setOptions: not bound +!missing-selector! MPSGraphExecutable::specializeWithDevice:inputTypes:compilationDescriptor: not bound +!missing-selector! MPSGraphExecutable::targetTensors not bound +!missing-selector! MPSGraphExecutableExecutionDescriptor::completionHandler not bound +!missing-selector! MPSGraphExecutableExecutionDescriptor::scheduledHandler not bound +!missing-selector! MPSGraphExecutableExecutionDescriptor::setCompletionHandler: not bound +!missing-selector! MPSGraphExecutableExecutionDescriptor::setScheduledHandler: not bound +!missing-selector! MPSGraphExecutableExecutionDescriptor::setWaitUntilCompleted: not bound +!missing-selector! MPSGraphExecutableExecutionDescriptor::waitUntilCompleted not bound !missing-selector! MPSGraphExecutionDescriptor::completionHandler not bound !missing-selector! MPSGraphExecutionDescriptor::scheduledHandler not bound !missing-selector! MPSGraphExecutionDescriptor::setCompletionHandler: not bound @@ -241,117 +319,6 @@ !missing-selector! MPSGraphPooling2DOpDescriptor::setStrideInY: not bound !missing-selector! MPSGraphPooling2DOpDescriptor::strideInX not bound !missing-selector! MPSGraphPooling2DOpDescriptor::strideInY not bound -!missing-selector! MPSGraphShapedType::dataType not bound -!missing-selector! MPSGraphShapedType::initWithShape:dataType: not bound -!missing-selector! MPSGraphShapedType::isEqualTo: not bound -!missing-selector! MPSGraphShapedType::setDataType: not bound -!missing-selector! MPSGraphShapedType::setShape: not bound -!missing-selector! MPSGraphShapedType::shape not bound -!missing-selector! MPSGraphTensor::dataType not bound -!missing-selector! MPSGraphTensor::operation not bound -!missing-selector! MPSGraphTensor::shape not bound -!missing-selector! MPSGraphTensorData::dataType not bound -!missing-selector! MPSGraphTensorData::device not bound -!missing-selector! MPSGraphTensorData::initWithDevice:data:shape:dataType: not bound -!missing-selector! MPSGraphTensorData::initWithMPSImageBatch: not bound -!missing-selector! MPSGraphTensorData::initWithMPSMatrix: not bound -!missing-selector! MPSGraphTensorData::initWithMPSMatrix:rank: not bound -!missing-selector! MPSGraphTensorData::initWithMPSNDArray: not bound -!missing-selector! MPSGraphTensorData::initWithMPSVector: not bound -!missing-selector! MPSGraphTensorData::initWithMPSVector:rank: not bound -!missing-selector! MPSGraphTensorData::initWithMTLBuffer:shape:dataType: not bound -!missing-selector! MPSGraphTensorData::mpsndarray not bound -!missing-selector! MPSGraphTensorData::shape not bound -!missing-selector! MPSGraphVariableOp::dataType not bound -!missing-selector! MPSGraphVariableOp::shape not bound -!missing-type! MPSGraph not bound -!missing-type! MPSGraphConvolution2DOpDescriptor not bound -!missing-type! MPSGraphDepthwiseConvolution2DOpDescriptor not bound -!missing-type! MPSGraphDevice not bound -!missing-type! MPSGraphExecutionDescriptor not bound -!missing-type! MPSGraphOperation not bound -!missing-type! MPSGraphPooling2DOpDescriptor not bound -!missing-type! MPSGraphShapedType not bound -!missing-type! MPSGraphTensor not bound -!missing-type! MPSGraphTensorData not bound -!missing-type! MPSGraphVariableOp not bound -!missing-enum! MPSGraphScatterMode not bound -!missing-selector! MPSGraph::scatterNDWithUpdatesTensor:indicesTensor:shape:batchDimensions:mode:name: not bound -!missing-selector! MPSGraph::sliceGradientTensor:fwdInShapeTensor:starts:ends:strides:name: not bound -!missing-selector! MPSGraph::sliceGradientTensor:fwdInShapeTensor:starts:ends:strides:startMask:endMask:squeezeMask:name: not bound -!missing-selector! MPSGraph::sliceTensor:starts:ends:strides:name: not bound -!missing-selector! MPSGraph::sliceTensor:starts:ends:strides:startMask:endMask:squeezeMask:name: not bound -## appended from unclassified file -!missing-enum! MPSGraphReductionMode not bound -!missing-enum! MPSGraphSparseStorageType not bound -!missing-selector! +MPSGraphCreateSparseOpDescriptor::descriptorWithStorageType:dataType: not bound -!missing-selector! +MPSGraphDepthwiseConvolution3DOpDescriptor::descriptorWithPaddingStyle: not bound -!missing-selector! +MPSGraphDepthwiseConvolution3DOpDescriptor::descriptorWithStrides:dilationRates:paddingValues:paddingStyle: not bound -!missing-selector! +MPSGraphPooling4DOpDescriptor::descriptorWithKernelSizes:paddingStyle: not bound -!missing-selector! +MPSGraphPooling4DOpDescriptor::descriptorWithKernelSizes:strides:dilationRates:paddingValues:paddingStyle: not bound -!missing-selector! +MPSGraphStencilOpDescriptor::descriptorWithExplicitPadding: not bound -!missing-selector! +MPSGraphStencilOpDescriptor::descriptorWithOffsets:explicitPadding: not bound -!missing-selector! +MPSGraphStencilOpDescriptor::descriptorWithPaddingStyle: not bound -!missing-selector! +MPSGraphStencilOpDescriptor::descriptorWithReductionMode:offsets:strides:dilationRates:explicitPadding:boundaryMode:paddingStyle:paddingConstant: not bound -!missing-selector! MPSGraph::avgPooling4DGradientWithGradientTensor:sourceTensor:descriptor:name: not bound -!missing-selector! MPSGraph::avgPooling4DWithSourceTensor:descriptor:name: not bound -!missing-selector! MPSGraph::compileWithDevice:feeds:targetTensors:targetOperations:compilationDescriptor: not bound -!missing-selector! MPSGraph::concatTensors:dimension:interleave:name: not bound -!missing-selector! MPSGraph::controlDependencyWithOperations:dependentBlock:name: not bound -!missing-selector! MPSGraph::depthToSpace2DTensor:widthAxis:heightAxis:depthAxis:blockSize:usePixelShuffleOrder:name: not bound -!missing-selector! MPSGraph::depthToSpace2DTensor:widthAxisTensor:heightAxisTensor:depthAxisTensor:blockSize:usePixelShuffleOrder:name: not bound -!missing-selector! MPSGraph::depthwiseConvolution3DDataGradientWithIncomingGradientTensor:weightsTensor:outputShape:descriptor:name: not bound -!missing-selector! MPSGraph::depthwiseConvolution3DWeightsGradientWithIncomingGradientTensor:sourceTensor:outputShape:descriptor:name: not bound -!missing-selector! MPSGraph::depthwiseConvolution3DWithSourceTensor:weightsTensor:descriptor:name: not bound -!missing-selector! MPSGraph::flatten2DTensor:axis:name: not bound -!missing-selector! MPSGraph::flatten2DTensor:axisTensor:name: not bound -!missing-selector! MPSGraph::forLoopWithLowerBound:upperBound:step:initialBodyArguments:body:name: not bound -!missing-selector! MPSGraph::forLoopWithNumberOfIterations:initialBodyArguments:body:name: not bound -!missing-selector! MPSGraph::ifWithPredicateTensor:thenBlock:elseBlock:name: not bound -!missing-selector! MPSGraph::L2NormPooling4DGradientWithGradientTensor:sourceTensor:descriptor:name: not bound -!missing-selector! MPSGraph::L2NormPooling4DWithSourceTensor:descriptor:name: not bound -!missing-selector! MPSGraph::maxPooling4DGradientWithGradientTensor:sourceTensor:descriptor:name: not bound -!missing-selector! MPSGraph::maxPooling4DWithSourceTensor:descriptor:name: not bound -!missing-selector! MPSGraph::reductionArgMaximumWithTensor:axis:name: not bound -!missing-selector! MPSGraph::reductionArgMinimumWithTensor:axis:name: not bound -!missing-selector! MPSGraph::reverseTensor:axes:name: not bound -!missing-selector! MPSGraph::reverseTensor:axesTensor:name: not bound -!missing-selector! MPSGraph::reverseTensor:name: not bound -!missing-selector! MPSGraph::spaceToDepth2DTensor:widthAxis:heightAxis:depthAxis:blockSize:usePixelShuffleOrder:name: not bound -!missing-selector! MPSGraph::spaceToDepth2DTensor:widthAxisTensor:heightAxisTensor:depthAxisTensor:blockSize:usePixelShuffleOrder:name: not bound -!missing-selector! MPSGraph::sparseTensorWithDescriptor:tensors:shape:name: not bound -!missing-selector! MPSGraph::sparseTensorWithType:tensors:shape:dataType:name: not bound -!missing-selector! MPSGraph::stencilWithSourceTensor:weightsTensor:descriptor:name: not bound -!missing-selector! MPSGraph::whileWithInitialInputs:before:after:name: not bound -!missing-selector! MPSGraphCompilationDescriptor::disableTypeInference not bound -!missing-selector! MPSGraphCreateSparseOpDescriptor::dataType not bound -!missing-selector! MPSGraphCreateSparseOpDescriptor::setDataType: not bound -!missing-selector! MPSGraphCreateSparseOpDescriptor::setSparseStorageType: not bound -!missing-selector! MPSGraphCreateSparseOpDescriptor::sparseStorageType not bound -!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::channelDimensionIndex not bound -!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::dilationRates not bound -!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::paddingStyle not bound -!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::paddingValues not bound -!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::setChannelDimensionIndex: not bound -!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::setDilationRates: not bound -!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::setPaddingStyle: not bound -!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::setPaddingValues: not bound -!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::setStrides: not bound -!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::strides not bound -!missing-selector! MPSGraphExecutable::encodeToCommandBuffer:inputsArray:resultsArray:executionDescriptor: not bound -!missing-selector! MPSGraphExecutable::feedTensors not bound -!missing-selector! MPSGraphExecutable::options not bound -!missing-selector! MPSGraphExecutable::runAsyncWithMTLCommandQueue:inputsArray:resultsArray:executionDescriptor: not bound -!missing-selector! MPSGraphExecutable::runWithMTLCommandQueue:inputsArray:resultsArray:executionDescriptor: not bound -!missing-selector! MPSGraphExecutable::setOptions: not bound -!missing-selector! MPSGraphExecutable::specializeWithDevice:inputTypes:compilationDescriptor: not bound -!missing-selector! MPSGraphExecutable::targetTensors not bound -!missing-selector! MPSGraphExecutableExecutionDescriptor::completionHandler not bound -!missing-selector! MPSGraphExecutableExecutionDescriptor::scheduledHandler not bound -!missing-selector! MPSGraphExecutableExecutionDescriptor::setCompletionHandler: not bound -!missing-selector! MPSGraphExecutableExecutionDescriptor::setScheduledHandler: not bound -!missing-selector! MPSGraphExecutableExecutionDescriptor::setWaitUntilCompleted: not bound -!missing-selector! MPSGraphExecutableExecutionDescriptor::waitUntilCompleted not bound !missing-selector! MPSGraphPooling4DOpDescriptor::ceilMode not bound !missing-selector! MPSGraphPooling4DOpDescriptor::dilationRates not bound !missing-selector! MPSGraphPooling4DOpDescriptor::includeZeroPadToAverage not bound @@ -366,6 +333,12 @@ !missing-selector! MPSGraphPooling4DOpDescriptor::setPaddingValues: not bound !missing-selector! MPSGraphPooling4DOpDescriptor::setStrides: not bound !missing-selector! MPSGraphPooling4DOpDescriptor::strides not bound +!missing-selector! MPSGraphShapedType::dataType not bound +!missing-selector! MPSGraphShapedType::initWithShape:dataType: not bound +!missing-selector! MPSGraphShapedType::isEqualTo: not bound +!missing-selector! MPSGraphShapedType::setDataType: not bound +!missing-selector! MPSGraphShapedType::setShape: not bound +!missing-selector! MPSGraphShapedType::shape not bound !missing-selector! MPSGraphStencilOpDescriptor::boundaryMode not bound !missing-selector! MPSGraphStencilOpDescriptor::dilationRates not bound !missing-selector! MPSGraphStencilOpDescriptor::explicitPadding not bound @@ -382,11 +355,40 @@ !missing-selector! MPSGraphStencilOpDescriptor::setReductionMode: not bound !missing-selector! MPSGraphStencilOpDescriptor::setStrides: not bound !missing-selector! MPSGraphStencilOpDescriptor::strides not bound +!missing-selector! MPSGraphTensor::dataType not bound +!missing-selector! MPSGraphTensor::operation not bound +!missing-selector! MPSGraphTensor::shape not bound +!missing-selector! MPSGraphTensorData::dataType not bound +!missing-selector! MPSGraphTensorData::device not bound +!missing-selector! MPSGraphTensorData::initWithDevice:data:shape:dataType: not bound +!missing-selector! MPSGraphTensorData::initWithMPSImageBatch: not bound +!missing-selector! MPSGraphTensorData::initWithMPSMatrix: not bound +!missing-selector! MPSGraphTensorData::initWithMPSMatrix:rank: not bound +!missing-selector! MPSGraphTensorData::initWithMPSNDArray: not bound +!missing-selector! MPSGraphTensorData::initWithMPSVector: not bound +!missing-selector! MPSGraphTensorData::initWithMPSVector:rank: not bound +!missing-selector! MPSGraphTensorData::initWithMTLBuffer:shape:dataType: not bound +!missing-selector! MPSGraphTensorData::mpsndarray not bound +!missing-selector! MPSGraphTensorData::shape not bound +!missing-selector! MPSGraphVariableOp::dataType not bound +!missing-selector! MPSGraphVariableOp::shape not bound +!missing-type! MPSGraph not bound !missing-type! MPSGraphCompilationDescriptor not bound +!missing-type! MPSGraphConvolution2DOpDescriptor not bound !missing-type! MPSGraphCreateSparseOpDescriptor not bound +!missing-type! MPSGraphDepthwiseConvolution2DOpDescriptor not bound !missing-type! MPSGraphDepthwiseConvolution3DOpDescriptor not bound +!missing-type! MPSGraphDevice not bound !missing-type! MPSGraphExecutable not bound !missing-type! MPSGraphExecutableExecutionDescriptor not bound +!missing-type! MPSGraphExecutionDescriptor not bound +!missing-type! MPSGraphOperation not bound +!missing-type! MPSGraphPooling2DOpDescriptor not bound !missing-type! MPSGraphPooling4DOpDescriptor not bound +!missing-type! MPSGraphShapedType not bound !missing-type! MPSGraphStencilOpDescriptor not bound +!missing-type! MPSGraphTensor not bound +!missing-type! MPSGraphTensorData not bound !missing-type! MPSGraphType not bound +!missing-type! MPSGraphVariableOp not bound +## appended from unclassified file diff --git a/tests/xtro-sharpie/MacCatalyst-PHASE.todo b/tests/xtro-sharpie/MacCatalyst-PHASE.todo index f868d344e402..e177c5643f7f 100644 --- a/tests/xtro-sharpie/MacCatalyst-PHASE.todo +++ b/tests/xtro-sharpie/MacCatalyst-PHASE.todo @@ -9,7 +9,7 @@ !missing-enum! PHASENormalizationMode not bound !missing-enum! PHASEPlaybackMode not bound !missing-enum! PHASEPushStreamBufferOptions not bound -!missing-enum! PHASEPushStreamCompletionCallbackType not bound +!missing-enum! PHASEPushStreamCompletionCallbackCondition not bound !missing-enum! PHASERenderingState not bound !missing-enum! PHASEReverbPreset not bound !missing-enum! PHASESoundEventError not bound @@ -17,8 +17,8 @@ !missing-enum! PHASESoundEventPrepareState not bound !missing-enum! PHASESoundEventSeekHandlerReason not bound !missing-enum! PHASESoundEventStartHandlerReason not bound +!missing-enum! PHASESpatialPipelineFlags not bound !missing-enum! PHASESpatializationMode not bound -!missing-enum! PHASESpatialPipelineOptions not bound !missing-enum! PHASEUpdateMode not bound !missing-field! PHASEAssetErrorDomain not bound !missing-field! PHASEErrorDomain not bound @@ -40,6 +40,7 @@ !missing-selector! PHASEAssetRegistry::registerSoundAssetAtURL:identifier:assetType:channelLayout:normalizationMode:error: not bound !missing-selector! PHASEAssetRegistry::registerSoundAssetWithData:identifier:format:normalizationMode:error: not bound !missing-selector! PHASEAssetRegistry::registerSoundEventAssetWithRootNode:identifier:error: not bound +!missing-selector! PHASEAssetRegistry::unregisterAssetWithIdentifier:completion: not bound !missing-selector! PHASEBlendNodeDefinition::addRangeForInputValuesAbove:fullGainAtValue:fadeCurveType:subtree: not bound !missing-selector! PHASEBlendNodeDefinition::addRangeForInputValuesBelow:fullGainAtValue:fadeCurveType:subtree: not bound !missing-selector! PHASEBlendNodeDefinition::addRangeForInputValuesBetween:highValue:fullGainAtLowValue:fullGainAtHighValue:lowFadeCurveType:highFadeCurveType:subtree: not bound @@ -50,8 +51,8 @@ !missing-selector! PHASEBlendNodeDefinition::initWithBlendMetaParameterDefinition: not bound !missing-selector! PHASEBlendNodeDefinition::initWithBlendMetaParameterDefinition:identifier: not bound !missing-selector! PHASEBlendNodeDefinition::spatialMixerDefinitionForDistance not bound -!missing-selector! PHASECardioidDirectivityModelParameters::init not bound -!missing-selector! PHASECardioidDirectivityModelParameters::subbands not bound +!missing-selector! PHASECardioidDirectivityModelParameters::initWithSubbandParameters: not bound +!missing-selector! PHASECardioidDirectivityModelParameters::subbandParameters not bound !missing-selector! PHASECardioidDirectivityModelSubbandParameters::frequency not bound !missing-selector! PHASECardioidDirectivityModelSubbandParameters::init not bound !missing-selector! PHASECardioidDirectivityModelSubbandParameters::pattern not bound @@ -62,6 +63,8 @@ !missing-selector! PHASEChannelMixerDefinition::initWithChannelLayout: not bound !missing-selector! PHASEChannelMixerDefinition::initWithChannelLayout:identifier: not bound !missing-selector! PHASEChannelMixerDefinition::inputChannelLayout not bound +!missing-selector! PHASEConeDirectivityModelParameters::initWithSubbandParameters: not bound +!missing-selector! PHASEConeDirectivityModelParameters::subbandParameters not bound !missing-selector! PHASEConeDirectivityModelSubbandParameters::frequency not bound !missing-selector! PHASEConeDirectivityModelSubbandParameters::init not bound !missing-selector! PHASEConeDirectivityModelSubbandParameters::innerAngle not bound @@ -78,8 +81,10 @@ !missing-selector! PHASEDistanceModelFadeOutParameters::initWithCullDistance: not bound !missing-selector! PHASEDistanceModelParameters::fadeOutParameters not bound !missing-selector! PHASEDistanceModelParameters::setFadeOutParameters: not bound +!missing-selector! PHASEDucker::activate not bound !missing-selector! PHASEDucker::attackCurve not bound !missing-selector! PHASEDucker::attackTime not bound +!missing-selector! PHASEDucker::deactivate not bound !missing-selector! PHASEDucker::gain not bound !missing-selector! PHASEDucker::identifier not bound !missing-selector! PHASEDucker::initWithEngine:sourceGroups:targetGroups:gain:attackTime:releaseTime:attackCurve:releaseCurve: not bound @@ -95,11 +100,13 @@ !missing-selector! PHASEEngine::duckers not bound !missing-selector! PHASEEngine::groups not bound !missing-selector! PHASEEngine::initWithUpdateMode: not bound +!missing-selector! PHASEEngine::outputSpatializationMode not bound !missing-selector! PHASEEngine::pause not bound !missing-selector! PHASEEngine::renderingState not bound !missing-selector! PHASEEngine::rootObject not bound !missing-selector! PHASEEngine::setDefaultMedium: not bound !missing-selector! PHASEEngine::setDefaultReverbPreset: not bound +!missing-selector! PHASEEngine::setOutputSpatializationMode: not bound !missing-selector! PHASEEngine::setUnitsPerMeter: not bound !missing-selector! PHASEEngine::setUnitsPerSecond: not bound !missing-selector! PHASEEngine::soundEvents not bound @@ -133,6 +140,10 @@ !missing-selector! PHASEGeneratorNodeDefinition::setGroup: not bound !missing-selector! PHASEGeneratorNodeDefinition::setRate: not bound !missing-selector! PHASEGeneratorNodeDefinition::setRateMetaParameterDefinition: not bound +!missing-selector! PHASEGeneratorParameters::gain not bound +!missing-selector! PHASEGeneratorParameters::rate not bound +!missing-selector! PHASEGeneratorParameters::setGain: not bound +!missing-selector! PHASEGeneratorParameters::setRate: not bound !missing-selector! PHASEGeometricSpreadingDistanceModelParameters::init not bound !missing-selector! PHASEGeometricSpreadingDistanceModelParameters::rolloffFactor not bound !missing-selector! PHASEGeometricSpreadingDistanceModelParameters::setRolloffFactor: not bound @@ -153,7 +164,9 @@ !missing-selector! PHASEGroup::unregisterFromEngine not bound !missing-selector! PHASEGroup::unsolo not bound !missing-selector! PHASEGroupPreset::activate not bound +!missing-selector! PHASEGroupPreset::activateWithTimeToTargetOverride: not bound !missing-selector! PHASEGroupPreset::deactivate not bound +!missing-selector! PHASEGroupPreset::deactivateWithTimeToResetOverride: not bound !missing-selector! PHASEGroupPreset::initWithEngine:settings:timeToTarget:timeToReset: not bound !missing-selector! PHASEGroupPreset::settings not bound !missing-selector! PHASEGroupPreset::timeToReset not bound @@ -194,6 +207,11 @@ !missing-selector! PHASENumberMetaParameterDefinition::initWithValue:minimum:maximum:identifier: not bound !missing-selector! PHASENumberMetaParameterDefinition::maximum not bound !missing-selector! PHASENumberMetaParameterDefinition::minimum not bound +!missing-selector! PHASENumericPair::first not bound +!missing-selector! PHASENumericPair::initWithFirstValue:secondValue: not bound +!missing-selector! PHASENumericPair::second not bound +!missing-selector! PHASENumericPair::setFirst: not bound +!missing-selector! PHASENumericPair::setSecond: not bound !missing-selector! PHASEObject::addChild:error: not bound !missing-selector! PHASEObject::children not bound !missing-selector! PHASEObject::initWithEngine: not bound @@ -222,9 +240,15 @@ !missing-selector! PHASERandomNodeDefinition::addSubtree:weight: not bound !missing-selector! PHASERandomNodeDefinition::init not bound !missing-selector! PHASERandomNodeDefinition::initWithIdentifier: not bound +!missing-selector! PHASERandomNodeDefinition::setUniqueSelectionQueueLength: not bound +!missing-selector! PHASERandomNodeDefinition::uniqueSelectionQueueLength not bound !missing-selector! PHASESamplerNodeDefinition::assetIdentifier not bound +!missing-selector! PHASESamplerNodeDefinition::cullOption not bound !missing-selector! PHASESamplerNodeDefinition::initWithSoundAssetIdentifier:mixerDefinition: not bound !missing-selector! PHASESamplerNodeDefinition::initWithSoundAssetIdentifier:mixerDefinition:identifier: not bound +!missing-selector! PHASESamplerNodeDefinition::playbackMode not bound +!missing-selector! PHASESamplerNodeDefinition::setCullOption: not bound +!missing-selector! PHASESamplerNodeDefinition::setPlaybackMode: not bound !missing-selector! PHASEShape::elements not bound !missing-selector! PHASEShape::initWithEngine:mesh: not bound !missing-selector! PHASEShape::initWithEngine:mesh:materials: not bound @@ -239,12 +263,13 @@ !missing-selector! PHASESoundEvent::metaParameters not bound !missing-selector! PHASESoundEvent::mixers not bound !missing-selector! PHASESoundEvent::pause not bound -!missing-selector! PHASESoundEvent::prepareAndReturnError: not bound !missing-selector! PHASESoundEvent::prepareState not bound +!missing-selector! PHASESoundEvent::prepareWithCompletion: not bound !missing-selector! PHASESoundEvent::pushStreamNodes not bound !missing-selector! PHASESoundEvent::renderingState not bound !missing-selector! PHASESoundEvent::resume not bound -!missing-selector! PHASESoundEvent::startAndReturnError: not bound +!missing-selector! PHASESoundEvent::seekToTime:completion: not bound +!missing-selector! PHASESoundEvent::startWithCompletion: not bound !missing-selector! PHASESoundEvent::stopAndInvalidate not bound !missing-selector! PHASESoundEventNodeDefinition::children not bound !missing-selector! PHASESource::gain not bound @@ -262,8 +287,8 @@ !missing-selector! PHASESpatialMixerDefinition::sourceDirectivityModelParameters not bound !missing-selector! PHASESpatialMixerDefinition::spatialPipeline not bound !missing-selector! PHASESpatialPipeline::entries not bound -!missing-selector! PHASESpatialPipeline::initWithOptions: not bound -!missing-selector! PHASESpatialPipeline::options not bound +!missing-selector! PHASESpatialPipeline::flags not bound +!missing-selector! PHASESpatialPipeline::initWithFlags: not bound !missing-selector! PHASESpatialPipelineEntry::sendLevel not bound !missing-selector! PHASESpatialPipelineEntry::sendLevelMetaParameterDefinition not bound !missing-selector! PHASESpatialPipelineEntry::setSendLevel: not bound @@ -294,6 +319,7 @@ !missing-type! PHASEEnvelopeDistanceModelParameters not bound !missing-type! PHASEEnvelopeSegment not bound !missing-type! PHASEGeneratorNodeDefinition not bound +!missing-type! PHASEGeneratorParameters not bound !missing-type! PHASEGeometricSpreadingDistanceModelParameters not bound !missing-type! PHASEGlobalMetaParameterAsset not bound !missing-type! PHASEGroup not bound @@ -310,6 +336,7 @@ !missing-type! PHASEMixerParameters not bound !missing-type! PHASENumberMetaParameter not bound !missing-type! PHASENumberMetaParameterDefinition not bound +!missing-type! PHASENumericPair not bound !missing-type! PHASEObject not bound !missing-type! PHASEOccluder not bound !missing-type! PHASEPushStreamNode not bound @@ -329,35 +356,4 @@ !missing-type! PHASEStringMetaParameter not bound !missing-type! PHASEStringMetaParameterDefinition not bound !missing-type! PHASESwitchNodeDefinition not bound -!missing-selector! PHASEAssetRegistry::unregisterAssetWithIdentifier:completionBlock: not bound -!missing-selector! PHASECardioidDirectivityModelParameters::initWithSubbandParameters: not bound -!missing-selector! PHASECardioidDirectivityModelParameters::subbandParameters not bound -!missing-selector! PHASEConeDirectivityModelParameters::initWithSubbandParameters: not bound -!missing-selector! PHASEConeDirectivityModelParameters::subbandParameters not bound -!missing-selector! PHASEDucker::activate not bound -!missing-selector! PHASEDucker::deactivate not bound -!missing-selector! PHASEEngine::outputSpatializationMode not bound -!missing-selector! PHASEEngine::setOutputSpatializationMode: not bound -!missing-selector! PHASEGeneratorParameters::gain not bound -!missing-selector! PHASEGeneratorParameters::rate not bound -!missing-selector! PHASEGeneratorParameters::setGain: not bound -!missing-selector! PHASEGeneratorParameters::setRate: not bound -!missing-selector! PHASEGroupPreset::activateWithTimeToTargetOverride: not bound -!missing-selector! PHASEGroupPreset::deactivateWithTimeToResetOverride: not bound -!missing-selector! PHASENumericPair::first not bound -!missing-selector! PHASENumericPair::initWithFirstValue:secondValue: not bound -!missing-selector! PHASENumericPair::second not bound -!missing-selector! PHASENumericPair::setFirst: not bound -!missing-selector! PHASENumericPair::setSecond: not bound -!missing-selector! PHASERandomNodeDefinition::setUniqueSelectionQueueLength: not bound -!missing-selector! PHASERandomNodeDefinition::uniqueSelectionQueueLength not bound -!missing-selector! PHASESamplerNodeDefinition::cullOption not bound -!missing-selector! PHASESamplerNodeDefinition::playbackMode not bound -!missing-selector! PHASESamplerNodeDefinition::setCullOption: not bound -!missing-selector! PHASESamplerNodeDefinition::setPlaybackMode: not bound -!missing-selector! PHASESoundEvent::prepareWithCompletionBlock: not bound -!missing-selector! PHASESoundEvent::seekToTime:completionBlock: not bound -!missing-selector! PHASESoundEvent::startWithCompletionBlock: not bound -!missing-type! PHASEGeneratorParameters not bound -!missing-type! PHASENumericPair not bound !unknown-simd-type-mapping! The Simd type simd_double2 does not have a mapping to a managed type. Please add one in SimdCheck.cs diff --git a/tests/xtro-sharpie/MacCatalyst-UIKit.todo b/tests/xtro-sharpie/MacCatalyst-UIKit.todo index 611702679905..9467e409e9d0 100644 --- a/tests/xtro-sharpie/MacCatalyst-UIKit.todo +++ b/tests/xtro-sharpie/MacCatalyst-UIKit.todo @@ -22,8 +22,8 @@ !extra-null-allowed! 'System.Void UIKit.UIMenuItem::set_Action(ObjCRuntime.Selector)' has a extraneous [NullAllowed] on parameter #0 !extra-null-allowed! 'System.Void UIKit.UIMenuItem::set_Title(System.String)' has a extraneous [NullAllowed] on parameter #0 !extra-null-allowed! 'System.Void UIKit.UIMutableUserNotificationAction::set_Parameters(Foundation.NSDictionary)' has a extraneous [NullAllowed] on parameter #0 -!extra-null-allowed! 'System.Void UIKit.UINavigationController::set_ViewControllers(UIKit.UIViewController[])' has a extraneous [NullAllowed] on parameter #0 !extra-null-allowed! 'System.Void UIKit.UINavigationController::SetViewControllers(UIKit.UIViewController[],System.Boolean)' has a extraneous [NullAllowed] on parameter #0 +!extra-null-allowed! 'System.Void UIKit.UINavigationController::set_ViewControllers(UIKit.UIViewController[])' has a extraneous [NullAllowed] on parameter #0 !extra-null-allowed! 'System.Void UIKit.UIPopoverControllerDelegate::WillReposition(UIKit.UIPopoverController,CoreGraphics.CGRect&,UIKit.UIView&)' has a extraneous [NullAllowed] on parameter #1 !extra-null-allowed! 'System.Void UIKit.UIPopoverControllerDelegate::WillReposition(UIKit.UIPopoverController,CoreGraphics.CGRect&,UIKit.UIView&)' has a extraneous [NullAllowed] on parameter #2 !extra-null-allowed! 'System.Void UIKit.UIPopoverPresentationControllerDelegate::WillRepositionPopover(UIKit.UIPopoverPresentationController,CoreGraphics.CGRect&,UIKit.UIView&)' has a extraneous [NullAllowed] on parameter #1 @@ -49,22 +49,77 @@ !incorrect-protocol-member! UIFocusItem::frame is REQUIRED and should be abstract !incorrect-protocol-member! UITextDocumentProxy::setMarkedText:selectedRange: is REQUIRED and should be abstract !incorrect-protocol-member! UITextDocumentProxy::unmarkText is REQUIRED and should be abstract +!missing-enum! NSTextContentManagerEnumerationOptions not bound +!missing-enum! NSTextLayoutFragmentEnumerationOptions not bound +!missing-enum! NSTextLayoutFragmentState not bound +!missing-enum! NSTextLayoutManagerSegmentOptions not bound +!missing-enum! NSTextLayoutManagerSegmentType not bound +!missing-enum! NSTextSelectionAffinity not bound +!missing-enum! NSTextSelectionGranularity not bound +!missing-enum! NSTextSelectionNavigationDestination not bound +!missing-enum! NSTextSelectionNavigationDirection not bound +!missing-enum! NSTextSelectionNavigationLayoutOrientation not bound +!missing-enum! NSTextSelectionNavigationModifier not bound +!missing-enum! NSTextSelectionNavigationWritingDirection not bound +!missing-enum! UIBandSelectionInteractionState not bound +!missing-enum! UIBehavioralStyle not bound +!missing-enum! UIButtonConfigurationCornerStyle not bound +!missing-enum! UIButtonConfigurationMacIdiomStyle not bound +!missing-enum! UIButtonConfigurationSize not bound +!missing-enum! UIButtonConfigurationTitleAlignment not bound !missing-enum! UIDirectionalRectEdge not bound +!missing-enum! UIFocusHaloEffectPosition not bound +!missing-enum! UIImageVariant not bound !missing-enum! UITitlebarTitleVisibility not bound !missing-enum! UITitlebarToolbarStyle not bound +!missing-enum! UIWindowScenePresentationStyle not bound +!missing-enum-value! UIFocusHeading native value UIFocusHeadingFirst = 256 not bound +!missing-enum-value! UIFocusHeading native value UIFocusHeadingLast = 512 not bound +!missing-enum-value! UIMenuOptions native value UIMenuOptionsSingleSelection = 32 not bound +!missing-field! NSTextContentStorageUnsupportedAttributeAddedNotification not bound !missing-field! NSToolbarPrimarySidebarTrackingSeparatorItemIdentifier not bound !missing-field! NSToolbarSupplementarySidebarTrackingSeparatorItemIdentifier not bound +!missing-field! UIActionPaste not bound +!missing-field! UIActionPasteAndGo not bound +!missing-field! UIActionPasteAndMatchStyle not bound +!missing-field! UIActionPasteAndSearch not bound +!missing-field! UIActivityItemsConfigurationMetadataKeyLinkPresentationMetadata not bound !missing-field! UIApplicationInvalidInterfaceOrientationException not bound +!missing-field! UICollectionViewLayoutAutomaticDimension not bound !missing-field! UIFocusSoundIdentifierDefault not bound !missing-field! UIFocusSoundIdentifierNone not bound +!missing-field! UIKeyInputDelete not bound !missing-field! UIKeyInputF1 not bound +!missing-field! UIMenuSidebar not bound +!missing-field! UIPasteboardDetectionPatternAddress not bound +!missing-field! UIPasteboardDetectionPatternCalendarEvent not bound +!missing-field! UIPasteboardDetectionPatternEmailAddress not bound +!missing-field! UIPasteboardDetectionPatternFlightNumber not bound +!missing-field! UIPasteboardDetectionPatternLink not bound +!missing-field! UIPasteboardDetectionPatternMoneyAmount not bound +!missing-field! UIPasteboardDetectionPatternPhoneNumber not bound +!missing-field! UIPasteboardDetectionPatternShipmentTrackingNumber not bound +!missing-field! UIPointerAccessoryPositionBottom not bound +!missing-field! UIPointerAccessoryPositionBottomLeft not bound +!missing-field! UIPointerAccessoryPositionBottomRight not bound +!missing-field! UIPointerAccessoryPositionLeft not bound +!missing-field! UIPointerAccessoryPositionRight not bound +!missing-field! UIPointerAccessoryPositionTop not bound +!missing-field! UIPointerAccessoryPositionTopLeft not bound +!missing-field! UIPointerAccessoryPositionTopRight not bound +!missing-field! UISheetPresentationControllerAutomaticDimension not bound +!missing-field! UISheetPresentationControllerDetentIdentifierLarge not bound +!missing-field! UISheetPresentationControllerDetentIdentifierMedium not bound +!missing-field! UITextContentTypeDateTime not bound +!missing-field! UITextContentTypeFlightNumber not bound +!missing-field! UITextContentTypeShipmentTrackingNumber not bound !missing-null-allowed! 'CoreAnimation.CADisplayLink UIKit.UIScreen::CreateDisplayLink(Foundation.NSObject,ObjCRuntime.Selector)' is missing an [NullAllowed] on return type !missing-null-allowed! 'CoreGraphics.CGRect UIKit.NSTextAttachmentContainer::GetAttachmentBounds(UIKit.NSTextContainer,CoreGraphics.CGRect,CoreGraphics.CGPoint,System.nuint)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'Foundation.NSArray Foundation.NSBundle::LoadNib(System.String,Foundation.NSObject,Foundation.NSDictionary)' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSArray[] UIKit.UIPasteboard::PasteBoardTypesForSet(Foundation.NSIndexSet)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'Foundation.NSArray[] UIKit.UIPasteboard::PasteBoardTypesForSet(Foundation.NSIndexSet)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'Foundation.NSAttributedString UIKit.UIButton::get_CurrentAttributedTitle()' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSAttributedString UIKit.UIButton::GetAttributedTitle(UIKit.UIControlState)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSAttributedString UIKit.UIButton::get_CurrentAttributedTitle()' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSAttributedString UIKit.UIPickerViewDelegate::GetAttributedTitle(UIKit.UIPickerView,System.nint,System.nint)' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSBundle UIKit.UIViewController::get_NibBundle()' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSData Foundation.NSAttributedString::GetDataFromRange(Foundation.NSRange,Foundation.NSDictionary,Foundation.NSError&)' is missing an [NullAllowed] on return type @@ -86,9 +141,9 @@ !missing-null-allowed! 'Foundation.NSIndexPath UIKit.UICollectionView::IndexPathForItemAtPoint(CoreGraphics.CGPoint)' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSIndexPath UIKit.UICollectionViewFocusUpdateContext::get_NextFocusedIndexPath()' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSIndexPath UIKit.UICollectionViewFocusUpdateContext::get_PreviouslyFocusedIndexPath()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'Foundation.NSIndexPath UIKit.UITableView::get_IndexPathForSelectedRow()' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSIndexPath UIKit.UITableView::IndexPathForCell(UIKit.UITableViewCell)' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSIndexPath UIKit.UITableView::IndexPathForRowAtPoint(CoreGraphics.CGPoint)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSIndexPath UIKit.UITableView::get_IndexPathForSelectedRow()' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSIndexPath UIKit.UITableViewDelegate::WillDeselectRow(UIKit.UITableView,Foundation.NSIndexPath)' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSIndexPath UIKit.UITableViewDelegate::WillSelectRow(UIKit.UITableView,Foundation.NSIndexPath)' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSIndexPath UIKit.UITableViewFocusUpdateContext::get_NextFocusedIndexPath()' is missing an [NullAllowed] on return type @@ -108,10 +163,10 @@ !missing-null-allowed! 'Foundation.NSObject UIKit.UIStoryboardUnwindSegueSource::get_Sender()' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSObject[] UIKit.UICollisionBehavior::get_BoundaryIdentifiers()' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSProgress UIKit.UIDocument::get_Progress()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'Foundation.NSSet UIKit.UIEvent::get_AllTouches()' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSSet UIKit.UIEvent::TouchesForGestureRecognizer(UIKit.UIGestureRecognizer)' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSSet UIKit.UIEvent::TouchesForView(UIKit.UIView)' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSSet UIKit.UIEvent::TouchesForWindow(UIKit.UIWindow)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'Foundation.NSSet UIKit.UIEvent::get_AllTouches()' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSSet UIKit.UIUserNotificationSettings::get_Categories()' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSString UIKit.UIActivity::get_Type()' is missing an [NullAllowed] on return type !missing-null-allowed! 'Foundation.NSString UIKit.UIActivityItemProvider::get_ActivityType()' is missing an [NullAllowed] on return type @@ -140,15 +195,12 @@ !missing-null-allowed! 'System.Boolean UIKit.UITraitCollection::Contains(UIKit.UITraitCollection)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Boolean UIKit.UIViewController::ShouldPerformSegue(System.String,Foundation.NSObject)' is missing an [NullAllowed] on parameter #1 !missing-null-allowed! 'System.Double UIKit.UIViewControllerAnimatedTransitioning::TransitionDuration(UIKit.IUIViewControllerContextTransitioning)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'System.nint UIKit.UIActionSheet::AddButton(System.String)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'System.nint UIKit.UIApplication::BeginBackgroundTask(System.String,System.Action)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'System.nint UIKit.UIApplication::BeginBackgroundTask(System.String,System.Action)' is missing an [NullAllowed] on parameter #1 !missing-null-allowed! 'System.String UIKit.UIActionSheet::ButtonTitle(System.nint)' is missing an [NullAllowed] on return type !missing-null-allowed! 'System.String UIKit.UIActivity::get_Title()' is missing an [NullAllowed] on return type !missing-null-allowed! 'System.String UIKit.UIAlertAction::get_Title()' is missing an [NullAllowed] on return type !missing-null-allowed! 'System.String UIKit.UIAlertView::ButtonTitle(System.nint)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'System.String UIKit.UIButton::get_CurrentTitle()' is missing an [NullAllowed] on return type !missing-null-allowed! 'System.String UIKit.UIButton::Title(UIKit.UIControlState)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String UIKit.UIButton::get_CurrentTitle()' is missing an [NullAllowed] on return type !missing-null-allowed! 'System.String UIKit.UICollectionViewLayoutAttributes::get_RepresentedElementKind()' is missing an [NullAllowed] on return type !missing-null-allowed! 'System.String UIKit.UIDocument::get_FileType()' is missing an [NullAllowed] on return type !missing-null-allowed! 'System.String UIKit.UIDocument::get_SavingFileType()' is missing an [NullAllowed] on return type @@ -168,6 +220,7 @@ !missing-null-allowed! 'System.String UIKit.UIUserNotificationAction::get_Identifier()' is missing an [NullAllowed] on return type !missing-null-allowed! 'System.String UIKit.UIUserNotificationAction::get_Title()' is missing an [NullAllowed] on return type !missing-null-allowed! 'System.String UIKit.UIUserNotificationCategory::get_Identifier()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String UIKit.UIViewController::get_FocusGroupIdentifier()' is missing an [NullAllowed] on return type !missing-null-allowed! 'System.String UIKit.UIViewController::get_NibName()' is missing an [NullAllowed] on return type !missing-null-allowed! 'System.String[] UIKit.UIControl::GetActions(Foundation.NSObject,UIKit.UIControlEvent)' is missing an [NullAllowed] on return type !missing-null-allowed! 'System.String[] UIKit.UIDictationPhrase::get_AlternativeInterpretations()' is missing an [NullAllowed] on return type @@ -205,8 +258,8 @@ !missing-null-allowed! 'System.Void UIKit.UIManagedDocument::set_ModelConfiguration(System.String)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UIManagedDocument::set_PersistentStoreOptions(Foundation.NSDictionary)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UIMutableUserNotificationCategory::SetActions(UIKit.UIUserNotificationAction[],UIKit.UIUserNotificationActionContext)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'System.Void UIKit.UINavigationBar::set_Items(UIKit.UINavigationItem[])' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UINavigationBar::SetItems(UIKit.UINavigationItem[],System.Boolean)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void UIKit.UINavigationBar::set_Items(UIKit.UINavigationItem[])' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UINavigationItem::SetLeftBarButtonItems(UIKit.UIBarButtonItem[],System.Boolean)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UINavigationItem::SetRightBarButtonItems(UIKit.UIBarButtonItem[],System.Boolean)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UIPageViewController::SetViewControllers(UIKit.UIViewController[],UIKit.UIPageViewControllerNavigationDirection,System.Boolean,UIKit.UICompletionHandler)' is missing an [NullAllowed] on parameter #0 @@ -215,13 +268,13 @@ !missing-null-allowed! 'System.Void UIKit.UIPopoverController::set_PassthroughViews(UIKit.UIView[])' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UIPopoverPresentationController::set_PassthroughViews(UIKit.UIView[])' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UIPopoverPresentationController::set_SourceView(UIKit.UIView)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'System.Void UIKit.UIPrinter::ContactPrinter(UIKit.UIPrinterContactPrinterHandler)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UIPrintInfo::set_PrinterID(System.String)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UIPrintInteractionController::set_PrintFormatter(UIKit.UIPrintFormatter)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UIPrintInteractionController::set_PrintInfo(UIKit.UIPrintInfo)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void UIKit.UIPrintInteractionController::set_PrintPageRenderer(UIKit.UIPrintPageRenderer)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UIPrintInteractionController::set_PrintingItem(Foundation.NSObject)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UIPrintInteractionController::set_PrintingItems(Foundation.NSObject[])' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'System.Void UIKit.UIPrintInteractionController::set_PrintPageRenderer(UIKit.UIPrintPageRenderer)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void UIKit.UIPrinter::ContactPrinter(UIKit.UIPrinterContactPrinterHandler)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UIResponder::PressesBegan(Foundation.NSSet`1,UIKit.UIPressesEvent)' is missing an [NullAllowed] on parameter #1 !missing-null-allowed! 'System.Void UIKit.UIResponder::PressesCancelled(Foundation.NSSet`1,UIKit.UIPressesEvent)' is missing an [NullAllowed] on parameter #1 !missing-null-allowed! 'System.Void UIKit.UIResponder::PressesChanged(Foundation.NSSet`1,UIKit.UIPressesEvent)' is missing an [NullAllowed] on parameter #1 @@ -232,11 +285,11 @@ !missing-null-allowed! 'System.Void UIKit.UISearchBar::_SetScopeBarButtonTitle(Foundation.NSDictionary,UIKit.UIControlState)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UISearchTextField::set_TokenBackgroundColor(UIKit.UIColor)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UISegmentedControl::.ctor(Foundation.NSArray)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'System.Void UIKit.UISegmentedControl::_SetTitleTextAttributes(Foundation.NSDictionary,UIKit.UIControlState)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UISegmentedControl::InsertSegment(System.String,System.nint,System.Boolean)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UISegmentedControl::InsertSegment(UIKit.UIImage,System.nint,System.Boolean)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UISegmentedControl::SetImage(UIKit.UIImage,System.nint)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UISegmentedControl::SetTitle(System.String,System.nint)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void UIKit.UISegmentedControl::_SetTitleTextAttributes(Foundation.NSDictionary,UIKit.UIControlState)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UITabBarController::SetViewControllers(UIKit.UIViewController[],System.Boolean)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UITableView::RegisterNibForHeaderFooterViewReuse(UIKit.UINib,Foundation.NSString)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UITableViewController::set_TableView(UIKit.UITableView)' is missing an [NullAllowed] on parameter #0 @@ -253,8 +306,11 @@ !missing-null-allowed! 'System.Void UIKit.UIView::SetAnimationDelegate(Foundation.NSObject)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UIView::SetAnimationDidStopSelector(ObjCRuntime.Selector)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UIView::SetAnimationWillStartSelector(ObjCRuntime.Selector)' is missing an [NullAllowed] on parameter #0 -!missing-null-allowed! 'System.Void UIKit.UIViewController::set_TabBarItem(UIKit.UITabBarItem)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'System.Void UIKit.UIViewController::SetOverrideTraitCollection(UIKit.UITraitCollection,UIKit.UIViewController)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.Void UIKit.UIViewController::set_TabBarItem(UIKit.UITabBarItem)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.nint UIKit.UIActionSheet::AddButton(System.String)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.nint UIKit.UIApplication::BeginBackgroundTask(System.String,System.Action)' is missing an [NullAllowed] on parameter #0 +!missing-null-allowed! 'System.nint UIKit.UIApplication::BeginBackgroundTask(System.String,System.Action)' is missing an [NullAllowed] on parameter #1 !missing-null-allowed! 'UIKit.IUIStateRestoring UIKit.UIStateRestoring::get_RestorationParent()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.IUIViewControllerAnimatedTransitioning UIKit.UINavigationControllerDelegate::GetAnimationControllerForOperation(UIKit.UINavigationController,UIKit.UINavigationControllerOperation,UIKit.UIViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.IUIViewControllerAnimatedTransitioning UIKit.UITabBarControllerDelegate::GetAnimationControllerForTransition(UIKit.UITabBarController,UIKit.UIViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type @@ -265,9 +321,9 @@ !missing-null-allowed! 'UIKit.IUIViewControllerInteractiveTransitioning UIKit.UIViewControllerTransitioningDelegate::GetInteractionControllerForDismissal(UIKit.IUIViewControllerAnimatedTransitioning)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.IUIViewControllerInteractiveTransitioning UIKit.UIViewControllerTransitioningDelegate::GetInteractionControllerForPresentation(UIKit.IUIViewControllerAnimatedTransitioning)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.IUIViewControllerTransitionCoordinator UIKit.TransitionCoordinator_UIViewController::GetTransitionCoordinator(UIKit.UIViewController)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.NSTextContainer UIKit.NSLayoutManager::get_ExtraLineFragmentTextContainer()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.NSTextContainer UIKit.NSLayoutManager::GetTextContainer(System.nuint,Foundation.NSRange&)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.NSTextContainer UIKit.NSLayoutManager::GetTextContainer(System.nuint,Foundation.NSRange&,System.Boolean)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.NSTextContainer UIKit.NSLayoutManager::get_ExtraLineFragmentTextContainer()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIAlertAction UIKit.UIAlertAction::Create(System.String,UIKit.UIAlertActionStyle,System.Action`1)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'UIKit.UIBezierPath UIKit.UICollisionBehavior::GetBoundary(Foundation.NSObject)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UICollectionView UIKit.UICollectionViewLayout::get_CollectionView()' is missing an [NullAllowed] on return type @@ -288,9 +344,9 @@ !missing-null-allowed! 'UIKit.UICollectionViewLayoutAttributes UIKit.UIDynamicAnimator::GetLayoutAttributesForSupplementaryView(Foundation.NSString,Foundation.NSIndexPath)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UICollectionViewLayoutAttributes[] UIKit.UICollectionViewLayout::LayoutAttributesForElementsInRect(CoreGraphics.CGRect)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UICollectionViewTransitionLayout UIKit.UICollectionView::StartInteractiveTransition(UIKit.UICollectionViewLayout,UIKit.UICollectionViewLayoutInteractiveTransitionCompletion)' is missing an [NullAllowed] on parameter #1 -!missing-null-allowed! 'UIKit.UIColor UIKit.UIButton::get_CurrentTitleShadowColor()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIColor UIKit.UIButton::TitleColor(UIKit.UIControlState)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIColor UIKit.UIButton::TitleShadowColor(UIKit.UIControlState)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIColor UIKit.UIButton::get_CurrentTitleShadowColor()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIDynamicAnimator UIKit.UIDynamicBehavior::get_DynamicAnimator()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIFontDescriptor UIKit.UIFontDescriptor::CreateWithTraits(UIKit.UIFontDescriptorSymbolicTraits)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIGestureRecognizer UIKit.UINavigationController::get_InteractivePopGestureRecognizer()' is missing an [NullAllowed] on return type @@ -302,9 +358,9 @@ !missing-null-allowed! 'UIKit.UIImage UIKit.UIBarButtonItem::GetBackgroundImage(UIKit.UIControlState,UIKit.UIBarButtonItemStyle,UIKit.UIBarMetrics)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIImage UIKit.UIBarButtonItem::GetBackgroundImage(UIKit.UIControlState,UIKit.UIBarMetrics)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIImage UIKit.UIButton::BackgroundImageForState(UIKit.UIControlState)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIImage UIKit.UIButton::ImageForState(UIKit.UIControlState)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIImage UIKit.UIButton::get_CurrentBackgroundImage()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIImage UIKit.UIButton::get_CurrentImage()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIImage UIKit.UIButton::ImageForState(UIKit.UIControlState)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIImage UIKit.UINavigationBar::GetBackgroundImage(UIKit.UIBarMetrics)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIImage UIKit.UINavigationBar::GetBackgroundImage(UIKit.UIBarPosition,UIKit.UIBarMetrics)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIImage UIKit.UISearchBar::BackgroundImageForBarPosition(UIKit.UIBarPosition,UIKit.UIBarMetrics)' is missing an [NullAllowed] on return type @@ -315,12 +371,12 @@ !missing-null-allowed! 'UIKit.UIImage UIKit.UISegmentedControl::DividerImageForLeftSegmentStaterightSegmentStatebarMetrics(UIKit.UIControlState,UIKit.UIControlState,UIKit.UIBarMetrics)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIImage UIKit.UISegmentedControl::GetBackgroundImage(UIKit.UIControlState,UIKit.UIBarMetrics)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIImage UIKit.UISegmentedControl::ImageAt(System.nint)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIImage UIKit.UISlider::get_CurrentMaxTrackImage()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIImage UIKit.UISlider::get_CurrentMinTrackImage()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIImage UIKit.UISlider::get_CurrentThumbImage()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIImage UIKit.UISlider::MaxTrackImage(UIKit.UIControlState)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIImage UIKit.UISlider::MinTrackImage(UIKit.UIControlState)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIImage UIKit.UISlider::ThumbImage(UIKit.UIControlState)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIImage UIKit.UISlider::get_CurrentMaxTrackImage()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIImage UIKit.UISlider::get_CurrentMinTrackImage()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIImage UIKit.UISlider::get_CurrentThumbImage()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIImage UIKit.UIStepper::BackgroundImage(UIKit.UIControlState)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIImage UIKit.UIStepper::GetDecrementImage(UIKit.UIControlState)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIImage UIKit.UIStepper::GetDividerImage(UIKit.UIControlState,UIKit.UIControlState)' is missing an [NullAllowed] on return type @@ -342,19 +398,19 @@ !missing-null-allowed! 'UIKit.UILabel UIKit.UITableViewHeaderFooterView::get_DetailTextLabel()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UILabel UIKit.UITableViewHeaderFooterView::get_TextLabel()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UINavigationController UIKit.UIViewController::get_NavigationController()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UINavigationItem UIKit.UINavigationBar::PopNavigationItem(System.Boolean)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UINavigationItem UIKit.UINavigationBar::get_BackItem()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UINavigationItem UIKit.UINavigationBar::get_TopItem()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UINavigationItem UIKit.UINavigationBar::PopNavigationItem(System.Boolean)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIPasteboard UIKit.UIPasteboard::FromName(System.String,System.Boolean)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIPinchGestureRecognizer UIKit.UIScrollView::get_PinchGestureRecognizer()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIPopoverPresentationController UIKit.UIViewController::get_PopoverPresentationController()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIPresentationController UIKit.UIViewController::get_PresentationController()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIPresentationController UIKit.UIViewControllerTransitioningDelegate::GetPresentationControllerForPresentedViewController(UIKit.UIViewController,UIKit.UIViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIPrinter UIKit.UIPrinterPickerController::get_SelectedPrinter()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIPrintFormatter[] UIKit.UIPrintPageRenderer::PrintFormattersForPage(System.nint)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIPrintInfo UIKit.UIPrintInfo::FromDictionary(Foundation.NSDictionary)' is missing an [NullAllowed] on parameter #0 !missing-null-allowed! 'UIKit.UIPrintPageRenderer UIKit.UIPrintFormatter::get_PrintPageRenderer()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIPrintPaper UIKit.UIPrintInteractionController::get_PrintPaper()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIPrinter UIKit.UIPrinterPickerController::get_SelectedPrinter()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIResponder UIKit.UIResponder::get_NextResponder()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIScreen UIKit.UIScreen::get_MirroredScreen()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIScreenMode UIKit.UIScreen::get_PreferredMode()' is missing an [NullAllowed] on return type @@ -389,265 +445,49 @@ !missing-null-allowed! 'UIKit.UIView UIKit.UITableViewDelegate::GetViewForFooter(UIKit.UITableView,System.nint)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIView UIKit.UITableViewDelegate::GetViewForHeader(UIKit.UITableView,System.nint)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIView UIKit.UITouch::get_View()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIView UIKit.UIView::get_Superview()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIView UIKit.UIView::HitTest(CoreGraphics.CGPoint,UIKit.UIEvent)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIView UIKit.UIView::SnapshotView(System.Boolean)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIView UIKit.UIView::ViewWithTag(System.nint)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIView UIKit.UIView::get_Superview()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIView UIKit.UIViewController::get_RotatingFooterView()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIView UIKit.UIViewController::get_RotatingHeaderView()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIView UIKit.UIViewControllerContextTransitioning::GetViewFor(Foundation.NSString)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController UIKit.UIActivity::get_ViewController()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController UIKit.UIAdaptivePresentationControllerDelegate::GetViewControllerForAdaptivePresentation(UIKit.UIPresentationController,UIKit.UIModalPresentationStyle)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController UIKit.UIApplicationDelegate::GetViewController(UIKit.UIApplication,System.String[],Foundation.NSCoder)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIViewController UIKit.UINavigationController::PopViewController(System.Boolean)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController UIKit.UINavigationController::get_TopViewController()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController UIKit.UINavigationController::get_VisibleViewController()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIViewController UIKit.UINavigationController::PopViewController(System.Boolean)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController UIKit.UIPageViewControllerDataSource::GetNextViewController(UIKit.UIPageViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController UIKit.UIPageViewControllerDataSource::GetPreviousViewController(UIKit.UIPageViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIViewController UIKit.UIPrinterPickerControllerDelegate::GetParentViewController(UIKit.UIPrinterPickerController)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController UIKit.UIPrintInteractionControllerDelegate::GetViewController(UIKit.UIPrintInteractionController)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIViewController UIKit.UIPrinterPickerControllerDelegate::GetParentViewController(UIKit.UIPrinterPickerController)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController UIKit.UISearchController::get_SearchResultsController()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIViewController UIKit.UISplitViewController_UIViewController::SeparateSecondaryViewControllerForSplitViewController(UIKit.UIViewController,UIKit.UISplitViewController)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController UIKit.UISplitViewControllerDelegate::GetPrimaryViewControllerForCollapsingSplitViewController(UIKit.UISplitViewController)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController UIKit.UISplitViewControllerDelegate::GetPrimaryViewControllerForExpandingSplitViewController(UIKit.UISplitViewController)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController UIKit.UISplitViewControllerDelegate::SeparateSecondaryViewController(UIKit.UISplitViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIViewController UIKit.UISplitViewController_UIViewController::SeparateSecondaryViewControllerForSplitViewController(UIKit.UIViewController,UIKit.UISplitViewController)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController UIKit.UIStoryboard::InstantiateInitialViewController()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController UIKit.UIStoryboard::InstantiateInitialViewController(UIKit.UIStoryboardViewControllerCreator)' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController UIKit.UIViewController::ChildViewControllerForStatusBarHidden()' is missing an [NullAllowed] on return type !missing-null-allowed! 'UIKit.UIViewController UIKit.UIViewController::ChildViewControllerForStatusBarStyle()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIViewController UIKit.UIViewController::get_ModalViewController()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIViewController UIKit.UIViewController::get_PresentedViewController()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIViewController UIKit.UIViewController::get_PresentingViewController()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIViewController UIKit.UIViewController::GetTargetViewControllerForAction(ObjCRuntime.Selector,Foundation.NSObject)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIViewController UIKit.UIViewController::GetViewControllerForUnwind(ObjCRuntime.Selector,UIKit.UIViewController,Foundation.NSObject)' is missing an [NullAllowed] on parameter #2 -!missing-null-allowed! 'UIKit.UIViewController UIKit.UIViewController::GetViewControllerForUnwind(ObjCRuntime.Selector,UIKit.UIViewController,Foundation.NSObject)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIViewController UIKit.UIViewControllerContextTransitioning::GetViewControllerForKey(Foundation.NSString)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIViewController UIKit.UIViewControllerPreviewingDelegate::GetViewControllerForPreview(UIKit.IUIViewControllerPreviewing,CoreGraphics.CGPoint)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIViewController[] UIKit.UINavigationController::PopToRootViewController(System.Boolean)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIViewController[] UIKit.UINavigationController::PopToViewController(UIKit.UIViewController,System.Boolean)' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIViewController[] UIKit.UIPageViewController::get_ViewControllers()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIWindow UIKit.UIApplication::get_KeyWindow()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIWindow UIKit.UITouch::get_Window()' is missing an [NullAllowed] on return type -!missing-null-allowed! 'UIKit.UIWindow UIKit.UIView::get_Window()' is missing an [NullAllowed] on return type -!missing-pinvoke! UIFontWeightForImageSymbolWeight is not bound -!missing-pinvoke! UIImageSymbolWeightForFontWeight is not bound -!missing-protocol! UISearchSuggestion not bound -!missing-protocol! UIWebViewDelegate not bound -!missing-protocol-conformance! UIDocumentInteractionController should conform to UIActionSheetDelegate -!missing-protocol-conformance! UIResponder should conform to NSTouchBarProvider (defined in 'NSTouchBarProvider' category) -!missing-protocol-conformance! UIViewController should conform to UIStateRestoring (defined in 'UIStateRestoration' category) -!missing-protocol-member! NSCollectionLayoutVisibleItem::bounds not found -!missing-protocol-member! NSCollectionLayoutVisibleItem::center not found -!missing-protocol-member! NSCollectionLayoutVisibleItem::setCenter: not found -!missing-protocol-member! NSCollectionLayoutVisibleItem::setTransform: not found -!missing-protocol-member! NSCollectionLayoutVisibleItem::transform not found -!missing-protocol-member! UIFocusEnvironment::soundIdentifierForFocusUpdateInContext: not found -!missing-protocol-member! UISearchResultsUpdating::updateSearchResultsForSearchController:selectingSearchSuggestion: not found -!missing-requires-super! UIControl::contextMenuInteraction:willDisplayMenuForConfiguration:animator: is missing an [RequiresSuper] attribute -!missing-requires-super! UIControl::contextMenuInteraction:willEndForConfiguration:animator: is missing an [RequiresSuper] attribute -!missing-selector! +NSToolbarItem::itemWithItemIdentifier:barButtonItem: not bound -!missing-selector! +UIFocusSystem::registerURL:forSoundIdentifier: not bound -!missing-selector! +UIFont::defaultFontSize not bound -!missing-selector! +UIFont::systemMinimumFontSize not bound -!missing-selector! +UISearchSuggestionItem::suggestionWithLocalizedSuggestion: not bound -!missing-selector! +UISearchSuggestionItem::suggestionWithLocalizedSuggestion:descriptionString: not bound -!missing-selector! +UISearchSuggestionItem::suggestionWithLocalizedSuggestion:descriptionString:iconImage: not bound -!missing-selector! NSDiffableDataSourceSectionTransaction::difference not bound -!missing-selector! NSDiffableDataSourceTransaction::difference not bound -!missing-selector! NSLayoutAnchor::constraintsAffectingLayout not bound -!missing-selector! NSLayoutAnchor::hasAmbiguousLayout not bound -!missing-selector! NSLayoutAnchor::item not bound -!missing-selector! NSLayoutAnchor::name not bound -!missing-selector! NSLayoutManager::hyphenationFactor not bound -!missing-selector! NSLayoutManager::setHyphenationFactor: not bound -!missing-selector! NSLayoutManager::showCGGlyphs:positions:count:font:matrix:attributes:inContext: not bound -!missing-selector! NSMenuToolbarItem::itemMenu not bound -!missing-selector! NSMenuToolbarItem::setItemMenu: not bound -!missing-selector! NSObject::accessibilityDragSourceDescriptors not bound -!missing-selector! NSObject::accessibilityDropPointDescriptors not bound -!missing-selector! NSObject::accessibilityHeaderElements not bound -!missing-selector! NSObject::setAccessibilityDragSourceDescriptors: not bound -!missing-selector! NSObject::setAccessibilityDropPointDescriptors: not bound -!missing-selector! NSObject::setAccessibilityHeaderElements: not bound -!missing-selector! NSSharingServicePickerToolbarItem::activityItemsConfiguration not bound -!missing-selector! NSSharingServicePickerToolbarItem::setActivityItemsConfiguration: not bound -!missing-selector! NSSharingServicePickerTouchBarItem::activityItemsConfiguration not bound -!missing-selector! NSSharingServicePickerTouchBarItem::setActivityItemsConfiguration: not bound -!missing-selector! NSToolbarItem::itemMenuFormRepresentation not bound -!missing-selector! NSToolbarItem::setItemMenuFormRepresentation: not bound -!missing-selector! UIAlertView::initWithTitle:message:delegate:cancelButtonTitle:otherButtonTitles: not bound -!missing-selector! UIBarAppearance::copy not bound -!missing-selector! UIBarButtonItemAppearance::copy not bound -!missing-selector! UICollectionView::contextMenuInteraction not bound -!missing-selector! UICollectionViewDiffableDataSourceReorderingHandlers::canReorderItemHandler not bound -!missing-selector! UICollectionViewDiffableDataSourceReorderingHandlers::didReorderHandler not bound -!missing-selector! UICollectionViewDiffableDataSourceReorderingHandlers::setCanReorderItemHandler: not bound -!missing-selector! UICollectionViewDiffableDataSourceReorderingHandlers::setDidReorderHandler: not bound -!missing-selector! UICollectionViewDiffableDataSourceReorderingHandlers::setWillReorderHandler: not bound -!missing-selector! UICollectionViewDiffableDataSourceReorderingHandlers::willReorderHandler not bound -!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::setShouldCollapseItemHandler: not bound -!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::setShouldExpandItemHandler: not bound -!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::setSnapshotForExpandingParentItemHandler: not bound -!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::setWillCollapseItemHandler: not bound -!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::setWillExpandItemHandler: not bound -!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::shouldCollapseItemHandler not bound -!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::shouldExpandItemHandler not bound -!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::snapshotForExpandingParentItemHandler not bound -!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::willCollapseItemHandler not bound -!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::willExpandItemHandler not bound -!missing-selector! UIGestureRecognizer::initWithCoder: not bound -!missing-selector! UIImageView::adjustsImageWhenAncestorFocused not bound -!missing-selector! UIImageView::focusedFrameGuide not bound -!missing-selector! UIImageView::masksFocusEffectToContents not bound -!missing-selector! UIImageView::overlayContentView not bound -!missing-selector! UIImageView::setAdjustsImageWhenAncestorFocused: not bound -!missing-selector! UIImageView::setMasksFocusEffectToContents: not bound -!missing-selector! UIKeyCommand::action not bound -!missing-selector! UILabel::enablesMarqueeWhenAncestorFocused not bound -!missing-selector! UILabel::setEnablesMarqueeWhenAncestorFocused: not bound -!missing-selector! UIPrintPaper::printRect not bound -!missing-selector! UIRefreshControl::setTintColor: not bound -!missing-selector! UIRefreshControl::tintColor not bound -!missing-selector! UIResponder::makeTouchBar not bound -!missing-selector! UIResponder::setTouchBar: not bound -!missing-selector! UIResponder::touchBar not bound -!missing-selector! UISearchController::searchControllerObservedScrollView not bound -!missing-selector! UISearchController::searchSuggestions not bound -!missing-selector! UISearchController::setSearchControllerObservedScrollView: not bound -!missing-selector! UISearchController::setSearchSuggestions: not bound -!missing-selector! UISearchSuggestionItem::iconImage not bound -!missing-selector! UISearchSuggestionItem::initWithLocalizedSuggestion: not bound -!missing-selector! UISearchSuggestionItem::initWithLocalizedSuggestion:localizedDescription: not bound -!missing-selector! UISearchSuggestionItem::initWithLocalizedSuggestion:localizedDescription:iconImage: not bound -!missing-selector! UISearchSuggestionItem::localizedDescription not bound -!missing-selector! UISearchSuggestionItem::localizedSuggestion not bound -!missing-selector! UITabBar::leadingAccessoryView not bound -!missing-selector! UITabBar::trailingAccessoryView not bound -!missing-selector! UITabBarItemAppearance::copy not bound -!missing-selector! UITableView::contextMenuInteraction not bound -!missing-selector! UITitlebar::autoHidesToolbarInFullScreen not bound -!missing-selector! UITitlebar::representedURL not bound -!missing-selector! UITitlebar::separatorStyle not bound -!missing-selector! UITitlebar::setAutoHidesToolbarInFullScreen: not bound -!missing-selector! UITitlebar::setRepresentedURL: not bound -!missing-selector! UITitlebar::setSeparatorStyle: not bound -!missing-selector! UITitlebar::setTitleVisibility: not bound -!missing-selector! UITitlebar::setToolbar: not bound -!missing-selector! UITitlebar::setToolbarStyle: not bound -!missing-selector! UITitlebar::titleVisibility not bound -!missing-selector! UITitlebar::toolbar not bound -!missing-selector! UITitlebar::toolbarStyle not bound -!missing-selector! UIToolbar::setTintColor: not bound -!missing-selector! UIToolbar::tintColor not bound -!missing-selector! UIViewController::childViewControllerForTouchBar not bound -!missing-selector! UIViewController::childViewControllerForUserInterfaceStyle not bound -!missing-selector! UIViewController::preferredUserInterfaceStyle not bound -!missing-selector! UIViewController::setNeedsTouchBarUpdate not bound -!missing-selector! UIViewController::setNeedsUserInterfaceAppearanceUpdate not bound -!missing-selector! UIViewController::setTabBarObservedScrollView: not bound -!missing-selector! UIViewController::tabBarObservedScrollView not bound -!missing-selector! UIWebView::allowsInlineMediaPlayback not bound -!missing-selector! UIWebView::allowsLinkPreview not bound -!missing-selector! UIWebView::allowsPictureInPictureMediaPlayback not bound -!missing-selector! UIWebView::canGoBack not bound -!missing-selector! UIWebView::canGoForward not bound -!missing-selector! UIWebView::dataDetectorTypes not bound -!missing-selector! UIWebView::delegate not bound -!missing-selector! UIWebView::gapBetweenPages not bound -!missing-selector! UIWebView::goBack not bound -!missing-selector! UIWebView::goForward not bound -!missing-selector! UIWebView::isLoading not bound -!missing-selector! UIWebView::keyboardDisplayRequiresUserAction not bound -!missing-selector! UIWebView::loadData:MIMEType:textEncodingName:baseURL: not bound -!missing-selector! UIWebView::loadHTMLString:baseURL: not bound -!missing-selector! UIWebView::loadRequest: not bound -!missing-selector! UIWebView::mediaPlaybackAllowsAirPlay not bound -!missing-selector! UIWebView::mediaPlaybackRequiresUserAction not bound -!missing-selector! UIWebView::pageCount not bound -!missing-selector! UIWebView::pageLength not bound -!missing-selector! UIWebView::paginationBreakingMode not bound -!missing-selector! UIWebView::paginationMode not bound -!missing-selector! UIWebView::reload not bound -!missing-selector! UIWebView::request not bound -!missing-selector! UIWebView::scalesPageToFit not bound -!missing-selector! UIWebView::scrollView not bound -!missing-selector! UIWebView::setAllowsInlineMediaPlayback: not bound -!missing-selector! UIWebView::setAllowsLinkPreview: not bound -!missing-selector! UIWebView::setAllowsPictureInPictureMediaPlayback: not bound -!missing-selector! UIWebView::setDataDetectorTypes: not bound -!missing-selector! UIWebView::setDelegate: not bound -!missing-selector! UIWebView::setGapBetweenPages: not bound -!missing-selector! UIWebView::setKeyboardDisplayRequiresUserAction: not bound -!missing-selector! UIWebView::setMediaPlaybackAllowsAirPlay: not bound -!missing-selector! UIWebView::setMediaPlaybackRequiresUserAction: not bound -!missing-selector! UIWebView::setPageLength: not bound -!missing-selector! UIWebView::setPaginationBreakingMode: not bound -!missing-selector! UIWebView::setPaginationMode: not bound -!missing-selector! UIWebView::setScalesPageToFit: not bound -!missing-selector! UIWebView::setSuppressesIncrementalRendering: not bound -!missing-selector! UIWebView::stopLoading not bound -!missing-selector! UIWebView::stringByEvaluatingJavaScriptFromString: not bound -!missing-selector! UIWebView::suppressesIncrementalRendering not bound -!missing-selector! UIWindowScene::titlebar not bound -!missing-type! UISearchSuggestionItem not bound -!missing-type! UITitlebar not bound -!missing-type! UIWebView not bound -## appended from unclassified file -!missing-enum! NSTextLayoutFragmentEnumerationOptions not bound -!missing-enum! NSTextLayoutFragmentState not bound -!missing-enum! NSTextLayoutManagerSegmentOptions not bound -!missing-enum! NSTextLayoutManagerSegmentType not bound -!missing-enum! NSTextSelectionAffinity not bound -!missing-enum! NSTextSelectionGranularity not bound -!missing-enum! NSTextSelectionNavigationDestination not bound -!missing-enum! NSTextSelectionNavigationDirection not bound -!missing-enum! NSTextSelectionNavigationModifier not bound -!missing-enum! UIBandSelectionInteractionState not bound -!missing-enum! UIBehavioralStyle not bound -!missing-enum! UIButtonConfigurationCornerStyle not bound -!missing-enum! UIButtonConfigurationMacIdiomStyle not bound -!missing-enum! UIButtonConfigurationSize not bound -!missing-enum! UIButtonConfigurationTitleAlignment not bound -!missing-enum! UIFocusHaloEffectPosition not bound -!missing-enum! UIWindowScenePresentationStyle not bound -!missing-enum-value! UIFocusHeading native value UIFocusHeadingFirst = 256 not bound -!missing-enum-value! UIFocusHeading native value UIFocusHeadingLast = 512 not bound -!missing-enum-value! UIMenuOptions native value UIMenuOptionsSingleSelection = 32 not bound -!missing-field! NSTextContentStorageUnsupportedAttributeAddedNotification not bound -!missing-field! UIActionPaste not bound -!missing-field! UIActionPasteAndGo not bound -!missing-field! UIActionPasteAndMatchStyle not bound -!missing-field! UIActionPasteAndSearch not bound -!missing-field! UICollectionViewLayoutAutomaticDimension not bound -!missing-field! UIFocusGroupPriorityCurrentlyFocused not bound -!missing-field! UIFocusGroupPriorityIgnored not bound -!missing-field! UIFocusGroupPriorityPreviouslyFocused not bound -!missing-field! UIFocusGroupPriorityPrioritized not bound -!missing-field! UIKeyInputDelete not bound -!missing-field! UIMenuSidebar not bound -!missing-field! UIPasteboardDetectionPatternAddress not bound -!missing-field! UIPasteboardDetectionPatternCalendarEvent not bound -!missing-field! UIPasteboardDetectionPatternEmailAddress not bound -!missing-field! UIPasteboardDetectionPatternFlightNumber not bound -!missing-field! UIPasteboardDetectionPatternLink not bound -!missing-field! UIPasteboardDetectionPatternMoneyAmount not bound -!missing-field! UIPasteboardDetectionPatternPhoneNumber not bound -!missing-field! UIPasteboardDetectionPatternShipmentTrackingNumber not bound -!missing-field! UIPointerAccessoryPositionBottom not bound -!missing-field! UIPointerAccessoryPositionBottomLeft not bound -!missing-field! UIPointerAccessoryPositionBottomRight not bound -!missing-field! UIPointerAccessoryPositionLeft not bound -!missing-field! UIPointerAccessoryPositionRight not bound -!missing-field! UIPointerAccessoryPositionTop not bound -!missing-field! UIPointerAccessoryPositionTopLeft not bound -!missing-field! UIPointerAccessoryPositionTopRight not bound -!missing-field! UISheetPresentationControllerAutomaticDimension not bound -!missing-field! UISheetPresentationControllerDetentIdentifierLarge not bound -!missing-field! UISheetPresentationControllerDetentIdentifierMedium not bound -!missing-field! UITextContentTypeDateTime not bound -!missing-field! UITextContentTypeFlightNumber not bound -!missing-field! UITextContentTypeShipmentTrackingNumber not bound -!missing-null-allowed! 'System.String UIKit.UIViewController::get_FocusGroupIdentifier()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIViewController UIKit.UIViewController::GetTargetViewControllerForAction(ObjCRuntime.Selector,Foundation.NSObject)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIViewController UIKit.UIViewController::GetViewControllerForUnwind(ObjCRuntime.Selector,UIKit.UIViewController,Foundation.NSObject)' is missing an [NullAllowed] on parameter #2 +!missing-null-allowed! 'UIKit.UIViewController UIKit.UIViewController::GetViewControllerForUnwind(ObjCRuntime.Selector,UIKit.UIViewController,Foundation.NSObject)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIViewController UIKit.UIViewController::get_ModalViewController()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIViewController UIKit.UIViewController::get_PresentedViewController()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIViewController UIKit.UIViewController::get_PresentingViewController()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIViewController UIKit.UIViewControllerContextTransitioning::GetViewControllerForKey(Foundation.NSString)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIViewController UIKit.UIViewControllerPreviewingDelegate::GetViewControllerForPreview(UIKit.IUIViewControllerPreviewing,CoreGraphics.CGPoint)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIViewController[] UIKit.UINavigationController::PopToRootViewController(System.Boolean)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIViewController[] UIKit.UINavigationController::PopToViewController(UIKit.UIViewController,System.Boolean)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIViewController[] UIKit.UIPageViewController::get_ViewControllers()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIWindow UIKit.UIApplication::get_KeyWindow()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIWindow UIKit.UITouch::get_Window()' is missing an [NullAllowed] on return type +!missing-null-allowed! 'UIKit.UIWindow UIKit.UIView::get_Window()' is missing an [NullAllowed] on return type +!missing-pinvoke! UIFontWeightForImageSymbolWeight is not bound +!missing-pinvoke! UIImageSymbolWeightForFontWeight is not bound +!missing-protocol! NSTextAttachmentLayout not bound !missing-protocol! NSTextContentManagerDelegate not bound !missing-protocol! NSTextContentStorageDelegate not bound !missing-protocol! NSTextElementProvider not bound @@ -657,22 +497,40 @@ !missing-protocol! NSTextStorageObserving not bound !missing-protocol! NSTextViewportLayoutControllerDelegate not bound !missing-protocol! UIActivityItemsConfigurationProviding not bound +!missing-protocol! UISearchSuggestion not bound !missing-protocol! UISheetPresentationControllerDelegate not bound !missing-protocol! UIToolTipInteractionDelegate not bound +!missing-protocol! UIWebViewDelegate not bound +!missing-protocol-conformance! NSTextAttachment should conform to NSTextAttachmentLayout +!missing-protocol-conformance! UIDocumentInteractionController should conform to UIActionSheetDelegate !missing-protocol-conformance! UIFont should conform to NSSecureCoding +!missing-protocol-conformance! UIResponder should conform to NSTouchBarProvider (defined in 'NSTouchBarProvider' category) !missing-protocol-conformance! UIResponder should conform to UIActivityItemsConfigurationProviding (defined in 'UIActivityItemsConfiguration' category) +!missing-protocol-conformance! UIViewController should conform to UIStateRestoring (defined in 'UIStateRestoration' category) +!missing-protocol-member! NSCollectionLayoutVisibleItem::bounds not found +!missing-protocol-member! NSCollectionLayoutVisibleItem::center not found +!missing-protocol-member! NSCollectionLayoutVisibleItem::setCenter: not found +!missing-protocol-member! NSCollectionLayoutVisibleItem::setTransform: not found +!missing-protocol-member! NSCollectionLayoutVisibleItem::transform not found !missing-protocol-member! UIAdaptivePresentationControllerDelegate::presentationController:prepareAdaptivePresentationController: not found !missing-protocol-member! UIApplicationDelegate::applicationShouldAutomaticallyLocalizeKeyCommands: not found !missing-protocol-member! UICollectionViewDelegate::collectionView:sceneActivationConfigurationForItemAtIndexPath:point: not found !missing-protocol-member! UICollectionViewDelegate::collectionView:selectionFollowsFocusForItemAtIndexPath: not found !missing-protocol-member! UICollectionViewDelegate::collectionView:targetIndexPathForMoveOfItemFromOriginalIndexPath:atCurrentIndexPath:toProposedIndexPath: not found !missing-protocol-member! UIColorPickerViewControllerDelegate::colorPickerViewController:didSelectColor:continuously: not found +!missing-protocol-member! UIFocusEnvironment::soundIdentifierForFocusUpdateInContext: not found !missing-protocol-member! UIFocusItem::focusEffect not found !missing-protocol-member! UIFocusItem::focusGroupPriority not found !missing-protocol-member! UIFocusItem::isTransparentFocusItem not found !missing-protocol-member! UISceneDelegate::scene:restoreInteractionStateWithUserActivity: not found +!missing-protocol-member! UISearchResultsUpdating::updateSearchResultsForSearchController:selectingSearchSuggestion: not found !missing-protocol-member! UITableViewDelegate::tableView:selectionFollowsFocusForRowAtIndexPath: not found +!missing-requires-super! UIControl::contextMenuInteraction:willDisplayMenuForConfiguration:animator: is missing an [RequiresSuper] attribute +!missing-requires-super! UIControl::contextMenuInteraction:willEndForConfiguration:animator: is missing an [RequiresSuper] attribute +!missing-selector! +NSTextAttachment::registerTextAttachmentViewProviderClass:forFileType: not bound +!missing-selector! +NSTextAttachment::textAttachmentViewProviderClassForFileType: not bound !missing-selector! +NSTextLayoutManager::linkRenderingAttributes not bound +!missing-selector! +NSToolbarItem::itemWithItemIdentifier:barButtonItem: not bound !missing-selector! +UIAction::captureTextFromCameraActionForResponder:identifier: not bound !missing-selector! +UIButton::buttonWithConfiguration:primaryAction: not bound !missing-selector! +UIButtonConfiguration::filledButtonConfiguration not bound @@ -680,12 +538,22 @@ !missing-selector! +UIButtonConfiguration::plainButtonConfiguration not bound !missing-selector! +UIButtonConfiguration::tintedButtonConfiguration not bound !missing-selector! +UIColor::systemBrownColor not bound +!missing-selector! +UIColor::systemCyanColor not bound +!missing-selector! +UIColor::systemMintColor not bound !missing-selector! +UIColor::tintColor not bound +!missing-selector! +UIDeferredMenuElement::elementWithUncachedProvider: not bound !missing-selector! +UIFocusDebugger::checkFocusGroupTreeForEnvironment: not bound !missing-selector! +UIFocusEffect::effect not bound !missing-selector! +UIFocusHaloEffect::effectWithPath: not bound !missing-selector! +UIFocusHaloEffect::effectWithRect: not bound !missing-selector! +UIFocusHaloEffect::effectWithRoundedRect:cornerRadius:curve: not bound +!missing-selector! +UIFocusSystem::registerURL:forSoundIdentifier: not bound +!missing-selector! +UIFont::defaultFontSize not bound +!missing-selector! +UIFont::systemMinimumFontSize not bound +!missing-selector! +UIImage::imageNamed:variant: not bound +!missing-selector! +UIImage::imageNamed:variant:withConfiguration: not bound +!missing-selector! +UIImage::systemImageNamed:variant: not bound +!missing-selector! +UIImage::systemImageNamed:variant:withConfiguration: not bound !missing-selector! +UIImageSymbolConfiguration::configurationPreferringMulticolor not bound !missing-selector! +UIImageSymbolConfiguration::configurationWithHierarchicalColor: not bound !missing-selector! +UIImageSymbolConfiguration::configurationWithPaletteColors: not bound @@ -694,30 +562,82 @@ !missing-selector! +UIPointerAccessory::accessoryWithShape:position: not bound !missing-selector! +UIPointerAccessory::arrowAccessoryWithPosition: not bound !missing-selector! +UIPointerStyle::systemPointerStyle not bound +!missing-selector! +UISearchSuggestionItem::suggestionWithLocalizedSuggestion: not bound +!missing-selector! +UISearchSuggestionItem::suggestionWithLocalizedSuggestion:descriptionString: not bound +!missing-selector! +UISearchSuggestionItem::suggestionWithLocalizedSuggestion:descriptionString:iconImage: not bound !missing-selector! +UISheetPresentationControllerDetent::largeDetent not bound !missing-selector! +UISheetPresentationControllerDetent::mediumDetent not bound +!missing-selector! +UIToolTipConfiguration::configurationWithToolTip: not bound +!missing-selector! +UIToolTipConfiguration::configurationWithToolTip:inRect: not bound !missing-selector! +UIWindowSceneActivationAction::actionWithIdentifier:alternateAction:configurationProvider: not bound +!missing-selector! NSDiffableDataSourceSectionTransaction::difference not bound !missing-selector! NSDiffableDataSourceSnapshot::reconfigureItemsWithIdentifiers: not bound +!missing-selector! NSDiffableDataSourceSnapshot::reconfiguredItemIdentifiers not bound +!missing-selector! NSDiffableDataSourceSnapshot::reloadedItemIdentifiers not bound +!missing-selector! NSDiffableDataSourceSnapshot::reloadedSectionIdentifiers not bound +!missing-selector! NSDiffableDataSourceTransaction::difference not bound +!missing-selector! NSLayoutAnchor::constraintsAffectingLayout not bound +!missing-selector! NSLayoutAnchor::hasAmbiguousLayout not bound +!missing-selector! NSLayoutAnchor::item not bound +!missing-selector! NSLayoutAnchor::name not bound +!missing-selector! NSLayoutManager::hyphenationFactor not bound +!missing-selector! NSLayoutManager::setHyphenationFactor: not bound +!missing-selector! NSLayoutManager::showCGGlyphs:positions:count:font:matrix:attributes:inContext: not bound +!missing-selector! NSMenuToolbarItem::itemMenu not bound +!missing-selector! NSMenuToolbarItem::setItemMenu: not bound !missing-selector! NSMutableParagraphStyle::setUsesDefaultHyphenation: not bound !missing-selector! NSMutableParagraphStyle::usesDefaultHyphenation not bound +!missing-selector! NSObject::accessibilityDragSourceDescriptors not bound +!missing-selector! NSObject::accessibilityDropPointDescriptors not bound +!missing-selector! NSObject::accessibilityHeaderElements not bound +!missing-selector! NSObject::setAccessibilityDragSourceDescriptors: not bound +!missing-selector! NSObject::setAccessibilityDropPointDescriptors: not bound +!missing-selector! NSObject::setAccessibilityHeaderElements: not bound !missing-selector! NSParagraphStyle::usesDefaultHyphenation not bound +!missing-selector! NSSharingServicePickerToolbarItem::activityItemsConfiguration not bound +!missing-selector! NSSharingServicePickerToolbarItem::setActivityItemsConfiguration: not bound +!missing-selector! NSSharingServicePickerTouchBarItem::activityItemsConfiguration not bound +!missing-selector! NSSharingServicePickerTouchBarItem::setActivityItemsConfiguration: not bound +!missing-selector! NSTextAttachment::allowsTextAttachmentView not bound +!missing-selector! NSTextAttachment::lineLayoutPadding not bound +!missing-selector! NSTextAttachment::setAllowsTextAttachmentView: not bound +!missing-selector! NSTextAttachment::setLineLayoutPadding: not bound +!missing-selector! NSTextAttachment::usesTextAttachmentView not bound +!missing-selector! NSTextAttachmentViewProvider::attachmentBoundsForAttributes:location:textContainer:proposedLineFragment:position: not bound +!missing-selector! NSTextAttachmentViewProvider::initWithTextAttachment:parentView:textLayoutManager:location: not bound +!missing-selector! NSTextAttachmentViewProvider::loadView not bound +!missing-selector! NSTextAttachmentViewProvider::location not bound +!missing-selector! NSTextAttachmentViewProvider::setTracksTextAttachmentViewBounds: not bound +!missing-selector! NSTextAttachmentViewProvider::setView: not bound +!missing-selector! NSTextAttachmentViewProvider::textAttachment not bound +!missing-selector! NSTextAttachmentViewProvider::textLayoutManager not bound +!missing-selector! NSTextAttachmentViewProvider::tracksTextAttachmentViewBounds not bound +!missing-selector! NSTextAttachmentViewProvider::view not bound !missing-selector! NSTextContainer::textLayoutManager not bound !missing-selector! NSTextContentManager::addTextLayoutManager: not bound +!missing-selector! NSTextContentManager::automaticallySynchronizesTextLayoutManagers not bound +!missing-selector! NSTextContentManager::automaticallySynchronizesToBackingStore not bound !missing-selector! NSTextContentManager::delegate not bound !missing-selector! NSTextContentManager::hasEditingTransaction not bound !missing-selector! NSTextContentManager::init not bound !missing-selector! NSTextContentManager::initWithCoder: not bound +!missing-selector! NSTextContentManager::performEditingTransactionUsingBlock: not bound !missing-selector! NSTextContentManager::primaryTextLayoutManager not bound !missing-selector! NSTextContentManager::recordEditActionInRange:newTextRange: not bound !missing-selector! NSTextContentManager::removeTextLayoutManager: not bound +!missing-selector! NSTextContentManager::setAutomaticallySynchronizesTextLayoutManagers: not bound +!missing-selector! NSTextContentManager::setAutomaticallySynchronizesToBackingStore: not bound !missing-selector! NSTextContentManager::setDelegate: not bound !missing-selector! NSTextContentManager::setPrimaryTextLayoutManager: not bound !missing-selector! NSTextContentManager::synchronizeTextLayoutManagers: not bound !missing-selector! NSTextContentManager::textElementsForRange: not bound !missing-selector! NSTextContentManager::textLayoutManagers not bound +!missing-selector! NSTextContentStorage::adjustedRangeFromRange:forEditingTextSelection: not bound !missing-selector! NSTextContentStorage::attributedString not bound !missing-selector! NSTextContentStorage::attributedStringForTextElement: not bound !missing-selector! NSTextContentStorage::delegate not bound +!missing-selector! NSTextContentStorage::locationFromLocation:withOffset: not bound +!missing-selector! NSTextContentStorage::offsetFromLocation:toLocation: not bound !missing-selector! NSTextContentStorage::setAttributedString: not bound !missing-selector! NSTextContentStorage::setDelegate: not bound !missing-selector! NSTextContentStorage::textElementForAttributedString: not bound @@ -726,12 +646,14 @@ !missing-selector! NSTextElement::setElementRange: not bound !missing-selector! NSTextElement::setTextContentManager: not bound !missing-selector! NSTextElement::textContentManager not bound +!missing-selector! NSTextLayoutFragment::bottomMargin not bound !missing-selector! NSTextLayoutFragment::drawAtPoint:inContext: not bound !missing-selector! NSTextLayoutFragment::initWithCoder: not bound !missing-selector! NSTextLayoutFragment::initWithTextElement:range: not bound !missing-selector! NSTextLayoutFragment::invalidateLayout not bound !missing-selector! NSTextLayoutFragment::layoutFragmentFrame not bound !missing-selector! NSTextLayoutFragment::layoutQueue not bound +!missing-selector! NSTextLayoutFragment::leadingPadding not bound !missing-selector! NSTextLayoutFragment::rangeInElement not bound !missing-selector! NSTextLayoutFragment::renderingSurfaceBounds not bound !missing-selector! NSTextLayoutFragment::setLayoutQueue: not bound @@ -739,6 +661,8 @@ !missing-selector! NSTextLayoutFragment::textElement not bound !missing-selector! NSTextLayoutFragment::textLayoutManager not bound !missing-selector! NSTextLayoutFragment::textLineFragments not bound +!missing-selector! NSTextLayoutFragment::topMargin not bound +!missing-selector! NSTextLayoutFragment::trailingPadding not bound !missing-selector! NSTextLayoutManager::addRenderingAttribute:value:forTextRange: not bound !missing-selector! NSTextLayoutManager::delegate not bound !missing-selector! NSTextLayoutManager::ensureLayoutForBounds: not bound @@ -779,8 +703,10 @@ !missing-selector! NSTextLayoutManager::usesFontLeading not bound !missing-selector! NSTextLayoutManager::usesHyphenation not bound !missing-selector! NSTextLineFragment::attributedString not bound +!missing-selector! NSTextLineFragment::characterIndexForPoint: not bound !missing-selector! NSTextLineFragment::characterRange not bound !missing-selector! NSTextLineFragment::drawAtPoint:inContext: not bound +!missing-selector! NSTextLineFragment::fractionOfDistanceThroughGlyphForPoint: not bound !missing-selector! NSTextLineFragment::glyphOrigin not bound !missing-selector! NSTextLineFragment::initWithAttributedString:range: not bound !missing-selector! NSTextLineFragment::initWithCoder: not bound @@ -824,6 +750,7 @@ !missing-selector! NSTextSelectionNavigation::destinationSelectionForTextSelection:direction:destination:extending:confined: not bound !missing-selector! NSTextSelectionNavigation::flushLayoutCache not bound !missing-selector! NSTextSelectionNavigation::initWithDataSource: not bound +!missing-selector! NSTextSelectionNavigation::resolvedInsertionLocationForTextSelection:writingDirection: not bound !missing-selector! NSTextSelectionNavigation::rotatesCoordinateSystemForLayoutOrientation not bound !missing-selector! NSTextSelectionNavigation::setAllowsNonContiguousRanges: not bound !missing-selector! NSTextSelectionNavigation::setRotatesCoordinateSystemForLayoutOrientation: not bound @@ -833,29 +760,36 @@ !missing-selector! NSTextSelectionNavigation::textSelectionsInteractingAtPoint:inContainerAtLocation:anchors:modifiers:selecting:bounds: not bound !missing-selector! NSTextStorage::setTextStorageObserver: not bound !missing-selector! NSTextStorage::textStorageObserver not bound +!missing-selector! NSTextViewportLayoutController::adjustViewportByVerticalOffset: not bound !missing-selector! NSTextViewportLayoutController::delegate not bound !missing-selector! NSTextViewportLayoutController::initWithTextLayoutManager: not bound !missing-selector! NSTextViewportLayoutController::layoutViewport not bound +!missing-selector! NSTextViewportLayoutController::relocateViewportToTextLocation: not bound !missing-selector! NSTextViewportLayoutController::setDelegate: not bound !missing-selector! NSTextViewportLayoutController::textLayoutManager not bound !missing-selector! NSTextViewportLayoutController::viewportBounds not bound !missing-selector! NSTextViewportLayoutController::viewportRange not bound +!missing-selector! NSToolbarItem::itemMenuFormRepresentation not bound +!missing-selector! NSToolbarItem::setItemMenuFormRepresentation: not bound +!missing-selector! UIAlertView::initWithTitle:message:delegate:cancelButtonTitle:otherButtonTitles: not bound !missing-selector! UIBackgroundConfiguration::image not bound !missing-selector! UIBackgroundConfiguration::imageContentMode not bound !missing-selector! UIBackgroundConfiguration::setImage: not bound !missing-selector! UIBackgroundConfiguration::setImageContentMode: not bound -!missing-selector! UIBandSelectionInteraction::initialModifierFlags not bound !missing-selector! UIBandSelectionInteraction::initWithSelectionHandler: not bound +!missing-selector! UIBandSelectionInteraction::initialModifierFlags not bound !missing-selector! UIBandSelectionInteraction::isEnabled not bound !missing-selector! UIBandSelectionInteraction::selectionRect not bound !missing-selector! UIBandSelectionInteraction::setEnabled: not bound !missing-selector! UIBandSelectionInteraction::setShouldBeginHandler: not bound !missing-selector! UIBandSelectionInteraction::shouldBeginHandler not bound !missing-selector! UIBandSelectionInteraction::state not bound +!missing-selector! UIBarAppearance::copy not bound !missing-selector! UIBarButtonItem::changesSelectionAsPrimaryAction not bound !missing-selector! UIBarButtonItem::isSelected not bound !missing-selector! UIBarButtonItem::setChangesSelectionAsPrimaryAction: not bound !missing-selector! UIBarButtonItem::setSelected: not bound +!missing-selector! UIBarButtonItemAppearance::copy not bound !missing-selector! UIButton::automaticallyUpdatesConfiguration not bound !missing-selector! UIButton::behavioralStyle not bound !missing-selector! UIButton::changesSelectionAsPrimaryAction not bound @@ -864,7 +798,6 @@ !missing-selector! UIButton::isHeld not bound !missing-selector! UIButton::isHovered not bound !missing-selector! UIButton::preferredBehavioralStyle not bound -!missing-selector! UIButton::preferredSizeForConfiguration:maximumWidth: not bound !missing-selector! UIButton::setAutomaticallyUpdatesConfiguration: not bound !missing-selector! UIButton::setChangesSelectionAsPrimaryAction: not bound !missing-selector! UIButton::setConfiguration: not bound @@ -920,6 +853,7 @@ !missing-selector! UICollectionLayoutListConfiguration::setHeaderTopPadding: not bound !missing-selector! UICollectionView::allowsFocus not bound !missing-selector! UICollectionView::allowsFocusDuringEditing not bound +!missing-selector! UICollectionView::contextMenuInteraction not bound !missing-selector! UICollectionView::reconfigureItemsAtIndexPaths: not bound !missing-selector! UICollectionView::setAllowsFocus: not bound !missing-selector! UICollectionView::setAllowsFocusDuringEditing: not bound @@ -929,6 +863,22 @@ !missing-selector! UICollectionViewDiffableDataSource::applySnapshotUsingReloadData:completion: not bound !missing-selector! UICollectionViewDiffableDataSource::indexForSectionIdentifier: not bound !missing-selector! UICollectionViewDiffableDataSource::sectionIdentifierForIndex: not bound +!missing-selector! UICollectionViewDiffableDataSourceReorderingHandlers::canReorderItemHandler not bound +!missing-selector! UICollectionViewDiffableDataSourceReorderingHandlers::didReorderHandler not bound +!missing-selector! UICollectionViewDiffableDataSourceReorderingHandlers::setCanReorderItemHandler: not bound +!missing-selector! UICollectionViewDiffableDataSourceReorderingHandlers::setDidReorderHandler: not bound +!missing-selector! UICollectionViewDiffableDataSourceReorderingHandlers::setWillReorderHandler: not bound +!missing-selector! UICollectionViewDiffableDataSourceReorderingHandlers::willReorderHandler not bound +!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::setShouldCollapseItemHandler: not bound +!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::setShouldExpandItemHandler: not bound +!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::setSnapshotForExpandingParentItemHandler: not bound +!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::setWillCollapseItemHandler: not bound +!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::setWillExpandItemHandler: not bound +!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::shouldCollapseItemHandler not bound +!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::shouldExpandItemHandler not bound +!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::snapshotForExpandingParentItemHandler not bound +!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::willCollapseItemHandler not bound +!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::willExpandItemHandler not bound !missing-selector! UIControl::setToolTip: not bound !missing-selector! UIControl::toolTip not bound !missing-selector! UIControl::toolTipInteraction not bound @@ -940,21 +890,38 @@ !missing-selector! UIFocusHaloEffect::setContainerView: not bound !missing-selector! UIFocusHaloEffect::setPosition: not bound !missing-selector! UIFocusHaloEffect::setReferenceView: not bound +!missing-selector! UIGestureRecognizer::initWithCoder: not bound +!missing-selector! UIImage::imageByApplyingVariant: not bound +!missing-selector! UIImage::imageByApplyingVariantFromImage: not bound !missing-selector! UIImage::imageByPreparingForDisplay not bound !missing-selector! UIImage::imageByPreparingThumbnailOfSize: not bound +!missing-selector! UIImage::imageByRemovingVariant not bound !missing-selector! UIImage::prepareForDisplayWithCompletionHandler: not bound !missing-selector! UIImage::prepareThumbnailOfSize:completionHandler: not bound -!missing-selector! UIKeyboardLayoutGuide::followsUndockedKeyboard not bound -!missing-selector! UIKeyboardLayoutGuide::setFollowsUndockedKeyboard: not bound +!missing-selector! UIImageView::adjustsImageWhenAncestorFocused not bound +!missing-selector! UIImageView::focusedFrameGuide not bound +!missing-selector! UIImageView::masksFocusEffectToContents not bound +!missing-selector! UIImageView::overlayContentView not bound +!missing-selector! UIImageView::setAdjustsImageWhenAncestorFocused: not bound +!missing-selector! UIImageView::setMasksFocusEffectToContents: not bound +!missing-selector! UIKeyCommand::action not bound !missing-selector! UIKeyCommand::allowsAutomaticLocalization not bound !missing-selector! UIKeyCommand::allowsAutomaticMirroring not bound !missing-selector! UIKeyCommand::setAllowsAutomaticLocalization: not bound !missing-selector! UIKeyCommand::setAllowsAutomaticMirroring: not bound !missing-selector! UIKeyCommand::setWantsPriorityOverSystemBehavior: not bound !missing-selector! UIKeyCommand::wantsPriorityOverSystemBehavior not bound +!missing-selector! UIKeyboardLayoutGuide::followsUndockedKeyboard not bound +!missing-selector! UIKeyboardLayoutGuide::setFollowsUndockedKeyboard: not bound +!missing-selector! UILabel::enablesMarqueeWhenAncestorFocused not bound +!missing-selector! UILabel::setEnablesMarqueeWhenAncestorFocused: not bound !missing-selector! UILabel::setShowsExpansionTextWhenTruncated: not bound !missing-selector! UILabel::showsExpansionTextWhenTruncated not bound +!missing-selector! UIListSeparatorConfiguration::setVisualEffect: not bound +!missing-selector! UIListSeparatorConfiguration::visualEffect not bound !missing-selector! UIMenu::selectedElements not bound +!missing-selector! UIMenuElement::setSubtitle: not bound +!missing-selector! UIMenuElement::subtitle not bound !missing-selector! UINavigationBar::compactScrollEdgeAppearance not bound !missing-selector! UINavigationBar::setCompactScrollEdgeAppearance: not bound !missing-selector! UINavigationItem::compactScrollEdgeAppearance not bound @@ -993,14 +960,31 @@ !missing-selector! UIPopoverPresentationController::adaptiveSheetPresentationController not bound !missing-selector! UIPrintInteractionController::setShowsPaperOrientation: not bound !missing-selector! UIPrintInteractionController::showsPaperOrientation not bound +!missing-selector! UIPrintPaper::printRect not bound +!missing-selector! UIRefreshControl::setTintColor: not bound +!missing-selector! UIRefreshControl::tintColor not bound !missing-selector! UIResponder::captureTextFromCamera: not bound +!missing-selector! UIResponder::makeTouchBar not bound +!missing-selector! UIResponder::setTouchBar: not bound +!missing-selector! UIResponder::touchBar not bound !missing-selector! UIScene::completeStateRestoration not bound !missing-selector! UIScene::extendStateRestoration not bound !missing-selector! UIScene::setSubtitle: not bound !missing-selector! UIScene::subtitle not bound +!missing-selector! UISearchController::searchControllerObservedScrollView not bound +!missing-selector! UISearchController::searchSuggestions not bound +!missing-selector! UISearchController::setSearchControllerObservedScrollView: not bound +!missing-selector! UISearchController::setSearchSuggestions: not bound +!missing-selector! UISearchSuggestionItem::iconImage not bound +!missing-selector! UISearchSuggestionItem::initWithLocalizedSuggestion: not bound +!missing-selector! UISearchSuggestionItem::initWithLocalizedSuggestion:localizedDescription: not bound +!missing-selector! UISearchSuggestionItem::initWithLocalizedSuggestion:localizedDescription:iconImage: not bound +!missing-selector! UISearchSuggestionItem::localizedDescription not bound +!missing-selector! UISearchSuggestionItem::localizedSuggestion not bound !missing-selector! UISheetPresentationController::animateChanges: not bound !missing-selector! UISheetPresentationController::delegate not bound !missing-selector! UISheetPresentationController::detents not bound +!missing-selector! UISheetPresentationController::largestUndimmedDetentIdentifier not bound !missing-selector! UISheetPresentationController::preferredCornerRadius not bound !missing-selector! UISheetPresentationController::prefersEdgeAttachedInCompactHeight not bound !missing-selector! UISheetPresentationController::prefersGrabberVisible not bound @@ -1008,6 +992,7 @@ !missing-selector! UISheetPresentationController::selectedDetentIdentifier not bound !missing-selector! UISheetPresentationController::setDelegate: not bound !missing-selector! UISheetPresentationController::setDetents: not bound +!missing-selector! UISheetPresentationController::setLargestUndimmedDetentIdentifier: not bound !missing-selector! UISheetPresentationController::setPreferredCornerRadius: not bound !missing-selector! UISheetPresentationController::setPrefersEdgeAttachedInCompactHeight: not bound !missing-selector! UISheetPresentationController::setPrefersGrabberVisible: not bound @@ -1022,12 +1007,16 @@ !missing-selector! UISlider::behavioralStyle not bound !missing-selector! UISlider::preferredBehavioralStyle not bound !missing-selector! UISlider::setPreferredBehavioralStyle: not bound +!missing-selector! UITabBar::leadingAccessoryView not bound !missing-selector! UITabBar::scrollEdgeAppearance not bound !missing-selector! UITabBar::setScrollEdgeAppearance: not bound +!missing-selector! UITabBar::trailingAccessoryView not bound !missing-selector! UITabBarItem::scrollEdgeAppearance not bound !missing-selector! UITabBarItem::setScrollEdgeAppearance: not bound +!missing-selector! UITabBarItemAppearance::copy not bound !missing-selector! UITableView::allowsFocus not bound !missing-selector! UITableView::allowsFocusDuringEditing not bound +!missing-selector! UITableView::contextMenuInteraction not bound !missing-selector! UITableView::fillerRowHeight not bound !missing-selector! UITableView::isPrefetchingEnabled not bound !missing-selector! UITableView::reconfigureRowsAtIndexPaths: not bound @@ -1049,10 +1038,20 @@ !missing-selector! UITextField::setInteractionState: not bound !missing-selector! UITextView::interactionState not bound !missing-selector! UITextView::setInteractionState: not bound -!missing-selector! UIToolbar::compactScrollEdgeAppearance not bound -!missing-selector! UIToolbar::scrollEdgeAppearance not bound -!missing-selector! UIToolbar::setCompactScrollEdgeAppearance: not bound -!missing-selector! UIToolbar::setScrollEdgeAppearance: not bound +!missing-selector! UITitlebar::autoHidesToolbarInFullScreen not bound +!missing-selector! UITitlebar::representedURL not bound +!missing-selector! UITitlebar::separatorStyle not bound +!missing-selector! UITitlebar::setAutoHidesToolbarInFullScreen: not bound +!missing-selector! UITitlebar::setRepresentedURL: not bound +!missing-selector! UITitlebar::setSeparatorStyle: not bound +!missing-selector! UITitlebar::setTitleVisibility: not bound +!missing-selector! UITitlebar::setToolbar: not bound +!missing-selector! UITitlebar::setToolbarStyle: not bound +!missing-selector! UITitlebar::titleVisibility not bound +!missing-selector! UITitlebar::toolbar not bound +!missing-selector! UITitlebar::toolbarStyle not bound +!missing-selector! UIToolTipConfiguration::sourceRect not bound +!missing-selector! UIToolTipConfiguration::toolTip not bound !missing-selector! UIToolTipInteraction::defaultToolTip not bound !missing-selector! UIToolTipInteraction::delegate not bound !missing-selector! UIToolTipInteraction::init not bound @@ -1061,6 +1060,12 @@ !missing-selector! UIToolTipInteraction::setDefaultToolTip: not bound !missing-selector! UIToolTipInteraction::setDelegate: not bound !missing-selector! UIToolTipInteraction::setEnabled: not bound +!missing-selector! UIToolbar::compactScrollEdgeAppearance not bound +!missing-selector! UIToolbar::scrollEdgeAppearance not bound +!missing-selector! UIToolbar::setCompactScrollEdgeAppearance: not bound +!missing-selector! UIToolbar::setScrollEdgeAppearance: not bound +!missing-selector! UIToolbar::setTintColor: not bound +!missing-selector! UIToolbar::tintColor not bound !missing-selector! UITrackingLayoutGuide::constraintsActiveWhenAwayFromEdge: not bound !missing-selector! UITrackingLayoutGuide::constraintsActiveWhenNearEdge: not bound !missing-selector! UITrackingLayoutGuide::removeAllTrackedConstraints not bound @@ -1072,20 +1077,74 @@ !missing-selector! UIView::keyboardLayoutGuide not bound !missing-selector! UIView::maximumContentSizeCategory not bound !missing-selector! UIView::minimumContentSizeCategory not bound +!missing-selector! UIView::preferredUIView not bound +!missing-selector! UIView::preferredUIViewDidChange not bound !missing-selector! UIView::setFocusEffect: not bound !missing-selector! UIView::setFocusGroupPriority: not bound !missing-selector! UIView::setMaximumContentSizeCategory: not bound !missing-selector! UIView::setMinimumContentSizeCategory: not bound +!missing-selector! UIView::setPreferredUIView: not bound !missing-selector! UIViewConfigurationState::isPinned not bound !missing-selector! UIViewConfigurationState::setPinned: not bound +!missing-selector! UIViewController::childViewControllerForTouchBar not bound +!missing-selector! UIViewController::childViewControllerForUserInterfaceStyle not bound !missing-selector! UIViewController::contentScrollViewForEdge: not bound +!missing-selector! UIViewController::preferredUserInterfaceStyle not bound !missing-selector! UIViewController::setContentScrollView:forEdge: not bound !missing-selector! UIViewController::setFocusGroupIdentifier: not bound +!missing-selector! UIViewController::setNeedsTouchBarUpdate not bound +!missing-selector! UIViewController::setNeedsUserInterfaceAppearanceUpdate not bound +!missing-selector! UIViewController::setTabBarObservedScrollView: not bound +!missing-selector! UIViewController::sheetPresentationController not bound +!missing-selector! UIViewController::tabBarObservedScrollView not bound +!missing-selector! UIWebView::allowsInlineMediaPlayback not bound +!missing-selector! UIWebView::allowsLinkPreview not bound +!missing-selector! UIWebView::allowsPictureInPictureMediaPlayback not bound +!missing-selector! UIWebView::canGoBack not bound +!missing-selector! UIWebView::canGoForward not bound +!missing-selector! UIWebView::dataDetectorTypes not bound +!missing-selector! UIWebView::delegate not bound +!missing-selector! UIWebView::gapBetweenPages not bound +!missing-selector! UIWebView::goBack not bound +!missing-selector! UIWebView::goForward not bound +!missing-selector! UIWebView::isLoading not bound +!missing-selector! UIWebView::keyboardDisplayRequiresUserAction not bound +!missing-selector! UIWebView::loadData:MIMEType:textEncodingName:baseURL: not bound +!missing-selector! UIWebView::loadHTMLString:baseURL: not bound +!missing-selector! UIWebView::loadRequest: not bound +!missing-selector! UIWebView::mediaPlaybackAllowsAirPlay not bound +!missing-selector! UIWebView::mediaPlaybackRequiresUserAction not bound +!missing-selector! UIWebView::pageCount not bound +!missing-selector! UIWebView::pageLength not bound +!missing-selector! UIWebView::paginationBreakingMode not bound +!missing-selector! UIWebView::paginationMode not bound +!missing-selector! UIWebView::reload not bound +!missing-selector! UIWebView::request not bound +!missing-selector! UIWebView::scalesPageToFit not bound +!missing-selector! UIWebView::scrollView not bound +!missing-selector! UIWebView::setAllowsInlineMediaPlayback: not bound +!missing-selector! UIWebView::setAllowsLinkPreview: not bound +!missing-selector! UIWebView::setAllowsPictureInPictureMediaPlayback: not bound +!missing-selector! UIWebView::setDataDetectorTypes: not bound +!missing-selector! UIWebView::setDelegate: not bound +!missing-selector! UIWebView::setGapBetweenPages: not bound +!missing-selector! UIWebView::setKeyboardDisplayRequiresUserAction: not bound +!missing-selector! UIWebView::setMediaPlaybackAllowsAirPlay: not bound +!missing-selector! UIWebView::setMediaPlaybackRequiresUserAction: not bound +!missing-selector! UIWebView::setPageLength: not bound +!missing-selector! UIWebView::setPaginationBreakingMode: not bound +!missing-selector! UIWebView::setPaginationMode: not bound +!missing-selector! UIWebView::setScalesPageToFit: not bound +!missing-selector! UIWebView::setSuppressesIncrementalRendering: not bound +!missing-selector! UIWebView::stopLoading not bound +!missing-selector! UIWebView::stringByEvaluatingJavaScriptFromString: not bound +!missing-selector! UIWebView::suppressesIncrementalRendering not bound !missing-selector! UIWindow::canBecomeKeyWindow not bound !missing-selector! UIWindowScene::activityItemsConfigurationSource not bound !missing-selector! UIWindowScene::focusSystem not bound !missing-selector! UIWindowScene::keyWindow not bound !missing-selector! UIWindowScene::setActivityItemsConfigurationSource: not bound +!missing-selector! UIWindowScene::titlebar not bound !missing-selector! UIWindowSceneActivationAction::setTitle: not bound !missing-selector! UIWindowSceneActivationAction::title not bound !missing-selector! UIWindowSceneActivationConfiguration::initWithUserActivity: not bound @@ -1097,6 +1156,7 @@ !missing-selector! UIWindowSceneActivationInteraction::initWithConfigurationProvider:errorHandler: not bound !missing-selector! UIWindowSceneActivationRequestOptions::preferredPresentationStyle not bound !missing-selector! UIWindowSceneActivationRequestOptions::setPreferredPresentationStyle: not bound +!missing-type! NSTextAttachmentViewProvider not bound !missing-type! NSTextContentManager not bound !missing-type! NSTextContentStorage not bound !missing-type! NSTextElement not bound @@ -1123,45 +1183,16 @@ !missing-type! UIPasteboardDetectionResultPhoneNumber not bound !missing-type! UIPasteboardDetectionResultShipmentTrackingNumber not bound !missing-type! UIPointerAccessory not bound +!missing-type! UISearchSuggestionItem not bound !missing-type! UISheetPresentationController not bound !missing-type! UISheetPresentationControllerDetent not bound +!missing-type! UITitlebar not bound +!missing-type! UIToolTipConfiguration not bound !missing-type! UIToolTipInteraction not bound !missing-type! UITrackingLayoutGuide not bound +!missing-type! UIWebView not bound !missing-type! UIWindowSceneActivationAction not bound !missing-type! UIWindowSceneActivationConfiguration not bound !missing-type! UIWindowSceneActivationInteraction not bound !missing-type! UIWindowSceneActivationRequestOptions not bound -!missing-enum! NSTextContentManagerEnumerationOptions not bound -!missing-enum! NSTextSelectionNavigationLayoutOrientation not bound -!missing-enum! NSTextSelectionNavigationWritingDirection not bound -!missing-enum! UIImageVariant not bound -!missing-selector! +UIColor::systemCyanColor not bound -!missing-selector! +UIColor::systemMintColor not bound -!missing-selector! +UIImage::imageNamed:variant: not bound -!missing-selector! +UIImage::imageNamed:variant:withConfiguration: not bound -!missing-selector! +UIImage::systemImageNamed:variant: not bound -!missing-selector! +UIImage::systemImageNamed:variant:withConfiguration: not bound -!missing-selector! NSTextContentManager::automaticallySynchronizesTextLayoutManagers not bound -!missing-selector! NSTextContentManager::automaticallySynchronizesToBackingStore not bound -!missing-selector! NSTextContentManager::performEditingTransactionUsingBlock: not bound -!missing-selector! NSTextContentManager::setAutomaticallySynchronizesTextLayoutManagers: not bound -!missing-selector! NSTextContentManager::setAutomaticallySynchronizesToBackingStore: not bound -!missing-selector! NSTextContentStorage::adjustedRangeFromRange:forEditingTextSelection: not bound -!missing-selector! NSTextContentStorage::locationFromLocation:withOffset: not bound -!missing-selector! NSTextContentStorage::offsetFromLocation:toLocation: not bound -!missing-selector! NSTextLayoutFragment::bottomMargin not bound -!missing-selector! NSTextLayoutFragment::leadingPadding not bound -!missing-selector! NSTextLayoutFragment::topMargin not bound -!missing-selector! NSTextLayoutFragment::trailingPadding not bound -!missing-selector! NSTextLineFragment::characterIndexForPoint: not bound -!missing-selector! NSTextLineFragment::fractionOfDistanceThroughGlyphForPoint: not bound -!missing-selector! NSTextSelectionNavigation::resolvedInsertionLocationForTextSelection:writingDirection: not bound -!missing-selector! NSTextViewportLayoutController::adjustViewportByVerticalOffset: not bound -!missing-selector! NSTextViewportLayoutController::relocateViewportToTextLocation: not bound -!missing-selector! UIImage::imageByApplyingVariant: not bound -!missing-selector! UIImage::imageByApplyingVariantFromImage: not bound -!missing-selector! UIImage::imageByRemovingVariant not bound -!missing-selector! UIView::preferredUIView not bound -!missing-selector! UIView::preferredUIViewDidChange not bound -!missing-selector! UIView::setPreferredUIView: not bound -!missing-selector! UIViewController::sheetPresentationController not bound +## appended from unclassified file diff --git a/tests/xtro-sharpie/MacCatalyst-UserNotifications.todo b/tests/xtro-sharpie/MacCatalyst-UserNotifications.todo index 7eefac7d7fab..6a537bf00b3b 100644 --- a/tests/xtro-sharpie/MacCatalyst-UserNotifications.todo +++ b/tests/xtro-sharpie/MacCatalyst-UserNotifications.todo @@ -2,34 +2,20 @@ !missing-enum-value! UNAuthorizationOptions native value UNAuthorizationOptionTimeSensitive = 256 not bound !missing-enum-value! UNErrorCode native value UNErrorCodeContentProvidingInvalid = 1501 not bound !missing-enum-value! UNErrorCode native value UNErrorCodeContentProvidingObjectNotAllowed = 1500 not bound -!missing-field! UNNotificationInterruptionReasonAccountSecurity not bound -!missing-field! UNNotificationInterruptionReasonApprovalRequest not bound -!missing-field! UNNotificationInterruptionReasonHealthAndWellness not bound -!missing-field! UNNotificationInterruptionReasonHomeSecurity not bound -!missing-field! UNNotificationInterruptionReasonLocalSafety not bound -!missing-field! UNNotificationInterruptionReasonOrderPickup not bound -!missing-field! UNNotificationInterruptionReasonPackageDelivery not bound -!missing-field! UNNotificationInterruptionReasonSchedule not bound -!missing-field! UNNotificationInterruptionReasonTimeExpired not bound -!missing-field! UNNotificationInterruptionReasonTransportationDeparting not bound -!missing-field! UNNotificationInterruptionReasonUrgentMessage not bound !missing-protocol! UNNotificationContentProviding not bound !missing-selector! +UNNotificationAction::actionWithIdentifier:title:options:icon: not bound !missing-selector! +UNNotificationActionIcon::iconWithSystemImageName: not bound !missing-selector! +UNNotificationActionIcon::iconWithTemplateImageName: not bound !missing-selector! +UNTextInputNotificationAction::actionWithIdentifier:title:options:icon:textInputButtonTitle:textInputPlaceholder: not bound !missing-selector! UNMutableNotificationContent::interruptionLevel not bound -!missing-selector! UNMutableNotificationContent::interruptionReason not bound !missing-selector! UNMutableNotificationContent::relevanceScore not bound !missing-selector! UNMutableNotificationContent::setInterruptionLevel: not bound -!missing-selector! UNMutableNotificationContent::setInterruptionReason: not bound !missing-selector! UNMutableNotificationContent::setRelevanceScore: not bound !missing-selector! UNNotificationAction::icon not bound !missing-selector! UNNotificationContent::contentByUpdatingWithProvider:error: not bound !missing-selector! UNNotificationContent::interruptionLevel not bound -!missing-selector! UNNotificationContent::interruptionReason not bound !missing-selector! UNNotificationContent::relevanceScore not bound +!missing-selector! UNNotificationSettings::directMessagesSetting not bound !missing-selector! UNNotificationSettings::scheduledDeliverySetting not bound !missing-selector! UNNotificationSettings::timeSensitiveSetting not bound !missing-type! UNNotificationActionIcon not bound -!missing-selector! UNNotificationSettings::directMessagesSetting not bound diff --git a/tests/xtro-sharpie/MacCatalyst-VideoToolbox.todo b/tests/xtro-sharpie/MacCatalyst-VideoToolbox.todo index 9e7b5ab88861..e8c327ea3472 100644 --- a/tests/xtro-sharpie/MacCatalyst-VideoToolbox.todo +++ b/tests/xtro-sharpie/MacCatalyst-VideoToolbox.todo @@ -8,4 +8,5 @@ !missing-field! kVTProfileLevel_H264_ConstrainedBaseline_AutoLevel not bound !missing-field! kVTProfileLevel_H264_ConstrainedHigh_AutoLevel not bound !missing-field! kVTSampleAttachmentKey_RequireLTRAcknowledgementToken not bound +!missing-field! kVTVideoEncoderListOption_IncludeStandardDefinitionDVEncoders not bound !missing-field! kVTVideoEncoderList_SupportsMultiPass not bound diff --git a/tests/xtro-sharpie/common-AutomaticAssessmentConfiguration.ignore b/tests/xtro-sharpie/common-AutomaticAssessmentConfiguration.ignore new file mode 100644 index 000000000000..9ae7162524c4 --- /dev/null +++ b/tests/xtro-sharpie/common-AutomaticAssessmentConfiguration.ignore @@ -0,0 +1,2 @@ +!missing-selector! AEAssessmentApplication::initWithBundleIdentifier: not bound +!missing-selector! AEAssessmentApplication::initWithBundleIdentifier:teamIdentifier: not bound diff --git a/tests/xtro-sharpie/iOS-AVFoundation.todo b/tests/xtro-sharpie/iOS-AVFoundation.todo index 0b442556662e..ff0baad7dd6c 100644 --- a/tests/xtro-sharpie/iOS-AVFoundation.todo +++ b/tests/xtro-sharpie/iOS-AVFoundation.todo @@ -1,8 +1,12 @@ -## appended from unclassified file !deprecated-attribute-missing! AVAudioUnitSampler::masterGain missing a [Deprecated] attribute !deprecated-attribute-missing! AVAudioUnitSampler::setMasterGain: missing a [Deprecated] attribute !deprecated-attribute-missing! AVPlayer::masterClock missing a [Deprecated] attribute !deprecated-attribute-missing! AVPlayer::setMasterClock: missing a [Deprecated] attribute +!deprecated-attribute-missing! AVPlayerItemAccessLogEvent::observedMaxBitrate missing a [Deprecated] attribute +!deprecated-attribute-missing! AVPlayerItemAccessLogEvent::observedMinBitrate missing a [Deprecated] attribute +!missing-enum! AVAudioRoutingArbitrationCategory not bound +!missing-enum! AVCaptureMicrophoneMode not bound +!missing-enum! AVCaptureSystemUserInterface not bound !missing-enum! AVDelegatingPlaybackCoordinatorRateChangeOptions not bound !missing-enum! AVDelegatingPlaybackCoordinatorSeekOptions not bound !missing-enum! AVPlayerAudiovisualBackgroundPlaybackPolicy not bound @@ -10,6 +14,8 @@ !missing-enum! AVSampleBufferRequestMode not bound !missing-enum-value! AVError native value AVErrorContentKeyRequestCancelled = -11879 not bound !missing-enum-value! AVError native value AVErrorOperationCancelled = -11878 not bound +!missing-field! AVAudioSessionSpatialAudioEnabledKey not bound +!missing-field! AVAudioSessionSpatialPlaybackCapabilitiesChangedNotification not bound !missing-field! AVCoordinatedPlaybackSuspensionReasonAudioSessionInterrupted not bound !missing-field! AVCoordinatedPlaybackSuspensionReasonCoordinatedPlaybackNotPossible not bound !missing-field! AVCoordinatedPlaybackSuspensionReasonPlayingInterstitial not bound @@ -44,9 +50,13 @@ !missing-selector! +AVAssetVariantQualifier::assetVariantQualifierWithPredicate: not bound !missing-selector! +AVAssetVariantQualifier::assetVariantQualifierWithVariant: not bound !missing-selector! +AVAssetVariantQualifier::predicateForChannelCount:mediaSelectionOption:operatorType: not bound -!missing-selector! +AVPlayerInterstitialEvent::interstitialEventWithPrimaryItem:identifier:date:templateItems:restrictions:resumptionOffset:playoutLimit: not bound +!missing-selector! +AVAssetVariantQualifier::predicateForPresentationHeight:operatorType: not bound +!missing-selector! +AVAssetVariantQualifier::predicateForPresentationWidth:operatorType: not bound +!missing-selector! +AVCaptureDevice::activeMicrophoneMode not bound +!missing-selector! +AVCaptureDevice::isPortraitEffectEnabled not bound +!missing-selector! +AVCaptureDevice::preferredMicrophoneMode not bound +!missing-selector! +AVCaptureDevice::showSystemUserInterface: not bound !missing-selector! +AVPlayerInterstitialEvent::interstitialEventWithPrimaryItem:identifier:date:templateItems:restrictions:resumptionOffset:playoutLimit:userDefinedAttributes: not bound -!missing-selector! +AVPlayerInterstitialEvent::interstitialEventWithPrimaryItem:identifier:time:templateItems:restrictions:resumptionOffset:playoutLimit: not bound !missing-selector! +AVPlayerInterstitialEvent::interstitialEventWithPrimaryItem:identifier:time:templateItems:restrictions:resumptionOffset:playoutLimit:userDefinedAttributes: not bound !missing-selector! +AVPlayerInterstitialEventMonitor::interstitialEventMonitorWithPrimaryPlayer: not bound !missing-selector! AVAsset::findUnusedTrackIDWithCompletionHandler: not bound @@ -54,9 +64,9 @@ !missing-selector! AVAsset::loadChapterMetadataGroupsWithTitleLocale:containingItemsWithCommonKeys:completionHandler: not bound !missing-selector! AVAsset::loadMediaSelectionGroupForMediaCharacteristic:completionHandler: not bound !missing-selector! AVAsset::loadMetadataForFormat:completionHandler: not bound +!missing-selector! AVAsset::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVAsset::loadTracksWithMediaCharacteristic:completionHandler: not bound !missing-selector! AVAsset::loadTracksWithMediaType:completionHandler: not bound -!missing-selector! AVAsset::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVAssetDownloadConfiguration::artworkData not bound !missing-selector! AVAssetDownloadConfiguration::auxiliaryContentConfigurations not bound !missing-selector! AVAssetDownloadConfiguration::optimizesAuxiliaryContentConfigurations not bound @@ -88,13 +98,17 @@ !missing-selector! AVAsynchronousVideoCompositionRequest::sourceSampleDataTrackIDs not bound !missing-selector! AVAsynchronousVideoCompositionRequest::sourceTimedMetadataByTrackID: not bound !missing-selector! AVAudioPCMBuffer::initWithPCMFormat:bufferListNoCopy:deallocator: not bound +!missing-selector! AVAudioSession::setSupportsMultichannelContent:error: not bound +!missing-selector! AVAudioSession::supportsMultichannelContent not bound +!missing-selector! AVAudioSessionPortDescription::isSpatialAudioEnabled not bound !missing-selector! AVAudioUnitSampler::overallGain not bound !missing-selector! AVAudioUnitSampler::setOverallGain: not bound +!missing-selector! AVCaptureDevice::isPortraitEffectActive not bound !missing-selector! AVCaptureDevice::minimumFocusDistance not bound !missing-selector! AVCaptureDeviceFormat::isHighPhotoQualitySupported not bound +!missing-selector! AVComposition::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVComposition::loadTracksWithMediaCharacteristic:completionHandler: not bound !missing-selector! AVComposition::loadTracksWithMediaType:completionHandler: not bound -!missing-selector! AVComposition::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVCoordinatedPlaybackParticipant::identifier not bound !missing-selector! AVCoordinatedPlaybackParticipant::isReadyToPlay not bound !missing-selector! AVCoordinatedPlaybackParticipant::suspensionReasons not bound @@ -113,30 +127,30 @@ !missing-selector! AVDelegatingPlaybackCoordinatorBufferingCommand::completionDueDate not bound !missing-selector! AVDelegatingPlaybackCoordinatorPauseCommand::anticipatedPlaybackRate not bound !missing-selector! AVDelegatingPlaybackCoordinatorPauseCommand::shouldBufferInAnticipationOfPlayback not bound -!missing-selector! AVDelegatingPlaybackCoordinatorPlaybackControlCommand::expectedCurrentItemIdentifier not bound -!missing-selector! AVDelegatingPlaybackCoordinatorPlaybackControlCommand::originator not bound !missing-selector! AVDelegatingPlaybackCoordinatorPlayCommand::hostClockTime not bound !missing-selector! AVDelegatingPlaybackCoordinatorPlayCommand::itemTime not bound !missing-selector! AVDelegatingPlaybackCoordinatorPlayCommand::rate not bound +!missing-selector! AVDelegatingPlaybackCoordinatorPlaybackControlCommand::expectedCurrentItemIdentifier not bound +!missing-selector! AVDelegatingPlaybackCoordinatorPlaybackControlCommand::originator not bound !missing-selector! AVDelegatingPlaybackCoordinatorSeekCommand::anticipatedPlaybackRate not bound !missing-selector! AVDelegatingPlaybackCoordinatorSeekCommand::completionDueDate not bound !missing-selector! AVDelegatingPlaybackCoordinatorSeekCommand::itemTime not bound !missing-selector! AVDelegatingPlaybackCoordinatorSeekCommand::shouldBufferInAnticipationOfPlayback not bound +!missing-selector! AVFragmentedAsset::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVFragmentedAsset::loadTracksWithMediaCharacteristic:completionHandler: not bound !missing-selector! AVFragmentedAsset::loadTracksWithMediaType:completionHandler: not bound -!missing-selector! AVFragmentedAsset::loadTrackWithTrackID:completionHandler: not bound +!missing-selector! AVFragmentedMovie::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVFragmentedMovie::loadTracksWithMediaCharacteristic:completionHandler: not bound !missing-selector! AVFragmentedMovie::loadTracksWithMediaType:completionHandler: not bound -!missing-selector! AVFragmentedMovie::loadTrackWithTrackID:completionHandler: not bound +!missing-selector! AVMovie::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVMovie::loadTracksWithMediaCharacteristic:completionHandler: not bound !missing-selector! AVMovie::loadTracksWithMediaType:completionHandler: not bound -!missing-selector! AVMovie::loadTrackWithTrackID:completionHandler: not bound +!missing-selector! AVMutableComposition::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVMutableComposition::loadTracksWithMediaCharacteristic:completionHandler: not bound !missing-selector! AVMutableComposition::loadTracksWithMediaType:completionHandler: not bound -!missing-selector! AVMutableComposition::loadTrackWithTrackID:completionHandler: not bound +!missing-selector! AVMutableMovie::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVMutableMovie::loadTracksWithMediaCharacteristic:completionHandler: not bound !missing-selector! AVMutableMovie::loadTracksWithMediaType:completionHandler: not bound -!missing-selector! AVMutableMovie::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVMutableVideoComposition::setSourceSampleDataTrackIDs: not bound !missing-selector! AVMutableVideoComposition::sourceSampleDataTrackIDs not bound !missing-selector! AVMutableVideoCompositionInstruction::requiredSourceSampleDataTrackIDs not bound @@ -189,21 +203,9 @@ !missing-type! AVDelegatingPlaybackCoordinator not bound !missing-type! AVDelegatingPlaybackCoordinatorBufferingCommand not bound !missing-type! AVDelegatingPlaybackCoordinatorPauseCommand not bound -!missing-type! AVDelegatingPlaybackCoordinatorPlaybackControlCommand not bound !missing-type! AVDelegatingPlaybackCoordinatorPlayCommand not bound +!missing-type! AVDelegatingPlaybackCoordinatorPlaybackControlCommand not bound !missing-type! AVDelegatingPlaybackCoordinatorSeekCommand not bound !missing-type! AVPlaybackCoordinator not bound !missing-type! AVPlayerPlaybackCoordinator not bound -!missing-enum! AVAudioRoutingArbitrationCategory not bound -!missing-enum! AVCaptureMicrophoneMode not bound -!missing-enum! AVCaptureSystemUserInterface not bound -!missing-field! AVAudioSessionSpatialAudioEnabledKey not bound -!missing-field! AVAudioSessionSpatialPlaybackCapabilitiesChangedNotification not bound -!missing-selector! +AVCaptureDevice::activeMicrophoneMode not bound -!missing-selector! +AVCaptureDevice::isPortraitEffectEnabled not bound -!missing-selector! +AVCaptureDevice::preferredMicrophoneMode not bound -!missing-selector! +AVCaptureDevice::showSystemUserInterface: not bound -!missing-selector! AVAudioSession::setSupportsMultichannelContent:error: not bound -!missing-selector! AVAudioSession::supportsMultichannelContent not bound -!missing-selector! AVAudioSessionPortDescription::isSpatialAudioEnabled not bound -!missing-selector! AVCaptureDevice::isPortraitEffectActive not bound +## appended from unclassified file diff --git a/tests/xtro-sharpie/iOS-CHIP.todo b/tests/xtro-sharpie/iOS-CHIP.todo new file mode 100644 index 000000000000..c8fb5b913d99 --- /dev/null +++ b/tests/xtro-sharpie/iOS-CHIP.todo @@ -0,0 +1,152 @@ +!missing-enum! CHIPCommissioningFlow not bound +!missing-null-allowed! 'Chip.ChipOptionalQRCodeInfo[] Chip.ChipSetupPayload::GetAllOptionalVendorData(Foundation.NSError&)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String Chip.ChipDevice::OpenPairingWindow(System.nuint,System.nuint,System.nuint,Foundation.NSError&)' is missing an [NullAllowed] on return type +!missing-selector! CHIPAccountLogin::getSetupPIN:responseHandler: not bound +!missing-selector! CHIPAccountLogin::login:setupPIN:responseHandler: not bound +!missing-selector! CHIPAccountLogin::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPApplicationLauncher::launchApp:catalogVendorId:applicationId:responseHandler: not bound +!missing-selector! CHIPApplicationLauncher::readAttributeApplicationLauncherListWithResponseHandler: not bound +!missing-selector! CHIPApplicationLauncher::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPAudioOutput::readAttributeAudioOutputListWithResponseHandler: not bound +!missing-selector! CHIPAudioOutput::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPAudioOutput::renameOutput:name:responseHandler: not bound +!missing-selector! CHIPAudioOutput::selectOutput:responseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::configureAttributePresentValueWithMinInterval:maxInterval:responseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::configureAttributeStatusFlagsWithMinInterval:maxInterval:responseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::readAttributeOutOfServiceWithResponseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::readAttributePresentValueWithResponseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::readAttributeStatusFlagsWithResponseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::reportAttributePresentValueWithResponseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::reportAttributeStatusFlagsWithResponseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::writeAttributeOutOfServiceWithValue:responseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::writeAttributePresentValueWithValue:responseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeHardwareVersionStringWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeHardwareVersionWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeManufacturingDateWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributePartNumberWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeProductLabelWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeProductNameWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeProductURLWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeReachableWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeSerialNumberWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeSoftwareVersionStringWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeSoftwareVersionWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeUserLabelWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeVendorIDWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeVendorNameWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::writeAttributeUserLabelWithValue:responseHandler: not bound +!missing-selector! CHIPContentLaunch::launchContent:data:responseHandler: not bound +!missing-selector! CHIPContentLaunch::launchURL:displayString:responseHandler: not bound +!missing-selector! CHIPContentLaunch::readAttributeAcceptsHeaderListWithResponseHandler: not bound +!missing-selector! CHIPContentLaunch::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPContentLaunch::readAttributeSupportedStreamingTypesWithResponseHandler: not bound +!missing-selector! CHIPEthernetNetworkDiagnostics::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPEthernetNetworkDiagnostics::readAttributeCollisionCountWithResponseHandler: not bound +!missing-selector! CHIPEthernetNetworkDiagnostics::readAttributeOverrunCountWithResponseHandler: not bound +!missing-selector! CHIPEthernetNetworkDiagnostics::readAttributePacketRxCountWithResponseHandler: not bound +!missing-selector! CHIPEthernetNetworkDiagnostics::readAttributePacketTxCountWithResponseHandler: not bound +!missing-selector! CHIPEthernetNetworkDiagnostics::readAttributeTxErrCountWithResponseHandler: not bound +!missing-selector! CHIPEthernetNetworkDiagnostics::resetCounts: not bound +!missing-selector! CHIPFixedLabel::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPFixedLabel::readAttributeLabelListWithResponseHandler: not bound +!missing-selector! CHIPGeneralDiagnostics::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPGeneralDiagnostics::readAttributeNetworkInterfacesWithResponseHandler: not bound +!missing-selector! CHIPGeneralDiagnostics::readAttributeRebootCountWithResponseHandler: not bound +!missing-selector! CHIPKeypadInput::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPKeypadInput::sendKey:responseHandler: not bound +!missing-selector! CHIPMediaInput::hideInputStatus: not bound +!missing-selector! CHIPMediaInput::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPMediaInput::readAttributeMediaInputListWithResponseHandler: not bound +!missing-selector! CHIPMediaInput::renameInput:name:responseHandler: not bound +!missing-selector! CHIPMediaInput::selectInput:responseHandler: not bound +!missing-selector! CHIPMediaInput::showInputStatus: not bound +!missing-selector! CHIPMediaPlayback::mediaFastForward: not bound +!missing-selector! CHIPMediaPlayback::mediaNext: not bound +!missing-selector! CHIPMediaPlayback::mediaPause: not bound +!missing-selector! CHIPMediaPlayback::mediaPlay: not bound +!missing-selector! CHIPMediaPlayback::mediaPrevious: not bound +!missing-selector! CHIPMediaPlayback::mediaRewind: not bound +!missing-selector! CHIPMediaPlayback::mediaSkipBackward:responseHandler: not bound +!missing-selector! CHIPMediaPlayback::mediaSkipForward:responseHandler: not bound +!missing-selector! CHIPMediaPlayback::mediaSkipSeek:responseHandler: not bound +!missing-selector! CHIPMediaPlayback::mediaStartOver: not bound +!missing-selector! CHIPMediaPlayback::mediaStop: not bound +!missing-selector! CHIPMediaPlayback::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPOperationalCredentials::addOpCert:iCACertificate:iPKValue:caseAdminNode:adminVendorId:responseHandler: not bound +!missing-selector! CHIPOperationalCredentials::opCSRRequest:responseHandler: not bound +!missing-selector! CHIPRelativeHumidityMeasurement::configureAttributeMeasuredValueWithMinInterval:maxInterval:change:responseHandler: not bound +!missing-selector! CHIPRelativeHumidityMeasurement::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPRelativeHumidityMeasurement::readAttributeMaxMeasuredValueWithResponseHandler: not bound +!missing-selector! CHIPRelativeHumidityMeasurement::readAttributeMeasuredValueWithResponseHandler: not bound +!missing-selector! CHIPRelativeHumidityMeasurement::readAttributeMinMeasuredValueWithResponseHandler: not bound +!missing-selector! CHIPRelativeHumidityMeasurement::reportAttributeMeasuredValueWithResponseHandler: not bound +!missing-selector! CHIPSetupPayload::commissioningFlow not bound +!missing-selector! CHIPSetupPayload::setCommissioningFlow: not bound +!missing-selector! CHIPSoftwareDiagnostics::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPSoftwareDiagnostics::readAttributeCurrentHeapHighWatermarkWithResponseHandler: not bound +!missing-selector! CHIPSoftwareDiagnostics::resetWatermarks: not bound +!missing-selector! CHIPTargetNavigator::navigateTarget:data:responseHandler: not bound +!missing-selector! CHIPTargetNavigator::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPTargetNavigator::readAttributeTargetNavigatorListWithResponseHandler: not bound +!missing-selector! CHIPTestCluster::readAttributeListOctetStringWithResponseHandler: not bound +!missing-selector! CHIPTestCluster::readAttributeListStructOctetStringWithResponseHandler: not bound +!missing-selector! CHIPTestCluster::testUnknownCommand: not bound +!missing-selector! CHIPTrustedRootCertificates::addTrustedRootCertificate:responseHandler: not bound +!missing-selector! CHIPTrustedRootCertificates::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPTrustedRootCertificates::removeTrustedRootCertificate:responseHandler: not bound +!missing-selector! CHIPTvChannel::changeChannel:responseHandler: not bound +!missing-selector! CHIPTvChannel::changeChannelByNumber:minorNumber:responseHandler: not bound +!missing-selector! CHIPTvChannel::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPTvChannel::readAttributeCurrentTvChannelWithResponseHandler: not bound +!missing-selector! CHIPTvChannel::readAttributeTvChannelLineupWithResponseHandler: not bound +!missing-selector! CHIPTvChannel::readAttributeTvChannelListWithResponseHandler: not bound +!missing-selector! CHIPTvChannel::skipChannel:responseHandler: not bound +!missing-selector! CHIPWakeOnLan::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPWakeOnLan::readAttributeWakeOnLanMacAddressWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::configureAttributeConfigStatusWithMinInterval:maxInterval:responseHandler: not bound +!missing-selector! CHIPWindowCovering::configureAttributeCurrentPositionLiftWithMinInterval:maxInterval:change:responseHandler: not bound +!missing-selector! CHIPWindowCovering::configureAttributeCurrentPositionTiltWithMinInterval:maxInterval:change:responseHandler: not bound +!missing-selector! CHIPWindowCovering::configureAttributeWindowCoveringTypeWithMinInterval:maxInterval:responseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeConfigStatusWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeCurrentPositionLiftWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeCurrentPositionTiltWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeInstalledClosedLimitLiftWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeInstalledClosedLimitTiltWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeInstalledOpenLimitLiftWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeInstalledOpenLimitTiltWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeModeWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeWindowCoveringTypeWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::reportAttributeConfigStatusWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::reportAttributeCurrentPositionLiftWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::reportAttributeCurrentPositionTiltWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::reportAttributeWindowCoveringTypeWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::windowCoveringDownClose: not bound +!missing-selector! CHIPWindowCovering::windowCoveringGoToLiftPercentage:responseHandler: not bound +!missing-selector! CHIPWindowCovering::windowCoveringGoToLiftValue:responseHandler: not bound +!missing-selector! CHIPWindowCovering::windowCoveringGoToTiltPercentage:responseHandler: not bound +!missing-selector! CHIPWindowCovering::windowCoveringGoToTiltValue:responseHandler: not bound +!missing-selector! CHIPWindowCovering::windowCoveringStop: not bound +!missing-selector! CHIPWindowCovering::windowCoveringUpOpen: not bound +!missing-selector! CHIPWindowCovering::writeAttributeModeWithValue:responseHandler: not bound +!missing-type! CHIPAccountLogin not bound +!missing-type! CHIPApplicationLauncher not bound +!missing-type! CHIPAudioOutput not bound +!missing-type! CHIPBinaryInputBasic not bound +!missing-type! CHIPBridgedDeviceBasic not bound +!missing-type! CHIPContentLaunch not bound +!missing-type! CHIPEthernetNetworkDiagnostics not bound +!missing-type! CHIPFixedLabel not bound +!missing-type! CHIPGeneralDiagnostics not bound +!missing-type! CHIPKeypadInput not bound +!missing-type! CHIPMediaInput not bound +!missing-type! CHIPMediaPlayback not bound +!missing-type! CHIPRelativeHumidityMeasurement not bound +!missing-type! CHIPSoftwareDiagnostics not bound +!missing-type! CHIPTargetNavigator not bound +!missing-type! CHIPTrustedRootCertificates not bound +!missing-type! CHIPTvChannel not bound +!missing-type! CHIPWakeOnLan not bound +!missing-type! CHIPWindowCovering not bound diff --git a/tests/xtro-sharpie/iOS-CoreImage.todo b/tests/xtro-sharpie/iOS-CoreImage.todo index 1ff94077887c..24d6b7c30b43 100644 --- a/tests/xtro-sharpie/iOS-CoreImage.todo +++ b/tests/xtro-sharpie/iOS-CoreImage.todo @@ -15,6 +15,7 @@ !missing-selector! +CIFilter::linearLightBlendModeFilter not bound !missing-selector! +CIFilter::personSegmentationFilter not bound !missing-selector! +CIFilter::vividLightBlendModeFilter not bound +!missing-selector! +CIKernel::kernelsWithMetalString:error: not bound !missing-selector! +CIRAWFilter::filterWithCVPixelBuffer:properties: not bound !missing-selector! +CIRAWFilter::filterWithImageData:identifierHint: not bound !missing-selector! +CIRAWFilter::filterWithImageURL: not bound diff --git a/tests/xtro-sharpie/iOS-CoreMIDI.todo b/tests/xtro-sharpie/iOS-CoreMIDI.todo index 976057fa5cb9..0fd7ed3126b8 100644 --- a/tests/xtro-sharpie/iOS-CoreMIDI.todo +++ b/tests/xtro-sharpie/iOS-CoreMIDI.todo @@ -1 +1,8 @@ +!missing-enum! MIDINoteAttributeType not bound +!missing-enum! MIDIPerNoteManagementOptions not bound +!missing-enum! MIDIProgramChangeOptions not bound +!missing-enum! MIDIUtilityStatus not bound !missing-enum-value! MidiMessageType native value kMIDIMessageTypeUnknownF = 15 not bound +!missing-enum-value! MidiSysExStatus native value kMIDISysExMixedDataSetHeader = 8 not bound +!missing-enum-value! MidiSysExStatus native value kMIDISysExMixedDataSetPayload = 9 not bound +!missing-pinvoke! MIDIEventListForEachEvent is not bound diff --git a/tests/xtro-sharpie/iOS-GameController.todo b/tests/xtro-sharpie/iOS-GameController.todo new file mode 100644 index 000000000000..4527b6accfb2 --- /dev/null +++ b/tests/xtro-sharpie/iOS-GameController.todo @@ -0,0 +1,11 @@ +!missing-field! GCInputDirectionalCenterButton not bound +!missing-field! GCInputDirectionalTouchSurfaceButton not bound +!missing-field! GCInputMicroGamepadButtonA not bound +!missing-field! GCInputMicroGamepadButtonX not bound +!missing-field! GCInputMicroGamepadDpad not bound +!missing-selector! GCVirtualController::connectWithReplyHandler: not bound +!missing-selector! GCVirtualController::initWithConfiguration: not bound +!missing-selector! GCVirtualController::updateConfigurationForElement:configuration: not bound +!missing-selector! GCVirtualControllerElementConfiguration::actsAsTouchpad not bound +!missing-selector! GCVirtualControllerElementConfiguration::isHidden not bound +!missing-selector! GCVirtualControllerElementConfiguration::setActsAsTouchpad: not bound diff --git a/tests/xtro-sharpie/iOS-ImageIO.todo b/tests/xtro-sharpie/iOS-ImageIO.todo new file mode 100644 index 000000000000..b5a8ec1f4414 --- /dev/null +++ b/tests/xtro-sharpie/iOS-ImageIO.todo @@ -0,0 +1 @@ +!missing-field! kCGImagePropertyPNGPixelsAspectRatio not bound diff --git a/tests/xtro-sharpie/iOS-Intents.todo b/tests/xtro-sharpie/iOS-Intents.todo index e33ca02ec1c3..8d58a9270a5d 100644 --- a/tests/xtro-sharpie/iOS-Intents.todo +++ b/tests/xtro-sharpie/iOS-Intents.todo @@ -1,14 +1,20 @@ -## appended from unclassified file !deprecated-attribute-missing! INAppendToNoteIntent missing a [Deprecated] attribute !deprecated-attribute-missing! INAppendToNoteIntentResponse missing a [Deprecated] attribute +!deprecated-attribute-missing! INCarAirCirculationModeResolutionResult missing a [Deprecated] attribute +!deprecated-attribute-missing! INCarAudioSourceResolutionResult missing a [Deprecated] attribute +!deprecated-attribute-missing! INCarDefrosterResolutionResult missing a [Deprecated] attribute +!deprecated-attribute-missing! INCarSeatResolutionResult missing a [Deprecated] attribute !deprecated-attribute-missing! INCreateTaskListIntent missing a [Deprecated] attribute !deprecated-attribute-missing! INCreateTaskListIntentResponse missing a [Deprecated] attribute !deprecated-attribute-missing! INDeleteTasksIntent missing a [Deprecated] attribute !deprecated-attribute-missing! INDeleteTasksIntentResponse missing a [Deprecated] attribute !deprecated-attribute-missing! INDeleteTasksTaskListResolutionResult missing a [Deprecated] attribute !deprecated-attribute-missing! INDeleteTasksTaskResolutionResult missing a [Deprecated] attribute +!deprecated-attribute-missing! INGetVisualCodeIntent missing a [Deprecated] attribute +!deprecated-attribute-missing! INGetVisualCodeIntentResponse missing a [Deprecated] attribute !deprecated-attribute-missing! INPayBillIntent missing a [Deprecated] attribute !deprecated-attribute-missing! INPayBillIntentResponse missing a [Deprecated] attribute +!deprecated-attribute-missing! INRadioTypeResolutionResult missing a [Deprecated] attribute !deprecated-attribute-missing! INSaveProfileInCarIntent missing a [Deprecated] attribute !deprecated-attribute-missing! INSaveProfileInCarIntentResponse missing a [Deprecated] attribute !deprecated-attribute-missing! INSearchCallHistoryIntent missing a [Deprecated] attribute @@ -25,12 +31,15 @@ !deprecated-attribute-missing! INSetDefrosterSettingsInCarIntentResponse missing a [Deprecated] attribute !deprecated-attribute-missing! INSetProfileInCarIntent missing a [Deprecated] attribute !deprecated-attribute-missing! INSetProfileInCarIntentResponse missing a [Deprecated] attribute +!deprecated-attribute-missing! INSetRadioStationIntent missing a [Deprecated] attribute +!deprecated-attribute-missing! INSetRadioStationIntentResponse missing a [Deprecated] attribute !deprecated-attribute-missing! INSetSeatSettingsInCarIntent missing a [Deprecated] attribute !deprecated-attribute-missing! INSetSeatSettingsInCarIntentResponse missing a [Deprecated] attribute !deprecated-attribute-missing! INStartPhotoPlaybackIntent missing a [Deprecated] attribute !deprecated-attribute-missing! INStartPhotoPlaybackIntentResponse missing a [Deprecated] attribute !deprecated-attribute-missing! INTransferMoneyIntent missing a [Deprecated] attribute !deprecated-attribute-missing! INTransferMoneyIntentResponse missing a [Deprecated] attribute +!deprecated-attribute-missing! INVisualCodeTypeResolutionResult missing a [Deprecated] attribute !missing-enum! INFocusStatusAuthorizationStatus not bound !missing-enum! INShareFocusStatusIntentResponseCode not bound !missing-protocol! INShareFocusStatusIntentHandling not bound @@ -42,14 +51,20 @@ !missing-selector! INFocusStatusCenter::authorizationStatus not bound !missing-selector! INFocusStatusCenter::focusStatus not bound !missing-selector! INFocusStatusCenter::requestAuthorizationWithCompletionHandler: not bound +!missing-selector! INIntent::donationMetadata not bound +!missing-selector! INIntent::setDonationMetadata: not bound !missing-selector! INPerson::initWithPersonHandle:nameComponents:displayName:image:contactIdentifier:customIdentifier:isMe:suggestionType: not bound !missing-selector! INRelevantShortcut::setWidgetKind: not bound !missing-selector! INRelevantShortcut::widgetKind not bound !missing-selector! INSendMessageIntentDonationMetadata::init not bound +!missing-selector! INSendMessageIntentDonationMetadata::isReplyToCurrentUser not bound !missing-selector! INSendMessageIntentDonationMetadata::mentionsCurrentUser not bound +!missing-selector! INSendMessageIntentDonationMetadata::notifyRecipientAnyway not bound !missing-selector! INSendMessageIntentDonationMetadata::recipientCount not bound !missing-selector! INSendMessageIntentDonationMetadata::setMentionsCurrentUser: not bound +!missing-selector! INSendMessageIntentDonationMetadata::setNotifyRecipientAnyway: not bound !missing-selector! INSendMessageIntentDonationMetadata::setRecipientCount: not bound +!missing-selector! INSendMessageIntentDonationMetadata::setReplyToCurrentUser: not bound !missing-selector! INShareFocusStatusIntent::focusStatus not bound !missing-selector! INShareFocusStatusIntent::initWithFocusStatus: not bound !missing-selector! INShareFocusStatusIntentResponse::code not bound @@ -60,12 +75,4 @@ !missing-type! INSendMessageIntentDonationMetadata not bound !missing-type! INShareFocusStatusIntent not bound !missing-type! INShareFocusStatusIntentResponse not bound -!deprecated-attribute-missing! INGetVisualCodeIntent missing a [Deprecated] attribute -!deprecated-attribute-missing! INGetVisualCodeIntentResponse missing a [Deprecated] attribute -!deprecated-attribute-missing! INVisualCodeTypeResolutionResult missing a [Deprecated] attribute -!missing-selector! INIntent::donationMetadata not bound -!missing-selector! INIntent::setDonationMetadata: not bound -!missing-selector! INSendMessageIntentDonationMetadata::isReplyToCurrentUser not bound -!missing-selector! INSendMessageIntentDonationMetadata::notifyRecipientAnyway not bound -!missing-selector! INSendMessageIntentDonationMetadata::setNotifyRecipientAnyway: not bound -!missing-selector! INSendMessageIntentDonationMetadata::setReplyToCurrentUser: not bound +## appended from unclassified file diff --git a/tests/xtro-sharpie/iOS-LocalAuthentication.todo b/tests/xtro-sharpie/iOS-LocalAuthentication.todo new file mode 100644 index 000000000000..db7eec04b3f3 --- /dev/null +++ b/tests/xtro-sharpie/iOS-LocalAuthentication.todo @@ -0,0 +1 @@ +!missing-enum-value! LAStatus native value LAErrorInvalidDimensions = -14 not bound diff --git a/tests/xtro-sharpie/iOS-Metal.todo b/tests/xtro-sharpie/iOS-Metal.todo index 4c15d34f04ac..af7aaf7efe78 100644 --- a/tests/xtro-sharpie/iOS-Metal.todo +++ b/tests/xtro-sharpie/iOS-Metal.todo @@ -12,14 +12,19 @@ !missing-enum-value! MTLDataType native value MTLDataTypeULong2 = 86 not bound !missing-enum-value! MTLDataType native value MTLDataTypeULong3 = 87 not bound !missing-enum-value! MTLDataType native value MTLDataTypeULong4 = 88 not bound +!missing-enum-value! MTLIntersectionFunctionSignature native value MTLIntersectionFunctionSignatureExtendedLimits = 32 not bound +!missing-enum-value! MTLIntersectionFunctionSignature native value MTLIntersectionFunctionSignatureInstanceMotion = 8 not bound +!missing-enum-value! MTLIntersectionFunctionSignature native value MTLIntersectionFunctionSignaturePrimitiveMotion = 16 not bound !missing-enum-value! MTLLanguageVersion native value MTLLanguageVersion2_4 = 131076 not bound !missing-enum-value! MTLRenderStages native value MTLRenderStageTile = 4 not bound !missing-protocol! MTLFunctionStitchingAttribute not bound !missing-protocol! MTLFunctionStitchingNode not bound !missing-protocol-member! MTLAccelerationStructureCommandEncoder::writeCompactedAccelerationStructureSize:toBuffer:offset:sizeDataType: not found !missing-protocol-member! MTLBinaryArchive::addFunctionWithDescriptor:library:error: not found -!missing-protocol-member! MTLDevice::newLibraryWithDescriptor:error: not found +!missing-protocol-member! MTLDevice::newLibraryWithStitchedDescriptor:completionHandler: not found +!missing-protocol-member! MTLDevice::newLibraryWithStitchedDescriptor:error: not found !missing-protocol-member! MTLDevice::supportsFunctionPointersFromRender not found +!missing-protocol-member! MTLDevice::supportsPrimitiveMotionBlur not found !missing-protocol-member! MTLDevice::supportsRaytracingFromRender not found !missing-protocol-member! MTLDevice::supportsRenderDynamicLibraries not found !missing-protocol-member! MTLRenderCommandEncoder::setFragmentAccelerationStructure:atBufferIndex: not found @@ -156,8 +161,3 @@ !missing-type! MTLMotionKeyframeData not bound !missing-type! MTLRenderPipelineFunctionsDescriptor not bound !missing-type! MTLStitchedLibraryDescriptor not bound -!missing-enum-value! MTLIntersectionFunctionSignature native value MTLIntersectionFunctionSignatureExtendedLimits = 32 not bound -!missing-enum-value! MTLIntersectionFunctionSignature native value MTLIntersectionFunctionSignatureInstanceMotion = 8 not bound -!missing-enum-value! MTLIntersectionFunctionSignature native value MTLIntersectionFunctionSignaturePrimitiveMotion = 16 not bound -!missing-protocol-member! MTLDevice::newLibraryWithDescriptor:completionHandler: not found -!missing-protocol-member! MTLDevice::supportsPrimitiveMotionBlur not found diff --git a/tests/xtro-sharpie/iOS-MetalPerformanceShadersGraph.todo b/tests/xtro-sharpie/iOS-MetalPerformanceShadersGraph.todo index 26186889ea1d..fdfb87e16dc4 100644 --- a/tests/xtro-sharpie/iOS-MetalPerformanceShadersGraph.todo +++ b/tests/xtro-sharpie/iOS-MetalPerformanceShadersGraph.todo @@ -3,45 +3,70 @@ !missing-enum! MPSGraphOptions not bound !missing-enum! MPSGraphPaddingMode not bound !missing-enum! MPSGraphPaddingStyle not bound +!missing-enum! MPSGraphReductionMode not bound !missing-enum! MPSGraphResizeMode not bound +!missing-enum! MPSGraphScatterMode not bound +!missing-enum! MPSGraphSparseStorageType not bound !missing-enum! MPSGraphTensorNamedDataLayout not bound !missing-selector! +MPSGraphConvolution2DOpDescriptor::descriptorWithStrideInX:strideInY:dilationRateInX:dilationRateInY:groups:paddingLeft:paddingRight:paddingTop:paddingBottom:paddingStyle:dataLayout:weightsLayout: not bound !missing-selector! +MPSGraphConvolution2DOpDescriptor::descriptorWithStrideInX:strideInY:dilationRateInX:dilationRateInY:groups:paddingStyle:dataLayout:weightsLayout: not bound +!missing-selector! +MPSGraphCreateSparseOpDescriptor::descriptorWithStorageType:dataType: not bound !missing-selector! +MPSGraphDepthwiseConvolution2DOpDescriptor::descriptorWithDataLayout:weightsLayout: not bound !missing-selector! +MPSGraphDepthwiseConvolution2DOpDescriptor::descriptorWithStrideInX:strideInY:dilationRateInX:dilationRateInY:paddingLeft:paddingRight:paddingTop:paddingBottom:paddingStyle:dataLayout:weightsLayout: not bound +!missing-selector! +MPSGraphDepthwiseConvolution3DOpDescriptor::descriptorWithPaddingStyle: not bound +!missing-selector! +MPSGraphDepthwiseConvolution3DOpDescriptor::descriptorWithStrides:dilationRates:paddingValues:paddingStyle: not bound !missing-selector! +MPSGraphDevice::deviceWithMTLDevice: not bound !missing-selector! +MPSGraphPooling2DOpDescriptor::descriptorWithKernelWidth:kernelHeight:strideInX:strideInY:dilationRateInX:dilationRateInY:paddingLeft:paddingRight:paddingTop:paddingBottom:paddingStyle:dataLayout: not bound !missing-selector! +MPSGraphPooling2DOpDescriptor::descriptorWithKernelWidth:kernelHeight:strideInX:strideInY:paddingStyle:dataLayout: not bound +!missing-selector! +MPSGraphPooling4DOpDescriptor::descriptorWithKernelSizes:paddingStyle: not bound +!missing-selector! +MPSGraphPooling4DOpDescriptor::descriptorWithKernelSizes:strides:dilationRates:paddingValues:paddingStyle: not bound +!missing-selector! +MPSGraphStencilOpDescriptor::descriptorWithExplicitPadding: not bound +!missing-selector! +MPSGraphStencilOpDescriptor::descriptorWithOffsets:explicitPadding: not bound +!missing-selector! +MPSGraphStencilOpDescriptor::descriptorWithPaddingStyle: not bound +!missing-selector! +MPSGraphStencilOpDescriptor::descriptorWithReductionMode:offsets:strides:dilationRates:explicitPadding:boundaryMode:paddingStyle:paddingConstant: not bound +!missing-selector! MPSGraph::L2NormPooling4DGradientWithGradientTensor:sourceTensor:descriptor:name: not bound +!missing-selector! MPSGraph::L2NormPooling4DWithSourceTensor:descriptor:name: not bound !missing-selector! MPSGraph::absoluteWithTensor:name: not bound -!missing-selector! MPSGraph::acoshWithTensor:name: not bound !missing-selector! MPSGraph::acosWithTensor:name: not bound +!missing-selector! MPSGraph::acoshWithTensor:name: not bound !missing-selector! MPSGraph::additionWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::applyStochasticGradientDescentWithLearningRateTensor:variable:gradientTensor:name: not bound -!missing-selector! MPSGraph::asinhWithTensor:name: not bound !missing-selector! MPSGraph::asinWithTensor:name: not bound +!missing-selector! MPSGraph::asinhWithTensor:name: not bound !missing-selector! MPSGraph::assignVariable:withValueOfTensor:name: not bound !missing-selector! MPSGraph::atan2WithPrimaryTensor:secondaryTensor:name: not bound -!missing-selector! MPSGraph::atanhWithTensor:name: not bound !missing-selector! MPSGraph::atanWithTensor:name: not bound +!missing-selector! MPSGraph::atanhWithTensor:name: not bound !missing-selector! MPSGraph::avgPooling2DGradientWithGradientTensor:sourceTensor:descriptor:name: not bound !missing-selector! MPSGraph::avgPooling2DWithSourceTensor:descriptor:name: not bound +!missing-selector! MPSGraph::avgPooling4DGradientWithGradientTensor:sourceTensor:descriptor:name: not bound +!missing-selector! MPSGraph::avgPooling4DWithSourceTensor:descriptor:name: not bound !missing-selector! MPSGraph::ceilWithTensor:name: not bound !missing-selector! MPSGraph::clampWithTensor:minValueTensor:maxValueTensor:name: not bound +!missing-selector! MPSGraph::compileWithDevice:feeds:targetTensors:targetOperations:compilationDescriptor: not bound !missing-selector! MPSGraph::concatTensor:withTensor:dimension:name: not bound +!missing-selector! MPSGraph::concatTensors:dimension:interleave:name: not bound !missing-selector! MPSGraph::concatTensors:dimension:name: not bound !missing-selector! MPSGraph::constantWithData:shape:dataType: not bound +!missing-selector! MPSGraph::constantWithScalar:dataType: not bound !missing-selector! MPSGraph::constantWithScalar:shape:dataType: not bound +!missing-selector! MPSGraph::controlDependencyWithOperations:dependentBlock:name: not bound !missing-selector! MPSGraph::convolution2DDataGradientWithIncomingGradientTensor:weightsTensor:outputShape:forwardConvolutionDescriptor:name: not bound !missing-selector! MPSGraph::convolution2DWeightsGradientWithIncomingGradientTensor:sourceTensor:outputShape:forwardConvolutionDescriptor:name: not bound !missing-selector! MPSGraph::convolution2DWithSourceTensor:weightsTensor:descriptor:name: not bound !missing-selector! MPSGraph::convolutionTranspose2DDataGradientWithIncomingGradientTensor:weightsTensor:outputShape:forwardConvolutionDescriptor:name: not bound !missing-selector! MPSGraph::convolutionTranspose2DWeightsGradientWithIncomingGradientTensor:sourceTensor:outputShape:forwardConvolutionDescriptor:name: not bound !missing-selector! MPSGraph::convolutionTranspose2DWithSourceTensor:weightsTensor:outputShape:descriptor:name: not bound -!missing-selector! MPSGraph::coshWithTensor:name: not bound !missing-selector! MPSGraph::cosWithTensor:name: not bound +!missing-selector! MPSGraph::coshWithTensor:name: not bound +!missing-selector! MPSGraph::depthToSpace2DTensor:widthAxis:heightAxis:depthAxis:blockSize:usePixelShuffleOrder:name: not bound +!missing-selector! MPSGraph::depthToSpace2DTensor:widthAxisTensor:heightAxisTensor:depthAxisTensor:blockSize:usePixelShuffleOrder:name: not bound !missing-selector! MPSGraph::depthwiseConvolution2DDataGradientWithIncomingGradientTensor:weightsTensor:outputShape:descriptor:name: not bound !missing-selector! MPSGraph::depthwiseConvolution2DWeightsGradientWithIncomingGradientTensor:sourceTensor:outputShape:descriptor:name: not bound !missing-selector! MPSGraph::depthwiseConvolution2DWithSourceTensor:weightsTensor:descriptor:name: not bound +!missing-selector! MPSGraph::depthwiseConvolution3DDataGradientWithIncomingGradientTensor:weightsTensor:outputShape:descriptor:name: not bound +!missing-selector! MPSGraph::depthwiseConvolution3DWeightsGradientWithIncomingGradientTensor:sourceTensor:outputShape:descriptor:name: not bound +!missing-selector! MPSGraph::depthwiseConvolution3DWithSourceTensor:weightsTensor:descriptor:name: not bound !missing-selector! MPSGraph::divisionNoNaNWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::divisionWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::dropoutTensor:rate:name: not bound @@ -53,14 +78,19 @@ !missing-selector! MPSGraph::exponentBase10WithTensor:name: not bound !missing-selector! MPSGraph::exponentBase2WithTensor:name: not bound !missing-selector! MPSGraph::exponentWithTensor:name: not bound +!missing-selector! MPSGraph::flatten2DTensor:axis:name: not bound +!missing-selector! MPSGraph::flatten2DTensor:axisTensor:name: not bound !missing-selector! MPSGraph::floorModuloWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::floorWithTensor:name: not bound +!missing-selector! MPSGraph::forLoopWithLowerBound:upperBound:step:initialBodyArguments:body:name: not bound +!missing-selector! MPSGraph::forLoopWithNumberOfIterations:initialBodyArguments:body:name: not bound !missing-selector! MPSGraph::gatherNDWithUpdatesTensor:indicesTensor:batchDimensions:name: not bound !missing-selector! MPSGraph::gatherWithUpdatesTensor:indicesTensor:axis:batchDimensions:name: not bound !missing-selector! MPSGraph::gradientForPrimaryTensor:withTensors:name: not bound !missing-selector! MPSGraph::greaterThanOrEqualToWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::greaterThanWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::identityWithTensor:name: not bound +!missing-selector! MPSGraph::ifWithPredicateTensor:thenBlock:elseBlock:name: not bound !missing-selector! MPSGraph::init not bound !missing-selector! MPSGraph::isFiniteWithTensor:name: not bound !missing-selector! MPSGraph::isInfiniteWithTensor:name: not bound @@ -77,10 +107,14 @@ !missing-selector! MPSGraph::logicalXNORWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::logicalXORWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::matrixMultiplicationWithPrimaryTensor:secondaryTensor:name: not bound -!missing-selector! MPSGraph::maximumWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::maxPooling2DGradientWithGradientTensor:sourceTensor:descriptor:name: not bound !missing-selector! MPSGraph::maxPooling2DWithSourceTensor:descriptor:name: not bound +!missing-selector! MPSGraph::maxPooling4DGradientWithGradientTensor:sourceTensor:descriptor:name: not bound +!missing-selector! MPSGraph::maxPooling4DWithSourceTensor:descriptor:name: not bound +!missing-selector! MPSGraph::maximumWithNaNPropagationWithPrimaryTensor:secondaryTensor:name: not bound +!missing-selector! MPSGraph::maximumWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::meanOfTensor:axes:name: not bound +!missing-selector! MPSGraph::minimumWithNaNPropagationWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::minimumWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::moduloWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::multiplicationWithPrimaryTensor:secondaryTensor:name: not bound @@ -104,8 +138,12 @@ !missing-selector! MPSGraph::placeholderWithShape:dataType:name: not bound !missing-selector! MPSGraph::placeholderWithShape:name: not bound !missing-selector! MPSGraph::powerWithPrimaryTensor:secondaryTensor:name: not bound +!missing-selector! MPSGraph::reLUGradientWithIncomingGradient:sourceTensor:name: not bound +!missing-selector! MPSGraph::reLUWithTensor:name: not bound !missing-selector! MPSGraph::readVariable:name: not bound !missing-selector! MPSGraph::reciprocalWithTensor:name: not bound +!missing-selector! MPSGraph::reductionArgMaximumWithTensor:axis:name: not bound +!missing-selector! MPSGraph::reductionArgMinimumWithTensor:axis:name: not bound !missing-selector! MPSGraph::reductionMaximumWithTensor:axes:name: not bound !missing-selector! MPSGraph::reductionMaximumWithTensor:axis:name: not bound !missing-selector! MPSGraph::reductionMinimumWithTensor:axes:name: not bound @@ -114,12 +152,13 @@ !missing-selector! MPSGraph::reductionProductWithTensor:axis:name: not bound !missing-selector! MPSGraph::reductionSumWithTensor:axes:name: not bound !missing-selector! MPSGraph::reductionSumWithTensor:axis:name: not bound -!missing-selector! MPSGraph::reLUGradientWithIncomingGradient:sourceTensor:name: not bound -!missing-selector! MPSGraph::reLUWithTensor:name: not bound !missing-selector! MPSGraph::reshapeTensor:withShape:name: not bound !missing-selector! MPSGraph::resizeTensor:size:mode:centerResult:alignCorners:layout:name: not bound !missing-selector! MPSGraph::resizeWithGradientTensor:input:mode:centerResult:alignCorners:layout:name: not bound !missing-selector! MPSGraph::reverseSquareRootWithTensor:name: not bound +!missing-selector! MPSGraph::reverseTensor:axes:name: not bound +!missing-selector! MPSGraph::reverseTensor:axesTensor:name: not bound +!missing-selector! MPSGraph::reverseTensor:name: not bound !missing-selector! MPSGraph::rintWithTensor:name: not bound !missing-selector! MPSGraph::roundWithTensor:name: not bound !missing-selector! MPSGraph::runAsyncWithFeeds:targetTensors:targetOperations:executionDescriptor: not bound @@ -128,32 +167,44 @@ !missing-selector! MPSGraph::runWithFeeds:targetTensors:targetOperations: not bound !missing-selector! MPSGraph::runWithMTLCommandQueue:feeds:targetOperations:resultsDictionary: not bound !missing-selector! MPSGraph::runWithMTLCommandQueue:feeds:targetTensors:targetOperations: not bound +!missing-selector! MPSGraph::scatterNDWithUpdatesTensor:indicesTensor:shape:batchDimensions:mode:name: not bound !missing-selector! MPSGraph::scatterNDWithUpdatesTensor:indicesTensor:shape:batchDimensions:name: not bound !missing-selector! MPSGraph::selectWithPredicateTensor:truePredicateTensor:falsePredicateTensor:name: not bound !missing-selector! MPSGraph::setOptions: not bound !missing-selector! MPSGraph::sigmoidGradientWithIncomingGradient:sourceTensor:name: not bound !missing-selector! MPSGraph::sigmoidWithTensor:name: not bound -!missing-selector! MPSGraph::signbitWithTensor:name: not bound !missing-selector! MPSGraph::signWithTensor:name: not bound -!missing-selector! MPSGraph::sinhWithTensor:name: not bound +!missing-selector! MPSGraph::signbitWithTensor:name: not bound !missing-selector! MPSGraph::sinWithTensor:name: not bound +!missing-selector! MPSGraph::sinhWithTensor:name: not bound +!missing-selector! MPSGraph::sliceGradientTensor:fwdInShapeTensor:starts:ends:strides:name: not bound +!missing-selector! MPSGraph::sliceGradientTensor:fwdInShapeTensor:starts:ends:strides:startMask:endMask:squeezeMask:name: not bound !missing-selector! MPSGraph::sliceTensor:dimension:start:length:name: not bound +!missing-selector! MPSGraph::sliceTensor:starts:ends:strides:name: not bound +!missing-selector! MPSGraph::sliceTensor:starts:ends:strides:startMask:endMask:squeezeMask:name: not bound !missing-selector! MPSGraph::softMaxCrossEntropyGradientWithIncomingGradientTensor:sourceTensor:labelsTensor:axis:reductionType:name: not bound !missing-selector! MPSGraph::softMaxCrossEntropyWithSourceTensor:labelsTensor:axis:reductionType:name: not bound !missing-selector! MPSGraph::softMaxGradientWithIncomingGradient:sourceTensor:axis:name: not bound !missing-selector! MPSGraph::softMaxWithTensor:axis:name: not bound +!missing-selector! MPSGraph::spaceToDepth2DTensor:widthAxis:heightAxis:depthAxis:blockSize:usePixelShuffleOrder:name: not bound +!missing-selector! MPSGraph::spaceToDepth2DTensor:widthAxisTensor:heightAxisTensor:depthAxisTensor:blockSize:usePixelShuffleOrder:name: not bound +!missing-selector! MPSGraph::sparseTensorWithDescriptor:tensors:shape:name: not bound +!missing-selector! MPSGraph::sparseTensorWithType:tensors:shape:dataType:name: not bound !missing-selector! MPSGraph::squareRootWithTensor:name: not bound !missing-selector! MPSGraph::squareWithTensor:name: not bound +!missing-selector! MPSGraph::stencilWithSourceTensor:weightsTensor:descriptor:name: not bound !missing-selector! MPSGraph::stochasticGradientDescentWithLearningRateTensor:valuesTensor:gradientTensor:name: not bound !missing-selector! MPSGraph::subtractionWithPrimaryTensor:secondaryTensor:name: not bound -!missing-selector! MPSGraph::tanhWithTensor:name: not bound !missing-selector! MPSGraph::tanWithTensor:name: not bound +!missing-selector! MPSGraph::tanhWithTensor:name: not bound !missing-selector! MPSGraph::tileGradientWithIncomingGradientTensor:sourceTensor:withMultiplier:name: not bound !missing-selector! MPSGraph::tileTensor:withMultiplier:name: not bound !missing-selector! MPSGraph::transposeTensor:dimension:withDimension:name: not bound !missing-selector! MPSGraph::variableWithData:shape:dataType:name: not bound !missing-selector! MPSGraph::varianceOfTensor:axes:name: not bound !missing-selector! MPSGraph::varianceOfTensor:meanTensor:axes:name: not bound +!missing-selector! MPSGraph::whileWithInitialInputs:before:after:name: not bound +!missing-selector! MPSGraphCompilationDescriptor::disableTypeInference not bound !missing-selector! MPSGraphConvolution2DOpDescriptor::dataLayout not bound !missing-selector! MPSGraphConvolution2DOpDescriptor::dilationRateInX not bound !missing-selector! MPSGraphConvolution2DOpDescriptor::dilationRateInY not bound @@ -179,6 +230,10 @@ !missing-selector! MPSGraphConvolution2DOpDescriptor::strideInX not bound !missing-selector! MPSGraphConvolution2DOpDescriptor::strideInY not bound !missing-selector! MPSGraphConvolution2DOpDescriptor::weightsLayout not bound +!missing-selector! MPSGraphCreateSparseOpDescriptor::dataType not bound +!missing-selector! MPSGraphCreateSparseOpDescriptor::setDataType: not bound +!missing-selector! MPSGraphCreateSparseOpDescriptor::setSparseStorageType: not bound +!missing-selector! MPSGraphCreateSparseOpDescriptor::sparseStorageType not bound !missing-selector! MPSGraphDepthwiseConvolution2DOpDescriptor::dataLayout not bound !missing-selector! MPSGraphDepthwiseConvolution2DOpDescriptor::dilationRateInX not bound !missing-selector! MPSGraphDepthwiseConvolution2DOpDescriptor::dilationRateInY not bound @@ -202,8 +257,32 @@ !missing-selector! MPSGraphDepthwiseConvolution2DOpDescriptor::strideInX not bound !missing-selector! MPSGraphDepthwiseConvolution2DOpDescriptor::strideInY not bound !missing-selector! MPSGraphDepthwiseConvolution2DOpDescriptor::weightsLayout not bound +!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::channelDimensionIndex not bound +!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::dilationRates not bound +!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::paddingStyle not bound +!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::paddingValues not bound +!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::setChannelDimensionIndex: not bound +!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::setDilationRates: not bound +!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::setPaddingStyle: not bound +!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::setPaddingValues: not bound +!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::setStrides: not bound +!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::strides not bound !missing-selector! MPSGraphDevice::metalDevice not bound !missing-selector! MPSGraphDevice::type not bound +!missing-selector! MPSGraphExecutable::encodeToCommandBuffer:inputsArray:resultsArray:executionDescriptor: not bound +!missing-selector! MPSGraphExecutable::feedTensors not bound +!missing-selector! MPSGraphExecutable::options not bound +!missing-selector! MPSGraphExecutable::runAsyncWithMTLCommandQueue:inputsArray:resultsArray:executionDescriptor: not bound +!missing-selector! MPSGraphExecutable::runWithMTLCommandQueue:inputsArray:resultsArray:executionDescriptor: not bound +!missing-selector! MPSGraphExecutable::setOptions: not bound +!missing-selector! MPSGraphExecutable::specializeWithDevice:inputTypes:compilationDescriptor: not bound +!missing-selector! MPSGraphExecutable::targetTensors not bound +!missing-selector! MPSGraphExecutableExecutionDescriptor::completionHandler not bound +!missing-selector! MPSGraphExecutableExecutionDescriptor::scheduledHandler not bound +!missing-selector! MPSGraphExecutableExecutionDescriptor::setCompletionHandler: not bound +!missing-selector! MPSGraphExecutableExecutionDescriptor::setScheduledHandler: not bound +!missing-selector! MPSGraphExecutableExecutionDescriptor::setWaitUntilCompleted: not bound +!missing-selector! MPSGraphExecutableExecutionDescriptor::waitUntilCompleted not bound !missing-selector! MPSGraphExecutionDescriptor::completionHandler not bound !missing-selector! MPSGraphExecutionDescriptor::scheduledHandler not bound !missing-selector! MPSGraphExecutionDescriptor::setCompletionHandler: not bound @@ -240,118 +319,6 @@ !missing-selector! MPSGraphPooling2DOpDescriptor::setStrideInY: not bound !missing-selector! MPSGraphPooling2DOpDescriptor::strideInX not bound !missing-selector! MPSGraphPooling2DOpDescriptor::strideInY not bound -!missing-selector! MPSGraphShapedType::dataType not bound -!missing-selector! MPSGraphShapedType::initWithShape:dataType: not bound -!missing-selector! MPSGraphShapedType::isEqualTo: not bound -!missing-selector! MPSGraphShapedType::setDataType: not bound -!missing-selector! MPSGraphShapedType::setShape: not bound -!missing-selector! MPSGraphShapedType::shape not bound -!missing-selector! MPSGraphTensor::dataType not bound -!missing-selector! MPSGraphTensor::operation not bound -!missing-selector! MPSGraphTensor::shape not bound -!missing-selector! MPSGraphTensorData::dataType not bound -!missing-selector! MPSGraphTensorData::device not bound -!missing-selector! MPSGraphTensorData::initWithDevice:data:shape:dataType: not bound -!missing-selector! MPSGraphTensorData::initWithMPSImageBatch: not bound -!missing-selector! MPSGraphTensorData::initWithMPSMatrix: not bound -!missing-selector! MPSGraphTensorData::initWithMPSMatrix:rank: not bound -!missing-selector! MPSGraphTensorData::initWithMPSNDArray: not bound -!missing-selector! MPSGraphTensorData::initWithMPSVector: not bound -!missing-selector! MPSGraphTensorData::initWithMPSVector:rank: not bound -!missing-selector! MPSGraphTensorData::initWithMTLBuffer:shape:dataType: not bound -!missing-selector! MPSGraphTensorData::mpsndarray not bound -!missing-selector! MPSGraphTensorData::shape not bound -!missing-selector! MPSGraphVariableOp::dataType not bound -!missing-selector! MPSGraphVariableOp::shape not bound -!missing-type! MPSGraph not bound -!missing-type! MPSGraphConvolution2DOpDescriptor not bound -!missing-type! MPSGraphDepthwiseConvolution2DOpDescriptor not bound -!missing-type! MPSGraphDevice not bound -!missing-type! MPSGraphExecutionDescriptor not bound -!missing-type! MPSGraphOperation not bound -!missing-type! MPSGraphPooling2DOpDescriptor not bound -!missing-type! MPSGraphShapedType not bound -!missing-type! MPSGraphTensor not bound -!missing-type! MPSGraphTensorData not bound -!missing-type! MPSGraphVariableOp not bound -!missing-selector! MPSGraph::constantWithScalar:dataType: not bound -## appended from unclassified file -!missing-enum! MPSGraphReductionMode not bound -!missing-enum! MPSGraphScatterMode not bound -!missing-enum! MPSGraphSparseStorageType not bound -!missing-selector! +MPSGraphCreateSparseOpDescriptor::descriptorWithStorageType:dataType: not bound -!missing-selector! +MPSGraphDepthwiseConvolution3DOpDescriptor::descriptorWithPaddingStyle: not bound -!missing-selector! +MPSGraphDepthwiseConvolution3DOpDescriptor::descriptorWithStrides:dilationRates:paddingValues:paddingStyle: not bound -!missing-selector! +MPSGraphPooling4DOpDescriptor::descriptorWithKernelSizes:paddingStyle: not bound -!missing-selector! +MPSGraphPooling4DOpDescriptor::descriptorWithKernelSizes:strides:dilationRates:paddingValues:paddingStyle: not bound -!missing-selector! +MPSGraphStencilOpDescriptor::descriptorWithExplicitPadding: not bound -!missing-selector! +MPSGraphStencilOpDescriptor::descriptorWithOffsets:explicitPadding: not bound -!missing-selector! +MPSGraphStencilOpDescriptor::descriptorWithPaddingStyle: not bound -!missing-selector! +MPSGraphStencilOpDescriptor::descriptorWithReductionMode:offsets:strides:dilationRates:explicitPadding:boundaryMode:paddingStyle:paddingConstant: not bound -!missing-selector! MPSGraph::avgPooling4DGradientWithGradientTensor:sourceTensor:descriptor:name: not bound -!missing-selector! MPSGraph::avgPooling4DWithSourceTensor:descriptor:name: not bound -!missing-selector! MPSGraph::compileWithDevice:feeds:targetTensors:targetOperations:compilationDescriptor: not bound -!missing-selector! MPSGraph::concatTensors:dimension:interleave:name: not bound -!missing-selector! MPSGraph::controlDependencyWithOperations:dependentBlock:name: not bound -!missing-selector! MPSGraph::depthToSpace2DTensor:widthAxis:heightAxis:depthAxis:blockSize:usePixelShuffleOrder:name: not bound -!missing-selector! MPSGraph::depthToSpace2DTensor:widthAxisTensor:heightAxisTensor:depthAxisTensor:blockSize:usePixelShuffleOrder:name: not bound -!missing-selector! MPSGraph::depthwiseConvolution3DDataGradientWithIncomingGradientTensor:weightsTensor:outputShape:descriptor:name: not bound -!missing-selector! MPSGraph::depthwiseConvolution3DWeightsGradientWithIncomingGradientTensor:sourceTensor:outputShape:descriptor:name: not bound -!missing-selector! MPSGraph::depthwiseConvolution3DWithSourceTensor:weightsTensor:descriptor:name: not bound -!missing-selector! MPSGraph::flatten2DTensor:axis:name: not bound -!missing-selector! MPSGraph::flatten2DTensor:axisTensor:name: not bound -!missing-selector! MPSGraph::forLoopWithLowerBound:upperBound:step:initialBodyArguments:body:name: not bound -!missing-selector! MPSGraph::forLoopWithNumberOfIterations:initialBodyArguments:body:name: not bound -!missing-selector! MPSGraph::ifWithPredicateTensor:thenBlock:elseBlock:name: not bound -!missing-selector! MPSGraph::L2NormPooling4DGradientWithGradientTensor:sourceTensor:descriptor:name: not bound -!missing-selector! MPSGraph::L2NormPooling4DWithSourceTensor:descriptor:name: not bound -!missing-selector! MPSGraph::maxPooling4DGradientWithGradientTensor:sourceTensor:descriptor:name: not bound -!missing-selector! MPSGraph::maxPooling4DWithSourceTensor:descriptor:name: not bound -!missing-selector! MPSGraph::reductionArgMaximumWithTensor:axis:name: not bound -!missing-selector! MPSGraph::reductionArgMinimumWithTensor:axis:name: not bound -!missing-selector! MPSGraph::reverseTensor:axes:name: not bound -!missing-selector! MPSGraph::reverseTensor:axesTensor:name: not bound -!missing-selector! MPSGraph::reverseTensor:name: not bound -!missing-selector! MPSGraph::scatterNDWithUpdatesTensor:indicesTensor:shape:batchDimensions:mode:name: not bound -!missing-selector! MPSGraph::sliceGradientTensor:fwdInShapeTensor:starts:ends:strides:name: not bound -!missing-selector! MPSGraph::sliceGradientTensor:fwdInShapeTensor:starts:ends:strides:startMask:endMask:squeezeMask:name: not bound -!missing-selector! MPSGraph::sliceTensor:starts:ends:strides:name: not bound -!missing-selector! MPSGraph::sliceTensor:starts:ends:strides:startMask:endMask:squeezeMask:name: not bound -!missing-selector! MPSGraph::spaceToDepth2DTensor:widthAxis:heightAxis:depthAxis:blockSize:usePixelShuffleOrder:name: not bound -!missing-selector! MPSGraph::spaceToDepth2DTensor:widthAxisTensor:heightAxisTensor:depthAxisTensor:blockSize:usePixelShuffleOrder:name: not bound -!missing-selector! MPSGraph::sparseTensorWithDescriptor:tensors:shape:name: not bound -!missing-selector! MPSGraph::sparseTensorWithType:tensors:shape:dataType:name: not bound -!missing-selector! MPSGraph::stencilWithSourceTensor:weightsTensor:descriptor:name: not bound -!missing-selector! MPSGraph::whileWithInitialInputs:before:after:name: not bound -!missing-selector! MPSGraphCompilationDescriptor::disableTypeInference not bound -!missing-selector! MPSGraphCreateSparseOpDescriptor::dataType not bound -!missing-selector! MPSGraphCreateSparseOpDescriptor::setDataType: not bound -!missing-selector! MPSGraphCreateSparseOpDescriptor::setSparseStorageType: not bound -!missing-selector! MPSGraphCreateSparseOpDescriptor::sparseStorageType not bound -!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::channelDimensionIndex not bound -!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::dilationRates not bound -!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::paddingStyle not bound -!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::paddingValues not bound -!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::setChannelDimensionIndex: not bound -!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::setDilationRates: not bound -!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::setPaddingStyle: not bound -!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::setPaddingValues: not bound -!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::setStrides: not bound -!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::strides not bound -!missing-selector! MPSGraphExecutable::encodeToCommandBuffer:inputsArray:resultsArray:executionDescriptor: not bound -!missing-selector! MPSGraphExecutable::feedTensors not bound -!missing-selector! MPSGraphExecutable::options not bound -!missing-selector! MPSGraphExecutable::runAsyncWithMTLCommandQueue:inputsArray:resultsArray:executionDescriptor: not bound -!missing-selector! MPSGraphExecutable::runWithMTLCommandQueue:inputsArray:resultsArray:executionDescriptor: not bound -!missing-selector! MPSGraphExecutable::setOptions: not bound -!missing-selector! MPSGraphExecutable::specializeWithDevice:inputTypes:compilationDescriptor: not bound -!missing-selector! MPSGraphExecutable::targetTensors not bound -!missing-selector! MPSGraphExecutableExecutionDescriptor::completionHandler not bound -!missing-selector! MPSGraphExecutableExecutionDescriptor::scheduledHandler not bound -!missing-selector! MPSGraphExecutableExecutionDescriptor::setCompletionHandler: not bound -!missing-selector! MPSGraphExecutableExecutionDescriptor::setScheduledHandler: not bound -!missing-selector! MPSGraphExecutableExecutionDescriptor::setWaitUntilCompleted: not bound -!missing-selector! MPSGraphExecutableExecutionDescriptor::waitUntilCompleted not bound !missing-selector! MPSGraphPooling4DOpDescriptor::ceilMode not bound !missing-selector! MPSGraphPooling4DOpDescriptor::dilationRates not bound !missing-selector! MPSGraphPooling4DOpDescriptor::includeZeroPadToAverage not bound @@ -366,6 +333,12 @@ !missing-selector! MPSGraphPooling4DOpDescriptor::setPaddingValues: not bound !missing-selector! MPSGraphPooling4DOpDescriptor::setStrides: not bound !missing-selector! MPSGraphPooling4DOpDescriptor::strides not bound +!missing-selector! MPSGraphShapedType::dataType not bound +!missing-selector! MPSGraphShapedType::initWithShape:dataType: not bound +!missing-selector! MPSGraphShapedType::isEqualTo: not bound +!missing-selector! MPSGraphShapedType::setDataType: not bound +!missing-selector! MPSGraphShapedType::setShape: not bound +!missing-selector! MPSGraphShapedType::shape not bound !missing-selector! MPSGraphStencilOpDescriptor::boundaryMode not bound !missing-selector! MPSGraphStencilOpDescriptor::dilationRates not bound !missing-selector! MPSGraphStencilOpDescriptor::explicitPadding not bound @@ -382,11 +355,40 @@ !missing-selector! MPSGraphStencilOpDescriptor::setReductionMode: not bound !missing-selector! MPSGraphStencilOpDescriptor::setStrides: not bound !missing-selector! MPSGraphStencilOpDescriptor::strides not bound +!missing-selector! MPSGraphTensor::dataType not bound +!missing-selector! MPSGraphTensor::operation not bound +!missing-selector! MPSGraphTensor::shape not bound +!missing-selector! MPSGraphTensorData::dataType not bound +!missing-selector! MPSGraphTensorData::device not bound +!missing-selector! MPSGraphTensorData::initWithDevice:data:shape:dataType: not bound +!missing-selector! MPSGraphTensorData::initWithMPSImageBatch: not bound +!missing-selector! MPSGraphTensorData::initWithMPSMatrix: not bound +!missing-selector! MPSGraphTensorData::initWithMPSMatrix:rank: not bound +!missing-selector! MPSGraphTensorData::initWithMPSNDArray: not bound +!missing-selector! MPSGraphTensorData::initWithMPSVector: not bound +!missing-selector! MPSGraphTensorData::initWithMPSVector:rank: not bound +!missing-selector! MPSGraphTensorData::initWithMTLBuffer:shape:dataType: not bound +!missing-selector! MPSGraphTensorData::mpsndarray not bound +!missing-selector! MPSGraphTensorData::shape not bound +!missing-selector! MPSGraphVariableOp::dataType not bound +!missing-selector! MPSGraphVariableOp::shape not bound +!missing-type! MPSGraph not bound !missing-type! MPSGraphCompilationDescriptor not bound +!missing-type! MPSGraphConvolution2DOpDescriptor not bound !missing-type! MPSGraphCreateSparseOpDescriptor not bound +!missing-type! MPSGraphDepthwiseConvolution2DOpDescriptor not bound !missing-type! MPSGraphDepthwiseConvolution3DOpDescriptor not bound +!missing-type! MPSGraphDevice not bound !missing-type! MPSGraphExecutable not bound !missing-type! MPSGraphExecutableExecutionDescriptor not bound +!missing-type! MPSGraphExecutionDescriptor not bound +!missing-type! MPSGraphOperation not bound +!missing-type! MPSGraphPooling2DOpDescriptor not bound !missing-type! MPSGraphPooling4DOpDescriptor not bound +!missing-type! MPSGraphShapedType not bound !missing-type! MPSGraphStencilOpDescriptor not bound +!missing-type! MPSGraphTensor not bound +!missing-type! MPSGraphTensorData not bound !missing-type! MPSGraphType not bound +!missing-type! MPSGraphVariableOp not bound +## appended from unclassified file diff --git a/tests/xtro-sharpie/iOS-PHASE.todo b/tests/xtro-sharpie/iOS-PHASE.todo index f868d344e402..e177c5643f7f 100644 --- a/tests/xtro-sharpie/iOS-PHASE.todo +++ b/tests/xtro-sharpie/iOS-PHASE.todo @@ -9,7 +9,7 @@ !missing-enum! PHASENormalizationMode not bound !missing-enum! PHASEPlaybackMode not bound !missing-enum! PHASEPushStreamBufferOptions not bound -!missing-enum! PHASEPushStreamCompletionCallbackType not bound +!missing-enum! PHASEPushStreamCompletionCallbackCondition not bound !missing-enum! PHASERenderingState not bound !missing-enum! PHASEReverbPreset not bound !missing-enum! PHASESoundEventError not bound @@ -17,8 +17,8 @@ !missing-enum! PHASESoundEventPrepareState not bound !missing-enum! PHASESoundEventSeekHandlerReason not bound !missing-enum! PHASESoundEventStartHandlerReason not bound +!missing-enum! PHASESpatialPipelineFlags not bound !missing-enum! PHASESpatializationMode not bound -!missing-enum! PHASESpatialPipelineOptions not bound !missing-enum! PHASEUpdateMode not bound !missing-field! PHASEAssetErrorDomain not bound !missing-field! PHASEErrorDomain not bound @@ -40,6 +40,7 @@ !missing-selector! PHASEAssetRegistry::registerSoundAssetAtURL:identifier:assetType:channelLayout:normalizationMode:error: not bound !missing-selector! PHASEAssetRegistry::registerSoundAssetWithData:identifier:format:normalizationMode:error: not bound !missing-selector! PHASEAssetRegistry::registerSoundEventAssetWithRootNode:identifier:error: not bound +!missing-selector! PHASEAssetRegistry::unregisterAssetWithIdentifier:completion: not bound !missing-selector! PHASEBlendNodeDefinition::addRangeForInputValuesAbove:fullGainAtValue:fadeCurveType:subtree: not bound !missing-selector! PHASEBlendNodeDefinition::addRangeForInputValuesBelow:fullGainAtValue:fadeCurveType:subtree: not bound !missing-selector! PHASEBlendNodeDefinition::addRangeForInputValuesBetween:highValue:fullGainAtLowValue:fullGainAtHighValue:lowFadeCurveType:highFadeCurveType:subtree: not bound @@ -50,8 +51,8 @@ !missing-selector! PHASEBlendNodeDefinition::initWithBlendMetaParameterDefinition: not bound !missing-selector! PHASEBlendNodeDefinition::initWithBlendMetaParameterDefinition:identifier: not bound !missing-selector! PHASEBlendNodeDefinition::spatialMixerDefinitionForDistance not bound -!missing-selector! PHASECardioidDirectivityModelParameters::init not bound -!missing-selector! PHASECardioidDirectivityModelParameters::subbands not bound +!missing-selector! PHASECardioidDirectivityModelParameters::initWithSubbandParameters: not bound +!missing-selector! PHASECardioidDirectivityModelParameters::subbandParameters not bound !missing-selector! PHASECardioidDirectivityModelSubbandParameters::frequency not bound !missing-selector! PHASECardioidDirectivityModelSubbandParameters::init not bound !missing-selector! PHASECardioidDirectivityModelSubbandParameters::pattern not bound @@ -62,6 +63,8 @@ !missing-selector! PHASEChannelMixerDefinition::initWithChannelLayout: not bound !missing-selector! PHASEChannelMixerDefinition::initWithChannelLayout:identifier: not bound !missing-selector! PHASEChannelMixerDefinition::inputChannelLayout not bound +!missing-selector! PHASEConeDirectivityModelParameters::initWithSubbandParameters: not bound +!missing-selector! PHASEConeDirectivityModelParameters::subbandParameters not bound !missing-selector! PHASEConeDirectivityModelSubbandParameters::frequency not bound !missing-selector! PHASEConeDirectivityModelSubbandParameters::init not bound !missing-selector! PHASEConeDirectivityModelSubbandParameters::innerAngle not bound @@ -78,8 +81,10 @@ !missing-selector! PHASEDistanceModelFadeOutParameters::initWithCullDistance: not bound !missing-selector! PHASEDistanceModelParameters::fadeOutParameters not bound !missing-selector! PHASEDistanceModelParameters::setFadeOutParameters: not bound +!missing-selector! PHASEDucker::activate not bound !missing-selector! PHASEDucker::attackCurve not bound !missing-selector! PHASEDucker::attackTime not bound +!missing-selector! PHASEDucker::deactivate not bound !missing-selector! PHASEDucker::gain not bound !missing-selector! PHASEDucker::identifier not bound !missing-selector! PHASEDucker::initWithEngine:sourceGroups:targetGroups:gain:attackTime:releaseTime:attackCurve:releaseCurve: not bound @@ -95,11 +100,13 @@ !missing-selector! PHASEEngine::duckers not bound !missing-selector! PHASEEngine::groups not bound !missing-selector! PHASEEngine::initWithUpdateMode: not bound +!missing-selector! PHASEEngine::outputSpatializationMode not bound !missing-selector! PHASEEngine::pause not bound !missing-selector! PHASEEngine::renderingState not bound !missing-selector! PHASEEngine::rootObject not bound !missing-selector! PHASEEngine::setDefaultMedium: not bound !missing-selector! PHASEEngine::setDefaultReverbPreset: not bound +!missing-selector! PHASEEngine::setOutputSpatializationMode: not bound !missing-selector! PHASEEngine::setUnitsPerMeter: not bound !missing-selector! PHASEEngine::setUnitsPerSecond: not bound !missing-selector! PHASEEngine::soundEvents not bound @@ -133,6 +140,10 @@ !missing-selector! PHASEGeneratorNodeDefinition::setGroup: not bound !missing-selector! PHASEGeneratorNodeDefinition::setRate: not bound !missing-selector! PHASEGeneratorNodeDefinition::setRateMetaParameterDefinition: not bound +!missing-selector! PHASEGeneratorParameters::gain not bound +!missing-selector! PHASEGeneratorParameters::rate not bound +!missing-selector! PHASEGeneratorParameters::setGain: not bound +!missing-selector! PHASEGeneratorParameters::setRate: not bound !missing-selector! PHASEGeometricSpreadingDistanceModelParameters::init not bound !missing-selector! PHASEGeometricSpreadingDistanceModelParameters::rolloffFactor not bound !missing-selector! PHASEGeometricSpreadingDistanceModelParameters::setRolloffFactor: not bound @@ -153,7 +164,9 @@ !missing-selector! PHASEGroup::unregisterFromEngine not bound !missing-selector! PHASEGroup::unsolo not bound !missing-selector! PHASEGroupPreset::activate not bound +!missing-selector! PHASEGroupPreset::activateWithTimeToTargetOverride: not bound !missing-selector! PHASEGroupPreset::deactivate not bound +!missing-selector! PHASEGroupPreset::deactivateWithTimeToResetOverride: not bound !missing-selector! PHASEGroupPreset::initWithEngine:settings:timeToTarget:timeToReset: not bound !missing-selector! PHASEGroupPreset::settings not bound !missing-selector! PHASEGroupPreset::timeToReset not bound @@ -194,6 +207,11 @@ !missing-selector! PHASENumberMetaParameterDefinition::initWithValue:minimum:maximum:identifier: not bound !missing-selector! PHASENumberMetaParameterDefinition::maximum not bound !missing-selector! PHASENumberMetaParameterDefinition::minimum not bound +!missing-selector! PHASENumericPair::first not bound +!missing-selector! PHASENumericPair::initWithFirstValue:secondValue: not bound +!missing-selector! PHASENumericPair::second not bound +!missing-selector! PHASENumericPair::setFirst: not bound +!missing-selector! PHASENumericPair::setSecond: not bound !missing-selector! PHASEObject::addChild:error: not bound !missing-selector! PHASEObject::children not bound !missing-selector! PHASEObject::initWithEngine: not bound @@ -222,9 +240,15 @@ !missing-selector! PHASERandomNodeDefinition::addSubtree:weight: not bound !missing-selector! PHASERandomNodeDefinition::init not bound !missing-selector! PHASERandomNodeDefinition::initWithIdentifier: not bound +!missing-selector! PHASERandomNodeDefinition::setUniqueSelectionQueueLength: not bound +!missing-selector! PHASERandomNodeDefinition::uniqueSelectionQueueLength not bound !missing-selector! PHASESamplerNodeDefinition::assetIdentifier not bound +!missing-selector! PHASESamplerNodeDefinition::cullOption not bound !missing-selector! PHASESamplerNodeDefinition::initWithSoundAssetIdentifier:mixerDefinition: not bound !missing-selector! PHASESamplerNodeDefinition::initWithSoundAssetIdentifier:mixerDefinition:identifier: not bound +!missing-selector! PHASESamplerNodeDefinition::playbackMode not bound +!missing-selector! PHASESamplerNodeDefinition::setCullOption: not bound +!missing-selector! PHASESamplerNodeDefinition::setPlaybackMode: not bound !missing-selector! PHASEShape::elements not bound !missing-selector! PHASEShape::initWithEngine:mesh: not bound !missing-selector! PHASEShape::initWithEngine:mesh:materials: not bound @@ -239,12 +263,13 @@ !missing-selector! PHASESoundEvent::metaParameters not bound !missing-selector! PHASESoundEvent::mixers not bound !missing-selector! PHASESoundEvent::pause not bound -!missing-selector! PHASESoundEvent::prepareAndReturnError: not bound !missing-selector! PHASESoundEvent::prepareState not bound +!missing-selector! PHASESoundEvent::prepareWithCompletion: not bound !missing-selector! PHASESoundEvent::pushStreamNodes not bound !missing-selector! PHASESoundEvent::renderingState not bound !missing-selector! PHASESoundEvent::resume not bound -!missing-selector! PHASESoundEvent::startAndReturnError: not bound +!missing-selector! PHASESoundEvent::seekToTime:completion: not bound +!missing-selector! PHASESoundEvent::startWithCompletion: not bound !missing-selector! PHASESoundEvent::stopAndInvalidate not bound !missing-selector! PHASESoundEventNodeDefinition::children not bound !missing-selector! PHASESource::gain not bound @@ -262,8 +287,8 @@ !missing-selector! PHASESpatialMixerDefinition::sourceDirectivityModelParameters not bound !missing-selector! PHASESpatialMixerDefinition::spatialPipeline not bound !missing-selector! PHASESpatialPipeline::entries not bound -!missing-selector! PHASESpatialPipeline::initWithOptions: not bound -!missing-selector! PHASESpatialPipeline::options not bound +!missing-selector! PHASESpatialPipeline::flags not bound +!missing-selector! PHASESpatialPipeline::initWithFlags: not bound !missing-selector! PHASESpatialPipelineEntry::sendLevel not bound !missing-selector! PHASESpatialPipelineEntry::sendLevelMetaParameterDefinition not bound !missing-selector! PHASESpatialPipelineEntry::setSendLevel: not bound @@ -294,6 +319,7 @@ !missing-type! PHASEEnvelopeDistanceModelParameters not bound !missing-type! PHASEEnvelopeSegment not bound !missing-type! PHASEGeneratorNodeDefinition not bound +!missing-type! PHASEGeneratorParameters not bound !missing-type! PHASEGeometricSpreadingDistanceModelParameters not bound !missing-type! PHASEGlobalMetaParameterAsset not bound !missing-type! PHASEGroup not bound @@ -310,6 +336,7 @@ !missing-type! PHASEMixerParameters not bound !missing-type! PHASENumberMetaParameter not bound !missing-type! PHASENumberMetaParameterDefinition not bound +!missing-type! PHASENumericPair not bound !missing-type! PHASEObject not bound !missing-type! PHASEOccluder not bound !missing-type! PHASEPushStreamNode not bound @@ -329,35 +356,4 @@ !missing-type! PHASEStringMetaParameter not bound !missing-type! PHASEStringMetaParameterDefinition not bound !missing-type! PHASESwitchNodeDefinition not bound -!missing-selector! PHASEAssetRegistry::unregisterAssetWithIdentifier:completionBlock: not bound -!missing-selector! PHASECardioidDirectivityModelParameters::initWithSubbandParameters: not bound -!missing-selector! PHASECardioidDirectivityModelParameters::subbandParameters not bound -!missing-selector! PHASEConeDirectivityModelParameters::initWithSubbandParameters: not bound -!missing-selector! PHASEConeDirectivityModelParameters::subbandParameters not bound -!missing-selector! PHASEDucker::activate not bound -!missing-selector! PHASEDucker::deactivate not bound -!missing-selector! PHASEEngine::outputSpatializationMode not bound -!missing-selector! PHASEEngine::setOutputSpatializationMode: not bound -!missing-selector! PHASEGeneratorParameters::gain not bound -!missing-selector! PHASEGeneratorParameters::rate not bound -!missing-selector! PHASEGeneratorParameters::setGain: not bound -!missing-selector! PHASEGeneratorParameters::setRate: not bound -!missing-selector! PHASEGroupPreset::activateWithTimeToTargetOverride: not bound -!missing-selector! PHASEGroupPreset::deactivateWithTimeToResetOverride: not bound -!missing-selector! PHASENumericPair::first not bound -!missing-selector! PHASENumericPair::initWithFirstValue:secondValue: not bound -!missing-selector! PHASENumericPair::second not bound -!missing-selector! PHASENumericPair::setFirst: not bound -!missing-selector! PHASENumericPair::setSecond: not bound -!missing-selector! PHASERandomNodeDefinition::setUniqueSelectionQueueLength: not bound -!missing-selector! PHASERandomNodeDefinition::uniqueSelectionQueueLength not bound -!missing-selector! PHASESamplerNodeDefinition::cullOption not bound -!missing-selector! PHASESamplerNodeDefinition::playbackMode not bound -!missing-selector! PHASESamplerNodeDefinition::setCullOption: not bound -!missing-selector! PHASESamplerNodeDefinition::setPlaybackMode: not bound -!missing-selector! PHASESoundEvent::prepareWithCompletionBlock: not bound -!missing-selector! PHASESoundEvent::seekToTime:completionBlock: not bound -!missing-selector! PHASESoundEvent::startWithCompletionBlock: not bound -!missing-type! PHASEGeneratorParameters not bound -!missing-type! PHASENumericPair not bound !unknown-simd-type-mapping! The Simd type simd_double2 does not have a mapping to a managed type. Please add one in SimdCheck.cs diff --git a/tests/xtro-sharpie/iOS-UIKit.todo b/tests/xtro-sharpie/iOS-UIKit.todo index dd0a2e17167d..2aff24d61729 100644 --- a/tests/xtro-sharpie/iOS-UIKit.todo +++ b/tests/xtro-sharpie/iOS-UIKit.todo @@ -1,22 +1,3 @@ -!missing-selector! NSDiffableDataSourceSectionTransaction::difference not bound -!missing-selector! NSDiffableDataSourceTransaction::difference not bound -!missing-selector! UICollectionViewDiffableDataSourceReorderingHandlers::canReorderItemHandler not bound -!missing-selector! UICollectionViewDiffableDataSourceReorderingHandlers::didReorderHandler not bound -!missing-selector! UICollectionViewDiffableDataSourceReorderingHandlers::setCanReorderItemHandler: not bound -!missing-selector! UICollectionViewDiffableDataSourceReorderingHandlers::setDidReorderHandler: not bound -!missing-selector! UICollectionViewDiffableDataSourceReorderingHandlers::setWillReorderHandler: not bound -!missing-selector! UICollectionViewDiffableDataSourceReorderingHandlers::willReorderHandler not bound -!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::setShouldCollapseItemHandler: not bound -!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::setShouldExpandItemHandler: not bound -!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::setSnapshotForExpandingParentItemHandler: not bound -!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::setWillCollapseItemHandler: not bound -!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::setWillExpandItemHandler: not bound -!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::shouldCollapseItemHandler not bound -!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::shouldExpandItemHandler not bound -!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::snapshotForExpandingParentItemHandler not bound -!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::willCollapseItemHandler not bound -!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::willExpandItemHandler not bound -## appended from unclassified file !deprecated-attribute-missing! UIApplication::windows missing a [Deprecated] attribute !deprecated-attribute-missing! UIButton::adjustsImageWhenDisabled missing a [Deprecated] attribute !deprecated-attribute-missing! UIButton::adjustsImageWhenHighlighted missing a [Deprecated] attribute @@ -41,6 +22,18 @@ !deprecated-attribute-missing! UIScreen::focusedItem missing a [Deprecated] attribute !deprecated-attribute-missing! UIScreen::focusedView missing a [Deprecated] attribute !deprecated-attribute-missing! UIScreen::supportsFocus missing a [Deprecated] attribute +!missing-enum! NSTextContentManagerEnumerationOptions not bound +!missing-enum! NSTextLayoutFragmentEnumerationOptions not bound +!missing-enum! NSTextLayoutFragmentState not bound +!missing-enum! NSTextLayoutManagerSegmentOptions not bound +!missing-enum! NSTextLayoutManagerSegmentType not bound +!missing-enum! NSTextSelectionAffinity not bound +!missing-enum! NSTextSelectionGranularity not bound +!missing-enum! NSTextSelectionNavigationDestination not bound +!missing-enum! NSTextSelectionNavigationDirection not bound +!missing-enum! NSTextSelectionNavigationLayoutOrientation not bound +!missing-enum! NSTextSelectionNavigationModifier not bound +!missing-enum! NSTextSelectionNavigationWritingDirection not bound !missing-enum! UIBandSelectionInteractionState not bound !missing-enum! UIBehavioralStyle not bound !missing-enum! UIButtonConfigurationCornerStyle not bound @@ -48,19 +41,18 @@ !missing-enum! UIButtonConfigurationSize not bound !missing-enum! UIButtonConfigurationTitleAlignment not bound !missing-enum! UIFocusHaloEffectPosition not bound +!missing-enum! UIImageVariant not bound !missing-enum! UIWindowScenePresentationStyle not bound !missing-enum-value! UIFocusHeading native value UIFocusHeadingFirst = 256 not bound !missing-enum-value! UIFocusHeading native value UIFocusHeadingLast = 512 not bound !missing-enum-value! UIMenuOptions native value UIMenuOptionsSingleSelection = 32 not bound +!missing-field! NSTextContentStorageUnsupportedAttributeAddedNotification not bound !missing-field! UIActionPaste not bound !missing-field! UIActionPasteAndGo not bound !missing-field! UIActionPasteAndMatchStyle not bound !missing-field! UIActionPasteAndSearch not bound +!missing-field! UIActivityItemsConfigurationMetadataKeyLinkPresentationMetadata not bound !missing-field! UICollectionViewLayoutAutomaticDimension not bound -!missing-field! UIFocusGroupPriorityCurrentlyFocused not bound -!missing-field! UIFocusGroupPriorityIgnored not bound -!missing-field! UIFocusGroupPriorityPreviouslyFocused not bound -!missing-field! UIFocusGroupPriorityPrioritized not bound !missing-field! UIKeyInputDelete not bound !missing-field! UIMenuSidebar not bound !missing-field! UIPasteboardDetectionPatternAddress not bound @@ -86,10 +78,19 @@ !missing-field! UITextContentTypeFlightNumber not bound !missing-field! UITextContentTypeShipmentTrackingNumber not bound !missing-null-allowed! 'System.String UIKit.UIViewController::get_FocusGroupIdentifier()' is missing an [NullAllowed] on return type +!missing-protocol! NSTextAttachmentLayout not bound +!missing-protocol! NSTextContentManagerDelegate not bound +!missing-protocol! NSTextContentStorageDelegate not bound +!missing-protocol! NSTextElementProvider not bound +!missing-protocol! NSTextLayoutManagerDelegate not bound +!missing-protocol! NSTextLocation not bound +!missing-protocol! NSTextSelectionDataSource not bound !missing-protocol! NSTextStorageObserving not bound +!missing-protocol! NSTextViewportLayoutControllerDelegate not bound !missing-protocol! UIActivityItemsConfigurationProviding not bound !missing-protocol! UISheetPresentationControllerDelegate not bound !missing-protocol! UIToolTipInteractionDelegate not bound +!missing-protocol-conformance! NSTextAttachment should conform to NSTextAttachmentLayout !missing-protocol-conformance! UIFont should conform to NSSecureCoding !missing-protocol-conformance! UIResponder should conform to UIActivityItemsConfigurationProviding (defined in 'UIActivityItemsConfiguration' category) !missing-protocol-member! UIAdaptivePresentationControllerDelegate::presentationController:prepareAdaptivePresentationController: not found @@ -103,6 +104,9 @@ !missing-protocol-member! UIFocusItem::isTransparentFocusItem not found !missing-protocol-member! UISceneDelegate::scene:restoreInteractionStateWithUserActivity: not found !missing-protocol-member! UITableViewDelegate::tableView:selectionFollowsFocusForRowAtIndexPath: not found +!missing-selector! +NSTextAttachment::registerTextAttachmentViewProviderClass:forFileType: not bound +!missing-selector! +NSTextAttachment::textAttachmentViewProviderClassForFileType: not bound +!missing-selector! +NSTextLayoutManager::linkRenderingAttributes not bound !missing-selector! +UIAction::captureTextFromCameraActionForResponder:identifier: not bound !missing-selector! +UIButton::buttonWithConfiguration:primaryAction: not bound !missing-selector! +UIButtonConfiguration::filledButtonConfiguration not bound @@ -110,12 +114,19 @@ !missing-selector! +UIButtonConfiguration::plainButtonConfiguration not bound !missing-selector! +UIButtonConfiguration::tintedButtonConfiguration not bound !missing-selector! +UIColor::systemBrownColor not bound +!missing-selector! +UIColor::systemCyanColor not bound +!missing-selector! +UIColor::systemMintColor not bound !missing-selector! +UIColor::tintColor not bound +!missing-selector! +UIDeferredMenuElement::elementWithUncachedProvider: not bound !missing-selector! +UIFocusDebugger::checkFocusGroupTreeForEnvironment: not bound !missing-selector! +UIFocusEffect::effect not bound !missing-selector! +UIFocusHaloEffect::effectWithPath: not bound !missing-selector! +UIFocusHaloEffect::effectWithRect: not bound !missing-selector! +UIFocusHaloEffect::effectWithRoundedRect:cornerRadius:curve: not bound +!missing-selector! +UIImage::imageNamed:variant: not bound +!missing-selector! +UIImage::imageNamed:variant:withConfiguration: not bound +!missing-selector! +UIImage::systemImageNamed:variant: not bound +!missing-selector! +UIImage::systemImageNamed:variant:withConfiguration: not bound !missing-selector! +UIImageSymbolConfiguration::configurationPreferringMulticolor not bound !missing-selector! +UIImageSymbolConfiguration::configurationWithHierarchicalColor: not bound !missing-selector! +UIImageSymbolConfiguration::configurationWithPaletteColors: not bound @@ -126,18 +137,195 @@ !missing-selector! +UIPointerStyle::systemPointerStyle not bound !missing-selector! +UISheetPresentationControllerDetent::largeDetent not bound !missing-selector! +UISheetPresentationControllerDetent::mediumDetent not bound +!missing-selector! +UIToolTipConfiguration::configurationWithToolTip: not bound +!missing-selector! +UIToolTipConfiguration::configurationWithToolTip:inRect: not bound !missing-selector! +UIWindowSceneActivationAction::actionWithIdentifier:alternateAction:configurationProvider: not bound +!missing-selector! NSDiffableDataSourceSectionTransaction::difference not bound !missing-selector! NSDiffableDataSourceSnapshot::reconfigureItemsWithIdentifiers: not bound +!missing-selector! NSDiffableDataSourceSnapshot::reconfiguredItemIdentifiers not bound +!missing-selector! NSDiffableDataSourceSnapshot::reloadedItemIdentifiers not bound +!missing-selector! NSDiffableDataSourceSnapshot::reloadedSectionIdentifiers not bound +!missing-selector! NSDiffableDataSourceTransaction::difference not bound !missing-selector! NSMutableParagraphStyle::setUsesDefaultHyphenation: not bound !missing-selector! NSMutableParagraphStyle::usesDefaultHyphenation not bound !missing-selector! NSParagraphStyle::usesDefaultHyphenation not bound +!missing-selector! NSTextAttachment::allowsTextAttachmentView not bound +!missing-selector! NSTextAttachment::lineLayoutPadding not bound +!missing-selector! NSTextAttachment::setAllowsTextAttachmentView: not bound +!missing-selector! NSTextAttachment::setLineLayoutPadding: not bound +!missing-selector! NSTextAttachment::usesTextAttachmentView not bound +!missing-selector! NSTextAttachmentViewProvider::attachmentBoundsForAttributes:location:textContainer:proposedLineFragment:position: not bound +!missing-selector! NSTextAttachmentViewProvider::initWithTextAttachment:parentView:textLayoutManager:location: not bound +!missing-selector! NSTextAttachmentViewProvider::loadView not bound +!missing-selector! NSTextAttachmentViewProvider::location not bound +!missing-selector! NSTextAttachmentViewProvider::setTracksTextAttachmentViewBounds: not bound +!missing-selector! NSTextAttachmentViewProvider::setView: not bound +!missing-selector! NSTextAttachmentViewProvider::textAttachment not bound +!missing-selector! NSTextAttachmentViewProvider::textLayoutManager not bound +!missing-selector! NSTextAttachmentViewProvider::tracksTextAttachmentViewBounds not bound +!missing-selector! NSTextAttachmentViewProvider::view not bound !missing-selector! NSTextContainer::textLayoutManager not bound +!missing-selector! NSTextContentManager::addTextLayoutManager: not bound +!missing-selector! NSTextContentManager::automaticallySynchronizesTextLayoutManagers not bound +!missing-selector! NSTextContentManager::automaticallySynchronizesToBackingStore not bound +!missing-selector! NSTextContentManager::delegate not bound +!missing-selector! NSTextContentManager::hasEditingTransaction not bound +!missing-selector! NSTextContentManager::init not bound +!missing-selector! NSTextContentManager::initWithCoder: not bound +!missing-selector! NSTextContentManager::performEditingTransactionUsingBlock: not bound +!missing-selector! NSTextContentManager::primaryTextLayoutManager not bound +!missing-selector! NSTextContentManager::recordEditActionInRange:newTextRange: not bound +!missing-selector! NSTextContentManager::removeTextLayoutManager: not bound +!missing-selector! NSTextContentManager::setAutomaticallySynchronizesTextLayoutManagers: not bound +!missing-selector! NSTextContentManager::setAutomaticallySynchronizesToBackingStore: not bound +!missing-selector! NSTextContentManager::setDelegate: not bound +!missing-selector! NSTextContentManager::setPrimaryTextLayoutManager: not bound +!missing-selector! NSTextContentManager::synchronizeTextLayoutManagers: not bound +!missing-selector! NSTextContentManager::textElementsForRange: not bound +!missing-selector! NSTextContentManager::textLayoutManagers not bound +!missing-selector! NSTextContentStorage::adjustedRangeFromRange:forEditingTextSelection: not bound +!missing-selector! NSTextContentStorage::attributedString not bound +!missing-selector! NSTextContentStorage::attributedStringForTextElement: not bound +!missing-selector! NSTextContentStorage::delegate not bound +!missing-selector! NSTextContentStorage::locationFromLocation:withOffset: not bound +!missing-selector! NSTextContentStorage::offsetFromLocation:toLocation: not bound +!missing-selector! NSTextContentStorage::setAttributedString: not bound +!missing-selector! NSTextContentStorage::setDelegate: not bound +!missing-selector! NSTextContentStorage::textElementForAttributedString: not bound +!missing-selector! NSTextElement::elementRange not bound +!missing-selector! NSTextElement::initWithTextContentManager: not bound +!missing-selector! NSTextElement::setElementRange: not bound +!missing-selector! NSTextElement::setTextContentManager: not bound +!missing-selector! NSTextElement::textContentManager not bound +!missing-selector! NSTextLayoutFragment::bottomMargin not bound +!missing-selector! NSTextLayoutFragment::drawAtPoint:inContext: not bound +!missing-selector! NSTextLayoutFragment::initWithCoder: not bound +!missing-selector! NSTextLayoutFragment::initWithTextElement:range: not bound +!missing-selector! NSTextLayoutFragment::invalidateLayout not bound +!missing-selector! NSTextLayoutFragment::layoutFragmentFrame not bound +!missing-selector! NSTextLayoutFragment::layoutQueue not bound +!missing-selector! NSTextLayoutFragment::leadingPadding not bound +!missing-selector! NSTextLayoutFragment::rangeInElement not bound +!missing-selector! NSTextLayoutFragment::renderingSurfaceBounds not bound +!missing-selector! NSTextLayoutFragment::setLayoutQueue: not bound +!missing-selector! NSTextLayoutFragment::state not bound +!missing-selector! NSTextLayoutFragment::textElement not bound +!missing-selector! NSTextLayoutFragment::textLayoutManager not bound +!missing-selector! NSTextLayoutFragment::textLineFragments not bound +!missing-selector! NSTextLayoutFragment::topMargin not bound +!missing-selector! NSTextLayoutFragment::trailingPadding not bound +!missing-selector! NSTextLayoutManager::addRenderingAttribute:value:forTextRange: not bound +!missing-selector! NSTextLayoutManager::delegate not bound +!missing-selector! NSTextLayoutManager::ensureLayoutForBounds: not bound +!missing-selector! NSTextLayoutManager::ensureLayoutForRange: not bound +!missing-selector! NSTextLayoutManager::enumerateRenderingAttributesFromLocation:reverse:usingBlock: not bound +!missing-selector! NSTextLayoutManager::enumerateTextLayoutFragmentsFromLocation:options:usingBlock: not bound +!missing-selector! NSTextLayoutManager::enumerateTextSegmentsInRange:type:options:usingBlock: not bound +!missing-selector! NSTextLayoutManager::init not bound +!missing-selector! NSTextLayoutManager::initWithCoder: not bound +!missing-selector! NSTextLayoutManager::invalidateLayoutForRange: not bound +!missing-selector! NSTextLayoutManager::invalidateRenderingAttributesForTextRange: not bound +!missing-selector! NSTextLayoutManager::layoutQueue not bound +!missing-selector! NSTextLayoutManager::limitsLayoutForSuspiciousContents not bound +!missing-selector! NSTextLayoutManager::removeRenderingAttribute:forTextRange: not bound +!missing-selector! NSTextLayoutManager::renderingAttributesForLink:atLocation: not bound +!missing-selector! NSTextLayoutManager::renderingAttributesValidator not bound +!missing-selector! NSTextLayoutManager::replaceContentsInRange:withAttributedString: not bound +!missing-selector! NSTextLayoutManager::replaceContentsInRange:withTextElements: not bound +!missing-selector! NSTextLayoutManager::replaceTextContentManager: not bound +!missing-selector! NSTextLayoutManager::setDelegate: not bound +!missing-selector! NSTextLayoutManager::setLayoutQueue: not bound +!missing-selector! NSTextLayoutManager::setLimitsLayoutForSuspiciousContents: not bound +!missing-selector! NSTextLayoutManager::setRenderingAttributes:forTextRange: not bound +!missing-selector! NSTextLayoutManager::setRenderingAttributesValidator: not bound +!missing-selector! NSTextLayoutManager::setTextContainer: not bound +!missing-selector! NSTextLayoutManager::setTextSelectionNavigation: not bound +!missing-selector! NSTextLayoutManager::setTextSelections: not bound +!missing-selector! NSTextLayoutManager::setUsesFontLeading: not bound +!missing-selector! NSTextLayoutManager::setUsesHyphenation: not bound +!missing-selector! NSTextLayoutManager::textContainer not bound +!missing-selector! NSTextLayoutManager::textContentManager not bound +!missing-selector! NSTextLayoutManager::textLayoutFragmentForLocation: not bound +!missing-selector! NSTextLayoutManager::textLayoutFragmentForPosition: not bound +!missing-selector! NSTextLayoutManager::textSelectionNavigation not bound +!missing-selector! NSTextLayoutManager::textSelections not bound +!missing-selector! NSTextLayoutManager::textViewportLayoutController not bound +!missing-selector! NSTextLayoutManager::usageBoundsForTextContainer not bound +!missing-selector! NSTextLayoutManager::usesFontLeading not bound +!missing-selector! NSTextLayoutManager::usesHyphenation not bound +!missing-selector! NSTextLineFragment::attributedString not bound +!missing-selector! NSTextLineFragment::characterIndexForPoint: not bound +!missing-selector! NSTextLineFragment::characterRange not bound +!missing-selector! NSTextLineFragment::drawAtPoint:inContext: not bound +!missing-selector! NSTextLineFragment::fractionOfDistanceThroughGlyphForPoint: not bound +!missing-selector! NSTextLineFragment::glyphOrigin not bound +!missing-selector! NSTextLineFragment::initWithAttributedString:range: not bound +!missing-selector! NSTextLineFragment::initWithCoder: not bound +!missing-selector! NSTextLineFragment::initWithString:attributes:range: not bound +!missing-selector! NSTextLineFragment::locationForCharacterAtIndex: not bound +!missing-selector! NSTextLineFragment::typographicBounds not bound +!missing-selector! NSTextParagraph::attributedString not bound +!missing-selector! NSTextParagraph::initWithAttributedString: not bound +!missing-selector! NSTextParagraph::paragraphContentRange not bound +!missing-selector! NSTextParagraph::paragraphSeparatorRange not bound +!missing-selector! NSTextRange::containsLocation: not bound +!missing-selector! NSTextRange::containsRange: not bound +!missing-selector! NSTextRange::endLocation not bound +!missing-selector! NSTextRange::initWithLocation: not bound +!missing-selector! NSTextRange::initWithLocation:endLocation: not bound +!missing-selector! NSTextRange::intersectsWithTextRange: not bound +!missing-selector! NSTextRange::isEmpty not bound +!missing-selector! NSTextRange::isEqualToTextRange: not bound +!missing-selector! NSTextRange::location not bound +!missing-selector! NSTextRange::textRangeByFormingUnionWithTextRange: not bound +!missing-selector! NSTextRange::textRangeByIntersectingWithTextRange: not bound +!missing-selector! NSTextSelection::affinity not bound +!missing-selector! NSTextSelection::anchorPositionOffset not bound +!missing-selector! NSTextSelection::granularity not bound +!missing-selector! NSTextSelection::initWithCoder: not bound +!missing-selector! NSTextSelection::initWithLocation:affinity: not bound +!missing-selector! NSTextSelection::initWithRange:affinity:granularity: not bound +!missing-selector! NSTextSelection::initWithRanges:affinity:granularity: not bound +!missing-selector! NSTextSelection::isLogical not bound +!missing-selector! NSTextSelection::isTransient not bound +!missing-selector! NSTextSelection::secondarySelectionLocation not bound +!missing-selector! NSTextSelection::setAnchorPositionOffset: not bound +!missing-selector! NSTextSelection::setLogical: not bound +!missing-selector! NSTextSelection::setSecondarySelectionLocation: not bound +!missing-selector! NSTextSelection::setTypingAttributes: not bound +!missing-selector! NSTextSelection::textRanges not bound +!missing-selector! NSTextSelection::textSelectionWithTextRanges: not bound +!missing-selector! NSTextSelection::typingAttributes not bound +!missing-selector! NSTextSelectionNavigation::allowsNonContiguousRanges not bound +!missing-selector! NSTextSelectionNavigation::deletionRangesForTextSelection:direction:destination:allowsDecomposition: not bound +!missing-selector! NSTextSelectionNavigation::destinationSelectionForTextSelection:direction:destination:extending:confined: not bound +!missing-selector! NSTextSelectionNavigation::flushLayoutCache not bound +!missing-selector! NSTextSelectionNavigation::initWithDataSource: not bound +!missing-selector! NSTextSelectionNavigation::resolvedInsertionLocationForTextSelection:writingDirection: not bound +!missing-selector! NSTextSelectionNavigation::rotatesCoordinateSystemForLayoutOrientation not bound +!missing-selector! NSTextSelectionNavigation::setAllowsNonContiguousRanges: not bound +!missing-selector! NSTextSelectionNavigation::setRotatesCoordinateSystemForLayoutOrientation: not bound +!missing-selector! NSTextSelectionNavigation::textSelectionDataSource not bound +!missing-selector! NSTextSelectionNavigation::textSelectionForSelectionGranularity:enclosingPoint:inContainerAtLocation: not bound +!missing-selector! NSTextSelectionNavigation::textSelectionForSelectionGranularity:enclosingTextSelection: not bound +!missing-selector! NSTextSelectionNavigation::textSelectionsInteractingAtPoint:inContainerAtLocation:anchors:modifiers:selecting:bounds: not bound +!missing-selector! NSTextStorage::setTextStorageObserver: not bound +!missing-selector! NSTextStorage::textStorageObserver not bound +!missing-selector! NSTextViewportLayoutController::adjustViewportByVerticalOffset: not bound +!missing-selector! NSTextViewportLayoutController::delegate not bound +!missing-selector! NSTextViewportLayoutController::initWithTextLayoutManager: not bound +!missing-selector! NSTextViewportLayoutController::layoutViewport not bound +!missing-selector! NSTextViewportLayoutController::relocateViewportToTextLocation: not bound +!missing-selector! NSTextViewportLayoutController::setDelegate: not bound +!missing-selector! NSTextViewportLayoutController::textLayoutManager not bound +!missing-selector! NSTextViewportLayoutController::viewportBounds not bound +!missing-selector! NSTextViewportLayoutController::viewportRange not bound !missing-selector! UIBackgroundConfiguration::image not bound !missing-selector! UIBackgroundConfiguration::imageContentMode not bound !missing-selector! UIBackgroundConfiguration::setImage: not bound !missing-selector! UIBackgroundConfiguration::setImageContentMode: not bound -!missing-selector! UIBandSelectionInteraction::initialModifierFlags not bound !missing-selector! UIBandSelectionInteraction::initWithSelectionHandler: not bound +!missing-selector! UIBandSelectionInteraction::initialModifierFlags not bound !missing-selector! UIBandSelectionInteraction::isEnabled not bound !missing-selector! UIBandSelectionInteraction::selectionRect not bound !missing-selector! UIBandSelectionInteraction::setEnabled: not bound @@ -156,7 +344,6 @@ !missing-selector! UIButton::isHeld not bound !missing-selector! UIButton::isHovered not bound !missing-selector! UIButton::preferredBehavioralStyle not bound -!missing-selector! UIButton::preferredSizeForConfiguration:maximumWidth: not bound !missing-selector! UIButton::setAutomaticallyUpdatesConfiguration: not bound !missing-selector! UIButton::setChangesSelectionAsPrimaryAction: not bound !missing-selector! UIButton::setConfiguration: not bound @@ -221,6 +408,22 @@ !missing-selector! UICollectionViewDiffableDataSource::applySnapshotUsingReloadData:completion: not bound !missing-selector! UICollectionViewDiffableDataSource::indexForSectionIdentifier: not bound !missing-selector! UICollectionViewDiffableDataSource::sectionIdentifierForIndex: not bound +!missing-selector! UICollectionViewDiffableDataSourceReorderingHandlers::canReorderItemHandler not bound +!missing-selector! UICollectionViewDiffableDataSourceReorderingHandlers::didReorderHandler not bound +!missing-selector! UICollectionViewDiffableDataSourceReorderingHandlers::setCanReorderItemHandler: not bound +!missing-selector! UICollectionViewDiffableDataSourceReorderingHandlers::setDidReorderHandler: not bound +!missing-selector! UICollectionViewDiffableDataSourceReorderingHandlers::setWillReorderHandler: not bound +!missing-selector! UICollectionViewDiffableDataSourceReorderingHandlers::willReorderHandler not bound +!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::setShouldCollapseItemHandler: not bound +!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::setShouldExpandItemHandler: not bound +!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::setSnapshotForExpandingParentItemHandler: not bound +!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::setWillCollapseItemHandler: not bound +!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::setWillExpandItemHandler: not bound +!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::shouldCollapseItemHandler not bound +!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::shouldExpandItemHandler not bound +!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::snapshotForExpandingParentItemHandler not bound +!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::willCollapseItemHandler not bound +!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::willExpandItemHandler not bound !missing-selector! UIControl::setToolTip: not bound !missing-selector! UIControl::toolTip not bound !missing-selector! UIControl::toolTipInteraction not bound @@ -232,21 +435,28 @@ !missing-selector! UIFocusHaloEffect::setContainerView: not bound !missing-selector! UIFocusHaloEffect::setPosition: not bound !missing-selector! UIFocusHaloEffect::setReferenceView: not bound +!missing-selector! UIImage::imageByApplyingVariant: not bound +!missing-selector! UIImage::imageByApplyingVariantFromImage: not bound !missing-selector! UIImage::imageByPreparingForDisplay not bound !missing-selector! UIImage::imageByPreparingThumbnailOfSize: not bound +!missing-selector! UIImage::imageByRemovingVariant not bound !missing-selector! UIImage::prepareForDisplayWithCompletionHandler: not bound !missing-selector! UIImage::prepareThumbnailOfSize:completionHandler: not bound -!missing-selector! UIKeyboardLayoutGuide::followsUndockedKeyboard not bound -!missing-selector! UIKeyboardLayoutGuide::setFollowsUndockedKeyboard: not bound !missing-selector! UIKeyCommand::allowsAutomaticLocalization not bound !missing-selector! UIKeyCommand::allowsAutomaticMirroring not bound !missing-selector! UIKeyCommand::setAllowsAutomaticLocalization: not bound !missing-selector! UIKeyCommand::setAllowsAutomaticMirroring: not bound !missing-selector! UIKeyCommand::setWantsPriorityOverSystemBehavior: not bound !missing-selector! UIKeyCommand::wantsPriorityOverSystemBehavior not bound +!missing-selector! UIKeyboardLayoutGuide::followsUndockedKeyboard not bound +!missing-selector! UIKeyboardLayoutGuide::setFollowsUndockedKeyboard: not bound !missing-selector! UILabel::setShowsExpansionTextWhenTruncated: not bound !missing-selector! UILabel::showsExpansionTextWhenTruncated not bound +!missing-selector! UIListSeparatorConfiguration::setVisualEffect: not bound +!missing-selector! UIListSeparatorConfiguration::visualEffect not bound !missing-selector! UIMenu::selectedElements not bound +!missing-selector! UIMenuElement::setSubtitle: not bound +!missing-selector! UIMenuElement::subtitle not bound !missing-selector! UINavigationBar::compactScrollEdgeAppearance not bound !missing-selector! UINavigationBar::setCompactScrollEdgeAppearance: not bound !missing-selector! UINavigationItem::compactScrollEdgeAppearance not bound @@ -293,6 +503,7 @@ !missing-selector! UISheetPresentationController::animateChanges: not bound !missing-selector! UISheetPresentationController::delegate not bound !missing-selector! UISheetPresentationController::detents not bound +!missing-selector! UISheetPresentationController::largestUndimmedDetentIdentifier not bound !missing-selector! UISheetPresentationController::preferredCornerRadius not bound !missing-selector! UISheetPresentationController::prefersEdgeAttachedInCompactHeight not bound !missing-selector! UISheetPresentationController::prefersGrabberVisible not bound @@ -300,6 +511,7 @@ !missing-selector! UISheetPresentationController::selectedDetentIdentifier not bound !missing-selector! UISheetPresentationController::setDelegate: not bound !missing-selector! UISheetPresentationController::setDetents: not bound +!missing-selector! UISheetPresentationController::setLargestUndimmedDetentIdentifier: not bound !missing-selector! UISheetPresentationController::setPreferredCornerRadius: not bound !missing-selector! UISheetPresentationController::setPrefersEdgeAttachedInCompactHeight: not bound !missing-selector! UISheetPresentationController::setPrefersGrabberVisible: not bound @@ -341,10 +553,8 @@ !missing-selector! UITextField::setInteractionState: not bound !missing-selector! UITextView::interactionState not bound !missing-selector! UITextView::setInteractionState: not bound -!missing-selector! UIToolbar::compactScrollEdgeAppearance not bound -!missing-selector! UIToolbar::scrollEdgeAppearance not bound -!missing-selector! UIToolbar::setCompactScrollEdgeAppearance: not bound -!missing-selector! UIToolbar::setScrollEdgeAppearance: not bound +!missing-selector! UIToolTipConfiguration::sourceRect not bound +!missing-selector! UIToolTipConfiguration::toolTip not bound !missing-selector! UIToolTipInteraction::defaultToolTip not bound !missing-selector! UIToolTipInteraction::delegate not bound !missing-selector! UIToolTipInteraction::init not bound @@ -353,6 +563,10 @@ !missing-selector! UIToolTipInteraction::setDefaultToolTip: not bound !missing-selector! UIToolTipInteraction::setDelegate: not bound !missing-selector! UIToolTipInteraction::setEnabled: not bound +!missing-selector! UIToolbar::compactScrollEdgeAppearance not bound +!missing-selector! UIToolbar::scrollEdgeAppearance not bound +!missing-selector! UIToolbar::setCompactScrollEdgeAppearance: not bound +!missing-selector! UIToolbar::setScrollEdgeAppearance: not bound !missing-selector! UITrackingLayoutGuide::constraintsActiveWhenAwayFromEdge: not bound !missing-selector! UITrackingLayoutGuide::constraintsActiveWhenNearEdge: not bound !missing-selector! UITrackingLayoutGuide::removeAllTrackedConstraints not bound @@ -364,15 +578,19 @@ !missing-selector! UIView::keyboardLayoutGuide not bound !missing-selector! UIView::maximumContentSizeCategory not bound !missing-selector! UIView::minimumContentSizeCategory not bound +!missing-selector! UIView::preferredUIView not bound +!missing-selector! UIView::preferredUIViewDidChange not bound !missing-selector! UIView::setFocusEffect: not bound !missing-selector! UIView::setFocusGroupPriority: not bound !missing-selector! UIView::setMaximumContentSizeCategory: not bound !missing-selector! UIView::setMinimumContentSizeCategory: not bound +!missing-selector! UIView::setPreferredUIView: not bound !missing-selector! UIViewConfigurationState::isPinned not bound !missing-selector! UIViewConfigurationState::setPinned: not bound !missing-selector! UIViewController::contentScrollViewForEdge: not bound !missing-selector! UIViewController::setContentScrollView:forEdge: not bound !missing-selector! UIViewController::setFocusGroupIdentifier: not bound +!missing-selector! UIViewController::sheetPresentationController not bound !missing-selector! UIWindow::canBecomeKeyWindow not bound !missing-selector! UIWindowScene::activityItemsConfigurationSource not bound !missing-selector! UIWindowScene::focusSystem not bound @@ -389,6 +607,18 @@ !missing-selector! UIWindowSceneActivationInteraction::initWithConfigurationProvider:errorHandler: not bound !missing-selector! UIWindowSceneActivationRequestOptions::preferredPresentationStyle not bound !missing-selector! UIWindowSceneActivationRequestOptions::setPreferredPresentationStyle: not bound +!missing-type! NSTextAttachmentViewProvider not bound +!missing-type! NSTextContentManager not bound +!missing-type! NSTextContentStorage not bound +!missing-type! NSTextElement not bound +!missing-type! NSTextLayoutFragment not bound +!missing-type! NSTextLayoutManager not bound +!missing-type! NSTextLineFragment not bound +!missing-type! NSTextParagraph not bound +!missing-type! NSTextRange not bound +!missing-type! NSTextSelection not bound +!missing-type! NSTextSelectionNavigation not bound +!missing-type! NSTextViewportLayoutController not bound !missing-type! UIBandSelectionInteraction not bound !missing-type! UIButtonConfiguration not bound !missing-type! UIFocusEffect not bound @@ -406,210 +636,11 @@ !missing-type! UIPointerAccessory not bound !missing-type! UISheetPresentationController not bound !missing-type! UISheetPresentationControllerDetent not bound +!missing-type! UIToolTipConfiguration not bound !missing-type! UIToolTipInteraction not bound !missing-type! UITrackingLayoutGuide not bound !missing-type! UIWindowSceneActivationAction not bound !missing-type! UIWindowSceneActivationConfiguration not bound !missing-type! UIWindowSceneActivationInteraction not bound !missing-type! UIWindowSceneActivationRequestOptions not bound -!missing-enum! NSTextContentManagerEnumerationOptions not bound -!missing-enum! NSTextLayoutFragmentEnumerationOptions not bound -!missing-enum! NSTextLayoutFragmentState not bound -!missing-enum! NSTextLayoutManagerSegmentOptions not bound -!missing-enum! NSTextLayoutManagerSegmentType not bound -!missing-enum! NSTextSelectionAffinity not bound -!missing-enum! NSTextSelectionGranularity not bound -!missing-enum! NSTextSelectionNavigationDestination not bound -!missing-enum! NSTextSelectionNavigationDirection not bound -!missing-enum! NSTextSelectionNavigationLayoutOrientation not bound -!missing-enum! NSTextSelectionNavigationModifier not bound -!missing-enum! NSTextSelectionNavigationWritingDirection not bound -!missing-enum! UIImageVariant not bound -!missing-field! NSTextContentStorageUnsupportedAttributeAddedNotification not bound -!missing-protocol! NSTextContentManagerDelegate not bound -!missing-protocol! NSTextContentStorageDelegate not bound -!missing-protocol! NSTextElementProvider not bound -!missing-protocol! NSTextLayoutManagerDelegate not bound -!missing-protocol! NSTextLocation not bound -!missing-protocol! NSTextSelectionDataSource not bound -!missing-protocol! NSTextViewportLayoutControllerDelegate not bound -!missing-selector! +NSTextLayoutManager::linkRenderingAttributes not bound -!missing-selector! +UIColor::systemCyanColor not bound -!missing-selector! +UIColor::systemMintColor not bound -!missing-selector! +UIImage::imageNamed:variant: not bound -!missing-selector! +UIImage::imageNamed:variant:withConfiguration: not bound -!missing-selector! +UIImage::systemImageNamed:variant: not bound -!missing-selector! +UIImage::systemImageNamed:variant:withConfiguration: not bound -!missing-selector! NSTextContentManager::addTextLayoutManager: not bound -!missing-selector! NSTextContentManager::automaticallySynchronizesTextLayoutManagers not bound -!missing-selector! NSTextContentManager::automaticallySynchronizesToBackingStore not bound -!missing-selector! NSTextContentManager::delegate not bound -!missing-selector! NSTextContentManager::hasEditingTransaction not bound -!missing-selector! NSTextContentManager::init not bound -!missing-selector! NSTextContentManager::initWithCoder: not bound -!missing-selector! NSTextContentManager::performEditingTransactionUsingBlock: not bound -!missing-selector! NSTextContentManager::primaryTextLayoutManager not bound -!missing-selector! NSTextContentManager::recordEditActionInRange:newTextRange: not bound -!missing-selector! NSTextContentManager::removeTextLayoutManager: not bound -!missing-selector! NSTextContentManager::setAutomaticallySynchronizesTextLayoutManagers: not bound -!missing-selector! NSTextContentManager::setAutomaticallySynchronizesToBackingStore: not bound -!missing-selector! NSTextContentManager::setDelegate: not bound -!missing-selector! NSTextContentManager::setPrimaryTextLayoutManager: not bound -!missing-selector! NSTextContentManager::synchronizeTextLayoutManagers: not bound -!missing-selector! NSTextContentManager::textElementsForRange: not bound -!missing-selector! NSTextContentManager::textLayoutManagers not bound -!missing-selector! NSTextContentStorage::adjustedRangeFromRange:forEditingTextSelection: not bound -!missing-selector! NSTextContentStorage::attributedString not bound -!missing-selector! NSTextContentStorage::attributedStringForTextElement: not bound -!missing-selector! NSTextContentStorage::delegate not bound -!missing-selector! NSTextContentStorage::locationFromLocation:withOffset: not bound -!missing-selector! NSTextContentStorage::offsetFromLocation:toLocation: not bound -!missing-selector! NSTextContentStorage::setAttributedString: not bound -!missing-selector! NSTextContentStorage::setDelegate: not bound -!missing-selector! NSTextContentStorage::textElementForAttributedString: not bound -!missing-selector! NSTextElement::elementRange not bound -!missing-selector! NSTextElement::initWithTextContentManager: not bound -!missing-selector! NSTextElement::setElementRange: not bound -!missing-selector! NSTextElement::setTextContentManager: not bound -!missing-selector! NSTextElement::textContentManager not bound -!missing-selector! NSTextLayoutFragment::bottomMargin not bound -!missing-selector! NSTextLayoutFragment::drawAtPoint:inContext: not bound -!missing-selector! NSTextLayoutFragment::initWithCoder: not bound -!missing-selector! NSTextLayoutFragment::initWithTextElement:range: not bound -!missing-selector! NSTextLayoutFragment::invalidateLayout not bound -!missing-selector! NSTextLayoutFragment::layoutFragmentFrame not bound -!missing-selector! NSTextLayoutFragment::layoutQueue not bound -!missing-selector! NSTextLayoutFragment::leadingPadding not bound -!missing-selector! NSTextLayoutFragment::rangeInElement not bound -!missing-selector! NSTextLayoutFragment::renderingSurfaceBounds not bound -!missing-selector! NSTextLayoutFragment::setLayoutQueue: not bound -!missing-selector! NSTextLayoutFragment::state not bound -!missing-selector! NSTextLayoutFragment::textElement not bound -!missing-selector! NSTextLayoutFragment::textLayoutManager not bound -!missing-selector! NSTextLayoutFragment::textLineFragments not bound -!missing-selector! NSTextLayoutFragment::topMargin not bound -!missing-selector! NSTextLayoutFragment::trailingPadding not bound -!missing-selector! NSTextLayoutManager::addRenderingAttribute:value:forTextRange: not bound -!missing-selector! NSTextLayoutManager::delegate not bound -!missing-selector! NSTextLayoutManager::ensureLayoutForBounds: not bound -!missing-selector! NSTextLayoutManager::ensureLayoutForRange: not bound -!missing-selector! NSTextLayoutManager::enumerateRenderingAttributesFromLocation:reverse:usingBlock: not bound -!missing-selector! NSTextLayoutManager::enumerateTextLayoutFragmentsFromLocation:options:usingBlock: not bound -!missing-selector! NSTextLayoutManager::enumerateTextSegmentsInRange:type:options:usingBlock: not bound -!missing-selector! NSTextLayoutManager::init not bound -!missing-selector! NSTextLayoutManager::initWithCoder: not bound -!missing-selector! NSTextLayoutManager::invalidateLayoutForRange: not bound -!missing-selector! NSTextLayoutManager::invalidateRenderingAttributesForTextRange: not bound -!missing-selector! NSTextLayoutManager::layoutQueue not bound -!missing-selector! NSTextLayoutManager::limitsLayoutForSuspiciousContents not bound -!missing-selector! NSTextLayoutManager::removeRenderingAttribute:forTextRange: not bound -!missing-selector! NSTextLayoutManager::renderingAttributesForLink:atLocation: not bound -!missing-selector! NSTextLayoutManager::renderingAttributesValidator not bound -!missing-selector! NSTextLayoutManager::replaceContentsInRange:withAttributedString: not bound -!missing-selector! NSTextLayoutManager::replaceContentsInRange:withTextElements: not bound -!missing-selector! NSTextLayoutManager::replaceTextContentManager: not bound -!missing-selector! NSTextLayoutManager::setDelegate: not bound -!missing-selector! NSTextLayoutManager::setLayoutQueue: not bound -!missing-selector! NSTextLayoutManager::setLimitsLayoutForSuspiciousContents: not bound -!missing-selector! NSTextLayoutManager::setRenderingAttributes:forTextRange: not bound -!missing-selector! NSTextLayoutManager::setRenderingAttributesValidator: not bound -!missing-selector! NSTextLayoutManager::setTextContainer: not bound -!missing-selector! NSTextLayoutManager::setTextSelectionNavigation: not bound -!missing-selector! NSTextLayoutManager::setTextSelections: not bound -!missing-selector! NSTextLayoutManager::setUsesFontLeading: not bound -!missing-selector! NSTextLayoutManager::setUsesHyphenation: not bound -!missing-selector! NSTextLayoutManager::textContainer not bound -!missing-selector! NSTextLayoutManager::textContentManager not bound -!missing-selector! NSTextLayoutManager::textLayoutFragmentForLocation: not bound -!missing-selector! NSTextLayoutManager::textLayoutFragmentForPosition: not bound -!missing-selector! NSTextLayoutManager::textSelectionNavigation not bound -!missing-selector! NSTextLayoutManager::textSelections not bound -!missing-selector! NSTextLayoutManager::textViewportLayoutController not bound -!missing-selector! NSTextLayoutManager::usageBoundsForTextContainer not bound -!missing-selector! NSTextLayoutManager::usesFontLeading not bound -!missing-selector! NSTextLayoutManager::usesHyphenation not bound -!missing-selector! NSTextLineFragment::attributedString not bound -!missing-selector! NSTextLineFragment::characterIndexForPoint: not bound -!missing-selector! NSTextLineFragment::characterRange not bound -!missing-selector! NSTextLineFragment::drawAtPoint:inContext: not bound -!missing-selector! NSTextLineFragment::fractionOfDistanceThroughGlyphForPoint: not bound -!missing-selector! NSTextLineFragment::glyphOrigin not bound -!missing-selector! NSTextLineFragment::initWithAttributedString:range: not bound -!missing-selector! NSTextLineFragment::initWithCoder: not bound -!missing-selector! NSTextLineFragment::initWithString:attributes:range: not bound -!missing-selector! NSTextLineFragment::locationForCharacterAtIndex: not bound -!missing-selector! NSTextLineFragment::typographicBounds not bound -!missing-selector! NSTextParagraph::attributedString not bound -!missing-selector! NSTextParagraph::initWithAttributedString: not bound -!missing-selector! NSTextParagraph::paragraphContentRange not bound -!missing-selector! NSTextParagraph::paragraphSeparatorRange not bound -!missing-selector! NSTextRange::containsLocation: not bound -!missing-selector! NSTextRange::containsRange: not bound -!missing-selector! NSTextRange::endLocation not bound -!missing-selector! NSTextRange::initWithLocation: not bound -!missing-selector! NSTextRange::initWithLocation:endLocation: not bound -!missing-selector! NSTextRange::intersectsWithTextRange: not bound -!missing-selector! NSTextRange::isEmpty not bound -!missing-selector! NSTextRange::isEqualToTextRange: not bound -!missing-selector! NSTextRange::location not bound -!missing-selector! NSTextRange::textRangeByFormingUnionWithTextRange: not bound -!missing-selector! NSTextRange::textRangeByIntersectingWithTextRange: not bound -!missing-selector! NSTextSelection::affinity not bound -!missing-selector! NSTextSelection::anchorPositionOffset not bound -!missing-selector! NSTextSelection::granularity not bound -!missing-selector! NSTextSelection::initWithCoder: not bound -!missing-selector! NSTextSelection::initWithLocation:affinity: not bound -!missing-selector! NSTextSelection::initWithRange:affinity:granularity: not bound -!missing-selector! NSTextSelection::initWithRanges:affinity:granularity: not bound -!missing-selector! NSTextSelection::isLogical not bound -!missing-selector! NSTextSelection::isTransient not bound -!missing-selector! NSTextSelection::secondarySelectionLocation not bound -!missing-selector! NSTextSelection::setAnchorPositionOffset: not bound -!missing-selector! NSTextSelection::setLogical: not bound -!missing-selector! NSTextSelection::setSecondarySelectionLocation: not bound -!missing-selector! NSTextSelection::setTypingAttributes: not bound -!missing-selector! NSTextSelection::textRanges not bound -!missing-selector! NSTextSelection::textSelectionWithTextRanges: not bound -!missing-selector! NSTextSelection::typingAttributes not bound -!missing-selector! NSTextSelectionNavigation::allowsNonContiguousRanges not bound -!missing-selector! NSTextSelectionNavigation::deletionRangesForTextSelection:direction:destination:allowsDecomposition: not bound -!missing-selector! NSTextSelectionNavigation::destinationSelectionForTextSelection:direction:destination:extending:confined: not bound -!missing-selector! NSTextSelectionNavigation::flushLayoutCache not bound -!missing-selector! NSTextSelectionNavigation::initWithDataSource: not bound -!missing-selector! NSTextSelectionNavigation::resolvedInsertionLocationForTextSelection:writingDirection: not bound -!missing-selector! NSTextSelectionNavigation::rotatesCoordinateSystemForLayoutOrientation not bound -!missing-selector! NSTextSelectionNavigation::setAllowsNonContiguousRanges: not bound -!missing-selector! NSTextSelectionNavigation::setRotatesCoordinateSystemForLayoutOrientation: not bound -!missing-selector! NSTextSelectionNavigation::textSelectionDataSource not bound -!missing-selector! NSTextSelectionNavigation::textSelectionForSelectionGranularity:enclosingPoint:inContainerAtLocation: not bound -!missing-selector! NSTextSelectionNavigation::textSelectionForSelectionGranularity:enclosingTextSelection: not bound -!missing-selector! NSTextSelectionNavigation::textSelectionsInteractingAtPoint:inContainerAtLocation:anchors:modifiers:selecting:bounds: not bound -!missing-selector! NSTextStorage::setTextStorageObserver: not bound -!missing-selector! NSTextStorage::textStorageObserver not bound -!missing-selector! NSTextViewportLayoutController::adjustViewportByVerticalOffset: not bound -!missing-selector! NSTextViewportLayoutController::delegate not bound -!missing-selector! NSTextViewportLayoutController::initWithTextLayoutManager: not bound -!missing-selector! NSTextViewportLayoutController::layoutViewport not bound -!missing-selector! NSTextViewportLayoutController::relocateViewportToTextLocation: not bound -!missing-selector! NSTextViewportLayoutController::setDelegate: not bound -!missing-selector! NSTextViewportLayoutController::textLayoutManager not bound -!missing-selector! NSTextViewportLayoutController::viewportBounds not bound -!missing-selector! NSTextViewportLayoutController::viewportRange not bound -!missing-selector! UIImage::imageByApplyingVariant: not bound -!missing-selector! UIImage::imageByApplyingVariantFromImage: not bound -!missing-selector! UIImage::imageByRemovingVariant not bound -!missing-selector! UIView::preferredUIView not bound -!missing-selector! UIView::preferredUIViewDidChange not bound -!missing-selector! UIView::setPreferredUIView: not bound -!missing-selector! UIViewController::sheetPresentationController not bound -!missing-type! NSTextContentManager not bound -!missing-type! NSTextContentStorage not bound -!missing-type! NSTextElement not bound -!missing-type! NSTextLayoutFragment not bound -!missing-type! NSTextLayoutManager not bound -!missing-type! NSTextLineFragment not bound -!missing-type! NSTextParagraph not bound -!missing-type! NSTextRange not bound -!missing-type! NSTextSelection not bound -!missing-type! NSTextSelectionNavigation not bound -!missing-type! NSTextViewportLayoutController not bound +## appended from unclassified file diff --git a/tests/xtro-sharpie/iOS-VideoToolbox.todo b/tests/xtro-sharpie/iOS-VideoToolbox.todo index 13d6a561347c..270cad9cf193 100644 --- a/tests/xtro-sharpie/iOS-VideoToolbox.todo +++ b/tests/xtro-sharpie/iOS-VideoToolbox.todo @@ -8,3 +8,4 @@ !missing-field! kVTProfileLevel_H264_ConstrainedBaseline_AutoLevel not bound !missing-field! kVTProfileLevel_H264_ConstrainedHigh_AutoLevel not bound !missing-field! kVTSampleAttachmentKey_RequireLTRAcknowledgementToken not bound +!missing-field! kVTVideoEncoderListOption_IncludeStandardDefinitionDVEncoders not bound diff --git a/tests/xtro-sharpie/macOS-AVFoundation.todo b/tests/xtro-sharpie/macOS-AVFoundation.todo index 3f599fc95dac..e90950ba21d5 100644 --- a/tests/xtro-sharpie/macOS-AVFoundation.todo +++ b/tests/xtro-sharpie/macOS-AVFoundation.todo @@ -1,6 +1,7 @@ -## appended from unclassified file !deprecated-attribute-missing! AVPlayer::masterClock missing a [Deprecated] attribute !deprecated-attribute-missing! AVPlayer::setMasterClock: missing a [Deprecated] attribute +!deprecated-attribute-missing! AVPlayerItemAccessLogEvent::observedMaxBitrate missing a [Deprecated] attribute +!deprecated-attribute-missing! AVPlayerItemAccessLogEvent::observedMinBitrate missing a [Deprecated] attribute !missing-enum! AVCaptionAnimation not bound !missing-enum! AVCaptionConversionValidatorStatus not bound !missing-enum! AVCaptionDecoration not bound @@ -13,20 +14,22 @@ !missing-enum! AVCaptionRubyPosition not bound !missing-enum! AVCaptionTextAlignment not bound !missing-enum! AVCaptionTextCombine not bound -!missing-enum! AVCaptionUnitType not bound +!missing-enum! AVCaptionUnitsType not bound +!missing-enum! AVCaptureMicrophoneMode not bound +!missing-enum! AVCaptureSystemUserInterface not bound !missing-enum! AVDelegatingPlaybackCoordinatorRateChangeOptions not bound !missing-enum! AVDelegatingPlaybackCoordinatorSeekOptions not bound !missing-enum! AVPlayerAudiovisualBackgroundPlaybackPolicy not bound !missing-enum-value! AVError native value AVErrorContentKeyRequestCancelled = -11879 not bound !missing-enum-value! AVError native value AVErrorOperationCancelled = -11878 not bound -!missing-field! AVAssetDownloadedAssetEvictionPriorityDefault not bound -!missing-field! AVAssetDownloadedAssetEvictionPriorityImportant not bound !missing-field! AVAssetDownloadTaskMediaSelectionKey not bound !missing-field! AVAssetDownloadTaskMediaSelectionPrefersMultichannelKey not bound !missing-field! AVAssetDownloadTaskMinimumRequiredMediaBitrateKey not bound !missing-field! AVAssetDownloadTaskMinimumRequiredPresentationSizeKey not bound !missing-field! AVAssetDownloadTaskPrefersHDRKey not bound !missing-field! AVAssetDownloadTaskPrefersLosslessAudioKey not bound +!missing-field! AVAssetDownloadedAssetEvictionPriorityDefault not bound +!missing-field! AVAssetDownloadedAssetEvictionPriorityImportant not bound !missing-field! AVCaptionConversionAdjustmentTypeTimeRange not bound !missing-field! AVCaptionConversionWarningTypeExcessMediaData not bound !missing-field! AVCaptionMediaSubTypeKey not bound @@ -62,6 +65,9 @@ !missing-field! AVVideoRangeHLG not bound !missing-field! AVVideoRangePQ not bound !missing-field! AVVideoRangeSDR not bound +!missing-pinvoke! AVCaptionDimensionMake is not bound +!missing-pinvoke! AVCaptionPointMake is not bound +!missing-pinvoke! AVCaptionSizeMake is not bound !missing-protocol! AVAssetDownloadDelegate not bound !missing-protocol! AVAssetReaderCaptionValidationHandling not bound !missing-protocol! AVPlaybackCoordinatorPlaybackControlDelegate not bound @@ -74,27 +80,32 @@ !missing-selector! +AVAssetVariantQualifier::assetVariantQualifierWithPredicate: not bound !missing-selector! +AVAssetVariantQualifier::assetVariantQualifierWithVariant: not bound !missing-selector! +AVAssetVariantQualifier::predicateForChannelCount:mediaSelectionOption:operatorType: not bound +!missing-selector! +AVAssetVariantQualifier::predicateForPresentationHeight:operatorType: not bound +!missing-selector! +AVAssetVariantQualifier::predicateForPresentationWidth:operatorType: not bound !missing-selector! +AVAssetWriterInputCaptionAdaptor::assetWriterInputCaptionAdaptorWithAssetWriterInput: not bound !missing-selector! +AVCaptionConversionValidator::captionConversionValidatorWithCaptions:timeRange:conversionSettings: not bound !missing-selector! +AVCaptionFormatConformer::captionFormatConformerWithConversionSettings: not bound -!missing-selector! +AVCaptionRegion::subRipTextBottom not bound -!missing-selector! +AVPlayerInterstitialEvent::interstitialEventWithPrimaryItem:identifier:date:templateItems:restrictions:resumptionOffset:playoutLimit: not bound +!missing-selector! +AVCaptionRegion::appleITTBottomRegion not bound +!missing-selector! +AVCaptionRegion::appleITTLeftRegion not bound +!missing-selector! +AVCaptionRegion::appleITTRightRegion not bound +!missing-selector! +AVCaptionRegion::appleITTTopRegion not bound +!missing-selector! +AVCaptionRegion::subRipTextBottomRegion not bound +!missing-selector! +AVCaptureDevice::activeMicrophoneMode not bound +!missing-selector! +AVCaptureDevice::isPortraitEffectEnabled not bound +!missing-selector! +AVCaptureDevice::preferredMicrophoneMode not bound +!missing-selector! +AVCaptureDevice::showSystemUserInterface: not bound !missing-selector! +AVPlayerInterstitialEvent::interstitialEventWithPrimaryItem:identifier:date:templateItems:restrictions:resumptionOffset:playoutLimit:userDefinedAttributes: not bound -!missing-selector! +AVPlayerInterstitialEvent::interstitialEventWithPrimaryItem:identifier:time:templateItems:restrictions:resumptionOffset:playoutLimit: not bound !missing-selector! +AVPlayerInterstitialEvent::interstitialEventWithPrimaryItem:identifier:time:templateItems:restrictions:resumptionOffset:playoutLimit:userDefinedAttributes: not bound !missing-selector! +AVPlayerInterstitialEventMonitor::interstitialEventMonitorWithPrimaryPlayer: not bound !missing-selector! AVAggregateAssetDownloadTask::URLAsset not bound -!missing-selector! AVAppleITTCaptionPosition::initWithRelativeToEnclosingRegionX:Y: not bound -!missing-selector! AVAppleITTCaptionPosition::relativeToEnclosingRegionX not bound -!missing-selector! AVAppleITTCaptionPosition::relativeToEnclosingRegionY not bound !missing-selector! AVAsset::findUnusedTrackIDWithCompletionHandler: not bound !missing-selector! AVAsset::loadChapterMetadataGroupsBestMatchingPreferredLanguages:completionHandler: not bound !missing-selector! AVAsset::loadChapterMetadataGroupsWithTitleLocale:containingItemsWithCommonKeys:completionHandler: not bound !missing-selector! AVAsset::loadMediaSelectionGroupForMediaCharacteristic:completionHandler: not bound !missing-selector! AVAsset::loadMetadataForFormat:completionHandler: not bound +!missing-selector! AVAsset::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVAsset::loadTracksWithMediaCharacteristic:completionHandler: not bound !missing-selector! AVAsset::loadTracksWithMediaType:completionHandler: not bound -!missing-selector! AVAsset::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVAssetDownloadConfiguration::artworkData not bound !missing-selector! AVAssetDownloadConfiguration::auxiliaryContentConfigurations not bound !missing-selector! AVAssetDownloadConfiguration::optimizesAuxiliaryContentConfigurations not bound @@ -110,9 +121,9 @@ !missing-selector! AVAssetDownloadStorageManagementPolicy::priority not bound !missing-selector! AVAssetDownloadStorageManager::setStorageManagementPolicy:forURL: not bound !missing-selector! AVAssetDownloadStorageManager::storageManagementPolicyForURL: not bound +!missing-selector! AVAssetDownloadTask::URLAsset not bound !missing-selector! AVAssetDownloadTask::loadedTimeRanges not bound !missing-selector! AVAssetDownloadTask::options not bound -!missing-selector! AVAssetDownloadTask::URLAsset not bound !missing-selector! AVAssetDownloadURLSession::aggregateAssetDownloadTaskWithURLAsset:mediaSelections:assetTitle:assetArtworkData:options: not bound !missing-selector! AVAssetDownloadURLSession::assetDownloadTaskWithConfiguration: not bound !missing-selector! AVAssetDownloadURLSession::assetDownloadTaskWithURLAsset:assetTitle:assetArtworkData:options: not bound @@ -161,8 +172,8 @@ !missing-selector! AVCaption::textCombineAtIndex:range: not bound !missing-selector! AVCaption::timeRange not bound !missing-selector! AVCaptionConversionAdjustment::adjustmentType not bound -!missing-selector! AVCaptionConversionTimeRangeAdjustment::durationAdjustment not bound -!missing-selector! AVCaptionConversionTimeRangeAdjustment::startAdjustment not bound +!missing-selector! AVCaptionConversionTimeRangeAdjustment::durationOffset not bound +!missing-selector! AVCaptionConversionTimeRangeAdjustment::startTimeOffset not bound !missing-selector! AVCaptionConversionValidator::captions not bound !missing-selector! AVCaptionConversionValidator::initWithCaptions:timeRange:conversionSettings: not bound !missing-selector! AVCaptionConversionValidator::status not bound @@ -174,28 +185,24 @@ !missing-selector! AVCaptionConversionWarning::rangeOfCaptions not bound !missing-selector! AVCaptionConversionWarning::warningType not bound !missing-selector! AVCaptionFormatConformer::conformedCaptionForCaption:error: not bound -!missing-selector! AVCaptionFormatConformer::conformsCaptionTimeRange not bound +!missing-selector! AVCaptionFormatConformer::conformsCaptionsToTimeRange not bound !missing-selector! AVCaptionFormatConformer::initWithConversionSettings: not bound -!missing-selector! AVCaptionFormatConformer::setConformsCaptionTimeRange: not bound +!missing-selector! AVCaptionFormatConformer::setConformsCaptionsToTimeRange: not bound !missing-selector! AVCaptionGroup::captions not bound !missing-selector! AVCaptionGroup::initWithCaptions:timeRange: not bound !missing-selector! AVCaptionGroup::initWithTimeRange: not bound !missing-selector! AVCaptionGroup::timeRange not bound !missing-selector! AVCaptionGrouper::addCaption: not bound !missing-selector! AVCaptionGrouper::flushAddedCaptionsIntoGroupsUpToTime: not bound -!missing-selector! AVCaptionLength::initWithCellCount: not bound -!missing-selector! AVCaptionLength::numberOfCells not bound -!missing-selector! AVCaptionPosition::unitType not bound !missing-selector! AVCaptionRegion::displayAlignment not bound -!missing-selector! AVCaptionRegion::endPosition not bound -!missing-selector! AVCaptionRegion::height not bound !missing-selector! AVCaptionRegion::identifier not bound -!missing-selector! AVCaptionRegion::position not bound +!missing-selector! AVCaptionRegion::origin not bound !missing-selector! AVCaptionRegion::scroll not bound +!missing-selector! AVCaptionRegion::size not bound !missing-selector! AVCaptionRegion::writingMode not bound !missing-selector! AVCaptionRenderer::bounds not bound -!missing-selector! AVCaptionRenderer::captions not bound !missing-selector! AVCaptionRenderer::captionSceneChangesInRange: not bound +!missing-selector! AVCaptionRenderer::captions not bound !missing-selector! AVCaptionRenderer::renderInContext:forTime: not bound !missing-selector! AVCaptionRenderer::setBounds: not bound !missing-selector! AVCaptionRenderer::setCaptions: not bound @@ -207,14 +214,12 @@ !missing-selector! AVCaptionRuby::initWithText:position:alignment: not bound !missing-selector! AVCaptionRuby::position not bound !missing-selector! AVCaptionRuby::text not bound +!missing-selector! AVCaptureDevice::isPortraitEffectActive not bound !missing-selector! AVCaptureDevice::minimumFocusDistance not bound !missing-selector! AVCaptureDeviceFormat::isHighPhotoQualitySupported not bound -!missing-selector! AVCEA608CaptionPosition::cellX not bound -!missing-selector! AVCEA608CaptionPosition::cellY not bound -!missing-selector! AVCEA608CaptionPosition::initWithCellPositionX:Y: not bound +!missing-selector! AVComposition::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVComposition::loadTracksWithMediaCharacteristic:completionHandler: not bound !missing-selector! AVComposition::loadTracksWithMediaType:completionHandler: not bound -!missing-selector! AVComposition::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVCoordinatedPlaybackParticipant::identifier not bound !missing-selector! AVCoordinatedPlaybackParticipant::isReadyToPlay not bound !missing-selector! AVCoordinatedPlaybackParticipant::suspensionReasons not bound @@ -233,24 +238,24 @@ !missing-selector! AVDelegatingPlaybackCoordinatorBufferingCommand::completionDueDate not bound !missing-selector! AVDelegatingPlaybackCoordinatorPauseCommand::anticipatedPlaybackRate not bound !missing-selector! AVDelegatingPlaybackCoordinatorPauseCommand::shouldBufferInAnticipationOfPlayback not bound -!missing-selector! AVDelegatingPlaybackCoordinatorPlaybackControlCommand::expectedCurrentItemIdentifier not bound -!missing-selector! AVDelegatingPlaybackCoordinatorPlaybackControlCommand::originator not bound !missing-selector! AVDelegatingPlaybackCoordinatorPlayCommand::hostClockTime not bound !missing-selector! AVDelegatingPlaybackCoordinatorPlayCommand::itemTime not bound !missing-selector! AVDelegatingPlaybackCoordinatorPlayCommand::rate not bound +!missing-selector! AVDelegatingPlaybackCoordinatorPlaybackControlCommand::expectedCurrentItemIdentifier not bound +!missing-selector! AVDelegatingPlaybackCoordinatorPlaybackControlCommand::originator not bound !missing-selector! AVDelegatingPlaybackCoordinatorSeekCommand::anticipatedPlaybackRate not bound !missing-selector! AVDelegatingPlaybackCoordinatorSeekCommand::completionDueDate not bound !missing-selector! AVDelegatingPlaybackCoordinatorSeekCommand::itemTime not bound !missing-selector! AVDelegatingPlaybackCoordinatorSeekCommand::shouldBufferInAnticipationOfPlayback not bound +!missing-selector! AVFragmentedAsset::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVFragmentedAsset::loadTracksWithMediaCharacteristic:completionHandler: not bound !missing-selector! AVFragmentedAsset::loadTracksWithMediaType:completionHandler: not bound -!missing-selector! AVFragmentedAsset::loadTrackWithTrackID:completionHandler: not bound +!missing-selector! AVFragmentedMovie::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVFragmentedMovie::loadTracksWithMediaCharacteristic:completionHandler: not bound !missing-selector! AVFragmentedMovie::loadTracksWithMediaType:completionHandler: not bound -!missing-selector! AVFragmentedMovie::loadTrackWithTrackID:completionHandler: not bound +!missing-selector! AVMovie::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVMovie::loadTracksWithMediaCharacteristic:completionHandler: not bound !missing-selector! AVMovie::loadTracksWithMediaType:completionHandler: not bound -!missing-selector! AVMovie::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVMutableAssetDownloadStorageManagementPolicy::expirationDate not bound !missing-selector! AVMutableAssetDownloadStorageManagementPolicy::priority not bound !missing-selector! AVMutableAssetDownloadStorageManagementPolicy::setExpirationDate: not bound @@ -279,25 +284,23 @@ !missing-selector! AVMutableCaption::textAlignment not bound !missing-selector! AVMutableCaption::timeRange not bound !missing-selector! AVMutableCaptionRegion::displayAlignment not bound -!missing-selector! AVMutableCaptionRegion::endPosition not bound -!missing-selector! AVMutableCaptionRegion::height not bound !missing-selector! AVMutableCaptionRegion::init not bound !missing-selector! AVMutableCaptionRegion::initWithIdentifier: not bound -!missing-selector! AVMutableCaptionRegion::position not bound +!missing-selector! AVMutableCaptionRegion::origin not bound !missing-selector! AVMutableCaptionRegion::scroll not bound !missing-selector! AVMutableCaptionRegion::setDisplayAlignment: not bound -!missing-selector! AVMutableCaptionRegion::setEndPosition: not bound -!missing-selector! AVMutableCaptionRegion::setHeight: not bound -!missing-selector! AVMutableCaptionRegion::setPosition: not bound +!missing-selector! AVMutableCaptionRegion::setOrigin: not bound !missing-selector! AVMutableCaptionRegion::setScroll: not bound +!missing-selector! AVMutableCaptionRegion::setSize: not bound !missing-selector! AVMutableCaptionRegion::setWritingMode: not bound +!missing-selector! AVMutableCaptionRegion::size not bound !missing-selector! AVMutableCaptionRegion::writingMode not bound +!missing-selector! AVMutableComposition::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVMutableComposition::loadTracksWithMediaCharacteristic:completionHandler: not bound !missing-selector! AVMutableComposition::loadTracksWithMediaType:completionHandler: not bound -!missing-selector! AVMutableComposition::loadTrackWithTrackID:completionHandler: not bound +!missing-selector! AVMutableMovie::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVMutableMovie::loadTracksWithMediaCharacteristic:completionHandler: not bound !missing-selector! AVMutableMovie::loadTracksWithMediaType:completionHandler: not bound -!missing-selector! AVMutableMovie::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVMutableVideoComposition::setSourceSampleDataTrackIDs: not bound !missing-selector! AVMutableVideoComposition::sourceSampleDataTrackIDs not bound !missing-selector! AVMutableVideoCompositionInstruction::requiredSourceSampleDataTrackIDs not bound @@ -340,7 +343,6 @@ !missing-selector! AVVideoComposition::sourceSampleDataTrackIDs not bound !missing-selector! AVVideoCompositionInstruction::requiredSourceSampleDataTrackIDs not bound !missing-type! AVAggregateAssetDownloadTask not bound -!missing-type! AVAppleITTCaptionPosition not bound !missing-type! AVAssetDownloadConfiguration not bound !missing-type! AVAssetDownloadContentConfiguration not bound !missing-type! AVAssetDownloadStorageManagementPolicy not bound @@ -362,30 +364,21 @@ !missing-type! AVCaptionFormatConformer not bound !missing-type! AVCaptionGroup not bound !missing-type! AVCaptionGrouper not bound -!missing-type! AVCaptionLength not bound -!missing-type! AVCaptionPosition not bound !missing-type! AVCaptionRegion not bound !missing-type! AVCaptionRenderer not bound !missing-type! AVCaptionRendererScene not bound !missing-type! AVCaptionRuby not bound -!missing-type! AVCEA608CaptionPosition not bound !missing-type! AVCoordinatedPlaybackParticipant not bound !missing-type! AVCoordinatedPlaybackSuspension not bound !missing-type! AVDelegatingPlaybackCoordinator not bound !missing-type! AVDelegatingPlaybackCoordinatorBufferingCommand not bound !missing-type! AVDelegatingPlaybackCoordinatorPauseCommand not bound -!missing-type! AVDelegatingPlaybackCoordinatorPlaybackControlCommand not bound !missing-type! AVDelegatingPlaybackCoordinatorPlayCommand not bound +!missing-type! AVDelegatingPlaybackCoordinatorPlaybackControlCommand not bound !missing-type! AVDelegatingPlaybackCoordinatorSeekCommand not bound !missing-type! AVMutableAssetDownloadStorageManagementPolicy not bound !missing-type! AVMutableCaption not bound !missing-type! AVMutableCaptionRegion not bound !missing-type! AVPlaybackCoordinator not bound !missing-type! AVPlayerPlaybackCoordinator not bound -!missing-enum! AVCaptureMicrophoneMode not bound -!missing-enum! AVCaptureSystemUserInterface not bound -!missing-selector! +AVCaptureDevice::activeMicrophoneMode not bound -!missing-selector! +AVCaptureDevice::isPortraitEffectEnabled not bound -!missing-selector! +AVCaptureDevice::preferredMicrophoneMode not bound -!missing-selector! +AVCaptureDevice::showSystemUserInterface: not bound -!missing-selector! AVCaptureDevice::isPortraitEffectActive not bound +## appended from unclassified file diff --git a/tests/xtro-sharpie/macOS-AppKit.todo b/tests/xtro-sharpie/macOS-AppKit.todo index c4c9f5dc9b37..7e0216109f50 100644 --- a/tests/xtro-sharpie/macOS-AppKit.todo +++ b/tests/xtro-sharpie/macOS-AppKit.todo @@ -1,3 +1,4 @@ +!missing-enum! NSTextContentManagerEnumerationOptions not bound !missing-enum! NSTextLayoutFragmentEnumerationOptions not bound !missing-enum! NSTextLayoutFragmentState not bound !missing-enum! NSTextLayoutManagerSegmentOptions not bound @@ -6,7 +7,9 @@ !missing-enum! NSTextSelectionGranularity not bound !missing-enum! NSTextSelectionNavigationDestination not bound !missing-enum! NSTextSelectionNavigationDirection not bound +!missing-enum! NSTextSelectionNavigationLayoutOrientation not bound !missing-enum! NSTextSelectionNavigationModifier not bound +!missing-enum! NSTextSelectionNavigationWritingDirection not bound !missing-enum-value! NSAccessibilityCustomRotorType native value NSAccessibilityCustomRotorTypeAudiograph = 21 not bound !missing-field! NSApplicationProtectedDataDidBecomeAvailableNotification not bound !missing-field! NSApplicationProtectedDataWillBecomeUnavailableNotification not bound @@ -14,6 +17,7 @@ !missing-field! NSTextContentStorageUnsupportedAttributeAddedNotification not bound !missing-field! NSTextViewDidSwitchToNSLayoutManagerNotification not bound !missing-field! NSTextViewWillSwitchToNSLayoutManagerNotification not bound +!missing-protocol! NSTextAttachmentLayout not bound !missing-protocol! NSTextContentManagerDelegate not bound !missing-protocol! NSTextContentStorageDelegate not bound !missing-protocol! NSTextElementProvider not bound @@ -22,6 +26,8 @@ !missing-protocol! NSTextSelectionDataSource not bound !missing-protocol! NSTextStorageObserving not bound !missing-protocol! NSTextViewportLayoutControllerDelegate not bound +!missing-protocol-conformance! NSImageSymbolConfiguration should conform to NSSecureCoding +!missing-protocol-conformance! NSTextAttachment should conform to NSTextAttachmentLayout !missing-protocol-member! NSApplicationDelegate::application:handlerForIntent: not found !missing-protocol-member! NSApplicationDelegate::applicationProtectedDataDidBecomeAvailable: not found !missing-protocol-member! NSApplicationDelegate::applicationProtectedDataWillBecomeUnavailable: not found @@ -30,9 +36,16 @@ !missing-selector! +NSColor::systemCyanColor not bound !missing-selector! +NSColor::systemMintColor not bound !missing-selector! +NSDocument::allowedClassesForRestorableStateKeyPath: not bound +!missing-selector! +NSImageSymbolConfiguration::configurationPreferringMulticolor not bound +!missing-selector! +NSImageSymbolConfiguration::configurationWithHierarchicalColor: not bound +!missing-selector! +NSImageSymbolConfiguration::configurationWithPaletteColors: not bound !missing-selector! +NSResponder::allowedClassesForRestorableStateKeyPath: not bound +!missing-selector! +NSTextAttachment::registerTextAttachmentViewProviderClass:forFileType: not bound +!missing-selector! +NSTextAttachment::textAttachmentViewProviderClassForFileType: not bound !missing-selector! +NSTextLayoutManager::linkRenderingAttributes not bound !missing-selector! NSApplication::isProtectedDataAvailable not bound +!missing-selector! NSImage::symbolConfiguration not bound +!missing-selector! NSImageSymbolConfiguration::configurationByApplyingConfiguration: not bound !missing-selector! NSMenuItem::allowsAutomaticKeyEquivalentLocalization not bound !missing-selector! NSMenuItem::allowsAutomaticKeyEquivalentMirroring not bound !missing-selector! NSMenuItem::setAllowsAutomaticKeyEquivalentLocalization: not bound @@ -45,23 +58,46 @@ !missing-selector! NSScreenNSScreen::maximumFramesPerSecond not bound !missing-selector! NSScreenNSScreen::maximumRefreshInterval not bound !missing-selector! NSScreenNSScreen::minimumRefreshInterval not bound +!missing-selector! NSTextAttachment::allowsTextAttachmentView not bound +!missing-selector! NSTextAttachment::lineLayoutPadding not bound +!missing-selector! NSTextAttachment::setAllowsTextAttachmentView: not bound +!missing-selector! NSTextAttachment::setLineLayoutPadding: not bound +!missing-selector! NSTextAttachment::usesTextAttachmentView not bound +!missing-selector! NSTextAttachmentViewProvider::attachmentBoundsForAttributes:location:textContainer:proposedLineFragment:position: not bound +!missing-selector! NSTextAttachmentViewProvider::initWithTextAttachment:parentView:textLayoutManager:location: not bound +!missing-selector! NSTextAttachmentViewProvider::loadView not bound +!missing-selector! NSTextAttachmentViewProvider::location not bound +!missing-selector! NSTextAttachmentViewProvider::setTracksTextAttachmentViewBounds: not bound +!missing-selector! NSTextAttachmentViewProvider::setView: not bound +!missing-selector! NSTextAttachmentViewProvider::textAttachment not bound +!missing-selector! NSTextAttachmentViewProvider::textLayoutManager not bound +!missing-selector! NSTextAttachmentViewProvider::tracksTextAttachmentViewBounds not bound +!missing-selector! NSTextAttachmentViewProvider::view not bound !missing-selector! NSTextContainer::textLayoutManager not bound !missing-selector! NSTextContentManager::addTextLayoutManager: not bound +!missing-selector! NSTextContentManager::automaticallySynchronizesTextLayoutManagers not bound +!missing-selector! NSTextContentManager::automaticallySynchronizesToBackingStore not bound !missing-selector! NSTextContentManager::delegate not bound !missing-selector! NSTextContentManager::hasEditingTransaction not bound !missing-selector! NSTextContentManager::init not bound !missing-selector! NSTextContentManager::initWithCoder: not bound +!missing-selector! NSTextContentManager::performEditingTransactionUsingBlock: not bound !missing-selector! NSTextContentManager::primaryTextLayoutManager not bound !missing-selector! NSTextContentManager::recordEditActionInRange:newTextRange: not bound !missing-selector! NSTextContentManager::removeTextLayoutManager: not bound +!missing-selector! NSTextContentManager::setAutomaticallySynchronizesTextLayoutManagers: not bound +!missing-selector! NSTextContentManager::setAutomaticallySynchronizesToBackingStore: not bound !missing-selector! NSTextContentManager::setDelegate: not bound !missing-selector! NSTextContentManager::setPrimaryTextLayoutManager: not bound !missing-selector! NSTextContentManager::synchronizeTextLayoutManagers: not bound !missing-selector! NSTextContentManager::textElementsForRange: not bound !missing-selector! NSTextContentManager::textLayoutManagers not bound +!missing-selector! NSTextContentStorage::adjustedRangeFromRange:forEditingTextSelection: not bound !missing-selector! NSTextContentStorage::attributedString not bound !missing-selector! NSTextContentStorage::attributedStringForTextElement: not bound !missing-selector! NSTextContentStorage::delegate not bound +!missing-selector! NSTextContentStorage::locationFromLocation:withOffset: not bound +!missing-selector! NSTextContentStorage::offsetFromLocation:toLocation: not bound !missing-selector! NSTextContentStorage::setAttributedString: not bound !missing-selector! NSTextContentStorage::setDelegate: not bound !missing-selector! NSTextContentStorage::textElementForAttributedString: not bound @@ -70,12 +106,14 @@ !missing-selector! NSTextElement::setElementRange: not bound !missing-selector! NSTextElement::setTextContentManager: not bound !missing-selector! NSTextElement::textContentManager not bound +!missing-selector! NSTextLayoutFragment::bottomMargin not bound !missing-selector! NSTextLayoutFragment::drawAtPoint:inContext: not bound !missing-selector! NSTextLayoutFragment::initWithCoder: not bound !missing-selector! NSTextLayoutFragment::initWithTextElement:range: not bound !missing-selector! NSTextLayoutFragment::invalidateLayout not bound !missing-selector! NSTextLayoutFragment::layoutFragmentFrame not bound !missing-selector! NSTextLayoutFragment::layoutQueue not bound +!missing-selector! NSTextLayoutFragment::leadingPadding not bound !missing-selector! NSTextLayoutFragment::rangeInElement not bound !missing-selector! NSTextLayoutFragment::renderingSurfaceBounds not bound !missing-selector! NSTextLayoutFragment::setLayoutQueue: not bound @@ -83,6 +121,8 @@ !missing-selector! NSTextLayoutFragment::textElement not bound !missing-selector! NSTextLayoutFragment::textLayoutManager not bound !missing-selector! NSTextLayoutFragment::textLineFragments not bound +!missing-selector! NSTextLayoutFragment::topMargin not bound +!missing-selector! NSTextLayoutFragment::trailingPadding not bound !missing-selector! NSTextLayoutManager::addRenderingAttribute:value:forTextRange: not bound !missing-selector! NSTextLayoutManager::delegate not bound !missing-selector! NSTextLayoutManager::ensureLayoutForBounds: not bound @@ -123,8 +163,10 @@ !missing-selector! NSTextLayoutManager::usesFontLeading not bound !missing-selector! NSTextLayoutManager::usesHyphenation not bound !missing-selector! NSTextLineFragment::attributedString not bound +!missing-selector! NSTextLineFragment::characterIndexForPoint: not bound !missing-selector! NSTextLineFragment::characterRange not bound !missing-selector! NSTextLineFragment::drawAtPoint:inContext: not bound +!missing-selector! NSTextLineFragment::fractionOfDistanceThroughGlyphForPoint: not bound !missing-selector! NSTextLineFragment::glyphOrigin not bound !missing-selector! NSTextLineFragment::initWithAttributedString:range: not bound !missing-selector! NSTextLineFragment::initWithCoder: not bound @@ -168,6 +210,7 @@ !missing-selector! NSTextSelectionNavigation::destinationSelectionForTextSelection:direction:destination:extending:confined: not bound !missing-selector! NSTextSelectionNavigation::flushLayoutCache not bound !missing-selector! NSTextSelectionNavigation::initWithDataSource: not bound +!missing-selector! NSTextSelectionNavigation::resolvedInsertionLocationForTextSelection:writingDirection: not bound !missing-selector! NSTextSelectionNavigation::rotatesCoordinateSystemForLayoutOrientation not bound !missing-selector! NSTextSelectionNavigation::setAllowsNonContiguousRanges: not bound !missing-selector! NSTextSelectionNavigation::setRotatesCoordinateSystemForLayoutOrientation: not bound @@ -179,21 +222,24 @@ !missing-selector! NSTextStorage::textStorageObserver not bound !missing-selector! NSTextView::textContentStorage not bound !missing-selector! NSTextView::textLayoutManager not bound +!missing-selector! NSTextViewportLayoutController::adjustViewportByVerticalOffset: not bound !missing-selector! NSTextViewportLayoutController::delegate not bound !missing-selector! NSTextViewportLayoutController::initWithTextLayoutManager: not bound !missing-selector! NSTextViewportLayoutController::layoutViewport not bound +!missing-selector! NSTextViewportLayoutController::relocateViewportToTextLocation: not bound !missing-selector! NSTextViewportLayoutController::setDelegate: not bound !missing-selector! NSTextViewportLayoutController::textLayoutManager not bound !missing-selector! NSTextViewportLayoutController::viewportBounds not bound !missing-selector! NSTextViewportLayoutController::viewportRange not bound -!missing-selector! NSWorkspace::setDefaultApplicationAtURL:toOpenContentType:completionHandler: not bound -!missing-selector! NSWorkspace::setDefaultApplicationAtURL:toOpenContentTypeOfFileAtURL:completionHandler: not bound -!missing-selector! NSWorkspace::setDefaultApplicationAtURL:toOpenFileAtURL:completionHandler: not bound -!missing-selector! NSWorkspace::setDefaultApplicationAtURL:toOpenURLsWithScheme:completionHandler: not bound !missing-selector! NSWorkspace::URLForApplicationToOpenContentType: not bound !missing-selector! NSWorkspace::URLsForApplicationsToOpenContentType: not bound !missing-selector! NSWorkspace::URLsForApplicationsToOpenURL: not bound !missing-selector! NSWorkspace::URLsForApplicationsWithBundleIdentifier: not bound +!missing-selector! NSWorkspace::setDefaultApplicationAtURL:toOpenContentType:completionHandler: not bound +!missing-selector! NSWorkspace::setDefaultApplicationAtURL:toOpenContentTypeOfFileAtURL:completionHandler: not bound +!missing-selector! NSWorkspace::setDefaultApplicationAtURL:toOpenFileAtURL:completionHandler: not bound +!missing-selector! NSWorkspace::setDefaultApplicationAtURL:toOpenURLsWithScheme:completionHandler: not bound +!missing-type! NSTextAttachmentViewProvider not bound !missing-type! NSTextContentManager not bound !missing-type! NSTextContentStorage not bound !missing-type! NSTextElement not bound @@ -205,29 +251,3 @@ !missing-type! NSTextSelection not bound !missing-type! NSTextSelectionNavigation not bound !missing-type! NSTextViewportLayoutController not bound -!missing-enum! NSTextContentManagerEnumerationOptions not bound -!missing-enum! NSTextSelectionNavigationLayoutOrientation not bound -!missing-enum! NSTextSelectionNavigationWritingDirection not bound -!missing-protocol-conformance! NSImageSymbolConfiguration should conform to NSSecureCoding -!missing-selector! +NSImageSymbolConfiguration::configurationPreferringMulticolor not bound -!missing-selector! +NSImageSymbolConfiguration::configurationWithHierarchicalColor: not bound -!missing-selector! +NSImageSymbolConfiguration::configurationWithPaletteColors: not bound -!missing-selector! NSImage::symbolConfiguration not bound -!missing-selector! NSImageSymbolConfiguration::configurationByApplyingConfiguration: not bound -!missing-selector! NSTextContentManager::automaticallySynchronizesTextLayoutManagers not bound -!missing-selector! NSTextContentManager::automaticallySynchronizesToBackingStore not bound -!missing-selector! NSTextContentManager::performEditingTransactionUsingBlock: not bound -!missing-selector! NSTextContentManager::setAutomaticallySynchronizesTextLayoutManagers: not bound -!missing-selector! NSTextContentManager::setAutomaticallySynchronizesToBackingStore: not bound -!missing-selector! NSTextContentStorage::adjustedRangeFromRange:forEditingTextSelection: not bound -!missing-selector! NSTextContentStorage::locationFromLocation:withOffset: not bound -!missing-selector! NSTextContentStorage::offsetFromLocation:toLocation: not bound -!missing-selector! NSTextLayoutFragment::bottomMargin not bound -!missing-selector! NSTextLayoutFragment::leadingPadding not bound -!missing-selector! NSTextLayoutFragment::topMargin not bound -!missing-selector! NSTextLayoutFragment::trailingPadding not bound -!missing-selector! NSTextLineFragment::characterIndexForPoint: not bound -!missing-selector! NSTextLineFragment::fractionOfDistanceThroughGlyphForPoint: not bound -!missing-selector! NSTextSelectionNavigation::resolvedInsertionLocationForTextSelection:writingDirection: not bound -!missing-selector! NSTextViewportLayoutController::adjustViewportByVerticalOffset: not bound -!missing-selector! NSTextViewportLayoutController::relocateViewportToTextLocation: not bound diff --git a/tests/xtro-sharpie/macOS-CHIP.todo b/tests/xtro-sharpie/macOS-CHIP.todo new file mode 100644 index 000000000000..c8fb5b913d99 --- /dev/null +++ b/tests/xtro-sharpie/macOS-CHIP.todo @@ -0,0 +1,152 @@ +!missing-enum! CHIPCommissioningFlow not bound +!missing-null-allowed! 'Chip.ChipOptionalQRCodeInfo[] Chip.ChipSetupPayload::GetAllOptionalVendorData(Foundation.NSError&)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String Chip.ChipDevice::OpenPairingWindow(System.nuint,System.nuint,System.nuint,Foundation.NSError&)' is missing an [NullAllowed] on return type +!missing-selector! CHIPAccountLogin::getSetupPIN:responseHandler: not bound +!missing-selector! CHIPAccountLogin::login:setupPIN:responseHandler: not bound +!missing-selector! CHIPAccountLogin::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPApplicationLauncher::launchApp:catalogVendorId:applicationId:responseHandler: not bound +!missing-selector! CHIPApplicationLauncher::readAttributeApplicationLauncherListWithResponseHandler: not bound +!missing-selector! CHIPApplicationLauncher::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPAudioOutput::readAttributeAudioOutputListWithResponseHandler: not bound +!missing-selector! CHIPAudioOutput::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPAudioOutput::renameOutput:name:responseHandler: not bound +!missing-selector! CHIPAudioOutput::selectOutput:responseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::configureAttributePresentValueWithMinInterval:maxInterval:responseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::configureAttributeStatusFlagsWithMinInterval:maxInterval:responseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::readAttributeOutOfServiceWithResponseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::readAttributePresentValueWithResponseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::readAttributeStatusFlagsWithResponseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::reportAttributePresentValueWithResponseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::reportAttributeStatusFlagsWithResponseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::writeAttributeOutOfServiceWithValue:responseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::writeAttributePresentValueWithValue:responseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeHardwareVersionStringWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeHardwareVersionWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeManufacturingDateWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributePartNumberWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeProductLabelWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeProductNameWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeProductURLWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeReachableWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeSerialNumberWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeSoftwareVersionStringWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeSoftwareVersionWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeUserLabelWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeVendorIDWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeVendorNameWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::writeAttributeUserLabelWithValue:responseHandler: not bound +!missing-selector! CHIPContentLaunch::launchContent:data:responseHandler: not bound +!missing-selector! CHIPContentLaunch::launchURL:displayString:responseHandler: not bound +!missing-selector! CHIPContentLaunch::readAttributeAcceptsHeaderListWithResponseHandler: not bound +!missing-selector! CHIPContentLaunch::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPContentLaunch::readAttributeSupportedStreamingTypesWithResponseHandler: not bound +!missing-selector! CHIPEthernetNetworkDiagnostics::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPEthernetNetworkDiagnostics::readAttributeCollisionCountWithResponseHandler: not bound +!missing-selector! CHIPEthernetNetworkDiagnostics::readAttributeOverrunCountWithResponseHandler: not bound +!missing-selector! CHIPEthernetNetworkDiagnostics::readAttributePacketRxCountWithResponseHandler: not bound +!missing-selector! CHIPEthernetNetworkDiagnostics::readAttributePacketTxCountWithResponseHandler: not bound +!missing-selector! CHIPEthernetNetworkDiagnostics::readAttributeTxErrCountWithResponseHandler: not bound +!missing-selector! CHIPEthernetNetworkDiagnostics::resetCounts: not bound +!missing-selector! CHIPFixedLabel::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPFixedLabel::readAttributeLabelListWithResponseHandler: not bound +!missing-selector! CHIPGeneralDiagnostics::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPGeneralDiagnostics::readAttributeNetworkInterfacesWithResponseHandler: not bound +!missing-selector! CHIPGeneralDiagnostics::readAttributeRebootCountWithResponseHandler: not bound +!missing-selector! CHIPKeypadInput::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPKeypadInput::sendKey:responseHandler: not bound +!missing-selector! CHIPMediaInput::hideInputStatus: not bound +!missing-selector! CHIPMediaInput::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPMediaInput::readAttributeMediaInputListWithResponseHandler: not bound +!missing-selector! CHIPMediaInput::renameInput:name:responseHandler: not bound +!missing-selector! CHIPMediaInput::selectInput:responseHandler: not bound +!missing-selector! CHIPMediaInput::showInputStatus: not bound +!missing-selector! CHIPMediaPlayback::mediaFastForward: not bound +!missing-selector! CHIPMediaPlayback::mediaNext: not bound +!missing-selector! CHIPMediaPlayback::mediaPause: not bound +!missing-selector! CHIPMediaPlayback::mediaPlay: not bound +!missing-selector! CHIPMediaPlayback::mediaPrevious: not bound +!missing-selector! CHIPMediaPlayback::mediaRewind: not bound +!missing-selector! CHIPMediaPlayback::mediaSkipBackward:responseHandler: not bound +!missing-selector! CHIPMediaPlayback::mediaSkipForward:responseHandler: not bound +!missing-selector! CHIPMediaPlayback::mediaSkipSeek:responseHandler: not bound +!missing-selector! CHIPMediaPlayback::mediaStartOver: not bound +!missing-selector! CHIPMediaPlayback::mediaStop: not bound +!missing-selector! CHIPMediaPlayback::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPOperationalCredentials::addOpCert:iCACertificate:iPKValue:caseAdminNode:adminVendorId:responseHandler: not bound +!missing-selector! CHIPOperationalCredentials::opCSRRequest:responseHandler: not bound +!missing-selector! CHIPRelativeHumidityMeasurement::configureAttributeMeasuredValueWithMinInterval:maxInterval:change:responseHandler: not bound +!missing-selector! CHIPRelativeHumidityMeasurement::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPRelativeHumidityMeasurement::readAttributeMaxMeasuredValueWithResponseHandler: not bound +!missing-selector! CHIPRelativeHumidityMeasurement::readAttributeMeasuredValueWithResponseHandler: not bound +!missing-selector! CHIPRelativeHumidityMeasurement::readAttributeMinMeasuredValueWithResponseHandler: not bound +!missing-selector! CHIPRelativeHumidityMeasurement::reportAttributeMeasuredValueWithResponseHandler: not bound +!missing-selector! CHIPSetupPayload::commissioningFlow not bound +!missing-selector! CHIPSetupPayload::setCommissioningFlow: not bound +!missing-selector! CHIPSoftwareDiagnostics::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPSoftwareDiagnostics::readAttributeCurrentHeapHighWatermarkWithResponseHandler: not bound +!missing-selector! CHIPSoftwareDiagnostics::resetWatermarks: not bound +!missing-selector! CHIPTargetNavigator::navigateTarget:data:responseHandler: not bound +!missing-selector! CHIPTargetNavigator::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPTargetNavigator::readAttributeTargetNavigatorListWithResponseHandler: not bound +!missing-selector! CHIPTestCluster::readAttributeListOctetStringWithResponseHandler: not bound +!missing-selector! CHIPTestCluster::readAttributeListStructOctetStringWithResponseHandler: not bound +!missing-selector! CHIPTestCluster::testUnknownCommand: not bound +!missing-selector! CHIPTrustedRootCertificates::addTrustedRootCertificate:responseHandler: not bound +!missing-selector! CHIPTrustedRootCertificates::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPTrustedRootCertificates::removeTrustedRootCertificate:responseHandler: not bound +!missing-selector! CHIPTvChannel::changeChannel:responseHandler: not bound +!missing-selector! CHIPTvChannel::changeChannelByNumber:minorNumber:responseHandler: not bound +!missing-selector! CHIPTvChannel::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPTvChannel::readAttributeCurrentTvChannelWithResponseHandler: not bound +!missing-selector! CHIPTvChannel::readAttributeTvChannelLineupWithResponseHandler: not bound +!missing-selector! CHIPTvChannel::readAttributeTvChannelListWithResponseHandler: not bound +!missing-selector! CHIPTvChannel::skipChannel:responseHandler: not bound +!missing-selector! CHIPWakeOnLan::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPWakeOnLan::readAttributeWakeOnLanMacAddressWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::configureAttributeConfigStatusWithMinInterval:maxInterval:responseHandler: not bound +!missing-selector! CHIPWindowCovering::configureAttributeCurrentPositionLiftWithMinInterval:maxInterval:change:responseHandler: not bound +!missing-selector! CHIPWindowCovering::configureAttributeCurrentPositionTiltWithMinInterval:maxInterval:change:responseHandler: not bound +!missing-selector! CHIPWindowCovering::configureAttributeWindowCoveringTypeWithMinInterval:maxInterval:responseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeConfigStatusWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeCurrentPositionLiftWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeCurrentPositionTiltWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeInstalledClosedLimitLiftWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeInstalledClosedLimitTiltWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeInstalledOpenLimitLiftWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeInstalledOpenLimitTiltWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeModeWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeWindowCoveringTypeWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::reportAttributeConfigStatusWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::reportAttributeCurrentPositionLiftWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::reportAttributeCurrentPositionTiltWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::reportAttributeWindowCoveringTypeWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::windowCoveringDownClose: not bound +!missing-selector! CHIPWindowCovering::windowCoveringGoToLiftPercentage:responseHandler: not bound +!missing-selector! CHIPWindowCovering::windowCoveringGoToLiftValue:responseHandler: not bound +!missing-selector! CHIPWindowCovering::windowCoveringGoToTiltPercentage:responseHandler: not bound +!missing-selector! CHIPWindowCovering::windowCoveringGoToTiltValue:responseHandler: not bound +!missing-selector! CHIPWindowCovering::windowCoveringStop: not bound +!missing-selector! CHIPWindowCovering::windowCoveringUpOpen: not bound +!missing-selector! CHIPWindowCovering::writeAttributeModeWithValue:responseHandler: not bound +!missing-type! CHIPAccountLogin not bound +!missing-type! CHIPApplicationLauncher not bound +!missing-type! CHIPAudioOutput not bound +!missing-type! CHIPBinaryInputBasic not bound +!missing-type! CHIPBridgedDeviceBasic not bound +!missing-type! CHIPContentLaunch not bound +!missing-type! CHIPEthernetNetworkDiagnostics not bound +!missing-type! CHIPFixedLabel not bound +!missing-type! CHIPGeneralDiagnostics not bound +!missing-type! CHIPKeypadInput not bound +!missing-type! CHIPMediaInput not bound +!missing-type! CHIPMediaPlayback not bound +!missing-type! CHIPRelativeHumidityMeasurement not bound +!missing-type! CHIPSoftwareDiagnostics not bound +!missing-type! CHIPTargetNavigator not bound +!missing-type! CHIPTrustedRootCertificates not bound +!missing-type! CHIPTvChannel not bound +!missing-type! CHIPWakeOnLan not bound +!missing-type! CHIPWindowCovering not bound diff --git a/tests/xtro-sharpie/macOS-CoreImage.todo b/tests/xtro-sharpie/macOS-CoreImage.todo index 1ff94077887c..24d6b7c30b43 100644 --- a/tests/xtro-sharpie/macOS-CoreImage.todo +++ b/tests/xtro-sharpie/macOS-CoreImage.todo @@ -15,6 +15,7 @@ !missing-selector! +CIFilter::linearLightBlendModeFilter not bound !missing-selector! +CIFilter::personSegmentationFilter not bound !missing-selector! +CIFilter::vividLightBlendModeFilter not bound +!missing-selector! +CIKernel::kernelsWithMetalString:error: not bound !missing-selector! +CIRAWFilter::filterWithCVPixelBuffer:properties: not bound !missing-selector! +CIRAWFilter::filterWithImageData:identifierHint: not bound !missing-selector! +CIRAWFilter::filterWithImageURL: not bound diff --git a/tests/xtro-sharpie/macOS-CoreMIDI.todo b/tests/xtro-sharpie/macOS-CoreMIDI.todo index 976057fa5cb9..0fd7ed3126b8 100644 --- a/tests/xtro-sharpie/macOS-CoreMIDI.todo +++ b/tests/xtro-sharpie/macOS-CoreMIDI.todo @@ -1 +1,8 @@ +!missing-enum! MIDINoteAttributeType not bound +!missing-enum! MIDIPerNoteManagementOptions not bound +!missing-enum! MIDIProgramChangeOptions not bound +!missing-enum! MIDIUtilityStatus not bound !missing-enum-value! MidiMessageType native value kMIDIMessageTypeUnknownF = 15 not bound +!missing-enum-value! MidiSysExStatus native value kMIDISysExMixedDataSetHeader = 8 not bound +!missing-enum-value! MidiSysExStatus native value kMIDISysExMixedDataSetPayload = 9 not bound +!missing-pinvoke! MIDIEventListForEachEvent is not bound diff --git a/tests/xtro-sharpie/macOS-GameController.todo b/tests/xtro-sharpie/macOS-GameController.todo new file mode 100644 index 000000000000..b4b4b4500e69 --- /dev/null +++ b/tests/xtro-sharpie/macOS-GameController.todo @@ -0,0 +1,5 @@ +!missing-field! GCInputDirectionalCenterButton not bound +!missing-field! GCInputDirectionalTouchSurfaceButton not bound +!missing-field! GCInputMicroGamepadButtonA not bound +!missing-field! GCInputMicroGamepadButtonX not bound +!missing-field! GCInputMicroGamepadDpad not bound diff --git a/tests/xtro-sharpie/macOS-ImageIO.todo b/tests/xtro-sharpie/macOS-ImageIO.todo new file mode 100644 index 000000000000..b5a8ec1f4414 --- /dev/null +++ b/tests/xtro-sharpie/macOS-ImageIO.todo @@ -0,0 +1 @@ +!missing-field! kCGImagePropertyPNGPixelsAspectRatio not bound diff --git a/tests/xtro-sharpie/macOS-LocalAuthentication.todo b/tests/xtro-sharpie/macOS-LocalAuthentication.todo index 7c144e0ee637..a7c9eabd7056 100644 --- a/tests/xtro-sharpie/macOS-LocalAuthentication.todo +++ b/tests/xtro-sharpie/macOS-LocalAuthentication.todo @@ -1,2 +1,3 @@ +!missing-enum-value! LAStatus native value LAErrorInvalidDimensions = -14 not bound !missing-selector! LAContext::maxBiometryFailures not bound !missing-selector! LAContext::setMaxBiometryFailures: not bound diff --git a/tests/xtro-sharpie/macOS-LocalAuthenticationEmbeddedUI.todo b/tests/xtro-sharpie/macOS-LocalAuthenticationEmbeddedUI.todo index 0109b523f353..c1acdf86f235 100644 --- a/tests/xtro-sharpie/macOS-LocalAuthenticationEmbeddedUI.todo +++ b/tests/xtro-sharpie/macOS-LocalAuthenticationEmbeddedUI.todo @@ -1,3 +1,5 @@ !missing-selector! LAAuthenticationView::context not bound +!missing-selector! LAAuthenticationView::controlSize not bound !missing-selector! LAAuthenticationView::initWithContext: not bound +!missing-selector! LAAuthenticationView::initWithContext:controlSize: not bound !missing-type! LAAuthenticationView not bound diff --git a/tests/xtro-sharpie/macOS-Metal.todo b/tests/xtro-sharpie/macOS-Metal.todo index 379e36970159..e748f9092316 100644 --- a/tests/xtro-sharpie/macOS-Metal.todo +++ b/tests/xtro-sharpie/macOS-Metal.todo @@ -10,14 +10,19 @@ !missing-enum-value! MTLDataType native value MTLDataTypeULong2 = 86 not bound !missing-enum-value! MTLDataType native value MTLDataTypeULong3 = 87 not bound !missing-enum-value! MTLDataType native value MTLDataTypeULong4 = 88 not bound +!missing-enum-value! MTLIntersectionFunctionSignature native value MTLIntersectionFunctionSignatureExtendedLimits = 32 not bound +!missing-enum-value! MTLIntersectionFunctionSignature native value MTLIntersectionFunctionSignatureInstanceMotion = 8 not bound +!missing-enum-value! MTLIntersectionFunctionSignature native value MTLIntersectionFunctionSignaturePrimitiveMotion = 16 not bound !missing-enum-value! MTLLanguageVersion native value MTLLanguageVersion2_4 = 131076 not bound !missing-enum-value! MTLRenderStages native value MTLRenderStageTile = 4 not bound !missing-protocol! MTLFunctionStitchingAttribute not bound !missing-protocol! MTLFunctionStitchingNode not bound !missing-protocol-member! MTLAccelerationStructureCommandEncoder::writeCompactedAccelerationStructureSize:toBuffer:offset:sizeDataType: not found !missing-protocol-member! MTLBinaryArchive::addFunctionWithDescriptor:library:error: not found -!missing-protocol-member! MTLDevice::newLibraryWithDescriptor:error: not found +!missing-protocol-member! MTLDevice::newLibraryWithStitchedDescriptor:completionHandler: not found +!missing-protocol-member! MTLDevice::newLibraryWithStitchedDescriptor:error: not found !missing-protocol-member! MTLDevice::supportsFunctionPointersFromRender not found +!missing-protocol-member! MTLDevice::supportsPrimitiveMotionBlur not found !missing-protocol-member! MTLDevice::supportsRaytracingFromRender not found !missing-protocol-member! MTLDevice::supportsRenderDynamicLibraries not found !missing-protocol-member! MTLRenderCommandEncoder::setFragmentAccelerationStructure:atBufferIndex: not found @@ -154,8 +159,3 @@ !missing-type! MTLMotionKeyframeData not bound !missing-type! MTLRenderPipelineFunctionsDescriptor not bound !missing-type! MTLStitchedLibraryDescriptor not bound -!missing-enum-value! MTLIntersectionFunctionSignature native value MTLIntersectionFunctionSignatureExtendedLimits = 32 not bound -!missing-enum-value! MTLIntersectionFunctionSignature native value MTLIntersectionFunctionSignatureInstanceMotion = 8 not bound -!missing-enum-value! MTLIntersectionFunctionSignature native value MTLIntersectionFunctionSignaturePrimitiveMotion = 16 not bound -!missing-protocol-member! MTLDevice::newLibraryWithDescriptor:completionHandler: not found -!missing-protocol-member! MTLDevice::supportsPrimitiveMotionBlur not found diff --git a/tests/xtro-sharpie/macOS-MetalPerformanceShadersGraph.todo b/tests/xtro-sharpie/macOS-MetalPerformanceShadersGraph.todo index c24f6b1a9f2b..fcb5c2c44c2c 100644 --- a/tests/xtro-sharpie/macOS-MetalPerformanceShadersGraph.todo +++ b/tests/xtro-sharpie/macOS-MetalPerformanceShadersGraph.todo @@ -3,45 +3,70 @@ !missing-enum! MPSGraphOptions not bound !missing-enum! MPSGraphPaddingMode not bound !missing-enum! MPSGraphPaddingStyle not bound +!missing-enum! MPSGraphReductionMode not bound !missing-enum! MPSGraphResizeMode not bound +!missing-enum! MPSGraphScatterMode not bound +!missing-enum! MPSGraphSparseStorageType not bound !missing-enum! MPSGraphTensorNamedDataLayout not bound !missing-selector! +MPSGraphConvolution2DOpDescriptor::descriptorWithStrideInX:strideInY:dilationRateInX:dilationRateInY:groups:paddingLeft:paddingRight:paddingTop:paddingBottom:paddingStyle:dataLayout:weightsLayout: not bound !missing-selector! +MPSGraphConvolution2DOpDescriptor::descriptorWithStrideInX:strideInY:dilationRateInX:dilationRateInY:groups:paddingStyle:dataLayout:weightsLayout: not bound +!missing-selector! +MPSGraphCreateSparseOpDescriptor::descriptorWithStorageType:dataType: not bound !missing-selector! +MPSGraphDepthwiseConvolution2DOpDescriptor::descriptorWithDataLayout:weightsLayout: not bound !missing-selector! +MPSGraphDepthwiseConvolution2DOpDescriptor::descriptorWithStrideInX:strideInY:dilationRateInX:dilationRateInY:paddingLeft:paddingRight:paddingTop:paddingBottom:paddingStyle:dataLayout:weightsLayout: not bound +!missing-selector! +MPSGraphDepthwiseConvolution3DOpDescriptor::descriptorWithPaddingStyle: not bound +!missing-selector! +MPSGraphDepthwiseConvolution3DOpDescriptor::descriptorWithStrides:dilationRates:paddingValues:paddingStyle: not bound !missing-selector! +MPSGraphDevice::deviceWithMTLDevice: not bound !missing-selector! +MPSGraphPooling2DOpDescriptor::descriptorWithKernelWidth:kernelHeight:strideInX:strideInY:dilationRateInX:dilationRateInY:paddingLeft:paddingRight:paddingTop:paddingBottom:paddingStyle:dataLayout: not bound !missing-selector! +MPSGraphPooling2DOpDescriptor::descriptorWithKernelWidth:kernelHeight:strideInX:strideInY:paddingStyle:dataLayout: not bound +!missing-selector! +MPSGraphPooling4DOpDescriptor::descriptorWithKernelSizes:paddingStyle: not bound +!missing-selector! +MPSGraphPooling4DOpDescriptor::descriptorWithKernelSizes:strides:dilationRates:paddingValues:paddingStyle: not bound +!missing-selector! +MPSGraphStencilOpDescriptor::descriptorWithExplicitPadding: not bound +!missing-selector! +MPSGraphStencilOpDescriptor::descriptorWithOffsets:explicitPadding: not bound +!missing-selector! +MPSGraphStencilOpDescriptor::descriptorWithPaddingStyle: not bound +!missing-selector! +MPSGraphStencilOpDescriptor::descriptorWithReductionMode:offsets:strides:dilationRates:explicitPadding:boundaryMode:paddingStyle:paddingConstant: not bound +!missing-selector! MPSGraph::L2NormPooling4DGradientWithGradientTensor:sourceTensor:descriptor:name: not bound +!missing-selector! MPSGraph::L2NormPooling4DWithSourceTensor:descriptor:name: not bound !missing-selector! MPSGraph::absoluteWithTensor:name: not bound -!missing-selector! MPSGraph::acoshWithTensor:name: not bound !missing-selector! MPSGraph::acosWithTensor:name: not bound +!missing-selector! MPSGraph::acoshWithTensor:name: not bound !missing-selector! MPSGraph::additionWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::applyStochasticGradientDescentWithLearningRateTensor:variable:gradientTensor:name: not bound -!missing-selector! MPSGraph::asinhWithTensor:name: not bound !missing-selector! MPSGraph::asinWithTensor:name: not bound +!missing-selector! MPSGraph::asinhWithTensor:name: not bound !missing-selector! MPSGraph::assignVariable:withValueOfTensor:name: not bound !missing-selector! MPSGraph::atan2WithPrimaryTensor:secondaryTensor:name: not bound -!missing-selector! MPSGraph::atanhWithTensor:name: not bound !missing-selector! MPSGraph::atanWithTensor:name: not bound +!missing-selector! MPSGraph::atanhWithTensor:name: not bound !missing-selector! MPSGraph::avgPooling2DGradientWithGradientTensor:sourceTensor:descriptor:name: not bound !missing-selector! MPSGraph::avgPooling2DWithSourceTensor:descriptor:name: not bound +!missing-selector! MPSGraph::avgPooling4DGradientWithGradientTensor:sourceTensor:descriptor:name: not bound +!missing-selector! MPSGraph::avgPooling4DWithSourceTensor:descriptor:name: not bound !missing-selector! MPSGraph::ceilWithTensor:name: not bound !missing-selector! MPSGraph::clampWithTensor:minValueTensor:maxValueTensor:name: not bound +!missing-selector! MPSGraph::compileWithDevice:feeds:targetTensors:targetOperations:compilationDescriptor: not bound !missing-selector! MPSGraph::concatTensor:withTensor:dimension:name: not bound +!missing-selector! MPSGraph::concatTensors:dimension:interleave:name: not bound !missing-selector! MPSGraph::concatTensors:dimension:name: not bound !missing-selector! MPSGraph::constantWithData:shape:dataType: not bound +!missing-selector! MPSGraph::constantWithScalar:dataType: not bound !missing-selector! MPSGraph::constantWithScalar:shape:dataType: not bound +!missing-selector! MPSGraph::controlDependencyWithOperations:dependentBlock:name: not bound !missing-selector! MPSGraph::convolution2DDataGradientWithIncomingGradientTensor:weightsTensor:outputShape:forwardConvolutionDescriptor:name: not bound !missing-selector! MPSGraph::convolution2DWeightsGradientWithIncomingGradientTensor:sourceTensor:outputShape:forwardConvolutionDescriptor:name: not bound !missing-selector! MPSGraph::convolution2DWithSourceTensor:weightsTensor:descriptor:name: not bound !missing-selector! MPSGraph::convolutionTranspose2DDataGradientWithIncomingGradientTensor:weightsTensor:outputShape:forwardConvolutionDescriptor:name: not bound !missing-selector! MPSGraph::convolutionTranspose2DWeightsGradientWithIncomingGradientTensor:sourceTensor:outputShape:forwardConvolutionDescriptor:name: not bound !missing-selector! MPSGraph::convolutionTranspose2DWithSourceTensor:weightsTensor:outputShape:descriptor:name: not bound -!missing-selector! MPSGraph::coshWithTensor:name: not bound !missing-selector! MPSGraph::cosWithTensor:name: not bound +!missing-selector! MPSGraph::coshWithTensor:name: not bound +!missing-selector! MPSGraph::depthToSpace2DTensor:widthAxis:heightAxis:depthAxis:blockSize:usePixelShuffleOrder:name: not bound +!missing-selector! MPSGraph::depthToSpace2DTensor:widthAxisTensor:heightAxisTensor:depthAxisTensor:blockSize:usePixelShuffleOrder:name: not bound !missing-selector! MPSGraph::depthwiseConvolution2DDataGradientWithIncomingGradientTensor:weightsTensor:outputShape:descriptor:name: not bound !missing-selector! MPSGraph::depthwiseConvolution2DWeightsGradientWithIncomingGradientTensor:sourceTensor:outputShape:descriptor:name: not bound !missing-selector! MPSGraph::depthwiseConvolution2DWithSourceTensor:weightsTensor:descriptor:name: not bound +!missing-selector! MPSGraph::depthwiseConvolution3DDataGradientWithIncomingGradientTensor:weightsTensor:outputShape:descriptor:name: not bound +!missing-selector! MPSGraph::depthwiseConvolution3DWeightsGradientWithIncomingGradientTensor:sourceTensor:outputShape:descriptor:name: not bound +!missing-selector! MPSGraph::depthwiseConvolution3DWithSourceTensor:weightsTensor:descriptor:name: not bound !missing-selector! MPSGraph::divisionNoNaNWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::divisionWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::dropoutTensor:rate:name: not bound @@ -53,14 +78,19 @@ !missing-selector! MPSGraph::exponentBase10WithTensor:name: not bound !missing-selector! MPSGraph::exponentBase2WithTensor:name: not bound !missing-selector! MPSGraph::exponentWithTensor:name: not bound +!missing-selector! MPSGraph::flatten2DTensor:axis:name: not bound +!missing-selector! MPSGraph::flatten2DTensor:axisTensor:name: not bound !missing-selector! MPSGraph::floorModuloWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::floorWithTensor:name: not bound +!missing-selector! MPSGraph::forLoopWithLowerBound:upperBound:step:initialBodyArguments:body:name: not bound +!missing-selector! MPSGraph::forLoopWithNumberOfIterations:initialBodyArguments:body:name: not bound !missing-selector! MPSGraph::gatherNDWithUpdatesTensor:indicesTensor:batchDimensions:name: not bound !missing-selector! MPSGraph::gatherWithUpdatesTensor:indicesTensor:axis:batchDimensions:name: not bound !missing-selector! MPSGraph::gradientForPrimaryTensor:withTensors:name: not bound !missing-selector! MPSGraph::greaterThanOrEqualToWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::greaterThanWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::identityWithTensor:name: not bound +!missing-selector! MPSGraph::ifWithPredicateTensor:thenBlock:elseBlock:name: not bound !missing-selector! MPSGraph::init not bound !missing-selector! MPSGraph::isFiniteWithTensor:name: not bound !missing-selector! MPSGraph::isInfiniteWithTensor:name: not bound @@ -77,10 +107,14 @@ !missing-selector! MPSGraph::logicalXNORWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::logicalXORWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::matrixMultiplicationWithPrimaryTensor:secondaryTensor:name: not bound -!missing-selector! MPSGraph::maximumWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::maxPooling2DGradientWithGradientTensor:sourceTensor:descriptor:name: not bound !missing-selector! MPSGraph::maxPooling2DWithSourceTensor:descriptor:name: not bound +!missing-selector! MPSGraph::maxPooling4DGradientWithGradientTensor:sourceTensor:descriptor:name: not bound +!missing-selector! MPSGraph::maxPooling4DWithSourceTensor:descriptor:name: not bound +!missing-selector! MPSGraph::maximumWithNaNPropagationWithPrimaryTensor:secondaryTensor:name: not bound +!missing-selector! MPSGraph::maximumWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::meanOfTensor:axes:name: not bound +!missing-selector! MPSGraph::minimumWithNaNPropagationWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::minimumWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::moduloWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::multiplicationWithPrimaryTensor:secondaryTensor:name: not bound @@ -104,8 +138,12 @@ !missing-selector! MPSGraph::placeholderWithShape:dataType:name: not bound !missing-selector! MPSGraph::placeholderWithShape:name: not bound !missing-selector! MPSGraph::powerWithPrimaryTensor:secondaryTensor:name: not bound +!missing-selector! MPSGraph::reLUGradientWithIncomingGradient:sourceTensor:name: not bound +!missing-selector! MPSGraph::reLUWithTensor:name: not bound !missing-selector! MPSGraph::readVariable:name: not bound !missing-selector! MPSGraph::reciprocalWithTensor:name: not bound +!missing-selector! MPSGraph::reductionArgMaximumWithTensor:axis:name: not bound +!missing-selector! MPSGraph::reductionArgMinimumWithTensor:axis:name: not bound !missing-selector! MPSGraph::reductionMaximumWithTensor:axes:name: not bound !missing-selector! MPSGraph::reductionMaximumWithTensor:axis:name: not bound !missing-selector! MPSGraph::reductionMinimumWithTensor:axes:name: not bound @@ -114,12 +152,13 @@ !missing-selector! MPSGraph::reductionProductWithTensor:axis:name: not bound !missing-selector! MPSGraph::reductionSumWithTensor:axes:name: not bound !missing-selector! MPSGraph::reductionSumWithTensor:axis:name: not bound -!missing-selector! MPSGraph::reLUGradientWithIncomingGradient:sourceTensor:name: not bound -!missing-selector! MPSGraph::reLUWithTensor:name: not bound !missing-selector! MPSGraph::reshapeTensor:withShape:name: not bound !missing-selector! MPSGraph::resizeTensor:size:mode:centerResult:alignCorners:layout:name: not bound !missing-selector! MPSGraph::resizeWithGradientTensor:input:mode:centerResult:alignCorners:layout:name: not bound !missing-selector! MPSGraph::reverseSquareRootWithTensor:name: not bound +!missing-selector! MPSGraph::reverseTensor:axes:name: not bound +!missing-selector! MPSGraph::reverseTensor:axesTensor:name: not bound +!missing-selector! MPSGraph::reverseTensor:name: not bound !missing-selector! MPSGraph::rintWithTensor:name: not bound !missing-selector! MPSGraph::roundWithTensor:name: not bound !missing-selector! MPSGraph::runAsyncWithFeeds:targetTensors:targetOperations:executionDescriptor: not bound @@ -128,32 +167,44 @@ !missing-selector! MPSGraph::runWithFeeds:targetTensors:targetOperations: not bound !missing-selector! MPSGraph::runWithMTLCommandQueue:feeds:targetOperations:resultsDictionary: not bound !missing-selector! MPSGraph::runWithMTLCommandQueue:feeds:targetTensors:targetOperations: not bound +!missing-selector! MPSGraph::scatterNDWithUpdatesTensor:indicesTensor:shape:batchDimensions:mode:name: not bound !missing-selector! MPSGraph::scatterNDWithUpdatesTensor:indicesTensor:shape:batchDimensions:name: not bound !missing-selector! MPSGraph::selectWithPredicateTensor:truePredicateTensor:falsePredicateTensor:name: not bound !missing-selector! MPSGraph::setOptions: not bound !missing-selector! MPSGraph::sigmoidGradientWithIncomingGradient:sourceTensor:name: not bound !missing-selector! MPSGraph::sigmoidWithTensor:name: not bound -!missing-selector! MPSGraph::signbitWithTensor:name: not bound !missing-selector! MPSGraph::signWithTensor:name: not bound -!missing-selector! MPSGraph::sinhWithTensor:name: not bound +!missing-selector! MPSGraph::signbitWithTensor:name: not bound !missing-selector! MPSGraph::sinWithTensor:name: not bound +!missing-selector! MPSGraph::sinhWithTensor:name: not bound +!missing-selector! MPSGraph::sliceGradientTensor:fwdInShapeTensor:starts:ends:strides:name: not bound +!missing-selector! MPSGraph::sliceGradientTensor:fwdInShapeTensor:starts:ends:strides:startMask:endMask:squeezeMask:name: not bound !missing-selector! MPSGraph::sliceTensor:dimension:start:length:name: not bound +!missing-selector! MPSGraph::sliceTensor:starts:ends:strides:name: not bound +!missing-selector! MPSGraph::sliceTensor:starts:ends:strides:startMask:endMask:squeezeMask:name: not bound !missing-selector! MPSGraph::softMaxCrossEntropyGradientWithIncomingGradientTensor:sourceTensor:labelsTensor:axis:reductionType:name: not bound !missing-selector! MPSGraph::softMaxCrossEntropyWithSourceTensor:labelsTensor:axis:reductionType:name: not bound !missing-selector! MPSGraph::softMaxGradientWithIncomingGradient:sourceTensor:axis:name: not bound !missing-selector! MPSGraph::softMaxWithTensor:axis:name: not bound +!missing-selector! MPSGraph::spaceToDepth2DTensor:widthAxis:heightAxis:depthAxis:blockSize:usePixelShuffleOrder:name: not bound +!missing-selector! MPSGraph::spaceToDepth2DTensor:widthAxisTensor:heightAxisTensor:depthAxisTensor:blockSize:usePixelShuffleOrder:name: not bound +!missing-selector! MPSGraph::sparseTensorWithDescriptor:tensors:shape:name: not bound +!missing-selector! MPSGraph::sparseTensorWithType:tensors:shape:dataType:name: not bound !missing-selector! MPSGraph::squareRootWithTensor:name: not bound !missing-selector! MPSGraph::squareWithTensor:name: not bound +!missing-selector! MPSGraph::stencilWithSourceTensor:weightsTensor:descriptor:name: not bound !missing-selector! MPSGraph::stochasticGradientDescentWithLearningRateTensor:valuesTensor:gradientTensor:name: not bound !missing-selector! MPSGraph::subtractionWithPrimaryTensor:secondaryTensor:name: not bound -!missing-selector! MPSGraph::tanhWithTensor:name: not bound !missing-selector! MPSGraph::tanWithTensor:name: not bound +!missing-selector! MPSGraph::tanhWithTensor:name: not bound !missing-selector! MPSGraph::tileGradientWithIncomingGradientTensor:sourceTensor:withMultiplier:name: not bound !missing-selector! MPSGraph::tileTensor:withMultiplier:name: not bound !missing-selector! MPSGraph::transposeTensor:dimension:withDimension:name: not bound !missing-selector! MPSGraph::variableWithData:shape:dataType:name: not bound !missing-selector! MPSGraph::varianceOfTensor:axes:name: not bound !missing-selector! MPSGraph::varianceOfTensor:meanTensor:axes:name: not bound +!missing-selector! MPSGraph::whileWithInitialInputs:before:after:name: not bound +!missing-selector! MPSGraphCompilationDescriptor::disableTypeInference not bound !missing-selector! MPSGraphConvolution2DOpDescriptor::dataLayout not bound !missing-selector! MPSGraphConvolution2DOpDescriptor::dilationRateInX not bound !missing-selector! MPSGraphConvolution2DOpDescriptor::dilationRateInY not bound @@ -179,6 +230,10 @@ !missing-selector! MPSGraphConvolution2DOpDescriptor::strideInX not bound !missing-selector! MPSGraphConvolution2DOpDescriptor::strideInY not bound !missing-selector! MPSGraphConvolution2DOpDescriptor::weightsLayout not bound +!missing-selector! MPSGraphCreateSparseOpDescriptor::dataType not bound +!missing-selector! MPSGraphCreateSparseOpDescriptor::setDataType: not bound +!missing-selector! MPSGraphCreateSparseOpDescriptor::setSparseStorageType: not bound +!missing-selector! MPSGraphCreateSparseOpDescriptor::sparseStorageType not bound !missing-selector! MPSGraphDepthwiseConvolution2DOpDescriptor::dataLayout not bound !missing-selector! MPSGraphDepthwiseConvolution2DOpDescriptor::dilationRateInX not bound !missing-selector! MPSGraphDepthwiseConvolution2DOpDescriptor::dilationRateInY not bound @@ -202,8 +257,32 @@ !missing-selector! MPSGraphDepthwiseConvolution2DOpDescriptor::strideInX not bound !missing-selector! MPSGraphDepthwiseConvolution2DOpDescriptor::strideInY not bound !missing-selector! MPSGraphDepthwiseConvolution2DOpDescriptor::weightsLayout not bound +!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::channelDimensionIndex not bound +!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::dilationRates not bound +!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::paddingStyle not bound +!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::paddingValues not bound +!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::setChannelDimensionIndex: not bound +!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::setDilationRates: not bound +!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::setPaddingStyle: not bound +!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::setPaddingValues: not bound +!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::setStrides: not bound +!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::strides not bound !missing-selector! MPSGraphDevice::metalDevice not bound !missing-selector! MPSGraphDevice::type not bound +!missing-selector! MPSGraphExecutable::encodeToCommandBuffer:inputsArray:resultsArray:executionDescriptor: not bound +!missing-selector! MPSGraphExecutable::feedTensors not bound +!missing-selector! MPSGraphExecutable::options not bound +!missing-selector! MPSGraphExecutable::runAsyncWithMTLCommandQueue:inputsArray:resultsArray:executionDescriptor: not bound +!missing-selector! MPSGraphExecutable::runWithMTLCommandQueue:inputsArray:resultsArray:executionDescriptor: not bound +!missing-selector! MPSGraphExecutable::setOptions: not bound +!missing-selector! MPSGraphExecutable::specializeWithDevice:inputTypes:compilationDescriptor: not bound +!missing-selector! MPSGraphExecutable::targetTensors not bound +!missing-selector! MPSGraphExecutableExecutionDescriptor::completionHandler not bound +!missing-selector! MPSGraphExecutableExecutionDescriptor::scheduledHandler not bound +!missing-selector! MPSGraphExecutableExecutionDescriptor::setCompletionHandler: not bound +!missing-selector! MPSGraphExecutableExecutionDescriptor::setScheduledHandler: not bound +!missing-selector! MPSGraphExecutableExecutionDescriptor::setWaitUntilCompleted: not bound +!missing-selector! MPSGraphExecutableExecutionDescriptor::waitUntilCompleted not bound !missing-selector! MPSGraphExecutionDescriptor::completionHandler not bound !missing-selector! MPSGraphExecutionDescriptor::scheduledHandler not bound !missing-selector! MPSGraphExecutionDescriptor::setCompletionHandler: not bound @@ -240,119 +319,6 @@ !missing-selector! MPSGraphPooling2DOpDescriptor::setStrideInY: not bound !missing-selector! MPSGraphPooling2DOpDescriptor::strideInX not bound !missing-selector! MPSGraphPooling2DOpDescriptor::strideInY not bound -!missing-selector! MPSGraphShapedType::dataType not bound -!missing-selector! MPSGraphShapedType::initWithShape:dataType: not bound -!missing-selector! MPSGraphShapedType::isEqualTo: not bound -!missing-selector! MPSGraphShapedType::setDataType: not bound -!missing-selector! MPSGraphShapedType::setShape: not bound -!missing-selector! MPSGraphShapedType::shape not bound -!missing-selector! MPSGraphTensor::dataType not bound -!missing-selector! MPSGraphTensor::operation not bound -!missing-selector! MPSGraphTensor::shape not bound -!missing-selector! MPSGraphTensorData::dataType not bound -!missing-selector! MPSGraphTensorData::device not bound -!missing-selector! MPSGraphTensorData::initWithDevice:data:shape:dataType: not bound -!missing-selector! MPSGraphTensorData::initWithMPSImageBatch: not bound -!missing-selector! MPSGraphTensorData::initWithMPSMatrix: not bound -!missing-selector! MPSGraphTensorData::initWithMPSMatrix:rank: not bound -!missing-selector! MPSGraphTensorData::initWithMPSNDArray: not bound -!missing-selector! MPSGraphTensorData::initWithMPSVector: not bound -!missing-selector! MPSGraphTensorData::initWithMPSVector:rank: not bound -!missing-selector! MPSGraphTensorData::initWithMTLBuffer:shape:dataType: not bound -!missing-selector! MPSGraphTensorData::mpsndarray not bound -!missing-selector! MPSGraphTensorData::shape not bound -!missing-selector! MPSGraphVariableOp::dataType not bound -!missing-selector! MPSGraphVariableOp::shape not bound -!missing-type! MPSGraph not bound -!missing-type! MPSGraphConvolution2DOpDescriptor not bound -!missing-type! MPSGraphDepthwiseConvolution2DOpDescriptor not bound -!missing-type! MPSGraphDevice not bound -!missing-type! MPSGraphExecutionDescriptor not bound -!missing-type! MPSGraphOperation not bound -!missing-type! MPSGraphPooling2DOpDescriptor not bound -!missing-type! MPSGraphShapedType not bound -!missing-type! MPSGraphTensor not bound -!missing-type! MPSGraphTensorData not bound -!missing-type! MPSGraphVariableOp not bound -!missing-selector! MPSGraph::constantWithScalar:dataType: not bound -## appended from unclassified file -!missing-enum! MPSGraphScatterMode not bound -!missing-selector! MPSGraph::scatterNDWithUpdatesTensor:indicesTensor:shape:batchDimensions:mode:name: not bound -!missing-selector! MPSGraph::sliceGradientTensor:fwdInShapeTensor:starts:ends:strides:name: not bound -!missing-selector! MPSGraph::sliceGradientTensor:fwdInShapeTensor:starts:ends:strides:startMask:endMask:squeezeMask:name: not bound -!missing-selector! MPSGraph::sliceTensor:starts:ends:strides:name: not bound -!missing-selector! MPSGraph::sliceTensor:starts:ends:strides:startMask:endMask:squeezeMask:name: not bound -## appended from unclassified file -!missing-enum! MPSGraphReductionMode not bound -!missing-enum! MPSGraphSparseStorageType not bound -!missing-selector! +MPSGraphCreateSparseOpDescriptor::descriptorWithStorageType:dataType: not bound -!missing-selector! +MPSGraphDepthwiseConvolution3DOpDescriptor::descriptorWithPaddingStyle: not bound -!missing-selector! +MPSGraphDepthwiseConvolution3DOpDescriptor::descriptorWithStrides:dilationRates:paddingValues:paddingStyle: not bound -!missing-selector! +MPSGraphPooling4DOpDescriptor::descriptorWithKernelSizes:paddingStyle: not bound -!missing-selector! +MPSGraphPooling4DOpDescriptor::descriptorWithKernelSizes:strides:dilationRates:paddingValues:paddingStyle: not bound -!missing-selector! +MPSGraphStencilOpDescriptor::descriptorWithExplicitPadding: not bound -!missing-selector! +MPSGraphStencilOpDescriptor::descriptorWithOffsets:explicitPadding: not bound -!missing-selector! +MPSGraphStencilOpDescriptor::descriptorWithPaddingStyle: not bound -!missing-selector! +MPSGraphStencilOpDescriptor::descriptorWithReductionMode:offsets:strides:dilationRates:explicitPadding:boundaryMode:paddingStyle:paddingConstant: not bound -!missing-selector! MPSGraph::avgPooling4DGradientWithGradientTensor:sourceTensor:descriptor:name: not bound -!missing-selector! MPSGraph::avgPooling4DWithSourceTensor:descriptor:name: not bound -!missing-selector! MPSGraph::compileWithDevice:feeds:targetTensors:targetOperations:compilationDescriptor: not bound -!missing-selector! MPSGraph::concatTensors:dimension:interleave:name: not bound -!missing-selector! MPSGraph::controlDependencyWithOperations:dependentBlock:name: not bound -!missing-selector! MPSGraph::depthToSpace2DTensor:widthAxis:heightAxis:depthAxis:blockSize:usePixelShuffleOrder:name: not bound -!missing-selector! MPSGraph::depthToSpace2DTensor:widthAxisTensor:heightAxisTensor:depthAxisTensor:blockSize:usePixelShuffleOrder:name: not bound -!missing-selector! MPSGraph::depthwiseConvolution3DDataGradientWithIncomingGradientTensor:weightsTensor:outputShape:descriptor:name: not bound -!missing-selector! MPSGraph::depthwiseConvolution3DWeightsGradientWithIncomingGradientTensor:sourceTensor:outputShape:descriptor:name: not bound -!missing-selector! MPSGraph::depthwiseConvolution3DWithSourceTensor:weightsTensor:descriptor:name: not bound -!missing-selector! MPSGraph::flatten2DTensor:axis:name: not bound -!missing-selector! MPSGraph::flatten2DTensor:axisTensor:name: not bound -!missing-selector! MPSGraph::forLoopWithLowerBound:upperBound:step:initialBodyArguments:body:name: not bound -!missing-selector! MPSGraph::forLoopWithNumberOfIterations:initialBodyArguments:body:name: not bound -!missing-selector! MPSGraph::ifWithPredicateTensor:thenBlock:elseBlock:name: not bound -!missing-selector! MPSGraph::L2NormPooling4DGradientWithGradientTensor:sourceTensor:descriptor:name: not bound -!missing-selector! MPSGraph::L2NormPooling4DWithSourceTensor:descriptor:name: not bound -!missing-selector! MPSGraph::maxPooling4DGradientWithGradientTensor:sourceTensor:descriptor:name: not bound -!missing-selector! MPSGraph::maxPooling4DWithSourceTensor:descriptor:name: not bound -!missing-selector! MPSGraph::reductionArgMaximumWithTensor:axis:name: not bound -!missing-selector! MPSGraph::reductionArgMinimumWithTensor:axis:name: not bound -!missing-selector! MPSGraph::reverseTensor:axes:name: not bound -!missing-selector! MPSGraph::reverseTensor:axesTensor:name: not bound -!missing-selector! MPSGraph::reverseTensor:name: not bound -!missing-selector! MPSGraph::spaceToDepth2DTensor:widthAxis:heightAxis:depthAxis:blockSize:usePixelShuffleOrder:name: not bound -!missing-selector! MPSGraph::spaceToDepth2DTensor:widthAxisTensor:heightAxisTensor:depthAxisTensor:blockSize:usePixelShuffleOrder:name: not bound -!missing-selector! MPSGraph::sparseTensorWithDescriptor:tensors:shape:name: not bound -!missing-selector! MPSGraph::sparseTensorWithType:tensors:shape:dataType:name: not bound -!missing-selector! MPSGraph::stencilWithSourceTensor:weightsTensor:descriptor:name: not bound -!missing-selector! MPSGraph::whileWithInitialInputs:before:after:name: not bound -!missing-selector! MPSGraphCompilationDescriptor::disableTypeInference not bound -!missing-selector! MPSGraphCreateSparseOpDescriptor::dataType not bound -!missing-selector! MPSGraphCreateSparseOpDescriptor::setDataType: not bound -!missing-selector! MPSGraphCreateSparseOpDescriptor::setSparseStorageType: not bound -!missing-selector! MPSGraphCreateSparseOpDescriptor::sparseStorageType not bound -!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::channelDimensionIndex not bound -!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::dilationRates not bound -!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::paddingStyle not bound -!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::paddingValues not bound -!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::setChannelDimensionIndex: not bound -!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::setDilationRates: not bound -!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::setPaddingStyle: not bound -!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::setPaddingValues: not bound -!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::setStrides: not bound -!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::strides not bound -!missing-selector! MPSGraphExecutable::encodeToCommandBuffer:inputsArray:resultsArray:executionDescriptor: not bound -!missing-selector! MPSGraphExecutable::feedTensors not bound -!missing-selector! MPSGraphExecutable::options not bound -!missing-selector! MPSGraphExecutable::runAsyncWithMTLCommandQueue:inputsArray:resultsArray:executionDescriptor: not bound -!missing-selector! MPSGraphExecutable::runWithMTLCommandQueue:inputsArray:resultsArray:executionDescriptor: not bound -!missing-selector! MPSGraphExecutable::setOptions: not bound -!missing-selector! MPSGraphExecutable::specializeWithDevice:inputTypes:compilationDescriptor: not bound -!missing-selector! MPSGraphExecutable::targetTensors not bound -!missing-selector! MPSGraphExecutableExecutionDescriptor::completionHandler not bound -!missing-selector! MPSGraphExecutableExecutionDescriptor::scheduledHandler not bound -!missing-selector! MPSGraphExecutableExecutionDescriptor::setCompletionHandler: not bound -!missing-selector! MPSGraphExecutableExecutionDescriptor::setScheduledHandler: not bound -!missing-selector! MPSGraphExecutableExecutionDescriptor::setWaitUntilCompleted: not bound -!missing-selector! MPSGraphExecutableExecutionDescriptor::waitUntilCompleted not bound !missing-selector! MPSGraphPooling4DOpDescriptor::ceilMode not bound !missing-selector! MPSGraphPooling4DOpDescriptor::dilationRates not bound !missing-selector! MPSGraphPooling4DOpDescriptor::includeZeroPadToAverage not bound @@ -367,6 +333,12 @@ !missing-selector! MPSGraphPooling4DOpDescriptor::setPaddingValues: not bound !missing-selector! MPSGraphPooling4DOpDescriptor::setStrides: not bound !missing-selector! MPSGraphPooling4DOpDescriptor::strides not bound +!missing-selector! MPSGraphShapedType::dataType not bound +!missing-selector! MPSGraphShapedType::initWithShape:dataType: not bound +!missing-selector! MPSGraphShapedType::isEqualTo: not bound +!missing-selector! MPSGraphShapedType::setDataType: not bound +!missing-selector! MPSGraphShapedType::setShape: not bound +!missing-selector! MPSGraphShapedType::shape not bound !missing-selector! MPSGraphStencilOpDescriptor::boundaryMode not bound !missing-selector! MPSGraphStencilOpDescriptor::dilationRates not bound !missing-selector! MPSGraphStencilOpDescriptor::explicitPadding not bound @@ -383,11 +355,41 @@ !missing-selector! MPSGraphStencilOpDescriptor::setReductionMode: not bound !missing-selector! MPSGraphStencilOpDescriptor::setStrides: not bound !missing-selector! MPSGraphStencilOpDescriptor::strides not bound +!missing-selector! MPSGraphTensor::dataType not bound +!missing-selector! MPSGraphTensor::operation not bound +!missing-selector! MPSGraphTensor::shape not bound +!missing-selector! MPSGraphTensorData::dataType not bound +!missing-selector! MPSGraphTensorData::device not bound +!missing-selector! MPSGraphTensorData::initWithDevice:data:shape:dataType: not bound +!missing-selector! MPSGraphTensorData::initWithMPSImageBatch: not bound +!missing-selector! MPSGraphTensorData::initWithMPSMatrix: not bound +!missing-selector! MPSGraphTensorData::initWithMPSMatrix:rank: not bound +!missing-selector! MPSGraphTensorData::initWithMPSNDArray: not bound +!missing-selector! MPSGraphTensorData::initWithMPSVector: not bound +!missing-selector! MPSGraphTensorData::initWithMPSVector:rank: not bound +!missing-selector! MPSGraphTensorData::initWithMTLBuffer:shape:dataType: not bound +!missing-selector! MPSGraphTensorData::mpsndarray not bound +!missing-selector! MPSGraphTensorData::shape not bound +!missing-selector! MPSGraphVariableOp::dataType not bound +!missing-selector! MPSGraphVariableOp::shape not bound +!missing-type! MPSGraph not bound !missing-type! MPSGraphCompilationDescriptor not bound +!missing-type! MPSGraphConvolution2DOpDescriptor not bound !missing-type! MPSGraphCreateSparseOpDescriptor not bound +!missing-type! MPSGraphDepthwiseConvolution2DOpDescriptor not bound !missing-type! MPSGraphDepthwiseConvolution3DOpDescriptor not bound +!missing-type! MPSGraphDevice not bound !missing-type! MPSGraphExecutable not bound !missing-type! MPSGraphExecutableExecutionDescriptor not bound +!missing-type! MPSGraphExecutionDescriptor not bound +!missing-type! MPSGraphOperation not bound +!missing-type! MPSGraphPooling2DOpDescriptor not bound !missing-type! MPSGraphPooling4DOpDescriptor not bound +!missing-type! MPSGraphShapedType not bound !missing-type! MPSGraphStencilOpDescriptor not bound +!missing-type! MPSGraphTensor not bound +!missing-type! MPSGraphTensorData not bound !missing-type! MPSGraphType not bound +!missing-type! MPSGraphVariableOp not bound +## appended from unclassified file +## appended from unclassified file diff --git a/tests/xtro-sharpie/macOS-PHASE.todo b/tests/xtro-sharpie/macOS-PHASE.todo index f868d344e402..e177c5643f7f 100644 --- a/tests/xtro-sharpie/macOS-PHASE.todo +++ b/tests/xtro-sharpie/macOS-PHASE.todo @@ -9,7 +9,7 @@ !missing-enum! PHASENormalizationMode not bound !missing-enum! PHASEPlaybackMode not bound !missing-enum! PHASEPushStreamBufferOptions not bound -!missing-enum! PHASEPushStreamCompletionCallbackType not bound +!missing-enum! PHASEPushStreamCompletionCallbackCondition not bound !missing-enum! PHASERenderingState not bound !missing-enum! PHASEReverbPreset not bound !missing-enum! PHASESoundEventError not bound @@ -17,8 +17,8 @@ !missing-enum! PHASESoundEventPrepareState not bound !missing-enum! PHASESoundEventSeekHandlerReason not bound !missing-enum! PHASESoundEventStartHandlerReason not bound +!missing-enum! PHASESpatialPipelineFlags not bound !missing-enum! PHASESpatializationMode not bound -!missing-enum! PHASESpatialPipelineOptions not bound !missing-enum! PHASEUpdateMode not bound !missing-field! PHASEAssetErrorDomain not bound !missing-field! PHASEErrorDomain not bound @@ -40,6 +40,7 @@ !missing-selector! PHASEAssetRegistry::registerSoundAssetAtURL:identifier:assetType:channelLayout:normalizationMode:error: not bound !missing-selector! PHASEAssetRegistry::registerSoundAssetWithData:identifier:format:normalizationMode:error: not bound !missing-selector! PHASEAssetRegistry::registerSoundEventAssetWithRootNode:identifier:error: not bound +!missing-selector! PHASEAssetRegistry::unregisterAssetWithIdentifier:completion: not bound !missing-selector! PHASEBlendNodeDefinition::addRangeForInputValuesAbove:fullGainAtValue:fadeCurveType:subtree: not bound !missing-selector! PHASEBlendNodeDefinition::addRangeForInputValuesBelow:fullGainAtValue:fadeCurveType:subtree: not bound !missing-selector! PHASEBlendNodeDefinition::addRangeForInputValuesBetween:highValue:fullGainAtLowValue:fullGainAtHighValue:lowFadeCurveType:highFadeCurveType:subtree: not bound @@ -50,8 +51,8 @@ !missing-selector! PHASEBlendNodeDefinition::initWithBlendMetaParameterDefinition: not bound !missing-selector! PHASEBlendNodeDefinition::initWithBlendMetaParameterDefinition:identifier: not bound !missing-selector! PHASEBlendNodeDefinition::spatialMixerDefinitionForDistance not bound -!missing-selector! PHASECardioidDirectivityModelParameters::init not bound -!missing-selector! PHASECardioidDirectivityModelParameters::subbands not bound +!missing-selector! PHASECardioidDirectivityModelParameters::initWithSubbandParameters: not bound +!missing-selector! PHASECardioidDirectivityModelParameters::subbandParameters not bound !missing-selector! PHASECardioidDirectivityModelSubbandParameters::frequency not bound !missing-selector! PHASECardioidDirectivityModelSubbandParameters::init not bound !missing-selector! PHASECardioidDirectivityModelSubbandParameters::pattern not bound @@ -62,6 +63,8 @@ !missing-selector! PHASEChannelMixerDefinition::initWithChannelLayout: not bound !missing-selector! PHASEChannelMixerDefinition::initWithChannelLayout:identifier: not bound !missing-selector! PHASEChannelMixerDefinition::inputChannelLayout not bound +!missing-selector! PHASEConeDirectivityModelParameters::initWithSubbandParameters: not bound +!missing-selector! PHASEConeDirectivityModelParameters::subbandParameters not bound !missing-selector! PHASEConeDirectivityModelSubbandParameters::frequency not bound !missing-selector! PHASEConeDirectivityModelSubbandParameters::init not bound !missing-selector! PHASEConeDirectivityModelSubbandParameters::innerAngle not bound @@ -78,8 +81,10 @@ !missing-selector! PHASEDistanceModelFadeOutParameters::initWithCullDistance: not bound !missing-selector! PHASEDistanceModelParameters::fadeOutParameters not bound !missing-selector! PHASEDistanceModelParameters::setFadeOutParameters: not bound +!missing-selector! PHASEDucker::activate not bound !missing-selector! PHASEDucker::attackCurve not bound !missing-selector! PHASEDucker::attackTime not bound +!missing-selector! PHASEDucker::deactivate not bound !missing-selector! PHASEDucker::gain not bound !missing-selector! PHASEDucker::identifier not bound !missing-selector! PHASEDucker::initWithEngine:sourceGroups:targetGroups:gain:attackTime:releaseTime:attackCurve:releaseCurve: not bound @@ -95,11 +100,13 @@ !missing-selector! PHASEEngine::duckers not bound !missing-selector! PHASEEngine::groups not bound !missing-selector! PHASEEngine::initWithUpdateMode: not bound +!missing-selector! PHASEEngine::outputSpatializationMode not bound !missing-selector! PHASEEngine::pause not bound !missing-selector! PHASEEngine::renderingState not bound !missing-selector! PHASEEngine::rootObject not bound !missing-selector! PHASEEngine::setDefaultMedium: not bound !missing-selector! PHASEEngine::setDefaultReverbPreset: not bound +!missing-selector! PHASEEngine::setOutputSpatializationMode: not bound !missing-selector! PHASEEngine::setUnitsPerMeter: not bound !missing-selector! PHASEEngine::setUnitsPerSecond: not bound !missing-selector! PHASEEngine::soundEvents not bound @@ -133,6 +140,10 @@ !missing-selector! PHASEGeneratorNodeDefinition::setGroup: not bound !missing-selector! PHASEGeneratorNodeDefinition::setRate: not bound !missing-selector! PHASEGeneratorNodeDefinition::setRateMetaParameterDefinition: not bound +!missing-selector! PHASEGeneratorParameters::gain not bound +!missing-selector! PHASEGeneratorParameters::rate not bound +!missing-selector! PHASEGeneratorParameters::setGain: not bound +!missing-selector! PHASEGeneratorParameters::setRate: not bound !missing-selector! PHASEGeometricSpreadingDistanceModelParameters::init not bound !missing-selector! PHASEGeometricSpreadingDistanceModelParameters::rolloffFactor not bound !missing-selector! PHASEGeometricSpreadingDistanceModelParameters::setRolloffFactor: not bound @@ -153,7 +164,9 @@ !missing-selector! PHASEGroup::unregisterFromEngine not bound !missing-selector! PHASEGroup::unsolo not bound !missing-selector! PHASEGroupPreset::activate not bound +!missing-selector! PHASEGroupPreset::activateWithTimeToTargetOverride: not bound !missing-selector! PHASEGroupPreset::deactivate not bound +!missing-selector! PHASEGroupPreset::deactivateWithTimeToResetOverride: not bound !missing-selector! PHASEGroupPreset::initWithEngine:settings:timeToTarget:timeToReset: not bound !missing-selector! PHASEGroupPreset::settings not bound !missing-selector! PHASEGroupPreset::timeToReset not bound @@ -194,6 +207,11 @@ !missing-selector! PHASENumberMetaParameterDefinition::initWithValue:minimum:maximum:identifier: not bound !missing-selector! PHASENumberMetaParameterDefinition::maximum not bound !missing-selector! PHASENumberMetaParameterDefinition::minimum not bound +!missing-selector! PHASENumericPair::first not bound +!missing-selector! PHASENumericPair::initWithFirstValue:secondValue: not bound +!missing-selector! PHASENumericPair::second not bound +!missing-selector! PHASENumericPair::setFirst: not bound +!missing-selector! PHASENumericPair::setSecond: not bound !missing-selector! PHASEObject::addChild:error: not bound !missing-selector! PHASEObject::children not bound !missing-selector! PHASEObject::initWithEngine: not bound @@ -222,9 +240,15 @@ !missing-selector! PHASERandomNodeDefinition::addSubtree:weight: not bound !missing-selector! PHASERandomNodeDefinition::init not bound !missing-selector! PHASERandomNodeDefinition::initWithIdentifier: not bound +!missing-selector! PHASERandomNodeDefinition::setUniqueSelectionQueueLength: not bound +!missing-selector! PHASERandomNodeDefinition::uniqueSelectionQueueLength not bound !missing-selector! PHASESamplerNodeDefinition::assetIdentifier not bound +!missing-selector! PHASESamplerNodeDefinition::cullOption not bound !missing-selector! PHASESamplerNodeDefinition::initWithSoundAssetIdentifier:mixerDefinition: not bound !missing-selector! PHASESamplerNodeDefinition::initWithSoundAssetIdentifier:mixerDefinition:identifier: not bound +!missing-selector! PHASESamplerNodeDefinition::playbackMode not bound +!missing-selector! PHASESamplerNodeDefinition::setCullOption: not bound +!missing-selector! PHASESamplerNodeDefinition::setPlaybackMode: not bound !missing-selector! PHASEShape::elements not bound !missing-selector! PHASEShape::initWithEngine:mesh: not bound !missing-selector! PHASEShape::initWithEngine:mesh:materials: not bound @@ -239,12 +263,13 @@ !missing-selector! PHASESoundEvent::metaParameters not bound !missing-selector! PHASESoundEvent::mixers not bound !missing-selector! PHASESoundEvent::pause not bound -!missing-selector! PHASESoundEvent::prepareAndReturnError: not bound !missing-selector! PHASESoundEvent::prepareState not bound +!missing-selector! PHASESoundEvent::prepareWithCompletion: not bound !missing-selector! PHASESoundEvent::pushStreamNodes not bound !missing-selector! PHASESoundEvent::renderingState not bound !missing-selector! PHASESoundEvent::resume not bound -!missing-selector! PHASESoundEvent::startAndReturnError: not bound +!missing-selector! PHASESoundEvent::seekToTime:completion: not bound +!missing-selector! PHASESoundEvent::startWithCompletion: not bound !missing-selector! PHASESoundEvent::stopAndInvalidate not bound !missing-selector! PHASESoundEventNodeDefinition::children not bound !missing-selector! PHASESource::gain not bound @@ -262,8 +287,8 @@ !missing-selector! PHASESpatialMixerDefinition::sourceDirectivityModelParameters not bound !missing-selector! PHASESpatialMixerDefinition::spatialPipeline not bound !missing-selector! PHASESpatialPipeline::entries not bound -!missing-selector! PHASESpatialPipeline::initWithOptions: not bound -!missing-selector! PHASESpatialPipeline::options not bound +!missing-selector! PHASESpatialPipeline::flags not bound +!missing-selector! PHASESpatialPipeline::initWithFlags: not bound !missing-selector! PHASESpatialPipelineEntry::sendLevel not bound !missing-selector! PHASESpatialPipelineEntry::sendLevelMetaParameterDefinition not bound !missing-selector! PHASESpatialPipelineEntry::setSendLevel: not bound @@ -294,6 +319,7 @@ !missing-type! PHASEEnvelopeDistanceModelParameters not bound !missing-type! PHASEEnvelopeSegment not bound !missing-type! PHASEGeneratorNodeDefinition not bound +!missing-type! PHASEGeneratorParameters not bound !missing-type! PHASEGeometricSpreadingDistanceModelParameters not bound !missing-type! PHASEGlobalMetaParameterAsset not bound !missing-type! PHASEGroup not bound @@ -310,6 +336,7 @@ !missing-type! PHASEMixerParameters not bound !missing-type! PHASENumberMetaParameter not bound !missing-type! PHASENumberMetaParameterDefinition not bound +!missing-type! PHASENumericPair not bound !missing-type! PHASEObject not bound !missing-type! PHASEOccluder not bound !missing-type! PHASEPushStreamNode not bound @@ -329,35 +356,4 @@ !missing-type! PHASEStringMetaParameter not bound !missing-type! PHASEStringMetaParameterDefinition not bound !missing-type! PHASESwitchNodeDefinition not bound -!missing-selector! PHASEAssetRegistry::unregisterAssetWithIdentifier:completionBlock: not bound -!missing-selector! PHASECardioidDirectivityModelParameters::initWithSubbandParameters: not bound -!missing-selector! PHASECardioidDirectivityModelParameters::subbandParameters not bound -!missing-selector! PHASEConeDirectivityModelParameters::initWithSubbandParameters: not bound -!missing-selector! PHASEConeDirectivityModelParameters::subbandParameters not bound -!missing-selector! PHASEDucker::activate not bound -!missing-selector! PHASEDucker::deactivate not bound -!missing-selector! PHASEEngine::outputSpatializationMode not bound -!missing-selector! PHASEEngine::setOutputSpatializationMode: not bound -!missing-selector! PHASEGeneratorParameters::gain not bound -!missing-selector! PHASEGeneratorParameters::rate not bound -!missing-selector! PHASEGeneratorParameters::setGain: not bound -!missing-selector! PHASEGeneratorParameters::setRate: not bound -!missing-selector! PHASEGroupPreset::activateWithTimeToTargetOverride: not bound -!missing-selector! PHASEGroupPreset::deactivateWithTimeToResetOverride: not bound -!missing-selector! PHASENumericPair::first not bound -!missing-selector! PHASENumericPair::initWithFirstValue:secondValue: not bound -!missing-selector! PHASENumericPair::second not bound -!missing-selector! PHASENumericPair::setFirst: not bound -!missing-selector! PHASENumericPair::setSecond: not bound -!missing-selector! PHASERandomNodeDefinition::setUniqueSelectionQueueLength: not bound -!missing-selector! PHASERandomNodeDefinition::uniqueSelectionQueueLength not bound -!missing-selector! PHASESamplerNodeDefinition::cullOption not bound -!missing-selector! PHASESamplerNodeDefinition::playbackMode not bound -!missing-selector! PHASESamplerNodeDefinition::setCullOption: not bound -!missing-selector! PHASESamplerNodeDefinition::setPlaybackMode: not bound -!missing-selector! PHASESoundEvent::prepareWithCompletionBlock: not bound -!missing-selector! PHASESoundEvent::seekToTime:completionBlock: not bound -!missing-selector! PHASESoundEvent::startWithCompletionBlock: not bound -!missing-type! PHASEGeneratorParameters not bound -!missing-type! PHASENumericPair not bound !unknown-simd-type-mapping! The Simd type simd_double2 does not have a mapping to a managed type. Please add one in SimdCheck.cs diff --git a/tests/xtro-sharpie/macOS-VideoToolbox.todo b/tests/xtro-sharpie/macOS-VideoToolbox.todo index 13d6a561347c..270cad9cf193 100644 --- a/tests/xtro-sharpie/macOS-VideoToolbox.todo +++ b/tests/xtro-sharpie/macOS-VideoToolbox.todo @@ -8,3 +8,4 @@ !missing-field! kVTProfileLevel_H264_ConstrainedBaseline_AutoLevel not bound !missing-field! kVTProfileLevel_H264_ConstrainedHigh_AutoLevel not bound !missing-field! kVTSampleAttachmentKey_RequireLTRAcknowledgementToken not bound +!missing-field! kVTVideoEncoderListOption_IncludeStandardDefinitionDVEncoders not bound diff --git a/tests/xtro-sharpie/macOS-WebKit.todo b/tests/xtro-sharpie/macOS-WebKit.todo index 2febd3f92d53..f13becb81897 100644 --- a/tests/xtro-sharpie/macOS-WebKit.todo +++ b/tests/xtro-sharpie/macOS-WebKit.todo @@ -1,9 +1,11 @@ !missing-enum! WKMediaCaptureState not bound !missing-enum! WKMediaCaptureType not bound !missing-enum! WKPermissionDecision not bound +!missing-protocol-member! WKUIDelegate::webView:requestDeviceOrientationAndMotionPermissionForOrigin:initiatedByFrame:decisionHandler: not found !missing-protocol-member! WKUIDelegate::webView:requestMediaCapturePermissionForOrigin:initiatedByFrame:type:decisionHandler: not found !missing-selector! WKPreferences::isTextInteractionEnabled not bound !missing-selector! WKWebView::cameraCaptureState not bound +!missing-selector! WKWebView::closeAllMediaPresentations: not bound !missing-selector! WKWebView::closeAllMediaPresentationsWithCompletionHandler: not bound !missing-selector! WKWebView::interactionState not bound !missing-selector! WKWebView::loadFileRequest:allowingReadAccessToURL: not bound @@ -12,19 +14,18 @@ !missing-selector! WKWebView::loadSimulatedRequest:withResponse:responseData: not bound !missing-selector! WKWebView::loadSimulatedRequest:withResponseHTMLString: not bound !missing-selector! WKWebView::microphoneCaptureState not bound +!missing-selector! WKWebView::pauseAllMediaPlayback: not bound !missing-selector! WKWebView::pauseAllMediaPlaybackWithCompletionHandler: not bound +!missing-selector! WKWebView::requestMediaPlaybackState: not bound !missing-selector! WKWebView::requestMediaPlaybackStateWithCompletionHandler: not bound +!missing-selector! WKWebView::resumeAllMediaPlayback: not bound !missing-selector! WKWebView::setAllMediaPlaybackSuspended:completionHandler: not bound !missing-selector! WKWebView::setCameraCaptureState:completionHandler: not bound !missing-selector! WKWebView::setInteractionState: not bound !missing-selector! WKWebView::setMicrophoneCaptureState:completionHandler: not bound -!missing-selector! WKWebView::themeColor not bound -!missing-selector! WKWebViewConfiguration::setUpgradeKnownHostsToHTTPS: not bound -!missing-selector! WKWebViewConfiguration::upgradeKnownHostsToHTTPS not bound -!missing-selector! WKWebView::closeAllMediaPresentations: not bound -!missing-selector! WKWebView::pauseAllMediaPlayback: not bound -!missing-selector! WKWebView::requestMediaPlaybackState: not bound -!missing-selector! WKWebView::resumeAllMediaPlayback: not bound !missing-selector! WKWebView::setUnderPageBackgroundColor: not bound !missing-selector! WKWebView::suspendAllMediaPlayback: not bound +!missing-selector! WKWebView::themeColor not bound !missing-selector! WKWebView::underPageBackgroundColor not bound +!missing-selector! WKWebViewConfiguration::setUpgradeKnownHostsToHTTPS: not bound +!missing-selector! WKWebViewConfiguration::upgradeKnownHostsToHTTPS not bound diff --git a/tests/xtro-sharpie/tvOS-AVFoundation.todo b/tests/xtro-sharpie/tvOS-AVFoundation.todo index 001588ca65cb..57a927f77829 100644 --- a/tests/xtro-sharpie/tvOS-AVFoundation.todo +++ b/tests/xtro-sharpie/tvOS-AVFoundation.todo @@ -1,8 +1,10 @@ -## appended from unclassified file !deprecated-attribute-missing! AVAudioUnitSampler::masterGain missing a [Deprecated] attribute !deprecated-attribute-missing! AVAudioUnitSampler::setMasterGain: missing a [Deprecated] attribute !deprecated-attribute-missing! AVPlayer::masterClock missing a [Deprecated] attribute !deprecated-attribute-missing! AVPlayer::setMasterClock: missing a [Deprecated] attribute +!deprecated-attribute-missing! AVPlayerItemAccessLogEvent::observedMaxBitrate missing a [Deprecated] attribute +!deprecated-attribute-missing! AVPlayerItemAccessLogEvent::observedMinBitrate missing a [Deprecated] attribute +!missing-enum! AVAudioRoutingArbitrationCategory not bound !missing-enum! AVDelegatingPlaybackCoordinatorRateChangeOptions not bound !missing-enum! AVDelegatingPlaybackCoordinatorSeekOptions not bound !missing-enum! AVPlayerAudiovisualBackgroundPlaybackPolicy not bound @@ -10,6 +12,8 @@ !missing-enum! AVSampleBufferRequestMode not bound !missing-enum-value! AVError native value AVErrorContentKeyRequestCancelled = -11879 not bound !missing-enum-value! AVError native value AVErrorOperationCancelled = -11878 not bound +!missing-field! AVAudioSessionSpatialAudioEnabledKey not bound +!missing-field! AVAudioSessionSpatialPlaybackCapabilitiesChangedNotification not bound !missing-field! AVCoordinatedPlaybackSuspensionReasonAudioSessionInterrupted not bound !missing-field! AVCoordinatedPlaybackSuspensionReasonCoordinatedPlaybackNotPossible not bound !missing-field! AVCoordinatedPlaybackSuspensionReasonPlayingInterstitial not bound @@ -43,9 +47,9 @@ !missing-selector! +AVAssetVariantQualifier::assetVariantQualifierWithPredicate: not bound !missing-selector! +AVAssetVariantQualifier::assetVariantQualifierWithVariant: not bound !missing-selector! +AVAssetVariantQualifier::predicateForChannelCount:mediaSelectionOption:operatorType: not bound -!missing-selector! +AVPlayerInterstitialEvent::interstitialEventWithPrimaryItem:identifier:date:templateItems:restrictions:resumptionOffset:playoutLimit: not bound +!missing-selector! +AVAssetVariantQualifier::predicateForPresentationHeight:operatorType: not bound +!missing-selector! +AVAssetVariantQualifier::predicateForPresentationWidth:operatorType: not bound !missing-selector! +AVPlayerInterstitialEvent::interstitialEventWithPrimaryItem:identifier:date:templateItems:restrictions:resumptionOffset:playoutLimit:userDefinedAttributes: not bound -!missing-selector! +AVPlayerInterstitialEvent::interstitialEventWithPrimaryItem:identifier:time:templateItems:restrictions:resumptionOffset:playoutLimit: not bound !missing-selector! +AVPlayerInterstitialEvent::interstitialEventWithPrimaryItem:identifier:time:templateItems:restrictions:resumptionOffset:playoutLimit:userDefinedAttributes: not bound !missing-selector! +AVPlayerInterstitialEventMonitor::interstitialEventMonitorWithPrimaryPlayer: not bound !missing-selector! AVAsset::findUnusedTrackIDWithCompletionHandler: not bound @@ -53,9 +57,9 @@ !missing-selector! AVAsset::loadChapterMetadataGroupsWithTitleLocale:containingItemsWithCommonKeys:completionHandler: not bound !missing-selector! AVAsset::loadMediaSelectionGroupForMediaCharacteristic:completionHandler: not bound !missing-selector! AVAsset::loadMetadataForFormat:completionHandler: not bound +!missing-selector! AVAsset::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVAsset::loadTracksWithMediaCharacteristic:completionHandler: not bound !missing-selector! AVAsset::loadTracksWithMediaType:completionHandler: not bound -!missing-selector! AVAsset::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVAssetDownloadConfiguration::artworkData not bound !missing-selector! AVAssetDownloadConfiguration::auxiliaryContentConfigurations not bound !missing-selector! AVAssetDownloadConfiguration::optimizesAuxiliaryContentConfigurations not bound @@ -86,11 +90,14 @@ !missing-selector! AVAsynchronousVideoCompositionRequest::sourceSampleDataTrackIDs not bound !missing-selector! AVAsynchronousVideoCompositionRequest::sourceTimedMetadataByTrackID: not bound !missing-selector! AVAudioPCMBuffer::initWithPCMFormat:bufferListNoCopy:deallocator: not bound +!missing-selector! AVAudioSession::setSupportsMultichannelContent:error: not bound +!missing-selector! AVAudioSession::supportsMultichannelContent not bound +!missing-selector! AVAudioSessionPortDescription::isSpatialAudioEnabled not bound !missing-selector! AVAudioUnitSampler::overallGain not bound !missing-selector! AVAudioUnitSampler::setOverallGain: not bound +!missing-selector! AVComposition::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVComposition::loadTracksWithMediaCharacteristic:completionHandler: not bound !missing-selector! AVComposition::loadTracksWithMediaType:completionHandler: not bound -!missing-selector! AVComposition::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVCoordinatedPlaybackParticipant::identifier not bound !missing-selector! AVCoordinatedPlaybackParticipant::isReadyToPlay not bound !missing-selector! AVCoordinatedPlaybackParticipant::suspensionReasons not bound @@ -109,21 +116,21 @@ !missing-selector! AVDelegatingPlaybackCoordinatorBufferingCommand::completionDueDate not bound !missing-selector! AVDelegatingPlaybackCoordinatorPauseCommand::anticipatedPlaybackRate not bound !missing-selector! AVDelegatingPlaybackCoordinatorPauseCommand::shouldBufferInAnticipationOfPlayback not bound -!missing-selector! AVDelegatingPlaybackCoordinatorPlaybackControlCommand::expectedCurrentItemIdentifier not bound -!missing-selector! AVDelegatingPlaybackCoordinatorPlaybackControlCommand::originator not bound !missing-selector! AVDelegatingPlaybackCoordinatorPlayCommand::hostClockTime not bound !missing-selector! AVDelegatingPlaybackCoordinatorPlayCommand::itemTime not bound !missing-selector! AVDelegatingPlaybackCoordinatorPlayCommand::rate not bound +!missing-selector! AVDelegatingPlaybackCoordinatorPlaybackControlCommand::expectedCurrentItemIdentifier not bound +!missing-selector! AVDelegatingPlaybackCoordinatorPlaybackControlCommand::originator not bound !missing-selector! AVDelegatingPlaybackCoordinatorSeekCommand::anticipatedPlaybackRate not bound !missing-selector! AVDelegatingPlaybackCoordinatorSeekCommand::completionDueDate not bound !missing-selector! AVDelegatingPlaybackCoordinatorSeekCommand::itemTime not bound !missing-selector! AVDelegatingPlaybackCoordinatorSeekCommand::shouldBufferInAnticipationOfPlayback not bound +!missing-selector! AVFragmentedAsset::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVFragmentedAsset::loadTracksWithMediaCharacteristic:completionHandler: not bound !missing-selector! AVFragmentedAsset::loadTracksWithMediaType:completionHandler: not bound -!missing-selector! AVFragmentedAsset::loadTrackWithTrackID:completionHandler: not bound +!missing-selector! AVMutableComposition::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVMutableComposition::loadTracksWithMediaCharacteristic:completionHandler: not bound !missing-selector! AVMutableComposition::loadTracksWithMediaType:completionHandler: not bound -!missing-selector! AVMutableComposition::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVMutableVideoComposition::setSourceSampleDataTrackIDs: not bound !missing-selector! AVMutableVideoComposition::sourceSampleDataTrackIDs not bound !missing-selector! AVMutableVideoCompositionInstruction::requiredSourceSampleDataTrackIDs not bound @@ -178,14 +185,9 @@ !missing-type! AVDelegatingPlaybackCoordinator not bound !missing-type! AVDelegatingPlaybackCoordinatorBufferingCommand not bound !missing-type! AVDelegatingPlaybackCoordinatorPauseCommand not bound -!missing-type! AVDelegatingPlaybackCoordinatorPlaybackControlCommand not bound !missing-type! AVDelegatingPlaybackCoordinatorPlayCommand not bound +!missing-type! AVDelegatingPlaybackCoordinatorPlaybackControlCommand not bound !missing-type! AVDelegatingPlaybackCoordinatorSeekCommand not bound !missing-type! AVPlaybackCoordinator not bound !missing-type! AVPlayerPlaybackCoordinator not bound -!missing-enum! AVAudioRoutingArbitrationCategory not bound -!missing-field! AVAudioSessionSpatialAudioEnabledKey not bound -!missing-field! AVAudioSessionSpatialPlaybackCapabilitiesChangedNotification not bound -!missing-selector! AVAudioSession::setSupportsMultichannelContent:error: not bound -!missing-selector! AVAudioSession::supportsMultichannelContent not bound -!missing-selector! AVAudioSessionPortDescription::isSpatialAudioEnabled not bound +## appended from unclassified file diff --git a/tests/xtro-sharpie/tvOS-CHIP.todo b/tests/xtro-sharpie/tvOS-CHIP.todo new file mode 100644 index 000000000000..c8fb5b913d99 --- /dev/null +++ b/tests/xtro-sharpie/tvOS-CHIP.todo @@ -0,0 +1,152 @@ +!missing-enum! CHIPCommissioningFlow not bound +!missing-null-allowed! 'Chip.ChipOptionalQRCodeInfo[] Chip.ChipSetupPayload::GetAllOptionalVendorData(Foundation.NSError&)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String Chip.ChipDevice::OpenPairingWindow(System.nuint,System.nuint,System.nuint,Foundation.NSError&)' is missing an [NullAllowed] on return type +!missing-selector! CHIPAccountLogin::getSetupPIN:responseHandler: not bound +!missing-selector! CHIPAccountLogin::login:setupPIN:responseHandler: not bound +!missing-selector! CHIPAccountLogin::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPApplicationLauncher::launchApp:catalogVendorId:applicationId:responseHandler: not bound +!missing-selector! CHIPApplicationLauncher::readAttributeApplicationLauncherListWithResponseHandler: not bound +!missing-selector! CHIPApplicationLauncher::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPAudioOutput::readAttributeAudioOutputListWithResponseHandler: not bound +!missing-selector! CHIPAudioOutput::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPAudioOutput::renameOutput:name:responseHandler: not bound +!missing-selector! CHIPAudioOutput::selectOutput:responseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::configureAttributePresentValueWithMinInterval:maxInterval:responseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::configureAttributeStatusFlagsWithMinInterval:maxInterval:responseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::readAttributeOutOfServiceWithResponseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::readAttributePresentValueWithResponseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::readAttributeStatusFlagsWithResponseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::reportAttributePresentValueWithResponseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::reportAttributeStatusFlagsWithResponseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::writeAttributeOutOfServiceWithValue:responseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::writeAttributePresentValueWithValue:responseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeHardwareVersionStringWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeHardwareVersionWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeManufacturingDateWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributePartNumberWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeProductLabelWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeProductNameWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeProductURLWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeReachableWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeSerialNumberWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeSoftwareVersionStringWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeSoftwareVersionWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeUserLabelWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeVendorIDWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeVendorNameWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::writeAttributeUserLabelWithValue:responseHandler: not bound +!missing-selector! CHIPContentLaunch::launchContent:data:responseHandler: not bound +!missing-selector! CHIPContentLaunch::launchURL:displayString:responseHandler: not bound +!missing-selector! CHIPContentLaunch::readAttributeAcceptsHeaderListWithResponseHandler: not bound +!missing-selector! CHIPContentLaunch::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPContentLaunch::readAttributeSupportedStreamingTypesWithResponseHandler: not bound +!missing-selector! CHIPEthernetNetworkDiagnostics::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPEthernetNetworkDiagnostics::readAttributeCollisionCountWithResponseHandler: not bound +!missing-selector! CHIPEthernetNetworkDiagnostics::readAttributeOverrunCountWithResponseHandler: not bound +!missing-selector! CHIPEthernetNetworkDiagnostics::readAttributePacketRxCountWithResponseHandler: not bound +!missing-selector! CHIPEthernetNetworkDiagnostics::readAttributePacketTxCountWithResponseHandler: not bound +!missing-selector! CHIPEthernetNetworkDiagnostics::readAttributeTxErrCountWithResponseHandler: not bound +!missing-selector! CHIPEthernetNetworkDiagnostics::resetCounts: not bound +!missing-selector! CHIPFixedLabel::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPFixedLabel::readAttributeLabelListWithResponseHandler: not bound +!missing-selector! CHIPGeneralDiagnostics::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPGeneralDiagnostics::readAttributeNetworkInterfacesWithResponseHandler: not bound +!missing-selector! CHIPGeneralDiagnostics::readAttributeRebootCountWithResponseHandler: not bound +!missing-selector! CHIPKeypadInput::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPKeypadInput::sendKey:responseHandler: not bound +!missing-selector! CHIPMediaInput::hideInputStatus: not bound +!missing-selector! CHIPMediaInput::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPMediaInput::readAttributeMediaInputListWithResponseHandler: not bound +!missing-selector! CHIPMediaInput::renameInput:name:responseHandler: not bound +!missing-selector! CHIPMediaInput::selectInput:responseHandler: not bound +!missing-selector! CHIPMediaInput::showInputStatus: not bound +!missing-selector! CHIPMediaPlayback::mediaFastForward: not bound +!missing-selector! CHIPMediaPlayback::mediaNext: not bound +!missing-selector! CHIPMediaPlayback::mediaPause: not bound +!missing-selector! CHIPMediaPlayback::mediaPlay: not bound +!missing-selector! CHIPMediaPlayback::mediaPrevious: not bound +!missing-selector! CHIPMediaPlayback::mediaRewind: not bound +!missing-selector! CHIPMediaPlayback::mediaSkipBackward:responseHandler: not bound +!missing-selector! CHIPMediaPlayback::mediaSkipForward:responseHandler: not bound +!missing-selector! CHIPMediaPlayback::mediaSkipSeek:responseHandler: not bound +!missing-selector! CHIPMediaPlayback::mediaStartOver: not bound +!missing-selector! CHIPMediaPlayback::mediaStop: not bound +!missing-selector! CHIPMediaPlayback::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPOperationalCredentials::addOpCert:iCACertificate:iPKValue:caseAdminNode:adminVendorId:responseHandler: not bound +!missing-selector! CHIPOperationalCredentials::opCSRRequest:responseHandler: not bound +!missing-selector! CHIPRelativeHumidityMeasurement::configureAttributeMeasuredValueWithMinInterval:maxInterval:change:responseHandler: not bound +!missing-selector! CHIPRelativeHumidityMeasurement::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPRelativeHumidityMeasurement::readAttributeMaxMeasuredValueWithResponseHandler: not bound +!missing-selector! CHIPRelativeHumidityMeasurement::readAttributeMeasuredValueWithResponseHandler: not bound +!missing-selector! CHIPRelativeHumidityMeasurement::readAttributeMinMeasuredValueWithResponseHandler: not bound +!missing-selector! CHIPRelativeHumidityMeasurement::reportAttributeMeasuredValueWithResponseHandler: not bound +!missing-selector! CHIPSetupPayload::commissioningFlow not bound +!missing-selector! CHIPSetupPayload::setCommissioningFlow: not bound +!missing-selector! CHIPSoftwareDiagnostics::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPSoftwareDiagnostics::readAttributeCurrentHeapHighWatermarkWithResponseHandler: not bound +!missing-selector! CHIPSoftwareDiagnostics::resetWatermarks: not bound +!missing-selector! CHIPTargetNavigator::navigateTarget:data:responseHandler: not bound +!missing-selector! CHIPTargetNavigator::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPTargetNavigator::readAttributeTargetNavigatorListWithResponseHandler: not bound +!missing-selector! CHIPTestCluster::readAttributeListOctetStringWithResponseHandler: not bound +!missing-selector! CHIPTestCluster::readAttributeListStructOctetStringWithResponseHandler: not bound +!missing-selector! CHIPTestCluster::testUnknownCommand: not bound +!missing-selector! CHIPTrustedRootCertificates::addTrustedRootCertificate:responseHandler: not bound +!missing-selector! CHIPTrustedRootCertificates::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPTrustedRootCertificates::removeTrustedRootCertificate:responseHandler: not bound +!missing-selector! CHIPTvChannel::changeChannel:responseHandler: not bound +!missing-selector! CHIPTvChannel::changeChannelByNumber:minorNumber:responseHandler: not bound +!missing-selector! CHIPTvChannel::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPTvChannel::readAttributeCurrentTvChannelWithResponseHandler: not bound +!missing-selector! CHIPTvChannel::readAttributeTvChannelLineupWithResponseHandler: not bound +!missing-selector! CHIPTvChannel::readAttributeTvChannelListWithResponseHandler: not bound +!missing-selector! CHIPTvChannel::skipChannel:responseHandler: not bound +!missing-selector! CHIPWakeOnLan::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPWakeOnLan::readAttributeWakeOnLanMacAddressWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::configureAttributeConfigStatusWithMinInterval:maxInterval:responseHandler: not bound +!missing-selector! CHIPWindowCovering::configureAttributeCurrentPositionLiftWithMinInterval:maxInterval:change:responseHandler: not bound +!missing-selector! CHIPWindowCovering::configureAttributeCurrentPositionTiltWithMinInterval:maxInterval:change:responseHandler: not bound +!missing-selector! CHIPWindowCovering::configureAttributeWindowCoveringTypeWithMinInterval:maxInterval:responseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeConfigStatusWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeCurrentPositionLiftWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeCurrentPositionTiltWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeInstalledClosedLimitLiftWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeInstalledClosedLimitTiltWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeInstalledOpenLimitLiftWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeInstalledOpenLimitTiltWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeModeWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeWindowCoveringTypeWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::reportAttributeConfigStatusWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::reportAttributeCurrentPositionLiftWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::reportAttributeCurrentPositionTiltWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::reportAttributeWindowCoveringTypeWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::windowCoveringDownClose: not bound +!missing-selector! CHIPWindowCovering::windowCoveringGoToLiftPercentage:responseHandler: not bound +!missing-selector! CHIPWindowCovering::windowCoveringGoToLiftValue:responseHandler: not bound +!missing-selector! CHIPWindowCovering::windowCoveringGoToTiltPercentage:responseHandler: not bound +!missing-selector! CHIPWindowCovering::windowCoveringGoToTiltValue:responseHandler: not bound +!missing-selector! CHIPWindowCovering::windowCoveringStop: not bound +!missing-selector! CHIPWindowCovering::windowCoveringUpOpen: not bound +!missing-selector! CHIPWindowCovering::writeAttributeModeWithValue:responseHandler: not bound +!missing-type! CHIPAccountLogin not bound +!missing-type! CHIPApplicationLauncher not bound +!missing-type! CHIPAudioOutput not bound +!missing-type! CHIPBinaryInputBasic not bound +!missing-type! CHIPBridgedDeviceBasic not bound +!missing-type! CHIPContentLaunch not bound +!missing-type! CHIPEthernetNetworkDiagnostics not bound +!missing-type! CHIPFixedLabel not bound +!missing-type! CHIPGeneralDiagnostics not bound +!missing-type! CHIPKeypadInput not bound +!missing-type! CHIPMediaInput not bound +!missing-type! CHIPMediaPlayback not bound +!missing-type! CHIPRelativeHumidityMeasurement not bound +!missing-type! CHIPSoftwareDiagnostics not bound +!missing-type! CHIPTargetNavigator not bound +!missing-type! CHIPTrustedRootCertificates not bound +!missing-type! CHIPTvChannel not bound +!missing-type! CHIPWakeOnLan not bound +!missing-type! CHIPWindowCovering not bound diff --git a/tests/xtro-sharpie/tvOS-CoreImage.todo b/tests/xtro-sharpie/tvOS-CoreImage.todo index 1ff94077887c..24d6b7c30b43 100644 --- a/tests/xtro-sharpie/tvOS-CoreImage.todo +++ b/tests/xtro-sharpie/tvOS-CoreImage.todo @@ -15,6 +15,7 @@ !missing-selector! +CIFilter::linearLightBlendModeFilter not bound !missing-selector! +CIFilter::personSegmentationFilter not bound !missing-selector! +CIFilter::vividLightBlendModeFilter not bound +!missing-selector! +CIKernel::kernelsWithMetalString:error: not bound !missing-selector! +CIRAWFilter::filterWithCVPixelBuffer:properties: not bound !missing-selector! +CIRAWFilter::filterWithImageData:identifierHint: not bound !missing-selector! +CIRAWFilter::filterWithImageURL: not bound diff --git a/tests/xtro-sharpie/tvOS-CoreMIDI.todo b/tests/xtro-sharpie/tvOS-CoreMIDI.todo index 935a4222a3c4..05a1dddbc829 100644 --- a/tests/xtro-sharpie/tvOS-CoreMIDI.todo +++ b/tests/xtro-sharpie/tvOS-CoreMIDI.todo @@ -1,44 +1,15 @@ +!missing-enum! MIDICVStatus not bound +!missing-enum! MIDIMessageType not bound +!missing-enum! MIDINetworkConnectionPolicy not bound +!missing-enum! MIDINoteAttributeType not bound !missing-enum! MIDINotificationMessageID not bound !missing-enum! MIDIObjectType not bound +!missing-enum! MIDIPerNoteManagementOptions not bound +!missing-enum! MIDIProgramChangeOptions not bound !missing-enum! MIDIProtocolID not bound -!missing-pinvoke! MIDIClientCreate is not bound -!missing-pinvoke! MIDIClientDispose is not bound -!missing-pinvoke! MIDIDestinationCreate is not bound -!missing-pinvoke! MIDIDeviceGetEntity is not bound -!missing-pinvoke! MIDIDeviceGetNumberOfEntities is not bound -!missing-pinvoke! MIDIEndpointDispose is not bound -!missing-pinvoke! MIDIEndpointGetEntity is not bound -!missing-pinvoke! MIDIEntityGetDestination is not bound -!missing-pinvoke! MIDIEntityGetDevice is not bound -!missing-pinvoke! MIDIEntityGetNumberOfDestinations is not bound -!missing-pinvoke! MIDIEntityGetNumberOfSources is not bound -!missing-pinvoke! MIDIEntityGetSource is not bound -!missing-pinvoke! MIDIFlushOutput is not bound -!missing-pinvoke! MIDIGetDestination is not bound -!missing-pinvoke! MIDIGetDevice is not bound -!missing-pinvoke! MIDIGetExternalDevice is not bound -!missing-pinvoke! MIDIGetNumberOfDestinations is not bound -!missing-pinvoke! MIDIGetNumberOfDevices is not bound -!missing-pinvoke! MIDIGetNumberOfExternalDevices is not bound -!missing-pinvoke! MIDIGetNumberOfSources is not bound -!missing-pinvoke! MIDIGetSource is not bound -!missing-pinvoke! MIDIInputPortCreate is not bound -!missing-pinvoke! MIDIObjectFindByUniqueID is not bound -!missing-pinvoke! MIDIObjectGetDataProperty is not bound -!missing-pinvoke! MIDIObjectGetDictionaryProperty is not bound -!missing-pinvoke! MIDIObjectGetIntegerProperty is not bound -!missing-pinvoke! MIDIObjectGetProperties is not bound -!missing-pinvoke! MIDIObjectGetStringProperty is not bound -!missing-pinvoke! MIDIObjectRemoveProperty is not bound -!missing-pinvoke! MIDIObjectSetDataProperty is not bound -!missing-pinvoke! MIDIObjectSetDictionaryProperty is not bound -!missing-pinvoke! MIDIObjectSetIntegerProperty is not bound -!missing-pinvoke! MIDIObjectSetStringProperty is not bound -!missing-pinvoke! MIDIOutputPortCreate is not bound -!missing-pinvoke! MIDIPortConnectSource is not bound -!missing-pinvoke! MIDIPortDisconnectSource is not bound -!missing-pinvoke! MIDIPortDispose is not bound -!missing-pinvoke! MIDIReceived is not bound -!missing-pinvoke! MIDIRestart is not bound -!missing-pinvoke! MIDISend is not bound -!missing-pinvoke! MIDISourceCreate is not bound +!missing-enum! MIDISysExStatus not bound +!missing-enum! MIDISystemStatus not bound +!missing-enum! MIDITransformControlType not bound +!missing-enum! MIDITransformType not bound +!missing-enum! MIDIUtilityStatus not bound +!missing-pinvoke! MIDIEventListForEachEvent is not bound diff --git a/tests/xtro-sharpie/tvOS-GameController.todo b/tests/xtro-sharpie/tvOS-GameController.todo new file mode 100644 index 000000000000..b4b4b4500e69 --- /dev/null +++ b/tests/xtro-sharpie/tvOS-GameController.todo @@ -0,0 +1,5 @@ +!missing-field! GCInputDirectionalCenterButton not bound +!missing-field! GCInputDirectionalTouchSurfaceButton not bound +!missing-field! GCInputMicroGamepadButtonA not bound +!missing-field! GCInputMicroGamepadButtonX not bound +!missing-field! GCInputMicroGamepadDpad not bound diff --git a/tests/xtro-sharpie/tvOS-HomeKit.todo b/tests/xtro-sharpie/tvOS-HomeKit.todo index 46acacf44081..8cb0787869f0 100644 --- a/tests/xtro-sharpie/tvOS-HomeKit.todo +++ b/tests/xtro-sharpie/tvOS-HomeKit.todo @@ -1,18 +1,16 @@ !missing-enum-value! HMError native value HMErrorCodeAccessoryIsSuspended = 103 not bound -!missing-selector! HMAccessorySetupManager::addAndSetUpAccessoriesForTopology:completionHandler: not bound !missing-selector! HMCHIPServiceHome::initWithUUID:name: not bound !missing-selector! HMCHIPServiceHome::name not bound !missing-selector! HMCHIPServiceHome::uuid not bound !missing-selector! HMCHIPServiceRequestHandler::configureAccessoryWithName:room:completion: not bound !missing-selector! HMCHIPServiceRequestHandler::fetchRoomsInHome:completion: not bound +!missing-selector! HMCHIPServiceRequestHandler::pairAccessoryInHome:onboardingPayload:completion: not bound !missing-selector! HMCHIPServiceRoom::initWithUUID:name: not bound !missing-selector! HMCHIPServiceRoom::name not bound !missing-selector! HMCHIPServiceRoom::uuid not bound !missing-selector! HMCHIPServiceTopology::homes not bound !missing-selector! HMCHIPServiceTopology::initWithHomes: not bound -!missing-type! HMAccessorySetupManager not bound !missing-type! HMCHIPServiceHome not bound !missing-type! HMCHIPServiceRequestHandler not bound !missing-type! HMCHIPServiceRoom not bound !missing-type! HMCHIPServiceTopology not bound -!missing-selector! HMCHIPServiceRequestHandler::pairAccessoryInHome:onboardingPayload:completion: not bound diff --git a/tests/xtro-sharpie/tvOS-ImageIO.todo b/tests/xtro-sharpie/tvOS-ImageIO.todo new file mode 100644 index 000000000000..b5a8ec1f4414 --- /dev/null +++ b/tests/xtro-sharpie/tvOS-ImageIO.todo @@ -0,0 +1 @@ +!missing-field! kCGImagePropertyPNGPixelsAspectRatio not bound diff --git a/tests/xtro-sharpie/tvOS-Metal.todo b/tests/xtro-sharpie/tvOS-Metal.todo index e53a0ed4aefc..479cf5261218 100644 --- a/tests/xtro-sharpie/tvOS-Metal.todo +++ b/tests/xtro-sharpie/tvOS-Metal.todo @@ -14,7 +14,8 @@ !missing-protocol! MTLFunctionStitchingAttribute not bound !missing-protocol! MTLFunctionStitchingNode not bound !missing-protocol-member! MTLBinaryArchive::addFunctionWithDescriptor:library:error: not found -!missing-protocol-member! MTLDevice::newLibraryWithDescriptor:error: not found +!missing-protocol-member! MTLDevice::newLibraryWithStitchedDescriptor:completionHandler: not found +!missing-protocol-member! MTLDevice::newLibraryWithStitchedDescriptor:error: not found !missing-protocol-member! MTLDevice::supportsRenderDynamicLibraries not found !missing-selector! MTLComputePipelineDescriptor::preloadedLibraries not bound !missing-selector! MTLComputePipelineDescriptor::setPreloadedLibraries: not bound @@ -41,25 +42,24 @@ !missing-selector! MTLFunctionStitchingInputNode::setArgumentIndex: not bound !missing-selector! MTLLinkedFunctions::privateFunctions not bound !missing-selector! MTLLinkedFunctions::setPrivateFunctions: not bound +!missing-selector! MTLRenderPipelineDescriptor::fragmentLinkedFunctions not bound !missing-selector! MTLRenderPipelineDescriptor::fragmentPreloadedLibraries not bound +!missing-selector! MTLRenderPipelineDescriptor::setFragmentLinkedFunctions: not bound !missing-selector! MTLRenderPipelineDescriptor::setFragmentPreloadedLibraries: not bound +!missing-selector! MTLRenderPipelineDescriptor::setVertexLinkedFunctions: not bound !missing-selector! MTLRenderPipelineDescriptor::setVertexPreloadedLibraries: not bound +!missing-selector! MTLRenderPipelineDescriptor::vertexLinkedFunctions not bound !missing-selector! MTLRenderPipelineDescriptor::vertexPreloadedLibraries not bound !missing-selector! MTLStitchedLibraryDescriptor::functionGraphs not bound !missing-selector! MTLStitchedLibraryDescriptor::functions not bound !missing-selector! MTLStitchedLibraryDescriptor::setFunctionGraphs: not bound !missing-selector! MTLStitchedLibraryDescriptor::setFunctions: not bound +!missing-selector! MTLTileRenderPipelineDescriptor::linkedFunctions not bound !missing-selector! MTLTileRenderPipelineDescriptor::preloadedLibraries not bound +!missing-selector! MTLTileRenderPipelineDescriptor::setLinkedFunctions: not bound !missing-selector! MTLTileRenderPipelineDescriptor::setPreloadedLibraries: not bound !missing-type! MTLFunctionStitchingAttributeAlwaysInline not bound !missing-type! MTLFunctionStitchingFunctionNode not bound !missing-type! MTLFunctionStitchingGraph not bound !missing-type! MTLFunctionStitchingInputNode not bound !missing-type! MTLStitchedLibraryDescriptor not bound -!missing-protocol-member! MTLDevice::newLibraryWithDescriptor:completionHandler: not found -!missing-selector! MTLRenderPipelineDescriptor::fragmentLinkedFunctions not bound -!missing-selector! MTLRenderPipelineDescriptor::setFragmentLinkedFunctions: not bound -!missing-selector! MTLRenderPipelineDescriptor::setVertexLinkedFunctions: not bound -!missing-selector! MTLRenderPipelineDescriptor::vertexLinkedFunctions not bound -!missing-selector! MTLTileRenderPipelineDescriptor::linkedFunctions not bound -!missing-selector! MTLTileRenderPipelineDescriptor::setLinkedFunctions: not bound diff --git a/tests/xtro-sharpie/tvOS-MetalPerformanceShadersGraph.todo b/tests/xtro-sharpie/tvOS-MetalPerformanceShadersGraph.todo index 26186889ea1d..fdfb87e16dc4 100644 --- a/tests/xtro-sharpie/tvOS-MetalPerformanceShadersGraph.todo +++ b/tests/xtro-sharpie/tvOS-MetalPerformanceShadersGraph.todo @@ -3,45 +3,70 @@ !missing-enum! MPSGraphOptions not bound !missing-enum! MPSGraphPaddingMode not bound !missing-enum! MPSGraphPaddingStyle not bound +!missing-enum! MPSGraphReductionMode not bound !missing-enum! MPSGraphResizeMode not bound +!missing-enum! MPSGraphScatterMode not bound +!missing-enum! MPSGraphSparseStorageType not bound !missing-enum! MPSGraphTensorNamedDataLayout not bound !missing-selector! +MPSGraphConvolution2DOpDescriptor::descriptorWithStrideInX:strideInY:dilationRateInX:dilationRateInY:groups:paddingLeft:paddingRight:paddingTop:paddingBottom:paddingStyle:dataLayout:weightsLayout: not bound !missing-selector! +MPSGraphConvolution2DOpDescriptor::descriptorWithStrideInX:strideInY:dilationRateInX:dilationRateInY:groups:paddingStyle:dataLayout:weightsLayout: not bound +!missing-selector! +MPSGraphCreateSparseOpDescriptor::descriptorWithStorageType:dataType: not bound !missing-selector! +MPSGraphDepthwiseConvolution2DOpDescriptor::descriptorWithDataLayout:weightsLayout: not bound !missing-selector! +MPSGraphDepthwiseConvolution2DOpDescriptor::descriptorWithStrideInX:strideInY:dilationRateInX:dilationRateInY:paddingLeft:paddingRight:paddingTop:paddingBottom:paddingStyle:dataLayout:weightsLayout: not bound +!missing-selector! +MPSGraphDepthwiseConvolution3DOpDescriptor::descriptorWithPaddingStyle: not bound +!missing-selector! +MPSGraphDepthwiseConvolution3DOpDescriptor::descriptorWithStrides:dilationRates:paddingValues:paddingStyle: not bound !missing-selector! +MPSGraphDevice::deviceWithMTLDevice: not bound !missing-selector! +MPSGraphPooling2DOpDescriptor::descriptorWithKernelWidth:kernelHeight:strideInX:strideInY:dilationRateInX:dilationRateInY:paddingLeft:paddingRight:paddingTop:paddingBottom:paddingStyle:dataLayout: not bound !missing-selector! +MPSGraphPooling2DOpDescriptor::descriptorWithKernelWidth:kernelHeight:strideInX:strideInY:paddingStyle:dataLayout: not bound +!missing-selector! +MPSGraphPooling4DOpDescriptor::descriptorWithKernelSizes:paddingStyle: not bound +!missing-selector! +MPSGraphPooling4DOpDescriptor::descriptorWithKernelSizes:strides:dilationRates:paddingValues:paddingStyle: not bound +!missing-selector! +MPSGraphStencilOpDescriptor::descriptorWithExplicitPadding: not bound +!missing-selector! +MPSGraphStencilOpDescriptor::descriptorWithOffsets:explicitPadding: not bound +!missing-selector! +MPSGraphStencilOpDescriptor::descriptorWithPaddingStyle: not bound +!missing-selector! +MPSGraphStencilOpDescriptor::descriptorWithReductionMode:offsets:strides:dilationRates:explicitPadding:boundaryMode:paddingStyle:paddingConstant: not bound +!missing-selector! MPSGraph::L2NormPooling4DGradientWithGradientTensor:sourceTensor:descriptor:name: not bound +!missing-selector! MPSGraph::L2NormPooling4DWithSourceTensor:descriptor:name: not bound !missing-selector! MPSGraph::absoluteWithTensor:name: not bound -!missing-selector! MPSGraph::acoshWithTensor:name: not bound !missing-selector! MPSGraph::acosWithTensor:name: not bound +!missing-selector! MPSGraph::acoshWithTensor:name: not bound !missing-selector! MPSGraph::additionWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::applyStochasticGradientDescentWithLearningRateTensor:variable:gradientTensor:name: not bound -!missing-selector! MPSGraph::asinhWithTensor:name: not bound !missing-selector! MPSGraph::asinWithTensor:name: not bound +!missing-selector! MPSGraph::asinhWithTensor:name: not bound !missing-selector! MPSGraph::assignVariable:withValueOfTensor:name: not bound !missing-selector! MPSGraph::atan2WithPrimaryTensor:secondaryTensor:name: not bound -!missing-selector! MPSGraph::atanhWithTensor:name: not bound !missing-selector! MPSGraph::atanWithTensor:name: not bound +!missing-selector! MPSGraph::atanhWithTensor:name: not bound !missing-selector! MPSGraph::avgPooling2DGradientWithGradientTensor:sourceTensor:descriptor:name: not bound !missing-selector! MPSGraph::avgPooling2DWithSourceTensor:descriptor:name: not bound +!missing-selector! MPSGraph::avgPooling4DGradientWithGradientTensor:sourceTensor:descriptor:name: not bound +!missing-selector! MPSGraph::avgPooling4DWithSourceTensor:descriptor:name: not bound !missing-selector! MPSGraph::ceilWithTensor:name: not bound !missing-selector! MPSGraph::clampWithTensor:minValueTensor:maxValueTensor:name: not bound +!missing-selector! MPSGraph::compileWithDevice:feeds:targetTensors:targetOperations:compilationDescriptor: not bound !missing-selector! MPSGraph::concatTensor:withTensor:dimension:name: not bound +!missing-selector! MPSGraph::concatTensors:dimension:interleave:name: not bound !missing-selector! MPSGraph::concatTensors:dimension:name: not bound !missing-selector! MPSGraph::constantWithData:shape:dataType: not bound +!missing-selector! MPSGraph::constantWithScalar:dataType: not bound !missing-selector! MPSGraph::constantWithScalar:shape:dataType: not bound +!missing-selector! MPSGraph::controlDependencyWithOperations:dependentBlock:name: not bound !missing-selector! MPSGraph::convolution2DDataGradientWithIncomingGradientTensor:weightsTensor:outputShape:forwardConvolutionDescriptor:name: not bound !missing-selector! MPSGraph::convolution2DWeightsGradientWithIncomingGradientTensor:sourceTensor:outputShape:forwardConvolutionDescriptor:name: not bound !missing-selector! MPSGraph::convolution2DWithSourceTensor:weightsTensor:descriptor:name: not bound !missing-selector! MPSGraph::convolutionTranspose2DDataGradientWithIncomingGradientTensor:weightsTensor:outputShape:forwardConvolutionDescriptor:name: not bound !missing-selector! MPSGraph::convolutionTranspose2DWeightsGradientWithIncomingGradientTensor:sourceTensor:outputShape:forwardConvolutionDescriptor:name: not bound !missing-selector! MPSGraph::convolutionTranspose2DWithSourceTensor:weightsTensor:outputShape:descriptor:name: not bound -!missing-selector! MPSGraph::coshWithTensor:name: not bound !missing-selector! MPSGraph::cosWithTensor:name: not bound +!missing-selector! MPSGraph::coshWithTensor:name: not bound +!missing-selector! MPSGraph::depthToSpace2DTensor:widthAxis:heightAxis:depthAxis:blockSize:usePixelShuffleOrder:name: not bound +!missing-selector! MPSGraph::depthToSpace2DTensor:widthAxisTensor:heightAxisTensor:depthAxisTensor:blockSize:usePixelShuffleOrder:name: not bound !missing-selector! MPSGraph::depthwiseConvolution2DDataGradientWithIncomingGradientTensor:weightsTensor:outputShape:descriptor:name: not bound !missing-selector! MPSGraph::depthwiseConvolution2DWeightsGradientWithIncomingGradientTensor:sourceTensor:outputShape:descriptor:name: not bound !missing-selector! MPSGraph::depthwiseConvolution2DWithSourceTensor:weightsTensor:descriptor:name: not bound +!missing-selector! MPSGraph::depthwiseConvolution3DDataGradientWithIncomingGradientTensor:weightsTensor:outputShape:descriptor:name: not bound +!missing-selector! MPSGraph::depthwiseConvolution3DWeightsGradientWithIncomingGradientTensor:sourceTensor:outputShape:descriptor:name: not bound +!missing-selector! MPSGraph::depthwiseConvolution3DWithSourceTensor:weightsTensor:descriptor:name: not bound !missing-selector! MPSGraph::divisionNoNaNWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::divisionWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::dropoutTensor:rate:name: not bound @@ -53,14 +78,19 @@ !missing-selector! MPSGraph::exponentBase10WithTensor:name: not bound !missing-selector! MPSGraph::exponentBase2WithTensor:name: not bound !missing-selector! MPSGraph::exponentWithTensor:name: not bound +!missing-selector! MPSGraph::flatten2DTensor:axis:name: not bound +!missing-selector! MPSGraph::flatten2DTensor:axisTensor:name: not bound !missing-selector! MPSGraph::floorModuloWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::floorWithTensor:name: not bound +!missing-selector! MPSGraph::forLoopWithLowerBound:upperBound:step:initialBodyArguments:body:name: not bound +!missing-selector! MPSGraph::forLoopWithNumberOfIterations:initialBodyArguments:body:name: not bound !missing-selector! MPSGraph::gatherNDWithUpdatesTensor:indicesTensor:batchDimensions:name: not bound !missing-selector! MPSGraph::gatherWithUpdatesTensor:indicesTensor:axis:batchDimensions:name: not bound !missing-selector! MPSGraph::gradientForPrimaryTensor:withTensors:name: not bound !missing-selector! MPSGraph::greaterThanOrEqualToWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::greaterThanWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::identityWithTensor:name: not bound +!missing-selector! MPSGraph::ifWithPredicateTensor:thenBlock:elseBlock:name: not bound !missing-selector! MPSGraph::init not bound !missing-selector! MPSGraph::isFiniteWithTensor:name: not bound !missing-selector! MPSGraph::isInfiniteWithTensor:name: not bound @@ -77,10 +107,14 @@ !missing-selector! MPSGraph::logicalXNORWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::logicalXORWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::matrixMultiplicationWithPrimaryTensor:secondaryTensor:name: not bound -!missing-selector! MPSGraph::maximumWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::maxPooling2DGradientWithGradientTensor:sourceTensor:descriptor:name: not bound !missing-selector! MPSGraph::maxPooling2DWithSourceTensor:descriptor:name: not bound +!missing-selector! MPSGraph::maxPooling4DGradientWithGradientTensor:sourceTensor:descriptor:name: not bound +!missing-selector! MPSGraph::maxPooling4DWithSourceTensor:descriptor:name: not bound +!missing-selector! MPSGraph::maximumWithNaNPropagationWithPrimaryTensor:secondaryTensor:name: not bound +!missing-selector! MPSGraph::maximumWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::meanOfTensor:axes:name: not bound +!missing-selector! MPSGraph::minimumWithNaNPropagationWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::minimumWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::moduloWithPrimaryTensor:secondaryTensor:name: not bound !missing-selector! MPSGraph::multiplicationWithPrimaryTensor:secondaryTensor:name: not bound @@ -104,8 +138,12 @@ !missing-selector! MPSGraph::placeholderWithShape:dataType:name: not bound !missing-selector! MPSGraph::placeholderWithShape:name: not bound !missing-selector! MPSGraph::powerWithPrimaryTensor:secondaryTensor:name: not bound +!missing-selector! MPSGraph::reLUGradientWithIncomingGradient:sourceTensor:name: not bound +!missing-selector! MPSGraph::reLUWithTensor:name: not bound !missing-selector! MPSGraph::readVariable:name: not bound !missing-selector! MPSGraph::reciprocalWithTensor:name: not bound +!missing-selector! MPSGraph::reductionArgMaximumWithTensor:axis:name: not bound +!missing-selector! MPSGraph::reductionArgMinimumWithTensor:axis:name: not bound !missing-selector! MPSGraph::reductionMaximumWithTensor:axes:name: not bound !missing-selector! MPSGraph::reductionMaximumWithTensor:axis:name: not bound !missing-selector! MPSGraph::reductionMinimumWithTensor:axes:name: not bound @@ -114,12 +152,13 @@ !missing-selector! MPSGraph::reductionProductWithTensor:axis:name: not bound !missing-selector! MPSGraph::reductionSumWithTensor:axes:name: not bound !missing-selector! MPSGraph::reductionSumWithTensor:axis:name: not bound -!missing-selector! MPSGraph::reLUGradientWithIncomingGradient:sourceTensor:name: not bound -!missing-selector! MPSGraph::reLUWithTensor:name: not bound !missing-selector! MPSGraph::reshapeTensor:withShape:name: not bound !missing-selector! MPSGraph::resizeTensor:size:mode:centerResult:alignCorners:layout:name: not bound !missing-selector! MPSGraph::resizeWithGradientTensor:input:mode:centerResult:alignCorners:layout:name: not bound !missing-selector! MPSGraph::reverseSquareRootWithTensor:name: not bound +!missing-selector! MPSGraph::reverseTensor:axes:name: not bound +!missing-selector! MPSGraph::reverseTensor:axesTensor:name: not bound +!missing-selector! MPSGraph::reverseTensor:name: not bound !missing-selector! MPSGraph::rintWithTensor:name: not bound !missing-selector! MPSGraph::roundWithTensor:name: not bound !missing-selector! MPSGraph::runAsyncWithFeeds:targetTensors:targetOperations:executionDescriptor: not bound @@ -128,32 +167,44 @@ !missing-selector! MPSGraph::runWithFeeds:targetTensors:targetOperations: not bound !missing-selector! MPSGraph::runWithMTLCommandQueue:feeds:targetOperations:resultsDictionary: not bound !missing-selector! MPSGraph::runWithMTLCommandQueue:feeds:targetTensors:targetOperations: not bound +!missing-selector! MPSGraph::scatterNDWithUpdatesTensor:indicesTensor:shape:batchDimensions:mode:name: not bound !missing-selector! MPSGraph::scatterNDWithUpdatesTensor:indicesTensor:shape:batchDimensions:name: not bound !missing-selector! MPSGraph::selectWithPredicateTensor:truePredicateTensor:falsePredicateTensor:name: not bound !missing-selector! MPSGraph::setOptions: not bound !missing-selector! MPSGraph::sigmoidGradientWithIncomingGradient:sourceTensor:name: not bound !missing-selector! MPSGraph::sigmoidWithTensor:name: not bound -!missing-selector! MPSGraph::signbitWithTensor:name: not bound !missing-selector! MPSGraph::signWithTensor:name: not bound -!missing-selector! MPSGraph::sinhWithTensor:name: not bound +!missing-selector! MPSGraph::signbitWithTensor:name: not bound !missing-selector! MPSGraph::sinWithTensor:name: not bound +!missing-selector! MPSGraph::sinhWithTensor:name: not bound +!missing-selector! MPSGraph::sliceGradientTensor:fwdInShapeTensor:starts:ends:strides:name: not bound +!missing-selector! MPSGraph::sliceGradientTensor:fwdInShapeTensor:starts:ends:strides:startMask:endMask:squeezeMask:name: not bound !missing-selector! MPSGraph::sliceTensor:dimension:start:length:name: not bound +!missing-selector! MPSGraph::sliceTensor:starts:ends:strides:name: not bound +!missing-selector! MPSGraph::sliceTensor:starts:ends:strides:startMask:endMask:squeezeMask:name: not bound !missing-selector! MPSGraph::softMaxCrossEntropyGradientWithIncomingGradientTensor:sourceTensor:labelsTensor:axis:reductionType:name: not bound !missing-selector! MPSGraph::softMaxCrossEntropyWithSourceTensor:labelsTensor:axis:reductionType:name: not bound !missing-selector! MPSGraph::softMaxGradientWithIncomingGradient:sourceTensor:axis:name: not bound !missing-selector! MPSGraph::softMaxWithTensor:axis:name: not bound +!missing-selector! MPSGraph::spaceToDepth2DTensor:widthAxis:heightAxis:depthAxis:blockSize:usePixelShuffleOrder:name: not bound +!missing-selector! MPSGraph::spaceToDepth2DTensor:widthAxisTensor:heightAxisTensor:depthAxisTensor:blockSize:usePixelShuffleOrder:name: not bound +!missing-selector! MPSGraph::sparseTensorWithDescriptor:tensors:shape:name: not bound +!missing-selector! MPSGraph::sparseTensorWithType:tensors:shape:dataType:name: not bound !missing-selector! MPSGraph::squareRootWithTensor:name: not bound !missing-selector! MPSGraph::squareWithTensor:name: not bound +!missing-selector! MPSGraph::stencilWithSourceTensor:weightsTensor:descriptor:name: not bound !missing-selector! MPSGraph::stochasticGradientDescentWithLearningRateTensor:valuesTensor:gradientTensor:name: not bound !missing-selector! MPSGraph::subtractionWithPrimaryTensor:secondaryTensor:name: not bound -!missing-selector! MPSGraph::tanhWithTensor:name: not bound !missing-selector! MPSGraph::tanWithTensor:name: not bound +!missing-selector! MPSGraph::tanhWithTensor:name: not bound !missing-selector! MPSGraph::tileGradientWithIncomingGradientTensor:sourceTensor:withMultiplier:name: not bound !missing-selector! MPSGraph::tileTensor:withMultiplier:name: not bound !missing-selector! MPSGraph::transposeTensor:dimension:withDimension:name: not bound !missing-selector! MPSGraph::variableWithData:shape:dataType:name: not bound !missing-selector! MPSGraph::varianceOfTensor:axes:name: not bound !missing-selector! MPSGraph::varianceOfTensor:meanTensor:axes:name: not bound +!missing-selector! MPSGraph::whileWithInitialInputs:before:after:name: not bound +!missing-selector! MPSGraphCompilationDescriptor::disableTypeInference not bound !missing-selector! MPSGraphConvolution2DOpDescriptor::dataLayout not bound !missing-selector! MPSGraphConvolution2DOpDescriptor::dilationRateInX not bound !missing-selector! MPSGraphConvolution2DOpDescriptor::dilationRateInY not bound @@ -179,6 +230,10 @@ !missing-selector! MPSGraphConvolution2DOpDescriptor::strideInX not bound !missing-selector! MPSGraphConvolution2DOpDescriptor::strideInY not bound !missing-selector! MPSGraphConvolution2DOpDescriptor::weightsLayout not bound +!missing-selector! MPSGraphCreateSparseOpDescriptor::dataType not bound +!missing-selector! MPSGraphCreateSparseOpDescriptor::setDataType: not bound +!missing-selector! MPSGraphCreateSparseOpDescriptor::setSparseStorageType: not bound +!missing-selector! MPSGraphCreateSparseOpDescriptor::sparseStorageType not bound !missing-selector! MPSGraphDepthwiseConvolution2DOpDescriptor::dataLayout not bound !missing-selector! MPSGraphDepthwiseConvolution2DOpDescriptor::dilationRateInX not bound !missing-selector! MPSGraphDepthwiseConvolution2DOpDescriptor::dilationRateInY not bound @@ -202,8 +257,32 @@ !missing-selector! MPSGraphDepthwiseConvolution2DOpDescriptor::strideInX not bound !missing-selector! MPSGraphDepthwiseConvolution2DOpDescriptor::strideInY not bound !missing-selector! MPSGraphDepthwiseConvolution2DOpDescriptor::weightsLayout not bound +!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::channelDimensionIndex not bound +!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::dilationRates not bound +!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::paddingStyle not bound +!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::paddingValues not bound +!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::setChannelDimensionIndex: not bound +!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::setDilationRates: not bound +!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::setPaddingStyle: not bound +!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::setPaddingValues: not bound +!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::setStrides: not bound +!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::strides not bound !missing-selector! MPSGraphDevice::metalDevice not bound !missing-selector! MPSGraphDevice::type not bound +!missing-selector! MPSGraphExecutable::encodeToCommandBuffer:inputsArray:resultsArray:executionDescriptor: not bound +!missing-selector! MPSGraphExecutable::feedTensors not bound +!missing-selector! MPSGraphExecutable::options not bound +!missing-selector! MPSGraphExecutable::runAsyncWithMTLCommandQueue:inputsArray:resultsArray:executionDescriptor: not bound +!missing-selector! MPSGraphExecutable::runWithMTLCommandQueue:inputsArray:resultsArray:executionDescriptor: not bound +!missing-selector! MPSGraphExecutable::setOptions: not bound +!missing-selector! MPSGraphExecutable::specializeWithDevice:inputTypes:compilationDescriptor: not bound +!missing-selector! MPSGraphExecutable::targetTensors not bound +!missing-selector! MPSGraphExecutableExecutionDescriptor::completionHandler not bound +!missing-selector! MPSGraphExecutableExecutionDescriptor::scheduledHandler not bound +!missing-selector! MPSGraphExecutableExecutionDescriptor::setCompletionHandler: not bound +!missing-selector! MPSGraphExecutableExecutionDescriptor::setScheduledHandler: not bound +!missing-selector! MPSGraphExecutableExecutionDescriptor::setWaitUntilCompleted: not bound +!missing-selector! MPSGraphExecutableExecutionDescriptor::waitUntilCompleted not bound !missing-selector! MPSGraphExecutionDescriptor::completionHandler not bound !missing-selector! MPSGraphExecutionDescriptor::scheduledHandler not bound !missing-selector! MPSGraphExecutionDescriptor::setCompletionHandler: not bound @@ -240,118 +319,6 @@ !missing-selector! MPSGraphPooling2DOpDescriptor::setStrideInY: not bound !missing-selector! MPSGraphPooling2DOpDescriptor::strideInX not bound !missing-selector! MPSGraphPooling2DOpDescriptor::strideInY not bound -!missing-selector! MPSGraphShapedType::dataType not bound -!missing-selector! MPSGraphShapedType::initWithShape:dataType: not bound -!missing-selector! MPSGraphShapedType::isEqualTo: not bound -!missing-selector! MPSGraphShapedType::setDataType: not bound -!missing-selector! MPSGraphShapedType::setShape: not bound -!missing-selector! MPSGraphShapedType::shape not bound -!missing-selector! MPSGraphTensor::dataType not bound -!missing-selector! MPSGraphTensor::operation not bound -!missing-selector! MPSGraphTensor::shape not bound -!missing-selector! MPSGraphTensorData::dataType not bound -!missing-selector! MPSGraphTensorData::device not bound -!missing-selector! MPSGraphTensorData::initWithDevice:data:shape:dataType: not bound -!missing-selector! MPSGraphTensorData::initWithMPSImageBatch: not bound -!missing-selector! MPSGraphTensorData::initWithMPSMatrix: not bound -!missing-selector! MPSGraphTensorData::initWithMPSMatrix:rank: not bound -!missing-selector! MPSGraphTensorData::initWithMPSNDArray: not bound -!missing-selector! MPSGraphTensorData::initWithMPSVector: not bound -!missing-selector! MPSGraphTensorData::initWithMPSVector:rank: not bound -!missing-selector! MPSGraphTensorData::initWithMTLBuffer:shape:dataType: not bound -!missing-selector! MPSGraphTensorData::mpsndarray not bound -!missing-selector! MPSGraphTensorData::shape not bound -!missing-selector! MPSGraphVariableOp::dataType not bound -!missing-selector! MPSGraphVariableOp::shape not bound -!missing-type! MPSGraph not bound -!missing-type! MPSGraphConvolution2DOpDescriptor not bound -!missing-type! MPSGraphDepthwiseConvolution2DOpDescriptor not bound -!missing-type! MPSGraphDevice not bound -!missing-type! MPSGraphExecutionDescriptor not bound -!missing-type! MPSGraphOperation not bound -!missing-type! MPSGraphPooling2DOpDescriptor not bound -!missing-type! MPSGraphShapedType not bound -!missing-type! MPSGraphTensor not bound -!missing-type! MPSGraphTensorData not bound -!missing-type! MPSGraphVariableOp not bound -!missing-selector! MPSGraph::constantWithScalar:dataType: not bound -## appended from unclassified file -!missing-enum! MPSGraphReductionMode not bound -!missing-enum! MPSGraphScatterMode not bound -!missing-enum! MPSGraphSparseStorageType not bound -!missing-selector! +MPSGraphCreateSparseOpDescriptor::descriptorWithStorageType:dataType: not bound -!missing-selector! +MPSGraphDepthwiseConvolution3DOpDescriptor::descriptorWithPaddingStyle: not bound -!missing-selector! +MPSGraphDepthwiseConvolution3DOpDescriptor::descriptorWithStrides:dilationRates:paddingValues:paddingStyle: not bound -!missing-selector! +MPSGraphPooling4DOpDescriptor::descriptorWithKernelSizes:paddingStyle: not bound -!missing-selector! +MPSGraphPooling4DOpDescriptor::descriptorWithKernelSizes:strides:dilationRates:paddingValues:paddingStyle: not bound -!missing-selector! +MPSGraphStencilOpDescriptor::descriptorWithExplicitPadding: not bound -!missing-selector! +MPSGraphStencilOpDescriptor::descriptorWithOffsets:explicitPadding: not bound -!missing-selector! +MPSGraphStencilOpDescriptor::descriptorWithPaddingStyle: not bound -!missing-selector! +MPSGraphStencilOpDescriptor::descriptorWithReductionMode:offsets:strides:dilationRates:explicitPadding:boundaryMode:paddingStyle:paddingConstant: not bound -!missing-selector! MPSGraph::avgPooling4DGradientWithGradientTensor:sourceTensor:descriptor:name: not bound -!missing-selector! MPSGraph::avgPooling4DWithSourceTensor:descriptor:name: not bound -!missing-selector! MPSGraph::compileWithDevice:feeds:targetTensors:targetOperations:compilationDescriptor: not bound -!missing-selector! MPSGraph::concatTensors:dimension:interleave:name: not bound -!missing-selector! MPSGraph::controlDependencyWithOperations:dependentBlock:name: not bound -!missing-selector! MPSGraph::depthToSpace2DTensor:widthAxis:heightAxis:depthAxis:blockSize:usePixelShuffleOrder:name: not bound -!missing-selector! MPSGraph::depthToSpace2DTensor:widthAxisTensor:heightAxisTensor:depthAxisTensor:blockSize:usePixelShuffleOrder:name: not bound -!missing-selector! MPSGraph::depthwiseConvolution3DDataGradientWithIncomingGradientTensor:weightsTensor:outputShape:descriptor:name: not bound -!missing-selector! MPSGraph::depthwiseConvolution3DWeightsGradientWithIncomingGradientTensor:sourceTensor:outputShape:descriptor:name: not bound -!missing-selector! MPSGraph::depthwiseConvolution3DWithSourceTensor:weightsTensor:descriptor:name: not bound -!missing-selector! MPSGraph::flatten2DTensor:axis:name: not bound -!missing-selector! MPSGraph::flatten2DTensor:axisTensor:name: not bound -!missing-selector! MPSGraph::forLoopWithLowerBound:upperBound:step:initialBodyArguments:body:name: not bound -!missing-selector! MPSGraph::forLoopWithNumberOfIterations:initialBodyArguments:body:name: not bound -!missing-selector! MPSGraph::ifWithPredicateTensor:thenBlock:elseBlock:name: not bound -!missing-selector! MPSGraph::L2NormPooling4DGradientWithGradientTensor:sourceTensor:descriptor:name: not bound -!missing-selector! MPSGraph::L2NormPooling4DWithSourceTensor:descriptor:name: not bound -!missing-selector! MPSGraph::maxPooling4DGradientWithGradientTensor:sourceTensor:descriptor:name: not bound -!missing-selector! MPSGraph::maxPooling4DWithSourceTensor:descriptor:name: not bound -!missing-selector! MPSGraph::reductionArgMaximumWithTensor:axis:name: not bound -!missing-selector! MPSGraph::reductionArgMinimumWithTensor:axis:name: not bound -!missing-selector! MPSGraph::reverseTensor:axes:name: not bound -!missing-selector! MPSGraph::reverseTensor:axesTensor:name: not bound -!missing-selector! MPSGraph::reverseTensor:name: not bound -!missing-selector! MPSGraph::scatterNDWithUpdatesTensor:indicesTensor:shape:batchDimensions:mode:name: not bound -!missing-selector! MPSGraph::sliceGradientTensor:fwdInShapeTensor:starts:ends:strides:name: not bound -!missing-selector! MPSGraph::sliceGradientTensor:fwdInShapeTensor:starts:ends:strides:startMask:endMask:squeezeMask:name: not bound -!missing-selector! MPSGraph::sliceTensor:starts:ends:strides:name: not bound -!missing-selector! MPSGraph::sliceTensor:starts:ends:strides:startMask:endMask:squeezeMask:name: not bound -!missing-selector! MPSGraph::spaceToDepth2DTensor:widthAxis:heightAxis:depthAxis:blockSize:usePixelShuffleOrder:name: not bound -!missing-selector! MPSGraph::spaceToDepth2DTensor:widthAxisTensor:heightAxisTensor:depthAxisTensor:blockSize:usePixelShuffleOrder:name: not bound -!missing-selector! MPSGraph::sparseTensorWithDescriptor:tensors:shape:name: not bound -!missing-selector! MPSGraph::sparseTensorWithType:tensors:shape:dataType:name: not bound -!missing-selector! MPSGraph::stencilWithSourceTensor:weightsTensor:descriptor:name: not bound -!missing-selector! MPSGraph::whileWithInitialInputs:before:after:name: not bound -!missing-selector! MPSGraphCompilationDescriptor::disableTypeInference not bound -!missing-selector! MPSGraphCreateSparseOpDescriptor::dataType not bound -!missing-selector! MPSGraphCreateSparseOpDescriptor::setDataType: not bound -!missing-selector! MPSGraphCreateSparseOpDescriptor::setSparseStorageType: not bound -!missing-selector! MPSGraphCreateSparseOpDescriptor::sparseStorageType not bound -!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::channelDimensionIndex not bound -!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::dilationRates not bound -!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::paddingStyle not bound -!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::paddingValues not bound -!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::setChannelDimensionIndex: not bound -!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::setDilationRates: not bound -!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::setPaddingStyle: not bound -!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::setPaddingValues: not bound -!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::setStrides: not bound -!missing-selector! MPSGraphDepthwiseConvolution3DOpDescriptor::strides not bound -!missing-selector! MPSGraphExecutable::encodeToCommandBuffer:inputsArray:resultsArray:executionDescriptor: not bound -!missing-selector! MPSGraphExecutable::feedTensors not bound -!missing-selector! MPSGraphExecutable::options not bound -!missing-selector! MPSGraphExecutable::runAsyncWithMTLCommandQueue:inputsArray:resultsArray:executionDescriptor: not bound -!missing-selector! MPSGraphExecutable::runWithMTLCommandQueue:inputsArray:resultsArray:executionDescriptor: not bound -!missing-selector! MPSGraphExecutable::setOptions: not bound -!missing-selector! MPSGraphExecutable::specializeWithDevice:inputTypes:compilationDescriptor: not bound -!missing-selector! MPSGraphExecutable::targetTensors not bound -!missing-selector! MPSGraphExecutableExecutionDescriptor::completionHandler not bound -!missing-selector! MPSGraphExecutableExecutionDescriptor::scheduledHandler not bound -!missing-selector! MPSGraphExecutableExecutionDescriptor::setCompletionHandler: not bound -!missing-selector! MPSGraphExecutableExecutionDescriptor::setScheduledHandler: not bound -!missing-selector! MPSGraphExecutableExecutionDescriptor::setWaitUntilCompleted: not bound -!missing-selector! MPSGraphExecutableExecutionDescriptor::waitUntilCompleted not bound !missing-selector! MPSGraphPooling4DOpDescriptor::ceilMode not bound !missing-selector! MPSGraphPooling4DOpDescriptor::dilationRates not bound !missing-selector! MPSGraphPooling4DOpDescriptor::includeZeroPadToAverage not bound @@ -366,6 +333,12 @@ !missing-selector! MPSGraphPooling4DOpDescriptor::setPaddingValues: not bound !missing-selector! MPSGraphPooling4DOpDescriptor::setStrides: not bound !missing-selector! MPSGraphPooling4DOpDescriptor::strides not bound +!missing-selector! MPSGraphShapedType::dataType not bound +!missing-selector! MPSGraphShapedType::initWithShape:dataType: not bound +!missing-selector! MPSGraphShapedType::isEqualTo: not bound +!missing-selector! MPSGraphShapedType::setDataType: not bound +!missing-selector! MPSGraphShapedType::setShape: not bound +!missing-selector! MPSGraphShapedType::shape not bound !missing-selector! MPSGraphStencilOpDescriptor::boundaryMode not bound !missing-selector! MPSGraphStencilOpDescriptor::dilationRates not bound !missing-selector! MPSGraphStencilOpDescriptor::explicitPadding not bound @@ -382,11 +355,40 @@ !missing-selector! MPSGraphStencilOpDescriptor::setReductionMode: not bound !missing-selector! MPSGraphStencilOpDescriptor::setStrides: not bound !missing-selector! MPSGraphStencilOpDescriptor::strides not bound +!missing-selector! MPSGraphTensor::dataType not bound +!missing-selector! MPSGraphTensor::operation not bound +!missing-selector! MPSGraphTensor::shape not bound +!missing-selector! MPSGraphTensorData::dataType not bound +!missing-selector! MPSGraphTensorData::device not bound +!missing-selector! MPSGraphTensorData::initWithDevice:data:shape:dataType: not bound +!missing-selector! MPSGraphTensorData::initWithMPSImageBatch: not bound +!missing-selector! MPSGraphTensorData::initWithMPSMatrix: not bound +!missing-selector! MPSGraphTensorData::initWithMPSMatrix:rank: not bound +!missing-selector! MPSGraphTensorData::initWithMPSNDArray: not bound +!missing-selector! MPSGraphTensorData::initWithMPSVector: not bound +!missing-selector! MPSGraphTensorData::initWithMPSVector:rank: not bound +!missing-selector! MPSGraphTensorData::initWithMTLBuffer:shape:dataType: not bound +!missing-selector! MPSGraphTensorData::mpsndarray not bound +!missing-selector! MPSGraphTensorData::shape not bound +!missing-selector! MPSGraphVariableOp::dataType not bound +!missing-selector! MPSGraphVariableOp::shape not bound +!missing-type! MPSGraph not bound !missing-type! MPSGraphCompilationDescriptor not bound +!missing-type! MPSGraphConvolution2DOpDescriptor not bound !missing-type! MPSGraphCreateSparseOpDescriptor not bound +!missing-type! MPSGraphDepthwiseConvolution2DOpDescriptor not bound !missing-type! MPSGraphDepthwiseConvolution3DOpDescriptor not bound +!missing-type! MPSGraphDevice not bound !missing-type! MPSGraphExecutable not bound !missing-type! MPSGraphExecutableExecutionDescriptor not bound +!missing-type! MPSGraphExecutionDescriptor not bound +!missing-type! MPSGraphOperation not bound +!missing-type! MPSGraphPooling2DOpDescriptor not bound !missing-type! MPSGraphPooling4DOpDescriptor not bound +!missing-type! MPSGraphShapedType not bound !missing-type! MPSGraphStencilOpDescriptor not bound +!missing-type! MPSGraphTensor not bound +!missing-type! MPSGraphTensorData not bound !missing-type! MPSGraphType not bound +!missing-type! MPSGraphVariableOp not bound +## appended from unclassified file diff --git a/tests/xtro-sharpie/tvOS-PHASE.todo b/tests/xtro-sharpie/tvOS-PHASE.todo index bae7cc24dae0..73107d4234fc 100644 --- a/tests/xtro-sharpie/tvOS-PHASE.todo +++ b/tests/xtro-sharpie/tvOS-PHASE.todo @@ -9,7 +9,7 @@ !missing-enum! PHASENormalizationMode not bound !missing-enum! PHASEPlaybackMode not bound !missing-enum! PHASEPushStreamBufferOptions not bound -!missing-enum! PHASEPushStreamCompletionCallbackType not bound +!missing-enum! PHASEPushStreamCompletionCallbackCondition not bound !missing-enum! PHASERenderingState not bound !missing-enum! PHASEReverbPreset not bound !missing-enum! PHASESoundEventError not bound @@ -17,8 +17,8 @@ !missing-enum! PHASESoundEventPrepareState not bound !missing-enum! PHASESoundEventSeekHandlerReason not bound !missing-enum! PHASESoundEventStartHandlerReason not bound +!missing-enum! PHASESpatialPipelineFlags not bound !missing-enum! PHASESpatializationMode not bound -!missing-enum! PHASESpatialPipelineOptions not bound !missing-enum! PHASEUpdateMode not bound !missing-field! PHASEAssetErrorDomain not bound !missing-field! PHASEErrorDomain not bound diff --git a/tests/xtro-sharpie/tvOS-UIKit.todo b/tests/xtro-sharpie/tvOS-UIKit.todo index f85ec52e26fe..9e33e0d330f5 100644 --- a/tests/xtro-sharpie/tvOS-UIKit.todo +++ b/tests/xtro-sharpie/tvOS-UIKit.todo @@ -1,22 +1,3 @@ -!missing-selector! NSDiffableDataSourceSectionTransaction::difference not bound -!missing-selector! NSDiffableDataSourceTransaction::difference not bound -!missing-selector! UICollectionViewDiffableDataSourceReorderingHandlers::canReorderItemHandler not bound -!missing-selector! UICollectionViewDiffableDataSourceReorderingHandlers::didReorderHandler not bound -!missing-selector! UICollectionViewDiffableDataSourceReorderingHandlers::setCanReorderItemHandler: not bound -!missing-selector! UICollectionViewDiffableDataSourceReorderingHandlers::setDidReorderHandler: not bound -!missing-selector! UICollectionViewDiffableDataSourceReorderingHandlers::setWillReorderHandler: not bound -!missing-selector! UICollectionViewDiffableDataSourceReorderingHandlers::willReorderHandler not bound -!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::setShouldCollapseItemHandler: not bound -!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::setShouldExpandItemHandler: not bound -!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::setSnapshotForExpandingParentItemHandler: not bound -!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::setWillCollapseItemHandler: not bound -!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::setWillExpandItemHandler: not bound -!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::shouldCollapseItemHandler not bound -!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::shouldExpandItemHandler not bound -!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::snapshotForExpandingParentItemHandler not bound -!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::willCollapseItemHandler not bound -!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::willExpandItemHandler not bound -## appended from unclassified file !deprecated-attribute-missing! UIApplication::windows missing a [Deprecated] attribute !deprecated-attribute-missing! UIButton::adjustsImageWhenDisabled missing a [Deprecated] attribute !deprecated-attribute-missing! UIButton::adjustsImageWhenHighlighted missing a [Deprecated] attribute @@ -42,15 +23,29 @@ !deprecated-attribute-missing! UISearchController::setSearchControllerObservedScrollView: missing a [Deprecated] attribute !deprecated-attribute-missing! UIViewController::setTabBarObservedScrollView: missing a [Deprecated] attribute !deprecated-attribute-missing! UIViewController::tabBarObservedScrollView missing a [Deprecated] attribute +!missing-enum! NSTextContentManagerEnumerationOptions not bound +!missing-enum! NSTextLayoutFragmentEnumerationOptions not bound +!missing-enum! NSTextLayoutFragmentState not bound +!missing-enum! NSTextLayoutManagerSegmentOptions not bound +!missing-enum! NSTextLayoutManagerSegmentType not bound +!missing-enum! NSTextSelectionAffinity not bound +!missing-enum! NSTextSelectionGranularity not bound +!missing-enum! NSTextSelectionNavigationDestination not bound +!missing-enum! NSTextSelectionNavigationDirection not bound +!missing-enum! NSTextSelectionNavigationLayoutOrientation not bound +!missing-enum! NSTextSelectionNavigationModifier not bound +!missing-enum! NSTextSelectionNavigationWritingDirection not bound !missing-enum! UIBehavioralStyle not bound !missing-enum! UIButtonConfigurationCornerStyle not bound !missing-enum! UIButtonConfigurationMacIdiomStyle not bound !missing-enum! UIButtonConfigurationSize not bound !missing-enum! UIButtonConfigurationTitleAlignment not bound +!missing-enum! UIImageVariant not bound !missing-enum! UIWindowScenePresentationStyle not bound !missing-enum-value! UIFocusHeading native value UIFocusHeadingFirst = 256 not bound !missing-enum-value! UIFocusHeading native value UIFocusHeadingLast = 512 not bound !missing-enum-value! UIMenuOptions native value UIMenuOptionsSingleSelection = 32 not bound +!missing-field! NSTextContentStorageUnsupportedAttributeAddedNotification not bound !missing-field! UIActionPaste not bound !missing-field! UIActionPasteAndGo not bound !missing-field! UIActionPasteAndMatchStyle not bound @@ -69,12 +64,24 @@ !missing-field! UITextContentTypeDateTime not bound !missing-field! UITextContentTypeFlightNumber not bound !missing-field! UITextContentTypeShipmentTrackingNumber not bound +!missing-protocol! NSTextAttachmentLayout not bound +!missing-protocol! NSTextContentManagerDelegate not bound +!missing-protocol! NSTextContentStorageDelegate not bound +!missing-protocol! NSTextElementProvider not bound +!missing-protocol! NSTextLayoutManagerDelegate not bound +!missing-protocol! NSTextLocation not bound +!missing-protocol! NSTextSelectionDataSource not bound !missing-protocol! NSTextStorageObserving not bound +!missing-protocol! NSTextViewportLayoutControllerDelegate not bound +!missing-protocol-conformance! NSTextAttachment should conform to NSTextAttachmentLayout !missing-protocol-conformance! UIFont should conform to NSSecureCoding !missing-protocol-member! UIAdaptivePresentationControllerDelegate::presentationController:prepareAdaptivePresentationController: not found !missing-protocol-member! UIApplicationDelegate::applicationShouldAutomaticallyLocalizeKeyCommands: not found !missing-protocol-member! UICollectionViewDelegate::collectionView:targetIndexPathForMoveOfItemFromOriginalIndexPath:atCurrentIndexPath:toProposedIndexPath: not found !missing-protocol-member! UISceneDelegate::scene:restoreInteractionStateWithUserActivity: not found +!missing-selector! +NSTextAttachment::registerTextAttachmentViewProviderClass:forFileType: not bound +!missing-selector! +NSTextAttachment::textAttachmentViewProviderClassForFileType: not bound +!missing-selector! +NSTextLayoutManager::linkRenderingAttributes not bound !missing-selector! +UIAction::captureTextFromCameraActionForResponder:identifier: not bound !missing-selector! +UIButton::buttonWithConfiguration:primaryAction: not bound !missing-selector! +UIButtonConfiguration::filledButtonConfiguration not bound @@ -82,216 +89,43 @@ !missing-selector! +UIButtonConfiguration::plainButtonConfiguration not bound !missing-selector! +UIButtonConfiguration::tintedButtonConfiguration not bound !missing-selector! +UIColor::systemBrownColor not bound +!missing-selector! +UIColor::systemCyanColor not bound +!missing-selector! +UIColor::systemMintColor not bound !missing-selector! +UIColor::tintColor not bound +!missing-selector! +UIDeferredMenuElement::elementWithUncachedProvider: not bound !missing-selector! +UIFocusDebugger::checkFocusGroupTreeForEnvironment: not bound +!missing-selector! +UIImage::imageNamed:variant: not bound +!missing-selector! +UIImage::imageNamed:variant:withConfiguration: not bound +!missing-selector! +UIImage::systemImageNamed:variant: not bound +!missing-selector! +UIImage::systemImageNamed:variant:withConfiguration: not bound !missing-selector! +UIImageSymbolConfiguration::configurationPreferringMulticolor not bound !missing-selector! +UIImageSymbolConfiguration::configurationWithHierarchicalColor: not bound !missing-selector! +UIImageSymbolConfiguration::configurationWithPaletteColors: not bound +!missing-selector! NSDiffableDataSourceSectionTransaction::difference not bound !missing-selector! NSDiffableDataSourceSnapshot::reconfigureItemsWithIdentifiers: not bound +!missing-selector! NSDiffableDataSourceSnapshot::reconfiguredItemIdentifiers not bound +!missing-selector! NSDiffableDataSourceSnapshot::reloadedItemIdentifiers not bound +!missing-selector! NSDiffableDataSourceSnapshot::reloadedSectionIdentifiers not bound +!missing-selector! NSDiffableDataSourceTransaction::difference not bound !missing-selector! NSMutableParagraphStyle::setUsesDefaultHyphenation: not bound !missing-selector! NSMutableParagraphStyle::usesDefaultHyphenation not bound !missing-selector! NSParagraphStyle::usesDefaultHyphenation not bound +!missing-selector! NSTextAttachment::allowsTextAttachmentView not bound +!missing-selector! NSTextAttachment::lineLayoutPadding not bound +!missing-selector! NSTextAttachment::setAllowsTextAttachmentView: not bound +!missing-selector! NSTextAttachment::setLineLayoutPadding: not bound +!missing-selector! NSTextAttachment::usesTextAttachmentView not bound +!missing-selector! NSTextAttachmentViewProvider::attachmentBoundsForAttributes:location:textContainer:proposedLineFragment:position: not bound +!missing-selector! NSTextAttachmentViewProvider::initWithTextAttachment:parentView:textLayoutManager:location: not bound +!missing-selector! NSTextAttachmentViewProvider::loadView not bound +!missing-selector! NSTextAttachmentViewProvider::location not bound +!missing-selector! NSTextAttachmentViewProvider::setTracksTextAttachmentViewBounds: not bound +!missing-selector! NSTextAttachmentViewProvider::setView: not bound +!missing-selector! NSTextAttachmentViewProvider::textAttachment not bound +!missing-selector! NSTextAttachmentViewProvider::textLayoutManager not bound +!missing-selector! NSTextAttachmentViewProvider::tracksTextAttachmentViewBounds not bound +!missing-selector! NSTextAttachmentViewProvider::view not bound !missing-selector! NSTextContainer::textLayoutManager not bound -!missing-selector! UIBackgroundConfiguration::image not bound -!missing-selector! UIBackgroundConfiguration::imageContentMode not bound -!missing-selector! UIBackgroundConfiguration::setImage: not bound -!missing-selector! UIBackgroundConfiguration::setImageContentMode: not bound -!missing-selector! UIButton::automaticallyUpdatesConfiguration not bound -!missing-selector! UIButton::configuration not bound -!missing-selector! UIButton::configurationUpdateHandler not bound -!missing-selector! UIButton::isHeld not bound -!missing-selector! UIButton::isHovered not bound -!missing-selector! UIButton::preferredSizeForConfiguration:maximumWidth: not bound -!missing-selector! UIButton::setAutomaticallyUpdatesConfiguration: not bound -!missing-selector! UIButton::setConfiguration: not bound -!missing-selector! UIButton::setConfigurationUpdateHandler: not bound -!missing-selector! UIButton::setNeedsUpdateConfiguration not bound -!missing-selector! UIButton::subtitleLabel not bound -!missing-selector! UIButton::updateConfiguration not bound -!missing-selector! UIButtonConfiguration::attributedSubtitle not bound -!missing-selector! UIButtonConfiguration::attributedTitle not bound -!missing-selector! UIButtonConfiguration::background not bound -!missing-selector! UIButtonConfiguration::baseBackgroundColor not bound -!missing-selector! UIButtonConfiguration::baseForegroundColor not bound -!missing-selector! UIButtonConfiguration::buttonSize not bound -!missing-selector! UIButtonConfiguration::contentInsets not bound -!missing-selector! UIButtonConfiguration::cornerStyle not bound -!missing-selector! UIButtonConfiguration::image not bound -!missing-selector! UIButtonConfiguration::imageColorTransformer not bound -!missing-selector! UIButtonConfiguration::imagePadding not bound -!missing-selector! UIButtonConfiguration::imagePlacement not bound -!missing-selector! UIButtonConfiguration::macIdiomStyle not bound -!missing-selector! UIButtonConfiguration::preferredSymbolConfigurationForImage not bound -!missing-selector! UIButtonConfiguration::setAttributedSubtitle: not bound -!missing-selector! UIButtonConfiguration::setAttributedTitle: not bound -!missing-selector! UIButtonConfiguration::setBackground: not bound -!missing-selector! UIButtonConfiguration::setBaseBackgroundColor: not bound -!missing-selector! UIButtonConfiguration::setBaseForegroundColor: not bound -!missing-selector! UIButtonConfiguration::setButtonSize: not bound -!missing-selector! UIButtonConfiguration::setContentInsets: not bound -!missing-selector! UIButtonConfiguration::setCornerStyle: not bound -!missing-selector! UIButtonConfiguration::setImage: not bound -!missing-selector! UIButtonConfiguration::setImageColorTransformer: not bound -!missing-selector! UIButtonConfiguration::setImagePadding: not bound -!missing-selector! UIButtonConfiguration::setImagePlacement: not bound -!missing-selector! UIButtonConfiguration::setMacIdiomStyle: not bound -!missing-selector! UIButtonConfiguration::setPreferredSymbolConfigurationForImage: not bound -!missing-selector! UIButtonConfiguration::setShowsActivityIndicator: not bound -!missing-selector! UIButtonConfiguration::setSubtitle: not bound -!missing-selector! UIButtonConfiguration::setSubtitleTextAttributesTransformer: not bound -!missing-selector! UIButtonConfiguration::setTitle: not bound -!missing-selector! UIButtonConfiguration::setTitleAlignment: not bound -!missing-selector! UIButtonConfiguration::setTitlePadding: not bound -!missing-selector! UIButtonConfiguration::setTitleTextAttributesTransformer: not bound -!missing-selector! UIButtonConfiguration::showsActivityIndicator not bound -!missing-selector! UIButtonConfiguration::subtitle not bound -!missing-selector! UIButtonConfiguration::subtitleTextAttributesTransformer not bound -!missing-selector! UIButtonConfiguration::title not bound -!missing-selector! UIButtonConfiguration::titleAlignment not bound -!missing-selector! UIButtonConfiguration::titlePadding not bound -!missing-selector! UIButtonConfiguration::titleTextAttributesTransformer not bound -!missing-selector! UIButtonConfiguration::updatedConfigurationForButton: not bound -!missing-selector! UICollectionLayoutListConfiguration::headerTopPadding not bound -!missing-selector! UICollectionLayoutListConfiguration::setHeaderTopPadding: not bound -!missing-selector! UICollectionView::allowsFocus not bound -!missing-selector! UICollectionView::allowsFocusDuringEditing not bound -!missing-selector! UICollectionView::reconfigureItemsAtIndexPaths: not bound -!missing-selector! UICollectionView::setAllowsFocus: not bound -!missing-selector! UICollectionView::setAllowsFocusDuringEditing: not bound -!missing-selector! UICollectionViewCell::configurationUpdateHandler not bound -!missing-selector! UICollectionViewCell::setConfigurationUpdateHandler: not bound -!missing-selector! UICollectionViewDiffableDataSource::applySnapshotUsingReloadData: not bound -!missing-selector! UICollectionViewDiffableDataSource::applySnapshotUsingReloadData:completion: not bound -!missing-selector! UICollectionViewDiffableDataSource::indexForSectionIdentifier: not bound -!missing-selector! UICollectionViewDiffableDataSource::sectionIdentifierForIndex: not bound -!missing-selector! UIControl::setToolTip: not bound -!missing-selector! UIControl::toolTip not bound -!missing-selector! UIControl::toolTipInteraction not bound -!missing-selector! UIImage::imageByPreparingForDisplay not bound -!missing-selector! UIImage::imageByPreparingThumbnailOfSize: not bound -!missing-selector! UIImage::prepareForDisplayWithCompletionHandler: not bound -!missing-selector! UIImage::prepareThumbnailOfSize:completionHandler: not bound -!missing-selector! UIKeyCommand::allowsAutomaticLocalization not bound -!missing-selector! UIKeyCommand::allowsAutomaticMirroring not bound -!missing-selector! UIKeyCommand::setAllowsAutomaticLocalization: not bound -!missing-selector! UIKeyCommand::setAllowsAutomaticMirroring: not bound -!missing-selector! UIKeyCommand::setWantsPriorityOverSystemBehavior: not bound -!missing-selector! UIKeyCommand::wantsPriorityOverSystemBehavior not bound -!missing-selector! UILabel::setShowsExpansionTextWhenTruncated: not bound -!missing-selector! UILabel::showsExpansionTextWhenTruncated not bound -!missing-selector! UIMenu::selectedElements not bound -!missing-selector! UINavigationBar::compactScrollEdgeAppearance not bound -!missing-selector! UINavigationBar::setCompactScrollEdgeAppearance: not bound -!missing-selector! UINavigationItem::compactScrollEdgeAppearance not bound -!missing-selector! UINavigationItem::setCompactScrollEdgeAppearance: not bound -!missing-selector! UIPasteboardDetectionResult::matchedRange not bound -!missing-selector! UIPasteboardDetectionResult::matchedString not bound -!missing-selector! UIPasteboardDetectionResultAddress::city not bound -!missing-selector! UIPasteboardDetectionResultAddress::country not bound -!missing-selector! UIPasteboardDetectionResultAddress::postalCode not bound -!missing-selector! UIPasteboardDetectionResultAddress::state not bound -!missing-selector! UIPasteboardDetectionResultAddress::street not bound -!missing-selector! UIPasteboardDetectionResultCalendarEvent::allDay not bound -!missing-selector! UIPasteboardDetectionResultCalendarEvent::endDate not bound -!missing-selector! UIPasteboardDetectionResultCalendarEvent::endTimeZone not bound -!missing-selector! UIPasteboardDetectionResultCalendarEvent::startDate not bound -!missing-selector! UIPasteboardDetectionResultCalendarEvent::startTimeZone not bound -!missing-selector! UIPasteboardDetectionResultEmailAddress::emailAddress not bound -!missing-selector! UIPasteboardDetectionResultEmailAddress::label not bound -!missing-selector! UIPasteboardDetectionResultFlightNumber::airline not bound -!missing-selector! UIPasteboardDetectionResultFlightNumber::flightNumber not bound -!missing-selector! UIPasteboardDetectionResultLink::url not bound -!missing-selector! UIPasteboardDetectionResultMoneyAmount::amount not bound -!missing-selector! UIPasteboardDetectionResultMoneyAmount::currency not bound -!missing-selector! UIPasteboardDetectionResultPhoneNumber::label not bound -!missing-selector! UIPasteboardDetectionResultPhoneNumber::phoneNumber not bound -!missing-selector! UIPasteboardDetectionResultShipmentTrackingNumber::carrier not bound -!missing-selector! UIPasteboardDetectionResultShipmentTrackingNumber::trackingNumber not bound -!missing-selector! UIResponder::captureTextFromCamera: not bound -!missing-selector! UIScene::completeStateRestoration not bound -!missing-selector! UIScene::extendStateRestoration not bound -!missing-selector! UIScene::setSubtitle: not bound -!missing-selector! UIScene::subtitle not bound -!missing-selector! UITabBar::scrollEdgeAppearance not bound -!missing-selector! UITabBar::setScrollEdgeAppearance: not bound -!missing-selector! UITabBarItem::scrollEdgeAppearance not bound -!missing-selector! UITabBarItem::setScrollEdgeAppearance: not bound -!missing-selector! UITableView::allowsFocus not bound -!missing-selector! UITableView::allowsFocusDuringEditing not bound -!missing-selector! UITableView::fillerRowHeight not bound -!missing-selector! UITableView::isPrefetchingEnabled not bound -!missing-selector! UITableView::reconfigureRowsAtIndexPaths: not bound -!missing-selector! UITableView::sectionHeaderTopPadding not bound -!missing-selector! UITableView::setAllowsFocus: not bound -!missing-selector! UITableView::setAllowsFocusDuringEditing: not bound -!missing-selector! UITableView::setFillerRowHeight: not bound -!missing-selector! UITableView::setPrefetchingEnabled: not bound -!missing-selector! UITableView::setSectionHeaderTopPadding: not bound -!missing-selector! UITableViewCell::configurationUpdateHandler not bound -!missing-selector! UITableViewCell::setConfigurationUpdateHandler: not bound -!missing-selector! UITableViewDiffableDataSource::applySnapshotUsingReloadData: not bound -!missing-selector! UITableViewDiffableDataSource::applySnapshotUsingReloadData:completion: not bound -!missing-selector! UITableViewDiffableDataSource::indexForSectionIdentifier: not bound -!missing-selector! UITableViewDiffableDataSource::sectionIdentifierForIndex: not bound -!missing-selector! UITableViewHeaderFooterView::configurationUpdateHandler not bound -!missing-selector! UITableViewHeaderFooterView::setConfigurationUpdateHandler: not bound -!missing-selector! UITextField::interactionState not bound -!missing-selector! UITextField::setInteractionState: not bound -!missing-selector! UITextView::interactionState not bound -!missing-selector! UITextView::setInteractionState: not bound -!missing-selector! UIView::appliedContentSizeCategoryLimitsDescription not bound -!missing-selector! UIView::maximumContentSizeCategory not bound -!missing-selector! UIView::minimumContentSizeCategory not bound -!missing-selector! UIView::setMaximumContentSizeCategory: not bound -!missing-selector! UIView::setMinimumContentSizeCategory: not bound -!missing-selector! UIViewConfigurationState::isPinned not bound -!missing-selector! UIViewConfigurationState::setPinned: not bound -!missing-selector! UIViewController::contentScrollViewForEdge: not bound -!missing-selector! UIViewController::setContentScrollView:forEdge: not bound -!missing-selector! UIWindow::canBecomeKeyWindow not bound -!missing-selector! UIWindowScene::focusSystem not bound -!missing-selector! UIWindowScene::keyWindow not bound -!missing-selector! UIWindowSceneActivationRequestOptions::preferredPresentationStyle not bound -!missing-selector! UIWindowSceneActivationRequestOptions::setPreferredPresentationStyle: not bound -!missing-type! UIButtonConfiguration not bound -!missing-type! UIPasteboardDetectionResult not bound -!missing-type! UIPasteboardDetectionResultAddress not bound -!missing-type! UIPasteboardDetectionResultCalendarEvent not bound -!missing-type! UIPasteboardDetectionResultEmailAddress not bound -!missing-type! UIPasteboardDetectionResultFlightNumber not bound -!missing-type! UIPasteboardDetectionResultLink not bound -!missing-type! UIPasteboardDetectionResultMoneyAmount not bound -!missing-type! UIPasteboardDetectionResultPhoneNumber not bound -!missing-type! UIPasteboardDetectionResultShipmentTrackingNumber not bound -!missing-type! UIWindowSceneActivationRequestOptions not bound -!missing-enum! NSTextContentManagerEnumerationOptions not bound -!missing-enum! NSTextLayoutFragmentEnumerationOptions not bound -!missing-enum! NSTextLayoutFragmentState not bound -!missing-enum! NSTextLayoutManagerSegmentOptions not bound -!missing-enum! NSTextLayoutManagerSegmentType not bound -!missing-enum! NSTextSelectionAffinity not bound -!missing-enum! NSTextSelectionGranularity not bound -!missing-enum! NSTextSelectionNavigationDestination not bound -!missing-enum! NSTextSelectionNavigationDirection not bound -!missing-enum! NSTextSelectionNavigationLayoutOrientation not bound -!missing-enum! NSTextSelectionNavigationModifier not bound -!missing-enum! NSTextSelectionNavigationWritingDirection not bound -!missing-enum! UIImageVariant not bound -!missing-field! NSTextContentStorageUnsupportedAttributeAddedNotification not bound -!missing-protocol! NSTextContentManagerDelegate not bound -!missing-protocol! NSTextContentStorageDelegate not bound -!missing-protocol! NSTextElementProvider not bound -!missing-protocol! NSTextLayoutManagerDelegate not bound -!missing-protocol! NSTextLocation not bound -!missing-protocol! NSTextSelectionDataSource not bound -!missing-protocol! NSTextViewportLayoutControllerDelegate not bound -!missing-selector! +NSTextLayoutManager::linkRenderingAttributes not bound -!missing-selector! +UIColor::systemCyanColor not bound -!missing-selector! +UIColor::systemMintColor not bound -!missing-selector! +UIImage::imageNamed:variant: not bound -!missing-selector! +UIImage::imageNamed:variant:withConfiguration: not bound -!missing-selector! +UIImage::systemImageNamed:variant: not bound -!missing-selector! +UIImage::systemImageNamed:variant:withConfiguration: not bound !missing-selector! NSTextContentManager::addTextLayoutManager: not bound !missing-selector! NSTextContentManager::automaticallySynchronizesTextLayoutManagers not bound !missing-selector! NSTextContentManager::automaticallySynchronizesToBackingStore not bound @@ -447,12 +281,188 @@ !missing-selector! NSTextViewportLayoutController::textLayoutManager not bound !missing-selector! NSTextViewportLayoutController::viewportBounds not bound !missing-selector! NSTextViewportLayoutController::viewportRange not bound +!missing-selector! UIBackgroundConfiguration::image not bound +!missing-selector! UIBackgroundConfiguration::imageContentMode not bound +!missing-selector! UIBackgroundConfiguration::setImage: not bound +!missing-selector! UIBackgroundConfiguration::setImageContentMode: not bound +!missing-selector! UIButton::automaticallyUpdatesConfiguration not bound +!missing-selector! UIButton::configuration not bound +!missing-selector! UIButton::configurationUpdateHandler not bound +!missing-selector! UIButton::isHeld not bound +!missing-selector! UIButton::isHovered not bound +!missing-selector! UIButton::setAutomaticallyUpdatesConfiguration: not bound +!missing-selector! UIButton::setConfiguration: not bound +!missing-selector! UIButton::setConfigurationUpdateHandler: not bound +!missing-selector! UIButton::setNeedsUpdateConfiguration not bound +!missing-selector! UIButton::subtitleLabel not bound +!missing-selector! UIButton::updateConfiguration not bound +!missing-selector! UIButtonConfiguration::attributedSubtitle not bound +!missing-selector! UIButtonConfiguration::attributedTitle not bound +!missing-selector! UIButtonConfiguration::background not bound +!missing-selector! UIButtonConfiguration::baseBackgroundColor not bound +!missing-selector! UIButtonConfiguration::baseForegroundColor not bound +!missing-selector! UIButtonConfiguration::buttonSize not bound +!missing-selector! UIButtonConfiguration::contentInsets not bound +!missing-selector! UIButtonConfiguration::cornerStyle not bound +!missing-selector! UIButtonConfiguration::image not bound +!missing-selector! UIButtonConfiguration::imageColorTransformer not bound +!missing-selector! UIButtonConfiguration::imagePadding not bound +!missing-selector! UIButtonConfiguration::imagePlacement not bound +!missing-selector! UIButtonConfiguration::macIdiomStyle not bound +!missing-selector! UIButtonConfiguration::preferredSymbolConfigurationForImage not bound +!missing-selector! UIButtonConfiguration::setAttributedSubtitle: not bound +!missing-selector! UIButtonConfiguration::setAttributedTitle: not bound +!missing-selector! UIButtonConfiguration::setBackground: not bound +!missing-selector! UIButtonConfiguration::setBaseBackgroundColor: not bound +!missing-selector! UIButtonConfiguration::setBaseForegroundColor: not bound +!missing-selector! UIButtonConfiguration::setButtonSize: not bound +!missing-selector! UIButtonConfiguration::setContentInsets: not bound +!missing-selector! UIButtonConfiguration::setCornerStyle: not bound +!missing-selector! UIButtonConfiguration::setImage: not bound +!missing-selector! UIButtonConfiguration::setImageColorTransformer: not bound +!missing-selector! UIButtonConfiguration::setImagePadding: not bound +!missing-selector! UIButtonConfiguration::setImagePlacement: not bound +!missing-selector! UIButtonConfiguration::setMacIdiomStyle: not bound +!missing-selector! UIButtonConfiguration::setPreferredSymbolConfigurationForImage: not bound +!missing-selector! UIButtonConfiguration::setShowsActivityIndicator: not bound +!missing-selector! UIButtonConfiguration::setSubtitle: not bound +!missing-selector! UIButtonConfiguration::setSubtitleTextAttributesTransformer: not bound +!missing-selector! UIButtonConfiguration::setTitle: not bound +!missing-selector! UIButtonConfiguration::setTitleAlignment: not bound +!missing-selector! UIButtonConfiguration::setTitlePadding: not bound +!missing-selector! UIButtonConfiguration::setTitleTextAttributesTransformer: not bound +!missing-selector! UIButtonConfiguration::showsActivityIndicator not bound +!missing-selector! UIButtonConfiguration::subtitle not bound +!missing-selector! UIButtonConfiguration::subtitleTextAttributesTransformer not bound +!missing-selector! UIButtonConfiguration::title not bound +!missing-selector! UIButtonConfiguration::titleAlignment not bound +!missing-selector! UIButtonConfiguration::titlePadding not bound +!missing-selector! UIButtonConfiguration::titleTextAttributesTransformer not bound +!missing-selector! UIButtonConfiguration::updatedConfigurationForButton: not bound +!missing-selector! UICollectionLayoutListConfiguration::headerTopPadding not bound +!missing-selector! UICollectionLayoutListConfiguration::setHeaderTopPadding: not bound +!missing-selector! UICollectionView::allowsFocus not bound +!missing-selector! UICollectionView::allowsFocusDuringEditing not bound +!missing-selector! UICollectionView::reconfigureItemsAtIndexPaths: not bound +!missing-selector! UICollectionView::setAllowsFocus: not bound +!missing-selector! UICollectionView::setAllowsFocusDuringEditing: not bound +!missing-selector! UICollectionViewCell::configurationUpdateHandler not bound +!missing-selector! UICollectionViewCell::setConfigurationUpdateHandler: not bound +!missing-selector! UICollectionViewDiffableDataSource::applySnapshotUsingReloadData: not bound +!missing-selector! UICollectionViewDiffableDataSource::applySnapshotUsingReloadData:completion: not bound +!missing-selector! UICollectionViewDiffableDataSource::indexForSectionIdentifier: not bound +!missing-selector! UICollectionViewDiffableDataSource::sectionIdentifierForIndex: not bound +!missing-selector! UICollectionViewDiffableDataSourceReorderingHandlers::canReorderItemHandler not bound +!missing-selector! UICollectionViewDiffableDataSourceReorderingHandlers::didReorderHandler not bound +!missing-selector! UICollectionViewDiffableDataSourceReorderingHandlers::setCanReorderItemHandler: not bound +!missing-selector! UICollectionViewDiffableDataSourceReorderingHandlers::setDidReorderHandler: not bound +!missing-selector! UICollectionViewDiffableDataSourceReorderingHandlers::setWillReorderHandler: not bound +!missing-selector! UICollectionViewDiffableDataSourceReorderingHandlers::willReorderHandler not bound +!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::setShouldCollapseItemHandler: not bound +!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::setShouldExpandItemHandler: not bound +!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::setSnapshotForExpandingParentItemHandler: not bound +!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::setWillCollapseItemHandler: not bound +!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::setWillExpandItemHandler: not bound +!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::shouldCollapseItemHandler not bound +!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::shouldExpandItemHandler not bound +!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::snapshotForExpandingParentItemHandler not bound +!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::willCollapseItemHandler not bound +!missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::willExpandItemHandler not bound !missing-selector! UIImage::imageByApplyingVariant: not bound !missing-selector! UIImage::imageByApplyingVariantFromImage: not bound +!missing-selector! UIImage::imageByPreparingForDisplay not bound +!missing-selector! UIImage::imageByPreparingThumbnailOfSize: not bound !missing-selector! UIImage::imageByRemovingVariant not bound +!missing-selector! UIImage::prepareForDisplayWithCompletionHandler: not bound +!missing-selector! UIImage::prepareThumbnailOfSize:completionHandler: not bound +!missing-selector! UIKeyCommand::allowsAutomaticLocalization not bound +!missing-selector! UIKeyCommand::allowsAutomaticMirroring not bound +!missing-selector! UIKeyCommand::setAllowsAutomaticLocalization: not bound +!missing-selector! UIKeyCommand::setAllowsAutomaticMirroring: not bound +!missing-selector! UIKeyCommand::setWantsPriorityOverSystemBehavior: not bound +!missing-selector! UIKeyCommand::wantsPriorityOverSystemBehavior not bound +!missing-selector! UILabel::setShowsExpansionTextWhenTruncated: not bound +!missing-selector! UILabel::showsExpansionTextWhenTruncated not bound +!missing-selector! UIMenu::selectedElements not bound +!missing-selector! UIMenuElement::setSubtitle: not bound +!missing-selector! UIMenuElement::subtitle not bound +!missing-selector! UINavigationBar::compactScrollEdgeAppearance not bound +!missing-selector! UINavigationBar::setCompactScrollEdgeAppearance: not bound +!missing-selector! UINavigationItem::compactScrollEdgeAppearance not bound +!missing-selector! UINavigationItem::setCompactScrollEdgeAppearance: not bound +!missing-selector! UIPasteboardDetectionResult::matchedRange not bound +!missing-selector! UIPasteboardDetectionResult::matchedString not bound +!missing-selector! UIPasteboardDetectionResultAddress::city not bound +!missing-selector! UIPasteboardDetectionResultAddress::country not bound +!missing-selector! UIPasteboardDetectionResultAddress::postalCode not bound +!missing-selector! UIPasteboardDetectionResultAddress::state not bound +!missing-selector! UIPasteboardDetectionResultAddress::street not bound +!missing-selector! UIPasteboardDetectionResultCalendarEvent::allDay not bound +!missing-selector! UIPasteboardDetectionResultCalendarEvent::endDate not bound +!missing-selector! UIPasteboardDetectionResultCalendarEvent::endTimeZone not bound +!missing-selector! UIPasteboardDetectionResultCalendarEvent::startDate not bound +!missing-selector! UIPasteboardDetectionResultCalendarEvent::startTimeZone not bound +!missing-selector! UIPasteboardDetectionResultEmailAddress::emailAddress not bound +!missing-selector! UIPasteboardDetectionResultEmailAddress::label not bound +!missing-selector! UIPasteboardDetectionResultFlightNumber::airline not bound +!missing-selector! UIPasteboardDetectionResultFlightNumber::flightNumber not bound +!missing-selector! UIPasteboardDetectionResultLink::url not bound +!missing-selector! UIPasteboardDetectionResultMoneyAmount::amount not bound +!missing-selector! UIPasteboardDetectionResultMoneyAmount::currency not bound +!missing-selector! UIPasteboardDetectionResultPhoneNumber::label not bound +!missing-selector! UIPasteboardDetectionResultPhoneNumber::phoneNumber not bound +!missing-selector! UIPasteboardDetectionResultShipmentTrackingNumber::carrier not bound +!missing-selector! UIPasteboardDetectionResultShipmentTrackingNumber::trackingNumber not bound +!missing-selector! UIResponder::captureTextFromCamera: not bound +!missing-selector! UIScene::completeStateRestoration not bound +!missing-selector! UIScene::extendStateRestoration not bound +!missing-selector! UIScene::setSubtitle: not bound +!missing-selector! UIScene::subtitle not bound +!missing-selector! UITabBar::scrollEdgeAppearance not bound +!missing-selector! UITabBar::setScrollEdgeAppearance: not bound +!missing-selector! UITabBarItem::scrollEdgeAppearance not bound +!missing-selector! UITabBarItem::setScrollEdgeAppearance: not bound +!missing-selector! UITableView::allowsFocus not bound +!missing-selector! UITableView::allowsFocusDuringEditing not bound +!missing-selector! UITableView::fillerRowHeight not bound +!missing-selector! UITableView::isPrefetchingEnabled not bound +!missing-selector! UITableView::reconfigureRowsAtIndexPaths: not bound +!missing-selector! UITableView::sectionHeaderTopPadding not bound +!missing-selector! UITableView::setAllowsFocus: not bound +!missing-selector! UITableView::setAllowsFocusDuringEditing: not bound +!missing-selector! UITableView::setFillerRowHeight: not bound +!missing-selector! UITableView::setPrefetchingEnabled: not bound +!missing-selector! UITableView::setSectionHeaderTopPadding: not bound +!missing-selector! UITableViewCell::configurationUpdateHandler not bound +!missing-selector! UITableViewCell::setConfigurationUpdateHandler: not bound +!missing-selector! UITableViewDiffableDataSource::applySnapshotUsingReloadData: not bound +!missing-selector! UITableViewDiffableDataSource::applySnapshotUsingReloadData:completion: not bound +!missing-selector! UITableViewDiffableDataSource::indexForSectionIdentifier: not bound +!missing-selector! UITableViewDiffableDataSource::sectionIdentifierForIndex: not bound +!missing-selector! UITableViewHeaderFooterView::configurationUpdateHandler not bound +!missing-selector! UITableViewHeaderFooterView::setConfigurationUpdateHandler: not bound +!missing-selector! UITextField::interactionState not bound +!missing-selector! UITextField::setInteractionState: not bound +!missing-selector! UITextView::interactionState not bound +!missing-selector! UITextView::setInteractionState: not bound +!missing-selector! UIView::appliedContentSizeCategoryLimitsDescription not bound +!missing-selector! UIView::maximumContentSizeCategory not bound +!missing-selector! UIView::minimumContentSizeCategory not bound !missing-selector! UIView::preferredUIView not bound !missing-selector! UIView::preferredUIViewDidChange not bound +!missing-selector! UIView::setMaximumContentSizeCategory: not bound +!missing-selector! UIView::setMinimumContentSizeCategory: not bound !missing-selector! UIView::setPreferredUIView: not bound +!missing-selector! UIViewConfigurationState::isPinned not bound +!missing-selector! UIViewConfigurationState::setPinned: not bound +!missing-selector! UIViewController::contentScrollViewForEdge: not bound +!missing-selector! UIViewController::setContentScrollView:forEdge: not bound +!missing-selector! UIWindow::canBecomeKeyWindow not bound +!missing-selector! UIWindowScene::focusSystem not bound +!missing-selector! UIWindowScene::keyWindow not bound +!missing-selector! UIWindowSceneActivationRequestOptions::preferredPresentationStyle not bound +!missing-selector! UIWindowSceneActivationRequestOptions::setPreferredPresentationStyle: not bound +!missing-type! NSTextAttachmentViewProvider not bound !missing-type! NSTextContentManager not bound !missing-type! NSTextContentStorage not bound !missing-type! NSTextElement not bound @@ -464,3 +474,15 @@ !missing-type! NSTextSelection not bound !missing-type! NSTextSelectionNavigation not bound !missing-type! NSTextViewportLayoutController not bound +!missing-type! UIButtonConfiguration not bound +!missing-type! UIPasteboardDetectionResult not bound +!missing-type! UIPasteboardDetectionResultAddress not bound +!missing-type! UIPasteboardDetectionResultCalendarEvent not bound +!missing-type! UIPasteboardDetectionResultEmailAddress not bound +!missing-type! UIPasteboardDetectionResultFlightNumber not bound +!missing-type! UIPasteboardDetectionResultLink not bound +!missing-type! UIPasteboardDetectionResultMoneyAmount not bound +!missing-type! UIPasteboardDetectionResultPhoneNumber not bound +!missing-type! UIPasteboardDetectionResultShipmentTrackingNumber not bound +!missing-type! UIWindowSceneActivationRequestOptions not bound +## appended from unclassified file diff --git a/tests/xtro-sharpie/tvOS-VideoToolbox.todo b/tests/xtro-sharpie/tvOS-VideoToolbox.todo index 13d6a561347c..270cad9cf193 100644 --- a/tests/xtro-sharpie/tvOS-VideoToolbox.todo +++ b/tests/xtro-sharpie/tvOS-VideoToolbox.todo @@ -8,3 +8,4 @@ !missing-field! kVTProfileLevel_H264_ConstrainedBaseline_AutoLevel not bound !missing-field! kVTProfileLevel_H264_ConstrainedHigh_AutoLevel not bound !missing-field! kVTSampleAttachmentKey_RequireLTRAcknowledgementToken not bound +!missing-field! kVTVideoEncoderListOption_IncludeStandardDefinitionDVEncoders not bound diff --git a/tests/xtro-sharpie/watchOS-AVFoundation.todo b/tests/xtro-sharpie/watchOS-AVFoundation.todo index d014436d4ae8..20acd851f875 100644 --- a/tests/xtro-sharpie/watchOS-AVFoundation.todo +++ b/tests/xtro-sharpie/watchOS-AVFoundation.todo @@ -1,6 +1,8 @@ -## appended from unclassified file !deprecated-attribute-missing! AVPlayer::masterClock missing a [Deprecated] attribute !deprecated-attribute-missing! AVPlayer::setMasterClock: missing a [Deprecated] attribute +!deprecated-attribute-missing! AVPlayerItemAccessLogEvent::observedMaxBitrate missing a [Deprecated] attribute +!deprecated-attribute-missing! AVPlayerItemAccessLogEvent::observedMinBitrate missing a [Deprecated] attribute +!missing-enum! AVAudioRoutingArbitrationCategory not bound !missing-enum! AVDelegatingPlaybackCoordinatorRateChangeOptions not bound !missing-enum! AVDelegatingPlaybackCoordinatorSeekOptions not bound !missing-enum! AVPlayerAudiovisualBackgroundPlaybackPolicy not bound @@ -8,6 +10,8 @@ !missing-enum! AVSampleBufferRequestMode not bound !missing-enum-value! AVError native value AVErrorContentKeyRequestCancelled = -11879 not bound !missing-enum-value! AVError native value AVErrorOperationCancelled = -11878 not bound +!missing-field! AVAudioSessionSpatialAudioEnabledKey not bound +!missing-field! AVAudioSessionSpatialPlaybackCapabilitiesChangedNotification not bound !missing-field! AVMetadataIdentifierQuickTimeMetadataIsMontage not bound !missing-field! AVMetadataQuickTimeMetadataKeyIsMontage not bound !missing-field! AVMovieShouldSupportAliasDataReferencesKey not bound @@ -20,9 +24,7 @@ !missing-field! AVVideoRangePQ not bound !missing-field! AVVideoRangeSDR not bound !missing-selector! +AVMetadataItemFilter::metadataItemFilterForSharing not bound -!missing-selector! +AVPlayerInterstitialEvent::interstitialEventWithPrimaryItem:identifier:date:templateItems:restrictions:resumptionOffset:playoutLimit: not bound !missing-selector! +AVPlayerInterstitialEvent::interstitialEventWithPrimaryItem:identifier:date:templateItems:restrictions:resumptionOffset:playoutLimit:userDefinedAttributes: not bound -!missing-selector! +AVPlayerInterstitialEvent::interstitialEventWithPrimaryItem:identifier:time:templateItems:restrictions:resumptionOffset:playoutLimit: not bound !missing-selector! +AVPlayerInterstitialEvent::interstitialEventWithPrimaryItem:identifier:time:templateItems:restrictions:resumptionOffset:playoutLimit:userDefinedAttributes: not bound !missing-selector! +AVPlayerInterstitialEventMonitor::interstitialEventMonitorWithPrimaryPlayer: not bound !missing-selector! AVAsset::findUnusedTrackIDWithCompletionHandler: not bound @@ -30,9 +32,9 @@ !missing-selector! AVAsset::loadChapterMetadataGroupsWithTitleLocale:containingItemsWithCommonKeys:completionHandler: not bound !missing-selector! AVAsset::loadMediaSelectionGroupForMediaCharacteristic:completionHandler: not bound !missing-selector! AVAsset::loadMetadataForFormat:completionHandler: not bound +!missing-selector! AVAsset::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVAsset::loadTracksWithMediaCharacteristic:completionHandler: not bound !missing-selector! AVAsset::loadTracksWithMediaType:completionHandler: not bound -!missing-selector! AVAsset::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVAssetTrack::loadAssociatedTracksOfType:completionHandler: not bound !missing-selector! AVAssetTrack::loadMetadataForFormat:completionHandler: not bound !missing-selector! AVAssetTrack::loadSamplePresentationTimeForTrackTime:completionHandler: not bound @@ -49,24 +51,27 @@ !missing-selector! AVAssetVariantVideoAttributes::presentationSize not bound !missing-selector! AVAssetVariantVideoAttributes::videoRange not bound !missing-selector! AVAudioPCMBuffer::initWithPCMFormat:bufferListNoCopy:deallocator: not bound +!missing-selector! AVAudioSession::setSupportsMultichannelContent:error: not bound +!missing-selector! AVAudioSession::supportsMultichannelContent not bound +!missing-selector! AVAudioSessionPortDescription::isSpatialAudioEnabled not bound +!missing-selector! AVComposition::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVComposition::loadTracksWithMediaCharacteristic:completionHandler: not bound !missing-selector! AVComposition::loadTracksWithMediaType:completionHandler: not bound -!missing-selector! AVComposition::loadTrackWithTrackID:completionHandler: not bound +!missing-selector! AVFragmentedAsset::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVFragmentedAsset::loadTracksWithMediaCharacteristic:completionHandler: not bound !missing-selector! AVFragmentedAsset::loadTracksWithMediaType:completionHandler: not bound -!missing-selector! AVFragmentedAsset::loadTrackWithTrackID:completionHandler: not bound +!missing-selector! AVFragmentedMovie::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVFragmentedMovie::loadTracksWithMediaCharacteristic:completionHandler: not bound !missing-selector! AVFragmentedMovie::loadTracksWithMediaType:completionHandler: not bound -!missing-selector! AVFragmentedMovie::loadTrackWithTrackID:completionHandler: not bound +!missing-selector! AVMovie::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVMovie::loadTracksWithMediaCharacteristic:completionHandler: not bound !missing-selector! AVMovie::loadTracksWithMediaType:completionHandler: not bound -!missing-selector! AVMovie::loadTrackWithTrackID:completionHandler: not bound +!missing-selector! AVMutableComposition::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVMutableComposition::loadTracksWithMediaCharacteristic:completionHandler: not bound !missing-selector! AVMutableComposition::loadTracksWithMediaType:completionHandler: not bound -!missing-selector! AVMutableComposition::loadTrackWithTrackID:completionHandler: not bound +!missing-selector! AVMutableMovie::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVMutableMovie::loadTracksWithMediaCharacteristic:completionHandler: not bound !missing-selector! AVMutableMovie::loadTracksWithMediaType:completionHandler: not bound -!missing-selector! AVMutableMovie::loadTrackWithTrackID:completionHandler: not bound !missing-selector! AVPlayer::audiovisualBackgroundPlaybackPolicy not bound !missing-selector! AVPlayer::setAudiovisualBackgroundPlaybackPolicy: not bound !missing-selector! AVPlayer::setSourceClock: not bound @@ -88,9 +93,4 @@ !missing-type! AVAssetVariantAudioRenditionSpecificAttributes not bound !missing-type! AVAssetVariantVideoAttributes not bound !missing-type! AVMetadataItemFilter not bound -!missing-enum! AVAudioRoutingArbitrationCategory not bound -!missing-field! AVAudioSessionSpatialAudioEnabledKey not bound -!missing-field! AVAudioSessionSpatialPlaybackCapabilitiesChangedNotification not bound -!missing-selector! AVAudioSession::setSupportsMultichannelContent:error: not bound -!missing-selector! AVAudioSession::supportsMultichannelContent not bound -!missing-selector! AVAudioSessionPortDescription::isSpatialAudioEnabled not bound +## appended from unclassified file diff --git a/tests/xtro-sharpie/watchOS-CHIP.todo b/tests/xtro-sharpie/watchOS-CHIP.todo new file mode 100644 index 000000000000..c8fb5b913d99 --- /dev/null +++ b/tests/xtro-sharpie/watchOS-CHIP.todo @@ -0,0 +1,152 @@ +!missing-enum! CHIPCommissioningFlow not bound +!missing-null-allowed! 'Chip.ChipOptionalQRCodeInfo[] Chip.ChipSetupPayload::GetAllOptionalVendorData(Foundation.NSError&)' is missing an [NullAllowed] on return type +!missing-null-allowed! 'System.String Chip.ChipDevice::OpenPairingWindow(System.nuint,System.nuint,System.nuint,Foundation.NSError&)' is missing an [NullAllowed] on return type +!missing-selector! CHIPAccountLogin::getSetupPIN:responseHandler: not bound +!missing-selector! CHIPAccountLogin::login:setupPIN:responseHandler: not bound +!missing-selector! CHIPAccountLogin::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPApplicationLauncher::launchApp:catalogVendorId:applicationId:responseHandler: not bound +!missing-selector! CHIPApplicationLauncher::readAttributeApplicationLauncherListWithResponseHandler: not bound +!missing-selector! CHIPApplicationLauncher::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPAudioOutput::readAttributeAudioOutputListWithResponseHandler: not bound +!missing-selector! CHIPAudioOutput::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPAudioOutput::renameOutput:name:responseHandler: not bound +!missing-selector! CHIPAudioOutput::selectOutput:responseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::configureAttributePresentValueWithMinInterval:maxInterval:responseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::configureAttributeStatusFlagsWithMinInterval:maxInterval:responseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::readAttributeOutOfServiceWithResponseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::readAttributePresentValueWithResponseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::readAttributeStatusFlagsWithResponseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::reportAttributePresentValueWithResponseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::reportAttributeStatusFlagsWithResponseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::writeAttributeOutOfServiceWithValue:responseHandler: not bound +!missing-selector! CHIPBinaryInputBasic::writeAttributePresentValueWithValue:responseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeHardwareVersionStringWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeHardwareVersionWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeManufacturingDateWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributePartNumberWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeProductLabelWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeProductNameWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeProductURLWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeReachableWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeSerialNumberWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeSoftwareVersionStringWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeSoftwareVersionWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeUserLabelWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeVendorIDWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::readAttributeVendorNameWithResponseHandler: not bound +!missing-selector! CHIPBridgedDeviceBasic::writeAttributeUserLabelWithValue:responseHandler: not bound +!missing-selector! CHIPContentLaunch::launchContent:data:responseHandler: not bound +!missing-selector! CHIPContentLaunch::launchURL:displayString:responseHandler: not bound +!missing-selector! CHIPContentLaunch::readAttributeAcceptsHeaderListWithResponseHandler: not bound +!missing-selector! CHIPContentLaunch::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPContentLaunch::readAttributeSupportedStreamingTypesWithResponseHandler: not bound +!missing-selector! CHIPEthernetNetworkDiagnostics::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPEthernetNetworkDiagnostics::readAttributeCollisionCountWithResponseHandler: not bound +!missing-selector! CHIPEthernetNetworkDiagnostics::readAttributeOverrunCountWithResponseHandler: not bound +!missing-selector! CHIPEthernetNetworkDiagnostics::readAttributePacketRxCountWithResponseHandler: not bound +!missing-selector! CHIPEthernetNetworkDiagnostics::readAttributePacketTxCountWithResponseHandler: not bound +!missing-selector! CHIPEthernetNetworkDiagnostics::readAttributeTxErrCountWithResponseHandler: not bound +!missing-selector! CHIPEthernetNetworkDiagnostics::resetCounts: not bound +!missing-selector! CHIPFixedLabel::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPFixedLabel::readAttributeLabelListWithResponseHandler: not bound +!missing-selector! CHIPGeneralDiagnostics::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPGeneralDiagnostics::readAttributeNetworkInterfacesWithResponseHandler: not bound +!missing-selector! CHIPGeneralDiagnostics::readAttributeRebootCountWithResponseHandler: not bound +!missing-selector! CHIPKeypadInput::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPKeypadInput::sendKey:responseHandler: not bound +!missing-selector! CHIPMediaInput::hideInputStatus: not bound +!missing-selector! CHIPMediaInput::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPMediaInput::readAttributeMediaInputListWithResponseHandler: not bound +!missing-selector! CHIPMediaInput::renameInput:name:responseHandler: not bound +!missing-selector! CHIPMediaInput::selectInput:responseHandler: not bound +!missing-selector! CHIPMediaInput::showInputStatus: not bound +!missing-selector! CHIPMediaPlayback::mediaFastForward: not bound +!missing-selector! CHIPMediaPlayback::mediaNext: not bound +!missing-selector! CHIPMediaPlayback::mediaPause: not bound +!missing-selector! CHIPMediaPlayback::mediaPlay: not bound +!missing-selector! CHIPMediaPlayback::mediaPrevious: not bound +!missing-selector! CHIPMediaPlayback::mediaRewind: not bound +!missing-selector! CHIPMediaPlayback::mediaSkipBackward:responseHandler: not bound +!missing-selector! CHIPMediaPlayback::mediaSkipForward:responseHandler: not bound +!missing-selector! CHIPMediaPlayback::mediaSkipSeek:responseHandler: not bound +!missing-selector! CHIPMediaPlayback::mediaStartOver: not bound +!missing-selector! CHIPMediaPlayback::mediaStop: not bound +!missing-selector! CHIPMediaPlayback::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPOperationalCredentials::addOpCert:iCACertificate:iPKValue:caseAdminNode:adminVendorId:responseHandler: not bound +!missing-selector! CHIPOperationalCredentials::opCSRRequest:responseHandler: not bound +!missing-selector! CHIPRelativeHumidityMeasurement::configureAttributeMeasuredValueWithMinInterval:maxInterval:change:responseHandler: not bound +!missing-selector! CHIPRelativeHumidityMeasurement::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPRelativeHumidityMeasurement::readAttributeMaxMeasuredValueWithResponseHandler: not bound +!missing-selector! CHIPRelativeHumidityMeasurement::readAttributeMeasuredValueWithResponseHandler: not bound +!missing-selector! CHIPRelativeHumidityMeasurement::readAttributeMinMeasuredValueWithResponseHandler: not bound +!missing-selector! CHIPRelativeHumidityMeasurement::reportAttributeMeasuredValueWithResponseHandler: not bound +!missing-selector! CHIPSetupPayload::commissioningFlow not bound +!missing-selector! CHIPSetupPayload::setCommissioningFlow: not bound +!missing-selector! CHIPSoftwareDiagnostics::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPSoftwareDiagnostics::readAttributeCurrentHeapHighWatermarkWithResponseHandler: not bound +!missing-selector! CHIPSoftwareDiagnostics::resetWatermarks: not bound +!missing-selector! CHIPTargetNavigator::navigateTarget:data:responseHandler: not bound +!missing-selector! CHIPTargetNavigator::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPTargetNavigator::readAttributeTargetNavigatorListWithResponseHandler: not bound +!missing-selector! CHIPTestCluster::readAttributeListOctetStringWithResponseHandler: not bound +!missing-selector! CHIPTestCluster::readAttributeListStructOctetStringWithResponseHandler: not bound +!missing-selector! CHIPTestCluster::testUnknownCommand: not bound +!missing-selector! CHIPTrustedRootCertificates::addTrustedRootCertificate:responseHandler: not bound +!missing-selector! CHIPTrustedRootCertificates::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPTrustedRootCertificates::removeTrustedRootCertificate:responseHandler: not bound +!missing-selector! CHIPTvChannel::changeChannel:responseHandler: not bound +!missing-selector! CHIPTvChannel::changeChannelByNumber:minorNumber:responseHandler: not bound +!missing-selector! CHIPTvChannel::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPTvChannel::readAttributeCurrentTvChannelWithResponseHandler: not bound +!missing-selector! CHIPTvChannel::readAttributeTvChannelLineupWithResponseHandler: not bound +!missing-selector! CHIPTvChannel::readAttributeTvChannelListWithResponseHandler: not bound +!missing-selector! CHIPTvChannel::skipChannel:responseHandler: not bound +!missing-selector! CHIPWakeOnLan::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPWakeOnLan::readAttributeWakeOnLanMacAddressWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::configureAttributeConfigStatusWithMinInterval:maxInterval:responseHandler: not bound +!missing-selector! CHIPWindowCovering::configureAttributeCurrentPositionLiftWithMinInterval:maxInterval:change:responseHandler: not bound +!missing-selector! CHIPWindowCovering::configureAttributeCurrentPositionTiltWithMinInterval:maxInterval:change:responseHandler: not bound +!missing-selector! CHIPWindowCovering::configureAttributeWindowCoveringTypeWithMinInterval:maxInterval:responseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeClusterRevisionWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeConfigStatusWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeCurrentPositionLiftWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeCurrentPositionTiltWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeInstalledClosedLimitLiftWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeInstalledClosedLimitTiltWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeInstalledOpenLimitLiftWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeInstalledOpenLimitTiltWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeModeWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::readAttributeWindowCoveringTypeWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::reportAttributeConfigStatusWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::reportAttributeCurrentPositionLiftWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::reportAttributeCurrentPositionTiltWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::reportAttributeWindowCoveringTypeWithResponseHandler: not bound +!missing-selector! CHIPWindowCovering::windowCoveringDownClose: not bound +!missing-selector! CHIPWindowCovering::windowCoveringGoToLiftPercentage:responseHandler: not bound +!missing-selector! CHIPWindowCovering::windowCoveringGoToLiftValue:responseHandler: not bound +!missing-selector! CHIPWindowCovering::windowCoveringGoToTiltPercentage:responseHandler: not bound +!missing-selector! CHIPWindowCovering::windowCoveringGoToTiltValue:responseHandler: not bound +!missing-selector! CHIPWindowCovering::windowCoveringStop: not bound +!missing-selector! CHIPWindowCovering::windowCoveringUpOpen: not bound +!missing-selector! CHIPWindowCovering::writeAttributeModeWithValue:responseHandler: not bound +!missing-type! CHIPAccountLogin not bound +!missing-type! CHIPApplicationLauncher not bound +!missing-type! CHIPAudioOutput not bound +!missing-type! CHIPBinaryInputBasic not bound +!missing-type! CHIPBridgedDeviceBasic not bound +!missing-type! CHIPContentLaunch not bound +!missing-type! CHIPEthernetNetworkDiagnostics not bound +!missing-type! CHIPFixedLabel not bound +!missing-type! CHIPGeneralDiagnostics not bound +!missing-type! CHIPKeypadInput not bound +!missing-type! CHIPMediaInput not bound +!missing-type! CHIPMediaPlayback not bound +!missing-type! CHIPRelativeHumidityMeasurement not bound +!missing-type! CHIPSoftwareDiagnostics not bound +!missing-type! CHIPTargetNavigator not bound +!missing-type! CHIPTrustedRootCertificates not bound +!missing-type! CHIPTvChannel not bound +!missing-type! CHIPWakeOnLan not bound +!missing-type! CHIPWindowCovering not bound diff --git a/tests/xtro-sharpie/watchOS-CoreMIDI.todo b/tests/xtro-sharpie/watchOS-CoreMIDI.todo index 935a4222a3c4..05a1dddbc829 100644 --- a/tests/xtro-sharpie/watchOS-CoreMIDI.todo +++ b/tests/xtro-sharpie/watchOS-CoreMIDI.todo @@ -1,44 +1,15 @@ +!missing-enum! MIDICVStatus not bound +!missing-enum! MIDIMessageType not bound +!missing-enum! MIDINetworkConnectionPolicy not bound +!missing-enum! MIDINoteAttributeType not bound !missing-enum! MIDINotificationMessageID not bound !missing-enum! MIDIObjectType not bound +!missing-enum! MIDIPerNoteManagementOptions not bound +!missing-enum! MIDIProgramChangeOptions not bound !missing-enum! MIDIProtocolID not bound -!missing-pinvoke! MIDIClientCreate is not bound -!missing-pinvoke! MIDIClientDispose is not bound -!missing-pinvoke! MIDIDestinationCreate is not bound -!missing-pinvoke! MIDIDeviceGetEntity is not bound -!missing-pinvoke! MIDIDeviceGetNumberOfEntities is not bound -!missing-pinvoke! MIDIEndpointDispose is not bound -!missing-pinvoke! MIDIEndpointGetEntity is not bound -!missing-pinvoke! MIDIEntityGetDestination is not bound -!missing-pinvoke! MIDIEntityGetDevice is not bound -!missing-pinvoke! MIDIEntityGetNumberOfDestinations is not bound -!missing-pinvoke! MIDIEntityGetNumberOfSources is not bound -!missing-pinvoke! MIDIEntityGetSource is not bound -!missing-pinvoke! MIDIFlushOutput is not bound -!missing-pinvoke! MIDIGetDestination is not bound -!missing-pinvoke! MIDIGetDevice is not bound -!missing-pinvoke! MIDIGetExternalDevice is not bound -!missing-pinvoke! MIDIGetNumberOfDestinations is not bound -!missing-pinvoke! MIDIGetNumberOfDevices is not bound -!missing-pinvoke! MIDIGetNumberOfExternalDevices is not bound -!missing-pinvoke! MIDIGetNumberOfSources is not bound -!missing-pinvoke! MIDIGetSource is not bound -!missing-pinvoke! MIDIInputPortCreate is not bound -!missing-pinvoke! MIDIObjectFindByUniqueID is not bound -!missing-pinvoke! MIDIObjectGetDataProperty is not bound -!missing-pinvoke! MIDIObjectGetDictionaryProperty is not bound -!missing-pinvoke! MIDIObjectGetIntegerProperty is not bound -!missing-pinvoke! MIDIObjectGetProperties is not bound -!missing-pinvoke! MIDIObjectGetStringProperty is not bound -!missing-pinvoke! MIDIObjectRemoveProperty is not bound -!missing-pinvoke! MIDIObjectSetDataProperty is not bound -!missing-pinvoke! MIDIObjectSetDictionaryProperty is not bound -!missing-pinvoke! MIDIObjectSetIntegerProperty is not bound -!missing-pinvoke! MIDIObjectSetStringProperty is not bound -!missing-pinvoke! MIDIOutputPortCreate is not bound -!missing-pinvoke! MIDIPortConnectSource is not bound -!missing-pinvoke! MIDIPortDisconnectSource is not bound -!missing-pinvoke! MIDIPortDispose is not bound -!missing-pinvoke! MIDIReceived is not bound -!missing-pinvoke! MIDIRestart is not bound -!missing-pinvoke! MIDISend is not bound -!missing-pinvoke! MIDISourceCreate is not bound +!missing-enum! MIDISysExStatus not bound +!missing-enum! MIDISystemStatus not bound +!missing-enum! MIDITransformControlType not bound +!missing-enum! MIDITransformType not bound +!missing-enum! MIDIUtilityStatus not bound +!missing-pinvoke! MIDIEventListForEachEvent is not bound diff --git a/tests/xtro-sharpie/watchOS-HomeKit.todo b/tests/xtro-sharpie/watchOS-HomeKit.todo index 46acacf44081..8cb0787869f0 100644 --- a/tests/xtro-sharpie/watchOS-HomeKit.todo +++ b/tests/xtro-sharpie/watchOS-HomeKit.todo @@ -1,18 +1,16 @@ !missing-enum-value! HMError native value HMErrorCodeAccessoryIsSuspended = 103 not bound -!missing-selector! HMAccessorySetupManager::addAndSetUpAccessoriesForTopology:completionHandler: not bound !missing-selector! HMCHIPServiceHome::initWithUUID:name: not bound !missing-selector! HMCHIPServiceHome::name not bound !missing-selector! HMCHIPServiceHome::uuid not bound !missing-selector! HMCHIPServiceRequestHandler::configureAccessoryWithName:room:completion: not bound !missing-selector! HMCHIPServiceRequestHandler::fetchRoomsInHome:completion: not bound +!missing-selector! HMCHIPServiceRequestHandler::pairAccessoryInHome:onboardingPayload:completion: not bound !missing-selector! HMCHIPServiceRoom::initWithUUID:name: not bound !missing-selector! HMCHIPServiceRoom::name not bound !missing-selector! HMCHIPServiceRoom::uuid not bound !missing-selector! HMCHIPServiceTopology::homes not bound !missing-selector! HMCHIPServiceTopology::initWithHomes: not bound -!missing-type! HMAccessorySetupManager not bound !missing-type! HMCHIPServiceHome not bound !missing-type! HMCHIPServiceRequestHandler not bound !missing-type! HMCHIPServiceRoom not bound !missing-type! HMCHIPServiceTopology not bound -!missing-selector! HMCHIPServiceRequestHandler::pairAccessoryInHome:onboardingPayload:completion: not bound diff --git a/tests/xtro-sharpie/watchOS-ImageIO.todo b/tests/xtro-sharpie/watchOS-ImageIO.todo new file mode 100644 index 000000000000..b5a8ec1f4414 --- /dev/null +++ b/tests/xtro-sharpie/watchOS-ImageIO.todo @@ -0,0 +1 @@ +!missing-field! kCGImagePropertyPNGPixelsAspectRatio not bound diff --git a/tests/xtro-sharpie/watchOS-UIKit.ignore b/tests/xtro-sharpie/watchOS-UIKit.ignore index 812adbcf7abf..c32fe33e5835 100644 --- a/tests/xtro-sharpie/watchOS-UIKit.ignore +++ b/tests/xtro-sharpie/watchOS-UIKit.ignore @@ -6,9 +6,6 @@ ## not part of tvOS and we provide the replacement selector with the same managed API !missing-selector! NSAttributedString::initWithFileURL:options:documentAttributes:error: not bound -## UITraitCollection is not available on watchOS -!missing-selector! +UIColor::colorNamed:inBundle:compatibleWithTraitCollection: not bound - ## lack of availabilty macros on NSItemProvder.PreferredPresentationStyle - intro says they are not available ## and that also means the (enum/returned) type is unused !missing-enum! UIPreferredPresentationStyle not bound