]> git.saurik.com Git - apple/objc4.git/blob - runtime/objc-sel-table.h
objc4-274.tar.gz
[apple/objc4.git] / runtime / objc-sel-table.h
1 /*
2 * Copyright (c) 2003 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved.
7 *
8 * This file contains Original Code and/or Modifications of Original Code
9 * as defined in and that are subject to the Apple Public Source License
10 * Version 2.0 (the 'License'). You may not use this file except in
11 * compliance with the License. Please obtain a copy of the License at
12 * http://www.opensource.apple.com/apsl/ and read it before using this
13 * file.
14 *
15 * The Original Code and all software distributed under the License are
16 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
17 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
18 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
20 * Please see the License for the specific language governing rights and
21 * limitations under the License.
22 *
23 * @APPLE_LICENSE_HEADER_END@
24 */
25 /* Last update: cjk - 16 October 2000
26 * To construct this list, I enabled the code in the search function which
27 * is marked DUMP_SELECTORS, and launched a few apps with stdout redirected
28 * to files in /tmp, and ran the files through this script:
29 * cat file1 file2 file3 | sort -u > result
30 *
31 * Then I hand-edited the result file to clean it up. To do updates, I've
32 * just dumped the selectors that end up in the side CFSet (see the macro
33 * DUMP_UNKNOWN_SELECTORS).
34 *
35 * This left me with 13528 selectors, which was nicely close to but under
36 * 2^14 for the binary search.
37 */
38 /* GrP 2004-12-15
39 * Current apps use well over 2^14 selectors.
40 * The list current contains all selectors from
41 * AppKit, WebKit, and their dependencies in Tiger 8A325.
42 * Full list: libobjc, CoreText, Foundation, HIToolbox, CoreData, QuartzCore, AppKit, WebKit
43 * 16371 selectors, just under 2^14
44 */
45
46
47 #define NUM_BUILTIN_SELS 16371
48 /* base-2 log of greatest power of 2 < NUM_BUILTIN_SELS */
49 #define LG_NUM_BUILTIN_SELS 13
50
51 static const char * const _objc_builtin_selectors[NUM_BUILTIN_SELS] = {
52 ".cxx_construct",
53 ".cxx_destruct",
54 "CGColorSpace",
55 "CGCompositeOperationInContext:",
56 "CIContext",
57 "CI_affineTransform",
58 "CI_arrayWithAffineTransform:",
59 "CI_copyWithZone:map:",
60 "CI_initWithAffineTransform:",
61 "CI_initWithRect:",
62 "CI_rect",
63 "CTM",
64 "DOMDocument",
65 "DTD",
66 "DTDKind",
67 "DTDString",
68 "EPSOperationWithView:insideRect:toData:",
69 "EPSOperationWithView:insideRect:toData:printInfo:",
70 "EPSOperationWithView:insideRect:toPath:printInfo:",
71 "EPSRepresentation",
72 "HTMLData",
73 "HTMLFileWrapper",
74 "HTTPBody",
75 "HTTPBodyStream",
76 "HTTPBodyStreamForTransmission",
77 "HTTPContentType",
78 "HTTPExtraCookies",
79 "HTTPMethod",
80 "HTTPReferrer",
81 "HTTPResponse",
82 "HTTPShouldHandleCookies",
83 "HTTPUserAgent",
84 "IBeamCursor",
85 "ICCProfileData",
86 "MD5",
87 "MIMEType",
88 "MIMETypeEnumerator",
89 "MIMETypeForExtension:",
90 "MIMETypeForPath:",
91 "NPP_Destroy",
92 "NPP_DestroyStream",
93 "NPP_GetValue",
94 "NPP_HandleEvent",
95 "NPP_New",
96 "NPP_NewStream",
97 "NPP_Print",
98 "NPP_SetValue",
99 "NPP_SetWindow",
100 "NPP_StreamAsFile",
101 "NPP_URLNotify",
102 "NPP_Write",
103 "NPP_WriteReady",
104 "PDFDocumentClass",
105 "PDFKitBundle",
106 "PDFOperationWithView:insideRect:toData:",
107 "PDFOperationWithView:insideRect:toData:printInfo:",
108 "PDFOperationWithView:insideRect:toPath:printInfo:",
109 "PDFRepresentation",
110 "PDFSubview",
111 "PDFViewClass",
112 "PICTRepresentation",
113 "QTMovie",
114 "RTF",
115 "RTFD",
116 "RTFDFileWrapper",
117 "RTFDFileWrapperFromRange:documentAttributes:",
118 "RTFDFromRange:",
119 "RTFDFromRange:documentAttributes:",
120 "RTFFromRange:",
121 "RTFFromRange:documentAttributes:",
122 "TIFFRepresentation",
123 "TIFFRepresentationOfImageRepsInArray:",
124 "TIFFRepresentationOfImageRepsInArray:usingCompression:factor:",
125 "TIFFRepresentationUsingCompression:factor:",
126 "UIDelegate",
127 "URI",
128 "URIRepresentation",
129 "URIRepresentationForID:",
130 "URL",
131 "URL:resourceDataDidBecomeAvailable:",
132 "URL:resourceDidFailLoadingWithError:",
133 "URL:resourceDidFailLoadingWithReason:",
134 "URLFromPasteboard:",
135 "URLHandle:resourceDataDidBecomeAvailable:",
136 "URLHandle:resourceDidFailLoadingWithReason:",
137 "URLHandleClassForURL:",
138 "URLHandleResourceDidBeginLoading:",
139 "URLHandleResourceDidCancelLoading:",
140 "URLHandleResourceDidFinishLoading:",
141 "URLHandleUsingCache:",
142 "URLProtocol:cachedResponseIsValid:",
143 "URLProtocol:didCancelAuthenticationChallenge:",
144 "URLProtocol:didFailWithError:",
145 "URLProtocol:didLoadData:",
146 "URLProtocol:didLoadData:lengthReceived:",
147 "URLProtocol:didReceiveAuthenticationChallenge:",
148 "URLProtocol:didReceiveResponse:cacheStoragePolicy:",
149 "URLProtocol:wasRedirectedToRequest:redirectResponse:",
150 "URLProtocolDidFinishLoading:",
151 "URLResourceDidCancelLoading:",
152 "URLResourceDidFinishLoading:",
153 "URLString",
154 "URLWithAttributeString:",
155 "URLWithString:",
156 "URLWithString:relativeToURL:",
157 "URLs",
158 "URLsFromRunningOpenPanel",
159 "UTF8String",
160 "W",
161 "X",
162 "XMLDataWithOptions:",
163 "XMLFormatData",
164 "XMLString",
165 "XMLStringSequenceStarted:choiceStarted:appendingToString:",
166 "XMLStringWithOptions:",
167 "XPath",
168 "Y",
169 "Z",
170 "_ATSU_drawHighlightForRun:style:geometry:",
171 "_ATSU_drawRun:style:geometry:",
172 "_ATSU_floatWidthForRun:style:",
173 "_ATSU_pointToOffset:style:position:reversed:includePartialGlyphs:",
174 "_BMPRepresentation:",
175 "_BRElementImpl",
176 "_CGImageRef",
177 "_CGSadjustWindows",
178 "_CGSinsertWindow:withPriority:",
179 "_CGSremoveWindow:",
180 "_CG_drawHighlightForRun:style:geometry:",
181 "_CG_drawRun:style:geometry:",
182 "_CG_floatWidthForRun:style:widths:fonts:glyphs:startPosition:numGlyphs:",
183 "_CG_pointToOffset:style:position:reversed:includePartialGlyphs:",
184 "_CSSStyleSheetImpl",
185 "_CSSStyleSheetWithImpl:",
186 "_DOMImplementationImpl",
187 "_DOMImplementationWithImpl:",
188 "_DOMStyleSheetImpl",
189 "_DOMStyleSheetWithImpl:",
190 "_DTDString",
191 "_EOAssertSafeMultiThreadedAccess:",
192 "_EOAssertSafeMultiThreadedReadAccess:",
193 "_HRElementImpl",
194 "_HTMLDocumentImpl",
195 "_HTMLElementImpl",
196 "_HTMLHtmlElementImpl",
197 "_IBCreatorID",
198 "_IFrameElementImpl",
199 "_KWQ_currentEditor",
200 "_KWQ_isScrollView",
201 "_KWQ_numComposedCharacterSequences",
202 "_KWQ_scrollFrameToVisible",
203 "_KWQ_scrollPointRecursive:",
204 "_KWQ_scrollPointRecursive:inView:",
205 "_KWQ_scrollRectToVisible:forceCentering:",
206 "_KWQ_scrollRectToVisible:inView:forceCentering:",
207 "_KWQ_setBaseWritingDirection:",
208 "_KWQ_setKeyboardFocusRingNeedsDisplay",
209 "_KWQ_setTypingParagraphStyle:",
210 "_KWQ_truncateToNumComposedCharacterSequences:",
211 "_KWQ_typingParagraphStyle",
212 "_MIMETypeForExtension:",
213 "_MIMETypeForFile:",
214 "_MOClassName",
215 "_NSNavDisplayNameCompare:caseSensitive:",
216 "_NSNavFilePropertyCompare:",
217 "_NSNavFilePropertyCompareCaseInsenstive:",
218 "_NSNavShortVersionCompare:",
219 "_RGBColorWithRGB:",
220 "_RTFDFileWrapper",
221 "_UIDelegateForwarder",
222 "_UIEventImpl",
223 "_URIisNil",
224 "_URL",
225 "_URLByEscapingSpacesAndControlChars",
226 "_URLForHistory",
227 "_URLForString:",
228 "_URLHasScheme:",
229 "_URLStringForString:",
230 "_URLStringFromLocationHeader",
231 "_URLWithData:relativeToURL:",
232 "_URLWithDataAsString:",
233 "_URLWithDataAsString:relativeToURL:",
234 "_URLsFromSelectors:",
235 "_URLsMatchItem:",
236 "_UTIMIMETypeForExtension:",
237 "_UTIextensionForMIMEType:",
238 "_WebCore_cursorWithName:hotSpot:",
239 "_XMLStringWithCharactersOnly",
240 "_XMLStringWithOptions:appendingToString:",
241 "__adoptRequest:",
242 "__clearPreLiveColumnWidths",
243 "__close",
244 "__computePreLiveColumnResizeWidthsByColumn",
245 "__doImageDragUsingRowsWithIndexes:event:pasteboard:source:slideBack:",
246 "__drawRevealoverWithFrame:inView:forView:",
247 "__escapeString5991",
248 "__gmd_000__",
249 "__gmd_001__",
250 "__gmd_002__",
251 "__ivar_getTrackingCell",
252 "__ivar_setClickedRow:clickedColumn:",
253 "__ivar_setTrackingCell:",
254 "__needsRevealoverWithFrame:trackingRect:inView:",
255 "__normalImage",
256 "__oldnf_addInternalRedToTextAttributesOfNegativeValues",
257 "__oldnf_addThousandSeparators:withBuffer:",
258 "__oldnf_addThousandSeparatorsToFormat:withBuffer:",
259 "__oldnf_containsCharFromSet:",
260 "__oldnf_containsColorForTextAttributesOfNegativeValues",
261 "__oldnf_containsString:",
262 "__oldnf_copyToUnicharBuffer:saveLength:",
263 "__oldnf_decimalIsNotANumber:",
264 "__oldnf_deleteAllCharactersFromSet:",
265 "__oldnf_getObjectValue:forString:errorDescription:",
266 "__oldnf_numberStringForValueObject:withBuffer:andNegativeFlag:",
267 "__oldnf_removeInternalRedFromTextAttributesOfNegativeValues",
268 "__oldnf_replaceAllAppearancesOfString:withString:",
269 "__oldnf_replaceFirstAppearanceOfString:withString:",
270 "__oldnf_setLocalizationFromDefaults",
271 "__oldnf_stringForObjectValue:",
272 "__oldnf_stringWithSeparator:atFrequency:",
273 "__oldnf_surroundValueInString:withLength:andBuffer:",
274 "__preLiveResizeWidthOfColumn:",
275 "__sendDataSourceWriteDragDataWithIndexes:toPasteboard:",
276 "_abbreviationForAbsoluteTime:",
277 "_abortAndRestartTracking:",
278 "_abortEditingIfFirstResponderIsASubview",
279 "_abstractViewImpl",
280 "_abstractViewWithImpl:",
281 "_acceptExpressions:flags:",
282 "_acceptOperator:flags:",
283 "_acceptSubpredicates:flags:",
284 "_acceptableRowAboveKeyInVisibleRect:",
285 "_acceptableRowAboveRow:minRow:",
286 "_acceptableRowAboveRow:tryBelowPoint:",
287 "_acceptableRowBelowKeyInVisibleRect:",
288 "_acceptableRowBelowRow:maxRow:",
289 "_acceptableRowBelowRow:tryAbovePoint:",
290 "_acceptsFirstResponderInItem:",
291 "_acceptsMarkedText",
292 "_accessibilityArrowScreenRect:",
293 "_accessibilityBoundsOfChild:",
294 "_accessibilityButtonRect",
295 "_accessibilityButtonUIElement",
296 "_accessibilityCellLabelType",
297 "_accessibilityChildrenInRange:",
298 "_accessibilityCorrectlyParentedCells:",
299 "_accessibilityGrowBoxRect",
300 "_accessibilityIconHandlesTitle",
301 "_accessibilityIndicatorRect",
302 "_accessibilityIsModal",
303 "_accessibilityIsRadioGroup",
304 "_accessibilityIsSupportedPartCode:",
305 "_accessibilityLoadBrowserCellsAtRow:count:",
306 "_accessibilityMaxValue",
307 "_accessibilityMinValue",
308 "_accessibilityMinValueWithoutCollapsing",
309 "_accessibilityNextSplitterMinCoordinate",
310 "_accessibilityNumberOfChildren",
311 "_accessibilityPanel",
312 "_accessibilityParentForSubview:",
313 "_accessibilityPopUpButtonCellPressAction:",
314 "_accessibilityPressAction:",
315 "_accessibilityPreviousSplitterMaxCoordinate",
316 "_accessibilityRowsInRange:",
317 "_accessibilityScreenRectForSegment:",
318 "_accessibilitySearchFieldCellBounds",
319 "_accessibilitySegmentAtIndex:",
320 "_accessibilityShowMenu:",
321 "_accessibilitySplitterMinCoordinate",
322 "_accessibilitySplitterRects",
323 "_accessibilitySupportedPartCodes",
324 "_accessibilityTableCell:tableColumn:",
325 "_accessibilityTableRow:",
326 "_accessibilityTitle",
327 "_accessibilityTitleCell",
328 "_accessibilityTitleForColumn:",
329 "_accessibilityTitleRect",
330 "_accessibilityToolBarItem",
331 "_accessibilityToolBarItemViewer",
332 "_accessibilityUIElementForPartCode:",
333 "_accessibilityUIElementPath",
334 "_accessibilityUIElementPathForChild:",
335 "_accessibilityValue",
336 "_accessibilityViewCorrectedForFieldEditor:",
337 "_actOnKeyDown:",
338 "_actionCellInitWithCoder:",
339 "_actionHasBegun:atIndex:",
340 "_actionHasBegun:atIndexPath:",
341 "_actionInformationForLoadType:isFormSubmission:event:originalURL:",
342 "_actionInformationForNavigationType:event:originalURL:",
343 "_activate",
344 "_activateHelpModeBasedOnEvent:",
345 "_activateServer",
346 "_activateTrackingRectsForApplicationActivation",
347 "_activateWindows",
348 "_activeFileListViewForResizing",
349 "_actualOrderingFilePropertyAscending:",
350 "_adapter",
351 "_addAnimatedColumn",
352 "_addAttachmentForElement:URL:needsParagraph:usePlaceholder:",
353 "_addAutosavingOfDocument:contentsToURL:",
354 "_addBackForwardItem:",
355 "_addBackForwardItemClippedAtTarget:",
356 "_addBackForwardItems:",
357 "_addBindVarForConstVal:",
358 "_addBinding:toController:withKeyPath:valueTransformerName:options:",
359 "_addChild:",
360 "_addCollection:options:sender:",
361 "_addColor:",
362 "_addColumnSubviewAndAnimateIfNecessary:",
363 "_addColumnToFetch:",
364 "_addColumnWithoutChangingVisibleColumn",
365 "_addContent",
366 "_addContentsToDictionary:depth:",
367 "_addConversionsFromTypes:",
368 "_addCornerDirtyRectForRect:list:count:",
369 "_addCredential:forProtectionSpace:",
370 "_addCurrentDirectoryToRecentPlaces",
371 "_addCursorRect:cursor:forView:",
372 "_addDefaultTable",
373 "_addDeletesToDatabaseOp:forManyToMany:",
374 "_addDescriptorCheckingForDuplicates:toCollection:",
375 "_addDragTypesTo:",
376 "_addEditableSubfieldForElement:",
377 "_addEntities:toConfiguration:",
378 "_addEntity:",
379 "_addExpandedNodeToObservedNodeMappingForExpandedNode:",
380 "_addExtraFieldsToRequest:alwaysFromRequest:",
381 "_addFontDescriptorFromDrag:toCollectionAtIndex:",
382 "_addFramePathToString:",
383 "_addHeartBeatClientView:",
384 "_addHiddenWindow:",
385 "_addImage:named:",
386 "_addIndexedEntity:",
387 "_addInsertsToDatabaseOp:forManyToMany:",
388 "_addItem:toTable:",
389 "_addKeychainItem:",
390 "_addLibxml2TreeRepresentationToDoc:context:",
391 "_addListDefinition:forKey:",
392 "_addManyToManysToDatabaseOp:",
393 "_addMapping:forConfigurationWithName:",
394 "_addMarker:",
395 "_addMarkersToList:range:",
396 "_addMouseMovedListener:",
397 "_addMultipleToTypingAttributes:",
398 "_addNumberOfIndexes:toSelectionIndexesAtIndex:sendObserverNotifications:",
399 "_addObject:objectIDMap:",
400 "_addObserver:forProperty:options:context:",
401 "_addObserver:notificationNamesAndSelectorNames:object:onlyIfSelectorIsImplemented:",
402 "_addOneRepFrom:toRep:",
403 "_addOptionValue:toArray:withKey:typeString:",
404 "_addOverride:forKey:",
405 "_addPathSegment:point:",
406 "_addPersistentStore:identifier:",
407 "_addPlaceholderOptionValue:isDefault:toArray:withKey:binder:binding:",
408 "_addPlugIn:allowNonExecutable:",
409 "_addPlugInStreamClient:",
410 "_addPlugInsFromPath:allowNonExecutable:checkForExistingPlugIn:",
411 "_addProperty:",
412 "_addQuoteForElement:opening:level:",
413 "_addQuoteForLibXML2ElementNode:opening:level:",
414 "_addRangeToArray:",
415 "_addRepresentedObject:toAttributedString:atRange:",
416 "_addRepresentedObjects:toAttributedString:atRange:",
417 "_addRepsFrom:toRep:",
418 "_addResponse:",
419 "_addResult:",
420 "_addRevealoverIfNecessaryForCell:cellRect:",
421 "_addRootColumnToFetch:",
422 "_addScrollerDashboardRegions:",
423 "_addScrollerDashboardRegions:from:",
424 "_addSpellingAttributeForRange:",
425 "_addStaticSubfieldWithString:",
426 "_addStringToRecentSearches:",
427 "_addSubentity:",
428 "_addSubfieldForElement:withString:",
429 "_addSubframeArchives:",
430 "_addSubresourceClient:",
431 "_addSubresources:",
432 "_addSubview:",
433 "_addToGroups:ordered:",
434 "_addToLibxml2TreeRepresentationWithDoc:dtd:context:",
435 "_addToOrphanList",
436 "_addToStyle:fontA:fontB:",
437 "_addToTypingAttributes:value:",
438 "_addToolTipRect:",
439 "_addToolTipRect:displayDelegate:displayInfo:",
440 "_addTrackingRect:andStartToolTipIfNecessary:view:owner:toolTip:reuseExistingTrackingNum:",
441 "_addTrackingRect:owner:userData:assumeInside:useTrackingNum:",
442 "_addTrackingRects",
443 "_addTrackingRects:owner:userDataList:assumeInsideList:trackingNums:count:",
444 "_addTrackingRectsForView:",
445 "_addTrackingTag:",
446 "_addTrustedAttribute:atIndex:",
447 "_addUpdatesToDatabaseOp:forManyToMany:",
448 "_addVirtualToOneForToMany:",
449 "_addWhitespace",
450 "_addWindow:",
451 "_addWindowsMenu:enabled:",
452 "_addedTab:atIndex:",
453 "_additionIndexPathAppendChildIndex:",
454 "_adjustCancelButtonCellImages::",
455 "_adjustCharacterIndicesForRawGlyphRange:byDelta:",
456 "_adjustClipIndicatorPosition",
457 "_adjustControls:andSetColor:",
458 "_adjustDatePickerElement:by:",
459 "_adjustDynamicDepthLimit",
460 "_adjustEditedCellLocation",
461 "_adjustFocusRingLocation:",
462 "_adjustFocusRingSize:",
463 "_adjustFontOfObject:mode:triggerRedisplay:compareDirectly:toFont:",
464 "_adjustFontSize",
465 "_adjustForGrowBox",
466 "_adjustFrameOfOutlineCellIfNecessary:frame:",
467 "_adjustFrameSize",
468 "_adjustLayoutForTextAreaFrame:",
469 "_adjustLength",
470 "_adjustMinContentSizeForMinFrameSize:",
471 "_adjustMovieToView",
472 "_adjustNibControlSizes",
473 "_adjustObject:mode:observedController:observedKeyPath:context:editableState:adjustState:",
474 "_adjustObject:mode:triggerRedisplay:",
475 "_adjustPanelForMinWidth",
476 "_adjustPort",
477 "_adjustPrintingMarginsForHeaderAndFooter",
478 "_adjustRichTextFontSizeByRatio:",
479 "_adjustSearchButtonCellImages::",
480 "_adjustSelectionForItemEntry:numberOfRows:adjustFieldEditorIfNecessary:",
481 "_adjustSheetEffect",
482 "_adjustStatesOfObject:mode:state:triggerRedisplay:",
483 "_adjustTextColorOfObject:mode:",
484 "_adjustToMode",
485 "_adjustWidthsToFit",
486 "_adjustWindowToScreen",
487 "_adjustedCenteredScrollRectToVisible:forceCenter:",
488 "_adjustedFrameForSaving:",
489 "_adjustedFrameFromDefaults:",
490 "_advanceTime",
491 "_aeteDataForAllSuites",
492 "_aeteElementClassDescriptions",
493 "_aeteElementClassDescriptionsExceptSupers:",
494 "_aetePropertyDescriptions",
495 "_affectedExpandedNodes:",
496 "_affectedExpandedNodesForNode:",
497 "_afterAutosavingDocument:closeAndContinue:context:",
498 "_ageHeaderValue",
499 "_ageLimitDate",
500 "_alignColumnForStretchedWindowWithInfo:",
501 "_alignCoords",
502 "_alignFirstVisibleColumnToDocumentViewEdge:",
503 "_alignSelectionUsingCSSValue:",
504 "_alignedTitleRectWithRect:",
505 "_allAttributeKeys",
506 "_allBinderClasses",
507 "_allPossibleLabelsToFit",
508 "_allSidebarItemViews",
509 "_allTokenFieldAttachments",
510 "_allocAndInitPrivateIvars",
511 "_allocAuxiliary:",
512 "_allocAuxiliaryStorage",
513 "_allocData:",
514 "_allocExtraData",
515 "_allocString:",
516 "_allocateAuxData",
517 "_allocateObserationStorage",
518 "_allocatePPDStuffAndParse",
519 "_allowKillRing",
520 "_allowSmallIcons",
521 "_allowedItemIdentifiers",
522 "_allowedToSetCookiesFromURL:withPolicyBaseURL:",
523 "_allowsContextMenus",
524 "_allowsDisplayMode:",
525 "_allowsDuplicateItems",
526 "_allowsNonNativeGlyphPacking",
527 "_allowsScreenFontKerning",
528 "_allowsSizeMode:",
529 "_allowsTearOffs",
530 "_alterCurrentSelection:direction:granularity:",
531 "_alterCurrentSelection:verticalDistance:",
532 "_alternateAutoExpandImageForOutlineCell:inRow:withFrame:",
533 "_alternateDown::::",
534 "_alternateICUValueForKey:",
535 "_alternateICUValues",
536 "_alternatingRowBackgroundColors",
537 "_analogClockTrackMouse:inRect:ofView:untilMouseUp:",
538 "_analyzeContentBindingInSyncWithBinding:",
539 "_anchorElementImpl",
540 "_animateLastAddedColumnToVisible",
541 "_animatePanel",
542 "_animateSheet",
543 "_animatedScrollToPoint:",
544 "_animatedScrollingPreferencesChanged:",
545 "_animates",
546 "_animatingScrollTargetOrigin",
547 "_animationIdler:",
548 "_animationThread",
549 "_animationTimerCallback:",
550 "_antialiasThresholdChanged:",
551 "_antialiased",
552 "_anticipateRelease",
553 "_appDidBecomeActive:",
554 "_appHasNonMiniaturizedWindow",
555 "_appHasOpenNSWindow",
556 "_appHasVisibleWindowOrPanel",
557 "_appIcon",
558 "_appWillTerminate:",
559 "_appendArcSegmentWithCenter:radius:angle1:angle2:",
560 "_appendAttachment:toString:",
561 "_appendColorPicker:",
562 "_appendEventDeclarationsToAETEData:",
563 "_appendKey:option:value:inKeyNode:",
564 "_appendNewItemWithItemIdentifier:notifyDelegate:notifyView:notifyFamilyAndUpdateDefaults:",
565 "_appendNodes:forNodeInfo:addSeparator:",
566 "_appendObjectClassDeclarationsToAETEData:",
567 "_appendSanitizedTextBytes:length:encoding:isSymbol:attributes:",
568 "_appendStringInKeyNode:key:value:",
569 "_appendTextBytes:length:encoding:attributes:",
570 "_appendTypeDefinitionsSuiteDeclarationToAETEData:",
571 "_appletElementImpl",
572 "_applicationDidBecomeActive",
573 "_applicationDidResignActive",
574 "_applicationDidTerminate:",
575 "_applicationStatusChange:",
576 "_applicationWillLaunch:",
577 "_applicationWillTerminate:",
578 "_applyAllValuesFromValueBuffer",
579 "_applyDisplayedValueIfHasUncommittedChangesWithHandleErrors:typeOfAlert:discardEditingCallback:otherCallback:callbackContextInfo:didRunAlert:",
580 "_applyHTTPCredentials:",
581 "_applyHTTPProxyCredentials:",
582 "_applyMarkerSettingsFromParagraphStyle:",
583 "_applyObjectValue:forBinding:canRecoverFromErrors:handleErrors:typeOfAlert:discardEditingCallback:otherCallback:callbackContextInfo:didRunAlert:",
584 "_applyStyleToSelection:",
585 "_applyStylesheet:",
586 "_applyValue:forKey:registrationDomain:",
587 "_applyValueTransformerToValue:forBindingInfo:reverse:",
588 "_appropriateColorPanelSliderPane",
589 "_aquaColorVariantChanged",
590 "_aquaScrollerBehaviorChanged:",
591 "_aquaScrollerVariantChanged:",
592 "_archiveToFile:",
593 "_archiveWithCurrentState:",
594 "_archiveWithMarkupString:nodes:",
595 "_areAllPanelsNonactivating",
596 "_areWritesCancelled",
597 "_areaElementImpl",
598 "_argument",
599 "_argumentBindingCount",
600 "_argumentDescriptionForKey:",
601 "_argumentDescriptions",
602 "_argumentDescriptionsByName",
603 "_argumentDescriptionsFromUnnamedImplDeclaration:presoDeclaration:namedImplDeclarations:presoDeclarations:suiteName:commandName:",
604 "_argumentForUnderlineStyle:",
605 "_argumentValueFromParameterDescriptor:usingTypeDescription:",
606 "_arrangeObjectsWithSelectedObjects:avoidsEmptySelection:operationsMask:useBasis:",
607 "_arrayByTranslatingAEList:toType:inSuite:",
608 "_arrayControllerWithContent:retain:",
609 "_arrayForPartialPinningFromArray:",
610 "_arrowKeyDownEventSelectorIfPreprocessing",
611 "_asDescriptor",
612 "_asIconHasAlpha",
613 "_asScriptTerminologyNameArray",
614 "_asScriptTerminologyNameString",
615 "_ascenderDeltaForBehavior:",
616 "_askDelegateWithURL:proxy:forRequest:failureCount:failureResponse:protocol:withCallback:context:",
617 "_askDelegateWithURL:realm:forRequest:failureCount:failureResponse:protocol:withCallback:context:",
618 "_assertFilterRestrictsInsertionOfObjects:atArrangedObjectIndexes:",
619 "_assertValidStateWithSelector:",
620 "_assignObject:toPersistentStore:",
621 "_assignObjectIds",
622 "_assignObjects:toStore:",
623 "_atsFontID",
624 "_attachSheetWindow:",
625 "_attachToParentWindow",
626 "_attachToSupermenuView:",
627 "_attachWindowForOrdering:relativeOp:",
628 "_attachedSupermenuView",
629 "_attachmentAtGlyphIndex:containsWindowPoint:",
630 "_attachmentCellForSelection",
631 "_attachmentSizesRun",
632 "_attrImpl",
633 "_attrWithImpl:",
634 "_attributeRunForCharacterAtIndex:",
635 "_attributeStringFromDOMRange:",
636 "_attributeValueClass",
637 "_attributedLabelsFromStringLabels:",
638 "_attributedStringForEditing",
639 "_attributedStringFromDescriptor:",
640 "_attributedStringFromRepresentedObjects:",
641 "_attributedStringValue:invalid:",
642 "_attributedValuesFromStringValues:",
643 "_attributes",
644 "_attributes1ForPageOffset:entryOffset:baseAttributes:",
645 "_attributes2ForPageOffset:entryOffset:blockType:baseAttributes:",
646 "_attributesAreEqualToAttributesInAttributedString:",
647 "_attributesForElement:",
648 "_audioCompleted",
649 "_authenticationDoneWithChallenge:result:",
650 "_autoAppendsMDAttributesToSavedFile",
651 "_autoCompleteEditorTyping:",
652 "_autoCreateBinderForObject:withController:",
653 "_autoExpandFlashOnce",
654 "_autoExpandItem:",
655 "_autoPositionMask",
656 "_autoResizeState",
657 "_autoSaveCofiguration",
658 "_autoSizeView:::::",
659 "_autocompletesTyping",
660 "_automateLiveResize",
661 "_automateLiveScroll",
662 "_autoreleaseDuringLiveResize",
663 "_autoreopenDocuments",
664 "_autoresizeToFit",
665 "_autoresizesLastColumnOnly",
666 "_autosaveColumnsIfNecessary",
667 "_autosaveContentsURL",
668 "_autosaveForRegularQuit",
669 "_autosaveRecentSearchList",
670 "_autosaveRecordPath",
671 "_autosavingBehavior",
672 "_autoscroll",
673 "_autoscrollDate",
674 "_autoscrollForDraggingInfo:timeDelta:",
675 "_autovalidateToolbarItem:",
676 "_autovalidateVisibleToolbarItems",
677 "_autovalidatesItems",
678 "_availableBindingsWithFontBindingsFiltered:",
679 "_availableChannel",
680 "_availableChannelFromRegisteredChannels",
681 "_availableFontSetNames",
682 "_availablePaperWidthForPrintOperation:",
683 "_awakeFromFetch",
684 "_awakeFromInsert",
685 "_backForwardCacheExpirationInterval",
686 "_backForwardItems",
687 "_backgroundColor",
688 "_backgroundFileLoadCompleted:",
689 "_backingCGSFont",
690 "_barberImage:",
691 "_base64StringFromData:",
692 "_baseElementImpl",
693 "_baseFontElementImpl",
694 "_baseLineHeightForFont:",
695 "_baseString",
696 "_baseTransform",
697 "_baseWritingDirection",
698 "_baselineRenderingMode",
699 "_batchClose",
700 "_batchCollapseItemsWithItemEntries:collapseChildren:",
701 "_batchCollapseItemsWithItemEntries:collapseChildren:clearExpandState:",
702 "_batchExpandItemsWithItemEntries:expandChildren:",
703 "_batchOrdering",
704 "_batchZoom",
705 "_beginColumnAnimationOptimization",
706 "_beginCustomizationMode",
707 "_beginDraggingColumn:",
708 "_beginDrawForDragging",
709 "_beginDrawView:",
710 "_beginListeningForApplicationStatusChanges",
711 "_beginListeningForDeviceStatusChanges",
712 "_beginListeningForPowerStatusChanges",
713 "_beginListeningForSessionStatusChanges",
714 "_beginMark",
715 "_beginScrolling",
716 "_beginSpeakingString:optionallyToURL:",
717 "_beginSrcDragItemViewerWithEvent:",
718 "_beginSrcDragItemWithEvent:",
719 "_beginTempEditingMode",
720 "_beginToolbarEditingMode",
721 "_beginTransaction:",
722 "_bestRepresentation:device:bestWidth:checkFlag:",
723 "_betweenDropFeedbackStyle",
724 "_betweenDropGapSize",
725 "_bidiLevels",
726 "_bind:toController:withKeyPath:valueTransformerName:options:existingNibConnectors:connectorsToRemove:connectorsToAdd:",
727 "_bindNamespace:",
728 "_bindVariablesWithInsertedRow:",
729 "_binderClassForBinding:withBinders:",
730 "_binderForBinding:withBinders:createAutoreleasedInstanceIfNotFound:",
731 "_binderWithClass:withBinders:createAutoreleasedInstanceIfNotFound:",
732 "_bindingAdaptor",
733 "_bindingAdaptorMethodsNeededMask",
734 "_bindingCreationDelegate",
735 "_bindingInfoForBinding:",
736 "_bindingInfoIndexForBinding:",
737 "_bindingInformationWithExistingNibConnectors:availableControllerChoices:",
738 "_bindingInfos",
739 "_bitBlitSourceRect:toDestinationRect:",
740 "_bitmapFormat",
741 "_blackRGBColor",
742 "_blinkCaret:",
743 "_blockAndGetChildrenOfNavNode:",
744 "_blockClassForBlock:",
745 "_blockHeartBeat:",
746 "_blockLevelElementForNode:",
747 "_blockRangeForCharRange:",
748 "_blockRangeForGlyphRange:",
749 "_blocksActionWhenModal:",
750 "_blueAlternatingRowColor",
751 "_blueControlTintColor",
752 "_blueKeyboardFocusColor",
753 "_bodyBackgroundColor",
754 "_bodyElementImpl",
755 "_bonafiedDealloc",
756 "_bonafiedDeallocHelper",
757 "_boolValueForKey:",
758 "_borderInset",
759 "_borderType",
760 "_borderView",
761 "_bottomContainerView",
762 "_bottomCornerSize",
763 "_bottomLeftResizeCursor",
764 "_bottomRightResizeCursor",
765 "_boundingRectForGlyphRange:inTextContainer:fast:fullLineRectsOnly:",
766 "_boundsForCellFrame:",
767 "_branchImageEnabled",
768 "_branchImageRectForBounds:",
769 "_breakConnectionOfTableBinderIfAutoCreated:",
770 "_bridge",
771 "_bridgeAtPoint:",
772 "_bridgeForCurrentSelection",
773 "_briefDescription",
774 "_brightColorFromPoint:fullBrightness:",
775 "_browser:keyEvent:inColumn:",
776 "_browser:performKeyEquivalent:inColumn:",
777 "_browserAction:",
778 "_browserDelegate",
779 "_browserDoubleAction:",
780 "_buildCursor:cursorData:",
781 "_buildUI",
782 "_builtInLocalizedDescription",
783 "_builtInLocalizedFailureReason",
784 "_builtInLocalizedRecoveryOptions",
785 "_builtInLocalizedRecoverySuggestion",
786 "_bulletCharacter",
787 "_bulletStringForString:",
788 "_bundleForClassPresentInAppKit:",
789 "_button",
790 "_buttonBezelColors",
791 "_buttonCellInitWithCoder:",
792 "_buttonElementImpl",
793 "_buttonFrameSizeForSizeMode:",
794 "_buttonHeight",
795 "_buttonImageSource",
796 "_buttonImageToolTip",
797 "_buttonOfClass:action:",
798 "_buttonToolTip",
799 "_buttonType",
800 "_buttonWidth",
801 "_bytesAreVM",
802 "_cacheDisplayValue:",
803 "_cacheObjectValue:",
804 "_cachePolicyForResponse",
805 "_cacheRepresentation:",
806 "_cacheRepresentation:stayFocused:",
807 "_cacheResourceLoadDelegateImplementations",
808 "_cacheRow:rect:",
809 "_cacheRowHeightsIntoBucket:bucketFirstRowIndex:lastCacheableRowIndex:",
810 "_cacheSelectedObjectsIfNecessary",
811 "_cacheUserKeyEquivalentInfo",
812 "_cacheViewImage:",
813 "_cachedChildrenForNode:createIfNeeded:",
814 "_cachedDisplayValue",
815 "_cachedObjectForKey:value:",
816 "_cachedObjectValue",
817 "_cachedResponseForURL:",
818 "_cachedResponseHasExpired",
819 "_cachedResponsePassesValidityChecks",
820 "_cachedValuesAreValid",
821 "_cachingView",
822 "_calcAndSetFilenameTitle",
823 "_calcHeights:num:margin:operation:helpedBy:",
824 "_calcMarginSize:operation:",
825 "_calcNumVisibleColumnsAndColumnSize",
826 "_calcOutlineColumnWidth",
827 "_calcScrollArrowHeight",
828 "_calcTextRect:",
829 "_calcTrackRect:andAdjustRect:",
830 "_calcVisibleColumnAreaAvailable",
831 "_calcWidths:num:margin:operation:helpedBy:",
832 "_calculatePageRectsWithOperation:pageSize:layoutAssuredComplete:",
833 "_calculatePrintHeight",
834 "_calculateSelectedSegmentForPoint:",
835 "_calculateSizeToFitWidthOfColumn:testLoadedOnly:",
836 "_calculateTotalScaleForPrintingWithOperation:",
837 "_calculatedExpiration",
838 "_calendarContentAttributedStringWithSelectedDay:today:",
839 "_calendarID",
840 "_calendarWithID:",
841 "_callImplementor:context:chars:glyphs:stringBuffer:font:",
842 "_canAutoGenerateKeyboardLoops",
843 "_canBecomeDefaultButtonCell",
844 "_canCachePage",
845 "_canChangeRulerMarkers",
846 "_canCopy",
847 "_canCut",
848 "_canDelete",
849 "_canDeselect",
850 "_canDeselect:",
851 "_canDragRowForClickOnCell:column:row:atPoint:",
852 "_canDrawOutsideOfItsBounds",
853 "_canEdit",
854 "_canHandleRequest:",
855 "_canHaveToolbar",
856 "_canHide",
857 "_canInitiateRowDragInColumn:",
858 "_canMoveItemAsSource:",
859 "_canOptimizeDrawing",
860 "_canPaste",
861 "_canProcessDragWithDraggingInfo:",
862 "_canRunCustomizationPanel",
863 "_canSave",
864 "_canSaveGraphRootedAtObject:intoStore:givenOthers:",
865 "_canShowGoto",
866 "_canShowMIMETypeAsHTML:",
867 "_canShowToolTip",
868 "_canSmartCopyOrDelete",
869 "_canSmartReplaceWithPasteboard:",
870 "_canUseCompositing",
871 "_canUseKeyEquivalentForMenuItem:",
872 "_canUseReorderResizeImageCache",
873 "_canUseResourceForRequest:",
874 "_canUserSetVisibilityPriority",
875 "_cancelAddMarker:",
876 "_cancelAllUserAttentionRequests",
877 "_cancelAnyScheduledAutoCollapse",
878 "_cancelAutoExpandTimer",
879 "_cancelCurrentToolTipWindowImmediately:",
880 "_cancelDelayedAutocomplete",
881 "_cancelDelayedKeyboardNavigationTabSwitch",
882 "_cancelDelayedShowOpenHandCursor",
883 "_cancelKey:",
884 "_cancelMovementTrackingTimer",
885 "_cancelPerformSelectors",
886 "_cancelRequest:",
887 "_cancelWithError:",
888 "_cancelWithErrorCode:",
889 "_candidateDragRowIndexForClickInRow:",
890 "_canonicalURLForURL:",
891 "_canonicalXMLStringPreservingComments:relationships:",
892 "_captureInput",
893 "_captureReorderResizeColumnImageCaches",
894 "_captureVisibleIntoImageCache",
895 "_captureVisibleIntoLiveResizeCache",
896 "_carbonNotification",
897 "_carbonWindowClass",
898 "_caseSensitiveCompare:",
899 "_cellForObject",
900 "_cellForPoint:characterIndex:level:row:column:range:",
901 "_cellForRow:browser:browserColumn:",
902 "_cellFrame",
903 "_cellFrameForAttachment:atCharIndex:",
904 "_cellFurthestFrom:andCol:",
905 "_cellInitWithCoder:",
906 "_cellOrControlForObject:",
907 "_centerInnerBounds:",
908 "_centerOnScreen",
909 "_centerScanPoint:",
910 "_centerTitle:inRect:",
911 "_centeredScrollRectToVisible:forceCenter:",
912 "_cfBundle",
913 "_cfPasteboard",
914 "_cfTypeID",
915 "_cfurl",
916 "_cgColor",
917 "_cgsEventRecord",
918 "_cgsEventTime",
919 "_chainNewError:toOriginalErrorDoublePointer:",
920 "_changeAlertSheetWasPresented:withResult:inContext:",
921 "_changeAllDrawersFirstResponder",
922 "_changeAllDrawersKeyState",
923 "_changeAllDrawersMainState",
924 "_changeCSSColorUsingSelector:inRange:",
925 "_changeColorToColor:",
926 "_changeDrawerFirstResponder",
927 "_changeDrawerKeyState",
928 "_changeDrawerMainState",
929 "_changeEditable:",
930 "_changeFileListMode:",
931 "_changeFirstResponder",
932 "_changeHistory:",
933 "_changeIntAttribute:by:range:",
934 "_changeJustMain",
935 "_changeKeyAndMainLimitedOK:",
936 "_changeKeyState",
937 "_changeLanguage:",
938 "_changeMDAttributes:atPath:",
939 "_changeMainState",
940 "_changeMinColorPanelSizeByDelta:compareWithOldMinSize:oldMinSize:setWindowFrame:",
941 "_changeMinColorPanelSizeByDelta:setWindowFrame:",
942 "_changePrefixesForURI:toPrefix:",
943 "_changeSelectionWithEvent:",
944 "_changeShadowAngle:",
945 "_changeShadowBlur:",
946 "_changeShadowOpacity:",
947 "_changeSizeStyle:",
948 "_changeSortDescriptorsForClickOnColumn:",
949 "_changeSpellingFromMenu:",
950 "_changeSpellingToWord:",
951 "_changeSyncPostingEnabled",
952 "_changeTexture",
953 "_changeUUIDForSaveAs",
954 "_changeWasDone:",
955 "_changeWasRedone:",
956 "_changeWasUndone:",
957 "_changeWordCaseWithSelector:",
958 "_changed",
959 "_changed:",
960 "_changedFlags",
961 "_changedObjectIDs",
962 "_changingSelectionWithKeyboard",
963 "_charIndexToBreakLineByWordWrappingAtIndex:lineFragmentWidth:hyphenate:",
964 "_characterCoverage",
965 "_characterDataImpl",
966 "_characterRangeCurrentlyInAndAfterContainer:",
967 "_characterRangeForPoint:inRect:ofView:",
968 "_checkCollectionMoveOut:",
969 "_checkDataSource",
970 "_checkDirectoryListing",
971 "_checkDisplayDelegate:",
972 "_checkFavoriteMode",
973 "_checkForCookieExpiration",
974 "_checkForObsoleteDelegateMethodsInObject:",
975 "_checkForSimpleTrackingMode",
976 "_checkForTerminateAfterLastWindowClosed:",
977 "_checkForTimeouts",
978 "_checkGrammarInString:language:details:",
979 "_checkIfSpeakingThroughSpeechFeedbackWindowIsFinished:",
980 "_checkInList:listStart:markerRange:emptyItem:atEnd:inBlock:blockStart:",
981 "_checkLoadComplete",
982 "_checkLoadCompleteForThisFrame",
983 "_checkLoaded:rect:highlight:",
984 "_checkMiniMode:",
985 "_checkNavigationPolicyForRequest:dataSource:formState:andCall:withSelector:",
986 "_checkNewWindowPolicyForRequest:action:frameName:formState:andCall:withSelector:",
987 "_checkRotatedOrScaledFromBase",
988 "_checkSpellingForRange:excludingRange:",
989 "_checkToolTipDelay",
990 "_checkTrashiness",
991 "_checkWantsDynamicToolTips",
992 "_childFramesMatchItem:",
993 "_children",
994 "_childrenForNode:",
995 "_chooseBestMatchingFace",
996 "_chooseCachedResponse",
997 "_chooseCollection:",
998 "_chooseFace:",
999 "_chooseFamily:",
1000 "_chooseGuess:",
1001 "_chooseSize:",
1002 "_chooseSizeFromField:",
1003 "_chooseSizeFromList:",
1004 "_chooseSizeFromSlider:",
1005 "_chooseableIndexesFromIndexes:",
1006 "_chosenSpellServer:launchIfNecessary:",
1007 "_chunkAndCheckGrammarInString:language:usingSpellServer:details:",
1008 "_chunkAndFindMisspelledWordInString:language:learnedDictionaries:wordCount:usingSpellServer:",
1009 "_classDescriptionForName:",
1010 "_classDescriptionForName:suiteName:isValid:",
1011 "_classDescriptionFromKey:andContainerClassDescription:",
1012 "_classDescriptionsFromPropertyListDeclarations:suiteName:",
1013 "_classNameForType:",
1014 "_classOfObjectsInNestedHomogeneousArray:",
1015 "_classSynonymDescriptionsFromImplDeclarations:presoDeclarations:",
1016 "_cleanUpAfterSave",
1017 "_cleanUpAfterTransaction",
1018 "_cleanUpConnectionWithSynchronizePeerBinders:",
1019 "_cleanUpForCarbonAppTermination",
1020 "_cleanup",
1021 "_cleanupAndAuthenticate:sequence:conversation:invocation:raise:",
1022 "_cleanupBindingsWithExistingNibConnectors:exception:",
1023 "_cleanupHelpForQuit",
1024 "_cleanupMenuMaps",
1025 "_cleanupPausedActions",
1026 "_clear",
1027 "_clearAnimationInfo",
1028 "_clearAnyValidResponderOverride",
1029 "_clearCellFrame",
1030 "_clearChangedThisTransaction:",
1031 "_clearControlTintColor",
1032 "_clearCurrentAttachmentSettings",
1033 "_clearDefaultMenuFormRepresentation",
1034 "_clearDeletions",
1035 "_clearDependenciesWithPeerBindersInArray:",
1036 "_clearDictionaries",
1037 "_clearDirtyRectsForLockedTree",
1038 "_clearDirtyRectsForTree",
1039 "_clearDragMargins",
1040 "_clearEditingTextView:",
1041 "_clearErrors",
1042 "_clearEventMask",
1043 "_clearFocusForView",
1044 "_clearImageForLockFocusUse",
1045 "_clearInitialFirstResponderAndLastKeyViewIfAutoGenerated",
1046 "_clearInsertions",
1047 "_clearKeyCell",
1048 "_clearLastHitViewIfSelf",
1049 "_clearLiveResizeColumnLayoutInfo",
1050 "_clearMarkedRange",
1051 "_clearMarkedWidth",
1052 "_clearModalWindowLevel",
1053 "_clearMouseTracking",
1054 "_clearMouseTrackingForCell:",
1055 "_clearObserving",
1056 "_clearOriginalSnapshotAndInitializeRec:",
1057 "_clearOriginalSnapshotForObject:",
1058 "_clearPageCache",
1059 "_clearPendingChanges",
1060 "_clearRawProperties",
1061 "_clearRememberedEditingFirstResponder",
1062 "_clearSaveTimer",
1063 "_clearSelectedCell",
1064 "_clearSpellingForRange:",
1065 "_clearTemporaryAttributes",
1066 "_clearTemporaryAttributesForCharacterRange:changeInLength:",
1067 "_clearTrackingRects",
1068 "_clearUndoManageForFieldEditor:",
1069 "_clearUnneccessaryItems:",
1070 "_clearUnprocessedDeletions",
1071 "_clearUnprocessedInsertions",
1072 "_clearUnprocessedUpdates",
1073 "_clearUpdates",
1074 "_clearVisitedColumnContentWidths",
1075 "_clickedCharIndex",
1076 "_clientRedirectCancelled:",
1077 "_clientRedirectedTo:delay:fireDate:lockHistory:isJavaScriptFormAction:",
1078 "_clientsCreatingIfNecessary:",
1079 "_clipIndicator",
1080 "_clipIndicatorIsShowing",
1081 "_clipViewAncestor",
1082 "_clipViewBoundsChanged:",
1083 "_clippedItemViewers",
1084 "_clockAndCalendarAdvanceMonth:",
1085 "_clockAndCalendarAdvanceMonthButtonCell",
1086 "_clockAndCalendarCellSize",
1087 "_clockAndCalendarFillDayCell:withColor:inFrame:",
1088 "_clockAndCalendarGetClockFrame:calendarFrame:retreatMonthButtonCellFrame:advanceMonthButtonCellFrame:returnToHomeMonthButtonCellFrame:forDatePickerCellFrame:",
1089 "_clockAndCalendarKeyDown:inRect:ofView:",
1090 "_clockAndCalendarRetreatMonth:",
1091 "_clockAndCalendarRetreatMonthButtonCell",
1092 "_clockAndCalendarReturnToHomeMonth:",
1093 "_clockAndCalendarReturnToHomeMonthButtonCell",
1094 "_clockAndCalendarTakeDisplayedMonthFromDateValue",
1095 "_clockAndCalendarTrackMouse:inRect:ofView:untilMouseUp:",
1096 "_close",
1097 "_close:",
1098 "_closeAlertSheet:wasPresentedWithResult:inContext:",
1099 "_closeAndDeleteFileAsync",
1100 "_closeBlocksForParagraphStyle:atIndex:inString:",
1101 "_closeButtonOrigin",
1102 "_closeDocumentsStartingWith:shouldClose:closeAllContext:",
1103 "_closeFileAsync",
1104 "_closeFileSync",
1105 "_closeFlags:openFlags:inString:",
1106 "_closeForkAsync:",
1107 "_closeForkSync:",
1108 "_closeListsForParagraphStyle:atIndex:inString:",
1109 "_closeOldDataSources",
1110 "_closeSheet:andMoveParent:",
1111 "_closeWindow",
1112 "_cocoaErrorDescription",
1113 "_cocoaErrorString:",
1114 "_cocoaErrorString:alternate:",
1115 "_cocoaTypeNameFromIdentifier:",
1116 "_coerceValue:forKey:withDescription:",
1117 "_collapseAllAutoExpandedItems",
1118 "_collapseAutoExpandedItems:",
1119 "_collapseButtonOrigin",
1120 "_collapseItem:collapseChildren:clearExpandState:",
1121 "_collapseItemEntry:collapseChildren:clearExpandState:recursionLevel:",
1122 "_collapsePanel:andMoveParent:toFrame:",
1123 "_collapsedOrigin",
1124 "_collectApplicableUserInfoFormatters:max:",
1125 "_collectElasticRangeSurroundingCharacterAtIndex:minimumCharacterIndex:",
1126 "_collectItemViewerFrames:intoRectArray:",
1127 "_collectSubentities",
1128 "_collection:setHidden:save:",
1129 "_collectionImpl",
1130 "_collectionWithImpl:",
1131 "_collectionWithName:",
1132 "_collectionWithName:index:",
1133 "_collections",
1134 "_collectionsChanged:",
1135 "_color",
1136 "_colorAsString:",
1137 "_colorAtIndex:",
1138 "_colorByTranslatingRGBColorDescriptor:toType:inSuite:",
1139 "_colorComponentsForIndex:redComponent:greenComponent:blueComponent:",
1140 "_colorForMetal:",
1141 "_colorForMouseEvent:",
1142 "_colorForNode:property:",
1143 "_colorList",
1144 "_colorListNamed:forDeviceType:",
1145 "_colorPickerWithIdentifier:",
1146 "_colorPickers",
1147 "_colorRect",
1148 "_colorSpacesForColorPanelPaneUsingModel:",
1149 "_colorSyncProfileClass",
1150 "_colorSyncProfileSpace",
1151 "_colorWellCommonAwake",
1152 "_colorWithGradientImage:",
1153 "_colorizedImage:color:",
1154 "_columnAtLocation:",
1155 "_columnClosestToColumn:whenMoved:",
1156 "_columnRangeForDragImage",
1157 "_columnResizeChangeFrameOfColumn:toFrame:constrainWidth:resizeInfo:",
1158 "_columnWidthAutoSaveNameWithPrefix",
1159 "_commandDescriptionsFromPropertyListDeclarations:suiteName:",
1160 "_commandFromEvent:",
1161 "_commandMethodSelectorsByName",
1162 "_commandPopupRect",
1163 "_commitEditing",
1164 "_commitEditingAndEndUndo",
1165 "_commitEditingDiscardEditingCallback:",
1166 "_commitEditingOtherCallback:",
1167 "_commitIfReady",
1168 "_commitIfReady:",
1169 "_commitTransaction:",
1170 "_commonAwake",
1171 "_commonBeginModalSessionForWindow:relativeToWindow:modalDelegate:didEndSelector:contextInfo:",
1172 "_commonHandleRootOrCurrentDirectoryChanged",
1173 "_commonInit",
1174 "_commonInitFrame:styleMask:backing:defer:",
1175 "_commonInitIvarBlock",
1176 "_commonInitNSColorPickerColorSpacePopUp",
1177 "_commonInitNavMatrix",
1178 "_commonInitNavNodePopUpButton",
1179 "_commonInitSidebarItemView",
1180 "_commonInitSplitViewController",
1181 "_commonInitState",
1182 "_commonInitTokenAttachmentWithStringValue:",
1183 "_commonInitializationWithFrameName:groupName:",
1184 "_commonNavFilepathInputControllerInit",
1185 "_commonNewScroll:",
1186 "_commonSecureTextFieldInit:",
1187 "_commonSetupTokenFieldCell",
1188 "_commonTermination",
1189 "_compareForHeaderOrder:",
1190 "_compareNode:withDisplayName:toNode:withDisplayName:",
1191 "_compareWidthWithSuperview",
1192 "_compat_continuousScrollingCapable",
1193 "_compatibility_initWithUnkeyedCoder:",
1194 "_compatibility_takeValue:forKey:",
1195 "_compatibleListShouldUseAlternateSelectedControlColor",
1196 "_compatibleWithRulebookVersion:",
1197 "_compiledScriptID",
1198 "_complete:",
1199 "_completeNoRecursion:",
1200 "_completePathWithPrefix:intoString:matchesIntoArray:",
1201 "_completeProgressForConnectionDelegate:",
1202 "_completionsFromDocumentForPartialWordRange:",
1203 "_composite:delta:fromRect:toPoint:",
1204 "_compositeAndUnlockCachedImage",
1205 "_compositeFlipped:atPoint:fromRect:operation:fraction:",
1206 "_compositeFlipped:inRect:fromRect:operation:fraction:",
1207 "_compositeHiddenViewHighlight",
1208 "_compositeImage",
1209 "_compositePointInRuler",
1210 "_compositedBackground",
1211 "_computeAllRevealovers",
1212 "_computeAndAlignFirstClosestVisibleColumn",
1213 "_computeBounds",
1214 "_computeColorScaleIfNecessaryWithSize:",
1215 "_computeCommonItemViewers",
1216 "_computeCustomItemViewers",
1217 "_computeDisplayedLabelForRect:",
1218 "_computeDisplayedSizeOfString:",
1219 "_computeDragImage",
1220 "_computeDragImageFromItemViewer:",
1221 "_computeExecutablePath",
1222 "_computeFirstCompletelyVisibleColumn",
1223 "_computeFirstMostlyVisibleColumn",
1224 "_computeFirstVisibleColumnRequireCompletelyVisible:",
1225 "_computeInv",
1226 "_computeLayoutInfoForIconViewSize:frameSize:iconFrame:labelFrame:",
1227 "_computeMaxItemViewHeight",
1228 "_computeMenuForClippedItems",
1229 "_computeMenuForClippedItemsIfNeeded",
1230 "_computeMinHeightForSimpleSavePanel:",
1231 "_computeMinWidthForSimpleSavePanel:",
1232 "_computeMinimumDisplayedLabelForWidth:",
1233 "_computeMinimumDisplayedLabelSize",
1234 "_computeNominalDisplayedLabelSize",
1235 "_computeOrderedItemViewersOfType:",
1236 "_computeOrderedItemViewersOfType:inRange:resizeableOnly:",
1237 "_computeOriginForRow:cacheHint:",
1238 "_computeParams",
1239 "_computePriorFirstResponder",
1240 "_computeResizeableCustomItemViewersInRange:",
1241 "_computeToolbarItemKeyboardLoop",
1242 "_computeToolbarItemKeyboardLoopIfNecessary",
1243 "_computeTravelTimeForInsertionOfItemViewer:",
1244 "_computeWidthForSpace",
1245 "_computedAttributesForElement:",
1246 "_computedStringForNode:property:",
1247 "_computedStyleForElement:",
1248 "_concatenateKeyWithIBCreatorID:",
1249 "_concealBinding:",
1250 "_concludeDefaultKeyLoopComputation",
1251 "_concludeReloadChildrenForNode:",
1252 "_concreteInputContextClass",
1253 "_conditionallySetsStates",
1254 "_configSheetDidEnd:returnCode:contextInfo:",
1255 "_configurationAutosaveName",
1256 "_configureAccessoryView",
1257 "_configureAsMainMenu",
1258 "_configureAsSeparatorItem",
1259 "_configureBottomControls",
1260 "_configureCell:forItemAtIndex:",
1261 "_configureDirectoryPopup",
1262 "_configureFileListModeControlForMode:",
1263 "_configureForDirectory:name:",
1264 "_configureForFileListMode:",
1265 "_configureForShowingInPanel",
1266 "_configureGreyButton:index:",
1267 "_configureHistoryControl",
1268 "_configureLabelCellStringValue",
1269 "_configureMDParts",
1270 "_configureMessageView",
1271 "_configurePathComponentPicker",
1272 "_configureSavePane",
1273 "_configureSearching:",
1274 "_configureStreamDetails:",
1275 "_configureTextViewForWordWrapMode",
1276 "_confirmSize:force:",
1277 "_conformsToProtocolNamed:",
1278 "_connectToCookieStorage",
1279 "_connectionWasBroken",
1280 "_connectionWasEstablished",
1281 "_consistencyCheck:",
1282 "_consistencyError:startAtZeroError:cacheError:inconsistentBlockError:",
1283 "_constrainAndSetDateValue:sendActionIfChanged:beepIfNoChange:",
1284 "_constrainColorIndexToVisibleBounds:dirtyIfNeeded:",
1285 "_constrainDateValue:",
1286 "_constrainPoint:withEvent:",
1287 "_constrainSheetAndDisplay:",
1288 "_constructRequestForURL:isHead:",
1289 "_containerRelativeFrameOfColumn:",
1290 "_containerRelativeFrameOfInsideOfColumn:",
1291 "_containerRelativeTitleFrameOfColumn:",
1292 "_containerTextViewFrameChanged:",
1293 "_containerViewOfColumns",
1294 "_containerViewOfTitles",
1295 "_contentHasShadow",
1296 "_contentRectExcludingToolbar",
1297 "_contentRectForTextBlock:glyphRange:",
1298 "_contentRectIncludingToolbarAtHome",
1299 "_contentToFrameMaxXWidth",
1300 "_contentToFrameMaxXWidth:",
1301 "_contentToFrameMaxYHeight",
1302 "_contentToFrameMaxYHeight:",
1303 "_contentToFrameMinXWidth",
1304 "_contentToFrameMinXWidth:",
1305 "_contentToFrameMinYHeight",
1306 "_contentToFrameMinYHeight:",
1307 "_contentView",
1308 "_contents",
1309 "_contentsOfHTMLData:encoding:strippingTagsSeparatedByString:",
1310 "_contextAuxiliary",
1311 "_contextByfeContext:",
1312 "_contextMenuEvent",
1313 "_contextMenuImpl",
1314 "_contextMenuTarget",
1315 "_contextMenuTargetForEvent:",
1316 "_continueAfterNavigationPolicy:",
1317 "_continueAfterNewWindowPolicy:",
1318 "_continueAfterWillSubmitForm:",
1319 "_continueFragmentScrollAfterNavigationPolicy:formState:",
1320 "_continueLoadRequestAfterNavigationPolicy:formState:",
1321 "_continueLoadRequestAfterNewWindowPolicy:frameName:formState:",
1322 "_continueModalOperationPastPrintPanel",
1323 "_continueModalOperationToTheEnd:",
1324 "_continueMovementTracking",
1325 "_continueRunWithStartTime:duration:",
1326 "_continuousCheckingAllowed",
1327 "_controlAppearanceChangesOnKeyStateChange",
1328 "_controlColor",
1329 "_controlMenuKnownAbsent:",
1330 "_controlSizeForScrollers",
1331 "_controlTintChanged:",
1332 "_controlView:textView:doCommandBySelector:",
1333 "_controllerEditor:didCommit:contextInfo:",
1334 "_controllerForNode:createControllers:",
1335 "_controllerKeys",
1336 "_controllerNodeForObjectAtIndexPath:createControllers:error:",
1337 "_convert:row:point:cacheHint:",
1338 "_convert:toValueClassUsing:",
1339 "_convertCharacters:length:toGlyphs:",
1340 "_convertPersistentItem:",
1341 "_convertPoint:fromAncestor:",
1342 "_convertPoint:toAncestor:",
1343 "_convertPointFromSuperview:test:",
1344 "_convertPointToSuperview:",
1345 "_convertRect:fromAncestor:",
1346 "_convertRect:toAncestor:",
1347 "_convertRectFromSuperview:test:",
1348 "_convertRectToSuperview:",
1349 "_convertStringToData:",
1350 "_convertStringToNumber:",
1351 "_convertToQDRect:",
1352 "_convertToText:",
1353 "_convertUnicodeCharacters:length:toGlyphs:",
1354 "_convertValueToObjcValue:root:",
1355 "_cookieRequestHeaderFieldsForURL:withExtraCookies:",
1356 "_cookieToV0HeaderSegment",
1357 "_cookiesForURL:withExtraCookies:",
1358 "_copyDescription",
1359 "_copyDetailsFromBinder:",
1360 "_copyDragCursor",
1361 "_copyFlattenedPath",
1362 "_copyImageToPasteboard",
1363 "_copyLinkFromMenu:",
1364 "_copyMutableSetFromToManyArray:",
1365 "_copyObject:toContainer:withKey:atIndex:replace:",
1366 "_copyObjectsInContainer:toContainer:withKey:atIndex:replace:",
1367 "_copyOfCustomView",
1368 "_copyOldAttributesFromFilePath:andNewAttributes:toFileAtPath:",
1369 "_copyReplacingURLWithURL:",
1370 "_copyValueOfDescriptorType:toBuffer:ofLength:",
1371 "_coreCursorType",
1372 "_cornerViewFrame",
1373 "_cornerViewHidesWithVerticalScroller",
1374 "_count",
1375 "_countBindings",
1376 "_countDisplayedDescendantsOfItem:",
1377 "_countDueToReceiver:",
1378 "_countOfValuesInContainer:withKey:",
1379 "_counterImpl",
1380 "_counterWithImpl:",
1381 "_counterpart",
1382 "_crackPoint:",
1383 "_crackRect:",
1384 "_crackSize:",
1385 "_crayonMaskImage",
1386 "_crayonRowAboveRow:",
1387 "_crayonRowBelowRow:",
1388 "_crayonWithColor:",
1389 "_crayons",
1390 "_createATSUTextLayoutForRun:style:",
1391 "_createAlert",
1392 "_createAndShowProgressPanelIfAppropriate:",
1393 "_createArrayWithObjectsAtIndexes:",
1394 "_createAttributeDescriptionForNode:",
1395 "_createAuxData",
1396 "_createBackingStore",
1397 "_createCGColorWithAlpha:",
1398 "_createCachedImage:",
1399 "_createCachesAndOptimizeState",
1400 "_createCells",
1401 "_createClipIndicatorIfNecessary",
1402 "_createColumn:empty:",
1403 "_createDefaultCollectionRep",
1404 "_createDefaultOrUnflattenPageFormatIfNecessary",
1405 "_createDefaultOrUnflattenPrintSettingsIfNecessary",
1406 "_createDockMenu:",
1407 "_createElementContent:",
1408 "_createEllipsisRunWithStringRange:attributes:",
1409 "_createFSRefForPath:",
1410 "_createFileDatabase",
1411 "_createFileIfNecessary",
1412 "_createFloatStorage",
1413 "_createFontPanelRepFromCollection:removingHidden:",
1414 "_createFontPanelSizeRep",
1415 "_createFrameNamed:inParent:allowsScrolling:",
1416 "_createImage:::",
1417 "_createImageForLockFocusUseIfNecessary",
1418 "_createItem:",
1419 "_createItemFromItemIdentifier:",
1420 "_createItemTreeWithTargetFrame:clippedAtTarget:",
1421 "_createKeyValueBindingForKey:name:bindingType:",
1422 "_createLRUList:",
1423 "_createMenuMapLock",
1424 "_createMovieController",
1425 "_createMungledDictionary:",
1426 "_createMutableArrayValueGetterWithContainerClassID:key:",
1427 "_createMutableSetValueGetterWithContainerClassID:key:",
1428 "_createMutableSetValueWithSelector:",
1429 "_createMutationMethodsOnObject:forKey:",
1430 "_createNewNodePreviewHelper",
1431 "_createNonExecutableFilterWithKernelFile:filterDescription:",
1432 "_createNonNilMutableArrayValueWithSelector:",
1433 "_createOtherValueGetterWithContainerClassID:key:",
1434 "_createOtherValueSetterWithContainerClassID:key:",
1435 "_createPDFImageRep",
1436 "_createPageCacheForItem:",
1437 "_createPattern",
1438 "_createPatternFromRect:",
1439 "_createPrefix",
1440 "_createProfileFor:",
1441 "_createRangeWithNode:",
1442 "_createRawData",
1443 "_createRelationshipDescriptionForNode:",
1444 "_createScrollViewAndWindow",
1445 "_createSelectedRowEntriesArrayIncludingExpandable:includingUnexpandable:withCurrentExpandState:",
1446 "_createStatusItemControlInWindow:",
1447 "_createStatusItemWindow",
1448 "_createSubfields",
1449 "_createSurface",
1450 "_createTemporaryFolderOnVolume:orHiddenInFolder:andReturnRef:",
1451 "_createTemporaryMOIDsForObjects:",
1452 "_createTextView",
1453 "_createTimer",
1454 "_createTimer:",
1455 "_createValueGetterWithContainerClassID:key:",
1456 "_createValuePrimitiveGetterWithContainerClassID:key:",
1457 "_createValuePrimitiveSetterWithContainerClassID:key:",
1458 "_createValueSetterWithContainerClassID:key:",
1459 "_createWakeupPort",
1460 "_createWindowOpaqueShape",
1461 "_createWindowsMenuEntryWithTitle:enabled:",
1462 "_createdDate",
1463 "_creteCachedImageLockIfNeeded",
1464 "_crunchyRawUnbonedPanel",
1465 "_ctTypesetter",
1466 "_currentAttachmentIndex",
1467 "_currentAttachmentRect",
1468 "_currentBackForwardListItemToResetTo",
1469 "_currentBranchImage",
1470 "_currentClient",
1471 "_currentDeadKeyChar",
1472 "_currentFileModificationDate",
1473 "_currentFont",
1474 "_currentInputFilepath",
1475 "_currentListLevel",
1476 "_currentListNumber",
1477 "_currentLocalMousePoint",
1478 "_currentPath",
1479 "_currentPoint",
1480 "_currentSuiteName",
1481 "_cursorRectCursor",
1482 "_cursorRectForColumn:",
1483 "_customMetrics",
1484 "_customTitleCell",
1485 "_customTitleFrame",
1486 "_customizationPaletteSheetWindow",
1487 "_customizesAlwaysOnClickAndDrag",
1488 "_cycleDrawers:",
1489 "_cycleDrawersBackwards:",
1490 "_cycleDrawersReversed:",
1491 "_cycleUtilityWindowsReversed:",
1492 "_cycleWindows:",
1493 "_cycleWindowsBackwards:",
1494 "_cycleWindowsReversed:",
1495 "_dListElementImpl",
1496 "_darkBlueColor",
1497 "_darkGrayRGBColor",
1498 "_dashboardBehavior:",
1499 "_dataForURLComponentType:",
1500 "_dataForkReferenceNumber",
1501 "_dataFromBase64String:",
1502 "_dataIfDoneBufferingData:",
1503 "_dataSource",
1504 "_dataSourceChild:ofItem:",
1505 "_dataSourceIsItemExpandable:",
1506 "_dataSourceNumberOfChildrenOfItem:",
1507 "_dataSourceRespondsToSortDescriptorsDidChange",
1508 "_dataSourceRespondsToWriteDragData",
1509 "_dataSourceSetValue:forColumn:row:",
1510 "_dataSourceValueForColumn:row:",
1511 "_dataWithConversionForType:",
1512 "_dataWithoutConversionForType:",
1513 "_databaseContextState",
1514 "_dateByTranslatingLongDateTimeDescriptor:toType:inSuite:",
1515 "_dateForIfModifiedSince",
1516 "_dateForString:",
1517 "_dateValue",
1518 "_dateWithCookieDateString:",
1519 "_deactivate",
1520 "_deactivateTrackingRectsForApplicationDeactivation",
1521 "_deactivateWindows",
1522 "_dealloc",
1523 "_deallocAuxiliary",
1524 "_deallocAuxiliaryStorage",
1525 "_deallocCursorRects",
1526 "_deallocData",
1527 "_deallocExtraData",
1528 "_deallocHardCore:",
1529 "_deallocateGState",
1530 "_deallocatePPDStuff",
1531 "_debug",
1532 "_debugAETEElementClassDescriptions",
1533 "_debugDrawRowNumberForRow:clipRect:",
1534 "_debugDrawRowNumberInCell:withFrame:forRow:",
1535 "_debugHeightBucketArrayDescription",
1536 "_debugLoggingLevel",
1537 "_decodeArrayOfObjectsForKey:",
1538 "_decodeByte",
1539 "_decodeDepth",
1540 "_decodeDownloadData:",
1541 "_decodeDownloadData:dataForkData:resourceForkData:",
1542 "_decodeDownloadHeaderData:dataForkData:resourceForkData:",
1543 "_decodePropertyListForKey:",
1544 "_decodeWithoutNameWithCoder:newStyle:",
1545 "_decrementInUseCounter",
1546 "_decrementLine:",
1547 "_decrementPage:",
1548 "_decrementSelectedSubfield",
1549 "_deepCollectEntitiesInArray:entity:",
1550 "_defaultButtonPaused",
1551 "_defaultDocIcon",
1552 "_defaultFacesForFamily:",
1553 "_defaultFontSet",
1554 "_defaultGlyphForChar:",
1555 "_defaultHandler",
1556 "_defaultItemIdentifiers",
1557 "_defaultKnobColor",
1558 "_defaultLineHeight:",
1559 "_defaultLineHeightForUILayout",
1560 "_defaultMessageAttributes",
1561 "_defaultNewFolderName",
1562 "_defaultObjectClass",
1563 "_defaultObjectClassName",
1564 "_defaultProgressIndicatorColor",
1565 "_defaultScriptingComponent",
1566 "_defaultSecondaryColor",
1567 "_defaultSelectedKnobColor",
1568 "_defaultSelectionColor",
1569 "_defaultSortDescriptorPrototypeKey",
1570 "_defaultTitlebarTitleRect",
1571 "_defaultType:",
1572 "_defaultValueForAttribute:range:",
1573 "_defaultWritingDirection",
1574 "_deferredAdjustMovie",
1575 "_deferredWindowChanged",
1576 "_defersCallbacksChanged",
1577 "_delayedDeactiveWindowlessWell:",
1578 "_delayedEnableRevealoverComputationAfterScrollWheel:",
1579 "_delayedFreeRowEntryFreeList",
1580 "_delayedUpdateSwatch:",
1581 "_delayedWriteColors",
1582 "_delegate:handlesKey:",
1583 "_delegateDoesNotCreateRowsInMatrix",
1584 "_delegateDragOperationForDraggingInfo:",
1585 "_delegateDragSourceActionMask",
1586 "_delegateRespondsToGetToolTip",
1587 "_delegateRespondsToSelectCellsByRow",
1588 "_delegateRespondsToWillDisplayCell",
1589 "_delegateTokensFromPasteboard:",
1590 "_delegateValidation:object:uiHandled:",
1591 "_delegateWillDisplayCell:forColumn:row:",
1592 "_delegateWillDisplayCellIfNecessary:forColumn:row:",
1593 "_delegateWillDisplayOutlineCell:forColumn:row:",
1594 "_delegateWriteTokens:toPasteboard:",
1595 "_delegatedObject",
1596 "_deleteFileAsnyc",
1597 "_deleteNode:byEntityName:",
1598 "_deleteRange:preflight:killRing:prepend:smartDeleteOK:",
1599 "_deleteSelection",
1600 "_deleteWithDirection:granularity:killRing:",
1601 "_deliverData",
1602 "_deltaForResizingImageRepView:",
1603 "_deltaForResizingTextField:",
1604 "_deltasFromSnapshot:",
1605 "_depopulateOpenRecentMenu:",
1606 "_deregisterForAutosaveNotification",
1607 "_descStringForFont:",
1608 "_descendantFrameNamed:",
1609 "_descriptionValues",
1610 "_descriptionWithTabCount:",
1611 "_descriptor",
1612 "_descriptorByTranslatingArray:ofObjectsOfType:inSuite:",
1613 "_descriptorByTranslatingColor:ofType:inSuite:",
1614 "_descriptorByTranslatingData:ofType:inSuite:",
1615 "_descriptorByTranslatingDate:ofType:inSuite:",
1616 "_descriptorByTranslatingDictionary:ofType:inSuite:",
1617 "_descriptorByTranslatingNull:ofType:inSuite:",
1618 "_descriptorByTranslatingNumber:ofType:inSuite:",
1619 "_descriptorByTranslatingString:ofType:inSuite:",
1620 "_descriptorByTranslatingTextStorage:ofType:inSuite:",
1621 "_descriptorWithNumber:",
1622 "_deselectAllAndEndEditingIfNecessary:",
1623 "_deselectAllExcept::andDraw:",
1624 "_deselectColumn:",
1625 "_deselectRowRange:",
1626 "_desiredKeyEquivalent",
1627 "_desiredKeyEquivalentModifierMask",
1628 "_desiredTextAreaSize",
1629 "_destinationEntityForToOne:",
1630 "_destinationFloatValueForScroller:",
1631 "_destroyAllPluginsInPendingPageCaches",
1632 "_destroyFloatStorage",
1633 "_destroyRealWindow",
1634 "_destroyRealWindow:",
1635 "_destroyRealWindowForAllDrawers",
1636 "_destroyRealWindowIfNeeded",
1637 "_destroyStream",
1638 "_destroyStreamWithReason:",
1639 "_destroyTSMDocument:",
1640 "_destroyTimer",
1641 "_destroyWakeupPort",
1642 "_detachChildren",
1643 "_detachFromParent",
1644 "_detachFromParentWindow",
1645 "_detachSheetWindow",
1646 "_detatchNextAndPreviousForAllSubviews",
1647 "_detatchNextAndPreviousForView:",
1648 "_detectTrackingMenuChangeWithScreenPoint:",
1649 "_determineDropCandidateForDragInfo:",
1650 "_deviceClosePath",
1651 "_deviceCurveToPoint:controlPoint1:controlPoint2:",
1652 "_deviceLineToPoint:",
1653 "_deviceMoveToPoint:",
1654 "_dictionary",
1655 "_dictionaryByTranslatingAERecord:toType:inSuite:",
1656 "_dictionaryForSavedConfiguration",
1657 "_dictionaryForSerialNumber:remove:clear:",
1658 "_didAccessValueForKey:",
1659 "_didCancelAuthenticationChallenge:",
1660 "_didChangeBackForwardKeys",
1661 "_didChangeValue:forRelationship:named:withInverse:",
1662 "_didChangeValueForKey:",
1663 "_didChangeValuesForArrangedKeys:objectKeys:indexPathKeys:",
1664 "_didCloseFile:",
1665 "_didCommitLoadForFrame:",
1666 "_didCreateFile",
1667 "_didDeleteFile",
1668 "_didEndSheet:returnCode:contextInfo:",
1669 "_didFailLoadWithError:forFrame:",
1670 "_didFailProvisionalLoadWithError:forFrame:",
1671 "_didFailWithError:",
1672 "_didFinishLoadForFrame:",
1673 "_didFinishLoading",
1674 "_didFinishReturnCachedResponse:",
1675 "_didLoadData:lengthReceived:",
1676 "_didMountDeviceAtPath:",
1677 "_didNSOpenOrPrint",
1678 "_didPresentDiscardEditingSheetWithRecovery:contextInfo:",
1679 "_didPresentModalAlert:contextInfo:",
1680 "_didReceiveAuthenticationChallenge:",
1681 "_didReceiveResponse:cacheStoragePolicy:",
1682 "_didSave",
1683 "_didSaveChanges",
1684 "_didSelectPopup:",
1685 "_didSetFocusForCell:withKeyboardFocusClipView:",
1686 "_didStartProvisionalLoadForFrame:",
1687 "_didTurnIntoFault",
1688 "_didUnmountDeviceAtPath:",
1689 "_dimmedImage:",
1690 "_dimpleDoubleClicked:event:",
1691 "_dimpleDragStarted:event:",
1692 "_direction",
1693 "_directoryListElementImpl",
1694 "_dirtyRect",
1695 "_dirtyRectUncoveredFromOldDocFrame:byNewDocFrame:",
1696 "_dirtyRegion",
1697 "_disableAutosavingAndColumnResizingNotificationsAndMark:",
1698 "_disableChangeNotifications",
1699 "_disableChangeSync",
1700 "_disableCompositing",
1701 "_disableEnablingKeyEquivalentForDefaultButtonCell",
1702 "_disableLayout",
1703 "_disableMovedPosting",
1704 "_disablePosting",
1705 "_disableResizedPosting",
1706 "_disableSecurity:",
1707 "_disableSelectionPosting",
1708 "_disableToolTipCreationAndDisplay",
1709 "_disableTrackingRect:",
1710 "_disabledTrackingInNeighborhoodOfMouse",
1711 "_discardCursorRectsForView:",
1712 "_discardEditing",
1713 "_discardEditingForAllBinders",
1714 "_discardEditingOfView:",
1715 "_discardEventsFromSubthread:",
1716 "_discardEventsWithMask:eventTime:",
1717 "_discardMarkedText",
1718 "_discardTrackingRect:",
1719 "_discardTrackingRects:count:",
1720 "_discardValidateAndCommitValue:",
1721 "_diskCacheClear",
1722 "_diskCacheCreateDirectory",
1723 "_diskCacheCreateLRUList:",
1724 "_diskCacheDefaultPath",
1725 "_diskCacheExecuteRemoval:",
1726 "_diskCacheExecuteWrite:",
1727 "_diskCacheGet:",
1728 "_diskCacheScheduleRemoval:",
1729 "_diskCacheScheduleWrite:",
1730 "_diskCacheSetSyncTimer",
1731 "_diskCacheSync:",
1732 "_diskCacheSyncLoop:",
1733 "_diskCacheTruncate:",
1734 "_dismissModeless:",
1735 "_dismissSheet:",
1736 "_dispatchCallBack:flags:error:",
1737 "_dispatchCallBackWithError:",
1738 "_displayAllDrawersIfNeeded",
1739 "_displayChanged",
1740 "_displayDelayedMenu",
1741 "_displayIfNeeded",
1742 "_displayName",
1743 "_displayName:",
1744 "_displayProfileChanged",
1745 "_displayProfileChanged:",
1746 "_displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:",
1747 "_displaySomeWindowsIfNeeded:",
1748 "_displayTemporaryToolTipForView:withDisplayDelegate:displayInfo:",
1749 "_displayTemporaryToolTipForView:withString:",
1750 "_displayToolTipIfNecessaryIgnoringTime:",
1751 "_displayWidth",
1752 "_displayedLabel",
1753 "_displayedLabelForRect:",
1754 "_dispose:",
1755 "_disposeBackingStore",
1756 "_disposeMovieController",
1757 "_disposeObjects:",
1758 "_disposeSurface",
1759 "_distForGlyphLocation:",
1760 "_distanceForVerticalArrowKeyMovement",
1761 "_distanceFromBaseToTopOfWindow",
1762 "_distanceFromToolbarBaseToTitlebar",
1763 "_distanceInDragDirectionBeforeDragAttempt",
1764 "_distanceInNonDragDirectionBeforeAbortingDragAttempt",
1765 "_distributeAvailableSpaceIfNecessary:toFlexibleSizedItems:lastItemIsRightAligned:",
1766 "_divElementImpl",
1767 "_doActualViewPrinting",
1768 "_doAnimation",
1769 "_doAnimationStep",
1770 "_doAnimationStepWithProgress:",
1771 "_doAttachDrawer",
1772 "_doAttachDrawerIgnoreHidden:",
1773 "_doAutoscroll:",
1774 "_doAutoscrolling",
1775 "_doAutoselectEdge",
1776 "_doBidiProcessing",
1777 "_doCallback",
1778 "_doChangeDirectoryForUserDrillIntoNode:",
1779 "_doClickAndQueueSendingOfAction:",
1780 "_doClickAndQueueSendingOfAction:removeAndAddColumnsIfNecessary:",
1781 "_doCloseDrawer",
1782 "_doCommandBySelector:forInputManager:",
1783 "_doDelayedAutocomplete",
1784 "_doDelayedValidateVisibleToolbarItems",
1785 "_doDeleteInReceiver:",
1786 "_doDetachDrawer",
1787 "_doEditOperation:",
1788 "_doFinalAnimationStep",
1789 "_doFindIndexesOfNodes:inDirectory:visitedNodes:",
1790 "_doHide",
1791 "_doImageDragUsingRows:event:pasteboard:source:slideBack:",
1792 "_doImageDragUsingRowsWithIndexes:event:pasteboard:source:slideBack:",
1793 "_doInvokeServiceIn:msg:pb:userData:error:unhide:",
1794 "_doLayoutTabs:",
1795 "_doLayoutWithFullContainerStartingAtGlyphIndex:nextGlyphIndex:",
1796 "_doModalLoop:peek:",
1797 "_doModifySelectionWithEvent:onColumn:",
1798 "_doNameCheck:",
1799 "_doOpenDrawer",
1800 "_doOpenFile:ok:tryTemp:",
1801 "_doOpenFiles:",
1802 "_doOpenUntitled",
1803 "_doOptimizedLayoutStartingAtGlyphIndex:forSoftLayoutHole:inTextContainer:lineLimit:nextGlyphIndex:",
1804 "_doOrderWindow:relativeTo:findKey:forCounter:force:isModal:",
1805 "_doPageArea:finishPage:helpedBy:pageLabel:",
1806 "_doPopupSearchString",
1807 "_doPositionDrawer",
1808 "_doPositionDrawerAndSize:parentFrame:",
1809 "_doPositionDrawerAndSize:parentFrame:stashSize:",
1810 "_doPostColumnConfigurationDidChangeNotification:",
1811 "_doPostedModalLoopMsg:",
1812 "_doPreSaveAssignmentsForRequest:",
1813 "_doPrintFiles:withSettings:showPrintPanels:",
1814 "_doRemoveDrawer",
1815 "_doRemoveFromSuperviewWithOutNeedingDisplay:",
1816 "_doResetOfCursorRects:revealovers:",
1817 "_doResizeDrawerWithDelta:fromFrame:",
1818 "_doRotationOnly",
1819 "_doRunLoop",
1820 "_doScroller:",
1821 "_doScroller:hitPart:multiplier:",
1822 "_doSelectIndexes:byExtendingSelection:indexType:funnelThroughSingleIndexVersion:",
1823 "_doSetAccessoryView:topView:bottomView:oldView:",
1824 "_doSetAccessoryView:topView:bottomView:previousKeyView:oldView:",
1825 "_doSetParentWindow:",
1826 "_doSingleStep:inView:",
1827 "_doSlideDrawerWithDelta:",
1828 "_doSomeBackgroundLayout",
1829 "_doStartDrawer",
1830 "_doStopDrawer",
1831 "_doSynchronizationOfEditedFieldForColumnWidthChange",
1832 "_doTypeSelectNodeInDirectory:withSearchString:visitedNodes:expandedNodesToVisit:recursively:",
1833 "_doUnhideWithoutActivation",
1834 "_doUpdate:",
1835 "_doUpdateFromSnapshot:deltas:",
1836 "_doUserComplete",
1837 "_doUserExpandOrCollapseOfItem:isExpand:optionKeyWasDown:",
1838 "_doUserParagraphStyleLineHeightMultiple:min:max:lineSpacing:paragraphSpacingBefore:after:isFinal:",
1839 "_doUserPathWithOp:inContext:",
1840 "_doUserRemoveMarkerFormatInRange:",
1841 "_doUserSetAttributes:removeAttributes:",
1842 "_doUserSetListMarkerFormat:options:",
1843 "_doUserSetListMarkerFormat:options:inRange:level:",
1844 "_docController:shouldTerminate:",
1845 "_dockDied",
1846 "_dockRestarted",
1847 "_document:didPrint:forScriptCommand:",
1848 "_document:didPrint:inContext:",
1849 "_document:didSave:contextInfo:",
1850 "_document:didSave:forScriptCommand:",
1851 "_document:pageLayoutDidReturn:contextInfo:",
1852 "_document:shouldClose:contextInfo:",
1853 "_document:shouldClose:forScriptCommand:",
1854 "_documentController:didPrint:appleEventSuspensionID:",
1855 "_documentForURL:",
1856 "_documentFragmentFromPasteboard:allowPlainText:",
1857 "_documentFragmentWithArchive:",
1858 "_documentFragmentWithImageResource:",
1859 "_documentFragmentWithImpl:",
1860 "_documentFragmentWithPaths:",
1861 "_documentFromRange:document:documentAttributes:subresources:",
1862 "_documentImpl",
1863 "_documentInfoDictionary",
1864 "_documentRange",
1865 "_documentTypeImpl",
1866 "_documentTypeString",
1867 "_documentWindow",
1868 "_documentWithImpl:",
1869 "_doesOwnRealWindow",
1870 "_donePoofing",
1871 "_dontCountTowardsOriginLoadLimit",
1872 "_dosetTitle:andDefeatWrap:",
1873 "_doubleClickAtIndex:limitedRangeOK:",
1874 "_downloadAssessment",
1875 "_downloadAssessmentWithInitialData:",
1876 "_downloadEnded",
1877 "_downloadFinished",
1878 "_downloadStarted",
1879 "_downloadURL:",
1880 "_downloadURL:toDirectory:",
1881 "_downloadWithLoadingConnection:request:response:delegate:proxy:",
1882 "_downloadWithRequest:delegate:directory:",
1883 "_dragCanBeginFromHorizontalMouseMotion",
1884 "_dragCanBeginFromSomeMouseMotion",
1885 "_dragCanBeginFromVerticalMouseMotion",
1886 "_dragDataItemViewer",
1887 "_dragEndedNotification:",
1888 "_dragFile:fromRect:slideBack:event:showAsModified:",
1889 "_dragGlyphRange",
1890 "_dragImageForLinkElement:",
1891 "_dragImageForRowsWithIndexes:tableColumns:event:offset:",
1892 "_dragLocalSource",
1893 "_dragShouldBeginFromMouseDown:",
1894 "_dragUntilMouseUp:accepted:",
1895 "_draggedColumnImageInset",
1896 "_draggingDocumentViewAtWindowPoint:",
1897 "_drawAlternatingRowBackgroundColors:inRect:",
1898 "_drawAnalogClockWithFrame:inView:",
1899 "_drawAnimationStep",
1900 "_drawAsMultiClippedContentInRect:",
1901 "_drawAtomPartsWithRect:",
1902 "_drawAtomPartsWithRect:cellFrame:",
1903 "_drawAtomWithRect:cellFrame:",
1904 "_drawBackgroundForGlyphRange:atPoint:parameters:",
1905 "_drawBackgroundWithFrame:inView:",
1906 "_drawBezelBorder:inRect:",
1907 "_drawBorder",
1908 "_drawBorder:inRect:",
1909 "_drawBorderInRect:",
1910 "_drawCellAt::insideOnly:",
1911 "_drawCenteredVerticallyInRect:",
1912 "_drawClockAndCalendarWithFrame:inView:",
1913 "_drawColumn:",
1914 "_drawColumnHeaderRange:",
1915 "_drawContents:faceColor:textColor:inView:",
1916 "_drawContentsAtRow:column:clipRect:",
1917 "_drawContinuousCapacityWithFrame:inView:",
1918 "_drawCustomTrackWithTrackRect:inView:",
1919 "_drawDelegate",
1920 "_drawDiscreteCapacityWithFrame:inView:",
1921 "_drawDone:success:",
1922 "_drawDropHighlight",
1923 "_drawDropHighlightBetweenUpperRow:andLowerRow:atOffset:",
1924 "_drawDropHighlightOffScreenIndicatorPointingLeftAtOffset:",
1925 "_drawDropHighlightOffScreenIndicatorPointingUp:atOffset:",
1926 "_drawDropHighlightOnRow:",
1927 "_drawEmptyColumnsForView:inRect:",
1928 "_drawEndCapInRect:",
1929 "_drawFocusRingWithFrame:",
1930 "_drawFooterInRect:",
1931 "_drawForTransitionInWindow:usingHalftonePhaseForWindowOfSize:",
1932 "_drawFrame",
1933 "_drawFrame:",
1934 "_drawFrameInterior:clip:",
1935 "_drawFrameShadowAndFlushContext:",
1936 "_drawFromRect:toRect:operation:alpha:compositing:flipped:ignoreContext:",
1937 "_drawGapStyleDropHighlightBetweenUpperRow:andLowerRow:atOffset:inGapRect:",
1938 "_drawGlyphsForGlyphRange:atPoint:parameters:",
1939 "_drawGrowBoxWithClip:",
1940 "_drawHeaderAndFooter",
1941 "_drawHeaderCell:withFrame:withStateFromColumn:",
1942 "_drawHeaderFillerInRect:matchLastState:",
1943 "_drawHeaderInRect:",
1944 "_drawHeaderOfColumn:",
1945 "_drawHighlightWithFrame:inView:",
1946 "_drawHighlighted:",
1947 "_drawIcon",
1948 "_drawIndicatorInRect:",
1949 "_drawInsertionPointIfNecessary",
1950 "_drawInsertionPointInRect:color:",
1951 "_drawKeyViewOutline:",
1952 "_drawKeyboardFocusRingWithFrame:",
1953 "_drawKeyboardFocusRingWithFrame:forCell:",
1954 "_drawKeyboardFocusRingWithFrame:inView:",
1955 "_drawKeyboardUIIndicationForView:debuggingIndex:",
1956 "_drawKeyboardUILoopStartingAtResponder:validOnly:",
1957 "_drawLabelHighlightIfNecessaryWithFrame:inView:fullHighlight:",
1958 "_drawLineForGlyphRange:inContext:from:to:at:thickness:lineOrigin:breakForDescenders:",
1959 "_drawLineForGlyphRange:type:baselineOffset:lineFragmentRect:lineFragmentGlyphRange:containerOrigin:isStrikethrough:",
1960 "_drawLiveResizeCachedImage",
1961 "_drawLiveResizeHighlightWithFrame:inView:",
1962 "_drawMatrix",
1963 "_drawMenuFrame:",
1964 "_drawMiniWindow:",
1965 "_drawOptimizedRectFills",
1966 "_drawOrientedLabel:inRect:",
1967 "_drawOutlineCell:withFrame:inView:",
1968 "_drawOverflowHeaderInRect:",
1969 "_drawProgressArea",
1970 "_drawRatingWithFrame:inView:",
1971 "_drawRealTitleWithFrame:inView:",
1972 "_drawRect:clip:",
1973 "_drawRect:liveResizeCacheCoveredArea:",
1974 "_drawRect:liveResizeFill::::cacheCoveredArea:",
1975 "_drawRect:withOpaqueAncestor:",
1976 "_drawRectIfEmpty",
1977 "_drawRectIfEmptyWhenSubviewsCoverDirtyRect:",
1978 "_drawRelevancyWithFrame:inView:",
1979 "_drawRemainderArea",
1980 "_drawRepresentation:",
1981 "_drawResizeIndicators:",
1982 "_drawRevealoverWithFrame:inView:forView:",
1983 "_drawRowHeaderBackgroundInRect:",
1984 "_drawRowHeaderSeparatorAsSurface",
1985 "_drawRowHeaderSeparatorInClipRect:",
1986 "_drawScrollViewFocusRing:clipRect:needsFullDisplay:",
1987 "_drawSortIndicatorIfNecessaryWithFrame:inView:",
1988 "_drawStandardPopUpBorderWithFrame:inView:",
1989 "_drawTabViewItem:inRect:",
1990 "_drawTableExteriorFocusRingIfNecessaryInClipRect:",
1991 "_drawTextFieldWithStepperWithFrame:inView:",
1992 "_drawThemeBackground",
1993 "_drawThemeBezelBorder:inRect:",
1994 "_drawThemeBezelWithFrame:inView:",
1995 "_drawThemeComboBoxButtonWithFrame:inView:",
1996 "_drawThemeContents:highlighted:inView:",
1997 "_drawThemePopUpBorderWithFrame:inView:bordered:style:",
1998 "_drawThemeProgressArea:",
1999 "_drawThemeTab:withState:inRect:",
2000 "_drawTickMarksWithFrame:inView:",
2001 "_drawTitleBar:",
2002 "_drawTitleStringIn:withColor:",
2003 "_drawTitlebar:",
2004 "_drawTitledFrame:",
2005 "_drawTitlesForView:inRect:",
2006 "_drawToolbarTransitionIfNecessary",
2007 "_drawUnifiedToolbar:",
2008 "_drawUnifiedToolbarBackgroundInRect:withState:",
2009 "_drawView:",
2010 "_drawViewBackgroundInRect:",
2011 "_drawWindowsGaugeRects:",
2012 "_drawWithImageCache",
2013 "_drawerTakeFocus",
2014 "_drawerVelocity",
2015 "_drawerWindow",
2016 "_drawingEndSeparator",
2017 "_drawingInRevealover",
2018 "_drawingRectForPart:",
2019 "_drawnByAncestor",
2020 "_drawsBackground",
2021 "_drawsHorizontalGrid",
2022 "_drawsNothing",
2023 "_drawsOutsideBBox",
2024 "_drawsOwnDescendants",
2025 "_drawsVerticalGrid",
2026 "_drawsWithTintWhenHidden",
2027 "_dropNode:",
2028 "_dstDraggingExitedAtPoint:draggingInfo:stillInViewBounds:",
2029 "_dumpSetRepresentation:",
2030 "_dynamicColorsChanged:",
2031 "_dynamicToolTipManager",
2032 "_dynamicToolTipManagerClass",
2033 "_dynamicToolTipManagerInstances",
2034 "_dynamicToolTipsEnabled",
2035 "_edge",
2036 "_edges",
2037 "_editableBinderForTableColumn:",
2038 "_editableStateWithMode:",
2039 "_editedDocumentCount",
2040 "_editingDelegateForwarder",
2041 "_editingFirstResponderIfIsASubview",
2042 "_editingInView:",
2043 "_editor:didChangeEditingState:bindingAdaptor:",
2044 "_effect",
2045 "_effectiveFocusRingType",
2046 "_elementAtWindowPoint:",
2047 "_elementAttributeRelationship",
2048 "_elementFromTidyDoc:element:",
2049 "_elementImpl",
2050 "_elementIsBlockLevel:",
2051 "_elementWithImpl:",
2052 "_embedElementImpl",
2053 "_emptyContents",
2054 "_emptyStyle",
2055 "_enableAutosavingAndColumnResizingNotifications",
2056 "_enableChangeNotifications",
2057 "_enableChangeSync",
2058 "_enableCompositing",
2059 "_enableEnablingKeyEquivalentForDefaultButtonCell",
2060 "_enableItems",
2061 "_enableLayout",
2062 "_enableLogging:",
2063 "_enableMatrixLiveResizeImageCacheing",
2064 "_enableMovedPosting",
2065 "_enablePosting",
2066 "_enableResizedPosting",
2067 "_enableSecurity:",
2068 "_enableSelectionPostingAndPost",
2069 "_enableToolTipCreationAndDisplay",
2070 "_enableTrackingRect:",
2071 "_enabledStateWithMode:",
2072 "_enablesOnWindowChangedKeyState",
2073 "_enclosingBrowser",
2074 "_enclosingBrowserView",
2075 "_enclosingSidebarItem",
2076 "_enclosingSidebarView",
2077 "_encodeArrayOfObjects:forKey:",
2078 "_encodeByte:",
2079 "_encodeDepth:",
2080 "_encodeMapTable:forTypes:withCoder:",
2081 "_encodePropertyList:forKey:",
2082 "_encodeWithoutNameWithCoder:newStyle:",
2083 "_encounteredCloseError",
2084 "_endChanging",
2085 "_endColumnAnimationOptimization",
2086 "_endCustomizationMode",
2087 "_endCustomizationPalette:",
2088 "_endCustomizationPanel",
2089 "_endDragging",
2090 "_endDrawForDragging",
2091 "_endDrawView:",
2092 "_endEditingIfEditedCellIsChildOfItemEntry:",
2093 "_endEditingIfFirstResponderIsASubview",
2094 "_endEditingIfNecessaryWhenDeselectingColumnRange:",
2095 "_endEditingIfNecessaryWhenDeselectingRowRange:",
2096 "_endEditingIfNecessaryWhenSelectingColumnRange:byExtendingSelection:",
2097 "_endEditingIfNecessaryWhenSelectingRowRange:byExtendingSelection:",
2098 "_endInsertionOptimization",
2099 "_endInsertionOptimizationWithDragSource:force:",
2100 "_endListeningForApplicationStatusChanges",
2101 "_endListeningForDeviceStatusChanges",
2102 "_endListeningForPowerStatusChanges",
2103 "_endListeningForSessionStatusChanges",
2104 "_endLiveResize",
2105 "_endLiveResizeAsTopLevel",
2106 "_endLiveResizeForAllDrawers",
2107 "_endMyEditing",
2108 "_endMyEditingAndRemainFirstResponder",
2109 "_endOfParagraphAtIndex:",
2110 "_endScrolling",
2111 "_endTabWidth",
2112 "_endToolbarEditingMode",
2113 "_endTopLevelGroupings",
2114 "_enqueueEndOfEventNotification",
2115 "_ensureAndLockPreferredLanguageLock",
2116 "_ensureCapacity:",
2117 "_ensureLayoutCompleteToEndOfCharacterRange:",
2118 "_ensureLocalizationDictionaryIsLoaded",
2119 "_ensureMetadataLoaded",
2120 "_ensureMinAndMaxSizesConsistentWithBounds",
2121 "_ensureObjectsAreMutable",
2122 "_ensureRangeCapacity:",
2123 "_ensureSelectionAfterRemoveWithPreferredIndex:sendObserverNotifications:",
2124 "_ensureSubviewNextKeyViewsAreSubviews",
2125 "_enterElement:tag:display:",
2126 "_enterLibXML2ElementNode:tag:",
2127 "_entity",
2128 "_entityClass",
2129 "_entityDescriptionForObjectID:",
2130 "_entityForCurrentRow",
2131 "_entityForExternalName:inConfigurationNamed:",
2132 "_entityForName:",
2133 "_entityID",
2134 "_entityImpl",
2135 "_entryForPath:",
2136 "_entryForSpecifier:",
2137 "_enumeratedArgumentBindings:",
2138 "_enumeratedBindings:storage:number:numberFirstBinding:maxNumber:",
2139 "_enumeratedDisplayPatternTitleBindings:",
2140 "_enumeratedEditableBindings:",
2141 "_enumeratedEnabledBindings:",
2142 "_enumeratedHiddenBindings:",
2143 "_enumeratedPredicateBindings:",
2144 "_enumerationBinding",
2145 "_enumeratorDescriptionsFromImplDeclarations:presoDeclarations:",
2146 "_equalyResizeColumnsByDelta:resizeInfo:",
2147 "_errorAlert:wasPresentedWithResult:inContext:",
2148 "_errorWasPresentedWithRecovery:inContext:",
2149 "_errorWithCode:",
2150 "_escapeCharacters:amount:inString:appendingToString:",
2151 "_escapeHTMLAttributeCharacters:withQuote:appendingToString:",
2152 "_escapedStringForString:escapeQuotes:",
2153 "_evaluateRelativeToObjectInContainer:",
2154 "_evaluateToBeginningOrEndOfContainer:",
2155 "_evaluationErrorNumber",
2156 "_eventImpl",
2157 "_eventInTitlebar:",
2158 "_eventRecordDelta:",
2159 "_eventRef",
2160 "_eventRelativeToWindow:",
2161 "_eventWithImpl:",
2162 "_evilHackToClearlastLeftHitInWindow",
2163 "_excludeObject:fromPropertyWithKey:",
2164 "_excludedFromVisibleWindowList",
2165 "_execute",
2166 "_executeAdd:didCommitSuccessfully:actionSender:",
2167 "_executeAddChild:didCommitSuccessfully:actionSender:",
2168 "_executeFetch:didCommitSuccessfully:actionSender:",
2169 "_executeInsert:didCommitSuccessfully:actionSender:",
2170 "_executeInsertChild:didCommitSuccessfully:actionSender:",
2171 "_executePerformAction",
2172 "_executeSQLString:",
2173 "_executeSave:didCommitSuccessfully:actionSender:",
2174 "_executeSelectNext:didCommitSuccessfully:actionSender:",
2175 "_executeSelectPrevious:didCommitSuccessfully:actionSender:",
2176 "_executionContext",
2177 "_existsForArray:",
2178 "_exitElement:tag:display:startIndex:",
2179 "_exitLibXML2ElementNode:tag:startIndex:",
2180 "_expand",
2181 "_expandItemEntry:expandChildren:",
2182 "_expandItemEntry:expandChildren:startLevel:",
2183 "_expandRep:",
2184 "_expandSelectionToGranularity:",
2185 "_expandedNodesForObservedNode:",
2186 "_expirationDate",
2187 "_expirationForResponse:",
2188 "_expiresDate",
2189 "_explicitlyCannotAdd",
2190 "_explicitlyCannotAddChild",
2191 "_explicitlyCannotInsert",
2192 "_explicitlyCannotInsertChild",
2193 "_explicitlyCannotRemove",
2194 "_exposeBinding:valueClass:",
2195 "_exposedBindings",
2196 "_expressionWithSubstitutionVariables:",
2197 "_extendCharacterToGlyphMapToInclude:",
2198 "_extendGlyphToWidthMapToInclude:font:",
2199 "_extendNextScrollRelativeToCurrentPosition",
2200 "_extendUnicodeCharacterToGlyphMapToInclude:",
2201 "_extendedCharRangeForInvalidation:editedCharRange:",
2202 "_extendedGlyphRangeForRange:maxGlyphIndex:drawingToScreen:",
2203 "_extensionsFromTypeInfo:",
2204 "_extraWidthForCellHeight:",
2205 "_faceForFamily:fontName:",
2206 "_familyName",
2207 "_fastCStringContents:",
2208 "_fastCharacterContents",
2209 "_fastDrawGlyphs:advances:length:font:color:containerSize:usedRect:startingLocation:inRect:onView:context:pinToTop:",
2210 "_fastDrawString:attributes:length:inRect:graphicsContext:baselineRendering:usesFontLeading:usesScreenFont:typesetterBehavior:paragraphStyle:lineBreakMode:boundingRect:",
2211 "_fastGetCachedRect:forRow:",
2212 "_faultHandler",
2213 "_feContext",
2214 "_feImage",
2215 "_feSampler",
2216 "_feedbackWindowIsVisible",
2217 "_fetch:",
2218 "_fetchAllInstancesFromStore:intoContext:",
2219 "_fetchCurrentDirectory",
2220 "_fetchExpandedFrameSize",
2221 "_fetchExpandedState",
2222 "_fetchFileListMode",
2223 "_fetchOrderedByFileProperty:orderedAscending:",
2224 "_fetchRequestTemplatesByName",
2225 "_fetchRootDirectory",
2226 "_fetchUserSetHideExtensionButtonState",
2227 "_fieldEditor",
2228 "_fieldSetElementImpl",
2229 "_fileAttributes",
2230 "_fileAttributesToWriteToURL:ofType:forSaveOperation:originalContentsURL:error:",
2231 "_fileButtonOrigin",
2232 "_fileListModeControlCell",
2233 "_fileLocator",
2234 "_fileModificationDate",
2235 "_fileModificationDateForURL:",
2236 "_fileNameExtensionsForType:forUseInSavePanel:",
2237 "_fileOperation:source:destination:files:",
2238 "_fileOperationCompleted:",
2239 "_filePathValue",
2240 "_fileURLValue",
2241 "_fileWrapperForURL:",
2242 "_fileWrapperRepresentation",
2243 "_filenameForCollection:",
2244 "_filenameHasAcceptableFileType:",
2245 "_filenameHasNonEmptyAcceptableFileType:",
2246 "_fillBackground:withAlternateColor:",
2247 "_fillGlyphHoleAtIndex:desiredNumberOfCharacters:",
2248 "_fillGrayRect:with:",
2249 "_fillInBlock:forElement:backgroundColor:extraMargin:extraPadding:",
2250 "_fillLayoutHoleAtIndex:desiredNumberOfLines:",
2251 "_fillSpellCheckerPopupButton:",
2252 "_fillerRectHeight",
2253 "_fillsClipViewHeight",
2254 "_fillsClipViewWidth",
2255 "_filterList",
2256 "_filterNodeList:",
2257 "_filterObjects:",
2258 "_filterRestrictsInsertion",
2259 "_filteredAndSortedChildrenOfNode:",
2260 "_finalProgressComplete",
2261 "_finalScrollingOffsetFromEdge",
2262 "_finalize",
2263 "_finalizeStatement",
2264 "_findButtonImageForState:",
2265 "_findCoercerFromClass:toClass:",
2266 "_findColorListNamed:forDeviceType:",
2267 "_findCurrentEditor",
2268 "_findDictOrBitmapSetNamed:",
2269 "_findDragTargetFrom:",
2270 "_findFirstItemInArray:withItemIdentifier:",
2271 "_findFirstKeyViewInDirection:forKeyLoopGroupingView:",
2272 "_findFirstOne::",
2273 "_findFirstUserSelectableRowStartingAtRow:stoppingAtRow:byExtendingSelection:",
2274 "_findFirstValidKeyViewStartingFrom:inTabViewItem:",
2275 "_findFrameInThisWindowNamed:",
2276 "_findFrameNamed:",
2277 "_findHitItemViewer:",
2278 "_findIndexOfFirstDuplicateItemWithItemIdentier:",
2279 "_findItemViewerAtPoint:",
2280 "_findKeyLoopGroupingViewFollowingKeyLoopGroupingView:direction:",
2281 "_findLastViewInKeyViewLoop",
2282 "_findLastViewInKeyViewLoopStartingAtView:",
2283 "_findMisspelledWordInString:language:learnedDictionaries:wordCount:countOnly:",
2284 "_findParentWithLevel:beginingAtItem:childEncountered:",
2285 "_findPreviousNextTab:loop:startingAtTabItem:",
2286 "_findScrollerToAutoLiveScrollInWindow:",
2287 "_findSystemImageNamed:",
2288 "_findWindowUsingCache:",
2289 "_findWindowUsingRealWindowNumber:",
2290 "_finishAutosavingWithSuccess:",
2291 "_finishDownloadDecoding",
2292 "_finishHitTracking:",
2293 "_finishInitialization",
2294 "_finishMessagingClients:",
2295 "_finishModalOperation",
2296 "_finishPrintFilter:filter:",
2297 "_finishPrintingDocumentsInContext:success:",
2298 "_finishSaveDocumentTo:withType:forSaveOperation:withDelegate:didSaveSelector:contextInfo:",
2299 "_finishWritingFileAtPath:byMovingFileAtPath:",
2300 "_finishWritingFileNamed:inFolder:byExchangingWithFileInFolder:",
2301 "_finishedLoading",
2302 "_finishedLoadingResourceFromDataSource:",
2303 "_finishedMakingConnections",
2304 "_finishedWiringNibConnections",
2305 "_fireFirstAndSecondLevelFaultsForObject:withContext:",
2306 "_firstHighlightedCell",
2307 "_firstMoveableItemIndex",
2308 "_firstPassGlyphRangeForBoundingRect:inTextContainer:hintGlyphRange:okToFillHoles:",
2309 "_firstPassGlyphRangeForBoundingRect:inTextContainer:okToFillHoles:",
2310 "_firstPresentableName",
2311 "_firstResponderIsControl",
2312 "_firstSelectableRowInMatrix:inColumn:",
2313 "_firstTextViewChanged",
2314 "_fixCommandAlphaShifts",
2315 "_fixGlyphInfo:inRange:",
2316 "_fixHeaderAndCornerViews",
2317 "_fixJoiningOfSelectedAtoms",
2318 "_fixKeyViewForView:",
2319 "_fixSelectionAfterChangeInCharacterRange:changeInLength:",
2320 "_fixSharedData",
2321 "_fixTargetsForMenu:",
2322 "_fixedSelectionRangeForRange:affinity:",
2323 "_fixedSelectionRangesForRanges:affinity:",
2324 "_fixup:numElements:",
2325 "_fixupKeyboardLoop",
2326 "_fixupSortDescriptorPlaceholdersIfNecessary",
2327 "_flattenMenu:",
2328 "_flattenMenuItem:",
2329 "_floatWidthForRun:style:widths:fonts:glyphs:startPosition:numGlyphs:",
2330 "_flushAEDesc",
2331 "_flushAllCachedChildren",
2332 "_flushCachedCarbonPrintersByName",
2333 "_flushCachedChildrenForNode:",
2334 "_flushCachedObjects",
2335 "_flushNotificationQueue",
2336 "_focusDidChange:",
2337 "_focusFromView:withContext:",
2338 "_focusInto:withClip:",
2339 "_focusOnCache:",
2340 "_focusRingCGColor",
2341 "_focusRingFrameForFrame:cellFrame:",
2342 "_focusRingRect",
2343 "_focusRingVisibleRect",
2344 "_focusedCrayon",
2345 "_fondID",
2346 "_fontAttributesFromFontPasteboard",
2347 "_fontDescriptor",
2348 "_fontDescriptorForFontPanel",
2349 "_fontElementImpl",
2350 "_fontFaceRuleImpl",
2351 "_fontFallbackType",
2352 "_fontForName:size:",
2353 "_fontFromBindingsWithMode:referenceFont:fallbackFont:",
2354 "_fontFromDescriptor:",
2355 "_fontNameForFamily:face:",
2356 "_fontNameForFont:",
2357 "_fontSetChanged:",
2358 "_fontSetWithName:",
2359 "_fontWithNumber:size:bold:italic:",
2360 "_footerHeight",
2361 "_forKey:getType:andSuite:",
2362 "_forSRSpeechObject:objectForProperty:usingDataSize:withRequestedObjectClass:",
2363 "_forSRSpeechObject:setObject:forProperty:usingDataSize:",
2364 "_forceAppendItem:",
2365 "_forceCharIndexesAllocation",
2366 "_forceDisplayToBeCorrectForViewsWithUnlaidGlyphs",
2367 "_forceFixAttributes",
2368 "_forceFlushWindowToScreen",
2369 "_forceInsertItem:atIndex:",
2370 "_forceMoveItemFromIndex:toIndex:",
2371 "_forceOriginalFontBaseline",
2372 "_forceRedrawDragInsertionIndicator",
2373 "_forceRemoveItemFromIndex:",
2374 "_forceReplaceItemAtIndex:withItem:",
2375 "_forceResetTexturedWindowDragMargins",
2376 "_forceSendAction:notification:firstResponder:",
2377 "_forceSendDoubleActionForPreviewCell",
2378 "_forceSetColor:",
2379 "_forceSetLastEditedStringValue:",
2380 "_forceSetView:",
2381 "_forceUpdateDimpleLocation",
2382 "_forceUpdateFocusRing",
2383 "_forgetData:",
2384 "_forgetObject:propagateToObjectStore:",
2385 "_forgetSpellingFromMenu:",
2386 "_forgetWord:inDictionary:",
2387 "_formDelegate",
2388 "_formElementImpl",
2389 "_formElementWithImpl:",
2390 "_formatCocoaErrorString:parameters:applicableFormatters:count:",
2391 "_formatObjectValue:invalid:",
2392 "_fragmentData",
2393 "_fragmentImpl",
2394 "_frame",
2395 "_frameDuration",
2396 "_frameDurationAt:",
2397 "_frameElementImpl",
2398 "_frameForCurrentSelection",
2399 "_frameForDataSource:fromFrame:",
2400 "_frameForView:",
2401 "_frameForView:fromFrame:",
2402 "_frameLoadDelegateForwarder",
2403 "_frameOfColumns",
2404 "_frameOfOutlineCellAtRow:",
2405 "_frameOrBoundsChanged",
2406 "_frameSetElementImpl",
2407 "_frameViewAtWindowPoint:",
2408 "_freeCache:",
2409 "_freeClients",
2410 "_freeImage",
2411 "_freeNode:",
2412 "_freeNodes",
2413 "_freeRepresentation:",
2414 "_freeServicesMenu:",
2415 "_freeSpeechItems",
2416 "_freshnessLifetime",
2417 "_fromContainerInfo:andKeyCode:getAdjustedContainerInfo:andKey:",
2418 "_fromRecord:getContainerInfo:",
2419 "_fromRecord:getContainerInfo:andKey:",
2420 "_fromScreenCommonCode:",
2421 "_fsRefValue",
2422 "_fullDescription:",
2423 "_fullLayout",
2424 "_fullPathForService:",
2425 "_gatherFocusStateInto:upTo:withContext:",
2426 "_gaugeImage:",
2427 "_gc:",
2428 "_generateCompositedBackground",
2429 "_generateErrorDetailForKey:withValue:",
2430 "_generateErrorWithCode:andMessage:forKey:andValue:additionalDetail:",
2431 "_generateFrameName",
2432 "_generateHTML",
2433 "_generateIDWithSuperEntity:nextID:",
2434 "_generateInverseRelationshipsAndMore",
2435 "_generateMetalBackground",
2436 "_generateModel:",
2437 "_generatePSCodeHelpedBy:operation:",
2438 "_generateProperties",
2439 "_generateScaledBackground",
2440 "_generatedMIMETypeForURLScheme:",
2441 "_genericDragCursor",
2442 "_genericMutableSetValueForKey:",
2443 "_genericValueForKey:withIndex:flags:",
2444 "_getAETEElementClassDescriptions:exceptThoseWithKeys:andSupers:",
2445 "_getATSTypesetterGuts",
2446 "_getArguments:withParameters:",
2447 "_getAuxData",
2448 "_getBlockStart:end:contentsEnd:forRange:stopAtLineSeparators:",
2449 "_getBracketedStringFromBuffer:string:",
2450 "_getBrowser:browserColumn:",
2451 "_getBucketForSeekingToPoint:",
2452 "_getBucketForSeekingToRow:",
2453 "_getBucketLocationForBucket:",
2454 "_getButtonImageParts:::",
2455 "_getBytesAsData:maxLength:usedLength:encoding:options:range:remainingRange:",
2456 "_getCGCustomColorSpace",
2457 "_getCGImageRefCreateIfNecessary",
2458 "_getCacheWindow:andRect:forRep:",
2459 "_getCharactersAsStringInRange:",
2460 "_getColorFromImageAtPoint:",
2461 "_getColumn:row:cell:cellFrame:toolTipRect:wantsToolTip:wantsRevealover:atPoint:",
2462 "_getCommonTypeFor:",
2463 "_getConvertedDataFromPasteboard:",
2464 "_getCursorBitmapWidth:andHeight:",
2465 "_getData:encoding:",
2466 "_getDirtyRects:clippedToRect:count:boundingBox:",
2467 "_getDisplayDelay:inQuickMode:forView:",
2468 "_getDisplayDelegateFadesOutWhenInactive:",
2469 "_getDocInfoForKey:",
2470 "_getDocument",
2471 "_getDrawingRow:andCol:",
2472 "_getExternalData:",
2473 "_getFSRefForPath:",
2474 "_getFloat:forNode:property:",
2475 "_getFocusRingFrame",
2476 "_getFullyFormedCellAtColumn:row:",
2477 "_getGaugeFrame",
2478 "_getGlobalWindowNumber:andRect:forRepresentation:",
2479 "_getGlyphIndex:forWindowPoint:pinnedPoint:anchorPoint:useAnchorPoint:preferredTextView:partialFraction:",
2480 "_getGlyphIndex:forWindowPoint:pinnedPoint:preferredTextView:partialFraction:",
2481 "_getGlyphIndexForLocationInWindow:roundToClosest:fraction:layoutManager:textStorage:",
2482 "_getITypeFor:",
2483 "_getImageAndHotSpotFromCoreCursor",
2484 "_getInsertionGlyphIndexForDrag:",
2485 "_getInstanceForIdentifier:",
2486 "_getKernelFolderCPath",
2487 "_getKeys:forPropertyDescriptionKind:",
2488 "_getLocalPoint:",
2489 "_getLocalizedLabels:andLocalizedValues:",
2490 "_getMatchingRow:forString:inMatrix:startingAtRow:prefixMatch:caseSensitive:",
2491 "_getNewTemporaryId",
2492 "_getNextResizeEventInvalidatingLiveResizeCacheIfNecessary:",
2493 "_getNodeForKey:inTable:",
2494 "_getPageHeaderRect:pageFooterRect:forBorderSize:",
2495 "_getPartStruct:numberOfParts:withInnerBounds:",
2496 "_getPosition:",
2497 "_getPositionFromServer",
2498 "_getProgressFrame",
2499 "_getReceiversSpecifierOrUnnamedArgument:fromEvent:usingDescription:",
2500 "_getRemainderFrame",
2501 "_getRemainingNominalParagraphRange:andParagraphSeparatorRange:charactarIndex:layoutManager:string:",
2502 "_getRidOfCacheAndMarkYourselfAsDirty",
2503 "_getRow:andCol:ofCell:atRect:",
2504 "_getRow:column:nearPoint:",
2505 "_getRowHeaderFixedContentRect:rowHeaderScrollableContentVisibleRect:",
2506 "_getSelectorForType:",
2507 "_getSymbolForType:",
2508 "_getTextAreaFrame:stepperCellFrame:forDatePickerCellFrame:",
2509 "_getTextColor:backgroundColor:",
2510 "_getTiffImage:ownedBy:",
2511 "_getTiffImage:ownedBy:asImageRep:",
2512 "_getUUID",
2513 "_getUndoManager:",
2514 "_getVRefNumForPath:",
2515 "_getVisibleRowRange:columnRange:",
2516 "_getWindowCache:add:",
2517 "_giveUpFirstResponder:",
2518 "_globalIDChanged:",
2519 "_globalIDForObject:",
2520 "_globalIDsForObjects:",
2521 "_glyph",
2522 "_glyphAdvancementCache:",
2523 "_glyphAdvancementCache:renderingMode:",
2524 "_glyphForFont:baseString:",
2525 "_glyphIndexForCharacterIndex:startOfRange:okToFillHoles:",
2526 "_glyphRangeForBoundingRect:inTextContainer:fast:okToFillHoles:",
2527 "_glyphRangeForCharacterRange:actualCharacterRange:okToFillHoles:",
2528 "_goBack",
2529 "_goForward",
2530 "_goToHistoryState:",
2531 "_goToItem:withLoadType:",
2532 "_goneMultiThreaded",
2533 "_gradientImage",
2534 "_graphiteAlternatingRowColor",
2535 "_graphiteControlTintColor",
2536 "_graphiteKeyboardFocusColor",
2537 "_gray204Color",
2538 "_gray221Color",
2539 "_grestore",
2540 "_growBoxOwner",
2541 "_growBoxRect",
2542 "_growCachedRectArrayToSize:",
2543 "_growContentReshapeContentAndToolbarView:animate:",
2544 "_growFrameForDropGapStyle",
2545 "_growFrameForDropGapStyleIfNecessary",
2546 "_growWindowReshapeContentAndToolbarView:animate:",
2547 "_gsave",
2548 "_guaranteeStorageInDictionary:addBinding:",
2549 "_guess:",
2550 "_guessesForMisspelledSelection",
2551 "_handleAEOpen:",
2552 "_handleAEOpenContentsEvent:replyEvent:",
2553 "_handleAEOpenDocuments:",
2554 "_handleAEPrintDocuments:withSettings:showPrintPanels:",
2555 "_handleAEQuitWithActivating:documentSaving:",
2556 "_handleAEReopen",
2557 "_handleAppActivation:",
2558 "_handleApplyValueError:forBinding:canRecoverFromErrors:handleErrors:typeOfAlert:discardEditingCallback:otherCallback:callbackContextInfo:didRunAlert:",
2559 "_handleApplyValueResult:cachedValue:displayValue:objectValue:",
2560 "_handleAutoscrollForMouseDragged:",
2561 "_handleBoundsChangeForSubview:",
2562 "_handleCarbonEvent:callRef:",
2563 "_handleChildAdded:",
2564 "_handleChildAddedOrRemoved:",
2565 "_handleChildChanged:",
2566 "_handleChildRemoved:",
2567 "_handleChildrenChanged:",
2568 "_handleCommand:",
2569 "_handleCompletionsForPartialWordRange:indexOfSelectedItem:inTextView:",
2570 "_handleContentBoundsChanged",
2571 "_handleCoreEvent:withReplyEvent:",
2572 "_handleCurrentBrowsingNodePathChanged",
2573 "_handleCurrentDirectoryChanged:",
2574 "_handleCurrentDirectoryNodeChanged",
2575 "_handleCursorUpdate:",
2576 "_handleDefaultVoiceChange",
2577 "_handleDisabledNodeClicked:",
2578 "_handleDocumentFileChanges:",
2579 "_handleError:delta:fromRect:toPoint:",
2580 "_handleError:withError:",
2581 "_handleFauxDisabledNodeClicked:",
2582 "_handleFileListConfirmedSelection:",
2583 "_handleFileListDidReloadChildrenForNode:",
2584 "_handleFileListModeChanged",
2585 "_handleFileListModeChanged:",
2586 "_handleFileListSelectionChanged:",
2587 "_handleFocusToolbarHotKey:",
2588 "_handleFrameChangeForSubview:",
2589 "_handleGotoFinishedWithResult:",
2590 "_handleKeyEquivalent:",
2591 "_handleMessage:from:socket:",
2592 "_handleMouseUpWithEvent:",
2593 "_handleNameFieldContentsChanged",
2594 "_handleObservingRefresh",
2595 "_handlePhonemeCallbackWithOpcode:",
2596 "_handleQueryStateChange:",
2597 "_handleRecognitionBeginningWithRecognitionResult:",
2598 "_handleRecognitionDoneWithRecognitionResult:",
2599 "_handleRedrawSidebarSelectionIfNecessary",
2600 "_handleRootBoundsChanged",
2601 "_handleRootNodeChanged",
2602 "_handleRootNodeChanged:",
2603 "_handleSelectionChanged",
2604 "_handleSelectionConfirmed",
2605 "_handleSelfTestEvent:",
2606 "_handleSendControlSize:toCellOfView:",
2607 "_handleSendControlSize:toView:",
2608 "_handleSpeechDoneCallback",
2609 "_handleStyleKeyEquivalent:",
2610 "_handleTabKey:",
2611 "_handleTestEvent:withReplyEvent:",
2612 "_handleText:",
2613 "_handleUIEvents",
2614 "_handleUnimplementablePolicyWithErrorCode:forURL:",
2615 "_handleValidationError:description:inEditor:errorUserInterfaceHandled:bindingAdaptor:",
2616 "_handleWillPopUpNotification",
2617 "_handleWordCallbackWithParams:",
2618 "_hasActiveAppearance",
2619 "_hasActiveControls",
2620 "_hasActiveRequest",
2621 "_hasAttributedStringValue",
2622 "_hasBackgroundColor",
2623 "_hasBezelBorder",
2624 "_hasCredentials",
2625 "_hasCursorRects",
2626 "_hasCursorRectsForView:",
2627 "_hasCustomVisibilityPriority",
2628 "_hasDefaultButtonIndicator",
2629 "_hasEditableCell",
2630 "_hasExpirationDate",
2631 "_hasFocusRing",
2632 "_hasFocusRingInView:",
2633 "_hasGradientBackground",
2634 "_hasHorizontalOrientation",
2635 "_hasIconForIconURL:",
2636 "_hasImage",
2637 "_hasImageCache",
2638 "_hasKeyAppearance",
2639 "_hasKeyFocus",
2640 "_hasKeyboardFocus",
2641 "_hasKeyboardFocusInTabItem:",
2642 "_hasMainAppearance",
2643 "_hasMetalSheetEffect",
2644 "_hasNonNominalDescriptor",
2645 "_hasObservers",
2646 "_hasOverrideForSelector:",
2647 "_hasPendingChanges",
2648 "_hasQuestionMarkOnlyQueryString",
2649 "_hasRetainedStoreResources",
2650 "_hasRowHeaderColumn",
2651 "_hasScaledBackground",
2652 "_hasSeenRightToLeft",
2653 "_hasSelection",
2654 "_hasSelectionOrInsertionPoint",
2655 "_hasSeparateArrows",
2656 "_hasSheetFactor:",
2657 "_hasTabs",
2658 "_hasTitle",
2659 "_hasToolbar",
2660 "_hasWindowRef",
2661 "_hasWindowRefCreatedForCarbonControl",
2662 "_hash",
2663 "_hashMarkDictionary",
2664 "_hashMarkDictionaryForDocView:measurementUnitToBoundsConversionFactor:stepUpCycle:stepDownCycle:minimumHashSpacing:minimumLabelSpacing:",
2665 "_hashMarkDictionaryForDocumentView:measurementUnitName:",
2666 "_headElementImpl",
2667 "_headerCellRectOfColumn:",
2668 "_headerCellSizeOfColumn:",
2669 "_headerHeight",
2670 "_headerSizeOfColumn:",
2671 "_headingElementImpl",
2672 "_heartBeatBufferWindow",
2673 "_heartBeatThread:",
2674 "_heedBeginningOfPage:",
2675 "_heedBeginningOfPage:outOf:",
2676 "_heightIsFlexible",
2677 "_helpBundleForObject:",
2678 "_helpKeyForObject:",
2679 "_helperDeallocatedForView:layoutManager:",
2680 "_hiddenExtension",
2681 "_hiddenOnLaunch",
2682 "_hiddenStateWithMode:",
2683 "_hiddenWindows",
2684 "_hide",
2685 "_hide:",
2686 "_hideAllDrawers",
2687 "_hideChildren",
2688 "_hideLanguagePopUp",
2689 "_hideMDPartsIfNecessary",
2690 "_hideMenu:",
2691 "_hideQueryProgress",
2692 "_hideSheet:",
2693 "_hideToolbar:animate:",
2694 "_hideToolbarWithAnimation:",
2695 "_hideWithoutResizingWindowHint",
2696 "_highlightCell:atRow:column:andDraw:",
2697 "_highlightColor",
2698 "_highlightColorDependsOnWindowState",
2699 "_highlightColorForCell:",
2700 "_highlightColumn:clipRect:",
2701 "_highlightOutlineCell:highlight:withFrame:inView:",
2702 "_highlightRow:clipRect:",
2703 "_highlightTextColor",
2704 "_highlightedNodes",
2705 "_hiliteWindow:fromWindow:",
2706 "_hintedGetBucketIndex:bucketFirstRowIndex:containingRowIndex:",
2707 "_historyControlCell",
2708 "_hitTest:dragTypes:",
2709 "_hitTestCellContentAtColumn:row:point:",
2710 "_hitTestContentAtPoint:inRect:ofView:",
2711 "_horizontalKeyboardScrollDistance",
2712 "_horizontalPageScrollDistance",
2713 "_horizontalScroller",
2714 "_horizontalScrollerClass",
2715 "_horizontalScrollerSeparationHeight",
2716 "_hostData",
2717 "_hostString",
2718 "_hoverAreaIsSameAsLast:",
2719 "_htmlDocumentClass",
2720 "_htmlFromTidyNode:tidyDoc:appendingToString:",
2721 "_iconForCarbonIcon:size:",
2722 "_iconForFileURL:withSize:",
2723 "_iconForOSType:",
2724 "_iconForOSType:creator:",
2725 "_iconFromDictionary:forSize:cache:",
2726 "_iconLoaderReceivedPageIcon:",
2727 "_iconRef",
2728 "_iconsBySplittingRepresentationsOfIcon:",
2729 "_iconsForIconURLString:",
2730 "_idleMovies",
2731 "_ignoreForKeyViewLoop",
2732 "_ignoreSpellingFromMenu:",
2733 "_ignoringChangeNotifications",
2734 "_ignoringScrolling",
2735 "_image",
2736 "_imageElementImpl",
2737 "_imageElementWithImageResource:",
2738 "_imageExistsAtPaths:",
2739 "_imageForColorPicker:",
2740 "_imageForDrawingInRectOfSize:fromImage:",
2741 "_imageForMenu",
2742 "_imageFromItemTitle:",
2743 "_imageFromNewResourceLocation:",
2744 "_imageNamed:",
2745 "_imageNumber",
2746 "_imageRectWithRect:",
2747 "_imageRepClassForFileNameExtension:andHFSFileType:",
2748 "_imageRepWithData:hfsFileType:extension:",
2749 "_imageRepsWithData:fileType:hfsType:",
2750 "_imageRepsWithData:hfsFileType:extension:",
2751 "_imageSizeWithSize:",
2752 "_imagesFromIcon:inApp:zone:",
2753 "_imagesFromURL:forImage:fileType:extension:",
2754 "_imagesHaveAlpha",
2755 "_imagesWithData:hfsFileType:extension:zone:",
2756 "_imagesWithData:zone:",
2757 "_immediateChildFrameNamed:",
2758 "_immediateScrollToPoint:",
2759 "_imp",
2760 "_impactsWindowMoving",
2761 "_impl",
2762 "_implicitObservationInfo",
2763 "_implicitObservationInfoForEntity:forResultingClass:",
2764 "_importRuleImpl",
2765 "_inAutoCompleteTyping",
2766 "_inFavMode",
2767 "_inHideCollectionsMode",
2768 "_inHideFaceMode",
2769 "_inLiveResize",
2770 "_inMiniMode",
2771 "_inPreview",
2772 "_inQuickDisplayModeForWindow:",
2773 "_inResize:",
2774 "_inTSMPreProcess",
2775 "_inTexturedWindow",
2776 "_includeObject:intoPropertyWithKey:",
2777 "_incrementBy:startingAtIndex:",
2778 "_incrementInUseCounter",
2779 "_incrementLine:",
2780 "_incrementPage:",
2781 "_incrementProgressForConnectionDelegate:data:",
2782 "_incrementProgressForConnectionDelegate:response:",
2783 "_incrementSelectedSubfield",
2784 "_incrementUndoTransactionID",
2785 "_indexAtIndex:",
2786 "_indexClosestToIndex:equalAllowed:following:",
2787 "_indexForRed:green:blue:",
2788 "_indexOfColonInName",
2789 "_indexOfColonInString:",
2790 "_indexOfFirstGlyphInTextContainer:okToFillHoles:",
2791 "_indexOfItemWithPartialTitle:",
2792 "_indexOfKey:",
2793 "_indexOfNode:inOrderedNodes:",
2794 "_indexOfPopupItemForLanguage:",
2795 "_indexOfRangeAfterOrContainingIndex:",
2796 "_indexOfRangeBeforeOrContainingIndex:",
2797 "_indexOfRangeContainingIndex:",
2798 "_indexOfSubfieldAtPoint:inFrame:",
2799 "_indexPath",
2800 "_indicatorImage",
2801 "_indicatorImageForCellHeight:",
2802 "_infoForOSAError:",
2803 "_infoForPage:",
2804 "_informationForFont:glyphTable:positionTable:",
2805 "_init",
2806 "_init:",
2807 "_init::::",
2808 "_initContent:styleMask:backing:defer:contentView:",
2809 "_initContent:styleMask:backing:defer:counterpart:",
2810 "_initContentView",
2811 "_initData",
2812 "_initDefaultNamespaces",
2813 "_initEmptyHTMLNames",
2814 "_initFlippableViewCacheLock",
2815 "_initFromAbsolutePositionRecord:",
2816 "_initFromGlobalWindow:inRect:styleMask:",
2817 "_initFromRangeRecord:",
2818 "_initFromRecord:",
2819 "_initFromTestRecord:",
2820 "_initInStatusBar:withLength:withPriority:",
2821 "_initInfoDictionary",
2822 "_initJobVars",
2823 "_initLocks",
2824 "_initPanelCommon",
2825 "_initRemoteWithSignature:",
2826 "_initSaveMode",
2827 "_initServicesMenu:",
2828 "_initSidebarAndPopups",
2829 "_initSingleAttributes",
2830 "_initUI",
2831 "_initValueTransformers",
2832 "_initWithAbstractViewImpl:",
2833 "_initWithAddressInfo:",
2834 "_initWithArray:",
2835 "_initWithAttributesNoCopy:pageFormatNoCopy:orFlattenedData:printSettingsNoCopy:orFlattenedData:",
2836 "_initWithBitmapImageRep:",
2837 "_initWithBytesOfUnknownEncoding:length:copy:usedEncoding:",
2838 "_initWithCGColorSpaceNoCache:",
2839 "_initWithCGSEvent:",
2840 "_initWithCGSEvent:eventRef:",
2841 "_initWithCIImage:",
2842 "_initWithCSSStyleSheetImpl:",
2843 "_initWithCachedResponse:originalURL:",
2844 "_initWithClassDescription:synonymDescription:",
2845 "_initWithCollectionImpl:",
2846 "_initWithContentSize:preferredEdge:",
2847 "_initWithContentsOfFile:error:",
2848 "_initWithCounterImpl:",
2849 "_initWithDOMImplementationImpl:",
2850 "_initWithDOMRange:",
2851 "_initWithDOMStyleSheetImpl:",
2852 "_initWithData:bytesPerRow:size:format:params:",
2853 "_initWithData:error:",
2854 "_initWithData:fileType:hfsType:",
2855 "_initWithData:tiff:imageNumber:",
2856 "_initWithDataOfUnknownEncoding:",
2857 "_initWithDictionary:",
2858 "_initWithEntities:",
2859 "_initWithEntity:withID:withHandler:withContext:",
2860 "_initWithEventImpl:",
2861 "_initWithFileSpecifierOrStandardizedPath:",
2862 "_initWithGraph:mutable:",
2863 "_initWithGraphicsPort:flipped:",
2864 "_initWithIconRef:includeThumbnail:",
2865 "_initWithImage:options::",
2866 "_initWithImage:optionsList:",
2867 "_initWithImageReader:",
2868 "_initWithImageSource:imageNumber:properties:",
2869 "_initWithImpl:uniquedFileName:docInfo:imageData:parentWrapper:",
2870 "_initWithIncrementalImageReader:forImage:",
2871 "_initWithLibTidyDoc:child:",
2872 "_initWithLoadingConnection:request:response:delegate:proxy:",
2873 "_initWithLoadingResource:request:response:delegate:proxy:",
2874 "_initWithMediaListImpl:",
2875 "_initWithName:",
2876 "_initWithName:fromCMProfileRef:",
2877 "_initWithName:fromPath:forDeviceType:lazy:",
2878 "_initWithName:host:process:bundle:serverClass:keyBindings:",
2879 "_initWithName:printer:",
2880 "_initWithName:propertyList:",
2881 "_initWithName:type:",
2882 "_initWithName:type:withClassName:",
2883 "_initWithNamedNodeMapImpl:",
2884 "_initWithNodeFilterImpl:",
2885 "_initWithNodeImpl:",
2886 "_initWithNodeIteratorImpl:filter:",
2887 "_initWithNodeListImpl:",
2888 "_initWithObjectImp:root:",
2889 "_initWithObjectNoExceptions:",
2890 "_initWithObserver:property:options:context:",
2891 "_initWithOptionsCollectionImpl:",
2892 "_initWithOutput:",
2893 "_initWithParagraphStyle:",
2894 "_initWithParentObjectStore:",
2895 "_initWithPath:bundle:",
2896 "_initWithPickers:",
2897 "_initWithPluginErrorCode:contentURL:pluginPageURL:pluginName:MIMEType:",
2898 "_initWithProperties:",
2899 "_initWithProperties:commandName:resultTypeAppleEventCode:",
2900 "_initWithProperties:defaultSubcontainerAttributeKey:inverseRelationshipKeys:",
2901 "_initWithPropertyList:",
2902 "_initWithRGB:",
2903 "_initWithRTFSelector:argument:documentAttributes:",
2904 "_initWithRangeImpl:",
2905 "_initWithRectImpl:",
2906 "_initWithRequest:delegate:directory:",
2907 "_initWithResumeInformation:delegate:path:",
2908 "_initWithRetainedCFSocket:protocolFamily:socketType:protocol:",
2909 "_initWithRuleImpl:",
2910 "_initWithRuleListImpl:",
2911 "_initWithScriptIDNoCopy:",
2912 "_initWithSet:",
2913 "_initWithSharedBitmap:rect:",
2914 "_initWithSharedKitWindow:rect:",
2915 "_initWithSize:depth:separate:alpha:allowDeep:",
2916 "_initWithStream:data:topDict:",
2917 "_initWithStyleDeclarationImpl:",
2918 "_initWithStyleSheetListImpl:",
2919 "_initWithSuiteName:className:implDeclaration:presoDeclaration:",
2920 "_initWithSuiteName:commandName:implDeclaration:presoDeclaration:",
2921 "_initWithSuiteRegistry:",
2922 "_initWithTarget:action:",
2923 "_initWithTexture:size:params:",
2924 "_initWithThemeType:",
2925 "_initWithTreeWalkerImpl:filter:",
2926 "_initWithValueImpl:",
2927 "_initWithWindow:",
2928 "_initWithWindowNumber:",
2929 "_initWithWindowNumber:scaleFactor:",
2930 "_initWithfeImage:",
2931 "_initWithfeKernel:",
2932 "_initWithfeSampler:",
2933 "_initialize:::",
2934 "_initializeATSUStyle",
2935 "_initializeArchiverMappings",
2936 "_initializeButtonCell",
2937 "_initializeFromKeychain",
2938 "_initializePredefinedEntities",
2939 "_initializeRegisteredDefaults",
2940 "_initializeResumeInformation:",
2941 "_initializeScriptDOMNodeImp",
2942 "_initializeWithObjectImp:root:",
2943 "_inputClientChangedStatus:inputClient:",
2944 "_inputElementImpl",
2945 "_inputManagerInNextScript:",
2946 "_insertChildOrSibling:",
2947 "_insertDigit:",
2948 "_insertGlyphs:elasticAttributes:count:atGlyphIndex:characterIndex:",
2949 "_insertItemInSortedOrderWithTitle:action:keyEquivalent:",
2950 "_insertMatch:",
2951 "_insertNewItemWithItemIdentifier:atIndex:notifyDelegate:notifyView:notifyFamilyAndUpdateDefaults:",
2952 "_insertNode:byEntityName:",
2953 "_insertObject:atArrangedObjectIndex:objectHandler:",
2954 "_insertObject:atArrangedObjectIndexPath:objectHandler:",
2955 "_insertObjectInSortOrder:",
2956 "_insertObjectWithGlobalID:globalID:",
2957 "_insertRange:inArrayAtIndex:",
2958 "_insertStatusItemWindow:withPriority:",
2959 "_insertText:forInputManager:",
2960 "_insertText:selectInsertedText:",
2961 "_insertablePasteboardTypes",
2962 "_insertionGapForItemViewer:forDraggingSource:",
2963 "_insertionGlyphIndexForDrag:",
2964 "_insertionIndexPathAppendChildIndex:",
2965 "_insertionOrder",
2966 "_insertionPointDisabled",
2967 "_insetRect:",
2968 "_insideAnotherHTMLView",
2969 "_installActionButtonIfNecessary",
2970 "_installAutoreleasePoolsOnCurrentThreadIfNecessary",
2971 "_installCarbonAppDockHandlers",
2972 "_installCarbonWindowEventHandlers",
2973 "_installHeartBeat:",
2974 "_installLabel",
2975 "_installOpenRecentMenuOpeningEventHandler:",
2976 "_installOpenRecentsMenu",
2977 "_installRulerAccViewForParagraphStyle:ruler:enabled:",
2978 "_installWindowDepthHandler",
2979 "_intValue",
2980 "_integerValueForKey:",
2981 "_interceptEditingKeyEvent:",
2982 "_internalChildFrames",
2983 "_internalIndicesOfObjectsByEvaluatingWithContainer:count:",
2984 "_internalInit",
2985 "_internalLoadDelegate",
2986 "_internalNetService",
2987 "_internalXMLStringWithOptions:appendingToString:",
2988 "_invalidLabelSize",
2989 "_invalidNavNodePopUpLabelAction",
2990 "_invalidate",
2991 "_invalidateAllRevealovers",
2992 "_invalidateAllRevealoversForView:",
2993 "_invalidateBlinkTimer:",
2994 "_invalidateCachedRect",
2995 "_invalidateCompositedBackground",
2996 "_invalidateConnectionsAsNecessary:",
2997 "_invalidateCursorRectsForView:force:",
2998 "_invalidateDictionary:newTime:",
2999 "_invalidateDisplayForChangeOfSelectionFromRange:toRange:",
3000 "_invalidateDisplayForMarkedOrSelectedRange",
3001 "_invalidateDisplayIfNeeded",
3002 "_invalidateFocus",
3003 "_invalidateFont",
3004 "_invalidateForLiveResize",
3005 "_invalidateForSubviewFrameChange:oldSize:oldTopLeft:",
3006 "_invalidateGStatesForTree",
3007 "_invalidateGlyphsForCharacterRange:editedCharacterRange:changeInLength:actualCharacterRange:",
3008 "_invalidateGlyphsForExtendedCharacterRange:changeInLength:",
3009 "_invalidateImageProperties",
3010 "_invalidateImageTypeCaches",
3011 "_invalidateImages",
3012 "_invalidateInsertionPoint",
3013 "_invalidateKeyToIndexTable",
3014 "_invalidateLayoutForExtendedCharacterRange:isSoft:",
3015 "_invalidateLiveResizeCachedImage",
3016 "_invalidateNumberOfRowsCache",
3017 "_invalidateObjectValue",
3018 "_invalidateObjectsDuringSave",
3019 "_invalidateOrComputeNewCursorRectsIfNecessary",
3020 "_invalidatePendingPolicyDecisionCallingDefaultAction:",
3021 "_invalidateReleaseTimer",
3022 "_invalidateResourceForGraphicsContext:",
3023 "_invalidateRunLoopTimer",
3024 "_invalidateScaledBackground",
3025 "_invalidateTabsCache",
3026 "_invalidateTextColor",
3027 "_invalidateTitleCellSize",
3028 "_invalidateTitleCellWidth",
3029 "_invalidateUsageForTextContainersInRange:",
3030 "_invalidatedAllObjectsInStore:",
3031 "_invertedSkipSet",
3032 "_invokeActionByKeyForCurrentlySelectedItem",
3033 "_invokeMultipleSelector:withArguments:onKeyPath:atIndex:",
3034 "_invokeMultipleSelector:withArguments:onKeyPath:atIndexPath:",
3035 "_invokeSelector:withArguments:forBinding:",
3036 "_invokeSelector:withArguments:onKeyPath:",
3037 "_invokeSelector:withArguments:onKeyPath:ofObject:mode:raisesForNotApplicableKeys:",
3038 "_invokeSelector:withArguments:onKeyPath:ofObjectAtIndex:",
3039 "_invokeSelector:withArguments:onKeyPath:ofObjectAtIndexPath:",
3040 "_invokeSingleSelector:withArguments:onKeyPath:",
3041 "_isAXConnector",
3042 "_isAbsolute",
3043 "_isAcceptableDragSource:types:dragInfo:",
3044 "_isActivated",
3045 "_isAllowedFileType:",
3046 "_isAncestorOfViewIdenticalTo:",
3047 "_isAnimating",
3048 "_isAnimatingDefaultCell",
3049 "_isAnimatingScroll",
3050 "_isAnyBindingInMaskBound:",
3051 "_isAnyFontBindingBoundToController:",
3052 "_isAutoCreated",
3053 "_isAutoPlay",
3054 "_isBeingEdited",
3055 "_isBindingEstablished:",
3056 "_isBooleanBinding:",
3057 "_isBooleanTransformer",
3058 "_isButtonBordered",
3059 "_isCString",
3060 "_isCached",
3061 "_isCachedSeparately",
3062 "_isCaseInsensitiveEqualToCString:",
3063 "_isCaseSensitivePredicate:",
3064 "_isClientRedirect",
3065 "_isClosable",
3066 "_isContinuousSpellCheckingEnabledForNewTextAreas",
3067 "_isCtrlAltForHelpDesired",
3068 "_isCurrentlyGapStyleDropTarget",
3069 "_isDaylightSavingTimeForAbsoluteTime:",
3070 "_isDeactPending",
3071 "_isDeadkey",
3072 "_isDefaultFace",
3073 "_isDefaultFixedPitch",
3074 "_isDeleted",
3075 "_isDescendantOfFrame:",
3076 "_isDingbats",
3077 "_isDisplayingWebArchive",
3078 "_isDocModal",
3079 "_isDocWindow",
3080 "_isDocumentHTML",
3081 "_isDoingHide",
3082 "_isDoingOpenFile",
3083 "_isDoingUnhide",
3084 "_isDraggable",
3085 "_isDrawingForDragImage",
3086 "_isDrawingMultiClippedContentAtIndex:",
3087 "_isDrawingMultiClippedContentColumn:",
3088 "_isDroppedConnectionException:",
3089 "_isDying",
3090 "_isEditable",
3091 "_isEditing",
3092 "_isEditingTextView:",
3093 "_isEmptyMovie",
3094 "_isEnabled",
3095 "_isEqualToSortDescriptor:",
3096 "_isEventProcessingDisabled",
3097 "_isExpired",
3098 "_isExplicitlyNonEditable",
3099 "_isFSObjectExchangingAllowed",
3100 "_isFSObjectExchangingAllowedOn:",
3101 "_isFSObjectExchangingDesired",
3102 "_isFakeFixedPitch",
3103 "_isFault",
3104 "_isFauxFilePackageNode:",
3105 "_isFileClosed",
3106 "_isFixedPitch",
3107 "_isForPrivateBrowsing",
3108 "_isFromSDEF",
3109 "_isGapStyleDropTargetForRow:operation:mask:",
3110 "_isGenericProfile",
3111 "_isGrabber",
3112 "_isHidden",
3113 "_isHiragino",
3114 "_isHiraginoFont",
3115 "_isImageCache",
3116 "_isInCustomizationMode",
3117 "_isInUILayoutMode",
3118 "_isIndexElementImpl",
3119 "_isInheritedPropertyNamed:",
3120 "_isInitialized",
3121 "_isInserted",
3122 "_isInternalFontName:",
3123 "_isItemViewerMoveable:",
3124 "_isKVOA",
3125 "_isKeyPathBound:",
3126 "_isKeyWindow",
3127 "_isKeyWindowIgnoringFocus",
3128 "_isLeafObject:",
3129 "_isLoading",
3130 "_isLoadingSDEFFiles",
3131 "_isLocatedByURL:withCache:",
3132 "_isLucidaGrande",
3133 "_isMaintainingInverse",
3134 "_isManagedController",
3135 "_isManagedObjectOrEntityDescriptionContainerClassID:key:",
3136 "_isMiniaturizable",
3137 "_isModal",
3138 "_isMoveDrag",
3139 "_isMoving",
3140 "_isNSColorDrag:",
3141 "_isNSDocumentBased",
3142 "_isNodeFileTypeEnabled:",
3143 "_isNonactivatingPanel",
3144 "_isNullExpression:",
3145 "_isOnePieceTitleAndToolbar",
3146 "_isOrdered",
3147 "_isPaged",
3148 "_isPaletteView",
3149 "_isPendingDeletion",
3150 "_isPendingInsertion",
3151 "_isPendingUpdate",
3152 "_isPerformingProgrammaticFocus",
3153 "_isPoint:inDragZoneOfRow:",
3154 "_isPostOrRedirectAfterPost:redirectResponse:",
3155 "_isProfileBased",
3156 "_isReadOnly",
3157 "_isReferenceBinding:",
3158 "_isReservedWordInParser:",
3159 "_isResizable",
3160 "_isReturnStructInRegisters",
3161 "_isRunningAppModal",
3162 "_isRunningDocModal",
3163 "_isRunningModal",
3164 "_isSaveFilenameLengthLegal",
3165 "_isScriptingEnabled",
3166 "_isScrolling",
3167 "_isSelectableItemIdentifier:",
3168 "_isSelectionEvent:",
3169 "_isSelectionMisspelled",
3170 "_isSheet",
3171 "_isShowingKeyboardFocus",
3172 "_isSidebarCollapsed",
3173 "_isStopping",
3174 "_isStrictByParsingExcludedElements",
3175 "_isStringDrawingTextStorage",
3176 "_isSuitableForFastStringDrawingWithAlignment:lineBreakMode:tighteningFactorForTruncation:",
3177 "_isSymbol",
3178 "_isSynonym",
3179 "_isSystemFont",
3180 "_isTabEnabled",
3181 "_isTableColumn:boundWithKeyPath:",
3182 "_isTextured",
3183 "_isThreadedAnimationLooping",
3184 "_isTitleHidden",
3185 "_isToolTipCreationAndDisplayEnabled",
3186 "_isUnmarking",
3187 "_isUpdated",
3188 "_isUsedByCell",
3189 "_isUsedForLocking",
3190 "_isUserRemovable",
3191 "_isUsingManagedProxy",
3192 "_isUtility",
3193 "_isUtilityWindow",
3194 "_isValid",
3195 "_isVertical",
3196 "_isViewValidOriginalNextKeyView:",
3197 "_item",
3198 "_itemAdded:",
3199 "_itemAtIndex:",
3200 "_itemAtPosition:",
3201 "_itemChanged",
3202 "_itemChanged:",
3203 "_itemChangedLabelOrPaletteLabel",
3204 "_itemChangedToolTip",
3205 "_itemEnabledStateChanged",
3206 "_itemForRestoringDocState",
3207 "_itemForSavingDocState",
3208 "_itemIdentifierForModule:",
3209 "_itemIdentifiersForColorPickers:",
3210 "_itemInStatusBar:withLength:withPriority:",
3211 "_itemLayoutChanged",
3212 "_itemRemoved:",
3213 "_itemType",
3214 "_itemViewer",
3215 "_itemViewerForDraggingInfo:draggingSource:",
3216 "_itemVisibilityPriority",
3217 "_items",
3218 "_itemsFromItemViewers:",
3219 "_itemsFromRowsWithIndexes:",
3220 "_jobDispositionInPrintSession:printSettings:",
3221 "_jobSavePathInPrintSession:printSettings:",
3222 "_justOrderOut",
3223 "_keepCacheWindow",
3224 "_key",
3225 "_key:inClass:indicatesMultipleValues:",
3226 "_keyBindingManager",
3227 "_keyCodeFromRecord:",
3228 "_keyEquivalentForNode:",
3229 "_keyEquivalentGlyphWidth",
3230 "_keyEquivalentModifierMaskMatchesModifierFlags:",
3231 "_keyEquivalentSizeWithFont:",
3232 "_keyEquivalentsAreActive",
3233 "_keyListForKeyNode:",
3234 "_keyPathExpressionForString:",
3235 "_keyRowOrSelectedRowOfMatrix:inColumn:",
3236 "_keySegment",
3237 "_keyValueBindingAccessPoints",
3238 "_keyViewFollowingAccessoryView",
3239 "_keyViewFollowingModalButtons",
3240 "_keyViewFollowingOpacityViews",
3241 "_keyViewFollowingPickerViews",
3242 "_keyViewPrecedingAccesoryView",
3243 "_keyViewPrecedingModalButtons",
3244 "_keyViewPrecedingPickerViews",
3245 "_keyViewRedirectionDisabled",
3246 "_keyWindow",
3247 "_keyWindowForHeartBeat",
3248 "_keyboardDelayForPartialSearchString:",
3249 "_keyboardIsOldNeXT",
3250 "_keyboardLoopNeedsUpdating",
3251 "_keyboardModifyRow:column:withEvent:",
3252 "_keyboardNavigateDoSelectOfFocusItem:",
3253 "_keyboardNavigateToTabAtIndex:",
3254 "_keyboardNavigateToTabByDelta:",
3255 "_keyboardUIActionForEvent:",
3256 "_keychainItem",
3257 "_keysForPropertyDescriptionKind:",
3258 "_keysForValuesAffectingValueForKey:",
3259 "_kitBundle",
3260 "_kitNewObjectSetVersion:",
3261 "_kitOldObjectSetVersion:",
3262 "_kludgeScrollBarForColumn:",
3263 "_knownEntityKeyForObject:",
3264 "_knownEntityKeyForObjectID:",
3265 "_knownPrimaryKeyForObject:",
3266 "_knownPrimaryKeyForObjectID:",
3267 "_knowsPagesFirst:last:",
3268 "_labelCell",
3269 "_labelCellWillDismissNotification:",
3270 "_labelCellWillPopUpNotification:",
3271 "_labelColor",
3272 "_labelColorIndex",
3273 "_labelElementImpl",
3274 "_labelForColorPicker:",
3275 "_labelOnlyShowsAsPopupMenu",
3276 "_labelPatternColorForLabelIndex:",
3277 "_labelRectForTabRect:forItem:",
3278 "_labelType",
3279 "_largestIconFromDictionary:",
3280 "_lastCheckedRequest",
3281 "_lastChild",
3282 "_lastDragDestinationOperation",
3283 "_lastDraggedEventFollowing:",
3284 "_lastDraggedOrUpEventFollowing:",
3285 "_lastDraggedOrUpEventFollowing:canceled:",
3286 "_lastEventRecordTime",
3287 "_lastItemIsNonSeparator",
3288 "_lastKeyView",
3289 "_lastLeftHit",
3290 "_lastModifiedDate",
3291 "_lastOnScreenContext",
3292 "_lastRightHit",
3293 "_lastSnapshot",
3294 "_lastVisitedDate",
3295 "_latin1MappingTable:",
3296 "_latin1MappingTableWithPlatformFont:hasKernPair:",
3297 "_launchService:andWait:",
3298 "_launchSpellChecker:",
3299 "_layoutDirtyItemViewersAndTileToolbar",
3300 "_layoutEnabled",
3301 "_layoutForData",
3302 "_layoutGlyphsInLayoutManager:startingAtGlyphIndex:maxNumberOfLineFragments:currentTextContainer:proposedRect:nextGlyphIndex:",
3303 "_layoutIsSameAsCachedLayoutWithFrame:",
3304 "_layoutItemViewForWithItemHeight:allSidebarItemViews:",
3305 "_layoutLineFragmentStartingWithGlyphAtIndex:characterIndex:atPoint:renderingContext:",
3306 "_layoutOrderInsertionIndexForPoint:previousIndex:",
3307 "_layoutRowStartingAtIndex:withFirstItemPosition:gridWidth:",
3308 "_layoutTabs",
3309 "_layoutViews:startingInsetFromXOrigin:insetFromTop:withSpacing:sizeToFit:horizontal:",
3310 "_layoutViewsVerticallyAndResize",
3311 "_lazyLoadQueryDictionariesFromSavedQuery",
3312 "_leading",
3313 "_learnOrForgetOrInvalidate:word:dictionary:language:ephemeral:",
3314 "_learnSpellingFromMenu:",
3315 "_learnWord:inDictionary:",
3316 "_leftGroupRect",
3317 "_leftmostInsertionIndexForNode:inOrderedNodes:",
3318 "_leftmostInsertionIndexForNode:inOrderedNodes:withSortDescriptors:",
3319 "_legalNameCheck:",
3320 "_legendElementImpl",
3321 "_lengthForSize:",
3322 "_liElementImpl",
3323 "_libxml2TreeRepresentation",
3324 "_libxml2TreeRepresentationWithNamespaces:",
3325 "_lightGrayRGBColor",
3326 "_lightWeightRecursiveDisplayInRect:",
3327 "_lightYellowColor",
3328 "_lightweightHandleChildChanged:parents:property:",
3329 "_lineBorderColor",
3330 "_lineBreakMode",
3331 "_lineColor",
3332 "_lineFragmentRectForProposedRectArgs",
3333 "_lineGlyphRange:type:lineFragmentRect:lineFragmentGlyphRange:containerOrigin:isStrikethrough:",
3334 "_linkDragCursor",
3335 "_linkElementImpl",
3336 "_listDefinitions",
3337 "_listenForProxySettingChanges",
3338 "_liveResizeCacheableBounds",
3339 "_liveResizeCachedBounds",
3340 "_liveResizeCachedImage",
3341 "_liveResizeCachedImageIsValid",
3342 "_liveResizeHighlightSelectionInClipRect:",
3343 "_liveResizeImageCacheingEnabled",
3344 "_liveResizeLOptimizationEnabled",
3345 "_load",
3346 "_loadAllPlaceholderItems",
3347 "_loadAndRestoreCurrentBrowsingNodePath:selectedNodes:",
3348 "_loadBundle",
3349 "_loadColors",
3350 "_loadData",
3351 "_loadData:MIMEType:textEncodingName:baseURL:unreachableURL:",
3352 "_loadDataSource:withLoadType:formState:",
3353 "_loadDeadKeyData",
3354 "_loadDefaultSetImageRep",
3355 "_loadFontFiles",
3356 "_loadFromDOMRange",
3357 "_loadFromUDIfNecessary",
3358 "_loadHTMLString:baseURL:unreachableURL:",
3359 "_loadHistoryGuts:URL:error:",
3360 "_loadIcon",
3361 "_loadIconDictionaries",
3362 "_loadIconlessMenuContentsIfNecessary",
3363 "_loadImageFromTIFF:imageNumber:",
3364 "_loadImageInfoFromTIFF:",
3365 "_loadImageWithName:",
3366 "_loadImagesForActionType",
3367 "_loadInitialItemIdentifiers:requireImmediateLoad:",
3368 "_loadItem:withLoadType:",
3369 "_loadItemViewsForChildrenOfContainerNodes:existingViewsToKeepTable:",
3370 "_loadKeyboardBindings",
3371 "_loadMenuItemIconsIfNecessary",
3372 "_loadNibDataFromPath:",
3373 "_loadNibFile:nameTable:withZone:ownerBundle:",
3374 "_loadOrSetMetadata",
3375 "_loadPickerBundlesIn:expectLibraryLayout:",
3376 "_loadRecentSearchList",
3377 "_loadRequest:inFrameNamed:",
3378 "_loadRequest:subresources:subframeArchives:",
3379 "_loadRequest:triggeringAction:loadType:formState:",
3380 "_loadScriptSuites",
3381 "_loadServicesMenuData",
3382 "_loadSuiteDescription:",
3383 "_loadSuitesForAlreadyLoadedBundles",
3384 "_loadSuitesForJustLoadedBundle:",
3385 "_loadSuitesFromSDEFData:bundle:",
3386 "_loadSystemScreenColorList",
3387 "_loadType",
3388 "_loadUIIfNecessary",
3389 "_loadURL:intoChild:",
3390 "_loadURL:referrer:loadType:target:triggeringEvent:form:formValues:",
3391 "_loadUsingHTMLDisplay",
3392 "_loadUsingLibXML2",
3393 "_loadUsingWebKit",
3394 "_loadViewIfNecessary",
3395 "_loadWebKit",
3396 "_loadXSLT",
3397 "_loadedCellAtRow:column:inMatrix:",
3398 "_loadingDragOperationForDraggingInfo:",
3399 "_loadingFromPageCache",
3400 "_localObjectForGlobalID:",
3401 "_localizationPolicy",
3402 "_localizedColorListCopyrightString",
3403 "_localizedColorListName",
3404 "_localizedErrorDescriptionForCode:",
3405 "_localizedKeyFromBundleStringFileForKey:",
3406 "_localizedNameForColorWithName:",
3407 "_localizedPropertyNameForProperty:entity:",
3408 "_localizedStringForKey:value:",
3409 "_locationFromUnitsValue:",
3410 "_locationOfColumn:",
3411 "_locationOfOriginPoint:",
3412 "_locationOfPoint:",
3413 "_locationOfRow:",
3414 "_locationTemporary",
3415 "_locationsForApplications",
3416 "_lockCachedImage",
3417 "_lockFirstResponder",
3418 "_lockFocusOnRep:",
3419 "_lockForReading",
3420 "_lockForWriting",
3421 "_lockQuickDrawPort",
3422 "_lockUnlockCachedImage:",
3423 "_lockViewHierarchyForDrawing",
3424 "_lockViewHierarchyForDrawingWithExceptionHandler:",
3425 "_lockViewHierarchyForModification",
3426 "_lockfeContext",
3427 "_logColumnWidths:",
3428 "_logError:fallbackMessage:relatedToBinding:",
3429 "_logObservingInfo",
3430 "_logicalTestFromDescriptor:",
3431 "_longLongValue",
3432 "_looksLikeDomainSegment",
3433 "_loopHit:row:col:",
3434 "_machineLibraryPath",
3435 "_mainDocumentError",
3436 "_mainFrameOverrideEncoding",
3437 "_mainReceivedBytesSoFar:fromDataSource:complete:",
3438 "_mainReceivedError:fromDataSource:complete:",
3439 "_mainStatusChanged",
3440 "_mainStatusChanged:",
3441 "_mainWindow",
3442 "_maintainCell",
3443 "_maintainInverseNamed:isToMany:ofRelationshipNamed:forChange:onSet:",
3444 "_maintainInverseNamed:isToMany:oldDestination:newDestination:",
3445 "_makeBranchTableForKeys:count:",
3446 "_makeCellForMenuItemAtIndex:",
3447 "_makeCursors",
3448 "_makeDocumentView",
3449 "_makeDocumentViewForDataSource:",
3450 "_makeDownCellKey",
3451 "_makeEditable::::",
3452 "_makeFirstResponderForKeyboardHotKeyEvent",
3453 "_makeHODWindowsPerform:",
3454 "_makeHistory",
3455 "_makeKeyNode:inKeyNode:",
3456 "_makeLeftCellKey",
3457 "_makeLinkFromMenu:",
3458 "_makeModalWindowsPerform:",
3459 "_makeNewListFrom:",
3460 "_makeNextCellKey",
3461 "_makeNextCellOrViewKey",
3462 "_makePreviousCellKey",
3463 "_makePreviousCellOrViewKey",
3464 "_makeRememberedOrNewEditingSubviewBecomeFirstResponder",
3465 "_makeRepresentation",
3466 "_makeRequestCanonicalByMakingRequestURLCanonical:",
3467 "_makeRightCellKey",
3468 "_makeRootNode",
3469 "_makeSelfMutable",
3470 "_makeSureFirstResponderIsNotInInvisibleItemViewer",
3471 "_makeSureItemViewersInArray:areSubviews:from:to:",
3472 "_makeTable:inNode:",
3473 "_makeUpCellKey",
3474 "_makingFirstResponderForMouseDown",
3475 "_managedAttributeKeys",
3476 "_managedObjectContext",
3477 "_managedObjectsChangedInContext:",
3478 "_managedProxy",
3479 "_managesWindowRef",
3480 "_mapElementImpl",
3481 "_mapNode:toEntityInModel:",
3482 "_mappedFile",
3483 "_mappingForConfigurationNamed:",
3484 "_marginHeight",
3485 "_marginWidth",
3486 "_markAutoCreated:",
3487 "_markCursorRectsForRemovedView:",
3488 "_markForPrivateBrowsing",
3489 "_markHasLoadedData:",
3490 "_markLiveResizeColumnLayoutInfo",
3491 "_markMovementTrackingInfo",
3492 "_markRememberedEditingFirstResponderIfIsASubview",
3493 "_markSelectionIsChanging",
3494 "_markSelfAsDirtyForBackgroundLayout:",
3495 "_markUsedByCell",
3496 "_markWidth",
3497 "_markedWidthDiffersFromCurrentWidth",
3498 "_markerAreaRect",
3499 "_markerForItemNumber:isNumbered:",
3500 "_markerHitTest:",
3501 "_markerLevelForRange:",
3502 "_markerTypeButton",
3503 "_matchesCharacter:",
3504 "_matrix",
3505 "_matrixWillResignFirstResponder:",
3506 "_maxAge",
3507 "_maxRuleAreaRect",
3508 "_maxTitlebarTitleRect",
3509 "_maxWidth",
3510 "_maxXBorderRect",
3511 "_maxXResizeRect",
3512 "_maxXTitlebarBorderThickness",
3513 "_maxXTitlebarButtonsWidth",
3514 "_maxXTitlebarDecorationMinWidth",
3515 "_maxXTitlebarWidgetInset",
3516 "_maxXTitlebarWidgetInset:",
3517 "_maxXWindowBorderWidth",
3518 "_maxXWindowBorderWidth:",
3519 "_maxXmaxYResizeRect",
3520 "_maxXminYResizeRect",
3521 "_maxYBorderRect",
3522 "_maxYTitlebarDragHeight",
3523 "_maxYWindowBorderHeight",
3524 "_maxYmaxXResizeRect",
3525 "_maxYminXResizeRect",
3526 "_maximumItemViewerHeight",
3527 "_mayStartDragAtEventLocation:",
3528 "_maybeScrollMenu",
3529 "_maybeSubstitutePopUpButton",
3530 "_mdAttributes",
3531 "_mdAttributesInLastRunSavePanel",
3532 "_mdAttributesToWriteToFile:ofType:saveOperation:",
3533 "_mediaListImpl",
3534 "_mediaListWithImpl:",
3535 "_mediaRuleImpl",
3536 "_memoryCacheAppendNodeToLRUList:",
3537 "_memoryCacheClear",
3538 "_memoryCacheGet:",
3539 "_memoryCachePut:",
3540 "_memoryCacheRemove:",
3541 "_memoryCacheRemoveNodeFromLRUList:",
3542 "_memoryCacheTouchNode:",
3543 "_memoryCacheTruncate:",
3544 "_menuBarShouldSpanScreen",
3545 "_menuCellInitWithCoder:",
3546 "_menuChanged",
3547 "_menuDidSendAction:",
3548 "_menuForElement:",
3549 "_menuFormRepresentationChanged",
3550 "_menuImpl",
3551 "_menuItemDictionaries",
3552 "_menuListElementImpl",
3553 "_menuName",
3554 "_menuPanelInitWithCoder:",
3555 "_menuScrollAmount",
3556 "_menuScrollingOffset",
3557 "_menuWillSendAction:",
3558 "_menusWithName:",
3559 "_mergeAutoCompleteHints:",
3560 "_mergeGlyphHoles",
3561 "_mergeLayoutHoles",
3562 "_mergeObjectWithChanges:array:",
3563 "_mergeValueForKey:object:string:",
3564 "_metaElementImpl",
3565 "_methodNameForCommand:",
3566 "_metrics",
3567 "_middleViewFrameChanged:",
3568 "_mightHaveSpellingAttributes",
3569 "_migrateAllObjectsInStore:toStore:",
3570 "_migrateMappedStore:toNewSameTypeStoreAtURL:",
3571 "_migrateMetadataFromStore:toStore:",
3572 "_migrateSQLStore:toSQLStoreAtURL:",
3573 "_minContentRectSize",
3574 "_minContentSizeForDrawers",
3575 "_minExpandedFrameSize",
3576 "_minLinesWidthWithSpace",
3577 "_minNonExpandedFrameSize",
3578 "_minParentWindowContentSize",
3579 "_minSizeForDrawers",
3580 "_minXBorderRect",
3581 "_minXLocOfOutlineColumn",
3582 "_minXResizeRect",
3583 "_minXTitleOffset",
3584 "_minXTitlebarBorderThickness",
3585 "_minXTitlebarButtonsWidth",
3586 "_minXTitlebarDecorationMinWidth",
3587 "_minXTitlebarDecorationMinWidth:",
3588 "_minXTitlebarWidgetInset",
3589 "_minXTitlebarWidgetInset:",
3590 "_minXWindowBorderWidth",
3591 "_minXWindowBorderWidth:",
3592 "_minXmaxYResizeRect",
3593 "_minXminYResizeRect",
3594 "_minYBorderRect",
3595 "_minYResizeRect",
3596 "_minYTitlebarButtonsOffset",
3597 "_minYWindowBorderHeight",
3598 "_minYWindowBorderHeight:",
3599 "_minYmaxXResizeRect",
3600 "_minYminXResizeRect",
3601 "_miniaturizedOrCanBecomeMain",
3602 "_minimizeAll",
3603 "_minimizeOnDoubleClickChanged",
3604 "_minimizeSucceeded:",
3605 "_minimizeToDock",
3606 "_minimumSizeNeedForTabItemLabel:",
3607 "_modElementImpl",
3608 "_modalSession:sendEvent:",
3609 "_modelAndProxyKeys",
3610 "_modelAndProxyKeysObserved",
3611 "_modifierString",
3612 "_modifySelectedObjects:useExistingIndexesAsStartingPoint:avoidsEmptySelection:addOrRemove:sendObserverNotifications:forceUpdate:",
3613 "_modifySelectionIndexes:atIndex:addOrRemove:sendObserverNotifications:",
3614 "_monitorKeyBinding:flags:",
3615 "_monitors",
3616 "_mostCompatibleCharset:",
3617 "_mouse:force:",
3618 "_mouseActivationInProgress",
3619 "_mouseDidMoveOverElement:modifierFlags:",
3620 "_mouseDownListmode:",
3621 "_mouseDownNonListmode:",
3622 "_mouseDownShouldMakeFirstResponder",
3623 "_mouseDownSimpleTrackingMode:",
3624 "_mouseDragged:",
3625 "_mouseEventImpl",
3626 "_mouseHit:row:col:",
3627 "_mouseInGroup:",
3628 "_mouseLoop::::::",
3629 "_mouseUp:",
3630 "_moveAndResizeEditedCellWithOldFrame:",
3631 "_moveDown:",
3632 "_moveDownAndModifySelection:",
3633 "_moveDownWithEvent:",
3634 "_moveGapAndMergeWithBlockRange:",
3635 "_moveGapToBlockIndex:",
3636 "_moveInDirection:",
3637 "_moveItemFromIndex:toIndex:notifyDelegate:notifyView:notifyFamilyAndUpdateDefaults:",
3638 "_moveLeftWithEvent:",
3639 "_moveObjectInContainer:withKey:atIndex:toContainer:withKey:atIndex:replace:",
3640 "_moveObjectsInContainer:toContainer:withKey:atIndex:replace:",
3641 "_moveParent:andExpandPanel:toFrame:",
3642 "_moveParent:andOpenSheet:",
3643 "_moveRightWithEvent:",
3644 "_moveSelectionBy:",
3645 "_moveSheetByItself:delta:",
3646 "_moveToNextBlock",
3647 "_moveToPreviousBlock",
3648 "_moveUp:",
3649 "_moveUpAndModifySelection:",
3650 "_moveUpWithEvent:",
3651 "_movieIdle",
3652 "_multiClipDrawingHelper",
3653 "_multipleMutableArrayValueForKeyPath:atIndex:",
3654 "_multipleMutableArrayValueForKeyPath:atIndexPath:",
3655 "_multipleValueForKey:atIndex:",
3656 "_multipleValueForKeyPath:atIndex:",
3657 "_multipleValueForKeyPath:atIndexPath:",
3658 "_multipleValuesObjectAtIndex:",
3659 "_multipleValuesObjectAtIndexPath:",
3660 "_multipleValuesObjectCount",
3661 "_multipleValuesObjectsAtIndexes:",
3662 "_mustRevalidate",
3663 "_mutableArrayValueForKeyPath:ofObject:atIndex:raisesForNotApplicableKeys:",
3664 "_mutableArrayValueForKeyPath:ofObjectAtIndex:",
3665 "_mutableParagraphStyle",
3666 "_mutableSetValueForKeyPath:ofObject:atIndex:raisesForNotApplicableKeys:",
3667 "_mutableSetValueForKeyPath:ofObjectAtIndex:",
3668 "_mutableStringClass",
3669 "_mutateTabStops",
3670 "_mutationEventImpl",
3671 "_nameFieldContentsAsPosixName",
3672 "_nameForCollection:",
3673 "_nameIsEqualToNameOfNode:",
3674 "_nameOfDictionaryForDocumentTag:",
3675 "_nameWithLooseRequiredExtensionCheck:",
3676 "_nameWithRequiredExtensionCheck:",
3677 "_nameWithStrictRequiredExtensionCheck:",
3678 "_namedNodeMapImpl",
3679 "_namedNodeMapWithImpl:",
3680 "_namespaceForURI:",
3681 "_namespaces",
3682 "_naughtDelegate",
3683 "_navView",
3684 "_nearestCrayonUnderViewPoint:",
3685 "_nearestCrayonUnderViewPoint:inRow:",
3686 "_needRedrawOnWindowChangedKeyState",
3687 "_needToFlushGlyph",
3688 "_needsDisplayfromColumn:",
3689 "_needsDisplayfromRow:",
3690 "_needsHighlightedTextHint",
3691 "_needsLiveResizeCacheInSyncWithSiblingView",
3692 "_needsLiveUpdates",
3693 "_needsModalCompatibilityMode",
3694 "_needsModeConfiguration",
3695 "_needsOutline",
3696 "_needsPopulate",
3697 "_needsRecalc",
3698 "_needsRedisplayWhenBeginningToolbarEditing",
3699 "_needsRedrawBeforeFirstLiveResizeCache",
3700 "_needsRedrawForMovement",
3701 "_needsRedrawOnMouseInsideChange",
3702 "_needsRevealoverWithFrame:trackingRect:inView:",
3703 "_needsToRemoveFieldEditor",
3704 "_needsToResetDragMargins",
3705 "_needsToUseHeartBeatWindow",
3706 "_needsViewerLayout",
3707 "_nestListAtIndex:",
3708 "_newAdapterForModel:",
3709 "_newCustomizeToolbarItem",
3710 "_newEntryWithUnavoidableSpecifier:path:url:isSymbolicLink:",
3711 "_newFirstResponderAfterResigning",
3712 "_newIconlessMenuItemForNavNode:",
3713 "_newImageName:",
3714 "_newItemFromDelegateWithItemIdentifier:willBeInsertedIntoToolbar:",
3715 "_newItemFromInitPListWithItemIdentifier:",
3716 "_newItemFromItemIdentifier:requireImmediateLoad:willBeInsertedIntoToolbar:",
3717 "_newLazyIconRefRepresentation:ofSize:",
3718 "_newLazyRepresentation:::",
3719 "_newLegalSizeFromSize:force:roundDirection:",
3720 "_newLineForElement:",
3721 "_newLineForLibXML2ElementNode:",
3722 "_newNode:",
3723 "_newNodeAtIndexPath:currentDepth:",
3724 "_newObjectIDForCurrentRowWithEntity:",
3725 "_newObjectIDForToOne:",
3726 "_newObjectWithSetProperties",
3727 "_newParagraphForElement:tag:allowEmpty:suppressTrailingSpace:",
3728 "_newParagraphForLibXML2ElementNode:tag:allowEmpty:suppressTrailingSpace:",
3729 "_newPatternStringForGlob:",
3730 "_newPlaceholderItemWithItemIdentifier:",
3731 "_newPrintItem",
3732 "_newRegisteredSuiteDescriptionForName:",
3733 "_newReplicatePath:ref:atPath:ref:operation:fileMap:handler:",
3734 "_newRepresentation:",
3735 "_newRowsForFetchRequest:",
3736 "_newScroll:",
3737 "_newShowColorsItem",
3738 "_newShowFontsItem",
3739 "_newStandardItemWithItemIdentifier:",
3740 "_newSubstringWithRange:zone:",
3741 "_newUncommittedChangesForObject:",
3742 "_newUncommittedChangesForObject:dictionary:",
3743 "_newValueForColumnOfSQLType:atIndex:inStatement:",
3744 "_newWildSubStringForGlob:wildStart:wildEnd:",
3745 "_newWithName:fromPath:forDeviceType:",
3746 "_new_implicitlyObservedKeys",
3747 "_nextAttributeForString:type:location:range:",
3748 "_nextDisplayMode",
3749 "_nextFrame:",
3750 "_nextFrameWithWrap:",
3751 "_nextInputManagerInScript:",
3752 "_nextSibling",
3753 "_nibName",
3754 "_noVerticalAutosizing",
3755 "_nodeFilterImpl",
3756 "_nodeFilterWithImpl:",
3757 "_nodeFromLibXML2Node:",
3758 "_nodeFromObject:objectIDMap:",
3759 "_nodeImpl",
3760 "_nodeIteratorImpl",
3761 "_nodeIteratorWithImpl:filter:",
3762 "_nodeListImpl",
3763 "_nodeListWithImpl:",
3764 "_nodeWithImpl:",
3765 "_nodesToDisplayForNodeInfo:",
3766 "_nominalCharacterCoverage",
3767 "_nominalSizeNeedForTabItemLabel:",
3768 "_nonAutomaticObservingKeys",
3769 "_nonNilArrayValueWithSelector:",
3770 "_nonNilMutableArrayValueWithSelector:",
3771 "_nonNilSetValueWithSelector:",
3772 "_nonPredicateValidateValue:forKey:inObject:error:",
3773 "_noop:",
3774 "_normalListmodeDown::::",
3775 "_notationImpl",
3776 "_noteAutosavedContentsOfDocument:",
3777 "_noteDefaultMenuAttributeChanged",
3778 "_noteFontCollectionsChanged",
3779 "_noteItemUserVisibilityPriorityChanged:",
3780 "_noteLengthAndSelectedRange:",
3781 "_noteNote1:",
3782 "_noteNote2:",
3783 "_noteNote3:",
3784 "_noteNote4:",
3785 "_notePendingRecentDocumentURLs",
3786 "_noteToolbarDisplayModeChanged",
3787 "_noteToolbarDisplayModeChangedAndPostSyncSEL",
3788 "_noteToolbarLayoutChanged",
3789 "_noteToolbarModeChangedAndUpdateItemViewers:",
3790 "_noteToolbarShowsBaselinePropertyChanged",
3791 "_noteToolbarSizeModeChanged",
3792 "_noteToolbarSizeModeChangedAndPostSyncSEL",
3793 "_noticeEditablePeerBinder:",
3794 "_noticeTextColorPeerBinder:",
3795 "_notifyCookiesSynced",
3796 "_notifyDelegate_DidRemoveItem:",
3797 "_notifyDelegate_DidRemoveItems:",
3798 "_notifyDelegate_WillAddItem:",
3799 "_notifyEdited:range:changeInLength:invalidatedRange:",
3800 "_notifyEditor:stateChanged:",
3801 "_notifyFamily_DidRemoveItemAtIndex:",
3802 "_notifyFamily_DidSetAllCurrentItems:",
3803 "_notifyFamily_InsertedNewItem:atIndex:",
3804 "_notifyFamily_MovedFromIndex:toIndex:",
3805 "_notifyLocalCookiesChanged:",
3806 "_notifyObserversForKeyPath:change:",
3807 "_notifyObserversOfAddedStores:",
3808 "_notifyObserversOfRemovedStores:",
3809 "_notifyOfAnyContentChange",
3810 "_notifyView_DidRemoveItemAtIndex:",
3811 "_notifyView_DidSetAllCurrentItems:",
3812 "_notifyView_InsertedNewItem:atIndex:",
3813 "_notifyView_MovedFromIndex:toIndex:",
3814 "_numPendingOrLoadingRequests:",
3815 "_numberByTranslatingNumericDescriptor:toType:inSuite:",
3816 "_numberEnumerator",
3817 "_numberOfGlyphs",
3818 "_numberOfItems",
3819 "_numericIndicatorCell",
3820 "_nxeventTime",
3821 "_oListElementImpl",
3822 "_obeysHiddenBit",
3823 "_objcClassName",
3824 "_objectCacheSize",
3825 "_objectClassName",
3826 "_objectDidTriggerAction:bindingAdaptor:",
3827 "_objectElementImpl",
3828 "_objectForAttributeKey:",
3829 "_objectForProperty:usingDataSize:withRequestedObjectClass:",
3830 "_objectID",
3831 "_objectIDClass",
3832 "_objectIDFactory",
3833 "_objectIsMatch:",
3834 "_objectSpecifierFromDescriptor:",
3835 "_objectSpecifierTypeDescription",
3836 "_objectTypeDescriptionForClassAppleEventCode:isValid:",
3837 "_objectValue:forString:",
3838 "_objectValue:forString:errorDescription:",
3839 "_objectWithName:",
3840 "_objectsChangedInStore:",
3841 "_observeKeyPathForBindingInfo:registerOrUnregister:",
3842 "_observeKeyPathForRelatedBinder:registerOrUnregister:",
3843 "_observePathOfEntry:",
3844 "_observeSpecifierOfEntry:",
3845 "_observeValueForKeyPath:ofObject:context:",
3846 "_observesModelObjects",
3847 "_obtainKeyFocus",
3848 "_obtainOpenChannel",
3849 "_offset",
3850 "_offsetFromStartRect",
3851 "_okForOpenMode",
3852 "_okForSaveMode",
3853 "_okToStartTextEndEditing",
3854 "_oldBoundsDuringLiveResize",
3855 "_oldFirstResponderBeforeBecoming",
3856 "_oldFontSetNames",
3857 "_oldFontSetWithName:",
3858 "_oldPlaceWindow:",
3859 "_oldValueForKey:",
3860 "_oldValueForKeyPath:",
3861 "_old_encodeWithCoder_NSBrowser:",
3862 "_old_encodeWithCoder_NSComboBoxCell:",
3863 "_old_encodeWithCoder_NSTabView:",
3864 "_old_encodeWithCoder_NSTabViewItem:",
3865 "_old_encodeWithCoder_NSTableColumn:",
3866 "_old_encodeWithCoder_NSTableHeaderView:",
3867 "_old_encodeWithCoder_NSTableView:",
3868 "_old_initWithCoder_NSBrowser:",
3869 "_old_initWithCoder_NSColorWell:",
3870 "_old_initWithCoder_NSComboBoxCell:",
3871 "_old_initWithCoder_NSTabView:",
3872 "_old_initWithCoder_NSTabViewItem:",
3873 "_old_initWithCoder_NSTableColumn:",
3874 "_old_initWithCoder_NSTableHeaderView:",
3875 "_old_initWithCoder_NSTableView:",
3876 "_old_readColorsFromGlobalPreferences",
3877 "_old_writeColorsToGlobalPreferences",
3878 "_opString",
3879 "_opacity",
3880 "_opacityAtPoint:inBitmapImageRep:",
3881 "_opaqueRect",
3882 "_opaqueState",
3883 "_open:",
3884 "_open:fromImage:withName:",
3885 "_openBlocksForParagraphStyle:atIndex:inString:",
3886 "_openChannel",
3887 "_openCollections",
3888 "_openDocumentFileAt:display:",
3889 "_openDrawers",
3890 "_openExtrasPopup:",
3891 "_openFile:",
3892 "_openFile:withApplication:asService:andWait:andDeactivate:",
3893 "_openLinkFromMenu:",
3894 "_openListsForParagraphStyle:atIndex:inString:",
3895 "_openNewWindowWithRequest:",
3896 "_openOldCollections",
3897 "_openOldFavorites",
3898 "_openRecentDocument:",
3899 "_openRegularCollections",
3900 "_openStrikeMenu:",
3901 "_openUnderlineMenu:",
3902 "_openUntitled",
3903 "_openableFileExtensions",
3904 "_opened",
3905 "_operationInfo",
3906 "_operatorForType:",
3907 "_optGroupElementImpl",
3908 "_optimizedRectFill:gray:",
3909 "_optionElementImpl",
3910 "_optionsCollectionImpl",
3911 "_optionsCollectionWithImpl:",
3912 "_optionsForBinding:specifyOnlyIfDifferentFromDefault:",
3913 "_orderFrontHelpWindow",
3914 "_orderFrontModalColorPanel",
3915 "_orderFrontModalWindow:relativeToWindow:",
3916 "_orderFrontRelativeToWindow:",
3917 "_orderOutAllToolTipsImmediately:",
3918 "_orderOutAndCalcKeyWithCounter:",
3919 "_orderOutHelpWindow",
3920 "_orderOutHelpWindowAfterEventMask:",
3921 "_orderOutRelativeToWindow:",
3922 "_orderedDrawerAndWindowKeyLoopGroupingViews",
3923 "_orderedSidebarItemViews",
3924 "_orderedWindowsWithPanels:",
3925 "_orientationInPageFormat:",
3926 "_originPointInRuler",
3927 "_originalData",
3928 "_originalFontA",
3929 "_originalFontB",
3930 "_originalNextKeyView",
3931 "_originalRequest",
3932 "_originalRowForUpdate:",
3933 "_originalSnapshot",
3934 "_outlineAction:",
3935 "_outlineDelegate",
3936 "_outlineDoubleAction:",
3937 "_outlineIsOn",
3938 "_outlineView",
3939 "_overflowHeaderCellPrototype",
3940 "_overrideEncoding",
3941 "_overwriteExistingFileCheck:",
3942 "_ownedByPopUp",
3943 "_ownerElement",
3944 "_owningPopUp",
3945 "_ownsDestinationObjectsForRelationshipKey:",
3946 "_ownsWindowGrowBox",
3947 "_packedGlyphs:range:length:",
3948 "_pageCacheSize",
3949 "_pageCount",
3950 "_pageDownWithEvent:",
3951 "_pageForIndex:",
3952 "_pageFormat",
3953 "_pageFormatAttributeKeys",
3954 "_pageFormatForGetting",
3955 "_pageFormatForSetting",
3956 "_pageHeaderAndFooterTextAttributes",
3957 "_pageHorizontally:",
3958 "_pageLayout:wasPresentedWithResult:inContext:",
3959 "_pageRuleImpl",
3960 "_pageUpWithEvent:",
3961 "_pageVertically:",
3962 "_panelInitWithCoder:",
3963 "_panelSizeExcludingToolbar",
3964 "_paperNameForSize:",
3965 "_paperNameInPrintSession:pageFormat:",
3966 "_paperSizeInPageFormat:",
3967 "_paragraphClassforParagraphStyle:range:isEmpty:headerString:alignmentString:",
3968 "_paragraphElementImpl",
3969 "_paramElementImpl",
3970 "_parametersForReading",
3971 "_parametersForWriting",
3972 "_parentWindow",
3973 "_parse",
3974 "_parseArchivedList:",
3975 "_parseCacheControl",
3976 "_parseCharacterAttributes",
3977 "_parseCharacterAttributes1",
3978 "_parseCharacterAttributes2",
3979 "_parseCharacterAttributesFromElement:namespaceURI:qualifiedName:attributes:",
3980 "_parseContentsDictionary",
3981 "_parseDocumentAttributes",
3982 "_parseDocumentAttributes1",
3983 "_parseDocumentAttributes2",
3984 "_parseFonts",
3985 "_parseFonts1",
3986 "_parseFonts2",
3987 "_parseGlobals",
3988 "_parseLibXML2Node:",
3989 "_parseMenuString:menuName:itemName:",
3990 "_parseNode:",
3991 "_parsePantoneLikeList:fileName:",
3992 "_parseParagraphAttributes",
3993 "_parseParagraphAttributes1",
3994 "_parseParagraphAttributes2",
3995 "_parseParagraphAttributesFromElement:namespaceURI:qualifiedName:attributes:",
3996 "_parsePredefinedAttributes",
3997 "_parsePredefinedAttributes1",
3998 "_parsePredefinedAttributes2",
3999 "_parseReleaseTwoList:",
4000 "_parseSummaryInfo:",
4001 "_parseText",
4002 "_parseText1",
4003 "_parseText1Fast",
4004 "_parseText1Full",
4005 "_parseText2",
4006 "_parserableCollectionDescription:",
4007 "_parserableDateDescription:",
4008 "_parserableStringDescription:",
4009 "_passwordData",
4010 "_pasteWithPasteboard:allowPlainText:",
4011 "_pasteboardWithName:",
4012 "_pathData",
4013 "_pathForFSRef:",
4014 "_pathToFileNamed:inFolder:",
4015 "_patternForBinding:",
4016 "_pauseUIHeartBeatingInView:",
4017 "_pendingActCount",
4018 "_perThreadHandlingStack:",
4019 "_performActionWithCommitEditing",
4020 "_performActionWithCommitEditing:didCommit:contextInfo:",
4021 "_performActivationClickWithShiftDown:",
4022 "_performArrayBinderOperation:singleObject:multipleObjects:singleIndex:multipleIndexes:selectionMode:",
4023 "_performBatchWindowOrdering:",
4024 "_performCancel",
4025 "_performChangesWithAdapterOps:",
4026 "_performConnectionEstablishedRefresh",
4027 "_performContinueWithoutCredential",
4028 "_performDragFromMouseDown:",
4029 "_performKeyEquivalentOnAllCells:",
4030 "_performKeyEquivalentWithDelegate:",
4031 "_performLoad",
4032 "_performMenuFormRepresentationClick",
4033 "_performMutatorOperation:object:index:",
4034 "_performOriginLoad",
4035 "_performRemoveFileAtPath:",
4036 "_performResponderOperation:with:",
4037 "_performTimeOut",
4038 "_performToggleToolbarShown:",
4039 "_performUseCredential",
4040 "_periodicEvent:",
4041 "_persistentStoreCoordinator",
4042 "_persistentStoreForIdentifier:",
4043 "_persistsWidthCacheToUserDefaults",
4044 "_physicalSizeCompare:",
4045 "_pickUpMissingStuffFromNode:forEntity:",
4046 "_pidString",
4047 "_pinDocRect",
4048 "_pinViews:resizeFlagsToLeaveAlone:",
4049 "_pixelBufferAuxiliary",
4050 "_pixelFormatAuxiliary",
4051 "_pixelRectInPoints:",
4052 "_pk",
4053 "_placeHelpWindowNear:",
4054 "_placePopupWindow:",
4055 "_placeSuggestionsInDictionary:acceptableControllers:boundBinders:binder:binding:",
4056 "_placeholderAttributedString",
4057 "_placeholderString",
4058 "_plainFontNameForFont:",
4059 "_platformFont",
4060 "_plugInPath",
4061 "_plugIns",
4062 "_plugin",
4063 "_pluginCancelledConnectionError",
4064 "_pluginClassWithObject:",
4065 "_pluginController",
4066 "_pluginProtocol",
4067 "_pointFromColor:",
4068 "_pointInPicker:",
4069 "_pointRectInPixels:",
4070 "_policyDelegateForwarder",
4071 "_popCompoundStack",
4072 "_popIfTopHandling:",
4073 "_popPerformingProgrammaticFocus",
4074 "_popState",
4075 "_popSubframeArchiveWithName:",
4076 "_popUpButton",
4077 "_popUpButtonCellInstances",
4078 "_popUpContextMenu:withEvent:forView:",
4079 "_popUpContextMenu:withEvent:forView:withFont:",
4080 "_popUpItemAction:",
4081 "_popUpMenuWithEvent:forView:",
4082 "_poppedTopHandling",
4083 "_populate:",
4084 "_populateEntityDescription:fromNode:",
4085 "_populateMiniMode",
4086 "_populateOpenRecentMenu:",
4087 "_populatePopup:withTableView:",
4088 "_populateReplyAppleEventWithResult:",
4089 "_populateRowForOp:withObject:",
4090 "_portData",
4091 "_portInvalidated:",
4092 "_position",
4093 "_positionAllDrawers",
4094 "_positionAndResizeSearchParts",
4095 "_positionForPoint:",
4096 "_positionLabels",
4097 "_positionSheetAndDisplay:",
4098 "_positionSheetConstrained:andDisplay:",
4099 "_positionSheetRect:onRect:andDisplay:",
4100 "_positionWindow",
4101 "_positionalSpecifierFromDescriptor:",
4102 "_posixPathComponentsWithPath:",
4103 "_postAtStart:",
4104 "_postBoundsChangeNotification",
4105 "_postCallback:",
4106 "_postCarbonWindowActivateEvent:makeKeyWindow:",
4107 "_postCheckpointNotification",
4108 "_postColumnConfigurationDidChangeNotification",
4109 "_postColumnDidMoveNotificationFromColumn:toColumn:",
4110 "_postColumnDidResizeNotificationWithOldWidth:",
4111 "_postDidFailCallback",
4112 "_postDidFinishLoadingCallback",
4113 "_postDidFinishNotification",
4114 "_postDidReceiveDataCallback",
4115 "_postDidReceiveResponseCallback",
4116 "_postDidScrollNotification",
4117 "_postEventNotification:",
4118 "_postEventNotification:fromCell:",
4119 "_postFocusChangedNotification",
4120 "_postFrameChangeNotification",
4121 "_postFromSubthread:",
4122 "_postInitWithCoder:signature:valid:wireSignature:target:selector:argCount:",
4123 "_postInitialization",
4124 "_postInvalidCursorRects",
4125 "_postItemDidCollapseNotification:",
4126 "_postItemDidExpandNotification:",
4127 "_postItemWillCollapseNotification:",
4128 "_postItemWillExpandNotification:",
4129 "_postNotificationForEvent:notificationName:parent:",
4130 "_postNotificationForEvent:notificationName:parent:child:",
4131 "_postNotificationForEvent:notificationName:parent:child:fbeProperty:",
4132 "_postPreferencesChangesNotification",
4133 "_postQueryFinishedNotification",
4134 "_postQueryStartedNotification",
4135 "_postSelectionDidChangeNotification",
4136 "_postSelectionIsChangingAndMark:",
4137 "_postSessionNotificationIfNeeded",
4138 "_postURL:target:len:buf:file:notifyData:sendNotification:allowHeaders:",
4139 "_postWillCacheResponseCallback",
4140 "_postWillScrollNotification",
4141 "_postWillSendRequestCallback",
4142 "_postWindowNeedsDisplay",
4143 "_postWithURL:referrer:target:data:contentType:triggeringEvent:form:formValues:",
4144 "_postingDisabled",
4145 "_postscriptName",
4146 "_potentialMaxSize",
4147 "_potentialMinSize",
4148 "_preElementImpl",
4149 "_preEvaluate",
4150 "_preInitWithCoder:signature:valid:wireSignature:target:selector:argCount:",
4151 "_predefinedAttributes2ForIndex:depth:",
4152 "_predicateOperator",
4153 "_predicateOptionPairForBinding:",
4154 "_preferFilter",
4155 "_preferedColumnWidth",
4156 "_preferencesChangedNotification:",
4157 "_preferredPlaceholderForMarker:onlyIfNotExplicitlySet:",
4158 "_prefersToBeShown",
4159 "_prefersTrackingWhenDisabled",
4160 "_prefix",
4161 "_prefixDown",
4162 "_prefixIndex",
4163 "_prefixUp",
4164 "_preflightChosenSpellServer",
4165 "_preflightDatabaseAtPath:",
4166 "_preflightSpellChecker",
4167 "_preflightSpellChecker:",
4168 "_preflightSpellCheckerNow:",
4169 "_prepareAlertError:responder:window:recoveryAttempter:",
4170 "_prepareArrayControllerTree",
4171 "_prepareConst:inManyToMany:",
4172 "_prepareConst:inToMany:",
4173 "_prepareContentWithNewObject:",
4174 "_prepareEventGrouping",
4175 "_prepareForDefaultKeyLoopComputation",
4176 "_prepareForDispatch",
4177 "_prepareForPushChanges:",
4178 "_prepareForReloadChildrenForNode:",
4179 "_prepareHelpWindow:locationHint:",
4180 "_prepareIndirectKeyValueCodingCallWithPartialControllerKey:controller:",
4181 "_preparePrintStream",
4182 "_prepareString:expressionPath:caseSensitive:wildStart:wildEnd:",
4183 "_prepareSubstringWith:wildStart:wildEnd:",
4184 "_prepareSynchronizationOfEditedFieldForColumnWidthChange",
4185 "_prepareToMessageClients",
4186 "_prepareToMinimize",
4187 "_prepareToRunForSavePanel:withFilepath:",
4188 "_preparedSavePanelForOperation:",
4189 "_presentAlertPanelForError:responder:",
4190 "_presentDiscardEditingAlertPanelWithError:relatedToBinding:",
4191 "_presentDiscardEditingSheetWithError:discardEditingCallback:otherCallback:callbackContextInfo:relatedToBinding:",
4192 "_presentError:delegate:didRecoverSelector:context:",
4193 "_presentModalAlertWithError:responder:relatedToBinding:",
4194 "_presentSheetForError:responder:callback:callbackContextInfo:",
4195 "_presentableDescription",
4196 "_presentableErrorForCode:underlyingError:",
4197 "_presentableErrorForCode:underlyingError:url:",
4198 "_presentableNames",
4199 "_presentablePluralName",
4200 "_presentableReopeningErrorForUnderlyingError:url:contentsURL:",
4201 "_presentableResultDescription",
4202 "_presentableSavingErrorForOperation:underlyingError:url:",
4203 "_preventsActivation",
4204 "_previousDisplayMode",
4205 "_previousFrameWithWrap:",
4206 "_previousNextTab:loop:",
4207 "_previousNibBindingConnector",
4208 "_previousSibling",
4209 "_primitiveInvalidateDisplayForGlyphRange:",
4210 "_primitiveSetDefaultNextKeyView:",
4211 "_primitiveSetNextKeyView:",
4212 "_primitiveSetPreviousKeyView:",
4213 "_primitiveValueForKey:",
4214 "_primitiveValueImpl",
4215 "_printAndPaginateWithOperation:helpedBy:",
4216 "_printDocumentsWithContentsOfURLs:settings:showPrintPanels:delegate:didPrintSelector:contextInfo:",
4217 "_printOperation:wasRunWithSuccess:inContext:",
4218 "_printPagesWithOperation:helpedBy:",
4219 "_printPanel:didEndAndReturn:contextInfo:",
4220 "_printSession",
4221 "_printSessionAttributeKeys",
4222 "_printSessionForGetting",
4223 "_printSessionForSetting",
4224 "_printSettings",
4225 "_printSettingsAttributeKeys",
4226 "_printSettingsForGetting",
4227 "_printSettingsForSetting",
4228 "_printSettingsValue",
4229 "_printVerboseDebuggingInformation:",
4230 "_printer",
4231 "_printerForPrinter:",
4232 "_printerInPrintSession:",
4233 "_proceedGivenDBInfo:",
4234 "_processDBInfoNode:",
4235 "_processDeletedObjects",
4236 "_processDocument",
4237 "_processElement:tag:display:",
4238 "_processEndOfEventNotification:",
4239 "_processGlobalIDChanges:",
4240 "_processHeadElement:",
4241 "_processHeaders:",
4242 "_processInstanceNode:",
4243 "_processKeyboardUIKey:",
4244 "_processLibXML2ElementNode:tag:",
4245 "_processLibXML2HeadElementNode:",
4246 "_processLibXML2MetaNode:",
4247 "_processLibXML2TextNode:content:",
4248 "_processLibXML2TitleNode:",
4249 "_processMetaElementWithName:content:",
4250 "_processMetadataNode:",
4251 "_processNotificationQueue",
4252 "_processNotifications:",
4253 "_processObjectStoreChanges:",
4254 "_processOwnedObjects:set:boolean:",
4255 "_processRecentChanges",
4256 "_processReferenceQueue",
4257 "_processRequest:",
4258 "_processRequest:named:usingPasteboard:",
4259 "_processText:",
4260 "_processingInstructionImpl",
4261 "_progress",
4262 "_progressCompleted:",
4263 "_progressPanel:didEndAndReturn:contextInfo:",
4264 "_progressPanelWasCancelled:contextInfo:",
4265 "_progressStarted:",
4266 "_promoteGlyphStoreToFormat:",
4267 "_propagateDelete",
4268 "_propagateDeletesUsingTable:",
4269 "_propagateDirtyRectsToOpaqueAncestors",
4270 "_properties",
4271 "_propertiesOfType:",
4272 "_propertyAccessFromElement:",
4273 "_propertyContainerClassDescriptionFromDictionaryType:inSuite:",
4274 "_propertyDescriptionForAppleEventCode:checkSubclasses:",
4275 "_propertyDescriptionForAppleEventCode:checkSubclasses:superclasses:",
4276 "_propertyDescriptionForKey:checkSubclasses:",
4277 "_propertyDescriptionForKey:checkSubclasses:superclasses:",
4278 "_propertyDescriptionsByKey",
4279 "_propertyDescriptionsOfClass:fromImplDeclarations:presoDeclarations:suiteName:className:",
4280 "_propertyDictionaryInitializer",
4281 "_propertyForKey:",
4282 "_propertyKeyFromElement:",
4283 "_propertyListRepresentation",
4284 "_propertyListsFromResources:",
4285 "_propertyNamed:",
4286 "_propertyRangesByType",
4287 "_propertySearchMapping",
4288 "_propertyType",
4289 "_protectionSpaceForURL:realm:",
4290 "_protectionSpaceWithKeychainItem:isDefault:",
4291 "_protocolClassForRequest:",
4292 "_provideAllPromisedData",
4293 "_provideNewViewFor:initialViewRequest:",
4294 "_provideTotalScaleFactorForPrintOperation:",
4295 "_proxyFinalize",
4296 "_proxyForUIElement:",
4297 "_proxyInitWithContainer:getter:",
4298 "_proxyLocator",
4299 "_proxyMutableArrayValueForKey:",
4300 "_proxyParentedChild:",
4301 "_proxyPoolPointer",
4302 "_proxyProtectionSpaceForURL:",
4303 "_proxySharePointer",
4304 "_proxyUsernameForURL:",
4305 "_pullsDown",
4306 "_purgePageCache",
4307 "_pushCompoundStack:count:",
4308 "_pushHandling:",
4309 "_pushPerformingProgrammaticFocus",
4310 "_pushState",
4311 "_putKeyFormAndDataInRecord:",
4312 "_queryData",
4313 "_queryString",
4314 "_queueRequestForThread:invocation:conversation:sequence:coder:",
4315 "_quoteElementImpl",
4316 "_radioHit:row:col:",
4317 "_raiseNilValueExceptionWithSelector:",
4318 "_randomUnsignedLessThan:",
4319 "_range:containsPoint:",
4320 "_rangeByEstimatingAttributeFixingForRange:",
4321 "_rangeByTrimmingWhitespaceFromRange:",
4322 "_rangeForMoveDownFromRange:verticalDistance:desiredDistanceIntoContainer:selectionAffinity:",
4323 "_rangeForMoveUpFromRange:verticalDistance:desiredDistanceIntoContainer:selectionAffinity:",
4324 "_rangeForUserBaseWritingDirectionChange",
4325 "_rangeImpl",
4326 "_rangeOfPrefixFittingWidth:withAttributes:",
4327 "_rangeOfPrefixOfString:fittingWidth:withFont:",
4328 "_rangeOfSuffixFittingWidth:withAttributes:",
4329 "_rangeOfTextTableRow:atIndex:",
4330 "_rangeWithImpl:",
4331 "_ranges",
4332 "_rangesForUserBaseWritingDirectionChange",
4333 "_rawAddColor:key:",
4334 "_rawKeyEquivalent",
4335 "_rawKeyEquivalentModifierMask",
4336 "_rawSetSelectedIndex:",
4337 "_reactToDisplayChanged",
4338 "_reactToFontSetChange",
4339 "_reactToMatchingInsertions:deletions:",
4340 "_readAcceptCookiesPreference",
4341 "_readBBox",
4342 "_readColorIntoRange:fromPasteboard:",
4343 "_readColorsFromLibrary",
4344 "_readFilenameStringsIntoRange:fromPasteboard:",
4345 "_readFilenamesIntoRange:fromPasteboard:",
4346 "_readFontIntoRange:fromPasteboard:",
4347 "_readHTMLIntoRange:fromPasteboard:",
4348 "_readImageInfoWithImageSource:imageNumber:properties:",
4349 "_readImageIntoRange:fromPasteboard:",
4350 "_readMovieIntoRange:fromPasteboard:",
4351 "_readPersistentBrowserColumns",
4352 "_readPersistentExpandItems",
4353 "_readPersistentTableColumns",
4354 "_readRTFDIntoRange:fromPasteboard:",
4355 "_readRTFIntoRange:fromPasteboard:",
4356 "_readRecentDocumentDefaultsIfNecessary",
4357 "_readRulerIntoRange:fromPasteboard:",
4358 "_readSelectionFromPasteboard:types:",
4359 "_readStringIntoRange:fromPasteboard:",
4360 "_readURLIntoRange:fromPasteboard:",
4361 "_readURLStringIntoRange:fromPasteboard:",
4362 "_readURLStringsWithNamesIntoRange:fromPasteboard:",
4363 "_readVersion0:",
4364 "_readWidthsFromDefaults",
4365 "_readablePasteboardTypesForRichText:importsGraphics:usesFontPanel:usesRuler:allowsFiltering:",
4366 "_realControlTint",
4367 "_realControlTintForView:",
4368 "_realCopyPSCodeInside:helpedBy:",
4369 "_realCreateContext",
4370 "_realDestroyContext",
4371 "_realDoModalLoop:peek:",
4372 "_realDoModalLoopForCarbonWindow:peek:",
4373 "_realHeartBeatThreadContext",
4374 "_realMaximumRecents",
4375 "_realPrintPSCode:helpedBy:",
4376 "_realStoreTypeForStoreWithType:URL:error:",
4377 "_realWindowNumber",
4378 "_reallocColors:",
4379 "_reallocData:",
4380 "_reallyChooseGuess:",
4381 "_reallyControlView",
4382 "_reallyDoOrderWindow:relativeTo:findKey:forCounter:force:isModal:",
4383 "_reallyInitWithIncrementalImageReader:",
4384 "_reallyNeedsDisplayForBounds",
4385 "_reallyProcessNotifications:",
4386 "_realmForURL:",
4387 "_rebuildOrUpdateServicesMenu:",
4388 "_recacheAll",
4389 "_recacheButtonColors",
4390 "_recacheString",
4391 "_recalcRectsForCell:",
4392 "_recalculateUsageForTextContainerAtIndex:",
4393 "_receiveHandlerRef",
4394 "_receivedData:",
4395 "_receivedError:fromDataSource:",
4396 "_receivedMainResourceError:",
4397 "_receivedMainResourceError:complete:",
4398 "_recentMenuItemTitlesFromLocationComponentChains:",
4399 "_recentPlacesNode",
4400 "_recomputeBucketIndex:bucketFirstRowIndex:",
4401 "_recomputeLabelHeight",
4402 "_reconcileDisplayNameAndTrackingInfoToFileName",
4403 "_reconcilePageFormatAttributes",
4404 "_reconcilePrintSessionAttributes",
4405 "_reconcilePrintSettingsAttributes",
4406 "_reconcileToSuiteRegistry:",
4407 "_reconfigureAnimationState:",
4408 "_recordForObject:",
4409 "_recreateQuery",
4410 "_rectArrayForRange:withinSelectionRange:rangeIsCharRange:singleRectOnly:fullLineRectsOnly:inTextContainer:rectCount:rangeWithinContainer:glyphsDrawOutsideLines:",
4411 "_rectForSegment:inFrame:",
4412 "_rectImpl",
4413 "_rectOfColumnRange:",
4414 "_rectOfItemAtIndex:",
4415 "_rectOfRowAssumingRowExists:",
4416 "_rectOfRowRange:",
4417 "_rectToDisplayForItemAtIndex:",
4418 "_rectWithImpl:",
4419 "_rectangularCharacterRangesForGlyphRange:from:to:granularity:",
4420 "_rectsForBounds:",
4421 "_rectsForMultiClippedContentDrawing",
4422 "_recurWithContext:chars:glyphs:stringBuffer:font:",
4423 "_recurseToFindTargetItem",
4424 "_recursiveBreakKeyViewLoop",
4425 "_recursiveCheckLoadComplete",
4426 "_recursiveDisableTrackingRectsForHiddenViews",
4427 "_recursiveDisplayAllDirtyWithLockFocus:visRect:",
4428 "_recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:",
4429 "_recursiveEnableTrackingRectsForNonHiddenViews",
4430 "_recursiveEnsureSubviewNextKeyViewsAreSubviewsOf:",
4431 "_recursiveFindDefaultButtonCell",
4432 "_recursiveGainedHiddenAncestor",
4433 "_recursiveGatherAllKeyViewCandidatesInArray:",
4434 "_recursiveGoToItem:fromItem:withLoadType:",
4435 "_recursiveLostHiddenAncestor",
4436 "_recursiveOrderFrontSurfacesForNonHiddenViews",
4437 "_recursiveOrderOutSurfacesForHiddenViews",
4438 "_recursiveRecomputeToolTips",
4439 "_recursiveSetDefaultKeyViewLoop",
4440 "_recursiveStopLoading",
4441 "_recursiveWindowDidEnableToolTipCreationAndDisplay",
4442 "_recursivelyAddItemsInMenu:toTable:",
4443 "_recursivelyRemoveItemsInMenu:fromTable:",
4444 "_redisplayAndResizeFromRow:",
4445 "_redisplayTableContentWithRowIndexes:columnIndexes:",
4446 "_refaultLocalObjectWithGlobalID:",
4447 "_refaultObject:globalID:editingContext:boolean:",
4448 "_refaultObjectWithGlobalID:globalID:",
4449 "_referenceArray",
4450 "_referenceBinderForTableColumn:",
4451 "_referenceBinding",
4452 "_referenceBindingValue",
4453 "_referenceBindingValueAtIndex:",
4454 "_referenceBindingValueAtIndexPath:",
4455 "_referenceData",
4456 "_referenceData64",
4457 "_referenceDataPtr",
4458 "_reflectDocumentViewBoundsChange",
4459 "_reflectFont",
4460 "_reflectSelection",
4461 "_reflectSelection:",
4462 "_reformListAtIndex:",
4463 "_reformTableRow",
4464 "_refreshDetailContentInBackground:",
4465 "_refreshesAllModelKeys",
4466 "_refreshesAllModelObjects",
4467 "_regenerateFormatter",
4468 "_region:",
4469 "_regionForOpaqueDescendants:forMove:",
4470 "_registerAllDrawersForDraggedTypesIfNeeded",
4471 "_registerBuiltInFormatters",
4472 "_registerClearStateWithUndoManager",
4473 "_registerDefaultPlaceholders",
4474 "_registerDefaultStoreClassesAndTypes",
4475 "_registerDragTypes:",
4476 "_registerDragTypesIfNeeded",
4477 "_registerDragTypesLater",
4478 "_registerDraggedTypes",
4479 "_registerDynamicToolTipManagerInstance:",
4480 "_registerForAdapterContextNotifications:",
4481 "_registerForAutosaveNotification",
4482 "_registerForChildChangedNotifications",
4483 "_registerForClipBoundsDidChangeNotificaitonIfNecessaryForSuperview:",
4484 "_registerForCompletion:",
4485 "_registerForCookiePreferenceNotification",
4486 "_registerForDocViewFrameAndBoundsChangeNotifications",
4487 "_registerForDragTypes",
4488 "_registerForDraggedTypes:later:",
4489 "_registerForMovieIdle",
4490 "_registerForQueryStateChangeNotifications:",
4491 "_registerForToolbarNotifications:",
4492 "_registerFormatter:forErrorKey:parameters:",
4493 "_registerMenuForKeyEquivalentUniquing:",
4494 "_registerMenuItemForKeyEquivalentUniquing:",
4495 "_registerObject:withID:",
4496 "_registerObjectClass:placeholder:binding:",
4497 "_registerObservedModelKeyPath:",
4498 "_registerObservingForAllModelObjects",
4499 "_registerOrCollectSuiteDescription:",
4500 "_registerOrUnregister:observerNotificationsForKeyPath:",
4501 "_registerOrUnregister:observerNotificationsForKeyPath:ofModelObject:",
4502 "_registerOrUnregister:observerNotificationsForModelObject:",
4503 "_registerRequiredAEHandlers",
4504 "_registerServicesMenu:withSendTypes:andReturnTypes:addToList:",
4505 "_registerStoreClass:forStoreType:",
4506 "_registerSuiteDescriptions:",
4507 "_registerTableColumnBinder:toTableColumn:autoCreateReferenceController:",
4508 "_registerToolbarInstance:",
4509 "_registerUndoForModifiedObject:",
4510 "_registerUndoObject:",
4511 "_registerUnitWithName:abbreviation:unitToPointsConversionFactor:stepUpCycle:stepDownCycle:",
4512 "_registerWebKitErrors",
4513 "_registerWithDock",
4514 "_registerWithDockIfNeeded",
4515 "_registeredForChildNotifications",
4516 "_registeredObjects",
4517 "_registeredStoreTypes",
4518 "_registrationDictionaryForUnitNamed:",
4519 "_relatedNodes",
4520 "_relationshipNamed:",
4521 "_relationshipNamesByType:",
4522 "_releaseAllPendingPageCaches",
4523 "_releaseAllPreWillChangeExpandedNodes",
4524 "_releaseBindingAdaptor",
4525 "_releaseDelegate",
4526 "_releaseEffect",
4527 "_releaseEvents",
4528 "_releaseFutureIconForURL:",
4529 "_releaseIconForIconURLString:",
4530 "_releaseInput",
4531 "_releaseKVCMaps",
4532 "_releaseLiveResizeCachedImage",
4533 "_releaseNodePreviewHelper",
4534 "_releaseOneLevelPreWillChangeExpandedNodes",
4535 "_releaseOriginalIconsOnDisk",
4536 "_releasePageCache:",
4537 "_releaseProtocolClientReference",
4538 "_releaseRowHeightStorageIfNecessary",
4539 "_releaseUndoManager",
4540 "_releaseWireCount:",
4541 "_reloadAllowingStaleDataWithOverrideEncoding:",
4542 "_reloadChildrenForNode:",
4543 "_reloadForPluginChanges",
4544 "_reloadSidebarNodes",
4545 "_remainingString",
4546 "_remove:",
4547 "_remove:andAddMultipleToTypingAttributes:",
4548 "_removeAllCellMouseTracking",
4549 "_removeAllDrawersImmediately:",
4550 "_removeAllRevealovers",
4551 "_removeAllTrackingRects",
4552 "_removeAndDecrementBy:startingAtIndex:",
4553 "_removeBinding:",
4554 "_removeBinding:byReplacingWithRemainingBindingsInArray:",
4555 "_removeBottom",
4556 "_removeButtons",
4557 "_removeChild:",
4558 "_removeClipIndicatorFromSuperview",
4559 "_removeCursorRect:cursor:forView:",
4560 "_removeEntities:fromConfiguration:",
4561 "_removeEntity:",
4562 "_removeEntityNamed:",
4563 "_removeFileAtPath:handler:shouldDeleteFork:",
4564 "_removeFontDescriptor:fromCollection:save:",
4565 "_removeFontDescriptorFromDrag:point:",
4566 "_removeFrameUsingName:domain:",
4567 "_removeFromGroups:",
4568 "_removeFromKeyViewLoop",
4569 "_removeHeartBeartClientView:",
4570 "_removeHelpKeyForObject:",
4571 "_removeHiddenWindow:",
4572 "_removeItem:fromTable:",
4573 "_removeItemAtIndex:notifyDelegate:notifyView:notifyFamilyAndUpdateDefaults:",
4574 "_removeMouseMovedListener:",
4575 "_removeNextPointersToMe",
4576 "_removeNumberOfIndexes:fromSelectionIndexesAtIndex:sendObserverNotifications:",
4577 "_removeObject:objectIDMap:",
4578 "_removeObjectAtArrangedObjectIndex:objectHandler:",
4579 "_removeObjectForAttributeKey:",
4580 "_removeObjects:objectHandler:",
4581 "_removeObjectsAtArrangedObjectIndexPaths:objectHandler:",
4582 "_removeObjectsAtArrangedObjectIndexes:contentIndexes:objectHandler:",
4583 "_removeObserver:forProperty:",
4584 "_removeObserver:notificationNamesAndSelectorNames:object:",
4585 "_removeOrRename:",
4586 "_removePasswordForRealm:URL:",
4587 "_removePlugInStreamClient:",
4588 "_removePopUpWithTag:",
4589 "_removePreviousPointersToMe",
4590 "_removeProperty:",
4591 "_removePropertyNamed:",
4592 "_removeProxyPasswordForURL:",
4593 "_removeRangeInArrayAtIndex:",
4594 "_removeReferenceForIdentifier:",
4595 "_removeSortDescriptorForTableColumn:",
4596 "_removeSpellingAttributeForRange:",
4597 "_removeStatusItemWindow:",
4598 "_removeSubentity:",
4599 "_removeSubresourceClient:",
4600 "_removeSubview:",
4601 "_removeTabViewItems:",
4602 "_removeToolTip",
4603 "_removeToolTip:stopTimerIfNecessary:",
4604 "_removeTrackingRectForToolTip:stopTimerIfNecessary:",
4605 "_removeTrackingRectTag:",
4606 "_removeTrackingRects",
4607 "_removeTrackingRects:count:",
4608 "_removeTrackingRectsForView:stopTimerIfNecessary:",
4609 "_removeWindow:",
4610 "_removeWindowFromCache:",
4611 "_removeWindowRef",
4612 "_rename:",
4613 "_rename:as:",
4614 "_renameChild:toName:",
4615 "_renameCollection:to:",
4616 "_renameCollectionWithName:to:",
4617 "_renderingContextWithGlyphOrigin:",
4618 "_reorderColumn:withEvent:",
4619 "_reorderResizeImageCache",
4620 "_repTypesAllowImageTypeOmission:",
4621 "_repeatMultiplier:",
4622 "_repeatTime",
4623 "_repetitionCount",
4624 "_replaceAccessoryView:with:topView:bottomView:previousKeyView:",
4625 "_replaceAllItemsAndSetNewWithItemIdentifiers:",
4626 "_replaceCString:withCString:",
4627 "_replaceFontDescriptor:withDescriptor:inCollection:",
4628 "_replaceObject:withObject:",
4629 "_replaceRangeInArrayAtIndex:withRange:",
4630 "_replaceSelectionWithArchive:selectReplacement:",
4631 "_replaceSubview:with:rememberAndResetEditingFirstResponder:abortEditingIfNecessary:",
4632 "_replicatePath:atPath:operation:fileMap:handler:",
4633 "_representationClassForMIMEType:",
4634 "_representationExistsForURLScheme:",
4635 "_representedObjectForString:",
4636 "_representedObjectForString:allowNULL:",
4637 "_requestAnyEditableState",
4638 "_requestAnyEnabledState",
4639 "_requestAnyHiddenState",
4640 "_requestEditableState:",
4641 "_requestEnabledState:",
4642 "_requestHiddenState:",
4643 "_requestNotification",
4644 "_requestTextColor:",
4645 "_requestTypeForOperationKey:",
4646 "_requiredCarbonCatalogInfoMask",
4647 "_requiredMinSize",
4648 "_requiresCacheWithAlpha:",
4649 "_reset",
4650 "_resetAllChanges",
4651 "_resetAllChanges:",
4652 "_resetAllDrawersDisableCounts",
4653 "_resetAllDrawersPostingCounts",
4654 "_resetAlternateICUValues",
4655 "_resetCachedValidationState",
4656 "_resetCursorRects",
4657 "_resetDictionaryRepresentation",
4658 "_resetDisableCounts",
4659 "_resetDiscardMask",
4660 "_resetDragMargins",
4661 "_resetDrawerFirstResponder",
4662 "_resetFirstResponder",
4663 "_resetIncrementalSearchBuffer",
4664 "_resetMeasuredCell",
4665 "_resetModificationDate",
4666 "_resetMoveAndRenameSensing",
4667 "_resetOpacity:andForceSetColor:",
4668 "_resetPostingCounts",
4669 "_resetProgress",
4670 "_resetScreens",
4671 "_resetTitleBarButtons",
4672 "_resetTitleFont",
4673 "_resetTitleWidths",
4674 "_resetToolTipIfNecessary",
4675 "_reshapeContentAndToolbarView:resizeWindow:animate:",
4676 "_resignKeyFocus",
4677 "_resize:",
4678 "_resizeAccordingToTextView:",
4679 "_resizeAllCaches",
4680 "_resizeCache:cachedSeparately:bps:numColors:hasAlpha:",
4681 "_resizeColumn:withEvent:",
4682 "_resizeColumnByDelta:resizeInfo:",
4683 "_resizeContentsOfMainBox",
4684 "_resizeContentsOfMiniMode",
4685 "_resizeContentsOfPreviewBox",
4686 "_resizeCursorForTableColumn:",
4687 "_resizeDeltaFromPoint:toEvent:",
4688 "_resizeFromEdge",
4689 "_resizeHeight:",
4690 "_resizeImage",
4691 "_resizeKeepingPanelOnScreen:expand:",
4692 "_resizeOutlineColumn",
4693 "_resizeSelectedTabViewItem",
4694 "_resizeTable:level:range:column:widthDelta:",
4695 "_resizeTable:level:range:row:heightDelta:",
4696 "_resizeTextFieldToFit:",
4697 "_resizeTextViewForTextContainer:",
4698 "_resizeToolbarImageRepViewToFit:",
4699 "_resizeToolbarViewToFit:",
4700 "_resizeViewToFit:",
4701 "_resizeViewsForOffset:coordinate:",
4702 "_resizeWeight",
4703 "_resizeWeightSharedWithDuplicateItems",
4704 "_resizeWeighting",
4705 "_resizeWindow:toFrame:display:",
4706 "_resizeWindowWithMaxHeight:",
4707 "_resizeWithDelta:fromFrame:beginOperation:endOperation:",
4708 "_resizedImage:",
4709 "_resolveHelpKeyForObject:",
4710 "_resolveMarkerToPlaceholder:forBindingInfo:allowPluginOverride:",
4711 "_resolveName",
4712 "_resolveNamespaceForPrefix:",
4713 "_resolvePositionalStakeGlyphsForLineFragment:lineFragmentRect:minPosition:maxPosition:maxLineFragmentWidth:breakHint:",
4714 "_resolveTypeAlias:",
4715 "_resourceLoadDelegateForwarder",
4716 "_resourceLoadDelegateImplementations",
4717 "_resourceLoadLoop:",
4718 "_resourcesFromPropertyLists:",
4719 "_responderInitWithCoder:",
4720 "_response",
4721 "_responses",
4722 "_responsibleDelegateForSelector:",
4723 "_restartEditingWithTextView:",
4724 "_restartMovementTracking",
4725 "_restoreCursor",
4726 "_restoreDefaultSettingsCommon",
4727 "_restoreDefaultSettingsForOpenMode",
4728 "_restoreDefaultSettingsForSaveMode",
4729 "_restoreInitialMenuPosition",
4730 "_restoreMiniaturizedWindow",
4731 "_restoreModalWindowLevel",
4732 "_restoreMode",
4733 "_restoreMovieEditState:",
4734 "_restoreScrollPosition",
4735 "_restoreSplitPositionFromDefaults",
4736 "_restoreSubviews",
4737 "_restoreTornOffMenus",
4738 "_resultTypeDescription",
4739 "_resumeExecutionWithResult:",
4740 "_resumeIfNotTopHandling:withScriptCommandResult:",
4741 "_resumeInformation",
4742 "_resumeLoading",
4743 "_resumeUIHeartBeatingInView:",
4744 "_retainFutureIconForURL:",
4745 "_retainIconForIconURLString:",
4746 "_retainIconInDatabase:",
4747 "_retainOriginalIconsOnDisk",
4748 "_retainedObjectWithID:optionalHandler:",
4749 "_retainedPrimaryKeyNumberForObject:",
4750 "_retainedPrimaryKeyNumberForObjectID:",
4751 "_retrieveKeyboardUIModeFromPreferences:",
4752 "_returnFirstResponderToWindowFromKeyboardHotKeyEvent",
4753 "_returnValue",
4754 "_revealoverInfoForCell:cellRect:",
4755 "_revertAlertSheet:wasPresentedWithResult:inContext:",
4756 "_revertDisplayValueBackToOriginalValue:",
4757 "_revertToOldRowSelection:fromRow:toRow:",
4758 "_rightGroupRect",
4759 "_rightMouseUpOrDown:",
4760 "_rightToLeftAtIndex:",
4761 "_rightmostAutoresizingColumn",
4762 "_rollbackTransaction:",
4763 "_rootEntity",
4764 "_rootNode",
4765 "_rotateCoordsForDrawLabelInRect:",
4766 "_rowArrayForBlock:atIndex:layoutManager:containerWidth:rowCharRange:indexInRow:previousRowBlockHelper:",
4767 "_rowEntryForChild:ofParent:requiredRowEntryLoadMask:",
4768 "_rowEntryForItem:requiredRowEntryLoadMask:",
4769 "_rowEntryForRow:requiredRowEntryLoadMask:",
4770 "_rowHeaderColumn",
4771 "_rowHeaderFixedContentRect",
4772 "_rowHeaderScrollableContentVisibleRect",
4773 "_rowHeaderSeparatorLineColor",
4774 "_rowHeaderShadowSurface",
4775 "_rowHeaderShadowSurfaceBounds",
4776 "_rowHeaderShadowSurfaceIsShowing",
4777 "_rowHeaderTableColumn",
4778 "_rowHeightStorage:",
4779 "_rowHeightStorageBeginLayoutChange",
4780 "_rowHeightStorageComputeRectOfRow:cacheHint:",
4781 "_rowHeightStorageComputeRowAtPoint:cacheHint:",
4782 "_rowHeightStorageEndLayoutChange",
4783 "_rowHeightStorageInvalidateCacheAndStorage",
4784 "_rowHeightStorageUpdateForDeletedRows:atIndex:",
4785 "_rowHeightStorageUpdateForInsertedRows:atIndex:",
4786 "_rowsChangedByLastExecute",
4787 "_rowsInRectAssumingRowsCoverVisible:",
4788 "_ruleAreaRect",
4789 "_ruleImpl",
4790 "_ruleListImpl",
4791 "_ruleListWithImpl:",
4792 "_ruleWithImpl:",
4793 "_rulerAccView",
4794 "_rulerAccViewAlignmentAction:",
4795 "_rulerAccViewCenterTabWell",
4796 "_rulerAccViewDecimalTabWell",
4797 "_rulerAccViewLeftTabWell",
4798 "_rulerAccViewRightTabWell",
4799 "_rulerAccViewSetUpLists",
4800 "_rulerAccViewUpdateStyles:",
4801 "_rulerAccessoryViewAreaRect",
4802 "_rulerOrigin",
4803 "_runAlertPanelForDocumentMoved:orDocumentRenamed:orDocumentInTrash:orDocumentUnavailable:thenSaveDocumentWithDelegate:didSaveSelector:contextInfo:",
4804 "_runArrayHoldingAttributes",
4805 "_runBlocking",
4806 "_runCustomizationPanel",
4807 "_runInNewThread",
4808 "_runInitBook:",
4809 "_runModalWithColor:",
4810 "_runModalWithPrintInfo:",
4811 "_runningDocModal",
4812 "_sanityCheckPListDatabase:",
4813 "_saveConfigurationUsingName:domain:",
4814 "_saveCookies",
4815 "_saveCookiesIfScheduled",
4816 "_saveCredential:forProtectionSpace:isDefault:",
4817 "_saveCurrentPanelState:",
4818 "_saveDocumentAndScrollState",
4819 "_saveDocuments:",
4820 "_saveFrameUsingName:domain:",
4821 "_saveHistoryGuts:URL:error:",
4822 "_saveInitialMenuPosition",
4823 "_saveMode",
4824 "_saveObjects:toStore:usingContext:",
4825 "_savePanelAccessoryViewForWritableTypes:defaultType:",
4826 "_savePanelWasPresented:withResult:inContext:",
4827 "_saveRequestForStore:originalRequest:",
4828 "_saveScrollPositionToItem:",
4829 "_saveSplitPositionToDefaults",
4830 "_saveTornOffMenus",
4831 "_saveVisibleFrame",
4832 "_saveWidthsToDefaults",
4833 "_savedMode",
4834 "_savedVisibleFrame",
4835 "_scaleFactor",
4836 "_scaleFactorForPrintOperation:",
4837 "_scaleFactorForStyleMask:",
4838 "_scaleIcon:toSize:",
4839 "_scaledBackground",
4840 "_scaledIntegralRect:",
4841 "_scalesBackgroundHorizontally",
4842 "_scalesBackgroundVertically",
4843 "_scanDecimal:into:",
4844 "_scanForPlugIns:",
4845 "_scanImages",
4846 "_scheduleAutoExpandTimerForItem:",
4847 "_scheduleCallbacks",
4848 "_scheduleChangeNotification",
4849 "_scheduleDelayedAutocomplete",
4850 "_scheduleDelayedShowOpenHandCursorIfNecessary",
4851 "_scheduleInDefaultRunLoopForMode:",
4852 "_scheduleLocalNotification",
4853 "_scheduleRelease",
4854 "_scheduleReleaseTimer",
4855 "_scheduleSaveCookies",
4856 "_scheduleSetupOnLoadThread",
4857 "_scheduleWindow:forBatchOrdering:relativeTo:",
4858 "_schemeData",
4859 "_schemeSeparatorWithoutColon",
4860 "_scopeButtonsForNodes:",
4861 "_screenChanged:",
4862 "_screenRectContainingPoint:",
4863 "_scriptClassTerminologyForName:",
4864 "_scriptCommandTerminologyForName:",
4865 "_scriptElementImpl",
4866 "_scriptErrorExpectedType",
4867 "_scriptErrorOffendingObjectDescriptor",
4868 "_scriptIsYesForKey:default:",
4869 "_scriptStringWithPropertyAccess:",
4870 "_scriptStringWithTabCount:",
4871 "_scriptTerminologyDescription",
4872 "_scriptTerminologyName",
4873 "_scriptTerminologyNameOrNames",
4874 "_scriptTerminologyPluralName",
4875 "_scriptingEnumeratorOfType:withDescriptor:",
4876 "_scriptingObjectOfType:withDescriptor:",
4877 "_scriptingPointWithDescriptor:",
4878 "_scriptingRectangleWithDescriptor:",
4879 "_scriptingTextWithDescriptor:",
4880 "_scrollArrowHeight",
4881 "_scrollColumnToVisible:private:",
4882 "_scrollColumnToVisible:requireCompletelyVisible:",
4883 "_scrollColumnsForScrollerIncrementOrDecrementUsingPart:",
4884 "_scrollColumnsRightBy:",
4885 "_scrollDown:",
4886 "_scrollFieldEditorToVisible:",
4887 "_scrollHorizontallyBy:",
4888 "_scrollInProgress",
4889 "_scrollLastColumnMaxXEdgeToVisible",
4890 "_scrollLineHorizontally:",
4891 "_scrollLineVertically:",
4892 "_scrollPageInDirection:",
4893 "_scrollPoint:fromView:",
4894 "_scrollRangeToVisible:forceCenter:",
4895 "_scrollRectToVisible:fromView:",
4896 "_scrollRowToCenter:",
4897 "_scrollSelectionToVisible",
4898 "_scrollTo:",
4899 "_scrollTo:animate:",
4900 "_scrollToFinalPosition",
4901 "_scrollToMatchContentView",
4902 "_scrollToPosition:",
4903 "_scrollUp:",
4904 "_scrollVerticallyBy:",
4905 "_scrollView",
4906 "_scrollViewForColumnsDidTrackHorizontalScroller:",
4907 "_scrollViewForColumnsDocumentViewFrameDidChange:",
4908 "_scrollViewForColumnsDocumentViewVisibilityChange:",
4909 "_scrollViewForColumnsWillTrackHorizontalScroller:",
4910 "_scrollWheelMultiplier",
4911 "_scrollingDirectionAndDeltas:",
4912 "_scrollingMenusAreEnabled",
4913 "_searchChanged:",
4914 "_searchFavoriteStyleCollection",
4915 "_searchFieldAction:",
4916 "_searchFieldCancel:",
4917 "_searchFieldClearRecents:",
4918 "_searchFieldDoRecent:",
4919 "_searchFieldSearch:",
4920 "_searchForImageNamed:",
4921 "_searchForSoundNamed:",
4922 "_searchForSystemImageNamed:",
4923 "_searchMenuForProxy",
4924 "_searchMenuTemplate",
4925 "_searchMenuTracking",
4926 "_searchRegularCollection",
4927 "_secProtocolForProtectionSpace:",
4928 "_secondsFromGMTForAbsoluteTime:",
4929 "_seemsToBeVertical",
4930 "_segmentIndexForElementIndex:",
4931 "_selectAllContent:inDetailcontroller:",
4932 "_selectAllForMatrix:sender:",
4933 "_selectAllNoRecurse:",
4934 "_selectAnyValidResponderOverride",
4935 "_selectCell:inColumn:",
4936 "_selectCellIfRequired",
4937 "_selectCrayon:updateSelection:",
4938 "_selectElementImpl",
4939 "_selectFirstEnabledCell",
4940 "_selectFirstKeyView",
4941 "_selectHighlightedSegment",
4942 "_selectInTabView:itemAtIndex:",
4943 "_selectInTabView:itemWithIdentifier:",
4944 "_selectInTabView:itemWithLabel:",
4945 "_selectKeyCellAtRow:column:",
4946 "_selectMarkedText",
4947 "_selectModuleOwner:",
4948 "_selectNameFieldContentsExcludingExtension",
4949 "_selectNextCellKeyStartingAtRow:column:",
4950 "_selectNextItem",
4951 "_selectNextSubfield",
4952 "_selectObjectsAtIndexPaths:avoidsEmptySelection:sendObserverNotifications:",
4953 "_selectObjectsAtIndexPathsNoCopy:avoidsEmptySelection:sendObserverNotifications:",
4954 "_selectObjectsAtIndexes:avoidsEmptySelection:sendObserverNotifications:forceUpdate:",
4955 "_selectObjectsAtIndexesNoCopy:avoidsEmptySelection:sendObserverNotifications:forceUpdate:",
4956 "_selectOrEdit:inView:target:editor:event:start:end:",
4957 "_selectPopUpWithTag:",
4958 "_selectPreviousItem",
4959 "_selectPreviousSubfield",
4960 "_selectRange::::",
4961 "_selectRangeInMarkedText:",
4962 "_selectRectRange::",
4963 "_selectRowIndexes:inColumn:",
4964 "_selectRowRange::",
4965 "_selectTabWithDraggingInfo:",
4966 "_selectTextOfCell:",
4967 "_selectWindow:",
4968 "_selectedArchive",
4969 "_selectedCellsInColumn:",
4970 "_selectedCollectionDescriptors",
4971 "_selectedCollectionName",
4972 "_selectedCollectionStyle",
4973 "_selectedCrayon",
4974 "_selectedFaceName",
4975 "_selectedFamilyArray",
4976 "_selectedFamilyName",
4977 "_selectedFontName",
4978 "_selectedRange",
4979 "_selectedRanges",
4980 "_selectedRangesByTogglingRanges:withRanges:initialCharacterIndex:granularity:",
4981 "_selectedSize",
4982 "_selectionChanged",
4983 "_selectionIndexesCount",
4984 "_selectionIsInsideMarkedText",
4985 "_selectionPasteboardTypes",
4986 "_selectionStartFontAttributesAsRTF",
4987 "_selectorName",
4988 "_selectorToGetValueWithNameForKey:",
4989 "_selectorToGetValueWithUniqueIDForKey:",
4990 "_selfBoundsChanged",
4991 "_sendAction:to:row:column:",
4992 "_sendActionAndNotification",
4993 "_sendActionFrom:",
4994 "_sendCallbacks",
4995 "_sendCarbonNotification",
4996 "_sendCarbonNotificationFor:tags:withValuePtrs:andSizes:",
4997 "_sendCarbonNotificationForTag:withValuePtr:andSize:",
4998 "_sendChangeNotification",
4999 "_sendClientMessage:arg1:arg2:",
5000 "_sendDataSourceSetObjectValue:",
5001 "_sendDataSourceSortDescriptorsDidChange:",
5002 "_sendDataSourceWriteDragDataWithIndexes:toPasteboard:",
5003 "_sendDataSourceWriteDragRows:toPasteboard:",
5004 "_sendDelegateCanSelectColumn:byExtendingSelection:",
5005 "_sendDelegateCanSelectRow:byExtendingSelection:",
5006 "_sendDelegateCreateRowsForColumn:inMatrix:",
5007 "_sendDelegateDidClickColumn:",
5008 "_sendDelegateDidDragColumn:",
5009 "_sendDelegateDidMouseDownInHeader:",
5010 "_sendDelegateHeightOfRow:",
5011 "_sendDelegateSelectRow:inColumn:",
5012 "_sendDelegateToolTipForCell:tableColumn:rect:row:mouseLocation:",
5013 "_sendDelegateWillDisplayCell:atRow:column:",
5014 "_sendDelegateWillDisplayCell:forColumn:row:",
5015 "_sendDelegateWillDisplayOutlineCell:inOutlineTableColumnAtRow:",
5016 "_sendDidBeginMessage",
5017 "_sendDidCancelAuthenticationCallback",
5018 "_sendDidFailCallback",
5019 "_sendDidFailToDispatchNotification",
5020 "_sendDidFinishLoadingCallback",
5021 "_sendDidReceiveAuthenticationCallback",
5022 "_sendDidReceiveDataCallback",
5023 "_sendDidReceiveResponseCallback",
5024 "_sendDirectoryDidChange",
5025 "_sendDoubleActionToCellAt:",
5026 "_sendFileSystemChangedNotificationForSavePanelInfo:",
5027 "_sendFinderAppleEvent:class:file:",
5028 "_sendFinishLaunchingNotification",
5029 "_sendNotification:entries:",
5030 "_sendNotificationForURL:",
5031 "_sendOrEnqueueNotification:selector:",
5032 "_sendPartialString",
5033 "_sendPortMessageWithComponent:msgID:timeout:",
5034 "_sendQueuedAction",
5035 "_sendSelectionDidChange",
5036 "_sendToReceiversWithIndex:andFillInResults:",
5037 "_sendToolTipMouseEntered",
5038 "_sendToolTipMouseExited",
5039 "_sendWillCacheResponseCallback",
5040 "_sendWillSendRequestCallback",
5041 "_senderIsInvalid:",
5042 "_sendingSocketForPort:",
5043 "_sendingTableViewRowAction",
5044 "_separatorFinishInit",
5045 "_serverDied:",
5046 "_servicesMenuHasBeenBuilt",
5047 "_setActivationState:",
5048 "_setActsAsPalette:forToolbar:",
5049 "_setAdditionalThingsFromEvent:",
5050 "_setAllItemsTransparentBackground:",
5051 "_setAllPossibleLabelsToFit:",
5052 "_setAllowsMultipleRows:",
5053 "_setAllowsNonVisibleCellsToBecomeFirstResponder:",
5054 "_setAllowsTearOffs:",
5055 "_setAltContents:",
5056 "_setAlwaysUseATSU:",
5057 "_setAnimateColumnScrollingForAnyEvent:",
5058 "_setAnimates:",
5059 "_setAppleEventHandling:",
5060 "_setApplicationIconImage:setDockImage:",
5061 "_setArgFrame:",
5062 "_setAsideSubviews",
5063 "_setAttributeValueClassName:",
5064 "_setAttributes:isMultiple:",
5065 "_setAttributes:newValues:range:",
5066 "_setAutoAppendsMDAttributesToSavedFile:",
5067 "_setAutoGeneratedInitialFirstResponder:",
5068 "_setAutoPositionMask:",
5069 "_setAutoscrollDate:",
5070 "_setAutovalidatesItems:",
5071 "_setAvoidsActivation:",
5072 "_setBackgroundColor:",
5073 "_setBaselineRenderingMode:",
5074 "_setBatchingParams",
5075 "_setBindingAdaptor:",
5076 "_setBindingCreationDelegate:",
5077 "_setBlockCapacity:",
5078 "_setBool:ifNoAttributeForKey:",
5079 "_setBoolValue:forKey:",
5080 "_setBorderType:",
5081 "_setBox:enabled:",
5082 "_setBrowserOptimizationsEnabled:",
5083 "_setBulletCharacter:",
5084 "_setBundle:forClassPresentInAppKit:",
5085 "_setBundleForHelpSearch:",
5086 "_setButtonImageSource:",
5087 "_setButtonToolTip:",
5088 "_setButtonType:adjustingImage:",
5089 "_setCGImageRef:",
5090 "_setCacheWindowNum:forWindow:",
5091 "_setCalculatedExpiration:",
5092 "_setCallbackHandler:",
5093 "_setCanUseReorderResizeImageCache:",
5094 "_setCaseConversionFlags",
5095 "_setCellFrame:",
5096 "_setChangedFlags:",
5097 "_setChangedObjectIDs:",
5098 "_setClipIndicatorItemsFromItemViewers:",
5099 "_setColorList:",
5100 "_setColorPanelColor:force:",
5101 "_setColorToChange:",
5102 "_setColumnName:",
5103 "_setConfigurationFromDictionary:notifyFamilyAndUpdateDefaults:",
5104 "_setConfigurationUsingName:domain:",
5105 "_setContainerObservesTextViewFrameChanges:",
5106 "_setContentInBackground:",
5107 "_setContentKindAndEncoding",
5108 "_setContentRect:",
5109 "_setContentToContentFromIndexSet:",
5110 "_setContents:",
5111 "_setContentsDirty:",
5112 "_setContentsDirtyForNodeWithIdentifier:",
5113 "_setContextMenuEvent:",
5114 "_setContextMenuTarget:",
5115 "_setContinuousSpellCheckingEnabledForNewTextAreas:",
5116 "_setControl:",
5117 "_setControlTextDelegateFromOld:toNew:",
5118 "_setControlView:",
5119 "_setConversionFromData:type:inPasteboard:generation:item:",
5120 "_setConvertedData:pboard:generation:inItem:",
5121 "_setCookies:forURL:policyBaseURL:",
5122 "_setCookiesWithoutSaving:whilePrivateBrowsing:",
5123 "_setCorrelationTableName:",
5124 "_setCtrlAltForHelpDesired:",
5125 "_setCurrImageName:",
5126 "_setCurrentAttachmentRect:index:",
5127 "_setCurrentBrowsingNodePath:makeHistory:notify:",
5128 "_setCurrentClient:",
5129 "_setCurrentCollectionRep:",
5130 "_setCurrentDirectoryNode:",
5131 "_setCurrentDirectoryNode:makeHistory:notify:",
5132 "_setCurrentDirectoryNode:pathToNode:",
5133 "_setCurrentEvent:",
5134 "_setCurrentInputFilepath:",
5135 "_setCurrentItemsToItemIdentifiers:notifyDelegate:notifyView:notifyFamilyAndUpdateDefaults:",
5136 "_setCurrentListLevel:",
5137 "_setCurrentListNumber:",
5138 "_setCurrentlyEditing:",
5139 "_setDTDString:",
5140 "_setData:",
5141 "_setData:encoding:",
5142 "_setDataForkReferenceNumber:",
5143 "_setDataSource:",
5144 "_setDefaultButtonCell:",
5145 "_setDefaultButtonIndicatorNeedsDisplay",
5146 "_setDefaultButtonPaused:",
5147 "_setDefaultKeyViewLoop",
5148 "_setDefaultKeyViewLoopAndInitialFirstResponder",
5149 "_setDefaultRedColor:",
5150 "_setDefaultUserInfoFromURL:",
5151 "_setDefaultWindowKeyViewLoop",
5152 "_setDefaults:",
5153 "_setDelegate:",
5154 "_setDelegate:forPanel:",
5155 "_setDescriptorNoCopy:",
5156 "_setDeselectsWhenMouseLeavesDuringDrag:",
5157 "_setDirectoryPath:",
5158 "_setDisableLiveResizeImageCaching:",
5159 "_setDisplayContents:usingSimpleCommandDefaults:",
5160 "_setDisplayName:",
5161 "_setDisplayValue:object:triggerRedisplay:",
5162 "_setDistanceForVerticalArrowKeyMovement:",
5163 "_setDocViewFromRead:",
5164 "_setDocumentDictionaryName:",
5165 "_setDocumentEdited:",
5166 "_setDocumentView:",
5167 "_setDocumentWindow:",
5168 "_setDontWarnMessage:",
5169 "_setDragAndDropCharRange:",
5170 "_setDragAndDropCharRanges:",
5171 "_setDragGlyphRange:",
5172 "_setDragRef:",
5173 "_setDraggingDocumentView:",
5174 "_setDraggingMarker:",
5175 "_setDrawBackground:",
5176 "_setDrawDelegate:",
5177 "_setDrawerEdge:",
5178 "_setDrawingBackground:",
5179 "_setDrawingInRevealover:",
5180 "_setDrawingToHeartBeatWindow:",
5181 "_setDrawsBaseline:",
5182 "_setDrawsOwnDescendants:",
5183 "_setDynamicToolTipsEnabled:",
5184 "_setEditingTextView:",
5185 "_setEnableDelegateNotifications:",
5186 "_setEnableFlippedImageFix:",
5187 "_setEnabled:",
5188 "_setEnabledFileTypes:",
5189 "_setEncounteredCloseError:",
5190 "_setEndSubelementFromDescriptor:",
5191 "_setEndsTopLevelGroupingsAfterRunLoopIterations:",
5192 "_setEntity:",
5193 "_setEntityTag:",
5194 "_setError:",
5195 "_setEventMask:",
5196 "_setEventRef:",
5197 "_setExcludedFromVisibleWindowList:",
5198 "_setExpectedContentLength:",
5199 "_setExplicitlyCannotAdd:insert:remove:",
5200 "_setExplicitlyCannotAdd:remove:",
5201 "_setFault:",
5202 "_setFaultHandler:",
5203 "_setFetchIndex:",
5204 "_setFileSpecifier:",
5205 "_setFileURL:",
5206 "_setFinalSlideLocation:",
5207 "_setFirstColumnTitle:",
5208 "_setFloat:ifNoAttributeForKey:",
5209 "_setFocusForCell:forView:withFrame:withFocusRingFrame:withInset:",
5210 "_setFocusRingNeedsDisplay",
5211 "_setFocusRingNeedsDisplayIfNecessary",
5212 "_setFont:",
5213 "_setFont:forCell:",
5214 "_setFontPanel:",
5215 "_setForceActiveControls:",
5216 "_setForceFixAttributes:",
5217 "_setForceItemsToBeMinSize:",
5218 "_setForceNotKeyWindowForInputContext:",
5219 "_setForceOriginalFontBaseline:",
5220 "_setFormInfoFromRequest:",
5221 "_setFrame:",
5222 "_setFrameAfterMove:",
5223 "_setFrameAutosaveName:changeFrame:",
5224 "_setFrameCommon:display:stashSize:",
5225 "_setFrameFromString:force:",
5226 "_setFrameNeedsDisplay:",
5227 "_setFrameSavedUsingTitle:",
5228 "_setFrameSize:",
5229 "_setFrameSize:forceScroll:",
5230 "_setFrameUsingName:domain:force:",
5231 "_setGenericValue:forKey:withIndex:flags:",
5232 "_setGroupIdentifier:",
5233 "_setHasBorder:",
5234 "_setHasCustomSettings:",
5235 "_setHasHorizontalScroller:",
5236 "_setHasObservers:",
5237 "_setHasRetainedStoreResources:",
5238 "_setHasSeenRightToLeft:",
5239 "_setHaveNoIconForIconURL:",
5240 "_setHelpCursor:",
5241 "_setHelpKey:forObject:",
5242 "_setHidden:",
5243 "_setHiddenExtension:",
5244 "_setHideWithoutResizingWindowHint:",
5245 "_setHidesOnDeactivateInCache:forWindow:",
5246 "_setHighlighted:displayNow:",
5247 "_setHighlightedRowsFromNodes:maintainFirstVisibleRow:",
5248 "_setHorizontalScrollerHidden:",
5249 "_setIcon:forIconURL:",
5250 "_setIconRef:",
5251 "_setIconURL:",
5252 "_setIconURL:forURL:",
5253 "_setIconURL:withType:",
5254 "_setIgnoreForKeyViewLoop:",
5255 "_setIgnoringScrolling:",
5256 "_setImage:",
5257 "_setImage:fromWindow:",
5258 "_setImageAndNotifyTarget:",
5259 "_setImageForState",
5260 "_setImageNumber:",
5261 "_setImpactsWindowMoving:",
5262 "_setInScaledWindow:",
5263 "_setIndex:",
5264 "_setIndicatorImage:",
5265 "_setInitialColumnContentSizeOfColumn:",
5266 "_setInitialFirstResponder:autoGenerated:",
5267 "_setInitialNameFieldContentsFromPosixName:",
5268 "_setInitialized:",
5269 "_setInitiatedDrag:",
5270 "_setInputs:",
5271 "_setInsertionPointDisabled:",
5272 "_setInstance:forIdentifier:",
5273 "_setInt:ifNoAttributeForKey:",
5274 "_setIntegerValue:forKey:",
5275 "_setInteriorNextKeyView:",
5276 "_setInternalLoadDelegate:",
5277 "_setInverseManyToMany:",
5278 "_setInverseRelationship:",
5279 "_setIsActive:",
5280 "_setIsClientRedirect:",
5281 "_setIsEditable:",
5282 "_setIsExpanded:",
5283 "_setIsGrabber:",
5284 "_setIsSmallCapsRenderer:",
5285 "_setIsWhite:",
5286 "_setItemViewer:",
5287 "_setJavaClassesLoaded",
5288 "_setJobDisposition:savePath:inPrintSession:printSettings:",
5289 "_setJustOpenedForTargetedLink:",
5290 "_setKeepCacheWindow:",
5291 "_setKeyCellAtRow:column:",
5292 "_setKeyCellFromBottom",
5293 "_setKeyCellFromTop",
5294 "_setKeyCellNeedsDisplay",
5295 "_setKeySegment:",
5296 "_setKeyViewGroupBoundaryNeedsRecalc:",
5297 "_setKeyViewLoopNeedsRecalc:",
5298 "_setKeyViewRedirectionDisabled:",
5299 "_setKeyViewSelectionDirection:",
5300 "_setKeyWindow:",
5301 "_setKeyboardFocusRingNeedsDisplay",
5302 "_setKeyboardFocusRingNeedsDisplayDuringLiveResize",
5303 "_setKeyboardFocusRingNeedsDisplayForTabViewItem:",
5304 "_setKeyboardLoopNeedsUpdating:",
5305 "_setKind:",
5306 "_setKnobThickness:usingInsetRect:",
5307 "_setLabel:",
5308 "_setLang:",
5309 "_setLastCheckedRequest:",
5310 "_setLastDragDestinationOperation:",
5311 "_setLastGuess:",
5312 "_setLastSnapshot:",
5313 "_setLastVisitedTimeInterval:",
5314 "_setLazyDestinationEntityName:",
5315 "_setLength:ofStatusItemWindow:",
5316 "_setLevel",
5317 "_setLevelForAllDrawers",
5318 "_setLineBorderColor:",
5319 "_setLineBreakMode:",
5320 "_setLineColor:",
5321 "_setLiveResize:",
5322 "_setLiveResizeImageCacheingEnabled:",
5323 "_setLoadType:",
5324 "_setLoadedCookiesWithoutSaving:",
5325 "_setLoading:",
5326 "_setLocalName:",
5327 "_setLocalizationPolicy:",
5328 "_setLocationTemporary:",
5329 "_setMIMEType:",
5330 "_setMainDocumentError:",
5331 "_setMainWindow:",
5332 "_setMaintainingInverse:",
5333 "_setManagedObjectContext:",
5334 "_setManagedObjectModel:",
5335 "_setMap:",
5336 "_setMarginHeight:",
5337 "_setMarginWidth:",
5338 "_setMarkedText:selectedRange:forInputManager:",
5339 "_setMarkedWidth:",
5340 "_setMenu:",
5341 "_setMenuClassName:",
5342 "_setMenuName:",
5343 "_setMessageAndInformativeText",
5344 "_setMetrics:",
5345 "_setMinColumnLayoutMinRequiredVisibleWidth:",
5346 "_setMinPickerContentSize:",
5347 "_setMinSize:",
5348 "_setMiniImageInDock",
5349 "_setMinimizeOnDoubleClick",
5350 "_setModal:",
5351 "_setModalInCache:forWindow:",
5352 "_setModalWindowLevel",
5353 "_setModelKeys:triggerChangeNotificationsForDependentKey:",
5354 "_setModified:",
5355 "_setModifier:",
5356 "_setMouseActivationInProgress:",
5357 "_setMouseDownEvent:",
5358 "_setMouseDownFlags:",
5359 "_setMouseEnteredGroup:entered:",
5360 "_setMouseMovedEventsEnabled:",
5361 "_setMouseTrackingForCell:",
5362 "_setMouseTrackingInRect:ofView:",
5363 "_setMultipleValue:forKey:atIndex:",
5364 "_setMultipleValue:forKey:atIndexPath:",
5365 "_setMultipleValue:forKeyPath:atIndex:",
5366 "_setMultipleValue:forKeyPath:atIndexPath:",
5367 "_setName:",
5368 "_setNameFieldContentsFromPosixName:",
5369 "_setNeedToFlushGlyph:",
5370 "_setNeedsDisplay:",
5371 "_setNeedsDisplayBeginingAtColumn:",
5372 "_setNeedsDisplayForColumn:draggedDelta:",
5373 "_setNeedsDisplayForDropCandidateItem:childIndex:mask:",
5374 "_setNeedsDisplayForDropCandidateRow:operation:mask:",
5375 "_setNeedsDisplayForFirstResponderChange",
5376 "_setNeedsDisplayForItemIdentifierSelection:",
5377 "_setNeedsDisplayForItemViewerSelection:",
5378 "_setNeedsDisplayForItemViewers:movingFromFrames:toFrames:",
5379 "_setNeedsDisplayForSelectedCells",
5380 "_setNeedsDisplayForSortingChangeInColumn:",
5381 "_setNeedsDisplayForTabViewItem:",
5382 "_setNeedsDisplayIfTopLeftChanged",
5383 "_setNeedsDisplayInColumn:",
5384 "_setNeedsDisplayInColumn:includeHeader:",
5385 "_setNeedsDisplayInColumn:row:",
5386 "_setNeedsDisplayInColumnRange:includeHeader:",
5387 "_setNeedsDisplayInPrimarySortColumns",
5388 "_setNeedsDisplayInPrimarySortColumnsIfNecessary",
5389 "_setNeedsDisplayInRectForLiveResize:",
5390 "_setNeedsDisplayInRow:",
5391 "_setNeedsDisplayInRow:column:",
5392 "_setNeedsHighlightedTextHint:",
5393 "_setNeedsModeConfiguration:",
5394 "_setNeedsModeConfiguration:itemViewers:",
5395 "_setNeedsRecalc",
5396 "_setNeedsRedrawBeforeFirstLiveResizeCache:",
5397 "_setNeedsStateUpdate:",
5398 "_setNeedsTiling",
5399 "_setNeedsToRemoveFieldEditor:",
5400 "_setNeedsToResetDragMargins:",
5401 "_setNeedsToUseHeartBeatWindow:",
5402 "_setNeedsViewerLayout:",
5403 "_setNeedsViewerLayout:itemViewers:",
5404 "_setNeedsZoom:",
5405 "_setNewPreferedColumnWidth:",
5406 "_setNextKeyBindingManager:",
5407 "_setNextKeyViewFor:toNextKeyView:",
5408 "_setNextSizeAndDisplayMode",
5409 "_setNextToolbarSizeAndDisplayMode:",
5410 "_setNoVerticalAutosizing:",
5411 "_setNonactivatingPanel:",
5412 "_setNumVisibleColumns:",
5413 "_setNumVisibleSwatchRows:",
5414 "_setNumberOfRowsCacheIsValid:",
5415 "_setObject:",
5416 "_setObject:forAttributeKey:",
5417 "_setObject:forBothSidesOfRelationshipWithKey:",
5418 "_setObject:forProperty:usingDataSize:",
5419 "_setObject:ifNoAttributeForKey:",
5420 "_setObject:inReceiver:",
5421 "_setObjectHandler:",
5422 "_setObjectID:",
5423 "_setObjects:",
5424 "_setOneShotIsDelayed:",
5425 "_setOpenRecentMenu:",
5426 "_setOptions:forBinding:",
5427 "_setOptions:withBindingInfo:",
5428 "_setOrderDependency:",
5429 "_setOrientation:inPageFormat:",
5430 "_setOriginalFileInfoFromFileAttributes:",
5431 "_setOriginalSnapshot:",
5432 "_setOriginalString:range:",
5433 "_setOverflowHeaderCellPrototype:",
5434 "_setOverrideEncoding:",
5435 "_setOwnedByPopUp:",
5436 "_setPM:",
5437 "_setPageFormat:",
5438 "_setPageGenerationOrder:",
5439 "_setPaperName:inPrintSession:pageFormat:",
5440 "_setPaperSize:inPrintSession:inPageFormat:",
5441 "_setParameter:forOption:withBindingInfo:",
5442 "_setParent:",
5443 "_setParentWindow:",
5444 "_setParserError:",
5445 "_setPartialKeysWithTableBinder:forAllTableColumnBindersOfTableView:",
5446 "_setPartialKeysWithTableBinder:forTableColumnBinder:",
5447 "_setPeerCertificateChain:",
5448 "_setPendingDeletion:",
5449 "_setPendingInsertion:",
5450 "_setPendingUpdate:",
5451 "_setPersistentStore:",
5452 "_setPlaceholderAttributedString:",
5453 "_setPlaceholderString:",
5454 "_setPolicyDataSource:",
5455 "_setPostsFocusChangedNotifications:",
5456 "_setPrefix:",
5457 "_setPressedTabViewItem:",
5458 "_setPreventsActivation:",
5459 "_setPreviewFont:",
5460 "_setPreviousNibBindingConnector:",
5461 "_setPreviousSizeAndDisplayMode",
5462 "_setPreviousToolbarSizeAndDisplayMode:",
5463 "_setPrimaryLoadComplete:",
5464 "_setPrimitiveValue:forKey:",
5465 "_setPrintEventRetrofitInfo:",
5466 "_setPrintSettings:",
5467 "_setPrinter:inPrintSession:",
5468 "_setPrinting:minimumPageWidth:maximumPageWidth:adjustViewSize:",
5469 "_setProperty:forKey:",
5470 "_setProvisionalDataSource:",
5471 "_setRTFDFileWrapper:",
5472 "_setReadOnly:",
5473 "_setRealDelegate:",
5474 "_setRealTitle:",
5475 "_setRealm:forURL:",
5476 "_setReceiveHandlerRef:",
5477 "_setRecents:",
5478 "_setRegisteredForChildNotifications:",
5479 "_setRegistryAttributes:",
5480 "_setRelativeOrdering:",
5481 "_setReorderResizeImageCache:",
5482 "_setRepresentation:",
5483 "_setRepresentationListCache:",
5484 "_setRepresentedFilename:",
5485 "_setRequest:",
5486 "_setResizeControlNeedsDisplay",
5487 "_setResizeWeighting:",
5488 "_setResourceForkReferenceNumber:",
5489 "_setResponse:",
5490 "_setRevealoversDirty:",
5491 "_setRootNode:makeHistory:notify:",
5492 "_setRotatedFromBase:",
5493 "_setRotatedOrScaledFromBase:",
5494 "_setRowHeaderTableColumn:",
5495 "_setRowHeaderTableColumn:repositionTableColumnIfNecessary:",
5496 "_setSQLType:",
5497 "_setScaleFactor:",
5498 "_setScriptErrorExpectedType:",
5499 "_setScriptErrorFromKVCException:",
5500 "_setScriptErrorOffendingObjectDescriptor:",
5501 "_setScroller:",
5502 "_setSelectedCell:",
5503 "_setSelectedCell:atRow:column:",
5504 "_setSelectedNodes:",
5505 "_setSelectedScopeLocationNodes:",
5506 "_setSelectionRange::",
5507 "_setSelectorName:",
5508 "_setServerModificationDateString:",
5509 "_setShadowParameters",
5510 "_setShadowStyle:",
5511 "_setSharedIdentifier:",
5512 "_setSheet:",
5513 "_setShouldPostEventNotifications:",
5514 "_setShowAlpha:andForce:",
5515 "_setShowOpaqueGrowBox:",
5516 "_setShowOpaqueGrowBoxForOwner:",
5517 "_setShowingModalFrame:",
5518 "_setShowsAllDrawing:",
5519 "_setSidebarVolumesNode:favoritesNode:",
5520 "_setSidebarWidth:maintainSnap:constrain:",
5521 "_setSingleChild:",
5522 "_setSingleValue:forKey:",
5523 "_setSingleValue:forKeyPath:",
5524 "_setSlotIfDefault:",
5525 "_setSortable:showSortIndicator:ascending:priority:highlightForSort:",
5526 "_setSpotlightedAttachment:",
5527 "_setStartSubelementFromDescriptor:",
5528 "_setState:",
5529 "_setStatesImmediatelyInObject:mode:triggerRedisplay:",
5530 "_setStoredInPageCache:",
5531 "_setStringValue:forKey:",
5532 "_setSubmenu:",
5533 "_setSuperentity:",
5534 "_setSuperview:",
5535 "_setSurface:",
5536 "_setTabRect:",
5537 "_setTabState:",
5538 "_setTabView:",
5539 "_setTarget:",
5540 "_setTargetProcess:",
5541 "_setTextAttributeParaStyleNeedsRecalc",
5542 "_setTextColorInObject:mode:compareDirectly:toTextColor:",
5543 "_setTextContainer:",
5544 "_setTextFieldStringValue:",
5545 "_setTexturedBackground:",
5546 "_setThumbnailView:",
5547 "_setTitle:",
5548 "_setTitle:ofColumn:",
5549 "_setTitleFixedPointWindowFrame:display:animate:",
5550 "_setTitleNeedsDisplay",
5551 "_setToOneSlot:objectID:",
5552 "_setTokenFieldDelegate:",
5553 "_setToolTip:",
5554 "_setToolTip:forView:cell:rect:owner:ownerIsDisplayDelegate:userData:",
5555 "_setToolbar:",
5556 "_setToolbarItem:",
5557 "_setToolbarShowHideResizeWeightingOptimizationOn:",
5558 "_setToolbarView:",
5559 "_setToolbarViewWindow:",
5560 "_setTopLevelFrameName:",
5561 "_setTrackingHandlerRef:",
5562 "_setTrackingRect:inside:owner:userData:useTrackingNum:",
5563 "_setTrackingRect:inside:owner:userData:useTrackingNum:install:",
5564 "_setTrackingRects",
5565 "_setTrackingRects:insideList:owner:userDataList:trackingNums:count:",
5566 "_setTriggeringAction:",
5567 "_setUIConstraints:",
5568 "_setURI:",
5569 "_setURL:",
5570 "_setUndoRedoInProgress:",
5571 "_setUnicodeInputEventReceived:",
5572 "_setUpAppKitCoercions",
5573 "_setUpAppKitTranslations",
5574 "_setUpDefaultTopLevelObject",
5575 "_setUpFoundationCoercions",
5576 "_setUpFoundationTranslations",
5577 "_setUpOperation:helpedBy:",
5578 "_setUpTextField:",
5579 "_setUseCellFieldEditorUndo:",
5580 "_setUseModalAppearance:",
5581 "_setUsesQuickdraw:",
5582 "_setUtilityWindow:",
5583 "_setValidatedPosixName:",
5584 "_setValue:forBinding:errorFallbackMessage:",
5585 "_setValue:forKey:",
5586 "_setValue:forKeyPath:ofObject:mode:validateImmediately:raisesForNotApplicableKeys:error:",
5587 "_setValue:forKeyPath:ofObjectAtIndex:",
5588 "_setValue:forKeyPath:ofObjectAtIndexPath:",
5589 "_setValue:type:forParameter:",
5590 "_setValueWithSelector:",
5591 "_setVerticalScrollerHidden:",
5592 "_setVisible:",
5593 "_setVisibleInCache:forWindow:",
5594 "_setVisibleRectOfColumns:",
5595 "_setWaitingForCallback:",
5596 "_setWantsHideOnDeactivate:",
5597 "_setWantsKeyboardLoop:",
5598 "_setWantsRevealovers:",
5599 "_setWantsToActivate:",
5600 "_setWantsToBeOnMainScreen:",
5601 "_setWantsToDestroyRealWindow:",
5602 "_setWantsToolbarContextMenu:",
5603 "_setWebFrame:",
5604 "_setWebView:",
5605 "_setWidth:",
5606 "_setWindow:",
5607 "_setWindowContextForCurrentThread:",
5608 "_setWindowDepth:",
5609 "_setWindowFrameForPopUpAttachingToRect:onScreen:preferredEdge:popUpSelectedItem:",
5610 "_setWindowNumber:",
5611 "_setWindowTag",
5612 "_setWindowsNeedUpdateForSecondaryThread:",
5613 "_setWithOffset:",
5614 "_setWords:inDictionary:",
5615 "_setWritesCancelled:",
5616 "_settings",
5617 "_setup",
5618 "_setupAnimationInfo",
5619 "_setupBoundsForLineFragment:",
5620 "_setupButtonImageAndToolTips",
5621 "_setupCallbacksSavingToFile:",
5622 "_setupFileListModeControl",
5623 "_setupFont",
5624 "_setupForWindow:",
5625 "_setupHistoryControl",
5626 "_setupIdle",
5627 "_setupOpenPanel",
5628 "_setupProfileUI",
5629 "_setupRootForPrinting:",
5630 "_setupRunLoopTimer",
5631 "_setupSearchParts",
5632 "_setupSegmentSwitchForControl:firstImage:secondImage:action:",
5633 "_setupSurfaceAndStartSpinning:",
5634 "_setupToolbar",
5635 "_setupUI",
5636 "_setupWindow",
5637 "_shadowAsString:",
5638 "_shadowFlags",
5639 "_shadowType",
5640 "_shapeMenuPanel",
5641 "_sharedFieldEditor",
5642 "_sharedSecureFieldEditor",
5643 "_sharedSecureFieldEditorCreate",
5644 "_sharedTextCell",
5645 "_sharedWebFormDelegate",
5646 "_sheetDidDismiss:returnCode:contextInfo:",
5647 "_sheetDidEnd:returnCode:contextInfo:",
5648 "_sheetDidEndShouldDelete:returnCode:contextInfo:",
5649 "_sheetEffect",
5650 "_sheetEffectInset",
5651 "_sheetHeightAdjustment",
5652 "_shiftBucketDataFromIndex:by:insertionData:",
5653 "_shiftDown::::",
5654 "_shortNameFor:",
5655 "_shouldAbortMouseDownAfterDragAttempt:",
5656 "_shouldAddObservationForwarders",
5657 "_shouldAddObservationForwardersForKey:",
5658 "_shouldAllowAutoCollapseItemsDuringDragsDefault",
5659 "_shouldAllowAutoExpandItemsDuringDragsDefault",
5660 "_shouldAlwaysUpdateDisplayValue",
5661 "_shouldAnimateColumnScrolling",
5662 "_shouldAttemptDroppingAsChildOfLeafItems",
5663 "_shouldAttemptIdleTimeDisposeOfLiveResizeCacheWithFrame:",
5664 "_shouldAttemptOriginLoad",
5665 "_shouldAutoscrollForDraggingInfo:",
5666 "_shouldBeRolloverTracking",
5667 "_shouldBeTreatedAsInkEventInInactiveWindow:",
5668 "_shouldBeginEditingInDOMRange:",
5669 "_shouldCoalesceTypingForText::",
5670 "_shouldComputeRevealovers",
5671 "_shouldContinueExpandAtLevel:beganAtLevel:",
5672 "_shouldDeleteRange:",
5673 "_shouldDispatch:invocation:sequence:coder:",
5674 "_shouldDrawBorder",
5675 "_shouldDrawFocus",
5676 "_shouldDrawFocusIfInKeyWindow",
5677 "_shouldDrawRightSeparatorInView:",
5678 "_shouldDrawSelectionIndicator",
5679 "_shouldDrawSelectionIndicatorForItem:",
5680 "_shouldDrawTwoBitGray",
5681 "_shouldEndEditingInDOMRange:",
5682 "_shouldExecuteDelayedAutocomplete",
5683 "_shouldForceShiftModifierWithKeyEquivalent:",
5684 "_shouldHandleAsGotoForTypedString:",
5685 "_shouldHaveBlinkTimer",
5686 "_shouldHaveResizeCursorAtPoint:",
5687 "_shouldHeaderShowSeparatorForColumn:",
5688 "_shouldInsertFragment:replacingDOMRange:givenAction:",
5689 "_shouldInstallToolTip:",
5690 "_shouldLiveResizeUseCachedImage",
5691 "_shouldPostEventNotifications",
5692 "_shouldPowerOff",
5693 "_shouldReloadForCurrent:andDestination:",
5694 "_shouldReloadToHandleUnreachableURLFromRequest:",
5695 "_shouldReplaceSelectionWithText:givenAction:",
5696 "_shouldRepresentFilename",
5697 "_shouldRequireAutoCollapseOutlineAfterDropsDefault",
5698 "_shouldRestartMovementTracking",
5699 "_shouldSelectTabViewItem:",
5700 "_shouldSetHighlightToFlag:",
5701 "_shouldShowFirstResponderAtRow:column:ignoringWindowKeyState:",
5702 "_shouldShowFirstResponderForCell:",
5703 "_shouldShowFocusRing",
5704 "_shouldShowFocusRingInView:",
5705 "_shouldShowNode:",
5706 "_shouldShowRollovers",
5707 "_shouldStealHitTestForCurrentEvent",
5708 "_shouldStretchWindowIfNecessaryForUserColumnResize",
5709 "_shouldTerminate",
5710 "_shouldTerminateWithDelegate:shouldTerminateSelector:",
5711 "_shouldTrack",
5712 "_shouldTransformMatrix",
5713 "_shouldTreatURLAsSameAsCurrent:",
5714 "_shouldUseAliasToLocate:",
5715 "_shouldUseParensWithDescription",
5716 "_shouldUseSecondaryHighlightColor",
5717 "_shouldValidateMenuFormRepresentation",
5718 "_show:",
5719 "_showBorder",
5720 "_showDragError:forFilename:",
5721 "_showDrawRect:",
5722 "_showEffects",
5723 "_showHideToolbar:resizeWindow:animate:",
5724 "_showKeyboardUILoop",
5725 "_showLanguagePopUp",
5726 "_showOpaqueGrowBox",
5727 "_showOpenHandCursor:",
5728 "_showQueryProgress",
5729 "_showTextColorImmediatelyInObject:mode:",
5730 "_showToolTip",
5731 "_showToolTip:",
5732 "_showToolbar:animate:",
5733 "_showToolbarWithAnimation:",
5734 "_showingFocusRingAroundEnclosingScrollView:",
5735 "_showsAllDrawing",
5736 "_showsDontWarnAgain",
5737 "_showsNode:",
5738 "_sideTitlebarWidth",
5739 "_sideTitlebarWidth:",
5740 "_sidebarView",
5741 "_signatureValid",
5742 "_simpleCompletePathWithPrefix:intoString:caseSensitive:matchesIntoArray:filterTypes:",
5743 "_simpleDeleteGlyphsInRange:",
5744 "_simpleDescription",
5745 "_simpleInsertGlyph:atGlyphIndex:characterIndex:elastic:",
5746 "_simpleOverflowMenuItemClicked:",
5747 "_singleFilePathValue",
5748 "_singleMutableArrayValueForKey:",
5749 "_singleMutableArrayValueForKeyPath:",
5750 "_singleValueForKey:",
5751 "_singleValueForKeyPath:",
5752 "_singleValueForKeyPath:operationType:",
5753 "_size",
5754 "_sizeAllDrawersWithRect:",
5755 "_sizeChanged",
5756 "_sizeDocumentViewToColumnsAndAlignIfNecessary:",
5757 "_sizeDownIfPossible",
5758 "_sizeHeightBucket:withSize:toFitSize:",
5759 "_sizeHorizontallyToFit",
5760 "_sizeListChanged:",
5761 "_sizeMatrixOfColumnToFit:",
5762 "_sizeModeIsValidForCurrentDisplayMode:",
5763 "_sizeOfTitlebarFileButton",
5764 "_sizeRowHeaderToFitIfNecessary",
5765 "_sizeTableColumnsToFitForAutoresizingWithStyle:",
5766 "_sizeTableColumnsToFitForColumnResizeWithStyle:",
5767 "_sizeTableColumnsToFitWithStyle:",
5768 "_sizeTableColumnsToFitWithStyle:forceExactFitIfPossible:",
5769 "_sizeToFit:",
5770 "_sizeToFitColumn:withEvent:",
5771 "_sizeToFitColumn:withSizeToFitType:",
5772 "_sizeToFitColumnMenuAction:",
5773 "_sizeToFitForUserColumnResize",
5774 "_sizeVerticalyToFit",
5775 "_sizeWindowForPicker:",
5776 "_sizeWithRect:",
5777 "_sizeWithSize:",
5778 "_sizeWithSize:attributedString:",
5779 "_smallCapsFont",
5780 "_smallCapsRenderer",
5781 "_smallEncodingGlyphIndexForCharacterIndex:startOfRange:okToFillHoles:",
5782 "_snapPositionConstrainedResizeSplitView:",
5783 "_snapSplitPosition:forItem:snapIndex:",
5784 "_sniffForContentType",
5785 "_sortCollections",
5786 "_sortDescriptors",
5787 "_sortNodes:",
5788 "_sortObjects:",
5789 "_sortOrderAutoSaveNameWithPrefix",
5790 "_sortedAETEElementClassDescriptions:",
5791 "_sortedAETEPropertyDescriptions:",
5792 "_sortedEdges",
5793 "_spanClassForAttributes:inParagraphClass:spanClass:flags:",
5794 "_speakingString",
5795 "_specialServicesMenuUpdate",
5796 "_specifiedStyleForElement:",
5797 "_specifierTestFromDescriptor:",
5798 "_spellServers",
5799 "_spellingGuessesForRange:",
5800 "_spellingSelectionRangeForProposedRange:",
5801 "_spotlightedAttachment",
5802 "_sqlCore",
5803 "_sqlTypeForAttributeDescription:",
5804 "_standardCommonMenuFormRepresentationClicked:",
5805 "_standardCustomMenuFormRepresentationClicked:",
5806 "_standardFrame",
5807 "_standardFrameForDrawersInRect:",
5808 "_startAnimation",
5809 "_startAnimationWithThread:",
5810 "_startAutoExpandingItemFlash",
5811 "_startAutoscrollTimer:",
5812 "_startBatchWindowAccumulation:",
5813 "_startChanging",
5814 "_startDraggingImage:at:operation:event:sourceIsDHTML:DHTMLWroteData:",
5815 "_startDraggingUpdates",
5816 "_startDrawingThread:",
5817 "_startHeartBeating",
5818 "_startHitTracking:",
5819 "_startInsertionOptimization",
5820 "_startInsertionOptimizationWithDragSource:",
5821 "_startLiveResize",
5822 "_startLiveResizeAsTopLevel",
5823 "_startLiveResizeCacheOK:",
5824 "_startLiveResizeForAllDrawers",
5825 "_startLoadWithRequest:delegate:",
5826 "_startLoading",
5827 "_startLoading:",
5828 "_startMove",
5829 "_startObservingModelObject:",
5830 "_startObservingSelectionIfNecessary",
5831 "_startObservingUndoManagerNotifications",
5832 "_startOrContinueAnimationIfNecessary",
5833 "_startRunMethod",
5834 "_startRunWithDuration:firingInterval:",
5835 "_startRunningNonBlocking",
5836 "_startSQL:",
5837 "_startSheet",
5838 "_startSound",
5839 "_startTable",
5840 "_startTableCell",
5841 "_startTearingOffWithScreenPoint:",
5842 "_startTimer:",
5843 "_startingWindowForSendAction:",
5844 "_startingWithDocument:continueSavingAndClosingAll:contextInfo:",
5845 "_stashCollapsedOrigin:",
5846 "_stashOrigin:",
5847 "_stashedOrigin",
5848 "_state",
5849 "_stateMarkerForValue:",
5850 "_statusItemWithLength:withPriority:",
5851 "_stepInUpDirection:",
5852 "_stepperCell",
5853 "_stepperCellValueChanged:",
5854 "_stopAnimation",
5855 "_stopAnimation:",
5856 "_stopAnimationWithWait:",
5857 "_stopAutoExpandingItemFlash",
5858 "_stopAutoscrollTimer",
5859 "_stopDraggingUpdates",
5860 "_stopGotoWithCode:",
5861 "_stopLoading",
5862 "_stopLoadingInternal",
5863 "_stopLoadingWithError:",
5864 "_stopModal:",
5865 "_stopObservingModelObject:",
5866 "_stopObservingSelectionIfNecessary",
5867 "_stopObservingUndoManagerNotifications",
5868 "_stopPeriodicEventsForSource:",
5869 "_stopRun",
5870 "_stopSearchTimer",
5871 "_stopTearingOff",
5872 "_stopTimerIfRunningForToolTip:",
5873 "_stopsValidationAfterFirstError:",
5874 "_storeClassForStoreType:",
5875 "_storeCurrentDirectory",
5876 "_storeExpandedFrameSize",
5877 "_storeExpandedState",
5878 "_storeFileListMode",
5879 "_storeMetadataForSaving",
5880 "_storeNewColorInColorWell:",
5881 "_storeOrderedByFileProperty:orderedAscending:",
5882 "_storeRootDirectory",
5883 "_storeTypeForStore:",
5884 "_storeUserSetHideExtensionButtonState",
5885 "_storeZone",
5886 "_stretchWindowIfNecessaryToFitResizedColumnWithInfo:resizeColumnDelta:",
5887 "_string:objectValueTokenRangeForIndex:",
5888 "_string:tokenRangeForIndex:",
5889 "_string:tokenizeIndex:inTextStorage:",
5890 "_stringByReplacingChar:withChar:inString:",
5891 "_stringByResolvingSymlinksInPathUsingCache:",
5892 "_stringByStandardizingPathUsingCache:",
5893 "_stringByTranslatingAliasDescriptor:toType:inSuite:",
5894 "_stringByTranslatingFSSpecDescriptor:toType:inSuite:",
5895 "_stringByTranslatingTextDescriptor:toType:inSuite:",
5896 "_stringByTrimmingLeadingDot",
5897 "_stringForDatePickerElement:",
5898 "_stringForEditing",
5899 "_stringForNode:property:",
5900 "_stringRepresentation",
5901 "_stringSearchParametersForListingViews",
5902 "_stringToWrite",
5903 "_stringValueForKey:",
5904 "_stringWithData:",
5905 "_stringWithDocumentTypeStringAndMarkupString:",
5906 "_stringWithSavedFrame",
5907 "_stripAttachmentCharactersFromAttributedString:",
5908 "_stripAttachmentCharactersFromString:",
5909 "_styleDeclarationImpl",
5910 "_styleDeclarationWithImpl:",
5911 "_styleElementImpl",
5912 "_styleForAttributeChange:",
5913 "_styleFromColorPanelWithSelector:",
5914 "_styleFromFontAttributes:",
5915 "_styleFromFontManagerOperation",
5916 "_styleRuleImpl",
5917 "_styleSheetListImpl",
5918 "_styleSheetListWithImpl:",
5919 "_subImageFocus",
5920 "_subclassDescriptionsForDescription:",
5921 "_subclassManagesData",
5922 "_subentitiesIncludes:",
5923 "_subentityNamed:",
5924 "_subpredicateDescription:",
5925 "_subresourceURLs",
5926 "_subsetDescription",
5927 "_substituteEntityAndProperty:inString:",
5928 "_substituteFontForCharacters:length:families:",
5929 "_substituteFontForString:families:",
5930 "_subtextStorageFromRange:",
5931 "_subtractColor:",
5932 "_subtreeDescriptionWithDepth:",
5933 "_subviews",
5934 "_subviewsExcludingHiddenViews",
5935 "_suggestCompletionsForPartialWordRange:inString:language:",
5936 "_suggestGuessesForWord:inLanguage:",
5937 "_suggestedControllerKeyForController:binding:",
5938 "_suiteDescriptions",
5939 "_suiteDescriptionsByName",
5940 "_sumForKeyPath:",
5941 "_superviewClipViewFrameChanged:",
5942 "_supportedMIMETypes",
5943 "_supportsGetValueWithNameForKey:perhapsByOverridingClass:",
5944 "_supportsGetValueWithUniqueIDForKey:perhapsByOverridingClass:",
5945 "_supportsMinAndMax",
5946 "_supportsVariableHeightRows",
5947 "_supposedNumberOfItems",
5948 "_suppressNotification",
5949 "_suppressNotification:",
5950 "_surface",
5951 "_surfaceBounds",
5952 "_surfaceDidComeBack:",
5953 "_surfaceNeedsUpdate:",
5954 "_surfaceWillGoAway:",
5955 "_suspendIfTopHandling:",
5956 "_suspendLoading",
5957 "_swapFileListKeyViewFrom:to:",
5958 "_sweeperInterval",
5959 "_switchImage:andUpdateColor:",
5960 "_switchInitialFirstResponder:lastKeyView:forTabViewItem:",
5961 "_switchTabViewItem:oldView:withTabViewItem:newView:initialFirstResponder:lastKeyView:",
5962 "_switchToAppropriateModeForColorIfNecessary:",
5963 "_switchToPicker:",
5964 "_switchToPlatformInput:",
5965 "_switchViewForToolbarItem:",
5966 "_syncAllExpandedNodes",
5967 "_syncCookies:",
5968 "_syncItemSet",
5969 "_syncItemSetAndUpdateItemViewersWithSEL:setNeedsModeConfiguration:sizeToFit:setNeedsDisplay:updateKeyLoop:",
5970 "_syncLoop:",
5971 "_syncScopeButtons",
5972 "_syncScopeLayout",
5973 "_syncScrollerSizeOfColumn:",
5974 "_syncSwatchSizeToSavedNumVisibleRows",
5975 "_syncToChangedToolbar:itemInserted:",
5976 "_syncToChangedToolbar:itemMoved:",
5977 "_syncToChangedToolbar:itemRemoved:",
5978 "_syncToChangedToolbar:toolbarItemUserVisibilityPriorityChanged:",
5979 "_syncToChangedToolbar:toolbarModeChanged:",
5980 "_syncToChangedToolbar:toolbarReplacedAllItems:",
5981 "_syncToolbarItemUserVisibilityPriorityToValues:",
5982 "_syncToolbarPosition",
5983 "_synchronizeExpandedNodesWithOutlineExpandedItems",
5984 "_synchronizeTextView:",
5985 "_synchronizeTitlesAndColumnsViewVisibleRect",
5986 "_synchronizeTitlesAndColumnsViewWidth",
5987 "_synchronizeWindowTitles",
5988 "_synchronizeWithPeerBindersInArray:",
5989 "_systemColorChanged:",
5990 "_systemColorsChanged:",
5991 "_tabHeight",
5992 "_tabOrientation",
5993 "_tabRect",
5994 "_tabRectAdjustedForOverlap:",
5995 "_tabRectForTabViewItem:",
5996 "_tabViewWillRemoveFromSuperview",
5997 "_tableBinderForTableView:",
5998 "_tableBinderForTableViewSupportsSorting:",
5999 "_tableCaptionElementImpl",
6000 "_tableCaptionElementWithImpl:",
6001 "_tableCellElementImpl",
6002 "_tableCellElementWithImpl:",
6003 "_tableColElementImpl",
6004 "_tableElementImpl",
6005 "_tableElementWithImpl:",
6006 "_tableRowElementImpl",
6007 "_tableSectionElementImpl",
6008 "_tableSectionElementWithImpl:",
6009 "_tableView:willAddTableColumn:",
6010 "_tableView:willRemoveTableColumn:",
6011 "_takeApplicationMenuIfNeeded:",
6012 "_takeColorFrom:andSendAction:",
6013 "_takeColorFromAndSendActionIfContinuous:",
6014 "_takeColorFromDoAction:",
6015 "_takeFocus",
6016 "_takeValuesFromTextBlock:",
6017 "_target",
6018 "_targetAndArgumentsAcceptableForMode:",
6019 "_targetBinding",
6020 "_targetBindingBound",
6021 "_taskNowMultiThreaded:",
6022 "_tempHide:relWin:",
6023 "_tempHideHODWindow",
6024 "_tempUnhideHODWindow",
6025 "_temporaryAttribute:atCharacterIndex:effectiveRange:",
6026 "_temporaryAttribute:atCharacterIndex:longestEffectiveRange:inRange:",
6027 "_temporaryAttributesAtCharacterIndex:longestEffectiveRange:inRange:",
6028 "_temporaryFilename:",
6029 "_termOneShotWindow",
6030 "_termWindowIfOwner",
6031 "_termedDescriptionWithTabCount:propertyKindName:",
6032 "_terminate",
6033 "_terminate:",
6034 "_terminateSendShould:",
6035 "_testPartUsingDestinationFloatValue:",
6036 "_testWithComparisonOperator:object1:object2:",
6037 "_textAreaElementImpl",
6038 "_textAttributes",
6039 "_textColorWithMode:",
6040 "_textDidEndEditing:",
6041 "_textDimColor",
6042 "_textFieldWithStepperCellSize",
6043 "_textFieldWithStepperKeyDown:inRect:ofView:",
6044 "_textFieldWithStepperTrackMouse:inRect:ofView:untilMouseUp:",
6045 "_textHighlightColor",
6046 "_textImpl",
6047 "_textSizeMultiplierChanged",
6048 "_textSizeMultiplierFromWebView",
6049 "_textTransform",
6050 "_textViewOwnsTextStorage",
6051 "_textureImage",
6052 "_texturePattern",
6053 "_theMap",
6054 "_themeContentRect",
6055 "_themeTabAndBarArea",
6056 "_threadContext",
6057 "_throwIfNotEditable",
6058 "_tidyWithData:error:isXML:",
6059 "_tile",
6060 "_tile:",
6061 "_tileAndRedisplayAll",
6062 "_tileContinuousScrollingBrowser",
6063 "_tileNonContinuousScrollingBrowser",
6064 "_tileTitlebarAndRedisplay:",
6065 "_timeOfLastCompletedLoad",
6066 "_timedAdjustTextControl:",
6067 "_timestamp",
6068 "_title",
6069 "_titleCellHeight",
6070 "_titleCellHeight:",
6071 "_titleCellOfColumn:",
6072 "_titleCellSize",
6073 "_titleCellSizeForTitle:styleMask:",
6074 "_titleElementImpl",
6075 "_titleRectForCellFrame:",
6076 "_titleRectForTabViewItem:",
6077 "_titleSizeWithSize:",
6078 "_titlebarHeight",
6079 "_titlebarHeight:",
6080 "_titlebarTitleRect",
6081 "_toManyInformation",
6082 "_toOneRange",
6083 "_toggleBold",
6084 "_toggleCollapsedSplitView",
6085 "_toggleFrameAutosaveEnabled:",
6086 "_toggleItalic",
6087 "_toggleLogging",
6088 "_toggleOrderedFrontMost:",
6089 "_toggleOrderedFrontMostWillOrderOut",
6090 "_toggleSelectAnyValidResponderOverride",
6091 "_toggleShown:",
6092 "_toggleToolbarConfigPanel:",
6093 "_toggleTypographyPanel",
6094 "_toggleUserVisibilityPriority:",
6095 "_tokenAttachmentDisplayAttributeDidChange",
6096 "_tokenAttachmentForString:",
6097 "_tokenizeDirtyTokens",
6098 "_tokensFromCharacterRange:inAttributedString:includePlainText:includeAttachments:asRepresentedObjects:",
6099 "_tokensFromPasteboard:",
6100 "_toolTipManagerWillRecomputeToolTipsByRemoving:adding:",
6101 "_toolTipRectForCell:withFrame:",
6102 "_toolTipTimer",
6103 "_toolbar",
6104 "_toolbarAttributesChanged:",
6105 "_toolbarAuxiliary:",
6106 "_toolbarBackgroundColor",
6107 "_toolbarButtonIsClickable",
6108 "_toolbarButtonOrigin",
6109 "_toolbarCommonBeginInit",
6110 "_toolbarCommonFinishInit",
6111 "_toolbarFrameSizeChanged:oldSize:",
6112 "_toolbarIsHidden",
6113 "_toolbarIsInTransition",
6114 "_toolbarIsShown",
6115 "_toolbarItemCommonInit",
6116 "_toolbarPatternPhase",
6117 "_toolbarPillButtonClicked:",
6118 "_toolbarRegisterForNotifications",
6119 "_toolbarUnregisterForNotifications",
6120 "_toolbarView",
6121 "_toolbarViewCommonInit",
6122 "_tooltipForColorPicker:",
6123 "_tooltipStringForCell:column:row:point:trackingRect:",
6124 "_topContainerView",
6125 "_topCornerSize",
6126 "_topHandling",
6127 "_topLeftResizeCursor",
6128 "_topMenuView",
6129 "_topRightResizeCursor",
6130 "_topmostChild",
6131 "_totalAdvancementForNativeGlyphs:count:",
6132 "_totalHeightOfTableView",
6133 "_totalMinimumTabsLengthWithOverlap:",
6134 "_totalNominalTabsLengthWithOverlap:",
6135 "_totalTabsLength:overlap:",
6136 "_trackAndModifySelectionWithEvent:onColumn:stopOnReorderGesture:",
6137 "_trackAttachmentClick:characterIndex:glyphIndex:attachmentCell:",
6138 "_trackButton:forEvent:inRect:ofView:",
6139 "_trackMouse:",
6140 "_trackSelectedItemMenu",
6141 "_trackingHandlerRef",
6142 "_trackingSegment",
6143 "_transferCache:",
6144 "_transferWindowOwnership",
6145 "_transform",
6146 "_transformDstRect:clipRect:",
6147 "_transformerRegistry",
6148 "_transitionToCommitted:",
6149 "_transitionToLayoutAcceptable",
6150 "_transparency",
6151 "_transparentBackground",
6152 "_trapezoidForRun:style:atPoint:",
6153 "_trashContainsOrIs:",
6154 "_traverseLibXML2Node:depth:",
6155 "_traverseNode:depth:",
6156 "_traverseToSubmenu",
6157 "_traverseToSupermenu",
6158 "_treeHasDragTypes",
6159 "_treeWalkerImpl",
6160 "_treeWalkerWithImpl:filter:",
6161 "_triggeringAction",
6162 "_trimRecentSearchList",
6163 "_trimWithCharacterSet:",
6164 "_truncateToSizeLimit:",
6165 "_tryChallenge:",
6166 "_tryCookieLookup:path:secure:result:",
6167 "_tryDrop:dropItem:dropChildIndex:",
6168 "_tryDrop:dropRow:dropOperation:",
6169 "_tryToSendDoubleAction",
6170 "_tryUserDrillIntoHighlightedNode",
6171 "_tryUserMoveToParentNode",
6172 "_type",
6173 "_typeDescription",
6174 "_typeDescriptionForName:",
6175 "_typeDescriptionForName:suiteName:isValid:",
6176 "_typeDescriptionsFromEnumerationImplDeclarations:presoDeclarations:valueTypeDeclarations:",
6177 "_typeDictForType:",
6178 "_typeIdentifierFromCarbonCode:",
6179 "_typeIdentifierFromCocoaName:",
6180 "_types",
6181 "_typesForDocumentClass:includeEditors:includeViewers:includeExportable:",
6182 "_typesIncludingConversionsFromTypes:",
6183 "_typesetterBehavior",
6184 "_typographicLeading",
6185 "_typographyPanel",
6186 "_uListElementImpl",
6187 "_umask",
6188 "_unbind:existingNibConnectors:connectorsToRemove:connectorsToAdd:",
6189 "_uncachedRectHeightOfRow:",
6190 "_uncachedSize",
6191 "_under",
6192 "_underlineIsOn",
6193 "_underlineStyleForArgument:",
6194 "_undoDelete:",
6195 "_undoManagerCheckpoint:",
6196 "_undoManagerForFieldEditor:defaultUndoManager:",
6197 "_undoRedoAttributedSubstringFromRange:",
6198 "_undoRedoTextOperation:",
6199 "_undoStack",
6200 "_undoUpdate:",
6201 "_unformattedAttributedStringValue:",
6202 "_ungrowFrameForDropGapStyle",
6203 "_unhide",
6204 "_unhideAllDrawers",
6205 "_unhideChildren",
6206 "_unhideSheet",
6207 "_uninstallActionButtonIfNecessary",
6208 "_unionOfArraysForKeyPath:",
6209 "_unionOfObjectsForKeyPath:",
6210 "_uniqueNameForNewSubdocument:",
6211 "_uniquer",
6212 "_unitsForClientLocation:",
6213 "_unitsForRulerLocation:",
6214 "_unlock",
6215 "_unlockFirstResponder",
6216 "_unlockQuickDrawPort",
6217 "_unlockViewHierarchyForDrawing",
6218 "_unlockViewHierarchyForModification",
6219 "_unlockfeContext",
6220 "_unnestListAtIndex:markerRange:",
6221 "_unobstructedPortionOfRect:",
6222 "_unobstructedVisibleHeaderRectOfColumn:",
6223 "_unobstructedVisibleRectOfColumn:",
6224 "_unpinViews:resizeMasks:",
6225 "_unregisterDragTypes",
6226 "_unregisterDynamicToolTipManagerInstance:",
6227 "_unregisterForAdapterContextNotifications:",
6228 "_unregisterForChildChangedNotifications",
6229 "_unregisterForClipBoundsDidChangeNotificaitonIfNecessaryForSuperview:force:",
6230 "_unregisterForCompletion:",
6231 "_unregisterForDocViewFrameAndBoundsChangeNotifications",
6232 "_unregisterForMovieIdle",
6233 "_unregisterForNotifications",
6234 "_unregisterForToolbarNotifications:",
6235 "_unregisterMenuForKeyEquivalentUniquing:",
6236 "_unregisterMenuItemForKeyEquivalentUniquing:",
6237 "_unregisterObservedModelKeyPath:",
6238 "_unregisterTableColumnBinder:fromTableColumn:",
6239 "_unregisterToolbarInstance:",
6240 "_unregisterViewClassAndRepresentationClassForMIMEType:",
6241 "_unresolveTypeAlias:",
6242 "_unsetFinalSlide",
6243 "_unsetInputs",
6244 "_unshowOpenHandCursor:",
6245 "_untitledDocumentNumber",
6246 "_untitledNumberForDocument:",
6247 "_update",
6248 "_updateAllViews",
6249 "_updateAntialiasingThreshold",
6250 "_updateAppleMenu:",
6251 "_updateAttributes",
6252 "_updateAutosavedRecents:",
6253 "_updateAutoscrollingStateWithTrackingViewPoint:event:",
6254 "_updateButtonState",
6255 "_updateButtons",
6256 "_updateCell",
6257 "_updateCellIfNotEditing",
6258 "_updateCellImage:",
6259 "_updateCommandDisplayWithRecognizer",
6260 "_updateContent",
6261 "_updateContentsIfNecessary",
6262 "_updateCrayonsFromColorList",
6263 "_updateCreatedTime:",
6264 "_updateDataCellControlView",
6265 "_updateDateColumnDetailLevelWidths",
6266 "_updateDateColumnDetailLevels",
6267 "_updateDefaultState:forCredential:protectionSpace:",
6268 "_updateDependenciesWithPeerBinders:",
6269 "_updateDocumentMetadata",
6270 "_updateDragInsertion:",
6271 "_updateDragInsertionIndicatorWith:",
6272 "_updateDraggingInfo:dragInside:",
6273 "_updateDrawer:withVisibilityState:",
6274 "_updateDrawsBackground",
6275 "_updateEnabled",
6276 "_updateExpansionButtonEnabledState",
6277 "_updateExpirationTimer:",
6278 "_updateFileDatabase",
6279 "_updateFileNamesForChildren",
6280 "_updateFilterPredicate:",
6281 "_updateFirstItemIfNecessary",
6282 "_updateFocusRing",
6283 "_updateFontPanel",
6284 "_updateForEditedMovie:",
6285 "_updateForLiveResizeWithOldSize:",
6286 "_updateForVersion:",
6287 "_updateFrameWidgets",
6288 "_updateFromDeltas:",
6289 "_updateFromPath:checkOnly:exists:",
6290 "_updateFromSnapshot:",
6291 "_updateGlyphEntryForCharacter:glyphID:font:",
6292 "_updateHeaderCellControlView",
6293 "_updateHideExtensionButtonStateFromNameFieldContents",
6294 "_updateHighlightedItemWithTrackingViewPoint:event:",
6295 "_updateIconDatabaseWithURL:",
6296 "_updateInputManagerState",
6297 "_updateInvalidatedObjectValue:",
6298 "_updateKeychainItem:",
6299 "_updateKnownNotVisibleAppleMenu:",
6300 "_updateLabel",
6301 "_updateLastEditingAndFocusRingFrame",
6302 "_updateLastUncollapsedSidebarWidth",
6303 "_updateLengthAndSelectedRange:",
6304 "_updateLoading",
6305 "_updateMenuForClippedItems",
6306 "_updateMenuItemIcon:",
6307 "_updateMouseTracking",
6308 "_updateMouseoverWithEvent:",
6309 "_updateMouseoverWithFakeEvent",
6310 "_updateNameFieldContentsFromHideExtensionButtonState",
6311 "_updateNewFolderButtonEnabledState",
6312 "_updateNodeList:byAddingNode:",
6313 "_updateNodeList:byRemovingNode:sendPrepareMessageWithParentNode:",
6314 "_updateNodeList:forChangedProperty:ofNode:",
6315 "_updateNumberOfTitleCellsIfNecessary",
6316 "_updateNumberOfTitleCellsIfNecessary:",
6317 "_updateObject:observedController:observedKeyPath:context:",
6318 "_updateObservingRegistration:",
6319 "_updateOkButtonEnabledState",
6320 "_updateOkButtonEnabledStateAndErrorMessage",
6321 "_updateParagraphStyleCache:",
6322 "_updatePlaceholdersForBindingInfo:",
6323 "_updateProxySettings",
6324 "_updateRulerlineForRuler:oldPosition:newPosition:vertical:",
6325 "_updateSearchMenu",
6326 "_updateSeekingSubmenuWithScreenPoint:viewPoint:event:",
6327 "_updateSelectionForInputManager",
6328 "_updateSelectionIndexPaths:",
6329 "_updateSelectionIndexes:",
6330 "_updateSizeAndLocation",
6331 "_updateSortDescriptors:",
6332 "_updateSubfieldStringsForDateChange",
6333 "_updateSubmenuKnownStale:",
6334 "_updateTable",
6335 "_updateTableColumn",
6336 "_updateTableColumn:withWidth:",
6337 "_updateTableRow",
6338 "_updateTearOffPositionWithScreenPoint:",
6339 "_updateTextSizeMultiplier",
6340 "_updateTextViewWidth",
6341 "_updateToNewPrefs:",
6342 "_updateUIToMatchCachedValues",
6343 "_updateUnprocessedOwnDestinations:",
6344 "_updateUsageForTextContainer:addingUsedRect:",
6345 "_updateWebCoreSettingsFromPreferences:",
6346 "_updateWidgets",
6347 "_updateWindow:withVisibilityState:",
6348 "_updateWindow:withWidth:height:",
6349 "_updateWindowsUsingCache",
6350 "_updatedItemViewsForChildrenOfContainerNodes:",
6351 "_useErrorPresenter:",
6352 "_useFSRefsEvenOnPathBasedFileSystems",
6353 "_useIconNamed:from:",
6354 "_usePolicy:",
6355 "_useSharedKitWindow:rect:",
6356 "_useSimpleTrackingMode",
6357 "_useSquareToolbarSelectionHighlight",
6358 "_userCanChangeSelection",
6359 "_userCanEditTableColumn:row:",
6360 "_userCanMoveColumn:toColumn:",
6361 "_userCanSelectAndEditTableColumn:row:",
6362 "_userCanSelectColumn:byExtendingSelection:",
6363 "_userCanSelectRow:byExtendingSelection:",
6364 "_userChangeSelection:fromAnchorRow:toRow:lastExtensionRow:selecting:",
6365 "_userClickOrKeyInColumnShouldMaintainColumnPosition",
6366 "_userData",
6367 "_userDeselectColumn:",
6368 "_userDeselectRow:",
6369 "_userInsertItemWithItemIdentifier:atIndex:",
6370 "_userLibraryPath",
6371 "_userMoveItemFromIndex:toIndex:",
6372 "_userRemoveItemAtIndex:",
6373 "_userReplaceRange:withString:",
6374 "_userResetToDefaultConfiguration",
6375 "_userSelectColumn:byExtendingSelection:",
6376 "_userSelectColumnRange:toColumn:byExtendingSelection:",
6377 "_userSelectIndexesInRange:toIndex:byExtendingSelection:indexType:",
6378 "_userSelectRow:byExtendingSelection:",
6379 "_userSelectRowRange:toRow:byExtendingSelection:",
6380 "_userSelectTextOfNextCell",
6381 "_userSelectTextOfNextCellInSameColumn",
6382 "_userSelectTextOfPreviousCell",
6383 "_userSetCurrentItemsToItemIdentifiers:",
6384 "_userVisibilityPriorityValues",
6385 "_usernameForRealm:URL:",
6386 "_usesCorrectContentSize",
6387 "_usesCustomTrackImage",
6388 "_usesFastJavaBundleSetup",
6389 "_usesPageCache",
6390 "_usesProgrammingLanguageBreaks",
6391 "_usesScreenFonts",
6392 "_usesToolTipsWhenTruncated",
6393 "_usingAlternateHighlightColorWithFrame:inView:",
6394 "_usingToolbarShowHideWeightingOptimization",
6395 "_validDestinationForDragsWeInitiate",
6396 "_validFrameForResizeFrame:fromResizeEdge:",
6397 "_validIndexes:indexType:",
6398 "_validItemViewerBounds",
6399 "_validItemViewerBoundsAssumingClipIndicatorNotShown",
6400 "_validItemViewerBoundsAssumingClipIndicatorShown",
6401 "_validRememberedEditingFirstResponder",
6402 "_validSize:force:",
6403 "_validateAndCommitTokens",
6404 "_validateAndCommitValueInEditor:editingIsEnding:errorUserInterfaceHandled:bindingAdaptor:",
6405 "_validateAsCommonItem:",
6406 "_validateAsCustomItem:",
6407 "_validateAttributes:",
6408 "_validateBundleSecurity",
6409 "_validateCarbonCatalogInfo",
6410 "_validateCarbonNameAndCatalogInfo",
6411 "_validateChangesForSave:",
6412 "_validateCollections:",
6413 "_validateDeletesUsingTable:withError:",
6414 "_validateDisplayValue",
6415 "_validateEditing:",
6416 "_validateEntryString:uiHandled:",
6417 "_validateEnumeratedProperties:forPropertyType:error:",
6418 "_validateError:forPresentationMethod:",
6419 "_validateExtrasButton:",
6420 "_validateFaces:",
6421 "_validateForDelete:",
6422 "_validateForInsert:",
6423 "_validateForSave:",
6424 "_validateForUpdate:",
6425 "_validateIsSymbolicLink",
6426 "_validateLinkTargetCarbonCatalogInfo",
6427 "_validateLinkTargetSpecifier",
6428 "_validateMenuFormRepresentation:",
6429 "_validateMultipleValue:forKeyPath:atIndex:error:",
6430 "_validateMultipleValue:forKeyPath:atIndexPath:error:",
6431 "_validateNewWidthOfColumn:width:",
6432 "_validateOpacitySlider",
6433 "_validatePaginationAttributes",
6434 "_validatePath",
6435 "_validateSingleValue:forKey:error:",
6436 "_validateSingleValue:forKeyPath:error:",
6437 "_validateSizes:",
6438 "_validateSpecifier",
6439 "_validateStyleMask:",
6440 "_validateTable:kind:exceptions:exhaustive:forSave:",
6441 "_validateToOnes",
6442 "_validateValue:forKey:error:",
6443 "_validateValue:forKeyPath:ofObjectAtIndex:error:",
6444 "_validateValue:forKeyPath:ofObjectAtIndexPath:error:",
6445 "_validateViewIsInViewHeirarchy:",
6446 "_validateVisibleToolbarItems",
6447 "_validateWithSchemaAndReturnError:",
6448 "_validatedPosixName",
6449 "_validatedStoredUsageForTextContainerAtIndex:",
6450 "_value",
6451 "_valueBuffer",
6452 "_valueByTranslatingOSAErrorRangeDescriptor:toType:inSuite:",
6453 "_valueClass",
6454 "_valueClass:",
6455 "_valueClassIsSortableWithBinding:",
6456 "_valueForBindingWithResolve:mode:",
6457 "_valueForBindingWithoutResolve:mode:",
6458 "_valueForKey:",
6459 "_valueForKey:withInputs:",
6460 "_valueForKeyPath:ofObject:mode:raisesForNotApplicableKeys:",
6461 "_valueForKeyPath:ofObjectAtIndex:",
6462 "_valueForKeyPath:ofObjectAtIndexPath:",
6463 "_valueForOptionalCocoaAttributeKey:fromElement:",
6464 "_valueForParameter:",
6465 "_valueForRequiredCocoaAttributeKey:fromElement:",
6466 "_valueImpl",
6467 "_valueListImpl",
6468 "_valueOfType:",
6469 "_valueTransformerNameForBinding:",
6470 "_valueTypeForParameter:",
6471 "_valueWithImpl:",
6472 "_valueWithOperatorKeyPath:",
6473 "_variableValueInBindings:",
6474 "_verifyDataIsPICT:",
6475 "_verifyDefaultButtonCell:",
6476 "_verifyNoChangesToReadonlyEntity:",
6477 "_verifySelectionIsOK",
6478 "_verticalDistanceForLineScroll",
6479 "_verticalDistanceForPageScroll",
6480 "_verticalKeyboardScrollDistance",
6481 "_verticalPageScrollDistance",
6482 "_verticalScrollerClass",
6483 "_view",
6484 "_viewAboveAccessoryView",
6485 "_viewClass:andRepresentationClass:forMIMEType:",
6486 "_viewClassForMIMEType:",
6487 "_viewDetaching:",
6488 "_viewDidEndLiveResize_handleRowHeaderSurfaces",
6489 "_viewDidMoveToHostWindow",
6490 "_viewFreeing:",
6491 "_viewTypesAllowImageTypeOmission:",
6492 "_viewVisibleBoundsChanged",
6493 "_viewWillMoveToHostWindow:",
6494 "_viewWillStartLiveResize_handleRowHeaderSurfaces",
6495 "_visibleAndCanBecomeKey",
6496 "_visibleAndCanBecomeKeyLimitedOK:",
6497 "_visibleColumnIndexesForKeyPath:",
6498 "_visibleItemViewers",
6499 "_visibleRectOfColumns",
6500 "_visibleRowIndexesForObject:",
6501 "_volumeIsEjectableForRefNum:",
6502 "_volumeIsLocalForRefNum:",
6503 "_waitForLoadThreadSetup",
6504 "_wakeup",
6505 "_wantsDeviceDependentEventModifierFlags",
6506 "_wantsFiles:",
6507 "_wantsHeartBeat",
6508 "_wantsHideOnDeactivate",
6509 "_wantsKeyboardLoop",
6510 "_wantsLiveResizeToUseCachedImage",
6511 "_wantsRevealoverAtColumn:row:",
6512 "_wantsRevealovers",
6513 "_wantsToActivate",
6514 "_wantsToDestroyRealWindow",
6515 "_wantsToolTipAtColumn:row:",
6516 "_wantsToolbarContextMenu",
6517 "_wasFirstResponderAtMouseDownTime:",
6518 "_wasRedirectedToRequest:redirectResponse:",
6519 "_webArchiveClass",
6520 "_webDataRequestBaseURL",
6521 "_webDataRequestData",
6522 "_webDataRequestEncoding",
6523 "_webDataRequestExternalRequest",
6524 "_webDataRequestExternalURL",
6525 "_webDataRequestForData:MIMEType:textEncodingName:baseURL:unreachableURL:",
6526 "_webDataRequestMIMEType",
6527 "_webDataRequestParametersForReading",
6528 "_webDataRequestParametersForWriting",
6529 "_webDataRequestSetBaseURL:",
6530 "_webDataRequestSetData:",
6531 "_webDataRequestSetEncoding:",
6532 "_webDataRequestSetMIMEType:",
6533 "_webDataRequestSetUnreachableURL:",
6534 "_webDataRequestUnreachableURL",
6535 "_webIsDataProtocolURL:",
6536 "_webKitBundle",
6537 "_webKitErrorWithDomain:code:URL:",
6538 "_webPreferences",
6539 "_webResourceClass",
6540 "_webView",
6541 "_webViewClass",
6542 "_web_HTTPStyleLanguageCode",
6543 "_web_HTTPStyleLanguageCodeWithoutRegion",
6544 "_web_RFC1123DateString",
6545 "_web_RFC1123DateStringWithTimeInterval:",
6546 "_web_URLByRemovingLastPathComponent",
6547 "_web_URLByRemovingUserAndPath",
6548 "_web_URLByRemovingUserAndQueryAndFragment",
6549 "_web_URLCString",
6550 "_web_URLComponents",
6551 "_web_URLFragment",
6552 "_web_URLWithComponents:",
6553 "_web_URLWithData:relativeToURL:",
6554 "_web_URLWithDataAsString:",
6555 "_web_URLWithDataAsString:relativeToURL:",
6556 "_web_URLWithString:",
6557 "_web_URLWithString:relativeToURL:",
6558 "_web_URLWithUserTypedString:",
6559 "_web_acceptLanguageHeaderForPreferredLanguages",
6560 "_web_addDefaultsChangeObserver",
6561 "_web_addDotLocalIfNeeded",
6562 "_web_addErrorsWithCodesAndDescriptions:inDomain:",
6563 "_web_background",
6564 "_web_backgroundRemoveFileAtPath:",
6565 "_web_backgroundRemoveLeftoverFiles:",
6566 "_web_bestURL",
6567 "_web_boolForKey:",
6568 "_web_buildAcceptLanguageHeaderFromPreferredLanguages:",
6569 "_web_canonicalize",
6570 "_web_capitalizeRFC822HeaderFieldName",
6571 "_web_carbonPathForPath:",
6572 "_web_changeFileAttributes:atPath:",
6573 "_web_changeFinderAttributes:forFileAtPath:",
6574 "_web_characterSetFromContentTypeHeader",
6575 "_web_checkLastReferenceForIdentifier:",
6576 "_web_clearPrintingModeRecursive",
6577 "_web_compareDay:",
6578 "_web_countOfString:",
6579 "_web_createDirectoryAtPathWithIntermediateDirectories:attributes:",
6580 "_web_createFileAtPath:contents:attributes:",
6581 "_web_createFileAtPathWithIntermediateDirectories:contents:attributes:directoryAttributes:",
6582 "_web_createIntermediateDirectoriesForPath:attributes:",
6583 "_web_dataForKey:",
6584 "_web_dataForURLComponentType:",
6585 "_web_dateFromHTTPDateString:",
6586 "_web_declareAndWriteDragImage:URL:title:archive:source:",
6587 "_web_decodeHostNameWithRange:",
6588 "_web_defaultsDidChange",
6589 "_web_dissolveToFraction:",
6590 "_web_doesEveryElementSatisfyPredicate:",
6591 "_web_domainFromHost",
6592 "_web_domainMatches:",
6593 "_web_dragImage:rect:event:pasteboard:source:offset:",
6594 "_web_dragOperationForDraggingInfo:",
6595 "_web_dragShouldBeginFromMouseDown:withExpiration:xHysteresis:yHysteresis:",
6596 "_web_dragTypesForURL",
6597 "_web_drawAtPoint:font:textColor:",
6598 "_web_drawDoubledAtPoint:withTopColor:bottomColor:font:",
6599 "_web_encodeHostNameWithRange:",
6600 "_web_encodeWWWFormURLData",
6601 "_web_encodeWWWFormURLData:",
6602 "_web_encodingForResource:",
6603 "_web_errorWithDomain:code:URL:",
6604 "_web_errorWithDomain:code:URL:userInfoObjectsAndKeys:",
6605 "_web_fileExistsAtPath:isDirectory:traverseLink:",
6606 "_web_fileNameFromContentDispositionHeader",
6607 "_web_filenameByFixingIllegalCharacters",
6608 "_web_firstOccurrenceOfCharacter:",
6609 "_web_firstResponderCausesFocusDisplay",
6610 "_web_firstResponderIsSelfOrDescendantView",
6611 "_web_fixedCarbonPOSIXPath",
6612 "_web_guessedMIMEType",
6613 "_web_guessedMIMETypeForExtension:originalType:",
6614 "_web_guessedMIMETypeForXML",
6615 "_web_hasCaseInsensitivePrefix:",
6616 "_web_hasCaseInsensitiveSubstring:",
6617 "_web_hasCaseInsensitiveSuffix:",
6618 "_web_hasCountryCodeTLD",
6619 "_web_hasQuestionMarkOnlyQueryString",
6620 "_web_hostData",
6621 "_web_hostNameNeedsDecodingWithRange:",
6622 "_web_hostNameNeedsEncodingWithRange:",
6623 "_web_initWithDomain:code:URL:",
6624 "_web_initWithDomain:code:failingURL:",
6625 "_web_intForKey:",
6626 "_web_isCaseInsensitiveEqualToCString:",
6627 "_web_isCaseInsensitiveEqualToString:",
6628 "_web_isEmpty",
6629 "_web_isFTPDirectoryURL",
6630 "_web_isFileURL",
6631 "_web_isJavaScriptURL",
6632 "_web_isKeyEvent:",
6633 "_web_isTabKeyEvent",
6634 "_web_lastOccurrenceOfCharacter:",
6635 "_web_layoutIfNeededRecursive:testDirtyRect:",
6636 "_web_locationAfterFirstBlankLine",
6637 "_web_looksLikeAbsoluteURL",
6638 "_web_looksLikeDomainName",
6639 "_web_looksLikeIPAddress",
6640 "_web_lowercaseStrings",
6641 "_web_makePluginViewsPerformSelector:withObject:",
6642 "_web_mapHostNameWithRange:encode:makeString:",
6643 "_web_mappedArrayWithFunction:context:",
6644 "_web_mappedArrayWithSelector:",
6645 "_web_mimeTypeFromContentTypeHeader",
6646 "_web_noteFileChangedAtPath:",
6647 "_web_numberForKey:",
6648 "_web_objectForMIMEType:",
6649 "_web_originalData",
6650 "_web_originalDataAsString",
6651 "_web_pageSetupScaleFactor",
6652 "_web_parentWebFrameView",
6653 "_web_parentWebView",
6654 "_web_parseAsKeyValuePair",
6655 "_web_parseAsKeyValuePairHandleQuotes:",
6656 "_web_parseRFC822HeaderFields",
6657 "_web_pathWithUniqueFilenameForPath:",
6658 "_web_performBooleanSelector:",
6659 "_web_performBooleanSelector:withObject:",
6660 "_web_preferredLanguageCode",
6661 "_web_rangeOfURLResourceSpecifier",
6662 "_web_rangeOfURLScheme",
6663 "_web_rangeOfURLUserPasswordHostPort",
6664 "_web_removeFileOnlyAtPath:",
6665 "_web_safeMakeObjectsPerformSelector:",
6666 "_web_scaleToMaxSize:",
6667 "_web_schemeData",
6668 "_web_scriptIfJavaScriptURL",
6669 "_web_selectorValue",
6670 "_web_setBool:forKey:",
6671 "_web_setFindPasteboardString:withOwner:",
6672 "_web_setInt:forKey:",
6673 "_web_setObject:forUncopiedKey:",
6674 "_web_setObjectIfNotNil:forKey:",
6675 "_web_setObjectUsingSetIfNecessary:forKey:",
6676 "_web_setPrintingModeRecursive",
6677 "_web_spaceSeparatedPrefix",
6678 "_web_spaceSeparatedSuffix",
6679 "_web_splitAtNonDateCommas",
6680 "_web_startsWithBlankLine",
6681 "_web_startupVolumeName",
6682 "_web_stringByAbbreviatingWithTildeInPath",
6683 "_web_stringByCollapsingNonPrintingCharacters",
6684 "_web_stringByReplacingValidPercentEscapes",
6685 "_web_stringByStrippingCharactersFromSet:",
6686 "_web_stringByStrippingReturnCharacters",
6687 "_web_stringByTrimmingWhitespace",
6688 "_web_stringForKey:",
6689 "_web_stringRepresentationForBytes:",
6690 "_web_stringWithUTF8String:length:",
6691 "_web_suggestedFilenameWithMIMEType:",
6692 "_web_superviewOfClass:",
6693 "_web_superviewOfClass:stoppingAtClass:",
6694 "_web_textSizeMultiplierChanged",
6695 "_web_uniqueWebDataURL",
6696 "_web_uniqueWebDataURLWithRelativeString:",
6697 "_web_userVisibleString",
6698 "_web_valueWithSelector:",
6699 "_web_visibleItemsInDirectoryAtPath:",
6700 "_web_widthWithFont:",
6701 "_web_writableTypesForImage",
6702 "_web_writableTypesForURL",
6703 "_web_writeFileWrapperAsRTFDAttachment:",
6704 "_web_writeImage:URL:title:archive:types:",
6705 "_web_writeURL:andTitle:types:",
6706 "_webcore_effectiveFirstResponder",
6707 "_webcore_initWithHeaderString:",
6708 "_webkit_URLByRemovingFragment",
6709 "_webkit_canonicalize",
6710 "_webkit_isFTPDirectoryURL",
6711 "_webkit_isJavaScriptURL",
6712 "_webkit_scriptIfJavaScriptURL",
6713 "_webkit_shouldLoadAsEmptyDocument",
6714 "_webkit_stringByReplacingValidPercentEscapes",
6715 "_whenDrawn:fills:",
6716 "_whiteRGBColor",
6717 "_widthForStringRange:",
6718 "_widthIsFlexible",
6719 "_widthOfColumn:",
6720 "_widthOfLongestDateStringWithLevel:format:",
6721 "_widthOfPackedGlyphs:count:",
6722 "_widthRequiredForLabelLayout",
6723 "_widthToStartRolloverTracking",
6724 "_willAccessValueForKey:",
6725 "_willChangeBackForwardKeys",
6726 "_willChangeValueForKey:",
6727 "_willChangeValuesForArrangedKeys:objectKeys:indexPathKeys:",
6728 "_willDeallocIndexPath:",
6729 "_willPopUpNotification:",
6730 "_willPowerOff",
6731 "_willSave",
6732 "_willStartTrackingMouseInMatrix:withEvent:",
6733 "_willUnmountDeviceAtPath:ok:",
6734 "_win32ChangeKeyAndMain",
6735 "_window",
6736 "_windowAnimationVelocity",
6737 "_windowBorderThickness",
6738 "_windowBorderThickness:",
6739 "_windowChangedHilite:",
6740 "_windowChangedKeyState",
6741 "_windowChangedNumber:",
6742 "_windowDepth",
6743 "_windowDeviceRound",
6744 "_windowDidBecomeVisible:",
6745 "_windowDidChangeScreens:",
6746 "_windowDidComeBack:",
6747 "_windowDidHideToolbar",
6748 "_windowDidLoad",
6749 "_windowDying",
6750 "_windowExposed:",
6751 "_windowFileButtonSpacingWidth",
6752 "_windowInitWithCoder:",
6753 "_windowMoved:",
6754 "_windowMovedToRect:",
6755 "_windowNumber:changedTo:",
6756 "_windowRefCreatedForCarbonControl",
6757 "_windowResizeBorderThickness",
6758 "_windowResizeCornerThickness",
6759 "_windowSideTitlebarTitleMinWidth:",
6760 "_windowTitlebarButtonSpacingWidth",
6761 "_windowTitlebarButtonSpacingWidth:",
6762 "_windowTitlebarTitleMinHeight:",
6763 "_windowTitlebarXResizeBorderThickness",
6764 "_windowTitlebarYResizeBorderThickness",
6765 "_windowWillClose:",
6766 "_windowWillGoAway:",
6767 "_windowWillLoad",
6768 "_windowWillOrderOut:",
6769 "_windowWillShowToolbar",
6770 "_windowWithRealWindowNumber:",
6771 "_wiringNibConnections",
6772 "_wordsInDictionary:",
6773 "_workspaceDidResignOrBecomeActive:",
6774 "_wrappingAttributes",
6775 "_writeCallback:",
6776 "_writeCharacterAttributes:",
6777 "_writeCharacterData",
6778 "_writeCharacters:range:",
6779 "_writeColorsToLibrary",
6780 "_writeDataForkData:resourceForkData:",
6781 "_writeDocumentAttributes",
6782 "_writeDocumentData",
6783 "_writeDocumentProperties",
6784 "_writeDocumentPropertiesToString:",
6785 "_writeDocumentProperty:value:",
6786 "_writeDocumentProperty:value:toString:",
6787 "_writeFontInRange:toPasteboard:",
6788 "_writeFonts",
6789 "_writeForkData:isDataFork:",
6790 "_writeImageElement:withPasteboardTypes:toPasteboard:",
6791 "_writeLinkElement:withPasteboardTypes:toPasteboard:",
6792 "_writeParagraphData",
6793 "_writeParagraphStyle:",
6794 "_writePersistentBrowserColumns",
6795 "_writePersistentExpandItems",
6796 "_writePersistentTableColumns",
6797 "_writeRTFDInRanges:toPasteboard:",
6798 "_writeRTFInRanges:toPasteboard:",
6799 "_writeRecentDocumentDefaults",
6800 "_writeRulerInRange:toPasteboard:",
6801 "_writeSafelyToURL:ofType:forSaveOperation:error:",
6802 "_writeSelectionToPasteboard:",
6803 "_writeStringInRanges:toPasteboard:",
6804 "_writeTIFF:usingCompression:factor:",
6805 "_writeToURL:ofType:forSaveOperation:error:",
6806 "_writeToURL:ofType:forSaveOperation:inFolder:makingTemporaryCopyInFolder:error:",
6807 "_writeTokensInCharacterRange:textStorage:toPasteboard:",
6808 "_writeURLInRange:toPasteboard:",
6809 "_writeURLNameInRange:toPasteboard:",
6810 "_writeURLStringInRange:toPasteboard:",
6811 "_writeURLStringsWithNamesInRange:toPasteboard:",
6812 "_writeVersionsAndEncodings",
6813 "_wsmOwnsWindow",
6814 "_zapResultArray",
6815 "_zeroPinnedResizeColumnsBySharingDelta:lastSharingColumn:resizeInfo:",
6816 "_zeroScreen",
6817 "_zoomButtonOrigin",
6818 "abbreviation",
6819 "abbreviationDictionary",
6820 "abbreviationForDate:",
6821 "abortAllToolTips",
6822 "abortEditing",
6823 "abortModal",
6824 "abortParsing",
6825 "abortToolTip",
6826 "absolutePathForAppBundleWithIdentifier:",
6827 "absoluteString",
6828 "absoluteURL",
6829 "absoluteX",
6830 "absoluteY",
6831 "absoluteZ",
6832 "acceptColor:atPoint:",
6833 "acceptConnectionInBackgroundAndNotifyForModes:",
6834 "acceptLastEnteredText",
6835 "acceptNode:",
6836 "acceptVisitor:flags:",
6837 "acceptableDragTypes",
6838 "acceptsFirstMouse:",
6839 "acceptsFirstResponder",
6840 "acceptsGlyphInfo",
6841 "acceptsMarker:binding:overrideWithPlaceholderIfDefined:",
6842 "acceptsMouseMovedEvents",
6843 "acceptsStyleChanges",
6844 "access",
6845 "accessInstanceVariablesDirectly",
6846 "accessibilityAXAttributedStringForCharacterRange:includingLinksAndAttachments:",
6847 "accessibilityActionDescription:",
6848 "accessibilityActionNames",
6849 "accessibilityArrayAttributeCount:",
6850 "accessibilityArrayAttributeValues:index:maxCount:",
6851 "accessibilityAttachmentAtIndex:",
6852 "accessibilityAttachments",
6853 "accessibilityAttributeNames",
6854 "accessibilityAttributeValue:",
6855 "accessibilityAttributeValue:forParameter:",
6856 "accessibilityBoundsForCharacterRange:",
6857 "accessibilityBoundsForRangeAttributeForParameter:",
6858 "accessibilityCharacterRangeForLineNumber:",
6859 "accessibilityCharacterRangeForPosition:",
6860 "accessibilityChildForColumn:",
6861 "accessibilityChildrenAttribute",
6862 "accessibilityClearButtonAttribute",
6863 "accessibilityColumnForChild:",
6864 "accessibilityColumnTitlesAttribute",
6865 "accessibilityContentsAttribute",
6866 "accessibilityCurrentEditor",
6867 "accessibilityCurrentEditorForCell:",
6868 "accessibilityDecrementButtonAttribute",
6869 "accessibilityElementForAttachment:",
6870 "accessibilityElementWithParent:",
6871 "accessibilityFocusRingBounds",
6872 "accessibilityFocusRingBoundsForBounds:",
6873 "accessibilityFocusedUIElement",
6874 "accessibilityGrowAreaAttribute",
6875 "accessibilityHeaderAttribute",
6876 "accessibilityHelpStringForChild:",
6877 "accessibilityHitTest:",
6878 "accessibilityHorizontalScrollBarAttribute",
6879 "accessibilityIncrementButtonAttribute",
6880 "accessibilityIndexForAttachment:",
6881 "accessibilityIndexOfChild:",
6882 "accessibilityInsertionPointLineNumber",
6883 "accessibilityIsAttributeSettable:",
6884 "accessibilityIsChildFocusable:",
6885 "accessibilityIsChildOfApp",
6886 "accessibilityIsIgnored",
6887 "accessibilityIsSelectedRangeSettable",
6888 "accessibilityIsSelectedTextSettable",
6889 "accessibilityIsSingleCelled",
6890 "accessibilityIsSortButton",
6891 "accessibilityIsVisibleCharacterRangeSettable",
6892 "accessibilityLineForIndexAttributeForParameter:",
6893 "accessibilityLineNumberForCharacterIndex:",
6894 "accessibilityMenuBarAttribute",
6895 "accessibilityOverflowButtonAttribute",
6896 "accessibilityOverriddenAttributes",
6897 "accessibilityParameterizedAttributeNames",
6898 "accessibilityPerformAction:",
6899 "accessibilityPopUpMenuCreated:",
6900 "accessibilityPopUpMenuParent:",
6901 "accessibilityPositionOfChild:",
6902 "accessibilityPostNotification:",
6903 "accessibilityRTFForCharacterRange:",
6904 "accessibilityRangeForLineAttributeForParameter:",
6905 "accessibilityRangeForPositionAttributeForParameter:",
6906 "accessibilityRoleAttribute",
6907 "accessibilityRulerMarkerType",
6908 "accessibilityRulerMarkerTypeDescription",
6909 "accessibilitySearchButtonAttribute",
6910 "accessibilitySelectedChildrenAttribute",
6911 "accessibilitySelectedRange",
6912 "accessibilitySelectedText",
6913 "accessibilitySetFocus:forChild:",
6914 "accessibilitySetOverrideValue:forAttribute:",
6915 "accessibilitySetSelectedRange:",
6916 "accessibilitySetSelectedText:",
6917 "accessibilitySetValue:forAttribute:",
6918 "accessibilitySetVisibleCharacterRange:",
6919 "accessibilitySharedCharacterRange",
6920 "accessibilitySharedTextViews",
6921 "accessibilityShouldUseUniqueId",
6922 "accessibilitySizeOfChild:",
6923 "accessibilitySplittersAttribute",
6924 "accessibilityStyleRangeForCharacterIndex:",
6925 "accessibilitySubroleAttribute",
6926 "accessibilitySupportsOverriddenAttributes",
6927 "accessibilityTabsAttribute",
6928 "accessibilityTextLinkAtIndex:",
6929 "accessibilityTextLinks",
6930 "accessibilityTextView",
6931 "accessibilityTitleUIElementAttribute",
6932 "accessibilityTopLevelUIElementAttributeValueHelper",
6933 "accessibilityTree",
6934 "accessibilityValueAttribute",
6935 "accessibilityValueIndicatorAttribute",
6936 "accessibilityVerticalScrollBarAttribute",
6937 "accessibilityVisibleCharacterRange",
6938 "accessibilityVisibleCharacterRangeAttribute",
6939 "accessibilityWindowAttribute",
6940 "accessibilityWindowAttributeValueHelper",
6941 "accessibilityWindowNumber",
6942 "accessibilityWindowsAttribute",
6943 "accessoryView",
6944 "accessoryViewContainerContentFrameDidChange:",
6945 "accumulate::minRadius:factor:",
6946 "action",
6947 "action:",
6948 "actionForControlCharacterAtIndex:",
6949 "actionHasBegun:sender:",
6950 "actionHasEnded:sender:",
6951 "actionType",
6952 "activate:",
6953 "activateIgnoringOtherApps:",
6954 "activateInputManagerFromMenu:",
6955 "activeColorSpace",
6956 "activeConversationChanged:toNewConversation:",
6957 "activeConversationWillChange:fromOldConversation:",
6958 "activeFileListDelegate",
6959 "actualBitsPerPixel",
6960 "actualIndexForIndex:filtered:",
6961 "adapter",
6962 "adapterOperations",
6963 "adapterOperator",
6964 "add:",
6965 "add:to:",
6966 "addAcceptFieldsToHeader",
6967 "addAdapterOperation:",
6968 "addAnimatingRenderer:inView:",
6969 "addAttribute:",
6970 "addAttribute:value:range:",
6971 "addAttributes:range:",
6972 "addAttributesWeakly:range:",
6973 "addAuthenticationFieldsToHeader",
6974 "addBindVariable:",
6975 "addBinder:",
6976 "addBinding:toController:withKeyPath:valueTransformer:options:",
6977 "addButtonWithTitle:",
6978 "addCharactersInRange:",
6979 "addCharactersInString:",
6980 "addChild:",
6981 "addChildItem:",
6982 "addChildObject:",
6983 "addChildWindow:ordered:",
6984 "addChildren:",
6985 "addChildrenToArray:",
6986 "addClassNamed:version:",
6987 "addClient:",
6988 "addClip",
6989 "addColumn",
6990 "addColumns:",
6991 "addCommon:docInfo:value:zone:",
6992 "addConditionalFieldsToHeader",
6993 "addConnection:forKey:",
6994 "addConnection:toRunLoop:forMode:",
6995 "addConnectionFieldToHeader",
6996 "addContentObject:isPlaceholder:value:tag:cellOrControl:",
6997 "addConversation:",
6998 "addCookieFieldToHeader",
6999 "addCrayon:",
7000 "addCredential:forProtectionSpace:",
7001 "addCredentialsToInitialHTTPRequest:protocol:",
7002 "addCredentialsToRetryHTTPRequest:afterFailureResponse:nsFailureResponse:failureCount:protocol:withCallback:context:",
7003 "addCursorRect:cursor:",
7004 "addData:",
7005 "addDefaultTable",
7006 "addDelta:forManyToManyKey:",
7007 "addDescription:forSubelementName:",
7008 "addDirNamed:lazy:",
7009 "addDocument:",
7010 "addEntity:index:",
7011 "addEntriesFromDictionary:",
7012 "addEnumeration:",
7013 "addEventListener:::",
7014 "addExpandedNode:",
7015 "addExtraFieldsToHeader",
7016 "addFavorite",
7017 "addFavoriteInWindow:",
7018 "addFeatureDescriptions:",
7019 "addFileButton:",
7020 "addFileNamed:fileAttributes:",
7021 "addFileWrapper:",
7022 "addFontDescriptorToRecents:",
7023 "addFontDescriptors:toCollection:",
7024 "addFontTrait:",
7025 "addGlyphs:advances:count:at::",
7026 "addHeartBeatView:",
7027 "addHostFieldToHeader",
7028 "addIndex:",
7029 "addIndexRange:",
7030 "addIndexes:",
7031 "addIndexesInRange:",
7032 "addItem:",
7033 "addItemForURL:",
7034 "addItemWithObjectValue:",
7035 "addItemWithTitle:",
7036 "addItemWithTitle:action:keyEquivalent:",
7037 "addItemWithTitle:action:tag:",
7038 "addItems:",
7039 "addItemsWithObjectValues:",
7040 "addItemsWithTitles:",
7041 "addJoinForDirectToManyToMany:",
7042 "addJoinForManyToManyRelationship:sourcePath:destinationPath:",
7043 "addJoinForToManyRelationship:sourcePath:destinationPath:",
7044 "addJoinForToOneRelationship:sourcePath:destinationPath:",
7045 "addLayoutManager:",
7046 "addListenerIfAbsent:",
7047 "addMarker:",
7048 "addMessageBodyToRequest",
7049 "addMessageToConsole:",
7050 "addMouseMovedObserver",
7051 "addNamespace:",
7052 "addNewColor:andShowInWell:",
7053 "addObject:",
7054 "addObject:objectIDMap:",
7055 "addObject:toBothSidesOfRelationshipWithKey:",
7056 "addObject:toPropertyWithKey:",
7057 "addObjectToMasterArrayRelationship:selectionMode:",
7058 "addObjectsFromArray:",
7059 "addObjectsToMasterArrayRelationship:selectionMode:",
7060 "addObserver:forKeyPath:options:context:",
7061 "addObserver:selector:name:object:",
7062 "addObserver:selector:name:object:suspensionBehavior:",
7063 "addOrNestTable",
7064 "addPathToLibrarySearchPaths:",
7065 "addPersistentStoreWithType:configuration:URL:readOnly:error:",
7066 "addPlugin:",
7067 "addPolicy:",
7068 "addPort:forMode:",
7069 "addPortsToAllRunLoops",
7070 "addPortsToRunLoop:",
7071 "addPreferenceNamed:owner:",
7072 "addRect:",
7073 "addReferrerFieldToHeader",
7074 "addRegularFileWithContents:preferredFilename:",
7075 "addRepresentation:",
7076 "addRepresentations:",
7077 "addRow",
7078 "addRowWithCells:",
7079 "addRows:",
7080 "addRunLoop:",
7081 "addServiceProvider:",
7082 "addSpecialGStateView:",
7083 "addStatistics:",
7084 "addSubresource:",
7085 "addSubview:",
7086 "addSubview:positioned:relativeTo:",
7087 "addSuperviewObservers",
7088 "addTabStop:",
7089 "addTableColumn:",
7090 "addTemporaryAttributes:forCharacterRange:",
7091 "addTextContainer:",
7092 "addTimeInterval:",
7093 "addTimer:forMode:",
7094 "addTimerToModes",
7095 "addToPageSetup",
7096 "addToolTipRect:owner:userData:",
7097 "addTrackingRect:owner:userData:assumeInside:",
7098 "addTrackingRectForToolTip:reuseExistingTrackingNum:",
7099 "addTypes:owner:",
7100 "addUserAgentFieldToHeader",
7101 "addValue:forHTTPHeaderField:",
7102 "addVariationDescriptions:",
7103 "addView:frame:toView:characterIndex:layoutManager:",
7104 "addWebView:toSetNamed:",
7105 "addWindowController:",
7106 "addWindowObservers",
7107 "addWindowsItem:title:filename:",
7108 "additionalClip",
7109 "additionalPatternPhase",
7110 "address",
7111 "addresses",
7112 "adjustCTM:",
7113 "adjustControls:",
7114 "adjustFrameOriginX:",
7115 "adjustFrameSize",
7116 "adjustHalftonePhase",
7117 "adjustOffsetToNextWordBoundaryInString:startingAt:",
7118 "adjustPageHeightNew:top:bottom:limit:",
7119 "adjustPageWidthNew:left:right:limit:",
7120 "adjustScroll:",
7121 "adjustScrollView",
7122 "adjustSubviews",
7123 "adjustView:frame:forView:characterIndex:layoutManager:",
7124 "adjustViewSize",
7125 "advanceProxyArray",
7126 "advanceToNextMisspelling",
7127 "advanceToNextMisspellingStartingJustBeforeSelection",
7128 "advancementForGlyph:",
7129 "aeDesc",
7130 "aeteResource:",
7131 "affineTransform",
7132 "afterEntityLookup",
7133 "alertDidEnd:returnCode:contextInfo:",
7134 "alertShowHelp:",
7135 "alertWithError:",
7136 "alignCenter:",
7137 "alignJustified:",
7138 "alignLeft:",
7139 "alignRight:",
7140 "alignment",
7141 "allBundles",
7142 "allConnections",
7143 "allCredentials",
7144 "allFrameworks",
7145 "allHTTPHeaderFields",
7146 "allHeaderFields",
7147 "allKeys",
7148 "allKeysForObject:",
7149 "allObjects",
7150 "allOrderedScopeButtons",
7151 "allPropertyKeys",
7152 "allValues",
7153 "alloc",
7154 "allocFromZone:",
7155 "allocWithZone:",
7156 "allocateGState",
7157 "allocateObjectIDForPayload:withType:",
7158 "allowDHTMLDrag:UADrag:",
7159 "allowEmptySel:",
7160 "allowFlushing",
7161 "allowedContentBindingMask",
7162 "allowedFileTypes",
7163 "allowedValueBindingMask",
7164 "allowsAnyHTTPSCertificateForHost:",
7165 "allowsBranchSelection",
7166 "allowsColumnReordering",
7167 "allowsColumnResizing",
7168 "allowsColumnSelection",
7169 "allowsDocumentBackgroundColorChange",
7170 "allowsDuplicatesInToolbar",
7171 "allowsEditingMultipleValuesSelection",
7172 "allowsEditingTextAttributes",
7173 "allowsEmptySelection",
7174 "allowsExpandingMultipleDirectories",
7175 "allowsFloats",
7176 "allowsKeyedCoding",
7177 "allowsMixedState",
7178 "allowsMultipleSelection",
7179 "allowsNaturalLanguage",
7180 "allowsNullArgumentWithBinding:",
7181 "allowsOtherFileTypes",
7182 "allowsReverseTransformation",
7183 "allowsScrolling",
7184 "allowsTickMarkValuesOnly",
7185 "allowsToolTipsWhenApplicationIsInactive",
7186 "allowsUndo",
7187 "allowsUserCustomization",
7188 "alpha",
7189 "alphaComponent",
7190 "alphaControlAddedOrRemoved:",
7191 "alphaValue",
7192 "alphanumericCharacterSet",
7193 "altIncrementValue",
7194 "altModifySelection:",
7195 "alterCurrentSelection:direction:granularity:",
7196 "alterCurrentSelection:verticalDistance:",
7197 "alternateArrangeInFront:",
7198 "alternateImage",
7199 "alternateMnemonicLocation",
7200 "alternateSelectedControlColor",
7201 "alternateSelectedControlTextColor",
7202 "alternateTitle",
7203 "alwaysAttemptToUsePageCache",
7204 "alwaysPresentsApplicationModalAlerts",
7205 "alwaysPresentsApplicationModalAlertsWithBinding:",
7206 "alwaysUsesMultipleValuesMarker",
7207 "analyzeKeyPath:registerOrUnregister:",
7208 "ancestorSharedWithView:",
7209 "ancestorsStartingWith:",
7210 "anchorElement",
7211 "andPredicateOperator",
7212 "angledROI:forRect:",
7213 "animate",
7214 "animate:",
7215 "animation:didReachProgressMark:",
7216 "animation:valueForProgress:",
7217 "animationBlockingMode",
7218 "animationCurve",
7219 "animationDidEnd:",
7220 "animationDidStop:",
7221 "animationResizeTime:",
7222 "animationShouldStart:",
7223 "anyObject",
7224 "appDidActivate:",
7225 "appearanceChanged:",
7226 "appendAttributedString:",
7227 "appendBezierPath:",
7228 "appendBezierPathWithArcFromPoint:toPoint:radius:",
7229 "appendBezierPathWithArcWithCenter:radius:startAngle:endAngle:",
7230 "appendBezierPathWithArcWithCenter:radius:startAngle:endAngle:clockwise:",
7231 "appendBezierPathWithGlyphs:count:inFont:",
7232 "appendBezierPathWithOvalInRect:",
7233 "appendBezierPathWithPoints:count:",
7234 "appendBezierPathWithRect:",
7235 "appendBytes:length:",
7236 "appendCharacter:",
7237 "appendChild:",
7238 "appendClause:forKeyPath:allowToMany:",
7239 "appendClause:forKeyPathExpression:allowToMany:",
7240 "appendClause:forProperty:keypath:",
7241 "appendData:",
7242 "appendDisplayedNode:identifier:title:displaysChildren:",
7243 "appendElementClassDeclarationToAETEData:",
7244 "appendEnumerationDeclarationToAETEData:",
7245 "appendFormat:",
7246 "appendJoinClauseToSQL",
7247 "appendLimitClauseToSQL:",
7248 "appendObjectClassDeclarationToAETEData:",
7249 "appendOrderByClauseToSQL",
7250 "appendParameterDeclarationsToAETEData:",
7251 "appendPropertyDeclarationToAETEData:",
7252 "appendPropertyDeclarationsToAETEData:",
7253 "appendReceivedData:fromDataSource:",
7254 "appendRecordTypeDeclarationsToAETEData:",
7255 "appendSQL:",
7256 "appendSelectListToSQL",
7257 "appendSelectableScopeLocationNode:",
7258 "appendString:",
7259 "appendSuiteDeclarationsToAETEData:",
7260 "appendTransform:",
7261 "appendWhereClause:",
7262 "appendWhereClauseToSQL",
7263 "appleEventClassCode",
7264 "appleEventCode",
7265 "appleEventCodeForKey:",
7266 "appleEventCodeForReturnType",
7267 "application:delegateHandlesKey:",
7268 "application:openFile:",
7269 "application:openFileWithoutUI:",
7270 "application:openFiles:",
7271 "application:openTempFile:",
7272 "application:printFile:",
7273 "application:printFiles:",
7274 "application:printFiles:withSettings:showPrintPanels:",
7275 "application:receivedEvent:dequeuedEvent:",
7276 "application:runTest:duration:",
7277 "application:willPresentError:",
7278 "applicationDelegateHandlesKey::",
7279 "applicationDidBecomeActive:",
7280 "applicationDockMenu:",
7281 "applicationIcon",
7282 "applicationName",
7283 "applicationOpenUntitledFile:",
7284 "applicationShouldHandleReopen:hasVisibleWindows:",
7285 "applicationShouldOpenUntitledFile:",
7286 "applicationShouldTerminate:",
7287 "applicationShouldTerminateAfterLastWindowClosed:",
7288 "appliesImmediately",
7289 "apply:",
7290 "apply:arguments:options:",
7291 "apply:to:",
7292 "apply:to:options1:options2:",
7293 "apply:to:options:",
7294 "apply:to:params:",
7295 "applyDisplayedValueHandleErrors:typeOfAlert:canRecoverFromErrors:discardEditingCallback:otherCallback:callbackContextInfo:didRunAlert:",
7296 "applyEditingStyleToBodyElement",
7297 "applyObjectValue:forBinding:operation:needToRunAlert:error:",
7298 "applyStyle:",
7299 "archive",
7300 "archiveRootObject:toFile:",
7301 "archivedDataWithRootObject:",
7302 "archiver:didEncodeObject:",
7303 "archiver:willEncodeObject:",
7304 "archiver:willReplaceObject:withObject:",
7305 "archiverDidFinish:",
7306 "archiverWillFinish:",
7307 "areCursorRectsEnabled",
7308 "arePlugInsEnabled",
7309 "areScrollbarsVisible",
7310 "areToolbarsVisible",
7311 "argumentDescriptionFromName:implDeclaration:presoDeclaration:suiteName:commandName:",
7312 "arguments",
7313 "arrangeInFront:",
7314 "arrangeObjects:",
7315 "arrangedObjects",
7316 "array",
7317 "arrayByAddingObject:",
7318 "arrayByAddingObjects:count:",
7319 "arrayByAddingObjectsFromArray:",
7320 "arrayByExcludingObjectsInArray:",
7321 "arrayByExcludingObjectsInArray:identical:",
7322 "arrayForKey:",
7323 "arrayForOptionalSubelementName:",
7324 "arrayOrNumberFromResolutions:andValues:withCount:",
7325 "arrayRepresentation",
7326 "arrayWithArray:",
7327 "arrayWithArray:copyItems:",
7328 "arrayWithCapacity:",
7329 "arrayWithContentsOfFile:",
7330 "arrayWithIFURLsWithTitlesPboardType",
7331 "arrayWithIndexes:",
7332 "arrayWithObject:",
7333 "arrayWithObjects:",
7334 "arrayWithObjects:count:",
7335 "arrayWithRange:",
7336 "arrayWithRanges:count:",
7337 "arrowCursor",
7338 "arrowPosition",
7339 "asRef",
7340 "ascender",
7341 "ascending",
7342 "ascent",
7343 "aspectRatio",
7344 "assignValuesForInsertedObject:",
7345 "asyncInvokeServiceIn:msg:pb:userData:menu:remoteServices:unhide:",
7346 "atomAttachmentCell",
7347 "attachColorList:",
7348 "attachColorList:systemList:makeSelected:",
7349 "attachPopUpWithFrame:inView:",
7350 "attachSubmenuForItemAtIndex:",
7351 "attachToolbarToColorPanel:",
7352 "attachedListDictionary",
7353 "attachedMenu",
7354 "attachedMenuView",
7355 "attachedSheet",
7356 "attachedViewFrameDidChange:",
7357 "attachment",
7358 "attachmentCell",
7359 "attachmentMenu",
7360 "attachmentSizeForGlyphAtIndex:",
7361 "attemptOverwrite:",
7362 "attemptRecoveryFromError:optionIndex:",
7363 "attemptRecoveryFromError:optionIndex:delegate:didRecoverSelector:contextInfo:",
7364 "attemptRetryAfter3xxResponse",
7365 "attribute:atIndex:effectiveRange:",
7366 "attribute:atIndex:longestEffectiveRange:inRange:",
7367 "attributeColumnDefinitions",
7368 "attributeColumns",
7369 "attributeDescriptorForKeyword:",
7370 "attributeForLocalName:URI:",
7371 "attributeForName:",
7372 "attributeKeys",
7373 "attributeMappings",
7374 "attributeType",
7375 "attributeTypeForXMLInfo:",
7376 "attributeValueClassName",
7377 "attributeValueForSlot:",
7378 "attributedAlternateTitle",
7379 "attributedString",
7380 "attributedStringForNil",
7381 "attributedStringForNotANumber",
7382 "attributedStringForObjectValue:withDefaultAttributes:",
7383 "attributedStringForZero",
7384 "attributedStringFrom:startOffset:to:endOffset:",
7385 "attributedStringValue",
7386 "attributedStringWithAttachment:",
7387 "attributedStringWithHTML:documentAttributes:",
7388 "attributedStringWithHTML:useEncoding:documentAttributes:",
7389 "attributedSubstringForMarkedRange",
7390 "attributedSubstringFromRange:",
7391 "attributedTitle",
7392 "attributes",
7393 "attributesAtEndOfGroup",
7394 "attributesAtIndex:effectiveRange:",
7395 "attributesAtIndex:effectiveRange:inRange:",
7396 "attributesAtIndex:longestEffectiveRange:inRange:",
7397 "attributesAtPath:traverseLink:",
7398 "attributesByName",
7399 "attributesForExtraLineFragment",
7400 "attributesWithStat:",
7401 "authenticateComponents:withData:",
7402 "authenticateWithDelegate:",
7403 "authenticationDataForComponents:",
7404 "authenticationMethod",
7405 "autoenablesItems",
7406 "automaticallyNotifiesObserversForKey:",
7407 "automaticallyPreparesContent",
7408 "autorecalculatesKeyViewLoop",
7409 "autorelease",
7410 "autorepeat",
7411 "autoresizesAllColumnsToFit",
7412 "autoresizesSubviews",
7413 "autoresizingMask",
7414 "autosaveDocumentWithDelegate:didAutosaveSelector:contextInfo:",
7415 "autosaveName",
7416 "autosaveTableColumns",
7417 "autosavedContentsFileURL",
7418 "autosavesConfiguration",
7419 "autosavingFileType",
7420 "autoscroll:",
7421 "autosizesCells",
7422 "autovalidates",
7423 "availableBindings",
7424 "availableColorLists",
7425 "availableData",
7426 "availableFontFamilies",
7427 "availableFonts",
7428 "availableLanguageContextNames",
7429 "availableMembersOfFontFamily:",
7430 "availableProfiles",
7431 "availableResourceData",
7432 "availableTypeFromArray:",
7433 "average:",
7434 "avoidsEmptySelection",
7435 "awake",
7436 "awakeAfterUsingCoder:",
7437 "awakeFromFetch",
7438 "awakeFromInsert",
7439 "awakeFromNib",
7440 "backForwardList",
7441 "backItem",
7442 "backListCount",
7443 "backListWithLimit:",
7444 "background",
7445 "backgroundColor",
7446 "backgroundEdgeColor",
7447 "backgroundLoadDidFailWithReason:",
7448 "backingType",
7449 "base64DecodeData:",
7450 "baseAffineTransform",
7451 "baseGetter",
7452 "baseSetter",
7453 "baseSpecifier",
7454 "baseURL",
7455 "baseWritingDirection",
7456 "baseline",
7457 "baselineLocation",
7458 "baselineOffsetInLayoutManager:glyphIndex:",
7459 "becomeFirstResponder",
7460 "becomeKeyWindow",
7461 "becomeMainWindow",
7462 "becomeMultiThreaded:",
7463 "becomeSingleThreaded:",
7464 "becomesKeyOnlyIfNeeded",
7465 "beginConstructionWithSuiteRegistry:",
7466 "beginDataLoad",
7467 "beginDocument",
7468 "beginDocumentWithTitle:",
7469 "beginEditing",
7470 "beginLayoutChange",
7471 "beginLineWithGlyphAtIndex:",
7472 "beginLoadInBackground",
7473 "beginModalSessionForWindow:",
7474 "beginModalSessionForWindow:relativeToWindow:",
7475 "beginPage:",
7476 "beginPage:label:bBox:fonts:",
7477 "beginPageInRect:atPlacement:",
7478 "beginPageSetupRect:placement:",
7479 "beginParagraph",
7480 "beginPrologueBBox:creationDate:createdBy:fonts:forWhom:pages:title:",
7481 "beginSetup",
7482 "beginSheet",
7483 "beginSheet:modalForWindow:modalDelegate:didEndSelector:contextInfo:",
7484 "beginSheetForDirectory:file:modalForWindow:modalDelegate:didEndSelector:contextInfo:",
7485 "beginSheetForDirectory:file:types:modalForWindow:modalDelegate:didEndSelector:contextInfo:",
7486 "beginSheetForSavePanel:withFilepath:didEndSelector:contextInfo:",
7487 "beginSheetModalForWindow:modalDelegate:didEndSelector:contextInfo:",
7488 "beginSheetWithPrintInfo:modalForWindow:delegate:didEndSelector:contextInfo:",
7489 "beginTrailer",
7490 "beginTransaction",
7491 "beginUndoGrouping",
7492 "beginUpdateInsertionAnimationAtIndex:throwAwayCacheWhenDone:",
7493 "beginUsingMenuFormRepresentation:",
7494 "bestLocationRep",
7495 "bestLocationRep:matchesBestLocationRep:",
7496 "bestLocationRepFromURL:",
7497 "bestMatchingFontForCharacters:length:attributes:actualCoveredLength:",
7498 "bestRepresentationForDevice:",
7499 "bestVisualFrameSizeForCharacterCount:",
7500 "bezelStyle",
7501 "bezierPath",
7502 "bezierPathWithOvalInRect:",
7503 "bezierPathWithRect:",
7504 "bidiProcessingEnabled",
7505 "binaryCollator",
7506 "binaryOperatorForSelector",
7507 "bind:toObject:withKeyPath:options:",
7508 "bindHIViewToNSView:nsView:",
7509 "bindVariables",
7510 "binderClassesForObject:",
7511 "binderClassesSuperseded",
7512 "binderSpecificFlagAtIndex:",
7513 "binders",
7514 "binding",
7515 "bindingCategory",
7516 "bindingRunsAlerts:",
7517 "bindingsForObject:",
7518 "bitmapData",
7519 "bitmapFormat",
7520 "bitmapRepresentation",
7521 "bitsPerPixel",
7522 "bitsPerSample",
7523 "blackColor",
7524 "blackComponent",
7525 "blendedColorWithFraction:ofColor:",
7526 "blue",
7527 "blueColor",
7528 "blueComponent",
7529 "blueControlTintColor",
7530 "blur1ROI:::",
7531 "blur2ROI:::",
7532 "blur:pass:",
7533 "blurRegionOf:destRect:userInfo:",
7534 "bodyBackgroundColor",
7535 "boldSystemFontOfSize:",
7536 "boolForKey:",
7537 "boolParameterValue:",
7538 "boolValue",
7539 "booleanForKey:inTable:",
7540 "booleanValue",
7541 "borderColorForEdge:",
7542 "borderRect",
7543 "borderType",
7544 "bottomCornerRounded",
7545 "bottomMargin",
7546 "boundingBox",
7547 "boundingBoxForControlGlyphAtIndex:forTextContainer:proposedLineFragment:glyphPosition:characterIndex:",
7548 "boundingRectForFont",
7549 "boundingRectForGlyph:",
7550 "boundingRectForGlyphRange:inTextContainer:",
7551 "boundingRectWithSize:options:",
7552 "boundingRectWithSize:options:attributes:",
7553 "bounds",
7554 "boundsForButtonCell:",
7555 "boundsForTextCell:",
7556 "boundsRectForBlock:contentRect:inRect:textContainer:characterRange:",
7557 "boundsRectForContentRect:inRect:textContainer:characterRange:",
7558 "boundsRectForTextBlock:atIndex:effectiveRange:",
7559 "boundsRectForTextBlock:glyphRange:",
7560 "boxType",
7561 "branchImage",
7562 "breakConnection",
7563 "breakLineAtIndex:",
7564 "breakLock",
7565 "bridgeForDOMDocument:",
7566 "bridgeForView:",
7567 "brightColor",
7568 "brightnessComponent",
7569 "broadcast",
7570 "browser",
7571 "browser:createRowsForColumn:inMatrix:",
7572 "browser:didClickOnDisabledCell:atRow:column:",
7573 "browser:isColumnValid:",
7574 "browser:numberOfRowsInColumn:",
7575 "browser:selectCellWithString:inColumn:",
7576 "browser:selectRow:inColumn:",
7577 "browser:shouldSizeColumn:forUserResize:toWidth:",
7578 "browser:sizeToFitWidthOfColumn:",
7579 "browser:titleOfColumn:",
7580 "browser:willDisplayCell:atRow:column:",
7581 "browserDidScroll:",
7582 "browserWillScroll:",
7583 "buddhistCalendar",
7584 "bufferingSize",
7585 "buildAlertStyle:title:formattedMsg:first:second:third:oldStyle:",
7586 "buildAlertStyle:title:message:first:second:third:oldStyle:args:",
7587 "buildFilterCache",
7588 "buildHTTPRequest",
7589 "buildOrderByClauseWithSortDescriptors:",
7590 "buildWhereClauseForRow:",
7591 "buildWhereClauseWithSelectPredicate:",
7592 "builderForClass:",
7593 "builtInPlugInsPath",
7594 "bundle",
7595 "bundleForClass",
7596 "bundleForClass:",
7597 "bundleIdentifier",
7598 "bundlePath",
7599 "bundleWithIdentifier:",
7600 "bundleWithPath:",
7601 "busyButClickableCursor",
7602 "buttonHeight",
7603 "buttonImageForHeightReference",
7604 "buttonImageNamePrefixForButtonState:",
7605 "buttonImageSourceWithName:",
7606 "buttonImagesForButtonState:",
7607 "buttonMask",
7608 "buttonNumber",
7609 "buttonPressed:",
7610 "buttonROI:forRect:",
7611 "buttonRectForBounds:",
7612 "buttonRectangleForResolutionData:",
7613 "buttonResult:buttonImage:inlayImage:highlightImage:figure:figureOffset:stripeGradient:phase:",
7614 "buttonResultForResolutionData:",
7615 "buttons",
7616 "bytes",
7617 "bytesPerPlane",
7618 "bytesPerRow",
7619 "cString",
7620 "cStringLength",
7621 "cStringUsingEncoding:",
7622 "cache",
7623 "cacheDepthMatchesImageDepth",
7624 "cacheInsertStatement:",
7625 "cacheMiniwindowTitle:guess:",
7626 "cachePolicy",
7627 "cacheRect:",
7628 "cacheStringImage:whiteText:",
7629 "cachedChildren",
7630 "cachedChildrenForExpandedNode:",
7631 "cachedChildrenForNode:",
7632 "cachedDrawingImage",
7633 "cachedFontFromFamily:traits:size:",
7634 "cachedHandleForURL:",
7635 "cachedResponse",
7636 "cachedResponseForRequest:",
7637 "cachedResponseMustBeRevalidated",
7638 "cachedResponseRevalidated",
7639 "cachedSQLiteStatement",
7640 "calcDrawInfo:",
7641 "calcSize",
7642 "calculateFigureCenter:",
7643 "calculateFigureSize:",
7644 "calculatesAllSizes",
7645 "calendar",
7646 "calendarDate",
7647 "calendarFormat",
7648 "canAdd",
7649 "canAddBinding:toController:",
7650 "canAddChild",
7651 "canApplyValueTransformer:toBinding:",
7652 "canBeCompressedUsing:",
7653 "canBeConvertedToEncoding:",
7654 "canBeDisabled",
7655 "canBecomeKeyView",
7656 "canBecomeKeyWindow",
7657 "canBecomeMainWindow",
7658 "canBrowseNode:allowInteraction:",
7659 "canCachePage",
7660 "canChooseDirectories",
7661 "canChooseFiles",
7662 "canChooseNode:",
7663 "canClickDisabledFiles",
7664 "canCloseDocument",
7665 "canCloseDocumentWithDelegate:shouldCloseSelector:contextInfo:",
7666 "canConnect",
7667 "canCreateCollapsedSpecifierFromAbsolutePositionRecord:",
7668 "canCreateCollapsedSpecifierFromRangeRecord:",
7669 "canCreateDirectories",
7670 "canCycle",
7671 "canDecodeDownloadHeaderData:",
7672 "canDragRowsWithIndexes:atPoint:",
7673 "canDraw",
7674 "canGoBack",
7675 "canGoBackOrForward:",
7676 "canGoForward",
7677 "canHandleRequest:",
7678 "canHide",
7679 "canHighlightNode:",
7680 "canIgnorePopulatingObject:",
7681 "canIgnoreSettingMinAndMaxForObject:",
7682 "canImportData:",
7683 "canInitWithData:",
7684 "canInitWithPasteboard:",
7685 "canInitWithRequest:",
7686 "canInitWithURL:",
7687 "canInsert",
7688 "canInsertChild",
7689 "canMakeTextLarger",
7690 "canMakeTextSmaller",
7691 "canPaste",
7692 "canPopulateWithPlaceholders",
7693 "canProvideDocumentSource",
7694 "canRedo",
7695 "canRemove",
7696 "canResumeDownloadDecodedWithEncodingMIMEType:",
7697 "canSearch",
7698 "canSelectHiddenExtension",
7699 "canSelectNext",
7700 "canSelectPrevious",
7701 "canShowFile:",
7702 "canShowMIMEType:",
7703 "canShowMIMETypeAsHTML:",
7704 "canStart",
7705 "canStoreColor",
7706 "canSupportMinAndMaxForObject:",
7707 "canTakeFindStringFromSelection",
7708 "canTargetLoadInFrame:",
7709 "canUndo",
7710 "cancel",
7711 "cancel:",
7712 "cancelAddCredentialsToRetryHTTPRequest:",
7713 "cancelAuthentication:",
7714 "cancelAuthenticationChallenge:",
7715 "cancelButtonRectForBounds:",
7716 "cancelContentPolicy",
7717 "cancelDelayedUpdate",
7718 "cancelIncrementalLoadForImage:",
7719 "cancelInput:conversation:",
7720 "cancelLoadAndDestroyStreamWithError:",
7721 "cancelLoadInBackground",
7722 "cancelLoadWithError:",
7723 "cancelOperation:",
7724 "cancelPerformSelector:target:argument:",
7725 "cancelPreviousPerformRequestsWithTarget:",
7726 "cancelPreviousPerformRequestsWithTarget:selector:object:",
7727 "cancelPreviouslScheduleRolloverWindow",
7728 "cancelUserAttentionRequest:",
7729 "cancelWithError:",
7730 "cancelledError",
7731 "canonicalHTTPURLForURL:",
7732 "canonicalRequestForRequest:",
7733 "canonicalXMLStringPreservingComments:",
7734 "canonicalizeHTTPEncodingString",
7735 "capHeight",
7736 "capabilityMask",
7737 "capacity",
7738 "capitalizedLetterCharacterSet",
7739 "capitalizedString",
7740 "captionTextField",
7741 "carbonHICommandIDFromActionSelector:",
7742 "carbonNotificationProc",
7743 "caretRectAtNode:offset:affinity:",
7744 "cascadeTopLeftFromPoint:",
7745 "caseInsensitiveCompare:",
7746 "caseSensitive",
7747 "castObject:toType:",
7748 "catalogNameComponent",
7749 "cell",
7750 "cellAtIndex:",
7751 "cellAtPoint:row:column:",
7752 "cellAtPoint:row:column:loaded:",
7753 "cellAtRow:column:",
7754 "cellAtRow:column:loaded:",
7755 "cellAttribute:",
7756 "cellBackgroundColor",
7757 "cellBaselineOffset",
7758 "cellClass",
7759 "cellForRow:column:tableView:",
7760 "cellForRow:tableColumn:",
7761 "cellFrameAtRow:column:",
7762 "cellFrameForTextContainer:proposedLineFragment:glyphPosition:characterIndex:",
7763 "cellMenuForSearchField",
7764 "cellOrControlForObject:",
7765 "cellPadding",
7766 "cellPrototype",
7767 "cellSize",
7768 "cellSizeForBounds:",
7769 "cellSpacing",
7770 "cellWithTag:",
7771 "cells",
7772 "center",
7773 "center:didAddObserver:name:object:",
7774 "center:didRemoveObserver:name:object:",
7775 "centerOverMainWindow",
7776 "centerScanRect:",
7777 "centerSelectionInVisibleArea",
7778 "centerSelectionInVisibleArea:",
7779 "centerTabMarkerWithRulerView:location:",
7780 "centerTruncateString:toWidth:withFont:",
7781 "cgsRegionObj",
7782 "changeAttributes:",
7783 "changeBaseWritingDirection:",
7784 "changeColor:",
7785 "changeCount",
7786 "changeCurrentDirectoryPath:",
7787 "changeDestinationToPoint:",
7788 "changeDestinationToRect:",
7789 "changeDisplayedColorName:",
7790 "changeDocumentBackgroundColor:",
7791 "changeFileAttributes:atPath:",
7792 "changeFont:",
7793 "changeFontTrait:",
7794 "changeInLength",
7795 "changeOptionsPanelSettings:",
7796 "changeSpelling:",
7797 "changeToolbarDisplayMode:",
7798 "changeWillBeUndone:",
7799 "changeWindowFrameSizeByDelta:display:animate:",
7800 "changeWindowsItem:title:filename:",
7801 "charIndex",
7802 "charRefToUnicode:",
7803 "charValue",
7804 "character:hasNumericProperty:",
7805 "character:hasProperty:",
7806 "characterAtIndex:",
7807 "characterCollection",
7808 "characterEncoding",
7809 "characterIdentifier",
7810 "characterIndexForGlyphAtIndex:",
7811 "characterIndexForPoint:",
7812 "characterIsMember:",
7813 "characterRange",
7814 "characterRangeForGlyphRange:actualGlyphRange:",
7815 "characterSetWithBitmapRepresentation:",
7816 "characterSetWithCharactersInString:",
7817 "characterSetWithContentsOfFile:",
7818 "characterSetWithName:",
7819 "characterSetWithRange:",
7820 "characters",
7821 "charactersIgnoringModifiers",
7822 "charactersToBeSkipped",
7823 "cheapBlur",
7824 "cheapBlurROI:::",
7825 "check:",
7826 "checkContentPolicyForResponse:",
7827 "checkForAuthenticationFailureInHTTPResponse:withURL:",
7828 "checkForRemovableMedia",
7829 "checkGrammarOfString:startingAt:language:wrap:inSpellDocumentWithTag:details:reconnectOnError:",
7830 "checkSpaceForParts",
7831 "checkSpelling:",
7832 "checkSpellingOfString:startingAt:language:wrap:inSpellDocumentWithTag:wordCount:",
7833 "checkSpellingOfString:startingAt:language:wrap:inSpellDocumentWithTag:wordCount:reconnectOnError:",
7834 "childAtIndex:",
7835 "childCount",
7836 "childFrames",
7837 "childGlyphStorageWithGlyphRange:cleanCopy:",
7838 "childItemWithName:",
7839 "childOfNode:atIndex:",
7840 "childStore:didForgetObjectsWithObjectIDs:",
7841 "childStores",
7842 "childWindows",
7843 "children",
7844 "childrenChanged",
7845 "childrenKeyPath",
7846 "chineseCalendar",
7847 "chooseButtonPressed:",
7848 "class",
7849 "classCode",
7850 "classDescription",
7851 "classDescriptionForClass:",
7852 "classDescriptionForDestinationKey:",
7853 "classDescriptionForEntityName:",
7854 "classDescriptionForKey:",
7855 "classDescriptionForKeyPath:",
7856 "classDescriptionWithAppleEventCode:",
7857 "classDescriptions",
7858 "classDescriptionsByName",
7859 "classDescriptionsInSuite:",
7860 "classFallbacksForKeyedArchiver",
7861 "classForArchiver",
7862 "classForClassName:",
7863 "classForCoder",
7864 "classForKeyedArchiver",
7865 "classForKeyedUnarchiver",
7866 "classForPortCoder",
7867 "className",
7868 "classNameDecodedForArchiveClassName:",
7869 "classNameForClass:",
7870 "classNamed:",
7871 "classPropertyKeys",
7872 "cleanUpAfterDragOperation",
7873 "cleanUpForRetry",
7874 "cleanUpOperation",
7875 "clear",
7876 "clear:",
7877 "clearAllModelObjectObserving",
7878 "clearAsMainCarbonMenuBar",
7879 "clearAttributesCache",
7880 "clearCaches",
7881 "clearChildren",
7882 "clearClipping",
7883 "clearColor",
7884 "clearControlTintColor",
7885 "clearController",
7886 "clearConversationRequest",
7887 "clearCurrentContext",
7888 "clearCurrentValues",
7889 "clearDrawable",
7890 "clearFilterCache",
7891 "clearGLContext",
7892 "clearGlyphCache",
7893 "clearMarkedRange",
7894 "clearNewAvailableData",
7895 "clearProperties",
7896 "clearRecentDocuments:",
7897 "clearRolloverTrackingRect",
7898 "clearStartAnimation",
7899 "clearStopAnimation",
7900 "clearTableParameters",
7901 "clearsFilterPredicateOnInsertion",
7902 "clickCount",
7903 "clickableContentRectForBounds:",
7904 "clicked",
7905 "clickedColumn",
7906 "clickedOnLink:atIndex:",
7907 "clickedRow",
7908 "client",
7909 "clientView",
7910 "clientWrapperWithRealClient:",
7911 "clip:",
7912 "clipForDrawingRow:column:",
7913 "clipFrameChanged:",
7914 "clipRect:",
7915 "clipToQDRegion:",
7916 "clippedItems",
7917 "clipviewBoundsChangedNotification:",
7918 "clockPreferencesChanged:",
7919 "cloneRange",
7920 "close",
7921 "close:",
7922 "closeAllDocuments",
7923 "closeAllDocumentsWithDelegate:didCloseAllSelector:contextInfo:",
7924 "closeButton",
7925 "closeFile",
7926 "closePath",
7927 "closeResourceFile:",
7928 "closeSpellDocumentWithTag:",
7929 "closeURL",
7930 "closeWidgetInView:withButtonID:action:",
7931 "closeWindowSoon",
7932 "closedHandCursor",
7933 "closestTickMarkValueToValue:",
7934 "coalesceAffectedRange:replacementRange:selectedRange:text:",
7935 "coalesceInTextView:affectedRange:replacementRange:",
7936 "coalesceTextDrawing",
7937 "cocoaSubVersion",
7938 "cocoaVersion",
7939 "code",
7940 "coerceArray:toColor:",
7941 "coerceColor:toArray:",
7942 "coerceColor:toData:",
7943 "coerceColor:toString:",
7944 "coerceData:toColor:",
7945 "coerceData:toTextStorage:",
7946 "coerceString:toColor:",
7947 "coerceString:toTextStorage:",
7948 "coerceTextStorage:toData:",
7949 "coerceTextStorage:toString:",
7950 "coerceToDescriptorType:",
7951 "coerceValue:forKey:",
7952 "coerceValue:toClass:",
7953 "collapseItem:",
7954 "collapseItem:collapseChildren:",
7955 "collapsed",
7956 "collatorElementWithName:",
7957 "collatorWithName:",
7958 "collectResources",
7959 "color",
7960 "colorAtIndex:filtered:",
7961 "colorFromPasteboard:",
7962 "colorFromPoint:",
7963 "colorList",
7964 "colorListChanged:",
7965 "colorListNamed:",
7966 "colorMatrixBiasKernel",
7967 "colorNameComponent",
7968 "colorPanel",
7969 "colorPanelColorChanged:",
7970 "colorPanelColorDidChange:",
7971 "colorPanelDidSelectColorPicker:",
7972 "colorProfile",
7973 "colorSpace",
7974 "colorSpaceForColorSpaceName:",
7975 "colorSpaceModel",
7976 "colorSpaceName",
7977 "colorSwathesChangedInAnotherApplicationNotification:",
7978 "colorSyncData",
7979 "colorSyncProfile",
7980 "colorTable",
7981 "colorUsingColorSpace:",
7982 "colorUsingColorSpaceName:",
7983 "colorUsingColorSpaceName:device:",
7984 "colorWithAlphaComponent:",
7985 "colorWithCalibratedHue:saturation:brightness:alpha:",
7986 "colorWithCalibratedRed:green:blue:alpha:",
7987 "colorWithCalibratedWhite:alpha:",
7988 "colorWithCatalogName:colorName:",
7989 "colorWithColorSpace:components:count:",
7990 "colorWithDeviceCyan:magenta:yellow:black:alpha:",
7991 "colorWithDeviceHue:saturation:brightness:alpha:",
7992 "colorWithDeviceRed:green:blue:alpha:",
7993 "colorWithDeviceWhite:alpha:",
7994 "colorWithKey:",
7995 "colorWithPatternImage:",
7996 "colorWithRed:green:blue:",
7997 "colorWithRed:green:blue:alpha:",
7998 "colorWithString:",
7999 "colorizeByMappingGray:toColor:blackMapping:whiteMapping:",
8000 "column",
8001 "columnAtPoint:",
8002 "columnAutoresizingStyle",
8003 "columnContentWidthForColumnWidth:",
8004 "columnDefinitions",
8005 "columnName",
8006 "columnOfMatrix:",
8007 "columnResizeButtonImage",
8008 "columnResizeButtonRect",
8009 "columnResizingType",
8010 "columnSpan",
8011 "columnWidthForColumnContentWidth:",
8012 "columnWithIdentifier:",
8013 "columnsAutosaveName",
8014 "columnsInRect:",
8015 "columnsToFetch",
8016 "comboBox:completedString:",
8017 "comboBox:indexOfItemWithStringValue:",
8018 "comboBox:objectValueForItemAtIndex:",
8019 "comboBoxCell:completedString:",
8020 "comboBoxCell:indexOfItemWithStringValue:",
8021 "comboBoxCell:objectValueForItemAtIndex:",
8022 "comboBoxTextDidEndEditing:",
8023 "command",
8024 "commandClassName",
8025 "commandDescription",
8026 "commandDescriptionWithAppleEventClass:andAppleEventCode:",
8027 "commandDescriptions",
8028 "commandDescriptionsByName",
8029 "commandDescriptionsInSuite:",
8030 "commandDisplay",
8031 "commandName",
8032 "commandWithEditCommand:",
8033 "commands",
8034 "comment",
8035 "commentURL",
8036 "commitChanges:",
8037 "commitEditing",
8038 "commitEditingWithDelegate:didCommitSelector:contextInfo:",
8039 "commitTransaction",
8040 "committedSnapshotForObject:",
8041 "commonAncestorContainer",
8042 "compare:",
8043 "compare:options:",
8044 "compare:options:range:",
8045 "compare:options:range:locale:",
8046 "compareBoundaryPoints::",
8047 "compareGeometry:",
8048 "compareGeometryInWindowCoordinates:",
8049 "compareObject:toObject:",
8050 "compareObjectValue:toObjectValue:",
8051 "compareSelector",
8052 "comparisonPredicateModifier",
8053 "compileAndReturnError:",
8054 "complete:",
8055 "completedSpoolToFile",
8056 "completedString:",
8057 "completes",
8058 "completionDelay",
8059 "completionsForPartialWordRange:inString:language:inSpellDocumentWithTag:",
8060 "completionsForPartialWordRange:indexOfSelectedItem:",
8061 "components",
8062 "componentsJoinedByString:",
8063 "componentsSeparatedByString:",
8064 "compositeToPoint:fromRect:operation:",
8065 "compositeToPoint:fromRect:operation:fraction:",
8066 "compositeToPoint:operation:",
8067 "compositeToPoint:operation:fraction:",
8068 "compoundPredicateType",
8069 "computeButton",
8070 "computeFigureRectangle:",
8071 "computeHighlight",
8072 "computeInlay",
8073 "computeInsideShadow",
8074 "computeInterpolatedResolution:data:",
8075 "computeLinearA:andB:fromX0:y0:x1:y1:",
8076 "computeOutline",
8077 "computeOutsideShadow",
8078 "computePageRectsWithPrintWidthScaleFactor:printHeight:",
8079 "computeRectOfRow:cacheHint:",
8080 "computeRowAtPoint:cacheHint:",
8081 "computeTableHeight",
8082 "concat",
8083 "concat:",
8084 "concludeDragForDraggingInfo:",
8085 "concludeDragForDraggingInfo:actionMask:",
8086 "concludeDragOperation:",
8087 "conditionalBehaviorOffByDefault:",
8088 "conditionallySetsEditable",
8089 "conditionallySetsEnabled",
8090 "conditionallySetsHidden",
8091 "configurationDictionary",
8092 "configurationName",
8093 "configurations",
8094 "configureForActiveState",
8095 "configureForAllowsExpandingMultipleDirectories:",
8096 "configureForAllowsMultipleSelection:",
8097 "configureForCalculatesAllSizes:",
8098 "configureForCanChooseDirectories:",
8099 "configureForCanChooseFiles:",
8100 "configureForCanClickDisabledFiles:",
8101 "configureForDisplayMode:andSizeMode:",
8102 "configureForDisplayedFileProperties:",
8103 "configureForInactiveState",
8104 "configureForLayoutInDisplayMode:andSizeMode:inToolbarView:",
8105 "configureForRolloverTrackingIfNecessary",
8106 "configureForRolloverTrackingIfNecessaryForClipViewFrameChange",
8107 "configureForShowsPreviews:",
8108 "configureForSortedByFileProperty:ascending:caseSensitive:",
8109 "configureForTreatsDirectoryAliasesAsDirectories:",
8110 "configureForTreatsFilePackagesAsDirectories:",
8111 "configurePersistentStoreCoordinatorForURL:ofType:error:",
8112 "confirmCloseSheetIsDone:returnCode:contextInfo:",
8113 "conformsTo:",
8114 "conformsToProtocol:",
8115 "connect",
8116 "connectedToInternet:",
8117 "connection",
8118 "connection:didCancelAuthenticationChallenge:",
8119 "connection:didFailWithError:",
8120 "connection:didReceiveAuthenticationChallenge:",
8121 "connection:didReceiveData:",
8122 "connection:didReceiveData:lengthReceived:",
8123 "connection:didReceiveResponse:",
8124 "connection:handleRequest:",
8125 "connection:shouldMakeNewConnection:",
8126 "connection:willCacheResponse:",
8127 "connection:willSendRequest:redirectResponse:",
8128 "connectionDidFinishLoading:",
8129 "connectionForProxy",
8130 "connectionWasBroken:",
8131 "connectionWasEstablished:",
8132 "connectionWithReceivePort:sendPort:",
8133 "connectionWithRegisteredName:host:",
8134 "connectionWithRegisteredName:host:usingNameServer:",
8135 "connectionsForKey:",
8136 "constantValue",
8137 "constrainFrameRect:toScreen:",
8138 "constrainResizeEdge:withDelta:elapsedTime:",
8139 "constrainScrollPoint:",
8140 "constraintDefinitions",
8141 "containerClassDescription",
8142 "containerComponent",
8143 "containerIsObjectBeingTested",
8144 "containerIsRangeContainerObject",
8145 "containerNode",
8146 "containerNodeWithChildren:",
8147 "containerSize",
8148 "containerSpecifier",
8149 "containsAttachments",
8150 "containsIndex:",
8151 "containsIndexesInRange:",
8152 "containsItemForURLLatin1:length:",
8153 "containsItemForURLString:",
8154 "containsItemForURLUnicode:length:",
8155 "containsObject:",
8156 "containsObjectIdenticalTo:",
8157 "containsPoint:",
8158 "containsPort:forMode:",
8159 "containsRect:",
8160 "containsURL:",
8161 "containsValueForKey:",
8162 "content",
8163 "contentAlpha",
8164 "contentBinder",
8165 "contentCountWithEditedMode:",
8166 "contentDocument",
8167 "contentFill",
8168 "contentFrame",
8169 "contentKind",
8170 "contentMaxSize",
8171 "contentMinSize",
8172 "contentObjectKey",
8173 "contentObjectWithEditedMode:contentIndex:",
8174 "contentRect",
8175 "contentRectForFrameRect:",
8176 "contentRectForFrameRect:styleMask:",
8177 "contentSize",
8178 "contentSizeForFrameSize:hasHorizontalScroller:hasVerticalScroller:borderType:",
8179 "contentValueKey",
8180 "contentValueWithEditedMode:contentIndex:",
8181 "contentView",
8182 "contentWidth",
8183 "contentWidthValueType",
8184 "contentsAtPath:",
8185 "contentsEqualAtPath:andPath:",
8186 "context",
8187 "contextHelpForKey:",
8188 "contextHelpForObject:",
8189 "contextID",
8190 "contextMenuItemsForElement:",
8191 "contextWithBitmap:rowBytes:bounds:format:options:",
8192 "contextWithCGContext:",
8193 "contextWithCGContext:options:",
8194 "contextWithCGLContext:pixelFormat:options:",
8195 "contextWithOptions:",
8196 "continue",
8197 "continueAfterBytesAvailable",
8198 "continueAfterContentPolicy:",
8199 "continueAfterContentPolicy:response:",
8200 "continueAfterEndEncountered",
8201 "continueAfterNavigationPolicy:formState:",
8202 "continueBeginLoadInBackgroundAfterCreatingHTTPRequest",
8203 "continueHeaderReadAfterFailureResponse",
8204 "continueTracking:at:inView:",
8205 "continueTrackingWithEvent:",
8206 "continueWithoutCredentialForAuthenticationChallenge:",
8207 "continuouslyUpdatesValue",
8208 "control",
8209 "control:didFailToFormatString:errorDescription:",
8210 "control:didFailToFormatString:errorDescription:inFrame:",
8211 "control:didFailToValidatePartialString:errorDescription:",
8212 "control:didFailToValidatePartialString:errorDescription:inFrame:",
8213 "control:isValidObject:",
8214 "control:isValidObject:inFrame:",
8215 "control:textShouldBeginEditing:",
8216 "control:textShouldBeginEditing:inFrame:",
8217 "control:textShouldEndEditing:",
8218 "control:textShouldEndEditing:inFrame:",
8219 "control:textView:completions:forPartialWordRange:",
8220 "control:textView:completions:forPartialWordRange:indexOfSelectedItem:",
8221 "control:textView:doCommandBySelector:",
8222 "control:textView:doCommandBySelector:inFrame:",
8223 "control:textView:shouldHandleEvent:",
8224 "control:textView:shouldHandleEvent:inFrame:",
8225 "controlAlternatingRowBackgroundColors",
8226 "controlAlternatingRowColor",
8227 "controlBackgroundColor",
8228 "controlCharacterSet",
8229 "controlColor",
8230 "controlContentFontOfSize:",
8231 "controlDarkShadowColor",
8232 "controlDrawsSelectionHighlights",
8233 "controlFillColor",
8234 "controlHighlightColor",
8235 "controlLightHighlightColor",
8236 "controlMenu:",
8237 "controlPointBounds",
8238 "controlShadowColor",
8239 "controlSize",
8240 "controlTextColor",
8241 "controlTextDidBeginEditing:",
8242 "controlTextDidBeginEditing:inFrame:",
8243 "controlTextDidChange:",
8244 "controlTextDidChange:inFrame:",
8245 "controlTextDidEndEditing:",
8246 "controlTextDidEndEditing:inFrame:",
8247 "controlView",
8248 "controller",
8249 "controller:didChangeToFilterPredicate:",
8250 "controller:didChangeToSelectionIndexPaths:",
8251 "controller:didChangeToSelectionIndexes:",
8252 "controller:didChangeToSortDescriptors:",
8253 "controllerForBinding:",
8254 "controlsInForm:",
8255 "conversationIdentifier",
8256 "conversationRequest",
8257 "convertAttributes:",
8258 "convertBaseToScreen:",
8259 "convertCString:toUnsignedInt64:withBase:",
8260 "convertFont:",
8261 "convertFont:toFace:",
8262 "convertFont:toFamily:",
8263 "convertFont:toHaveTrait:",
8264 "convertFont:toNotHaveTrait:",
8265 "convertFont:toSize:",
8266 "convertPoint:fromView:",
8267 "convertPoint:toView:",
8268 "convertRect:fromView:",
8269 "convertRect:toView:",
8270 "convertScreenToBase:",
8271 "convertSize:fromView:",
8272 "convertSize:toView:",
8273 "convertStringToUChar:",
8274 "convertToDictionary",
8275 "convertToRGBA:",
8276 "convertType:data:to:inPasteboard:usingFilter:",
8277 "convertWeight:ofFont:",
8278 "convolveROI:forRect:",
8279 "cookieAcceptPolicy",
8280 "cookieWithProperties:",
8281 "cookieWithV0Spec:forURL:locationHeader:",
8282 "cookies",
8283 "cookiesEnabled",
8284 "cookiesForURL:",
8285 "cookiesMatchingDomain:path:secure:",
8286 "cookiesWithResponseHeaderFields:forURL:",
8287 "copiesOnScroll",
8288 "copy",
8289 "copy:",
8290 "copyBindingsFromObject:toObject:",
8291 "copyCachedInstance",
8292 "copyDOMNode:copier:",
8293 "copyDOMTree:",
8294 "copyDropDirectory",
8295 "copyFont:",
8296 "copyFromZone:",
8297 "copyIcon",
8298 "copyImageToClipboard:",
8299 "copyLinkToClipboard:",
8300 "copyOfCalendarDate",
8301 "copyPath:toPath:handler:",
8302 "copyPreviewIcon",
8303 "copyRenderNode:copier:",
8304 "copyRenderTree:",
8305 "copyRuler:",
8306 "copySerializationInto:",
8307 "copyToObject:",
8308 "copyWithZone:",
8309 "copyright",
8310 "cornerView",
8311 "correlation",
8312 "correlationTableName",
8313 "count",
8314 "countFiltered:",
8315 "countForIndexPath:",
8316 "countForNode:",
8317 "countForObject:",
8318 "countKeyPath",
8319 "countOfCachedChildrenForNode:",
8320 "coveredCharacterCache",
8321 "coveredCharacterCacheData",
8322 "coveredCharacterSet",
8323 "crayonAtIndex:",
8324 "crayonClosestToIndex:",
8325 "crayonToLeft",
8326 "crayonToLeftOfCrayon:",
8327 "crayonToRight",
8328 "crayonToRightOfCrayon:",
8329 "crayons",
8330 "createAdapterOperationsForDatabaseOperation:",
8331 "createAndCacheRowHeightSumsIfNecessary",
8332 "createCGImage:",
8333 "createCGImage:format:",
8334 "createCGImage:fromRect:format:",
8335 "createCMYKColorSpace",
8336 "createCSSStyleDeclaration",
8337 "createCTTypesetter",
8338 "createChildFrameNamed:withURL:renderPart:allowsScrolling:marginWidth:marginHeight:",
8339 "createClassDescription",
8340 "createCommandInstance",
8341 "createCommandInstanceWithZone:",
8342 "createConnection",
8343 "createContext",
8344 "createConversationForConnection:",
8345 "createCopy:",
8346 "createDictHashTable:",
8347 "createDirectoryAtPath:attributes:",
8348 "createDocumentFragment",
8349 "createElement:",
8350 "createElementContent:",
8351 "createElementContentFromString:",
8352 "createFTPReadStream",
8353 "createFileAtPath:contents:attributes:",
8354 "createGrayColorSpace",
8355 "createKHTMLViewWithNSView:marginWidth:marginHeight:",
8356 "createKeyValueBindingForKey:typeMask:",
8357 "createMDQueryNodeRefIfNecessary",
8358 "createMetadata",
8359 "createNamedNodeFromNode:reader:",
8360 "createPredicateForFetchFromPredicate:",
8361 "createRGBColorSpace",
8362 "createRandomKey:",
8363 "createRange",
8364 "createRealObject",
8365 "createSchema",
8366 "createSharedAdapter",
8367 "createSharedBridge",
8368 "createSharedFactory",
8369 "createSharedGenerator",
8370 "createStream:",
8371 "createSymbolicLinkAtPath:pathContent:",
8372 "createTablesForEntities:",
8373 "createUniqueKey:",
8374 "createWindowWithURL:frameName:",
8375 "createsSortDescriptor",
8376 "creationDate",
8377 "credentialWithKeychainItem:",
8378 "credentialWithUser:password:persistence:",
8379 "credentialsForProtectionSpace:",
8380 "credits",
8381 "criticalValue",
8382 "crosshairCursor",
8383 "cssText",
8384 "cssValueType",
8385 "ctFontRef",
8386 "cubeImage",
8387 "current",
8388 "currentAppleEvent",
8389 "currentBrowsingNodePath",
8390 "currentButtonCell",
8391 "currentButtonClicked:",
8392 "currentButtonState",
8393 "currentClipRect",
8394 "currentConstructionContext",
8395 "currentContext",
8396 "currentContextDrawingToScreen",
8397 "currentCursor",
8398 "currentDirectory",
8399 "currentDirectoryNode",
8400 "currentDirectoryPath",
8401 "currentDocument",
8402 "currentEditor",
8403 "currentEvent",
8404 "currentForm",
8405 "currentFrame",
8406 "currentFrameDuration",
8407 "currentHandler",
8408 "currentHost",
8409 "currentInputContext",
8410 "currentInputManager",
8411 "currentItem",
8412 "currentLocalSearchScopeNode",
8413 "currentLocale",
8414 "currentMode",
8415 "currentOperation",
8416 "currentPage",
8417 "currentParagraphStyle",
8418 "currentPluginView",
8419 "currentPoint",
8420 "currentProgress",
8421 "currentReplyAppleEvent",
8422 "currentResolvedDirectoryNode",
8423 "currentRunLoop",
8424 "currentSuiteAppleEventCode",
8425 "currentSuiteTerminology",
8426 "currentTaskDictionary",
8427 "currentTextContainer",
8428 "currentThread",
8429 "currentTypeSelectDirectoryNode",
8430 "currentValue",
8431 "currentVoiceIdentifier",
8432 "currentWindow",
8433 "cursiveFontFamily",
8434 "curveToPoint:controlPoint1:controlPoint2:",
8435 "customAttributes",
8436 "customTextEncodingName",
8437 "customizationPaletteIsRunning",
8438 "cut:",
8439 "cyanColor",
8440 "cyanComponent",
8441 "cycleToNextInputKeyboardLayout:",
8442 "cycleToNextInputLanguage:",
8443 "cycleToNextInputScript:",
8444 "cycleToNextInputServerInLanguage:",
8445 "darkGrayColor",
8446 "dashboardRegions",
8447 "dashboardRegionsChanged:",
8448 "data",
8449 "data1",
8450 "data2",
8451 "dataCell",
8452 "dataCellForRow:",
8453 "dataForKey:",
8454 "dataForObjectID:",
8455 "dataForObjectID:withContext:",
8456 "dataForPPI:",
8457 "dataForResolutionData:",
8458 "dataForType:",
8459 "dataForType:fromPasteboard:",
8460 "dataFromPropertyList:format:errorDescription:",
8461 "dataFromRange:documentAttributes:error:",
8462 "dataOfType:error:",
8463 "dataRepresentation",
8464 "dataRepresentationOfType:",
8465 "dataSource",
8466 "dataSourceUpdated:",
8467 "dataStampForTriplet:littleEndian:",
8468 "dataUsingEncoding:",
8469 "dataUsingEncoding:allowLossyConversion:",
8470 "dataWithBytes:length:",
8471 "dataWithBytesNoCopy:length:",
8472 "dataWithBytesNoCopy:length:freeWhenDone:",
8473 "dataWithCapacity:",
8474 "dataWithContentsOfFile:",
8475 "dataWithContentsOfFile:options:error:",
8476 "dataWithContentsOfMappedFile:",
8477 "dataWithContentsOfURL:",
8478 "dataWithContentsOfURL:options:error:",
8479 "dataWithData:",
8480 "dataWithEPSInsideRect:",
8481 "dataWithLength:",
8482 "dataWithPDFInsideRect:",
8483 "database",
8484 "databaseOperationForGlobalID:",
8485 "databaseOperationForObject:",
8486 "databaseOperator",
8487 "databaseUUID",
8488 "databaseVersion",
8489 "date",
8490 "dateByAddingYears:months:days:hours:minutes:seconds:",
8491 "dateFormat",
8492 "datePickerCell:validateProposedDateValue:timeInterval:",
8493 "datePickerElements",
8494 "datePickerMode",
8495 "datePickerStyle",
8496 "dateValue",
8497 "dateWithNaturalLanguageString:",
8498 "dateWithNaturalLanguageString:date:locale:",
8499 "dateWithNaturalLanguageString:locale:",
8500 "dateWithString:calendarFormat:locale:",
8501 "dateWithTimeIntervalSince1970:",
8502 "dateWithTimeIntervalSinceNow:",
8503 "dateWithTimeIntervalSinceReferenceDate:",
8504 "dateWithYear:month:day:hour:minute:second:timeZone:",
8505 "dayOfMonth",
8506 "dayOfWeek",
8507 "dayOfYear",
8508 "dbSnapshot",
8509 "deactivate",
8510 "dealloc",
8511 "deallocAllExpandedNodes",
8512 "deallocateCFNetworkResources",
8513 "deallocatePayloadForObjectID:",
8514 "debugDefault",
8515 "debugDescription",
8516 "decObservationCount",
8517 "decimalDigitCharacterSet",
8518 "decimalNumberByAdding:withBehavior:",
8519 "decimalNumberByDividingBy:",
8520 "decimalNumberByDividingBy:withBehavior:",
8521 "decimalNumberByMultiplyingBy:withBehavior:",
8522 "decimalNumberByMultiplyingByPowerOf10:withBehavior:",
8523 "decimalNumberByRaisingToPower:withBehavior:",
8524 "decimalNumberByRoundingAccordingToBehavior:",
8525 "decimalNumberBySubtracting:withBehavior:",
8526 "decimalNumberHandlerWithRoundingMode:scale:raiseOnExactness:raiseOnOverflow:raiseOnUnderflow:raiseOnDivideByZero:",
8527 "decimalNumberWithDecimal:",
8528 "decimalNumberWithString:",
8529 "decimalNumberWithString:locale:",
8530 "decimalSeparator",
8531 "decimalTabMarkerWithRulerView:location:",
8532 "decimalValue",
8533 "declareTypes:owner:",
8534 "decodeAllIntoBuffer:size:useZeroBytesForCRC:",
8535 "decodeArrayOfObjCType:count:at:",
8536 "decodeBoolForKey:",
8537 "decodeBytesForKey:returnedLength:",
8538 "decodeBytesWithReturnedLength:",
8539 "decodeClassName:asClassName:",
8540 "decodeData:",
8541 "decodeDataObject",
8542 "decodeDoubleForKey:",
8543 "decodeDownloadData:dataForkData:resourceForkData:",
8544 "decodeDownloadHeader",
8545 "decodeDownloadHeader:headerLength:modificationTime:filename:",
8546 "decodeFloatForKey:",
8547 "decodeForkWithData:count:CRCCheckFlag:",
8548 "decodeInt32ForKey:",
8549 "decodeInt64ForKey:",
8550 "decodeIntForKey:",
8551 "decodeIntoBuffer:size:useZeroBytesForCRC:",
8552 "decodeNXColor",
8553 "decodeObject",
8554 "decodeObjectForKey:",
8555 "decodePoint",
8556 "decodePointForKey:",
8557 "decodePortObject",
8558 "decodePropertyList",
8559 "decodeRect",
8560 "decodeRectForKey:",
8561 "decodeReleasedProxies:",
8562 "decodeRetainedObject",
8563 "decodeReturnValueWithCoder:",
8564 "decodeSize",
8565 "decodeSizeForKey:",
8566 "decodeValueOfObjCType:at:",
8567 "decodeValuesOfObjCTypes:",
8568 "decomposableCharacterSet",
8569 "decomposedStringWithCanonicalMapping",
8570 "decomposedStringWithCompatibilityMapping",
8571 "decreaseUseCount",
8572 "decrementButtonWithParent:",
8573 "decrementRefCount",
8574 "decrementRefCountForObjectID:",
8575 "decrementSnapshotCountForGlobalID:",
8576 "decryptComponents:",
8577 "decryptWithDelegate:",
8578 "deepNodeCopy:",
8579 "deepPropertiesCopy:",
8580 "deepSubnodeCopy:",
8581 "deepestScreen",
8582 "defaultAttachmentScaling",
8583 "defaultBaselineOffsetForFont:",
8584 "defaultBehavior",
8585 "defaultButtonCell",
8586 "defaultCStringEncoding",
8587 "defaultCenter",
8588 "defaultClassPath",
8589 "defaultCollator",
8590 "defaultCompletionDelay",
8591 "defaultCredentialForProtectionSpace:",
8592 "defaultDateFormatter",
8593 "defaultDecimalNumberHandler",
8594 "defaultDepthLimit",
8595 "defaultFixedFontSize",
8596 "defaultFlatness",
8597 "defaultFocusRingType",
8598 "defaultFontSize",
8599 "defaultFormatterBehavior",
8600 "defaultHandler",
8601 "defaultIconSize",
8602 "defaultIconWithSize:",
8603 "defaultLabelFontAttribute",
8604 "defaultLanguage",
8605 "defaultLanguageCode",
8606 "defaultLanguageContext",
8607 "defaultLineCapStyle",
8608 "defaultLineHeightForFont",
8609 "defaultLineHeightForFont:",
8610 "defaultLineJoinStyle",
8611 "defaultLineWidth",
8612 "defaultManager",
8613 "defaultMappingGenerator",
8614 "defaultMenu",
8615 "defaultMiterLimit",
8616 "defaultNamespaceForPrefix:",
8617 "defaultNamespaceForURI:",
8618 "defaultParagraphStyle",
8619 "defaultPixelFormat",
8620 "defaultPlaceholderForBinding:onObjectClass:",
8621 "defaultPlaceholderForMarker:withBinding:",
8622 "defaultPlaceholderLookupClassForBinding:object:",
8623 "defaultPreferencesClass",
8624 "defaultPrinter",
8625 "defaultQueue",
8626 "defaultShadowColor",
8627 "defaultSortDescriptorPrototypeForTableColumn:",
8628 "defaultStringDrawingTypesetterBehavior",
8629 "defaultSubcontainerAttributeKey",
8630 "defaultTabInterval",
8631 "defaultTextColor",
8632 "defaultTextColorWhenObjectValueIsUsed:",
8633 "defaultTextEncodingName",
8634 "defaultTimeZone",
8635 "defaultTokenizingCharacterSet",
8636 "defaultType",
8637 "defaultTypesetterBehavior",
8638 "defaultValue",
8639 "defaultValueFontAttribute",
8640 "defaultVoice",
8641 "defaultWindingRule",
8642 "defaultWritingDirectionForLanguage:",
8643 "defaults",
8644 "defaultsChanged:",
8645 "deferSync",
8646 "defersCallbacks",
8647 "defersLoading",
8648 "definition",
8649 "delayedProcessGetInfoButtonClick:",
8650 "delayedProcessLogonButtonClick:",
8651 "delegate",
8652 "delete:",
8653 "deleteBackward:",
8654 "deleteCharactersInRange:",
8655 "deleteCookies:",
8656 "deleteCorrelation:",
8657 "deleteGlyphsInRange:",
8658 "deleteImageTexture:name:userInfo:",
8659 "deleteKeyPressed",
8660 "deleteLastCharacter",
8661 "deleteObject:",
8662 "deleteObjectsInRange:",
8663 "deleteRow:",
8664 "deleteRows:atIndex:",
8665 "deleteRule",
8666 "deleteSelectionWithSmartDelete:",
8667 "deletedObjects",
8668 "deletesObjectsOnRemove",
8669 "deliverResource",
8670 "deliverResourceAfterDelay",
8671 "deliverResult",
8672 "deltaX",
8673 "deltaY",
8674 "deltaZ",
8675 "deminiaturize:",
8676 "depth",
8677 "depthLimit",
8678 "descender",
8679 "descent",
8680 "description",
8681 "descriptionForClassMethod:",
8682 "descriptionForInstanceMethod:",
8683 "descriptionForMIMEType:",
8684 "descriptionForMethod:",
8685 "descriptionForOptionalSubelementName:",
8686 "descriptionWithCalendarFormat:",
8687 "descriptionWithCalendarFormat:locale:",
8688 "descriptionWithCalendarFormat:timeZone:locale:",
8689 "descriptionWithLocale:",
8690 "descriptionWithLocale:indent:",
8691 "descriptorAtIndex:",
8692 "descriptorByTranslatingObject:ofType:inSuite:",
8693 "descriptorForKeyword:",
8694 "descriptorType",
8695 "descriptorWithDescriptorType:bytes:length:",
8696 "descriptorWithDescriptorType:data:",
8697 "descriptorWithEnumCode:",
8698 "descriptorWithInt32:",
8699 "descriptorWithString:",
8700 "descriptorWithTypeCode:",
8701 "deselectAll",
8702 "deselectAll:",
8703 "deselectAllCells",
8704 "deselectColumn:",
8705 "deselectItemAtIndex:",
8706 "deselectRow:",
8707 "deselectSelectedCell",
8708 "deselectText",
8709 "deserializeAlignedBytesLengthAtCursor:",
8710 "deserializeData:",
8711 "deserializeIntAtCursor:",
8712 "deserializeIntAtIndex:",
8713 "deserializeInts:count:atCursor:",
8714 "deserializeList:",
8715 "deserializeListItemIn:at:length:",
8716 "deserializeNewData",
8717 "deserializeNewKeyString",
8718 "deserializeNewList",
8719 "deserializeNewObject",
8720 "deserializeNewPList",
8721 "deserializeNewString",
8722 "deserializeObjectAt:ofObjCType:fromData:atCursor:",
8723 "deserializePList:",
8724 "deserializePListKeyIn:",
8725 "deserializePListValueIn:key:length:",
8726 "deserializePropertyListFromData:atCursor:mutableContainers:",
8727 "deserializePropertyListFromData:mutableContainers:",
8728 "deserializeString:",
8729 "deserializer",
8730 "destKey",
8731 "destNode",
8732 "destination",
8733 "destinationAttributeName",
8734 "destinationEntity",
8735 "destinationEntityExternalName",
8736 "destinationsForRelationship:",
8737 "destroyAllPlugins",
8738 "destroyContext",
8739 "destroyStream:reason:",
8740 "destroyStreamWithError:",
8741 "detach",
8742 "detachColorList:",
8743 "detachInstanceInfo:",
8744 "detachNewThreadSelector:toTarget:withObject:",
8745 "detachQButton",
8746 "detachQComboBox",
8747 "detachQLineEdit",
8748 "detachQScrollBar",
8749 "detachQSlider",
8750 "detachQTextEdit",
8751 "detachSubmenu",
8752 "detailedDescriptionForClass:",
8753 "determineContentEncoding",
8754 "determineErrorAndFail",
8755 "determineHTTPEncodingFromString:",
8756 "determineTransferEncoding",
8757 "deviceCMYKColorSpace",
8758 "deviceDescription",
8759 "deviceGrayColorSpace",
8760 "deviceID",
8761 "deviceRGBColorSpace",
8762 "dictionary",
8763 "dictionaryForOptionalSubelementName:",
8764 "dictionaryInfo:",
8765 "dictionaryNesting:",
8766 "dictionaryRepresentation",
8767 "dictionaryWithCapacity:",
8768 "dictionaryWithContentsOfFile:",
8769 "dictionaryWithDictionary:",
8770 "dictionaryWithObject:forKey:",
8771 "dictionaryWithObjects:forKeys:",
8772 "dictionaryWithObjects:forKeys:count:",
8773 "dictionaryWithObjectsAndKeys:",
8774 "dictionaryWithValuesForKeys:",
8775 "didAccessValueForKey:",
8776 "didAddCredentials:toRequest:context:",
8777 "didAddSubview:",
8778 "didCancelAuthenticationChallenge:",
8779 "didChange",
8780 "didChange:valuesAtIndexes:forKey:",
8781 "didChangeExpandedNodes",
8782 "didChangeText",
8783 "didChangeValueForKey:",
8784 "didChangeValueForKey:withSetMutation:usingObjects:",
8785 "didChangeValuesForArrangedKeys:objectKeys:indexKeys:",
8786 "didEndAlert:returnCode:contextInfo:",
8787 "didEndSheet:returnCode:contextInfo:",
8788 "didFailWithError:",
8789 "didFinishColumnScrollWithHelper:",
8790 "didFinishLoading",
8791 "didFirstLayout",
8792 "didLoadBytes:loadComplete:",
8793 "didLoadData:",
8794 "didNotOpenURL:pageCache:",
8795 "didPostNotificationForNodeEventKind:notification:",
8796 "didReceiveAuthenticationChallenge:",
8797 "didReceiveData:lengthReceived:",
8798 "didReceiveResponse:",
8799 "didSave",
8800 "didSendActionNotification:",
8801 "didSetName:",
8802 "didStart",
8803 "didTurnIntoFault",
8804 "differenceParameter:new:old:into:",
8805 "directDataAvailable:",
8806 "directDataComplete",
8807 "directParameter",
8808 "directory",
8809 "directoryCanBeCreatedAtPath:",
8810 "directoryContentsAtPath:",
8811 "directoryContentsAtPath:matchingExtension:options:keepExtension:",
8812 "disableCursorRects",
8813 "disableDisplayPositing",
8814 "disableFlush",
8815 "disableFlushWindow",
8816 "disableHeartBeating",
8817 "disableKeyEquivalentForDefaultButtonCell",
8818 "disableMakeHistory",
8819 "disableUpdates",
8820 "disabledControlTextColor",
8821 "disabledWhenInactive",
8822 "disappearingItemCursor",
8823 "discardCursorRects",
8824 "discardEditing",
8825 "discardEventsMatchingMask:beforeEvent:",
8826 "disconnect",
8827 "dismissPopUp",
8828 "dismissPopUp:",
8829 "dispatch",
8830 "dispatchEvent:",
8831 "dispatchInvocation:",
8832 "dispatchRawAppleEvent:withRawReply:handlerRefCon:",
8833 "displaceROI:forRect:userInfo:",
8834 "display",
8835 "displayCompletions:indexOfSelectedItem:forPartialWordRange:originalString:atPoint:forTextView:",
8836 "displayIfNeeded",
8837 "displayIfNeededIgnoringOpacity",
8838 "displayIfNeededInRect:",
8839 "displayIfNeededInRectIgnoringOpacity:",
8840 "displayIgnoringOpacity",
8841 "displayMode",
8842 "displayName",
8843 "displayNameAtPath:",
8844 "displayNameForType:",
8845 "displayPattern",
8846 "displayRect:",
8847 "displayRectIgnoringOpacity:",
8848 "displayStateForNode:",
8849 "displayString",
8850 "displayStringForLineHeightMultiple:min:max:lineSpacing:paragraphSpacingBefore:after:",
8851 "displayStringsForAttributes:includeBoldItalic:",
8852 "displayStringsForParagraphStyle:",
8853 "displayToolTip:",
8854 "displayValueForObjectValue:",
8855 "displayableString",
8856 "displayedFileProperties",
8857 "displayedStringsArray",
8858 "displayedTitle",
8859 "displaysEnabledAtRow:",
8860 "displaysTokenWhileEditing",
8861 "displaysTooltips",
8862 "displaysWhenScreenProfileChanges",
8863 "disposeGlyphStack",
8864 "dissolveToPoint:fraction:",
8865 "dissolveToPoint:fromRect:fraction:",
8866 "distantFuture",
8867 "distantPast",
8868 "divide:by:",
8869 "dividerThickness",
8870 "doCalcDrawInfo:",
8871 "doClick:",
8872 "doCommandBySelector:",
8873 "doCommandBySelector:client:",
8874 "doCompletion",
8875 "doDoubleClick:",
8876 "doFileCompletion:isAutoComplete:reverseCycle:",
8877 "doProgressiveLoad",
8878 "doProgressiveLoadHeader",
8879 "doProgressiveLoadImage",
8880 "doQueuedWork",
8881 "doRegexForString:pattern:flags:",
8882 "docFormatData",
8883 "dockTitleIsGuess",
8884 "document",
8885 "documentAttribute:",
8886 "documentAttributes",
8887 "documentClassForType:",
8888 "documentClassNames",
8889 "documentContentKind",
8890 "documentCursor",
8891 "documentEdited",
8892 "documentElement",
8893 "documentForFileName:",
8894 "documentForURL:",
8895 "documentForWindow:",
8896 "documentFragmentForDocument:",
8897 "documentFragmentWithMarkupString:baseURLString:",
8898 "documentFragmentWithText:",
8899 "documentRect",
8900 "documentRef",
8901 "documentSource",
8902 "documentState",
8903 "documentView",
8904 "documentViewAtWindowPoint:",
8905 "documentVisibleRect",
8906 "documents",
8907 "doesContain:",
8908 "doesNotRecognize:",
8909 "doesNotRecognizeSelector:",
8910 "domain",
8911 "done",
8912 "doneLoading",
8913 "doneProcessingData",
8914 "doneSendingPopUpAction:",
8915 "doneTrackingMenu:",
8916 "doubleAction",
8917 "doubleClickAtIndex:",
8918 "doubleClickAtIndex:inRange:",
8919 "doubleClickHandler",
8920 "doubleClickInString:atIndex:useBook:",
8921 "doubleValue",
8922 "download",
8923 "download:decideDestinationWithSuggestedFilename:",
8924 "download:didBeginChildDownload:",
8925 "download:didCancelAuthenticationChallenge:",
8926 "download:didCreateDestination:",
8927 "download:didFailWithError:",
8928 "download:didReceiveAuthenticationChallenge:",
8929 "download:didReceiveDataOfLength:",
8930 "download:didReceiveResponse:",
8931 "download:shouldBeginChildDownloadOfSource:delegate:",
8932 "download:shouldDecodeSourceDataOfMIMEType:",
8933 "download:willResumeWithResponse:fromByte:",
8934 "download:willSendRequest:redirectResponse:",
8935 "downloadDelegate",
8936 "downloadDidBegin:",
8937 "downloadDidFinish:",
8938 "downloadImageToDisk:",
8939 "downloadLinkToDisk:",
8940 "downloadURL:element:",
8941 "downloadWindowForAuthenticationSheet:",
8942 "dragCaretDOMRange",
8943 "dragColor:withEvent:fromView:",
8944 "dragExitedWithDraggingInfo:",
8945 "dragImage",
8946 "dragImage:at:offset:event:pasteboard:source:slideBack:",
8947 "dragImage:fromWindow:at:offset:event:pasteboard:source:slideBack:",
8948 "dragImageForAtomAttachmentCell:",
8949 "dragImageForRows:event:dragImageOffset:",
8950 "dragImageForRowsWithIndexes:tableColumns:event:offset:",
8951 "dragImageForSelectionWithEvent:origin:",
8952 "dragOperationForDraggingInfo:",
8953 "dragOperationForDraggingInfo:type:",
8954 "dragRectForFrameRect:",
8955 "dragSelectionWithEvent:offset:slideBack:",
8956 "dragSourceEndedAt:operation:",
8957 "dragSourceMovedTo:",
8958 "draggedColumn",
8959 "draggedDistance",
8960 "draggedImage",
8961 "draggedImage:beganAt:",
8962 "draggedImage:endedAt:deposited:",
8963 "draggedImage:endedAt:operation:",
8964 "draggedImage:movedTo:",
8965 "draggedImageLocation",
8966 "draggingCancelledWithDraggingInfo:",
8967 "draggingDestinationWindow",
8968 "draggingEnded:",
8969 "draggingEntered:",
8970 "draggingExited:",
8971 "draggingKeyBindingManager",
8972 "draggingLocation",
8973 "draggingPasteboard",
8974 "draggingSequenceNumber",
8975 "draggingSource",
8976 "draggingSourceOperationMask",
8977 "draggingSourceOperationMaskForLocal:",
8978 "draggingUpdated:",
8979 "draggingUpdatedWithDraggingInfo:actionMask:",
8980 "drain",
8981 "draw",
8982 "drawArrow:highlight:",
8983 "drawArrow:highlightPart:",
8984 "drawAtPoint:",
8985 "drawAtPoint:fromRect:operation:fraction:",
8986 "drawAtPoint:inContext:",
8987 "drawAtPoint:withAttributes:",
8988 "drawBackgroundForBlock:withFrame:inView:characterRange:layoutManager:",
8989 "drawBackgroundForGlyphRange:atPoint:",
8990 "drawBackgroundInClipRect:",
8991 "drawBackgroundInRect:",
8992 "drawBackgroundInRect:inView:highlight:",
8993 "drawBackgroundWithFrame:inView:characterRange:layoutManager:",
8994 "drawBarInside:flipped:",
8995 "drawBevel:",
8996 "drawBevel:inFrame:topCornerRounded:",
8997 "drawBevel:inFrame:topCornerRounded:bottomCornerRounded:",
8998 "drawBezelWithFrame:inView:",
8999 "drawBorderAndBackgroundWithFrame:inView:",
9000 "drawCell:",
9001 "drawCellAtRow:column:",
9002 "drawColor",
9003 "drawColor:",
9004 "drawCrayonLayer",
9005 "drawDividerInRect:",
9006 "drawFocusRingInView:",
9007 "drawFrame:",
9008 "drawGlyphsForGlyphRange:atPoint:",
9009 "drawGridInClipRect:",
9010 "drawHashMarksAndLabelsInRect:",
9011 "drawHighlightForRun:style:geometry:",
9012 "drawImage:inRect:fromRect:",
9013 "drawImage:withFrame:inView:",
9014 "drawImageAtIndex:inRect:fromRect:adjustedSize:compositeOperation:context:",
9015 "drawImageAtIndex:inRect:fromRect:compositeOperation:context:",
9016 "drawImageInRect:fromRect:",
9017 "drawImageInRect:fromRect:compositeOperator:context:",
9018 "drawImageWithFrame:inView:",
9019 "drawInRect:",
9020 "drawInRect:fromRect:operation:fraction:",
9021 "drawInRect:onView:pinToTop:",
9022 "drawInRect:withAlpha:operation:flipped:",
9023 "drawInRect:withAttributes:",
9024 "drawInView:",
9025 "drawInsertionPointInRect:color:turnedOn:",
9026 "drawInteriorWithFrame:inView:",
9027 "drawKeyEquivalentWithFrame:inView:",
9028 "drawKnob",
9029 "drawKnob:",
9030 "drawKnobSlotInRect:highlight:",
9031 "drawLabel:inRect:",
9032 "drawLineForCharacters:yOffset:withWidth:withColor:",
9033 "drawLineForMisspelling:withWidth:",
9034 "drawMarkersInRect:",
9035 "drawNormalInteriorWithFrame:inView:",
9036 "drawPageBorderWithSize:",
9037 "drawPreviewInteriorWithFrame:inView:",
9038 "drawRect:",
9039 "drawRect:withPainter:",
9040 "drawRepresentation:inRect:",
9041 "drawResizeIndicator:",
9042 "drawRevealoverTextWithFrame:inView:forView:",
9043 "drawRow:clipRect:",
9044 "drawRowIndexes:clipRect:",
9045 "drawRun:style:geometry:",
9046 "drawScroller:",
9047 "drawSegment:inFrame:withView:",
9048 "drawSelectionIndicatorInRect:",
9049 "drawSeparatorInRect:",
9050 "drawSeparatorItemWithFrame:inView:",
9051 "drawSortIndicatorWithFrame:inView:ascending:priority:",
9052 "drawSpellingUnderlineForGlyphRange:spellingState:inGlyphRange:lineFragmentRect:lineFragmentGlyphRange:containerOrigin:",
9053 "drawStateImageWithFrame:inView:",
9054 "drawStrikethroughForGlyphRange:strikethroughType:baselineOffset:lineFragmentRect:lineFragmentGlyphRange:containerOrigin:",
9055 "drawSwatchInRect:",
9056 "drawTextContainer:inRect:onView:",
9057 "drawTextContainer:inRect:onView:pinToTop:",
9058 "drawThemeContentFill:inView:",
9059 "drawTitle:withFrame:inView:",
9060 "drawTitleOfColumn:inRect:",
9061 "drawTitleWithFrame:inView:",
9062 "drawUnderlineForGlyphRange:underlineType:baselineOffset:lineFragmentRect:lineFragmentGlyphRange:containerOrigin:",
9063 "drawViewBackgroundInRect:",
9064 "drawViewInRect:",
9065 "drawWellInside:",
9066 "drawWindowBackgroundRect:",
9067 "drawWindowBackgroundRect:level:",
9068 "drawWindowBackgroundRegion:",
9069 "drawWindowBackgroundRegion:level:",
9070 "drawWithFrame:inView:",
9071 "drawWithFrame:inView:characterIndex:",
9072 "drawWithFrame:inView:characterIndex:layoutManager:",
9073 "drawWithRect:options:",
9074 "drawWithRect:options:attributes:",
9075 "drawer:didChangeToState:",
9076 "drawerDidClose:",
9077 "drawerDidOpen:",
9078 "drawerShouldClose:",
9079 "drawerShouldOpen:",
9080 "drawerWillResizeContents:toSize:",
9081 "drawers",
9082 "drawingAttributes",
9083 "drawingRect",
9084 "drawingRectForBounds:",
9085 "drawingRectForCellFrame:",
9086 "drawingStyle",
9087 "drawnInSelectedRow",
9088 "drawsBackground",
9089 "drawsCellBackground",
9090 "drawsGrid",
9091 "dropFirstComponent:",
9092 "dropLastComponent:",
9093 "dstDraggingDepositedAtPoint:draggingInfo:",
9094 "dstDraggingEnteredAtPoint:draggingInfo:",
9095 "dstDraggingExitedAtPoint:draggingInfo:",
9096 "dstDraggingMovedToPoint:draggingInfo:",
9097 "duration",
9098 "dynamicToolTipRectAtPoint:",
9099 "dynamicToolTipRevealoverInfoAtPoint:trackingRect:",
9100 "dynamicToolTipStringAtPoint:trackingRect:",
9101 "eMapResult:eMap:arcsinTable:",
9102 "echosBullets",
9103 "edge",
9104 "editColumn:row:withEvent:select:",
9105 "editWithFrame:inView:editor:delegate:event:",
9106 "editableBinder",
9107 "editableDOMRangeForPoint:",
9108 "editableState",
9109 "editableStateAtIndex:",
9110 "editableStateAtIndexPath:",
9111 "edited",
9112 "edited:range:changeInLength:",
9113 "editedColumn",
9114 "editedMask",
9115 "editedMode:forEditingOrAction:",
9116 "editedRange",
9117 "editedRow",
9118 "editedToolbar",
9119 "editingBinderForControl:",
9120 "editingColorAdjustableObject:",
9121 "editingContextMenuItemsForElement:",
9122 "editingDelegate",
9123 "editingHasBegun:",
9124 "editingHasEnded:",
9125 "editingStringForObjectValue:",
9126 "editingWasAborted:",
9127 "editor",
9128 "editorDidBeginEditing:",
9129 "editorDidEndEditing:",
9130 "editorWithObject:",
9131 "eject",
9132 "ejectButtonPressedAction:",
9133 "element",
9134 "elementAt:",
9135 "elementAtIndex:",
9136 "elementAtIndex:associatedPoints:",
9137 "elementAtIndex:effectiveRange:",
9138 "elementAtPoint:",
9139 "elementCount",
9140 "elementDoesAutoComplete:",
9141 "elementForView:",
9142 "elementIsPassword:",
9143 "elementName",
9144 "elementTypeDescription",
9145 "elementWithName:inForm:",
9146 "elementWithRole:parent:",
9147 "elementWithRole:subrole:parent:",
9148 "elementsForLocalName:URI:",
9149 "elementsForName:",
9150 "emapROI:forRect:",
9151 "empty",
9152 "emptyAttributeDictionary",
9153 "enable:",
9154 "enableAll:",
9155 "enableCursorRects",
9156 "enableFlushWindow",
9157 "enableFreedObjectCheck:",
9158 "enableKeyEquivalentForDefaultButtonCell",
9159 "enableMakeHistory",
9160 "enableMultipleThreads",
9161 "enableRelease:",
9162 "enableSecureInput:",
9163 "enableSecureString:",
9164 "enableUpdates",
9165 "enabledFileTypes",
9166 "enabledState",
9167 "enabledStateAtIndex:",
9168 "enabledStateAtIndexPath:",
9169 "enabledStateForMenuItem:",
9170 "enclosingClipViewBoundsOrFrameDidChangeNotification:",
9171 "enclosingScrollView",
9172 "encodeArrayOfObjCType:count:at:",
9173 "encodeBool:forKey:",
9174 "encodeBycopyObject:",
9175 "encodeBytes:length:",
9176 "encodeBytes:length:forKey:",
9177 "encodeConditionalObject:",
9178 "encodeConditionalObject:forKey:",
9179 "encodeDataObject:",
9180 "encodeDouble:forKey:",
9181 "encodeFloat:forKey:",
9182 "encodeInt32:forKey:",
9183 "encodeInt64:forKey:",
9184 "encodeInt:forKey:",
9185 "encodeObject:",
9186 "encodeObject:forKey:",
9187 "encodeObject:isBycopy:isByref:",
9188 "encodePoint:",
9189 "encodePoint:forKey:",
9190 "encodePortObject:",
9191 "encodePropertyList:",
9192 "encodeRect:",
9193 "encodeRect:forKey:",
9194 "encodeReturnValueWithCoder:",
9195 "encodeRootObject:",
9196 "encodeSize:",
9197 "encodeSize:forKey:",
9198 "encodeValueOfObjCType:at:",
9199 "encodeValuesOfObjCTypes:",
9200 "encodeWithCoder:",
9201 "encodeWithCoder:colorSpaceCode:",
9202 "encodingScheme",
9203 "encryptComponents:",
9204 "encryptWithDelegate:",
9205 "end",
9206 "endCoalesceTextDrawing",
9207 "endConstruction",
9208 "endContainer",
9209 "endDisplay",
9210 "endDocument",
9211 "endEditing",
9212 "endEditing:",
9213 "endEditingFor:",
9214 "endFetch",
9215 "endHeaderComments",
9216 "endInputStream",
9217 "endLayoutChange",
9218 "endLineWithGlyphRange:",
9219 "endLoadInBackground",
9220 "endModalSession:",
9221 "endOffset",
9222 "endPage",
9223 "endPageSetup",
9224 "endParagraph",
9225 "endPrologue",
9226 "endRevertingChange:moveLeft:",
9227 "endSetup",
9228 "endSheet:",
9229 "endSheet:returnCode:",
9230 "endSpecifier",
9231 "endSubelementIdentifier",
9232 "endSubelementIndex",
9233 "endTrailer",
9234 "endUndoGrouping",
9235 "enoiseROI:forRect:userInfo:",
9236 "enqueueChallenge:forWindow:",
9237 "enqueueNotification:postingStyle:",
9238 "enqueueNotification:postingStyle:coalesceMask:forModes:",
9239 "ensureAttributesAreFixedInRange:",
9240 "ensureSelectionVisible",
9241 "enterExitEventWithType:location:modifierFlags:timestamp:windowNumber:context:eventNumber:trackingNumber:userData:",
9242 "enterProximity",
9243 "entities",
9244 "entitiesByName",
9245 "entitiesForConfiguration:",
9246 "entity",
9247 "entityDeclarationForName:",
9248 "entityDescription",
9249 "entityForEntityDescription:",
9250 "entityForFetchRequest:",
9251 "entityForID:",
9252 "entityForName:inManagedObjectContext:",
9253 "entityForObject:",
9254 "entityID",
9255 "entityName",
9256 "entityNameOrderingArrayForEntities:",
9257 "entityNamed:",
9258 "entryForNode:inCachedChildrenForNode:",
9259 "entryState:",
9260 "entryType",
9261 "enumCodeValue",
9262 "enumerationDescriptionFromName:implDeclaration:presoDeclaration:",
9263 "enumerations",
9264 "enumeratorAtPath:",
9265 "enumeratorDescriptions",
9266 "error",
9267 "error:",
9268 "errorExpectedType",
9269 "errorForReason:",
9270 "errorNumber",
9271 "errorOffendingObjectDescriptor",
9272 "errorStringForFTPStatusCode:fromURL:",
9273 "errorWithDomain:code:userInfo:",
9274 "establishConnection",
9275 "evaluate",
9276 "evaluateFromResolutionArray:valueArray:arrayCount:atResolution:",
9277 "evaluateJavaScriptPluginRequest:",
9278 "evaluatePredicates:withObject:variableBindings:",
9279 "evaluateWithObject:",
9280 "evaluateWithObject:variableBindings:",
9281 "evaluateXQuery:constants:contextItem:error:",
9282 "evaluatedArguments",
9283 "evaluatedReceivers",
9284 "evaluationErrorNumber",
9285 "evaluationErrorSpecifier",
9286 "event",
9287 "eventClass",
9288 "eventID",
9289 "eventMayStartDrag:",
9290 "eventNumber",
9291 "eventQueue",
9292 "exactSizeToCellsSize",
9293 "exceptionAddingEntriesToUserInfo:",
9294 "exceptionDuringOperation:error:leftOperand:rightOperand:",
9295 "exceptionRememberingObject:key:",
9296 "exceptionWithName:reason:userInfo:",
9297 "exclusives",
9298 "executablePath",
9299 "executableType",
9300 "execute",
9301 "executeCommand",
9302 "executeFetchRequest:error:",
9303 "executeFetchRequest:withContext:",
9304 "executeRequest:withContext:",
9305 "executeSaveChangesRequest:withContext:",
9306 "executionContextForView:",
9307 "expandIndexPath:",
9308 "expandItem:",
9309 "expandItem:expandChildren:",
9310 "expandedNodes",
9311 "expandedNodesForObservedNode:",
9312 "expandedRingROI:::",
9313 "expect:",
9314 "expectEndOfInput",
9315 "expectSeparatorEqualTo:",
9316 "expectedContentLength",
9317 "expiresDate",
9318 "expiresTimeForResponse:",
9319 "exposeBinding:",
9320 "exposedBindings",
9321 "expressionForConstantValue:",
9322 "expressionForKeyPath:",
9323 "expressionType",
9324 "expressionValueWithObject:context:",
9325 "extendPowerOffBy:",
9326 "extensionEnumerator",
9327 "extensionsForMIMEType:",
9328 "extent",
9329 "externalDataForObjectID:timestamp:",
9330 "externalDataForSourceObjectID:key:timestamp:",
9331 "externalName",
9332 "externalNameForEntityName:",
9333 "externalNameForPropertyName:",
9334 "externalPrecision",
9335 "externalScale",
9336 "externalType",
9337 "extraArgument2",
9338 "extraLineFragmentRect",
9339 "extraLineFragmentTextContainer",
9340 "extraLineFragmentUsedRect",
9341 "extractHeaderInfo:",
9342 "fadeToolTip:",
9343 "failWithError:",
9344 "failureReason",
9345 "failureResponse",
9346 "fallbackFontWithTraits:size:",
9347 "familyName",
9348 "fantasyFontFamily",
9349 "fastDrawAttributedString:containerSize:padding:inRect:onView:pinToTop:sizeOnly:size:",
9350 "fastDrawString:attributes:containerSize:padding:inRect:onView:pinToTop:sizeOnly:size:",
9351 "fastIndexForKnownKey:",
9352 "fastestEncoding",
9353 "faultHandler",
9354 "faultHandlerClass",
9355 "fauxFilePackageTypes",
9356 "favoriteAttributesForName:",
9357 "favoriteAttributesNames",
9358 "fbeNode",
9359 "fetch:",
9360 "fetchIndex",
9361 "fetchLimit",
9362 "fetchMaxPrimaryKeyForEntity:",
9363 "fetchMetadata",
9364 "fetchObjectsWithSortDescriptors:error:",
9365 "fetchPredicate",
9366 "fetchRequest",
9367 "fetchRequestTemplateForName:",
9368 "fetchedValueForDataValue:attribute:",
9369 "fetchedValueForDateValue:attribute:",
9370 "fetchedValueForNumberValue:attribute:",
9371 "fetchedValueForStringValue:attribute:",
9372 "fidelity",
9373 "fidelityMask",
9374 "fieldDescriptionForAppleEventCode:",
9375 "fieldDescriptions",
9376 "fieldEditableControl",
9377 "fieldEditor:forObject:",
9378 "fieldEditorTextDidChange:",
9379 "file",
9380 "fileAttributes",
9381 "fileAttributesAtPath:traverseLink:",
9382 "fileAttributesToWriteToFile:ofType:saveOperation:",
9383 "fileAttributesToWriteToURL:ofType:forSaveOperation:originalContentsURL:error:",
9384 "fileButton",
9385 "fileButtonWithDelegate:",
9386 "fileDescriptor",
9387 "fileExistsAtPath:",
9388 "fileExistsAtPath:isDirectory:",
9389 "fileExtensionsFromType:",
9390 "fileHFSCreatorCode",
9391 "fileHFSTypeCode",
9392 "fileHandleForReading",
9393 "fileHandleForReadingAtPath:",
9394 "fileHandleForWriting",
9395 "fileHandleWithNullDevice",
9396 "fileHandleWithStandardError",
9397 "fileHandleWithStandardInput",
9398 "fileHandleWithStandardOutput",
9399 "fileListMode",
9400 "fileListOrderedByFileProperty",
9401 "fileManager:shouldProceedAfterError:",
9402 "fileManager:willProcessPath:",
9403 "fileModificationDate",
9404 "fileName",
9405 "fileNameExtensionWasHiddenInLastRunSavePanel",
9406 "fileNameFromRunningSavePanelForSaveOperation:",
9407 "fileNamesFromRunningOpenPanel",
9408 "filePosixPermissions",
9409 "fileProperty",
9410 "fileSpecForName:atDestination:",
9411 "fileSystemAttributesAtPath:",
9412 "fileSystemRepresentation",
9413 "fileSystemRepresentationWithPath:",
9414 "fileType",
9415 "fileTypeFromLastRunSavePanel",
9416 "fileURL",
9417 "fileURLWithPath:",
9418 "fileWrapper",
9419 "fileWrapperForURL:",
9420 "fileWrapperFromRange:documentAttributes:error:",
9421 "fileWrapperOfType:error:",
9422 "fileWrapperRepresentationOfType:",
9423 "fileWrappers",
9424 "filelistDelegate",
9425 "filename",
9426 "filenameChanged:",
9427 "filenameToDrag:",
9428 "filenameWithOriginalFilename:",
9429 "filenames",
9430 "filepath",
9431 "filepathLabel",
9432 "fill",
9433 "fillAttributesCache",
9434 "fillObjCType:count:at:",
9435 "fillRect",
9436 "fillRect:",
9437 "filter",
9438 "filterClassDescription",
9439 "filterEvents:",
9440 "filterKeyDown:",
9441 "filterNamesInCategories:",
9442 "filterPredicate",
9443 "filterUsingPredicate:",
9444 "filterWithName:",
9445 "filterWithName:keysAndValues:",
9446 "filteredArrayUsingPredicate:",
9447 "filteredImage:keysAndValues:",
9448 "filteredIndexForActualIndex:",
9449 "finalWritePrintInfo",
9450 "finalize",
9451 "finalizeForWebScript",
9452 "findBundleResources:callingMethod:directory:languages:name:types:limit:",
9453 "findClass:",
9454 "findCombinationForLetter:accent:",
9455 "findFontLike:forCharacter:inLanguage:",
9456 "findFontLike:forString:withRange:inLanguage:",
9457 "findFontLike:traits:forCharacters:length:inLanguage:checkCoveredCache:",
9458 "findFrameNamed:",
9459 "findInView:forward:",
9460 "findIndex:forDay:",
9461 "findPPDFileName:",
9462 "findPanel:",
9463 "findSidebarNodeForNode:",
9464 "findSoundFor:",
9465 "findString",
9466 "findString:selectedRange:options:",
9467 "findString:selectedRange:options:wrap:",
9468 "findVoiceByIdentifier:returningCreator:returningID:",
9469 "fini",
9470 "finish",
9471 "finishDataLoad",
9472 "finishDecoding",
9473 "finishDownloadDecoding",
9474 "finishEncoding",
9475 "finishEncoding:",
9476 "finishJobAndHandle",
9477 "finishLaunching",
9478 "finishProgressiveLoad:",
9479 "finishProvideNewSubviewSetup",
9480 "finishUnarchiving",
9481 "finishUsingMenuRepresentation",
9482 "finishedLoadingWithData:",
9483 "finishedLoadingWithDataSource:",
9484 "fireDate",
9485 "firstChild",
9486 "firstComponent:",
9487 "firstIndentMarkerWithRulerView:location:",
9488 "firstIndex",
9489 "firstLineHeadIndent",
9490 "firstObjectCommonWithArray:",
9491 "firstPresentableName",
9492 "firstRange",
9493 "firstRectForCharacterRange:",
9494 "firstRectForDOMRange:",
9495 "firstResponder",
9496 "firstTextView",
9497 "firstTextViewForTextStorage:",
9498 "firstUnlaidCharacterIndex",
9499 "firstUnlaidGlyphIndex",
9500 "firstVisibleColumn",
9501 "fixAttachmentAttributeInRange:",
9502 "fixAttributesInRange:",
9503 "fixFontAttributeInRange:",
9504 "fixGlyphInfoAttributeInRange:",
9505 "fixInvalidatedFocusForFocusView",
9506 "fixParagraphStyleAttributeInRange:",
9507 "fixedFontFamily",
9508 "fixesAttributesLazily",
9509 "fixupDirInfo:",
9510 "fk",
9511 "flags",
9512 "flagsChanged:",
9513 "flatness",
9514 "flattenIntoPath:",
9515 "floatCocoaVersion",
9516 "floatForKey:",
9517 "floatParameterValue:forResolution:",
9518 "floatValue",
9519 "floatWidthForRun:style:widths:",
9520 "flush",
9521 "flushAllCachedChildren",
9522 "flushAllCaches",
9523 "flushAllKeyBindings",
9524 "flushBufferedKeyEvents",
9525 "flushCachedChildren",
9526 "flushCachedChildrenForNode:",
9527 "flushCachedData",
9528 "flushCaches",
9529 "flushClassKeyBindings",
9530 "flushDataForTriplet:littleEndian:",
9531 "flushGraphics",
9532 "flushHostCache",
9533 "flushKeyBindings",
9534 "flushRasterCache",
9535 "flushTextForClient:",
9536 "flushWindow",
9537 "focusChanged:",
9538 "focusRingType",
9539 "focusStack",
9540 "focusView",
9541 "focusView:inWindow:",
9542 "focusWindow",
9543 "focusedSwatchRect",
9544 "focusedView",
9545 "folderPath",
9546 "font",
9547 "fontAttributes",
9548 "fontAttributesForSelectionStart",
9549 "fontAttributesInRange:",
9550 "fontDescriptor",
9551 "fontDescriptorByAddingAttributes:",
9552 "fontDescriptorWithFamily:",
9553 "fontDescriptorWithFontAttributes:",
9554 "fontDescriptorWithMatrix:",
9555 "fontDescriptorWithName:matrix:",
9556 "fontDescriptorWithName:size:",
9557 "fontDescriptorWithSize:",
9558 "fontForSelection:",
9559 "fontInstanceForFontDescriptor:size:affineTransform:renderingMode:",
9560 "fontInstanceForRenderingMode:",
9561 "fontInvalidationCapableObjectForObject:",
9562 "fontMenu:",
9563 "fontName",
9564 "fontNameWithFamily:traits:weight:",
9565 "fontPanel:",
9566 "fontPanelDidChooseCollection:",
9567 "fontPanelDidChooseFace:",
9568 "fontPanelDidChooseFamily:",
9569 "fontPanelDidChooseSize:",
9570 "fontSize",
9571 "fontWithDescriptor:size:",
9572 "fontWithDescriptor:textTransform:",
9573 "fontWithFamilies:traits:size:",
9574 "fontWithFamily:traits:size:",
9575 "fontWithFamily:traits:weight:size:",
9576 "fontWithName:matrix:",
9577 "fontWithName:size:",
9578 "forceLayoutAdjustingViewSize:",
9579 "forceLayoutWithMinimumPageWidth:maximumPageWidth:adjustingViewSize:",
9580 "forcePromise:",
9581 "forceRedraw",
9582 "forceSetMode:",
9583 "foreignEntityKey",
9584 "foreignEntityKeyColumns",
9585 "foreignEntityKeyForSlot:",
9586 "foreignKey",
9587 "foreignKeyColumnDefinitions",
9588 "foreignKeyColumns",
9589 "foreignKeyConstraintDefinitions",
9590 "foreignKeyForSlot:",
9591 "foreignKeys",
9592 "forgetAllExternalData",
9593 "forgetAllSnapshots",
9594 "forgetExternalDataForObjectID:",
9595 "forgetSnapshotForGlobalID:",
9596 "forgetSnapshotsForGlobalIDs:",
9597 "forgetWord:",
9598 "forgetWord:language:",
9599 "form",
9600 "formContentType",
9601 "formData",
9602 "formForElement:",
9603 "formReferrer",
9604 "formUnionWithCharacterSet:",
9605 "formalName",
9606 "formattedValueInObject:errorEncountered:error:",
9607 "formatter",
9608 "formatterBehavior",
9609 "formatterOfObject:",
9610 "forward::",
9611 "forwardInvocation:",
9612 "forwardItem",
9613 "forwardListCount",
9614 "fractionOfDistanceThroughGlyphForPoint:inTextContainer:",
9615 "fragment",
9616 "frame",
9617 "frame:resizedFromEdge:withDelta:",
9618 "frame:sourceFrame:willSubmitForm:withValues:submissionListener:",
9619 "frameAutosaveName",
9620 "frameCount",
9621 "frameDetached",
9622 "frameDidChange:",
9623 "frameElement",
9624 "frameLength",
9625 "frameLoadDelegate",
9626 "frameName",
9627 "frameOfCellAtColumn:row:",
9628 "frameOfColumn:",
9629 "frameOfInsideOfColumn:",
9630 "frameRate",
9631 "frameRectForContentRect:",
9632 "frameRectForContentRect:styleMask:",
9633 "frameRequiredForMIMEType:URL:",
9634 "frameSizeForContentSize:hasHorizontalScroller:hasVerticalScroller:borderType:",
9635 "frameView",
9636 "frameViewClassForStyleMask:",
9637 "free",
9638 "freeAttributeKeysAndValues",
9639 "freeBitsAndReleaseDataIfNecessary",
9640 "freeSerialized:length:",
9641 "freeSpace",
9642 "from:subtract:",
9643 "fulfillAggregateFaultForObject:andRelationship:withContext:",
9644 "fulfillFault:withContext:",
9645 "fullJustifyLineAtGlyphIndex:",
9646 "fullMetadata",
9647 "fullPathForApplication:",
9648 "gState",
9649 "gamma",
9650 "garbageCollect",
9651 "gaussianBlur",
9652 "generalPasteboard",
9653 "generateFrameName",
9654 "generateGlyphsForGlyphStorage:desiredNumberOfCharacters:glyphIndex:characterIndex:",
9655 "generateGlyphsForLayoutManager:range:desiredNumberOfCharacters:startingAtGlyphIndex:completedRange:nextGlyphIndex:",
9656 "generatePropertyName:",
9657 "generateTableName:",
9658 "generatesCalendarDates",
9659 "generatesDecimalNumbers",
9660 "generatorClass",
9661 "genericCMYKColorSpace",
9662 "genericColorSpace",
9663 "genericGrayColorSpace",
9664 "genericRGBColorSpace",
9665 "getAdvancements:forGlyphs:count:",
9666 "getAdvancements:forPackedGlyphs:length:",
9667 "getAppletInView:",
9668 "getArgument:atIndex:",
9669 "getArgumentTypeAtIndex:",
9670 "getAttribute:",
9671 "getAttributesForCharacterIndex:",
9672 "getBitmapDataPlanes:",
9673 "getByte",
9674 "getBytes:",
9675 "getBytes:length:",
9676 "getBytes:maxLength:filledLength:encoding:allowLossyConversion:range:remainingRange:",
9677 "getBytes:maxLength:usedLength:encoding:options:range:remainingRange:",
9678 "getBytes:range:",
9679 "getCFRunLoop",
9680 "getCString:",
9681 "getCString:maxLength:encoding:",
9682 "getCString:maxLength:range:remainingRange:",
9683 "getCarbonEvent:",
9684 "getCarbonEvent:withEvent:",
9685 "getCharacters:",
9686 "getCharacters:range:",
9687 "getClasses",
9688 "getClassesFromResourceLocator:",
9689 "getComponents:",
9690 "getCompression:factor:",
9691 "getComputedStyle::",
9692 "getCursorPositionAsIndex:inParagraph:",
9693 "getCustomAdvance:forIndex:",
9694 "getCyan:magenta:yellow:black:alpha:",
9695 "getDirInfo:",
9696 "getDocument:docInfo:",
9697 "getFileSystemRepresentation:maxLength:",
9698 "getFileSystemRepresentation:maxLength:withPath:",
9699 "getFilenamesAndDropLocation",
9700 "getFirstUnlaidCharacterIndex:glyphIndex:",
9701 "getFloatValue:",
9702 "getGlyphsInRange:glyphs:characterIndexes:glyphInscriptions:elasticBits:bidiLevels:",
9703 "getHIViewForNSView:",
9704 "getHue:saturation:brightness:alpha:",
9705 "getHyphenLocations:inString:",
9706 "getHyphenLocations:inString:wordAtIndex:",
9707 "getImage:rect:",
9708 "getIndexes:maxCount:inIndexRange:",
9709 "getInfoButtonCell",
9710 "getLELong",
9711 "getLEWord",
9712 "getLineFragmentRect:usedRect:forParagraphSeparatorGlyphRange:atProposedOrigin:",
9713 "getLineFragmentRect:usedRect:remainingRect:forStartingGlyphAtIndex:proposedRect:lineSpacing:paragraphSpacingBefore:paragraphSpacingAfter:",
9714 "getLineStart:end:contentsEnd:forRange:",
9715 "getLocal:",
9716 "getLocalizedFormattedDisplayLabels:andLocalizedFormattedDisplayValues:",
9717 "getLocalizedLabels:andLocalizedValues:",
9718 "getMarkedText:selectedRange:",
9719 "getMaximumAscender:minimumDescender:",
9720 "getMoreInput",
9721 "getNewIDForObject:",
9722 "getNodeAsContainerNodeForBrowsing:",
9723 "getNodeAsDeepResolvedNode:",
9724 "getNodeAsInfoNode:",
9725 "getNodeAsResolvedNode:",
9726 "getNumberOfRows:columns:",
9727 "getObjectCacheSize",
9728 "getObjectValue:forString:errorDescription:",
9729 "getObjectValue:forString:range:error:",
9730 "getObjects:",
9731 "getObjects:andKeys:",
9732 "getObjects:range:",
9733 "getParagraphStart:end:contentsEnd:forRange:",
9734 "getPath",
9735 "getPeriodicDelay:interval:",
9736 "getPluginInfoFromBundleAndMIMEDictionary:",
9737 "getPluginInfoFromPLists",
9738 "getPluginInfoFromResources",
9739 "getProperties",
9740 "getProperty::",
9741 "getPropertyCSSValue:",
9742 "getPropertyValue:",
9743 "getRGBColorValue",
9744 "getRects:count:",
9745 "getRectsBeingDrawn:count:",
9746 "getRectsExposedDuringLiveResize:count:",
9747 "getRed:green:blue:alpha:",
9748 "getReleasedProxies:length:",
9749 "getRemote:",
9750 "getResourceLocator",
9751 "getReturnValue:",
9752 "getRotationAngle",
9753 "getRow:column:forPoint:",
9754 "getRow:column:ofCell:",
9755 "getRulebookData:makeSharable:littleEndian:",
9756 "getSavedNumVisibleRows:",
9757 "getSnapToWidthList:snapRadiusList:count:",
9758 "getState:",
9759 "getStringValue",
9760 "getTypographicLineHeight:baselineOffset:leading:",
9761 "getURL:target:",
9762 "getURLNotify:target:notifyData:",
9763 "getValue:",
9764 "getValueFromObject:",
9765 "getVariable:value:",
9766 "getWhite:alpha:",
9767 "globallyUniqueString",
9768 "glyphAtIndex:",
9769 "glyphAtIndex:isValidIndex:",
9770 "glyphBufferForFont:andColor:",
9771 "glyphGenerator",
9772 "glyphGeneratorForEncoding:language:font:",
9773 "glyphGeneratorForEncoding:language:font:makeSharable:",
9774 "glyphGeneratorForTriplet:makeSharable:",
9775 "glyphIndexForPoint:inTextContainer:",
9776 "glyphIndexForPoint:inTextContainer:fractionOfDistanceThroughGlyph:",
9777 "glyphIndexToBreakLineByClippingAtIndex:",
9778 "glyphIndexToBreakLineByHyphenatingWordAtIndex:",
9779 "glyphIndexToBreakLineByWordWrappingAtIndex:",
9780 "glyphInfoWithCharacterIdentifier:collection:baseString:",
9781 "glyphInfoWithGlyph:forFont:baseString:",
9782 "glyphInfoWithGlyphName:forFont:baseString:",
9783 "glyphIsEncoded:",
9784 "glyphName",
9785 "glyphPacking",
9786 "glyphRange",
9787 "glyphRangeForBoundingRect:inTextContainer:",
9788 "glyphRangeForBoundingRectWithoutAdditionalLayout:inTextContainer:",
9789 "glyphRangeForCharacterRange:actualCharacterRange:",
9790 "glyphRangeForTextContainer:",
9791 "glyphWithName:",
9792 "goBack",
9793 "goBack:",
9794 "goBackOrForward:",
9795 "goBackwardInHistoryIfPossible",
9796 "goForward",
9797 "goForward:",
9798 "goForwardInHistoryIfPossible",
9799 "goToBackForwardItem:",
9800 "goToItem:",
9801 "goUpDirectory",
9802 "gotString",
9803 "gotoSheetDidEnd:returnCode:contextInfo:",
9804 "grabberImage",
9805 "gradientROI:forRect:",
9806 "graphicsContextWithAttributes:",
9807 "graphicsPort",
9808 "graphiteControlTintColor",
9809 "grayColor",
9810 "green",
9811 "greenColor",
9812 "greenComponent",
9813 "gregorianCalendar",
9814 "greySliderFrameChangedNotification:",
9815 "gridColor",
9816 "gridStyleMask",
9817 "groupIdentifier",
9818 "groupName",
9819 "groupingSeparator",
9820 "groupsByEvent",
9821 "growBoxWithParent:",
9822 "growBuffer:current:end:factor:",
9823 "growGlyphCaches:fillGlyphInfo:",
9824 "guessDockTitle:",
9825 "guessesForWord:",
9826 "handleAppTermination:",
9827 "handleAutoscrollForMouseDragged:",
9828 "handleCarbonBoundsChange",
9829 "handleCloseScriptCommand:",
9830 "handleCommandEvent:withReplyEvent:",
9831 "handleCurrentDirectoryNodeChanged",
9832 "handleDelayedUpdate:",
9833 "handleDelegateChangedCurrentDirectory",
9834 "handleDelegateChangedSelection",
9835 "handleDelegateClickedFauxDisabledNode:",
9836 "handleDelegateConfirmedSelection",
9837 "handleDelegateMovedDiplayedProperty:toIndex:",
9838 "handleDroppedConnection",
9839 "handleEndEncountered",
9840 "handleFailureInFunction:file:lineNumber:description:",
9841 "handleFailureInMethod:object:file:lineNumber:description:",
9842 "handleFetchRequest:",
9843 "handleFileListModeChanged",
9844 "handleGetAETEEvent:withReplyEvent:",
9845 "handleHasBytesAvailable",
9846 "handleKeyboardShortcutWithEvent:",
9847 "handleMachMessage:",
9848 "handleMetadataCallback",
9849 "handleMouseDownEvent:at:inPart:withMods:",
9850 "handleMouseEvent:",
9851 "handleNodePropertyChanged",
9852 "handleObservingRefresh:",
9853 "handlePortCoder:",
9854 "handlePortMessage:",
9855 "handlePreviewTextChange",
9856 "handlePreviewTextUpdate",
9857 "handlePrintScriptCommand:",
9858 "handleQueryWithUnboundKey:",
9859 "handleReadStreamEvent:event:",
9860 "handleReleasedProxies:length:",
9861 "handleRequest:sequence:",
9862 "handleRootNodeChanged",
9863 "handleSaveScriptCommand:",
9864 "handleSetFrameCommonRedisplay",
9865 "handleTakeValue:forUnboundKey:",
9866 "handleUserGoUpDirectory",
9867 "handleValidationError:description:inEditor:errorUserInterfaceHandled:",
9868 "handlesContentAsCompoundValue",
9869 "handlesObject:",
9870 "handlesRequest:",
9871 "hasAdditionalClip",
9872 "hasAlpha",
9873 "hasAttachmentMenu",
9874 "hasBackingStore",
9875 "hasChanges",
9876 "hasChangesPending",
9877 "hasChildNodes",
9878 "hasCloseBox",
9879 "hasCredentials",
9880 "hasDirectoryNode",
9881 "hasDynamicDepthLimit",
9882 "hasEditedDocuments",
9883 "hasEditor",
9884 "hasElasticRange",
9885 "hasHorizontalRuler",
9886 "hasHorizontalScroller",
9887 "hasImageWithAlpha",
9888 "hasItemsToDisplayInPopUp",
9889 "hasMarkedText",
9890 "hasMetadataTable",
9891 "hasNodeLabel",
9892 "hasOpenTransaction",
9893 "hasPageCache",
9894 "hasPassword",
9895 "hasPrefix:",
9896 "hasRunLoop:",
9897 "hasSelectedColor",
9898 "hasShadow",
9899 "hasSubentities",
9900 "hasSubmenu",
9901 "hasSuffix:",
9902 "hasThousandSeparators",
9903 "hasUndoManager",
9904 "hasVerticalRuler",
9905 "hasVerticalScroller",
9906 "hash",
9907 "hashForID:",
9908 "haveCompleteImage",
9909 "haveCredentialForURL:",
9910 "headIndent",
9911 "headerCell",
9912 "headerColor",
9913 "headerLevel",
9914 "headerRectOfColumn:",
9915 "headerTextColor",
9916 "headerView",
9917 "heartBeat:",
9918 "hebrewCalendar",
9919 "heightAdjustLimit",
9920 "heightForNumberOfVisibleRows:",
9921 "heightTracksTextView",
9922 "helpAnchor",
9923 "helpRequested:",
9924 "helpText",
9925 "hexString",
9926 "hiddenState",
9927 "hiddenStateAtIndex:",
9928 "hiddenStateAtIndexPath:",
9929 "hide",
9930 "hide:",
9931 "hideOtherApplications:",
9932 "hideRolloverWindow",
9933 "hideToolbar:",
9934 "hidesOnDeactivate",
9935 "highlight:",
9936 "highlight:withFrame:inView:",
9937 "highlightCell:atRow:column:",
9938 "highlightColor",
9939 "highlightColor:",
9940 "highlightColorInView:",
9941 "highlightColorWithFrame:inView:",
9942 "highlightMode",
9943 "highlightROI:forRect:",
9944 "highlightSelectionInClipRect:",
9945 "highlightWithLevel:",
9946 "highlightedBranchImage",
9947 "highlightedItemIndex",
9948 "highlightedTableColumn",
9949 "highlightsBy",
9950 "hintCapacity",
9951 "historyAgeInDaysLimit",
9952 "historyItemLimit",
9953 "historyLength",
9954 "historyProvider",
9955 "hitPart",
9956 "hitTest:",
9957 "horizontalEdgePadding",
9958 "horizontalLineScroll",
9959 "horizontalPagination",
9960 "horizontalRulerView",
9961 "horizontalScroller",
9962 "horizontalScrollingMode",
9963 "host",
9964 "hostNameResolved:",
9965 "hostWindow",
9966 "hostWithName:",
9967 "hotSpot",
9968 "hourOfDay",
9969 "href",
9970 "hueComponent",
9971 "hyphenCharacterForGlyphAtIndex:",
9972 "hyphenGlyph",
9973 "hyphenGlyphForLocale:",
9974 "hyphenationFactor",
9975 "hyphenationFactorForGlyphAtIndex:",
9976 "iDiskNode",
9977 "icon",
9978 "iconAsAttributedString",
9979 "iconForFile:",
9980 "iconForFileType:",
9981 "iconForSize:",
9982 "iconForSpecifier:size:",
9983 "iconForURL:withSize:",
9984 "iconForURL:withSize:cache:",
9985 "iconRect",
9986 "iconSize",
9987 "identifier",
9988 "identity",
9989 "ignore",
9990 "ignoreModifierKeysWhileDragging",
9991 "ignoreSpelling:",
9992 "ignoreWord:inSpellDocumentWithTag:",
9993 "ignoresAlpha",
9994 "ignoresMouseEvents",
9995 "illegalCharacterSet",
9996 "image",
9997 "image:didLoadPartOfRepresentation:withValidRows:",
9998 "image:didLoadRepresentation:withStatus:",
9999 "image:didLoadRepresentationHeader:",
10000 "image:focus:",
10001 "image:willLoadRepresentation:",
10002 "imageAlignment",
10003 "imageAndTitleOffset",
10004 "imageAndTitleWidth",
10005 "imageAtIndex:",
10006 "imageBounds",
10007 "imageByApplyingTransform:",
10008 "imageDidNotDraw:inRect:",
10009 "imageFileTypes",
10010 "imageForPreferenceNamed:",
10011 "imageForSegment:",
10012 "imageForState:",
10013 "imageFrameStyle",
10014 "imageInterpolation",
10015 "imageNamed:",
10016 "imagePasteboardTypes",
10017 "imagePosition",
10018 "imageRectForBounds:",
10019 "imageRectInRuler",
10020 "imageRef",
10021 "imageRenderer",
10022 "imageRendererWithBytes:length:",
10023 "imageRendererWithBytes:length:MIMEType:",
10024 "imageRendererWithData:MIMEType:",
10025 "imageRendererWithMIMEType:",
10026 "imageRendererWithName:",
10027 "imageRendererWithSize:",
10028 "imageRepClassForData:",
10029 "imageRepClassForFileType:",
10030 "imageRepClassForPasteboardType:",
10031 "imageRepWithContentsOfFile:",
10032 "imageRepWithContentsOfURL:",
10033 "imageRepWithData:",
10034 "imageRepsWithContentsOfFile:",
10035 "imageRepsWithContentsOfURL:",
10036 "imageRepsWithData:",
10037 "imageScaling",
10038 "imageSize",
10039 "imageUnfilteredFileTypes",
10040 "imageUnfilteredPasteboardTypes",
10041 "imageWidth",
10042 "imageWithCGImage:",
10043 "imageWithCGImage:options:",
10044 "imageWithCVImageBuffer:options:",
10045 "imageWithContentsOfURL:options:",
10046 "imageWithData:bytesPerRow:size:format:colorSpace:",
10047 "imageWithPDF:atSize:center:withOffset:intoRect:fillWith:red:green:blue:",
10048 "imageWithPath:",
10049 "imageWithPathInner:",
10050 "immutableCopy",
10051 "implementorAtIndex:",
10052 "implementsSelector:",
10053 "importObject:",
10054 "importedObjects",
10055 "importsGraphics",
10056 "inLiveResize",
10057 "inNextKeyViewOutsideWebFrameViews",
10058 "inPalette",
10059 "incObservationCount",
10060 "incomingReferrer",
10061 "increaseLengthBy:",
10062 "increaseSizesToFit:",
10063 "increaseUseCount",
10064 "increment",
10065 "incrementButtonWithParent:",
10066 "incrementRefCount",
10067 "incrementRefCountForObjectID:",
10068 "incrementSnapshotCountForGlobalID:",
10069 "incrementalImageReaderForRep:",
10070 "incrementalLoadWithBytes:length:complete:",
10071 "increments",
10072 "indentationLevel",
10073 "indentationPerLevel",
10074 "index",
10075 "indexAtPosition:",
10076 "indexFollowing:",
10077 "indexForKey:",
10078 "indexGreaterThanIndex:",
10079 "indexGreaterThanOrEqualToIndex:",
10080 "indexLessThanIndex:",
10081 "indexOfBestMatchForDisplayNamePrefix:inCachedChildrenForNode:",
10082 "indexOfCrayon:",
10083 "indexOfFirstRangeContainingOrFollowing:",
10084 "indexOfItem:",
10085 "indexOfItemAtPoint:",
10086 "indexOfItemWithObjectValue:",
10087 "indexOfItemWithRepresentedNavNode:",
10088 "indexOfItemWithRepresentedObject:",
10089 "indexOfItemWithSubmenu:",
10090 "indexOfItemWithTag:",
10091 "indexOfItemWithTarget:andAction:",
10092 "indexOfItemWithTitle:",
10093 "indexOfNode:inCachedChildrenForNode:",
10094 "indexOfObject:",
10095 "indexOfObject:range:identical:",
10096 "indexOfObjectIdenticalTo:",
10097 "indexOfObjectIdenticalTo:inRange:",
10098 "indexOfSelectedItem",
10099 "indexOfTabViewItem:",
10100 "indexOfTabViewItemWithIdentifier:",
10101 "indexOfTickMarkAtPoint:",
10102 "indexPath",
10103 "indexPathByAddingIndex:",
10104 "indexPathByRemovingLastIndex",
10105 "indexPathForOutlineView:row:",
10106 "indexPathWithIndex:",
10107 "indexReferenceModelObjectArray",
10108 "indexSet",
10109 "indexSetWithIndex:",
10110 "indexSetWithIndexesInRange:",
10111 "indicesOfObjectsByEvaluatingObjectSpecifier:",
10112 "indicesOfObjectsByEvaluatingWithContainer:count:",
10113 "infoDictionary",
10114 "infoForBinding:",
10115 "init",
10116 "initAndTestWithTests:",
10117 "initAtPoint:withSize:callbackInfo:",
10118 "initByReferencingFile:",
10119 "initByReferencingURL:",
10120 "initCount:",
10121 "initDir:file:docInfo:",
10122 "initDirectoryWithFileWrappers:",
10123 "initEPSOperationWithView:insideRect:toData:printInfo:",
10124 "initFileURLWithPath:",
10125 "initForActionType:",
10126 "initForDeserializerStream:",
10127 "initForDirectImageRep:",
10128 "initForExpression:usingIteratorExpression:predicate:",
10129 "initForExpression:usingIteratorVariable:predicate:",
10130 "initForKeyBackPointer:",
10131 "initForKeys:",
10132 "initForKeys:count:",
10133 "initForMetal:",
10134 "initForReadingWithData:",
10135 "initForSerializerStream:",
10136 "initForToolbar:withWidth:",
10137 "initForURL:withContentsOfURL:ofType:error:",
10138 "initForWritingWithMutableData:",
10139 "initFromDictionaryRepresentation:",
10140 "initFromDocument:",
10141 "initFromImage:rect:",
10142 "initFromMemoryNoCopy:length:freeWhenDone:",
10143 "initFromSerializerStream:length:",
10144 "initGlyphStack:",
10145 "initImageCell:",
10146 "initListDescriptor",
10147 "initNotTestWithTest:",
10148 "initOrTestWithTests:",
10149 "initPopUpWindow",
10150 "initPriv",
10151 "initRecordDescriptor",
10152 "initRegularFileWithContents:",
10153 "initRemoteWithProtocolFamily:socketType:protocol:address:",
10154 "initSymbolicLinkWithDestination:",
10155 "initTextCell:",
10156 "initTextCell:pullsDown:",
10157 "initTitleButton:",
10158 "initTitleCell:",
10159 "initTitleCell:styleMask:",
10160 "initToBuffer:capacity:",
10161 "initToFileAtPath:append:",
10162 "initToMemory",
10163 "initWith::::",
10164 "initWith:options:",
10165 "initWithAEDescNoCopy:",
10166 "initWithAction:",
10167 "initWithAdapter:",
10168 "initWithAdapterOperator:correlation:",
10169 "initWithAdapterOperator:row:",
10170 "initWithAffectedRange:layoutManager:undoManager:",
10171 "initWithAffectedRange:layoutManager:undoManager:replacementRange:",
10172 "initWithAppleEventCode:",
10173 "initWithAppleEventCode:presentableDescription:name:",
10174 "initWithAppleEventCode:presentableDescription:name:value:",
10175 "initWithArray:",
10176 "initWithArray:copyItems:",
10177 "initWithArray:forTarget:andRange:andCopyItems:",
10178 "initWithAssignmentExpression:expression:",
10179 "initWithAssignmentVariable:expression:",
10180 "initWithAttributeDictionary:",
10181 "initWithAttributedString:",
10182 "initWithAttributes:",
10183 "initWithAttributes:range:",
10184 "initWithAuthenticationChallenge:sender:",
10185 "initWithBaseString:",
10186 "initWithBestLocationRep:",
10187 "initWithBinder:object:",
10188 "initWithBitmap:rowBytes:bounds:format:",
10189 "initWithBitmap:rowBytes:bounds:format:options:",
10190 "initWithBitmapDataPlanes:pixelsWide:pixelsHigh:bitsPerSample:samplesPerPixel:hasAlpha:isPlanar:colorSpaceName:bitmapFormat:bytesPerRow:bitsPerPixel:",
10191 "initWithBitmapDataPlanes:pixelsWide:pixelsHigh:bitsPerSample:samplesPerPixel:hasAlpha:isPlanar:colorSpaceName:bitmapFormat:bytesPerRow:bitsPerPixel:size:",
10192 "initWithBitmapDataPlanes:pixelsWide:pixelsHigh:bitsPerSample:samplesPerPixel:hasAlpha:isPlanar:colorSpaceName:bytesPerRow:bitsPerPixel:",
10193 "initWithBitmapRepresentation:",
10194 "initWithBool:",
10195 "initWithBridge:delegate:",
10196 "initWithButtonID:",
10197 "initWithBytes:length:",
10198 "initWithBytes:length:copy:freeWhenDone:bytesAreVM:",
10199 "initWithBytes:length:encoding:",
10200 "initWithBytesNoCopy:length:",
10201 "initWithBytesNoCopy:length:encoding:freeWhenDone:",
10202 "initWithBytesNoCopy:length:freeWhenDone:",
10203 "initWithCFNetService:",
10204 "initWithCGColor:",
10205 "initWithCGColorSpace:",
10206 "initWithCGContext:",
10207 "initWithCGContext:options:",
10208 "initWithCGImage:",
10209 "initWithCGImage:options:",
10210 "initWithCGLContext:pixelFormat:",
10211 "initWithCGLContext:pixelFormat:options:",
10212 "initWithCGLSContext:pixelFormat:",
10213 "initWithCGLSContext:pixelFormat:options:",
10214 "initWithCGSContext:",
10215 "initWithCGSRegion:",
10216 "initWithCGSRegionObj:",
10217 "initWithCIImage:",
10218 "initWithCString:",
10219 "initWithCString:length:",
10220 "initWithCString:noCopy:",
10221 "initWithCStringNoCopy:length:freeWhenDone:",
10222 "initWithCVImageBuffer:options:",
10223 "initWithCachedResponse:request:key:",
10224 "initWithCallback:selector:",
10225 "initWithCapacity:",
10226 "initWithCapacity:compareSelector:",
10227 "initWithCapacity:origin:image:yOffset:",
10228 "initWithCarbonWindowRef:takingOwnership:",
10229 "initWithCarbonWindowRef:takingOwnership:disableOrdering:",
10230 "initWithCarbonWindowRef:takingOwnership:disableOrdering:carbon:",
10231 "initWithCatalogName:colorName:genericColor:",
10232 "initWithCell:",
10233 "initWithChar:",
10234 "initWithCharacterIdentifier:collection:baseString:",
10235 "initWithCharacterRange:isSoft:",
10236 "initWithCharacterRange:parent:",
10237 "initWithCharacterSet:",
10238 "initWithCharacters:length:",
10239 "initWithCharactersInString:",
10240 "initWithCharactersNoCopy:length:freeWhenDone:",
10241 "initWithClass:",
10242 "initWithClassDescription:",
10243 "initWithClassPath:",
10244 "initWithClient:",
10245 "initWithCode:key:object:",
10246 "initWithCoder:",
10247 "initWithCoercer:selector:",
10248 "initWithCollection:",
10249 "initWithColorProfile:",
10250 "initWithColorSpace:components:count:",
10251 "initWithColorSyncInfo:",
10252 "initWithColorSyncProfile:",
10253 "initWithColumnName:sqlType:",
10254 "initWithCommandDescription:",
10255 "initWithCompareSelector:",
10256 "initWithConnection:components:",
10257 "initWithContainer:key:mutableSet:",
10258 "initWithContainer:key:mutableSet:mutationMethods:",
10259 "initWithContainerClass:keyPath:",
10260 "initWithContainerClass:keyPath:firstDotIndex:",
10261 "initWithContainerClassDescription:",
10262 "initWithContainerClassDescription:containerSpecifier:key:",
10263 "initWithContainerClassDescription:containerSpecifier:key:index:",
10264 "initWithContainerClassDescription:containerSpecifier:key:name:",
10265 "initWithContainerClassDescription:containerSpecifier:key:relativePosition:baseSpecifier:",
10266 "initWithContainerClassDescription:containerSpecifier:key:startSpecifier:endSpecifier:",
10267 "initWithContainerClassDescription:containerSpecifier:key:test:",
10268 "initWithContainerClassDescription:containerSpecifier:key:uniqueID:",
10269 "initWithContainerClassID:key:baseGetter:baseSetter:containerIsa:proxyClass:",
10270 "initWithContainerClassID:key:baseGetter:mutatingMethods:proxyClass:",
10271 "initWithContainerClassID:key:containerIsa:",
10272 "initWithContainerClassID:key:containerIsa:ivar:",
10273 "initWithContainerClassID:key:containerIsa:ivar:proxyClass:",
10274 "initWithContainerClassID:key:implementation:selector:extraArguments:count:",
10275 "initWithContainerClassID:key:ivar:",
10276 "initWithContainerClassID:key:method:",
10277 "initWithContainerClassID:key:methods:proxyClass:",
10278 "initWithContainerClassID:key:mutableCollectionGetter:proxyClass:",
10279 "initWithContainerClassID:key:nonmutatingMethods:mutatingMethods:proxyClass:",
10280 "initWithContainerClassID:key:proxyClass:",
10281 "initWithContainerSize:",
10282 "initWithContainerSpecifier:key:",
10283 "initWithContent:",
10284 "initWithContentKind:occurrence:",
10285 "initWithContentRect:",
10286 "initWithContentRect:comboBoxCell:",
10287 "initWithContentRect:styleMask:backing:defer:",
10288 "initWithContentRect:styleMask:backing:defer:drawer:",
10289 "initWithContentRect:styleMask:backing:defer:screen:",
10290 "initWithContentSize:preferredEdge:",
10291 "initWithContentsOfFile:",
10292 "initWithContentsOfFile:encoding:error:",
10293 "initWithContentsOfFile:error:",
10294 "initWithContentsOfFile:ofType:",
10295 "initWithContentsOfFile:options:error:",
10296 "initWithContentsOfFile:usedEncoding:error:",
10297 "initWithContentsOfMappedFile:",
10298 "initWithContentsOfMappedFile:withFileAttributes:",
10299 "initWithContentsOfURL:",
10300 "initWithContentsOfURL:byReference:",
10301 "initWithContentsOfURL:encoding:error:",
10302 "initWithContentsOfURL:ofType:",
10303 "initWithContentsOfURL:ofType:error:",
10304 "initWithContentsOfURL:options:",
10305 "initWithContentsOfURL:options:error:",
10306 "initWithContentsOfURL:usedEncoding:error:",
10307 "initWithController:",
10308 "initWithController:keyPath:",
10309 "initWithController:retainController:key:valueTransformer:binding:",
10310 "initWithCurrentBrowsingNodePath:fileListMode:",
10311 "initWithCurrentQDPort",
10312 "initWithCustomSelector:modifier:",
10313 "initWithCyan:magenta:yellow:black:alpha:",
10314 "initWithDOMRange:",
10315 "initWithData:",
10316 "initWithData:DIBFormat:",
10317 "initWithData:MIMEType:",
10318 "initWithData:URL:MIMEType:textEncodingName:frameName:",
10319 "initWithData:bytesPerRow:size:format:colorSpace:",
10320 "initWithData:bytesPerRow:size:format:options:",
10321 "initWithData:documentClass:isSingleDTDNode:options:error:",
10322 "initWithData:documentClass:options:error:",
10323 "initWithData:encoding:",
10324 "initWithData:hfsTypeCode:",
10325 "initWithData:isSingleDTDNode:options:error:",
10326 "initWithData:options:",
10327 "initWithData:options:documentAttributes:error:",
10328 "initWithData:options:error:",
10329 "initWithData:range:",
10330 "initWithDataNoCopy:",
10331 "initWithDataRepresentation:",
10332 "initWithDataSource:",
10333 "initWithDataSource:ascending:",
10334 "initWithDateFormat:allowNaturalLanguage:",
10335 "initWithDecimal:",
10336 "initWithDefaultAttributes:",
10337 "initWithDefaults:initialValues:",
10338 "initWithDelegate:",
10339 "initWithDelegate:name:",
10340 "initWithDescription:kernelFile:filterBundle:",
10341 "initWithDescriptorType:bytes:length:",
10342 "initWithDescriptorType:data:",
10343 "initWithDictionary:",
10344 "initWithDictionary:copyItems:",
10345 "initWithDocument:URL:windowProperties:locationProperties:interpreterBuiltins:",
10346 "initWithDocument:forStore:",
10347 "initWithDocumentView:",
10348 "initWithDomain:code:userInfo:",
10349 "initWithDomain:type:name:",
10350 "initWithDomain:type:name:port:",
10351 "initWithDomainName:key:title:image:",
10352 "initWithDouble:",
10353 "initWithDrawingView:rects:",
10354 "initWithDuration:animationCurve:",
10355 "initWithDynamicMenuItemDictionary:",
10356 "initWithEditCommand:",
10357 "initWithElement:fauxParent:",
10358 "initWithElement:frame:stringValue:",
10359 "initWithElementSize:capacity:",
10360 "initWithElementTypeDescription:",
10361 "initWithEntity:",
10362 "initWithEntity:foreignKey:",
10363 "initWithEntity:insertIntoManagedObjectContext:",
10364 "initWithEntity:inverseToMany:",
10365 "initWithEntity:propertyDescription:",
10366 "initWithEntity:propertyDescription:virtualForToMany:",
10367 "initWithEntity:sqlString:",
10368 "initWithEntity:toOneRelationship:",
10369 "initWithEvent:replyEvent:",
10370 "initWithEventClass:eventID:targetDescriptor:returnID:transactionID:",
10371 "initWithExactName:data:",
10372 "initWithExpressionType:",
10373 "initWithExpressionType:operand:selector:argumentArray:",
10374 "initWithExtent:format:",
10375 "initWithExternalName:",
10376 "initWithFBENode:",
10377 "initWithFactory:",
10378 "initWithFile:",
10379 "initWithFileAtPath:",
10380 "initWithFileAttributes:",
10381 "initWithFileDescriptor:closeOnDealloc:",
10382 "initWithFileName:markerName:",
10383 "initWithFileProperty:dataSource:ascending:",
10384 "initWithFileWrapper:",
10385 "initWithFilter:closure:",
10386 "initWithFilter:connectionID:",
10387 "initWithFilter:options::",
10388 "initWithFireDate:interval:target:selector:userInfo:repeats:",
10389 "initWithFloat:",
10390 "initWithFocusedViewRect:",
10391 "initWithFont:color:",
10392 "initWithFont:usingPrinterFont:",
10393 "initWithFontAttributes:",
10394 "initWithFontDescriptor:",
10395 "initWithForm:values:sourceFrame:",
10396 "initWithFormat:",
10397 "initWithFormat:arguments:",
10398 "initWithFormat:locale:",
10399 "initWithFormat:locale:arguments:",
10400 "initWithFormat:shareContext:",
10401 "initWithFrame:",
10402 "initWithFrame:depth:",
10403 "initWithFrame:error:",
10404 "initWithFrame:frameName:groupName:",
10405 "initWithFrame:inStatusBar:",
10406 "initWithFrame:menuView:",
10407 "initWithFrame:mode:cellClass:numberOfRows:numberOfColumns:",
10408 "initWithFrame:mode:prototype:numberOfRows:numberOfColumns:",
10409 "initWithFrame:node:",
10410 "initWithFrame:plugin:URL:baseURL:MIMEType:attributeKeys:attributeValues:",
10411 "initWithFrame:prototypeRulerMarker:",
10412 "initWithFrame:pullsDown:",
10413 "initWithFrame:styleMask:owner:",
10414 "initWithFrame:textContainer:",
10415 "initWithFunc:forImp:selector:",
10416 "initWithFunc:ivarOffset:",
10417 "initWithGLContext:pixelFormat:vtable:options:",
10418 "initWithGlyph:forFont:baseString:",
10419 "initWithGlyphIndex:characterRange:",
10420 "initWithGlyphName:glyph:forFont:baseString:",
10421 "initWithGrammar:",
10422 "initWithGraph:",
10423 "initWithGraphicsContext:",
10424 "initWithHTML:documentAttributes:",
10425 "initWithHTML:options:documentAttributes:",
10426 "initWithHTMLView:",
10427 "initWithHistory:",
10428 "initWithHost:port:protocol:realm:authenticationMethod:",
10429 "initWithHue:saturation:brightness:alpha:",
10430 "initWithICCProfileData:",
10431 "initWithIdentifier:",
10432 "initWithIdentifier:forColorPanel:",
10433 "initWithImage:",
10434 "initWithImage:foregroundColorHint:backgroundColorHint:hotSpot:",
10435 "initWithImage:hotSpot:",
10436 "initWithImage:keysAndValues:",
10437 "initWithImage:options:",
10438 "initWithImageProvider:size::format:colorSpace:options:",
10439 "initWithImageProvider:userInfo:size:format:flipped:colorSpace:",
10440 "initWithIncrements:parent:",
10441 "initWithIndex:",
10442 "initWithIndex:parent:",
10443 "initWithIndexSet:",
10444 "initWithIndexes:",
10445 "initWithIndexes:length:",
10446 "initWithIndexesInRange:",
10447 "initWithInstanceInfo:renderingMode:",
10448 "initWithInt:",
10449 "initWithInvocation:conversation:sequence:importedObjects:connection:",
10450 "initWithItem:",
10451 "initWithItem:forToolbarView:",
10452 "initWithItemIdentifier:",
10453 "initWithJPEGFile:",
10454 "initWithJPEGFile:options:",
10455 "initWithJob:",
10456 "initWithKWQFileButton:",
10457 "initWithKey:appleEventCode:type:isOptional:presentableDescription:name:",
10458 "initWithKey:appleEventCode:type:isOptional:presentableDescription:nameOrNames:",
10459 "initWithKey:appleEventCode:type:presentableDescription:name:",
10460 "initWithKey:appleEventCode:typeDescription:presentableDescription:name:",
10461 "initWithKey:ascending:",
10462 "initWithKey:ascending:selector:",
10463 "initWithKey:isStored:",
10464 "initWithKey:mask:binding:",
10465 "initWithKey:type:access:",
10466 "initWithKey:type:access:appleEventCode:presentableDescription:name:",
10467 "initWithKey:type:isReadOnly:appleEventCode:isLocationRequiredToCreate:",
10468 "initWithKey:type:isReadOnly:appleEventCode:presentableDescription:nameOrNames:",
10469 "initWithKey:value:",
10470 "initWithKeyPath:",
10471 "initWithKeychainItem:",
10472 "initWithKeys:",
10473 "initWithKind:",
10474 "initWithKind:name:stringValue:",
10475 "initWithKind:name:stringValue:URI:",
10476 "initWithKind:options:",
10477 "initWithLeftExpression:rightExpression:customSelector:",
10478 "initWithLeftExpression:rightExpression:modifier:type:options:",
10479 "initWithLength:",
10480 "initWithListBox:",
10481 "initWithLoader:dataSource:",
10482 "initWithLocal:connection:",
10483 "initWithLocalName:URI:",
10484 "initWithLocaleIdentifier:",
10485 "initWithLong:",
10486 "initWithLongLong:",
10487 "initWithMIMEType:",
10488 "initWithMKKDInitializer:index:",
10489 "initWithMachPort:",
10490 "initWithMainResource:subresources:subframeArchives:",
10491 "initWithManagedObjectModel:",
10492 "initWithManagedObjectModel:configurationName:",
10493 "initWithMantissa:exponent:isNegative:",
10494 "initWithManyToMany:fk:invfk:",
10495 "initWithMarkerFormat:options:",
10496 "initWithMemoryCapacity:diskCapacity:diskPath:",
10497 "initWithMethodSignature:",
10498 "initWithModel:entityDescription:",
10499 "initWithModelObserver:availableModelAndProxyKeys:",
10500 "initWithMovie:",
10501 "initWithMovieView:selector:operation:",
10502 "initWithMutableAttributedString:",
10503 "initWithName:",
10504 "initWithName:appleEventCode:enumeratorDescriptions:",
10505 "initWithName:appleEventCode:fieldDescriptions:presentableDescription:",
10506 "initWithName:appleEventCode:objcClassName:",
10507 "initWithName:attributes:",
10508 "initWithName:color:image:",
10509 "initWithName:data:",
10510 "initWithName:element:",
10511 "initWithName:elementNames:",
10512 "initWithName:fromFile:",
10513 "initWithName:host:",
10514 "initWithName:object:userInfo:",
10515 "initWithName:position:rect:view:children:",
10516 "initWithName:reason:userInfo:",
10517 "initWithName:stringValue:",
10518 "initWithName:value:source:children:",
10519 "initWithName:webFrameView:webView:",
10520 "initWithNamespaces:",
10521 "initWithNavView:",
10522 "initWithNestedDictionary:",
10523 "initWithNibNamed:bundle:",
10524 "initWithNode:delegate:",
10525 "initWithNotificationCenter:",
10526 "initWithNotificationObject:",
10527 "initWithObjCType:count:at:",
10528 "initWithObject:",
10529 "initWithObject:entity:",
10530 "initWithObjectID:",
10531 "initWithObjectSpecifier:comparisonOperator:testObject:",
10532 "initWithObjectStore:andClass:forEntity:withType:",
10533 "initWithObjects:",
10534 "initWithObjects:count:",
10535 "initWithObjects:count:target:reverse:freeWhenDone:",
10536 "initWithObjects:forKeys:",
10537 "initWithObjects:forKeys:count:",
10538 "initWithObjectsAndKeys:",
10539 "initWithObjects_ex:count:",
10540 "initWithObjects_ex:forKeys:count:",
10541 "initWithObservedNode:",
10542 "initWithObserver:name:object:",
10543 "initWithObserver:relationshipKey:keyPathFromRelatedObject:options:context:",
10544 "initWithOffset:",
10545 "initWithOperand:andKeyPath:",
10546 "initWithOperatorType:",
10547 "initWithOperatorType:modifier:",
10548 "initWithOperatorType:modifier:negate:",
10549 "initWithOperatorType:modifier:options:",
10550 "initWithOperatorType:modifier:variant:",
10551 "initWithOperatorType:modifier:variant:position:",
10552 "initWithOptions:",
10553 "initWithOriginalClass:",
10554 "initWithOriginalString:range:",
10555 "initWithPNGFile:",
10556 "initWithPNGFile:options:",
10557 "initWithPanel:",
10558 "initWithPartCode:parent:",
10559 "initWithPasteboard:",
10560 "initWithPasteboardDataRepresentation:",
10561 "initWithPath:",
10562 "initWithPath:documentAttributes:",
10563 "initWithPath:flags:createMode:",
10564 "initWithPath:logonOK:",
10565 "initWithPath:traverseLink:",
10566 "initWithPersistenceStore:",
10567 "initWithPickerMask:colorPanel:",
10568 "initWithPosition:objectSpecifier:",
10569 "initWithPredicate:",
10570 "initWithPredicateOperator:leftExpression:rightExpression:",
10571 "initWithPredicateOperator:leftKeyPath:rightKeyPath:",
10572 "initWithPredicateOperator:leftKeyPath:rightValue:",
10573 "initWithPrintInfo:",
10574 "initWithPrompt:text:",
10575 "initWithProperties:",
10576 "initWithProperties:suiteName:usesUnnamedArguments:classSynonymDescriptions:",
10577 "initWithProperty:",
10578 "initWithProtectionSpace:proposedCredential:previousFailureCount:failureResponse:error:sender:",
10579 "initWithProtocol:httpRequest:challenge:callback:context:",
10580 "initWithProtocolFamily:socketType:protocol:address:",
10581 "initWithProxyHost:port:type:realm:authenticationMethod:",
10582 "initWithQButton:",
10583 "initWithQComboBox:",
10584 "initWithQLineEdit:",
10585 "initWithQObject:timerId:",
10586 "initWithQScrollBar:",
10587 "initWithQSlider:",
10588 "initWithQTextEdit:",
10589 "initWithRTF:",
10590 "initWithRTF:documentAttributes:",
10591 "initWithRTFD:",
10592 "initWithRTFD:documentAttributes:",
10593 "initWithRTFDFileWrapper:",
10594 "initWithRange:",
10595 "initWithRanges:count:",
10596 "initWithRealClient:",
10597 "initWithRealTextStorage:",
10598 "initWithReceivePort:sendPort:",
10599 "initWithReceivePort:sendPort:components:",
10600 "initWithRect:",
10601 "initWithRect:clip:type:",
10602 "initWithRect:color:ofView:",
10603 "initWithRects:count:",
10604 "initWithRed:green:blue:alpha:",
10605 "initWithRef:",
10606 "initWithRefCountedRunArray:",
10607 "initWithRegistryClass:andObjectClass:",
10608 "initWithRegistryString:andObjectClass:",
10609 "initWithRemoteName:",
10610 "initWithRenderer:",
10611 "initWithRequest:",
10612 "initWithRequest:cachedResponse:client:",
10613 "initWithRequest:delegate:",
10614 "initWithRequest:delegate:priority:",
10615 "initWithRequest:frameName:notifyData:sendNotification:",
10616 "initWithRequest:pluginPointer:notifyData:sendNotification:",
10617 "initWithRequestURL:pluginPointer:notifyData:sendNotification:",
10618 "initWithResponse:data:userInfo:storagePolicy:",
10619 "initWithResumeInformation:",
10620 "initWithRole:parent:",
10621 "initWithRole:subrole:parent:",
10622 "initWithRootElement:",
10623 "initWithRootStore:configurationName:readOnly:url:",
10624 "initWithRoundingMode:scale:raiseOnExactness:raiseOnOverflow:raiseOnUnderflow:raiseOnDivideByZero:",
10625 "initWithRow:column:tableView:",
10626 "initWithRow:ofTableView:",
10627 "initWithRow:tableColumn:",
10628 "initWithRulerMarker:parent:",
10629 "initWithRulerView:",
10630 "initWithRulerView:markerLocation:image:imageOrigin:",
10631 "initWithRunStorage:",
10632 "initWithRuns:glyphOrigin:lineFragmentWidth:",
10633 "initWithSQLCore:",
10634 "initWithSQLEntity:objectID:",
10635 "initWithSavedQueryNode:",
10636 "initWithScrollView:orientation:",
10637 "initWithSearchStrategy:",
10638 "initWithSelector:",
10639 "initWithSelector:argumentArray:",
10640 "initWithSendPort:receivePort:components:",
10641 "initWithSerializedRepresentation:",
10642 "initWithSet:",
10643 "initWithSet:copyItems:",
10644 "initWithSetFunc:forImp:selector:",
10645 "initWithSetFunc:ivarOffset:",
10646 "initWithSetHeader:",
10647 "initWithSettings:showPrintPanel:sender:delegate:didPrintSelector:contextInfo:",
10648 "initWithShadow:",
10649 "initWithShort:",
10650 "initWithSimpleQueryString:",
10651 "initWithSize:",
10652 "initWithSize:depth:separate:alpha:",
10653 "initWithSize:forSpaceItem:",
10654 "initWithSource:",
10655 "initWithSource::dest::",
10656 "initWithSource:forRelationship:asFault:",
10657 "initWithSourceAttributeName:destinationAttributeName:",
10658 "initWithSparseArray:",
10659 "initWithSpecifier:",
10660 "initWithStatement:",
10661 "initWithStore:",
10662 "initWithStore:fromPath:",
10663 "initWithStream:",
10664 "initWithStream:view:",
10665 "initWithString:",
10666 "initWithString:attributes:",
10667 "initWithString:calendarFormat:",
10668 "initWithString:calendarFormat:locale:",
10669 "initWithString:locale:",
10670 "initWithString:relativeToURL:",
10671 "initWithStringValue:",
10672 "initWithSuiteName:className:dictionary:",
10673 "initWithSuiteName:commandName:dictionary:",
10674 "initWithTCPPort:",
10675 "initWithTable:startingRow:rowSpan:startingColumn:columnSpan:",
10676 "initWithTableView:",
10677 "initWithTableView:clipRect:",
10678 "initWithTarget:",
10679 "initWithTarget:action:",
10680 "initWithTarget:connection:",
10681 "initWithTarget:defaultTarget:templateClass:",
10682 "initWithTarget:invocation:",
10683 "initWithTarget:protocol:",
10684 "initWithTarget:selector:object:",
10685 "initWithTextAlignment:location:options:",
10686 "initWithTextBlock:charIndex:layoutManager:containerWidth:",
10687 "initWithTextBlock:charRange:glyphRange:layoutRect:boundsRect:layoutManager:containerWidth:",
10688 "initWithTextBlock:charRange:layoutManager:containerWidth:",
10689 "initWithTextControl:colorPanel:delegate:",
10690 "initWithTextField:QLineEdit:",
10691 "initWithTextStorage:",
10692 "initWithTextStorage:range:",
10693 "initWithTextTable:charIndex:layoutManager:containerWidth:",
10694 "initWithTexture:size:flipped:colorSpace:",
10695 "initWithTexture:size:options:",
10696 "initWithTidyNode:",
10697 "initWithTimeIntervalSinceNow:",
10698 "initWithTimeIntervalSinceReferenceDate:",
10699 "initWithTitle:",
10700 "initWithTitle:action:keyEquivalent:",
10701 "initWithTitle:action:keyEquivalent:representedNavNode:",
10702 "initWithTransform:",
10703 "initWithTranslator:selector:",
10704 "initWithTreeController:",
10705 "initWithTreeController:keyPath:",
10706 "initWithType:",
10707 "initWithType:arg:",
10708 "initWithType:error:",
10709 "initWithType:location:",
10710 "initWithType:subpredicates:",
10711 "initWithTypefaceInfo:key:",
10712 "initWithTypesetter:",
10713 "initWithURL:",
10714 "initWithURL:MIMEType:expectedContentLength:textEncodingName:",
10715 "initWithURL:allowNonExecutable:",
10716 "initWithURL:byReference:",
10717 "initWithURL:cachePolicy:timeoutInterval:",
10718 "initWithURL:cached:",
10719 "initWithURL:documentAttributes:",
10720 "initWithURL:options:documentAttributes:error:",
10721 "initWithURL:target:parent:title:",
10722 "initWithURL:title:",
10723 "initWithURL:traverseLink:",
10724 "initWithURLString:title:lastVisitedTimeInterval:",
10725 "initWithUTF8String:",
10726 "initWithUnavoidableSpecifier:path:url:isSymbolicLink:",
10727 "initWithUnsignedChar:",
10728 "initWithUnsignedInt:",
10729 "initWithUnsignedLong:",
10730 "initWithUnsignedLongLong:",
10731 "initWithUnsignedShort:",
10732 "initWithUser:",
10733 "initWithUser:password:persistence:",
10734 "initWithValue:sqlType:",
10735 "initWithValues:count:",
10736 "initWithValues:objectID:",
10737 "initWithView:",
10738 "initWithView:className:",
10739 "initWithView:context:",
10740 "initWithView:height:fill:isHorizontal:",
10741 "initWithView:layoutManager:characterIndex:attachmentCell:",
10742 "initWithView:printInfo:",
10743 "initWithVoice:",
10744 "initWithWebFrame:",
10745 "initWithWebFrameView:",
10746 "initWithWhite:alpha:",
10747 "initWithWindow:",
10748 "initWithWindow:rect:",
10749 "initWithWindowNibName:",
10750 "initWithWindowNibName:owner:",
10751 "initWithX:",
10752 "initWithX:Y:",
10753 "initWithX:Y:Z:",
10754 "initWithX:Y:Z:W:",
10755 "initWithXMLNode:objectID:",
10756 "initWithXMLString:",
10757 "initWithYear:month:day:hour:minute:second:timeZone:",
10758 "initialFirstResponder",
10759 "initialPoint",
10760 "initialRequest",
10761 "initialValues",
10762 "initialize",
10763 "initialize:",
10764 "initializeButtonStructureAtX:y:forResolution:",
10765 "initializeFromDefaults",
10766 "initializeItem:",
10767 "initializeRecipe:",
10768 "initializeSettings:",
10769 "initializerFromKeyArray:",
10770 "inlayROI:forRect:",
10771 "innerRect",
10772 "innerTitleRect",
10773 "inputClientBecomeActive:",
10774 "inputClientDisabled:",
10775 "inputClientEnabled:",
10776 "inputClientResignActive:",
10777 "inputContext",
10778 "inputContextForFirstTextView:",
10779 "inputContextWithClient:",
10780 "inputElementAltText",
10781 "inputKeyBindingManager",
10782 "inputKeys",
10783 "inputStreamWithFileAtPath:",
10784 "insert:",
10785 "insertAttributedString:atIndex:",
10786 "insertBacktab:",
10787 "insertChild:atIndex:",
10788 "insertColor:key:atIndex:",
10789 "insertColumn:",
10790 "insertColumn:withCells:",
10791 "insertCompletion:forPartialWordRange:movement:isFinal:",
10792 "insertCorrelation:",
10793 "insertDescriptor:atIndex:",
10794 "insertElement:atIndex:",
10795 "insertElement:range:coalesceRuns:",
10796 "insertElements:count:atIndex:",
10797 "insertEntity:intoOrderingArray:withDependencies:processingSet:",
10798 "insertEntry:atIndex:",
10799 "insertGlyph:atGlyphIndex:characterIndex:",
10800 "insertGlyphs:",
10801 "insertGlyphs:length:forStartingGlyphAtIndex:characterIndex:",
10802 "insertItem:atDateIndex:",
10803 "insertItem:atIndex:",
10804 "insertItem:path:dirInfo:zone:plist:",
10805 "insertItemViewer:atIndex:",
10806 "insertItemWithItemIdentifier:atIndex:",
10807 "insertItemWithObjectValue:atIndex:",
10808 "insertItemWithTitle:action:keyEquivalent:atIndex:",
10809 "insertItemWithTitle:atIndex:",
10810 "insertLineBreak",
10811 "insertNewButtonImage:in:",
10812 "insertNewline:",
10813 "insertNode:atSubNodeIndex:",
10814 "insertObject:",
10815 "insertObject:at:",
10816 "insertObject:atArrangedObjectIndex:",
10817 "insertObject:atArrangedObjectIndexPath:",
10818 "insertObject:atIndex:",
10819 "insertObject:inAttributesAtIndex:",
10820 "insertObject:inNamespacesAtIndex:",
10821 "insertObject:range:",
10822 "insertObjectIntoMasterArrayRelationship:atIndex:selectionMode:",
10823 "insertObjects:atArrangedObjectIndexes:",
10824 "insertObjects:atIndexes:",
10825 "insertObjectsIntoMasterArrayRelationship:atIndexes:selectionMode:",
10826 "insertParagraphSeparator",
10827 "insertParagraphSeparatorInQuotedContent",
10828 "insertPopItemWithTitle:andObject:",
10829 "insertProxy:",
10830 "insertRow:",
10831 "insertRow:withCells:",
10832 "insertRows:atIndex:",
10833 "insertStatement",
10834 "insertString:atIndex:",
10835 "insertTab:",
10836 "insertTable:",
10837 "insertText:",
10838 "insertText:client:",
10839 "insertText:selectInsertedText:",
10840 "insertTextContainer:atIndex:",
10841 "insertValue:atIndex:inPropertyWithKey:",
10842 "insertValue:inPropertyWithKey:",
10843 "insertedObjects",
10844 "insertionContainer",
10845 "insertionIndex",
10846 "insertionKey",
10847 "insertionPointColor",
10848 "insertionReplaces",
10849 "insertsNullPlaceholder",
10850 "insetByX:Y:",
10851 "installInFrame:",
10852 "installInputManagerMenu:",
10853 "installKeyEventHandler",
10854 "installedPlugins",
10855 "instanceMethodDescFor:",
10856 "instanceMethodDescriptionForSelector:",
10857 "instanceMethodFor:",
10858 "instanceMethodForSelector:",
10859 "instanceMethodSignatureForSelector:",
10860 "instancesImplementSelector:",
10861 "instancesRespondTo:",
10862 "instancesRespondToSelector:",
10863 "instantiate::",
10864 "instantiateNibWithExternalNameTable:",
10865 "instantiateNibWithOwner:topLevelObjects:",
10866 "instantiateObject:",
10867 "instantiateWithObjectInstantiator:",
10868 "int32Value",
10869 "intAttribute:forGlyphAtIndex:",
10870 "intParameterValue:",
10871 "intValue",
10872 "integerForKey:",
10873 "intercellSpacing",
10874 "interceptKeyEvent:toView:",
10875 "interfaceStyle",
10876 "internCString:pointer:",
10877 "internalNameForEntityName:version:",
10878 "internalNameForPropertyName:version:",
10879 "internalSaveTo:removeBackup:errorHandler:",
10880 "internalSaveTo:removeBackup:errorHandler:temp:backup:",
10881 "internalWritePath:errorHandler:remapContents:hardLinkPath:",
10882 "interpretEventAsCommand:forClient:",
10883 "interpretEventAsText:forClient:",
10884 "interpretKeyEvents:",
10885 "interpretKeyEvents:forClient:",
10886 "interpretKeyEvents:sender:",
10887 "interpreterBuiltins",
10888 "interpreterCount",
10889 "interruptForPolicyChangeError",
10890 "intersectSet:",
10891 "intersectWith:",
10892 "intersectWithRect:",
10893 "intersectsSet:",
10894 "intervalSinceLastActive",
10895 "invTransform:",
10896 "invTransformRect:",
10897 "invalidate",
10898 "invalidate:",
10899 "invalidateAttributesInRange:",
10900 "invalidateCacheAndStorage",
10901 "invalidateCachedDrawingImage",
10902 "invalidateConnectionsAsNecessary:",
10903 "invalidateCursorRectsForView:",
10904 "invalidateDisplayForCharacterRange:",
10905 "invalidateDisplayForGlyphRange:",
10906 "invalidateFocus:",
10907 "invalidateGlyphsForCharacterRange:changeInLength:actualCharacterRange:",
10908 "invalidateHashMarks",
10909 "invalidateLayoutForCharacterRange:isSoft:actualCharacterRange:",
10910 "invalidateObjectValueInObject:",
10911 "invalidateObjectsWithGlobalIDs:",
10912 "invalidateProxy",
10913 "invalidateRect:",
10914 "invalidateRegion:",
10915 "invalidateShadow",
10916 "invalidateTextContainerOrigin",
10917 "inverseColumnName",
10918 "inverseForRelationshipKey:",
10919 "inverseManyToMany",
10920 "inverseRelationship",
10921 "inverseToOne",
10922 "invert",
10923 "invertedSet",
10924 "invfk",
10925 "invocationWithMethodSignature:",
10926 "invoke",
10927 "invokeDefaultMethodWithArguments:",
10928 "invokeSelector:withArguments:forBinding:atIndex:error:",
10929 "invokeSelector:withArguments:forBinding:atIndexPath:error:",
10930 "invokeSelector:withArguments:forBinding:error:",
10931 "invokeSelector:withArguments:forBinding:object:",
10932 "invokeServiceIn:msg:pb:userData:error:",
10933 "invokeServiceIn:msg:pb:userData:menu:remoteServices:",
10934 "invokeUndefinedMethodFromWebScript:withArguments:",
10935 "invokeWithTarget:",
10936 "invokesSeparatelyWithArrayObjectsWithBinding:",
10937 "isARepeat",
10938 "isAbsolutePath",
10939 "isAbstract",
10940 "isActive",
10941 "isAlias",
10942 "isAlternate",
10943 "isAncestorOfObject:",
10944 "isAnimating",
10945 "isAnimationFinished",
10946 "isAtEnd",
10947 "isAttached",
10948 "isAttribute",
10949 "isAutodisplay",
10950 "isBeginMark",
10951 "isBeingEdited",
10952 "isBezeled",
10953 "isBindingKeyOptional:",
10954 "isBindingKeyless:",
10955 "isBindingReadOnly:",
10956 "isBooleanValueBindingForObject:",
10957 "isBordered",
10958 "isButtonBordered",
10959 "isByref",
10960 "isCachedSeparately",
10961 "isCaseInsensitiveLike:",
10962 "isCharacterSmartReplaceExempt:isPreviousCharacter:",
10963 "isCoalescing",
10964 "isColor",
10965 "isColumn",
10966 "isColumnSelected:",
10967 "isCompiled",
10968 "isConnected",
10969 "isContainer",
10970 "isContentEditable",
10971 "isContextHelpModeActive",
10972 "isContinuous",
10973 "isContinuousGrammarCheckingEnabled",
10974 "isContinuousSpellCheckingEnabled",
10975 "isCopyingOperation",
10976 "isCurrListEditable",
10977 "isDataRetained",
10978 "isDaylightSavingTime",
10979 "isDaylightSavingTimeForDate:",
10980 "isDebugEnabled",
10981 "isDeletableFileAtPath:",
10982 "isDeleted",
10983 "isDescendantOf:",
10984 "isDescendantOfNode:",
10985 "isDirectory",
10986 "isDirectoryNode:",
10987 "isDisconnectedMountPoint",
10988 "isDisplayPostingDisabled",
10989 "isDocumentEdited",
10990 "isDone",
10991 "isDragging",
10992 "isDrawingContentAtIndex:",
10993 "isDrawingToScreen",
10994 "isDroppedConnectionException:",
10995 "isEPSOperation",
10996 "isEditable",
10997 "isEditableIfEnabled",
10998 "isEditableQuery",
10999 "isEditing",
11000 "isEditingAtIndex:withObject:",
11001 "isEditingAtIndexPath:withObject:",
11002 "isEditingWithObject:",
11003 "isEjectable",
11004 "isEmpty",
11005 "isEmptyHTMLElement:",
11006 "isEnabled",
11007 "isEnabledForSegment:",
11008 "isEndMark",
11009 "isEnteringProximity",
11010 "isEntryAcceptable:",
11011 "isEnumeration",
11012 "isEqual:",
11013 "isEqualTo:",
11014 "isEqualToArray:",
11015 "isEqualToAttributedString:",
11016 "isEqualToData:",
11017 "isEqualToDate:",
11018 "isEqualToDictionary:",
11019 "isEqualToIndexSet:",
11020 "isEqualToNumber:",
11021 "isEqualToSet:",
11022 "isEqualToString:",
11023 "isEqualToTimeZone:",
11024 "isEqualToValue:",
11025 "isErrorStatusCode:",
11026 "isExcludedFromWindowsMenu",
11027 "isExecutableFileAtPath:",
11028 "isExpandable:",
11029 "isExpandableAtArrangedObjectIndexPath:",
11030 "isExpanded",
11031 "isExpandedNode:",
11032 "isExtensionHidden",
11033 "isFault",
11034 "isFauxDisabled",
11035 "isFauxDisabledNode:",
11036 "isFetchInProgress",
11037 "isFieldEditor",
11038 "isFileListOrderedAscending",
11039 "isFileListOrderedCaseSensitive",
11040 "isFilePackageAtPath:",
11041 "isFilePropertyDisplayed:",
11042 "isFileURL",
11043 "isFinishedDecoding",
11044 "isFirstAndKey",
11045 "isFixedPitch",
11046 "isFlipped",
11047 "isFloatingPanel",
11048 "isFlushDisabled",
11049 "isFlushWindowDisabled",
11050 "isFontFixedPitch:",
11051 "isFrameSet",
11052 "isGatheringResults",
11053 "isGreaterThan:",
11054 "isGreaterThanOrEqualTo:",
11055 "isHeartBeatThread",
11056 "isHidden",
11057 "isHiddenOrHasHiddenAncestor",
11058 "isHighlighted",
11059 "isHorizontal",
11060 "isHorizontallyCentered",
11061 "isHorizontallyResizable",
11062 "isInInterfaceBuilder",
11063 "isInMotion",
11064 "isIndeterminate",
11065 "isInserted",
11066 "isInvalidationCapableObject:withSelector:",
11067 "isItemExpanded:",
11068 "isItemSelected",
11069 "isItemShownInPopupIfSoleEntry:",
11070 "isJavaEnabled",
11071 "isJavaPlugIn",
11072 "isJavaScriptEnabled",
11073 "isKey:inTable:",
11074 "isKeyExcludedFromWebScript:",
11075 "isKeyWindow",
11076 "isKindOf:",
11077 "isKindOfClass:",
11078 "isKindOfClassNamed:",
11079 "isLeaf",
11080 "isLenient",
11081 "isLessThan:",
11082 "isLessThanOrEqualTo:",
11083 "isLike:",
11084 "isLinearX0:y0:x1:y1:x2:y2:",
11085 "isList",
11086 "isLoaded",
11087 "isLoading",
11088 "isLocationRequiredToCreate",
11089 "isLocationRequiredToCreateForKey:",
11090 "isLocking",
11091 "isMainWindow",
11092 "isMakeHistoryEnabled",
11093 "isManyToMany",
11094 "isMaster",
11095 "isMemberOf:",
11096 "isMemberOfClass:",
11097 "isMemberOfClassNamed:",
11098 "isMiniaturized",
11099 "isMovable",
11100 "isMovableByWindowBackground",
11101 "isMultiThreaded",
11102 "isMutable",
11103 "isMuted",
11104 "isNSIDispatchProxy",
11105 "isNativeType:",
11106 "isNegation",
11107 "isNewWindowEqualToOldWindow",
11108 "isNotEqualTo:",
11109 "isNull",
11110 "isObjectID:equalTo:",
11111 "isObjectTableColumnDataCell:",
11112 "isObscured",
11113 "isOneShot",
11114 "isOneway",
11115 "isOpaque",
11116 "isOpen",
11117 "isOptional",
11118 "isPackage",
11119 "isPaged",
11120 "isPartialStringValid:newEditingString:errorDescription:",
11121 "isPartialStringValid:proposedSelectedRange:originalString:originalSelectedRange:errorDescription:",
11122 "isPlaceholderForMarkerExplicitlySet:",
11123 "isPlanar",
11124 "isPlaying",
11125 "isPlugInView:",
11126 "isPluginViewStarted",
11127 "isPreview",
11128 "isPreviewColumn",
11129 "isPrimaryKey",
11130 "isProxy",
11131 "isQuery",
11132 "isQuickTimePlugIn",
11133 "isReadOnly",
11134 "isReadableFileAtPath:",
11135 "isRedoing",
11136 "isReflexive",
11137 "isRegularFile",
11138 "isRelationship",
11139 "isReleasedWhenClosed",
11140 "isReloading",
11141 "isResizable",
11142 "isRichText",
11143 "isRightToLeft",
11144 "isRootEntity",
11145 "isRotatedFromBase",
11146 "isRotatedOrScaledFromBase",
11147 "isRowSelected:",
11148 "isRulerVisible",
11149 "isRunning",
11150 "isScalarProperty",
11151 "isScrollable",
11152 "isSearchable",
11153 "isSecure",
11154 "isSelectable",
11155 "isSelected",
11156 "isSelectedForSegment:",
11157 "isSelectionByRect",
11158 "isSelectionEditable",
11159 "isSelectorExcludedFromWebScript:",
11160 "isSeparatorItem",
11161 "isSessionOnly",
11162 "isSheet",
11163 "isSimpleRectangularTextContainer",
11164 "isSingleAttribute:",
11165 "isSingleDTDNode",
11166 "isSingleTableEntity",
11167 "isSizeDisplayedForNode:",
11168 "isSpeaking",
11169 "isStandalone",
11170 "isStarted",
11171 "isStatusBarVisible",
11172 "isSubclassOfClass:",
11173 "isSubsetOfSet:",
11174 "isSubviewCollapsed:",
11175 "isSuperclassOfClass:",
11176 "isSymbolicLink",
11177 "isTargetItem",
11178 "isTemporary",
11179 "isTemporaryID",
11180 "isTestingInterface",
11181 "isTitled",
11182 "isToMany",
11183 "isToManyKey:",
11184 "isToOne",
11185 "isTornOff",
11186 "isTracking",
11187 "isTransient",
11188 "isTransparent",
11189 "isTrue",
11190 "isTypeNotExclusive:",
11191 "isUndoing",
11192 "isUpdated",
11193 "isUsableWithObject:",
11194 "isValid",
11195 "isValidGlyphIndex:",
11196 "isVertical",
11197 "isVerticallyCentered",
11198 "isVerticallyResizable",
11199 "isViewOfPickerLoaded:",
11200 "isVirtual",
11201 "isVisible",
11202 "isVolume",
11203 "isWellFormed",
11204 "isWindowInFocusStack:",
11205 "isWindowLoaded",
11206 "isWord:inDictionaries:caseSensitive:",
11207 "isWordInUserDictionaries:caseSensitive:",
11208 "isWritableFileAtPath:",
11209 "isZoomed",
11210 "isaForAutonotifying",
11211 "islamicCalendar",
11212 "islamicCivilCalendar",
11213 "issueCopyCommand",
11214 "issueCutCommand",
11215 "issuePasteCommand",
11216 "item",
11217 "itemAdded:",
11218 "itemArray",
11219 "itemAtIndex:",
11220 "itemAtRow:",
11221 "itemChanged:",
11222 "itemForURL:",
11223 "itemForURLString:",
11224 "itemHeight",
11225 "itemIdentifier",
11226 "itemIdentifierForColorPicker:",
11227 "itemMatrix",
11228 "itemObjectValueAtIndex:",
11229 "itemRemoved:",
11230 "itemTitleAtIndex:",
11231 "itemTitles",
11232 "itemWithTag:",
11233 "itemWithTitle:",
11234 "items",
11235 "ivar",
11236 "japaneseCalendar",
11237 "javaScriptCanOpenWindowsAutomatically",
11238 "jobDisposition",
11239 "jobWillBeDeallocated",
11240 "joinSemantic",
11241 "joinWithSourceAttributeName:destinationAttributeName:",
11242 "joins",
11243 "joinsForRelationship:",
11244 "jumpSlider:",
11245 "jumpToSelection",
11246 "jumpToSelection:",
11247 "justifyWithFactor:",
11248 "keepBackupFile",
11249 "kernelsWithString:",
11250 "key",
11251 "keyBackPointer",
11252 "keyBindingManager",
11253 "keyBindingManagerForClient:",
11254 "keyBindingState",
11255 "keyCell",
11256 "keyClassDescription",
11257 "keyCode",
11258 "keyDown:",
11259 "keyDown:inRect:ofView:",
11260 "keyEnumerator",
11261 "keyEquivalent",
11262 "keyEquivalentAttributedString",
11263 "keyEquivalentFont",
11264 "keyEquivalentModifierMask",
11265 "keyEquivalentOffset",
11266 "keyEquivalentRectForBounds:",
11267 "keyEquivalentWidth",
11268 "keyEventWithType:location:modifierFlags:timestamp:windowNumber:context:characters:charactersIgnoringModifiers:isARepeat:keyCode:",
11269 "keyForFileWrapper:",
11270 "keyForParameter:",
11271 "keyMessageForEvent:",
11272 "keyPath",
11273 "keyPathExpressionForString:",
11274 "keyPathForBinding:",
11275 "keyPathIfAffectedByValueForKey:exactMatch:",
11276 "keySpecifier",
11277 "keyUp:",
11278 "keyUp:inRect:ofView:",
11279 "keyValueBindingForKey:typeMask:",
11280 "keyViewSelectionDirection",
11281 "keyWindow",
11282 "keyWindowFrameHighlightColor",
11283 "keyWindowFrameShadowColor",
11284 "keyWithAppleEventCode:",
11285 "keyboardFocusIndicatorColor",
11286 "keyboardUIMode",
11287 "keys",
11288 "keywordForDescriptorAtIndex:",
11289 "kind",
11290 "knobColor",
11291 "knobProportion",
11292 "knobRectFlipped:",
11293 "knobThickness",
11294 "knownKeyValuesForObjectID:withContext:",
11295 "knownKeyValuesPointer",
11296 "knowsPageRange:",
11297 "knowsPagesFirst:last:",
11298 "label",
11299 "labelColor",
11300 "labelFontOfSize:",
11301 "labelForSegment:",
11302 "labelOnlyMenuDidSendActionNotification:",
11303 "labelRectOfRow:",
11304 "labelSizeForBounds:",
11305 "lanczosTable",
11306 "language",
11307 "languageCode",
11308 "languageContext",
11309 "languageContextWithName:",
11310 "languageLevel",
11311 "languageModel",
11312 "languageName",
11313 "languageWithName:",
11314 "lastChild",
11315 "lastColumn",
11316 "lastComponent:",
11317 "lastComponentOfFileName",
11318 "lastConversation",
11319 "lastCrayon",
11320 "lastIndex",
11321 "lastItem",
11322 "lastModifiedDate",
11323 "lastObject",
11324 "lastPathComponent",
11325 "lastRange",
11326 "lastResortFont",
11327 "lastSelectedItem",
11328 "lastVisibleColumn",
11329 "launch",
11330 "launchAppWithBundleIdentifier:options:additionalEventParamDescriptor:launchIdentifier:",
11331 "launchApplication:",
11332 "launchRealPlayer",
11333 "launchWithDictionary:",
11334 "launchedApplications",
11335 "launchedTaskWithLaunchPath:arguments:",
11336 "layout",
11337 "layoutControlGlyphForLineFragment:",
11338 "layoutForStartingGlyphAtIndex:characterIndex:minPosition:maxPosition:lineFragmentRect:",
11339 "layoutGlyphsInHorizontalLineFragment:baseline:",
11340 "layoutGlyphsInLayoutManager:startingAtGlyphIndex:maxNumberOfLineFragments:nextGlyphIndex:",
11341 "layoutManager",
11342 "layoutManager:didCompleteLayoutForTextContainer:atEnd:",
11343 "layoutManagerDidInvalidateLayout:",
11344 "layoutManagerOwnsFirstResponderInWindow:",
11345 "layoutManagers",
11346 "layoutOptions",
11347 "layoutParagraphAtPoint:",
11348 "layoutRectForTextBlock:atIndex:effectiveRange:",
11349 "layoutTab",
11350 "layoutToFitInIconWidth:",
11351 "layoutToFitInMinimumIconSize",
11352 "layoutToFitInViewerFrameHeight:",
11353 "layoutToMinimumPageWidth:maximumPageWidth:adjustingViewSize:",
11354 "lazyBrowserCell",
11355 "lazyGetChildrenForNodeWithIdentifier:",
11356 "lazySync:",
11357 "leading",
11358 "leadingOffset",
11359 "leafKeyPath",
11360 "learnWord:",
11361 "learnWord:language:",
11362 "leftChild",
11363 "leftExpression",
11364 "leftIndentMarkerWithRulerView:location:",
11365 "leftMargin",
11366 "leftSplitItem",
11367 "leftTabMarkerWithRulerView:location:",
11368 "leftView",
11369 "length",
11370 "letterCharacterSet",
11371 "level",
11372 "levelForItem:",
11373 "levelForRow:",
11374 "libxml2Content",
11375 "lightGrayColor",
11376 "lightweightHandleChildChanged:parent:property:",
11377 "like:",
11378 "limitDateForMode:",
11379 "lineBreakBeforeIndex:withinRange:",
11380 "lineBreakByHyphenatingBeforeIndex:withinRange:",
11381 "lineBreakHandler",
11382 "lineBreakInString:beforeIndex:withinRange:useBook:",
11383 "lineBreakMode",
11384 "lineCapStyle",
11385 "lineFragmentPadding",
11386 "lineFragmentRectForGlyphAtIndex:effectiveRange:",
11387 "lineFragmentRectForGlyphAtIndex:effectiveRange:withoutAdditionalLayout:",
11388 "lineFragmentRectForProposedRect:remainingRect:",
11389 "lineFragmentRectForProposedRect:sweepDirection:movementDirection:remainingRect:",
11390 "lineFragmentUsedRectForGlyphAtIndex:effectiveRange:",
11391 "lineFragmentUsedRectForGlyphAtIndex:effectiveRange:withoutAdditionalLayout:",
11392 "lineFragmentWidth",
11393 "lineHeightMultiple",
11394 "lineJoinStyle",
11395 "lineNumber",
11396 "lineRangeForRange:",
11397 "lineSpacing",
11398 "lineSpacingAfterGlyphAtIndex:withProposedLineFragmentRect:",
11399 "lineToPoint:",
11400 "lineWidth",
11401 "lineWidthForType:",
11402 "linkPath:toPath:handler:",
11403 "linkTextAttributes",
11404 "linkWithCharacterRange:parent:",
11405 "listDescriptor",
11406 "listDictionary",
11407 "listOptions",
11408 "listeners",
11409 "listensInForegroundOnly",
11410 "load",
11411 "load:",
11412 "loadAndRestoreCurrentBrowsingNodePath:selectedNodes:",
11413 "loadArchive",
11414 "loadArchive:",
11415 "loadBitmapFileHeader",
11416 "loadBitmapInfoHeader",
11417 "loadClass:",
11418 "loadColorLists",
11419 "loadColumnZero",
11420 "loadData:MIMEType:textEncodingName:baseURL:",
11421 "loadDataRepresentation:ofType:",
11422 "loadDidFinish",
11423 "loadDidSucceed",
11424 "loadEmptyDocumentSynchronously",
11425 "loadFaces:",
11426 "loadFileWrapperRepresentation:ofType:",
11427 "loadFindStringFromPasteboard",
11428 "loadFindStringToPasteboard",
11429 "loadFinished",
11430 "loadFromURL:error:",
11431 "loadImage:",
11432 "loadImageHeader",
11433 "loadImageWithName:",
11434 "loadInBackground",
11435 "loadInForeground",
11436 "loadKernel",
11437 "loadLibrary:",
11438 "loadNib",
11439 "loadNibFile:externalNameTable:withZone:",
11440 "loadNibNamed:owner:",
11441 "loadPanelNamed:",
11442 "loadPlugIn",
11443 "loadPlugIn:allowNonExecutable:",
11444 "loadPluginRequest:",
11445 "loadRecipeOverrides:",
11446 "loadRequest:",
11447 "loadRequest:inTarget:withNotifyData:sendNotification:",
11448 "loadRulebook:",
11449 "loadSoundWithName:",
11450 "loadSuiteWithDictionary:fromBundle:",
11451 "loadSuitesFromBundle:",
11452 "loadTidy",
11453 "loadType",
11454 "loadUI",
11455 "loadURL:referrer:reload:userGesture:target:triggeringEvent:form:formValues:",
11456 "loadWindow",
11457 "loadWithRequest:",
11458 "loadWithRequestNow:",
11459 "loadedBundles",
11460 "loadedCellAtRow:column:",
11461 "loadsImagesAutomatically",
11462 "localName",
11463 "localNameForName:",
11464 "localObjects",
11465 "localProxies",
11466 "localSnapshotForGlobalID:",
11467 "localSnapshotForSourceGlobalID:relationshipName:",
11468 "localTimeZone",
11469 "locale",
11470 "localeIdentifier",
11471 "localizationDictionary",
11472 "localizations",
11473 "localizationsToSearch",
11474 "localizedCaseInsensitiveCompare:",
11475 "localizedColorNameComponent",
11476 "localizedCompare:",
11477 "localizedDescription",
11478 "localizedEntityNameForEntity:",
11479 "localizedFormattedDisplayLabels",
11480 "localizedInfoDictionary",
11481 "localizedInputManagerName",
11482 "localizedModelStringForKey:",
11483 "localizedName",
11484 "localizedNameForFamily:face:",
11485 "localizedNameOfStringEncoding:",
11486 "localizedPropertyNameForProperty:",
11487 "localizedRecoveryOptions",
11488 "localizedRecoverySuggestion",
11489 "localizedStringForKey:value:table:",
11490 "localizedStringWithFormat:",
11491 "localizesFormat",
11492 "location",
11493 "locationForGlyphAtIndex:",
11494 "locationForSubmenu:",
11495 "locationInWindow",
11496 "locationOfPrintRect:",
11497 "locationProperties",
11498 "locationX",
11499 "locationY",
11500 "locationZ",
11501 "lock",
11502 "lockDocument",
11503 "lockFocus",
11504 "lockFocusForView:inRect:needsTranslation:",
11505 "lockFocusIfCanDraw",
11506 "lockFocusIfCanDrawInFrame:flipped:clip:",
11507 "lockFocusOnRepresentation:",
11508 "lockForReading",
11509 "lockForReadingWithExceptionHandler:",
11510 "lockForWriting",
11511 "lockObjectStore",
11512 "lockParentStore",
11513 "lockWhenCondition:",
11514 "lockWhenCondition:beforeDate:",
11515 "logicalSize",
11516 "loginWindowDidSwitchFromUser:",
11517 "loginWindowDidSwitchToUser:",
11518 "logonButtonCell",
11519 "longCharacterIsMember:",
11520 "longLongValue",
11521 "longValue",
11522 "loopCount",
11523 "loosenKerning:",
11524 "lossyCString",
11525 "lowerBaseline:",
11526 "lowercaseLetterCharacterSet",
11527 "lowercaseString",
11528 "machPort",
11529 "magentaColor",
11530 "magentaComponent",
11531 "mainBundle",
11532 "mainDocumentURL",
11533 "mainFrame",
11534 "mainMenu",
11535 "mainResource",
11536 "mainScreen",
11537 "mainWindow",
11538 "mainWindowFrameColor",
11539 "mainWindowFrameHighlightColor",
11540 "mainWindowFrameShadowColor",
11541 "maintainsInactiveSelection",
11542 "makeCellAtRow:column:",
11543 "makeCharacterSetCompact",
11544 "makeCharacterSetFast",
11545 "makeCurrentContext",
11546 "makeDocumentForURL:withContentsOfURL:ofType:error:",
11547 "makeDocumentWithContentsOfFile:ofType:",
11548 "makeDocumentWithContentsOfURL:ofType:error:",
11549 "makeFirstResponder:",
11550 "makeIdentity",
11551 "makeImmutable",
11552 "makeKeyAndOrderFront:",
11553 "makeKeyWindow",
11554 "makeMainWindow",
11555 "makeNewConnection:sender:",
11556 "makeNextSegmentKey",
11557 "makeObjectsPerformSelector:",
11558 "makeObjectsPerformSelector:withObject:",
11559 "makePreviousSegmentKey",
11560 "makeRegexFindSafe:",
11561 "makeRegexSafe:",
11562 "makeStale",
11563 "makeTextLarger:",
11564 "makeTextSmaller:",
11565 "makeUntitledDocumentOfType:",
11566 "makeUntitledDocumentOfType:error:",
11567 "makeWebViewsPerformSelector:",
11568 "makeWindowControllers",
11569 "makeWindowsPerform:inOrder:",
11570 "managedObjectClassName",
11571 "managedObjectContext",
11572 "managedObjectIDFromURIRepresentation:",
11573 "managedObjectModel",
11574 "manyToMany",
11575 "manyToManyDeltas",
11576 "manyToManyRelationships",
11577 "mapConversationToThread:",
11578 "mapData",
11579 "mapForClass:",
11580 "mapROI:forRect:",
11581 "mapping",
11582 "mappingForAttribute:forConfigurationWithName:",
11583 "mappingForEntity:forConfigurationWithName:",
11584 "mappingForRelationship:forConfigurationWithName:",
11585 "mappingsForConfigurationWithName:inModel:",
11586 "markBegin",
11587 "markDOMRange",
11588 "markEnd",
11589 "markNumRowsToToggleVisible",
11590 "markedRange",
11591 "markedTextAbandoned:",
11592 "markedTextAttributes",
11593 "markedTextDOMRange",
11594 "markedTextSelectionChanged:client:",
11595 "marker",
11596 "markerForItemNumber:",
11597 "markerFormat",
11598 "markerLocation",
11599 "markerWithRulerMarker:parent:",
11600 "markers",
11601 "markupStringFromNode:nodes:",
11602 "markupStringFromRange:nodes:",
11603 "matchLabels:againstElement:",
11604 "matchQualityOfColorAtIndex:toColor:filtered:ifBetterThan:",
11605 "matches:",
11606 "matchesOnMultipleResolution",
11607 "matchesPattern:caseInsensitive:",
11608 "matchesWithoutOperatorComponentsKeyPath:",
11609 "matchingFontDescriptorsWithMandatoryKeys:",
11610 "matrix",
11611 "matrixInColumn:",
11612 "max",
11613 "maxContentSize",
11614 "maxCount",
11615 "maxDate",
11616 "maxFormattedDisplayLabelWidth",
11617 "maxSize",
11618 "maxValue",
11619 "maxWidth",
11620 "maximizeWindow:",
11621 "maximum",
11622 "maximumDecimalNumber",
11623 "maximumHeight",
11624 "maximumLength",
11625 "maximumLineHeight",
11626 "maximumRange",
11627 "maximumRecentDocumentCount",
11628 "mayDHTMLCopy",
11629 "mayDHTMLCut",
11630 "mayDHTMLPaste",
11631 "mayStartDragAtEventLocation:",
11632 "mblurROI:forRect:userInfo:",
11633 "measurementUnits",
11634 "measurements:fromResolutionData:",
11635 "mediaBox",
11636 "mediaStyle",
11637 "member:",
11638 "menu",
11639 "menu:updateItem:atIndex:shouldCancel:",
11640 "menuBarHeight",
11641 "menuBarVisible",
11642 "menuChanged:",
11643 "menuChangedMessagesEnabled",
11644 "menuClass",
11645 "menuClassName",
11646 "menuDelegateChanged",
11647 "menuFontOfSize:",
11648 "menuForEvent:",
11649 "menuForEvent:inRect:ofView:",
11650 "menuForSegment:",
11651 "menuFormRepresentation",
11652 "menuHasKeyEquivalent:forEvent:",
11653 "menuHasKeyEquivalent:forEvent:target:action:",
11654 "menuItem",
11655 "menuItemCellForItemAtIndex:",
11656 "menuItemWithTag:",
11657 "menuKeyEquivalentAction:forEvent:",
11658 "menuKeyEquivalentTarget:forEvent:",
11659 "menuLocation",
11660 "menuNeedsUpdate:",
11661 "menuRepresentation",
11662 "menuView",
11663 "menuZone",
11664 "mergeAttributesInto:",
11665 "mergeCells",
11666 "mergeFontFeaturesInto:",
11667 "mergeFontVariationsInto:",
11668 "mergeInVariations:",
11669 "mergeStyleInto:",
11670 "mergedModelFromBundles:",
11671 "messageFontOfSize:",
11672 "metadataColumns",
11673 "metadataForPersistentStoreWithURL:error:",
11674 "metadataQuery:replacementObjectForResultObject:",
11675 "metadataQuery:replacementValueForAttribute:value:",
11676 "method",
11677 "methodArgSize:",
11678 "methodDescriptionForSelector:",
11679 "methodFor:",
11680 "methodForSelector:",
11681 "methodReturnLength",
11682 "methodReturnType",
11683 "methodSignature",
11684 "methodSignatureForSelector:",
11685 "methods",
11686 "migratePersistentStore:toURL:withType:error:",
11687 "minColumnWidth",
11688 "minContentSize",
11689 "minContentSizeForMinFrameSize:styleMask:",
11690 "minCount",
11691 "minDate",
11692 "minFrameSize",
11693 "minFrameSizeForMinContentSize:styleMask:",
11694 "minFrameWidthWithTitle:styleMask:",
11695 "minPickerContentSize",
11696 "minSize",
11697 "minValue",
11698 "minWidth",
11699 "miniaturize:",
11700 "minimizeButton",
11701 "minimizeWindow:",
11702 "minimum",
11703 "minimumDecimalNumber",
11704 "minimumFontSize",
11705 "minimumHeight",
11706 "minimumLineHeight",
11707 "minimumLogicalFontSize",
11708 "minimumWidth",
11709 "miniwindowTitle",
11710 "minusSet:",
11711 "minuteOfHour",
11712 "miterLimit",
11713 "mixedStateImage",
11714 "mnemonic",
11715 "mnemonicLocation",
11716 "modDate",
11717 "modalWindow",
11718 "mode",
11719 "modeButton",
11720 "model",
11721 "modelAndProxyKeysObserved",
11722 "modelByMergingModels:",
11723 "modifier",
11724 "modifierFlags",
11725 "modifiersForEvent:",
11726 "modifyFont:",
11727 "modifyFontTrait:",
11728 "modifyFontViaPanel:",
11729 "moduleCanBeRemoved",
11730 "moduleWasInstalled",
11731 "moduleWillBeRemoved",
11732 "monthOfYear",
11733 "mostCompatibleStringEncoding",
11734 "mountedRemovableMedia",
11735 "mouse:",
11736 "mouse:inRect:",
11737 "mouseDown:",
11738 "mouseDownCanMoveWindow",
11739 "mouseDownFlags",
11740 "mouseDownOnCharacterIndex:atCoordinate:withModifier:client:",
11741 "mouseDragged:",
11742 "mouseDraggedOnCharacterIndex:atCoordinate:withModifier:client:",
11743 "mouseEntered:",
11744 "mouseEnteredToolTip:inWindow:withEvent:",
11745 "mouseEventWithType:location:modifierFlags:timestamp:windowNumber:context:eventNumber:clickCount:pressure:",
11746 "mouseExited:",
11747 "mouseLocation",
11748 "mouseLocationOutsideOfEventStream",
11749 "mouseMoved:",
11750 "mouseMovedNotification:",
11751 "mouseTracker:constrainPoint:withEvent:",
11752 "mouseTracker:didStopTrackingWithEvent:",
11753 "mouseTracker:handlePeriodicEvent:",
11754 "mouseTracker:shouldContinueTrackingWithEvent:",
11755 "mouseTracker:shouldStartTrackingWithEvent:",
11756 "mouseUp:",
11757 "mouseUpOnCharacterIndex:atCoordinate:withModifier:client:",
11758 "moveBackward:",
11759 "moveBackwardAndModifySelection:",
11760 "moveColumn:toColumn:",
11761 "moveCurrentPointInDirection:",
11762 "moveDown:",
11763 "moveDragCaretToPoint:",
11764 "moveForward:",
11765 "moveForwardAndModifySelection:",
11766 "moveGlyphsTo:from:",
11767 "moveInDirection:",
11768 "moveLeft:",
11769 "movePath:toPath:handler:",
11770 "moveRight:",
11771 "moveSelectionToDragCaret:smartMove:",
11772 "moveToPoint:",
11773 "moveUp:",
11774 "moveWordBackward:",
11775 "moveWordBackwardAndModifySelection:",
11776 "moveWordForward:",
11777 "moveWordForwardAndModifySelection:",
11778 "movie",
11779 "movieController",
11780 "movieRect",
11781 "movieUnfilteredFileTypes",
11782 "movieUnfilteredPasteboardTypes",
11783 "multipleThreadsEnabled",
11784 "multiply:by:",
11785 "mutableArrayValueForBinding:resolveMarkersToPlaceholders:",
11786 "mutableArrayValueForKey:",
11787 "mutableArrayValueForKeyPath:",
11788 "mutableAttributes",
11789 "mutableBytes",
11790 "mutableCollectionGetter",
11791 "mutableCopy",
11792 "mutableCopyWithZone:",
11793 "mutableSetValueForBinding:resolveMarkersToPlaceholders:",
11794 "mutableSetValueForKey:",
11795 "mutableSetValueForKeyPath:",
11796 "mutableString",
11797 "mutableSubstringFromRange:",
11798 "mutatingMethods",
11799 "name",
11800 "nameAtIndex:filtered:",
11801 "nameFieldLabel",
11802 "nameFromPath:extra:",
11803 "names",
11804 "namesOfPromisedFilesDroppedAtDestination:",
11805 "namespaceForPrefix:",
11806 "namespaces",
11807 "navNodeClass",
11808 "navNodeWithSimpleQueryString:",
11809 "navView",
11810 "navView:compareFilename:with::caseSensitive:",
11811 "navView:compareFilename:with:caseSensitive:",
11812 "navView:shouldShowNode:",
11813 "needsAction",
11814 "needsDelegate",
11815 "needsDisplay",
11816 "needsLayout",
11817 "needsPanelToBecomeKey",
11818 "needsResyncWithDefaultVoice",
11819 "needsSizing",
11820 "needsToDrawRect:",
11821 "negativeFormat",
11822 "negativeInfinitySymbol",
11823 "nestingLevel",
11824 "netService:didNotPublish:",
11825 "netService:didNotResolve:",
11826 "netService:didUpdateTXTRecordData:",
11827 "netServiceBrowser:didFindDomain:moreComing:",
11828 "netServiceBrowser:didFindService:moreComing:",
11829 "netServiceBrowser:didNotSearch:",
11830 "netServiceBrowser:didRemoveDomain:moreComing:",
11831 "netServiceBrowser:didRemoveService:moreComing:",
11832 "netServiceBrowserDidStopSearch:",
11833 "netServiceBrowserWillSearch:",
11834 "netServiceDidResolveAddress:",
11835 "netServiceDidStop:",
11836 "netServiceWillPublish:",
11837 "netServiceWillResolve:",
11838 "networkNode",
11839 "new",
11840 "new:firstIndirectType:",
11841 "newCloseButton",
11842 "newColor:",
11843 "newColorName:",
11844 "newConversation",
11845 "newCount:",
11846 "newCreateTableStatementForEntity:",
11847 "newCreateTableStatementForManyToMany:",
11848 "newDataAvailable",
11849 "newDeleteStatementWithCorrelation:",
11850 "newDeleteStatementWithRow:",
11851 "newDistantObjectWithCoder:",
11852 "newDocument:",
11853 "newFetchedArray",
11854 "newFetchedRow",
11855 "newFetchedRowForObjectID:",
11856 "newFetchedRowsForObjectID:forManyToMany:",
11857 "newFetchedRowsForObjectID:forToMany:",
11858 "newFileButton",
11859 "newFlipped:",
11860 "newForeignEntityKeyNumberForSlot:",
11861 "newForeignKeyID:entity:",
11862 "newForeignKeyNumberForSlot:",
11863 "newGeneratorWithStatement:",
11864 "newInsertStatementWithCorrelation:",
11865 "newInsertStatementWithRow:",
11866 "newInsertedObject",
11867 "newInstanceWithKeyCount:sourceDescription:destinationDescription:zone:",
11868 "newInvocationWithCoder:",
11869 "newInvocationWithMethodSignature:",
11870 "newLegalColorSwatchHeightFromHeight:",
11871 "newListName:",
11872 "newMiniaturizeButton",
11873 "newNode",
11874 "newNodeWithIndex:belowIndexPath:firstChild:sibling:",
11875 "newObject",
11876 "newObjectIDForEntity:",
11877 "newObjectIDForEntity:pk:",
11878 "newPrimaryKey64",
11879 "newPrimaryKeyForEntity:",
11880 "newRowsForFetchRequest:",
11881 "newSelectStatementWithFetchRequest:",
11882 "newSiblingNodeAtIndex:",
11883 "newStandardItemWithItemIdentifier:",
11884 "newStatementWithEntity:",
11885 "newStatementWithSQLString:",
11886 "newStatementWithoutEntity",
11887 "newStream:target:stream:",
11888 "newTempNotificationWithName:object:userInfo:",
11889 "newToolbarButton",
11890 "newType:data:firstIndirectType:",
11891 "newUpdateStatementWithRow:",
11892 "newViewForToolbar:inWindow:attachedToEdge:",
11893 "newWithCoder:zone:",
11894 "newWithColorSpace:components:count:",
11895 "newWithDictionary:",
11896 "newWithInitializer:",
11897 "newWithInitializer:zone:",
11898 "newWithKey:object:",
11899 "newWithKeyArray:",
11900 "newWithKeyArray:zone:",
11901 "newWithPath:prepend:attributes:cross:",
11902 "newZoomButton",
11903 "nextEventForWindow:",
11904 "nextEventMatchingMask:",
11905 "nextEventMatchingMask:untilDate:inMode:dequeue:",
11906 "nextKeyView",
11907 "nextKeyViewInsideWebFrameViews",
11908 "nextKeyViewOutsideWebFrameViews",
11909 "nextObject",
11910 "nextPK64",
11911 "nextResponder",
11912 "nextSibling",
11913 "nextState",
11914 "nextToken",
11915 "nextValidKeyView",
11916 "nextWordFromIndex:forward:",
11917 "nextWordInString:fromIndex:useBook:forward:",
11918 "nibInstantiate",
11919 "nibInstantiateWithOwner:topLevelObjects:",
11920 "nilSymbol",
11921 "noGCAllowedObjectCount",
11922 "noResponderFor:",
11923 "node",
11924 "nodeAtIndexPath:",
11925 "nodeFromManagedObject:objectIDMap:",
11926 "nodeType",
11927 "nodeWithFBENode:",
11928 "nodeWithName:position:rect:view:children:",
11929 "nodeWithName:value:source:children:",
11930 "nodeWithPath:",
11931 "nodesForXPath:error:",
11932 "nodesFromList:",
11933 "noiseImage",
11934 "nonBaseCharacterSet",
11935 "nonmutatingMethods",
11936 "nonretainedObjectValue",
11937 "normalSpeakingRate",
11938 "normalizeAdjacentTextNodesPreservingCDATA:",
11939 "normalizeWhitespace:",
11940 "normalizedFontDescriptor",
11941 "normalizedRect:",
11942 "notANumber",
11943 "notANumberSymbol",
11944 "notActiveWindowFrameColor",
11945 "notActiveWindowFrameHighlightColor",
11946 "notActiveWindowFrameShadowColor",
11947 "notPredicateOperator",
11948 "notShownAttributeForGlyphAtIndex:",
11949 "notationName",
11950 "noteContentValueHasChanged",
11951 "noteFileSystemChanged:",
11952 "noteFontCollectionsChanged",
11953 "noteHeightOfRowsWithIndexesChanged:",
11954 "noteNewRecentDocument:",
11955 "noteNewRecentDocumentURL:",
11956 "noteNumberOfItemsChanged",
11957 "noteNumberOfRowsChanged",
11958 "noteQueryAttributesChanged",
11959 "notificationCenter",
11960 "notificationCenterForType:",
11961 "notificationWithName:object:",
11962 "notificationWithName:object:userInfo:",
11963 "notifyData",
11964 "null",
11965 "nullDescriptor",
11966 "numPendingOrLoadingRequests",
11967 "numRowsToToggleVisible",
11968 "numberOfArguments",
11969 "numberOfColorComponents",
11970 "numberOfColumns",
11971 "numberOfComponents",
11972 "numberOfGlyphs",
11973 "numberOfGroups",
11974 "numberOfImages",
11975 "numberOfItems",
11976 "numberOfItemsInComboBox:",
11977 "numberOfItemsInComboBoxCell:",
11978 "numberOfItemsInMenu:",
11979 "numberOfMajorTickMarks",
11980 "numberOfPages",
11981 "numberOfPlanes",
11982 "numberOfRows",
11983 "numberOfRowsInTableView:",
11984 "numberOfSelectedColumns",
11985 "numberOfSelectedRows",
11986 "numberOfTabViewItems",
11987 "numberOfTickMarks",
11988 "numberOfVisibleCols",
11989 "numberOfVisibleColumns",
11990 "numberOfVisibleItems",
11991 "numberOfVisibleRows",
11992 "numberWithBool:",
11993 "numberWithChar:",
11994 "numberWithDouble:",
11995 "numberWithFloat:",
11996 "numberWithInt:",
11997 "numberWithLong:",
11998 "numberWithLongLong:",
11999 "numberWithShort:",
12000 "numberWithUnsignedChar:",
12001 "numberWithUnsignedInt:",
12002 "numberWithUnsignedLong:",
12003 "numberWithUnsignedLongLong:",
12004 "numberWithUnsignedShort:",
12005 "objCType",
12006 "objcClassName",
12007 "objcCreationMethodName",
12008 "object",
12009 "object:shouldBind:toObject:withKeyPath:options:",
12010 "object:shouldUnbind:",
12011 "objectAt:",
12012 "objectAtIndex:",
12013 "objectAtIndex:effectiveRange:",
12014 "objectAtIndex:effectiveRange:runIndex:",
12015 "objectAtIndexPath:",
12016 "objectAtRunIndex:length:",
12017 "objectBeingTested",
12018 "objectByTranslatingDescriptor:toType:inSuite:",
12019 "objectClass",
12020 "objectCount",
12021 "objectDidBeginEditing:",
12022 "objectDidEndEditing:",
12023 "objectDidTriggerAction:",
12024 "objectDidTriggerDoubleClickAction:",
12025 "objectEnumerator",
12026 "objectForIndex:dictionary:",
12027 "objectForInfoDictionaryKey:",
12028 "objectForKey:",
12029 "objectForKey:inDomain:",
12030 "objectForServicePath:",
12031 "objectForServicePath:app:doLaunch:limitDate:",
12032 "objectForWebScript",
12033 "objectFrom:withIndex:",
12034 "objectID",
12035 "objectIDDataSize",
12036 "objectIDDataType",
12037 "objectIDFactoryForEntity:",
12038 "objectIDFactoryForSQLEntity:",
12039 "objectIDWithInteger32:",
12040 "objectIDWithInteger64:",
12041 "objectIDWithObject:",
12042 "objectIDsForRelationship:forObjectID:",
12043 "objectLoadedFromCacheWithURL:response:size:",
12044 "objectMechanismsRequired",
12045 "objectMechanismsRequiredForObject:",
12046 "objectRegisteredForID:",
12047 "objectSpecifier",
12048 "objectStore",
12049 "objectValue",
12050 "objectValueForDisplayValue:",
12051 "objectValueInvalidationCapableObjectForObject:",
12052 "objectValueOfSelectedItem",
12053 "objectValues",
12054 "objectWillChange:",
12055 "objectZone",
12056 "objectsAtIndexes:",
12057 "objectsByEvaluatingSpecifier",
12058 "objectsByEvaluatingWithContainers:",
12059 "objectsForFetchRequest:inContext:",
12060 "objectsForKeys:notFoundMarker:",
12061 "objectsForXQuery:constants:error:",
12062 "observationCount",
12063 "observationInfo",
12064 "observeKeyPathForBindingInfo:registerOrUnregister:object:",
12065 "observeValueForKeyPath:ofObject:change:context:",
12066 "observedNode",
12067 "observedNodeForExpandedNode:createIfNeeded:",
12068 "observedNodesSet",
12069 "observedObject",
12070 "observer",
12071 "observingBinder",
12072 "occurrence",
12073 "offStateImage",
12074 "oldSystemColorWithCoder:",
12075 "onStateImage",
12076 "oneOrMoreDescriptionsForSubelementName:",
12077 "opaqueAncestor",
12078 "open",
12079 "open:",
12080 "openAppleMenuItem:",
12081 "openCategoryFile:",
12082 "openDocument:",
12083 "openDocumentWithContentsOfFile:display:",
12084 "openDocumentWithContentsOfURL:display:error:",
12085 "openFile:",
12086 "openFile:ok:",
12087 "openFile:withApplication:",
12088 "openFile:withApplication:andDeactivate:",
12089 "openFirstDrawer:",
12090 "openFrameInNewWindow:",
12091 "openGLContext",
12092 "openHandCursor",
12093 "openHelpAnchor:inBook:",
12094 "openImageInNewWindow:",
12095 "openInclude:",
12096 "openLinkInNewWindow:",
12097 "openListFromFile:",
12098 "openNewWindowWithURL:element:",
12099 "openOnEdge:",
12100 "openPanel",
12101 "openResourceFile",
12102 "openRoot",
12103 "openTempFile:ok:",
12104 "openURL:",
12105 "openURL:reload:contentType:refresh:lastModified:pageCache:",
12106 "openURLs:withAppBundleIdentifier:options:additionalEventParamDescriptor:launchIdentifiers:",
12107 "openUntitledDocumentAndDisplay:error:",
12108 "openUntitledDocumentOfType:display:",
12109 "openUserDictionary:",
12110 "openWithApplication",
12111 "openWithFinder:",
12112 "operand",
12113 "operatingSystem",
12114 "operationNotAllowedCursor",
12115 "operatorType",
12116 "operatorWithCustomSelector:modifier:",
12117 "operatorWithType:modifier:options:",
12118 "optionalSharedHistory",
12119 "options",
12120 "optionsAttributes",
12121 "optionsFromPanel",
12122 "orPredicateOperator",
12123 "orangeColor",
12124 "orderAdapterOperations",
12125 "orderFront",
12126 "orderFront:",
12127 "orderFrontCharacterPalette:",
12128 "orderFrontColorPanel:",
12129 "orderFrontFindPanel:",
12130 "orderFrontFontOptionsPanel:",
12131 "orderFrontFontPanel:",
12132 "orderFrontLinkPanel:",
12133 "orderFrontListPanel:",
12134 "orderFrontRegardless",
12135 "orderFrontSpacingPanel:",
12136 "orderFrontStandardAboutPanel:",
12137 "orderFrontStandardAboutPanelWithOptions:",
12138 "orderFrontStylesPanel:",
12139 "orderFrontStylesPanelInWindow:textView:",
12140 "orderFrontTableOptionsPanel:",
12141 "orderFrontTablePanel:",
12142 "orderOut",
12143 "orderOut:",
12144 "orderOutPopUpWindow:",
12145 "orderOutToolTip",
12146 "orderOutToolTipImmediately:",
12147 "orderString:range:string:range:flags:",
12148 "orderString:string:flags:",
12149 "orderSurface:relativeTo:",
12150 "orderWindow:relativeTo:",
12151 "orderedDocuments",
12152 "orderedItemsLastVisitedOnDay:",
12153 "orderedLastVisitedDays",
12154 "orderedWindows",
12155 "orientation",
12156 "origin",
12157 "originalBodyStream",
12158 "originalURLString",
12159 "otherEventWithType:location:modifierFlags:timestamp:windowNumber:context:subtype:data1:data2:",
12160 "otherMouseDown:",
12161 "otherMouseDragged:",
12162 "otherMouseUp:",
12163 "outline",
12164 "outline:",
12165 "outlineColumn:willDisplayCell:row:",
12166 "outlineColumn:willDisplayOutlineCell:row:",
12167 "outlineTableColumn",
12168 "outlineView:acceptDrop:item:childIndex:",
12169 "outlineView:child:ofItem:",
12170 "outlineView:didClickOnDisabledCell:forTableColumn:byItem:",
12171 "outlineView:didClickTableColumn:",
12172 "outlineView:didDragTableColumn:",
12173 "outlineView:heightOfRowByItem:",
12174 "outlineView:isItemExpandable:",
12175 "outlineView:itemForPersistentObject:",
12176 "outlineView:keyDownEvent:",
12177 "outlineView:labelShouldDisplayEnabledAtRow:",
12178 "outlineView:mouseDownInHeaderOfTableColumn:",
12179 "outlineView:namesOfPromisedFilesDroppedAtDestination:forDraggedItems:",
12180 "outlineView:numberOfChildrenOfItem:",
12181 "outlineView:objectValueForTableColumn:byItem:",
12182 "outlineView:performKeyEquivalent:",
12183 "outlineView:persistentObjectForItem:",
12184 "outlineView:setObjectValue:forTableColumn:byItem:",
12185 "outlineView:shouldCollapseItem:",
12186 "outlineView:shouldEditTableColumn:item:",
12187 "outlineView:shouldExpandItem:",
12188 "outlineView:shouldHighlightWithoutSelectingCell:forTableColumn:byItem:",
12189 "outlineView:shouldSelectItem:",
12190 "outlineView:shouldSelectItem:byExtendingSelection:",
12191 "outlineView:shouldSelectRowIndexes:byExtendingSelection:",
12192 "outlineView:shouldSelectTableColumn:",
12193 "outlineView:sortDescriptorsDidChange:",
12194 "outlineView:toolTipForCell:rect:tableColumn:item:mouseLocation:",
12195 "outlineView:validateDrop:proposedItem:proposedChildIndex:",
12196 "outlineView:willDisplayCell:forTableColumn:item:",
12197 "outlineView:willDisplayCell:forTableColumn:row:",
12198 "outlineView:willDisplayOutlineCell:forTableColumn:item:",
12199 "outlineView:willDisplayOutlineCell:forTableColumn:row:",
12200 "outlineView:writeItems:toPasteboard:",
12201 "outputFormat",
12202 "outputImage",
12203 "outputKeys",
12204 "overrideMediaType",
12205 "owner",
12206 "ownerDocument",
12207 "ownsDestinationObjectsForRelationshipKey:",
12208 "pListForPath:createFile:",
12209 "page",
12210 "pageCache",
12211 "pageCacheSize",
12212 "pageCount",
12213 "pageDown:",
12214 "pageFooter",
12215 "pageHeader",
12216 "pageLayout",
12217 "pageOrder",
12218 "pageSizeForPaper:",
12219 "pageTitle",
12220 "pageUp:",
12221 "pair",
12222 "paletteFontOfSize:",
12223 "paletteImageRep",
12224 "paletteLabel",
12225 "panel",
12226 "panel:compareFilename:with:caseSensitive:",
12227 "panel:directoryDidChange:",
12228 "panel:isValidFilename:",
12229 "panel:shouldShowFilename:",
12230 "panel:userEnteredFilename:confirmed:",
12231 "panel:willExpand:",
12232 "panelConvertFont:",
12233 "panelSelectionDidChange:",
12234 "paperSize",
12235 "paragraphAttributesAtIndex:effectiveRange:inRange:",
12236 "paragraphCharacterRange",
12237 "paragraphGlyphRange",
12238 "paragraphRangeForRange:",
12239 "paragraphSeparatorCharacterRange",
12240 "paragraphSpacing",
12241 "paragraphSpacingAfterCharactersInRange:withProposedLineFragmentRect:",
12242 "paragraphSpacingAfterGlyphAtIndex:withProposedLineFragmentRect:",
12243 "paragraphSpacingBefore",
12244 "paragraphSpacingBeforeGlyphAtIndex:withProposedLineFragmentRect:",
12245 "paramDescriptorForKeyword:",
12246 "parameter:differs:from:",
12247 "parent",
12248 "parentCrayonRow",
12249 "parentCrayonView",
12250 "parentForItem:",
12251 "parentFrame",
12252 "parentItemRepresentedObjectForMenu:",
12253 "parentNode",
12254 "parentObject",
12255 "parentObjectUnignored",
12256 "parentSpecifier",
12257 "parentStore",
12258 "parentWindow",
12259 "parse",
12260 "parse:",
12261 "parseError:",
12262 "parseKey:",
12263 "parseMachMessage:localPort:remotePort:msgid:components:",
12264 "parseMetaSyntaxLeafResultShouldBeSkipped:",
12265 "parseSeparatorEqualTo:",
12266 "parseStream",
12267 "parseSuiteOfPairsKey:separator:value:separator:allowOmitLastSeparator:",
12268 "parseTokenEqualTo:mask:",
12269 "parseTokenWithMask:",
12270 "parser:didEndElement:namespaceURI:qualifiedName:",
12271 "parser:didStartElement:namespaceURI:qualifiedName:attributes:",
12272 "parser:foundAttributeDeclarationWithName:forElement:type:defaultValue:",
12273 "parser:foundCDATA:",
12274 "parser:foundCharacters:",
12275 "parser:foundComment:",
12276 "parser:foundElementDeclarationWithName:model:",
12277 "parser:foundExternalEntityDeclarationWithName:publicID:systemID:",
12278 "parser:foundIgnorableWhitespace:",
12279 "parser:foundNotationDeclarationWithName:publicID:systemID:",
12280 "parser:foundNotationDeclarationWithName:publicID:systemID:notationName:",
12281 "parser:foundProcessingInstructionWithTarget:data:",
12282 "parser:foundUnparsedEntityDeclarationWithName:publicID:systemID:notationName:",
12283 "parser:parseErrorOccurred:",
12284 "parserDidEndDocument:",
12285 "parserDidStartDocument:",
12286 "part",
12287 "partCode",
12288 "partHit:",
12289 "partWithCode:parent:",
12290 "partialControllerKey",
12291 "partialObjectKey",
12292 "passesFilterAtIndex:",
12293 "password",
12294 "paste:",
12295 "pasteFont:",
12296 "pasteImageNamed:",
12297 "pasteRuler:",
12298 "pasteboard:provideDataForType:",
12299 "pasteboard:provideDataForType:itemIdentifier:",
12300 "pasteboardByFilteringFile:",
12301 "pasteboardByFilteringTypesInPasteboard:",
12302 "pasteboardChangedOwner:",
12303 "pasteboardTypesForSelection",
12304 "pasteboardWithName:",
12305 "pasteboardWithUniqueName",
12306 "path",
12307 "pathByResolvingSymlinksAndAliasesInPath:",
12308 "pathComponents",
12309 "pathContentOfSymbolicLinkAtPath:",
12310 "pathExpression",
12311 "pathExtension",
12312 "pathForImageResource:",
12313 "pathForResource:ofType:",
12314 "pathForResource:ofType:inDirectory:forLocalization:",
12315 "pathForSoundResource:",
12316 "pathStoreWithCharacters:length:",
12317 "pathToColumn:",
12318 "pathWithComponents:",
12319 "pathnameForDatabase",
12320 "pathsForResourcesOfType:inDirectory:",
12321 "pathsForResourcesOfType:inDirectory:forLocalization:",
12322 "patternImage",
12323 "pausedActions",
12324 "peerCertificateChain",
12325 "percentEscapeDecodeBuffer:range:stripWhitespace:",
12326 "perform:",
12327 "perform:with:",
12328 "perform:with:with:",
12329 "perform:withEachObjectInArray:",
12330 "performAction:",
12331 "performActionFlashForItemAtIndex:",
12332 "performActionForItemAtIndex:",
12333 "performActionWithHighlightingForItemAtIndex:",
12334 "performActivity:modes:",
12335 "performAdapterOperation:",
12336 "performAdapterOperations:",
12337 "performChanges",
12338 "performClick",
12339 "performClick:",
12340 "performClickWithFrame:inView:",
12341 "performClose:",
12342 "performDefaultImplementation",
12343 "performDelayedComplete",
12344 "performDragOperation:",
12345 "performFindPanelAction:",
12346 "performFindPanelAction:forClient:",
12347 "performHTTPHeaderRead:",
12348 "performKeyEquivalent:",
12349 "performMenuAction:withTarget:",
12350 "performMiniaturize:",
12351 "performMnemonic:",
12352 "performOperationUsingObject:andObject:",
12353 "performPrimitiveOperationUsingObject:andObject:",
12354 "performRemoveObjectForKey:",
12355 "performSelector:",
12356 "performSelector:object:afterDelay:",
12357 "performSelector:target:argument:order:modes:",
12358 "performSelector:withObject:",
12359 "performSelector:withObject:afterDelay:",
12360 "performSelector:withObject:afterDelay:inModes:",
12361 "performSelector:withObject:withObject:",
12362 "performSelector:withObject:withObject:withObject:",
12363 "performSelectorOnMainThread:withObject:waitUntilDone:",
12364 "performSelectorOnMainThread:withObject:waitUntilDone:modes:",
12365 "performSetObject:forKey:",
12366 "performStreamRead",
12367 "performStreamRead:",
12368 "performZoom:",
12369 "performsContentDecoding",
12370 "performv::",
12371 "persistence",
12372 "persistenceStore",
12373 "persistentDomainForName:",
12374 "persistentStore",
12375 "persistentStoreCoordinator",
12376 "persistentStoreForURL:",
12377 "persistentStoreTypeForFileType:",
12378 "persistentStores",
12379 "physicalSize",
12380 "pipe",
12381 "pixelsHigh",
12382 "pixelsWide",
12383 "pk64",
12384 "placeButtons:firstWidth:secondWidth:thirdWidth:",
12385 "placeholderAttributedString",
12386 "placeholderForMarker:",
12387 "placeholderString",
12388 "play",
12389 "plugInViewWithArguments:",
12390 "plugInViewWithArguments:fromPluginPackage:",
12391 "plugin",
12392 "pluginClassForObject:andBinderClass:requiredPluginProtocol:",
12393 "pluginDescription",
12394 "pluginDestroy",
12395 "pluginForExtension:",
12396 "pluginForKey:withEnumeratorSelector:",
12397 "pluginForMIMEType:",
12398 "pluginInitialize",
12399 "pluginPointer",
12400 "pluginScriptableObject",
12401 "pluginStart",
12402 "pluginStop",
12403 "pluginViewWithArguments:",
12404 "pluginViewWithPackage:attributeNames:attributeValues:baseURL:",
12405 "pluginWithPath:",
12406 "plugins",
12407 "pluginsInfo",
12408 "pointSize",
12409 "pointToOffset:style:position:reversed:includePartialGlyphs:",
12410 "pointValue",
12411 "pointerID",
12412 "pointerSerialNumber",
12413 "pointerType",
12414 "pointerValue",
12415 "pointingDeviceID",
12416 "pointingDeviceSerialNumber",
12417 "pointingDeviceType",
12418 "pointingHandCursor",
12419 "policyDelegate",
12420 "pollForAppletInView:",
12421 "pollForAppletInWindow:",
12422 "pop",
12423 "popAndInvoke",
12424 "popBundleForImageSearch",
12425 "popGlyph:",
12426 "popSubnode",
12427 "popTopView",
12428 "popUndoObject",
12429 "popUp:",
12430 "popUpContextMenu:withEvent:forView:",
12431 "popUpContextMenu:withEvent:forView:withFont:",
12432 "popUpMenu:atLocation:width:forView:withSelectedItem:withFont:",
12433 "populateCacheFromStream:data:",
12434 "populateObject:withContent:valueKey:objectKey:insertsNullPlaceholder:",
12435 "popupStatusBarMenu:inRect:ofView:withEvent:",
12436 "port",
12437 "portCoderWithComponents:",
12438 "portForName:",
12439 "portForName:host:",
12440 "portForName:host:nameServerPortNumber:",
12441 "portList",
12442 "portalDied:",
12443 "poseAs:",
12444 "poseAsClass:",
12445 "position",
12446 "positionButton",
12447 "positionOfGlyph:forCharacter:struckOverRect:",
12448 "positionOfGlyph:forLongCharacter:struckOverRect:",
12449 "positionOfGlyph:precededByGlyph:isNominal:",
12450 "positionOfGlyph:struckOverGlyph:metricsExist:",
12451 "positionOfGlyph:withRelation:toBaseGlyph:totalAdvancement:metricsExist:",
12452 "positionRelativeToAttachedView",
12453 "positiveFormat",
12454 "positiveInfinitySymbol",
12455 "postColorSwatchesChangedDistributedNotification",
12456 "postEvent:atStart:",
12457 "postNotification:",
12458 "postNotificationName:object:",
12459 "postNotificationName:object:userInfo:",
12460 "postNotificationName:object:userInfo:deliverImmediately:",
12461 "postNotificationName:object:userInfo:options:",
12462 "postURL:target:len:buf:file:",
12463 "postURLNotify:target:len:buf:file:notifyData:",
12464 "postWithURL:referrer:target:data:contentType:triggeringEvent:form:formValues:",
12465 "postsFrameChangedNotifications",
12466 "precomposedStringWithCanonicalMapping",
12467 "precomposedStringWithCompatibilityMapping",
12468 "predefinedAttributesForIndex:",
12469 "predefinedEntityDeclarationForName:",
12470 "predefinedNamespaceForPrefix:",
12471 "predicate",
12472 "predicateFormat",
12473 "predicateName",
12474 "predicateOperator",
12475 "predicateOperatorType",
12476 "predicateString",
12477 "predicateWithFormat:argumentArray:",
12478 "predicateWithFormat:arguments:",
12479 "predicateWithLeftExpression:rightExpression:modifier:type:options:",
12480 "predicateWithSubstitutionVariables:",
12481 "predicateWithValue:",
12482 "preferences",
12483 "preferencesContentSize",
12484 "preferencesHaveChanged:",
12485 "preferencesIdentifier",
12486 "preferencesNibName",
12487 "preferencesWindowShouldClose",
12488 "preferredEdge",
12489 "preferredExtensionForMIMEType:",
12490 "preferredFilename",
12491 "preferredLocalizationName",
12492 "preferredLocalizations",
12493 "preferredLocalizationsFromArray:",
12494 "preferredPasteboardTypeFromArray:restrictedToTypesFromArray:",
12495 "preferredPlaceholderForMarker:",
12496 "prefersAllColumnUserResizing",
12497 "prefersColorMatch",
12498 "prefersEnabledOverEditable:",
12499 "prefersTrackingUntilMouseUp",
12500 "prefix",
12501 "prefixForName:",
12502 "prepare",
12503 "prepareBeginsWith:",
12504 "prepareCallbacks",
12505 "prepareComparisonPredicate:",
12506 "prepareContent",
12507 "prepareDeleteStatementWithCorrelation:",
12508 "prepareDeleteStatementWithRow:",
12509 "prepareEndsWith:",
12510 "prepareForDragOperation:",
12511 "prepareForReloadChildrenForNode:",
12512 "prepareForSave",
12513 "prepareForSave:",
12514 "prepareGState",
12515 "prepareIn:",
12516 "prepareInsertStatementWithCorrelation:",
12517 "prepareInsertStatementWithRow:",
12518 "prepareLike:",
12519 "prepareMatches:",
12520 "prepareOpenGL",
12521 "preparePageLayout:",
12522 "prepareSQLStatement:",
12523 "prepareSavePanel:",
12524 "prepareSelectStatementWithFetchRequest:",
12525 "prepareUpdateStatementWithRow:originalRow:",
12526 "prepareWithInvocationTarget:",
12527 "presentError:",
12528 "presentError:modalForWindow:delegate:didPresentSelector:contextInfo:",
12529 "presentableDescription",
12530 "presentableName",
12531 "presentableNameForSpecifier:",
12532 "presentableNames",
12533 "presentationWindowForError:originatedInWindow:",
12534 "preservesContentDuringLiveResize",
12535 "preservesSelection",
12536 "pressure",
12537 "preventWindowOrdering",
12538 "previewHelperClass",
12539 "previousFailureCount",
12540 "previousItem",
12541 "previousKeyView",
12542 "previousKeyViewInsideWebFrameViews",
12543 "previousKeyViewOutsideWebFrameViews",
12544 "previousSibling",
12545 "previousValidKeyView",
12546 "primaryKey",
12547 "primaryKeyColumnDefinitions",
12548 "primaryKeyForEntity:",
12549 "primaryKeyGeneration",
12550 "primaryKeys",
12551 "primitiveType",
12552 "primitiveValueForKey:",
12553 "principalClass",
12554 "print",
12555 "print:",
12556 "printDocument:",
12557 "printDocumentWithSettings:showPrintPanel:delegate:didPrintSelector:contextInfo:",
12558 "printFile:ok:",
12559 "printInfo",
12560 "printInfoIsBeingDeallocated",
12561 "printJobTitle",
12562 "printOperationWithSettings:error:",
12563 "printOperationWithView:",
12564 "printOperationWithView:printInfo:",
12565 "printPanel",
12566 "printShowingPrintPanel:",
12567 "printer",
12568 "printerFont",
12569 "printerWithType:",
12570 "printingAdjustmentInLayoutManager:forNominallySpacedGlyphRange:packedGlyphs:count:",
12571 "priorityForFlavor:",
12572 "privateBrowsingEnabled",
12573 "processCDATA:",
12574 "processComment:",
12575 "processDocument:",
12576 "processDocumentFragment:",
12577 "processDocumentType:",
12578 "processEditing",
12579 "processElement:",
12580 "processEndElement:",
12581 "processEndEntity:",
12582 "processEntity:",
12583 "processEntityReference:",
12584 "processIdentifier",
12585 "processInfo",
12586 "processInputKeyBindings:",
12587 "processKeyword:option:keyTran:arg:argTran:",
12588 "processKeyword:option:keyTran:arg:argTran:quotedArg:",
12589 "processName",
12590 "processNode:",
12591 "processNotation:",
12592 "processPendingChanges",
12593 "processProcessingInstruction:",
12594 "processRealDocument:",
12595 "processSignificantWhitespace:",
12596 "processString:",
12597 "processText:",
12598 "processType:file:isDir:",
12599 "processWhitespace:",
12600 "processXMLDeclaration:",
12601 "progressIndicator",
12602 "progressIndicatorColor",
12603 "progressPanel",
12604 "promise:keysAndValues:",
12605 "promotedImage:",
12606 "prompt",
12607 "propagateFrameDirtyRects:",
12608 "propagatesDeletesAtEndOfEvent",
12609 "properties",
12610 "propertiesAtIndex:",
12611 "propertiesByName",
12612 "property",
12613 "propertyDescription",
12614 "propertyDescriptionFromKey:implDeclaration:presoDeclaration:suiteName:className:",
12615 "propertyForKey:",
12616 "propertyForKey:inRequest:",
12617 "propertyForKeyIfAvailable:",
12618 "propertyList",
12619 "propertyListForType:",
12620 "propertyListFromData:mutabilityOption:format:errorDescription:",
12621 "propertyListFromStringsFileFormat",
12622 "propertyMappings",
12623 "propertyNamed:",
12624 "propertyTableAtIndex:",
12625 "propertyTableCount",
12626 "propertyType",
12627 "proposedCredential",
12628 "protectionSpace",
12629 "protocol",
12630 "protocolCheckerWithTarget:protocol:",
12631 "protocolFamily",
12632 "prototype",
12633 "provideImageData:bytesPerRow:origin::size::userInfo:",
12634 "provideImageTexture:bounds:userInfo:",
12635 "provideNewButtonImage",
12636 "provideNewSubview:",
12637 "provideNewView:",
12638 "providerRespondingToSelector:",
12639 "provisionalDataSource",
12640 "provisionalItem",
12641 "provisionalLoadStarted",
12642 "proxyClass",
12643 "proxyDictionary",
12644 "proxyFor:fauxParent:",
12645 "proxyForRulebookServer",
12646 "proxyPropertiesForURL:",
12647 "proxyType",
12648 "proxyWithLocal:",
12649 "proxyWithLocal:connection:",
12650 "proxyWithTarget:connection:",
12651 "publicID",
12652 "publish",
12653 "pullsDown",
12654 "punctuationCharacterSet",
12655 "purgeCookiesFromPrivateBrowsing",
12656 "purpleColor",
12657 "push",
12658 "push:",
12659 "pushBundleForImageSearch:",
12660 "pushGlyph:",
12661 "pushSubnode:",
12662 "put:",
12663 "put::",
12664 "putByte:",
12665 "putCell:atRow:column:",
12666 "putLELong:",
12667 "putLEWord:",
12668 "queryNode",
12669 "quotedStringRepresentation",
12670 "raise",
12671 "raise:format:",
12672 "raise:format:arguments:",
12673 "raise:toPower:",
12674 "raiseBaseline:",
12675 "raisesForNotApplicableKeys",
12676 "range",
12677 "rangeAtIndex:",
12678 "rangeByAlteringCurrentSelection:direction:granularity:",
12679 "rangeByAlteringCurrentSelection:verticalDistance:",
12680 "rangeByExpandingSelectionWithGranularity:",
12681 "rangeContainerClassDescription",
12682 "rangeContainerObject",
12683 "rangeCount",
12684 "rangeForUserCharacterAttributeChange",
12685 "rangeForUserCompletion",
12686 "rangeForUserParagraphAttributeChange",
12687 "rangeForUserTextChange",
12688 "rangeOfCharacterFromSet:",
12689 "rangeOfCharacterFromSet:options:",
12690 "rangeOfCharacterFromSet:options:range:",
12691 "rangeOfCharactersAroundCaret",
12692 "rangeOfComposedCharacterSequenceAtIndex:",
12693 "rangeOfString:",
12694 "rangeOfString:options:",
12695 "rangeOfString:options:range:",
12696 "rangeOfTextBlock:atIndex:",
12697 "rangeOfTextList:atIndex:",
12698 "rangeOfTextTable:atIndex:",
12699 "rangeValue",
12700 "rangesForUserCharacterAttributeChange",
12701 "rangesForUserParagraphAttributeChange",
12702 "rangesForUserTextChange",
12703 "rasterize:",
12704 "rawData",
12705 "readAlignedDataSize",
12706 "readBinaryStoreFromData:originalPath:error:",
12707 "readColors",
12708 "readData:length:",
12709 "readDataOfLength:",
12710 "readDataOfLength:buffer:",
12711 "readDataToEndOfFile",
12712 "readDocumentFragment:",
12713 "readDocumentFromPbtype:filename:",
12714 "readFromData:ofType:error:",
12715 "readFromData:options:documentAttributes:",
12716 "readFromData:options:documentAttributes:error:",
12717 "readFromFile:",
12718 "readFromFile:error:",
12719 "readFromFile:ofType:",
12720 "readFromFileWrapper:ofType:error:",
12721 "readFromURL:ofType:",
12722 "readFromURL:ofType:error:",
12723 "readFromURL:options:documentAttributes:",
12724 "readFromURL:options:documentAttributes:error:",
12725 "readInBackgroundAndNotifyForModes:",
12726 "readInt",
12727 "readLock",
12728 "readMetadataFromFile:error:",
12729 "readObsoleteBinaryStoreFromData:error:",
12730 "readPrintInfo",
12731 "readSelectionFromPasteboard:",
12732 "readSelectionFromPasteboard:type:",
12733 "readToEndOfFileInBackgroundAndNotify",
12734 "readToEndOfFileInBackgroundAndNotifyForModes:",
12735 "readUnlock",
12736 "readablePasteboardTypes",
12737 "readableTypes",
12738 "realAddDirNamed:",
12739 "realElement",
12740 "reallyDealloc",
12741 "reallyInsertObject:atIndex:",
12742 "reallyRemoveAllObjects",
12743 "reallyRemoveObject:",
12744 "reallyRemoveObjectAtIndex:",
12745 "reallyReplaceObjectAtIndex:withObject:",
12746 "realm",
12747 "reapplyStyles",
12748 "reapplyStylesForDeviceType:",
12749 "reason",
12750 "reasonForError:",
12751 "recacheAllColors:",
12752 "recacheColor",
12753 "recalcFigure:path:button:offset:",
12754 "recalcFigureForResolution:",
12755 "recalculateKeyViewLoop",
12756 "receivePort",
12757 "receivedData:",
12758 "receivedData:textEncodingName:",
12759 "receivedData:withDataSource:",
12760 "receivedError:",
12761 "receivedError:withDataSource:",
12762 "receivedResponse:",
12763 "receiversSpecifier",
12764 "receivesCredentialSecurely",
12765 "recentSearches",
12766 "recentsAutosaveName",
12767 "recipe",
12768 "recipeDifference:with:",
12769 "recipeDiffers:from:",
12770 "recomputeToolTipsForView:remove:add:",
12771 "reconcileSelfToSuiteRegistry:",
12772 "reconcileSubdescriptionsToSuiteRegistry:",
12773 "reconcileToCarbonWindowBounds",
12774 "reconcileToSuiteRegistry:suiteName:",
12775 "reconcileToSuiteRegistry:suiteName:className:",
12776 "reconcileToSuiteRegistry:suiteName:commandName:",
12777 "reconcileToSuiteRegistry:suiteName:recordTypeName:",
12778 "reconnectBindings:",
12779 "recordChangesInContext:",
12780 "recordDatabaseOperation:",
12781 "recordDeleteForObject:",
12782 "recordDescriptor",
12783 "recordPrimaryKeyForInsertedObject:",
12784 "recordSnapshot:forGlobalID:",
12785 "recordSnapshot:forSourceGlobalID:relationshipName:",
12786 "recordSnapshots:",
12787 "recordToManySnapshots:",
12788 "recordUpdateForObject:",
12789 "recoveryAttempter",
12790 "recoveryOptionIndex",
12791 "rect",
12792 "rectArrayForCharacterRange:withinSelectedCharacterRange:inTextContainer:rectCount:",
12793 "rectArrayForGlyphRange:withinSelectedGlyphRange:inTextContainer:rectCount:",
12794 "rectForBlock:layoutAtPoint:inRect:textContainer:characterRange:",
12795 "rectForIndex:",
12796 "rectForKey:inTable:",
12797 "rectForLayoutAtPoint:inRect:textContainer:characterRange:",
12798 "rectForPage:",
12799 "rectForPart:",
12800 "rectForRolloverTracking",
12801 "rectIncludingShadow",
12802 "rectOfColumn:",
12803 "rectOfItemAtIndex:",
12804 "rectOfRow:",
12805 "rectOfTickMarkAtIndex:",
12806 "rectPreservedDuringLiveResize",
12807 "rectValue",
12808 "rectWithoutShadow",
12809 "recycle",
12810 "red",
12811 "redColor",
12812 "redComponent",
12813 "redeliverStream",
12814 "redirectedToURL:",
12815 "redo",
12816 "redo:",
12817 "redoActionName",
12818 "redoEditing:",
12819 "redoMenuItemTitle",
12820 "redoMenuTitleForUndoActionName:",
12821 "reenableDisplayPosting",
12822 "reenableFlush",
12823 "reenableHeartBeating:",
12824 "refCount",
12825 "refaultObject:globalID:editingContext:",
12826 "referenceBinder",
12827 "referencedObjectCount",
12828 "referrer",
12829 "reflectScrolledClipView:",
12830 "refrROI:forRect:",
12831 "refreashUI",
12832 "refresh",
12833 "refreshDetailContent",
12834 "refreshObjects:",
12835 "refreshPlugins:",
12836 "refusesFirstResponder",
12837 "regionOf:destRect:",
12838 "regionOf:destRect:userInfo:",
12839 "regionOfFindEdges:destRect:userInfo:",
12840 "registerChannel:",
12841 "registerClass:",
12842 "registerClassDescription:",
12843 "registerClassDescription:forClass:",
12844 "registerCoercer:selector:toConvertFromClass:toClass:",
12845 "registerCommandDescription:",
12846 "registerConnection:",
12847 "registerDefaults:",
12848 "registerDragTypes:forWindow:",
12849 "registerExternalData:forObjectID:options:",
12850 "registerExternalData:forSourceObjectID:key:options:",
12851 "registerFilterName:constructor:classAttributes:",
12852 "registerFilters",
12853 "registerForCommandDescription:",
12854 "registerForDraggedTypes:",
12855 "registerForDrags",
12856 "registerForEdgeChanges:",
12857 "registerForEditingDelegateNotification:selector:",
12858 "registerForEnclosingClipViewNotifications",
12859 "registerForFilenameDragTypes",
12860 "registerForPropertyChangedNotifications",
12861 "registerForServices",
12862 "registerForWindowNotifications",
12863 "registerHelpBook",
12864 "registerImageRepClass:",
12865 "registerName:",
12866 "registerName:withNameServer:",
12867 "registerObject:withServicePath:",
12868 "registerPluginClass:forObjectClass:andBinderClass:",
12869 "registerPort:name:",
12870 "registerPort:name:nameServerPortNumber:",
12871 "registerServicesMenuSendTypes:returnTypes:",
12872 "registerTranslator:selector:toTranslateFromClass:",
12873 "registerTranslator:selector:toTranslateFromDescriptorType:",
12874 "registerURLHandleClass:",
12875 "registerUndoOperation",
12876 "registerUndoWithTarget:selector:object:",
12877 "registerViewClass:representationClass:forMIMEType:",
12878 "registeredImageRepClasses",
12879 "registeredObjects",
12880 "regularFileContents",
12881 "rel",
12882 "relatedIDsForKey:",
12883 "relationship",
12884 "relationshipDataWithSourceID:forRelationship:",
12885 "relationshipDataWithSourceID:forRelationship:withContext:",
12886 "relationshipDescription",
12887 "relationshipMappings",
12888 "relationshipNamed:",
12889 "relationshipsByName",
12890 "relativeLineToPoint:",
12891 "relativePosition",
12892 "relativeString",
12893 "release",
12894 "releaseAllPools",
12895 "releaseCaches",
12896 "releaseConnectionWithSynchronizePeerBinders:",
12897 "releaseGState",
12898 "releaseGlobally",
12899 "releaseIconForURL:",
12900 "releaseName:count:",
12901 "releaseResources",
12902 "releaseSQLStatement",
12903 "releaseView:",
12904 "relinquishFocus",
12905 "reload",
12906 "reload:",
12907 "reloadChildrenForNode:",
12908 "reloadColumn:",
12909 "reloadData",
12910 "reloadDefaultFontFamilies",
12911 "reloadItem:reloadChildren:",
12912 "reloadRootNode",
12913 "rememberedSnapToIndex",
12914 "remoteObjects",
12915 "remove:",
12916 "removeAllActions",
12917 "removeAllActionsWithTarget:",
12918 "removeAllBindVariables",
12919 "removeAllContentObjectsInCellOrControl:",
12920 "removeAllExpandedNodes",
12921 "removeAllIndexes",
12922 "removeAllItems",
12923 "removeAllObjects",
12924 "removeAllObjectsWithTarget:",
12925 "removeAllPoints",
12926 "removeAllSubNodes",
12927 "removeAllToolTips",
12928 "removeAllToolTipsForView:",
12929 "removeAnimatingRenderer:",
12930 "removeAttribute:range:",
12931 "removeAttributeForName:",
12932 "removeBinder:",
12933 "removeBinding:",
12934 "removeCharactersInString:",
12935 "removeChild:",
12936 "removeChildAtIndex:",
12937 "removeChildWindow:",
12938 "removeClassDescriptions:",
12939 "removeClient:",
12940 "removeCollection:",
12941 "removeColor:",
12942 "removeColorSheetDidEnd:returnCode:context:",
12943 "removeColorWithKey:",
12944 "removeColumns:",
12945 "removeCommandDescriptions:",
12946 "removeConnection:forKey:",
12947 "removeConnection:fromRunLoop:forMode:",
12948 "removeContextHelpForObject:",
12949 "removeConversation",
12950 "removeCredential:forProtectionSpace:",
12951 "removeCursorRect:cursor:",
12952 "removeDescriptorAtIndex:",
12953 "removeDocument:",
12954 "removeDragCaret",
12955 "removeEditingStyleFromBodyElement",
12956 "removeElementAtIndex:",
12957 "removeElementsInRange:",
12958 "removeElementsInRange:coalesceRuns:",
12959 "removeEventListener:::",
12960 "removeExpandedNode:",
12961 "removeExpandedNodesStartingWithIndex:",
12962 "removeFavoriteInWindow:",
12963 "removeFile",
12964 "removeFile:",
12965 "removeFileAtPath:handler:",
12966 "removeFileWrapper:",
12967 "removeFontDescriptor:fromCollection:",
12968 "removeFrameUsingName:",
12969 "removeFreedView:",
12970 "removeFreedWindow:",
12971 "removeFromFrame",
12972 "removeFromOriginLoadSet",
12973 "removeFromRunLoop:forMode:",
12974 "removeFromSuperview",
12975 "removeFromSuperviewWithoutNeedingDisplay",
12976 "removeHeartBeatView:",
12977 "removeImmediately:",
12978 "removeIndex:",
12979 "removeIndexRange:",
12980 "removeIndexes:",
12981 "removeIndexesInRange:",
12982 "removeItem:",
12983 "removeItemAtIndex:",
12984 "removeItemForURLString:",
12985 "removeItemViewerAtIndex:",
12986 "removeItemWithObjectValue:",
12987 "removeItemWithTitle:",
12988 "removeItems:",
12989 "removeKeyEventHandler",
12990 "removeLastObject",
12991 "removeLayoutManager:",
12992 "removeList:",
12993 "removeListSheetDidEnd:returnCode:context:",
12994 "removeListener:",
12995 "removeLocal:",
12996 "removeMarker:",
12997 "removeMouseMovedObserver",
12998 "removeNamespaceForPrefix:",
12999 "removeObject:",
13000 "removeObject:fromBothSidesOfRelationshipWithKey:",
13001 "removeObject:fromPropertyWithKey:",
13002 "removeObject:objectIDMap:",
13003 "removeObject:range:identical:",
13004 "removeObjectAt:",
13005 "removeObjectAtArrangedObjectIndex:",
13006 "removeObjectAtIndex:",
13007 "removeObjectForKey:",
13008 "removeObjectForKey:inDomain:",
13009 "removeObjectFromMasterArrayRelationshipAtIndex:selectionMode:",
13010 "removeObjectIdenticalTo:",
13011 "removeObjects:",
13012 "removeObjectsAtArrangedObjectIndexPaths:",
13013 "removeObjectsAtArrangedObjectIndexes:",
13014 "removeObjectsAtIndexes:",
13015 "removeObjectsForKeys:",
13016 "removeObjectsFromIndices:numIndices:",
13017 "removeObjectsFromMasterArrayRelationshipAtIndexes:selectionMode:",
13018 "removeObjectsInArray:",
13019 "removeObjectsInRange:",
13020 "removeObserver:",
13021 "removeObserver:forKeyPath:",
13022 "removeObserver:name:object:",
13023 "removePathFromLibrarySearchPaths:",
13024 "removePersistentStore:error:",
13025 "removePort:forMode:",
13026 "removePortForName:",
13027 "removePortsFromAllRunLoops",
13028 "removePortsFromRunLoop:",
13029 "removeProxy:",
13030 "removeRequestMode:",
13031 "removeRow:",
13032 "removeRows:",
13033 "removeRunLoop:",
13034 "removeServiceProvider:",
13035 "removeSubNodeAtIndex:",
13036 "removeSuperviewObservers",
13037 "removeTabStop:",
13038 "removeTable",
13039 "removeTableColumn:",
13040 "removeTemporaryAttribute:forCharacterRange:",
13041 "removeTextContainerAtIndex:",
13042 "removeToolTip:",
13043 "removeToolTipForView:tag:",
13044 "removeToolbarItem:",
13045 "removeTrackingRect",
13046 "removeTrackingRect:",
13047 "removeValueAtIndex:fromPropertyWithKey:",
13048 "removeView:fromView:layoutManager:",
13049 "removeWebView:fromSetNamed:",
13050 "removeWindowController:",
13051 "removeWindowObservers",
13052 "removeWindowsItem:",
13053 "renameColor:",
13054 "renameColorSheetDidEnd:returnCode:context:",
13055 "renameList:",
13056 "renameListSheetDidEnd:returnCode:context:",
13057 "render:",
13058 "renderResolutionData:toBitmap:width:height:bytesPerRow:",
13059 "renderTreeAsExternalRepresentation",
13060 "rendererWithFont:usingPrinterFont:",
13061 "renderingContextForCharacterRange:typesetterBehavior:usesScreenFonts:maximumWidth:",
13062 "renderingMode",
13063 "renewGState",
13064 "renewRows:columns:",
13065 "reopenDocumentForURL:withContentsOfURL:error:",
13066 "rep",
13067 "replaceAllInView:selectionOnly:",
13068 "replaceAndFindInView:",
13069 "replaceBytesInRange:withBytes:",
13070 "replaceBytesInRange:withBytes:length:",
13071 "replaceCharactersInRange:withAttributedString:",
13072 "replaceCharactersInRange:withCString:length:",
13073 "replaceCharactersInRange:withCharacters:length:",
13074 "replaceCharactersInRange:withRTF:",
13075 "replaceCharactersInRange:withRTFD:",
13076 "replaceCharactersInRange:withString:",
13077 "replaceChildAtIndex:withNode:",
13078 "replaceElementsInRange:withElement:coalesceRuns:",
13079 "replaceFile:path:",
13080 "replaceGlyphAtIndex:withGlyph:",
13081 "replaceInView:",
13082 "replaceIndexReferenceModelObjectArrayWithEqualCopy:",
13083 "replaceLayoutManager:",
13084 "replaceNodeWithIdentifier:withDataFromDelegate:",
13085 "replaceNodeWithIdentifier:withNode:",
13086 "replaceObject:withObject:",
13087 "replaceObjectAtIndex:withObject:",
13088 "replaceObjectsAtIndexes:withObjects:",
13089 "replaceObjectsInRange:withObject:length:",
13090 "replaceObjectsInRange:withObjectsFromArray:",
13091 "replaceObjectsInRange:withObjectsFromArray:range:",
13092 "replaceOccurrencesOfString:withString:options:range:",
13093 "replaceSelectionWithFragment:selectReplacement:smartReplace:",
13094 "replaceSelectionWithMarkupString:baseURLString:selectReplacement:smartReplace:",
13095 "replaceSelectionWithNode:selectReplacement:smartReplace:",
13096 "replaceSelectionWithText:selectReplacement:smartReplace:",
13097 "replaceString:withString:ranges:options:inView:replacementRange:",
13098 "replaceSubview:with:",
13099 "replaceSubviewWith:",
13100 "replaceTemporaryIDInObject:",
13101 "replaceTextStorage:",
13102 "replaceValueAtIndex:inPropertyWithKey:withValue:",
13103 "replacementClassForClass:",
13104 "replacementObjectForArchiver:",
13105 "replacementObjectForCoder:",
13106 "replacementObjectForKeyedArchiver:",
13107 "replacementObjectForPortCoder:",
13108 "replyAppleEventForSuspensionID:",
13109 "replyEvent",
13110 "replyToApplicationShouldTerminate:",
13111 "replyWithException:",
13112 "reportClientRedirectCancelled:",
13113 "reportClientRedirectToURL:delay:fireDate:lockHistory:isJavaScriptFormAction:",
13114 "reportDataToClient:",
13115 "reportDidFinishToClient",
13116 "reportError",
13117 "reportException:",
13118 "reportStreamError",
13119 "repositionRolloverTrackingRectIfNecessary",
13120 "representation",
13121 "representationOfCoveredCharacters",
13122 "representationOfImageRepsInArray:usingType:properties:",
13123 "representationUsingType:properties:",
13124 "representationWithImageProperties:withProperties:",
13125 "representations",
13126 "representedFilename",
13127 "representedObject",
13128 "request",
13129 "requestHeaderFieldsWithCookies:",
13130 "requestIsCacheEquivalent:toRequest:",
13131 "requestStreamForTransmission",
13132 "requestUserAttention:",
13133 "requestWithURL:",
13134 "requestWithURLCString:",
13135 "requestedURLString",
13136 "requiredFileType",
13137 "requiredMinSize",
13138 "requiredMinSizeFor:",
13139 "requiredThickness",
13140 "requiresDirectKeyValueCodingCall",
13141 "reservedSpaceLength",
13142 "reset",
13143 "resetAdditionalClip",
13144 "resetButtonDefaultLabel",
13145 "resetCancelButtonCell",
13146 "resetCursorRect:inView:",
13147 "resetCursorRects",
13148 "resetDateFormats",
13149 "resetDisplayDisableCount",
13150 "resetFlushDisableCount",
13151 "resetMeasurements:forInterpolatedResolutionData:",
13152 "resetMeasurements:forResolutionData:withWidth:height:onlyIntegerSizes:",
13153 "resetQueryForChangedAttributes:",
13154 "resetSearchButtonCell",
13155 "resetState",
13156 "resetToolbarToDefaultConfiguration:",
13157 "resetTrackingRect",
13158 "reshape",
13159 "resignFirstResponder",
13160 "resignKeyWindow",
13161 "resignMainWindow",
13162 "resize:",
13163 "resizeDownCursor",
13164 "resizeEdgeForEvent:",
13165 "resizeFlags",
13166 "resizeIncrements",
13167 "resizeIndicatorRect",
13168 "resizeLeftCursor",
13169 "resizeLeftRightCursor",
13170 "resizeRightCursor",
13171 "resizeSubviewsWithOldSize:",
13172 "resizeToScreenWithEvent:",
13173 "resizeUpCursor",
13174 "resizeUpDownCursor",
13175 "resizeWithDelta:fromFrame:beginOperation:endOperation:",
13176 "resizeWithEvent:",
13177 "resizeWithOldSuperviewSize:",
13178 "resizedColumn",
13179 "resizingMask",
13180 "resolve",
13181 "resolveMarkerToPlaceholder:binding:",
13182 "resolveNamespaceForName:",
13183 "resolvePrefixForNamespaceURI:",
13184 "resolvedKeyDictionary",
13185 "resolvesAliases",
13186 "resourceData",
13187 "resourceDataUsingCache:",
13188 "resourceLoadDelegate",
13189 "resourceLoaderRunLoop",
13190 "resourceNamed:",
13191 "resourcePath",
13192 "resourceSpecifier",
13193 "respectStandardStyleKeyEquivalents",
13194 "respondToChangedContents",
13195 "respondToChangedSelection",
13196 "respondsTo:",
13197 "respondsToSelector:",
13198 "response",
13199 "restOfKeyPathIfContainedByValueForKeyPath:",
13200 "restartNullEvents",
13201 "restore",
13202 "restoreAttributes:",
13203 "restoreAttributesOfTextStorage:",
13204 "restoreDefaults",
13205 "restoreDocumentState",
13206 "restoreGraphicsState",
13207 "restoreParameter:from:",
13208 "restorePortState:",
13209 "restoreSavedSettings",
13210 "restoreWindowOnDockDeath",
13211 "restoreWindowOnDockReincarnation",
13212 "resultAtIndex:",
13213 "resultCount",
13214 "resumeExecutionWithResult:",
13215 "resumeInformation",
13216 "resumeWithScriptCommandResult:",
13217 "resumeWithSuspensionID:",
13218 "retain",
13219 "retainArguments",
13220 "retainCaches",
13221 "retainCount",
13222 "retainIconForURL:",
13223 "retainOrCopyIfNeeded",
13224 "retainWireCount",
13225 "retainedXmlInfoForRelationship:",
13226 "retryAfterAuthenticationFailure:",
13227 "retryAfterTLSFailure",
13228 "retryWithRedirectedURLAndResultCode:",
13229 "returnDisconnectedBindingsOfObject:",
13230 "returnResult:exception:sequence:imports:",
13231 "returnType",
13232 "reverseObjectEnumerator",
13233 "reverseTransformedValue:",
13234 "reversedSortDescriptor",
13235 "revert:",
13236 "revertDocumentToSaved:",
13237 "revertToContentsOfURL:ofType:error:",
13238 "revertToSavedFromFile:ofType:",
13239 "reviewUnsavedDocumentsWithAlertTitle:cancellable:delegate:didReviewAllSelector:contextInfo:",
13240 "rightChild",
13241 "rightExpression",
13242 "rightIndentMarkerWithRulerView:location:",
13243 "rightMargin",
13244 "rightMouseDown:",
13245 "rightMouseDragged:",
13246 "rightMouseUp:",
13247 "rightSplitItem",
13248 "rightTabMarkerWithRulerView:location:",
13249 "rightTruncateString:toWidth:withFont:",
13250 "rightView",
13251 "role",
13252 "roleDescription",
13253 "rollback",
13254 "rollbackChanges",
13255 "rollbackTransaction",
13256 "rolloverXLocation",
13257 "root",
13258 "rootDocument",
13259 "rootElement",
13260 "rootEntity",
13261 "rootNode",
13262 "rootObject",
13263 "rootObjectClasses",
13264 "rootObjectStore",
13265 "rootProxy",
13266 "rotateByAngle:",
13267 "rotateByDegrees:",
13268 "rotated",
13269 "rotation",
13270 "roundingBehavior",
13271 "roundingMode",
13272 "row",
13273 "rowAtPoint:",
13274 "rowForItem:",
13275 "rowForObjectID:",
13276 "rowForObjectID:after:",
13277 "rowForUpdate",
13278 "rowHeight",
13279 "rowSpan",
13280 "rowsInRect:",
13281 "ruler",
13282 "rulerAccessoryViewForTextView:paragraphStyle:ruler:enabled:",
13283 "rulerAttributesInRange:",
13284 "rulerMarkersForTextView:paragraphStyle:ruler:",
13285 "rulerView:didAddMarker:",
13286 "rulerView:didMoveMarker:",
13287 "rulerView:didRemoveMarker:",
13288 "rulerView:handleMouseDown:",
13289 "rulerView:shouldAddMarker:",
13290 "rulerView:shouldMoveMarker:",
13291 "rulerView:shouldRemoveMarker:",
13292 "rulerView:willAddMarker:atLocation:",
13293 "rulerView:willMoveMarker:toLocation:",
13294 "rulerView:willRemoveMarker:",
13295 "rulerView:willSetClientView:",
13296 "rulerViewClass",
13297 "rulersVisible",
13298 "run",
13299 "run:",
13300 "runAsModalDialogWithChallenge:",
13301 "runAsSheetOnWindow:withChallenge:",
13302 "runCustomizationPalette:",
13303 "runInitialization",
13304 "runJavaScriptAlertPanelWithMessage:",
13305 "runJavaScriptConfirmPanelWithMessage:",
13306 "runJavaScriptTextInputPanelWithPrompt:defaultText:returningText:",
13307 "runLoop",
13308 "runLoopModesForAnimating",
13309 "runModal",
13310 "runModalForCarbonWindow:",
13311 "runModalForDirectory:file:",
13312 "runModalForDirectory:file:types:",
13313 "runModalForDirectory:file:types:relativeToWindow:",
13314 "runModalForSavePanel:",
13315 "runModalForSavePanel:withFilepath:",
13316 "runModalForTypes:",
13317 "runModalForWindow:",
13318 "runModalForWindow:relativeToWindow:",
13319 "runModalOpenPanel:forTypes:",
13320 "runModalPageLayoutWithPrintInfo:delegate:didRunSelector:contextInfo:",
13321 "runModalPrintOperation:delegate:didRunSelector:contextInfo:",
13322 "runModalSavePanel:withAccessoryView:",
13323 "runModalSavePanelForSaveOperation:delegate:didSaveSelector:contextInfo:",
13324 "runModalSession:",
13325 "runModalWithPrintInfo:",
13326 "runMode:beforeDate:",
13327 "runOpenPanelForFileButtonWithResultListener:",
13328 "runOperation",
13329 "runOperationModalForWindow:delegate:didRunSelector:contextInfo:",
13330 "runPageLayout:",
13331 "runPoof",
13332 "runPoofAtPoint:withSize:callbackInfo:",
13333 "runToolbarCustomizationPalette:",
13334 "runUntilDate:",
13335 "sampleTextForTriplet:",
13336 "samplerOptionForKey:",
13337 "samplerOptions",
13338 "samplerWithImage:",
13339 "samplerWithImage:keysAndValues:",
13340 "samplesPerPixel",
13341 "sansSerifFontFamily",
13342 "saturationComponent",
13343 "save",
13344 "save:",
13345 "saveAllDocuments:",
13346 "saveAndSetPortState",
13347 "saveAndSetPortStateForUpdate:",
13348 "saveChanges",
13349 "saveChanges:",
13350 "saveConfigurationUsingName:",
13351 "saveDefaults",
13352 "saveDocument:",
13353 "saveDocumentAs:",
13354 "saveDocumentState",
13355 "saveDocumentState:",
13356 "saveDocumentToPageCache",
13357 "saveDocumentToPageCache:",
13358 "saveDocumentToPath:",
13359 "saveDocumentWithDelegate:didSaveSelector:contextInfo:",
13360 "saveFavoritesToDefaults",
13361 "saveFontCollection:",
13362 "saveFrameUsingName:",
13363 "saveGraphicsState",
13364 "saveImageNamed:andShowWarnings:",
13365 "saveList:",
13366 "saveMetadata:",
13367 "saveMorphedGlyphs:",
13368 "saveNumVisibleRows",
13369 "saveOptions",
13370 "savePanel",
13371 "saveParameter:to:",
13372 "savePreviewHeightInDefaults:",
13373 "saveRecipeChanges",
13374 "saveResource",
13375 "saveResourceWithCachedResponse:",
13376 "saveRoot",
13377 "saveToDocument:removeBackup:errorHandler:",
13378 "saveToFile:saveOperation:delegate:didSaveSelector:contextInfo:",
13379 "saveToPath:",
13380 "saveToURL:error:",
13381 "saveToURL:ofType:forSaveOperation:delegate:didSaveSelector:contextInfo:",
13382 "saveToURL:ofType:forSaveOperation:error:",
13383 "saveWithGlyphOrigin:",
13384 "scale",
13385 "scaleBy:",
13386 "scaleRegionOf:destRect:userInfo:",
13387 "scaleTo::",
13388 "scaleUnitSquareToSize:",
13389 "scaleXBy:yBy:",
13390 "scalesWhenResized",
13391 "scanCharactersFromSet:intoString:",
13392 "scanDecimal:",
13393 "scanDouble:",
13394 "scanFloat:",
13395 "scanHexInt:",
13396 "scanInt:",
13397 "scanLocation",
13398 "scanLongLong:",
13399 "scanString:intoString:",
13400 "scanUpToCharactersFromSet:intoString:",
13401 "scanUpToString:intoString:",
13402 "scannerWithString:",
13403 "schedule",
13404 "scheduleDelayedUpdate",
13405 "scheduleInRunLoop:forMode:",
13406 "scheduleShowRolloverWindow",
13407 "scheduleUpdate",
13408 "scheduledTimerWithTimeInterval:invocation:repeats:",
13409 "scheduledTimerWithTimeInterval:target:selector:userInfo:repeats:",
13410 "scheme",
13411 "scopeButtonAction:",
13412 "screen",
13413 "screenFont",
13414 "screenFontWithRenderingMode:",
13415 "screens",
13416 "scriptCommand",
13417 "scriptErrorNumber",
13418 "scriptErrorString",
13419 "scriptingBeginsWith:",
13420 "scriptingContains:",
13421 "scriptingEndsWith:",
13422 "scriptingIsEqualTo:",
13423 "scriptingIsGreaterThan:",
13424 "scriptingIsGreaterThanOrEqualTo:",
13425 "scriptingIsLessThan:",
13426 "scriptingIsLessThanOrEqualTo:",
13427 "scriptingProperties",
13428 "scroll:",
13429 "scrollBarColor",
13430 "scrollCellToVisibleAtRow:column:",
13431 "scrollClipView:toPoint:",
13432 "scrollColumnToVisible:",
13433 "scrollColumnsLeftBy:",
13434 "scrollColumnsRightBy:",
13435 "scrollDown",
13436 "scrollItemAtIndexToTop:",
13437 "scrollItemAtIndexToVisible:",
13438 "scrollLineDown:",
13439 "scrollLineUp:",
13440 "scrollOverflowInDirection:granularity:",
13441 "scrollOverflowWithScrollWheelEvent:",
13442 "scrollPageDown:",
13443 "scrollPageUp:",
13444 "scrollPoint",
13445 "scrollPoint:",
13446 "scrollRangeToVisible:",
13447 "scrollRect:by:",
13448 "scrollRectToVisible:",
13449 "scrollRectToVisible:inScrollView:animate:",
13450 "scrollRowToVisible:",
13451 "scrollToAnchor:",
13452 "scrollToAnchorWithURL:",
13453 "scrollToBeginningOfDocument:",
13454 "scrollToEndOfDocument:",
13455 "scrollToPoint:",
13456 "scrollToSelected",
13457 "scrollUp",
13458 "scrollViaScroller:",
13459 "scrollView",
13460 "scrollViewDidTile",
13461 "scrollWheel:",
13462 "scrollerWidth",
13463 "scrollerWidthForControlSize:",
13464 "searchButtonCell",
13465 "searchButtonRectForBounds:",
13466 "searchFieldCellOrControlDidClearRecents:",
13467 "searchFor:direction:caseSensitive:wrap:",
13468 "searchForBrowsableDomains",
13469 "searchForLabels:beforeElement:",
13470 "searchMenuTemplate",
13471 "searchScopeDisplayName",
13472 "searchTextRectForBounds:",
13473 "searchableIndexIntroduction",
13474 "secondOfMinute",
13475 "secondaryInvocation",
13476 "secondarySelectedControlColor",
13477 "secondsFromGMT",
13478 "secondsFromGMTForDate:",
13479 "seedPrimaryKeyInt:",
13480 "seedPrimaryKeys",
13481 "seekToFileOffset:",
13482 "segmentCount",
13483 "segmentWithIndex:parent:",
13484 "segmentedCell",
13485 "selectAll",
13486 "selectAll:",
13487 "selectAllInView:selectionOnly:",
13488 "selectAllInView:selectionOnly:fontFamily:font:characterStyle:paragraphStyle:",
13489 "selectCell:",
13490 "selectCellAtRow:column:",
13491 "selectColumn:byExtendingSelection:",
13492 "selectColumnIndexes:byExtendingSelection:",
13493 "selectDefaultRange",
13494 "selectDraggedFileNode:",
13495 "selectFarthestRangeForward:",
13496 "selectItem:",
13497 "selectItemAtIndex:",
13498 "selectItemWithObjectValue:",
13499 "selectItemWithTag:",
13500 "selectItemWithTitle:",
13501 "selectKeyViewFollowingView:",
13502 "selectKeyViewPrecedingView:",
13503 "selectNext:",
13504 "selectNextKeyView:",
13505 "selectNextRangeForward:",
13506 "selectNextTabViewItem:",
13507 "selectNode:",
13508 "selectPrevious:",
13509 "selectPreviousKeyView:",
13510 "selectRow:byExtendingSelection:",
13511 "selectRow:inColumn:",
13512 "selectRowIndexes:byExtendingSelection:",
13513 "selectRowsWithFetchRequest:",
13514 "selectSegmentWithTag:",
13515 "selectTabViewItem:",
13516 "selectTabViewItemAtIndex:",
13517 "selectText:",
13518 "selectTextAtRow:column:",
13519 "selectWithFrame:inView:editor:delegate:start:length:",
13520 "selectWord:",
13521 "selectableItemIdentifiers",
13522 "selectableScopeLocationNodes",
13523 "selectedAttributedString",
13524 "selectedAttributes",
13525 "selectedCell",
13526 "selectedCellInColumn:",
13527 "selectedCells",
13528 "selectedColorSpace",
13529 "selectedColumn",
13530 "selectedColumnEnumerator",
13531 "selectedControlColor",
13532 "selectedControlTextColor",
13533 "selectedDOMRange",
13534 "selectedFontChangedTo:",
13535 "selectedIndex",
13536 "selectedIndexAndQuality:",
13537 "selectedItem",
13538 "selectedItemIdentifier",
13539 "selectedKnobColor",
13540 "selectedMenuItemColor",
13541 "selectedMenuItemTextColor",
13542 "selectedName",
13543 "selectedNavNode",
13544 "selectedNodes",
13545 "selectedObjects",
13546 "selectedRange",
13547 "selectedRanges",
13548 "selectedResolvedNodes",
13549 "selectedRow",
13550 "selectedRowEnumerator",
13551 "selectedRowInColumn:",
13552 "selectedRowIndexes",
13553 "selectedScopeLocationNodes",
13554 "selectedSegment",
13555 "selectedString",
13556 "selectedTabViewItem",
13557 "selectedTextAttributes",
13558 "selectedTextBackgroundColor",
13559 "selectedTextColor",
13560 "selectionAffinity",
13561 "selectionColor",
13562 "selectionGranularity",
13563 "selectionImage",
13564 "selectionIndexPaths",
13565 "selectionIndexes",
13566 "selectionRangeForProposedRange:granularity:",
13567 "selectionRect",
13568 "selectionShouldChangeInOutlineView:",
13569 "selectionShouldChangeInTableView:",
13570 "selectionStartHasStyle:",
13571 "selectionState",
13572 "selector",
13573 "selectorForCommand:",
13574 "selectsAllWhenSettingContent",
13575 "selectsInsertedObjects",
13576 "self",
13577 "send",
13578 "sendAction",
13579 "sendAction:to:",
13580 "sendAction:to:from:",
13581 "sendActionOn:",
13582 "sendActivateEvent:",
13583 "sendBeforeDate:components:from:reserved:",
13584 "sendBeforeDate:msgid:components:from:reserved:",
13585 "sendBeforeTime:sendReplyPort:",
13586 "sendBeforeTime:streamData:components:from:msgid:",
13587 "sendBeforeTime:streamData:components:to:from:msgid:reserved:",
13588 "sendCarbonProcessHICommandEvent:",
13589 "sendCarbonUpdateHICommandStatusEvent:withMenuRef:andMenuItemIndex:",
13590 "sendConsumedMouseUpIfNeeded",
13591 "sendContextMenuEvent:",
13592 "sendDoubleAction",
13593 "sendEvent:",
13594 "sendInvocation:",
13595 "sendModifierEventWithKeyCode:character:",
13596 "sendMouseUpActionForDisabledCell:atRow:column:",
13597 "sendNotification",
13598 "sendNullEvent",
13599 "sendOpenEventFor:",
13600 "sendPort",
13601 "sendReleasedProxies",
13602 "sendResizeEvent",
13603 "sendResponseAvailableCallback",
13604 "sendScrollEvent",
13605 "sendSelectionChangedNotification",
13606 "sendSuperEvent:",
13607 "sendSynchronousRequest:returningResponse:error:",
13608 "sendTimerEvent",
13609 "sendUpdateEvent",
13610 "sendWireCountForTarget:port:",
13611 "sender",
13612 "senderDidBecomeActive:",
13613 "senderDidResignActive:",
13614 "sendsActionOnEndEditing",
13615 "sendsSearchStringImmediately",
13616 "sendsWholeSearchString",
13617 "separatesColumns",
13618 "separatorColor",
13619 "separatorItem",
13620 "serialize:length:",
13621 "serializeAlignedBytes:length:",
13622 "serializeAlignedBytesLength:",
13623 "serializeData:",
13624 "serializeDataAt:ofObjCType:context:",
13625 "serializeInt:",
13626 "serializeInt:atIndex:",
13627 "serializeList:",
13628 "serializeListItemIn:at:",
13629 "serializeObject:",
13630 "serializeObjectAt:ofObjCType:intoData:",
13631 "serializePListKeyIn:key:value:",
13632 "serializePListValueIn:key:value:",
13633 "serializePropertyList:",
13634 "serializePropertyList:intoData:",
13635 "serializeString:",
13636 "serializeToData",
13637 "serializedRepresentation",
13638 "serifFontFamily",
13639 "server",
13640 "serviceError:error:",
13641 "serviceListener",
13642 "servicesInfoIdentifier:",
13643 "servicesMenu",
13644 "servicesMenuData:forUser:",
13645 "servicesProvider",
13646 "set",
13647 "setAbsorbedCount:forIndex:",
13648 "setAcceptsColorDrops:",
13649 "setAcceptsGlyphInfo:",
13650 "setAcceptsMouseMovedEvents:",
13651 "setAccessoryView:",
13652 "setAction:",
13653 "setActionName:",
13654 "setActivated:sender:",
13655 "setActivationEventNumber:",
13656 "setActiveColorSpace:",
13657 "setActsLikeButton:",
13658 "setAdditionalClip:",
13659 "setAdditionalPatternPhase:",
13660 "setAdvance:forIndex:",
13661 "setAffectedStores:",
13662 "setAfterEntityLookup:",
13663 "setAlertStyle:",
13664 "setAlignment:",
13665 "setAlignment:range:",
13666 "setAllDestinations:",
13667 "setAllHTTPHeaderFields:",
13668 "setAllHeaderFields:",
13669 "setAllowedFileTypes:",
13670 "setAllowsAnimatedImageLooping:",
13671 "setAllowsAnimatedImages:",
13672 "setAllowsBranchSelection:",
13673 "setAllowsColumnReordering:",
13674 "setAllowsColumnResizing:",
13675 "setAllowsColumnSelection:",
13676 "setAllowsEditingMultipleValuesSelection:",
13677 "setAllowsEditingTextAttributes:",
13678 "setAllowsEmptySelection:",
13679 "setAllowsExpandingMultipleDirectories:",
13680 "setAllowsFloats:",
13681 "setAllowsIncrementalSearching:",
13682 "setAllowsMixedState:",
13683 "setAllowsMultipleSelection:",
13684 "setAllowsOtherFileTypes:",
13685 "setAllowsScrolling:",
13686 "setAllowsTickMarkValuesOnly:",
13687 "setAllowsToolTipsWhenApplicationIsInactive:",
13688 "setAllowsUndo:",
13689 "setAllowsUserCustomization:",
13690 "setAlpha:",
13691 "setAlphaValue:",
13692 "setAltIncrementValue:",
13693 "setAlternate:",
13694 "setAlternateImage:",
13695 "setAlternateMnemonicLocation:",
13696 "setAlternateTitle:",
13697 "setAlwaysPresentsApplicationModalAlerts:",
13698 "setAlwaysUsesMultipleValuesMarker:",
13699 "setAnimates:",
13700 "setAnimationBlockingMode:",
13701 "setAnimationDelay:",
13702 "setAppleMenu:",
13703 "setArgument:atIndex:",
13704 "setArgumentBinding:",
13705 "setArguments:",
13706 "setArray:",
13707 "setArrowPosition:",
13708 "setArrowsPosition:",
13709 "setAsMainCarbonMenuBar",
13710 "setAspectRatio:",
13711 "setAssociatedInputManager:",
13712 "setAttachment:",
13713 "setAttachmentCell:",
13714 "setAttachmentSize:forGlyphRange:",
13715 "setAttribute::",
13716 "setAttributeKeys:andValues:",
13717 "setAttributeSlot:withObject:",
13718 "setAttributeType:",
13719 "setAttributedAlternateTitle:",
13720 "setAttributedString:",
13721 "setAttributedStringForNil:",
13722 "setAttributedStringForNotANumber:",
13723 "setAttributedStringForZero:",
13724 "setAttributedStringValue:",
13725 "setAttributedTitle:",
13726 "setAttributes:",
13727 "setAttributes:Values:ValueSizes:Count:",
13728 "setAttributes:range:",
13729 "setAttributesInTextStorage:",
13730 "setAutoAddExtensionToNextInput:",
13731 "setAutodisplay:",
13732 "setAutoenablesItems:",
13733 "setAutohidesScrollers:",
13734 "setAutorecalculatesKeyViewLoop:",
13735 "setAutorepeat:",
13736 "setAutoresizesAllColumnsToFit:",
13737 "setAutoresizesSubviews:",
13738 "setAutoresizingMask:",
13739 "setAutosaveName:",
13740 "setAutosaveTableColumns:",
13741 "setAutosavedContentsFileURL:",
13742 "setAutosaves:",
13743 "setAutosavesConfiguration:",
13744 "setAutoscroll:",
13745 "setAutovalidates:",
13746 "setAvoidableSpecifier:path:",
13747 "setAvoidsEmptySelection:",
13748 "setBackgroundColor:",
13749 "setBackgroundLayoutEnabled:",
13750 "setBaseAffineTransform:",
13751 "setBaseSpecifier:",
13752 "setBaseURL:",
13753 "setBaseWritingDirection:",
13754 "setBaseWritingDirection:range:",
13755 "setBecomesKeyOnlyIfNeeded:",
13756 "setBezelStyle:",
13757 "setBezeled:",
13758 "setBidiLevels:forGlyphRange:",
13759 "setBinderSpecificFlag:atIndex:",
13760 "setBinding:",
13761 "setBitmap:rowBytes:bounds:format:",
13762 "setBitsPerSample:",
13763 "setBool:forKey:",
13764 "setBoolParameterValue:to:",
13765 "setBoolParameterValue:to:inResolutionData:",
13766 "setBorderColor:",
13767 "setBorderColor:forEdge:",
13768 "setBorderType:",
13769 "setBorderWidth:",
13770 "setBordered:",
13771 "setBottomCornerRounded:",
13772 "setBottomMargin:",
13773 "setBounds:",
13774 "setBoundsOrigin:",
13775 "setBoundsRect:forTextBlock:glyphRange:",
13776 "setBoundsSize:",
13777 "setBoxType:",
13778 "setBrightness:",
13779 "setBrowser:",
13780 "setBulletCharacter:",
13781 "setBundle:",
13782 "setBundlePath:",
13783 "setButtonBordered:",
13784 "setButtonID:",
13785 "setButtonType:",
13786 "setCGCompositeOperation:inContext:",
13787 "setCGCompositeOperationFromString:inContext:",
13788 "setCGContext:",
13789 "setCTM:",
13790 "setCacheDepthMatchesImageDepth:",
13791 "setCacheHint:",
13792 "setCacheMode:",
13793 "setCachePolicy:",
13794 "setCachedChildren:",
13795 "setCachedChildren:forObservedNode:",
13796 "setCachedSQLiteStatement:",
13797 "setCachedSeparately:",
13798 "setCalculatesAllSizes:",
13799 "setCalendar:",
13800 "setCalendarFormat:",
13801 "setCanChooseDirectories:",
13802 "setCanChooseFiles:",
13803 "setCanClickDisabledFiles:",
13804 "setCanCreateDirectories:",
13805 "setCanCycle:",
13806 "setCanHide:",
13807 "setCanSelectHiddenExtension:",
13808 "setCancelButtonCell:",
13809 "setCancellationDelegate:wasCancelledSelector:contextInfo:",
13810 "setCaseSensitive:",
13811 "setCell:",
13812 "setCellAttribute:to:",
13813 "setCellBackgroundColor:",
13814 "setCellClass:",
13815 "setCellPrototype:",
13816 "setCellSize:",
13817 "setCertificatePolicyOnStream",
13818 "setCharacterEncoding:",
13819 "setCharacterIndex:forGlyphAtIndex:",
13820 "setCharacterIndex:layoutManager:",
13821 "setCharactersToBeSkipped:",
13822 "setChildSpecifier:",
13823 "setChildren:",
13824 "setChildrenKeyPath:",
13825 "setClassDescription:",
13826 "setClearsFilterPredicateOnInsertion:",
13827 "setClient:",
13828 "setClientView:",
13829 "setClip",
13830 "setClippedItems:",
13831 "setCocoaSubVersion:",
13832 "setCocoaVersion:",
13833 "setCollapsesBorders:",
13834 "setColor:",
13835 "setColor:forAttribute:",
13836 "setColor:forKey:",
13837 "setColorList:",
13838 "setColorSpaceName:",
13839 "setColumnAutoresizingStyle:",
13840 "setColumnResizingType:",
13841 "setColumnsAutosaveName:",
13842 "setColumnsToFetch:",
13843 "setCommandDescription:",
13844 "setCompareSelector:",
13845 "setCompletes:",
13846 "setCompletionDelay:",
13847 "setCompression:factor:",
13848 "setConditionallySetsEditable:",
13849 "setConditionallySetsEnabled:",
13850 "setConditionallySetsHidden:",
13851 "setConfiguratioName:",
13852 "setConfigurationUsingName:",
13853 "setConstrainedFrameSize:",
13854 "setContainerClassDescription:",
13855 "setContainerIsObjectBeingTested:",
13856 "setContainerIsRangeContainerObject:",
13857 "setContainerSize:",
13858 "setContainerSpecifier:",
13859 "setContainingWindow:",
13860 "setContent:",
13861 "setContentMaxSize:",
13862 "setContentMinSize:",
13863 "setContentSize:",
13864 "setContentView:",
13865 "setContentViewMargins:",
13866 "setContentsNoCopy:length:freeWhenDone:isUnicode:",
13867 "setContextHelp:forObject:",
13868 "setContextHelpModeActive:",
13869 "setContextMenuRepresentation:",
13870 "setContinuous:",
13871 "setContinuousGrammarCheckingEnabled:",
13872 "setContinuousSpellCheckingEnabled:",
13873 "setContinuouslyUpdatesValue:",
13874 "setControl:",
13875 "setControlSize:",
13876 "setControlTint:",
13877 "setControlView:",
13878 "setController:",
13879 "setController:retainController:",
13880 "setConversationRequest:",
13881 "setCookies:forURL:mainDocumentURL:",
13882 "setCookies:forURL:policyBaseURL:",
13883 "setCookies:whilePrivateBrowsing:",
13884 "setCopiesOnScroll:",
13885 "setCornerView:",
13886 "setCountKeyPath:",
13887 "setCreatesSortDescriptor:",
13888 "setCredential:forProtectionSpace:",
13889 "setCriticalValue:",
13890 "setCssText:",
13891 "setCurrListName:",
13892 "setCurrent:",
13893 "setCurrentAppleEventAndReplyEventWithSuspensionID:",
13894 "setCurrentBrowsingNodePath:",
13895 "setCurrentConstructionContext:",
13896 "setCurrentContext:",
13897 "setCurrentDirectoryNode:",
13898 "setCurrentEntity:",
13899 "setCurrentFrame:",
13900 "setCurrentImageNumber:",
13901 "setCurrentInputManager:",
13902 "setCurrentItem:",
13903 "setCurrentOperation:",
13904 "setCurrentPage:",
13905 "setCurrentPluginView:",
13906 "setCurrentProgress:",
13907 "setCurrentVoiceIdentifier:",
13908 "setCursiveFontFamily:",
13909 "setCursorPositionToIndex:inParagraph:",
13910 "setCustomizationSheetWidth:",
13911 "setDBSnapshot:",
13912 "setDTD:",
13913 "setDTDKind:",
13914 "setData:",
13915 "setData:forType:",
13916 "setDataCell:",
13917 "setDataRetained:",
13918 "setDataSource:",
13919 "setDatabaseOperator:",
13920 "setDatabaseUUID:",
13921 "setDatabaseVersion:",
13922 "setDateFormat:",
13923 "setDatePickerElements:",
13924 "setDatePickerMode:",
13925 "setDatePickerStyle:",
13926 "setDateStyle:",
13927 "setDateValue:",
13928 "setDebugDefault:",
13929 "setDecimalSeparator:",
13930 "setDefaultAttachmentScaling:",
13931 "setDefaultBorderColor:",
13932 "setDefaultButtonCell:",
13933 "setDefaultCredential:forProtectionSpace:",
13934 "setDefaultFixedFontSize:",
13935 "setDefaultFlatness:",
13936 "setDefaultFontSize:",
13937 "setDefaultFormatterBehavior:",
13938 "setDefaultLineCapStyle:",
13939 "setDefaultLineJoinStyle:",
13940 "setDefaultLineWidth:",
13941 "setDefaultMenu:",
13942 "setDefaultMiterLimit:",
13943 "setDefaultParagraphStyle:",
13944 "setDefaultPlaceholder:forBinding:onObjectClass:",
13945 "setDefaultPlaceholder:forMarker:withBinding:",
13946 "setDefaultTabInterval:",
13947 "setDefaultTextColor:",
13948 "setDefaultTextEncoding:",
13949 "setDefaultType:",
13950 "setDefaultWindingRule:",
13951 "setDeferSync:",
13952 "setDefersCallbacks:",
13953 "setDefersLoading:",
13954 "setDelegate:",
13955 "setDelegate:withNotifyingTextView:",
13956 "setDeletedObjects:",
13957 "setDeletesObjectsOnRemove:",
13958 "setDepthLimit:",
13959 "setDescriptor:forKeyword:",
13960 "setDestination:",
13961 "setDestination:allowOverwrite:",
13962 "setDestinationEntityExternalName:",
13963 "setDestinationOrigin:travelTimeInSeconds:",
13964 "setDestinations:forRelationship:",
13965 "setDictionary:",
13966 "setDirectParameter:",
13967 "setDirectory:",
13968 "setDisabled:",
13969 "setDisabledWhenInactive:",
13970 "setDiskCapacity:",
13971 "setDisplayMode:",
13972 "setDisplayPattern:",
13973 "setDisplayedContainerNodes:",
13974 "setDisplayedStringsArray:",
13975 "setDisplayedTitle:",
13976 "setDisplaysTokenWhileEditing:",
13977 "setDisplaysWithFocusAttributes:",
13978 "setDocument:",
13979 "setDocumentAttributes:",
13980 "setDocumentCursor:",
13981 "setDocumentEdited:",
13982 "setDocumentState:",
13983 "setDocumentView:",
13984 "setDoubleAction:",
13985 "setDoubleValue:",
13986 "setDragAndDropCharRanges:",
13987 "setDragWindowImage:",
13988 "setDraggingImage:at:",
13989 "setDrawingAttributes:",
13990 "setDrawingStyle:",
13991 "setDrawnInSelectedRow:",
13992 "setDrawsBackground:",
13993 "setDrawsGrid:",
13994 "setDrawsOutsideLineFragment:forGlyphAtIndex:",
13995 "setDrawsOutsideLineFragment:forGlyphRange:",
13996 "setDrawsTrackAsColorScaleType:",
13997 "setDropItem:dropChildIndex:",
13998 "setDropRow:dropOperation:",
13999 "setDynamicDepthLimit:",
14000 "setEchosBullets:",
14001 "setEditable:",
14002 "setEditableIfEnabled:",
14003 "setEdited:",
14004 "setEditedFlag:",
14005 "setElementName:",
14006 "setEmpty",
14007 "setEnableSelectionHighlightDrawing:",
14008 "setEnableTextHighlightDrawing:",
14009 "setEnabled",
14010 "setEnabled:",
14011 "setEnabled:forSegment:",
14012 "setEnabledFileTypes:",
14013 "setEncoding:userChosen:",
14014 "setEnd::",
14015 "setEndSpecifier:",
14016 "setEndSubelementIdentifier:",
14017 "setEndSubelementIndex:",
14018 "setEndWhitespace:",
14019 "setEntities:",
14020 "setEntities:forConfiguration:",
14021 "setEntity:",
14022 "setEntityName:",
14023 "setEntryType:",
14024 "setError:info:fatal:",
14025 "setErrorExpectedType:",
14026 "setErrorNumber:",
14027 "setErrorOffendingObjectDescriptor:",
14028 "setEvaluationErrorNumber:",
14029 "setEventHandler:andSelector:forEventClass:andEventID:",
14030 "setExpanded:",
14031 "setExpandedView:",
14032 "setExtensionHidden:",
14033 "setExternalName:",
14034 "setExternalPrecision:",
14035 "setExternalScale:",
14036 "setExternalType:",
14037 "setExtraLineFragmentRect:usedRect:textContainer:",
14038 "setFBENode:",
14039 "setFantasyFontFamily:",
14040 "setFauxFilePackageTypes:",
14041 "setFetchPredicate:",
14042 "setFetchRequestTemplate:forName:",
14043 "setFidelity:",
14044 "setFieldEditor:",
14045 "setFileAttributes:",
14046 "setFileListMode:",
14047 "setFileListOrderedByFileProperty:",
14048 "setFileListOrderedByFileProperty:ascending:",
14049 "setFileListOrderedByFileProperty:ascending:caseSensitive:",
14050 "setFileModificationDate:",
14051 "setFileName:",
14052 "setFileType:",
14053 "setFileURL:",
14054 "setFilename:",
14055 "setFill",
14056 "setFilter:",
14057 "setFilterPredicate:",
14058 "setFindString:writeToPasteboard:updateUI:",
14059 "setFireDate:",
14060 "setFirstLineHeadIndent:",
14061 "setFixedFontFamily:",
14062 "setFixedWidthFont",
14063 "setFlatness:",
14064 "setFlipped:",
14065 "setFloat:forKey:",
14066 "setFloatParameterValue:forResolution:to:",
14067 "setFloatParameterValue:to:inResolutionData:",
14068 "setFloatValue:",
14069 "setFloatValue:knobProportion:",
14070 "setFloatingPanel:",
14071 "setFloatingPointFormat:left:right:",
14072 "setFocusRingStyle:radius:color:",
14073 "setFocusRingType:",
14074 "setFocusStack:",
14075 "setFocusedColorChipIndex:",
14076 "setFont:",
14077 "setFontDescriptorKey:",
14078 "setFontFamily:",
14079 "setFontMenu:",
14080 "setFontPanel:",
14081 "setFontSize:",
14082 "setFontStyle:",
14083 "setFontWeight:",
14084 "setForegroundColor:",
14085 "setForeignEntityKeySlot:unsigned:",
14086 "setForeignKeySlot:int64:",
14087 "setForeignKeys:",
14088 "setFormat:",
14089 "setFormatter:",
14090 "setFormatterBehavior:",
14091 "setFrame:",
14092 "setFrame:display:",
14093 "setFrame:display:animate:",
14094 "setFrameAutosaveName:",
14095 "setFrameFromContentFrame:",
14096 "setFrameFromString:",
14097 "setFrameLoadDelegate:",
14098 "setFrameOrigin:",
14099 "setFrameRotation:",
14100 "setFrameSize:",
14101 "setFrameTopLeftPoint:",
14102 "setFrameUsingName:",
14103 "setFullMetadata:",
14104 "setGlyphGenerator:",
14105 "setGlyphID:forIndex:",
14106 "setGlyphRange:characterRange:",
14107 "setGridColor:",
14108 "setGridStyleMask:",
14109 "setGroupIdentifier:",
14110 "setGroupName:",
14111 "setGroupingSeparator:",
14112 "setHTTPBody:",
14113 "setHTTPContentType:",
14114 "setHTTPMethod:",
14115 "setHTTPReferrer:",
14116 "setHTTPUserAgent:",
14117 "setHandle:",
14118 "setHandlesContentAsCompoundValue:",
14119 "setHardInvalidation:forGlyphRange:",
14120 "setHasBorder:",
14121 "setHasFocus:",
14122 "setHasHorizontalRuler:",
14123 "setHasHorizontalScroller:",
14124 "setHasPageCache:",
14125 "setHasShadow:",
14126 "setHasThousandSeparators:",
14127 "setHasUndoManager:",
14128 "setHasVerticalScroller:",
14129 "setHeadIndent:",
14130 "setHeader",
14131 "setHeaderCell:",
14132 "setHeaderLevel:",
14133 "setHeaderView:",
14134 "setHeightTracksTextView:",
14135 "setHelpAnchor:",
14136 "setHidden:",
14137 "setHiddenUntilMouseMoves:",
14138 "setHidesEmptyCells:",
14139 "setHidesOnDeactivate:",
14140 "setHighlightMode:",
14141 "setHighlighted:",
14142 "setHighlightedItemIndex:",
14143 "setHighlightedTableColumn:",
14144 "setHighlightsBy:",
14145 "setHintCapacity:",
14146 "setHistoryAgeInDaysLimit:",
14147 "setHistoryItemLimit:",
14148 "setHistoryProvider:",
14149 "setHorizontal:",
14150 "setHorizontalAlignment:",
14151 "setHorizontalEdgePadding:",
14152 "setHorizontalLineScroll:",
14153 "setHorizontalPageScroll:",
14154 "setHorizontalPagination:",
14155 "setHorizontalScrollingMode:",
14156 "setHorizontallyCentered:",
14157 "setHorizontallyResizable:",
14158 "setHyphenationFactor:",
14159 "setIcon:",
14160 "setIconURL:",
14161 "setIconURL:withType:",
14162 "setIdentifier:",
14163 "setIgnoredWords:inSpellDocumentWithTag:",
14164 "setIgnoresAlpha:",
14165 "setIgnoresMouseEvents:",
14166 "setIgnoresViewTransformations:",
14167 "setImage:",
14168 "setImage:dirtyRect:",
14169 "setImage:forSegment:",
14170 "setImageAlignment:",
14171 "setImageFrameStyle:",
14172 "setImageInterpolation:",
14173 "setImageNamed:forView:",
14174 "setImagePosition:",
14175 "setImageRep:",
14176 "setImageRep:forImage:",
14177 "setImageRep:forItemIdentifiers:",
14178 "setImageScaling:",
14179 "setImplementor:atIndex:",
14180 "setImportsGraphics:",
14181 "setInContext:",
14182 "setInDrawingMachinery:",
14183 "setInPalette:",
14184 "setIncrement:",
14185 "setIndentationLevel:",
14186 "setIndentationPerLevel:",
14187 "setIndeterminate:",
14188 "setIndex:",
14189 "setIndexReferenceModelObjectArray:clearAllModelObjectObserving:",
14190 "setInformativeText:",
14191 "setInitialFirstResponder:",
14192 "setInitialGState:",
14193 "setInitialValues:",
14194 "setInnerHTML:",
14195 "setInsertedObjects:",
14196 "setInsertionClassDescription:",
14197 "setInsertionGlyphIndex:",
14198 "setInsertionPointColor:",
14199 "setInsertsNullPlaceholder:",
14200 "setIntAttribute:value:forGlyphAtIndex:",
14201 "setIntParameterValue:to:",
14202 "setIntParameterValue:to:inResolutionData:",
14203 "setIntValue:",
14204 "setInteger:forKey:",
14205 "setIntercellSpacing:",
14206 "setInterfaceStyle:",
14207 "setIsActive:",
14208 "setIsClosable:",
14209 "setIsContainer:",
14210 "setIsEmptyColumn:",
14211 "setIsFileListOrderedAscending:",
14212 "setIsFileListOrderedCaseSensitive:",
14213 "setIsFileProperty:displayed:",
14214 "setIsResizable:",
14215 "setIsSelected:",
14216 "setIsSelected:forView:",
14217 "setIsTargetItem:",
14218 "setIsUp:",
14219 "setItemHeight:",
14220 "setJavaEnabled:",
14221 "setJavaScriptCanOpenWindowsAutomatically:",
14222 "setJavaScriptEnabled:",
14223 "setJobDisposition:",
14224 "setJobStyleHint:",
14225 "setJoinSemantic:",
14226 "setJoins:",
14227 "setKey:",
14228 "setKeyBindingManager:",
14229 "setKeyCell:",
14230 "setKeyEquivalent:",
14231 "setKeyEquivalentFont:",
14232 "setKeyEquivalentModifierMask:",
14233 "setKeyPath:",
14234 "setKeyboardFocusRingNeedsDisplayIfNeededInRect:",
14235 "setKeyboardFocusRingNeedsDisplayInRect:",
14236 "setKeys:triggerChangeNotificationsForDependentKey:",
14237 "setKnobThickness:",
14238 "setLabel:",
14239 "setLabel:forSegment:",
14240 "setLanguage:",
14241 "setLanguageModel:",
14242 "setLastColumn:",
14243 "setLastEditedStringValue:",
14244 "setLaunchPath:",
14245 "setLayoutAlgorithm:",
14246 "setLayoutManager:",
14247 "setLayoutRect:forTextBlock:glyphRange:",
14248 "setLeadingOffset:",
14249 "setLeaf:",
14250 "setLeafKeyPath:",
14251 "setLeftChild:",
14252 "setLeftMargin:",
14253 "setLength:",
14254 "setLevel:",
14255 "setLineBreakMode:",
14256 "setLineCapStyle:",
14257 "setLineDash:count:phase:",
14258 "setLineFragmentPadding:",
14259 "setLineFragmentRect:forGlyphRange:usedRect:",
14260 "setLineFragmentRect:forGlyphRange:usedRect:baselineOffset:",
14261 "setLineHeightMultiple:",
14262 "setLineJoinStyle:",
14263 "setLineScroll:",
14264 "setLineSpacing:",
14265 "setLineWidth:",
14266 "setLinkInWindow:string:delegate:",
14267 "setLinkTextAttributes:",
14268 "setLoadType:",
14269 "setLoaded:",
14270 "setLoadsImagesAutomatically:",
14271 "setLocale:",
14272 "setLocaleListForDefaultFontFallback:",
14273 "setLocalizationDictionary:",
14274 "setLocalizesFormat:",
14275 "setLocation:forStartOfGlyphRange:",
14276 "setLocation:forStartOfGlyphRange:coalesceRuns:",
14277 "setLocation:withAdvancements:forStartOfGlyphRange:",
14278 "setLoopMode:",
14279 "setMIMEToDescriptionDictionary:",
14280 "setMIMEToExtensionsDictionary:",
14281 "setMIMEType:",
14282 "setMainDocumentURL:",
14283 "setMainMenu:",
14284 "setMaintainsBackForwardList:",
14285 "setManagedObjectContext:",
14286 "setMapData:",
14287 "setMark:",
14288 "setMarkDOMRange:",
14289 "setMarkedText:selectedRange:",
14290 "setMarkedTextAttributes:",
14291 "setMarkedTextDOMRange:",
14292 "setMarkerFormatInWindow:delegate:",
14293 "setMarkerLocation:",
14294 "setMarkers:",
14295 "setMasterObjectRelationship:",
14296 "setMasterObjectRelationship:refreshDetailContent:",
14297 "setMatchedColor:",
14298 "setMatrixClass:",
14299 "setMax:",
14300 "setMaxContentSize:",
14301 "setMaxCount:",
14302 "setMaxDate:",
14303 "setMaxSize:",
14304 "setMaxValue:",
14305 "setMaxVisibleColumns:",
14306 "setMaxWidth:",
14307 "setMaximum:",
14308 "setMaximumLength:",
14309 "setMaximumLineHeight:",
14310 "setMaximumRecents:",
14311 "setMemoryCapacity:",
14312 "setMenu:",
14313 "setMenu:forSegment:",
14314 "setMenuChangedMessagesEnabled:",
14315 "setMenuFormRepresentation:",
14316 "setMenuItem:",
14317 "setMenuRepresentation:",
14318 "setMenuView:",
14319 "setMessage:",
14320 "setMessageText:",
14321 "setMinColumnWidth:",
14322 "setMinContentSize:",
14323 "setMinCount:",
14324 "setMinDate:",
14325 "setMinSize:",
14326 "setMinValue:",
14327 "setMinWidth:",
14328 "setMinimum:",
14329 "setMinimumFontSize:",
14330 "setMinimumLineHeight:",
14331 "setMinimumLogicalFontSize:",
14332 "setMiterLimit:",
14333 "setMixedStateImage:",
14334 "setMnemonicLocation:",
14335 "setMode:",
14336 "setMonoCharacterSeparatorCharacters:usualPunctuation:",
14337 "setMovableByWindowBackground:",
14338 "setMovie:",
14339 "setMsgid:",
14340 "setMultipleCharacterSeparators:",
14341 "setMutableAttributedString:",
14342 "setName:",
14343 "setNameFieldLabel:",
14344 "setNames:",
14345 "setNamespaces:",
14346 "setNavNodeClass:",
14347 "setNeedsDisplay:",
14348 "setNeedsDisplayForItemAtIndex:",
14349 "setNeedsDisplayForResponderChange",
14350 "setNeedsDisplayIfSelectionNeedsToRedraw",
14351 "setNeedsDisplayInRect:",
14352 "setNeedsDisplayInRect:avoidAdditionalLayout:",
14353 "setNeedsLayout:",
14354 "setNeedsReapplyStyles",
14355 "setNeedsResyncWithDefaultVoice:",
14356 "setNeedsSizing:",
14357 "setNeedsToApplyStyles:",
14358 "setNegativeFormat:",
14359 "setNewAvailableData:",
14360 "setNextKeyView:",
14361 "setNextResponder:",
14362 "setNextState",
14363 "setNextUndoManager:",
14364 "setNilSymbol:",
14365 "setNilValueForKey:",
14366 "setNode:",
14367 "setNode:displayState:",
14368 "setNode:isDirectory:displayState:",
14369 "setNotANumberSymbol:",
14370 "setNotShownAttribute:forGlyphAtIndex:",
14371 "setNotShownAttribute:forGlyphRange:",
14372 "setNotationName:",
14373 "setNotificationCenterSerializeRemoves:",
14374 "setNumRowsToToggleVisible:",
14375 "setNumberOfColumns:",
14376 "setNumberOfMajorTickMarks:",
14377 "setNumberOfTickMarks:",
14378 "setNumberOfVisibleItems:",
14379 "setObject:forKey:",
14380 "setObject:forKey:inDomain:",
14381 "setObjectBeingTested:",
14382 "setObjectClass:",
14383 "setObjectForCurrentRecognition:",
14384 "setObjectID:",
14385 "setObjectValue:",
14386 "setObjectValuePreservingEntitiesForNode:string:",
14387 "setObjectZone:",
14388 "setObscured:",
14389 "setObservationInfo:",
14390 "setObservedObject:",
14391 "setObservingBinder:",
14392 "setObservingToModelObjectsRange:",
14393 "setOffStateImage:",
14394 "setOffset:",
14395 "setOnStateImage:",
14396 "setOneShot:",
14397 "setOpaque:",
14398 "setOptimizableColumn:",
14399 "setOption:forKey:",
14400 "setOptional:",
14401 "setOptions:",
14402 "setOptionsAttributes:string:",
14403 "setOptionsDictionary:",
14404 "setOrientation:",
14405 "setOrigin:",
14406 "setOriginOffset:",
14407 "setOriginalURLString:",
14408 "setOutline:",
14409 "setOutlineTableColumn:",
14410 "setOutputFormat:",
14411 "setPackage:",
14412 "setPage:",
14413 "setPageOrder:",
14414 "setPaletteLabel:",
14415 "setPanel:",
14416 "setPanelFont:isMultiple:",
14417 "setPaperName:",
14418 "setPaperSize:",
14419 "setParagraphGlyphRange:separatorGlyphRange:",
14420 "setParagraphSpacing:",
14421 "setParagraphSpacingBefore:",
14422 "setParagraphStyle:",
14423 "setParamDescriptor:forKeyword:",
14424 "setParameter:forOption:",
14425 "setParent:",
14426 "setParentCrayonRow:",
14427 "setParentCrayonView:",
14428 "setParentNode:",
14429 "setParentStore:",
14430 "setParentWindow:",
14431 "setParsesCocoaElements:",
14432 "setPath:",
14433 "setPathSeparator:",
14434 "setPausedActions:",
14435 "setPerformsContentDecoding:",
14436 "setPeriodicDelay:interval:",
14437 "setPersistentDomain:forName:",
14438 "setPersistentStoreCoordinator:",
14439 "setPhase:",
14440 "setPixelsHigh:",
14441 "setPixelsWide:",
14442 "setPlaceholder:forMarker:isDefault:",
14443 "setPlaceholderAttributedString:",
14444 "setPlaceholderString:",
14445 "setPlaysEveryFrame:",
14446 "setPlaysSelectionOnly:",
14447 "setPlugInsEnabled:",
14448 "setPlugin:",
14449 "setPluginDescription:",
14450 "setPluginPointer:",
14451 "setPluginsEnabled:",
14452 "setPolicyDelegate:",
14453 "setPoolCountHighWaterMark:",
14454 "setPoolCountHighWaterResolution:",
14455 "setPopulatingMenu:",
14456 "setPositiveFormat:",
14457 "setPostsBoundsChangedNotifications:",
14458 "setPostsFrameChangedNotifications:",
14459 "setPredicate:",
14460 "setPredicateName:",
14461 "setPredicateOperator:",
14462 "setPredicateString:",
14463 "setPreferences:",
14464 "setPreferredEdge:",
14465 "setPreferredFilename:",
14466 "setPreservesContentDuringLiveResize:",
14467 "setPreservesSelection:",
14468 "setPreviewNode:",
14469 "setPreviousItem:",
14470 "setPrimaryKeyGeneration:",
14471 "setPrimaryKeys:",
14472 "setPrimitiveValue:forKey:",
14473 "setPrintInfo:",
14474 "setPrintPanel:",
14475 "setPrinter:",
14476 "setPriority:forFlavor:",
14477 "setPrompt:",
14478 "setPropagatesDeletesAtEndOfEvent:",
14479 "setProperties:",
14480 "setProperty:",
14481 "setProperty:::",
14482 "setProperty:forKey:inRequest:",
14483 "setProperty:withValue:",
14484 "setPropertyList:forType:",
14485 "setPropertyMappings:",
14486 "setProps:forIndex:",
14487 "setProtocolForProxy:",
14488 "setPrototype:",
14489 "setProvisionalDataSource:",
14490 "setProvisionalItem:",
14491 "setProxyPropertiesForURL:onStream:",
14492 "setPublicID:",
14493 "setPullsDown:",
14494 "setQueryNode:",
14495 "setQuoteBinding:",
14496 "setQuotingWithSingleQuote:double:",
14497 "setROISelector:",
14498 "setRaisesForNotApplicableKeys:",
14499 "setRangeContainerClassDescription:",
14500 "setRanges:",
14501 "setRate:",
14502 "setReadLimit:",
14503 "setReadOnly:",
14504 "setRealDelegate:",
14505 "setReceiversSpecifier:",
14506 "setRecentSearches:",
14507 "setRecentsAutosaveName:",
14508 "setRefusesFirstResponder:",
14509 "setRefusesToBeShown:",
14510 "setRegistryClass:",
14511 "setRegistryString:",
14512 "setRelatedIDs:forKey:options:",
14513 "setRelativePosition:",
14514 "setReleasedWhenClosed:",
14515 "setReleasesAfterPoofing:",
14516 "setRememberedSnapToIndex:",
14517 "setRemovable:",
14518 "setRenderPart:",
14519 "setReplyTimeout:",
14520 "setRepresentedFilename:",
14521 "setRepresentedObject:",
14522 "setRequestError:",
14523 "setRequestTimeout:",
14524 "setRequestURL:",
14525 "setRequiredFileType:",
14526 "setRequiresDirectKeyValueCodingCall:partialControllerKey:partialObjectKey:",
14527 "setReservedThicknessForAccessoryView:",
14528 "setReservedThicknessForMarkers:",
14529 "setResizable",
14530 "setResizeIncrements:",
14531 "setResizingMask:",
14532 "setResolvesAliases:",
14533 "setResourceLoadDelegate:",
14534 "setResourceLocator:",
14535 "setResponseHeader:",
14536 "setResponseHeaderUsingHTTPResponse:",
14537 "setResponseURL:",
14538 "setReturnValue:",
14539 "setRichText:",
14540 "setRightChild:",
14541 "setRightMargin:",
14542 "setRoot:",
14543 "setRootElement:",
14544 "setRootNode:",
14545 "setRootObject:",
14546 "setRootObjectStore:",
14547 "setRootPath:",
14548 "setRoundingBehavior:",
14549 "setRoundingMode:",
14550 "setRowForUpdate:",
14551 "setRowHeight:",
14552 "setRulerVisible:",
14553 "setRulersVisible:",
14554 "setRunLoop:",
14555 "setSQLString:",
14556 "setSRRecognitionSystem:",
14557 "setSRRecognizer:",
14558 "setSamplerOption:forKey:",
14559 "setSamplerOptionsFromDictionary:",
14560 "setSansSerifFontFamily:",
14561 "setSaveWeighting:",
14562 "setScalesWhenResized:",
14563 "setScanLocation:",
14564 "setScopeLocationNodes:",
14565 "setScriptCommand:",
14566 "setScriptErrorNumber:",
14567 "setScriptErrorString:",
14568 "setScriptingProperties:",
14569 "setScrollBarsSuppressed:repaintOnUnsuppress:",
14570 "setScrollPoint:",
14571 "setScrollView:",
14572 "setScrollable:",
14573 "setScrollbarsVisible:",
14574 "setScrollingMode:",
14575 "setSearchButtonCell:",
14576 "setSearchMenuTemplate:",
14577 "setSearchScopeDisplayName:",
14578 "setSegmentCount:",
14579 "setSelectable:",
14580 "setSelected:forSegment:",
14581 "setSelectedAttributes:isMultiple:",
14582 "setSelectedDOMRange:affinity:",
14583 "setSelectedFont:isMultiple:",
14584 "setSelectedIndexPaths:",
14585 "setSelectedItemIdentifier:",
14586 "setSelectedRange:",
14587 "setSelectedRange:affinity:stillSelecting:",
14588 "setSelectedRanges:",
14589 "setSelectedRanges:affinity:stillSelecting:",
14590 "setSelectedScopeLocationNodes:",
14591 "setSelectedSegment:",
14592 "setSelectedTextAttributes:",
14593 "setSelectionByRect:",
14594 "setSelectionFrom:to:anchor:highlight:",
14595 "setSelectionFromDroppedNode:selectionHelper:",
14596 "setSelectionFromNone",
14597 "setSelectionFromPasteboard:selectionHelper:",
14598 "setSelectionGranularity:",
14599 "setSelectionIndex:",
14600 "setSelectionIndexPaths:",
14601 "setSelectionIndexes:",
14602 "setSelectionToDragCaret",
14603 "setSelector:",
14604 "setSelectsAllWhenSettingContent:",
14605 "setSelectsInsertedObjects:",
14606 "setSendsActionOnEndEditing:",
14607 "setSendsWholeSearchString:",
14608 "setSerifFontFamily:",
14609 "setServicesMenu:",
14610 "setServicesProvider:",
14611 "setSet:",
14612 "setShadowBlurRadius:",
14613 "setShadowColor:",
14614 "setShadowOffset:",
14615 "setShadowState:",
14616 "setShouldAntialias:",
14617 "setShouldCloseDocument:",
14618 "setShouldCreateRenderers:",
14619 "setShouldCreateUI:",
14620 "setShouldPrintBackgrounds:",
14621 "setShouldPrintExceptions:",
14622 "setShouldResolveExternalEntities:",
14623 "setShowPanels:",
14624 "setShownAboveComboBox:",
14625 "setShowsBorderOnlyWhileMouseInside:",
14626 "setShowsControlCharacters:",
14627 "setShowsFirstResponder:",
14628 "setShowsGetInfoButton:",
14629 "setShowsHelp:",
14630 "setShowsHiddenFiles:",
14631 "setShowsInvisibleCharacters:",
14632 "setShowsLogonButton:",
14633 "setShowsPreviews:",
14634 "setShowsPrintPanel:",
14635 "setShowsProgressPanel:",
14636 "setShowsResizeIndicator:",
14637 "setShowsRollover:",
14638 "setShowsStateBy:",
14639 "setSimpleCommandsArray:",
14640 "setSimpleQueryString:",
14641 "setSingleTableEntity:",
14642 "setSize:",
14643 "setSizeLimit:",
14644 "setSizeMode:",
14645 "setSliderType:",
14646 "setSmartInsertDeleteEnabled:",
14647 "setSortDescriptorPrototype:",
14648 "setSortDescriptors:",
14649 "setSound:",
14650 "setSource:",
14651 "setSpacing:inWindow:delegate:",
14652 "setSpeakingSpeechFeedbackServices:",
14653 "setSpeakingString:",
14654 "setSpeechChannelWithVoiceCreator:voiceID:",
14655 "setSpeechChannelWithVoiceIdentifier:",
14656 "setSpeechFeedbackServicesTimer:",
14657 "setSpeechFinishedSuccessfully:",
14658 "setSpoolPath:",
14659 "setStandalone:",
14660 "setStandardFontFamily:",
14661 "setStandardInput:",
14662 "setStandardOutput:",
14663 "setStart::",
14664 "setStartSpecifier:",
14665 "setStartSubelementIdentifier:",
14666 "setStartSubelementIndex:",
14667 "setState:",
14668 "setStateToSelected",
14669 "setStateToUnselected",
14670 "setStatusBar:",
14671 "setStatusBarVisible:",
14672 "setStatusCode:",
14673 "setStatusMenu:",
14674 "setStatusText:",
14675 "setStoreMetadata:",
14676 "setString:",
14677 "setString:forType:",
14678 "setStringIndex:forIndex:",
14679 "setStringParameterValue:to:",
14680 "setStringValue:",
14681 "setStringValue:resolvingEntities:",
14682 "setStroke",
14683 "setSubentities:",
14684 "setSubentityColumn:",
14685 "setSubentityID:",
14686 "setSubmenu:",
14687 "setSubmenu:forItem:",
14688 "setSubmenuRepresentedObjectsAreStale",
14689 "setSuperentity:",
14690 "setSupermenu:",
14691 "setSuppressLayout:",
14692 "setSuspended:",
14693 "setSynthesizerIsRetained:",
14694 "setSystemCharacterProperties:",
14695 "setSystemID:",
14696 "setTXTRecordData:",
14697 "setTabKeyTraversesCells:",
14698 "setTabStops:",
14699 "setTableColumn:",
14700 "setTableView:",
14701 "setTag:",
14702 "setTag:forSegment:",
14703 "setTailIndent:",
14704 "setTakesTitleFromPreviousColumn:",
14705 "setTarget:",
14706 "setTearOffMenuRepresentation:",
14707 "setTemporaryID:",
14708 "setTest:",
14709 "setTestedObjectClassDescription:",
14710 "setText:",
14711 "setTextAlign:",
14712 "setTextAttributesForNegativeValues:",
14713 "setTextAttributesForNil:",
14714 "setTextAttributesForNotANumber:",
14715 "setTextAttributesForPositiveValues:",
14716 "setTextAttributesForZero:",
14717 "setTextBlocks:",
14718 "setTextColor:",
14719 "setTextColor:whenObjectValueIsUsed:",
14720 "setTextContainer:",
14721 "setTextContainer:forGlyphRange:",
14722 "setTextDecoration:",
14723 "setTextLists:",
14724 "setTextShadow:",
14725 "setTextSizeMultiplier:",
14726 "setTextStorage:",
14727 "setTextView:",
14728 "setThousandSeparator:",
14729 "setTickMarkPosition:",
14730 "setTighteningFactorForTruncation:",
14731 "setTimeInterval:",
14732 "setTimeIntervalSince1970:",
14733 "setTimeStyle:",
14734 "setTimeZone:",
14735 "setTimeoutInterval:",
14736 "setTimer",
14737 "setTimestampToNow",
14738 "setTitle:",
14739 "setTitle:andDefeatWrap:",
14740 "setTitle:andMessage:",
14741 "setTitle:ofColumn:",
14742 "setTitleAlignment:",
14743 "setTitleBaseWritingDirection:",
14744 "setTitleCell:",
14745 "setTitleColor:",
14746 "setTitleFont:",
14747 "setTitleNoCopy:",
14748 "setTitlePosition:",
14749 "setTitleWidth:",
14750 "setTitleWithMnemonic:",
14751 "setTitled:",
14752 "setTokenStyle:",
14753 "setTokenizingCharacterSet:",
14754 "setToolTip:",
14755 "setToolTip:forCell:",
14756 "setToolTip:forSegment:",
14757 "setToolTip:forView:cell:",
14758 "setToolTipForView:rect:displayDelegate:displayInfo:",
14759 "setToolTipForView:rect:owner:userData:",
14760 "setToolTipString:",
14761 "setToolbar:",
14762 "setToolbarsVisible:",
14763 "setTopLevelObject:",
14764 "setTopMargin:",
14765 "setTrackingMode:",
14766 "setTrailingOffset:",
14767 "setTransformStruct:",
14768 "setTransparent:",
14769 "setTransparentBackground:",
14770 "setTreatsDirectoryAliasesAsDirectories:",
14771 "setTreatsFilePackagesAsDirectories:",
14772 "setType:",
14773 "setTypes:onPasteboard:",
14774 "setTypesetter:",
14775 "setTypesetterBehavior:",
14776 "setTypingAttributes:",
14777 "setTypingStyle:",
14778 "setURI:",
14779 "setURL:",
14780 "setURLString:",
14781 "setUndoActionName:",
14782 "setUndoManager:",
14783 "setUniqueID:",
14784 "setUnquotedStringCharacters:lowerCaseLetters:upperCaseLetters:digits:",
14785 "setUnquotedStringStartCharacters:lowerCaseLetters:upperCaseLetters:digits:",
14786 "setUpFieldEditorAttributes:",
14787 "setUpForChallenge:",
14788 "setUpGState",
14789 "setUpPrintOperationDefaultValues",
14790 "setUpSourceForData:",
14791 "setUpdatedObjects:",
14792 "setUseSSLOnly:forKey:",
14793 "setUserColumnResizingAutoresizesWindow:",
14794 "setUserInfo:",
14795 "setUserStyleSheetEnabled:",
14796 "setUserStyleSheetLocation:",
14797 "setUsesDataSource:",
14798 "setUsesFeedbackWindow:",
14799 "setUsesFontLeading:",
14800 "setUsesFontPanel:",
14801 "setUsesGroupingSeparator:",
14802 "setUsesItemFromMenu:",
14803 "setUsesRuler:",
14804 "setUsesScreenFonts:",
14805 "setUsesThreadedAnimation:",
14806 "setUsesUserKeyEquivalents:",
14807 "setUsingDefaultVoice:",
14808 "setValidateSize:",
14809 "setValidatesImmediately:",
14810 "setValue:",
14811 "setValue:forBinding:atIndex:error:",
14812 "setValue:forBinding:atIndexPath:error:",
14813 "setValue:forBinding:error:",
14814 "setValue:forHTTPHeaderField:",
14815 "setValue:forKey:",
14816 "setValue:forKeyPath:",
14817 "setValue:forUndefinedKey:",
14818 "setValue:inObject:",
14819 "setValue:type:forDimension:",
14820 "setValueTransformer:",
14821 "setValueTransformer:forName:",
14822 "setValueTransformerName:",
14823 "setValueWraps:",
14824 "setValues:forParameter:",
14825 "setValuesForKeysWithDictionary:",
14826 "setVersion:",
14827 "setVertical:",
14828 "setVerticalAlign:",
14829 "setVerticalAlignment:",
14830 "setVerticalLineScroll:",
14831 "setVerticalPageScroll:",
14832 "setVerticalPagination:",
14833 "setVerticalScrollingMode:",
14834 "setVerticallyCentered:",
14835 "setVerticallyResizable:",
14836 "setView:",
14837 "setViewAnimations:",
14838 "setViewKind:",
14839 "setViewOfPickerIsLoaded:",
14840 "setViewScale:",
14841 "setViewSize:",
14842 "setViewsNeedDisplay:",
14843 "setVisibilityPriority:",
14844 "setVisible:",
14845 "setVisualFrame:",
14846 "setVoice:",
14847 "setVolatileDomain:forName:",
14848 "setVolume:",
14849 "setWantsNotificationForMarkedText:",
14850 "setWarningValue:",
14851 "setWebFrameView:",
14852 "setWebView:",
14853 "setWhitespace:",
14854 "setWidget:",
14855 "setWidth:",
14856 "setWidth:forSegment:",
14857 "setWidth:ofColumn:",
14858 "setWidth:type:forLayer:",
14859 "setWidth:type:forLayer:edge:",
14860 "setWidthTracksTextView:",
14861 "setWillLoadImagesAutomatically:",
14862 "setWindingRule:",
14863 "setWindow:",
14864 "setWindowContentRect:",
14865 "setWindowController:",
14866 "setWindowFrame:",
14867 "setWindowFrameAutosaveName:",
14868 "setWindowFrameForAttachingToRect:onScreen:preferredEdge:popUpSelectedItem:",
14869 "setWindowIfNecessary",
14870 "setWindowIsResizable:",
14871 "setWindowsMenu:",
14872 "setWindowsNeedUpdate:",
14873 "setWithArray:",
14874 "setWithCapacity:",
14875 "setWithObjects:",
14876 "setWithSet:",
14877 "setWordWrap:",
14878 "setWorksWhenModal:",
14879 "setWraps:",
14880 "setZeroSymbol:",
14881 "settings",
14882 "setupAttributes",
14883 "setupCarbonMenuBar",
14884 "setupForNoMenuBar",
14885 "setupGuessesBrowser",
14886 "setupLoadedNib",
14887 "shadeColorWithDistance:towardsColor:",
14888 "shadowBlurRadius",
14889 "shadowColor",
14890 "shadowOffset",
14891 "shadowState",
14892 "shadowWithLevel:",
14893 "shapeWindow",
14894 "shapeWithCGSRegion:",
14895 "shapeWithRect:",
14896 "sharedAEDescriptorTranslator",
14897 "sharedAdapter",
14898 "sharedAppleEventManager",
14899 "sharedApplication",
14900 "sharedBridge",
14901 "sharedCoercionHandler",
14902 "sharedColorPanel",
14903 "sharedColorPanelExists",
14904 "sharedController",
14905 "sharedCredentialStorage",
14906 "sharedDocumentController",
14907 "sharedDragManager",
14908 "sharedEditingDelegate",
14909 "sharedFactory",
14910 "sharedFileInfoCache",
14911 "sharedFocusState",
14912 "sharedFontManager",
14913 "sharedFontOptions",
14914 "sharedFontPanel",
14915 "sharedFontPanelExists",
14916 "sharedFrameLoadDelegate",
14917 "sharedGenerator",
14918 "sharedGlyphGenerator",
14919 "sharedHTTPAuthenticator",
14920 "sharedHTTPCookieStorage",
14921 "sharedHandler",
14922 "sharedHeartBeat",
14923 "sharedHelpManager",
14924 "sharedIconDatabase",
14925 "sharedInfoPanel",
14926 "sharedInstance",
14927 "sharedKeyBindingManager",
14928 "sharedMagnifier",
14929 "sharedMappings",
14930 "sharedNetworkSettings",
14931 "sharedPolicyDelegate",
14932 "sharedPrintInfo",
14933 "sharedRegistry",
14934 "sharedResourceLoadDelegate",
14935 "sharedScriptExecutionContext",
14936 "sharedScriptSuiteRegistry",
14937 "sharedScriptingAppleEventHandler",
14938 "sharedServiceMaster",
14939 "sharedSpellChecker",
14940 "sharedSpellCheckerExists",
14941 "sharedSystemTypesetterForBehavior:",
14942 "sharedTableOptions",
14943 "sharedTextFinder",
14944 "sharedTextRulerOptions",
14945 "sharedToolTipManager",
14946 "sharedToolTipStringDrawingLayoutManager",
14947 "sharedTracer",
14948 "sharedTypesetter",
14949 "sharedTypographyPanel",
14950 "sharedUIDelegate",
14951 "sharedURLCache",
14952 "sharedUserDefaultsController",
14953 "sharedWorkspace",
14954 "sheetDidEnd:returnCode:contextInfo:",
14955 "shiftIndexesStartingAtIndex:by:",
14956 "shiftModifySelection:",
14957 "shortTimeFormat",
14958 "shortValue",
14959 "shortVersion",
14960 "shouldAllowUserColumnResizing",
14961 "shouldAlwaysUpdateDisplayValue",
14962 "shouldAntialias",
14963 "shouldBeTreatedAsInkEvent:",
14964 "shouldBecomeAETEPropertyDeclaration",
14965 "shouldBeginEditing:",
14966 "shouldBreakLineByHyphenatingBeforeCharacterAtIndex:",
14967 "shouldBreakLineByWordBeforeCharacterAtIndex:",
14968 "shouldBufferTextDrawing",
14969 "shouldCascadeWindows",
14970 "shouldChangePrintInfo:",
14971 "shouldChangeTextInRange:replacementString:",
14972 "shouldChangeTextInRanges:replacementStrings:",
14973 "shouldCloseDocument",
14974 "shouldCloseWindowController:",
14975 "shouldCloseWindowController:delegate:shouldCloseSelector:contextInfo:",
14976 "shouldCollapseAutoExpandedItemsForDeposited:",
14977 "shouldCreateRenderers",
14978 "shouldCreateUI",
14979 "shouldDelayWindowOrderingForEvent:",
14980 "shouldDrawColor",
14981 "shouldDrawInsertionPoint",
14982 "shouldEdit:inRect:ofView:",
14983 "shouldEndEditing:",
14984 "shouldIgnoreAction:",
14985 "shouldPersist",
14986 "shouldPrintBackgrounds",
14987 "shouldPrintExceptions",
14988 "shouldPropagateDeleteForObject:inEditingContext:forRelationshipKey:",
14989 "shouldProvideSortDescriptor:optionsAdvertisingOnly:",
14990 "shouldRefresh",
14991 "shouldRunSavePanelWithAccessoryView",
14992 "shouldShowPreviewColumn:",
14993 "shouldSubstituteCustomClass",
14994 "shouldSuppressNotificationFromObject:keyPath:",
14995 "shouldUseEnabledTextColor",
14996 "shouldUseInvalidationForObject:",
14997 "showAttachmentCell:atPoint:",
14998 "showAttachmentCell:inRect:characterIndex:",
14999 "showCMYKView:",
15000 "showContextHelpForObject:locationHint:",
15001 "showController:adjustingSize:",
15002 "showDeminiaturizedWindow",
15003 "showFeaturesPanel:",
15004 "showGotoWithInitialFilename:",
15005 "showGreyScaleView:",
15006 "showGuessPanel:",
15007 "showHSBView:",
15008 "showHelp:",
15009 "showInfoPanel:",
15010 "showModalPreferencesPanelForOwner:",
15011 "showNode:inDirectory:selectIfEnabled:",
15012 "showNodeInCurrentDirectoryWithDisplayNamePrefix:selectIfEnabled:",
15013 "showNodeInCurrentDirectoryWithFilename:selectIfEnabled:",
15014 "showNodeInDirectory:withDisplayNamePrefix:selectIfEnabled:caseSensitiveCompare:",
15015 "showPackedGlyphs:length:glyphRange:atPoint:font:color:printingAdjustment:",
15016 "showPanel:andNotify:with:",
15017 "showPopup",
15018 "showPreferencesPanelForOwner:",
15019 "showPrimarySelection",
15020 "showRGBView:",
15021 "showRelativeToView:",
15022 "showRolloverWindow",
15023 "showToolbar:",
15024 "showUI",
15025 "showValue:inObject:",
15026 "showWindow",
15027 "showWindow:",
15028 "showWindows",
15029 "shownValueInObject:",
15030 "shownValueInObject:errorEncountered:error:",
15031 "showsAlpha",
15032 "showsBaselineSeparator",
15033 "showsBorderOnlyWhileMouseInside",
15034 "showsControlCharacters",
15035 "showsFirstResponder",
15036 "showsGetInfoButton",
15037 "showsHelp",
15038 "showsHiddenFiles",
15039 "showsInvisibleCharacters",
15040 "showsLogonButton",
15041 "showsOutlineCell",
15042 "showsPreviews",
15043 "showsResizeIndicator",
15044 "showsRollover",
15045 "showsShadowedText",
15046 "showsStateBy",
15047 "showsToolbarButton",
15048 "shutAllDrawers:",
15049 "sidebar",
15050 "sidebarContainerNodes",
15051 "sidebarFavoritesNode",
15052 "sidebarView",
15053 "sidebarVolumesNode",
15054 "signal",
15055 "signature",
15056 "signatureWithObjCTypes:",
15057 "signedPublicKeyAndChallengeStringWithStrengthIndex:challenge:pageURL:",
15058 "significantText",
15059 "simpleCommandsArray",
15060 "simpleQueryString",
15061 "singleLineTypesetter",
15062 "size",
15063 "sizeCreditsView",
15064 "sizeForDisplayingAttributedString:",
15065 "sizeForKey:inTable:",
15066 "sizeForMagnification:",
15067 "sizeHeightToFit",
15068 "sizeLastColumnToFit",
15069 "sizeLimit",
15070 "sizeMode",
15071 "sizeOfLabel:",
15072 "sizeOfString:",
15073 "sizeOfTitlebarButtons",
15074 "sizeOfTitlebarButtons:",
15075 "sizeOfTitlebarToolbarButton",
15076 "sizeToCells",
15077 "sizeToFit",
15078 "sizeToFitAndAdjustWindowHeight",
15079 "sizeToFitWidth",
15080 "sizeValue",
15081 "sizeWhenSizedToFit",
15082 "sizeWidthToFit",
15083 "sizeWithAttributes:",
15084 "sizeWithBehavior:usesFontLeading:baselineDelta:",
15085 "sizeWithColumns:rows:",
15086 "skipDescendents",
15087 "sleepUntilDate:",
15088 "slide:",
15089 "slideDraggedImageTo:",
15090 "slideImage:from:to:",
15091 "sliderType",
15092 "slot",
15093 "slotForKey:",
15094 "smallSystemFontSize",
15095 "smallestEncoding",
15096 "smartDeleteRangeForProposedRange:",
15097 "smartInsertAfterStringForString:replacingRange:",
15098 "smartInsertBeforeStringForString:replacingRange:",
15099 "smartInsertDeleteEnabled",
15100 "smartInsertForString:replacingRange:beforeString:afterString:",
15101 "smemapROI:forRect:",
15102 "snapshotForSourceGlobalID:relationshipName:after:",
15103 "snapshots",
15104 "socketType",
15105 "sortDescriptorPrototype",
15106 "sortDescriptors",
15107 "sortIndicatorRectForBounds:",
15108 "sortUsingDescriptors:",
15109 "sortUsingFunction:context:",
15110 "sortUsingSelector:",
15111 "sortedArrayUsingDescriptors:",
15112 "sortedArrayUsingFunction:context:",
15113 "sortedArrayUsingFunction:context:hint:",
15114 "sortedArrayUsingSelector:",
15115 "sortedClassDescriptions:",
15116 "sortsChildrenEfficiently",
15117 "sound",
15118 "sound:didFinishPlaying:",
15119 "soundNamed:",
15120 "soundUnfilteredFileTypes",
15121 "source",
15122 "sourceAttributeName",
15123 "sourceEntity",
15124 "sourceFrame",
15125 "sourceKey",
15126 "sourceNode",
15127 "spaceForScrollbarAndScrollViewBorder",
15128 "speakString:",
15129 "speakingString",
15130 "specialColorSpaceWithID:",
15131 "specifier",
15132 "specifierTraverseLink:",
15133 "specifierWithPath:",
15134 "specifierWithPath:traverseLink:",
15135 "speechChannel",
15136 "speechFeedbackServicesRef",
15137 "speechFeedbackServicesTimer",
15138 "speechFinishedSuccessfully",
15139 "speechRecognizer:didRecognizeCommand:",
15140 "speechSynthesizer:didEncounterError:characterPos:",
15141 "speechSynthesizer:didFinishSpeaking:",
15142 "speechSynthesizer:didSync:",
15143 "speechSynthesizer:willSpeakPhoneme:",
15144 "speechSynthesizer:willSpeakWord:ofString:",
15145 "spellCheckerDocumentTag",
15146 "spellServer:checkGrammarInString:language:details:",
15147 "spellServer:didForgetWord:inLanguage:",
15148 "spellServer:didLearnWord:inLanguage:",
15149 "spellServer:findMisspelledWordInString:language:wordCount:countOnly:",
15150 "spellServer:suggestCompletionsForPartialWordRange:inString:language:",
15151 "spellServer:suggestGuessesForWord:inLanguage:",
15152 "spellingPanel",
15153 "spherePullROI:forRect:",
15154 "splitCell:range:",
15155 "splitCells",
15156 "splitView:canCollapseSubview:",
15157 "splitView:constrainMaxCoordinate:ofSubviewAt:",
15158 "splitView:constrainMinCoordinate:maxCoordinate:ofSubviewAt:",
15159 "splitView:constrainMinCoordinate:ofSubviewAt:",
15160 "splitView:constrainSplitPosition:ofSubviewAt:",
15161 "splitView:resizeSubviewsWithOldSize:",
15162 "splitViewDidTrackOrResize:",
15163 "splitViewDoubleClick:",
15164 "splitViewWillTrackOrResize:",
15165 "splitterWithIndex:parent:",
15166 "spoolPath",
15167 "spotlight:",
15168 "spotlightColor",
15169 "spotlightEdgeColor",
15170 "sqlCore",
15171 "sqlStatement",
15172 "sqlString",
15173 "sqlType",
15174 "sqlTypeForExpressionConstantValue:",
15175 "srRecognitionSystem",
15176 "srRecognizer",
15177 "src",
15178 "stalenessInterval",
15179 "standardFontFamily",
15180 "standardPreferences",
15181 "standardUserDefaults",
15182 "standardWindowButton:",
15183 "standardWindowButton:forStyleMask:",
15184 "standardizedPath",
15185 "standardizedURL",
15186 "standardizedURLPath",
15187 "start",
15188 "start:",
15189 "startAllPlugins",
15190 "startAnimation:",
15191 "startArchiving:",
15192 "startAuthentication:window:",
15193 "startCoalesceTextDrawing",
15194 "startContainer",
15195 "startDraggingImage:at:operation:event:sourceIsDHTML:DHTMLWroteData:",
15196 "startInputStream:closeOnEnd:",
15197 "startLoading",
15198 "startLoadingResource:withRequest:customHeaders:referrer:forDataSource:",
15199 "startLoadingResource:withURL:customHeaders:",
15200 "startLoadingResource:withURL:customHeaders:postData:",
15201 "startLoadingResource:withURL:customHeaders:postData:referrer:forDataSource:",
15202 "startLoadingResource:withURL:customHeaders:referrer:forDataSource:",
15203 "startObservingModelObject:",
15204 "startObservingModelObjectAtReferenceIndex:",
15205 "startObservingModelObjectsAtReferenceIndexes:",
15206 "startObservingNode",
15207 "startObservingPreviewNode:",
15208 "startOffset",
15209 "startOriginLoad",
15210 "startPeriodicEventsAfterDelay:withPeriod:",
15211 "startProgressiveLoad",
15212 "startQuery",
15213 "startRectForSheet:",
15214 "startSpeaking:",
15215 "startSpecifier",
15216 "startStreamResponseURL:expectedContentLength:lastModifiedDate:MIMEType:",
15217 "startStreamWithResponse:",
15218 "startSubelementIdentifier",
15219 "startSubelementIndex",
15220 "startTextTimer",
15221 "startTimer:userInfo:",
15222 "startTimerForSpeaking",
15223 "startTrackingAt:inView:",
15224 "startTrackingWithEvent:inView:withDelegate:",
15225 "startingColumn",
15226 "startingRow",
15227 "stashSize",
15228 "state",
15229 "stateImageOffset",
15230 "stateImageRectForBounds:",
15231 "stateImageWidth",
15232 "statementClass",
15233 "statistics",
15234 "status",
15235 "status:",
15236 "statusBar",
15237 "statusCode",
15238 "statusMenu",
15239 "stepKey:elements:number:state:",
15240 "stepTowardsDestinationAtleastAsFarAs:",
15241 "stop",
15242 "stop:",
15243 "stopAllPlugins",
15244 "stopAllTimersForSpeaking",
15245 "stopAnimation",
15246 "stopAnimation:",
15247 "stopAnimationsInView:",
15248 "stopCoalescing",
15249 "stopDeferringTimers",
15250 "stopListening",
15251 "stopLoading",
15252 "stopLoading:",
15253 "stopLoadingForPolicyChange",
15254 "stopModal",
15255 "stopModalWithCode:",
15256 "stopNullEvents",
15257 "stopObservingModelObjectAtReferenceIndex:",
15258 "stopObservingModelObjectsAtReferenceIndexes:",
15259 "stopObservingNode",
15260 "stopObservingPreviewNode",
15261 "stopObservingRelatedObject:",
15262 "stopPeriodicEvents",
15263 "stopSpeaking",
15264 "stopSpeaking:",
15265 "stopTextTimer",
15266 "stopTimer",
15267 "stopTimerForSpeaking",
15268 "stopTracking:at:inView:mouseIsUp:",
15269 "stopTrackingWithEvent:",
15270 "stopUpdateInsertionAnimation",
15271 "storagePolicy",
15272 "store",
15273 "storeCachedResponse:forRequest:",
15274 "storeColorPanel:",
15275 "storeCurrentBrowsingNodePath:",
15276 "storeMetadata",
15277 "storeMin:andMax:ofObject:",
15278 "storeType",
15279 "storedAttributes",
15280 "storedValueForKey:",
15281 "stores",
15282 "stream:handleEvent:",
15283 "strengthMenuItemTitles",
15284 "strikethroughGlyphRange:strikethroughType:lineFragmentRect:lineFragmentGlyphRange:containerOrigin:",
15285 "string",
15286 "string:",
15287 "stringArrayForKey:",
15288 "stringByAbbreviatingWithTildeInPath",
15289 "stringByAddingPercentEscapes",
15290 "stringByAddingPercentEscapesUsingEncoding:",
15291 "stringByAppendingFormat:",
15292 "stringByAppendingPathComponent:",
15293 "stringByAppendingPathExtension:",
15294 "stringByAppendingString:",
15295 "stringByDeletingLastPathComponent",
15296 "stringByDeletingPathExtension",
15297 "stringByEvaluatingJavaScriptFromString:",
15298 "stringByExpandingTildeInPath",
15299 "stringByPaddingToLength:withString:startingAtIndex:",
15300 "stringByReplacingPercentEscapesUsingEncoding:",
15301 "stringByResolvingSymlinksInPath",
15302 "stringByStandardizingPath",
15303 "stringByTrimmingCharactersInSet:",
15304 "stringForEditing",
15305 "stringForKey:",
15306 "stringForKey:inTable:",
15307 "stringForObjectValue:",
15308 "stringForRange:",
15309 "stringForStringListID:andIndex:",
15310 "stringForType:",
15311 "stringFromDate:",
15312 "stringListForKey:inTable:",
15313 "stringMarkingUpcaseTransitionsWithDelimiter2:",
15314 "stringParameterValue:",
15315 "stringValue",
15316 "stringValueForObject:",
15317 "stringValueSubstitutingEntitiesForNode:ranges:names:objectValue:",
15318 "stringWithCString:",
15319 "stringWithCString:encoding:",
15320 "stringWithCString:length:",
15321 "stringWithCapacity:",
15322 "stringWithCharacters:length:",
15323 "stringWithContentsOfFile:",
15324 "stringWithContentsOfURL:",
15325 "stringWithData:textEncoding:",
15326 "stringWithData:textEncodingName:",
15327 "stringWithFileSystemRepresentation:length:",
15328 "stringWithFormat:",
15329 "stringWithSavedFrame",
15330 "stringWithString:",
15331 "stringWithUTF8String:",
15332 "stringWithoutAmpersand",
15333 "stringsByAppendingPathComponent:",
15334 "stringsByAppendingPaths:",
15335 "stripDiacriticsFromString:",
15336 "stroke",
15337 "strokeLineFromPoint:toPoint:",
15338 "strokeRect:",
15339 "style",
15340 "styleMask",
15341 "styleSheetForPrinting",
15342 "subNodeAtIndex:",
15343 "subNodes",
15344 "subarrayWithRange:",
15345 "subdataWithRange:",
15346 "subdivideBezierWithFlatness:startPoint:controlPoint1:controlPoint2:endPoint:",
15347 "subentities",
15348 "subentitiesByName",
15349 "subentityColumn",
15350 "subentityID",
15351 "subentityKey",
15352 "subentityMaxID",
15353 "subexpression",
15354 "subframeArchives",
15355 "submenu",
15356 "submenuAction:",
15357 "submenuRepresentedObjects",
15358 "submenuRepresentedObjectsAreStale",
15359 "submitButtonDefaultLabel",
15360 "subpredicate",
15361 "subpredicates",
15362 "subresourceForURL:",
15363 "subresources",
15364 "subscript:",
15365 "subscriptRange:",
15366 "substituteFontForFont:",
15367 "substituteGlyphsInRange:withGlyphs:",
15368 "substitutedValueForPredicate:",
15369 "substringFromIndex:",
15370 "substringToIndex:",
15371 "substringWithRange:",
15372 "subtractRect:",
15373 "subtractRegion:",
15374 "subtype",
15375 "subviews",
15376 "suggestedFilename",
15377 "suiteDescriptionFromPropertyListDeclaration:bundle:",
15378 "suiteDescriptions",
15379 "suiteName",
15380 "suiteRegistry",
15381 "sum:",
15382 "superClass",
15383 "superclass",
15384 "superclassDescription",
15385 "superentity",
15386 "supermenu",
15387 "superscript:",
15388 "superscriptRange:",
15389 "superview",
15390 "superviewFrameChanged:",
15391 "supportedImageMIMETypes",
15392 "supportedMIMETypes",
15393 "supportsCommand:",
15394 "supportsMode:",
15395 "supportsMutableFBENode",
15396 "supportsSortingByFileProperties",
15397 "supportsTableEditing",
15398 "supportsTextEncoding",
15399 "suppressAllNotificationsFromObject:",
15400 "suppressSpecificNotificationFromObject:keyPath:",
15401 "surfaceID",
15402 "suspend",
15403 "suspendCurrentAppleEvent",
15404 "suspendExecution",
15405 "suspended",
15406 "swapGlyph:withIndex:",
15407 "swatchWidth",
15408 "switchCell",
15409 "switchImage:",
15410 "switchToListNamed:",
15411 "symbol",
15412 "symbolCharacterSet",
15413 "symbolicLinkDestination",
15414 "symbolicTraits",
15415 "sync",
15416 "syncLoadResourceWithURL:customHeaders:postData:finalURL:responseHeaders:statusCode:",
15417 "syncToView:",
15418 "syncToViewUnconditionally",
15419 "syncWithRemoteToolbars",
15420 "synchronize",
15421 "synchronizeTableViewSelectionWithText:",
15422 "synchronizeTitleAndSelectedItem",
15423 "synchronizeWindowTitleWithDocumentName",
15424 "synthesizerIsRetained",
15425 "systemCharacterProperties",
15426 "systemColorsDidChange:",
15427 "systemDefaultPortNameServer",
15428 "systemFontOfSize:",
15429 "systemFontSize",
15430 "systemFontSizeForControlSize:",
15431 "systemID",
15432 "systemLanguage",
15433 "systemLanguageContext",
15434 "systemLocale",
15435 "systemTabletID",
15436 "systemVersion",
15437 "tabKeyTraversesCells",
15438 "tabState",
15439 "tabStopType",
15440 "tabStops",
15441 "tabView",
15442 "tabView:didSelectTabViewItem:",
15443 "tabView:shouldSelectTabViewItem:",
15444 "tabView:willSelectTabViewItem:",
15445 "tabViewAdded",
15446 "tabViewDidChangeNumberOfTabViewItems:",
15447 "tabViewItemAtIndex:",
15448 "tabViewItemAtPoint:",
15449 "tabViewItems",
15450 "tabViewRemoved",
15451 "tabViewType",
15452 "table",
15453 "tableAction:",
15454 "tableColumn:didChangeToWidth:",
15455 "tableColumn:willDisplayCell:row:",
15456 "tableColumnWithIdentifier:",
15457 "tableColumns",
15458 "tableName",
15459 "tableOptionsPanel:",
15460 "tableParameters",
15461 "tableRow:ofTableView:",
15462 "tableView",
15463 "tableView:acceptDrop:row:dropOperation:",
15464 "tableView:didChangeToSelectedRowIndexes:",
15465 "tableView:didChangeToSortDescriptors:",
15466 "tableView:didClickTableColumn:",
15467 "tableView:didDragTableColumn:",
15468 "tableView:heightOfRow:",
15469 "tableView:mouseDownInHeaderOfTableColumn:",
15470 "tableView:namesOfPromisedFilesDroppedAtDestination:forDraggedRowsWithIndexes:",
15471 "tableView:objectValueForTableColumn:row:",
15472 "tableView:objectValueForTableColumn:row:localized:",
15473 "tableView:setObjectValue:forTableColumn:row:",
15474 "tableView:shouldEditTableColumn:row:",
15475 "tableView:shouldSelectRow:",
15476 "tableView:shouldSelectTableColumn:",
15477 "tableView:sortDescriptorsDidChange:",
15478 "tableView:toolTipForCell:rect:tableColumn:row:mouseLocation:",
15479 "tableView:updateVisibleRowInformation:",
15480 "tableView:validateDrop:proposedRow:proposedDropOperation:",
15481 "tableView:willDisplayCell:forTableColumn:row:",
15482 "tableView:writeRows:toPasteboard:",
15483 "tableView:writeRowsWithIndexes:toPasteboard:",
15484 "tableViewAction:",
15485 "tableViewSelectionIsChanging:",
15486 "tabletEvent",
15487 "tabletID",
15488 "tabletPoint:",
15489 "tabletProximity:",
15490 "tabsToLinks",
15491 "tag",
15492 "tagForSegment:",
15493 "tagName",
15494 "tailIndent",
15495 "take",
15496 "takeColorFrom:",
15497 "takeColorSpaceFrom:",
15498 "takeFindStringFromSelection:",
15499 "takeFindStringFromView:",
15500 "takeStoredValue:forKey:",
15501 "takeStoredValuesFromDictionary:",
15502 "takeValue:forKey:",
15503 "takeValue:forKeyPath:",
15504 "takeValuesFromDictionary:",
15505 "tangentialPressure",
15506 "target",
15507 "targetAndArgumentsAcceptable",
15508 "targetAndArgumentsAcceptableAtIndex:",
15509 "targetAndArgumentsAcceptableAtIndexPath:",
15510 "targetAndArgumentsAcceptableForPerformAction",
15511 "targetAnimationRect",
15512 "targetForAction:",
15513 "targetForAction:to:from:",
15514 "targetOrigin",
15515 "targetWithQObject:member:",
15516 "targetWithQTimer:",
15517 "tearOffMenuRepresentation",
15518 "tellQuickTimeToChill",
15519 "temporaryAttributesAtCharacterIndex:effectiveRange:",
15520 "temporaryID",
15521 "temporaryObjectIDWithEntity:",
15522 "terminate",
15523 "terminate:",
15524 "terminateForClient:",
15525 "test",
15526 "testPart:",
15527 "testSelector",
15528 "testedObjectClassDescription",
15529 "text",
15530 "textAttachment",
15531 "textAttributes",
15532 "textAttributesForNegativeInfinity",
15533 "textAttributesForNegativeValues",
15534 "textAttributesForNil",
15535 "textAttributesForNotANumber",
15536 "textAttributesForPositiveInfinity",
15537 "textAttributesForPositiveValues",
15538 "textAttributesForZero",
15539 "textAttributesRegular",
15540 "textAttributesWhiteText",
15541 "textBackgroundColor",
15542 "textBlocks",
15543 "textChanged",
15544 "textColor",
15545 "textColorAtIndex:",
15546 "textColorAtIndexPath:",
15547 "textColorForButtonState:",
15548 "textColorInvalidationCapableObjectForObject:",
15549 "textColorWhenObjectValueIsUsed:",
15550 "textContainer",
15551 "textContainerChangedGeometry:",
15552 "textContainerChangedTextView:",
15553 "textContainerForAttributedString:",
15554 "textContainerForAttributedString:containerSize:lineFragmentPadding:",
15555 "textContainerForGlyphAtIndex:effectiveRange:",
15556 "textContainerForGlyphAtIndexWithoutAdditionalLayout:",
15557 "textContainerInset",
15558 "textContainerOrigin",
15559 "textContainers",
15560 "textDidChange:",
15561 "textDidEndEditing:",
15562 "textEncoding",
15563 "textEncodingName",
15564 "textLists",
15565 "textObjectToSearchIn",
15566 "textPasteboardTypes",
15567 "textShadowForButtonState:",
15568 "textShouldBeginEditing:",
15569 "textShouldEndEditing:",
15570 "textSizeMultiplier",
15571 "textStorage",
15572 "textStorage:edited:range:changeInLength:invalidatedRange:",
15573 "textTabForGlyphLocation:writingDirection:maxLocation:",
15574 "textTimerFired:",
15575 "textTransform",
15576 "textUnderElement",
15577 "textUnfilteredFileTypes",
15578 "textUnfilteredPasteboardTypes",
15579 "textView",
15580 "textView:clickedOnCell:inRect:",
15581 "textView:clickedOnCell:inRect:atIndex:",
15582 "textView:clickedOnLink:",
15583 "textView:clickedOnLink:atIndex:",
15584 "textView:completions:forPartialWordRange:",
15585 "textView:completions:forPartialWordRange:indexOfSelectedItem:",
15586 "textView:didHandleEvent:",
15587 "textView:doCommandBySelector:",
15588 "textView:doubleClickedOnCell:inRect:",
15589 "textView:doubleClickedOnCell:inRect:atIndex:",
15590 "textView:draggedCell:inRect:event:",
15591 "textView:draggedCell:inRect:event:atIndex:",
15592 "textView:shouldChangeTextInRange:replacementString:",
15593 "textView:shouldChangeTextInRanges:replacementStrings:",
15594 "textView:shouldChangeTypingAttributes:toAttributes:",
15595 "textView:shouldDrawInsertionPointInRect:color:turnedOn:",
15596 "textView:shouldHandleEvent:",
15597 "textView:shouldSetColor:",
15598 "textView:willChangeSelectionFromCharacterRange:toCharacterRange:",
15599 "textView:willChangeSelectionFromCharacterRanges:toCharacterRanges:",
15600 "textView:willDisplayToolTip:forCharacterAtIndex:",
15601 "textView:writablePasteboardTypesForCell:atIndex:",
15602 "textView:writeCell:atIndex:toPasteboard:type:",
15603 "textViewDidChangeSelection:",
15604 "textViewForBeginningOfSelection",
15605 "textWithHardLineBreaks",
15606 "textWithStringValue:",
15607 "textureIsDestination:name:userInfo:",
15608 "textureROI:forRect:",
15609 "thickness",
15610 "thicknessRequiredInRuler",
15611 "thousandSeparator",
15612 "threadDictionary",
15613 "tickMarkPosition",
15614 "tickMarkValueAtIndex",
15615 "tickMarkValueAtIndex:",
15616 "tightenKerning:",
15617 "tightenThresholdForTruncation",
15618 "tighteningFactorForTruncation",
15619 "tile",
15620 "tileAndSetWindowShape:",
15621 "tileForView:",
15622 "tileIfNecessary",
15623 "tileInRect:fromPoint:context:",
15624 "tileVertically",
15625 "tilt",
15626 "tiltX",
15627 "tiltY",
15628 "timeInterval",
15629 "timeIntervalSince1970",
15630 "timeIntervalSinceDate:",
15631 "timeIntervalSinceNow",
15632 "timeIntervalSinceReferenceDate",
15633 "timeZone",
15634 "timeZoneForSecondsFromGMT:",
15635 "timeZoneWithAbbreviation:",
15636 "timeZoneWithName:",
15637 "timeoutInterval",
15638 "timer:",
15639 "timerFired",
15640 "timerFired:",
15641 "timerWithTimeInterval:target:selector:userInfo:repeats:",
15642 "timestamp",
15643 "timestampForKey:",
15644 "title",
15645 "titleBarFontOfSize:",
15646 "titleButtonOfClass:",
15647 "titleCell",
15648 "titleColor",
15649 "titleFont",
15650 "titleForIdentifier:",
15651 "titleFrameOfColumn:",
15652 "titleHeight",
15653 "titleOfSelectedItem",
15654 "titlePosition",
15655 "titleRect",
15656 "titleRectForBounds:",
15657 "titleWidth",
15658 "titleWidth:",
15659 "titlebarRect",
15660 "tmpNameFromPath:extension:",
15661 "toManyRelationshipKeys",
15662 "toOneRelationship",
15663 "toOneRelationshipKeys",
15664 "toggleBaseWritingDirection:",
15665 "toggleContinuousGrammarChecking:",
15666 "toggleContinuousSpellChecking:",
15667 "toggleExpanded:",
15668 "toggleIsExpanded:",
15669 "toggleKeepVisibleToolbarItem:",
15670 "togglePlatformInputSystem:",
15671 "togglePreview:",
15672 "toggleRuler:",
15673 "toggleSmartInsertDelete:",
15674 "toggleToolbarShown:",
15675 "toggleTraditionalCharacterShape:",
15676 "toggleUsingSmallToolbarIcons:",
15677 "tokenField:completionsForSubstring:indexOfToken:indexOfSelectedItem:",
15678 "tokenField:displayStringForRepresentedObject:",
15679 "tokenField:editingStringForRepresentedObject:",
15680 "tokenField:hasMenuForRepresentedObject:",
15681 "tokenField:menuForRepresentedObject:",
15682 "tokenField:readFromPasteboard:",
15683 "tokenField:representedObjectForEditingString:",
15684 "tokenField:shouldAddObjects:atIndex:",
15685 "tokenField:styleForRepresentedObject:",
15686 "tokenField:tooltipStringForRepresentedObject:",
15687 "tokenField:writeRepresentedObjects:toPasteboard:",
15688 "tokenFieldCell",
15689 "tokenFieldCell:completionsForSubstring:indexOfToken:indexOfSelectedItem:",
15690 "tokenFieldCell:displayStringForRepresentedObject:",
15691 "tokenFieldCell:hasMenuForRepresentedObject:",
15692 "tokenFieldCell:menuForRepresentedObject:",
15693 "tokenFieldCell:readFromPasteboard:",
15694 "tokenFieldCell:representedObjectForEditingString:",
15695 "tokenFieldCell:shouldAddObjects:atIndex:",
15696 "tokenFieldCell:styleForRepresentedObject:",
15697 "tokenFieldCell:tooltipStringForRepresentedObject:",
15698 "tokenFieldCell:writeRepresentedObjects:toPasteboard:",
15699 "tokenStyle",
15700 "tokenizerProcessedData",
15701 "tokenizingCharacterSet",
15702 "toolTip",
15703 "toolTipColor",
15704 "toolTipForCell:",
15705 "toolTipForSegment:",
15706 "toolTipForView:cell:",
15707 "toolTipManagerWillRecomputeToolTipsByRemoving:adding:",
15708 "toolTipString",
15709 "toolTipTextColor",
15710 "toolTipsFontOfSize:",
15711 "toolbar",
15712 "toolbar:didRemoveItem:",
15713 "toolbar:itemForItemIdentifier:willBeInsertedIntoToolbar:",
15714 "toolbar:itemForItemIdentifier:willInsertIntoToolbar:",
15715 "toolbar:newItemForItemIdentifier:",
15716 "toolbar:willAddItem:",
15717 "toolbarAllowedItemIdentifiers:",
15718 "toolbarBackgroundColor",
15719 "toolbarButton",
15720 "toolbarDefaultItemIdentifiers:",
15721 "toolbarInstancesWithIdentifier:",
15722 "toolbarItemClicked:",
15723 "toolbarLabelFontOfSize:",
15724 "toolbarLabelFontSizeForToolbarSize:",
15725 "toolbarSelectableItemIdentifiers:",
15726 "topLevelNode",
15727 "topLevelObject",
15728 "topLevelObjectClassDescription",
15729 "topMargin",
15730 "topUndoObject",
15731 "totalNumberOfItemViewersAndSeparators",
15732 "touch",
15733 "trace",
15734 "traceWithFlavor:priority:format:arguments:",
15735 "trackKnob:",
15736 "trackMagnifierForPanel:",
15737 "trackMarker:withMouseEvent:",
15738 "trackMouse:adding:",
15739 "trackMouse:inRect:ofView:atCharacterIndex:untilMouseUp:",
15740 "trackMouse:inRect:ofView:untilMouseUp:",
15741 "trackMouseForPopupMenuFormRepresentation:",
15742 "trackPagingArea:",
15743 "trackScrollButtons:",
15744 "trackWithEvent:",
15745 "trackWithEvent:inView:withDelegate:",
15746 "trackingMode",
15747 "trackingNumber",
15748 "trailingOffset",
15749 "traitsOfFont:",
15750 "transactionDidBegin",
15751 "transactionDidCommit",
15752 "transactionDidRollback",
15753 "transform",
15754 "transform:",
15755 "transformBy:interior:",
15756 "transformPoint:",
15757 "transformRect:",
15758 "transformStruct",
15759 "transformUsingAffineTransform:",
15760 "transformedImage:",
15761 "transformedValue:",
15762 "transformedValueClass",
15763 "translateOriginToPoint:",
15764 "translateTo::",
15765 "translateXBy:yBy:",
15766 "transparentBackground",
15767 "treatNilValuesLikeEmptyCollections",
15768 "treatsDirectoryAliasesAsDirectories",
15769 "treatsFilePackagesAsDirectories",
15770 "tryDHTMLCopy",
15771 "tryDHTMLCut",
15772 "tryDHTMLPaste",
15773 "tryLock",
15774 "tryNewColorListNameSheetDidEnd:returnCode:context:",
15775 "tryNextChallengeForWindow:",
15776 "tryToPerform:with:",
15777 "turnObject:intoFaultWithContext:",
15778 "turnOffKerning:",
15779 "turnOffLigatures:",
15780 "type",
15781 "typeCodeValue",
15782 "typeDescription",
15783 "typeDescriptions",
15784 "typeForContentsOfURL:error:",
15785 "typeForKey:",
15786 "typeForParameter:",
15787 "typeFromFileExtension:",
15788 "typeSelectNodeInTypeSelectDirectoryWithKeyDownEvent:recursively:",
15789 "typeStringForColumn:",
15790 "typeToUnixName:",
15791 "typefaceInfoForFontDescriptor:",
15792 "typefaceInfoForKnownFontDescriptor:",
15793 "typefaceInfoForPostscriptName:",
15794 "types",
15795 "typesFilterableTo:",
15796 "typesetter",
15797 "typesetterBehavior",
15798 "typesetterLaidOneGlyph:",
15799 "typingAttributes",
15800 "typingStyle",
15801 "unableToSetNilForKey:",
15802 "unarchiveObjectWithData:",
15803 "unarchiveObjectWithFile:",
15804 "unarchiver:cannotDecodeObjectOfClassName:originalClasses:",
15805 "unarchiver:didDecodeObject:",
15806 "unarchiver:willReplaceObject:withObject:",
15807 "unarchiverDidFinish:",
15808 "unarchiverWillFinish:",
15809 "unbind:",
15810 "unbindNSView:",
15811 "undefined",
15812 "underline:",
15813 "underlineGlyphRange:underlineType:lineFragmentRect:lineFragmentGlyphRange:containerOrigin:",
15814 "underlineThickness",
15815 "undo",
15816 "undo:",
15817 "undoActionName",
15818 "undoEdit",
15819 "undoEditing:",
15820 "undoManager",
15821 "undoManagerForTextView:",
15822 "undoManagerForWebView:",
15823 "undoManagerForWindow:",
15824 "undoMenuItemTitle",
15825 "undoMenuTitleForUndoActionName:",
15826 "undoNestedGroup",
15827 "undoRedo:",
15828 "unfocusView:",
15829 "unfocusWindow",
15830 "unhide",
15831 "unhide:",
15832 "unhideAllApplications:",
15833 "unhideWithoutActivation",
15834 "unionSet:",
15835 "unionWith:",
15836 "unionWithRect:",
15837 "uniqueID",
15838 "uniqueKey:",
15839 "uniqueNameWithBase:",
15840 "uniqueNodeForIndexes:count:indexPath:",
15841 "uniqueSpellDocumentTag",
15842 "unixToTypeName:",
15843 "unload",
15844 "unloadNib:",
15845 "unloadWithoutShutdown",
15846 "unlock",
15847 "unlockDocument",
15848 "unlockFocus",
15849 "unlockFocusInRect:",
15850 "unlockObjectStore",
15851 "unlockParentStore",
15852 "unlockTopMostReader",
15853 "unlockWithCondition:",
15854 "unmarkText",
15855 "unpackROI:forRect:",
15856 "unreachableURL",
15857 "unregisterDragTypesForWindow:",
15858 "unregisterDraggedTypes",
15859 "unregisterForEnclosingClipViewNotifications",
15860 "unregisterForPropertyChangedNotifications",
15861 "unregisterForWindowNotifications",
15862 "unregisterObjectWithServicePath:",
15863 "unscript:",
15864 "unscriptRange:",
15865 "unsignedCharValue",
15866 "unsignedIntValue",
15867 "unsignedLongLongValue",
15868 "unsignedLongValue",
15869 "unsignedShortValue",
15870 "unsupportedTextMIMETypes",
15871 "unsuppressAllNotificationsFromObject:",
15872 "unsuppressSpecificNotificationFromObject:keyPath:",
15873 "untrashedLeafFileLocationComponentWithLocator:",
15874 "unvalidatedPath",
15875 "unvalidatedSpecifier",
15876 "update",
15877 "updateAndSetWindow",
15878 "updateCacheForStreamDisposal",
15879 "updateCell:",
15880 "updateCellInside:",
15881 "updateCellOrControl:forMaxValue:",
15882 "updateCellOrControl:forMinValue:",
15883 "updateChangeCount:",
15884 "updateColorOptionsUI",
15885 "updateConnectionForResponse:",
15886 "updateCurGlyphOffset",
15887 "updateCurrentBrowsingNodePathWithCurrentDirectoryNode:",
15888 "updateDragTypeRegistration",
15889 "updateDynamicServices:",
15890 "updateFavoritesFromDefaults",
15891 "updateFavoritesUI",
15892 "updateFocusDisplay",
15893 "updateFontPanel",
15894 "updateFrameColors:",
15895 "updateFromPath:",
15896 "updateFromPrintInfo",
15897 "updateHeartBeatState",
15898 "updateInputContexts",
15899 "updateInsertionPointStateAndRestartTimer:",
15900 "updateInvalidatedFont:forObject:",
15901 "updateInvalidatedObjectValue:forObject:",
15902 "updateInvalidatedTextColor:forObject:",
15903 "updateLabel",
15904 "updateLineSpacingUI",
15905 "updateNib",
15906 "updateOptions:",
15907 "updateOptionsUI",
15908 "updateOptionsWithApplicationIcon:",
15909 "updateOptionsWithApplicationName:",
15910 "updateOptionsWithCopyright:",
15911 "updateOptionsWithCredits:",
15912 "updateOptionsWithMarketingVersion:",
15913 "updateOptionsWithVersion:",
15914 "updateOutlineColumnDataCell:forDisplayAtIndexPath:",
15915 "updateOutlineColumnOutlineCell:forDisplayAtIndexPath:",
15916 "updatePoofAnimation",
15917 "updateQueryNode:",
15918 "updateReferenceIndexesToReflectInsertionAtIndex:",
15919 "updateReferenceIndexesToReflectInsertionAtIndexes:",
15920 "updateReferenceIndexesToReflectRemovalAtIndex:",
15921 "updateReferenceIndexesToReflectRemovalAtIndexes:",
15922 "updateRoot",
15923 "updateRow:",
15924 "updateRuler",
15925 "updateScroller",
15926 "updateScrollers",
15927 "updateSearchFieldWithPredicate:",
15928 "updateSpellingPanelWithMisspelledWord:",
15929 "updateSubmenu:",
15930 "updateSwatch",
15931 "updateTableColumnDataCell:forDisplayAtIndex:",
15932 "updateTextAttributes:",
15933 "updateTextColor",
15934 "updateUI",
15935 "updateWindows",
15936 "updateWindowsItem:",
15937 "updateWithFocusRing",
15938 "updateWithFocusRingForWindowKeyChange",
15939 "updatedObjects",
15940 "uppercaseLetterCharacterSet",
15941 "uppercaseString",
15942 "url",
15943 "usage",
15944 "use",
15945 "useAllLigatures:",
15946 "useCredential:forAuthenticationChallenge:",
15947 "useDisabledEffectForState:",
15948 "useHighlightEffectForState:",
15949 "useMap",
15950 "useOptimizedDrawing:",
15951 "useSSLOnlyForKey:",
15952 "useStandardKerning:",
15953 "useStandardLigatures:",
15954 "useStoredAccessor",
15955 "usedRectForTextContainer:",
15956 "usedSize",
15957 "user",
15958 "userAgent",
15959 "userAgentForURL:",
15960 "userColumnResizingAutoresizesWindow",
15961 "userData",
15962 "userFixedPitchFontOfSize:",
15963 "userFontOfSize:",
15964 "userHomeNode",
15965 "userInfo",
15966 "userKeyEquivalent",
15967 "userKeyEquivalentModifierMask",
15968 "userSpaceScaleFactor",
15969 "userStyleSheetEnabled",
15970 "userStyleSheetLocation",
15971 "usesAlternatingRowBackgroundColors",
15972 "usesButtons",
15973 "usesDataSource",
15974 "usesEPSOnResolutionMismatch",
15975 "usesFeedbackWindow",
15976 "usesFindPanel",
15977 "usesFontLeading",
15978 "usesFontPanel",
15979 "usesGroupingSeparator",
15980 "usesItemFromMenu",
15981 "usesMenuFormRepresentationInDisplayMode:",
15982 "usesRuler",
15983 "usesScreenFonts",
15984 "usesUnnamedArguments",
15985 "usesUserKeyEquivalents",
15986 "usingDefaultVoice",
15987 "validAttributesForMarkedText",
15988 "validModesForFontPanel:",
15989 "validRequestorForSendType:returnType:",
15990 "validRows",
15991 "validStartCharacter:",
15992 "validate",
15993 "validateAndCommitValueInEditor:editingIsEnding:errorUserInterfaceHandled:",
15994 "validateEditing",
15995 "validateFindPanelAction:forClient:",
15996 "validateForDelete:",
15997 "validateForInsert:",
15998 "validateForUpdate:",
15999 "validateItem:",
16000 "validateMenuItem:",
16001 "validateObjectValue:",
16002 "validateRename",
16003 "validateTakeValue:forKeyPath:",
16004 "validateToolbarItem:",
16005 "validateUserInterfaceItem:",
16006 "validateValue:forKey:",
16007 "validateValue:forKey:error:",
16008 "validateValue:forKeyPath:error:",
16009 "validateVisibleItems",
16010 "validatesImmediately",
16011 "validationPredicates",
16012 "validationWarnings",
16013 "value",
16014 "value:withObjCType:",
16015 "valueAtIndex:",
16016 "valueAtIndex:inPropertyWithKey:",
16017 "valueClass:",
16018 "valueClass:forBinding:",
16019 "valueClassForBinding:",
16020 "valueForAttribute:",
16021 "valueForBinding:atIndex:resolveMarkersToPlaceholders:",
16022 "valueForBinding:atIndexPath:resolveMarkersToPlaceholders:",
16023 "valueForBinding:resolveMarkersToPlaceholders:",
16024 "valueForDimension:",
16025 "valueForHTTPHeaderField:",
16026 "valueForKey:",
16027 "valueForKey:keys:values:",
16028 "valueForKey:withInputs:",
16029 "valueForKeyPath:",
16030 "valueForOptionalAttributeKey:",
16031 "valueForProperty:",
16032 "valueForRequiredAttributeKey:",
16033 "valueForUndefinedKey:",
16034 "valueOfAttribute:forResultAtIndex:",
16035 "valueTransformer",
16036 "valueTransformerForBinding:",
16037 "valueTransformerForName:",
16038 "valueTransformerName",
16039 "valueTransformerNames",
16040 "valueTypeDescriptionFromName:declaration:",
16041 "valueTypeForDimension:",
16042 "valueWithBytes:objCType:",
16043 "valueWithName:inPropertyWithKey:",
16044 "valueWithNonretainedObject:",
16045 "valueWithPoint:",
16046 "valueWithPointer:",
16047 "valueWithRange:",
16048 "valueWithRect:",
16049 "valueWithSize:",
16050 "valueWithUniqueID:inPropertyWithKey:",
16051 "valueWraps",
16052 "values",
16053 "values:forResolutions:withCount:fromArrayOrNumber:",
16054 "valuesForKeys:",
16055 "variable",
16056 "variableExpression",
16057 "variant",
16058 "vectorWithString:",
16059 "vectorWithValues:count:",
16060 "vectorWithX:",
16061 "vectorWithX:Y:",
16062 "vectorWithX:Y:Z:",
16063 "vectorWithX:Y:Z:W:",
16064 "vendor1",
16065 "vendor2",
16066 "vendor3",
16067 "vendorDefined",
16068 "vendorID",
16069 "vendorPointerType",
16070 "vendorPointingDeviceType",
16071 "verifyWithDelegate:",
16072 "version",
16073 "versionForClassName:",
16074 "versionForClassNamed:",
16075 "versionString",
16076 "verticalAlignment",
16077 "verticalLineScroll",
16078 "verticalPageScroll",
16079 "verticalPagination",
16080 "verticalRulerView",
16081 "verticalScroller",
16082 "verticalScrollingMode",
16083 "view",
16084 "view:customToolTip:drawInView:displayInfo:",
16085 "view:customToolTip:fadeOutAllowedForToolTipWithDisplayInfo:",
16086 "view:customToolTip:frameForToolTipWithDisplayInfo:",
16087 "view:stringForToolTip:point:userData:",
16088 "viewBoundsChanged:",
16089 "viewDidEndLiveResize",
16090 "viewDidLiveResizeFromRect:",
16091 "viewDidMoveToHostWindow",
16092 "viewDidMoveToSuperview",
16093 "viewDidMoveToWindow",
16094 "viewFactory",
16095 "viewForCharacterIndex:layoutManager:",
16096 "viewForJavaAppletWithFrame:attributeNames:attributeValues:baseURL:",
16097 "viewForObject:",
16098 "viewForPluginWithURL:attributeNames:attributeValues:MIMEType:",
16099 "viewForPreferenceNamed:",
16100 "viewFrameChanged:",
16101 "viewHasMoved:",
16102 "viewSize",
16103 "viewSizeChanged:",
16104 "viewWillDealloc",
16105 "viewWillMoveToHostWindow:",
16106 "viewWillMoveToSuperview:",
16107 "viewWillMoveToWindow:",
16108 "viewWillResetCursorRects",
16109 "viewWillStartLiveResize",
16110 "viewWithFrame:forView:characterIndex:layoutManager:",
16111 "viewWithTag:",
16112 "visibilityPriority",
16113 "visibleFrame",
16114 "visibleItems",
16115 "visibleRect",
16116 "visibleSelectionRect",
16117 "visitPredicate:",
16118 "visitPredicateExpression:",
16119 "visitPredicateOperator:",
16120 "visitor",
16121 "visualFrame",
16122 "visualRootNode",
16123 "voiceIdentifierForVoiceCreator:voiceID:",
16124 "volatileDomainForName:",
16125 "wait",
16126 "waitForDataInBackgroundAndNotifyForModes:",
16127 "waitInterval:",
16128 "wakeup:",
16129 "wantsDefaultClipping",
16130 "wantsDoubleBuffering",
16131 "wantsNotificationForMarkedText",
16132 "wantsPeriodicDraggingUpdates",
16133 "wantsScrollWheelEvent:",
16134 "wantsToDelayTextChangeNotifications",
16135 "wantsToDrawIconInDisplayMode:",
16136 "wantsToDrawIconIntoLabelAreaInDisplayMode:",
16137 "wantsToDrawLabelInDisplayMode:",
16138 "wantsToHandleMouseEvents",
16139 "wantsToInterpretAllKeystrokes",
16140 "wantsToTrackMouse",
16141 "wantsToTrackMouseForEvent:inRect:ofView:",
16142 "wantsToTrackMouseForEvent:inRect:ofView:atCharacterIndex:",
16143 "warningValue",
16144 "wasFirstResponderAtMouseDownTime:",
16145 "wavePattern",
16146 "webArchive",
16147 "webArchiveData",
16148 "webFallbackFontFamily",
16149 "webFrame",
16150 "webFrame:didFinishLoadWithError:",
16151 "webFrame:didFinishLoadWithReason:",
16152 "webFrameView",
16153 "webPlugInCallJava:method:returnType:arguments:",
16154 "webPlugInContainerLoadRequest:inFrame:",
16155 "webPlugInContainerSelectionColor",
16156 "webPlugInContainerShowStatus:",
16157 "webPlugInDestroy",
16158 "webPlugInGetApplet",
16159 "webPlugInInitialize",
16160 "webPlugInSetIsSelected:",
16161 "webPlugInStart",
16162 "webPlugInStop",
16163 "webScriptNameForKey:",
16164 "webScriptNameForSelector:",
16165 "webView",
16166 "webView:addMessageToConsole:",
16167 "webView:contextMenuItemsForElement:defaultMenuItems:",
16168 "webView:createWebViewWithRequest:",
16169 "webView:dashboardRegionsChanged:",
16170 "webView:decidePolicyForMIMEType:request:frame:decisionListener:",
16171 "webView:decidePolicyForNavigationAction:request:frame:decisionListener:",
16172 "webView:decidePolicyForNewWindowAction:request:newFrameName:decisionListener:",
16173 "webView:didCancelClientRedirectForFrame:",
16174 "webView:didChangeLocationWithinPageForFrame:",
16175 "webView:didCommitLoadForFrame:",
16176 "webView:didFailLoadWithError:forFrame:",
16177 "webView:didFailProvisionalLoadWithError:forFrame:",
16178 "webView:didFinishLoadForFrame:",
16179 "webView:didFirstLayoutInFrame:",
16180 "webView:didReceiveIcon:forFrame:",
16181 "webView:didReceiveServerRedirectForProvisionalLoadForFrame:",
16182 "webView:didReceiveTitle:forFrame:",
16183 "webView:didStartProvisionalLoadForFrame:",
16184 "webView:doCommandBySelector:",
16185 "webView:dragDestinationActionMaskForDraggingInfo:",
16186 "webView:dragSourceActionMaskForPoint:",
16187 "webView:drawFooterInRect:",
16188 "webView:drawHeaderInRect:",
16189 "webView:identifierForInitialRequest:fromDataSource:",
16190 "webView:makeFirstResponder:",
16191 "webView:mouseDidMoveOverElement:modifierFlags:",
16192 "webView:plugInFailedWithError:dataSource:",
16193 "webView:printFrameView:",
16194 "webView:resource:didCancelAuthenticationChallenge:fromDataSource:",
16195 "webView:resource:didFailLoadingWithError:fromDataSource:",
16196 "webView:resource:didFinishLoadingFromDataSource:",
16197 "webView:resource:didReceiveAuthenticationChallenge:fromDataSource:",
16198 "webView:resource:didReceiveContentLength:fromDataSource:",
16199 "webView:resource:didReceiveResponse:fromDataSource:",
16200 "webView:resource:willSendRequest:redirectResponse:fromDataSource:",
16201 "webView:runJavaScriptAlertPanelWithMessage:",
16202 "webView:runJavaScriptConfirmPanelWithMessage:",
16203 "webView:runJavaScriptTextInputPanelWithPrompt:defaultText:",
16204 "webView:runOpenPanelForFileButtonWithResultListener:",
16205 "webView:setFrame:",
16206 "webView:setResizable:",
16207 "webView:setStatusBarVisible:",
16208 "webView:setStatusText:",
16209 "webView:setToolbarsVisible:",
16210 "webView:shouldApplyStyle:toElementsInDOMRange:",
16211 "webView:shouldBeginEditingInDOMRange:",
16212 "webView:shouldChangeSelectedDOMRange:toDOMRange:affinity:stillSelecting:",
16213 "webView:shouldDeleteDOMRange:",
16214 "webView:shouldEndEditingInDOMRange:",
16215 "webView:shouldInsertNode:replacingDOMRange:givenAction:",
16216 "webView:shouldInsertText:replacingDOMRange:givenAction:",
16217 "webView:unableToImplementPolicyWithError:frame:",
16218 "webView:willCloseFrame:",
16219 "webView:willPerformClientRedirectToURL:delay:fireDate:forFrame:",
16220 "webView:willPerformDragDestinationAction:forDraggingInfo:",
16221 "webView:willPerformDragSourceAction:fromPoint:withPasteboard:",
16222 "webView:windowScriptObjectAvailable:",
16223 "webViewAreToolbarsVisible:",
16224 "webViewClose:",
16225 "webViewContentRect:",
16226 "webViewDidBeginEditing:",
16227 "webViewDidChange:",
16228 "webViewDidChangeSelection:",
16229 "webViewDidChangeTypingStyle:",
16230 "webViewDidEndEditing:",
16231 "webViewFirstResponder:",
16232 "webViewFocus:",
16233 "webViewFooterHeight:",
16234 "webViewFrame:",
16235 "webViewHeaderHeight:",
16236 "webViewIsResizable:",
16237 "webViewIsStatusBarVisible:",
16238 "webViewPrint:",
16239 "webViewShow:",
16240 "webViewsInSetNamed:",
16241 "weightOfFont:",
16242 "whiteColor",
16243 "whiteComponent",
16244 "whitespace",
16245 "whitespaceAndNewlineCharacterSet",
16246 "whitespaceCharacterSet",
16247 "widget",
16248 "widgetInView:withButtonID:action:",
16249 "width",
16250 "widthAdjustLimit",
16251 "widthForLayer:edge:",
16252 "widthForSegment:",
16253 "widthOfString:",
16254 "widthTracksTextView",
16255 "widthValueTypeForLayer:edge:",
16256 "willAccessValueForKey:",
16257 "willBeDisplayed",
16258 "willCacheResponse:",
16259 "willChange:valuesAtIndexes:forKey:",
16260 "willChangeExpandedNodes",
16261 "willChangeValueForKey:",
16262 "willChangeValueForKey:withSetMutation:usingObjects:",
16263 "willChangeValuesForArrangedKeys:objectKeys:indexKeys:",
16264 "willForwardSelector:",
16265 "willHaveItemsToDisplayForItemViewers:",
16266 "willPopUpNotification:",
16267 "willPresentError:",
16268 "willRead",
16269 "willRemoveSubview:",
16270 "willSave",
16271 "willSendRequest:redirectResponse:",
16272 "willSetLineFragmentRect:forGlyphRange:usedRect:",
16273 "willSetLineFragmentRect:forGlyphRange:usedRect:baselineOffset:",
16274 "windingRule",
16275 "window",
16276 "window:didChangeToVisibleState:",
16277 "window:willPositionSheet:usingRect:",
16278 "windowBackgroundColor",
16279 "windowBecameKey:",
16280 "windowChangedKeyState",
16281 "windowContentRect",
16282 "windowController",
16283 "windowControllerDidLoadNib:",
16284 "windowControllerWillLoadNib:",
16285 "windowControllers",
16286 "windowDidBecomeKey:",
16287 "windowDidBecomeKeyNotification:",
16288 "windowDidDeminiaturize:",
16289 "windowDidEnableToolTipCreationAndDisplay",
16290 "windowDidLoad",
16291 "windowDidMiniaturize:",
16292 "windowDidResignKey:",
16293 "windowDidResignKeyNotification:",
16294 "windowDidResize:",
16295 "windowDidUpdate:",
16296 "windowForSheet",
16297 "windowFrame",
16298 "windowFrameAutosaveName",
16299 "windowFrameColor",
16300 "windowFrameOutlineColor",
16301 "windowFrameTextColor",
16302 "windowID",
16303 "windowIsResizable",
16304 "windowIsSpellingPanel:",
16305 "windowNibName",
16306 "windowNibPath",
16307 "windowNumber",
16308 "windowObjectCleared",
16309 "windowProperties",
16310 "windowRef",
16311 "windowResignedKey:",
16312 "windowScriptNPObject",
16313 "windowScriptObject",
16314 "windowShouldClose:",
16315 "windowShouldZoom:toFrame:",
16316 "windowTitle",
16317 "windowTitleForDocumentDisplayName:",
16318 "windowTitlebarLinesSpacingWidth",
16319 "windowTitlebarLinesSpacingWidth:",
16320 "windowTitlebarTitleLinesSpacingWidth",
16321 "windowTitlebarTitleLinesSpacingWidth:",
16322 "windowWillClose:",
16323 "windowWillCloseNotification:",
16324 "windowWillLoad",
16325 "windowWillResize:toSize:",
16326 "windowWillReturnFieldEditor:toObject:",
16327 "windowWillReturnUndoManager:",
16328 "windowWillUseStandardFrame:defaultFrame:",
16329 "windowWithWindowNumber:",
16330 "windows",
16331 "wordMovementHandler",
16332 "wordWrap",
16333 "workQueue",
16334 "worksWhenModal",
16335 "wrapMode",
16336 "wrapROI:forRect:",
16337 "wraps",
16338 "writablePasteboardTypes",
16339 "writableTypes",
16340 "writableTypesForSaveOperation:",
16341 "write:len:buffer:",
16342 "writeAlignedDataSize:",
16343 "writeAttachment:",
16344 "writeBackgroundColor",
16345 "writeBaselineOffset:",
16346 "writeBody",
16347 "writeCharacterAttributes:previousAttributes:",
16348 "writeCharacterShape:",
16349 "writeColor:type:",
16350 "writeColorTable",
16351 "writeColors",
16352 "writeData:",
16353 "writeData:length:",
16354 "writeDate:",
16355 "writeDateDocumentAttribute:withRTFKeyword:",
16356 "writeDefaultTabInterval",
16357 "writeDelayedInt:for:",
16358 "writeDocument:pbtype:filename:",
16359 "writeEscapedUTF8String:",
16360 "writeExpansion:",
16361 "writeFont:",
16362 "writeFontTable",
16363 "writeGlyphInfo:",
16364 "writeHeader",
16365 "writeHyphenation",
16366 "writeImageToPasteboard:types:",
16367 "writeInfo",
16368 "writeInt:",
16369 "writeKern:",
16370 "writeKeywordsDocumentAttribute",
16371 "writeLigature:",
16372 "writeLinkInfo:",
16373 "writeListTable",
16374 "writeLock",
16375 "writeObliqueness:",
16376 "writePaperSize",
16377 "writeParagraphStyle:",
16378 "writePath:docInfo:errorHandler:remapContents:hardLinkPath:",
16379 "writePath:docInfo:errorHandler:remapContents:markBusy:hardLinkPath:",
16380 "writePrintInfo",
16381 "writeProperty:forKey:",
16382 "writeRTF",
16383 "writeRoomForInt:",
16384 "writeSafelyToURL:ofType:forSaveOperation:error:",
16385 "writeSelectionToPasteboard:type:",
16386 "writeSelectionToPasteboard:types:",
16387 "writeSelectionWithPasteboardTypes:toPasteboard:",
16388 "writeShadow:",
16389 "writeStrikethroughStyle:",
16390 "writeStringDocumentAttribute:withRTFKeyword:",
16391 "writeStrokeWidth:",
16392 "writeStyleSheetTable",
16393 "writeSuperscript:",
16394 "writeTableHeader:forRowNumber:atIndex:",
16395 "writeToFile:",
16396 "writeToFile:atomically:",
16397 "writeToFile:atomically:error:",
16398 "writeToFile:atomically:updateFilenames:",
16399 "writeToFile:error:",
16400 "writeToFile:ofType:",
16401 "writeToFile:ofType:originalFile:saveOperation:",
16402 "writeToFile:options:error:",
16403 "writeToPasteboard:",
16404 "writeToURL:atomically:",
16405 "writeToURL:ofType:error:",
16406 "writeToURL:ofType:forSaveOperation:originalContentsURL:error:",
16407 "writeURLs:andTitles:toPasteboard:",
16408 "writeUnderlineStyle:allowStrikethrough:",
16409 "writeUnlock",
16410 "writeWithBackupToFile:ofType:saveOperation:",
16411 "xHeight",
16412 "xmlInfoForAttribute:",
16413 "xmlNode",
16414 "yearOfCommonEra",
16415 "yellowColor",
16416 "yellowComponent",
16417 "zero",
16418 "zeroOrMoreDescriptionsForSubelementName:",
16419 "zeroSymbol",
16420 "zone",
16421 "zoom:",
16422 "zoomButton"
16423 };
16424