[xcode15] Bump Xcode 15 to Beta 6 (#18668)
This commit is contained in:
Родитель
2a04d3ca48
Коммит
ed6affbb50
|
@ -201,8 +201,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=15.0
|
||||
XCODE_URL=https://dl.internalx.com/internal-files/xcodes/Xcode_15_beta_4.xip
|
||||
XCODE_DEVELOPER_ROOT=/Applications/Xcode_15.0.0-beta4.app/Contents/Developer
|
||||
XCODE_URL=https://dl.internalx.com/internal-files/xcodes/Xcode_15_beta_6.xip
|
||||
XCODE_DEVELOPER_ROOT=/Applications/Xcode_15.0.0-beta6.app/Contents/Developer
|
||||
XCODE_PRODUCT_BUILD_VERSION:=$(shell /usr/libexec/PlistBuddy -c 'Print :ProductBuildVersion' $(XCODE_DEVELOPER_ROOT)/../version.plist 2>/dev/null || echo " $(shell tput setaf 1 2>/dev/null)The required Xcode ($(XCODE_VERSION)) is not installed in $(basename $(basename $(XCODE_DEVELOPER_ROOT)))$(shell tput sgr0 2>/dev/null)" >&2)
|
||||
|
||||
# We define stable Xcode as the Xcode app being named like "Xcode_#.#[.#].app"
|
||||
|
|
|
@ -77,7 +77,7 @@ namespace Xamarin.MacDev.Tasks {
|
|||
arguments.Add ("clang++");
|
||||
// check if needs to be removed: https://github.com/xamarin/xamarin-macios/issues/18556
|
||||
arguments.Add ("-Xlinker");
|
||||
arguments.Add ("-ld64");
|
||||
arguments.Add ("-ld_classic");
|
||||
|
||||
var hasEmbeddedFrameworks = false;
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
using System;
|
||||
using System.ComponentModel;
|
||||
using ObjCRuntime;
|
||||
using Foundation;
|
||||
using CoreLocation;
|
||||
|
@ -83,8 +84,17 @@ namespace CloudKit {
|
|||
}
|
||||
|
||||
[MacCatalyst (13, 1)]
|
||||
[DisableDefaultCtor]
|
||||
[BaseType (typeof (NSObject))]
|
||||
interface CKShareMetadata : NSCopying, NSSecureCoding {
|
||||
|
||||
#if !XAMCORE_5_0
|
||||
[EditorBrowsable (EditorBrowsableState.Never)]
|
||||
[Obsolete ("Get them from 'CKFetchShareMetadataOperation' or platform-specific scene / app delegate callbacks.")]
|
||||
[Export ("init")]
|
||||
NativeHandle Constructor ();
|
||||
#endif
|
||||
|
||||
[Export ("containerIdentifier")]
|
||||
string ContainerIdentifier { get; }
|
||||
|
||||
|
|
|
@ -347,6 +347,18 @@ function download_xcode_platforms ()
|
|||
$SUDO "$XCODE_DEVELOPER_ROOT/usr/bin/xcodebuild" -runFirstLaunch
|
||||
log "Executed '$SUDO $XCODE_DEVELOPER_ROOT/usr/bin/xcodebuild -runFirstLaunch'"
|
||||
|
||||
# This is a workaround for a bug in Xcode 15 where we need to open the platforms panel for it to register the simulators.
|
||||
log "Executing 'open xcpref://Xcode.PreferencePane.Platforms'"
|
||||
log "Killing Xcode"
|
||||
pkill -9 "Xcode" || log "Xcode was not running."
|
||||
log "Opening Xcode preferences panel"
|
||||
open xcpref://Xcode.PreferencePane.Platforms
|
||||
log "waiting 10 secs for Xcode to open the preferences panel"
|
||||
sleep 10
|
||||
log "Killing Xcode"
|
||||
pkill -9 "Xcode" || log "Xcode was not running."
|
||||
log "Executed 'open xcpref://Xcode.PreferencePane.Platforms'"
|
||||
|
||||
log "Executed '$XCODE_DEVELOPER_ROOT/usr/bin/xcodebuild -downloadAllPlatforms'"
|
||||
}
|
||||
|
||||
|
|
|
@ -51,7 +51,7 @@ namespace MonoTouchFixtures.Foundation {
|
|||
TestRuntime.AssertXcodeVersion (5, 0);
|
||||
|
||||
NSUrlSession session = NSUrlSession.SharedSession;
|
||||
var url = new NSUrl ("https://www.microsoft.com");
|
||||
var url = new NSUrl (NetworkResources.Httpbin.PostUrl);
|
||||
var tmpfile = Path.GetTempFileName ();
|
||||
File.WriteAllText (tmpfile, "TMPFILE");
|
||||
var file_url = NSUrl.FromFilename (tmpfile);
|
||||
|
|
|
@ -112,9 +112,7 @@ namespace MonoTouchFixtures {
|
|||
vc.View.BackgroundColor = UIColor.Green;
|
||||
};
|
||||
AppDelegate.PresentModalViewController (nc, 0.5);
|
||||
if (TestRuntime.CheckXcodeVersion (15, 0)) {
|
||||
Assert.That (category_invoked);
|
||||
} else if (TestRuntime.CheckXcodeVersion (14, 0)) {
|
||||
if (TestRuntime.CheckXcodeVersion (14, 0)) {
|
||||
// The 'shouldAutorotate' selector isn't called anymore in iOS 16+ (this is documented in Xcode 14's release notes)
|
||||
Assert.That (!category_invoked);
|
||||
} else {
|
||||
|
|
|
@ -56,6 +56,7 @@ $(XIOS_PCH): .stamp-check-sharpie
|
|||
-exclude Matter \
|
||||
-exclude MetalPerformanceShadersGraph \
|
||||
-exclude NearbyInteraction \
|
||||
-exclude WebKit \
|
||||
-i ThreadNetwork/THClient.h \
|
||||
$(CORETELEPHONY_HEADERS) \
|
||||
|
||||
|
@ -104,6 +105,7 @@ $(XMACOS_PCH): .stamp-check-sharpie
|
|||
-exclude GameController \
|
||||
-exclude Matter \
|
||||
-exclude MetalPerformanceShadersGraph \
|
||||
-exclude WebKit \
|
||||
$(CORETELEPHONY_HEADERS) \
|
||||
|
||||
XMACCATALYST_ARCH = x86_64
|
||||
|
|
|
@ -474,3 +474,4 @@
|
|||
!missing-type! AVCaptureReactionEffectState not bound
|
||||
!missing-type! AVMetadataHumanFullBodyObject not bound
|
||||
!missing-type! AVSampleBufferVideoRenderer not bound
|
||||
!missing-field! AVCaptureDeviceTypeContinuityCamera not bound
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
!missing-field! AXPrefersHorizontalTextLayoutDidChangeNotification not bound
|
||||
!missing-pinvoke! AXPrefersHorizontalTextLayout is not bound
|
|
@ -12,7 +12,6 @@
|
|||
!missing-protocol-conformance! ASPasswordCredentialIdentity should conform to ASCredentialIdentity
|
||||
!missing-selector! +ASPasskeyAssertionCredential::credentialWithUserHandle:relyingParty:signature:clientDataHash:authenticatorData:credentialID: not bound
|
||||
!missing-selector! +ASPasskeyCredentialIdentity::identityWithRelyingPartyIdentifier:userName:credentialID:userHandle:recordIdentifier: not bound
|
||||
!missing-selector! +ASPasskeyCredentialRequest::requestWithCredentialIdentity:clientDataHash:userVerificationPreference: not bound
|
||||
!missing-selector! +ASPasskeyRegistrationCredential::credentialWithRelyingParty:clientDataHash:credentialID:attestationObject: not bound
|
||||
!missing-selector! +ASPasswordCredentialRequest::requestWithCredentialIdentity: not bound
|
||||
!missing-selector! +ASSettingsHelper::openCredentialProviderAppSettingsWithCompletionHandler: not bound
|
||||
|
@ -43,7 +42,6 @@
|
|||
!missing-selector! ASPasskeyCredentialIdentity::userHandle not bound
|
||||
!missing-selector! ASPasskeyCredentialIdentity::userName not bound
|
||||
!missing-selector! ASPasskeyCredentialRequest::clientDataHash not bound
|
||||
!missing-selector! ASPasskeyCredentialRequest::initWithCredentialIdentity:clientDataHash:userVerificationPreference: not bound
|
||||
!missing-selector! ASPasskeyCredentialRequest::setUserVerificationPreference: not bound
|
||||
!missing-selector! ASPasskeyCredentialRequest::userVerificationPreference not bound
|
||||
!missing-selector! ASPasskeyRegistrationCredential::attestationObject not bound
|
||||
|
@ -58,3 +56,34 @@
|
|||
!missing-type! ASPasskeyRegistrationCredential not bound
|
||||
!missing-type! ASPasswordCredentialRequest not bound
|
||||
!missing-type! ASSettingsHelper not bound
|
||||
!missing-enum! ASAuthorizationPublicKeyCredentialLargeBlobAssertionOperation not bound
|
||||
!missing-enum! ASAuthorizationPublicKeyCredentialLargeBlobSupportRequirement not bound
|
||||
!missing-selector! +ASPasskeyCredentialRequest::requestWithCredentialIdentity:clientDataHash:userVerificationPreference:supportedAlgorithms: not bound
|
||||
!missing-selector! ASAuthorizationPlatformPublicKeyCredentialAssertion::largeBlob not bound
|
||||
!missing-selector! ASAuthorizationPlatformPublicKeyCredentialAssertionRequest::largeBlob not bound
|
||||
!missing-selector! ASAuthorizationPlatformPublicKeyCredentialAssertionRequest::setLargeBlob: not bound
|
||||
!missing-selector! ASAuthorizationPlatformPublicKeyCredentialRegistration::largeBlob not bound
|
||||
!missing-selector! ASAuthorizationPlatformPublicKeyCredentialRegistrationRequest::largeBlob not bound
|
||||
!missing-selector! ASAuthorizationPlatformPublicKeyCredentialRegistrationRequest::setLargeBlob: not bound
|
||||
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobAssertionInput::dataToWrite not bound
|
||||
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobAssertionInput::initWithOperation: not bound
|
||||
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobAssertionInput::operation not bound
|
||||
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobAssertionInput::setDataToWrite: not bound
|
||||
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobAssertionOutput::didWrite not bound
|
||||
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobAssertionOutput::readData not bound
|
||||
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobRegistrationInput::initWithSupportRequirement: not bound
|
||||
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobRegistrationInput::setSupportRequirement: not bound
|
||||
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobRegistrationInput::supportRequirement not bound
|
||||
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobRegistrationOutput::isSupported not bound
|
||||
!missing-selector! ASCredentialProviderViewController::prepareCredentialListForServiceIdentifiers:requestParameters: not bound
|
||||
!missing-selector! ASPasskeyCredentialRequest::initWithCredentialIdentity:clientDataHash:userVerificationPreference:supportedAlgorithms: not bound
|
||||
!missing-selector! ASPasskeyCredentialRequest::supportedAlgorithms not bound
|
||||
!missing-selector! ASPasskeyCredentialRequestParameters::allowedCredentials not bound
|
||||
!missing-selector! ASPasskeyCredentialRequestParameters::clientDataHash not bound
|
||||
!missing-selector! ASPasskeyCredentialRequestParameters::relyingPartyIdentifier not bound
|
||||
!missing-selector! ASPasskeyCredentialRequestParameters::userVerificationPreference not bound
|
||||
!missing-type! ASAuthorizationPublicKeyCredentialLargeBlobAssertionInput not bound
|
||||
!missing-type! ASAuthorizationPublicKeyCredentialLargeBlobAssertionOutput not bound
|
||||
!missing-type! ASAuthorizationPublicKeyCredentialLargeBlobRegistrationInput not bound
|
||||
!missing-type! ASAuthorizationPublicKeyCredentialLargeBlobRegistrationOutput not bound
|
||||
!missing-type! ASPasskeyCredentialRequestParameters not bound
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
!missing-enum! BAErrorCode not bound
|
||||
!missing-field! BAErrorDomain not bound
|
|
@ -1 +1,2 @@
|
|||
!missing-enum-value! CXErrorCodeIncomingCallError native value CXErrorCodeIncomingCallErrorFilteredDuringRestrictedSharingMode = 5 not bound
|
||||
!extra-designated-initializer! CXSetMutedCallAction::initWithCallUUID:muted: is incorrectly decorated with an [DesignatedInitializer] attribute
|
||||
|
|
|
@ -70,10 +70,8 @@
|
|||
!missing-selector! CKSyncEngineFailedRecordSave::record not bound
|
||||
!missing-selector! CKSyncEngineFailedZoneSave::error not bound
|
||||
!missing-selector! CKSyncEngineFailedZoneSave::recordZone not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::initWithZoneIDs: not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::operationGroup not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::setOperationGroup: not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::zoneIDs not bound
|
||||
!missing-selector! CKSyncEngineFetchedDatabaseChangesEvent::deletions not bound
|
||||
!missing-selector! CKSyncEngineFetchedDatabaseChangesEvent::modifications not bound
|
||||
!missing-selector! CKSyncEngineFetchedRecordDeletion::recordID not bound
|
||||
|
@ -98,12 +96,8 @@
|
|||
!missing-selector! CKSyncEngineRecordZoneChangeBatch::setAtomicByZone: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesContext::options not bound
|
||||
!missing-selector! CKSyncEngineSendChangesContext::reason not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::initWithRecordIDs: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::initWithZoneIDs: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::operationGroup not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::recordIDs not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::setOperationGroup: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::zoneIDs not bound
|
||||
!missing-selector! CKSyncEngineSentDatabaseChangesEvent::deletedZoneIDs not bound
|
||||
!missing-selector! CKSyncEngineSentDatabaseChangesEvent::failedZoneDeletes not bound
|
||||
!missing-selector! CKSyncEngineSentDatabaseChangesEvent::failedZoneSaves not bound
|
||||
|
@ -152,3 +146,29 @@
|
|||
!missing-type! CKSyncEngineWillFetchChangesEvent not bound
|
||||
!missing-type! CKSyncEngineWillFetchRecordZoneChangesEvent not bound
|
||||
!missing-type! CKSyncEngineWillSendChangesEvent not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesContext::options not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesContext::reason not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::initWithScope: not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::prioritizedZoneIDs not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::scope not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::setPrioritizedZoneIDs: not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::setScope: not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesScope::excludedZoneIDs not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesScope::initWithExcludedZoneIDs: not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesScope::initWithZoneIDs: not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesScope::zoneIDs not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::initWithScope: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::scope not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::setScope: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesScope::containsPendingRecordZoneChange: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesScope::containsRecordID: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesScope::excludedZoneIDs not bound
|
||||
!missing-selector! CKSyncEngineSendChangesScope::initWithExcludedZoneIDs: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesScope::initWithRecordIDs: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesScope::initWithZoneIDs: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesScope::recordIDs not bound
|
||||
!missing-selector! CKSyncEngineSendChangesScope::zoneIDs not bound
|
||||
!missing-selector! CKSyncEngineState::zoneIDsWithUnfetchedServerChanges not bound
|
||||
!missing-type! CKSyncEngineFetchChangesContext not bound
|
||||
!missing-type! CKSyncEngineFetchChangesScope not bound
|
||||
!missing-type! CKSyncEngineSendChangesScope not bound
|
||||
|
|
|
@ -32,3 +32,4 @@
|
|||
!missing-type! NSManagedObjectModelReference not bound
|
||||
!missing-type! NSMigrationStage not bound
|
||||
!missing-type! NSStagedMigrationManager not bound
|
||||
!missing-selector! +NSManagedObjectModel::checksumsForVersionedModelAtURL:error: not bound
|
||||
|
|
|
@ -1 +1,2 @@
|
|||
!missing-field! kCFURLFileProtectionCompleteWhenUserInactive not bound
|
||||
!missing-field! kCFURLDirectoryEntryCountKey not bound
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
!missing-selector! CSSuggestion::score not bound
|
||||
!missing-selector! CSSuggestion::suggestionDataSources not bound
|
||||
!missing-selector! CSSearchableIndex::initWithName:protectionClass:bundleIdentifier:options: not bound
|
||||
|
|
|
@ -56,3 +56,4 @@
|
|||
!missing-selector! NSURLSessionUploadTask::cancelByProducingResumeData: not bound
|
||||
!missing-type! NSMorphologyPronoun not bound
|
||||
!missing-type! NSTermOfAddress not bound
|
||||
!missing-field! NSURLDirectoryEntryCountKey not bound
|
||||
|
|
|
@ -45,3 +45,4 @@
|
|||
!missing-selector! HKWorkoutSession::type not bound
|
||||
!missing-selector! HKWorkoutSession::workoutConfiguration not bound
|
||||
!missing-type! HKWorkoutSession not bound
|
||||
!missing-enum-value! HKErrorCode native value HKErrorBackgroundWorkoutSessionNotAllowed = 14 not bound
|
||||
|
|
|
@ -38,3 +38,8 @@
|
|||
!missing-type! INMessageLinkMetadata not bound
|
||||
!missing-type! INUnsendMessagesIntent not bound
|
||||
!missing-type! INUnsendMessagesIntentResponse not bound
|
||||
!missing-enum-value! INSearchForMessagesIntentResponseCode native value INSearchForMessagesIntentResponseCodeFailureRequiringInAppAuthentication = 8 not bound
|
||||
!missing-enum-value! INSendMessageIntentResponseCode native value INSendMessageIntentResponseCodeFailureRequiringInAppAuthentication = 7 not bound
|
||||
!missing-enum-value! INSendMessageRecipientUnsupportedReason native value INSendMessageRecipientUnsupportedReasonRequiringInAppAuthentication = 7 not bound
|
||||
!missing-enum-value! INStartCallContactUnsupportedReason native value INStartCallContactUnsupportedReasonRequiringInAppAuthentication = 8 not bound
|
||||
!missing-enum-value! INStartCallIntentResponseCode native value INStartCallIntentResponseCodeFailureRequiringInAppAuthentication = 13 not bound
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
!missing-enum-value! LABiometryType native value LABiometryTypeOpticID = 4 not bound
|
|
@ -0,0 +1,54 @@
|
|||
!deprecated-attribute-missing! MLCActivationDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCActivationLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCAdamOptimizer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCAdamWOptimizer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCArithmeticLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCBatchNormalizationLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCComparisonLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCConcatenationLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCConvolutionDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCConvolutionLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCDevice missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCDropoutLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCEmbeddingDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCEmbeddingLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCFullyConnectedLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCGatherLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCGramMatrixLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCGraph missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCGroupNormalizationLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCInferenceGraph missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCInstanceNormalizationLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCLayerNormalizationLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCLossDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCLossLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCLSTMDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCLSTMLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCMatMulDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCMatMulLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCMultiheadAttentionDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCMultiheadAttentionLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCOptimizer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCOptimizerDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCPaddingLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCPlatform missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCPoolingDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCPoolingLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCReductionLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCReshapeLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCScatterLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCSelectionLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCSGDOptimizer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCSliceLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCSoftmaxLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCSplitLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCTensor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCTensorData missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCTensorDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCTensorParameter missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCTrainingGraph missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCTransposeLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCUpsampleLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCYOLOLossDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCYOLOLossLayer missing a [Deprecated] attribute
|
|
@ -6,3 +6,7 @@
|
|||
!deprecated-attribute-missing! MKMapSnapshotOptions::showsBuildings missing a [Deprecated] attribute
|
||||
!missing-selector! MKMapSnapshotOptions::preferredConfiguration not bound
|
||||
!missing-selector! MKMapSnapshotOptions::setPreferredConfiguration: not bound
|
||||
!missing-selector! MKMapView::pitchButtonVisibility not bound
|
||||
!missing-selector! MKMapView::setPitchButtonVisibility: not bound
|
||||
!missing-selector! MKMapView::setShowsUserTrackingButton: not bound
|
||||
!missing-selector! MKMapView::showsUserTrackingButton not bound
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
!missing-selector! MSSticker::initWithFileURL:identifier:localizedDescription: not bound
|
|
@ -33,3 +33,5 @@
|
|||
!missing-type! NEFailureHandlerProvider not bound
|
||||
!missing-type! NERelay not bound
|
||||
!missing-type! NERelayManager not bound
|
||||
!missing-selector! NERelay::dnsOverHTTPSURL not bound
|
||||
!missing-selector! NERelay::setDnsOverHTTPSURL: not bound
|
||||
|
|
|
@ -27,7 +27,6 @@
|
|||
!missing-enum! UITextViewBorderStyle not bound
|
||||
!missing-enum-value! UIMenuOptions native value UIMenuOptionsDisplayAsPalette = 128 not bound
|
||||
!missing-enum-value! UINavigationItemLargeTitleDisplayMode native value UINavigationItemLargeTitleDisplayModeInline = 3 not bound
|
||||
!missing-enum-value! UIUserInterfaceIdiom native value UIUserInterfaceIdiomReality = 6 not bound
|
||||
!missing-field! UIAccessibilityPriorityDefault not bound
|
||||
!missing-field! UIAccessibilityPriorityHigh not bound
|
||||
!missing-field! UIAccessibilityPriorityLow not bound
|
||||
|
@ -494,3 +493,14 @@
|
|||
!missing-type! UIWindowSceneProminentPlacement not bound
|
||||
!missing-type! UIWindowSceneStandardPlacement not bound
|
||||
!wrong-base-type! UIPointerStyle expected UIHoverStyle actual NSObject
|
||||
!deprecated-attribute-missing! UICloudSharingController::initWithPreparationHandler: missing a [Deprecated] attribute
|
||||
!missing-enum-value! UIMenuElementSize native value UIMenuElementSizeAutomatic = -1 not bound
|
||||
!missing-enum-value! UIUserInterfaceIdiom native value UIUserInterfaceIdiomVision = 6 not bound
|
||||
!missing-field! NSDefaultFontExcludedDocumentAttribute not bound
|
||||
!missing-protocol! UIShapeProvider not bound
|
||||
!missing-selector! +UIShape::fixedRectShapeWithRect:cornerRadius: not bound
|
||||
!missing-selector! +UIShape::fixedRectShapeWithRect:cornerRadius:cornerCurve:maskedCorners: not bound
|
||||
!missing-selector! +UIShape::shapeWithProvider: not bound
|
||||
!missing-selector! UIHoverStyle::isEnabled not bound
|
||||
!missing-selector! UIHoverStyle::setEnabled: not bound
|
||||
!unknown-field! NSReadAccessURLDocumentOption bound
|
||||
|
|
|
@ -1,17 +1,70 @@
|
|||
!missing-enum! WKCookiePolicy not bound
|
||||
!missing-enum! WKInactiveSchedulingPolicy not bound
|
||||
!missing-field! WKWebsiteDataTypeHashSalt not bound
|
||||
!missing-field! WKWebsiteDataTypeMediaKeys not bound
|
||||
!missing-field! WKWebsiteDataTypeSearchFieldRecentSearches not bound
|
||||
!missing-selector! +WKWebsiteDataStore::dataStoreForIdentifier: not bound
|
||||
!missing-selector! +WKWebsiteDataStore::fetchAllDataStoreIdentifiers: not bound
|
||||
!missing-selector! +WKWebsiteDataStore::removeDataStoreForIdentifier:completionHandler: not bound
|
||||
!missing-selector! WKHTTPCookieStore::getCookiePolicy: not bound
|
||||
!missing-selector! WKHTTPCookieStore::setCookiePolicy:completionHandler: not bound
|
||||
!missing-selector! WKPDFConfiguration::allowTransparentBackground not bound
|
||||
!missing-selector! WKPDFConfiguration::setAllowTransparentBackground: not bound
|
||||
!missing-selector! WKPreferences::inactiveSchedulingPolicy not bound
|
||||
!missing-selector! WKPreferences::setInactiveSchedulingPolicy: not bound
|
||||
!missing-selector! WKWebsiteDataStore::identifier not bound
|
||||
!missing-selector! WKWebViewConfiguration::allowsInlinePredictions not bound
|
||||
!missing-selector! WKWebViewConfiguration::setAllowsInlinePredictions: not bound
|
||||
!unknown-field! WKErrorDomain bound
|
||||
!unknown-field! WKPreviewActionItemIdentifierAddToReadingList bound
|
||||
!unknown-field! WKPreviewActionItemIdentifierCopy bound
|
||||
!unknown-field! WKPreviewActionItemIdentifierOpen bound
|
||||
!unknown-field! WKPreviewActionItemIdentifierShare bound
|
||||
!unknown-field! WKWebsiteDataTypeCookies bound
|
||||
!unknown-field! WKWebsiteDataTypeDiskCache bound
|
||||
!unknown-field! WKWebsiteDataTypeFetchCache bound
|
||||
!unknown-field! WKWebsiteDataTypeFileSystem bound
|
||||
!unknown-field! WKWebsiteDataTypeIndexedDBDatabases bound
|
||||
!unknown-field! WKWebsiteDataTypeLocalStorage bound
|
||||
!unknown-field! WKWebsiteDataTypeMemoryCache bound
|
||||
!unknown-field! WKWebsiteDataTypeOfflineWebApplicationCache bound
|
||||
!unknown-field! WKWebsiteDataTypeServiceWorkerRegistrations bound
|
||||
!unknown-field! WKWebsiteDataTypeSessionStorage bound
|
||||
!unknown-field! WKWebsiteDataTypeWebSQLDatabases bound
|
||||
!unknown-native-enum! WKAudiovisualMediaTypes bound
|
||||
!unknown-native-enum! WKContentMode bound
|
||||
!unknown-native-enum! WKDataDetectorTypes bound
|
||||
!unknown-native-enum! WKDialogResult bound
|
||||
!unknown-native-enum! WKDownloadRedirectPolicy bound
|
||||
!unknown-native-enum! WKErrorCode bound
|
||||
!unknown-native-enum! WKFullscreenState bound
|
||||
!unknown-native-enum! WKMediaCaptureState bound
|
||||
!unknown-native-enum! WKMediaCaptureType bound
|
||||
!unknown-native-enum! WKMediaPlaybackState bound
|
||||
!unknown-native-enum! WKNavigationActionPolicy bound
|
||||
!unknown-native-enum! WKNavigationResponsePolicy bound
|
||||
!unknown-native-enum! WKNavigationType bound
|
||||
!unknown-native-enum! WKPermissionDecision bound
|
||||
!unknown-native-enum! WKSelectionGranularity bound
|
||||
!unknown-native-enum! WKUserScriptInjectionTime bound
|
||||
!unknown-protocol! WKDownloadDelegate bound
|
||||
!unknown-protocol! WKHTTPCookieStoreObserver bound
|
||||
!unknown-protocol! WKNavigationDelegate bound
|
||||
!unknown-protocol! WKPreviewActionItem bound
|
||||
!unknown-protocol! WKScriptMessageHandler bound
|
||||
!unknown-protocol! WKScriptMessageHandlerWithReply bound
|
||||
!unknown-protocol! WKUIDelegate bound
|
||||
!unknown-protocol! WKURLSchemeHandler bound
|
||||
!unknown-protocol! WKURLSchemeTask bound
|
||||
!unknown-type! WKBackForwardList bound
|
||||
!unknown-type! WKBackForwardListItem bound
|
||||
!unknown-type! WKContentRuleList bound
|
||||
!unknown-type! WKContentRuleListStore bound
|
||||
!unknown-type! WKContentWorld bound
|
||||
!unknown-type! WKContextMenuElementInfo bound
|
||||
!unknown-type! WKDownload bound
|
||||
!unknown-type! WKFindConfiguration bound
|
||||
!unknown-type! WKFindResult bound
|
||||
!unknown-type! WKFrameInfo bound
|
||||
!unknown-type! WKHTTPCookieStore bound
|
||||
!unknown-type! WKNavigation bound
|
||||
!unknown-type! WKNavigationAction bound
|
||||
!unknown-type! WKNavigationResponse bound
|
||||
!unknown-type! WKPDFConfiguration bound
|
||||
!unknown-type! WKPreferences bound
|
||||
!unknown-type! WKPreviewElementInfo bound
|
||||
!unknown-type! WKProcessPool bound
|
||||
!unknown-type! WKScriptMessage bound
|
||||
!unknown-type! WKSecurityOrigin bound
|
||||
!unknown-type! WKSnapshotConfiguration bound
|
||||
!unknown-type! WKUserContentController bound
|
||||
!unknown-type! WKUserScript bound
|
||||
!unknown-type! WKWebpagePreferences bound
|
||||
!unknown-type! WKWebsiteDataRecord bound
|
||||
!unknown-type! WKWebsiteDataStore bound
|
||||
!unknown-type! WKWebView bound
|
||||
!unknown-type! WKWebViewConfiguration bound
|
||||
!unknown-type! WKWindowFeatures bound
|
||||
|
|
|
@ -447,3 +447,5 @@
|
|||
!unknown-field! AVAudioSessionInterruptionTypeKey bound
|
||||
!unknown-field! AVAudioSessionMediaServicesWereLostNotification bound
|
||||
!unknown-field! AVAudioSessionMediaServicesWereResetNotification bound
|
||||
!missing-field! AVCaptureDeviceTypeContinuityCamera not bound
|
||||
!missing-selector! AVCaptureDevice::displayVideoZoomFactorMultiplier not bound
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
!missing-field! AXPrefersHorizontalTextLayoutDidChangeNotification not bound
|
||||
!missing-pinvoke! AXPrefersHorizontalTextLayout is not bound
|
|
@ -196,3 +196,6 @@
|
|||
!missing-selector! NSWindow::displayLinkWithTarget:selector: not bound
|
||||
!missing-type! NSMenuItemBadge not bound
|
||||
!missing-type! NSTextInsertionIndicator not bound
|
||||
!missing-field! NSTextCheckingGenerateInlinePredictionsKey not bound
|
||||
!missing-selector! NSSpellChecker::showInlinePredictionForCandidates:client: not bound
|
||||
!unknown-field! NSReadAccessURLDocumentOption bound
|
||||
|
|
|
@ -36,7 +36,6 @@
|
|||
!missing-protocol-member! ASAuthorizationProviderExtensionRegistrationHandler::supportedGrantTypes not found
|
||||
!missing-selector! +ASPasskeyAssertionCredential::credentialWithUserHandle:relyingParty:signature:clientDataHash:authenticatorData:credentialID: not bound
|
||||
!missing-selector! +ASPasskeyCredentialIdentity::identityWithRelyingPartyIdentifier:userName:credentialID:userHandle:recordIdentifier: not bound
|
||||
!missing-selector! +ASPasskeyCredentialRequest::requestWithCredentialIdentity:clientDataHash:userVerificationPreference: not bound
|
||||
!missing-selector! +ASPasskeyRegistrationCredential::credentialWithRelyingParty:clientDataHash:credentialID:attestationObject: not bound
|
||||
!missing-selector! +ASPasswordCredentialRequest::requestWithCredentialIdentity: not bound
|
||||
!missing-selector! +ASSettingsHelper::openCredentialProviderAppSettingsWithCompletionHandler: not bound
|
||||
|
@ -113,7 +112,6 @@
|
|||
!missing-selector! ASPasskeyCredentialIdentity::userHandle not bound
|
||||
!missing-selector! ASPasskeyCredentialIdentity::userName not bound
|
||||
!missing-selector! ASPasskeyCredentialRequest::clientDataHash not bound
|
||||
!missing-selector! ASPasskeyCredentialRequest::initWithCredentialIdentity:clientDataHash:userVerificationPreference: not bound
|
||||
!missing-selector! ASPasskeyCredentialRequest::setUserVerificationPreference: not bound
|
||||
!missing-selector! ASPasskeyCredentialRequest::userVerificationPreference not bound
|
||||
!missing-selector! ASPasskeyRegistrationCredential::attestationObject not bound
|
||||
|
@ -139,3 +137,39 @@
|
|||
!missing-type! ASPasswordCredentialRequest not bound
|
||||
!missing-type! ASPublicKeyCredentialClientData not bound
|
||||
!missing-type! ASSettingsHelper not bound
|
||||
!missing-enum! ASAuthorizationPublicKeyCredentialLargeBlobAssertionOperation not bound
|
||||
!missing-enum! ASAuthorizationPublicKeyCredentialLargeBlobSupportRequirement not bound
|
||||
!missing-enum-value! ASAuthorizationProviderExtensionRequestOptions native value ASAuthorizationProviderExtensionRequestOptionsRegistrationDeviceKeyMigration = 8 not bound
|
||||
!missing-selector! +ASPasskeyCredentialRequest::requestWithCredentialIdentity:clientDataHash:userVerificationPreference:supportedAlgorithms: not bound
|
||||
!missing-selector! ASAuthorizationPlatformPublicKeyCredentialAssertion::largeBlob not bound
|
||||
!missing-selector! ASAuthorizationPlatformPublicKeyCredentialAssertionRequest::largeBlob not bound
|
||||
!missing-selector! ASAuthorizationPlatformPublicKeyCredentialAssertionRequest::setLargeBlob: not bound
|
||||
!missing-selector! ASAuthorizationPlatformPublicKeyCredentialRegistration::largeBlob not bound
|
||||
!missing-selector! ASAuthorizationPlatformPublicKeyCredentialRegistrationRequest::largeBlob not bound
|
||||
!missing-selector! ASAuthorizationPlatformPublicKeyCredentialRegistrationRequest::setLargeBlob: not bound
|
||||
!missing-selector! ASAuthorizationProviderExtensionLoginConfiguration::deviceContext not bound
|
||||
!missing-selector! ASAuthorizationProviderExtensionLoginConfiguration::setDeviceContext: not bound
|
||||
!missing-selector! ASAuthorizationProviderExtensionLoginManager::resetDeviceKeys not bound
|
||||
!missing-selector! ASAuthorizationProviderExtensionLoginManager::resetUserSecureEnclaveKey not bound
|
||||
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobAssertionInput::dataToWrite not bound
|
||||
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobAssertionInput::initWithOperation: not bound
|
||||
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobAssertionInput::operation not bound
|
||||
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobAssertionInput::setDataToWrite: not bound
|
||||
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobAssertionOutput::didWrite not bound
|
||||
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobAssertionOutput::readData not bound
|
||||
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobRegistrationInput::initWithSupportRequirement: not bound
|
||||
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobRegistrationInput::setSupportRequirement: not bound
|
||||
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobRegistrationInput::supportRequirement not bound
|
||||
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobRegistrationOutput::isSupported not bound
|
||||
!missing-selector! ASCredentialProviderViewController::prepareCredentialListForServiceIdentifiers:requestParameters: not bound
|
||||
!missing-selector! ASPasskeyCredentialRequest::initWithCredentialIdentity:clientDataHash:userVerificationPreference:supportedAlgorithms: not bound
|
||||
!missing-selector! ASPasskeyCredentialRequest::supportedAlgorithms not bound
|
||||
!missing-selector! ASPasskeyCredentialRequestParameters::allowedCredentials not bound
|
||||
!missing-selector! ASPasskeyCredentialRequestParameters::clientDataHash not bound
|
||||
!missing-selector! ASPasskeyCredentialRequestParameters::relyingPartyIdentifier not bound
|
||||
!missing-selector! ASPasskeyCredentialRequestParameters::userVerificationPreference not bound
|
||||
!missing-type! ASAuthorizationPublicKeyCredentialLargeBlobAssertionInput not bound
|
||||
!missing-type! ASAuthorizationPublicKeyCredentialLargeBlobAssertionOutput not bound
|
||||
!missing-type! ASAuthorizationPublicKeyCredentialLargeBlobRegistrationInput not bound
|
||||
!missing-type! ASAuthorizationPublicKeyCredentialLargeBlobRegistrationOutput not bound
|
||||
!missing-type! ASPasskeyCredentialRequestParameters not bound
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
!missing-enum! BAErrorCode not bound
|
||||
!missing-field! BAErrorDomain not bound
|
|
@ -55,10 +55,8 @@
|
|||
!missing-selector! CKSyncEngineFailedRecordSave::record not bound
|
||||
!missing-selector! CKSyncEngineFailedZoneSave::error not bound
|
||||
!missing-selector! CKSyncEngineFailedZoneSave::recordZone not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::initWithZoneIDs: not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::operationGroup not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::setOperationGroup: not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::zoneIDs not bound
|
||||
!missing-selector! CKSyncEngineFetchedDatabaseChangesEvent::deletions not bound
|
||||
!missing-selector! CKSyncEngineFetchedDatabaseChangesEvent::modifications not bound
|
||||
!missing-selector! CKSyncEngineFetchedRecordDeletion::recordID not bound
|
||||
|
@ -83,12 +81,8 @@
|
|||
!missing-selector! CKSyncEngineRecordZoneChangeBatch::setAtomicByZone: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesContext::options not bound
|
||||
!missing-selector! CKSyncEngineSendChangesContext::reason not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::initWithRecordIDs: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::initWithZoneIDs: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::operationGroup not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::recordIDs not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::setOperationGroup: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::zoneIDs not bound
|
||||
!missing-selector! CKSyncEngineSentDatabaseChangesEvent::deletedZoneIDs not bound
|
||||
!missing-selector! CKSyncEngineSentDatabaseChangesEvent::failedZoneDeletes not bound
|
||||
!missing-selector! CKSyncEngineSentDatabaseChangesEvent::failedZoneSaves not bound
|
||||
|
@ -137,3 +131,29 @@
|
|||
!missing-type! CKSyncEngineWillFetchChangesEvent not bound
|
||||
!missing-type! CKSyncEngineWillFetchRecordZoneChangesEvent not bound
|
||||
!missing-type! CKSyncEngineWillSendChangesEvent not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesContext::options not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesContext::reason not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::initWithScope: not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::prioritizedZoneIDs not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::scope not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::setPrioritizedZoneIDs: not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::setScope: not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesScope::excludedZoneIDs not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesScope::initWithExcludedZoneIDs: not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesScope::initWithZoneIDs: not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesScope::zoneIDs not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::initWithScope: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::scope not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::setScope: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesScope::containsPendingRecordZoneChange: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesScope::containsRecordID: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesScope::excludedZoneIDs not bound
|
||||
!missing-selector! CKSyncEngineSendChangesScope::initWithExcludedZoneIDs: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesScope::initWithRecordIDs: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesScope::initWithZoneIDs: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesScope::recordIDs not bound
|
||||
!missing-selector! CKSyncEngineSendChangesScope::zoneIDs not bound
|
||||
!missing-selector! CKSyncEngineState::zoneIDsWithUnfetchedServerChanges not bound
|
||||
!missing-type! CKSyncEngineFetchChangesContext not bound
|
||||
!missing-type! CKSyncEngineFetchChangesScope not bound
|
||||
!missing-type! CKSyncEngineSendChangesScope not bound
|
||||
|
|
|
@ -32,3 +32,4 @@
|
|||
!missing-type! NSManagedObjectModelReference not bound
|
||||
!missing-type! NSMigrationStage not bound
|
||||
!missing-type! NSStagedMigrationManager not bound
|
||||
!missing-selector! +NSManagedObjectModel::checksumsForVersionedModelAtURL:error: not bound
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
!missing-field! kCFURLDirectoryEntryCountKey not bound
|
|
@ -1,2 +1,3 @@
|
|||
!missing-selector! CSSuggestion::score not bound
|
||||
!missing-selector! CSSuggestion::suggestionDataSources not bound
|
||||
!missing-selector! CSSearchableIndex::initWithName:protectionClass:bundleIdentifier:options: not bound
|
||||
|
|
|
@ -54,3 +54,4 @@
|
|||
!missing-selector! NSURLSessionUploadTask::cancelByProducingResumeData: not bound
|
||||
!missing-type! NSMorphologyPronoun not bound
|
||||
!missing-type! NSTermOfAddress not bound
|
||||
!missing-field! NSURLDirectoryEntryCountKey not bound
|
||||
|
|
|
@ -19,12 +19,10 @@
|
|||
!missing-field! HKQuantityTypeIdentifierPhysicalEffort not bound
|
||||
!missing-field! HKQuantityTypeIdentifierTimeInDaylight not bound
|
||||
!missing-protocol-member! HKWorkoutSessionDelegate::workoutSession:didDisconnectFromRemoteDeviceWithError: not found
|
||||
!missing-protocol-member! HKWorkoutSessionDelegate::workoutSession:didReceiveDataFromRemoteDevice: not found
|
||||
!missing-protocol-member! HKWorkoutSessionDelegate::workoutSession:didReceiveDataFromRemoteWorkoutSession: not found
|
||||
!missing-selector! +HKUnit::luxUnit not bound
|
||||
!missing-selector! +HKUnit::luxUnitWithMetricPrefix: not bound
|
||||
!missing-selector! HKHealthStore::setWorkoutSessionMirroringStartHandler: not bound
|
||||
!missing-selector! HKHealthStore::workoutSessionMirroringStartHandler not bound
|
||||
!missing-selector! HKLiveWorkoutBuilder::initWithHealthStore:configuration:device: not bound
|
||||
!missing-selector! HKWorkoutSession::deprecated_sendDataToRemoteWorkoutSession:completion: not bound
|
||||
!missing-selector! HKWorkoutSession::type not bound
|
||||
|
|
|
@ -29,3 +29,5 @@
|
|||
!missing-type! INMessageLinkMetadata not bound
|
||||
!missing-type! INUnsendMessagesIntent not bound
|
||||
!missing-type! INUnsendMessagesIntentResponse not bound
|
||||
!missing-enum-value! INSendMessageIntentResponseCode native value INSendMessageIntentResponseCodeFailureRequiringInAppAuthentication = 7 not bound
|
||||
!missing-enum-value! INSendMessageRecipientUnsupportedReason native value INSendMessageRecipientUnsupportedReasonRequiringInAppAuthentication = 7 not bound
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
!missing-enum-value! LABiometryType native value LABiometryTypeOpticID = 4 not bound
|
|
@ -0,0 +1,55 @@
|
|||
!deprecated-attribute-missing! MLCActivationDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCActivationLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCAdamOptimizer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCAdamWOptimizer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCArithmeticLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCBatchNormalizationLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCComparisonLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCConcatenationLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCConvolutionDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCConvolutionLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCDevice missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCDropoutLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCEmbeddingDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCEmbeddingLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCFullyConnectedLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCGatherLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCGramMatrixLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCGraph missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCGroupNormalizationLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCInferenceGraph missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCInstanceNormalizationLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCLayerNormalizationLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCLossDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCLossLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCLSTMDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCLSTMLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCMatMulDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCMatMulLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCMultiheadAttentionDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCMultiheadAttentionLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCOptimizer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCOptimizerDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCPaddingLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCPlatform missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCPoolingDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCPoolingLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCReductionLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCReshapeLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCRMSPropOptimizer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCScatterLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCSelectionLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCSGDOptimizer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCSliceLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCSoftmaxLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCSplitLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCTensor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCTensorData missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCTensorDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCTensorParameter missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCTrainingGraph missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCTransposeLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCUpsampleLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCYOLOLossDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCYOLOLossLayer missing a [Deprecated] attribute
|
|
@ -6,3 +6,7 @@
|
|||
!deprecated-attribute-missing! MKMapSnapshotOptions::showsBuildings missing a [Deprecated] attribute
|
||||
!missing-selector! MKMapSnapshotOptions::preferredConfiguration not bound
|
||||
!missing-selector! MKMapSnapshotOptions::setPreferredConfiguration: not bound
|
||||
!missing-selector! MKMapView::pitchButtonVisibility not bound
|
||||
!missing-selector! MKMapView::setPitchButtonVisibility: not bound
|
||||
!missing-selector! MKMapView::setShowsUserTrackingButton: not bound
|
||||
!missing-selector! MKMapView::showsUserTrackingButton not bound
|
||||
|
|
|
@ -1,95 +0,0 @@
|
|||
!missing-enum! MEDecodeFrameStatus not bound
|
||||
!missing-enum! MEError not bound
|
||||
!missing-enum! MEFileInfoFragmentsStatus not bound
|
||||
!missing-enum! MEFormatReaderParseAdditionalFragmentsStatus not bound
|
||||
!missing-field! MediaExtensionErrorDomain not bound
|
||||
!missing-field! MEVideoDecoderReadyForMoreMediaDataDidChangeNotification not bound
|
||||
!missing-protocol! MEFormatReader not bound
|
||||
!missing-protocol! MEFormatReaderExtension not bound
|
||||
!missing-protocol! MESampleCursor not bound
|
||||
!missing-protocol! METrackReader not bound
|
||||
!missing-protocol! MEVideoDecoder not bound
|
||||
!missing-protocol! MEVideoDecoderExtension not bound
|
||||
!missing-selector! MEByteSource::availableLengthAtOffset: not bound
|
||||
!missing-selector! MEByteSource::byteSourceForRelatedFileName:error: not bound
|
||||
!missing-selector! MEByteSource::contentType not bound
|
||||
!missing-selector! MEByteSource::fileLength not bound
|
||||
!missing-selector! MEByteSource::fileName not bound
|
||||
!missing-selector! MEByteSource::readDataOfLength:fromOffset:completionHandler: not bound
|
||||
!missing-selector! MEByteSource::readDataOfLength:fromOffset:toDestination:bytesRead:error: not bound
|
||||
!missing-selector! MEByteSource::readDataOfLength:fromOffset:toDestination:completionHandler: not bound
|
||||
!missing-selector! MEByteSource::relatedFileNamesInSameDirectory not bound
|
||||
!missing-selector! MEDecodeFrameOptions::doNotOutputFrame not bound
|
||||
!missing-selector! MEDecodeFrameOptions::realTimePlayback not bound
|
||||
!missing-selector! MEDecodeFrameOptions::setDoNotOutputFrame: not bound
|
||||
!missing-selector! MEDecodeFrameOptions::setRealTimePlayback: not bound
|
||||
!missing-selector! MEEstimatedSampleLocation::byteSource not bound
|
||||
!missing-selector! MEEstimatedSampleLocation::estimatedSampleLocation not bound
|
||||
!missing-selector! MEEstimatedSampleLocation::initWithByteSource:estimatedSampleLocation:refinementDataLocation: not bound
|
||||
!missing-selector! MEEstimatedSampleLocation::refinementDataLocation not bound
|
||||
!missing-selector! MEFileInfo::duration not bound
|
||||
!missing-selector! MEFileInfo::fragmentsStatus not bound
|
||||
!missing-selector! MEFileInfo::setDuration: not bound
|
||||
!missing-selector! MEFileInfo::setFragmentsStatus: not bound
|
||||
!missing-selector! MEFormatReaderInstantiationOptions::allowIncrementalFragmentParsing not bound
|
||||
!missing-selector! MEHEVCDependencyInfo::constraintIndicatorFlags not bound
|
||||
!missing-selector! MEHEVCDependencyInfo::hasStepwiseTemporalSubLayerAccess not bound
|
||||
!missing-selector! MEHEVCDependencyInfo::hasTemporalSubLayerAccess not bound
|
||||
!missing-selector! MEHEVCDependencyInfo::levelIndex not bound
|
||||
!missing-selector! MEHEVCDependencyInfo::profileCompatibilityFlags not bound
|
||||
!missing-selector! MEHEVCDependencyInfo::profileIndex not bound
|
||||
!missing-selector! MEHEVCDependencyInfo::profileSpace not bound
|
||||
!missing-selector! MEHEVCDependencyInfo::setConstraintIndicatorFlags: not bound
|
||||
!missing-selector! MEHEVCDependencyInfo::setLevelIndex: not bound
|
||||
!missing-selector! MEHEVCDependencyInfo::setProfileCompatibilityFlags: not bound
|
||||
!missing-selector! MEHEVCDependencyInfo::setProfileIndex: not bound
|
||||
!missing-selector! MEHEVCDependencyInfo::setProfileSpace: not bound
|
||||
!missing-selector! MEHEVCDependencyInfo::setStepwiseTemporalSubLayerAccess: not bound
|
||||
!missing-selector! MEHEVCDependencyInfo::setSyncSampleNALUnitType: not bound
|
||||
!missing-selector! MEHEVCDependencyInfo::setTemporalLevel: not bound
|
||||
!missing-selector! MEHEVCDependencyInfo::setTemporalSubLayerAccess: not bound
|
||||
!missing-selector! MEHEVCDependencyInfo::setTierFlag: not bound
|
||||
!missing-selector! MEHEVCDependencyInfo::syncSampleNALUnitType not bound
|
||||
!missing-selector! MEHEVCDependencyInfo::temporalLevel not bound
|
||||
!missing-selector! MEHEVCDependencyInfo::tierFlag not bound
|
||||
!missing-selector! MESampleCursorChunk::byteSource not bound
|
||||
!missing-selector! MESampleCursorChunk::chunkInfo not bound
|
||||
!missing-selector! MESampleCursorChunk::chunkStorageRange not bound
|
||||
!missing-selector! MESampleCursorChunk::initWithByteSource:chunkStorageRange:chunkInfo:sampleIndexWithinChunk: not bound
|
||||
!missing-selector! MESampleCursorChunk::sampleIndexWithinChunk not bound
|
||||
!missing-selector! MESampleLocation::byteSource not bound
|
||||
!missing-selector! MESampleLocation::initWithByteSource:sampleLocation: not bound
|
||||
!missing-selector! MESampleLocation::sampleLocation not bound
|
||||
!missing-selector! METrackInfo::extendedLanguageTag not bound
|
||||
!missing-selector! METrackInfo::formatDescriptions not bound
|
||||
!missing-selector! METrackInfo::initWithMediaType:trackID:formatDescriptions: not bound
|
||||
!missing-selector! METrackInfo::isEnabled not bound
|
||||
!missing-selector! METrackInfo::mediaType not bound
|
||||
!missing-selector! METrackInfo::naturalSize not bound
|
||||
!missing-selector! METrackInfo::naturalTimescale not bound
|
||||
!missing-selector! METrackInfo::nominalFrameRate not bound
|
||||
!missing-selector! METrackInfo::preferredTransform not bound
|
||||
!missing-selector! METrackInfo::requiresFrameReordering not bound
|
||||
!missing-selector! METrackInfo::setEnabled: not bound
|
||||
!missing-selector! METrackInfo::setExtendedLanguageTag: not bound
|
||||
!missing-selector! METrackInfo::setNaturalSize: not bound
|
||||
!missing-selector! METrackInfo::setNaturalTimescale: not bound
|
||||
!missing-selector! METrackInfo::setNominalFrameRate: not bound
|
||||
!missing-selector! METrackInfo::setPreferredTransform: not bound
|
||||
!missing-selector! METrackInfo::setRequiresFrameReordering: not bound
|
||||
!missing-selector! METrackInfo::setTrackEdits: not bound
|
||||
!missing-selector! METrackInfo::trackEdits not bound
|
||||
!missing-selector! METrackInfo::trackID not bound
|
||||
!missing-selector! MEVideoDecoderPixelBufferManager::createPixelBufferAndReturnError: not bound
|
||||
!missing-selector! MEVideoDecoderPixelBufferManager::pixelBufferAttributes not bound
|
||||
!missing-selector! MEVideoDecoderPixelBufferManager::setPixelBufferAttributes: not bound
|
||||
!missing-type! MEByteSource not bound
|
||||
!missing-type! MEDecodeFrameOptions not bound
|
||||
!missing-type! MEEstimatedSampleLocation not bound
|
||||
!missing-type! MEFileInfo not bound
|
||||
!missing-type! MEFormatReaderInstantiationOptions not bound
|
||||
!missing-type! MEHEVCDependencyInfo not bound
|
||||
!missing-type! MESampleCursorChunk not bound
|
||||
!missing-type! MESampleLocation not bound
|
||||
!missing-type! METrackInfo not bound
|
||||
!missing-type! MEVideoDecoderPixelBufferManager not bound
|
|
@ -33,3 +33,12 @@
|
|||
!missing-type! NEFailureHandlerProvider not bound
|
||||
!missing-type! NERelay not bound
|
||||
!missing-type! NERelayManager not bound
|
||||
!missing-selector! +NERelayManager::loadAllManagersFromPreferencesWithCompletionHandler: not bound
|
||||
!missing-selector! NERelay::dnsOverHTTPSURL not bound
|
||||
!missing-selector! NERelay::setDnsOverHTTPSURL: not bound
|
||||
!missing-selector! NERelay::setSyntheticDNSAnswerIPv4Prefix: not bound
|
||||
!missing-selector! NERelay::setSyntheticDNSAnswerIPv6Prefix: not bound
|
||||
!missing-selector! NERelay::syntheticDNSAnswerIPv4Prefix not bound
|
||||
!missing-selector! NERelay::syntheticDNSAnswerIPv6Prefix not bound
|
||||
!missing-selector! NERelayManager::onDemandRules not bound
|
||||
!missing-selector! NERelayManager::setOnDemandRules: not bound
|
||||
|
|
|
@ -27,4 +27,3 @@
|
|||
!missing-enum! PKAddressField not bound
|
||||
|
||||
## all members are decorated but not the type themselves
|
||||
!missing-type! PKDisbursementRequest not bound
|
||||
|
|
|
@ -1,29 +1,5 @@
|
|||
!missing-enum! PKApplePayLaterAvailability not bound
|
||||
!missing-enum-value! PKMerchantCapability native value PKMerchantCapabilityInstantFundsOut = 128 not bound
|
||||
!missing-field! PKPaymentNetworkTmoney not bound
|
||||
!missing-selector! +PKDisbursementRequest::disbursementCardUnsupportedError not bound
|
||||
!missing-selector! +PKDisbursementRequest::disbursementContactInvalidErrorWithContactField:localizedDescription: not bound
|
||||
!missing-selector! PKDisbursementRequest::applicationData not bound
|
||||
!missing-selector! PKDisbursementRequest::currencyCode not bound
|
||||
!missing-selector! PKDisbursementRequest::initWithMerchantIdentifier:currencyCode:regionCode:supportedNetworks:merchantCapabilities:summaryItems: not bound
|
||||
!missing-selector! PKDisbursementRequest::merchantCapabilities not bound
|
||||
!missing-selector! PKDisbursementRequest::merchantIdentifier not bound
|
||||
!missing-selector! PKDisbursementRequest::recipientContact not bound
|
||||
!missing-selector! PKDisbursementRequest::regionCode not bound
|
||||
!missing-selector! PKDisbursementRequest::requiredRecipientContactFields not bound
|
||||
!missing-selector! PKDisbursementRequest::setApplicationData: not bound
|
||||
!missing-selector! PKDisbursementRequest::setCurrencyCode: not bound
|
||||
!missing-selector! PKDisbursementRequest::setMerchantCapabilities: not bound
|
||||
!missing-selector! PKDisbursementRequest::setMerchantIdentifier: not bound
|
||||
!missing-selector! PKDisbursementRequest::setRecipientContact: not bound
|
||||
!missing-selector! PKDisbursementRequest::setRegionCode: not bound
|
||||
!missing-selector! PKDisbursementRequest::setRequiredRecipientContactFields: not bound
|
||||
!missing-selector! PKDisbursementRequest::setSummaryItems: not bound
|
||||
!missing-selector! PKDisbursementRequest::setSupportedNetworks: not bound
|
||||
!missing-selector! PKDisbursementRequest::setSupportedRegions: not bound
|
||||
!missing-selector! PKDisbursementRequest::summaryItems not bound
|
||||
!missing-selector! PKDisbursementRequest::supportedNetworks not bound
|
||||
!missing-selector! PKDisbursementRequest::supportedRegions not bound
|
||||
!missing-selector! PKPaymentRequest::applePayLaterAvailability not bound
|
||||
!missing-selector! PKPaymentRequest::setApplePayLaterAvailability: not bound
|
||||
!missing-type! PKDisbursementSummaryItem not bound
|
||||
|
|
|
@ -58,3 +58,7 @@
|
|||
!missing-type! SCContentSharingPickerConfiguration not bound
|
||||
!missing-type! SCScreenshotManager not bound
|
||||
!missing-type! SCShareableContentInfo not bound
|
||||
!missing-enum! SCPresenterOverlayAlertSetting not bound
|
||||
!missing-field! SCStreamFrameInfoBoundingRect not bound
|
||||
!missing-selector! SCStreamConfiguration::presenterOverlayPrivacyAlertSetting not bound
|
||||
!missing-selector! SCStreamConfiguration::setPresenterOverlayPrivacyAlertSetting: not bound
|
||||
|
|
|
@ -18,3 +18,4 @@
|
|||
!missing-field! kSecKeyAlgorithmECDSASignatureMessageRFC4754SHA256 not bound
|
||||
!missing-field! kSecKeyAlgorithmECDSASignatureMessageRFC4754SHA384 not bound
|
||||
!missing-field! kSecKeyAlgorithmECDSASignatureMessageRFC4754SHA512 not bound
|
||||
!missing-enum-value! AuthorizationFlags native value kAuthorizationFlagSkipInternalAuth = 512 not bound
|
||||
|
|
|
@ -1,38 +1,3 @@
|
|||
## only a subset of the old, pre WKWebKit, is bound for macOS
|
||||
|
||||
!missing-enum! WKUserInterfaceDirectionPolicy not bound
|
||||
!missing-field! WebViewDidBeginEditingNotification not bound
|
||||
!missing-field! WebViewDidChangeNotification not bound
|
||||
!missing-field! WebViewDidChangeSelectionNotification not bound
|
||||
!missing-field! WebViewDidChangeTypingStyleNotification not bound
|
||||
!missing-field! WebViewDidEndEditingNotification not bound
|
||||
# TODO WKWebView should conform to NSTextFinderClient is marked as macos(WK_MAC_TBA) as of 11.4 beta3
|
||||
!missing-protocol-conformance! WKWebView should conform to NSTextFinderClient (defined in 'WKNSTextFinderClient' category)
|
||||
!missing-selector! +NSObject::isKeyExcludedFromWebScript: not bound
|
||||
!missing-selector! +NSObject::isSelectorExcludedFromWebScript: not bound
|
||||
!missing-selector! +NSObject::webScriptNameForKey: not bound
|
||||
!missing-selector! +NSObject::webScriptNameForSelector: not bound
|
||||
!missing-selector! NSObject::finalizeForWebScript not bound
|
||||
!missing-selector! NSObject::invokeDefaultMethodWithArguments: not bound
|
||||
!missing-selector! NSObject::invokeUndefinedMethodFromWebScript:withArguments: not bound
|
||||
!missing-selector! NSObject::objectForWebScript not bound
|
||||
!missing-selector! NSObject::webFrame not bound
|
||||
!missing-selector! NSObject::webPlugInContainerLoadRequest:inFrame: not bound
|
||||
!missing-selector! NSObject::webPlugInContainerSelectionColor not bound
|
||||
!missing-selector! NSObject::webPlugInContainerShowStatus: not bound
|
||||
!missing-selector! NSObject::webPlugInDestroy not bound
|
||||
!missing-selector! NSObject::webPlugInInitialize not bound
|
||||
!missing-selector! NSObject::webPlugInMainResourceDidFailWithError: not bound
|
||||
!missing-selector! NSObject::webPlugInMainResourceDidFinishLoading not bound
|
||||
!missing-selector! NSObject::webPlugInMainResourceDidReceiveData: not bound
|
||||
!missing-selector! NSObject::webPlugInMainResourceDidReceiveResponse: not bound
|
||||
!missing-selector! NSObject::webPlugInSetIsSelected: not bound
|
||||
!missing-selector! NSObject::webPlugInStart not bound
|
||||
!missing-selector! NSObject::webPlugInStop not bound
|
||||
!missing-selector! WKWebView::goBack: not bound
|
||||
!missing-selector! WKWebView::goForward: not bound
|
||||
!missing-selector! WKWebView::reload: not bound
|
||||
!missing-selector! WKWebView::reloadFromOrigin: not bound
|
||||
!missing-selector! WKWebView::stopLoading: not bound
|
||||
!missing-selector! WKWebViewConfiguration::setUserInterfaceDirectionPolicy: not bound
|
||||
!missing-selector! WKWebViewConfiguration::userInterfaceDirectionPolicy not bound
|
||||
|
|
|
@ -1,397 +1,192 @@
|
|||
!missing-enum! WKCookiePolicy not bound
|
||||
!missing-enum! WKInactiveSchedulingPolicy not bound
|
||||
!missing-field! WKWebsiteDataTypeHashSalt not bound
|
||||
!missing-field! WKWebsiteDataTypeMediaKeys not bound
|
||||
!missing-field! WKWebsiteDataTypeSearchFieldRecentSearches not bound
|
||||
!missing-protocol! DOMXPathNSResolver not bound
|
||||
!missing-protocol-member! DOMEventTarget::addEventListener::: not found
|
||||
!missing-protocol-member! DOMEventTarget::removeEventListener::: not found
|
||||
!missing-selector! +WebUndefined::undefined not bound
|
||||
!missing-selector! +WKWebsiteDataStore::dataStoreForIdentifier: not bound
|
||||
!missing-selector! +WKWebsiteDataStore::fetchAllDataStoreIdentifiers: not bound
|
||||
!missing-selector! +WKWebsiteDataStore::removeDataStoreForIdentifier:completionHandler: not bound
|
||||
!missing-selector! DOMCounter::identifier not bound
|
||||
!missing-selector! DOMCounter::listStyle not bound
|
||||
!missing-selector! DOMCounter::separator not bound
|
||||
!missing-selector! DOMCSSPageRule::setSelectorText: not bound
|
||||
!missing-selector! DOMCSSPrimitiveValue::getCounterValue not bound
|
||||
!missing-selector! DOMCSSPrimitiveValue::getFloatValue: not bound
|
||||
!missing-selector! DOMCSSPrimitiveValue::getRectValue not bound
|
||||
!missing-selector! DOMCSSPrimitiveValue::getRGBColorValue not bound
|
||||
!missing-selector! DOMCSSPrimitiveValue::getStringValue not bound
|
||||
!missing-selector! DOMCSSPrimitiveValue::primitiveType not bound
|
||||
!missing-selector! DOMCSSPrimitiveValue::setFloatValue:floatValue: not bound
|
||||
!missing-selector! DOMCSSPrimitiveValue::setStringValue:stringValue: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::azimuth not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::background not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::backgroundAttachment not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::backgroundColor not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::backgroundImage not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::backgroundPosition not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::backgroundRepeat not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::border not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::borderBottom not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::borderBottomColor not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::borderBottomStyle not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::borderBottomWidth not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::borderCollapse not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::borderColor not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::borderLeft not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::borderLeftColor not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::borderLeftStyle not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::borderLeftWidth not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::borderRight not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::borderRightColor not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::borderRightStyle not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::borderRightWidth not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::borderSpacing not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::borderStyle not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::borderTop not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::borderTopColor not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::borderTopStyle not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::borderTopWidth not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::borderWidth not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::bottom not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::captionSide not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::clear not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::clip not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::color not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::content not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::counterIncrement not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::counterReset not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::cssFloat not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::cue not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::cueAfter not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::cueBefore not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::cursor not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::direction not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::display not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::elevation not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::emptyCells not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::font not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::fontFamily not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::fontSize not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::fontSizeAdjust not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::fontStretch not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::fontStyle not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::fontVariant not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::fontWeight not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::height not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::left not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::letterSpacing not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::lineHeight not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::listStyle not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::listStyleImage not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::listStylePosition not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::listStyleType not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::margin not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::marginBottom not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::marginLeft not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::marginRight not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::marginTop not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::markerOffset not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::marks not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::maxHeight not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::maxWidth not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::minHeight not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::minWidth not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::orphans not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::outline not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::outlineColor not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::outlineStyle not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::outlineWidth not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::overflow not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::padding not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::paddingBottom not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::paddingLeft not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::paddingRight not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::paddingTop not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::page not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::pageBreakAfter not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::pageBreakBefore not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::pageBreakInside not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::pause not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::pauseAfter not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::pauseBefore not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::pitch not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::pitchRange not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::playDuring not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::position not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::quotes not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::richness not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::right not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setAzimuth: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setBackground: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setBackgroundAttachment: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setBackgroundColor: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setBackgroundImage: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setBackgroundPosition: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setBackgroundRepeat: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setBorder: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setBorderBottom: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setBorderBottomColor: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setBorderBottomStyle: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setBorderBottomWidth: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setBorderCollapse: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setBorderColor: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setBorderLeft: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setBorderLeftColor: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setBorderLeftStyle: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setBorderLeftWidth: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setBorderRight: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setBorderRightColor: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setBorderRightStyle: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setBorderRightWidth: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setBorderSpacing: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setBorderStyle: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setBorderTop: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setBorderTopColor: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setBorderTopStyle: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setBorderTopWidth: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setBorderWidth: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setBottom: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setCaptionSide: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setClear: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setClip: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setColor: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setContent: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setCounterIncrement: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setCounterReset: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setCssFloat: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setCue: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setCueAfter: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setCueBefore: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setCursor: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setDirection: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setDisplay: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setElevation: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setEmptyCells: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setFont: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setFontFamily: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setFontSize: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setFontSizeAdjust: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setFontStretch: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setFontStyle: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setFontVariant: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setFontWeight: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setHeight: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setLeft: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setLetterSpacing: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setLineHeight: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setListStyle: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setListStyleImage: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setListStylePosition: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setListStyleType: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setMargin: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setMarginBottom: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setMarginLeft: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setMarginRight: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setMarginTop: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setMarkerOffset: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setMarks: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setMaxHeight: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setMaxWidth: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setMinHeight: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setMinWidth: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setOrphans: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setOutline: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setOutlineColor: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setOutlineStyle: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setOutlineWidth: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setOverflow: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setPadding: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setPaddingBottom: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setPaddingLeft: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setPaddingRight: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setPaddingTop: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setPage: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setPageBreakAfter: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setPageBreakBefore: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setPageBreakInside: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setPause: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setPauseAfter: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setPauseBefore: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setPitch: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setPitchRange: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setPlayDuring: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setPosition: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setQuotes: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setRichness: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setRight: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setSize: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setSpeak: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setSpeakHeader: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setSpeakNumeral: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setSpeakPunctuation: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setSpeechRate: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setStress: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setTableLayout: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setTextAlign: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setTextDecoration: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setTextIndent: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setTextShadow: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setTextTransform: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setTop: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setUnicodeBidi: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setVerticalAlign: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setVisibility: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setVoiceFamily: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setVolume: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setWhiteSpace: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setWidows: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setWidth: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setWordSpacing: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::setZIndex: not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::size not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::speak not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::speakHeader not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::speakNumeral not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::speakPunctuation not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::speechRate not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::stress not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::tableLayout not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::textAlign not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::textDecoration not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::textIndent not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::textShadow not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::textTransform not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::top not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::unicodeBidi not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::verticalAlign not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::visibility not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::voiceFamily not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::volume not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::whiteSpace not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::widows not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::width not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::wordSpacing not bound
|
||||
!missing-selector! DOMCSSStyleDeclaration::zIndex not bound
|
||||
!missing-selector! DOMCSSStyleRule::setSelectorText: not bound
|
||||
!missing-selector! DOMCSSValueList::item: not bound
|
||||
!missing-selector! DOMCSSValueList::length not bound
|
||||
!missing-selector! DOMDocument::activeElement not bound
|
||||
!missing-selector! DOMDocument::createExpression:resolver: not bound
|
||||
!missing-selector! DOMDocument::createNSResolver: not bound
|
||||
!missing-selector! DOMDocument::createTreeWalker:whatToShow:filter:expandEntityReferences: not bound
|
||||
!missing-selector! DOMDocument::evaluate:contextNode:resolver:type:inResult: not bound
|
||||
!missing-selector! DOMDocument::hasFocus not bound
|
||||
!missing-selector! DOMDocument::URLWithAttributeString: not bound
|
||||
!missing-selector! DOMDocument::webFrame not bound
|
||||
!missing-selector! DOMDocument::webkitCancelFullScreen not bound
|
||||
!missing-selector! DOMElement::image not bound
|
||||
!missing-selector! DOMElement::innerHTML not bound
|
||||
!missing-selector! DOMElement::outerHTML not bound
|
||||
!missing-selector! DOMElement::setInnerHTML: not bound
|
||||
!missing-selector! DOMElement::setOuterHTML: not bound
|
||||
!missing-selector! DOMEntity::notationName not bound
|
||||
!missing-selector! DOMEntity::publicId not bound
|
||||
!missing-selector! DOMEntity::systemId not bound
|
||||
!missing-selector! DOMHTMLDocument::createDocumentFragmentWithMarkupString:baseURL: not bound
|
||||
!missing-selector! DOMHTMLDocument::createDocumentFragmentWithText: not bound
|
||||
!missing-selector! DOMHTMLElement::accessKey not bound
|
||||
!missing-selector! DOMHTMLElement::click not bound
|
||||
!missing-selector! DOMHTMLElement::setAccessKey: not bound
|
||||
!missing-selector! DOMHTMLFrameElement::contentFrame not bound
|
||||
!missing-selector! DOMHTMLIFrameElement::contentFrame not bound
|
||||
!missing-selector! DOMHTMLObjectElement::contentFrame not bound
|
||||
!missing-selector! DOMHTMLTextAreaElement::autofocus not bound
|
||||
!missing-selector! DOMHTMLTextAreaElement::selectionEnd not bound
|
||||
!missing-selector! DOMHTMLTextAreaElement::selectionStart not bound
|
||||
!missing-selector! DOMHTMLTextAreaElement::setAutofocus: not bound
|
||||
!missing-selector! DOMHTMLTextAreaElement::setSelectionEnd: not bound
|
||||
!missing-selector! DOMHTMLTextAreaElement::setSelectionRange:end: not bound
|
||||
!missing-selector! DOMHTMLTextAreaElement::setSelectionStart: not bound
|
||||
!missing-selector! DOMHTMLTextAreaElement::willValidate not bound
|
||||
!missing-selector! DOMHTMLTitleElement::setText: not bound
|
||||
!missing-selector! DOMHTMLTitleElement::text not bound
|
||||
!missing-selector! DOMHTMLUListElement::compact not bound
|
||||
!missing-selector! DOMHTMLUListElement::setCompact: not bound
|
||||
!missing-selector! DOMHTMLUListElement::setType: not bound
|
||||
!missing-selector! DOMHTMLUListElement::type not bound
|
||||
!missing-selector! DOMKeyboardEvent::initKeyboardEvent:canBubble:cancelable:view:keyIdentifier:location:ctrlKey:altKey:shiftKey:metaKey: not bound
|
||||
!missing-selector! DOMKeyboardEvent::initKeyboardEvent:canBubble:cancelable:view:keyIdentifier:location:ctrlKey:altKey:shiftKey:metaKey:altGraphKey: not bound
|
||||
!missing-selector! DOMKeyboardEvent::location not bound
|
||||
!missing-selector! DOMMutationEvent::attrChange not bound
|
||||
!missing-selector! DOMMutationEvent::attrName not bound
|
||||
!missing-selector! DOMMutationEvent::initMutationEvent:canBubble:cancelable:relatedNode:prevValue:newValue:attrName:attrChange: not bound
|
||||
!missing-selector! DOMMutationEvent::newValue not bound
|
||||
!missing-selector! DOMMutationEvent::prevValue not bound
|
||||
!missing-selector! DOMMutationEvent::relatedNode not bound
|
||||
!missing-selector! DOMNode::boundingBox not bound
|
||||
!missing-selector! DOMNode::contains: not bound
|
||||
!missing-selector! DOMNode::lineBoxRects not bound
|
||||
!missing-selector! DOMNode::webArchive not bound
|
||||
!missing-selector! DOMObject::sheet not bound
|
||||
!missing-selector! DOMRange::markupString not bound
|
||||
!missing-selector! DOMRange::webArchive not bound
|
||||
!missing-selector! DOMRect::bottom not bound
|
||||
!missing-selector! DOMRect::left not bound
|
||||
!missing-selector! DOMRect::right not bound
|
||||
!missing-selector! DOMRect::top not bound
|
||||
!missing-selector! DOMRGBColor::alpha not bound
|
||||
!missing-selector! DOMRGBColor::blue not bound
|
||||
!missing-selector! DOMRGBColor::color not bound
|
||||
!missing-selector! DOMRGBColor::green not bound
|
||||
!missing-selector! DOMRGBColor::red not bound
|
||||
!missing-selector! DOMTreeWalker::currentNode not bound
|
||||
!missing-selector! DOMTreeWalker::expandEntityReferences not bound
|
||||
!missing-selector! DOMTreeWalker::filter not bound
|
||||
!missing-selector! DOMTreeWalker::firstChild not bound
|
||||
!missing-selector! DOMTreeWalker::lastChild not bound
|
||||
!missing-selector! DOMTreeWalker::nextNode not bound
|
||||
!missing-selector! DOMTreeWalker::nextSibling not bound
|
||||
!missing-selector! DOMTreeWalker::parentNode not bound
|
||||
!missing-selector! DOMTreeWalker::previousNode not bound
|
||||
!missing-selector! DOMTreeWalker::previousSibling not bound
|
||||
!missing-selector! DOMTreeWalker::root not bound
|
||||
!missing-selector! DOMTreeWalker::setCurrentNode: not bound
|
||||
!missing-selector! DOMTreeWalker::whatToShow not bound
|
||||
!missing-selector! DOMUIEvent::pageY not bound
|
||||
!missing-selector! DOMXPathExpression::evaluate:type:inResult: not bound
|
||||
!missing-selector! DOMXPathResult::booleanValue not bound
|
||||
!missing-selector! DOMXPathResult::invalidIteratorState not bound
|
||||
!missing-selector! DOMXPathResult::iterateNext not bound
|
||||
!missing-selector! DOMXPathResult::numberValue not bound
|
||||
!missing-selector! DOMXPathResult::resultType not bound
|
||||
!missing-selector! DOMXPathResult::singleNodeValue not bound
|
||||
!missing-selector! DOMXPathResult::snapshotItem: not bound
|
||||
!missing-selector! DOMXPathResult::snapshotLength not bound
|
||||
!missing-selector! DOMXPathResult::stringValue not bound
|
||||
!missing-selector! WebBackForwardList::pageCacheSize not bound
|
||||
!missing-selector! WebBackForwardList::setPageCacheSize: not bound
|
||||
!missing-selector! WebPreferences::allowsAirPlayForMediaPlayback not bound
|
||||
!missing-selector! WebPreferences::setAllowsAirPlayForMediaPlayback: not bound
|
||||
!missing-selector! WebPreferences::setSuppressesIncrementalRendering: not bound
|
||||
!missing-selector! WebPreferences::suppressesIncrementalRendering not bound
|
||||
!missing-selector! WebView::computedStyleForElement:pseudoElement: not bound
|
||||
!missing-selector! WebView::copy: not bound
|
||||
!missing-selector! WebView::editableDOMRangeForPoint: not bound
|
||||
!missing-selector! WebView::goBack: not bound
|
||||
!missing-selector! WebView::goForward: not bound
|
||||
!missing-selector! WebView::overWrite: not bound
|
||||
!missing-selector! WebView::replaceSelectionWithNode: not bound
|
||||
!missing-selector! WebView::replaceSelectionWithText: not bound
|
||||
!missing-selector! WebView::stopLoading: not bound
|
||||
!missing-selector! WebView::takeStringURLFrom: not bound
|
||||
!missing-selector! WKHTTPCookieStore::getCookiePolicy: not bound
|
||||
!missing-selector! WKHTTPCookieStore::setCookiePolicy:completionHandler: not bound
|
||||
!missing-selector! WKPDFConfiguration::allowTransparentBackground not bound
|
||||
!missing-selector! WKPDFConfiguration::setAllowTransparentBackground: not bound
|
||||
!missing-selector! WKPreferences::inactiveSchedulingPolicy not bound
|
||||
!missing-selector! WKPreferences::setInactiveSchedulingPolicy: not bound
|
||||
!missing-selector! WKWebsiteDataStore::identifier not bound
|
||||
!missing-selector! WKWebViewConfiguration::allowsInlinePredictions not bound
|
||||
!missing-selector! WKWebViewConfiguration::setAllowsInlinePredictions: not bound
|
||||
!missing-type! DOMCounter not bound
|
||||
!missing-type! DOMCSSPrimitiveValue not bound
|
||||
!missing-type! DOMCSSValueList not bound
|
||||
!missing-type! DOMEntity not bound
|
||||
!missing-type! DOMHTMLTitleElement not bound
|
||||
!missing-type! DOMHTMLUListElement not bound
|
||||
!missing-type! DOMMutationEvent not bound
|
||||
!missing-type! DOMRect not bound
|
||||
!missing-type! DOMRGBColor not bound
|
||||
!missing-type! DOMTreeWalker not bound
|
||||
!missing-type! DOMXPathExpression not bound
|
||||
!missing-type! DOMXPathResult not bound
|
||||
!missing-type! WebUndefined not bound
|
||||
!unknown-field! WebActionButtonKey bound
|
||||
!unknown-field! WebActionElementKey bound
|
||||
!unknown-field! WebActionModifierFlagsKey bound
|
||||
!unknown-field! WebActionNavigationTypeKey bound
|
||||
!unknown-field! WebActionOriginalURLKey bound
|
||||
!unknown-field! WebHistoryItemChangedNotification bound
|
||||
!unknown-field! WKErrorDomain bound
|
||||
!unknown-field! WKWebsiteDataTypeCookies bound
|
||||
!unknown-field! WKWebsiteDataTypeDiskCache bound
|
||||
!unknown-field! WKWebsiteDataTypeFetchCache bound
|
||||
!unknown-field! WKWebsiteDataTypeFileSystem bound
|
||||
!unknown-field! WKWebsiteDataTypeIndexedDBDatabases bound
|
||||
!unknown-field! WKWebsiteDataTypeLocalStorage bound
|
||||
!unknown-field! WKWebsiteDataTypeMemoryCache bound
|
||||
!unknown-field! WKWebsiteDataTypeOfflineWebApplicationCache bound
|
||||
!unknown-field! WKWebsiteDataTypeServiceWorkerRegistrations bound
|
||||
!unknown-field! WKWebsiteDataTypeSessionStorage bound
|
||||
!unknown-field! WKWebsiteDataTypeWebSQLDatabases bound
|
||||
!unknown-native-enum! WebCacheModel bound
|
||||
!unknown-native-enum! WebNavigationType bound
|
||||
!unknown-native-enum! WKAudiovisualMediaTypes bound
|
||||
!unknown-native-enum! WKContentMode bound
|
||||
!unknown-native-enum! WKDialogResult bound
|
||||
!unknown-native-enum! WKDownloadRedirectPolicy bound
|
||||
!unknown-native-enum! WKErrorCode bound
|
||||
!unknown-native-enum! WKFullscreenState bound
|
||||
!unknown-native-enum! WKMediaCaptureState bound
|
||||
!unknown-native-enum! WKMediaCaptureType bound
|
||||
!unknown-native-enum! WKMediaPlaybackState bound
|
||||
!unknown-native-enum! WKNavigationActionPolicy bound
|
||||
!unknown-native-enum! WKNavigationResponsePolicy bound
|
||||
!unknown-native-enum! WKNavigationType bound
|
||||
!unknown-native-enum! WKPermissionDecision bound
|
||||
!unknown-native-enum! WKUserScriptInjectionTime bound
|
||||
!unknown-protocol! DOMEventListener bound
|
||||
!unknown-protocol! DOMEventTarget bound
|
||||
!unknown-protocol! DOMNodeFilter bound
|
||||
!unknown-protocol! WebDocumentRepresentation bound
|
||||
!unknown-protocol! WebDownloadDelegate bound
|
||||
!unknown-protocol! WebFrameLoadDelegate bound
|
||||
!unknown-protocol! WebOpenPanelResultListener bound
|
||||
!unknown-protocol! WebPolicyDecisionListener bound
|
||||
!unknown-protocol! WebPolicyDelegate bound
|
||||
!unknown-protocol! WebResourceLoadDelegate bound
|
||||
!unknown-protocol! WebUIDelegate bound
|
||||
!unknown-protocol! WKDownloadDelegate bound
|
||||
!unknown-protocol! WKHTTPCookieStoreObserver bound
|
||||
!unknown-protocol! WKNavigationDelegate bound
|
||||
!unknown-protocol! WKScriptMessageHandler bound
|
||||
!unknown-protocol! WKScriptMessageHandlerWithReply bound
|
||||
!unknown-protocol! WKUIDelegate bound
|
||||
!unknown-protocol! WKURLSchemeHandler bound
|
||||
!unknown-protocol! WKURLSchemeTask bound
|
||||
!unknown-type! DOMAbstractView bound
|
||||
!unknown-type! DOMAttr bound
|
||||
!unknown-type! DOMBlob bound
|
||||
!unknown-type! DOMCDATASection bound
|
||||
!unknown-type! DOMCharacterData bound
|
||||
!unknown-type! DOMComment bound
|
||||
!unknown-type! DOMCSSCharsetRule bound
|
||||
!unknown-type! DOMCSSFontFaceRule bound
|
||||
!unknown-type! DOMCSSImportRule bound
|
||||
!unknown-type! DOMCSSMediaRule bound
|
||||
!unknown-type! DOMCSSPageRule bound
|
||||
!unknown-type! DOMCSSRule bound
|
||||
!unknown-type! DOMCSSRuleList bound
|
||||
!unknown-type! DOMCSSStyleDeclaration bound
|
||||
!unknown-type! DOMCSSStyleRule bound
|
||||
!unknown-type! DOMCSSStyleSheet bound
|
||||
!unknown-type! DOMCSSUnknownRule bound
|
||||
!unknown-type! DOMCSSValue bound
|
||||
!unknown-type! DOMDocument bound
|
||||
!unknown-type! DOMDocumentFragment bound
|
||||
!unknown-type! DOMDocumentType bound
|
||||
!unknown-type! DOMElement bound
|
||||
!unknown-type! DOMEntityReference bound
|
||||
!unknown-type! DOMEvent bound
|
||||
!unknown-type! DOMFile bound
|
||||
!unknown-type! DOMFileList bound
|
||||
!unknown-type! DOMHTMLAnchorElement bound
|
||||
!unknown-type! DOMHTMLAppletElement bound
|
||||
!unknown-type! DOMHTMLAreaElement bound
|
||||
!unknown-type! DOMHTMLBaseElement bound
|
||||
!unknown-type! DOMHTMLBaseFontElement bound
|
||||
!unknown-type! DOMHTMLBodyElement bound
|
||||
!unknown-type! DOMHTMLBRElement bound
|
||||
!unknown-type! DOMHTMLButtonElement bound
|
||||
!unknown-type! DOMHTMLCollection bound
|
||||
!unknown-type! DOMHTMLDirectoryElement bound
|
||||
!unknown-type! DOMHTMLDivElement bound
|
||||
!unknown-type! DOMHTMLDListElement bound
|
||||
!unknown-type! DOMHTMLDocument bound
|
||||
!unknown-type! DOMHTMLElement bound
|
||||
!unknown-type! DOMHTMLEmbedElement bound
|
||||
!unknown-type! DOMHTMLFieldSetElement bound
|
||||
!unknown-type! DOMHTMLFontElement bound
|
||||
!unknown-type! DOMHTMLFormElement bound
|
||||
!unknown-type! DOMHTMLFrameElement bound
|
||||
!unknown-type! DOMHTMLFrameSetElement bound
|
||||
!unknown-type! DOMHTMLHeadElement bound
|
||||
!unknown-type! DOMHTMLHeadingElement bound
|
||||
!unknown-type! DOMHTMLHRElement bound
|
||||
!unknown-type! DOMHTMLHtmlElement bound
|
||||
!unknown-type! DOMHTMLIFrameElement bound
|
||||
!unknown-type! DOMHTMLImageElement bound
|
||||
!unknown-type! DOMHTMLInputElement bound
|
||||
!unknown-type! DOMHTMLLabelElement bound
|
||||
!unknown-type! DOMHTMLLegendElement bound
|
||||
!unknown-type! DOMHTMLLIElement bound
|
||||
!unknown-type! DOMHTMLLinkElement bound
|
||||
!unknown-type! DOMHTMLMapElement bound
|
||||
!unknown-type! DOMHTMLMarqueeElement bound
|
||||
!unknown-type! DOMHTMLMenuElement bound
|
||||
!unknown-type! DOMHTMLMetaElement bound
|
||||
!unknown-type! DOMHTMLModElement bound
|
||||
!unknown-type! DOMHTMLObjectElement bound
|
||||
!unknown-type! DOMHTMLOListElement bound
|
||||
!unknown-type! DOMHTMLOptGroupElement bound
|
||||
!unknown-type! DOMHTMLOptionElement bound
|
||||
!unknown-type! DOMHTMLOptionsCollection bound
|
||||
!unknown-type! DOMHTMLParagraphElement bound
|
||||
!unknown-type! DOMHTMLParamElement bound
|
||||
!unknown-type! DOMHTMLPreElement bound
|
||||
!unknown-type! DOMHTMLQuoteElement bound
|
||||
!unknown-type! DOMHTMLScriptElement bound
|
||||
!unknown-type! DOMHTMLSelectElement bound
|
||||
!unknown-type! DOMHTMLStyleElement bound
|
||||
!unknown-type! DOMHTMLTableCaptionElement bound
|
||||
!unknown-type! DOMHTMLTableCellElement bound
|
||||
!unknown-type! DOMHTMLTableColElement bound
|
||||
!unknown-type! DOMHTMLTableElement bound
|
||||
!unknown-type! DOMHTMLTableRowElement bound
|
||||
!unknown-type! DOMHTMLTableSectionElement bound
|
||||
!unknown-type! DOMHTMLTextAreaElement bound
|
||||
!unknown-type! DOMImplementation bound
|
||||
!unknown-type! DOMKeyboardEvent bound
|
||||
!unknown-type! DOMMediaList bound
|
||||
!unknown-type! DOMMouseEvent bound
|
||||
!unknown-type! DOMNamedNodeMap bound
|
||||
!unknown-type! DOMNode bound
|
||||
!unknown-type! DOMNodeIterator bound
|
||||
!unknown-type! DOMNodeList bound
|
||||
!unknown-type! DOMObject bound
|
||||
!unknown-type! DOMOverflowEvent bound
|
||||
!unknown-type! DOMProcessingInstruction bound
|
||||
!unknown-type! DOMProgressEvent bound
|
||||
!unknown-type! DOMRange bound
|
||||
!unknown-type! DOMStyleSheet bound
|
||||
!unknown-type! DOMStyleSheetList bound
|
||||
!unknown-type! DOMText bound
|
||||
!unknown-type! DOMUIEvent bound
|
||||
!unknown-type! DOMWheelEvent bound
|
||||
!unknown-type! WebArchive bound
|
||||
!unknown-type! WebBackForwardList bound
|
||||
!unknown-type! WebDataSource bound
|
||||
!unknown-type! WebDownload bound
|
||||
!unknown-type! WebFrame bound
|
||||
!unknown-type! WebFrameView bound
|
||||
!unknown-type! WebHistory bound
|
||||
!unknown-type! WebHistoryItem bound
|
||||
!unknown-type! WebPreferences bound
|
||||
!unknown-type! WebResource bound
|
||||
!unknown-type! WebScriptObject bound
|
||||
!unknown-type! WebView bound
|
||||
!unknown-type! WKBackForwardList bound
|
||||
!unknown-type! WKBackForwardListItem bound
|
||||
!unknown-type! WKContentRuleList bound
|
||||
!unknown-type! WKContentRuleListStore bound
|
||||
!unknown-type! WKContentWorld bound
|
||||
!unknown-type! WKDownload bound
|
||||
!unknown-type! WKFindConfiguration bound
|
||||
!unknown-type! WKFindResult bound
|
||||
!unknown-type! WKFrameInfo bound
|
||||
!unknown-type! WKHTTPCookieStore bound
|
||||
!unknown-type! WKNavigation bound
|
||||
!unknown-type! WKNavigationAction bound
|
||||
!unknown-type! WKNavigationResponse bound
|
||||
!unknown-type! WKOpenPanelParameters bound
|
||||
!unknown-type! WKPDFConfiguration bound
|
||||
!unknown-type! WKPreferences bound
|
||||
!unknown-type! WKProcessPool bound
|
||||
!unknown-type! WKScriptMessage bound
|
||||
!unknown-type! WKSecurityOrigin bound
|
||||
!unknown-type! WKSnapshotConfiguration bound
|
||||
!unknown-type! WKUserContentController bound
|
||||
!unknown-type! WKUserScript bound
|
||||
!unknown-type! WKWebpagePreferences bound
|
||||
!unknown-type! WKWebsiteDataRecord bound
|
||||
!unknown-type! WKWebsiteDataStore bound
|
||||
!unknown-type! WKWebView bound
|
||||
!unknown-type! WKWebViewConfiguration bound
|
||||
!unknown-type! WKWindowFeatures bound
|
||||
|
|
|
@ -1121,3 +1121,4 @@
|
|||
!missing-type! AVMetadataHumanFullBodyObject not bound
|
||||
!missing-type! AVMetadataSalientObject not bound
|
||||
!missing-type! AVSampleBufferVideoRenderer not bound
|
||||
!missing-selector! AVCaptureDevice::displayVideoZoomFactorMultiplier not bound
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
!missing-field! AXPrefersHorizontalTextLayoutDidChangeNotification not bound
|
||||
!missing-pinvoke! AXPrefersHorizontalTextLayout is not bound
|
|
@ -61,10 +61,8 @@
|
|||
!missing-selector! CKSyncEngineFailedRecordSave::record not bound
|
||||
!missing-selector! CKSyncEngineFailedZoneSave::error not bound
|
||||
!missing-selector! CKSyncEngineFailedZoneSave::recordZone not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::initWithZoneIDs: not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::operationGroup not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::setOperationGroup: not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::zoneIDs not bound
|
||||
!missing-selector! CKSyncEngineFetchedDatabaseChangesEvent::deletions not bound
|
||||
!missing-selector! CKSyncEngineFetchedDatabaseChangesEvent::modifications not bound
|
||||
!missing-selector! CKSyncEngineFetchedRecordDeletion::recordID not bound
|
||||
|
@ -89,12 +87,8 @@
|
|||
!missing-selector! CKSyncEngineRecordZoneChangeBatch::setAtomicByZone: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesContext::options not bound
|
||||
!missing-selector! CKSyncEngineSendChangesContext::reason not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::initWithRecordIDs: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::initWithZoneIDs: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::operationGroup not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::recordIDs not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::setOperationGroup: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::zoneIDs not bound
|
||||
!missing-selector! CKSyncEngineSentDatabaseChangesEvent::deletedZoneIDs not bound
|
||||
!missing-selector! CKSyncEngineSentDatabaseChangesEvent::failedZoneDeletes not bound
|
||||
!missing-selector! CKSyncEngineSentDatabaseChangesEvent::failedZoneSaves not bound
|
||||
|
@ -143,3 +137,29 @@
|
|||
!missing-type! CKSyncEngineWillFetchChangesEvent not bound
|
||||
!missing-type! CKSyncEngineWillFetchRecordZoneChangesEvent not bound
|
||||
!missing-type! CKSyncEngineWillSendChangesEvent not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesContext::options not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesContext::reason not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::initWithScope: not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::prioritizedZoneIDs not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::scope not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::setPrioritizedZoneIDs: not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::setScope: not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesScope::excludedZoneIDs not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesScope::initWithExcludedZoneIDs: not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesScope::initWithZoneIDs: not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesScope::zoneIDs not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::initWithScope: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::scope not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::setScope: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesScope::containsPendingRecordZoneChange: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesScope::containsRecordID: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesScope::excludedZoneIDs not bound
|
||||
!missing-selector! CKSyncEngineSendChangesScope::initWithExcludedZoneIDs: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesScope::initWithRecordIDs: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesScope::initWithZoneIDs: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesScope::recordIDs not bound
|
||||
!missing-selector! CKSyncEngineSendChangesScope::zoneIDs not bound
|
||||
!missing-selector! CKSyncEngineState::zoneIDsWithUnfetchedServerChanges not bound
|
||||
!missing-type! CKSyncEngineFetchChangesContext not bound
|
||||
!missing-type! CKSyncEngineFetchChangesScope not bound
|
||||
!missing-type! CKSyncEngineSendChangesScope not bound
|
||||
|
|
|
@ -32,3 +32,4 @@
|
|||
!missing-type! NSManagedObjectModelReference not bound
|
||||
!missing-type! NSMigrationStage not bound
|
||||
!missing-type! NSStagedMigrationManager not bound
|
||||
!missing-selector! +NSManagedObjectModel::checksumsForVersionedModelAtURL:error: not bound
|
||||
|
|
|
@ -1 +1,2 @@
|
|||
!missing-field! kCFURLFileProtectionCompleteWhenUserInactive not bound
|
||||
!missing-field! kCFURLDirectoryEntryCountKey not bound
|
||||
|
|
|
@ -56,3 +56,4 @@
|
|||
!missing-selector! NSURLSessionUploadTask::cancelByProducingResumeData: not bound
|
||||
!missing-type! NSMorphologyPronoun not bound
|
||||
!missing-type! NSTermOfAddress not bound
|
||||
!missing-field! NSURLDirectoryEntryCountKey not bound
|
||||
|
|
|
@ -1,17 +1,6 @@
|
|||
!deprecated-attribute-missing! GKAchievement::challengeComposeControllerWithMessage:players:completionHandler: missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! GKLeaderboardEntry::challengeComposeControllerWithMessage:players:completionHandler: missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! GKNotificationBanner missing a [Deprecated] attribute
|
||||
!missing-protocol! GKSavedGameListener not bound
|
||||
!missing-protocol-conformance! GKLocalPlayer should conform to GKSavedGameListener (defined in 'GKSavedGame' category)
|
||||
!missing-selector! GKAchievement::challengeComposeControllerWithMessage:players:completion: not bound
|
||||
!missing-selector! GKAchievementDescription::rarityPercent not bound
|
||||
!missing-selector! GKLeaderboardEntry::challengeComposeControllerWithMessage:players:completion: not bound
|
||||
!missing-selector! GKLocalPlayer::deleteSavedGamesWithName:completionHandler: not bound
|
||||
!missing-selector! GKLocalPlayer::fetchSavedGamesWithCompletionHandler: not bound
|
||||
!missing-selector! GKLocalPlayer::resolveConflictingSavedGames:withData:completionHandler: not bound
|
||||
!missing-selector! GKLocalPlayer::saveGameData:withName:completionHandler: not bound
|
||||
!missing-selector! GKSavedGame::deviceName not bound
|
||||
!missing-selector! GKSavedGame::loadDataWithCompletionHandler: not bound
|
||||
!missing-selector! GKSavedGame::modificationDate not bound
|
||||
!missing-selector! GKSavedGame::name not bound
|
||||
!missing-type! GKSavedGame not bound
|
||||
|
|
|
@ -0,0 +1,54 @@
|
|||
!deprecated-attribute-missing! MLCActivationDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCActivationLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCAdamOptimizer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCAdamWOptimizer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCArithmeticLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCBatchNormalizationLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCComparisonLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCConcatenationLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCConvolutionDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCConvolutionLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCDevice missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCDropoutLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCEmbeddingDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCEmbeddingLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCFullyConnectedLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCGatherLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCGramMatrixLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCGraph missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCGroupNormalizationLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCInferenceGraph missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCInstanceNormalizationLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCLayerNormalizationLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCLossDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCLossLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCLSTMDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCLSTMLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCMatMulDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCMatMulLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCMultiheadAttentionDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCMultiheadAttentionLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCOptimizer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCOptimizerDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCPaddingLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCPlatform missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCPoolingDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCPoolingLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCReductionLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCReshapeLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCScatterLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCSelectionLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCSGDOptimizer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCSliceLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCSoftmaxLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCSplitLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCTensor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCTensorData missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCTensorDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCTensorParameter missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCTrainingGraph missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCTransposeLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCUpsampleLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCYOLOLossDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCYOLOLossLayer missing a [Deprecated] attribute
|
|
@ -6,3 +6,7 @@
|
|||
!deprecated-attribute-missing! MKMapSnapshotOptions::showsBuildings missing a [Deprecated] attribute
|
||||
!missing-selector! MKMapSnapshotOptions::preferredConfiguration not bound
|
||||
!missing-selector! MKMapSnapshotOptions::setPreferredConfiguration: not bound
|
||||
!missing-selector! MKMapView::pitchButtonVisibility not bound
|
||||
!missing-selector! MKMapView::setPitchButtonVisibility: not bound
|
||||
!missing-selector! MKMapView::setShowsUserTrackingButton: not bound
|
||||
!missing-selector! MKMapView::showsUserTrackingButton not bound
|
||||
|
|
|
@ -47,17 +47,11 @@
|
|||
!missing-enum! MTRDoorLockUserStatus not bound
|
||||
!missing-enum! MTRDoorLockUserType not bound
|
||||
!missing-enum! MTRErrorCode not bound
|
||||
!missing-enum! MTRFanControlFanModeSequenceType not bound
|
||||
!missing-enum! MTRFanControlFanModeType not bound
|
||||
!missing-enum! MTRFanControlFeature not bound
|
||||
!missing-enum! MTRFanControlRockSupportMask not bound
|
||||
!missing-enum! MTRFanControlWindSettingMask not bound
|
||||
!missing-enum! MTRFanControlWindSupportMask not bound
|
||||
!missing-enum! MTRGeneralCommissioningCommissioningError not bound
|
||||
!missing-enum! MTRGeneralCommissioningRegulatoryLocationType not bound
|
||||
!missing-enum! MTRGeneralDiagnosticsInterfaceType not bound
|
||||
!missing-enum! MTRGroupKeyManagementGroupKeySecurityPolicy not bound
|
||||
!missing-enum! MTRGroupsGroupClusterFeature not bound
|
||||
!missing-enum! MTRIdentifyEffectIdentifier not bound
|
||||
!missing-enum! MTRIdentifyEffectVariant not bound
|
||||
!missing-enum! MTRIdentifyType not bound
|
||||
|
@ -77,8 +71,6 @@
|
|||
!missing-enum! MTRNetworkCommissioningFeature not bound
|
||||
!missing-enum! MTRNetworkCommissioningStatus not bound
|
||||
!missing-enum! MTRNetworkCommissioningWiFiBand not bound
|
||||
!missing-enum! MTRNetworkCommissioningWiFiSecurity not bound
|
||||
!missing-enum! MTROnboardingPayloadType not bound
|
||||
!missing-enum! MTROnOffControl not bound
|
||||
!missing-enum! MTROnOffDelayedAllOffEffectVariant not bound
|
||||
!missing-enum! MTROnOffDyingLightEffectVariant not bound
|
||||
|
@ -95,7 +87,6 @@
|
|||
!missing-enum! MTRPowerSourceStatus not bound
|
||||
!missing-enum! MTRPowerSourceWiredCurrentType not bound
|
||||
!missing-enum! MTRPowerSourceWiredFault not bound
|
||||
!missing-enum! MTRPressureMeasurementPressureFeature not bound
|
||||
!missing-enum! MTRScenesCopyMode not bound
|
||||
!missing-enum! MTRSoftwareDiagnosticsFeature not bound
|
||||
!missing-enum! MTRTargetNavigatorStatus not bound
|
||||
|
@ -1460,7 +1451,6 @@
|
|||
!missing-selector! MTRWriteParams::timedWriteTimeout not bound
|
||||
!missing-type! MTRAccessControlClusterAccessControlEntryChangedEvent not bound
|
||||
!missing-type! MTRAccessControlClusterAccessControlExtensionChangedEvent not bound
|
||||
!missing-type! MTRAccessControlClusterTarget not bound
|
||||
!missing-type! MTRAccountLoginClusterGetSetupPINParams not bound
|
||||
!missing-type! MTRAccountLoginClusterGetSetupPINResponseParams not bound
|
||||
!missing-type! MTRAccountLoginClusterLoginParams not bound
|
||||
|
@ -1488,7 +1478,6 @@
|
|||
!missing-type! MTRBaseClusterBinaryInputBasic not bound
|
||||
!missing-type! MTRBaseClusterBinding not bound
|
||||
!missing-type! MTRBaseClusterBooleanState not bound
|
||||
!missing-type! MTRBaseClusterBridgedDeviceBasic not bound
|
||||
!missing-type! MTRBaseClusterChannel not bound
|
||||
!missing-type! MTRBaseClusterColorControl not bound
|
||||
!missing-type! MTRBaseClusterContentLauncher not bound
|
||||
|
@ -1539,10 +1528,6 @@
|
|||
!missing-type! MTRBaseDevice not bound
|
||||
!missing-type! MTRBindingClusterTargetStruct not bound
|
||||
!missing-type! MTRBooleanStateClusterStateChangeEvent not bound
|
||||
!missing-type! MTRBridgedDeviceBasicClusterLeaveEvent not bound
|
||||
!missing-type! MTRBridgedDeviceBasicClusterReachableChangedEvent not bound
|
||||
!missing-type! MTRBridgedDeviceBasicClusterShutDownEvent not bound
|
||||
!missing-type! MTRBridgedDeviceBasicClusterStartUpEvent not bound
|
||||
!missing-type! MTRCertificates not bound
|
||||
!missing-type! MTRChannelClusterChangeChannelByNumberParams not bound
|
||||
!missing-type! MTRChannelClusterChangeChannelParams not bound
|
||||
|
@ -1680,14 +1665,10 @@
|
|||
!missing-type! MTRNetworkCommissioningClusterConnectNetworkParams not bound
|
||||
!missing-type! MTRNetworkCommissioningClusterConnectNetworkResponseParams not bound
|
||||
!missing-type! MTRNetworkCommissioningClusterNetworkConfigResponseParams not bound
|
||||
!missing-type! MTRNetworkCommissioningClusterNetworkInfo not bound
|
||||
!missing-type! MTRNetworkCommissioningClusterRemoveNetworkParams not bound
|
||||
!missing-type! MTRNetworkCommissioningClusterReorderNetworkParams not bound
|
||||
!missing-type! MTRNetworkCommissioningClusterScanNetworksParams not bound
|
||||
!missing-type! MTRNetworkCommissioningClusterScanNetworksResponseParams not bound
|
||||
!missing-type! MTRNetworkCommissioningClusterThreadInterfaceScanResult not bound
|
||||
!missing-type! MTRNetworkCommissioningClusterWiFiInterfaceScanResult not bound
|
||||
!missing-type! MTROnboardingPayloadParser not bound
|
||||
!missing-type! MTROnOffClusterOffParams not bound
|
||||
!missing-type! MTROnOffClusterOffWithEffectParams not bound
|
||||
!missing-type! MTROnOffClusterOnParams not bound
|
||||
|
@ -1767,10 +1748,8 @@
|
|||
!missing-type! MTRThermostatClusterSetWeeklyScheduleParams not bound
|
||||
!missing-type! MTRThermostatClusterThermostatScheduleTransition not bound
|
||||
!missing-type! MTRThreadNetworkDiagnosticsClusterConnectionStatusEvent not bound
|
||||
!missing-type! MTRThreadNetworkDiagnosticsClusterNeighborTable not bound
|
||||
!missing-type! MTRThreadNetworkDiagnosticsClusterOperationalDatasetComponents not bound
|
||||
!missing-type! MTRThreadNetworkDiagnosticsClusterResetCountsParams not bound
|
||||
!missing-type! MTRThreadNetworkDiagnosticsClusterRouteTable not bound
|
||||
!missing-type! MTRThreadNetworkDiagnosticsClusterSecurityPolicy not bound
|
||||
!missing-type! MTRThreadOperationalDataset not bound
|
||||
!missing-type! MTRUserLabelClusterLabelStruct not bound
|
||||
|
@ -1800,7 +1779,6 @@
|
|||
!missing-field! MTREventPathKey not bound
|
||||
!missing-protocol! MTRDeviceDelegate not bound
|
||||
!missing-selector! +MTRCertificates::convertX509Certificate: not bound
|
||||
!missing-selector! +MTROnboardingPayloadParser::setupPayloadForOnboardingPayload:error: not bound
|
||||
!missing-selector! +MTRSetupPayload::generateRandomPIN not bound
|
||||
!missing-selector! MTRAccessControlClusterAccessControlEntryChangedEvent::fabricIndex not bound
|
||||
!missing-selector! MTRAccessControlClusterAccessControlEntryChangedEvent::setFabricIndex: not bound
|
||||
|
@ -3248,7 +3226,6 @@
|
|||
!missing-type! MTRClusterBinaryInputBasic not bound
|
||||
!missing-type! MTRClusterBinding not bound
|
||||
!missing-type! MTRClusterBooleanState not bound
|
||||
!missing-type! MTRClusterBridgedDeviceBasic not bound
|
||||
!missing-type! MTRClusterChannel not bound
|
||||
!missing-type! MTRClusterColorControl not bound
|
||||
!missing-type! MTRClusterContentLauncher not bound
|
||||
|
@ -3337,7 +3314,6 @@
|
|||
!missing-enum! MTROTASoftwareUpdateRequestorOTAAnnouncementReason not bound
|
||||
!missing-enum! MTROTASoftwareUpdateRequestorOTAChangeReason not bound
|
||||
!missing-enum! MTROTASoftwareUpdateRequestorOTAUpdateState not bound
|
||||
!missing-enum! MTRPumpConfigurationAndControlPumpFeature not bound
|
||||
!missing-enum! MTRSwitchFeature not bound
|
||||
!missing-enum! MTRThreadNetworkDiagnosticsConnectionStatus not bound
|
||||
!missing-enum! MTRTransportType not bound
|
||||
|
@ -8544,7 +8520,6 @@
|
|||
!missing-selector! MTROperationalCSRInfo::csr not bound
|
||||
!missing-selector! MTROperationalCSRInfo::csrElementsTLV not bound
|
||||
!missing-selector! MTROperationalCSRInfo::csrNonce not bound
|
||||
!missing-selector! MTROperationalCSRInfo::initWithCSR:csrNonce:csrElementsTLV:attestationSignature: not bound
|
||||
!missing-selector! MTROptionalQRCodeInfo::setType: not bound
|
||||
!missing-selector! MTROptionalQRCodeInfo::type not bound
|
||||
!missing-selector! MTROTAHeader::initWithData: not bound
|
||||
|
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -368,3 +368,12 @@
|
|||
!missing-type! NWTLSParameters not bound
|
||||
!missing-type! NWUDPSession not bound
|
||||
!wrong-enum-size! NWPathStatus managed 4 vs native 8
|
||||
!missing-selector! +NERelayManager::loadAllManagersFromPreferencesWithCompletionHandler: not bound
|
||||
!missing-selector! NERelay::dnsOverHTTPSURL not bound
|
||||
!missing-selector! NERelay::setDnsOverHTTPSURL: not bound
|
||||
!missing-selector! NERelay::setSyntheticDNSAnswerIPv4Prefix: not bound
|
||||
!missing-selector! NERelay::setSyntheticDNSAnswerIPv6Prefix: not bound
|
||||
!missing-selector! NERelay::syntheticDNSAnswerIPv4Prefix not bound
|
||||
!missing-selector! NERelay::syntheticDNSAnswerIPv6Prefix not bound
|
||||
!missing-selector! NERelayManager::onDemandRules not bound
|
||||
!missing-selector! NERelayManager::setOnDemandRules: not bound
|
||||
|
|
|
@ -28,7 +28,6 @@
|
|||
!missing-enum! UITextViewBorderStyle not bound
|
||||
!missing-enum-value! UIMenuOptions native value UIMenuOptionsDisplayAsPalette = 128 not bound
|
||||
!missing-enum-value! UINavigationItemLargeTitleDisplayMode native value UINavigationItemLargeTitleDisplayModeInline = 3 not bound
|
||||
!missing-enum-value! UIUserInterfaceIdiom native value UIUserInterfaceIdiomReality = 6 not bound
|
||||
!missing-field! UIAccessibilityPriorityDefault not bound
|
||||
!missing-field! UIAccessibilityPriorityHigh not bound
|
||||
!missing-field! UIAccessibilityPriorityLow not bound
|
||||
|
@ -489,3 +488,6 @@
|
|||
!missing-type! UITraitVerticalSizeClass not bound
|
||||
!missing-type! UIWindowScenePlacement not bound
|
||||
!missing-type! UIWindowSceneStandardPlacement not bound
|
||||
!missing-enum-value! UIMenuElementSize native value UIMenuElementSizeAutomatic = -1 not bound
|
||||
!missing-enum-value! UIUserInterfaceIdiom native value UIUserInterfaceIdiomVision = 6 not bound
|
||||
!missing-field! NSDefaultFontExcludedDocumentAttribute not bound
|
||||
|
|
|
@ -474,3 +474,4 @@
|
|||
!missing-type! AVCaptureReactionEffectState not bound
|
||||
!missing-type! AVMetadataHumanFullBodyObject not bound
|
||||
!missing-type! AVSampleBufferVideoRenderer not bound
|
||||
!missing-field! AVCaptureDeviceTypeContinuityCamera not bound
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
!missing-field! AXPrefersHorizontalTextLayoutDidChangeNotification not bound
|
||||
!missing-pinvoke! AXPrefersHorizontalTextLayout is not bound
|
|
@ -12,7 +12,6 @@
|
|||
!missing-protocol-conformance! ASPasswordCredentialIdentity should conform to ASCredentialIdentity
|
||||
!missing-selector! +ASPasskeyAssertionCredential::credentialWithUserHandle:relyingParty:signature:clientDataHash:authenticatorData:credentialID: not bound
|
||||
!missing-selector! +ASPasskeyCredentialIdentity::identityWithRelyingPartyIdentifier:userName:credentialID:userHandle:recordIdentifier: not bound
|
||||
!missing-selector! +ASPasskeyCredentialRequest::requestWithCredentialIdentity:clientDataHash:userVerificationPreference: not bound
|
||||
!missing-selector! +ASPasskeyRegistrationCredential::credentialWithRelyingParty:clientDataHash:credentialID:attestationObject: not bound
|
||||
!missing-selector! +ASPasswordCredentialRequest::requestWithCredentialIdentity: not bound
|
||||
!missing-selector! +ASSettingsHelper::openCredentialProviderAppSettingsWithCompletionHandler: not bound
|
||||
|
@ -43,7 +42,6 @@
|
|||
!missing-selector! ASPasskeyCredentialIdentity::userHandle not bound
|
||||
!missing-selector! ASPasskeyCredentialIdentity::userName not bound
|
||||
!missing-selector! ASPasskeyCredentialRequest::clientDataHash not bound
|
||||
!missing-selector! ASPasskeyCredentialRequest::initWithCredentialIdentity:clientDataHash:userVerificationPreference: not bound
|
||||
!missing-selector! ASPasskeyCredentialRequest::setUserVerificationPreference: not bound
|
||||
!missing-selector! ASPasskeyCredentialRequest::userVerificationPreference not bound
|
||||
!missing-selector! ASPasskeyRegistrationCredential::attestationObject not bound
|
||||
|
@ -58,3 +56,34 @@
|
|||
!missing-type! ASPasskeyRegistrationCredential not bound
|
||||
!missing-type! ASPasswordCredentialRequest not bound
|
||||
!missing-type! ASSettingsHelper not bound
|
||||
!missing-enum! ASAuthorizationPublicKeyCredentialLargeBlobAssertionOperation not bound
|
||||
!missing-enum! ASAuthorizationPublicKeyCredentialLargeBlobSupportRequirement not bound
|
||||
!missing-selector! +ASPasskeyCredentialRequest::requestWithCredentialIdentity:clientDataHash:userVerificationPreference:supportedAlgorithms: not bound
|
||||
!missing-selector! ASAuthorizationPlatformPublicKeyCredentialAssertion::largeBlob not bound
|
||||
!missing-selector! ASAuthorizationPlatformPublicKeyCredentialAssertionRequest::largeBlob not bound
|
||||
!missing-selector! ASAuthorizationPlatformPublicKeyCredentialAssertionRequest::setLargeBlob: not bound
|
||||
!missing-selector! ASAuthorizationPlatformPublicKeyCredentialRegistration::largeBlob not bound
|
||||
!missing-selector! ASAuthorizationPlatformPublicKeyCredentialRegistrationRequest::largeBlob not bound
|
||||
!missing-selector! ASAuthorizationPlatformPublicKeyCredentialRegistrationRequest::setLargeBlob: not bound
|
||||
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobAssertionInput::dataToWrite not bound
|
||||
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobAssertionInput::initWithOperation: not bound
|
||||
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobAssertionInput::operation not bound
|
||||
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobAssertionInput::setDataToWrite: not bound
|
||||
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobAssertionOutput::didWrite not bound
|
||||
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobAssertionOutput::readData not bound
|
||||
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobRegistrationInput::initWithSupportRequirement: not bound
|
||||
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobRegistrationInput::setSupportRequirement: not bound
|
||||
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobRegistrationInput::supportRequirement not bound
|
||||
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobRegistrationOutput::isSupported not bound
|
||||
!missing-selector! ASCredentialProviderViewController::prepareCredentialListForServiceIdentifiers:requestParameters: not bound
|
||||
!missing-selector! ASPasskeyCredentialRequest::initWithCredentialIdentity:clientDataHash:userVerificationPreference:supportedAlgorithms: not bound
|
||||
!missing-selector! ASPasskeyCredentialRequest::supportedAlgorithms not bound
|
||||
!missing-selector! ASPasskeyCredentialRequestParameters::allowedCredentials not bound
|
||||
!missing-selector! ASPasskeyCredentialRequestParameters::clientDataHash not bound
|
||||
!missing-selector! ASPasskeyCredentialRequestParameters::relyingPartyIdentifier not bound
|
||||
!missing-selector! ASPasskeyCredentialRequestParameters::userVerificationPreference not bound
|
||||
!missing-type! ASAuthorizationPublicKeyCredentialLargeBlobAssertionInput not bound
|
||||
!missing-type! ASAuthorizationPublicKeyCredentialLargeBlobAssertionOutput not bound
|
||||
!missing-type! ASAuthorizationPublicKeyCredentialLargeBlobRegistrationInput not bound
|
||||
!missing-type! ASAuthorizationPublicKeyCredentialLargeBlobRegistrationOutput not bound
|
||||
!missing-type! ASPasskeyCredentialRequestParameters not bound
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
!missing-enum! BAErrorCode not bound
|
||||
!missing-field! BAErrorDomain not bound
|
|
@ -1 +1,2 @@
|
|||
!missing-enum-value! CXErrorCodeIncomingCallError native value CXErrorCodeIncomingCallErrorFilteredDuringRestrictedSharingMode = 5 not bound
|
||||
!extra-designated-initializer! CXSetMutedCallAction::initWithCallUUID:muted: is incorrectly decorated with an [DesignatedInitializer] attribute
|
||||
|
|
|
@ -70,10 +70,8 @@
|
|||
!missing-selector! CKSyncEngineFailedRecordSave::record not bound
|
||||
!missing-selector! CKSyncEngineFailedZoneSave::error not bound
|
||||
!missing-selector! CKSyncEngineFailedZoneSave::recordZone not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::initWithZoneIDs: not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::operationGroup not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::setOperationGroup: not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::zoneIDs not bound
|
||||
!missing-selector! CKSyncEngineFetchedDatabaseChangesEvent::deletions not bound
|
||||
!missing-selector! CKSyncEngineFetchedDatabaseChangesEvent::modifications not bound
|
||||
!missing-selector! CKSyncEngineFetchedRecordDeletion::recordID not bound
|
||||
|
@ -98,12 +96,8 @@
|
|||
!missing-selector! CKSyncEngineRecordZoneChangeBatch::setAtomicByZone: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesContext::options not bound
|
||||
!missing-selector! CKSyncEngineSendChangesContext::reason not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::initWithRecordIDs: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::initWithZoneIDs: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::operationGroup not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::recordIDs not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::setOperationGroup: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::zoneIDs not bound
|
||||
!missing-selector! CKSyncEngineSentDatabaseChangesEvent::deletedZoneIDs not bound
|
||||
!missing-selector! CKSyncEngineSentDatabaseChangesEvent::failedZoneDeletes not bound
|
||||
!missing-selector! CKSyncEngineSentDatabaseChangesEvent::failedZoneSaves not bound
|
||||
|
@ -152,3 +146,29 @@
|
|||
!missing-type! CKSyncEngineWillFetchChangesEvent not bound
|
||||
!missing-type! CKSyncEngineWillFetchRecordZoneChangesEvent not bound
|
||||
!missing-type! CKSyncEngineWillSendChangesEvent not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesContext::options not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesContext::reason not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::initWithScope: not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::prioritizedZoneIDs not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::scope not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::setPrioritizedZoneIDs: not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::setScope: not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesScope::excludedZoneIDs not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesScope::initWithExcludedZoneIDs: not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesScope::initWithZoneIDs: not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesScope::zoneIDs not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::initWithScope: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::scope not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::setScope: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesScope::containsPendingRecordZoneChange: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesScope::containsRecordID: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesScope::excludedZoneIDs not bound
|
||||
!missing-selector! CKSyncEngineSendChangesScope::initWithExcludedZoneIDs: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesScope::initWithRecordIDs: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesScope::initWithZoneIDs: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesScope::recordIDs not bound
|
||||
!missing-selector! CKSyncEngineSendChangesScope::zoneIDs not bound
|
||||
!missing-selector! CKSyncEngineState::zoneIDsWithUnfetchedServerChanges not bound
|
||||
!missing-type! CKSyncEngineFetchChangesContext not bound
|
||||
!missing-type! CKSyncEngineFetchChangesScope not bound
|
||||
!missing-type! CKSyncEngineSendChangesScope not bound
|
||||
|
|
|
@ -32,3 +32,4 @@
|
|||
!missing-type! NSManagedObjectModelReference not bound
|
||||
!missing-type! NSMigrationStage not bound
|
||||
!missing-type! NSStagedMigrationManager not bound
|
||||
!missing-selector! +NSManagedObjectModel::checksumsForVersionedModelAtURL:error: not bound
|
||||
|
|
|
@ -1 +1,2 @@
|
|||
!missing-field! kCFURLFileProtectionCompleteWhenUserInactive not bound
|
||||
!missing-field! kCFURLDirectoryEntryCountKey not bound
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
!missing-selector! CSSuggestion::score not bound
|
||||
!missing-selector! CSSuggestion::suggestionDataSources not bound
|
||||
!missing-selector! CSSearchableIndex::initWithName:protectionClass:bundleIdentifier:options: not bound
|
||||
|
|
|
@ -54,3 +54,4 @@
|
|||
!missing-selector! NSURLSessionUploadTask::cancelByProducingResumeData: not bound
|
||||
!missing-type! NSMorphologyPronoun not bound
|
||||
!missing-type! NSTermOfAddress not bound
|
||||
!missing-field! NSURLDirectoryEntryCountKey not bound
|
||||
|
|
|
@ -45,3 +45,4 @@
|
|||
!missing-selector! HKWorkoutSession::type not bound
|
||||
!missing-selector! HKWorkoutSession::workoutConfiguration not bound
|
||||
!missing-type! HKWorkoutSession not bound
|
||||
!missing-enum-value! HKErrorCode native value HKErrorBackgroundWorkoutSessionNotAllowed = 14 not bound
|
||||
|
|
|
@ -38,3 +38,8 @@
|
|||
!missing-type! INMessageLinkMetadata not bound
|
||||
!missing-type! INUnsendMessagesIntent not bound
|
||||
!missing-type! INUnsendMessagesIntentResponse not bound
|
||||
!missing-enum-value! INSearchForMessagesIntentResponseCode native value INSearchForMessagesIntentResponseCodeFailureRequiringInAppAuthentication = 8 not bound
|
||||
!missing-enum-value! INSendMessageIntentResponseCode native value INSendMessageIntentResponseCodeFailureRequiringInAppAuthentication = 7 not bound
|
||||
!missing-enum-value! INSendMessageRecipientUnsupportedReason native value INSendMessageRecipientUnsupportedReasonRequiringInAppAuthentication = 7 not bound
|
||||
!missing-enum-value! INStartCallContactUnsupportedReason native value INStartCallContactUnsupportedReasonRequiringInAppAuthentication = 8 not bound
|
||||
!missing-enum-value! INStartCallIntentResponseCode native value INStartCallIntentResponseCodeFailureRequiringInAppAuthentication = 13 not bound
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
!missing-enum-value! LABiometryType native value LABiometryTypeOpticID = 4 not bound
|
|
@ -0,0 +1,54 @@
|
|||
!deprecated-attribute-missing! MLCActivationDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCActivationLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCAdamOptimizer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCAdamWOptimizer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCArithmeticLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCBatchNormalizationLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCComparisonLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCConcatenationLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCConvolutionDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCConvolutionLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCDevice missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCDropoutLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCEmbeddingDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCEmbeddingLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCFullyConnectedLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCGatherLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCGramMatrixLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCGraph missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCGroupNormalizationLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCInferenceGraph missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCInstanceNormalizationLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCLayerNormalizationLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCLossDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCLossLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCLSTMDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCLSTMLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCMatMulDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCMatMulLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCMultiheadAttentionDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCMultiheadAttentionLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCOptimizer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCOptimizerDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCPaddingLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCPlatform missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCPoolingDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCPoolingLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCReductionLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCReshapeLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCScatterLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCSelectionLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCSGDOptimizer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCSliceLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCSoftmaxLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCSplitLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCTensor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCTensorData missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCTensorDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCTensorParameter missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCTrainingGraph missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCTransposeLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCUpsampleLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCYOLOLossDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCYOLOLossLayer missing a [Deprecated] attribute
|
|
@ -6,3 +6,7 @@
|
|||
!deprecated-attribute-missing! MKMapSnapshotOptions::showsBuildings missing a [Deprecated] attribute
|
||||
!missing-selector! MKMapSnapshotOptions::preferredConfiguration not bound
|
||||
!missing-selector! MKMapSnapshotOptions::setPreferredConfiguration: not bound
|
||||
!missing-selector! MKMapView::pitchButtonVisibility not bound
|
||||
!missing-selector! MKMapView::setPitchButtonVisibility: not bound
|
||||
!missing-selector! MKMapView::setShowsUserTrackingButton: not bound
|
||||
!missing-selector! MKMapView::showsUserTrackingButton not bound
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
!missing-selector! MSSticker::initWithFileURL:identifier:localizedDescription: not bound
|
|
@ -33,3 +33,5 @@
|
|||
!missing-type! NEFailureHandlerProvider not bound
|
||||
!missing-type! NERelay not bound
|
||||
!missing-type! NERelayManager not bound
|
||||
!missing-selector! NERelay::dnsOverHTTPSURL not bound
|
||||
!missing-selector! NERelay::setDnsOverHTTPSURL: not bound
|
||||
|
|
|
@ -27,7 +27,6 @@
|
|||
!missing-enum! UITextViewBorderStyle not bound
|
||||
!missing-enum-value! UIMenuOptions native value UIMenuOptionsDisplayAsPalette = 128 not bound
|
||||
!missing-enum-value! UINavigationItemLargeTitleDisplayMode native value UINavigationItemLargeTitleDisplayModeInline = 3 not bound
|
||||
!missing-enum-value! UIUserInterfaceIdiom native value UIUserInterfaceIdiomReality = 6 not bound
|
||||
!missing-field! UIAccessibilityPriorityDefault not bound
|
||||
!missing-field! UIAccessibilityPriorityHigh not bound
|
||||
!missing-field! UIAccessibilityPriorityLow not bound
|
||||
|
@ -494,3 +493,14 @@
|
|||
!missing-type! UIWindowSceneProminentPlacement not bound
|
||||
!missing-type! UIWindowSceneStandardPlacement not bound
|
||||
!wrong-base-type! UIPointerStyle expected UIHoverStyle actual NSObject
|
||||
!deprecated-attribute-missing! UICloudSharingController::initWithPreparationHandler: missing a [Deprecated] attribute
|
||||
!missing-enum-value! UIMenuElementSize native value UIMenuElementSizeAutomatic = -1 not bound
|
||||
!missing-enum-value! UIUserInterfaceIdiom native value UIUserInterfaceIdiomVision = 6 not bound
|
||||
!missing-field! NSDefaultFontExcludedDocumentAttribute not bound
|
||||
!missing-protocol! UIShapeProvider not bound
|
||||
!missing-selector! +UIShape::fixedRectShapeWithRect:cornerRadius: not bound
|
||||
!missing-selector! +UIShape::fixedRectShapeWithRect:cornerRadius:cornerCurve:maskedCorners: not bound
|
||||
!missing-selector! +UIShape::shapeWithProvider: not bound
|
||||
!missing-selector! UIHoverStyle::isEnabled not bound
|
||||
!missing-selector! UIHoverStyle::setEnabled: not bound
|
||||
!unknown-field! NSReadAccessURLDocumentOption bound
|
||||
|
|
|
@ -1,17 +1,69 @@
|
|||
!missing-enum! WKCookiePolicy not bound
|
||||
!missing-enum! WKInactiveSchedulingPolicy not bound
|
||||
!missing-field! WKWebsiteDataTypeHashSalt not bound
|
||||
!missing-field! WKWebsiteDataTypeMediaKeys not bound
|
||||
!missing-field! WKWebsiteDataTypeSearchFieldRecentSearches not bound
|
||||
!missing-selector! +WKWebsiteDataStore::dataStoreForIdentifier: not bound
|
||||
!missing-selector! +WKWebsiteDataStore::fetchAllDataStoreIdentifiers: not bound
|
||||
!missing-selector! +WKWebsiteDataStore::removeDataStoreForIdentifier:completionHandler: not bound
|
||||
!missing-selector! WKHTTPCookieStore::getCookiePolicy: not bound
|
||||
!missing-selector! WKHTTPCookieStore::setCookiePolicy:completionHandler: not bound
|
||||
!missing-selector! WKPDFConfiguration::allowTransparentBackground not bound
|
||||
!missing-selector! WKPDFConfiguration::setAllowTransparentBackground: not bound
|
||||
!missing-selector! WKPreferences::inactiveSchedulingPolicy not bound
|
||||
!missing-selector! WKPreferences::setInactiveSchedulingPolicy: not bound
|
||||
!missing-selector! WKWebsiteDataStore::identifier not bound
|
||||
!missing-selector! WKWebViewConfiguration::allowsInlinePredictions not bound
|
||||
!missing-selector! WKWebViewConfiguration::setAllowsInlinePredictions: not bound
|
||||
!unknown-field! WKErrorDomain bound
|
||||
!unknown-field! WKPreviewActionItemIdentifierAddToReadingList bound
|
||||
!unknown-field! WKPreviewActionItemIdentifierCopy bound
|
||||
!unknown-field! WKPreviewActionItemIdentifierOpen bound
|
||||
!unknown-field! WKPreviewActionItemIdentifierShare bound
|
||||
!unknown-field! WKWebsiteDataTypeCookies bound
|
||||
!unknown-field! WKWebsiteDataTypeDiskCache bound
|
||||
!unknown-field! WKWebsiteDataTypeFetchCache bound
|
||||
!unknown-field! WKWebsiteDataTypeFileSystem bound
|
||||
!unknown-field! WKWebsiteDataTypeIndexedDBDatabases bound
|
||||
!unknown-field! WKWebsiteDataTypeLocalStorage bound
|
||||
!unknown-field! WKWebsiteDataTypeMemoryCache bound
|
||||
!unknown-field! WKWebsiteDataTypeOfflineWebApplicationCache bound
|
||||
!unknown-field! WKWebsiteDataTypeServiceWorkerRegistrations bound
|
||||
!unknown-field! WKWebsiteDataTypeSessionStorage bound
|
||||
!unknown-field! WKWebsiteDataTypeWebSQLDatabases bound
|
||||
!unknown-native-enum! WKAudiovisualMediaTypes bound
|
||||
!unknown-native-enum! WKContentMode bound
|
||||
!unknown-native-enum! WKDataDetectorTypes bound
|
||||
!unknown-native-enum! WKDialogResult bound
|
||||
!unknown-native-enum! WKDownloadRedirectPolicy bound
|
||||
!unknown-native-enum! WKFullscreenState bound
|
||||
!unknown-native-enum! WKMediaCaptureState bound
|
||||
!unknown-native-enum! WKMediaCaptureType bound
|
||||
!unknown-native-enum! WKMediaPlaybackState bound
|
||||
!unknown-native-enum! WKNavigationActionPolicy bound
|
||||
!unknown-native-enum! WKNavigationResponsePolicy bound
|
||||
!unknown-native-enum! WKNavigationType bound
|
||||
!unknown-native-enum! WKPermissionDecision bound
|
||||
!unknown-native-enum! WKSelectionGranularity bound
|
||||
!unknown-native-enum! WKUserScriptInjectionTime bound
|
||||
!unknown-protocol! WKDownloadDelegate bound
|
||||
!unknown-protocol! WKHTTPCookieStoreObserver bound
|
||||
!unknown-protocol! WKNavigationDelegate bound
|
||||
!unknown-protocol! WKPreviewActionItem bound
|
||||
!unknown-protocol! WKScriptMessageHandler bound
|
||||
!unknown-protocol! WKScriptMessageHandlerWithReply bound
|
||||
!unknown-protocol! WKUIDelegate bound
|
||||
!unknown-protocol! WKURLSchemeHandler bound
|
||||
!unknown-protocol! WKURLSchemeTask bound
|
||||
!unknown-type! WKBackForwardList bound
|
||||
!unknown-type! WKBackForwardListItem bound
|
||||
!unknown-type! WKContentRuleList bound
|
||||
!unknown-type! WKContentRuleListStore bound
|
||||
!unknown-type! WKContentWorld bound
|
||||
!unknown-type! WKContextMenuElementInfo bound
|
||||
!unknown-type! WKDownload bound
|
||||
!unknown-type! WKFindConfiguration bound
|
||||
!unknown-type! WKFindResult bound
|
||||
!unknown-type! WKFrameInfo bound
|
||||
!unknown-type! WKHTTPCookieStore bound
|
||||
!unknown-type! WKNavigation bound
|
||||
!unknown-type! WKNavigationAction bound
|
||||
!unknown-type! WKNavigationResponse bound
|
||||
!unknown-type! WKPDFConfiguration bound
|
||||
!unknown-type! WKPreferences bound
|
||||
!unknown-type! WKPreviewElementInfo bound
|
||||
!unknown-type! WKProcessPool bound
|
||||
!unknown-type! WKScriptMessage bound
|
||||
!unknown-type! WKSecurityOrigin bound
|
||||
!unknown-type! WKSnapshotConfiguration bound
|
||||
!unknown-type! WKUserContentController bound
|
||||
!unknown-type! WKUserScript bound
|
||||
!unknown-type! WKWebpagePreferences bound
|
||||
!unknown-type! WKWebsiteDataRecord bound
|
||||
!unknown-type! WKWebsiteDataStore bound
|
||||
!unknown-type! WKWebView bound
|
||||
!unknown-type! WKWebViewConfiguration bound
|
||||
!unknown-type! WKWindowFeatures bound
|
||||
|
|
|
@ -447,3 +447,5 @@
|
|||
!unknown-field! AVAudioSessionInterruptionTypeKey bound
|
||||
!unknown-field! AVAudioSessionMediaServicesWereLostNotification bound
|
||||
!unknown-field! AVAudioSessionMediaServicesWereResetNotification bound
|
||||
!missing-field! AVCaptureDeviceTypeContinuityCamera not bound
|
||||
!missing-selector! AVCaptureDevice::displayVideoZoomFactorMultiplier not bound
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
!missing-field! AXPrefersHorizontalTextLayoutDidChangeNotification not bound
|
||||
!missing-pinvoke! AXPrefersHorizontalTextLayout is not bound
|
|
@ -185,3 +185,6 @@
|
|||
!missing-selector! NSWindow::displayLinkWithTarget:selector: not bound
|
||||
!missing-type! NSMenuItemBadge not bound
|
||||
!missing-type! NSTextInsertionIndicator not bound
|
||||
!missing-field! NSTextCheckingGenerateInlinePredictionsKey not bound
|
||||
!missing-selector! NSSpellChecker::showInlinePredictionForCandidates:client: not bound
|
||||
!unknown-field! NSReadAccessURLDocumentOption bound
|
||||
|
|
|
@ -36,7 +36,6 @@
|
|||
!missing-protocol-member! ASAuthorizationProviderExtensionRegistrationHandler::supportedGrantTypes not found
|
||||
!missing-selector! +ASPasskeyAssertionCredential::credentialWithUserHandle:relyingParty:signature:clientDataHash:authenticatorData:credentialID: not bound
|
||||
!missing-selector! +ASPasskeyCredentialIdentity::identityWithRelyingPartyIdentifier:userName:credentialID:userHandle:recordIdentifier: not bound
|
||||
!missing-selector! +ASPasskeyCredentialRequest::requestWithCredentialIdentity:clientDataHash:userVerificationPreference: not bound
|
||||
!missing-selector! +ASPasskeyRegistrationCredential::credentialWithRelyingParty:clientDataHash:credentialID:attestationObject: not bound
|
||||
!missing-selector! +ASPasswordCredentialRequest::requestWithCredentialIdentity: not bound
|
||||
!missing-selector! +ASSettingsHelper::openCredentialProviderAppSettingsWithCompletionHandler: not bound
|
||||
|
@ -113,7 +112,6 @@
|
|||
!missing-selector! ASPasskeyCredentialIdentity::userHandle not bound
|
||||
!missing-selector! ASPasskeyCredentialIdentity::userName not bound
|
||||
!missing-selector! ASPasskeyCredentialRequest::clientDataHash not bound
|
||||
!missing-selector! ASPasskeyCredentialRequest::initWithCredentialIdentity:clientDataHash:userVerificationPreference: not bound
|
||||
!missing-selector! ASPasskeyCredentialRequest::setUserVerificationPreference: not bound
|
||||
!missing-selector! ASPasskeyCredentialRequest::userVerificationPreference not bound
|
||||
!missing-selector! ASPasskeyRegistrationCredential::attestationObject not bound
|
||||
|
@ -139,3 +137,39 @@
|
|||
!missing-type! ASPasswordCredentialRequest not bound
|
||||
!missing-type! ASPublicKeyCredentialClientData not bound
|
||||
!missing-type! ASSettingsHelper not bound
|
||||
!missing-enum! ASAuthorizationPublicKeyCredentialLargeBlobAssertionOperation not bound
|
||||
!missing-enum! ASAuthorizationPublicKeyCredentialLargeBlobSupportRequirement not bound
|
||||
!missing-enum-value! ASAuthorizationProviderExtensionRequestOptions native value ASAuthorizationProviderExtensionRequestOptionsRegistrationDeviceKeyMigration = 8 not bound
|
||||
!missing-selector! +ASPasskeyCredentialRequest::requestWithCredentialIdentity:clientDataHash:userVerificationPreference:supportedAlgorithms: not bound
|
||||
!missing-selector! ASAuthorizationPlatformPublicKeyCredentialAssertion::largeBlob not bound
|
||||
!missing-selector! ASAuthorizationPlatformPublicKeyCredentialAssertionRequest::largeBlob not bound
|
||||
!missing-selector! ASAuthorizationPlatformPublicKeyCredentialAssertionRequest::setLargeBlob: not bound
|
||||
!missing-selector! ASAuthorizationPlatformPublicKeyCredentialRegistration::largeBlob not bound
|
||||
!missing-selector! ASAuthorizationPlatformPublicKeyCredentialRegistrationRequest::largeBlob not bound
|
||||
!missing-selector! ASAuthorizationPlatformPublicKeyCredentialRegistrationRequest::setLargeBlob: not bound
|
||||
!missing-selector! ASAuthorizationProviderExtensionLoginConfiguration::deviceContext not bound
|
||||
!missing-selector! ASAuthorizationProviderExtensionLoginConfiguration::setDeviceContext: not bound
|
||||
!missing-selector! ASAuthorizationProviderExtensionLoginManager::resetDeviceKeys not bound
|
||||
!missing-selector! ASAuthorizationProviderExtensionLoginManager::resetUserSecureEnclaveKey not bound
|
||||
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobAssertionInput::dataToWrite not bound
|
||||
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobAssertionInput::initWithOperation: not bound
|
||||
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobAssertionInput::operation not bound
|
||||
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobAssertionInput::setDataToWrite: not bound
|
||||
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobAssertionOutput::didWrite not bound
|
||||
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobAssertionOutput::readData not bound
|
||||
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobRegistrationInput::initWithSupportRequirement: not bound
|
||||
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobRegistrationInput::setSupportRequirement: not bound
|
||||
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobRegistrationInput::supportRequirement not bound
|
||||
!missing-selector! ASAuthorizationPublicKeyCredentialLargeBlobRegistrationOutput::isSupported not bound
|
||||
!missing-selector! ASCredentialProviderViewController::prepareCredentialListForServiceIdentifiers:requestParameters: not bound
|
||||
!missing-selector! ASPasskeyCredentialRequest::initWithCredentialIdentity:clientDataHash:userVerificationPreference:supportedAlgorithms: not bound
|
||||
!missing-selector! ASPasskeyCredentialRequest::supportedAlgorithms not bound
|
||||
!missing-selector! ASPasskeyCredentialRequestParameters::allowedCredentials not bound
|
||||
!missing-selector! ASPasskeyCredentialRequestParameters::clientDataHash not bound
|
||||
!missing-selector! ASPasskeyCredentialRequestParameters::relyingPartyIdentifier not bound
|
||||
!missing-selector! ASPasskeyCredentialRequestParameters::userVerificationPreference not bound
|
||||
!missing-type! ASAuthorizationPublicKeyCredentialLargeBlobAssertionInput not bound
|
||||
!missing-type! ASAuthorizationPublicKeyCredentialLargeBlobAssertionOutput not bound
|
||||
!missing-type! ASAuthorizationPublicKeyCredentialLargeBlobRegistrationInput not bound
|
||||
!missing-type! ASAuthorizationPublicKeyCredentialLargeBlobRegistrationOutput not bound
|
||||
!missing-type! ASPasskeyCredentialRequestParameters not bound
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
!missing-enum! BAErrorCode not bound
|
||||
!missing-field! BAErrorDomain not bound
|
|
@ -55,10 +55,8 @@
|
|||
!missing-selector! CKSyncEngineFailedRecordSave::record not bound
|
||||
!missing-selector! CKSyncEngineFailedZoneSave::error not bound
|
||||
!missing-selector! CKSyncEngineFailedZoneSave::recordZone not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::initWithZoneIDs: not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::operationGroup not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::setOperationGroup: not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::zoneIDs not bound
|
||||
!missing-selector! CKSyncEngineFetchedDatabaseChangesEvent::deletions not bound
|
||||
!missing-selector! CKSyncEngineFetchedDatabaseChangesEvent::modifications not bound
|
||||
!missing-selector! CKSyncEngineFetchedRecordDeletion::recordID not bound
|
||||
|
@ -83,12 +81,8 @@
|
|||
!missing-selector! CKSyncEngineRecordZoneChangeBatch::setAtomicByZone: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesContext::options not bound
|
||||
!missing-selector! CKSyncEngineSendChangesContext::reason not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::initWithRecordIDs: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::initWithZoneIDs: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::operationGroup not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::recordIDs not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::setOperationGroup: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::zoneIDs not bound
|
||||
!missing-selector! CKSyncEngineSentDatabaseChangesEvent::deletedZoneIDs not bound
|
||||
!missing-selector! CKSyncEngineSentDatabaseChangesEvent::failedZoneDeletes not bound
|
||||
!missing-selector! CKSyncEngineSentDatabaseChangesEvent::failedZoneSaves not bound
|
||||
|
@ -137,3 +131,29 @@
|
|||
!missing-type! CKSyncEngineWillFetchChangesEvent not bound
|
||||
!missing-type! CKSyncEngineWillFetchRecordZoneChangesEvent not bound
|
||||
!missing-type! CKSyncEngineWillSendChangesEvent not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesContext::options not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesContext::reason not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::initWithScope: not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::prioritizedZoneIDs not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::scope not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::setPrioritizedZoneIDs: not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesOptions::setScope: not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesScope::excludedZoneIDs not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesScope::initWithExcludedZoneIDs: not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesScope::initWithZoneIDs: not bound
|
||||
!missing-selector! CKSyncEngineFetchChangesScope::zoneIDs not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::initWithScope: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::scope not bound
|
||||
!missing-selector! CKSyncEngineSendChangesOptions::setScope: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesScope::containsPendingRecordZoneChange: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesScope::containsRecordID: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesScope::excludedZoneIDs not bound
|
||||
!missing-selector! CKSyncEngineSendChangesScope::initWithExcludedZoneIDs: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesScope::initWithRecordIDs: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesScope::initWithZoneIDs: not bound
|
||||
!missing-selector! CKSyncEngineSendChangesScope::recordIDs not bound
|
||||
!missing-selector! CKSyncEngineSendChangesScope::zoneIDs not bound
|
||||
!missing-selector! CKSyncEngineState::zoneIDsWithUnfetchedServerChanges not bound
|
||||
!missing-type! CKSyncEngineFetchChangesContext not bound
|
||||
!missing-type! CKSyncEngineFetchChangesScope not bound
|
||||
!missing-type! CKSyncEngineSendChangesScope not bound
|
||||
|
|
|
@ -32,3 +32,4 @@
|
|||
!missing-type! NSManagedObjectModelReference not bound
|
||||
!missing-type! NSMigrationStage not bound
|
||||
!missing-type! NSStagedMigrationManager not bound
|
||||
!missing-selector! +NSManagedObjectModel::checksumsForVersionedModelAtURL:error: not bound
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
!missing-field! kCFURLDirectoryEntryCountKey not bound
|
|
@ -1,2 +1,3 @@
|
|||
!missing-selector! CSSuggestion::score not bound
|
||||
!missing-selector! CSSuggestion::suggestionDataSources not bound
|
||||
!missing-selector! CSSearchableIndex::initWithName:protectionClass:bundleIdentifier:options: not bound
|
||||
|
|
|
@ -48,3 +48,4 @@
|
|||
!missing-selector! NSURLSessionUploadTask::cancelByProducingResumeData: not bound
|
||||
!missing-type! NSMorphologyPronoun not bound
|
||||
!missing-type! NSTermOfAddress not bound
|
||||
!missing-field! NSURLDirectoryEntryCountKey not bound
|
||||
|
|
|
@ -19,12 +19,10 @@
|
|||
!missing-field! HKQuantityTypeIdentifierPhysicalEffort not bound
|
||||
!missing-field! HKQuantityTypeIdentifierTimeInDaylight not bound
|
||||
!missing-protocol-member! HKWorkoutSessionDelegate::workoutSession:didDisconnectFromRemoteDeviceWithError: not found
|
||||
!missing-protocol-member! HKWorkoutSessionDelegate::workoutSession:didReceiveDataFromRemoteDevice: not found
|
||||
!missing-protocol-member! HKWorkoutSessionDelegate::workoutSession:didReceiveDataFromRemoteWorkoutSession: not found
|
||||
!missing-selector! +HKUnit::luxUnit not bound
|
||||
!missing-selector! +HKUnit::luxUnitWithMetricPrefix: not bound
|
||||
!missing-selector! HKHealthStore::setWorkoutSessionMirroringStartHandler: not bound
|
||||
!missing-selector! HKHealthStore::workoutSessionMirroringStartHandler not bound
|
||||
!missing-selector! HKLiveWorkoutBuilder::initWithHealthStore:configuration:device: not bound
|
||||
!missing-selector! HKWorkoutSession::deprecated_sendDataToRemoteWorkoutSession:completion: not bound
|
||||
!missing-selector! HKWorkoutSession::type not bound
|
||||
|
|
|
@ -29,3 +29,5 @@
|
|||
!missing-type! INMessageLinkMetadata not bound
|
||||
!missing-type! INUnsendMessagesIntent not bound
|
||||
!missing-type! INUnsendMessagesIntentResponse not bound
|
||||
!missing-enum-value! INSendMessageIntentResponseCode native value INSendMessageIntentResponseCodeFailureRequiringInAppAuthentication = 7 not bound
|
||||
!missing-enum-value! INSendMessageRecipientUnsupportedReason native value INSendMessageRecipientUnsupportedReasonRequiringInAppAuthentication = 7 not bound
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
!missing-enum-value! LABiometryType native value LABiometryTypeOpticID = 4 not bound
|
|
@ -0,0 +1,55 @@
|
|||
!deprecated-attribute-missing! MLCActivationDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCActivationLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCAdamOptimizer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCAdamWOptimizer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCArithmeticLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCBatchNormalizationLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCComparisonLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCConcatenationLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCConvolutionDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCConvolutionLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCDevice missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCDropoutLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCEmbeddingDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCEmbeddingLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCFullyConnectedLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCGatherLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCGramMatrixLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCGraph missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCGroupNormalizationLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCInferenceGraph missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCInstanceNormalizationLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCLayerNormalizationLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCLossDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCLossLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCLSTMDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCLSTMLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCMatMulDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCMatMulLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCMultiheadAttentionDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCMultiheadAttentionLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCOptimizer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCOptimizerDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCPaddingLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCPlatform missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCPoolingDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCPoolingLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCReductionLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCReshapeLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCRMSPropOptimizer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCScatterLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCSelectionLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCSGDOptimizer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCSliceLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCSoftmaxLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCSplitLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCTensor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCTensorData missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCTensorDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCTensorParameter missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCTrainingGraph missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCTransposeLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCUpsampleLayer missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCYOLOLossDescriptor missing a [Deprecated] attribute
|
||||
!deprecated-attribute-missing! MLCYOLOLossLayer missing a [Deprecated] attribute
|
|
@ -6,3 +6,7 @@
|
|||
!deprecated-attribute-missing! MKMapSnapshotOptions::showsBuildings missing a [Deprecated] attribute
|
||||
!missing-selector! MKMapSnapshotOptions::preferredConfiguration not bound
|
||||
!missing-selector! MKMapSnapshotOptions::setPreferredConfiguration: not bound
|
||||
!missing-selector! MKMapView::pitchButtonVisibility not bound
|
||||
!missing-selector! MKMapView::setPitchButtonVisibility: not bound
|
||||
!missing-selector! MKMapView::setShowsUserTrackingButton: not bound
|
||||
!missing-selector! MKMapView::showsUserTrackingButton not bound
|
||||
|
|
|
@ -1,95 +0,0 @@
|
|||
!missing-enum! MEDecodeFrameStatus not bound
|
||||
!missing-enum! MEError not bound
|
||||
!missing-enum! MEFileInfoFragmentsStatus not bound
|
||||
!missing-enum! MEFormatReaderParseAdditionalFragmentsStatus not bound
|
||||
!missing-field! MediaExtensionErrorDomain not bound
|
||||
!missing-field! MEVideoDecoderReadyForMoreMediaDataDidChangeNotification not bound
|
||||
!missing-protocol! MEFormatReader not bound
|
||||
!missing-protocol! MEFormatReaderExtension not bound
|
||||
!missing-protocol! MESampleCursor not bound
|
||||
!missing-protocol! METrackReader not bound
|
||||
!missing-protocol! MEVideoDecoder not bound
|
||||
!missing-protocol! MEVideoDecoderExtension not bound
|
||||
!missing-selector! MEByteSource::availableLengthAtOffset: not bound
|
||||
!missing-selector! MEByteSource::byteSourceForRelatedFileName:error: not bound
|
||||
!missing-selector! MEByteSource::contentType not bound
|
||||
!missing-selector! MEByteSource::fileLength not bound
|
||||
!missing-selector! MEByteSource::fileName not bound
|
||||
!missing-selector! MEByteSource::readDataOfLength:fromOffset:completionHandler: not bound
|
||||
!missing-selector! MEByteSource::readDataOfLength:fromOffset:toDestination:bytesRead:error: not bound
|
||||
!missing-selector! MEByteSource::readDataOfLength:fromOffset:toDestination:completionHandler: not bound
|
||||
!missing-selector! MEByteSource::relatedFileNamesInSameDirectory not bound
|
||||
!missing-selector! MEDecodeFrameOptions::doNotOutputFrame not bound
|
||||
!missing-selector! MEDecodeFrameOptions::realTimePlayback not bound
|
||||
!missing-selector! MEDecodeFrameOptions::setDoNotOutputFrame: not bound
|
||||
!missing-selector! MEDecodeFrameOptions::setRealTimePlayback: not bound
|
||||
!missing-selector! MEEstimatedSampleLocation::byteSource not bound
|
||||
!missing-selector! MEEstimatedSampleLocation::estimatedSampleLocation not bound
|
||||
!missing-selector! MEEstimatedSampleLocation::initWithByteSource:estimatedSampleLocation:refinementDataLocation: not bound
|
||||
!missing-selector! MEEstimatedSampleLocation::refinementDataLocation not bound
|
||||
!missing-selector! MEFileInfo::duration not bound
|
||||
!missing-selector! MEFileInfo::fragmentsStatus not bound
|
||||
!missing-selector! MEFileInfo::setDuration: not bound
|
||||
!missing-selector! MEFileInfo::setFragmentsStatus: not bound
|
||||
!missing-selector! MEFormatReaderInstantiationOptions::allowIncrementalFragmentParsing not bound
|
||||
!missing-selector! MEHEVCDependencyInfo::constraintIndicatorFlags not bound
|
||||
!missing-selector! MEHEVCDependencyInfo::hasStepwiseTemporalSubLayerAccess not bound
|
||||
!missing-selector! MEHEVCDependencyInfo::hasTemporalSubLayerAccess not bound
|
||||
!missing-selector! MEHEVCDependencyInfo::levelIndex not bound
|
||||
!missing-selector! MEHEVCDependencyInfo::profileCompatibilityFlags not bound
|
||||
!missing-selector! MEHEVCDependencyInfo::profileIndex not bound
|
||||
!missing-selector! MEHEVCDependencyInfo::profileSpace not bound
|
||||
!missing-selector! MEHEVCDependencyInfo::setConstraintIndicatorFlags: not bound
|
||||
!missing-selector! MEHEVCDependencyInfo::setLevelIndex: not bound
|
||||
!missing-selector! MEHEVCDependencyInfo::setProfileCompatibilityFlags: not bound
|
||||
!missing-selector! MEHEVCDependencyInfo::setProfileIndex: not bound
|
||||
!missing-selector! MEHEVCDependencyInfo::setProfileSpace: not bound
|
||||
!missing-selector! MEHEVCDependencyInfo::setStepwiseTemporalSubLayerAccess: not bound
|
||||
!missing-selector! MEHEVCDependencyInfo::setSyncSampleNALUnitType: not bound
|
||||
!missing-selector! MEHEVCDependencyInfo::setTemporalLevel: not bound
|
||||
!missing-selector! MEHEVCDependencyInfo::setTemporalSubLayerAccess: not bound
|
||||
!missing-selector! MEHEVCDependencyInfo::setTierFlag: not bound
|
||||
!missing-selector! MEHEVCDependencyInfo::syncSampleNALUnitType not bound
|
||||
!missing-selector! MEHEVCDependencyInfo::temporalLevel not bound
|
||||
!missing-selector! MEHEVCDependencyInfo::tierFlag not bound
|
||||
!missing-selector! MESampleCursorChunk::byteSource not bound
|
||||
!missing-selector! MESampleCursorChunk::chunkInfo not bound
|
||||
!missing-selector! MESampleCursorChunk::chunkStorageRange not bound
|
||||
!missing-selector! MESampleCursorChunk::initWithByteSource:chunkStorageRange:chunkInfo:sampleIndexWithinChunk: not bound
|
||||
!missing-selector! MESampleCursorChunk::sampleIndexWithinChunk not bound
|
||||
!missing-selector! MESampleLocation::byteSource not bound
|
||||
!missing-selector! MESampleLocation::initWithByteSource:sampleLocation: not bound
|
||||
!missing-selector! MESampleLocation::sampleLocation not bound
|
||||
!missing-selector! METrackInfo::extendedLanguageTag not bound
|
||||
!missing-selector! METrackInfo::formatDescriptions not bound
|
||||
!missing-selector! METrackInfo::initWithMediaType:trackID:formatDescriptions: not bound
|
||||
!missing-selector! METrackInfo::isEnabled not bound
|
||||
!missing-selector! METrackInfo::mediaType not bound
|
||||
!missing-selector! METrackInfo::naturalSize not bound
|
||||
!missing-selector! METrackInfo::naturalTimescale not bound
|
||||
!missing-selector! METrackInfo::nominalFrameRate not bound
|
||||
!missing-selector! METrackInfo::preferredTransform not bound
|
||||
!missing-selector! METrackInfo::requiresFrameReordering not bound
|
||||
!missing-selector! METrackInfo::setEnabled: not bound
|
||||
!missing-selector! METrackInfo::setExtendedLanguageTag: not bound
|
||||
!missing-selector! METrackInfo::setNaturalSize: not bound
|
||||
!missing-selector! METrackInfo::setNaturalTimescale: not bound
|
||||
!missing-selector! METrackInfo::setNominalFrameRate: not bound
|
||||
!missing-selector! METrackInfo::setPreferredTransform: not bound
|
||||
!missing-selector! METrackInfo::setRequiresFrameReordering: not bound
|
||||
!missing-selector! METrackInfo::setTrackEdits: not bound
|
||||
!missing-selector! METrackInfo::trackEdits not bound
|
||||
!missing-selector! METrackInfo::trackID not bound
|
||||
!missing-selector! MEVideoDecoderPixelBufferManager::createPixelBufferAndReturnError: not bound
|
||||
!missing-selector! MEVideoDecoderPixelBufferManager::pixelBufferAttributes not bound
|
||||
!missing-selector! MEVideoDecoderPixelBufferManager::setPixelBufferAttributes: not bound
|
||||
!missing-type! MEByteSource not bound
|
||||
!missing-type! MEDecodeFrameOptions not bound
|
||||
!missing-type! MEEstimatedSampleLocation not bound
|
||||
!missing-type! MEFileInfo not bound
|
||||
!missing-type! MEFormatReaderInstantiationOptions not bound
|
||||
!missing-type! MEHEVCDependencyInfo not bound
|
||||
!missing-type! MESampleCursorChunk not bound
|
||||
!missing-type! MESampleLocation not bound
|
||||
!missing-type! METrackInfo not bound
|
||||
!missing-type! MEVideoDecoderPixelBufferManager not bound
|
|
@ -33,3 +33,12 @@
|
|||
!missing-type! NEFailureHandlerProvider not bound
|
||||
!missing-type! NERelay not bound
|
||||
!missing-type! NERelayManager not bound
|
||||
!missing-selector! +NERelayManager::loadAllManagersFromPreferencesWithCompletionHandler: not bound
|
||||
!missing-selector! NERelay::dnsOverHTTPSURL not bound
|
||||
!missing-selector! NERelay::setDnsOverHTTPSURL: not bound
|
||||
!missing-selector! NERelay::setSyntheticDNSAnswerIPv4Prefix: not bound
|
||||
!missing-selector! NERelay::setSyntheticDNSAnswerIPv6Prefix: not bound
|
||||
!missing-selector! NERelay::syntheticDNSAnswerIPv4Prefix not bound
|
||||
!missing-selector! NERelay::syntheticDNSAnswerIPv6Prefix not bound
|
||||
!missing-selector! NERelayManager::onDemandRules not bound
|
||||
!missing-selector! NERelayManager::setOnDemandRules: not bound
|
||||
|
|
|
@ -27,5 +27,4 @@
|
|||
!missing-enum! PKAddressField not bound
|
||||
|
||||
## all members are decorated but not the type themselves
|
||||
!missing-type! PKDisbursementRequest not bound
|
||||
!incorrect-protocol-member! PKPaymentAuthorizationViewControllerDelegate::paymentAuthorizationViewControllerWillAuthorizePayment: is OPTIONAL and should NOT be abstract
|
||||
|
|
|
@ -1,29 +1,5 @@
|
|||
!missing-enum! PKApplePayLaterAvailability not bound
|
||||
!missing-enum-value! PKMerchantCapability native value PKMerchantCapabilityInstantFundsOut = 128 not bound
|
||||
!missing-field! PKPaymentNetworkTmoney not bound
|
||||
!missing-selector! +PKDisbursementRequest::disbursementCardUnsupportedError not bound
|
||||
!missing-selector! +PKDisbursementRequest::disbursementContactInvalidErrorWithContactField:localizedDescription: not bound
|
||||
!missing-selector! PKDisbursementRequest::applicationData not bound
|
||||
!missing-selector! PKDisbursementRequest::currencyCode not bound
|
||||
!missing-selector! PKDisbursementRequest::initWithMerchantIdentifier:currencyCode:regionCode:supportedNetworks:merchantCapabilities:summaryItems: not bound
|
||||
!missing-selector! PKDisbursementRequest::merchantCapabilities not bound
|
||||
!missing-selector! PKDisbursementRequest::merchantIdentifier not bound
|
||||
!missing-selector! PKDisbursementRequest::recipientContact not bound
|
||||
!missing-selector! PKDisbursementRequest::regionCode not bound
|
||||
!missing-selector! PKDisbursementRequest::requiredRecipientContactFields not bound
|
||||
!missing-selector! PKDisbursementRequest::setApplicationData: not bound
|
||||
!missing-selector! PKDisbursementRequest::setCurrencyCode: not bound
|
||||
!missing-selector! PKDisbursementRequest::setMerchantCapabilities: not bound
|
||||
!missing-selector! PKDisbursementRequest::setMerchantIdentifier: not bound
|
||||
!missing-selector! PKDisbursementRequest::setRecipientContact: not bound
|
||||
!missing-selector! PKDisbursementRequest::setRegionCode: not bound
|
||||
!missing-selector! PKDisbursementRequest::setRequiredRecipientContactFields: not bound
|
||||
!missing-selector! PKDisbursementRequest::setSummaryItems: not bound
|
||||
!missing-selector! PKDisbursementRequest::setSupportedNetworks: not bound
|
||||
!missing-selector! PKDisbursementRequest::setSupportedRegions: not bound
|
||||
!missing-selector! PKDisbursementRequest::summaryItems not bound
|
||||
!missing-selector! PKDisbursementRequest::supportedNetworks not bound
|
||||
!missing-selector! PKDisbursementRequest::supportedRegions not bound
|
||||
!missing-selector! PKPaymentRequest::applePayLaterAvailability not bound
|
||||
!missing-selector! PKPaymentRequest::setApplePayLaterAvailability: not bound
|
||||
!missing-type! PKDisbursementSummaryItem not bound
|
||||
|
|
Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше
Загрузка…
Ссылка в новой задаче