-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTAGS
executable file
·6658 lines (6657 loc) · 216 KB
/
TAGS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
words.plist,220927
(1,0
NSAffineTransform2,2
NSArchiver3,21
NSArray4,33
NSAssertionHandler5,42
NSAttributedString6,62
NSAutoreleasePool7,82
NSBundle8,101
NSCachedURLResponse9,111
NSCalendarDate10,132
NSCharacterSet11,148
NSClassDescription12,164
NSCoder13,184
NSCondition14,193
NSConditionLock15,206
NSConnection16,223
NSCountedSet17,237
NSData18,251
NSDate19,259
NSDateFormatter20,267
NSDecimalNumber21,284
NSDecimalNumberHandler22,301
NSDeserializer23,325
NSDictionary24,341
NSDirectoryEnumerator25,355
NSDistantObject26,378
NSDistributedLock27,395
NSDistributedNotificationCenter28,414
NSEnumerator29,447
NSError30,461
NSException31,470
NSFileHandle32,483
NSFileManager33,497
NSFormatter34,512
NSHTTPCookie35,525
NSHTTPCookieStorage36,539
NSHTTPURLResponse37,560
NSHashTable38,579
NSHost39,592
NSIndexPath40,600
NSIndexSet41,613
NSInputStream42,625
NSInvocation43,640
NSKeyedArchiver44,654
NSKeyedUnarchiver45,671
NSLock46,690
NSMapTable47,698
NSMessagePort48,710
NSMessagePortNameServer49,725
NSMethodSignature50,750
NSMutableArray51,769
NSMutableAttributedString52,785
NSMutableCharacterSet53,812
NSMutableData54,835
NSMutableDictionary55,850
NSMutableIndexSet56,871
NSMutableSet57,890
NSMutableString58,904
NSMutableURLRequest59,921
NSNetService60,942
NSNetServiceBrowser61,956
NSNotification62,977
NSNotificationCenter63,993
NSNotificationQueue64,1015
NSNull65,1036
NSNumber66,1044
NSNumberFormatter67,1054
NSObject68,1073
NSOutputStream69,1083
NSPipe70,1099
NSPointerArray71,1107
NSPointerFunctions72,1123
NSPort73,1143
NSPortCoder74,1151
NSPortMessage75,1164
NSPortNameServer76,1179
NSProcessInfo77,1197
NSPropertyListSerialization78,1212
NSProtocolChecker79,1241
NSProxy80,1260
NSRecursiveLock81,1269
NSRunLoop82,1286
NSScanner83,1297
NSSerializer84,1308
NSSet85,1322
NSSocketPort86,1329
NSSocketPortNameServer87,1343
NSStream88,1367
NSString89,1377
NSTask90,1387
NSThread91,1395
NSTimeZone92,1405
NSTimeZoneDetail93,1417
NSTimer94,1435
NSURL95,1444
NSURLAuthenticationChallenge96,1451
NSURLCache97,1481
NSURLConnection98,1493
NSURLCredential99,1510
NSURLCredentialStorage100,1527
NSURLDownload101,1551
NSURLHandle102,1566
NSURLProtectionSpace103,1579
NSURLProtocol104,1601
NSURLRequest105,1616
NSURLResponse106,1630
NSUnarchiver107,1645
NSUndoManager108,1659
NSUserDefaults109,1674
NSValue110,1690
NSValueTransformer111,1699
NSXMLDTD112,1719
NSXMLDTDNode113,1729
NSXMLDocument114,1743
NSXMLElement115,1758
NSXMLNode116,1772
NSXMLParser117,1783
NXConstantString118,1796
GSConfigDomain143,2410
GSFileHandleConnectCompletionNotification144,2426
GSFileHandleNotificationError145,2469
GSFileHandleWriteCompletionNotification146,2500
GSHTTPPropertyCertificateFileKey147,2541
GSHTTPPropertyKeyFileKey148,2575
GSHTTPPropertyLocalHostKey149,2601
GSHTTPPropertyMethodKey150,2629
GSHTTPPropertyPasswordKey151,2654
GSHTTPPropertyProxyHostKey152,2681
GSHTTPPropertyProxyPortKey153,2709
GSLocale154,2737
GSNetworkNotificationCenterType155,2747
GSPublicNotificationCenterType156,2780
GSTLSCertificateFile157,2812
GSTLSCertificateKeyFile158,2834
GSTLSCertificateKeyPassword159,2859
NSAMPMDesignation160,2888
NSArgumentDomain161,2907
NSAssertionHandlerKey162,2925
NSBundleDidLoadNotification163,2948
NSCharacterConversionException164,2977
NSClassDescriptionNeededForClassNotification165,3009
NSCocoaErrorDomain166,3055
NSConnectionDidDieNotification167,3075
NSConnectionDidInitializeNotification168,3107
NSConnectionLocalCount169,3146
NSConnectionProxyCount170,3170
NSConnectionRepliesReceived171,3194
NSConnectionRepliesSent172,3223
NSConnectionReplyMode173,3248
NSConnectionRequestsReceived174,3271
NSConnectionRequestsSent175,3301
NSCurrencyString176,3327
NSCurrencySymbol177,3345
NSDateFormatString178,3363
NSDateTimeOrdering179,3383
NSDecimalDigits180,3403
NSDecimalSeparator181,3420
NSDefaultRunLoopMode182,3440
NSDestinationInvalidException183,3462
NSEarlierTimeDesignations184,3493
NSErrorFailingURLStringKey185,3520
NSFailedAuthenticationException186,3548
NSFileAppendOnly187,3581
NSFileCreationDate188,3599
NSFileDeviceIdentifier189,3619
NSFileExtensionHidden190,3643
NSFileGroupOwnerAccountID191,3666
NSFileGroupOwnerAccountName192,3693
NSFileHFSCreatorCode193,3722
NSFileHFSTypeCode194,3744
NSFileHandleConnectionAcceptedNotification195,3763
NSFileHandleDataAvailableNotification196,3807
NSFileHandleNotificationDataItem197,3846
NSFileHandleNotificationFileHandleItem198,3880
NSFileHandleNotificationMonitorModes199,3920
NSFileHandleOperationException200,3958
NSFileHandleReadCompletionNotification201,3990
NSFileHandleReadToEndOfFileCompletionNotification202,4030
NSFileImmutable203,4081
NSFileModificationDate204,4098
NSFileOwnerAccountID205,4122
NSFileOwnerAccountName206,4144
NSFilePathErrorKey207,4168
NSFilePosixPermissions208,4188
NSFileReferenceCount209,4212
NSFileSize210,4234
NSFileSystemFileNumber211,4246
NSFileSystemFreeNodes212,4270
NSFileSystemFreeSize213,4293
NSFileSystemNodes214,4315
NSFileSystemNumber215,4334
NSFileSystemSize216,4354
NSFileType217,4372
NSFileTypeBlockSpecial218,4384
NSFileTypeCharacterSpecial219,4408
NSFileTypeDirectory220,4436
NSFileTypeFifo221,4457
NSFileTypeRegular222,4473
NSFileTypeSocket223,4492
NSFileTypeSymbolicLink224,4510
NSFileTypeUnknown225,4534
NSFormalName226,4553
NSGenericException227,4567
NSGlobalDomain228,4587
NSHTTPCookieComment229,4603
NSHTTPCookieCommentURL230,4624
NSHTTPCookieDiscard231,4648
NSHTTPCookieDomain232,4669
NSHTTPCookieExpires233,4689
NSHTTPCookieManagerAcceptPolicyChangedNotification234,4710
NSHTTPCookieManagerCookiesChangedNotification235,4762
NSHTTPCookieMaximumAge236,4809
NSHTTPCookieName237,4833
NSHTTPCookieOriginURL238,4851
NSHTTPCookiePath239,4874
NSHTTPCookiePort240,4892
NSHTTPCookieSecure241,4910
NSHTTPCookieValue242,4930
NSHTTPCookieVersion243,4949
NSHTTPPropertyErrorPageDataKey244,4970
NSHTTPPropertyRedirectionHeadersKey245,5002
NSHTTPPropertyServerHTTPVersionKey246,5039
NSHTTPPropertyStatusCodeKey247,5075
NSHTTPPropertyStatusReasonKey248,5104
NSHourNameDesignations249,5135
NSInconsistentArchiveException250,5159
NSIntHashCallBacks251,5191
NSIntMapKeyCallBacks252,5211
NSIntMapValueCallBacks253,5233
NSIntegerHashCallBacks254,5257
NSIntegerMapKeyCallBacks255,5281
NSIntegerMapValueCallBacks256,5307
NSInternalInconsistencyException257,5335
NSInternationalCurrencyString258,5369
NSInvalidArchiveOperationException259,5400
NSInvalidArgumentException260,5436
NSInvalidReceivePortException261,5464
NSInvalidSendPortException262,5495
NSInvalidUnarchiveOperationException263,5523
NSIsNilTransformerName264,5561
NSIsNotNilTransformerName265,5585
NSKeyValueChangeIndexesKey266,5612
NSKeyValueChangeKindKey267,5640
NSKeyValueChangeNewKey268,5665
NSKeyValueChangeNotificationIsPriorKey269,5689
NSKeyValueChangeOldKey270,5729
NSLanguageCode271,5753
NSLanguageName272,5769
NSLaterTimeDesignations273,5785
NSLoadedClasses274,5810
NSLocalNotificationCenterType275,5827
NSLocalizedDescriptionKey276,5858
NSLocalizedFailureReasonErrorKey277,5885
NSLocalizedRecoveryOptionsErrorKey278,5919
NSLocalizedRecoverySuggestionErrorKey279,5955
NSMACHErrorDomain280,5994
NSMallocException281,6013
NSMonthNameArray282,6032
NSNegateBooleanTransformerName283,6050
NSNetServicesErrorCode284,6082
NSNetServicesErrorDomain285,6106
NSNextDayDesignations286,6132
NSNextNextDayDesignations287,6155
NSNonOwnedPointerHashCallBacks288,6182
NSNonOwnedPointerMapKeyCallBacks289,6214
NSNonOwnedPointerMapValueCallBacks290,6248
NSNonOwnedPointerOrNullMapKeyCallBacks291,6284
NSNonRetainedObjectHashCallBacks292,6324
NSNonRetainedObjectMapKeyCallBacks293,6358
NSNonRetainedObjectMapValueCallBacks294,6394
NSOSStatusErrorDomain295,6432
NSObjectHashCallBacks296,6455
NSObjectInaccessibleException297,6478
NSObjectMapKeyCallBacks298,6509
NSObjectMapValueCallBacks299,6534
NSObjectNotAvailableException300,6561
NSOldStyleException301,6592
NSOwnedPointerHashCallBacks302,6613
NSOwnedPointerMapKeyCallBacks303,6642
NSOwnedPointerMapValueCallBacks304,6673
NSPOSIXErrorDomain305,6706
NSParseErrorException306,6726
NSPointerToStructHashCallBacks307,6749
NSPortDidBecomeInvalidNotification308,6781
NSPortReceiveException309,6817
NSPortSendException310,6841
NSPortTimeoutException311,6862
NSPriorDayDesignations312,6886
NSRangeException313,6910
NSRecoveryAttempterErrorKey314,6928
NSRegistrationDomain315,6957
NSShortDateFormatString316,6979
NSShortMonthNameArray317,7004
NSShortTimeDateFormatString318,7027
NSShortWeekDayNameArray319,7056
NSShowNonLocalizedStrings320,7081
NSStreamDataWrittenToMemoryStreamKey321,7108
NSStreamFileCurrentOffsetKey322,7146
NSStreamSOCKSErrorDomain323,7176
NSStreamSOCKSProxyConfigurationKey324,7202
NSStreamSOCKSProxyHostKey325,7238
NSStreamSOCKSProxyPasswordKey326,7265
NSStreamSOCKSProxyPortKey327,7296
NSStreamSOCKSProxyUserKey328,7323
NSStreamSOCKSProxyVersion4329,7350
NSStreamSOCKSProxyVersion5330,7378
NSStreamSOCKSProxyVersionKey331,7406
NSStreamSocketSSLErrorDomain332,7436
NSStreamSocketSecurityLevelKey333,7466
NSStreamSocketSecurityLevelNegotiatedSSL334,7498
NSStreamSocketSecurityLevelNone335,7540
NSStreamSocketSecurityLevelSSLv2336,7573
NSStreamSocketSecurityLevelSSLv3337,7607
NSStreamSocketSecurityLevelTLSv1338,7641
NSStringEncodingErrorKey339,7675
NSSystemTimeZoneDidChangeNotification340,7701
NSTaskDidTerminateNotification341,7740
NSThisDayDesignations342,7772
NSThousandsSeparator343,7795
NSThreadDidStartNotification344,7817
NSThreadWillExitNotification345,7847
NSTimeDateFormatString346,7877
NSTimeFormatString347,7901
NSTimeIntervalSince1970348,7921
NSURLAuthenticationMethodDefault349,7946
NSURLAuthenticationMethodHTMLForm350,7980
NSURLAuthenticationMethodHTTPBasic351,8015
NSURLAuthenticationMethodHTTPDigest352,8051
NSURLCredentialStorageChangedNotification353,8088
NSURLErrorDomain354,8131
NSURLErrorKey355,8149
NSURLFileScheme356,8164
NSURLProtectionSpaceFTPProxy357,8181
NSURLProtectionSpaceHTTPProxy358,8211
NSURLProtectionSpaceHTTPSProxy359,8242
NSURLProtectionSpaceSOCKSProxy360,8274
NSUnarchiveFromDataTransformerName361,8306
NSUndefinedKeyException362,8342
NSUnderlyingErrorKey363,8367
NSUndoManagerCheckpointNotification364,8389
NSUndoManagerDidOpenUndoGroupNotification365,8426
NSUndoManagerDidRedoChangeNotification366,8469
NSUndoManagerDidUndoChangeNotification367,8509
NSUndoManagerWillCloseUndoGroupNotification368,8549
NSUndoManagerWillRedoChangeNotification369,8594
NSUndoManagerWillUndoChangeNotification370,8635
NSUserDefaultsDidChangeNotification371,8676
NSWeekDayNameArray372,8713
NSWillBecomeMultiThreadedNotification373,8733
NSXMLParserErrorDomain374,8772
NSYearMonthWeekDesignations375,8796
NSZeroPoint376,8825
NSZeroRect377,8838
NSZeroSize378,8850
GNUstepConfig379,8862
GNUstepUserConfig380,8877
GSAssignZeroingWeakPointer381,8896
GSDebugAllocationActive382,8924
GSDebugAllocationActiveRecordingObjects383,8949
GSDebugAllocationAdd384,8990
GSDebugAllocationClassList385,9012
GSDebugAllocationCount386,9040
GSDebugAllocationList387,9064
GSDebugAllocationListAll388,9087
GSDebugAllocationListRecordedObjects389,9113
GSDebugAllocationPeak390,9151
GSDebugAllocationRemove391,9174
GSDebugAllocationTagRecordedObject392,9199
GSDebugAllocationTotal393,9235
GSDebugSet394,9259
GSDefaultsRootForUser395,9271
GSInitializeProcess396,9294
GSLogLock397,9315
GSMakeWeakPointer398,9326
GSOutOfMemory399,9345
GSRegisterCurrentThread400,9360
GSSetDebugAllocationFunctions401,9385
GSSetUserName402,9416
GSUPurge403,9431
GSUSet404,9441
GSUnique405,9449
GSUniquing406,9459
GSUnregisterCurrentThread407,9471
NSAllHashTableObjects408,9498
NSAllMapTableKeys409,9521
NSAllMapTableValues410,9540
NSAllocateCollectable411,9561
NSAllocateMemoryPages412,9584
NSAllocateObject413,9607
NSClassFromString414,9625
NSCompareHashTables415,9644
NSCompareMapTables416,9665
NSContainsRect417,9685
NSCopyHashTableWithZone418,9701
NSCopyMapTableWithZone419,9726
NSCopyMemoryPages420,9750
NSCopyObject421,9769
NSCountFrames422,9783
NSCountHashTable423,9798
NSCountMapTable424,9816
NSCreateHashTable425,9833
NSCreateHashTableWithZone426,9852
NSCreateMapTable427,9879
NSCreateMapTableWithZone428,9897
NSCreateZone429,9923
NSDeallocateMemoryPages430,9937
NSDeallocateObject431,9962
NSDecimalAdd432,9982
NSDecimalCompact433,9996
NSDecimalCompare434,10014
NSDecimalCopy435,10032
NSDecimalDivide436,10047
NSDecimalDouble437,10064
NSDecimalFromComponents438,10081
NSDecimalFromString439,10106
NSDecimalIsNotANumber440,10127
NSDecimalMax441,10150
NSDecimalMin442,10164
NSDecimalMultiply443,10178
NSDecimalMultiplyByPowerOf10444,10197
NSDecimalNormalize445,10227
NSDecimalPower446,10247
NSDecimalRound447,10263
NSDecimalString448,10279
NSDecimalSubtract449,10296
NSDecrementExtraRefCountWasZero450,10315
NSDefaultMallocZone451,10348
NSDivideRect452,10369
NSEndHashTableEnumeration453,10383
NSEndMapTableEnumeration454,10410
NSEnumerateHashTable455,10436
NSEnumerateMapTable456,10458
NSEqualPoints457,10479
NSEqualRanges458,10494
NSEqualRects459,10509
NSEqualSizes460,10523
NSExtraRefCount461,10537
NSFrameAddress462,10554
NSFreeHashTable463,10570
NSFreeMapTable464,10587
NSFullUserName465,10603
NSGetSizeAndAlignment466,10619
NSGetUncaughtExceptionHandler467,10642
NSHashGet468,10673
NSHashInsert469,10684
NSHashInsertIfAbsent470,10698
NSHashInsertKnownAbsent471,10720
NSHashRemove472,10745
NSHeight473,10759
NSHomeDirectory474,10769
NSHomeDirectoryForUser475,10786
NSIncrementExtraRefCount476,10810
NSInsetRect477,10836
NSIntegralRect478,10849
NSIntersectionRange479,10865
NSIntersectionRect480,10886
NSIntersectsRect481,10906
NSIsEmptyRect482,10924
NSLocationInRange483,10939
NSLog484,10958
NSLogPageSize485,10965
NSLog486,10980
NSLogv487,11002
NSMakePoint488,11010
NSMakeRange489,11023
NSMakeRect490,11036
NSMakeSize491,11048
NSMapGet492,11060
NSMapInsert493,11070
NSMapInsertIfAbsent494,11083
NSMapInsertKnownAbsent495,11104
NSMapMember496,11128
NSMapRemove497,11141
NSMaxRange498,11154
NSMaxX499,11166
NSMaxY500,11174
NSMidX501,11182
NSMidY502,11190
NSMinX503,11198
NSMinY504,11206
NSMouseInRect505,11214
NSNextHashEnumeratorItem506,11229
NSNextMapEnumeratorPair507,11255
NSOffsetRect508,11280
NSOpenStepRootDirectory509,11294
NSPageSize510,11319
NSPointFromString511,11331
NSPointInRect512,11350
NSProtocolFromString513,11365
NSRangeFromString514,11387
NSRealMemoryAvailable515,11406
NSReallocateCollectable516,11429
NSRectFromString517,11454
NSRecycleZone518,11472
NSResetHashTable519,11487
NSResetMapTable520,11505
NSReturnAddress521,11522
NSRoundDownToMultipleOfPageSize522,11539
NSRoundUpToMultipleOfPageSize523,11572
NSSearchPathForDirectoriesInDomains524,11603
NSSelectorFromString525,11640
NSSetUncaughtExceptionHandler526,11662
NSSetZoneName527,11693
NSShouldRetainWithZone528,11708
NSSizeFromString529,11732
NSStandardApplicationPaths530,11750
NSStandardLibraryPaths531,11778
NSStringFromClass532,11802
NSStringFromHashTable533,11821
NSStringFromMapTable534,11844
NSStringFromPoint535,11866
NSStringFromProtocol536,11885
NSStringFromRange537,11907
NSStringFromRect538,11926
NSStringFromSelector539,11944
NSStringFromSize540,11966
NSTemporaryDirectory541,11984
NSUncaughtExceptionHandler542,12006
NSUnionRange543,12034
NSUnionRect544,12048
NSUserName545,12061
NSWidth546,12073
NSZoneCalloc547,12082
NSZoneCheck548,12096
NSZoneFree549,12109
NSZoneFromPointer550,12121
NSZoneMalloc551,12140
NSZoneName552,12154
NSZoneRealloc553,12166
NSZoneStats554,12181
NSAssert558,12251
NSAssert1559,12261
NSAssert2560,12272
NSAssert3561,12283
NSAssert4562,12294
NSAssert5563,12305
NSCAssert564,12316
NSCAssert1565,12327
NSCAssert2566,12339
NSCAssert3567,12351
NSCAssert4568,12363
NSCAssert5569,12375
NSCParameterAssert570,12387
NSDecimalMaxSize571,12407
NSLocalizedString572,12425
NSLocalizedStringFromTable573,12444
NSLocalizedStringFromTableInBundle574,12472
NSParameterAssert575,12508
NS576,12527
NS577,12542
CGFloat578,12554
NSBinarySearchingOptions579,12563
NSCalculationError580,12589
NSComparisonResult581,12609
NSDateFormatterBehavior582,12629
NSDateFormatterStyle583,12654
NSEnumerationOptions584,12676
NSHTTPCookieAcceptPolicy585,12698
NSHashTableOptions586,12724
NSInteger587,12744
NSKeyValueChange588,12755
NSKeyValueObservingOptions589,12773
NSKeyValueSetMutationKind590,12801
NSMapTableOptions591,12828
NSMapTableValueCallBacks592,12847
NSNetServiceOptions593,12873
NSNetServicesError594,12894
NSNotificationCoalescing595,12914
NSNotificationSuspensionBehavior596,12940
NSNumberFormatterBehavior597,12974
NSNumberFormatterPadPosition598,13001
NSNumberFormatterRoundingMode599,13031
NSNumberFormatterStyle600,13062
NSPoint601,13086
NSPointArray602,13095
NSPointPointer603,13109
NSPointerFunctionsOptions604,13125
NSPostingStyle605,13152
NSPropertyListFormat606,13168
NSPropertyListMutabilityOptions607,13190
NSPropertyListReadOptions608,13223
NSPropertyListWriteOptions609,13250
NSRange610,13278
NSRangePointer611,13287
NSRect612,13303
NSRectArray613,13311
NSRectEdge614,13324
NSRectPointer615,13336
NSRoundingMode616,13351
NSSearchPathDirectory617,13367
NSSearchPathDomainMask618,13390
NSSize619,13414
NSSizeArray620,13422
NSSizePointer621,13435
NSSocketNativeHandle622,13450
NSSortOptions623,13472
NSStreamEvent624,13487
NSStreamStatus625,13502
NSStringCompareOptions626,13518
NSStringEncoding627,13542
NSStringEncodingConversionOptions628,13560
NSTimeInterval629,13595
NSTimeZoneNameStyle630,13611
NSUInteger631,13632
NSURLCacheStoragePolicy632,13644
NSURLCredentialPersistence633,13669
NSURLHandleStatus634,13697
NSURLRequestCachePolicy635,13716
NSXMLDTDNodeKind636,13741
NSXMLDocumentContentKind637,13759
NSXMLNodeKind638,13785
NSXMLParserError639,13800
NSZone640,13818
OSType641,13826
RunLoopEventType642,13834
autorelease646,13912
autorelease647,13936
unichar648,13961
NSActionCell649,13970
NSApplication650,13984
NSBezierPath651,13999
NSBitmapImageRep652,14013
NSBox653,14031
NSBrowser654,14038
NSBrowserCell655,14049
NSButton656,14064
NSButtonCell657,14074
NSCachedImageRep658,14088
NSCell659,14106
NSClipView660,14114
NSColor661,14126
NSColorList662,14135
NSColorPanel663,14148
NSColorPicker664,14162
NSColorWell665,14177
NSComboBox666,14190
NSComboBoxCell667,14202
NSControl668,14218
NSCursor669,14229
NSCustomImageRep670,14239
NSDataLink671,14257
NSDataLinkManager672,14269
NSDataLinkPanel673,14288
NSDocument674,14305
NSDocumentController675,14317
NSDrawer676,14339
NSDrawerDelegate677,14349
NSEPSImageRep678,14367
NSEvent679,14382
NSFileWrapper680,14391
NSFont681,14406
NSFontManager682,14414
NSFontPanel683,14429
NSForm684,14442
NSFormCell685,14450
NSGraphicsContext686,14462
NSHelpManager687,14481
NSHelpPanel688,14496
NSImage689,14509
NSImageCell690,14518
NSImageRep691,14531
NSImageView692,14543
NSInputManager693,14556
NSInputServer694,14572
NSLayoutManager695,14587
NSMatrix696,14604
NSMenu697,14614
NSMenuItem698,14622
NSMenuItemCell699,14634
NSMenuView700,14650
NSNib701,14662
NSOpenGLContext702,14669
NSOpenGLPixelFormat703,14686
NSOpenGLView704,14707
NSOutlineView705,14721
NSPageLayout706,14736
NSPanel707,14750
NSPasteboard708,14759
NSPopUpButton709,14773
NSPopUpButtonCell710,14788
NSPrintInfo711,14807
NSPrintOperation712,14820
NSPrintPanel713,14838
NSPrinter714,14852
NSProgressIndicator715,14863
NSResponder716,14884
NSRulerMarker717,14897
NSRulerView718,14912
NSSavePanel719,14925
NSScreen720,14938
NSScrollView721,14948
NSScroller722,14962
NSSecureTextField723,14974
NSSecureTextFieldCell724,14993
NSSelection725,15016
NSSlider726,15029
NSSliderCell727,15039
NSSound728,15053
NSSpellChecker729,15062
NSSplitView730,15078
NSStepper731,15091
NSStepperCell732,15102
NSTabView733,15117
NSTabViewItem734,15128
NSTableColumn735,15143
NSTableHeaderCell736,15158
NSTableHeaderView737,15177
NSTableView738,15196
NSTextContainer739,15209
NSTextField740,15226
NSTextFieldCell741,15239
NSTextView742,15256
NSToolbar743,15268
NSToolbarItem744,15279
NSView745,15294
NSWindow746,15302
NSWindowController747,15312
NSWorkspace748,15332
NSAppKitVersionNumber790,16397
NSFontIdentityMatrix791,16420
NSMenuDidAddItemNotification792,16442
NSMenuDidChangeItemNotification793,16472
NSMenuDidRemoveItemNotification794,16505
NSMenuDidSendActionNotification795,16538
NSMenuWillSendActionNotification796,16571
NSOutlineViewDropOnItemIndex797,16605
NSSpellingStateGrammarFlag798,16635
NSSpellingStateSpellingFlag799,16663
NSUnderlineByWordMask800,16692
GSContactApplication801,16715
GSCurrentContext802,16737
GSGetDragTypes803,16755
GSRunExceptionPanel804,16771
NSApplicationMain805,16792
NSBeginAlertSheet806,16811
NSBeginCriticalAlertSheet807,16830
NSBeginInformationalAlertSheet808,16857
NSConvertGlyphsToPackedGlyphs809,16889
NSCreateFileContentsPboardType810,16920
NSCreateFilenamePboardType811,16952
NSEventMaskFromType812,16980
NSFrameLinkRect813,17001
NSGetAlertPanel814,17018
NSGetCriticalAlertPanel815,17035
NSGetFileType816,17060
NSGetFileTypes817,17075
NSGetInformationalAlertPanel818,17091
NSInterfaceStyleForKey819,17121
NSLinkFrameThickness820,17145
NSPerformService821,17167
NSRegisterServicesProvider822,17185
NSReleaseAlertPanel823,17213
NSRunAlertPanel824,17234
NSRunCriticalAlertPanel825,17251
NSRunInformationalAlertPanel826,17276
NSRunLocalizedAlertPanel827,17306
NSSetShowsServicesMenuItem828,17332
NSShowSystemInfoPanel829,17360
NSShowsServicesMenuItem830,17383
NSUnRegisterServicesProvider831,17408
NSUpdateDynamicServices832,17438
PlaybackDeviceIdentifiers833,17463
DrawingIMP834,17490
GSAppKitSubtype835,17502
GSColorSpace836,17519
GSCursorTypes837,17533
GSFileWrapperType838,17548
GSInsertionPointMovementDirection839,17567
GSTextDrawingMode840,17602
GSWindowInputState841,17621
NSApplicationDelegateReply842,17641
NSApplicationPrintReply843,17669
NSApplicationTerminateReply844,17694
NSBackingStoreType845,17723
NSBezelStyle846,17743
NSBezierPathElement847,17757
NSBitmapFormat848,17778
NSBitmapImageFileType849,17794
NSBorderType850,17817
NSBoxType851,17831
NSBrowserColumnResizingType852,17842
NSButtonType853,17871
NSCellAttribute854,17885
NSCellImagePosition855,17902
NSCellStateValue856,17923
NSCellType857,17941
NSCompositingOperation858,17953
NSControlSize859,17977
NSControlTint860,17992
NSDataLinkDisposition861,18007
NSDataLinkNumber862,18030
NSDataLinkUpdateMode863,18048
NSDocumentChangeType864,18070
NSEventType865,18092
NSFindPanelAction866,18105
NSFocusRingType867,18124
NSFontRenderingMode868,18141
NSFontTag869,18162
NSFontTraitMask870,18173
NSGlyph871,18190
NSGlyphRelation872,18199
NSGradientType873,18216
NSImageAlignment874,18232
NSImageCacheMode875,18250
NSImageFrameStyle876,18268
NSImageInterpolation877,18287
NSImageRepLoadStatus878,18309
NSImageScaling879,18331
NSInterfaceStyle880,18347
NSLineCapStyle881,18365
NSLineJoinStyle882,18381
NSLineMovementDirection883,18398
NSLineSweepDirection884,18423
NSMatrixMode885,18445
NSModalSession886,18459
NSMultibyteGlyphPacking887,18475
NSOpenGLContextParameter888,18500
NSOpenGLGlobalOption889,18526
NSOpenGLPixelFormatAttribute890,18548
NSPointingDeviceType891,18578
NSPopUpArrowPosition892,18600
NSPrintPanelOptions893,18622
NSPrinterTableStatus894,18643
NSPrintingOrientation895,18665
NSPrintingPageOrder896,18688
NSPrintingPaginationMode897,18709
NSProgressIndicatorStyle898,18735
NSProgressIndicatorThickness899,18761
NSRequestUserAttentionType900,18791
NSRulerOrientation901,18819
NSSaveOperationType902,18839
NSScrollArrowPosition903,18860
NSScrollerArrow904,18883
NSScrollerPart905,18900
NSSelectionAffinity906,18916
NSSelectionDirection907,18937
NSSelectionGranularity908,18959
NSSliderType909,18983
NSSplitViewDividerStyle910,18997
NSStringDrawingOptions911,19022
NSTIFFCompression912,19046
NSTabState913,19065
NSTabViewType914,19077
NSTableViewColumnAutoresizingStyle915,19092
NSTableViewDropOperation916,19128
NSTableViewGridLineStyle917,19154
NSTextFieldBezelStyle918,19180
NSTickMarkPosition919,19203
NSTitlePosition920,19223
NSToolTipTag921,19240
NSToolbarDisplayMode922,19254
NSToolbarSizeMode923,19276
NSTrackingRectTag924,19295
NSUsableScrollerParts925,19314
NSWindingRule926,19337
NSWindowButton927,19352
NSWindowDepth928,19368
NSWindowOrderingMode929,19383
NSWorkspaceIconCreationOptions930,19405
NSWorkspaceLaunchOptions931,19437
GCArray932,19463
GCDictionary933,19472
GCMutableArray934,19486
GCMutableDictionary935,19502
GCObject936,19523
GSHTMLParser937,19533
GSHTMLSAXHandler938,19547
GSLazyLock939,19565
GSLazyRecursiveLock940,19577
GSMimeCodingContext941,19598
GSMimeDocument942,19619
GSMimeHeader943,19635
GSMimeParser944,19649
GSMimeSMTPClient945,19663
GSSAXHandler946,19681
GSTreeSAXHandler947,19695
GSXMLAttribute948,19713
GSXMLDocument949,19729
GSXMLNamespace950,19744
GSXMLNode951,19760
GSXMLParser952,19771
GSXMLRPC953,19784
GSXPathBoolean954,19794
GSXPathContext955,19810
GSXPathNodeSet956,19826
GSXPathNumber957,19842
GSXPathObject958,19857
GSXPathString959,19872
GSDisplayServer960,19887
GSHbox961,19904
GSTable962,19912
GSTheme963,19921
GSVbox964,19930
close965,19938
document966,19945
initWithWindow:967,19955
initWithWindowNibName:968,19972
initWithWindowNibName:owner:969,19996
initWithWindowNibPath:owner:970,20026
isWindowLoaded971,20056
loadWindow972,20072
owner973,20084
setDocument:974,20091
setDocumentEdited:975,20105
setShouldCascadeWindows:976,20125
setShouldCloseDocument:977,20151
setWindow:978,20176
setWindowFrameAutosaveName:979,20188
shouldCascadeWindows980,20217
shouldCloseDocument981,20239
showWindow:982,20260
synchronizeWindowTitleWithDocumentName983,20273
window984,20313
windowDidLoad985,20321
windowFrameAutosaveName986,20336
windowNibName987,20361
windowNibPath988,20376
windowTitleForDocumentDisplayName:989,20391
windowWillLoad990,20427
addItemWithObjectValue:991,20443
addItemsWithObjectValues:992,20468
completes993,20495
dataSource994,20506
deselectItemAtIndex:995,20518
hasVerticalScroller996,20540
indexOfItemWithObjectValue:997,20561
indexOfSelectedItem998,20590
insertItemWithObjectValue:atIndex:999,20611
intercellSpacing1000,20647
isButtonBordered1001,20665
itemHeight1002,20683
itemObjectValueAtIndex:1003,20695
noteNumberOfItemsChanged1004,20720
numberOfItems1005,20746
numberOfVisibleItems1006,20761
objectValueOfSelectedItem1007,20783
objectValues1008,20810
reloadData1009,20824
removeAllItems1010,20836
removeItemAtIndex:1011,20852
removeItemWithObjectValue:1012,20872
scrollItemAtIndexToTop:1013,20900
scrollItemAtIndexToVisible:1014,20925
selectItemAtIndex:1015,20954
selectItemWithObjectValue:1016,20974
setButtonBordered:1017,21002
setCompletes:1018,21022
setDataSource:1019,21037
setHasVerticalScroller:1020,21053
setIntercellSpacing:1021,21078
setItemHeight:1022,21100
setNumberOfVisibleItems:1023,21116
setUsesDataSource:1024,21142
usesDataSource1025,21162
comboBox:completedString:1026,21178
comboBox:indexOfItemWithStringValue:1027,21205
comboBox:objectValueForItemAtIndex:1028,21243
numberOfItemsInComboBox:1029,21280
comboBoxSelectionDidChange:1030,21306
comboBoxSelectionIsChanging:1031,21335
comboBoxWillDismiss:1032,21365
comboBoxWillPopUp:1033,21387
backgroundColor1035,21441
bezelStyle1036,21458
drawsBackground1037,21470
placeholderAttributedString1038,21487
placeholderString1039,21516
setBackgroundColor:1040,21535
setBezelStyle:1041,21556
setDrawsBackground:1042,21572
setPlaceholderAttributedString:1043,21593
setPlaceholderString:1044,21626
setTextColor:1045,21649
textColor1046,21664
alloc1047,21675
allocWithZone:1048,21682
autorelease1049,21698
class1050,21711
description1051,21718
isKindOfClass:1052,21731
isMemberOfClass:1053,21747
load1054,21765
release1055,21771
respondsToSelector:1056,21780
retain1057,21801
retainCount1058,21809
conformsToProtocol:1059,21822
dealloc1060,21843
forwardInvocation:1061,21852
hash1062,21872
init1063,21878
isEqual:1064,21884
isProxy1065,21894
methodSignatureForSelector:1066,21903
self1067,21932
superclass1068,21938
zone1069,21950
fileCreationDate1070,21956