Searched refs:NSArray (Results 76 - 100 of 345) sorted by relevance

1234567891011>>

/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_subclassing.py19 self.assert_( not isinstance( subclassInstance, NSArray ), "Not a subclass of NSArray, but instanceof() thinks so." )
/macosx-10.9.5/security_systemkeychain-55191.2/Gatekeeper/
H A DGKAppDelegate.h16 @property (retain) NSArray *sortDescriptors;
/macosx-10.9.5/Heimdal-323.92.1/plugins/SCKerberosConfig/
H A DSCKerberosConfig.m65 NSArray *vals = NULL;
70 vals = (NSArray *)SCDynamicStoreCopyValue(ctx->store, HEIMDAL_SC_DEFAULT_REALM);
99 NSArray *vals = NULL;
106 vals = (NSArray *)SCDynamicStoreCopyValue(ctx->store, HEIMDAL_SC_DOMAIN_REALM_MAPPING);
/macosx-10.9.5/WebCore-7537.78.1/platform/qt/
H A DWebCoreSystemInterface.mm44 NSArray *(*wkQTGetSitesInMediaDownloadCache)();
/macosx-10.9.5/WebKit-7537.78.2/mac/Misc/
H A DWebNSDictionaryExtras.h35 - (NSArray *)_webkit_arrayForKey:(id)key; // Returns nil if the value is not an NSArray.
/macosx-10.9.5/WebKit-7537.78.2/mac/Plugins/Hosted/
H A DNetscapePluginHostManager.h47 PassRefPtr<NetscapePluginInstanceProxy> instantiatePlugin(const String& pluginPath, cpu_type_t pluginArchitecture, const String& bundleIdentifier, WebHostedNetscapePluginView *, NSString *mimeType, NSArray *attributeKeys, NSArray *attributeValues, NSString *userAgent, NSURL *sourceURL, bool fullFrame, bool isPrivateBrowsingEnabled, bool isAcceleratedCompositingEnabled, bool hostLayersInWindowServer);
/macosx-10.9.5/WebKit2-7537.78.2/Shared/mac/
H A DArgumentCodersMac.h54 // NSArray
55 void encode(ArgumentEncoder&, NSArray *);
56 bool decode(ArgumentDecoder&, RetainPtr<NSArray>&);
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/PyObjCTest/
H A Dtest_array_interface.py9 NSArray = objc.lookUpClass('NSArray') variable
13 type2test = NSArray
17 self.assertEqual(NSArray(), ())
19 t0_3_bis = NSArray(t0_3)
22 self.assertEqual(NSArray("hello"), NSArray(["h", "e", "l", "l", "o"]))
26 self.assertTrue(not NSArray())
27 self.assertTrue(NSArray([1, 2]))
33 # Disable test_count because NSArray
[all...]
/macosx-10.9.5/WebKit-7537.78.2/mac/History/
H A DWebBackForwardList.mm202 static NSArray* vectorToNSArray(HistoryItemVector& list)
220 - (NSArray *)backListWithLimit:(int)limit
224 NSArray *result = vectorToNSArray(list);
227 static NSArray *lastBackListArray = nil;
235 - (NSArray *)forwardListWithLimit:(int)limit
239 NSArray *result = vectorToNSArray(list);
242 static NSArray *lastForwardListArray = nil;
H A DWebHistory.mm71 - (void)_sendNotification:(NSString *)name entries:(NSArray *)entries;
88 - (void)addItems:(NSArray *)newEntries;
90 - (BOOL)removeItems:(NSArray *)entries;
94 - (NSArray *)orderedLastVisitedDays;
95 - (NSArray *)orderedItemsLastVisitedOnDay:(NSCalendarDate *)calendarDate;
99 - (NSArray *)allItems;
366 NSArray *allEntries = [entriesByURL allValues];
394 - (BOOL)removeItems:(NSArray *)entries
423 - (void)addItems:(NSArray *)newEntries
437 - (NSArray *)orderedLastVisitedDay
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/Plugins/PDF/
H A DPDFLayerControllerDetails.h33 - (void)writeItemsToPasteboard:(NSArray *)items withTypes:(NSArray *)types;
90 - (NSArray *)findString:(NSString *)string caseSensitive:(BOOL)isCaseSensitive highlightMatches:(BOOL)shouldHighlightMatches;
123 - (NSArray *)accessibilityAttributeNames;
126 - (NSArray *)accessibilityParameterizedAttributeNames;
/macosx-10.9.5/mDNSResponder-522.92.1/Clients/
H A DDNSServiceReg.m91 NSArray *typeArray = [NSArray arrayWithObjects:@"_ftp._tcp.", @"_ssh._tcp.", @"_tftp._tcp.", @"_http._tcp.", @"_printer._tcp.", @"_afpovertcp._tcp.", nil];
92 NSArray *nameArray = [NSArray arrayWithObjects:@"My ftp Server", @"My Computer", @"Testing Boot Image", @"A Web Server", @"Steve's Printer", @"Company AppleShare Server", nil];
93 NSArray *portArray = [NSArray arrayWithObjects:@"21", @"22", @"69", @"80", @"515", @"548", nil];
94 NSArray *domainArray = [NSArray arrayWithObjects:@"", @"", @"", @"", @"", @"", nil];
95 NSArray *textArray = [NSArray arrayWithObject
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/mac/
H A DWKBrowsingContextGroup.mm104 static WKArrayRef createWKArray(NSArray *array)
122 -(void)addUserStyleSheet:(NSString *)source baseURL:(NSURL *)baseURL whitelistedURLPatterns:(NSArray *)whitelist blacklistedURLPatterns:(NSArray *)blacklist mainFrameOnly:(BOOL)mainFrameOnly
141 - (void)addUserScript:(NSString *)source baseURL:(NSURL *)baseURL whitelistedURLPatterns:(NSArray *)whitelist blacklistedURLPatterns:(NSArray *)blacklist injectionTime:(WKUserScriptInjectionTime)injectionTime mainFrameOnly:(BOOL)mainFrameOnly
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/tests/
H A Dtc_nsarray.rb32 a = NSArray.arrayWithArray([1,2,3])
61 assert_kind_of(NSArray, x) if x
72 assert_kind_of(NSArray, x) if x
97 [33, nil, [], [11,22,33], NSArray.arrayWithArray([1,2,3])].each do |val|
120 [33, nil, [], [11,22,33], NSArray.arrayWithArray([1,2,3])].each do |val|
143 assert_kind_of(NSArray, a)
160 assert_kind_of(NSArray, a)
171 assert_kind_of(NSArray, a)
196 assert_kind_of(NSArray, a)
216 assert_kind_of(NSArray,
[all...]
/macosx-10.9.5/Chess-310.5/Sources/
H A DMBCBoardViewAccessibility.mm83 - (NSArray *)accessibilityAttributeNames
85 return [NSArray arrayWithObjects:
100 - (NSArray *)accessibilityActionNames
102 return [NSArray arrayWithObject:NSAccessibilityPressAction];
138 return [NSArray array];
203 - (NSArray *)accessibilityChildrenAttribute
H A DMBCController.h63 NSArray * fExistingMatches;
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-core/Lib/PyObjCTools/test/
H A Dtest_collections.py13 if isinstance(a2, NSArray):
20 if isinstance(a1, NSArray):
55 x = NSArray.arrayWithArray_([1,2,3,4])
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/Lib/PyObjCTools/test/
H A Dtest_collections.py13 if isinstance(a2, NSArray):
20 if isinstance(a1, NSArray):
55 x = NSArray.arrayWithArray_([1,2,3,4])
/macosx-10.9.5/WebCore-7537.78.1/accessibility/mac/
H A DWebAccessibilityObjectWrapperMac.mm961 - (NSArray*)accessibilityActionNames
969 static NSArray *defaultElementActions = [[NSArray alloc] initWithObjects:NSAccessibilityShowMenuAction, nil];
971 static NSArray *defaultElementActions = [[NSArray alloc] initWithObjects:NSAccessibilityShowMenuAction, NSAccessibilityScrollToVisibleAction, nil];
977 static NSArray *actionElementActions = [[NSArray alloc] initWithObjects:NSAccessibilityPressAction, NSAccessibilityShowMenuAction, nil];
979 static NSArray *actionElementActions = [[NSArray alloc] initWithObjects:NSAccessibilityPressAction, NSAccessibilityShowMenuAction, NSAccessibilityScrollToVisibleAction, nil];
983 static NSArray *menuElementAction
[all...]
/macosx-10.9.5/IOSCSIParallelFamily-300.0.2/TestTools/SCSITargetProber/Cocoa/
H A DFakeSCSIInitiator.m93 [ device setFeatures: [ NSArray arrayWithObjects: @"Fast", @"Wide", nil ] ];
144 [ device setFeatures: [ NSArray arrayWithObjects: @"Fast", @"Wide", @"DT", @"IU", @"QAS", nil ] ];
/macosx-10.9.5/JavaScriptCore-7537.78.1/API/
H A DJSContext.h72 + (NSArray *)currentArguments;
H A DJSValue.h67 // NSArray | Array object
139 // integer, and an NSArray of this size is allocated. Properties corresponding
142 - (NSArray *)toArray;
187 - (JSValue *)callWithArguments:(NSArray *)arguments;
189 - (JSValue *)constructWithArguments:(NSArray *)arguments;
193 - (JSValue *)invokeMethod:(NSString *)method withArguments:(NSArray *)arguments;
/macosx-10.9.5/WebCore-7537.78.1/bindings/objc/
H A DDOMExtensions.h46 @class NSArray;
52 - (NSArray *)lineBoxRects WEBKIT_OBJC_METHOD_ANNOTATION(AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER);
/macosx-10.9.5/WebKit-7537.78.2/mac/Storage/
H A DWebStorageManager.mm53 - (NSArray *)origins
116 NSArray *paths = NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES);
/macosx-10.9.5/WebKit-7537.78.2/mac/WebView/
H A DWebDataSource.h156 - (NSArray *)subresources;

Completed in 325 milliseconds

1234567891011>>