diff --git a/.gitmodules b/.gitmodules index eb24f2a..80584ea 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,9 +1,6 @@ -[submodule "extras/bundles/ruby-tmbundle"] - path = extras/bundles/ruby-tmbundle - url = https://github.com/textmate/ruby.tmbundle.git -[submodule "extras/bundles/html-tmbundle"] - path = extras/bundles/html-tmbundle - url = https://github.com/textmate/html.tmbundle.git -[submodule "extras/bundles/rails-tmbundle"] - path = extras/bundles/rails-tmbundle - url = https://github.com/textmate/ruby-on-rails-tmbundle.git +[submodule "snippets"] + path = snippets + url = git@github.com:AndreaCrotti/yasnippet-snippets.git +[submodule "yasmate"] + path = yasmate + url = git@github.com:capitaomorte/yasmate.git diff --git a/README.mdown b/README.mdown index 3289b1e..aed81ad 100644 --- a/README.mdown +++ b/README.mdown @@ -5,12 +5,11 @@ type an abbreviation and automatically expand it into function templates. Bundled language templates include: C, C++, C#, Perl, Python, Ruby, SQL, LaTeX, HTML, CSS and more. The snippet syntax is inspired from [TextMate's][textmate-snippets] syntax, you can -even [import][import-docs] most TextMate templates to +even [import][#import] most TextMate templates to YASnippet. Watch [a demo on YouTube][youtube-demo] or download a [higher resolution version][high-res-demo]. [textmate-snippets]: http://manual.macromates.com/en/snippets -[import-docs]: http://yasnippet.googlecode.com/svn/trunk/doc/snippet-development.html#importing-textmate-snippets [youtube-demo]: http://www.youtube.com/watch?v=ZCGmZK4V7Sg [high-res-demo]: http://yasnippet.googlecode.com/files/yas_demo.avi @@ -21,7 +20,7 @@ YASnippet. Watch [a demo on YouTube][youtube-demo] or download a Clone this repository somewhere $ cd ~/.emacs.d/plugins - $ git clone https://github.com/capitaomorte/yasnippet + $ git clone --recursive https://github.com/capitaomorte/yasnippet Add the following in your `.emacs` file: @@ -63,66 +62,49 @@ To use YASnippet as a non-global minor mode, replace `(yas-global-mode 1)` with '(lambda () (yas-minor-mode))) -# (NOT) Contributing snippets +# Where are the snippets? -Please **do not** open pull requests or ask me to add snippets to -YASnippet. +Yasnippet no longer bundles snippets directly, but it's very easy to +get some! -The bundled collection under `/snippets` is considered frozen: **I -will not add more snippets to it**. +If you git-cloned yasnippet with the `--recursive` option you'll also +download "git submodules" and find two subdirs under the main tree. -You can point `yas-snippet-dirs` to good snippet collections out +1. `snippets/` + + Points to [yasnippet-snippets][yasnippet-snippets] the snippet + collection of [AndreaCrotti](https://github.com/AndreaCrotti). + + The default configuraiton already points to this dir, so to use + them, just make sure the submodule really was downloaded + (i.e. there are some files under `snippets/`) + +2. `yasmate/` + + Points to a github repo of the [yasmate][yasmate] tool, which is + dedicated to converting textmate bundles into yasnippet snippets. + + To use these snippets you have to run the tool first, so + [see its doc][yasmate]), and then point the `yas-snippet-dirs` + variable to the `.../yasmate/snippets` subdir. + + If you have a working ruby environment, you can probably get lucky + directly with `rake convert-bundles`. + +Naturally, you can point `yas-snippet-dirs` to good snippet collections out there. If you have created snippets for a mode, or multiple modes, consider creating a repository to host them, then tell users that it should be added like this to `yas-snippet-dirs`: (setq yas-snippet-dirs - '("~/.emacs.d/snippets" ;; personal snippets - "/path/to/some/collection/" ;; just some foo-mode snippets - "/path/to/some/othercollection/" ;; some more foo-mode and a complete baz-mode - "/path/to/yasnippet/snippets" ;; the default collection + '("~/.emacs.d/snippets" ;; personal snippets + "/path/to/some/collection/" ;; foo-mode and bar-mode snippet collection + "/path/to/yasnippet/yasmate/snippets" ;; the yasmate collection + "/path/to/yasnippet/snippets" ;; the default collection )) (yas-global-mode 1) ;; or M-x yas-reload-all if you've started YASnippet already. -# Importing TextMate snippets - -There is a tool `extras/textmate-import.rb` than can import many -actual TextMate snippets. These can be quite complex so the -`extras/imported/*-mode/.yas-setup.el` files help it with the more -difficult importation. - -I'm focusing on developing `textmate-import.rb` tool and some -`yas-setup.el` files. In the future `/snippets` snippets will be -deprecated and might be replaced with `extras/imported`. - -## Example importation of rails snippets - -To start using [drnic's](https://github.com/drnic) snippets for rails -development, follow this example. It will convert `ruby`, `rails` and -`html` bundles from github repositories. The importation will be -guided by the `.yas-setup.el` files. - -After cloning this repository to `~/.emacs.d/plugins/yasnippet` - - cd ~/.emacs.d/plugins/yasnippet - git submodule init - git submodule update - gem install plist trollop - rake convert_bundles # will convert ruby, rails and html bundles - -Then, in your `.emacs` file - - (add-to-list 'load-path - "~/.emacs.d/plugins/yasnippet") - (require 'yasnippet) - (setq yas-snippet-dirs '("~/.emacs.d/snippets" "~/.emacs.d/plugins/yasnippet/extras/imported")) - (yas-global-mode 1) - -Open some rails file (model, app, etc) and start using the textmate -snippets. Note that in the example above we have abandoned the -default snippet collection on `~/.emacs.d/plugins/yasnippet/snippets` - # Documentation, issues, etc Please refer to the comprehensive (albeit slightly outdated) @@ -133,20 +115,20 @@ and support. If you find a bug, please report it on ## Important note regarding bug reporting If you think have found a bug, please report it clearly. Yasnippet -does have (lots of) bugs and your reports are very valuable. Here's -a [great example](https://github.com/capitaomorte/yasnippet/issues/318) -of a bug report. It has everything needed for a sucessfull analysis and +does have (lots of) bugs and your reports are very valuable. Here's +a [great example](https://github.com/capitaomorte/yasnippet/issues/318) +of a bug report. It has everything needed for a sucessfull analysis and speedy resolution: *Before* reporting try to reproduce the bug **without** your usual `.emacs` (or whatever startup file you use). Do so either by starting emacs from the command line with the `-Q` switch, or by temporarily moving away your `.emacs` and creating a new smaller one just for -reproducing the bug. Paste that file in your bug report. Paste any sequence +reproducing the bug. Paste that file in your bug report. Paste any sequence of relevant shell commands before you launch Emacs. *Then*, describe steps taken to reproduce from an -end-user perspective. Try to be as unambiguous as possible. +end-user perspective. Try to be as unambiguous as possible. Also, don't forget to state the Emacs version (use `M-x emacs-version`) and the yasnippet version you are using (if using the latest from github, @@ -169,3 +151,5 @@ Finally, thank you very much for using YASnippet! [googlecode tracker]: http://code.google.com/p/yasnippet/issues/list [forum]: http://groups.google.com/group/smart-snippet [melpa]: http://melpa.milkbox.net/ +[yasmate]: http://github.com/capitaomorte/yasmate +[yasnippet-snippets]: http://github.com/AndreaCrotti/yasnippet-snippets diff --git a/Rakefile b/Rakefile index 0044d1c..278120d 100644 --- a/Rakefile +++ b/Rakefile @@ -18,18 +18,6 @@ task :tests do " --batch --eval '#{batch_run_line}'" end -desc "convert some textmate bundles to yasnippets" -task :convert_bundles do - Dir.glob "extras/bundles/*-tmbundle" do |bundle_dir| - puts "Converting from #{bundle_dir}" - mode_prefix = File.basename(bundle_dir).match(/[^-]*/)[0] - raise "Couldn't guess mode name for #{bundle_dir}" unless mode_prefix - output = "./extras/imported/#{mode_prefix}-mode" - FileUtils.mkdir_p output - sh "./extras/textmate_import.rb -d #{bundle_dir} -o #{output} -q" - end -end - desc "create a release package" task :package do release_dir = "pkg/yasnippet-#{$version}" @@ -97,3 +85,9 @@ end task :compile => FileList["yasnippet.el"].ext('elc') task :default => :doc + +desc "use yasmate to convert textmate bundles" +task :convert_bundles do + cd "yasmate" + sh "rake convert_bundles" + end diff --git a/doc/snippet-development.org b/doc/snippet-development.org index b22f98d..8e3b282 100644 --- a/doc/snippet-development.org +++ b/doc/snippet-development.org @@ -191,7 +191,7 @@ escaped as =\\= sometimes. Emacs-Lisp code can be embedded inside the template, written inside back-quotes (==). The lisp forms are evaluated when the snippet is being expanded. The evaluation is done in the same buffer as the -snippet being expanded. +snippet being expanded. Here's an example for c-mode` to calculate the header file guard dynamically: @@ -199,9 +199,9 @@ dynamically: #+BEGIN_SRC snippet #ifndef ${1:_`(upcase (file-name-nondirectory (file-name-sans-extension (buffer-file-name))))`_H_} #define $1 - + $0 - + #endif /* $1 */ #+END_SRC @@ -279,7 +279,7 @@ contained in the field =n=.Here's an example for Objective-C: { return $2; } - + - (void)set${2:$(capitalize text)}:($1)aValue { [$2 autorelease]; @@ -319,7 +319,7 @@ is not. Here's an snippet for rst title: ${1:$(make-string (string-width text) ?\=)} ${1:Title} ${1:$(make-string (string-width text) ?\=)} - + $0 #+END_SRC @@ -377,12 +377,11 @@ enter snippet field 2. This one makes use of [[sym:yas-modified-p][=yas-modified \section{${1:"Titel der Tour"}}% \index{$1}% \label{{2:"waiting for reftex-label call..."$(unless yas-modified-p (reftex-label nil 'dont- - insert))}}% + insert))}}% #+END_SRC -The function [[sym:yas-verify-value][=yas-verify-value=]] has another neat trick, and makes use of -[[sym:yas-moving-away-p][=yas-moving-away-p=]]. Try it and see! Also, check out this -[[http://groups.google.com/group/smart-snippet/browse_thread/thread/282a90a118e1b662][thread]] +The function [[sym:yas-verify-value][=yas-verify-value=]] has another neat trick, and makes use +of [[sym:yas-moving-away-p][=yas-moving-away-p=]]. Try it and see! Also, check out this [[http://groups.google.com/group/smart-snippet/browse_thread/thread/282a90a118e1b662][thread]] ** Nested placeholder fields @@ -401,50 +400,3 @@ the exit marker. By the way, =C-d= will only clear the field if you cursor is at the beginning of the field /and/ it hasn't been changed yet. Otherwise, it performs the normal Emacs =delete-char= command. - -* Importing TextMate snippets - -There are a couple of tools that take TextMate's ".tmSnippet" xml files -and create YASnippet definitions: - - - - [[http://code.nokrev.com/?p=snippet-copier.git;a=blob_plain;f=snippet_copier.py][a python script by Jeff Wheeler]] - - - a [[http://yasnippet.googlecode.com/svn/trunk/extras/textmate_import.rb][ruby tool]] , =textmate_import.rb= adapted from [[http://www.neutronflux.net/2009/07/28/shoulda-snippets-for-emacs/][Rob Christie's]], - which I have uploaded to the repository. - - -In this section, i'll shortly cover the *second* option. - -Download the =textmate_import.rb= tool and the TextMate bundle you're -interested in. - -#+BEGIN_EXAMPLE - $ curl -O http://yasnippet.googlecode.com/svn/trunk/extras/textmate_import.rb - $ svn export http://svn.textmate.org/trunk/Bundles/HTML.tmbundle/ -#+END_EXAMPLE - -Then invoke =textmate_import.rb= like this: - -#+BEGIN_EXAMPLE - $ ./textmate_import.rb -d HTML.tmbundle/Snippets/ -o html-mode -g HTML.tmbundle/info.plist -#+END_EXAMPLE - -You should end up with a =html-mode= subdir containing snippets exported -from textmate. - -#+BEGIN_EXAMPLE - $ tree html-mode # to view dir contents, if you have 'tree' installed -#+END_EXAMPLE - -The =-g= is optional but helps the tool figure out the grouping. -According to [[./snippet-organization.org][Organizing Snippets]], don't forget to touch -=.yas-make-groups= and =.yas-ignore-filename-triggers= inside the -=html-mode= dir. - -Also try =textmate_import.rb --help= for a list of options. - -Please note that snippet importation is not yet perfect. You'll probably -have some adjustments to some/many snippets. Please contribute these -adjustments to the google group or, better yet, patch the -=textmate_import.rb= to automatically perform them and submit that. diff --git a/extras/bundles/html-tmbundle b/extras/bundles/html-tmbundle deleted file mode 160000 index 993588a..0000000 --- a/extras/bundles/html-tmbundle +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 993588a35d665427209936618a9e524679480e95 diff --git a/extras/bundles/rails-tmbundle b/extras/bundles/rails-tmbundle deleted file mode 160000 index 8091f39..0000000 --- a/extras/bundles/rails-tmbundle +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 8091f39a6efd288c8793321e8822a639db3cc940 diff --git a/extras/bundles/ruby-tmbundle b/extras/bundles/ruby-tmbundle deleted file mode 160000 index da63813..0000000 --- a/extras/bundles/ruby-tmbundle +++ /dev/null @@ -1 +0,0 @@ -Subproject commit da63813a86d46f17abf0a9303de1149ca7cee60a diff --git a/extras/imported/html-mode/.yas-setup.el b/extras/imported/html-mode/.yas-setup.el deleted file mode 100644 index 48159a6..0000000 --- a/extras/imported/html-mode/.yas-setup.el +++ /dev/null @@ -1,690 +0,0 @@ -;; .yas-setup.el for html-mode - -(defvar yas-html-default-tag "p") - -(defvar yas-html-xhtml-attr "") - -(defvar yas-html-just-like-tm nil - "Html-mode snippets behave as close to TextMate as possible.") - -(defun yas-html-activate () - (add-to-list (make-local-variable 'yas-extra-modes) 'html-mode)) - -(add-hook 'nxml-mode-hook 'yas-html-activate) -(add-hook 'rhtml-mode-hook 'yas-html-activate) - -(defun yas-html-remove-preceding-word () - (interactive) - (let (word-begin - word-end - (line-beginning-position (line-beginning-position)) - (orig-point (point)) - retval) - (save-excursion - (when (and (forward-word -1) - (setq word-begin (point)) - (forward-word 1) - (setq word-end (point)) - (< word-begin orig-point) - (>= word-end orig-point) - (<= (line-beginning-position) word-begin) - ;; (not (string-match "^[\s\t]+$" " ")) - ) - (setq retval - (cons - (buffer-substring-no-properties word-begin orig-point) - (buffer-substring-no-properties word-end orig-point))) - (delete-region word-begin word-end) - retval)))) - - -(defun yas-html-first-word (string) - (replace-regexp-in-string "\\\W.*" "" string)) - -(defun yas-html-insert-tag-pair-snippet () - (let* ((tag-and-suffix (or (and yas-selected-text - (cons yas-selected-text nil)) - (yas-html-remove-preceding-word))) - (tag (car tag-and-suffix)) - (suffix (or (cdr tag-and-suffix) "")) - (single-no-arg "\\(br\\|hr\\)") - (single "\\(img\\|meta\\|link\\|input\\|base\\|area\\|col\\|frame\\|param\\)")) - (cond ((null tag) - (yas-expand-snippet (format "<${1:%s}>%s%s" - (or yas-html-default-tag - "p") - (if yas-html-just-like-tm "$2" "$0") - suffix))) - ((string-match single-no-arg tag) - (insert (format "<%s%s/>%s" tag yas-html-xhtml-attr suffix))) - ((string-match single tag) - (yas-expand-snippet (format "<%s $1%s/>%s" tag yas-html-xhtml-attr suffix))) - (t - (yas-expand-snippet (format "<%s>%s%s" - tag - (if yas-html-just-like-tm "$1" "$0") - (replace-regexp-in-string "\\\W.*" "" tag) - suffix)))))) - -(defun yas-html-wrap-each-line-in-openclose-tag () - (let* ((mirror "${1:$(yas-html-first-word yas-text)}") - (yas-html-wrap-newline (when (string-match "\n" yas-selected-text) "\n")) - (template (concat (format "<${1:%s}>" (or yas-html-default-tag "p")) - yas-selected-text - ""))) - (setq template (replace-regexp-in-string "\n" (concat "\n<$1>") template)) - (yas-expand-snippet template))) - -(defun yas-html-toggle-wrap (string wrap) - (or (and string - (string-match (format "<%s>\\(.*\\)" wrap wrap) - string) - (match-string 1 string)) - (concat wrap string wrap))) - -(defun yas-html-between-tag-pair-p () - (save-excursion - (backward-word) - (looking-at "\\\w+>"))) - -(defun yas-html-id-from-string (string) - (replace-regexp-in-string " " "_" (downcase string))) - -(defun yas-html-tidy () - (interactive) - (let ((start (or (and mark-active - (region-beginning)) - (point-min))) - (end (or (and mark-active - (region-end)) - (point-max))) - (orig (point)) - (orig-line (count-screen-lines (window-start) (line-beginning-position)))) - (shell-command-on-region start end "tidy" (current-buffer) t (get-buffer-create "*tidy errors*") t) - (goto-char (min (point-max) orig)) - (recenter (1- orig-line)))) - -(defun yas-html-tag-description () - (interactive) - (let* ((tag-at-point (sgml-beginning-of-tag)) - (fragment (and tag-at-point - (cdr (assoc (upcase tag-at-point) yas-html-tag-description-urls))))) - (if fragment - (browse-url (concat "http://www.w3.org/TR/html4/index/" - fragment)) - (if tag-at-point - (message "No documentation for " tag-at-point) - (message "Not on a HTML tag."))))) - -(defvar yas-html-tag-description-urls - '(("A" . "../struct/links.html#edef-A") - ("ABBR" . "../struct/text.html#edef-ABBR") - ("ACRONYM" . "../struct/text.html#edef-ACRONYM") - ("ADDRESS" . "../struct/global.html#edef-ADDRESS") - ("APPLET" . "../struct/objects.html#edef-APPLET") - ("AREA" . "../struct/objects.html#edef-AREA") - ("B" . "../present/graphics.html#edef-B") - ("BASE" . "../struct/links.html#edef-BASE") - ("BASEFONT" . "../present/graphics.html#edef-BASEFONT") - ("BDO" . "../struct/dirlang.html#edef-BDO") - ("BIG" . "../present/graphics.html#edef-BIG") - ("BLOCKQUOTE" . "../struct/text.html#edef-BLOCKQUOTE") - ("BODY" . "../struct/global.html#edef-BODY") - ("BR" . "../struct/text.html#edef-BR") - ("BUTTON" . "../interact/forms.html#edef-BUTTON") - ("CAPTION" . "../struct/tables.html#edef-CAPTION") - ("CENTER" . "../present/graphics.html#edef-CENTER") - ("CITE" . "../struct/text.html#edef-CITE") - ("CODE" . "../struct/text.html#edef-CODE") - ("COL" . "../struct/tables.html#edef-COL") - ("COLGROUP" . "../struct/tables.html#edef-COLGROUP") - ("DD" . "../struct/lists.html#edef-DD") - ("DEL" . "../struct/text.html#edef-del") - ("DFN" . "../struct/text.html#edef-DFN") - ("DIR" . "../struct/lists.html#edef-DIR") - ("DIV" . "../struct/global.html#edef-DIV") - ("DL" . "../struct/lists.html#edef-DL") - ("DT" . "../struct/lists.html#edef-DT") - ("EM" . "../struct/text.html#edef-EM") - ("FIELDSET" . "../interact/forms.html#edef-FIELDSET") - ("FONT" . "../present/graphics.html#edef-FONT") - ("FORM" . "../interact/forms.html#edef-FORM") - ("FRAME" . "../present/frames.html#edef-FRAME") - ("FRAMESET" . "../present/frames.html#edef-FRAMESET") - ("H1" . "../struct/global.html#edef-H1") - ("H2" . "../struct/global.html#edef-H2") - ("H3" . "../struct/global.html#edef-H3") - ("H4" . "../struct/global.html#edef-H4") - ("H5" . "../struct/global.html#edef-H5") - ("H6" . "../struct/global.html#edef-H6") - ("HEAD" . "../struct/global.html#edef-HEAD") - ("HR" . "../present/graphics.html#edef-HR") - ("HTML" . "../struct/global.html#edef-HTML") - ("I" . "../present/graphics.html#edef-I") - ("IFRAME" . "../present/frames.html#edef-IFRAME") - ("IMG" . "../struct/objects.html#edef-IMG") - ("INPUT" . "../interact/forms.html#edef-INPUT") - ("INS" . "../struct/text.html#edef-ins") - ("ISINDEX" . "../interact/forms.html#edef-ISINDEX") - ("KBD" . "../struct/text.html#edef-KBD") - ("LABEL" . "../interact/forms.html#edef-LABEL") - ("LEGEND" . "../interact/forms.html#edef-LEGEND") - ("LI" . "../struct/lists.html#edef-LI") - ("LINK" . "../struct/links.html#edef-LINK") - ("MAP" . "../struct/objects.html#edef-MAP") - ("MENU" . "../struct/lists.html#edef-MENU") - ("META" . "../struct/global.html#edef-META") - ("NOFRAMES" . "../present/frames.html#edef-NOFRAMES") - ("NOSCRIPT" . "../interact/scripts.html#edef-NOSCRIPT") - ("OBJECT" . "../struct/objects.html#edef-OBJECT") - ("OL" . "../struct/lists.html#edef-OL") - ("OPTGROUP" . "../interact/forms.html#edef-OPTGROUP") - ("OPTION" . "../interact/forms.html#edef-OPTION") - ("P" . "../struct/text.html#edef-P") - ("PARAM" . "../struct/objects.html#edef-PARAM") - ("PRE" . "../struct/text.html#edef-PRE") - ("Q" . "../struct/text.html#edef-Q") - ("S" . "../present/graphics.html#edef-S") - ("SAMP" . "../struct/text.html#edef-SAMP") - ("SCRIPT" . "../interact/scripts.html#edef-SCRIPT") - ("SELECT" . "../interact/forms.html#edef-SELECT") - ("SMALL" . "../present/graphics.html#edef-SMALL") - ("SPAN" . "../struct/global.html#edef-SPAN") - ("STRIKE" . "../present/graphics.html#edef-STRIKE") - ("STRONG" . "../struct/text.html#edef-STRONG") - ("STYLE" . "../present/styles.html#edef-STYLE") - ("SUB" . "../struct/text.html#edef-SUB") - ("SUP" . "../struct/text.html#edef-SUP") - ("TABLE" . "../struct/tables.html#edef-TABLE") - ("TBODY" . "../struct/tables.html#edef-TBODY") - ("TD" . "../struct/tables.html#edef-TD") - ("TEXTAREA" . "../interact/forms.html#edef-TEXTAREA") - ("TFOOT" . "../struct/tables.html#edef-TFOOT") - ("TH" . "../struct/tables.html#edef-TH") - ("THEAD" . "../struct/tables.html#edef-THEAD") - ("TITLE" . "../struct/global.html#edef-TITLE") - ("TR" . "../struct/tables.html#edef-TR") - ("TT" . "../present/graphics.html#edef-TT") - ("U" . "../present/graphics.html#edef-U") - ("UL" . "../struct/lists.html#edef-UL") - ("VAR" . "../struct/text.html#edef-VAR"))) - -;; -;; -;; Substitutions for: content -;; # as in Snippets/Emphasize.yasnippet -;; ${TM_SELECTED_TEXT/\A(.*)<\/em>\z|.*/(?1:$1:$0<\/em>)/m} =yyas> `(yas-html-toggle-wrap yas-selected-text "em")` -;; ${TM_SELECTED_TEXT/\A(.*)<\/strong>\z|.*/(?1:$1:$0<\/strong>)/m} =yyas> `(yas-html-toggle-wrap yas-selected-text "strong")` -;; ${1/\s.*//} =yyas> ${1:$(replace-regexp-in-string "[\s\t\n].*" "" yas-text)} -;; ${1/[[:alpha:]]+|( )/(?1:_:\L$0)/g} =yyas> ${1:$(replace-regexp-in-string " " "_" (downcase yas-text))} -;; ${TM_XHTML} =yyas> `yas-html-xhtml-attr` - - -;; # as in Commands/Preview in All Active Browsers.yasnippet -;; 970EE6B4-A091-11D9-A5A2-000D93C8BE28 =yyas> (browse-url-of-buffer) -;; 637CEA2B-578C-429C-BB74-30E8D42BFA22 =yyas> (yas-html-tag-description) -;; 2ED44A32-C353-447F-BAE4-E3522DB6944D =yyas> (yas-html-insert-tag-pair-snippet) -;; 991E7EBD-F3F5-469A-BA01-DC30E04AD472 =yyas> (yas-html-wrap-each-line-in-openclose-tag) - -;; Substitutions for: binding -;; -;; # as in Snippets/Strong.yasnippet -;; @b =yyas> s-b -;; -;; # as in Snippets/Emphasize.yasnippet -;; ^@i =yyas> -;; @i =yyas> s-i -;; -;; # as in Snippets/Wrap Selection In Tag.yasnippet -;; ^W =yyas> C-c M-w -;; -;; # as in Commands/Insert Tag Pair.yasnippet -;; ^< =yyas> C-< -;; -;; # as in Commands/Documentation for Tag.yasnippet -;; ^h =yyas> C-c M-h -;; -;; # as in Commands/Wrap Each Selected Line in OpenClose Tag.yasnippet -;; ^@W =yyas> C-c M-W -;; -;; # as in Snippets/XHTML   NonBreakingSpace.yasnippet -;; ~ =yyas> (yas-unknown) -;; -;; # as in Commands/Insert Entity.yasnippet -;; @& =yyas> (yas-unknown) -;; -;; # as in Commands/Refresh All Active Browsers.yasnippet -;; @r =yyas> (yas-unknown) -;; -;; # as in Commands/Persistent Include.yasnippet -;; ^@i =yyas> (yas-unknown) -;; -;; # as in Commands/CodeCompletion HTML Tags.yasnippet -;; ~ =yyas> (yas-unknown) -;; -;; # as in Commands/Update Includes.yasnippet -;; ^@u =yyas> (yas-unknown) -;; -;; # as in Macros/Delete whitespace between tags.yasnippet -;; ^~ =yyas> (yas-unknown) -;; -;; # as in Commands/Tidy.yasnippet -;; ^H =yyas> (yas-unknown) -;; -;; -;; --**-- -;; Automatically generated code, do not edit this part -;; -;; Translated menu -;; -(yas-define-menu 'html-mode - '(;; Documentation for Tag - (yas-item "637CEA2B-578C-429C-BB74-30E8D42BFA22") - ;; Ignoring Validate Syntax (W3C) - (yas-ignore-item "3F26240E-6E4A-11D9-B411-000D93589AF6") - - ;; Open Document in Running Browser(s) - (yas-item "970EE6B4-A091-11D9-A5A2-000D93C8BE28") - ;; Ignoring Refresh Running Browser(s) - (yas-ignore-item "B8651C6E-A05E-11D9-86AC-000D93C8BE28") - - (yas-submenu "Entities" - (;; Ignoring Convert Character / Selection to Entities - (yas-ignore-item "3DD8406C-A116-11D9-A5A2-000D93C8BE28") - ;; Ignoring Convert Character / Selection to Entities Excl. Tags - (yas-ignore-item "43C9E8AE-3E53-4B82-A1AF-56697BB3EF09") - ;; Ignoring Decode Entities in Line / Selection - (yas-ignore-item "C183920D-A126-11D9-A5A2-000D93C8BE28") - - ;; Non-Breaking Space - (yas-item "73B40BAE-A295-11D9-87F7-000D93C8BE28") - ;; → - (yas-item "C70BB693-0954-4440-AEB4-F2ADD6D923F0") - ;; ← - (yas-item "C0418A4A-7E42-4D49-8F86-6E339296CB84") - ;; ⇤ - (yas-item "7F102705-27D8-4029-BF61-2F042FB61E06") - ;; ⌅ - (yas-item "7062316B-4236-4793-AD35-05E4A6577393") - ;; ⌃ - (yas-item "B4987DA5-9C2F-4D2D-AC14-678115079205") - ;; ⌦ - (yas-item "44E448B6-37CE-4BFE-8611-C5113593B74B") - ;; ↩ - (yas-item "9B216475-D73D-4518-851F-CACD0066A909") - ;; ⇥ - (yas-item "ADC78A82-40C2-4AAC-8968-93AF0ED98DF0") - ;; ⌫ - (yas-item "38E50882-27AF-4246-A039-355C3E1A699E") - ;; ⌘ - (yas-item "7214ACD1-93D9-4D3F-A428-8A7302E0A35E") - ;; ↓ - (yas-item "35654B4E-2D76-4CD3-8FBB-2DA1F314BA19") - ;; → - (yas-item "AC15621A-8A16-40DD-A671-EA4C37637215") - ;; ↑ - (yas-item "0E2F4A47-EADE-4A05-931E-FC874FA28FC3") - ;; ⇧ - (yas-item "1B8D58B9-D9DB-484C-AACD-5D5DF5385308") - ;; ⎋ - (yas-item "D7CC7C7C-CD01-4357-AF91-AEFFD914DF98") - ;; ⌥ - (yas-item "980A8D39-CA8B-4EC2-9739-DC36A262F28E") - (yas-separator) - ;; Ignoring Insert Entity… - (yas-ignore-item "89E5CC0A-3EFF-4DEF-A299-2E9651DE6529"))) - (yas-submenu "URL Escapes" - (;; Ignoring URL Escape Line / Selection - (yas-ignore-item "6B024865-6095-4CE3-8EDD-DC6F2230C2FF") - ;; Ignoring URL Unescape Line / Selection - (yas-ignore-item "2C4C9673-B166-432A-8938-75A5CA622481"))) - ;; Ignoring Encrypt Line / Selection (ROT 13) - (yas-ignore-item "9B13543F-8356-443C-B6E7-D9259B604927") - - ;; Ignoring CodeCompletion HTML Attributes - (yas-ignore-item "CBD82CF3-74E9-4E7A-B3F6-9348754EB5AA") - ;; Insert Open/Close Tag (With Current Word) - (yas-item "2ED44A32-C353-447F-BAE4-E3522DB6944D") - ;; Ignoring Insert Close Tag - (yas-ignore-item "0658019F-3635-462E-AAC2-74E4FE508A9B") - (yas-submenu "Insert DocType" - (;; HTML — 4.01 Strict - (yas-item "944F1410-188C-4D70-8340-CECAA56FC7F2") - ;; HTML — 4.01 Transitional - (yas-item "B2AAEE56-42D8-42C3-8F67-865473F50E8D") - (yas-separator) - ;; XHTML — 1.0 Frameset - (yas-item "9ED6ABBE-A802-11D9-BFC8-000D93C8BE28") - ;; XHTML — 1.0 Strict - (yas-item "C8B83564-A802-11D9-BFC8-000D93C8BE28") - ;; XHTML — 1.0 Transitional - (yas-item "7D8C2F74-A802-11D9-BFC8-000D93C8BE28") - ;; XHTML — 1.1 - (yas-item "5CE8FC6E-A802-11D9-BFC8-000D93C8BE28"))) - (yas-submenu "Insert Tag" - (;; Ignoring CodeCompletion HTML Tags - (yas-ignore-item "3463E85F-F500-49A0-8631-D78ED85F9D60") - - ;; Base - (yas-item "4462A6B8-A08A-11D9-A5A2-000D93C8BE28") - ;; Body - (yas-item "4905D47B-A08B-11D9-A5A2-000D93C8BE28") - ;; Br - (yas-item "3E008E42-A5C9-11D9-9BCD-000D93C8BE28") - ;; Div - (yas-item "576036C0-A60E-11D9-ABD6-000D93C8BE28") - ;; Embed QT Movie - (yas-item "42F15753-9B6D-4DD8-984C-807B94363277") - ;; Fieldset - (yas-item "9BD2BE01-A854-4D55-B584-725D04C075C0") - ;; Form - (yas-item "232C2E8B-A08E-11D9-A5A2-000D93C8BE28") - ;; Head - (yas-item "9CF008C4-A086-11D9-A5A2-000D93C8BE28") - ;; Heading - (yas-item "65BA66DC-A07F-11D9-A5A2-000D93C8BE28") - ;; Input - (yas-item "44180979-A08E-11D9-A5A2-000D93C8BE28") - ;; Input with Label - (yas-item "D8DCCC81-749A-4E2A-B4BC-D109D5799CAA") - ;; Link - (yas-item "77BFD0C0-A08A-11D9-A5A2-000D93C8BE28") - ;; Mail Anchor - (yas-item "81DA4C74-A530-11D9-9BCD-000D93C8BE28") - ;; Meta - (yas-item "DA99AC44-A083-11D9-A5A2-000D93C8BE28") - ;; Option - (yas-item "5820372E-A093-4F38-B25C-B0CCC50A0FC4") - ;; Script - (yas-item "6592050A-A087-11D9-A5A2-000D93C8BE28") - ;; Script With External Source - (yas-item "7D676C4C-A087-11D9-A5A2-000D93C8BE28") - ;; Select Box - (yas-item "26023CFF-C73F-4EF5-9803-E4DBA2CBEADD") - ;; Style - (yas-item "3C518074-A088-11D9-A5A2-000D93C8BE28") - ;; Table - (yas-item "57176082-A12F-11D9-A5A2-000D93C8BE28") - ;; Text Area - (yas-item "AAC9D7B8-A12C-11D9-A5A2-000D93C8BE28") - ;; Title - (yas-item "B62ECABE-A086-11D9-A5A2-000D93C8BE28"))) - - (yas-submenu "Includes" - (;; Ignoring Add Persistent Include - (yas-ignore-item "0D814247-7A00-46EE-A2A4-45FBBF4B1181") - ;; Ignoring Update Document - (yas-ignore-item "4400BCE9-20E3-426E-B1D7-2C0BCA53BCF8") - ;; Ignoring Help: Persistent Includes - (yas-ignore-item "9AFDEB2C-D9F0-423E-8211-EBB089F51F0C"))) - (yas-submenu "Format" - (;; Strong - (yas-item "4117D930-B6FA-4022-97E7-ECCAF4E70F63") - ;; Emphasize - (yas-item "EBB98620-3292-4621-BA38-D8A9A65D9551"))) - (yas-submenu "Conditional Comments" - (;; IE Conditional Comment: Internet Explorer - (yas-item "0ED6DA73-F38F-4A65-B18F-3379D2BA9387") - ;; IE Conditional Comment: Internet Explorer 5.0 only - (yas-item "3A517A94-001E-464D-8184-1FE56D0D0D70") - ;; IE Conditional Comment: Internet Explorer 5.5 only - (yas-item "E3F8984E-7269-4981-9D30-967AB56A6ACE") - ;; IE Conditional Comment: Internet Explorer 5.x - (yas-item "F3512848-7889-45DA-993B-0547976C8E6D") - ;; IE Conditional Comment: Internet Explorer 6 and below - (yas-item "32BBB9AB-8732-4F91-A587-354941A27B69") - ;; IE Conditional Comment: Internet Explorer 6 only - (yas-item "48DF7485-52EA-49B3-88AF-3A41F933F325") - ;; IE Conditional Comment: Internet Explorer 7 and above - (yas-item "CBC24AF4-88E0-498B-BE50-934B9CF29EC7") - ;; IE Conditional Comment: NOT Internet Explorer - (yas-item "F00170EE-4A82-413F-A88B-85293E69A88B"))) - - ;; Wrap Selection in Open/Close Tag - (yas-item "BC8B8AE2-5F16-11D9-B9C3-000D93589AF6") - ;; Wrap Each Selected Line in Open/Close Tag - (yas-item "991E7EBD-F3F5-469A-BA01-DC30E04AD472") - ;; Wrap in - (yas-item "912906A0-9A29-434B-AE98-E9DFDE6E48B4") - (yas-separator) - ;; Ignoring Strip HTML Tags from Document / Selection - (yas-ignore-item "20D760B5-A127-11D9-A5A2-000D93C8BE28") - ;; Ignoring Tidy - (yas-ignore-item "45F92B81-6F0E-11D9-A1E4-000D9332809C")) - '("7B7E945E-A112-11D9-A5A2-000D93C8BE28" - "3C44EABE-8D6F-4B1B-AB91-F419FAD1A0AD" - "9AFDEB2C-D9F0-423E-8211-EBB089F51F0C" - "CBD82CF3-74E9-4E7A-B3F6-9348754EB5AA" - "3463E85F-F500-49A0-8631-D78ED85F9D60" - "9B13543F-8356-443C-B6E7-D9259B604927" - "0D814247-7A00-46EE-A2A4-45FBBF4B1181" - "4400BCE9-20E3-426E-B1D7-2C0BCA53BCF8" - "6B024865-6095-4CE3-8EDD-DC6F2230C2FF" - "3DD8406C-A116-11D9-A5A2-000D93C8BE28" - "43C9E8AE-3E53-4B82-A1AF-56697BB3EF09" - "C183920D-A126-11D9-A5A2-000D93C8BE28" - "2C4C9673-B166-432A-8938-75A5CA622481" - "0658019F-3635-462E-AAC2-74E4FE508A9B" - "89E5CC0A-3EFF-4DEF-A299-2E9651DE6529" - "B8651C6E-A05E-11D9-86AC-000D93C8BE28" - "20D760B5-A127-11D9-A5A2-000D93C8BE28" - "45F92B81-6F0E-11D9-A1E4-000D9332809C" - "3F26240E-6E4A-11D9-B411-000D93589AF6" - "B23D6E15-6B33-11D9-86C1-000D93589AF6" - "C8B717C2-6B33-11D9-BB47-000D93589AF6" - "CD6D2CC6-6B33-11D9-BDFD-000D93589AF6" - "7B7E945E-A112-11D9-A5A2-000D93C8BE28" - "04332FA8-8157-46C4-9854-8C190FFD96C6" - "E6F19171-F664-4B4F-92DA-3E15E6CAD35C" - "26068A55-4C84-409D-BA00-162B55AF6961" - "EBEE6B51-29C7-4362-818F-A190CACD5296" - "65D38039-6B0A-48E9-9E49-43832ECC4107" - "CDE8EFD6-9DE2-4E8C-BB6A-52E8CCD2E977")) - -;; Unknown substitutions -;; -;; Substitutions for: content -;; -;; # as in Snippets/Emphasize.yasnippet -;; `(yas-html-toggle-wrap yas-selected-text "em")` =yyas> (yas-unknown) -;; -;; # as in Snippets/XHTML h1.yasnippet -;; `yas-selected-text` =yyas> (yas-unknown) -;; -;; # as in Snippets/IE Conditional Comment Internet Explorer 5_0 only.yasnippet -;; `(or (yas-selected-text) " IE Conditional Comment: Internet Explorer 5.0 only ")` =yyas> (yas-unknown) -;; -;; # as in Snippets/IE Conditional Comment Internet Explorer 5_5 only.yasnippet -;; `(or (yas-selected-text) " IE Conditional Comment: Internet Explorer 5.5 only ")` =yyas> (yas-unknown) -;; -;; # as in Snippets/IE Conditional Comment Internet Explorer 5_x.yasnippet -;; `(or (yas-selected-text) " IE Conditional Comment: Internet Explorer 5.x ")` =yyas> (yas-unknown) -;; -;; # as in Snippets/IE Conditional Comment Internet Explorer 6 and below.yasnippet -;; `(or (yas-selected-text) " IE Conditional Comment: Internet Explorer 6 and below ")` =yyas> (yas-unknown) -;; -;; # as in Snippets/IE Conditional Comment Internet Explorer 6 only.yasnippet -;; `(or (yas-selected-text) " IE Conditional Comment: Internet Explorer 6 only ")` =yyas> (yas-unknown) -;; -;; # as in Snippets/IE Conditional Comment Internet Explorer 7+.yasnippet -;; `(or (yas-selected-text) " IE Conditional Comment: Internet Explorer 7 and above ")` =yyas> (yas-unknown) -;; -;; # as in Snippets/IE Conditional Comment Internet Explorer.yasnippet -;; `(or (yas-selected-text) " IE Conditional Comment: Internet Explorer ")` =yyas> (yas-unknown) -;; -;; # as in Snippets/IE Conditional Comment NOT Internet Explorer.yasnippet -;; `(or (yas-selected-text) " IE Conditional Comment: NOT Internet Explorer ")` =yyas> (yas-unknown) -;; -;; # as in Snippets/XHTML meta.yasnippet -;; `yas-html-xhtml-attr` =yyas> (yas-unknown) -;; -;; # as in Snippets/Strong.yasnippet -;; `(yas-html-toggle-wrap yas-selected-text "strong")` =yyas> (yas-unknown) -;; -;; # as in Commands/About Persistent Includes.yasnippet -;; 9AFDEB2C-D9F0-423E-8211-EBB089F51F0C =yyas> (yas-unknown) -;; -;; # as in Commands/CodeCompletion HTML Attributes.yasnippet -;; CBD82CF3-74E9-4E7A-B3F6-9348754EB5AA =yyas> (yas-unknown) -;; -;; # as in Commands/CodeCompletion HTML Tags.yasnippet -;; 3463E85F-F500-49A0-8631-D78ED85F9D60 =yyas> (yas-unknown) -;; -;; # as in Commands/Encrypt Line Selection (ROT 13).yasnippet -;; 9B13543F-8356-443C-B6E7-D9259B604927 =yyas> (yas-unknown) -;; -;; # as in Commands/Persistent Include.yasnippet -;; 0D814247-7A00-46EE-A2A4-45FBBF4B1181 =yyas> (yas-unknown) -;; -;; # as in Commands/Update Includes.yasnippet -;; 4400BCE9-20E3-426E-B1D7-2C0BCA53BCF8 =yyas> (yas-unknown) -;; -;; # as in Commands/Convert Line Selection to URL Escapes.yasnippet -;; 6B024865-6095-4CE3-8EDD-DC6F2230C2FF =yyas> (yas-unknown) -;; -;; # as in Commands/Convert to HTML Entities.yasnippet -;; 3DD8406C-A116-11D9-A5A2-000D93C8BE28 =yyas> (yas-unknown) -;; -;; # as in Commands/Convert to named entities excl tags.yasnippet -;; 43C9E8AE-3E53-4B82-A1AF-56697BB3EF09 =yyas> (yas-unknown) -;; -;; # as in Commands/Decode HTML Entities.yasnippet -;; C183920D-A126-11D9-A5A2-000D93C8BE28 =yyas> (yas-unknown) -;; -;; # as in Commands/Decode Numeric URL Escapes in Line Selection.yasnippet -;; 2C4C9673-B166-432A-8938-75A5CA622481 =yyas> (yas-unknown) -;; -;; # as in Commands/Insert Close Tag.yasnippet -;; 0658019F-3635-462E-AAC2-74E4FE508A9B =yyas> (yas-unknown) -;; -;; # as in Commands/Insert Entity.yasnippet -;; 89E5CC0A-3EFF-4DEF-A299-2E9651DE6529 =yyas> (yas-unknown) -;; -;; # as in Commands/Refresh All Active Browsers.yasnippet -;; B8651C6E-A05E-11D9-86AC-000D93C8BE28 =yyas> (yas-unknown) -;; -;; # as in Commands/Strip HTML tags.yasnippet -;; 20D760B5-A127-11D9-A5A2-000D93C8BE28 =yyas> (yas-unknown) -;; -;; # as in Commands/Tidy.yasnippet -;; 45F92B81-6F0E-11D9-A1E4-000D9332809C =yyas> (yas-unknown) -;; -;; # as in Commands/W3C validation.yasnippet -;; 3F26240E-6E4A-11D9-B411-000D93589AF6 =yyas> (yas-unknown) -;; -;; # as in DragCommands/Anchor Tag.yasnippet -;; B23D6E15-6B33-11D9-86C1-000D93589AF6 =yyas> (yas-unknown) -;; -;; # as in DragCommands/CSS Link.yasnippet -;; C8B717C2-6B33-11D9-BB47-000D93589AF6 =yyas> (yas-unknown) -;; -;; # as in DragCommands/Image Tag.yasnippet -;; CD6D2CC6-6B33-11D9-BDFD-000D93589AF6 =yyas> (yas-unknown) -;; -;; # as in Macros/Delete whitespace between tags.yasnippet -;; 7B7E945E-A112-11D9-A5A2-000D93C8BE28 =yyas> (yas-unknown) -;; -;; # as in Snippets/XHTML body.yasnippet -;; ${TM_FILENAME/(.*)\..*/\L$1/} =yyas> (yas-unknown) -;; -;; # as in Snippets/XHTML form.yasnippet -;; ${TM_FILENAME/(.*?)\..*/$1_submit/} =yyas> (yas-unknown) -;; -;; # as in Snippets/XHTML title.yasnippet -;; ${TM_FILENAME/((.+)\..*)?/(?2:$2:Page Title)/} =yyas> (yas-unknown) -;; -;; # as in Templates/HTML 4.0 Strict/info.yasnippet -;; 04332FA8-8157-46C4-9854-8C190FFD96C6 =yyas> (yas-unknown) -;; -;; # as in Templates/HTML 4.0 Transitional/info.yasnippet -;; E6F19171-F664-4B4F-92DA-3E15E6CAD35C =yyas> (yas-unknown) -;; -;; # as in Templates/XHTML 1.0 Frameset/info.yasnippet -;; 26068A55-4C84-409D-BA00-162B55AF6961 =yyas> (yas-unknown) -;; -;; # as in Templates/XHTML 1.0 Strict/info.yasnippet -;; EBEE6B51-29C7-4362-818F-A190CACD5296 =yyas> (yas-unknown) -;; -;; # as in Templates/XHTML 1.0 Transitional/info.yasnippet -;; 65D38039-6B0A-48E9-9E49-43832ECC4107 =yyas> (yas-unknown) -;; -;; # as in Templates/XHTML 1.1/info.yasnippet -;; CDE8EFD6-9DE2-4E8C-BB6A-52E8CCD2E977 =yyas> (yas-unknown) -;; -;; - -;; Substitutions for: condition -;; -;; # as in Templates/XHTML 1.1/info.yasnippet -;; text.html =yyas> (yas-unknown) -;; -;; # as in Commands/CodeCompletion HTML Attributes.yasnippet -;; text.html punctuation.definition.tag -source, text.html meta.tag -entity.other.attribute-name -source =yyas> (yas-unknown) -;; -;; # as in Commands/CodeCompletion HTML Tags.yasnippet -;; text.html -entity.other.attribute-name -string.quoted, invalid.illegal.incomplete.html =yyas> (yas-unknown) -;; -;; # as in Commands/Documentation for Tag.yasnippet -;; text.html, text.html entity.name.tag =yyas> (yas-unknown) -;; -;; # as in Commands/Refresh All Active Browsers.yasnippet -;; text.html, source.css =yyas> (yas-unknown) -;; -;; # as in Snippets/Smart returnindent for tag pairs.yasnippet -;; meta.scope.between-tag-pair =yyas> (yas-unknown) -;; -;; # as in Snippets/Wrap Selection In Tag.yasnippet -;; text.html, =yyas> (yas-unknown) -;; -;; # as in Snippets/Wrap in =.yasnippet -;; text.html string =yyas> (yas-unknown) -;; -;; # as in Snippets/XHTML head.yasnippet -;; text.html - text.html source =yyas> (yas-unknown) -;; -;; # as in Snippets/XHTML title.yasnippet -;; text.html - text.blog =yyas> (yas-unknown) -;; -;; - -;; Substitutions for: binding -;; -;; # as in Commands/CodeCompletion HTML Tags.yasnippet -;; ~ =yyas> (yas-unknown) -;; -;; # as in Commands/Insert Entity.yasnippet -;; @& =yyas> (yas-unknown) -;; -;; # as in Commands/Persistent Include.yasnippet -;; =yyas> (yas-unknown) -;; -;; # as in Commands/Update Includes.yasnippet -;; ^@u =yyas> (yas-unknown) -;; -;; # as in Commands/Insert Close Tag.yasnippet -;; ~@. =yyas> (yas-unknown) -;; -;; # as in Commands/Refresh All Active Browsers.yasnippet -;; @r =yyas> (yas-unknown) -;; -;; # as in Commands/Tidy.yasnippet -;; ^H =yyas> (yas-unknown) -;; -;; # as in Commands/W3C validation.yasnippet -;; ^V =yyas> (yas-unknown) -;; -;; # as in Macros/Delete whitespace between tags.yasnippet -;; ^~ =yyas> (yas-unknown) -;; -;; # as in Snippets/Smart returnindent for tag pairs.yasnippet -;; =yyas> (yas-unknown) -;; -;; # as in Snippets/XHTML   NonBreakingSpace.yasnippet -;; ~ =yyas> (yas-unknown) -;; -;; # as in Snippets/XHTML br.yasnippet -;; ^ =yyas> (yas-unknown) -;; -;; - -;; .yas-setup.el for html-mode ends here diff --git a/extras/imported/objc-mode/.yas-setup.el b/extras/imported/objc-mode/.yas-setup.el deleted file mode 100644 index 3d00490..0000000 --- a/extras/imported/objc-mode/.yas-setup.el +++ /dev/null @@ -1,88 +0,0 @@ -(defun yas-objc-docset-query (query) - - ) -(defvar yas-objc-method-names (make-vector 1023 0)) -(defvar yas-objc-class-names (make-vector 1023 0)) - -(defvar yas-objc-languages (list)) -(defvar yas-objc-defkinds (list)) - - -(defun yas-objc-extract-super-list () - (interactive) - (setq yas-objc-method-names (make-vector 1023 0) - yas-objc-class-names (make-vector 1023 0) - yas-objc-languages (list) - yas-objc-defkinds (list)) - (with-temp-buffer - (shell-command - "/Developer/usr/bin/docsetutil dump -skip-text /Developer/Documentation/DocSets/com.apple.adc.documentation.AppleSnowLeopard.CoreReference.docset/" - (current-buffer)) - (goto-char (point-min)) - (search-forward-regexp "API index contains .* tokens") - (while (search-forward-regexp "^\\([^/]*\\)/\\([^/]*\\)/\\([^/]*\\)/\\([^/]*\\)$" nil 'noerror) - (intern (match-string 3) yas-objc-class-names) - (intern (match-string 4) yas-objc-method-names) - (add-to-list 'yas-objc-languages (match-string 1)) - (add-to-list 'yas-objc-defkinds (match-string 2))))) - -;; (put (intern-soft (setq chosen (completing-read "Method: " yas-objc-method-names)) yas-objc-method-names) -;; 'someshit -;; 'someday) - -;; (completing-read "Class: " yas-objc-class-names) - -;; (get (intern-soft (setq chosen (completing-read "hey: " yas-objc-method-names)) yas-objc-method-names) -;; 'someshit) - -(defun yas-objc-current-method-signature () - (let ((orig-point (point)) - (start-point nil) - sig - orig-ppss - ppss) - (save-excursion - (condition-case nil - (while (not (eq (point) (point-min))) (backward-sexp)) - (error nil)) - (when (eq (preceding-char) ?\[) - (setq orig-ppss (syntax-ppss)) - (forward-sexp) - (skip-chars-forward " \t\n") - (setq ppss (syntax-ppss)) - (while (and (>= (car ppss) (car orig-ppss)) - (search-forward-regexp "[[:alpha:]]+:" nil 'noerror)) - (setq ppss (syntax-ppss)) - (when (eq (car ppss) (car orig-ppss)) - (setq sig - (concat (or sig "") (match-string-no-properties 0))))) - sig)))) - -(defun yas-objc-current-method-signature () - (let ((orig-point (point)) - (start-point nil) - sig - orig-ppss - ppss) - (save-excursion - (condition-case nil - (while (not (eq (point) (point-max))) (backward-sexp)) - (error )) - (when (eq (preceding-char) ?\[) - (setq orig-ppss (syntax-ppss)) - (forward-sexp) - (skip-chars-forward " \t\n") - (setq ppss (syntax-ppss)) - (condition-case nil - (while (and (>= (car ppss) (car orig-ppss)) - (search-forward-regexp "[[:alpha:]]+:" orig-point 'noerror)) - (setq ppss (syntax-ppss)) - (when (eq (car ppss) (car orig-ppss)) - (setq sig - (concat (or sig "") (match-string-no-properties 0)))) - (forward-sexp)) - (error nil)) - (save-excursion - (backward-word) - (concat sig (buffer-substring-no-properties (point) orig-point))) - sig)))) diff --git a/extras/imported/objc-mode/Support/.yas-skip b/extras/imported/objc-mode/Support/.yas-skip deleted file mode 100644 index e69de29..0000000 diff --git a/extras/imported/objc-mode/Support/alldefs.txt b/extras/imported/objc-mode/Support/alldefs.txt deleted file mode 100644 index 6eda973..0000000 --- a/extras/imported/objc-mode/Support/alldefs.txt +++ /dev/null @@ -1,59477 +0,0 @@ -API index contains 59476 tokens --/writerid/-/200 --/writerid/-/201 --/writerid/-/202 --/writerid/-/203 --/writerid/-/204 --/writerid/-/205 --/writerid/-/206 --/writerid/-/207 --/writerid/-/208 --/writerid/-/209 --/writerid/-/210 --/writerid/-/211 --/writerid/-/212 --/writerid/-/213 --/writerid/-/215 --/writerid/-/220 --/writerid/-/221 --/writerid/-/222 --/writerid/-/223 --/writerid/-/224 --/writerid/-/225 --/writerid/-/230 --/writerid/-/231 --/writerid/-/232 -C/tag/-/__allocator -C/tdef/-/__attribute__ -C/func/-/__declspec -C/tdef/-/__double_complex_t -C/tdef/-/__enable_if -C/tdef/-/__float_complex_t -C/func/-/__num_bitmaps -C/func/-/__num_blocks -C/data/-/__threads_enabled -C/func/-/__xmlMalloc -C/tdef/-/_ABPropertyType -C/tdef/-/_Alloc_traits -C/macro/-/_BALLOC_ALIGN_BYTES -C/tdef/-/_CAConstraintAttribute -C/macro/-/_DNS_SD_H -C/func/-/_dyld_bind_fully_image_containing_address -C/func/-/_dyld_bind_objc_module -C/func/-/_dyld_func_lookup -C/func/-/_dyld_get_image_header -C/func/-/_dyld_get_image_name -C/func/-/_dyld_get_image_vmaddr_slide -C/func/-/_dyld_get_objc_module_sect_for_module -C/func/-/_dyld_image_containing_address -C/func/-/_dyld_image_count -C/func/-/_dyld_launched_prebound -C/func/-/_dyld_lookup_and_bind -C/func/-/_dyld_lookup_and_bind_fully -C/func/-/_dyld_lookup_and_bind_objc -C/func/-/_dyld_lookup_and_bind_with_hint -C/func/-/_dyld_moninit -C/func/-/_dyld_present -C/func/-/_dyld_register_func_for_add_image -C/func/-/_dyld_register_func_for_link_module -C/func/-/_dyld_register_func_for_remove_image -C++/data/IOBlockStorageDriver/_ejectable -C/func/-/_exit -C/func/-/_Exit -C/tag/-/_Hidden_type -C/macro/-/_KAUTH_CRED_T -C++/data/IOBlockStorageDriver/_lockable -C/func/-/_longjmp -C++/instm/IOWorkLoop/_maintRequest -C++/data/IOBlockStorageDriver/_maxBlockNumber -C++/data/IOBlockStorageDriver/_maxReadByteTransfer -C++/data/IOBlockStorageDriver/_maxWriteByteTransfer -C++/data/IOBlockStorageDriver/_mediaBlockSize -C++/data/IOBlockStorageDriver/_mediaObject -C++/data/IOBlockStorageDriver/_mediaPresent -C++/data/IOBlockStorageDriver/_mediaStateLock -C++/data/IOBlockStorageDriver/_mediaType -C/func/-/_MPIsFullyInitialized -C/func/-/_nc_free_and_exit -C/func/-/_nc_freeall -C/func/-/_nc_tracebits -C/tag/-/_NSByteOrder -C/func/-/_NSGetExecutablePath -C/tdef/-/_ODAttributeType -C/tdef/-/_ODAuthenticationType -C/tdef/-/_ODRecordType -C++/tdef/OSCollection/_OSCollectionFlags -C/func/-/_OSReadInt16 -C/func/-/_OSReadInt32 -C/func/-/_OSReadInt64 -C/func/-/_OSWriteInt16 -C/func/-/_OSWriteInt32 -C/func/-/_OSWriteInt64 -C++/data/IOBlockStorageDriver/_pollIsExpensive -C++/data/IOBlockStorageDriver/_pollIsRequired -C/func/-/_rand48 -C++/data/IOBlockStorageDriver/_removable -C/data/AudioHardwarePlugInInterface/_reserved -C++/data/IOEthernetInterface/_reserved -C++/data/IONetworkController/_reserved -C++/data/IONetworkMedium/_reserved -C++/data/IOEthernetController/_reserved -C/data/-/_reserved -C++/data/IOOutputQueue/_reserved -C++/data/IOKernelDebugger/_reserved -C++/data/IOHIDInterface/_reserved -C++/data/IOHIDDevice/_reserved -C++/data/IONetworkData/_reserved -C++/data/IOSharedDataQueue/_reserved -C++/data/IOPacketQueue/_reserved -C/tdef/-/_Safe_bool -C/func/-/_setjmp -C/func/-/_Sp_counted_base_impl -C/tag/-/_TidyBuffer -C/func/-/_traceattr -C/func/-/_traceattr2 -C/func/-/_tracechar -C/func/-/_tracechtype -C/func/-/_tracechtype2 -C/func/-/_tracedump -C/func/-/_tracef -C/func/-/_tracemouse -C++/data/IOBlockStorageDriver/_writeProtected -C/tag/-/_xmlParserCtxt -C/tag/-/_xmlSAXLocator -C/tag/-/_xmlSchema -C/tag/-/_xmlSchemaFacet -C/tag/-/_xmlSchemaType -C/tag/-/_xmlXPathContext -C/tag/-/_xmlXPathParserContext -C/tag/-/_xsltElemPreComp -JavaScript/data/SVGMatrix/a -JavaScript/data/WebKitCSSMatrix/a -C/func/-/a64l -C/tdef/-/ABActionCallbacks -C/tdef/-/ABActionCopyTitleCallback -Objective-C/cat/-/ABActionDelegate -C/tdef/-/ABActionEnabledCallback -C/tdef/-/ABActionGetPropertyCallback -C/tdef/-/ABActionSelectedCallback -C/func/-/ABAddPropertiesAndTypes -C/func/-/ABAddRecord -Objective-C/cl/-/ABAddressBook -C/tdef/-/ABAddressBookRef -C/func/-/ABBeginLoadingImageDataForClient -JavaScript/data/HTMLTableCellElement/abbr -Objective-C/instm/NSTimeZone/abbreviation -Objective-C/clm/NSTimeZone/abbreviationDictionary -Objective-C/instm/NSTimeZone/abbreviationForDate: -C/func/-/ABCancelLoadingImageDataForTag -C/func/-/ABCopyArrayOfAllGroups -C/func/-/ABCopyArrayOfAllPeople -C/func/-/ABCopyArrayOfMatchingRecords -C/func/-/ABCopyArrayOfPropertiesForRecordType -C/func/-/ABCopyDefaultCountryCode -C/func/-/ABCopyLocalizedPropertyOrLabel -C/func/-/ABCopyRecordForUniqueId -C/func/-/ABCopyRecordTypeFromUniqueId -C/func/-/ABCreateFormattedAddressFromDictionary -C/func/-/ABGetMe -C/func/-/ABGetSharedAddressBook -Objective-C/cl/-/ABGroup -C/func/-/ABGroupAddGroup -C/func/-/ABGroupAddMember -C/func/-/ABGroupCopyArrayOfAllMembers -C/func/-/ABGroupCopyArrayOfAllSubgroups -C/func/-/ABGroupCopyDistributionIdentifier -C/func/-/ABGroupCopyParentGroups -C/func/-/ABGroupCreate -C/func/-/ABGroupCreateSearchElement -C/tdef/-/ABGroupRef -C/func/-/ABGroupRemoveGroup -C/func/-/ABGroupRemoveMember -C/func/-/ABGroupSetDistributionIdentifier -C/func/-/ABHasUnsavedChanges -Objective-C/cl/-/ABIdentityPicker -Objective-C/intf/-/ABImageClient -C/tdef/-/ABImageClientCallback -C/func/-/ABLocalizedPropertyOrLabel -C/econst/-/ABMultipleValueSelection -Objective-C/cl/-/ABMultiValue -C/func/-/ABMultiValueAdd -C/func/-/ABMultiValueCopyIdentifierAtIndex -C/func/-/ABMultiValueCopyLabelAtIndex -C/func/-/ABMultiValueCopyPrimaryIdentifier -C/func/-/ABMultiValueCopyValueAtIndex -C/func/-/ABMultiValueCount -C/func/-/ABMultiValueCreate -C/func/-/ABMultiValueCreateCopy -C/func/-/ABMultiValueCreateMutable -C/func/-/ABMultiValueCreateMutableCopy -C/func/-/ABMultiValueIndexForIdentifier -C/func/-/ABMultiValueInsert -C/func/-/ABMultiValuePropertyType -C/tdef/-/ABMultiValueRef -C/func/-/ABMultiValueRemove -C/func/-/ABMultiValueReplaceLabel -C/func/-/ABMultiValueReplaceValue -C/func/-/ABMultiValueSetPrimaryIdentifier -Objective-C/cl/-/ABMutableMultiValue -C/tdef/-/ABMutableMultiValueRef -C/econst/-/ABNoValueSelection -Objective-C/instm/DRBurn/abort -C/func/-/abort -C++/instm/IOUSBPipe/Abort -JavaScript/instm/IDBRequest/abort -JavaScript/instm/FileReader/abort -JavaScript/instm/XMLHttpRequest/abort -JavaScript/clconst/DOMCoreException/ABORT_ERR -JavaScript/clconst/FileError/ABORT_ERR -JavaScript/clconst/XMLHttpRequestException/ABORT_ERR -C++/instm/IOSCSIProtocolInterface/AbortCommand -Objective-C/instm/NSControl/abortEditing -Objective-C/instm/NSApplication/abortModal -Objective-C/instm/NSXMLParser/abortParsing -C++/instm/IOUSBController/AbortPipe -C++/instm/IOFireWireSerialBusProtocolTransport/AbortSCSICommand -C++/instm/IOSCSIProtocolInterface/AbortTask -C++/instm/IOSCSIProtocolInterface/AbortTaskSet -C/data/-/ABPeoplePickerDisplayedPropertyDidChangeNotification -C/data/-/ABPeoplePickerGroupSelectionDidChangeNotification -C/data/-/ABPeoplePickerNameSelectionDidChangeNotification -C/tdef/-/ABPeoplePickerSelectionBehavior -C/data/-/ABPeoplePickerValueSelectionDidChangeNotification -Objective-C/cl/-/ABPeoplePickerView -Objective-C/cl/-/ABPerson -C/func/-/ABPersonCopyImageData -C/func/-/ABPersonCopyParentGroups -C/func/-/ABPersonCopyVCardRepresentation -C/func/-/ABPersonCreate -C/func/-/ABPersonCreateSearchElement -C/func/-/ABPersonCreateWithVCardRepresentation -C/tdef/-/ABPersonRef -C/func/-/ABPersonSetImageData -C/func/-/ABPickerAddProperty -C/tdef/-/ABPickerAttributes -C/func/-/ABPickerChangeAttributes -C/func/-/ABPickerClearSearchField -C/func/-/ABPickerCopyColumnTitle -C/func/-/ABPickerCopyDisplayedProperty -C/func/-/ABPickerCopyProperties -C/func/-/ABPickerCopySelectedGroups -C/func/-/ABPickerCopySelectedIdentifiers -C/func/-/ABPickerCopySelectedRecords -C/func/-/ABPickerCopySelectedValues -C/func/-/ABPickerCreate -C/func/-/ABPickerDeselectAll -C/func/-/ABPickerDeselectGroup -C/func/-/ABPickerDeselectIdentifier -C/func/-/ABPickerDeselectRecord -C/func/-/ABPickerEditInAddressBook -C/func/-/ABPickerGetAttributes -C/func/-/ABPickerGetDelegate -C/func/-/ABPickerGetFrame -C/func/-/ABPickerIsVisible -C/tdef/-/ABPickerRef -C/func/-/ABPickerRemoveProperty -C/func/-/ABPickerSelectGroup -C/func/-/ABPickerSelectIdentifier -C/func/-/ABPickerSelectInAddressBook -C/func/-/ABPickerSelectRecord -C/func/-/ABPickerSetColumnTitle -C/func/-/ABPickerSetDelegate -C/func/-/ABPickerSetDisplayedProperty -C/func/-/ABPickerSetFrame -C/func/-/ABPickerSetVisibility -C/tdef/-/ABPropertyType -Objective-C/cl/-/ABRecord -C/func/-/ABRecordCopyRecordType -C/func/-/ABRecordCopyUniqueId -C/func/-/ABRecordCopyValue -C/func/-/ABRecordCreateCopy -C/func/-/ABRecordIsReadOnly -C/tdef/-/ABRecordRef -C/func/-/ABRecordRemoveValue -C/func/-/ABRecordSetValue -C/func/-/ABRemoveProperties -C/func/-/ABRemoveRecord -C/func/-/abs -C/func/-/ABSave -C/tdef/-/ABSearchComparison -C/tdef/-/ABSearchConjunction -Objective-C/cl/-/ABSearchElement -C/func/-/ABSearchElementCreateWithConjunction -C/func/-/ABSearchElementMatchesRecord -C/tdef/-/ABSearchElementRef -C/func/-/ABSetMe -C/econst/-/ABSingleValueSelection -Objective-C/instm/NSWorkspace/absolutePathForAppBundleWithIdentifier: -Objective-C/instm/NSURL/absoluteString -Objective-C/instm/CalAlarm/absoluteTrigger -Objective-C/instp/CalAlarm/absoluteTrigger -Objective-C/instm/NSURL/absoluteURL -Objective-C/instm/NSEvent/absoluteX -Objective-C/instm/NSEvent/absoluteY -Objective-C/instm/NSEvent/absoluteZ -C++/data/IOTimerEventSource/abstime -JavaScript/cl/-/AbstractView -JavaScript/cl/-/AbstractWorker -C/func/-/ABTypeOfProperty -C/func/-/accept -JavaScript/data/HTMLInputElement/accept -Objective-C/instm/NSTextView/acceptableDragTypes -JavaScript/data/HTMLFormElement/acceptCharset -Objective-C/instm/NSFileHandle/acceptConnectionInBackgroundAndNotify -Objective-C/instm/NSFileHandle/acceptConnectionInBackgroundAndNotifyForModes: -Objective-C/instm/NSRunLoop/acceptInputForMode:beforeDate: -C++/instm/IOBlockStorageDriver/acceptNewMedia -JavaScript/instm/NodeFilter/acceptNode -Objective-C/instm/NSBrowser/acceptsArrowKeys -Objective-C/instm/NSPrinter/acceptsBinary -Objective-C/instm/NSSlider/acceptsFirstMouse: -Objective-C/instm/NSMatrix/acceptsFirstMouse: -Objective-C/instm/NSView/acceptsFirstMouse: -Objective-C/instm/NSTextField/acceptsFirstResponder -Objective-C/instm/NSResponder/acceptsFirstResponder -Objective-C/instm/NSCell/acceptsFirstResponder -Objective-C/instm/NSTextInputContext/acceptsGlyphInfo -Objective-C/instp/NSTextInputContext/acceptsGlyphInfo -Objective-C/instm/NSTextView/acceptsGlyphInfo -Objective-C/instm/NSWindow/acceptsMouseMovedEvents -Objective-C/intfm/QLPreviewPanelController/acceptsPreviewPanelControl: -Objective-C/instm/NSView/acceptsTouchEvents -C/func/-/access -Objective-C/instm/NSObject/accessibilityActionDescription: -Objective-C/instm/NSObject/accessibilityActionNames -Objective-C/instm/NSObject/accessibilityArrayAttributeCount: -Objective-C/instm/NSObject/accessibilityArrayAttributeValues:index:maxCount: -Objective-C/instm/NSObject/accessibilityAttributeNames -Objective-C/instm/NSObject/accessibilityAttributeValue: -Objective-C/instm/NSObject/accessibilityAttributeValue:forParameter: -Objective-C/instm/NSImage/accessibilityDescription -Objective-C/instm/NSObject/accessibilityFocusedUIElement -Objective-C/instm/NSObject/accessibilityHitTest: -Objective-C/instm/NSObject/accessibilityIndexOfChild: -Objective-C/instm/NSObject/accessibilityIsAttributeSettable: -Objective-C/instm/NSObject/accessibilityIsIgnored -Objective-C/instm/NSObject/accessibilityParameterizedAttributeNames -Objective-C/instm/NSObject/accessibilityPerformAction: -Objective-C/instm/NSObject/accessibilitySetOverrideValue:forAttribute: -Objective-C/instm/NSObject/accessibilitySetValue:forAttribute: -Objective-C/clm/NSObject/accessInstanceVariablesDirectly -JavaScript/data/HTMLLabelElement/accessKey -JavaScript/data/HTMLLegendElement/accessKey -JavaScript/data/HTMLInputElement/accessKey -JavaScript/data/HTMLTextAreaElement/accessKey -JavaScript/data/HTMLButtonElement/accessKey -JavaScript/data/HTMLAreaElement/accessKey -JavaScript/data/HTMLAnchorElement/accessKey -Objective-C/instm/NSPageLayout/accessoryControllers -Objective-C/instm/NSPrintPanel/accessoryControllers -Objective-C/instm/NSRulerView/accessoryView -Objective-C/instm/NSPageLayout/accessoryView -Objective-C/instm/NSColorPanel/accessoryView -Objective-C/instm/NSPrintOperation/accessoryView -Objective-C/instm/NSSavePanel/accessoryView -Objective-C/instm/NSAlert/accessoryView -Objective-C/instm/NSSpellChecker/accessoryView -Objective-C/instm/NSPrintPanel/accessoryView -Objective-C/instm/NSFontPanel/accessoryView -Objective-C/instp/ABPeoplePickerView/accessoryView -Objective-C/instm/ABPeoplePickerView/accessoryView -C/tdef/-/AccessParam -C/func/-/acct -JavaScript/data/Coordinates/accuracy -C++/instm/IOService/acknowledgePowerChange -C++/instm/IOService/acknowledgeSetPowerState -C/func/-/acl -C/func/-/acl_add_flag_np -C/func/-/acl_add_perm -C/func/-/acl_clear_flags_np -C/func/-/acl_clear_perms -C/func/-/acl_copy_entry -C/func/-/acl_create_entry -C/func/-/acl_create_entry_np -C/func/-/acl_delete_entry -C/func/-/acl_delete_flag_np -C/func/-/acl_delete_perm -C/func/-/acl_dup -C/func/-/acl_free -C/func/-/acl_from_text -C/func/-/acl_get -C/func/-/acl_get_entry -C/func/-/acl_get_fd -C/func/-/acl_get_fd_np -C/func/-/acl_get_file -C/func/-/acl_get_flagset_np -C/func/-/acl_get_link_np -C/func/-/acl_get_perm_np -C/func/-/acl_get_permset -C/func/-/acl_get_qualifier -C/func/-/acl_get_tag_type -C/func/-/acl_init -C/func/-/acl_set -C/func/-/acl_set_fd -C/func/-/acl_set_fd_np -C/func/-/acl_set_file -C/func/-/acl_set_flagset_np -C/func/-/acl_set_link_np -C/func/-/acl_set_permset -C/func/-/acl_set_qualifier -C/func/-/acl_set_tag_type -C/func/-/acl_to_text -C/func/-/acl_valid -C/func/-/acl_valid_fd_np -C/func/-/acl_valid_file_np -C/func/-/acl_valid_link_np -C/func/-/acos -C/func/-/acosf -C/func/-/acosh -C/func/-/acoshf -C/func/-/acoshl -C/func/-/acosl -C++/instm/IOUSBController/AcquireDeviceZero -Objective-C/instm/DRDevice/acquireExclusiveAccess -Objective-C/instp/NSPointerFunctions/acquireFunction -Objective-C/instm/NSPointerFunctions/acquireFunction -Objective-C/instm/DRDevice/acquireMediaReservation -Objective-C/instm/NSToolbarItem/action -Objective-C/intfm/NSValidatedUserInterfaceItem/action -Objective-C/instm/NSActionCell/action -Objective-C/instm/NSStatusItem/action -Objective-C/instm/NSFontManager/action -Objective-C/instm/PDFOutline/action -Objective-C/instm/CalAlarm/action -Objective-C/instp/CalAlarm/action -Objective-C/instm/IMAVControl/action -Objective-C/instm/NSMenuItem/action -Objective-C/instm/NSControl/action -Objective-C/instm/XGActionMonitor/action -C++/tdef/IONetworkController/Action -C++/tdef/IONetworkData/Action -C++/data/IOEventSource/action -C++/tdef/IOEventSource/Action -C++/tdef/IOCommandGate/Action -C++/tdef/IOInterruptEventSource/Action -C++/tdef/IORegistryEntry/Action -C++/tdef/IOTimerEventSource/Action -C++/tdef/IOWorkLoop/Action -Objective-C/instm/NSCell/action -JavaScript/data/HTMLFormElement/action -Objective-C/instm/XGActionMonitor/actionDidFail -Objective-C/instm/XGActionMonitor/actionDidSucceed -Objective-C/instm/NSTypesetter/actionForControlCharacterAtIndex: -Objective-C/instm/CALayer/actionForKey: -Objective-C/instm/NSObject/actionForLayer:forKey: -Objective-C/instm/XGResource/actionMonitors -Objective-C/clm/XGActionMonitor/actionMonitorWithResource:action: -Objective-C/clm/XGActionMonitor/actionMonitorWithResource:action:parameters: -Objective-C/instm/NSObject/actionProperty -Objective-C/instm/AMWorkflow/actions -Objective-C/instp/CALayer/actions -Objective-C/instm/CALayer/actions -C/tdef/-/ActionsProc -C/tdef/-/ActionsUPP -Objective-C/instm/SBApplication/activate -Objective-C/instm/NSTextInputContext/activate -C++/instm/IOFWAddressSpace/activate -Objective-C/instm/NSColorWell/activate: -C++/instm/IOAudioDevice/activateAudioEngine -JavaScript/instm/InspectorBackend/activateBreakpoints -Objective-C/instm/NSApplication/activateContextHelpMode: -Objective-C/instm/AMAction/activated -Objective-C/instm/NSWorkspace/activateFileViewerSelectingURLs: -Objective-C/instm/NSApplication/activateIgnoringOtherApps: -Objective-C/intfm/IMKStateSetting/activateServer: -Objective-C/instm/NSRunningApplication/activateWithOptions: -Objective-C/instp/NSRunningApplication/activationPolicy -Objective-C/instm/NSRunningApplication/activationPolicy -Objective-C/instm/NSApplication/activationPolicy -Objective-C/instp/NSRunningApplication/active -JavaScript/clconst/WebGLRenderingContext/ACTIVE_ATTRIBUTE_MAX_LENGTH -JavaScript/clconst/WebGLRenderingContext/ACTIVE_ATTRIBUTES -JavaScript/clconst/WebGLRenderingContext/ACTIVE_TEXTURE -JavaScript/clconst/WebGLRenderingContext/ACTIVE_UNIFORM_MAX_LENGTH -JavaScript/clconst/WebGLRenderingContext/ACTIVE_UNIFORMS -Objective-C/instm/NSWorkspace/activeApplication -Objective-C/instm/XGJob/activeCPUPower -JavaScript/data/HTMLDocument/activeElement -Objective-C/instm/NSProcessInfo/activeProcessorCount -JavaScript/instm/WebGLRenderingContext/activeTexture -C++/instm/IOService/activityTickle -JavaScript/instm/DataGridColumnList/add -JavaScript/instm/HTMLOptionsCollection/add -JavaScript/instm/HTMLSelectElement/add -Objective-C/instm/NSTreeController/add: -Objective-C/instm/NSObjectController/add: -Objective-C/instm/NSArrayController/add: -Objective-C/instm/QTMovieView/add: -C/func/-/add_mibdir -C/func/-/add_module_replacement -C/func/-/add_wch -C/func/-/add_wchnstr -C/func/-/add_wchstr -Objective-C/instm/NSPageLayout/addAccessoryController: -Objective-C/instm/NSPrintPanel/addAccessoryController: -Objective-C/instm/AMWorkflow/addAction: -Objective-C/instm/CalCalendarItem/addAlarm: -Objective-C/instm/CalCalendarItem/addAlarms: -Objective-C/instm/IOBluetoothServiceBrowserController/addAllowedUUID: -Objective-C/instm/IOBluetoothDeviceSelectorController/addAllowedUUID: -Objective-C/instm/IOBluetoothPairingController/addAllowedUUID: -Objective-C/instm/IOBluetoothDeviceSelectorController/addAllowedUUIDArray: -Objective-C/instm/IOBluetoothPairingController/addAllowedUUIDArray: -Objective-C/instm/IOBluetoothServiceBrowserController/addAllowedUUIDArray: -Objective-C/intfm/FxParameterCreationAPI/addAngleSliderWithName:parmId:defaultValue:parameterMin:parameterMax:parmFlags: -Objective-C/instm/CALayer/addAnimation:forKey: -Objective-C/instm/PDFPage/addAnnotation: -Objective-C/instm/NSXMLElement/addAttribute: -Objective-C/instm/NSMutableAttributedString/addAttribute:value:range: -Objective-C/instm/NSMutableAttributedString/addAttributes:range: -C++/instm/IOAudioPort/addAudioControl -C++/instm/IOAudioEngine/addAudioStream -Objective-C/instm/PDFAnnotationInk/addBezierPath: -C++/instm/IOStream/addBuffer -C++/instm/IOStream/addBuffers -Objective-C/instm/NSAlert/addButtonWithTitle: -Objective-C/instm/NSAtomicStore/addCacheNodes: -C/func/-/addch -Objective-C/instm/QTMovie/addChapters:withAttributes:error: -C++/instm/OSSerialize/addChar -Objective-C/instm/NSMutableCharacterSet/addCharactersInRange: -Objective-C/instm/NSMutableCharacterSet/addCharactersInString: -Objective-C/instm/NSXMLDocument/addChild: -Objective-C/instm/NSTreeController/addChild: -Objective-C/instm/NSXMLElement/addChild: -Objective-C/instm/NSXMLDTD/addChild: -Objective-C/instm/DRFolder(VirtualFolders)/addChild: -Objective-C/instm/NSWindow/addChildWindow:ordered: -C/func/-/addchnstr -C/func/-/addchstr -Objective-C/instm/NSURLHandle/addClient: -Objective-C/instm/NSBezierPath/addClip -C/func/-/AddClonedTrackToMovie -Objective-C/instm/NSFontManager/addCollection:options: -Objective-C/intfm/FxParameterCreationAPI/addColorParameterWithName:parmId:defaultRed:defaultGreen:defaultBlue:defaultAlpha:parmFlags: -Objective-C/intfm/FxParameterCreationAPI/addColorParameterWithName:parmId:defaultRed:defaultGreen:defaultBlue:parmFlags: -JavaScript/instm/CanvasGradient/addColorStop -Objective-C/instm/NSMatrix/addColumn -Objective-C/instm/NSBrowser/addColumn -Objective-C/instm/NSMatrix/addColumnWithCells: -Objective-C/instm/NSPort/addConnection:toRunLoop:forMode: -Objective-C/instm/CALayer/addConstraint: -Objective-C/instm/IMAVControlBar/addControl: -Objective-C/instm/NSView/addCursorRect:cursor: -Objective-C/intfm/ApertureEditManager/addCustomMetadata:toVersions: -Objective-C/intfm/ApertureExportManager/addCustomMetadataKeyValues:toImageAtIndex: -Objective-C/intfm/FxParameterCreationAPI/addCustomParameterWithName:parmId:defaultValue:parmFlags: -C/func/-/AddDataBrowserItems -C/func/-/AddDataBrowserListViewColumn -Objective-C/instm/NSOperation/addDependency: -Objective-C/instm/NSDocumentController/addDocument: -C++/instm/IOCatalogue/addDrivers -C/func/-/AddEmptyTrackToMovie -Objective-C/instm/NSMutableDictionary/addEntriesFromDictionary: -Objective-C/instm/NSForm/addEntry: -JavaScript/instm/DOMApplicationCache/addEventListener -JavaScript/instm/AbstractWorker/addEventListener -JavaScript/instm/DOMWindow/addEventListener -JavaScript/instm/EventTarget/addEventListener -JavaScript/instm/IDBRequest/addEventListener -JavaScript/instm/EventSource/addEventListener -JavaScript/instm/svg/addEventListener -JavaScript/instm/Notification/addEventListener -JavaScript/instm/MessagePort/addEventListener -JavaScript/instm/core/addEventListener -JavaScript/instm/TestObj/addEventListener -JavaScript/instm/XMLHttpRequest/addEventListener -JavaScript/instm/WorkerContext/addEventListener -JavaScript/instm/WebSocket/addEventListener -JavaScript/instm/XMLHttpRequestUpload/addEventListener -C++/instm/IOWorkLoop/addEventSource -Objective-C/instm/NSBlockOperation/addExecutionBlock: -C++/instm/IOCatalogue/addExtensionsFromArchive -Objective-C/instm/PSClient/addFeed: -Objective-C/instm/PSClient/addFeedWithURL: -C/func/-/AddFilePreview -Objective-C/instm/NSFileWrapper/addFileWithPath: -Objective-C/instm/NSFileWrapper/addFileWrapper: -Objective-C/intfm/FxParameterCreationAPI/addFloatSliderWithName:parmId:defaultValue:parameterMin:parameterMax:sliderMin:sliderMax:delta:parmFlags: -Objective-C/instm/NSFontManager/addFontDescriptors:toCollection: -Objective-C/instm/NSFontManager/addFontTrait: -Objective-C/clm/NSEvent/addGlobalMonitorForEventsMatchingMask:handler: -Objective-C/intfm/FxOptionalParameterCreationAPI/addGradientWithName:parmId:parmFlags: -Objective-C/intfm/ApertureExportManager/addHierarchicalKeywords:toImageAtIndex: -Objective-C/intfm/ApertureEditManager/addHierarchicalKeywords:toVersions: -Objective-C/intfm/FxOptionalParameterCreationAPI/addHistogramWithName:parmId:parmFlags: -Objective-C/instm/QTTrack/addImage:forDuration:withAttributes: -Objective-C/instm/QTMovie/addImage:forDuration:withAttributes: -C/func/-/AddImageDescriptionExtension -Objective-C/intfm/FxParameterCreationAPI/addImageReferenceWithName:parmId:parmFlags: -Objective-C/instm/NSMutableIndexSet/addIndex: -Objective-C/instm/NSMutableIndexSet/addIndexes: -Objective-C/instm/NSMutableIndexSet/addIndexesInRange: -Objective-C/instm/QTCaptureSession/addInput:error: -Objective-C/instm/QCPlugIn/addInputPortWithType:forKey:withAttributes: -Objective-C/intfm/FxParameterCreationAPI/addIntSliderWithName:parmId:defaultValue:parameterMin:parameterMax:sliderMin:sliderMax:delta:parmFlags: -Objective-C/instm/WebBackForwardList/addItem: -Objective-C/instm/NSMenu/addItem: -Objective-C/instm/WebHistory/addItems: -Objective-C/instm/NSComboBox/addItemsWithObjectValues: -Objective-C/instm/NSComboBoxCell/addItemsWithObjectValues: -Objective-C/instm/NSPopUpButton/addItemsWithTitles: -Objective-C/instm/NSPopUpButtonCell/addItemsWithTitles: -Objective-C/instm/NSComboBox/addItemWithObjectValue: -Objective-C/instm/NSComboBoxCell/addItemWithObjectValue: -Objective-C/instm/NSPopUpButtonCell/addItemWithTitle: -Objective-C/instm/NSPopUpButton/addItemWithTitle: -Objective-C/instm/NSMenu/addItemWithTitle:action:keyEquivalent: -JavaScript/clconst/MutationEvent/ADDITION -Objective-C/instp/CAPropertyAnimation/additive -Objective-C/intfm/ApertureExportManager/addKeywords:toImageAtIndex: -Objective-C/instm/NSTextStorage/addLayoutManager: -Objective-C/clm/NSEvent/addLocalMonitorForEventsMatchingMask:handler: -C++/clm/IOService/addLocation -Objective-C/instm/NSRulerView/addMarker: -C++/clm/IOService/addMatchingNotification -C/econst/-/addMax -C/func/-/AddMediaSample -C/func/-/AddMediaSample2 -C/func/-/AddMediaSampleFromEncodedFrame -C/func/-/AddMediaSampleReference -C/func/-/AddMediaSampleReferences -C/func/-/AddMediaSampleReferences64 -C++/clm/IONetworkMedium/addMedium -Objective-C/instm/ABGroup/addMember: -Objective-C/instm/ODRecord/addMemberRecord:error: -C/func/-/AddMovieSelection -Objective-C/instm/NSXMLElement/addNamespace: -C++/instm/IONetworkInterface/addNetworkData -JavaScript/instm/InjectedScriptHost/addNodesToSearchResult -C++/clm/IOService/addNotification -C/func/-/addnstr -C/func/-/addnwstr -Objective-C/instm/NSMutableSet/addObject: -Objective-C/instm/NSHashTable/addObject: -Objective-C/instm/NSObjectController/addObject: -Objective-C/clm/NSAutoreleasePool/addObject: -Objective-C/instm/NSAutoreleasePool/addObject: -Objective-C/instm/NSCountedSet/addObject: -Objective-C/instm/NSArrayController/addObject: -Objective-C/instm/NSMutableArray/addObject: -Objective-C/instm/IBDocument/addObject:toParent: -Objective-C/instm/NSArrayController/addObjects: -Objective-C/instm/NSMutableSet/addObjectsFromArray: -Objective-C/instm/NSMutableArray/addObjectsFromArray: -C++/instm/TestRun/addObserver -Objective-C/instm/NSSet/addObserver:forKeyPath:options:context: -Objective-C/instm/NSObject/addObserver:forKeyPath:options:context: -Objective-C/instm/NSArray/addObserver:forKeyPath:options:context: -Objective-C/instm/NSDistributedNotificationCenter/addObserver:selector:name:object: -Objective-C/instm/DRNotificationCenter/addObserver:selector:name:object: -Objective-C/instm/NSServerNotificationCenter/addObserver:selector:name:object: -Objective-C/instm/NSNotificationCenter/addObserver:selector:name:object: -Objective-C/instm/NSDistributedNotificationCenter/addObserver:selector:name:object:suspensionBehavior: -Objective-C/instm/NSArray/addObserver:toObjectsAtIndexes:forKeyPath:options:context: -Objective-C/instm/NSNotificationCenter/addObserverForName:object:queue:usingBlock: -Objective-C/instm/NSOperationQueue/addOperation: -Objective-C/instm/NSOperationQueue/addOperations:waitUntilFinished: -Objective-C/instm/NSOperationQueue/addOperationWithBlock: -Objective-C/instm/QTCaptureSession/addOutput:error: -Objective-C/instm/QCPlugIn/addOutputPortWithType:forKey:withAttributes: -C/econst/-/addOver -Objective-C/intfm/FxBaseEffect/addParameters -Objective-C/instm/NSPersistentStoreCoordinator/addPersistentStoreWithType:configuration:URL:options:error: -C/econst/-/addPin -Objective-C/instm/NSPointerArray/addPointer: -Objective-C/intfm/FxParameterCreationAPI/addPointParameterWithName:parmId:defaultX:defaultY:parmFlags: -Objective-C/intfm/FxParameterCreationAPI/addPopupMenuWithName:parmId:defaultValue:menuEntries:parmFlags: -Objective-C/instm/NSRunLoop/addPort:forMode: -C++/instm/IOService/addPowerChild -Objective-C/instm/NSAnimation/addProgressMark: -Objective-C/clm/ABGroup/addPropertiesAndTypes: -Objective-C/clm/ABPerson/addPropertiesAndTypes: -Objective-C/instm/ABPeoplePickerView/addProperty: -C/func/-/addr -C/func/-/addr2ascii -JavaScript/instm/DOMSelection/addRange -Objective-C/instm/ABAddressBook/addRecord: -Objective-C/instm/NSFileWrapper/addRegularFileWithContents:preferredFilename: -Objective-C/instm/NSImage/addRepresentation: -Objective-C/instm/NSImage/addRepresentations: -Objective-C/instm/ISyncManager/addRequestMode: -Objective-C/instm/NSConnection/addRequestMode: -C/econst/-/addResFailed -C/func/-/AddResource -Objective-C/instm/CalAttendee/address -Objective-C/instp/CalAttendee/address -Objective-C/instm/NSSocketPort/address -Objective-C/instm/NSHost/address -Objective-C/instm/IOBluetoothHostController/addressAsString -Objective-C/clm/ABAddressBook/addressBook -Objective-C/clm/NSTextCheckingResult/addressCheckingResultWithRange:components: -Objective-C/instm/NSTextCheckingResult/addressComponents -Objective-C/instp/NSTextCheckingResult/addressComponents -Objective-C/instm/NSNetService/addresses -Objective-C/instm/NSHost/addresses -Objective-C/instm/NSMatrix/addRow -Objective-C/instm/NSRuleEditor/addRow: -Objective-C/instm/NSMatrix/addRowWithCells: -JavaScript/instm/CSSStyleSheet/addRule -JavaScript/instm/InspectorBackend/addRule -Objective-C/instm/NSConnection/addRunLoop: -C/func/-/AddSampleTableToMedia -Objective-C/instm/IKSaveOptions/addSaveOptionsAccessoryViewToSavePanel: -Objective-C/instm/QTMovieView/addScaled: -JavaScript/instm/InspectorBackend/addScriptToEvaluateOnLoad -Objective-C/instm/NSArrayController/addSelectedObjects: -Objective-C/instm/PDFSelection/addSelection: -Objective-C/instm/NSArrayController/addSelectionIndexes: -Objective-C/instm/NSTreeController/addSelectionIndexPaths: -Objective-C/instm/PDFSelection/addSelections: -Objective-C/instm/NSSpeechSynthesizer/addSpeechDictionary: -C/func/-/addstr -C++/instm/OSSerialize/addString -Objective-C/intfm/FxParameterCreationAPI_v2/addStringParameterWithName:parmId:defaultValue:parmFlags: -Objective-C/instm/ABGroup/addSubgroup: -Objective-C/instm/CALayer/addSublayer: -Objective-C/instm/WebDataSource/addSubresource: -Objective-C/instm/NSView/addSubview: -Objective-C/instm/NSView/addSubview:positioned:relativeTo: -Objective-C/instm/NSUserDefaults/addSuiteNamed: -Objective-C/instm/NSFileWrapper/addSymbolicLinkWithDestination:preferredFilename: -Objective-C/instm/NSTableView/addTableColumn: -Objective-C/instm/NSMutableParagraphStyle/addTabStop: -Objective-C/instm/NSTabView/addTabViewItem: -Objective-C/instm/NSLayoutManager/addTemporaryAttribute:value:forCharacterRange: -Objective-C/instm/NSLayoutManager/addTemporaryAttributes:forCharacterRange: -C++/instm/TestSuite/addTest -Objective-C/instm/NSLayoutManager/addTextContainer: -Objective-C/instm/NSDate/addTimeInterval: -C++/instm/IOAudioEngine/addTimer -Objective-C/instm/NSRunLoop/addTimer:forMode: -C++/instm/IOAudioDevice/addTimerEvent -C++/instm/IOBlockStorageDriver/addToBytesTransferred -Objective-C/instm/IOBluetoothDevice/addToFavorites -Objective-C/intfm/FxParameterCreationAPI/addToggleButtonWithName:parmId:defaultValue:parmFlags: -Objective-C/instm/NSView/addToolTipRect:owner:userData: -C/func/-/AddToRunLoop -Objective-C/instm/NSView/addTrackingArea: -Objective-C/instm/NSView/addTrackingRect:owner:userData:assumeInside: -C/func/-/AddTrackReference -C++/instm/IOFWAddressSpace/addTrustedNode -Objective-C/instm/NSPasteboard/addTypes:owner: -Objective-C/instm/CARenderer/addUpdateRect: -C++/instm/IOAudioControl/addUserClient -C++/clm/IOAudioControl/addUserClientAction -C++/instm/OSNumber/addValue -Objective-C/instm/NSMutableURLRequest/addValue:forHTTPHeaderField: -Objective-C/instm/ODRecord/addValue:toAttribute:error: -Objective-C/instm/ABMutableMultiValue/addValue:withLabel: -Objective-C/instm/NSDocument/addWindowController: -Objective-C/instm/NSApplication/addWindowsItem:title:filename: -C/func/-/addwstr -C++/instm/OSSerialize/addXMLEndTag -C++/instm/OSSerialize/addXMLStartTag -C/func/-/adjtime -C++/instm/IOService/adjustBusy -Objective-C/instm/NSView/adjustPageHeightNew:top:bottom:limit: -Objective-C/instm/NSView/adjustPageWidthNew:left:right:limit: -Objective-C/instm/NSView/adjustScroll: -Objective-C/instm/NSSplitView/adjustSubviews -C/econst/-/adMax -C/econst/-/adMin -Objective-C/clm/NSColorSpace/adobeRGB1998ColorSpace -JavaScript/instm/Document/adoptNode -Objective-C/instm/NSFont/advancementForGlyph: -Objective-C/instm/NSAppleEventDescriptor/aeDesc -Objective-C/instm/NSScriptSuiteRegistry/aeteResource: -Objective-C/instm/NSFetchRequest/affectedStores -Objective-C/instm/CALayer/affineTransform -Objective-C/instm/NSFont/afmDictionary --/writerid/-/AFP_Catalog_Node_Names --/writerid/-/AFP_Date_And_Time_Format --/writerid/-/AFP_Directory_Access_Controls --/writerid/-/AFP_Reconnect_UAM --/writerid/-/AFP_Reconnecting_Sessions -C/econst/-/afpAccessDenied -C/econst/-/afpAlreadyLoggedInErr -C/econst/-/afpAlreadyMounted -C/tdef/-/AFPAlternateAddress -C/econst/-/afpAuthContinue -C/econst/-/afpBadDirIDType -C/econst/-/afpBadIDErr -C/econst/-/afpBadUAM -C/econst/-/afpBadVersNum -C/econst/-/afpBitmapErr -C/econst/-/afpCallNotAllowed -C/econst/-/afpCallNotSupported -C/econst/-/afpCantMountMoreSrvre -C/econst/-/afpCantMove -C/econst/-/afpCantRename -C/econst/-/afpCatalogChanged -C/econst/-/afpContainsSharedErr -C/econst/-/afpDenyConflict -C/econst/-/afpDiffVolErr -C/econst/-/afpDirNotEmpty -C/econst/-/afpDirNotFound -C/econst/-/afpDiskFull -C/econst/-/afpEofError -C/econst/-/afpFileBusy -C/econst/-/afpFlatVol -C/econst/-/afpIconTypeError -C/econst/-/afpIDExists -C/econst/-/afpIDNotFound -C/econst/-/afpInsideSharedErr -C/econst/-/afpInsideTrashErr -C/econst/-/afpItemNotFound -C/econst/-/afpLockErr -C/econst/-/afpMiscErr -C/econst/-/afpNoMoreLocks -C/econst/-/afpNoServer -C/econst/-/afpObjectExists -C/econst/-/afpObjectLocked -C/econst/-/afpObjectNotFound -C/econst/-/afpObjectTypeErr -C/econst/-/afpParmErr -C/econst/-/afpPwdExpiredErr -C/econst/-/afpPwdNeedsChangeErr -C/econst/-/afpPwdPolicyErr -C/econst/-/afpPwdSameErr -C/econst/-/afpPwdTooShortErr -C/econst/-/afpRangeNotLocked -C/econst/-/afpRangeOverlap -C/econst/-/afpSameNodeErr -C/econst/-/afpSameObjectErr -C/econst/-/afpServerGoingDown -C/econst/-/afpSessClosed -C/tdef/-/AFPTagData -C/econst/-/afpTooManyFilesOpen -C/econst/-/afpUserNotAuth -C/econst/-/afpVolLocked -C/tdef/-/AFPVolMountInfo -C/tdef/-/AFPXVolMountInfo -C/macro/-/AGL_0_BIT -C/macro/-/AGL_10_BIT -C/macro/-/AGL_128_BIT -C/macro/-/AGL_12_BIT -C/macro/-/AGL_16_BIT -C/macro/-/AGL_1_BIT -C/macro/-/AGL_24_BIT -C/macro/-/AGL_2_BIT -C/macro/-/AGL_32_BIT -C/macro/-/AGL_3_BIT -C/macro/-/AGL_48_BIT -C/macro/-/AGL_4_BIT -C/macro/-/AGL_5_BIT -C/macro/-/AGL_64_BIT -C/macro/-/AGL_6_BIT -C/macro/-/AGL_8_BIT -C/macro/-/AGL_96_BIT -C/macro/-/AGL_ACCELERATED -C/macro/-/AGL_ACCUM_ALPHA_SIZE -C/macro/-/AGL_ACCUM_BLUE_SIZE -C/macro/-/AGL_ACCUM_GREEN_SIZE -C/macro/-/AGL_ACCUM_MODES -C/macro/-/AGL_ACCUM_RED_SIZE -C/macro/-/AGL_ALL_RENDERERS -C/macro/-/AGL_ALPHA_SIZE -C/macro/-/AGL_ARGB12121212_BIT -C/macro/-/AGL_ARGB1555_BIT -C/macro/-/AGL_ARGB16161616_BIT -C/macro/-/AGL_ARGB2101010_BIT -C/macro/-/AGL_ARGB4444_BIT -C/macro/-/AGL_ARGB8888_BIT -C/macro/-/AGL_AUX_BUFFERS -C/macro/-/AGL_AUX_DEPTH_STENCIL -C/macro/-/AGL_BACKING_STORE -C/macro/-/AGL_BAD_ALLOC -C/macro/-/AGL_BAD_ATTRIBUTE -C/macro/-/AGL_BAD_CONNECTION -C/macro/-/AGL_BAD_CONTEXT -C/macro/-/AGL_BAD_DRAWABLE -C/macro/-/AGL_BAD_ENUM -C/macro/-/AGL_BAD_FULLSCREEN -C/macro/-/AGL_BAD_GDEV -C/macro/-/AGL_BAD_MATCH -C/macro/-/AGL_BAD_MODULE -C/macro/-/AGL_BAD_OFFSCREEN -C/macro/-/AGL_BAD_PIXELFMT -C/macro/-/AGL_BAD_POINTER -C/macro/-/AGL_BAD_PROPERTY -C/macro/-/AGL_BAD_RENDINFO -C/macro/-/AGL_BAD_STATE -C/macro/-/AGL_BAD_VALUE -C/macro/-/AGL_BAD_WINDOW -C/macro/-/AGL_BGR233_A8_BIT -C/macro/-/AGL_BGR233_BIT -C/macro/-/AGL_BLUE_SIZE -C/macro/-/AGL_BUFFER_MODES -C/macro/-/AGL_BUFFER_NAME -C/macro/-/AGL_BUFFER_RECT -C/macro/-/AGL_BUFFER_SIZE -C/macro/-/AGL_CLEAR_FORMAT_CACHE -C/macro/-/AGL_CLIP_REGION -C/macro/-/AGL_CLOSEST_POLICY -C/macro/-/AGL_COLOR_FLOAT -C/macro/-/AGL_COLOR_MODES -C/macro/-/AGL_COLORMAP_ENTRY -C/macro/-/AGL_COLORMAP_TRACKING -C/macro/-/AGL_COMPLIANT -C/macro/-/AGL_CONTEXT_DISPLAY_ID -C/macro/-/AGL_CONTEXT_SURFACE_ID -C/macro/-/AGL_DEPTH_MODES -C/macro/-/AGL_DEPTH_SIZE -C/macro/-/AGL_DOUBLEBUFFER -C/macro/-/AGL_DOUBLEBUFFER_BIT -C/macro/-/AGL_ENABLE_SURFACE_BACKING_SIZE -C/macro/-/AGL_FORMAT_CACHE_SIZE -C/macro/-/AGL_FS_CAPTURE_SINGLE -C/macro/-/AGL_FULLSCREEN -C/macro/-/AGL_GREEN_SIZE -C/macro/-/AGL_INDEX16_BIT -C/macro/-/AGL_INDEX8_BIT -C/macro/-/AGL_LEVEL -C/macro/-/AGL_MAX_AUX_BUFFERS -C/macro/-/AGL_MAX_LEVEL -C/macro/-/AGL_MAXIMUM_POLICY -C/macro/-/AGL_MIN_LEVEL -C/macro/-/AGL_MINIMUM_POLICY -C/macro/-/AGL_MONOSCOPIC_BIT -C/macro/-/AGL_MP_SAFE -C/macro/-/AGL_MULTISAMPLE -C/macro/-/AGL_MULTISCREEN -C/macro/-/AGL_NO_ERROR -C/macro/-/AGL_NO_RECOVERY -C/macro/-/AGL_NONE -C/macro/-/AGL_OFFSCREEN -C/macro/-/AGL_ORDER_CONTEXT_TO_FRONT -C/macro/-/AGL_PBUFFER -C/macro/-/AGL_PIXEL_SIZE -C/macro/-/AGL_RASTERIZATION -C/macro/-/AGL_RED_SIZE -C/macro/-/AGL_REMOTE_PBUFFER -C/macro/-/AGL_RENDERER_APPLE_SW_ID -C/macro/-/AGL_RENDERER_ATI_RADEON_8500_ID -C/macro/-/AGL_RENDERER_ATI_RADEON_9700_ID -C/macro/-/AGL_RENDERER_ATI_RADEON_ID -C/macro/-/AGL_RENDERER_ATI_RADEON_X1000_ID -C/macro/-/AGL_RENDERER_ATI_RAGE_128_ID -C/macro/-/AGL_RENDERER_ATI_RAGE_PRO_ID -C/macro/-/AGL_RENDERER_COUNT -C/macro/-/AGL_RENDERER_GENERIC_FLOAT_ID -C/macro/-/AGL_RENDERER_GENERIC_ID -C/macro/-/AGL_RENDERER_ID -C/macro/-/AGL_RENDERER_INTEL_900_ID -C/macro/-/AGL_RENDERER_MESA_3DFX_ID -C/macro/-/AGL_RENDERER_NVIDIA_GEFORCE_2MX_ID -C/macro/-/AGL_RENDERER_NVIDIA_GEFORCE_3_ID -C/macro/-/AGL_RENDERER_NVIDIA_GEFORCE_FX_ID -C/macro/-/AGL_RENDERER_VT_BLADE_XP2_ID -C/macro/-/AGL_RETAIN_RENDERERS -C/macro/-/AGL_RGB101010_A8_BIT -C/macro/-/AGL_RGB101010_BIT -C/macro/-/AGL_RGB121212_BIT -C/macro/-/AGL_RGB161616_BIT -C/macro/-/AGL_RGB332_A8_BIT -C/macro/-/AGL_RGB332_BIT -C/macro/-/AGL_RGB444_A8_BIT -C/macro/-/AGL_RGB444_BIT -C/macro/-/AGL_RGB555_A8_BIT -C/macro/-/AGL_RGB555_BIT -C/macro/-/AGL_RGB565_A8_BIT -C/macro/-/AGL_RGB565_BIT -C/macro/-/AGL_RGB888_A8_BIT -C/macro/-/AGL_RGB888_BIT -C/macro/-/AGL_RGB8_A8_BIT -C/macro/-/AGL_RGB8_BIT -C/macro/-/AGL_RGBA -C/macro/-/AGL_RGBAFLOAT128_BIT -C/macro/-/AGL_RGBAFLOAT256_BIT -C/macro/-/AGL_RGBAFLOAT64_BIT -C/macro/-/AGL_RGBFLOAT128_BIT -C/macro/-/AGL_RGBFLOAT256_BIT -C/macro/-/AGL_RGBFLOAT64_BIT -C/macro/-/AGL_ROBUST -C/macro/-/AGL_SAMPLE_ALPHA -C/macro/-/AGL_SAMPLE_BUFFERS_ARB -C/macro/-/AGL_SAMPLES_ARB -C/macro/-/AGL_SINGLE_RENDERER -C/macro/-/AGL_SINGLEBUFFER_BIT -C/macro/-/AGL_STATE_VALIDATION -C/macro/-/AGL_STENCIL_MODES -C/macro/-/AGL_STENCIL_SIZE -C/macro/-/AGL_STEREO -C/macro/-/AGL_STEREOSCOPIC_BIT -C/macro/-/AGL_SUPERSAMPLE -C/macro/-/AGL_SURFACE_BACKING_SIZE -C/macro/-/AGL_SURFACE_OPACITY -C/macro/-/AGL_SURFACE_ORDER -C/macro/-/AGL_SURFACE_VOLATILE -C/macro/-/AGL_SWAP_INTERVAL -C/macro/-/AGL_SWAP_LIMIT -C/macro/-/AGL_SWAP_RECT -C/macro/-/AGL_TEXTURE_MEMORY -C/macro/-/AGL_VIDEO_MEMORY -C/macro/-/AGL_VIRTUAL_SCREEN -C/macro/-/AGL_WINDOW -C/func/-/aglChoosePixelFormat -C/func/-/aglConfigure -C/tdef/-/AGLContext -C/func/-/aglCopyContext -C/func/-/aglCreateContext -C/func/-/aglCreatePBuffer -C/func/-/aglCreatePixelFormat -C/func/-/aglDescribePBuffer -C/func/-/aglDescribePixelFormat -C/func/-/aglDescribeRenderer -C/func/-/aglDestroyContext -C/func/-/aglDestroyPBuffer -C/func/-/aglDestroyPixelFormat -C/func/-/aglDestroyRendererInfo -C/tdef/-/AGLDevice -C/func/-/aglDevicesOfPixelFormat -C/func/-/aglDisable -C/func/-/aglDisplaysOfPixelFormat -C/tdef/-/AGLDrawable -C/func/-/aglEnable -C/func/-/aglErrorString -C/func/-/aglGetCGLContext -C/func/-/aglGetCGLPixelFormat -C/func/-/aglGetCurrentContext -C/func/-/aglGetDrawable -C/func/-/aglGetError -C/func/-/aglGetHIViewRef -C/func/-/aglGetInteger -C/func/-/aglGetPBuffer -C/func/-/aglGetVersion -C/func/-/aglGetVirtualScreen -C/func/-/aglGetWindowRef -C/func/-/aglIsEnabled -C/func/-/aglNextPixelFormat -C/func/-/aglNextRendererInfo -C/tdef/-/AGLPbuffer -C/tdef/-/AGLPixelFormat -C/func/-/aglQueryRendererInfo -C/func/-/aglQueryRendererInfoForCGDirectDisplayIDs -C/tdef/-/AGLRendererInfo -C/func/-/aglResetLibrary -C/func/-/aglSetCurrentContext -C/func/-/aglSetDrawable -C/func/-/aglSetFullScreen -C/func/-/aglSetHIViewRef -C/func/-/aglSetInteger -C/func/-/aglSetOffScreen -C/func/-/aglSetPBuffer -C/func/-/aglSetVirtualScreen -C/func/-/aglSetWindowRef -C/func/-/aglSurfaceTexture -C/func/-/aglSwapBuffers -C/func/-/aglTexImagePBuffer -C/func/-/aglUpdateContext -C/func/-/aglUseFont -C/func/-/AHGotoMainTOC -C/func/-/AHGotoPage -C/func/-/AHLookupAnchor -C/func/-/AHRegisterHelpBook -C/func/-/AHSearch -C/tdef/-/AHTOCType -C/func/-/aio_cancel -C/func/-/aio_error -C/func/-/aio_read -C/func/-/aio_return -C/func/-/aio_suspend -C/func/-/aio_write -Objective-C/clm/CalAlarm/alarm -C/func/-/alarm -Objective-C/instm/CalCalendarItem/alarms -Objective-C/instp/CalCalendarItem/alarms -JavaScript/instm/DOMWindow/alert -Objective-C/intfm/NSAlertDelegate/alertShowHelp: -Objective-C/instm/NSAlert/alertStyle -Objective-C/clm/NSAlert/alertWithError: -Objective-C/clm/NSAlert/alertWithMessageText:defaultButton:alternateButton:otherButton:informativeTextWithFormat: -JavaScript/clconst/WebGLRenderingContext/ALIASED_LINE_WIDTH_RANGE -JavaScript/clconst/WebGLRenderingContext/ALIASED_POINT_SIZE_RANGE -Objective-C/instm/CBIdentity/aliases -C/tdef/-/AliasFilterProcPtr -C/tdef/-/AliasFilterUPP -C/tdef/-/AliasHandle -C/tdef/-/AliasInfoType -C/tdef/-/AliasPtr -C/tdef/-/AliasRecord -JavaScript/data/HTMLDivElement/align -JavaScript/data/HTMLParagraphElement/align -JavaScript/data/HTMLHRElement/align -JavaScript/data/HTMLIFrameElement/align -JavaScript/data/HTMLLegendElement/align -JavaScript/data/HTMLHeadingElement/align -JavaScript/data/HTMLTableCellElement/align -JavaScript/data/HTMLEmbedElement/align -JavaScript/data/HTMLObjectElement/align -JavaScript/data/HTMLTableColElement/align -JavaScript/data/HTMLTableRowElement/align -JavaScript/data/HTMLTableSectionElement/align -JavaScript/data/HTMLInputElement/align -JavaScript/data/HTMLTableCaptionElement/align -JavaScript/data/HTMLTableElement/align -JavaScript/data/HTMLImageElement/align -JavaScript/data/HTMLAppletElement/align -JavaScript/data/SVGPreserveAspectRatio/align -Objective-C/instm/WebView/alignCenter: -Objective-C/instm/NSText/alignCenter: -Objective-C/instm/NSTextView/alignJustified: -Objective-C/instm/WebView/alignJustified: -Objective-C/instm/WebView/alignLeft: -Objective-C/instm/NSText/alignLeft: -C++/data/IOMemoryCursor/alignMask -Objective-C/instm/NSTextTab/alignment -Objective-C/instm/PDFAnnotationFreeText/alignment -Objective-C/instm/PDFAnnotationTextWidget/alignment -Objective-C/instm/NSControl/alignment -Objective-C/instm/NSParagraphStyle/alignment -Objective-C/binding/NSComboBox/alignment -Objective-C/instm/NSCell/alignment -Objective-C/binding/NSSecureTextField/alignment -Objective-C/binding/NSSearchField/alignment -Objective-C/binding/NSTextField/alignment -Objective-C/binding/NSTokenField/alignment -Objective-C/instm/NSText/alignment -Objective-C/instm/CATextLayer/alignmentMode -Objective-C/instp/CATextLayer/alignmentMode -Objective-C/instm/NSImage/alignmentRect -Objective-C/instm/WebView/alignRight: -Objective-C/instm/NSText/alignRight: -C/func/-/AlignScreenRect -C/func/-/AlignWindow -JavaScript/data/HTMLBodyElement/aLink -JavaScript/data/HTMLDocument/alinkColor -JavaScript/data/HTMLDocument/all -Objective-C/clm/NSBundle/allBundles -Objective-C/clm/PSClient/allClientBundleIdentifiers -Objective-C/instm/QCCompositionRepository/allCompositions -Objective-C/clm/NSConnection/allConnections -Objective-C/instm/NSURLCredentialStorage/allCredentials -Objective-C/clm/NSBundle/allFrameworks -Objective-C/instm/NSHTTPURLResponse/allHeaderFields -Objective-C/instm/NSURLRequest/allHTTPHeaderFields -Objective-C/instm/NSColorList/allKeys -Objective-C/instm/NSDictionary/allKeys -Objective-C/instm/NSDictionary/allKeysForObject: -Objective-C/instm/NSOrthography/allLanguages -Objective-C/instp/NSOrthography/allLanguages -Objective-C/instm/NSHashTable/allObjects -Objective-C/instm/NSEnumerator/allObjects -Objective-C/instm/NSPointerArray/allObjects -Objective-C/instm/NSSet/allObjects -Objective-C/clm/NSProxy/alloc -Objective-C/clm/NSObject/alloc -C++/instm/OSMetaClass/alloc -C/func/-/alloca -C/func/-/Allocate -C++/instm/IORangeAllocator/allocate -C++/clm/IOATABusCommand/allocateCmd -C++/instm/IOBlockStorageDriver/allocateContext -Objective-C/instm/NSView/allocateGState -C++/instm/IOFireWirePCRSpace/allocateInputPlug -C++/instm/IOFireWirePCRSpace/allocateOutputPlug -C++/instm/IONetworkController/allocatePacket -C++/instm/IOFireWireSBP2ORB/allocatePageTable -C++/instm/IORangeAllocator/allocateRange -C++/instm/IOFireWireSerialBusProtocolTransport/AllocateResources -C++/clm/OSMetaClass/allocClassWithName -C++/instm/ATADeviceNub/allocCommand -C++/instm/IOATADevice/allocCommand -C/func/-/AllocContig -Objective-C/clm/NSProxy/allocWithZone: -Objective-C/clm/NSObject/allocWithZone: -Objective-C/clm/NSPort/allocWithZone: -Objective-C/instm/NSSavePanel/allowedFileTypes -Objective-C/instm/NSTextInputContext/allowedInputSourceLocales -Objective-C/instp/NSTextInputContext/allowedInputSourceLocales -Objective-C/instm/NSTextView/allowedInputSourceLocales -Objective-C/instm/NSTextFieldCell/allowedInputSourceLocales -Objective-C/instm/NSPathCell/allowedTypes -Objective-C/instm/WebPreferences/allowsAnimatedImageLooping -Objective-C/instm/WebPreferences/allowsAnimatedImages -Objective-C/instm/NSBrowser/allowsBranchSelection -Objective-C/instm/NSTableView/allowsColumnReordering -Objective-C/instm/NSTableView/allowsColumnResizing -Objective-C/instm/NSTableView/allowsColumnSelection -Objective-C/instm/NSWindow/allowsConcurrentViewDrawing -Objective-C/instm/NSMenu/allowsContextMenuPlugIns -Objective-C/instm/PDFDocument/allowsCopying -Objective-C/instm/NSImageView/allowsCutCopyPaste -Objective-C/instm/NSTextView/allowsDocumentBackgroundColorChange -Objective-C/instm/PDFThumbnailView/allowsDragging -Objective-C/instm/PDFView/allowsDragging -Objective-C/instm/IKImageBrowserView/allowsDroppingOnItems -Objective-C/instm/NSToolbarItem/allowsDuplicatesInToolbar -Objective-C/instm/NSTextField/allowsEditingTextAttributes -Objective-C/instm/NSCell/allowsEditingTextAttributes -Objective-C/instm/QCCompositionPickerView/allowsEmptySelection -Objective-C/instm/NSMatrix/allowsEmptySelection -Objective-C/instm/NSBrowser/allowsEmptySelection -Objective-C/instm/IKImageBrowserView/allowsEmptySelection -Objective-C/instm/NSTableView/allowsEmptySelection -Objective-C/instm/NSNumberFormatter/allowsFloats -Objective-C/instm/ABPeoplePickerView/allowsGroupSelection -Objective-C/instp/ABPeoplePickerView/allowsGroupSelection -Objective-C/instm/NSTextView/allowsImageEditing -Objective-C/instm/NSCoder/allowsKeyedCoding -Objective-C/intfm/ApertureExportPlugIn/allowsMasterExport -Objective-C/instm/NSButton/allowsMixedState -Objective-C/instm/NSCell/allowsMixedState -Objective-C/instm/ABIdentityPicker/allowsMultipleSelection -Objective-C/instm/CBIdentityPicker/allowsMultipleSelection -Objective-C/instm/PDFThumbnailView/allowsMultipleSelection -Objective-C/instm/NSOpenPanel/allowsMultipleSelection -Objective-C/instm/NSBrowser/allowsMultipleSelection -Objective-C/instm/ABPeoplePickerView/allowsMultipleSelection -Objective-C/instp/ABPeoplePickerView/allowsMultipleSelection -Objective-C/instm/IKImageBrowserView/allowsMultipleSelection -Objective-C/instm/NSCollectionView/allowsMultipleSelection -Objective-C/instm/NSTableView/allowsMultipleSelection -Objective-C/instm/NSDateFormatter/allowsNaturalLanguage -Objective-C/instm/NSLayoutManager/allowsNonContiguousLayout -Objective-C/intfm/ApertureExportPlugIn/allowsOnlyPlugInPresets -Objective-C/instm/NSSavePanel/allowsOtherFileTypes -Objective-C/instm/PDFDocument/allowsPrinting -Objective-C/instm/IKImageBrowserView/allowsReordering -Objective-C/clm/NSValueTransformer/allowsReverseTransformation -Objective-C/instm/WebFrameView/allowsScrolling -Objective-C/instm/NSSlider/allowsTickMarkValuesOnly -Objective-C/instm/NSSliderCell/allowsTickMarkValuesOnly -Objective-C/instm/PDFAnnotationButtonWidget/allowsToggleToOff -Objective-C/instm/NSWindow/allowsToolTipsWhenApplicationIsInactive -Objective-C/instm/NSTabView/allowsTruncatedLabels -Objective-C/instm/NSBrowser/allowsTypeSelect -Objective-C/instm/NSTableView/allowsTypeSelect -Objective-C/instm/NSTextView/allowsUndo -Objective-C/instm/NSCell/allowsUndo -Objective-C/instm/NSToolbar/allowsUserCustomization -Objective-C/intfm/ApertureExportPlugIn/allowsVersionExport -C/func/-/AllPlanes -Objective-C/instm/NSOrthography/allScripts -Objective-C/instp/NSOrthography/allScripts -Objective-C/clm/IMService/allServices -C++/clm/TestSuite/allTests -Objective-C/clm/CW8021XProfile/allUser8021XProfiles -Objective-C/instm/NSDictionary/allValues -Objective-C/instm/CIColor/alpha -Objective-C/instm/NSColorPanel/alpha -JavaScript/data/RGBColor/alpha -JavaScript/data/WebGLContextAttributes/alpha -JavaScript/clconst/WebGLRenderingContext/ALPHA -JavaScript/clconst/WebGLRenderingContext/ALPHA_BITS -Objective-C/instm/NSColor/alphaComponent -Objective-C/intfm/NSColorPickingDefault/alphaControlAddedOrRemoved: -Objective-C/clm/NSCharacterSet/alphanumericCharacterSet -Objective-C/instm/CAEmitterCell/alphaRange -Objective-C/instp/CAEmitterCell/alphaRange -C/func/-/alphasort -Objective-C/instm/CAEmitterCell/alphaSpeed -Objective-C/instp/CAEmitterCell/alphaSpeed -Objective-C/instm/NSWindow/alphaValue -Objective-C/instm/NSView/alphaValue -JavaScript/data/HTMLInputElement/alt -JavaScript/data/HTMLAppletElement/alt -JavaScript/data/HTMLAreaElement/alt -JavaScript/data/HTMLImageElement/alt -Objective-C/instm/NSButton/alternateImage -Objective-C/instm/NSStatusItem/alternateImage -Objective-C/instm/NSBrowserCell/alternateImage -Objective-C/instm/NSButtonCell/alternateImage -Objective-C/binding/NSButtonCell/alternateImage -Objective-C/binding/NSButton/alternateImage -Objective-C/instm/NSButtonCell/alternateMnemonic -Objective-C/instm/NSButtonCell/alternateMnemonicLocation -Objective-C/clm/NSColor/alternateSelectedControlColor -Objective-C/clm/NSColor/alternateSelectedControlTextColor -Objective-C/instm/NSButton/alternateTitle -Objective-C/instm/WebHistoryItem/alternateTitle -Objective-C/instm/NSButtonCell/alternateTitle -Objective-C/binding/NSButton/alternateTitle -Objective-C/binding/NSButtonCell/alternateTitle -Objective-C/instp/PSEntry/alternateURL -Objective-C/instp/PSFeed/alternateURL -Objective-C/instm/NSPopUpButtonCell/altersStateOfSelectedItem -JavaScript/data/KeyboardEvent/altGraphKey -Objective-C/instm/NSSliderCell/altIncrementValue -Objective-C/instm/NSSlider/altIncrementValue -Objective-C/instm/CLLocation/altitude -Objective-C/instp/CLLocation/altitude -JavaScript/data/Coordinates/altitude -JavaScript/data/Coordinates/altitudeAccuracy -JavaScript/data/KeyboardEvent/altKey -JavaScript/data/MouseEvent/altKey -JavaScript/data/TouchEvent/altKey -JavaScript/data/WheelEvent/altKey -JavaScript/clconst/WebGLRenderingContext/ALWAYS -JavaScript/clconst/DataGridColumn/ALWAYS_SORTED -Objective-C/instp/CW8021XProfile/alwaysPromptForPassword -Objective-C/instp/CWConfiguration/alwaysRememberNetworks -Objective-C/instm/NSNumberFormatter/alwaysShowsDecimalSeparator -Objective-C/instm/NSTreeController/alwaysUsesMultipleValuesMarker -Objective-C/instm/NSArrayController/alwaysUsesMultipleValuesMarker -Objective-C/cl/-/AMAction -C/econst/-/AMActionApplicationResourceError -C/econst/-/AMActionApplicationVersionResourceError -C/econst/-/AMActionArchitectureMismatchError -C/macro/-/AMActionErrorKey -C/econst/-/AMActionExceptionError -C/econst/-/AMActionExecutionError -C/econst/-/AMActionFileResourceError -C/econst/-/AMActionInitializationError -C/econst/-/AMActionInsufficientDataError -C/econst/-/AMActionIsDeprecatedError -C/econst/-/AMActionLicenseResourceError -C/econst/-/AMActionLinkError -C/econst/-/AMActionLoadError -C/econst/-/AMActionNotLoadableError -C/econst/-/AMActionPropertyListInvalidError -C/econst/-/AMActionRequiredActionResourceError -C/econst/-/AMActionRuntimeMismatchError -Objective-C/cl/-/AMAppleScriptAction -C/macro/-/AMAutomatorErrorDomain -Objective-C/cl/-/AMBundleAction -C/econst/-/AMConversionFailedError -C/econst/-/AMConversionNoDataError -C/econst/-/AMConversionNotPossibleError -C/econst/-/AMNoSuchActionError -JavaScript/data/SVGComponentTransferFunctionElement/amplitude -Objective-C/cl/-/AMShellScriptAction -Objective-C/instm/NSDateFormatter/AMSymbol -C/econst/-/AMUserCanceledError -Objective-C/cl/-/AMWorkflow -Objective-C/cl/-/AMWorkflowController -C/econst/-/AMWorkflowNewerActionVersionError -C/econst/-/AMWorkflowNewerVersionError -C/econst/-/AMWorkflowOlderActionVersionError -C/econst/-/AMWorkflowPropertyListInvalidError -Objective-C/cl/-/AMWorkflowView -Objective-C/instm/NSView/ancestorSharedWithView: -C/econst/-/anchor -JavaScript/data/DOMSelection/anchorNode -JavaScript/data/DOMSelection/anchorOffset -Objective-C/instm/CALayer/anchorPoint -Objective-C/instp/CALayer/anchorPoint -Objective-C/instm/CALayer/anchorPointZ -Objective-C/instp/CALayer/anchorPointZ -JavaScript/data/Document/anchors -Objective-C/clm/NSCompoundPredicate/andPredicateWithSubpredicates: -JavaScript/data/SVGPathSegArcAbs/angle -JavaScript/data/SVGPathSegArcRel/angle -JavaScript/data/SVGTransform/angle -Objective-C/binding/NSProgressIndicator/animate -Objective-C/instm/NSProgressIndicator/animate: -JavaScript/data/SVGUseElement/animatedInstanceRoot -JavaScript/data/SVGAnimatedPathData/animatedNormalizedPathSegList -JavaScript/data/SVGAnimatedPathData/animatedPathSegList -JavaScript/data/SVGAnimatedPoints/animatedPoints -Objective-C/instm/ScreenSaverView/animateOneFrame -Objective-C/instm/NSImageView/animates -Objective-C/instm/IKImageBrowserView/animates -Objective-C/clm/CAAnimation/animation -Objective-C/intfm/NSAnimationDelegate/animation:didReachProgressMark: -Objective-C/intfm/NSAnimationDelegate/animation:valueForProgress: -Objective-C/instm/NSAnimation/animationBlockingMode -Objective-C/instm/NSAnimation/animationCurve -Objective-C/instm/NSProgressIndicator/animationDelay -Objective-C/binding/NSProgressIndicator/animationDelay -Objective-C/intfm/NSAnimationDelegate/animationDidEnd: -Objective-C/instm/NSObject/animationDidStart: -Objective-C/intfm/NSAnimationDelegate/animationDidStop: -Objective-C/instm/NSObject/animationDidStop:finished: -Objective-C/clm/CATransaction/animationDuration -Objective-C/intfm/NSAnimatablePropertyContainer/animationForKey: -Objective-C/instm/CALayer/animationForKey: -Objective-C/instm/CALayer/animationKeys -JavaScript/data/WebKitAnimationEvent/animationName -Objective-C/instm/NSWindow/animationResizeTime: -Objective-C/instp/CAAnimationGroup/animations -Objective-C/instm/CAAnimationGroup/animations -Objective-C/intfm/NSAnimatablePropertyContainer/animations -Objective-C/intfm/NSAnimationDelegate/animationShouldStart: -JavaScript/instm/SVGSVGElement/animationsPaused -Objective-C/instm/ScreenSaverView/animationTimeInterval -Objective-C/clm/CATransaction/animationTimingFunction -Objective-C/clm/CAPropertyAnimation/animationWithKeyPath: -Objective-C/intfm/NSAnimatablePropertyContainer/animator -JavaScript/data/SVGAnimatedLength/animVal -JavaScript/data/SVGAnimatedLengthList/animVal -JavaScript/data/SVGAnimatedAngle/animVal -JavaScript/data/SVGAnimatedEnumeration/animVal -JavaScript/data/SVGAnimatedTransformList/animVal -JavaScript/data/SVGAnimatedString/animVal -JavaScript/data/SVGAnimatedRect/animVal -JavaScript/data/SVGAnimatedPreserveAspectRatio/animVal -JavaScript/data/SVGAnimatedNumberList/animVal -JavaScript/data/SVGAnimatedInteger/animVal -JavaScript/data/SVGAnimatedBoolean/animVal -JavaScript/data/SVGAnimatedNumber/animVal -Objective-C/instm/PDFPage/annotationAtPoint: -Objective-C/instm/PDFPage/annotations -Objective-C/instm/PDFView/annotationsChangedOnPage: -Objective-C/instm/IMKInputController/annotationSelected:forCandidate: -JavaScript/data/WebGLContextAttributes/antialias -JavaScript/clconst/XPathResult/ANY_TYPE -JavaScript/clconst/XPathResult/ANY_UNORDERED_NODE_TYPE -Objective-C/instm/NSHashTable/anyObject -Objective-C/instm/NSSet/anyObject -Objective-C/intf/-/ApertureEditManager -Objective-C/intf/-/ApertureEditPlugIn -Objective-C/intf/-/ApertureExportManager -Objective-C/intf/-/ApertureExportPlugIn -C/tdef/-/ApertureExportProgress -C/tdef/-/ApertureExportThumbnailSize -Objective-C/instm/QTTrack/apertureModeDimensionsForMode: -Objective-C/intfm/ApertureEditManager/apertureWindow -JavaScript/data/Navigator/appCodeName -JavaScript/instm/DOMFormData/append -Objective-C/instm/DRBurn(PropertyConvenienceMethods)/appendable -Objective-C/instm/DRBurnSetupPanel/appendable: -Objective-C/instm/NSMutableAttributedString/appendAttributedString: -Objective-C/instm/NSBezierPath/appendBezierPath: -Objective-C/instm/NSBezierPath/appendBezierPathWithArcFromPoint:toPoint:radius: -Objective-C/instm/NSBezierPath/appendBezierPathWithArcWithCenter:radius:startAngle:endAngle: -Objective-C/instm/NSBezierPath/appendBezierPathWithArcWithCenter:radius:startAngle:endAngle:clockwise: -Objective-C/instm/NSBezierPath/appendBezierPathWithGlyph:inFont: -Objective-C/instm/NSBezierPath/appendBezierPathWithGlyphs:count:inFont: -Objective-C/instm/NSBezierPath/appendBezierPathWithOvalInRect: -Objective-C/instm/NSBezierPath/appendBezierPathWithPackedGlyphs: -Objective-C/instm/NSBezierPath/appendBezierPathWithPoints:count: -Objective-C/instm/NSBezierPath/appendBezierPathWithRect: -Objective-C/instm/NSBezierPath/appendBezierPathWithRoundedRect:xRadius:yRadius: -C++/instm/OSData/appendByte -C++/instm/OSData/appendBytes -Objective-C/instm/NSMutableData/appendBytes:length: -JavaScript/instm/core/appendChild -JavaScript/instm/CharacterData/appendData -Objective-C/instm/NSMutableData/appendData: -Objective-C/instm/NSMutableString/appendFormat: -JavaScript/instm/SVGLengthList/appendItem -JavaScript/instm/SVGNumberList/appendItem -JavaScript/instm/SVGPointList/appendItem -JavaScript/instm/SVGStringList/appendItem -JavaScript/instm/SVGPathSegList/appendItem -JavaScript/instm/SVGTransformList/appendItem -JavaScript/instm/MediaList/appendMedium -Objective-C/instm/QTMovie/appendSelectionFromMovie: -Objective-C/instm/NSMutableString/appendString: -Objective-C/instm/NSAffineTransform/appendTransform: -C/econst/-/appIsDaemon -Objective-C/instm/NSScriptCommand/appleEvent -Objective-C/instm/NSScriptCommandDescription/appleEventClassCode -Objective-C/instm/NSScriptClassDescription/appleEventCode -Objective-C/instm/NSScriptCommandDescription/appleEventCode -Objective-C/instm/NSScriptCommandDescription/appleEventCodeForArgumentWithName: -Objective-C/instm/NSScriptClassDescription/appleEventCodeForKey: -Objective-C/instm/NSScriptCommandDescription/appleEventCodeForReturnType -Objective-C/instm/NSScriptSuiteRegistry/appleEventCodeForSuite: -Objective-C/instm/NSAppleEventManager/appleEventForSuspensionID: -Objective-C/clm/NSAppleEventDescriptor/appleEventWithEventClass:eventID:targetDescriptor:returnID:transactionID: -JavaScript/data/Document/applets -C/func/-/AppleWM -JavaScript/cl/-/Application -Objective-C/instm/NSObject/application:delegateHandlesKey: -Objective-C/intfm/NSApplicationDelegate/application:openFile: -Objective-C/intfm/NSApplicationDelegate/application:openFiles: -Objective-C/intfm/NSApplicationDelegate/application:openFileWithoutUI: -Objective-C/intfm/NSApplicationDelegate/application:openTempFile: -Objective-C/intfm/NSApplicationDelegate/application:printFile: -Objective-C/instm/NSObject/application:printFiles: -Objective-C/intfm/NSApplicationDelegate/application:printFiles:withSettings:showPrintPanels: -Objective-C/intfm/NSApplicationDelegate/application:willPresentError: -JavaScript/data/DOMWindow/applicationCache -Objective-C/clm/PSClient/applicationClient -Objective-C/intfm/NSApplicationDelegate/applicationDidBecomeActive: -Objective-C/intfm/NSApplicationDelegate/applicationDidChangeScreenParameters: -Objective-C/intfm/NSApplicationDelegate/applicationDidFinishLaunching: -Objective-C/intfm/NSApplicationDelegate/applicationDidHide: -Objective-C/intfm/NSApplicationDelegate/applicationDidResignActive: -Objective-C/intfm/NSApplicationDelegate/applicationDidUnhide: -Objective-C/intfm/NSApplicationDelegate/applicationDidUpdate: -Objective-C/intfm/NSApplicationDelegate/applicationDockMenu: -Objective-C/instm/NSApplication/applicationIconImage -Objective-C/instm/XGJob/applicationIdentifier -Objective-C/instm/XGJob/applicationInfo -Objective-C/instm/WebView/applicationNameForUserAgent -Objective-C/intfm/NSApplicationDelegate/applicationOpenUntitledFile: -Objective-C/intfm/NSApplicationDelegate/applicationShouldHandleReopen:hasVisibleWindows: -Objective-C/intfm/NSApplicationDelegate/applicationShouldOpenUntitledFile: -Objective-C/intfm/NSApplicationDelegate/applicationShouldTerminate: -Objective-C/intfm/NSApplicationDelegate/applicationShouldTerminateAfterLastWindowClosed: -Objective-C/intfm/NSApplicationDelegate/applicationWillBecomeActive: -Objective-C/intfm/NSApplicationDelegate/applicationWillFinishLaunching: -Objective-C/intfm/NSApplicationDelegate/applicationWillHide: -Objective-C/intfm/NSApplicationDelegate/applicationWillResignActive: -Objective-C/intfm/NSApplicationDelegate/applicationWillTerminate: -Objective-C/intfm/NSApplicationDelegate/applicationWillUnhide: -Objective-C/intfm/NSApplicationDelegate/applicationWillUpdate: -Objective-C/clm/SBApplication/applicationWithBundleIdentifier: -Objective-C/clm/SBApplication/applicationWithProcessIdentifier: -Objective-C/clm/SBApplication/applicationWithURL: -Objective-C/instm/NSUserDefaultsController/appliesImmediately -Objective-C/instm/CIFilter/apply: -Objective-C/instm/CIFilter/apply:arguments:options: -Objective-C/instm/NSObject/applyChange:forEntityName:remappedRecordIdentifier:formattedRecord:error: -Objective-C/instm/NSMutableAttributedString/applyFontTraits:range: -Objective-C/instm/WebView/applyStyle: -JavaScript/instm/InspectorBackend/applyStyleText -C/econst/-/appMemFullErr -C/econst/-/appModeErr -JavaScript/data/Navigator/appName -JavaScript/data/WorkerNavigator/appName -C/tdef/-/AppParameters -JavaScript/data/Navigator/appVersion -JavaScript/data/WorkerNavigator/appVersion -C/econst/-/appVersionTooOld -JavaScript/instm/CanvasRenderingContext2D/arc -C/func/-/arc4random -C/func/-/arc4random_addrandom -C/func/-/arc4random_stir -C/func/-/arch -JavaScript/data/HTMLObjectElement/archive -JavaScript/data/HTMLAppletElement/archive -Objective-C/clm/NSArchiver/archivedDataWithRootObject: -Objective-C/clm/NSKeyedArchiver/archivedDataWithRootObject: -Objective-C/intfm/NSKeyedArchiverDelegate/archiver:didEncodeObject: -Objective-C/intfm/NSKeyedArchiverDelegate/archiver:willEncodeObject: -Objective-C/intfm/NSKeyedArchiverDelegate/archiver:willReplaceObject:withObject: -Objective-C/instm/NSArchiver/archiverData -Objective-C/intfm/NSKeyedArchiverDelegate/archiverDidFinish: -Objective-C/clm/NSArchiver/archiveRootObject:toFile: -Objective-C/clm/NSKeyedArchiver/archiveRootObject:toFile: -Objective-C/intfm/NSKeyedArchiverDelegate/archiverWillFinish: -JavaScript/instm/CanvasRenderingContext2D/arcTo -Objective-C/instm/PDFView/areaOfInterestForMouse: -JavaScript/data/HTMLMapElement/areas -Objective-C/instm/NSWindow/areCursorRectsEnabled -Objective-C/instm/WebPreferences/arePlugInsEnabled -Objective-C/instm/QTMovieView/areStepButtonsVisible -Objective-C/instm/QTMovieView/areZoomButtonsVisible -Objective-C/binding/NSButton/argument -Objective-C/binding/NSButtonCell/argument -Objective-C/instm/NSScriptCommandDescription/argumentNames -Objective-C/instm/NSScriptCommand/arguments -Objective-C/instm/NSProcessInfo/arguments -Objective-C/instm/NSTask/arguments -Objective-C/instm/NSExpression/arguments -Objective-C/instm/NSInvocation/argumentsRetained -Objective-C/instm/NSTreeController/arrangedObjects -Objective-C/instm/NSDictionaryController/arrangedObjects -Objective-C/instm/NSArrayController/arrangedObjects -Objective-C/instm/NSApplication/arrangeInFront: -Objective-C/instm/NSArrayController/arrangeObjects: -Objective-C/clm/NSArray/array -JavaScript/clconst/WebGLRenderingContext/ARRAY_BUFFER -JavaScript/clconst/WebGLRenderingContext/ARRAY_BUFFER_BINDING -JavaScript/data/DOMWindow/ArrayBuffer -JavaScript/cl/-/ArrayBuffer -JavaScript/cl/-/ArrayBufferView -Objective-C/instm/NSArray/arrayByAddingObject: -Objective-C/instm/NSArray/arrayByAddingObjectsFromArray: -Objective-C/instm/SBElementArray/arrayByApplyingSelector: -Objective-C/instm/SBElementArray/arrayByApplyingSelector:withObject: -Objective-C/instm/NSUserDefaults/arrayForKey: -C++/clm/IODeviceMemory/arrayFromList -Objective-C/clm/DRCDTextBlock/arrayOfCDTextBlocksFromPacks: -Objective-C/clm/NSArray/arrayWithArray: -Objective-C/clm/NSMutableArray/arrayWithCapacity: -Objective-C/clm/NSArray/arrayWithContentsOfFile: -Objective-C/clm/NSArray/arrayWithContentsOfURL: -Objective-C/clm/NSArray/arrayWithObject: -Objective-C/clm/NSArray/arrayWithObjects: -Objective-C/clm/NSArray/arrayWithObjects:count: -Objective-C/clm/NSCursor/arrowCursor -Objective-C/instm/NSPopUpButtonCell/arrowPosition -Objective-C/instm/NSScroller/arrowsPosition -Objective-C/instm/NSFont/ascender -Objective-C/instm/NSSortDescriptor/ascending -C/func/-/ascii2addr -C/func/-/asctime -C/func/-/asctime_r -C/econst/-/asiAliasName -C/func/-/asin -C/func/-/asinf -C/func/-/asinh -C/func/-/asinhf -C/func/-/asinhl -C/func/-/asinl -C/econst/-/asiParentName -C/econst/-/asiServerName -C/econst/-/asiVolumeName -C/econst/-/asiZoneName -C/func/-/asl -C/func/-/asl_add_log_file -C/func/-/asl_close -C/func/-/asl_free -C/func/-/asl_get -C/func/-/asl_key -C/func/-/asl_log -C/func/-/asl_new -C/func/-/asl_open -C/func/-/asl_remove_log_file -C/func/-/asl_search -C/func/-/asl_send -C/func/-/asl_set -C/func/-/asl_set_filter -C/func/-/asl_set_query -C/func/-/asl_unset -C/func/-/asl_vlog -C/func/-/aslresponse_free -C/func/-/aslresponse_next -C/func/-/ASN1_add_oid_module -C/func/-/ASN1_generate_nconf -C/func/-/ASN1_generate_v3 -C/func/-/ASN1_OBJECT_free -C/func/-/ASN1_OBJECT_new -C/func/-/ASN1_STRING_cmp -C/func/-/ASN1_STRING_data -C/func/-/ASN1_STRING_dup -C/func/-/ASN1_STRING_free -C/func/-/ASN1_STRING_length -C/func/-/ASN1_STRING_length_set -C/func/-/ASN1_STRING_new -C/func/-/ASN1_STRING_print_ex -C/func/-/ASN1_STRING_print_ex_fp -C/func/-/ASN1_STRING_set -C/func/-/ASN1_STRING_to_UTF8 -C/func/-/ASN1_STRING_type -C/func/-/ASN1_STRING_type_new -Objective-C/instm/NSWindow/aspectRatio -C/func/-/asprintf -C/func/-/asprintf_l -C/func/-/assert -JavaScript/instm/Console/assert -C/tag/-/Assertion -JavaScript/instm/window/assign -Objective-C/instm/NSPreferencePane/assignMainView -Objective-C/instm/NSManagedObjectContext/assignObject:toPersistentStore: -Objective-C/instm/NSMigrationManager/associateSourceInstance:withDestinationInstance:forEntityMapping: -Objective-C/instm/CWInterface/associateToNetwork:parameters:error: -C/func/-/assume_default_colors -Objective-C/instm/CAOpenGLLayer/asynchronous -Objective-C/instp/CAOpenGLLayer/asynchronous -C++/data/IOAudioDevice/asyncPowerStateChangeInProgress -JavaScript/clconst/Event/AT_TARGET -C++/clm/IOATABusInfo/atabusinfo -C++/clm/IOATADevConfig/atadevconfig -C++/cl/-/ATADeviceNub -C++/clm/ATADeviceNub/ataDeviceNub -C/func/-/atan -C/func/-/atan2 -C/func/-/atan2f -C/func/-/atan2l -C/func/-/atanf -C/func/-/atanh -C/func/-/atanhf -C/func/-/atanhl -C/func/-/atanl -C/tdef/-/ATAPIClientData -C/tag/-/ATAPIClientData -C++/cl/-/ATATimerEventSource -C++/clm/ATATimerEventSource/ataTimerEventSource -C/func/-/atexit -C/func/-/atexit_b -C/econst/-/AtlasConj -C/func/-/ATLU_DestroyThreadMemory -JavaScript/instm/DOMWindow/atob -C/func/-/atof -C/func/-/atof_l -C/func/-/atoi -C/func/-/atoi_l -C/func/-/atol -C/func/-/atol_l -C/func/-/atoll -C/func/-/atoll_l -C/func/-/atomic -C++/instm/ATADeviceNub/attach -C++/instm/IOService/attach -C++/instm/IOAudioDevice/attachAudioPort -Objective-C/instm/NSColorPanel/attachColorList: -Objective-C/instm/NSColorPicker/attachColorList: -Objective-C/intfm/NSColorPickingDefault/attachColorList: -C++/instm/IONetworkController/attachDebuggerClient -JavaScript/clconst/WebGLRenderingContext/ATTACHED_SHADERS -Objective-C/instm/NSMenuView/attachedMenu -Objective-C/instm/NSMenu/attachedMenu -Objective-C/instm/NSMenuView/attachedMenuView -Objective-C/instm/NSWindow/attachedSheet -C++/instm/IONetworkController/attachInterface -Objective-C/intfm/NSTextAttachmentCell/attachment -Objective-C/instm/NSTextAttachment/attachmentCell -Objective-C/instm/NSLayoutManager/attachmentSizeForGlyphAtIndex: -Objective-C/instm/NSPopUpButtonCell/attachPopUpWithFrame:inView: -JavaScript/instm/WebGLRenderingContext/attachShader -Objective-C/instm/NSMenuView/attachSubmenuForItemAtIndex: -C++/instm/IORegistryEntry/attachToChild -Objective-C/instm/QTMovie/attachToCurrentThread -C++/instm/IONetworkInterface/attachToDataLinkLayer -C++/instm/IORegistryEntry/attachToParent -C++/instm/IOCommandGate/attemptAction -C/func/-/attemptckalloc -C/func/-/attemptckrealloc -C++/instm/IOCommandGate/attemptCommand -Objective-C/instm/NSObject/attemptRecoveryFromError:optionIndex: -Objective-C/instm/NSObject/attemptRecoveryFromError:optionIndex:delegate:didRecoverSelector:contextInfo: -Objective-C/instm/CalEvent/attendees -Objective-C/instp/CalEvent/attendees -JavaScript/cl/-/Attr -JavaScript/data/DOMWindow/Attr -C/func/-/attr_get -C/func/-/attr_off -C/func/-/attr_on -C/func/-/attr_set -JavaScript/data/MutationEvent/attrChange -Objective-C/instm/NSMetadataQueryAttributeValueTuple/attribute -Objective-C/instm/NSMetadataQueryResultGroup/attribute -Objective-C/instm/CAConstraint/attribute -Objective-C/instp/CAConstraint/attribute -Objective-C/instm/NSAttributedString/attribute:atIndex:effectiveRange: -Objective-C/instm/NSAttributedString/attribute:atIndex:longestEffectiveRange:inRange: -JavaScript/clconst/core/ATTRIBUTE_NODE -Objective-C/instm/NSButton/attributedAlternateTitle -Objective-C/instm/NSButtonCell/attributedAlternateTitle -Objective-C/instm/NSXMLDTD/attributeDeclarationForName:elementName: -C/tdef/-/attributeDeclSAXFunc -Objective-C/instm/NSAppleEventDescriptor/attributeDescriptorForKeyword: -Objective-C/instm/PDFPage/attributedString -Objective-C/instm/PDFSelection/attributedString -Objective-C/intfm/NSGlyphStorage/attributedString -Objective-C/instm/NSATSTypesetter/attributedString -Objective-C/intfm/NSTextInputClient/attributedString -Objective-C/intfm/WebDocumentText/attributedString -Objective-C/instm/NSLayoutManager/attributedString -Objective-C/instm/NSTypesetter/attributedString -Objective-C/binding/NSTextView/attributedString -Objective-C/instm/NSObject/attributedStringForIdentityPropertiesWithNames:inRecord:comparisonRecords:firstLineAttributes:secondLineAttributes: -Objective-C/instm/NSNumberFormatter/attributedStringForNil -Objective-C/instm/NSNumberFormatter/attributedStringForNotANumber -Objective-C/instm/NSFormatter/attributedStringForObjectValue:withDefaultAttributes: -Objective-C/instm/NSObject/attributedStringForPropertiesWithNames:inRecord:comparisonRecords:defaultAttributes: -Objective-C/instm/NSNumberFormatter/attributedStringForZero -Objective-C/instm/NSControl/attributedStringValue -Objective-C/instm/NSCell/attributedStringValue -Objective-C/clm/NSAttributedString/attributedStringWithAttachment: -Objective-C/intfm/NSTextInputClient/attributedSubstringForProposedRange:actualRange: -Objective-C/intfm/IMKTextInput/attributedSubstringFromRange: -Objective-C/intfm/NSTextInput/attributedSubstringFromRange: -Objective-C/instm/NSAttributedString/attributedSubstringFromRange: -Objective-C/instm/NSFormCell/attributedTitle -Objective-C/instm/NSButton/attributedTitle -Objective-C/instm/NSStatusItem/attributedTitle -Objective-C/instm/NSButtonCell/attributedTitle -Objective-C/instm/NSMenuItem/attributedTitle -Objective-C/instm/QTCaptureConnection/attributeForKey: -Objective-C/instm/QTFormatDescription/attributeForKey: -Objective-C/instm/QTSampleBuffer/attributeForKey: -Objective-C/instm/QTCaptureDevice/attributeForKey: -Objective-C/instm/QTTrack/attributeForKey: -Objective-C/instm/QTMedia/attributeForKey: -Objective-C/instm/QTMovie/attributeForKey: -Objective-C/instm/NSXMLElement/attributeForLocalName:URI: -Objective-C/instm/NSXMLElement/attributeForName: -Objective-C/instm/QTCaptureConnection/attributeIsReadOnly: -Objective-C/instm/QTCaptureDevice/attributeIsReadOnly: -Objective-C/instm/NSClassDescription/attributeKeys -Objective-C/instm/NSObject/attributeKeys -Objective-C/instm/NSEntityMapping/attributeMappings -Objective-C/instm/NSTextStorage/attributeRuns -Objective-C/instm/NSMetadataItem/attributes -Objective-C/instm/QCComposition/attributes -Objective-C/instm/NSXMLElement/attributes -Objective-C/instm/IMKCandidates/attributes -Objective-C/instm/CIFilter/attributes -Objective-C/clm/QCPlugIn/attributes -Objective-C/intfm/QCCompositionRenderer/attributes -Objective-C/instm/NSGraphicsContext/attributes -Objective-C/instm/NSOpenGLPixelFormat/attributes -Objective-C/instp/IOBluetoothSDPServiceRecord/attributes -JavaScript/data/core/attributes -Objective-C/instm/NSAttributedString/attributesAtIndex:effectiveRange: -Objective-C/instm/NSAttributedString/attributesAtIndex:longestEffectiveRange:inRange: -C/tdef/-/attributeSAXFunc -Objective-C/instm/NSEntityDescription/attributesByName -Objective-C/intfm/IMKTextInput/attributesForCharacterIndex:lineHeightRectangle: -Objective-C/instm/NSTypesetter/attributesForExtraLineFragment -Objective-C/clm/QCPlugIn/attributesForPropertyPortWithKey: -Objective-C/clm/NSSpeechSynthesizer/attributesForVoice: -Objective-C/instm/NSFileManager/attributesOfFileSystemForPath:error: -Objective-C/instm/NSFileManager/attributesOfItemAtPath:error: -Objective-C/instm/NSAttributeDescription/attributeType -Objective-C/instm/NSAttributeDescription/attributeValueClassName -Objective-C/clm/NSXMLNode/attributeWithName:stringValue: -Objective-C/clm/NSXMLNode/attributeWithName:URI:stringValue: -JavaScript/data/MutationEvent/attrName -C/func/-/attroff -C/func/-/attron -C/func/-/attrset -JavaScript/data/TestObj/attrWithException -JavaScript/data/TestObj/attrWithGetterException -JavaScript/data/TestObj/attrWithSetterException -C/func/-/au_bsm_to_domain -C/func/-/au_bsm_to_errno -C/func/-/au_bsm_to_fcntl_cmd -C/func/-/au_bsm_to_socket_type -C/func/-/au_class -C/func/-/au_close -C/func/-/au_close_buffer -C/func/-/au_close_token -C/func/-/au_control -C/func/-/au_domain -C/func/-/au_domain_to_bsm -C/func/-/au_errno -C/func/-/au_errno_to_bsm -C/func/-/au_event -C/func/-/au_fcntl_cmd -C/func/-/au_fcntl_cmd_to_bsm -C/func/-/au_fetch_tok -C/func/-/au_free_token -C/func/-/au_io -C/func/-/au_mask -C/func/-/au_open -C/func/-/au_poltostr -C/func/-/au_preselect -C/func/-/au_print_tok -C/func/-/au_read_rec -C/func/-/au_socket_type -C/func/-/au_socket_type_to_bsm -C/func/-/au_strerror -C/func/-/au_strtopol -C/func/-/au_to_arg -C/func/-/au_to_arg32 -C/func/-/au_to_arg64 -C/func/-/au_to_attr -C/func/-/au_to_attr32 -C/func/-/au_to_attr64 -C/func/-/au_to_data -C/func/-/au_to_exec_args -C/func/-/au_to_exec_env -C/func/-/au_to_exit -C/func/-/au_to_file -C/func/-/au_to_groups -C/func/-/au_to_header -C/func/-/au_to_header32 -C/func/-/au_to_header32_ex -C/func/-/au_to_header64 -C/func/-/au_to_header_ex -C/func/-/au_to_in_addr -C/func/-/au_to_in_addr_ex -C/func/-/au_to_ip -C/func/-/au_to_ipc -C/func/-/au_to_ipc_perm -C/func/-/au_to_iport -C/func/-/au_to_me -C/func/-/au_to_newgroups -C/func/-/au_to_opaque -C/func/-/au_to_path -C/func/-/au_to_process32 -C/func/-/au_to_process32_ex -C/func/-/au_to_process64 -C/func/-/au_to_process64_ex -C/func/-/au_to_return -C/func/-/au_to_return32 -C/func/-/au_to_return64 -C/func/-/au_to_seq -C/func/-/au_to_sock_inet128 -C/func/-/au_to_sock_inet32 -C/func/-/au_to_sock_int -C/func/-/au_to_socket_ex -C/func/-/au_to_subject -C/func/-/au_to_subject32 -C/func/-/au_to_subject32_ex -C/func/-/au_to_subject64 -C/func/-/au_to_subject64_ex -C/func/-/au_to_subject_ex -C/func/-/au_to_text -C/func/-/au_to_trailer -C/func/-/au_to_zonename -C/func/-/au_token -C/func/-/au_user -C/func/-/au_user_mask -C/func/-/au_write -C/tag/-/AUChannelInfo -C/tdef/-/AUChannelInfo -Objective-C/intf/-/AUCustomViewPersistentData -C/tag/-/AUDependentParameter -C/tdef/-/AUDependentParameter -JavaScript/data/DOMWindow/Audio -C/tag/-/AudioAggregateDevice -C/tdef/-/AudioBalanceFade -C/tag/-/AudioBooleanControl -C/tag/-/AudioBuffer -C/tdef/-/AudioBuffer -C/tag/-/AudioBufferList -C/tdef/-/AudioBufferList -Objective-C/instm/QTSampleBuffer/audioBufferListWithOptions: -C/tdef/-/AudioBytePacketTranslation -C/tag/-/AudioChannelDescription -C/tdef/-/AudioChannelDescription -C/tdef/-/AudioChannelLabel -C/tag/-/AudioChannelLayout -C/tdef/-/AudioChannelLayout -C/tag/-/AudioChannelLayoutTag -C/tdef/-/AudioChannelLayoutTag -C/macro/-/AudioChannelLayoutTag_GetNumberOfChannels -C/tag/-/AudioClassDescription -C/tdef/-/AudioClassDescription -C/tdef/-/AudioClassID -C/tdef/-/AudioCodec -C/func/-/AudioCodecAppendInputData -C/func/-/AudioCodecGetProperty -C/func/-/AudioCodecGetPropertyInfo -C/func/-/AudioCodecInitialize -C/tdef/-/AudioCodecMagicCookieInfo -C/tdef/-/AudioCodecPrimeInfo -C/func/-/AudioCodecProduceOutputPackets -C/tdef/-/AudioCodecPropertyID -C/func/-/AudioCodecReset -C/func/-/AudioCodecSetProperty -C/func/-/AudioCodecUninitialize -C/tdef/-/AudioComponent -C/func/-/AudioComponentCopyName -C/func/-/AudioComponentCount -C/tdef/-/AudioComponentDescription -C/func/-/AudioComponentFindNext -C/func/-/AudioComponentGetDescription -C/func/-/AudioComponentGetVersion -C/tdef/-/AudioComponentInstance -C/func/-/AudioComponentInstanceCanDo -C/func/-/AudioComponentInstanceDispose -C/func/-/AudioComponentInstanceGetComponent -C/func/-/AudioComponentInstanceNew -C/tag/-/AudioControl -C/tdef/-/AudioConverterComplexInputDataProc -C/func/-/AudioConverterConvertBuffer -C/func/-/AudioConverterDispose -C/func/-/AudioConverterFillBuffer -C/func/-/AudioConverterFillComplexBuffer -C/func/-/AudioConverterGetProperty -C/func/-/AudioConverterGetPropertyInfo -C/tdef/-/AudioConverterInputDataProc -C/func/-/AudioConverterNew -C/func/-/AudioConverterNewSpecific -C/tdef/-/AudioConverterPrimeInfo -C/tdef/-/AudioConverterPropertyID -C/tdef/-/AudioConverterRef -C/func/-/AudioConverterReset -C/func/-/AudioConverterSetProperty -C/func/-/AudioConvertHostTimeToNanos -C/func/-/AudioConvertNanosToHostTime -C/tag/-/AudioDevice -C++/data/IOAudioEngine/audioDevice -C/func/-/AudioDeviceAddIOProc -C/func/-/AudioDeviceAddPropertyListener -Objective-C/instm/IMAVManager/audioDeviceChannels -C/func/-/AudioDeviceGetCurrentTime -C/func/-/AudioDeviceGetNearestStartTime -C/func/-/AudioDeviceGetProperty -C/func/-/AudioDeviceGetPropertyInfo -C/tdef/-/AudioDeviceID -C/tdef/-/AudioDeviceIOProc -C/tdef/-/AudioDevicePropertyID -C/tdef/-/AudioDevicePropertyListenerProc -C/func/-/AudioDeviceRead -C/func/-/AudioDeviceRemoveIOProc -C/func/-/AudioDeviceRemovePropertyListener -C/func/-/AudioDeviceSetProperty -C/func/-/AudioDeviceStart -C/func/-/AudioDeviceStartAtTime -C/func/-/AudioDeviceStop -C/func/-/AudioDeviceTranslateTime -Objective-C/instm/IMAVManager/audioDeviceUID -C/func/-/AudioDriverPlugInClose -C/func/-/AudioDriverPlugInDeviceGetProperty -C/func/-/AudioDriverPlugInDeviceGetPropertyInfo -C/tdef/-/AudioDriverPlugInDevicePropertyChangedProc -C/func/-/AudioDriverPlugInDeviceSetProperty -C/tag/-/AudioDriverPlugInHostInfo -C/func/-/AudioDriverPlugInOpen -C/func/-/AudioDriverPlugInStreamGetProperty -C/func/-/AudioDriverPlugInStreamGetPropertyInfo -C/tdef/-/AudioDriverPlugInStreamPropertyChangedProc -C/func/-/AudioDriverPlugInStreamSetProperty -C++/data/IOAudioDevice/audioEngines -C++/instm/IOAudioDevice/audioEngineStarting -C++/instm/IOAudioDevice/audioEngineStopped -C++/data/IOAudioEngine/audioEngineStopPosition -C/tdef/-/AudioFile_GetSizeProc -C/tdef/-/AudioFile_ReadProc -C/tdef/-/AudioFile_SetSizeProc -C/tdef/-/AudioFile_SMPTE_Time -C/tdef/-/AudioFile_WriteProc -C/func/-/AudioFileClose -C/func/-/AudioFileCountUserData -C/func/-/AudioFileCreate -C/func/-/AudioFileCreateWithURL -C/func/-/AudioFileGetGlobalInfo -C/func/-/AudioFileGetGlobalInfoSize -C/func/-/AudioFileGetProperty -C/func/-/AudioFileGetPropertyInfo -C/func/-/AudioFileGetUserData -C/func/-/AudioFileGetUserDataSize -C/tdef/-/AudioFileID -C/func/-/AudioFileInitialize -C/func/-/AudioFileInitializeWithCallbacks -C/tdef/-/AudioFileMarker -C/tdef/-/AudioFileMarkerList -C/func/-/AudioFileOpen -C/func/-/AudioFileOpenURL -C/func/-/AudioFileOpenWithCallbacks -C/func/-/AudioFileOptimize -C/tdef/-/AudioFilePacketTableInfo -C/tdef/-/AudioFilePropertyID -C/func/-/AudioFileReadBytes -C/func/-/AudioFileReadPacketData -C/func/-/AudioFileReadPackets -C/tdef/-/AudioFileRegion -C/tdef/-/AudioFileRegionList -C/func/-/AudioFileRemoveUserData -C/func/-/AudioFileSetProperty -C/func/-/AudioFileSetUserData -C/tdef/-/AudioFileStream_PacketsProc -C/tdef/-/AudioFileStream_PropertyListenerProc -C/func/-/AudioFileStreamClose -C/func/-/AudioFileStreamGetProperty -C/func/-/AudioFileStreamGetPropertyInfo -C/tdef/-/AudioFileStreamID -C/func/-/AudioFileStreamOpen -C/func/-/AudioFileStreamParseBytes -C/tdef/-/AudioFileStreamPropertyID -C/func/-/AudioFileStreamSeek -C/func/-/AudioFileStreamSetProperty -C/tdef/-/AudioFileTypeAndFormatID -C/tdef/-/AudioFileTypeID -C/func/-/AudioFileWriteBytes -C/func/-/AudioFileWritePackets -C/func/-/AudioFormatGetProperty -C/func/-/AudioFormatGetPropertyInfo -C/tdef/-/AudioFormatInfo -C/tdef/-/AudioFormatListItem -C/tdef/-/AudioFormatPropertyID -C/tdef/-/AudioFramePacketTranslation -C/func/-/AudioGetCurrentHostTime -C/func/-/AudioGetHostClockFrequency -C/func/-/AudioGetHostClockMinimumTimeDelta -C/func/-/AudioHardwareAddPropertyListener -C/func/-/AudioHardwareAddRunLoopSource -C/func/-/AudioHardwareClaimAudioDeviceID -C/func/-/AudioHardwareClaimAudioStreamID -C/func/-/AudioHardwareDevicePropertyChanged -C/func/-/AudioHardwareDevicesCreated -C/func/-/AudioHardwareDevicesDied -C/func/-/AudioHardwareGetProperty -C/func/-/AudioHardwareGetPropertyInfo -C/tag/-/AudioHardwareIOProcStreamUsage -C/cl/-/AudioHardwarePlugInInterface -C/tdef/-/AudioHardwarePlugInInterface -C/tdef/-/AudioHardwarePlugInRef -C/tdef/-/AudioHardwarePropertyID -C/tdef/-/AudioHardwarePropertyListenerProc -C/func/-/AudioHardwareRemovePropertyListener -C/func/-/AudioHardwareRemoveRunLoopSource -C/func/-/AudioHardwareServiceAddPropertyListener -C/func/-/AudioHardwareServiceGetPropertyData -C/func/-/AudioHardwareServiceGetPropertyDataSize -C/func/-/AudioHardwareServiceHasProperty -C/func/-/AudioHardwareServiceIsPropertySettable -C/func/-/AudioHardwareServiceRemovePropertyListener -C/func/-/AudioHardwareServiceSetPropertyData -C/func/-/AudioHardwareSetProperty -C/func/-/AudioHardwareStreamPropertyChanged -C/func/-/AudioHardwareStreamsCreated -C/func/-/AudioHardwareStreamsDied -C/func/-/AudioHardwareUnload -C/tag/-/AudioLevelControl -C/tag/-/AudioObject -C/func/-/AudioObjectAddPropertyListener -C/func/-/AudioObjectCreate -C/func/-/AudioObjectGetPropertyData -C/func/-/AudioObjectGetPropertyDataSize -C/func/-/AudioObjectHasProperty -C/tdef/-/AudioObjectID -C/func/-/AudioObjectIsPropertySettable -C/func/-/AudioObjectPropertiesChanged -C/tag/-/AudioObjectPropertyAddress -C/tdef/-/AudioObjectPropertyElement -C/tdef/-/AudioObjectPropertyListenerProc -C/tdef/-/AudioObjectPropertyScope -C/tdef/-/AudioObjectPropertySelector -C/func/-/AudioObjectRemovePropertyListener -C/func/-/AudioObjectSetPropertyData -C/func/-/AudioObjectShow -C/func/-/AudioObjectsPublishedAndDied -C/func/-/AudioOutputUnitStart -C/tdef/-/AudioOutputUnitStartAtTimeParams -C/tag/-/AudioOutputUnitStartAtTimeParams -C/func/-/AudioOutputUnitStop -C/tdef/-/AudioPanningInfo -C/tag/-/AudioPlugIn -C++/data/IOAudioDevice/audioPorts -C/func/-/AudioQueueAddPropertyListener -C/func/-/AudioQueueAllocateBuffer -C/func/-/AudioQueueAllocateBufferWithPacketDescriptions -C/tdef/-/AudioQueueBuffer -C/tdef/-/AudioQueueBufferRef -C/func/-/AudioQueueCreateTimeline -C/func/-/AudioQueueDeviceGetCurrentTime -C/func/-/AudioQueueDeviceGetNearestStartTime -C/func/-/AudioQueueDeviceTranslateTime -C/func/-/AudioQueueDispose -C/func/-/AudioQueueDisposeTimeline -C/func/-/AudioQueueEnqueueBuffer -C/func/-/AudioQueueEnqueueBufferWithParameters -C/func/-/AudioQueueFlush -C/func/-/AudioQueueFreeBuffer -C/func/-/AudioQueueGetCurrentTime -C/func/-/AudioQueueGetParameter -C/func/-/AudioQueueGetProperty -C/func/-/AudioQueueGetPropertySize -C/tdef/-/AudioQueueInputCallback -C/tdef/-/AudioQueueLevelMeterState -C/func/-/AudioQueueNewInput -C/func/-/AudioQueueNewOutput -C/func/-/AudioQueueOfflineRender -C/tdef/-/AudioQueueOutputCallback -C/tdef/-/AudioQueueParameterEvent -C/tdef/-/AudioQueueParameterID -C/tdef/-/AudioQueueParameterValue -C/func/-/AudioQueuePause -C/func/-/AudioQueuePrime -C/tdef/-/AudioQueuePropertyID -C/tdef/-/AudioQueuePropertyListenerProc -C/tdef/-/AudioQueueRef -C/func/-/AudioQueueRemovePropertyListener -C/func/-/AudioQueueReset -C/func/-/AudioQueueSetOfflineRenderFormat -C/func/-/AudioQueueSetParameter -C/func/-/AudioQueueSetProperty -C/func/-/AudioQueueStart -C/func/-/AudioQueueStop -C/tdef/-/AudioQueueTimelineRef -C/tdef/-/AudioSampleType -C/tag/-/AudioSelectorControl -C/func/-/AudioServicesAddSystemSoundCompletion -C/func/-/AudioServicesCreateSystemSoundID -C/func/-/AudioServicesDisposeSystemSoundID -C/func/-/AudioServicesGetProperty -C/func/-/AudioServicesGetPropertyInfo -C/func/-/AudioServicesPlayAlertSound -C/func/-/AudioServicesPlaySystemSound -C/tdef/-/AudioServicesPropertyID -C/func/-/AudioServicesRemoveSystemSoundCompletion -C/func/-/AudioServicesSetProperty -C/tdef/-/AudioServicesSystemSoundCompletionProc -C/tag/-/AudioStream -C/func/-/AudioStreamAddPropertyListener -C/tag/-/AudioStreamBasicDescription -C/tdef/-/AudioStreamBasicDescription -C/func/-/AudioStreamGetProperty -C/func/-/AudioStreamGetPropertyInfo -C/tdef/-/AudioStreamID -C/tag/-/AudioStreamPacketDescription -C/tdef/-/AudioStreamPacketDescription -C/tdef/-/AudioStreamPropertyListenerProc -C/tag/-/AudioStreamRangedDescription -C/func/-/AudioStreamRemovePropertyListener -C/func/-/AudioStreamSetProperty -C/tag/-/AudioSubDevice -C/tag/-/AudioSystemObject -C/tag/-/AudioTimeStamp -C/tdef/-/AudioTimeStamp -Objective-C/instm/AUPannerView/audioUnit -Objective-C/instm/AUGenericView/audioUnit -C/tdef/-/AudioUnit -C/func/-/AudioUnitAddPropertyListener -C/func/-/AudioUnitAddRenderNotify -C/tag/-/AudioUnitCocoaViewInfo -C/tdef/-/AudioUnitCocoaViewInfo -C/tag/-/AudioUnitConnection -C/tdef/-/AudioUnitConnection -C/macro/-/AudioUnitDisplayTypeIsCubed -C/macro/-/AudioUnitDisplayTypeIsCubeRoot -C/macro/-/AudioUnitDisplayTypeIsExponential -C/macro/-/AudioUnitDisplayTypeIsLogarithmic -C/macro/-/AudioUnitDisplayTypeIsSquared -C/macro/-/AudioUnitDisplayTypeIsSquareRoot -C/tdef/-/AudioUnitElement -C/tdef/-/AudioUnitExternalBuffer -C/tag/-/AudioUnitExternalBuffer -C/tag/-/AudioUnitFrequencyResponseBin -C/tdef/-/AudioUnitFrequencyResponseBin -C/func/-/AudioUnitGetParameter -C/func/-/AudioUnitGetProperty -C/func/-/AudioUnitGetPropertyInfo -C/func/-/AudioUnitInitialize -C/tag/-/AudioUnitMeterClipping -C/tdef/-/AudioUnitMeterClipping -C/tdef/-/AudioUnitNodeConnection -C/tdef/-/AudioUnitParameter -C/tdef/-/AudioUnitParameterEvent -C/tdef/-/AudioUnitParameterID -C/tdef/-/AudioUnitParameterIDName -C/tag/-/AudioUnitParameterInfo -C/tdef/-/AudioUnitParameterInfo -C/tag/-/AudioUnitParameterNameInfo -C/tdef/-/AudioUnitParameterUnit -C/tdef/-/AudioUnitParameterValue -C/tdef/-/AudioUnitProperty -C/tdef/-/AudioUnitPropertyID -C/tdef/-/AudioUnitPropertyListenerProc -C/func/-/AudioUnitRemovePropertyListener -C/func/-/AudioUnitRemovePropertyListenerWithUserData -C/func/-/AudioUnitRemoveRenderNotify -C/func/-/AudioUnitRender -C/tdef/-/AudioUnitRenderActionFlags -C/func/-/AudioUnitReset -C/tdef/-/AudioUnitSampleType -C/func/-/AudioUnitScheduleParameters -C/tdef/-/AudioUnitScope -C/func/-/AudioUnitSetParameter -C/func/-/AudioUnitSetProperty -C/func/-/AudioUnitUninitialize -C/tag/-/AudioValueRange -C/tdef/-/AudioValueRange -C/tag/-/AudioValueTranslation -C/tdef/-/AudioValueTranslation -C/func/-/audit -C/func/-/audit_submit -C/func/-/auditctl -C/func/-/auditon -Objective-C/cl/-/AUGenericView -C/tdef/-/AUGraph -C/func/-/AUGraphAddNode -C/func/-/AUGraphAddRenderNotify -C/func/-/AUGraphClearConnections -C/func/-/AUGraphClose -C/func/-/AUGraphConnectNodeInput -C/func/-/AUGraphCountNodeConnections -C/func/-/AUGraphCountNodeInteractions -C/func/-/AUGraphDisconnectNodeInput -C/func/-/AUGraphGetConnectionInfo -C/func/-/AUGraphGetCPULoad -C/func/-/AUGraphGetIndNode -C/func/-/AUGraphGetInteractionInfo -C/func/-/AUGraphGetMaxCPULoad -C/func/-/AUGraphGetNodeConnections -C/func/-/AUGraphGetNodeCount -C/func/-/AUGraphGetNodeInfo -C/func/-/AUGraphGetNodeInfoSubGraph -C/func/-/AUGraphGetNodeInteractions -C/func/-/AUGraphGetNumberOfConnections -C/func/-/AUGraphGetNumberOfInteractions -C/func/-/AUGraphInitialize -C/func/-/AUGraphIsInitialized -C/func/-/AUGraphIsNodeSubGraph -C/func/-/AUGraphIsOpen -C/func/-/AUGraphIsRunning -C/func/-/AUGraphNewNode -C/func/-/AUGraphNewNodeSubGraph -C/func/-/AUGraphNodeInfo -C/func/-/AUGraphOpen -C/func/-/AUGraphRemoveNode -C/func/-/AUGraphRemoveRenderNotification -C/func/-/AUGraphRemoveRenderNotify -C/func/-/AUGraphSetNodeInputCallback -C/func/-/AUGraphSetRenderNotification -C/func/-/AUGraphStart -C/func/-/AUGraphStop -C/func/-/AUGraphUninitialize -C/func/-/AUGraphUpdate -C/tdef/-/AUHostVersionIdentifier -C/tag/-/AUHostVersionIdentifier -C/tdef/-/AUInputSamplesInOutputCallback -C/tdef/-/AUInputSamplesInOutputCallbackStruct -C/tag/-/AUInputSamplesInOutputCallbackStruct -C/tdef/-/AUMIDIOutputCallback -C/tag/-/AUMIDIOutputCallbackStruct -C/tdef/-/AUMIDIOutputCallbackStruct -C/tdef/-/AUNode -C/tdef/-/AUNodeInteraction -C/tdef/-/AUNodeRenderCallback -Objective-C/cl/-/AUPannerView -Objective-C/clm/AUPannerView/AUPannerViewWithAudioUnit: -C/tdef/-/AUParameterEventType -C/tdef/-/AUPreset -C/tag/-/AUPreset -C/tdef/-/AUPresetEvent -C/tdef/-/AURenderCallback -C/tag/-/AURenderCallbackStruct -C/tdef/-/AURenderCallbackStruct -C/func/-/auth_destroy -Objective-C/intfm/NSConnectionDelegate/authenticateComponents:withData: -Objective-C/instm/CBUserIdentity/authenticateWithPassword: -Objective-C/intfm/NSConnectionDelegate/authenticationDataForComponents: -Objective-C/instm/NSURLProtectionSpace/authenticationMethod -Objective-C/instm/XGConnection/authenticator -Objective-C/instm/NSObject(XGAuthenticatorDelegate)/authenticatorDidAuthenticate: -Objective-C/instm/NSObject(XGAuthenticatorDelegate)/authenticatorDidNotAuthenticate: -C/func/-/authnone_create -Objective-C/instm/CBIdentity/authority -Objective-C/instm/SFAuthorizationView/authorization -Objective-C/instp/CWInterface/authorization -Objective-C/clm/SFAuthorization/authorization -C/tdef/-/AuthorizationCallbacks -C/tdef/-/AuthorizationContextFlags -C/func/-/AuthorizationCopyInfo -C/func/-/AuthorizationCopyPrivilegedReference -C/func/-/AuthorizationCopyRights -C/func/-/AuthorizationCreate -C/func/-/AuthorizationCreateFromExternalForm -C/tdef/-/AuthorizationEngineRef -C/tdef/-/AuthorizationEnvironment -C/func/-/AuthorizationExecuteWithPrivileges -C/tag/-/AuthorizationExternalForm -C/tdef/-/AuthorizationFlags -C/func/-/AuthorizationFree -C/func/-/AuthorizationFreeItemSet -C/tdef/-/AuthorizationItem -C/tdef/-/AuthorizationItemSet -C/func/-/AuthorizationMakeExternalForm -C/tdef/-/AuthorizationMechanismId -C/tdef/-/AuthorizationMechanismRef -C/tdef/-/AuthorizationPluginCreate -C/tdef/-/AuthorizationPluginRef -C/tdef/-/AuthorizationRef -Objective-C/instm/SFAuthorization/authorizationRef -C/tdef/-/AuthorizationResult -C/func/-/AuthorizationRightGet -C/func/-/AuthorizationRightRemove -Objective-C/instm/SFAuthorizationView/authorizationRights -C/tdef/-/AuthorizationRights -C/func/-/AuthorizationRightSet -C/tdef/-/AuthorizationSessionId -Objective-C/instm/SFAuthorizationView/authorizationState -C/tdef/-/AuthorizationString -C/tdef/-/AuthorizationValue -C/tdef/-/AuthorizationValueVector -Objective-C/instm/NSObject/authorizationViewCreatedAuthorization: -Objective-C/instm/NSObject/authorizationViewDidAuthorize: -Objective-C/instm/NSObject/authorizationViewDidDeauthorize: -Objective-C/instm/NSObject/authorizationViewReleasedAuthorization: -Objective-C/instm/NSObject/authorizationViewShouldDeauthorize: -Objective-C/clm/SFAuthorization/authorizationWithFlags:rights:environment: -Objective-C/instm/SFAuthorizationView/authorize: -Objective-C/instp/PSEntry/authors -Objective-C/instp/PSEntry/authorsForDisplay -C/func/-/authunix_create -C/func/-/authunix_create_default -Objective-C/instm/NSObject/autoContentAccessingProxy -C++/data/IOInterruptEventSource/autoDisable -Objective-C/instm/NSPopUpButtonCell/autoenablesItems -Objective-C/instm/NSPopUpButton/autoenablesItems -Objective-C/instm/NSMenu/autoenablesItems -JavaScript/data/HTMLInputElement/autofocus -JavaScript/data/HTMLTextAreaElement/autofocus -JavaScript/data/HTMLDataGridElement/autofocus -JavaScript/data/HTMLSelectElement/autofocus -JavaScript/data/HTMLButtonElement/autofocus -Objective-C/instm/NSBrowser/autohidesScroller -Objective-C/instm/NSScrollView/autohidesScrollers -Objective-C/instm/IKImageView/autohidesScrollers -Objective-C/instp/IKImageView/autohidesScrollers -Objective-C/instm/QTCaptureDecompressedVideoOutput/automaticallyDropsLateVideoFrames -Objective-C/instm/NSSpellChecker/automaticallyIdentifiesLanguages -Objective-C/clm/NSObject/automaticallyNotifiesObserversForKey: -Objective-C/clm/NSManagedObject/automaticallyNotifiesObserversForKey: -Objective-C/instm/NSObjectController/automaticallyPreparesContent -Objective-C/instm/NSArrayController/automaticallyPreparesContent -Objective-C/instm/NSArrayController/automaticallyRearrangesObjects -Objective-C/instm/NSArrayController/automaticRearrangementKeyPaths -Objective-C/instm/QTMovie/autoplay -JavaScript/data/HTMLMediaElement/autoplay -Objective-C/instp/IKSlideshow/autoPlayDelay -Objective-C/instm/IKSlideshow/autoPlayDelay -Objective-C/instm/NSWindow/autorecalculatesContentBorderThicknessForEdge: -Objective-C/instm/NSWindow/autorecalculatesKeyViewLoop -Objective-C/instm/NSAutoreleasePool/autorelease -Objective-C/intfm/NSObject/autorelease -Objective-C/instm/NSStepperCell/autorepeat -Objective-C/instm/NSStepper/autorepeat -Objective-C/instm/IKImageView/autoresizes -Objective-C/instp/IKImageView/autoresizes -Objective-C/instm/NSTableView/autoresizesAllColumnsToFit -Objective-C/instm/NSOutlineView/autoresizesOutlineColumn -Objective-C/instm/NSView/autoresizesSubviews -Objective-C/instm/NSView/autoresizingMask -Objective-C/instm/CALayer/autoresizingMask -Objective-C/instp/CALayer/autoresizingMask -Objective-C/intfp/CAMediaTiming/autoreverses -Objective-C/intfm/CAMediaTiming/autoreverses -Objective-C/instm/NSDocument/autosavedContentsFileURL -Objective-C/instm/NSDocument/autosaveDocumentWithDelegate:didAutosaveSelector:contextInfo: -Objective-C/instm/NSOutlineView/autosaveExpandedItems -Objective-C/instp/ABPeoplePickerView/autosaveName -Objective-C/instm/ABPeoplePickerView/autosaveName -Objective-C/instm/NSSplitView/autosaveName -Objective-C/instm/NSTableView/autosaveName -Objective-C/instm/WebPreferences/autosaves -Objective-C/instm/NSToolbar/autosavesConfiguration -Objective-C/instm/NSTableView/autosaveTableColumns -Objective-C/instm/NSPreferencePane/autoSaveTextFields -Objective-C/instm/NSDocumentController/autosavingDelay -Objective-C/instm/NSDocument/autosavingFileType -Objective-C/instm/PDFView/autoScales -Objective-C/instm/NSClipView/autoscroll: -Objective-C/instm/NSView/autoscroll: -C/func/-/AutoSizeDataBrowserListViewColumns -Objective-C/instm/NSMatrix/autosizesCells -Objective-C/instm/QCView/autostartsRendering -Objective-C/clm/NSCalendar/autoupdatingCurrentCalendar -Objective-C/clm/NSLocale/autoupdatingCurrentLocale -Objective-C/instm/NSToolbarItem/autovalidates -C/econst/-/AUViewParametersDisplayFlag -C/econst/-/AUViewPropertiesDisplayFlag -C/econst/-/AUViewTitleDisplayFlag -Objective-C/clm/NSColorList/availableColorLists -Objective-C/clm/NSColorSpace/availableColorSpacesWithModel: -Objective-C/instm/NSFileHandle/availableData -Objective-C/instm/NSFontManager/availableFontFamilies -Objective-C/instm/NSFontManager/availableFontNamesMatchingFontDescriptor: -Objective-C/instm/NSFontManager/availableFontNamesWithTraits: -Objective-C/instm/NSFontManager/availableFonts -Objective-C/instm/NSSpellChecker/availableLanguages -Objective-C/clm/NSLocale/availableLocaleIdentifiers -Objective-C/instm/NSFontManager/availableMembersOfFontFamily: -Objective-C/instm/NSURLHandle/availableResourceData -Objective-C/clm/NSString/availableStringEncodings -Objective-C/instm/NSPasteboardItem/availableTypeFromArray: -Objective-C/instm/NSPasteboard/availableTypeFromArray: -Objective-C/instm/QTCaptureView/availableVideoPreviewConnections -Objective-C/clm/NSSpeechSynthesizer/availableVoices -JavaScript/data/Screen/availHeight -JavaScript/data/Screen/availLeft -JavaScript/data/Screen/availTop -JavaScript/data/Screen/availWidth -C++/instm/IOFireWireAVCSubUnit/AVCCommand -C++/instm/IOFireWireAVCNub/AVCCommand -C++/instm/IOFireWireAVCUnit/AVCCommand -C++/cl/-/AVCCommandHandlerInfo -C++/instm/IOFireWireAVCNub/AVCCommandInGeneration -C++/instm/IOFireWireAVCUnit/AVCCommandInGeneration -C++/instm/IOFireWireAVCSubUnit/AVCCommandInGeneration -C++/cl/-/AVCConnectionRecord -C++/cl/-/AVCSubunitInfo -Objective-C/instm/NSTreeController/avoidsEmptySelection -Objective-C/instm/NSArrayController/avoidsEmptySelection -C/data/-/awaitingAck -Objective-C/instm/NSObject/awakeAfterUsingCoder: -Objective-C/instm/AMBundleAction/awakeFromBundle -Objective-C/instm/NSManagedObject/awakeFromFetch -Objective-C/instm/NSManagedObject/awakeFromInsert -Objective-C/instm/NSObject/awakeFromNib -Objective-C/instm/NSManagedObject/awakeFromSnapshotEvents: -C/func/-/AXAPIEnabled -C/tdef/-/AXCopyMultipleAttributeOptions -C/macro/-/AXDescendingSortDirection -JavaScript/data/HTMLTableCellElement/axis -C/func/-/AXIsProcessTrusted -C/func/-/AXMakeProcessTrusted -C/func/-/AXNotificationHIObjectNotify -C/func/-/AXObserverAddNotification -C/tdef/-/AXObserverCallback -C/func/-/AXObserverCreate -C/func/-/AXObserverGetRunLoopSource -C/func/-/AXObserverGetTypeID -C/tdef/-/AXObserverRef -C/func/-/AXObserverRemoveNotification -C/func/-/AXUIElementCopyActionDescription -C/func/-/AXUIElementCopyActionNames -C/func/-/AXUIElementCopyAttributeNames -C/func/-/AXUIElementCopyAttributeValue -C/func/-/AXUIElementCopyAttributeValues -C/func/-/AXUIElementCopyElementAtPosition -C/func/-/AXUIElementCopyMultipleAttributeValues -C/func/-/AXUIElementCopyParameterizedAttributeNames -C/func/-/AXUIElementCopyParameterizedAttributeValue -C/func/-/AXUIElementCreateApplication -C/func/-/AXUIElementCreateSystemWide -C/func/-/AXUIElementCreateWithDataBrowserAndItemInfo -C/func/-/AXUIElementCreateWithHIObjectAndIdentifier -C/func/-/AXUIElementGetAttributeValueCount -C/func/-/AXUIElementGetDataBrowserItemInfo -C/func/-/AXUIElementGetHIObject -C/func/-/AXUIElementGetIdentifier -C/func/-/AXUIElementGetPid -C/func/-/AXUIElementGetTypeID -C/func/-/AXUIElementIsAttributeSettable -C/func/-/AXUIElementPerformAction -C/func/-/AXUIElementPostKeyboardEvent -C/tdef/-/AXUIElementRef -C/func/-/AXUIElementSetAttributeValue -C/func/-/AXUIElementSetMessagingTimeout -C/func/-/AXValueCreate -C/func/-/AXValueGetType -C/func/-/AXValueGetTypeID -C/func/-/AXValueGetValue -C/tdef/-/AXValueRef -C/tdef/-/AXValueType -JavaScript/data/SVGFEDistantLightElement/azimuth -JavaScript/data/SVGMatrix/b -JavaScript/data/WebKitCSSMatrix/b -C/econst/-/bAccessCntl -JavaScript/instm/window/back -JavaScript/clconst/WebGLRenderingContext/BACK -Objective-C/instm/WebView/backForwardList -JavaScript/data/HTMLBodyElement/background -Objective-C/instm/NSClipView/backgroundColor -Objective-C/instm/NSScrollView/backgroundColor -Objective-C/instm/QCCompositionPickerView/backgroundColor -Objective-C/instm/QCCompositionParameterView/backgroundColor -Objective-C/instm/PDFThumbnailView/backgroundColor -Objective-C/instm/PDFAnnotationChoiceWidget/backgroundColor -Objective-C/instm/PDFView/backgroundColor -Objective-C/instm/PDFAnnotationTextWidget/backgroundColor -Objective-C/instm/PDFAnnotationButtonWidget/backgroundColor -Objective-C/instm/NSDatePicker/backgroundColor -Objective-C/instm/NSMatrix/backgroundColor -Objective-C/instm/NSButtonCell/backgroundColor -Objective-C/instm/NSDatePickerCell/backgroundColor -Objective-C/instm/NSBrowser/backgroundColor -Objective-C/instm/NSTextBlock/backgroundColor -Objective-C/instm/NSPathCell/backgroundColor -Objective-C/instm/NSTextField/backgroundColor -Objective-C/instm/NSImage/backgroundColor -Objective-C/instm/NSTextView/backgroundColor -Objective-C/instm/NSWindow/backgroundColor -Objective-C/instm/NSTableView/backgroundColor -Objective-C/instm/NSPathControl/backgroundColor -Objective-C/instm/NSTextFieldCell/backgroundColor -Objective-C/instm/NSText/backgroundColor -Objective-C/instp/CALayer/backgroundColor -Objective-C/instm/IKImageView/backgroundColor -Objective-C/instm/CALayer/backgroundColor -Objective-C/instp/IKImageView/backgroundColor -Objective-C/instm/NSCollectionView/backgroundColors -Objective-C/instm/NSView/backgroundFilters -Objective-C/instm/CALayer/backgroundFilters -Objective-C/instp/CALayer/backgroundFilters -Objective-C/instm/IKImageBrowserView/backgroundLayer -Objective-C/instm/NSLayoutManager/backgroundLayoutEnabled -Objective-C/instm/NSURLHandle/backgroundLoadDidFailWithReason: -Objective-C/instm/NSCell/backgroundStyle -Objective-C/instm/NSWindow/backingLocation -Objective-C/clm/ScreenSaverView/backingStoreType -Objective-C/instm/NSWindow/backingType -Objective-C/instm/WebBackForwardList/backItem -Objective-C/instm/WebBackForwardList/backListCount -Objective-C/instm/WebBackForwardList/backListWithLimit: -C/func/-/backtrace -C/func/-/backtrace_symbols -C/func/-/backtrace_symbols_fd -Objective-C/clm/IMAVButton/backwardButton -JavaScript/clconst/RangeException/BAD_BOUNDARYPOINTS_ERR -C/macro/-/BAD_CAST -C/econst/-/badCallOrderErr -C/econst/-/badComponentInstance -C/econst/-/badComponentSelector -C/econst/-/badDepthErr -C/econst/-/badDictFormat -C/econst/-/badExtResource -C/econst/-/badFCBErr -C/econst/-/badFidErr -Objective-C/instm/NSDockTile/badgeLabel -C/econst/-/badInputText -C/econst/-/badMDBErr -C/econst/-/badMovErr -C/econst/-/badPasteboardFlavorErr -C/econst/-/badPasteboardIndexErr -C/econst/-/badPasteboardItemErr -C/econst/-/badPasteboardSyncErr -C/econst/-/bAllowCDiDataHandler -C/econst/-/bAncestorModDateChanges -JavaScript/cl/-/BarInfo -C/func/-/barrier -C/macro/-/BASE_BUFFER_SIZE -JavaScript/data/SVGFETurbulenceElement/baseFrequencyX -JavaScript/data/SVGFETurbulenceElement/baseFrequencyY -Objective-C/intfm/NSTextInputClient/baselineDeltaForCharacterAtIndex: -Objective-C/instm/NSRulerView/baselineLocation -Objective-C/instm/NSTypesetter/baselineOffsetInLayoutManager:glyphIndex: -Objective-C/instm/DRFSObject/baseName -C/func/-/basename -JavaScript/data/DOMSelection/baseNode -JavaScript/data/DOMSelection/baseOffset -Objective-C/instm/NSRelativeSpecifier/baseSpecifier -JavaScript/data/core/baseURI -Objective-C/instp/PSEntry/baseURL -Objective-C/instm/NSURL/baseURL -JavaScript/data/SVGAnimatedAngle/baseVal -JavaScript/data/SVGAnimatedNumberList/baseVal -JavaScript/data/SVGAnimatedLength/baseVal -JavaScript/data/SVGAnimatedTransformList/baseVal -JavaScript/data/SVGAnimatedString/baseVal -JavaScript/data/SVGAnimatedRect/baseVal -JavaScript/data/SVGAnimatedPreserveAspectRatio/baseVal -JavaScript/data/SVGAnimatedNumber/baseVal -JavaScript/data/SVGAnimatedEnumeration/baseVal -JavaScript/data/SVGAnimatedInteger/baseVal -JavaScript/data/SVGAnimatedBoolean/baseVal -JavaScript/data/SVGAnimatedLengthList/baseVal -Objective-C/instm/NSControl/baseWritingDirection -Objective-C/instm/NSParagraphStyle/baseWritingDirection -Objective-C/instm/NSText/baseWritingDirection -Objective-C/instm/NSCell/baseWritingDirection -C++/cl/-/basic_ios -C/func/-/baudrate -C/func/-/bcmp -C/func/-/bcopy -C/econst/-/bdNamErr -C/econst/-/bDoNotDisplay -Objective-C/instm/NSTextView/becomeFirstResponder -Objective-C/instm/NSResponder/becomeFirstResponder -Objective-C/instm/NSWindow/becomeKeyWindow -Objective-C/instm/NSWindow/becomeMainWindow -Objective-C/instm/NSPanel/becomesKeyOnlyIfNeeded -C/func/-/beep -JavaScript/cl/-/BeforeLoadEvent -JavaScript/data/DOMWindow/BeforeLoadEvent -Objective-C/clm/CATransaction/begin -Objective-C/instm/XGAuthenticator/beginAuthentication: -C/func/-/BeginCGContextForApplicationDockTile -Objective-C/intfm/NSDiscardableContent/beginContentAccess -Objective-C/instm/NSView/beginDocument -Objective-C/instm/NSMutableAttributedString/beginEditing -Objective-C/intfm/ApertureEditPlugIn/beginEditSession -JavaScript/instm/ElementTimeControl/beginElement -JavaScript/instm/ElementTimeControl/beginElementAt -Objective-C/instm/NSEntityMigrationPolicy/beginEntityMapping:manager:error: -Objective-C/instm/PDFDocument/beginFindString:withOptions: -Objective-C/instm/PDFDocument/beginFindStrings:withOptions: -Objective-C/instm/NSOpenPanel/beginForDirectory:file:types:modelessDelegate:didEndSelector:contextInfo: -Objective-C/instm/CARenderer/beginFrameAtTime:timeStamp: -Objective-C/instm/NSResponder/beginGestureWithEvent: -Objective-C/clm/NSAnimationContext/beginGrouping -Objective-C/instm/NSTypesetter/beginLineWithGlyphAtIndex: -Objective-C/instm/NSURLHandle/beginLoadInBackground -Objective-C/instm/ABPerson/beginLoadingImageDataForClient: -C/func/-/BeginMediaEdits -Objective-C/instm/NSApplication/beginModalSessionForWindow: -Objective-C/instm/NSApplication/beginModalSessionForWindow:relativeToWindow: -Objective-C/instm/NSView/beginPageInRect:atPlacement: -Objective-C/instm/NSTypesetter/beginParagraph -JavaScript/instm/CanvasRenderingContext2D/beginPath -Objective-C/instm/IKPictureTaker/beginPictureTakerSheetForWindow:withDelegate:didEndSelector:contextInfo: -Objective-C/instm/IKPictureTaker/beginPictureTakerWithDelegate:didEndSelector:contextInfo: -Objective-C/intfm/QLPreviewPanelController/beginPreviewPanelControl: -Objective-C/instm/DRBurnProgressPanel/beginProgressPanelForBurn:layout: -Objective-C/instm/DREraseProgressPanel/beginProgressPanelForErase: -Objective-C/instm/DRBurnProgressPanel/beginProgressSheetForBurn:layout:modalForWindow: -Objective-C/instm/DREraseProgressPanel/beginProgressSheetForErase:modalForWindow: -C/func/-/BeginQDContextForApplicationDockTile -Objective-C/clm/ISyncSession/beginSessionInBackgroundWithClient:entityNames:target:selector: -Objective-C/clm/ISyncSession/beginSessionInBackgroundWithClient:entityNames:target:selector:lastAnchors: -Objective-C/clm/ISyncSession/beginSessionWithClient:entityNames:beforeDate: -Objective-C/clm/ISyncSession/beginSessionWithClient:entityNames:beforeDate:lastAnchors: -Objective-C/instm/DRSetupPanel/beginSetupSheetForWindow:modalDelegate:didEndSelector:contextInfo: -Objective-C/instm/NSApplication/beginSheet:modalForWindow:modalDelegate:didEndSelector:contextInfo: -Objective-C/instm/SFKeychainSavePanel/beginSheetForDirectory:file:modalForWindow:modalDelegate:didEndSelector:contextInfo: -Objective-C/instm/NSSavePanel/beginSheetForDirectory:file:modalForWindow:modalDelegate:didEndSelector:contextInfo: -Objective-C/instm/NSOpenPanel/beginSheetForDirectory:file:types:modalForWindow:modalDelegate:didEndSelector:contextInfo: -Objective-C/instm/SFCertificatePanel/beginSheetForWindow:modalDelegate:didEndSelector:contextInfo:certificates:showGroup: -Objective-C/instm/SFChooseIdentityPanel/beginSheetForWindow:modalDelegate:didEndSelector:contextInfo:identities:message: -Objective-C/instm/SFKeychainSettingsPanel/beginSheetForWindow:modalDelegate:didEndSelector:contextInfo:settings:keychain: -Objective-C/instm/SFCertificateTrustPanel/beginSheetForWindow:modalDelegate:didEndSelector:contextInfo:trust:message: -Objective-C/instm/NSSavePanel/beginSheetModalForWindow:completionHandler: -Objective-C/instm/ABIdentityPicker/beginSheetModalForWindow:modalDelegate:didEndSelector:contextInfo: -Objective-C/instm/NSAlert/beginSheetModalForWindow:modalDelegate:didEndSelector:contextInfo: -Objective-C/instm/IOBluetoothServiceBrowserController/beginSheetModalForWindow:modalDelegate:didEndSelector:contextInfo: -Objective-C/instm/IOBluetoothDeviceSelectorController/beginSheetModalForWindow:modalDelegate:didEndSelector:contextInfo: -Objective-C/instm/IOBluetoothObjectPushUIController/beginSheetModalForWindow:modalDelegate:didEndSelector:contextInfo: -Objective-C/instm/IKFilterBrowserPanel/beginSheetWithOptions:modalForWindow:modalDelegate:didEndSelector:contextInfo: -Objective-C/instm/NSPageLayout/beginSheetWithPrintInfo:modalForWindow:delegate:didEndSelector:contextInfo: -Objective-C/instm/NSPrintPanel/beginSheetWithPrintInfo:modalForWindow:delegate:didEndSelector:contextInfo: -Objective-C/intfp/CAMediaTiming/beginTime -Objective-C/intfm/CAMediaTiming/beginTime -Objective-C/instm/NSUndoManager/beginUndoGrouping -Objective-C/instm/NSSavePanel/beginWithCompletionHandler: -Objective-C/instm/IKFilterBrowserPanel/beginWithOptions:modelessDelegate:didEndSelector:contextInfo: -C/func/-/ber_alloc_t -C/func/-/ber_bvarray_add -C/func/-/ber_bvarray_free -C/func/-/ber_bvdup -C/func/-/ber_bvecadd -C/func/-/ber_bvecfree -C/func/-/ber_bvfree -C/func/-/ber_bvstr -C/func/-/ber_bvstrdup -C/func/-/ber_dupbv -C/func/-/ber_first_element -C/func/-/ber_flush -C/func/-/ber_flush2 -C/func/-/ber_free -C/func/-/ber_get_bitstring -C/func/-/ber_get_bitstringa -C/func/-/ber_get_boolean -C/func/-/ber_get_enum -C/func/-/ber_get_int -C/func/-/ber_get_next -C/func/-/ber_get_null -C/func/-/ber_get_stringa -C/func/-/ber_get_stringal -C/func/-/ber_get_stringb -C/func/-/ber_get_stringbv -C/func/-/ber_init -C/func/-/ber_init2 -C/func/-/ber_memalloc -C/func/-/ber_memcalloc -C/func/-/ber_memfree -C/func/-/ber_memrealloc -C/func/-/ber_memvfree -C/func/-/ber_next_element -C/func/-/ber_peek_tag -C/func/-/ber_printf -C/func/-/ber_put_bitstring -C/func/-/ber_put_boolean -C/func/-/ber_put_enum -C/func/-/ber_put_int -C/func/-/ber_put_null -C/func/-/ber_put_ostring -C/func/-/ber_put_seq -C/func/-/ber_put_set -C/func/-/ber_put_string -C/func/-/ber_scanf -C/func/-/ber_skip_tag -C/func/-/ber_sockbuf_add_io -C/func/-/ber_sockbuf_alloc -C/func/-/ber_sockbuf_ctrl -C/func/-/ber_sockbuf_free -C/func/-/ber_sockbuf_remove_io -C/func/-/ber_start_seq -C/func/-/ber_start_set -C/func/-/ber_str2bv -Objective-C/instm/NSImage/bestRepresentationForDevice: -Objective-C/instm/NSImage/bestRepresentationForRect:context:hints: -Objective-C/instm/NSButton/bezelStyle -Objective-C/instm/NSButtonCell/bezelStyle -Objective-C/instm/NSTextField/bezelStyle -Objective-C/instm/NSTextFieldCell/bezelStyle -JavaScript/instm/CanvasRenderingContext2D/bezierCurveTo -Objective-C/clm/NSBezierPath/bezierPath -Objective-C/instm/NSBezierPath/bezierPathByFlatteningPath -Objective-C/instm/NSBezierPath/bezierPathByReversingPath -Objective-C/clm/NSBezierPath/bezierPathWithOvalInRect: -Objective-C/clm/NSBezierPath/bezierPathWithRect: -Objective-C/clm/NSBezierPath/bezierPathWithRoundedRect:xRadius:yRadius: -C/func/-/BF_cbc_encrypt -C/func/-/BF_cfb64_encrypt -C/func/-/BF_decrypt -C/func/-/BF_ecb_encrypt -C/func/-/BF_encrypt -C/func/-/BF_ofb64_encrypt -C/func/-/BF_options -C/func/-/BF_set_key -JavaScript/data/HTMLTableCellElement/bgColor -JavaScript/data/HTMLTableElement/bgColor -JavaScript/data/HTMLDocument/bgColor -JavaScript/data/HTMLBodyElement/bgColor -JavaScript/data/HTMLTableRowElement/bgColor -C/econst/-/bHasBlankAccessPrivileges -C/econst/-/bHasBTreeMgr -C/econst/-/bHasCatSearch -C/econst/-/bHasCopyFile -C/econst/-/bHasDesktopMgr -C/econst/-/bHasExtFSVol -C/econst/-/bHasFileIDs -C/econst/-/bHasFolderLock -C/econst/-/bHasMoveRename -C/econst/-/bHasOpenDeny -C/econst/-/bHasPersonalAccessPrivileges -C/econst/-/bHasShortName -C/econst/-/bHasUserGroupList -Objective-C/instm/NSATSTypesetter/bidiProcessingEnabled -Objective-C/instm/NSTypesetter/bidiProcessingEnabled -C/tdef/-/BigEndianFixed -C/tdef/-/BigEndianLong -C/tdef/-/BigEndianOStype -C/tdef/-/BigEndianShort -C/tdef/-/BigEndianUnsignedFixed -C/tdef/-/BigEndianUnsignedLong -C/tdef/-/BigEndianUnsignedShort -C++/macro/-/bigOutputSegment -C/tdef/-/BigSInt16 -C/tdef/-/BigSInt32 -C/tdef/-/BigSInt64 -C/tdef/-/BigUInt16 -C/tdef/-/BigUInt32 -C/tdef/-/BigUInt64 -Objective-C/instm/FxTexture/bind -C/func/-/bind -Objective-C/instm/NSObject/bind:toObject:withKeyPath:options: -JavaScript/instm/WebGLRenderingContext/bindAttribLocation -JavaScript/instm/WebGLRenderingContext/bindBuffer -JavaScript/instm/WebGLRenderingContext/bindFramebuffer -JavaScript/instm/WebGLRenderingContext/bindRenderbuffer -C/func/-/bindresvport -C/func/-/bindresvport_sa -JavaScript/instm/WebGLRenderingContext/bindTexture -Objective-C/intfm/QCPlugInInputImageSource/bindTextureRepresentationToCGLContext:textureUnit:normalizeCoordinates: -C/func/-/bio -C/func/-/BIO_append_filename -C/func/-/BIO_callback_ctrl -C/func/-/BIO_ctrl -C/func/-/BIO_ctrl_get_read_request -C/func/-/BIO_ctrl_get_write_guarantee -C/func/-/BIO_ctrl_pending -C/func/-/BIO_ctrl_reset_read_request -C/func/-/BIO_ctrl_wpending -C/func/-/BIO_debug_callback -C/func/-/BIO_destroy_bio_pair -C/func/-/BIO_do_accept -C/func/-/BIO_do_connect -C/func/-/BIO_eof -C/func/-/BIO_f_base64 -C/func/-/BIO_f_buffer -C/func/-/BIO_f_cipher -C/func/-/BIO_f_md -C/func/-/BIO_f_null -C/func/-/BIO_f_ssl -C/func/-/BIO_find_type -C/func/-/BIO_flush -C/func/-/BIO_free -C/func/-/BIO_free_all -C/func/-/BIO_get_accept_port -C/func/-/BIO_get_bind_mode -C/func/-/BIO_get_callback -C/func/-/BIO_get_callback_arg -C/func/-/BIO_get_cipher_ctx -C/func/-/BIO_get_cipher_status -C/func/-/BIO_get_close -C/func/-/BIO_get_conn_hostname -C/func/-/BIO_get_conn_int_port -C/func/-/BIO_get_conn_ip -C/func/-/BIO_get_conn_port -C/func/-/BIO_get_fd -C/func/-/BIO_get_fp -C/func/-/BIO_get_info_callback -C/func/-/BIO_get_md -C/func/-/BIO_get_md_ctx -C/func/-/BIO_get_mem_data -C/func/-/BIO_get_mem_ptr -C/func/-/BIO_get_num_renegotiates -C/func/-/BIO_get_read_request -C/func/-/BIO_get_retry_BIO -C/func/-/BIO_get_retry_reason -C/func/-/BIO_get_ssl -C/func/-/BIO_get_write_buf_size -C/func/-/BIO_get_write_guarantee -C/func/-/BIO_gets -C/func/-/BIO_int_ctrl -C/func/-/BIO_make_bio_pair -C/func/-/BIO_new -C/func/-/BIO_new_accept -C/func/-/BIO_new_bio_pair -C/func/-/BIO_new_buffer_ssl_connect -C/func/-/BIO_new_connect -C/func/-/BIO_new_fd -C/func/-/BIO_new_file -C/func/-/BIO_new_fp -C/func/-/BIO_new_mem_buf -C/func/-/BIO_new_socket -C/func/-/BIO_new_ssl -C/func/-/BIO_new_ssl_connect -C/func/-/BIO_next -C/func/-/BIO_pending -C/func/-/BIO_pop -C/func/-/BIO_ptr_ctrl -C/func/-/BIO_push -C/func/-/BIO_puts -C/func/-/BIO_read -C/func/-/BIO_read_filename -C/func/-/BIO_reset -C/func/-/BIO_retry_type -C/func/-/BIO_rw_filename -C/func/-/BIO_s_accept -C/func/-/BIO_s_bio -C/func/-/BIO_s_connect -C/func/-/BIO_s_fd -C/func/-/BIO_s_file -C/func/-/BIO_s_mem -C/func/-/BIO_s_null -C/func/-/BIO_s_socket -C/func/-/BIO_seek -C/func/-/BIO_set -C/func/-/BIO_set_accept_bios -C/func/-/BIO_set_accept_port -C/func/-/BIO_set_bind_mode -C/func/-/BIO_set_callback -C/func/-/BIO_set_callback_arg -C/func/-/BIO_set_cipher -C/func/-/BIO_set_close -C/func/-/BIO_set_conn_hostname -C/func/-/BIO_set_conn_int_port -C/func/-/BIO_set_conn_ip -C/func/-/BIO_set_conn_port -C/func/-/BIO_set_fd -C/func/-/BIO_set_fp -C/func/-/BIO_set_info_callback -C/func/-/BIO_set_md -C/func/-/BIO_set_mem_buf -C/func/-/BIO_set_mem_eof_return -C/func/-/BIO_set_nbio -C/func/-/BIO_set_nbio_accept -C/func/-/BIO_set_ssl -C/func/-/BIO_set_ssl_mode -C/func/-/BIO_set_ssl_renegotiate_bytes -C/func/-/BIO_set_ssl_renegotiate_timeout -C/func/-/BIO_set_write_buf_size -C/func/-/BIO_should_io_special -C/func/-/BIO_should_read -C/func/-/BIO_should_retry -C/func/-/BIO_should_write -C/func/-/BIO_shutdown_wr -C/func/-/BIO_ssl_copy_session_id -C/func/-/BIO_ssl_shutdown -C/func/-/BIO_tell -C/func/-/BIO_vfree -C/func/-/BIO_wpending -C/func/-/BIO_write -C/func/-/BIO_write_filename -Objective-C/instp/CAEmitterCell/birthRate -Objective-C/instm/CAEmitterLayer/birthRate -Objective-C/instp/CAEmitterLayer/birthRate -Objective-C/instm/CAEmitterCell/birthRate -C/econst/-/bIsAutoMounted -C/econst/-/bIsCasePreserving -C/econst/-/bIsCaseSensitive -C/econst/-/bIsEjectable -C/econst/-/bIsOnExternalBus -C/econst/-/bIsOnInternalBus -C/econst/-/bIsRemovable -C/func/-/bit_alloc -C/func/-/bit_clear -C/func/-/bit_decl -C/func/-/bit_ffc -C/func/-/bit_ffs -C/func/-/bit_nclear -C/func/-/bit_nset -C/func/-/bit_set -C/func/-/bit_test -C/func/-/BitmapBitOrder -Objective-C/instm/NSBitmapImageRep/bitmapData -Objective-C/instm/NSBitmapImageRep/bitmapFormat -Objective-C/instm/NSBitmapImageRep/bitmapImageRepByConvertingToColorSpace:renderingIntent: -Objective-C/instm/NSBitmapImageRep/bitmapImageRepByRetaggingWithColorSpace: -Objective-C/instm/NSView/bitmapImageRepForCachingDisplayInRect: -C/func/-/BitmapPad -Objective-C/instm/NSCharacterSet/bitmapRepresentation -C/func/-/BitmapUnit -C++/instm/IOATADevConfig/bitSigToNumeric -Objective-C/instm/NSBitmapImageRep/bitsPerPixel -Objective-C/instm/NSImageRep/bitsPerSample -C/func/-/bitstr_size -C/func/-/bitstring -C/func/-/bkgd -C/func/-/bkgdset -C/func/-/bkgrnd -C/func/-/bkgrndset -C/econst/-/bL2PCanMapFileBlocks -Objective-C/clm/NSColor/blackColor -Objective-C/instm/NSColor/blackComponent -C/func/-/BlackPixel -C/func/-/BlackPixelOfScreen -C/econst/-/blend -JavaScript/clconst/WebGLRenderingContext/BLEND -JavaScript/clconst/WebGLRenderingContext/BLEND_COLOR -JavaScript/clconst/WebGLRenderingContext/BLEND_DST_ALPHA -JavaScript/clconst/WebGLRenderingContext/BLEND_DST_RGB -JavaScript/clconst/WebGLRenderingContext/BLEND_EQUATION -JavaScript/clconst/WebGLRenderingContext/BLEND_EQUATION_ALPHA -JavaScript/clconst/WebGLRenderingContext/BLEND_EQUATION_RGB -JavaScript/clconst/WebGLRenderingContext/BLEND_SRC_ALPHA -JavaScript/clconst/WebGLRenderingContext/BLEND_SRC_RGB -JavaScript/instm/WebGLRenderingContext/blendColor -Objective-C/instm/NSColor/blendedColorWithFraction:ofColor: -JavaScript/instm/WebGLRenderingContext/blendEquation -JavaScript/instm/WebGLRenderingContext/blendEquationSeparate -JavaScript/instm/WebGLRenderingContext/blendFunc -JavaScript/instm/WebGLRenderingContext/blendFuncSeparate -C/econst/-/bLimitFCBs -JavaScript/cl/-/Blob -JavaScript/data/DOMWindow/Blob -C/econst/-/bLocalWList -Objective-C/clm/NSBlockOperation/blockOperationWithBlock: -Objective-C/instm/NSSpeechRecognizer/blocksOtherRecognizers -C/func/-/blowfish -Objective-C/instm/CIColor/blue -JavaScript/data/RGBColor/blue -JavaScript/clconst/WebGLRenderingContext/BLUE_BITS -Objective-C/clm/NSColor/blueColor -Objective-C/instm/NSColor/blueComponent -Objective-C/instm/CAEmitterCell/blueRange -Objective-C/instp/CAEmitterCell/blueRange -Objective-C/instm/CAEmitterCell/blueSpeed -Objective-C/instp/CAEmitterCell/blueSpeed -C/tag/-/BluetoothHCIUSBDeviceMatchingConstants -JavaScript/instm/DOMWindow/blur -JavaScript/clconst/Event/BLUR -JavaScript/instm/Element/blur -C/tag/-/bm12Cursor -C/tag/-/bm18Cursor -C/tag/-/bm34Cursor -C/tag/-/bm38Cursor -C/func/-/bn -C/func/-/BN_add -C/func/-/BN_add_word -C/func/-/bn_add_words -C/func/-/BN_bin2bn -C/func/-/BN_BLINDING_convert -C/func/-/BN_BLINDING_convert_ex -C/func/-/BN_BLINDING_create_param -C/func/-/BN_BLINDING_free -C/func/-/BN_BLINDING_get_flags -C/func/-/BN_BLINDING_get_thread_id -C/func/-/BN_BLINDING_invert -C/func/-/BN_BLINDING_invert_ex -C/func/-/BN_BLINDING_new -C/func/-/BN_BLINDING_set_flags -C/func/-/BN_BLINDING_set_thread_id -C/func/-/BN_BLINDING_update -C/func/-/BN_bn2bin -C/func/-/BN_bn2dec -C/func/-/BN_bn2hex -C/func/-/BN_bn2mpi -C/func/-/bn_check_top -C/func/-/BN_clear -C/func/-/BN_clear_bit -C/func/-/BN_clear_free -C/func/-/BN_cmp -C/func/-/bn_cmp_words -C/func/-/BN_copy -C/func/-/BN_CTX_end -C/func/-/BN_CTX_free -C/func/-/BN_CTX_get -C/func/-/BN_CTX_init -C/func/-/BN_CTX_new -C/func/-/BN_CTX_start -C/func/-/BN_dec2bn -C/func/-/BN_div -C/func/-/BN_div_recp -C/func/-/BN_div_word -C/func/-/bn_div_words -C/func/-/bn_dump -C/func/-/BN_dup -C/func/-/BN_exp -C/func/-/bn_expand -C/func/-/bn_expand2 -C/func/-/bn_fix_top -C/func/-/BN_free -C/func/-/BN_from_montgomery -C/func/-/BN_gcd -C/func/-/BN_generate_prime -C/func/-/BN_get_word -C/func/-/BN_hex2bn -C/func/-/BN_init -C/func/-/bn_internal -C/func/-/BN_is_bit_set -C/func/-/BN_is_negative -C/func/-/BN_is_odd -C/func/-/BN_is_one -C/func/-/BN_is_prime -C/func/-/BN_is_prime_fasttest -C/func/-/BN_is_word -C/func/-/BN_is_zero -C/func/-/BN_lshift -C/func/-/BN_lshift1 -C/func/-/BN_mask_bits -C/func/-/BN_mod -C/func/-/BN_mod_add -C/func/-/BN_mod_exp -C/func/-/BN_mod_inverse -C/func/-/BN_mod_mul -C/func/-/BN_mod_mul_montgomery -C/func/-/BN_mod_mul_reciprocal -C/func/-/BN_mod_sqr -C/func/-/BN_mod_sub -C/func/-/BN_mod_word -C/func/-/BN_MONT_CTX_copy -C/func/-/BN_MONT_CTX_free -C/func/-/BN_MONT_CTX_init -C/func/-/BN_MONT_CTX_new -C/func/-/BN_MONT_CTX_set -C/func/-/BN_mpi2bn -C/func/-/BN_mul -C/func/-/bn_mul_add_words -C/func/-/bn_mul_comba4 -C/func/-/bn_mul_comba8 -C/func/-/bn_mul_high -C/func/-/bn_mul_low_normal -C/func/-/bn_mul_low_recursive -C/func/-/bn_mul_normal -C/func/-/bn_mul_part_recursive -C/func/-/bn_mul_recursive -C/func/-/BN_mul_word -C/func/-/bn_mul_words -C/func/-/BN_new -C/func/-/BN_nnmod -C/func/-/BN_num_bits -C/func/-/BN_num_bits_word -C/func/-/BN_num_bytes -C/func/-/BN_one -C/func/-/BN_print -C/func/-/BN_print_fp -C/func/-/BN_pseudo_rand -C/func/-/BN_pseudo_rand_range -C/func/-/BN_rand -C/func/-/BN_rand_range -C/func/-/BN_RECP_CTX_free -C/func/-/BN_RECP_CTX_init -C/func/-/BN_RECP_CTX_new -C/func/-/BN_RECP_CTX_set -C/func/-/BN_rshift -C/func/-/BN_rshift1 -C/func/-/BN_set_bit -C/func/-/bn_set_high -C/func/-/bn_set_low -C/func/-/bn_set_max -C/func/-/BN_set_negative -C/func/-/BN_set_word -C/func/-/BN_sqr -C/func/-/bn_sqr_comba4 -C/func/-/bn_sqr_comba8 -C/func/-/bn_sqr_normal -C/func/-/bn_sqr_recursive -C/func/-/bn_sqr_words -C/func/-/BN_sub -C/func/-/BN_sub_word -C/func/-/bn_sub_words -C/func/-/BN_swap -C/func/-/BN_to_montgomery -C/func/-/BN_ucmp -C/func/-/BN_value_one -C/func/-/bn_wexpand -C/func/-/BN_zero -C/econst/-/bNoBootBlks -C/econst/-/bNoDeskItems -C/econst/-/bNoLclSync -C/econst/-/bNoMiniFndr -C/econst/-/bNoRootTimes -C/econst/-/bNoSwitchTo -C/econst/-/bNoSysDir -C/econst/-/bNoVNEdit -C/econst/-/bNoVolumeSizes -JavaScript/data/Document/body -Objective-C/clm/NSFont/boldSystemFontOfSize: -Objective-C/clm/NSURL/bookmarkDataWithContentsOfURL:error: -Objective-C/instm/NSURL/bookmarkDataWithOptions:includingResourceValuesForKeys:relativeToURL:error: -C/tdef/-/BOOL -JavaScript/clconst/WebGLRenderingContext/BOOL -JavaScript/clconst/WebGLRenderingContext/BOOL_VEC2 -JavaScript/clconst/WebGLRenderingContext/BOOL_VEC3 -JavaScript/clconst/WebGLRenderingContext/BOOL_VEC4 -JavaScript/data/HTMLInputElement/boolean -JavaScript/data/HTMLDataGridElement/boolean -JavaScript/data/HTMLSelectElement/boolean -JavaScript/clconst/XPathResult/BOOLEAN_TYPE -Objective-C/instm/NSPrinter/booleanForKey:inTable: -Objective-C/instm/NSAppleEventDescriptor/booleanValue -JavaScript/data/XPathResult/booleanValue -Objective-C/instm/NSUserDefaults/boolForKey: -Objective-C/instm/NSNumber/boolValue -Objective-C/instm/NSString/boolValue -Objective-C/instm/PDFAnnotation/border -C/func/-/border -JavaScript/data/HTMLObjectElement/border -JavaScript/data/HTMLTableElement/border -JavaScript/data/HTMLImageElement/border -C/func/-/border_set -Objective-C/instm/NSBox/borderColor -Objective-C/instm/CALayer/borderColor -Objective-C/instp/CALayer/borderColor -Objective-C/instm/NSTextBlock/borderColorForEdge: -Objective-C/instm/NSBox/borderRect -Objective-C/instm/NSScrollView/borderType -Objective-C/instm/NSBox/borderType -Objective-C/instm/NSBox/borderWidth -Objective-C/instp/CALayer/borderWidth -Objective-C/instm/CALayer/borderWidth -JavaScript/clconst/OverflowEvent/BOTH -JavaScript/data/ClientRect/bottom -JavaScript/data/Rect/bottom -Objective-C/instm/NSPrintInfo/bottomMargin -Objective-C/instm/NSEPSImageRep/boundingBox -Objective-C/instm/NSPICTImageRep/boundingBox -Objective-C/instm/DOMNode/boundingBox -Objective-C/instm/NSATSTypesetter/boundingBoxForControlGlyphAtIndex:forTextContainer:proposedLineFragment:glyphPosition:characterIndex: -Objective-C/instm/NSTypesetter/boundingBoxForControlGlyphAtIndex:forTextContainer:proposedLineFragment:glyphPosition:characterIndex: -Objective-C/instm/NSFont/boundingRectForFont -Objective-C/instm/NSFont/boundingRectForGlyph: -Objective-C/instm/NSLayoutManager/boundingRectForGlyphRange:inTextContainer: -Objective-C/instm/NSAttributedString/boundingRectWithSize:options: -Objective-C/instm/NSString/boundingRectWithSize:options:attributes: -Objective-C/instm/NSBezierPath/bounds -Objective-C/intfm/QCPlugInContext/bounds -Objective-C/instm/NSPDFImageRep/bounds -Objective-C/instm/PDFAnnotation/bounds -Objective-C/instp/CARenderer/bounds -Objective-C/instm/CARenderer/bounds -Objective-C/instm/NSView/bounds -Objective-C/instp/CALayer/bounds -Objective-C/instm/CALayer/bounds -Objective-C/instm/PDFPage/boundsForBox: -Objective-C/instm/PDFSelection/boundsForPage: -Objective-C/instm/NSTextTable/boundsRectForBlock:contentRect:inRect:textContainer:characterRange: -Objective-C/instm/NSTextBlock/boundsRectForContentRect:inRect:textContainer:characterRange: -Objective-C/instm/NSLayoutManager/boundsRectForTextBlock:atIndex:effectiveRange: -Objective-C/instm/NSLayoutManager/boundsRectForTextBlock:glyphRange: -Objective-C/instm/NSView/boundsRotation -C/func/-/box -C/func/-/box_set -Objective-C/instm/NSBox/boxType -C/econst/-/bParentModDateChanges -C/tag/-/BPF -C/func/-/bpf_attach -C/tdef/-/BPF_FUNC -C/econst/BPF/BPF_MODE_DISABLED -C/econst/BPF/BPF_MODE_INPUT -C/econst/BPF/BPF_MODE_INPUT_OUTPUT -C/econst/BPF/BPF_MODE_OUTPUT -C/tdef/-/bpf_packet_func -C/tdef/-/bpf_send_func -C/tdef/-/bpf_tap_func -C/func/-/bpf_tap_in -C/tdef/-/bpf_tap_mode -C/func/-/bpf_tap_out -C/func/-/bpfattach -Objective-C/clm/NSBrowserCell/branchImage -Objective-C/instm/NSDistributedLock/breakLock -Objective-C/instm/NSTextView/breakUndoCoalescing -C++/instm/IOBlockStorageDriver/breakUpRequest -Objective-C/instm/NSColor/brightnessComponent -JavaScript/instm/InspectorFrontendHost/bringToFront -C/func/-/brk -Objective-C/instm/NSCondition/broadcast -Objective-C/clm/NSColor/brownColor -Objective-C/clm/IOBluetoothServiceBrowserController/browseDevices:options: -Objective-C/clm/IOBluetoothServiceBrowserController/browseDevicesAsSheetForWindow:options:window: -Objective-C/intfm/NSBrowserDelegate/browser:acceptDrop:atRow:column:dropOperation: -Objective-C/intfm/NSBrowserDelegate/browser:canDragRowsWithIndexes:inColumn:withEvent: -Objective-C/intfm/NSBrowserDelegate/browser:child:ofItem: -Objective-C/intfm/NSBrowserDelegate/browser:createRowsForColumn:inMatrix: -Objective-C/intfm/NSBrowserDelegate/browser:didChangeLastColumn:toColumn: -Objective-C/intfm/NSBrowserDelegate/browser:draggingImageForRowsWithIndexes:inColumn:withEvent:offset: -Objective-C/intfm/NSBrowserDelegate/browser:headerViewControllerForItem: -Objective-C/intfm/NSBrowserDelegate/browser:heightOfRow:inColumn: -Objective-C/intfm/NSBrowserDelegate/browser:isColumnValid: -Objective-C/intfm/NSBrowserDelegate/browser:isLeafItem: -Objective-C/intfm/NSBrowserDelegate/browser:namesOfPromisedFilesDroppedAtDestination:forDraggedRowsWithIndexes:inColumn: -Objective-C/intfm/NSBrowserDelegate/browser:nextTypeSelectMatchFromRow:toRow:inColumn:forString: -Objective-C/intfm/NSBrowserDelegate/browser:numberOfChildrenOfItem: -Objective-C/intfm/NSBrowserDelegate/browser:numberOfRowsInColumn: -Objective-C/intfm/NSBrowserDelegate/browser:objectValueForItem: -Objective-C/intfm/NSBrowserDelegate/browser:previewViewControllerForLeafItem: -Objective-C/intfm/NSBrowserDelegate/browser:selectCellWithString:inColumn: -Objective-C/intfm/NSBrowserDelegate/browser:selectionIndexesForProposedSelection:inColumn: -Objective-C/intfm/NSBrowserDelegate/browser:selectRow:inColumn: -Objective-C/intfm/NSBrowserDelegate/browser:setObjectValue:forItem: -Objective-C/intfm/NSBrowserDelegate/browser:shouldEditItem: -Objective-C/intfm/NSBrowserDelegate/browser:shouldShowCellExpansionForRow:column: -Objective-C/intfm/NSBrowserDelegate/browser:shouldSizeColumn:forUserResize:toWidth: -Objective-C/intfm/NSBrowserDelegate/browser:shouldTypeSelectForEvent:withCurrentSearchString: -Objective-C/intfm/NSBrowserDelegate/browser:sizeToFitWidthOfColumn: -Objective-C/intfm/NSBrowserDelegate/browser:titleOfColumn: -Objective-C/intfm/NSBrowserDelegate/browser:typeSelectStringForRow:inColumn: -Objective-C/intfm/NSBrowserDelegate/browser:validateDrop:proposedRow:column:dropOperation: -Objective-C/intfm/NSBrowserDelegate/browser:willDisplayCell:atRow:column: -Objective-C/intfm/NSBrowserDelegate/browser:writeRowsWithIndexes:inColumn:toPasteboard: -Objective-C/intfm/NSBrowserDelegate/browserColumnConfigurationDidChange: -Objective-C/intfm/NSBrowserDelegate/browserDidScroll: -Objective-C/intfm/NSBrowserDelegate/browserWillScroll: -C/func/-/bsd_signal -Objective-C/instm/DRDevice(StatusConvenience)/bsdName -C/func/-/bsearch -C/func/-/bsearch_b -Objective-C/instp/CWNetwork/bssid -Objective-C/instp/CWInterface/bssid -Objective-C/instp/CWInterface/bssidData -Objective-C/instp/CWNetwork/bssidData -C/func/-/bstring -C/econst/-/bSupports2TBFiles -C/econst/-/bSupportsAsyncRequests -C/econst/-/bSupportsExclusiveLocks -C/econst/-/bSupportsExtendedFileSecurity -C/econst/-/bSupportsFSCatalogSearch -C/econst/-/bSupportsFSExchangeObjects -C/econst/-/bSupportsHFSPlusAPIs -C/econst/-/bSupportsJournaling -C/econst/-/bSupportsLongNames -C/econst/-/bSupportsMultiScriptNames -C/econst/-/bSupportsNamedForks -C/econst/-/bSupportsSubtreeIterators -C/econst/-/bSupportsSymbolicLinks -C/econst/-/bSupportsTrashVolumeCache -JavaScript/instm/DOMWindow/btoa -C/func/-/btowc -C/func/-/btowc_l -C/func/-/btree -C/econst/-/bTrshOffLine -JavaScript/data/Event/bubbles -JavaScript/clconst/Event/BUBBLING_PHASE -C/func/-/buf_alloc -C/func/-/buf_bawrite -C/func/-/buf_bdwrite -C/func/-/buf_biodone -C/func/-/buf_biowait -C/func/-/buf_blkno -C/func/-/buf_bread -C/func/-/buf_breadn -C/func/-/buf_brelse -C/func/-/buf_bwrite -C/func/-/buf_callback -C/func/-/buf_clear -C/func/-/buf_clearflags -C/func/-/buf_clone -C/func/-/buf_count -C/func/-/buf_dataptr -C/func/-/buf_device -C/func/-/buf_dirtyend -C/func/-/buf_dirtyoff -C/func/-/buf_drvdata -C/func/-/buf_error -C/func/-/buf_flags -C/func/-/buf_flushdirtyblks -C/func/-/buf_free -C/func/-/buf_fromcache -C/func/-/buf_fsprivate -C/func/-/buf_fua -C/func/-/buf_getblk -C/func/-/buf_geteblk -C/func/-/buf_invalblkno -C/func/-/buf_invalidateblks -C/func/-/buf_iterate -C/func/-/buf_lblkno -C/func/-/buf_map -C/func/-/buf_markaged -C/func/-/buf_markdelayed -C/func/-/buf_markeintr -C/func/-/buf_markfua -C/func/-/buf_markinvalid -C/func/-/BUF_MEM_free -C/func/-/BUF_MEM_grow -C/func/-/BUF_MEM_new -C/func/-/buf_meta_bread -C/func/-/buf_meta_breadn -C/func/-/buf_proc -C/func/-/buf_rcred -C/func/-/buf_reset -C/func/-/buf_resid -C/func/-/buf_setblkno -C/func/-/buf_setcallback -C/func/-/buf_setcount -C/func/-/buf_setdataptr -C/func/-/buf_setdevice -C/func/-/buf_setdirtyend -C/func/-/buf_setdirtyoff -C/func/-/buf_setdrvdata -C/func/-/buf_seterror -C/func/-/buf_setflags -C/func/-/buf_setfsprivate -C/func/-/buf_setlblkno -C/func/-/buf_setresid -C/func/-/buf_setsize -C/func/-/buf_setupl -C/func/-/buf_setvnode -C/func/-/buf_size -C/func/-/buf_strategy -C/func/-/BUF_strdup -C/func/-/buf_unmap -C/func/-/buf_upl -C/func/-/buf_uploffset -C/func/-/buf_valid -C/func/-/buf_vnode -C/func/-/buf_wcred -C/func/-/buffer -JavaScript/data/ArrayBufferView/buffer -JavaScript/clconst/WebGLRenderingContext/BUFFER_SIZE -JavaScript/clconst/WebGLRenderingContext/BUFFER_USAGE -Objective-C/intfm/QCPlugInInputImageSource/bufferBaseAddress -Objective-C/intfm/QCPlugInInputImageSource/bufferBytesPerRow -Objective-C/intfm/QCPlugInInputImageSource/bufferColorSpace -JavaScript/instm/WebGLRenderingContext/bufferData -JavaScript/data/HTMLMediaElement/buffered -JavaScript/data/WebSocket/bufferedAmount -Objective-C/intfm/QCPlugInInputImageSource/bufferPixelFormat -Objective-C/intfm/QCPlugInInputImageSource/bufferPixelsHigh -Objective-C/intfm/QCPlugInInputImageSource/bufferPixelsWide -JavaScript/instm/WebGLRenderingContext/bufferSubData -C/econst/-/bufTooSmall -Objective-C/instm/NSBundle/builtInPlugInsPath -Objective-C/instm/NSBundle/builtInPlugInsURL -Objective-C/instm/NSPreferencePane/bundle -Objective-C/instm/AMBundleAction/bundle -Objective-C/instm/IMKServer/bundle -Objective-C/clm/NSBundle/bundleForClass: -Objective-C/instm/NSScriptSuiteRegistry/bundleForSuite: -Objective-C/intfm/IMKTextInput/bundleIdentifier -Objective-C/instm/NSRunningApplication/bundleIdentifier -Objective-C/instp/NSRunningApplication/bundleIdentifier -Objective-C/instm/NSBundle/bundleIdentifier -Objective-C/instm/NSBundle/bundlePath -Objective-C/instm/NSRunningApplication/bundleURL -Objective-C/instp/NSRunningApplication/bundleURL -Objective-C/instm/NSBundle/bundleURL -Objective-C/clm/NSBundle/bundleWithIdentifier: -Objective-C/clm/NSBundle/bundleWithPath: -Objective-C/clm/NSBundle/bundleWithURL: -Objective-C/clm/DRBurn/burnForDevice: -Objective-C/instm/DRBurnSetupPanel/burnObject -Objective-C/instm/NSObject(DRBurnProgressPanelDelegateMethods)/burnProgressPanel:burnDidFinish: -Objective-C/instm/NSObject(DRBurnProgressPanelDelegateMethods)/burnProgressPanelDidFinish: -Objective-C/instm/NSObject(DRBurnProgressPanelDelegateMethods)/burnProgressPanelWillBegin: -Objective-C/instm/DRBurnSetupPanel/burnSpeed: -C++/instm/IOATAController/busCanDispatch -JavaScript/data/MouseEvent/button -Objective-C/instm/NSEvent/buttonMask -Objective-C/instm/NSEvent/buttonNumber -Objective-C/instm/SFAuthorizationPluginView/buttonPressed: -Objective-C/instm/NSAlert/buttons -Objective-C/instm/NSColorPicker/buttonToolTip -Objective-C/intfm/NSColorPickingDefault/buttonToolTip -JavaScript/clconst/WebGLRenderingContext/BYTE -C/tdef/-/ByteCount -JavaScript/data/ArrayBufferView/byteLength -JavaScript/data/ArrayBuffer/byteLength -JavaScript/data/ArrayBufferView/byteOffset -C/func/-/byteorder -Objective-C/instm/FxImage/bytes -Objective-C/instm/IOBluetoothSDPUUID/bytes -Objective-C/instm/NSData/bytes -Objective-C/instm/QTSampleBuffer/bytesForAllSamples -Objective-C/instm/NSBitmapImageRep/bytesPerPlane -Objective-C/instm/NSBitmapImageRep/bytesPerRow -Objective-C/instp/CABasicAnimation/byValue -Objective-C/instm/CABasicAnimation/byValue -C/func/-/bzero -JavaScript/data/SVGMatrix/c -JavaScript/data/WebKitCSSMatrix/c -Objective-C/intf/-/CAAction -Objective-C/cl/-/CAAnimation -Objective-C/cl/-/CAAnimationGroup -C/tdef/-/CAAutoresizingMask -Objective-C/cl/-/CABasicAnimation -C/func/-/cabs -C/func/-/cabsf -C/func/-/cabsl -C/func/-/cache -Objective-C/intfm/NSCacheDelegate/cache:willEvictObject: -C/tag/-/cache_attributes_s -C/tdef/-/cache_attributes_t -C/tdef/-/cache_cost_t -C/func/-/cache_create -C/func/-/cache_destroy -C/func/-/cache_enter -C/func/-/cache_get_and_retain -C/tdef/-/cache_key_hash_cb_t -C/tdef/-/cache_key_is_equal_cb_t -C/tdef/-/cache_key_retain_cb_t -C/func/-/cache_lookup -C/func/-/cache_purge -C/func/-/cache_purge_negatives -C/tdef/-/cache_release_cb_t -C/func/-/cache_release_value -C/func/-/cache_remove -C/func/-/cache_remove_all -C/func/-/cache_set_and_retain -C/tdef/-/cache_t -C/tdef/-/cache_value_make_nonpurgeable_cb_t -C/tdef/-/cache_value_make_purgeable_cb_t -C/tdef/-/cache_value_retain_cb_t -Objective-C/instm/NSImage/cacheDepthMatchesImageDepth -Objective-C/clm/NSURLHandle/cachedHandleForURL: -Objective-C/instm/NSView/cacheDisplayInRect:toBitmapImageRep: -Objective-C/instm/NSURLProtocol/cachedResponse -Objective-C/instm/NSURLCache/cachedResponseForRequest: -Objective-C/instm/NSWindow/cacheImageInRect: -Objective-C/instm/NSImage/cacheMode -Objective-C/instm/WebPreferences/cacheModel -Objective-C/instm/NSAtomicStore/cacheNodeForObjectID: -Objective-C/instm/NSAtomicStore/cacheNodes -Objective-C/instm/NSURLRequest/cachePolicy -Objective-C/instm/NSBezierPath/cachesBezierPath -Objective-C/cl/-/CAConstraint -C/tdef/-/CAConstraintAttribute -Objective-C/cl/-/CAConstraintLayoutManager -C/func/-/cacos -C/func/-/cacosf -C/func/-/cacosh -C/func/-/cacoshf -C/func/-/cacoshl -C/func/-/cacosl -C/func/-/CACurrentMediaTime -C/tdef/-/CAEdgeAntialiasingMask -Objective-C/cl/-/CAEmitterCell -Objective-C/cl/-/CAEmitterLayer -Objective-C/cl/-/CAGradientLayer -Objective-C/cl/-/CAKeyframeAnimation -Objective-C/cl/-/CalAlarm -C/data/-/CalAlarmActionDisplay -C/data/-/CalAlarmActionEmail -C/data/-/CalAlarmActionProcedure -C/data/-/CalAlarmActionSound -Objective-C/cl/-/CalAttendee -C/data/-/CalAttendeeStatusAccepted -C/data/-/CalAttendeeStatusDeclined -C/data/-/CalAttendeeStatusNeedsAction -C/data/-/CalAttendeeStatusTentative -Objective-C/cl/-/CALayer -Objective-C/cat/-/CALayoutManager -Objective-C/cl/-/CalCalendar -Objective-C/cl/-/CalCalendarItem -C/econst/-/CalCalendarNotEditableError -C/econst/-/CalCalendarNotInRepository -C/data/-/CalCalendarsChangedExternallyNotification -C/data/-/CalCalendarsChangedNotification -Objective-C/cl/-/CalCalendarStore -C/data/-/CalCalendarStoreErrorDomain -C/econst/-/CalCalendarTitleNotUniqueError -C/data/-/CalCalendarTypeBirthday -C/data/-/CalCalendarTypeCalDAV -C/data/-/CalCalendarTypeExchange -C/data/-/CalCalendarTypeIMAP -C/data/-/CalCalendarTypeLocal -C/data/-/CalCalendarTypeSubscription -Objective-C/instm/NSCell/calcDrawInfo: -Objective-C/instm/NSMenuItemCell/calcSize -Objective-C/instm/NSControl/calcSize -C/func/-/CalculateLPCMFlags -Objective-C/intfm/DRFileDataProduction/calculateSizeOfFile:fork:estimating: -Objective-C/instm/CAKeyframeAnimation/calculationMode -Objective-C/instp/CAKeyframeAnimation/calculationMode -C/econst/-/CalDateInvalidError -C/data/-/CalDefaultRecurrenceInterval -C/data/-/CalDeletedRecordsKey -Objective-C/instp/CalCalendarItem/calendar -Objective-C/instm/CalCalendarItem/calendar -Objective-C/instm/NSDatePicker/calendar -Objective-C/clm/CalCalendar/calendar -Objective-C/instm/NSDateFormatter/calendar -Objective-C/instm/NSDatePickerCell/calendar -Objective-C/instm/NSCalendar/calendarIdentifier -Objective-C/instm/CalCalendarStore/calendars -Objective-C/instm/CalCalendarStore/calendarWithUID: -Objective-C/cl/-/CalEvent -C/data/-/CalEventsChangedExternallyNotification -C/data/-/CalEventsChangedNotification -C/tdef/-/CalibratorInfo -C/data/-/CalInsertedRecordsKey -C/tag/-/CallBackRecord -Objective-C/instm/SFAuthorizationPluginView/callbacks -JavaScript/instm/TestCallback/callbackWithClass1Param -JavaScript/instm/TestCallback/callbackWithClass2Param -JavaScript/instm/TestCallback/callbackWithNonBoolReturnType -C/func/-/CallComponentCanDo -C/func/-/CallComponentClose -C/func/-/CallComponentDispatch -C/func/-/CallComponentFunction -C/func/-/CallComponentFunctionWithStorage -C/func/-/CallComponentFunctionWithStorageProcInfo -C/func/-/CallComponentGetMPWorkFunction -C/func/-/CallComponentGetPublicResource -C/func/-/CallComponentOpen -C/func/-/CallComponentRegister -C/func/-/CallComponentTarget -C/func/-/CallComponentUnregister -C/func/-/CallComponentVersion -JavaScript/data/JavaScriptCallFrame/caller -C/func/-/calloc -C++/data/IOTimerEventSource/calloutEntry -C++/instm/IOService/callPlatformFunction -C/func/-/callrpc -Objective-C/instm/NSException/callStackReturnAddresses -Objective-C/clm/NSThread/callStackReturnAddresses -Objective-C/instm/NSException/callStackSymbols -Objective-C/clm/NSThread/callStackSymbols -JavaScript/data/ScriptProfileNode/callUID -Objective-C/instm/WebScriptObject/callWebScriptMethod:withArguments: -Objective-C/cl/-/CalNthWeekDay -C/tdef/-/CalPriority -C/econst/-/CalPriorityHigh -C/econst/-/CalPriorityLow -C/econst/-/CalPriorityMedium -C/econst/-/CalPriorityNone -C/econst/-/CalRecurrenceDaily -Objective-C/cl/-/CalRecurrenceEnd -C/econst/-/CalRecurrenceMonthly -Objective-C/cl/-/CalRecurrenceRule -C/tdef/-/CalRecurrenceType -C/econst/-/CalRecurrenceWeekly -C/econst/-/CalRecurrenceYearly -C/data/-/CalSenderProcessIDKey -C/tdef/-/CalSpan -C/econst/-/CalSpanAllEvents -C/econst/-/CalSpanFutureEvents -C/econst/-/CalSpanThisEvent -Objective-C/cl/-/CalTask -C/data/-/CalTasksChangedExternallyNotification -C/data/-/CalTasksChangedNotification -C/data/-/CalUpdatedRecordsKey -C/data/-/CalUserUIDKey -Objective-C/intf/-/CAMediaTiming -Objective-C/cl/-/CAMediaTimingFunction -Objective-C/instm/IKCameraDeviceView/cameraDevice -Objective-C/instp/IKCameraDeviceView/cameraDevice -Objective-C/intfm/IKCameraDeviceViewDelegate/cameraDeviceView:didDownloadFile:location:fileData:error: -Objective-C/intfm/IKCameraDeviceViewDelegate/cameraDeviceView:didEncounterError: -Objective-C/intfm/IKCameraDeviceViewDelegate/cameraDeviceViewSelectionDidChange: -Objective-C/intfm/Fx3DAPI/cameraMatrixAtTime: -C/func/-/can_change_color -Objective-C/instm/NSObjectController/canAdd -Objective-C/instm/NSTreeController/canAddChild -Objective-C/instm/NSView/canBecomeKeyView -Objective-C/instm/NSWindow/canBecomeKeyWindow -Objective-C/instm/NSWindow/canBecomeMainWindow -Objective-C/instm/NSWindow/canBecomeVisibleWithoutLogin -Objective-C/instm/NSBitmapImageRep/canBeCompressedUsing: -Objective-C/instm/NSString/canBeConvertedToEncoding: -Objective-C/instm/NSWindow/canBeVisibleOnAllSpaces -Objective-C/instm/NSOperation/cancel -Objective-C/instm/NSURLDownload/cancel -Objective-C/instm/XGFileDownload/cancel -Objective-C/intfm/WebOpenPanelResultListener/cancel -Objective-C/instm/NSThread/cancel -Objective-C/instm/NSURLConnection/cancel -JavaScript/instm/Notification/cancel -Objective-C/instm/NSSavePanel/cancel: -Objective-C/instm/DRSetupPanel/cancel: -JavaScript/data/Event/cancelable -Objective-C/instm/NSOperationQueue/cancelAllOperations -Objective-C/intfm/NSURLAuthenticationChallengeSender/cancelAuthenticationChallenge: -JavaScript/data/Event/cancelBubble -Objective-C/instm/NSSearchFieldCell/cancelButtonCell -Objective-C/instm/NSSearchFieldCell/cancelButtonRectForBounds: -Objective-C/instm/IMKInputController/cancelComposition -Objective-C/intfm/ApertureEditManager/cancelEditSession -Objective-C/instm/PDFDocument/cancelFindString -Objective-C/instm/NSImage/cancelIncrementalLoad -Objective-C/instm/NSURLHandle/cancelLoadInBackground -Objective-C/clm/ABPerson/cancelLoadingImageDataForTag: -Objective-C/instm/NSMigrationManager/cancelMigrationWithError: -Objective-C/instm/NSResponder/cancelOperation: -Objective-C/instm/NSRunLoop/cancelPerformSelector:target:argument: -Objective-C/instm/NSRunLoop/cancelPerformSelectorsWithTarget: -C/tdef/-/CancelPreviewGeneration -Objective-C/clm/ISyncSession/cancelPreviousBeginSessionWithClient: -Objective-C/clm/NSObject/cancelPreviousPerformRequestsWithTarget: -Objective-C/clm/NSObject/cancelPreviousPerformRequestsWithTarget:selector:object: -C++/instm/IOOutputQueue/cancelServiceThread -Objective-C/instm/ISyncSession/cancelSyncing -C/tdef/-/CancelThumbnailGeneration -C++/instm/ATATimerEventSource/cancelTimeout -C++/instm/IOTimerEventSource/cancelTimeout -Objective-C/instm/NSMenu/cancelTracking -Objective-C/instm/NSMenu/cancelTrackingWithoutAnimation -Objective-C/instm/NSApplication/cancelUserAttentionRequest: -Objective-C/instm/NSOpenPanel/canChooseDirectories -Objective-C/instm/NSOpenPanel/canChooseFiles -Objective-C/instm/NSDocument/canCloseDocument -Objective-C/instm/NSDocument/canCloseDocumentWithDelegate:shouldCloseSelector:contextInfo: -Objective-C/clm/NSDocument/canConcurrentlyReadDocumentsOfType: -Objective-C/instm/IKImageBrowserView/canControlQuickLookPanel -Objective-C/instm/NSSavePanel/canCreateDirectories -Objective-C/instp/IKCameraDeviceView/canDeleteSelectedItems -Objective-C/instm/IKCameraDeviceView/canDeleteSelectedItems -Objective-C/instm/NSObject/candidates: -Objective-C/instm/IMKInputController/candidateSelected: -Objective-C/instm/IMKInputController/candidateSelectionChanged: -Objective-C/instm/IKCameraDeviceView/canDownloadSelectedItems -Objective-C/instp/IKCameraDeviceView/canDownloadSelectedItems -Objective-C/instm/NSTableView/canDragRowsWithIndexes:atPoint: -Objective-C/instm/NSBrowser/canDragRowsWithIndexes:inColumn:withEvent: -Objective-C/instm/NSView/canDraw -Objective-C/instm/NSView/canDrawConcurrently -Objective-C/instm/CAOpenGLLayer/canDrawInCGLContext:pixelFormat:forLayerTime:displayTime: -Objective-C/instm/NSOpenGLLayer/canDrawInOpenGLContext:pixelFormat:forLayerTime:displayTime: -Objective-C/intfm/IKSlideshowDataSource/canExportSlideshowItemAtIndex:toApplication: -Objective-C/clm/IKSlideshow/canExportToApplication: -Objective-C/instm/PDFView/canGoBack -Objective-C/instm/WebView/canGoBack -Objective-C/instm/PDFView/canGoForward -Objective-C/instm/WebView/canGoForward -Objective-C/instm/PDFView/canGoToFirstPage -Objective-C/instm/PDFView/canGoToLastPage -Objective-C/instm/PDFView/canGoToNextPage -Objective-C/instm/PDFView/canGoToPreviousPage -Objective-C/clm/NSURLConnection/canHandleRequest: -Objective-C/instm/NSWindow/canHide -Objective-C/intfm/ApertureEditManager/canImport -Objective-C/clm/NSImageRep/canInitWithData: -Objective-C/clm/QTMovie/canInitWithDataReference: -Objective-C/clm/QTMovie/canInitWithFile: -Objective-C/clm/NSSound/canInitWithPasteboard: -Objective-C/clm/NSImageRep/canInitWithPasteboard: -Objective-C/clm/NSImage/canInitWithPasteboard: -Objective-C/clm/QTMovie/canInitWithPasteboard: -Objective-C/clm/NSURLProtocol/canInitWithRequest: -Objective-C/clm/NSURLHandle/canInitWithURL: -Objective-C/clm/QTMovie/canInitWithURL: -Objective-C/instm/NSTreeController/canInsert -Objective-C/instm/NSArrayController/canInsert -Objective-C/instm/NSTreeController/canInsertChild -Objective-C/instm/WebView/canMakeTextLarger -Objective-C/instm/WebView/canMakeTextSmaller -Objective-C/instm/WebView/canMakeTextStandardSize -Objective-C/clm/NSLocale/canonicalLanguageIdentifierFromString: -Objective-C/clm/NSLocale/canonicalLocaleIdentifierFromString: -Objective-C/clm/NSURLProtocol/canonicalRequestForRequest: -Objective-C/instm/NSXMLNode/canonicalXMLStringPreservingComments: -JavaScript/instm/HTMLMediaElement/canPlayType -Objective-C/instm/WebFrameView/canPrintHeadersAndFooters -Objective-C/intfm/WebDocumentRepresentation/canProvideDocumentSource -Objective-C/instm/ISyncClient/canPullChangesForEntityName: -Objective-C/instm/ISyncClient/canPushChangesForEntityName: -Objective-C/instm/NSPasteboard/canReadItemWithDataConformingToTypes: -Objective-C/instm/NSPasteboard/canReadObjectForClasses:options: -Objective-C/instm/NSUndoManager/canRedo -Objective-C/instm/NSObjectController/canRemove -Objective-C/instm/NSRuleEditor/canRemoveAllRows -Objective-C/intfm/QCPlugInOutputImageProvider/canRenderWithCGLContext: -Objective-C/clm/NSURLDownload/canResumeDownloadDecodedWithEncodingMIMEType: -Objective-C/instm/IKCameraDeviceView/canRotateSelectedItemsLeft -Objective-C/instp/IKCameraDeviceView/canRotateSelectedItemsLeft -Objective-C/instm/IKCameraDeviceView/canRotateSelectedItemsRight -Objective-C/instp/IKCameraDeviceView/canRotateSelectedItemsRight -Objective-C/instm/AMWorkflowController/canRun -Objective-C/instm/NSSavePanel/canSelectHiddenExtension -Objective-C/instm/NSArrayController/canSelectNext -Objective-C/instm/NSArrayController/canSelectPrevious -Objective-C/clm/WebView/canShowMIMEType: -Objective-C/clm/WebView/canShowMIMETypeAsHTML: -Objective-C/instm/NSPrintOperation/canSpawnSeparateThread -Objective-C/instm/NSWindow/canStoreColor -C/econst/-/cantCreateSingleForkFile -C/econst/-/CantDecompress -Objective-C/instm/NSUndoManager/canUndo -Objective-C/instm/QTMovie/canUpdateMovieFile -JavaScript/data/CanvasRenderingContext/canvas -JavaScript/cl/-/CanvasGradient -JavaScript/cl/-/CanvasNumberArray -JavaScript/cl/-/CanvasPattern -JavaScript/cl/-/CanvasPixelArray -JavaScript/cl/-/CanvasRenderingContext -JavaScript/data/DOMWindow/CanvasRenderingContext2D -JavaScript/cl/-/CanvasRenderingContext2D -Objective-C/instm/PDFView/canZoomIn -Objective-C/instm/PDFView/canZoomOut -Objective-C/cl/-/CAOpenGLLayer -Objective-C/instm/NSEvent/capabilityMask -Objective-C/instm/WebBackForwardList/capacity -Objective-C/instm/NSFont/capHeight -Objective-C/clm/NSCharacterSet/capitalizedLetterCharacterSet -Objective-C/instm/NSString/capitalizedString -Objective-C/instm/NSResponder/capitalizeWord: -Objective-C/cl/-/CAPropertyAnimation -Objective-C/instm/PDFAnnotationButtonWidget/caption -JavaScript/data/HTMLTableElement/caption -C/func/-/CaptureComponent -JavaScript/instm/DOMWindow/captureEvents -JavaScript/instm/HTMLDocument/captureEvents -Objective-C/instm/NSObject/captureOutput:didDropVideoFrameWithSampleBuffer:fromConnection: -Objective-C/instm/QTCaptureFileOutput/captureOutput:didFinishRecordingToOutputFileAtURL:forConnections:dueToError: -Objective-C/instm/NSObject/captureOutput:didOutputAudioSampleBuffer:fromConnection: -Objective-C/instm/QTCaptureFileOutput/captureOutput:didOutputSampleBuffer:fromConnection: -Objective-C/instm/NSObject/captureOutput:didOutputVideoFrame:withSampleBuffer:fromConnection: -Objective-C/instm/QTCaptureFileOutput/captureOutput:didPauseRecordingToOutputFileAtURL:forConnections: -Objective-C/instm/QTCaptureFileOutput/captureOutput:didResumeRecordingToOutputFileAtURL:forConnections: -Objective-C/instm/QTCaptureFileOutput/captureOutput:didStartRecordingToOutputFileURL:forConnections: -Objective-C/instm/QTCaptureFileOutput/captureOutput:mustChangeOutputFileAtURL:forConnections:dueToError: -Objective-C/instm/QTCaptureFileOutput/captureOutput:shouldChangeOutputFileAtURL:forConnections:dueToError: -Objective-C/instm/QTCaptureFileOutput/captureOutput:willFinishRecordingToOutputFileAtURL:forConnections:dueToError: -Objective-C/instm/QTCaptureFileOutput/captureOutput:willStartRecordingToOutputFileURL:forConnections: -Objective-C/instm/QTCaptureView/captureSession -JavaScript/clconst/Event/CAPTURING_PHASE -Objective-C/cl/-/CARenderer -Objective-C/cl/-/CAReplicatorLayer -JavaScript/instm/Document/caretRangeFromPoint -C/func/-/carg -C/func/-/cargf -C/func/-/cargl -Objective-C/instm/NSWindow/cascadeTopLeftFromPoint: -Objective-C/cl/-/CAScrollLayer -Objective-C/instm/NSString/caseInsensitiveCompare: -Objective-C/instm/NSScanner/caseSensitive -Objective-C/cl/-/CAShapeLayer -C/func/-/CAShow -C/func/-/CAShowFile -C/func/-/casin -C/func/-/casinf -C/func/-/casinh -C/func/-/casinhf -C/func/-/casinhl -C/func/-/casinl -C/macro/-/CAST_TO_BOOLEAN -C/macro/-/CAST_TO_NUMBER -C/macro/-/CAST_TO_STRING -Objective-C/instm/NSColor/catalogNameComponent -C/func/-/catan -C/func/-/catanf -C/func/-/catanh -C/func/-/catanhf -C/func/-/catanhl -C/func/-/catanl -JavaScript/clconst/JavaScriptCallFrame/CATCH_SCOPE -C/econst/-/catChangedErr -C/func/-/catclose -C/tdef/-/Category -Objective-C/cl/-/CATextLayer -C/func/-/catgets -Objective-C/cl/-/CATiledLayer -C/func/-/catlas_caxpby -C/func/-/catlas_cset -C/func/-/catlas_daxpby -C/func/-/catlas_dset -C/func/-/catlas_saxpby -C/func/-/catlas_sset -C/func/-/catlas_zaxpby -C/func/-/catlas_zset -C/func/-/CatMove -C/func/-/catopen -C/tdef/-/CatPositionRec -Objective-C/cl/-/CATransaction -C/tdef/-/CATransform3D -C/tag/-/CATransform3D -C/func/-/CATransform3DConcat -C/func/-/CATransform3DEqualToTransform -C/func/-/CATransform3DGetAffineTransform -C/data/-/CATransform3DIdentity -C/func/-/CATransform3DInvert -C/func/-/CATransform3DIsAffine -C/func/-/CATransform3DIsIdentity -C/func/-/CATransform3DMakeAffineTransform -C/func/-/CATransform3DMakeRotation -C/func/-/CATransform3DMakeScale -C/func/-/CATransform3DMakeTranslation -C/func/-/CATransform3DRotate -C/func/-/CATransform3DScale -C/func/-/CATransform3DTranslate -Objective-C/instm/NSValue/CATransform3DValue -Objective-C/cl/-/CATransformLayer -Objective-C/cl/-/CATransition -C++/instm/IOService/causeInterrupt -Objective-C/cl/-/CAValueFunction -Objective-C/cl/-/CBGroupIdentity -Objective-C/cl/-/CBIdentity -Objective-C/cl/-/CBIdentityAuthority -Objective-C/cl/-/CBIdentityPicker -C/func/-/cblas_caxpy -C/func/-/cblas_ccopy -C/func/-/cblas_cdotc_sub -C/func/-/cblas_cdotu_sub -C/func/-/cblas_cgbmv -C/func/-/cblas_cgemm -C/func/-/cblas_cgemv -C/func/-/cblas_cgerc -C/func/-/cblas_cgeru -C/func/-/cblas_chbmv -C/func/-/cblas_chemm -C/func/-/cblas_chemv -C/func/-/cblas_cher -C/func/-/cblas_cher2 -C/func/-/cblas_cher2k -C/func/-/cblas_cherk -C/func/-/cblas_chpmv -C/func/-/cblas_chpr -C/func/-/cblas_chpr2 -C/func/-/cblas_crotg -C/func/-/cblas_cscal -C/func/-/cblas_csrot -C/func/-/cblas_csscal -C/func/-/cblas_cswap -C/func/-/cblas_csymm -C/func/-/cblas_csyr2k -C/func/-/cblas_csyrk -C/func/-/cblas_ctbmv -C/func/-/cblas_ctbsv -C/func/-/cblas_ctpmv -C/func/-/cblas_ctpsv -C/func/-/cblas_ctrmm -C/func/-/cblas_ctrmv -C/func/-/cblas_ctrsm -C/func/-/cblas_ctrsv -C/func/-/cblas_dasum -C/func/-/cblas_daxpy -C/func/-/cblas_dcopy -C/func/-/cblas_ddot -C/func/-/cblas_dgbmv -C/func/-/cblas_dgemm -C/func/-/cblas_dgemv -C/func/-/cblas_dger -C/tdef/-/CBLAS_DIAG -C/func/-/cblas_dnrm2 -C/func/-/cblas_drot -C/func/-/cblas_drotg -C/func/-/cblas_drotm -C/func/-/cblas_drotmg -C/func/-/cblas_dsbmv -C/func/-/cblas_dscal -C/func/-/cblas_dsdot -C/func/-/cblas_dspmv -C/func/-/cblas_dspr -C/func/-/cblas_dspr2 -C/func/-/cblas_dswap -C/func/-/cblas_dsymm -C/func/-/cblas_dsymv -C/func/-/cblas_dsyr -C/func/-/cblas_dsyr2 -C/func/-/cblas_dsyr2k -C/func/-/cblas_dsyrk -C/func/-/cblas_dtbmv -C/func/-/cblas_dtbsv -C/func/-/cblas_dtpmv -C/func/-/cblas_dtpsv -C/func/-/cblas_dtrmm -C/func/-/cblas_dtrmv -C/func/-/cblas_dtrsm -C/func/-/cblas_dtrsv -C/func/-/cblas_dzasum -C/func/-/cblas_dznrm2 -C/func/-/cblas_errprn -C/func/-/cblas_icamax -C/func/-/cblas_idamax -C/func/-/cblas_isamax -C/func/-/cblas_izamax -C/tdef/-/CBLAS_ORDER -C/func/-/cblas_sasum -C/func/-/cblas_saxpy -C/func/-/cblas_scasum -C/func/-/cblas_scnrm2 -C/func/-/cblas_scopy -C/func/-/cblas_sdot -C/func/-/cblas_sdsdot -C/func/-/cblas_sgbmv -C/func/-/cblas_sgemm -C/func/-/cblas_sgemv -C/func/-/cblas_sger -C/tdef/-/CBLAS_SIDE -C/func/-/cblas_snrm2 -C/func/-/cblas_srot -C/func/-/cblas_srotg -C/func/-/cblas_srotm -C/func/-/cblas_srotmg -C/func/-/cblas_ssbmv -C/func/-/cblas_sscal -C/func/-/cblas_sspmv -C/func/-/cblas_sspr -C/func/-/cblas_sspr2 -C/func/-/cblas_sswap -C/func/-/cblas_ssymm -C/func/-/cblas_ssymv -C/func/-/cblas_ssyr -C/func/-/cblas_ssyr2 -C/func/-/cblas_ssyr2k -C/func/-/cblas_ssyrk -C/func/-/cblas_stbmv -C/func/-/cblas_stbsv -C/func/-/cblas_stpmv -C/func/-/cblas_stpsv -C/func/-/cblas_strmm -C/func/-/cblas_strmv -C/func/-/cblas_strsm -C/func/-/cblas_strsv -C/tdef/-/CBLAS_TRANSPOSE -C/tdef/-/CBLAS_UPLO -C/func/-/cblas_zaxpy -C/func/-/cblas_zcopy -C/func/-/cblas_zdotc_sub -C/func/-/cblas_zdotu_sub -C/func/-/cblas_zdrot -C/func/-/cblas_zdscal -C/func/-/cblas_zgbmv -C/func/-/cblas_zgemm -C/func/-/cblas_zgemv -C/func/-/cblas_zgerc -C/func/-/cblas_zgeru -C/func/-/cblas_zhbmv -C/func/-/cblas_zhemm -C/func/-/cblas_zhemv -C/func/-/cblas_zher -C/func/-/cblas_zher2 -C/func/-/cblas_zher2k -C/func/-/cblas_zherk -C/func/-/cblas_zhpmv -C/func/-/cblas_zhpr -C/func/-/cblas_zhpr2 -C/func/-/cblas_zrotg -C/func/-/cblas_zscal -C/func/-/cblas_zswap -C/func/-/cblas_zsymm -C/func/-/cblas_zsyr2k -C/func/-/cblas_zsyrk -C/func/-/cblas_ztbmv -C/func/-/cblas_ztbsv -C/func/-/cblas_ztpmv -C/func/-/cblas_ztpsv -C/func/-/cblas_ztrmm -C/func/-/cblas_ztrmv -C/func/-/cblas_ztrsm -C/func/-/cblas_ztrsv -C/econst/-/CblasColMajor -C/econst/-/CblasConjTrans -C/econst/-/CblasLeft -C/econst/-/CblasLower -C/econst/-/CblasNonUnit -C/econst/-/CblasNoTrans -C/econst/-/CblasRight -C/econst/-/CblasRowMajor -C/econst/-/CblasTrans -C/econst/-/CblasUnit -C/econst/-/CblasUpper -C/func/-/cbreak -C/func/-/cbrt -C/func/-/cbrtf -C/func/-/cbrtl -Objective-C/cl/-/CBUserIdentity -C/func/-/CC_crypto -C/func/-/CC_MD2 -C/func/-/CC_MD2_Final -C/func/-/CC_MD2_Init -C/func/-/CC_MD2_Update -C/func/-/CC_MD4 -C/func/-/CC_MD4_Final -C/func/-/CC_MD4_Init -C/func/-/CC_MD4_Update -C/func/-/CC_MD5 -C/func/-/CC_MD5_Final -C/func/-/CC_MD5_Init -C/func/-/CC_MD5_Update -C/func/-/CC_SHA -C/func/-/CC_SHA1 -C/func/-/CC_SHA1_Final -C/func/-/CC_SHA1_Init -C/func/-/CC_SHA1_Update -C/func/-/CC_SHA224 -C/func/-/CC_SHA224_Final -C/func/-/CC_SHA224_Init -C/func/-/CC_SHA224_Update -C/func/-/CC_SHA256 -C/func/-/CC_SHA256_Final -C/func/-/CC_SHA256_Init -C/func/-/CC_SHA256_Update -C/func/-/CC_SHA384 -C/func/-/CC_SHA384_Final -C/func/-/CC_SHA384_Init -C/func/-/CC_SHA384_Update -C/func/-/CC_SHA512 -C/func/-/CC_SHA512_Final -C/func/-/CC_SHA512_Init -C/func/-/CC_SHA512_Update -C/func/-/CCCrypt -C/func/-/CCCryptor -C/func/-/CCCryptorCreate -C/func/-/CCCryptorCreateFromData -C/func/-/CCCryptorFinal -C/func/-/CCCryptorGetOutputLength -C/func/-/CCCryptorRelease -C/func/-/CCCryptorReset -C/func/-/CCCryptorUpdate -C/func/-/CCHmac -C/func/-/CCHmacFinal -C/func/-/CCHmacInit -C/func/-/CCHmacUpdate -C/func/-/ccosh -C/func/-/ccoshf -C/func/-/ccoshl -C/func/-/CCryptorCreateFromData -JavaScript/clconst/WebGLRenderingContext/CCW -JavaScript/clconst/core/CDATA_SECTION_NODE -C/tdef/-/cdataBlockSAXFunc -JavaScript/data/DOMWindow/CDATASection -JavaScript/cl/-/CDATASection -C/func/-/CDSequenceBusy -C/func/-/CDSequenceChangedSourceData -C/tag/-/CDSequenceDataSource -C/tdef/-/CDSequenceDataSourcePtr -C/func/-/CDSequenceDisposeDataSource -C/func/-/CDSequenceDisposeMemory -C/func/-/CDSequenceEnd -C/func/-/CDSequenceEquivalentImageDescription -C/func/-/CDSequenceEquivalentImageDescriptionS -C/func/-/CDSequenceFlush -C/func/-/CDSequenceGetDataSource -C/func/-/CDSequenceInvalidate -C/func/-/CDSequenceNewDataSource -C/func/-/CDSequenceNewMemory -C/func/-/CDSequenceSetSourceData -C/func/-/CDSequenceSetSourceDataQueue -C/func/-/CDSequenceSetTimeBase -Objective-C/clm/DRCDTextBlock/cdTextBlockWithLanguage:encoding: -C/func/-/ceil -C/func/-/ceilf -C/func/-/ceill -Objective-C/instm/NSControl/cell -Objective-C/instm/NSForm/cellAtIndex: -Objective-C/instm/NSMatrix/cellAtRow:column: -Objective-C/instm/NSCell/cellAttribute: -Objective-C/instm/NSMatrix/cellBackgroundColor -Objective-C/intfm/NSTextAttachmentCell/cellBaselineOffset -Objective-C/instm/NSMatrix/cellClass -Objective-C/clm/NSBrowser/cellClass -Objective-C/clm/NSControl/cellClass -Objective-C/instm/IKImageBrowserView/cellForItemAtIndex: -Objective-C/instm/NSMatrix/cellFrameAtRow:column: -Objective-C/intfm/NSTextAttachmentCell/cellFrameForTextContainer:proposedLineFragment:glyphPosition:characterIndex: -JavaScript/data/HTMLTableCellElement/cellIndex -JavaScript/data/HTMLTableElement/cellPadding -Objective-C/instm/NSBrowser/cellPrototype -Objective-C/instm/NSMatrix/cells -JavaScript/data/HTMLTableRowElement/cells -Objective-C/intfm/NSTextAttachmentCell/cellSize -Objective-C/instm/NSMatrix/cellSize -Objective-C/instm/IKImageBrowserView/cellSize -Objective-C/instm/NSCell/cellSize -Objective-C/instm/NSCell/cellSizeForBounds: -C/func/-/CellsOfScreen -JavaScript/data/HTMLTableElement/cellSpacing -Objective-C/instm/IKImageBrowserView/cellsStyleMask -Objective-C/instm/IKImageBrowserCell/cellState -Objective-C/instm/NSMatrix/cellWithTag: -Objective-C/instm/NSWindow/center -Objective-C/clm/NSServerNotificationCenter/centerForService: -Objective-C/instm/NSView/centerScanRect: -Objective-C/instm/NSResponder/centerSelectionInVisibleArea: -Objective-C/instm/SFCertificateView/certificate -Objective-C/instm/CBUserIdentity/certificate -Objective-C/instm/NSObject/certificatePanelShowHelp: -Objective-C/instm/NSURLCredential/certificates -C/func/-/cexp -C/func/-/cexpf -C/func/-/cexpl -C/tdef/-/CFAbsoluteTime -C/func/-/CFAbsoluteTimeAddGregorianUnits -C/func/-/CFAbsoluteTimeGetCurrent -C/func/-/CFAbsoluteTimeGetDayOfWeek -C/func/-/CFAbsoluteTimeGetDayOfYear -C/func/-/CFAbsoluteTimeGetDifferenceAsGregorianUnits -C/func/-/CFAbsoluteTimeGetGregorianDate -C/func/-/CFAbsoluteTimeGetWeekOfYear -C/func/-/CFAllocatorAllocate -C/tdef/-/CFAllocatorAllocateCallBack -C/tdef/-/CFAllocatorContext -C/tdef/-/CFAllocatorCopyDescriptionCallBack -C/func/-/CFAllocatorCreate -C/func/-/CFAllocatorDeallocate -C/tdef/-/CFAllocatorDeallocateCallBack -C/func/-/CFAllocatorGetContext -C/func/-/CFAllocatorGetDefault -C/func/-/CFAllocatorGetPreferredSizeForSize -C/func/-/CFAllocatorGetTypeID -C/tdef/-/CFAllocatorPreferredSizeCallBack -C/func/-/CFAllocatorReallocate -C/tdef/-/CFAllocatorReallocateCallBack -C/tdef/-/CFAllocatorRef -C/tdef/-/CFAllocatorReleaseCallBack -C/tdef/-/CFAllocatorRetainCallBack -C/func/-/CFAllocatorSetDefault -C/func/-/CFArrayAppendArray -C/func/-/CFArrayAppendValue -C/tdef/-/CFArrayApplierFunction -C/func/-/CFArrayApplyFunction -C/func/-/CFArrayBSearchValues -C/tdef/-/CFArrayCallBacks -C/func/-/CFArrayContainsValue -C/tdef/-/CFArrayCopyDescriptionCallBack -C/func/-/CFArrayCreate -C/func/-/CFArrayCreateCopy -C/func/-/CFArrayCreateMutable -C/func/-/CFArrayCreateMutableCopy -C/tdef/-/CFArrayEqualCallBack -C/func/-/CFArrayExchangeValuesAtIndices -C/func/-/CFArrayGetCount -C/func/-/CFArrayGetCountOfValue -C/func/-/CFArrayGetFirstIndexOfValue -C/func/-/CFArrayGetLastIndexOfValue -C/func/-/CFArrayGetTypeID -C/func/-/CFArrayGetValueAtIndex -C/func/-/CFArrayGetValues -C/func/-/CFArrayInsertValueAtIndex -C/tdef/-/CFArrayRef -C/tdef/-/CFArrayReleaseCallBack -C/func/-/CFArrayRemoveAllValues -C/func/-/CFArrayRemoveValueAtIndex -C/func/-/CFArrayReplaceValues -C/tdef/-/CFArrayRetainCallBack -C/func/-/CFArraySetValueAtIndex -C/func/-/CFArraySortValues -C/func/-/CFAttributedStringBeginEditing -C/func/-/CFAttributedStringCreate -C/func/-/CFAttributedStringCreateCopy -C/func/-/CFAttributedStringCreateMutable -C/func/-/CFAttributedStringCreateMutableCopy -C/func/-/CFAttributedStringCreateWithSubstring -C/func/-/CFAttributedStringEndEditing -C/func/-/CFAttributedStringGetAttribute -C/func/-/CFAttributedStringGetAttributeAndLongestEffectiveRange -C/func/-/CFAttributedStringGetAttributes -C/func/-/CFAttributedStringGetAttributesAndLongestEffectiveRange -C/func/-/CFAttributedStringGetLength -C/func/-/CFAttributedStringGetMutableString -C/func/-/CFAttributedStringGetString -C/func/-/CFAttributedStringGetTypeID -C/tdef/-/CFAttributedStringRef -C/func/-/CFAttributedStringRemoveAttribute -C/func/-/CFAttributedStringReplaceAttributedString -C/func/-/CFAttributedStringReplaceString -C/func/-/CFAttributedStringSetAttribute -C/func/-/CFAttributedStringSetAttributes -C/func/-/CFBagAddValue -C/tdef/-/CFBagApplierFunction -C/func/-/CFBagApplyFunction -C/tdef/-/CFBagCallBacks -C/func/-/CFBagContainsValue -C/tdef/-/CFBagCopyDescriptionCallBack -C/func/-/CFBagCreate -C/func/-/CFBagCreateCopy -C/func/-/CFBagCreateMutable -C/func/-/CFBagCreateMutableCopy -C/tdef/-/CFBagEqualCallBack -C/func/-/CFBagGetCount -C/func/-/CFBagGetCountOfValue -C/func/-/CFBagGetTypeID -C/func/-/CFBagGetValue -C/func/-/CFBagGetValueIfPresent -C/func/-/CFBagGetValues -C/tdef/-/CFBagHashCallBack -C/tdef/-/CFBagRef -C/tdef/-/CFBagReleaseCallBack -C/func/-/CFBagRemoveAllValues -C/func/-/CFBagRemoveValue -C/func/-/CFBagReplaceValue -C/tdef/-/CFBagRetainCallBack -C/func/-/CFBagSetValue -C/func/-/CFBinaryHeapAddValue -C/tdef/-/CFBinaryHeapApplierFunction -C/func/-/CFBinaryHeapApplyFunction -C/tdef/-/CFBinaryHeapCallBacks -C/tdef/-/CFBinaryHeapCompareCallBack -C/tdef/-/CFBinaryHeapCompareContext -C/func/-/CFBinaryHeapContainsValue -C/tdef/-/CFBinaryHeapCopyDescriptionCallBack -C/func/-/CFBinaryHeapCreate -C/func/-/CFBinaryHeapCreateCopy -C/func/-/CFBinaryHeapGetCount -C/func/-/CFBinaryHeapGetCountOfValue -C/func/-/CFBinaryHeapGetMinimum -C/func/-/CFBinaryHeapGetMinimumIfPresent -C/func/-/CFBinaryHeapGetTypeID -C/func/-/CFBinaryHeapGetValues -C/tdef/-/CFBinaryHeapRef -C/tdef/-/CFBinaryHeapReleaseCallBack -C/func/-/CFBinaryHeapRemoveAllValues -C/func/-/CFBinaryHeapRemoveMinimumValue -C/tdef/-/CFBinaryHeapRetainCallBack -C/tdef/-/CFBit -C/func/-/CFBitVectorContainsBit -C/func/-/CFBitVectorCreate -C/func/-/CFBitVectorCreateCopy -C/func/-/CFBitVectorCreateMutable -C/func/-/CFBitVectorCreateMutableCopy -C/func/-/CFBitVectorFlipBitAtIndex -C/func/-/CFBitVectorFlipBits -C/func/-/CFBitVectorGetBitAtIndex -C/func/-/CFBitVectorGetBits -C/func/-/CFBitVectorGetCount -C/func/-/CFBitVectorGetCountOfBit -C/func/-/CFBitVectorGetFirstIndexOfBit -C/func/-/CFBitVectorGetLastIndexOfBit -C/func/-/CFBitVectorGetTypeID -C/tdef/-/CFBitVectorRef -C/func/-/CFBitVectorSetAllBits -C/func/-/CFBitVectorSetBitAtIndex -C/func/-/CFBitVectorSetBits -C/func/-/CFBitVectorSetCount -C/func/-/CFBooleanGetTypeID -C/func/-/CFBooleanGetValue -C/tdef/-/CFBooleanRef -C/func/-/CFBundleCloseBundleResourceMap -C/func/-/CFBundleCopyAuxiliaryExecutableURL -C/func/-/CFBundleCopyBuiltInPlugInsURL -C/func/-/CFBundleCopyBundleLocalizations -C/func/-/CFBundleCopyBundleURL -C/func/-/CFBundleCopyExecutableArchitectures -C/func/-/CFBundleCopyExecutableArchitecturesForURL -C/func/-/CFBundleCopyExecutableURL -C/func/-/CFBundleCopyInfoDictionaryForURL -C/func/-/CFBundleCopyInfoDictionaryInDirectory -C/func/-/CFBundleCopyLocalizationsForPreferences -C/func/-/CFBundleCopyLocalizationsForURL -C/func/-/CFBundleCopyLocalizedString -C/func/-/CFBundleCopyPreferredLocalizationsFromArray -C/func/-/CFBundleCopyPrivateFrameworksURL -C/func/-/CFBundleCopyResourcesDirectoryURL -C/func/-/CFBundleCopyResourceURL -C/func/-/CFBundleCopyResourceURLForLocalization -C/func/-/CFBundleCopyResourceURLInDirectory -C/func/-/CFBundleCopyResourceURLsOfType -C/func/-/CFBundleCopyResourceURLsOfTypeForLocalization -C/func/-/CFBundleCopyResourceURLsOfTypeInDirectory -C/func/-/CFBundleCopySharedFrameworksURL -C/func/-/CFBundleCopySharedSupportURL -C/func/-/CFBundleCopySupportFilesDirectoryURL -C/func/-/CFBundleCreate -C/func/-/CFBundleCreateBundlesFromDirectory -C/func/-/CFBundleGetAllBundles -C/func/-/CFBundleGetBundleWithIdentifier -C/func/-/CFBundleGetDataPointerForName -C/func/-/CFBundleGetDataPointersForNames -C/func/-/CFBundleGetDevelopmentRegion -C/func/-/CFBundleGetFunctionPointerForName -C/func/-/CFBundleGetFunctionPointersForNames -C/func/-/CFBundleGetIdentifier -C/func/-/CFBundleGetInfoDictionary -C/func/-/CFBundleGetLocalInfoDictionary -C/func/-/CFBundleGetMainBundle -C/func/-/CFBundleGetPackageInfo -C/func/-/CFBundleGetPackageInfoInDirectory -C/func/-/CFBundleGetPlugIn -C/func/-/CFBundleGetTypeID -C/func/-/CFBundleGetValueForInfoDictionaryKey -C/func/-/CFBundleGetVersionNumber -C/func/-/CFBundleIsExecutableLoaded -C/func/-/CFBundleLoadExecutable -C/func/-/CFBundleLoadExecutableAndReturnError -C/func/-/CFBundleOpenBundleResourceFiles -C/func/-/CFBundleOpenBundleResourceMap -C/func/-/CFBundlePreflightExecutable -C/tdef/-/CFBundleRef -C/tdef/-/CFBundleRefNum -C/func/-/CFBundleUnloadExecutable -C/tdef/-/CFByteOrder -C/econst/-/CFByteOrderBigEndian -C/func/-/CFByteOrderGetCurrent -C/econst/-/CFByteOrderLittleEndian -C/econst/-/CFByteOrderUnknown -C/func/-/CFCalendarAddComponents -C/func/-/CFCalendarComposeAbsoluteTime -C/func/-/CFCalendarCopyCurrent -C/func/-/CFCalendarCopyLocale -C/func/-/CFCalendarCopyTimeZone -C/func/-/CFCalendarCreateWithIdentifier -C/func/-/CFCalendarDecomposeAbsoluteTime -C/func/-/CFCalendarGetComponentDifference -C/func/-/CFCalendarGetFirstWeekday -C/func/-/CFCalendarGetIdentifier -C/func/-/CFCalendarGetMaximumRangeOfUnit -C/func/-/CFCalendarGetMinimumDaysInFirstWeek -C/func/-/CFCalendarGetMinimumRangeOfUnit -C/func/-/CFCalendarGetOrdinalityOfUnit -C/func/-/CFCalendarGetRangeOfUnit -C/func/-/CFCalendarGetTimeRangeOfUnit -C/func/-/CFCalendarGetTypeID -C/tdef/-/CFCalendarRef -C/func/-/CFCalendarSetFirstWeekday -C/func/-/CFCalendarSetLocale -C/func/-/CFCalendarSetMinimumDaysInFirstWeek -C/func/-/CFCalendarSetTimeZone -C/tdef/-/CFCalendarUnit -C/func/-/CFCharacterSetAddCharactersInRange -C/func/-/CFCharacterSetAddCharactersInString -C/func/-/CFCharacterSetCreateBitmapRepresentation -C/func/-/CFCharacterSetCreateCopy -C/func/-/CFCharacterSetCreateInvertedSet -C/func/-/CFCharacterSetCreateMutable -C/func/-/CFCharacterSetCreateMutableCopy -C/func/-/CFCharacterSetCreateWithBitmapRepresentation -C/func/-/CFCharacterSetCreateWithCharactersInRange -C/func/-/CFCharacterSetCreateWithCharactersInString -C/func/-/CFCharacterSetGetPredefined -C/func/-/CFCharacterSetGetTypeID -C/func/-/CFCharacterSetHasMemberInPlane -C/func/-/CFCharacterSetIntersect -C/func/-/CFCharacterSetInvert -C/func/-/CFCharacterSetIsCharacterMember -C/func/-/CFCharacterSetIsLongCharacterMember -C/func/-/CFCharacterSetIsSupersetOfSet -C/tdef/-/CFCharacterSetPredefinedSet -C/tdef/-/CFCharacterSetRef -C/func/-/CFCharacterSetRemoveCharactersInRange -C/func/-/CFCharacterSetRemoveCharactersInString -C/func/-/CFCharacterSetUnion -C/tdef/-/CFComparatorFunction -C/tdef/-/CFComparisonResult -C/func/-/CFConvertDoubleHostToSwapped -C/func/-/CFConvertDoubleSwappedToHost -C/func/-/CFConvertFloat32HostToSwapped -C/func/-/CFConvertFloat32SwappedToHost -C/func/-/CFConvertFloat64HostToSwapped -C/func/-/CFConvertFloat64SwappedToHost -C/func/-/CFConvertFloatHostToSwapped -C/func/-/CFConvertFloatSwappedToHost -C/func/-/CFCopyDescription -C/macro/-/CFCopyLocalizedString -C/macro/-/CFCopyLocalizedStringFromTable -C/macro/-/CFCopyLocalizedStringFromTableInBundle -C/macro/-/CFCopyLocalizedStringWithDefaultValue -C/func/-/CFCopyTypeIDDescription --/writerid/-/cfCreateRule -C/func/-/CFDataAppendBytes -C/func/-/CFDataCreate -C/func/-/CFDataCreateCopy -C/func/-/CFDataCreateMutable -C/func/-/CFDataCreateMutableCopy -C/func/-/CFDataCreateWithBytesNoCopy -C/func/-/CFDataDeleteBytes -C/func/-/CFDataGetBytePtr -C/func/-/CFDataGetBytes -C/func/-/CFDataGetLength -C/func/-/CFDataGetMutableBytePtr -C/func/-/CFDataGetTypeID -C/func/-/CFDataIncreaseLength -C/tdef/-/CFDataRef -C/func/-/CFDataReplaceBytes -C/func/-/CFDataSetLength -C/func/-/CFDateCompare -C/func/-/CFDateCreate -C/func/-/CFDateFormatterCopyProperty -C/func/-/CFDateFormatterCreate -C/func/-/CFDateFormatterCreateDateFormatFromTemplate -C/func/-/CFDateFormatterCreateDateFromString -C/func/-/CFDateFormatterCreateStringWithAbsoluteTime -C/func/-/CFDateFormatterCreateStringWithDate -C/func/-/CFDateFormatterGetAbsoluteTimeFromString -C/func/-/CFDateFormatterGetDateStyle -C/func/-/CFDateFormatterGetFormat -C/func/-/CFDateFormatterGetLocale -C/func/-/CFDateFormatterGetTimeStyle -C/func/-/CFDateFormatterGetTypeID -C/tdef/-/CFDateFormatterRef -C/func/-/CFDateFormatterSetFormat -C/func/-/CFDateFormatterSetProperty -C/tdef/-/CFDateFormatterStyle -C/func/-/CFDateGetAbsoluteTime -C/func/-/CFDateGetTimeIntervalSinceDate -C/func/-/CFDateGetTypeID -C/tdef/-/CFDateRef -C/func/-/CFDictionaryAddValue -C/tdef/-/CFDictionaryApplierFunction -C/func/-/CFDictionaryApplyFunction -C/func/-/CFDictionaryContainsKey -C/func/-/CFDictionaryContainsValue -C/tdef/-/CFDictionaryCopyDescriptionCallBack -C/func/-/CFDictionaryCreate -C/func/-/CFDictionaryCreateCopy -C/func/-/CFDictionaryCreateMutable -C/func/-/CFDictionaryCreateMutableCopy -C/tdef/-/CFDictionaryEqualCallBack -C/func/-/CFDictionaryGetCount -C/func/-/CFDictionaryGetCountOfKey -C/func/-/CFDictionaryGetCountOfValue -C/func/-/CFDictionaryGetKeysAndValues -C/func/-/CFDictionaryGetTypeID -C/func/-/CFDictionaryGetValue -C/func/-/CFDictionaryGetValueIfPresent -C/tdef/-/CFDictionaryHashCallBack -C/tdef/-/CFDictionaryKeyCallBacks -C/tdef/-/CFDictionaryRef -C/tdef/-/CFDictionaryReleaseCallBack -C/func/-/CFDictionaryRemoveAllValues -C/func/-/CFDictionaryRemoveValue -C/func/-/CFDictionaryReplaceValue -C/tdef/-/CFDictionaryRetainCallBack -C/func/-/CFDictionarySetValue -C/tdef/-/CFDictionaryValueCallBacks -C/func/-/CFEqual -C/func/-/CFErrorCopyDescription -C/func/-/CFErrorCopyFailureReason -C/func/-/CFErrorCopyRecoverySuggestion -C/func/-/CFErrorCopyUserInfo -C/func/-/CFErrorCreate -C/func/-/CFErrorCreateWithUserInfoKeysAndValues -C/func/-/CFErrorGetCode -C/func/-/CFErrorGetDomain -C/func/-/CFErrorGetTypeID -C/tdef/-/CFErrorRef -C/tag/-/CFFileDescriptorCallBack -C/tdef/-/CFFileDescriptorContext -C/func/-/CFFileDescriptorCreate -C/func/-/CFFileDescriptorCreateRunLoopSource -C/func/-/CFFileDescriptorDisableCallBacks -C/func/-/CFFileDescriptorEnableCallBacks -C/func/-/CFFileDescriptorGetContext -C/func/-/CFFileDescriptorGetNativeDescriptor -C/func/-/CFFileDescriptorGetTypeID -C/func/-/CFFileDescriptorInvalidate -C/func/-/CFFileDescriptorIsValid -C/tdef/-/CFFileDescriptorNativeDescriptor -C/tdef/-/CFFileDescriptorRef -C/func/-/CFFTPCreateParsedResourceListing -C/func/-/CFGetAllocator -C/func/-/cfgetispeed -C/func/-/cfgetospeed -C/func/-/CFGetRetainCount --/writerid/-/cfGetRule -C/func/-/CFGetTypeID -C/tdef/-/CFGregorianDate -C/func/-/CFGregorianDateGetAbsoluteTime -C/func/-/CFGregorianDateIsValid -C/tdef/-/CFGregorianUnitFlags -C/tdef/-/CFGregorianUnits -C/func/-/CFHash -C/tdef/-/CFHashCode -C/func/-/CFHostCancelInfoResolution -C/tdef/-/CFHostClientCallBack -C/tdef/-/CFHostClientContext -C/func/-/CFHostCreateCopy -C/func/-/CFHostCreateWithAddress -C/func/-/CFHostCreateWithName -C/func/-/CFHostGetAddressing -C/func/-/CFHostGetNames -C/func/-/CFHostGetReachability -C/func/-/CFHostGetTypeID -C/tdef/-/CFHostInfoType -C/tdef/-/CFHostRef -C/func/-/CFHostScheduleWithRunLoop -C/func/-/CFHostSetClient -C/func/-/CFHostStartInfoResolution -C/func/-/CFHostUnscheduleFromRunLoop -C/func/-/CFHTTPAuthenticationAppliesToRequest -C/func/-/CFHTTPAuthenticationCopyDomains -C/func/-/CFHTTPAuthenticationCopyMethod -C/func/-/CFHTTPAuthenticationCopyRealm -C/func/-/CFHTTPAuthenticationCreateFromResponse -C/func/-/CFHTTPAuthenticationGetTypeID -C/func/-/CFHTTPAuthenticationIsValid -C/tdef/-/CFHTTPAuthenticationRef -C/func/-/CFHTTPAuthenticationRequiresAccountDomain -C/func/-/CFHTTPAuthenticationRequiresOrderedRequests -C/func/-/CFHTTPAuthenticationRequiresUserNameAndPassword -C/func/-/CFHTTPMessageAddAuthentication -C/func/-/CFHTTPMessageAppendBytes -C/func/-/CFHTTPMessageApplyCredentialDictionary -C/func/-/CFHTTPMessageApplyCredentials -C/func/-/CFHTTPMessageCopyAllHeaderFields -C/func/-/CFHTTPMessageCopyBody -C/func/-/CFHTTPMessageCopyHeaderFieldValue -C/func/-/CFHTTPMessageCopyRequestMethod -C/func/-/CFHTTPMessageCopyRequestURL -C/func/-/CFHTTPMessageCopyResponseStatusLine -C/func/-/CFHTTPMessageCopySerializedMessage -C/func/-/CFHTTPMessageCopyVersion -C/func/-/CFHTTPMessageCreateCopy -C/func/-/CFHTTPMessageCreateEmpty -C/func/-/CFHTTPMessageCreateRequest -C/func/-/CFHTTPMessageCreateResponse -C/func/-/CFHTTPMessageGetResponseStatusCode -C/func/-/CFHTTPMessageGetTypeID -C/func/-/CFHTTPMessageIsHeaderComplete -C/func/-/CFHTTPMessageIsRequest -C/tdef/-/CFHTTPMessageRef -C/func/-/CFHTTPMessageSetBody -C/func/-/CFHTTPMessageSetHeaderFieldValue -C/func/-/CFHTTPReadStreamSetProxy -C/func/-/CFHTTPReadStreamSetRedirectsAutomatically -C/tdef/-/CFIndex -C/func/-/CFLocaleCopyAvailableLocaleIdentifiers -C/func/-/CFLocaleCopyCommonISOCurrencyCodes -C/func/-/CFLocaleCopyCurrent -C/func/-/CFLocaleCopyDisplayNameForPropertyValue -C/func/-/CFLocaleCopyISOCountryCodes -C/func/-/CFLocaleCopyISOCurrencyCodes -C/func/-/CFLocaleCopyISOLanguageCodes -C/func/-/CFLocaleCopyPreferredLanguages -C/func/-/CFLocaleCreate -C/func/-/CFLocaleCreateCanonicalLanguageIdentifierFromString -C/func/-/CFLocaleCreateCanonicalLocaleIdentifierFromScriptManagerCodes -C/func/-/CFLocaleCreateCanonicalLocaleIdentifierFromString -C/func/-/CFLocaleCreateComponentsFromLocaleIdentifier -C/func/-/CFLocaleCreateCopy -C/func/-/CFLocaleCreateLocaleIdentifierFromComponents -C/func/-/CFLocaleCreateLocaleIdentifierFromWindowsLocaleCode -C/func/-/CFLocaleGetIdentifier -C/func/-/CFLocaleGetLanguageCharacterDirection -C/func/-/CFLocaleGetLanguageLineDirection -C/func/-/CFLocaleGetSystem -C/func/-/CFLocaleGetTypeID -C/func/-/CFLocaleGetValue -C/func/-/CFLocaleGetWindowsLocaleCodeFromLocaleIdentifier -C/tdef/-/CFLocaleRef -C/tdef/-/CFMachPortCallBack -C/tdef/-/CFMachPortContext -C/func/-/CFMachPortCreate -C/func/-/CFMachPortCreateRunLoopSource -C/func/-/CFMachPortCreateWithPort -C/func/-/CFMachPortGetContext -C/func/-/CFMachPortGetInvalidationCallBack -C/func/-/CFMachPortGetPort -C/func/-/CFMachPortGetTypeID -C/func/-/CFMachPortInvalidate -C/tdef/-/CFMachPortInvalidationCallBack -C/func/-/CFMachPortIsValid -C/tdef/-/CFMachPortRef -C/func/-/CFMachPortSetInvalidationCallBack -C/func/-/CFMakeCollectable -C/func/-/cfmakeraw -C/tdef/-/CFMessagePortCallBack -C/tdef/-/CFMessagePortContext -C/func/-/CFMessagePortCreateLocal -C/func/-/CFMessagePortCreateRemote -C/func/-/CFMessagePortCreateRunLoopSource -C/func/-/CFMessagePortGetContext -C/func/-/CFMessagePortGetInvalidationCallBack -C/func/-/CFMessagePortGetName -C/func/-/CFMessagePortGetTypeID -C/func/-/CFMessagePortInvalidate -C/tdef/-/CFMessagePortInvalidationCallBack -C/func/-/CFMessagePortIsRemote -C/func/-/CFMessagePortIsValid -C/tdef/-/CFMessagePortRef -C/func/-/CFMessagePortSendRequest -C/func/-/CFMessagePortSetInvalidationCallBack -C/func/-/CFMessagePortSetName -C/tdef/-/CFMutableArrayRef -C/tdef/-/CFMutableAttributedStringRef -C/tdef/-/CFMutableBagRef -C/tdef/-/CFMutableBitVectorRef -C/tdef/-/CFMutableCharacterSetRef -C/tdef/-/CFMutableDataRef -C/tdef/-/CFMutableDictionaryRef -C/tdef/-/CFMutableSetRef -C/tdef/-/CFMutableStringRef -C/func/-/CFNetDiagnosticCopyNetworkStatusPassively -C/func/-/CFNetDiagnosticCreateWithStreams -C/func/-/CFNetDiagnosticCreateWithURL -C/func/-/CFNetDiagnosticDiagnoseProblemInteractively -C/tdef/-/CFNetDiagnosticRef -C/func/-/CFNetDiagnosticSetName -C/tdef/-/CFNetDiagnosticStatus -C/tdef/-/CFNetDiagnosticStatusValues -C/tdef/-/CFNetServiceBrowserClientCallBack -C/func/-/CFNetServiceBrowserCreate -C/func/-/CFNetServiceBrowserGetTypeID -C/func/-/CFNetServiceBrowserInvalidate -C/tdef/-/CFNetServiceBrowserRef -C/func/-/CFNetServiceBrowserScheduleWithRunLoop -C/func/-/CFNetServiceBrowserSearchForDomains -C/func/-/CFNetServiceBrowserSearchForServices -C/func/-/CFNetServiceBrowserStopSearch -C/func/-/CFNetServiceBrowserUnscheduleFromRunLoop -C/func/-/CFNetServiceCancel -C/tdef/-/CFNetServiceClientCallBack -C/tdef/-/CFNetServiceClientContext -C/func/-/CFNetServiceCreate -C/func/-/CFNetServiceCreateCopy -C/func/-/CFNetServiceCreateDictionaryWithTXTData -C/func/-/CFNetServiceCreateTXTDataWithDictionary -C/func/-/CFNetServiceGetAddressing -C/func/-/CFNetServiceGetDomain -C/func/-/CFNetServiceGetName -C/func/-/CFNetServiceGetPortNumber -C/func/-/CFNetServiceGetProtocolSpecificInformation -C/func/-/CFNetServiceGetTargetHost -C/func/-/CFNetServiceGetTXTData -C/func/-/CFNetServiceGetType -C/func/-/CFNetServiceGetTypeID -C/tdef/-/CFNetServiceMonitorClientCallBack -C/func/-/CFNetServiceMonitorCreate -C/func/-/CFNetServiceMonitorGetTypeID -C/func/-/CFNetServiceMonitorInvalidate -C/tdef/-/CFNetServiceMonitorRef -C/func/-/CFNetServiceMonitorScheduleWithRunLoop -C/func/-/CFNetServiceMonitorStart -C/func/-/CFNetServiceMonitorStop -C/tdef/-/CFNetServiceMonitorType -C/func/-/CFNetServiceMonitorUnscheduleFromRunLoop -C/tdef/-/CFNetServiceRef -C/func/-/CFNetServiceRegister -C/func/-/CFNetServiceRegisterWithOptions -C/func/-/CFNetServiceResolve -C/func/-/CFNetServiceResolveWithTimeout -C/func/-/CFNetServiceScheduleWithRunLoop -C/tdef/-/CFNetServicesError -C/func/-/CFNetServiceSetClient -C/func/-/CFNetServiceSetProtocolSpecificInformation -C/func/-/CFNetServiceSetTXTData -C/func/-/CFNetServiceUnscheduleFromRunLoop -C/func/-/CFNetworkCopyProxiesForAutoConfigurationScript -C/func/-/CFNetworkCopyProxiesForURL -C/func/-/CFNetworkCopySystemProxySettings -C/tdef/-/CFNetworkErrors -C/func/-/CFNetworkExecuteProxyAutoConfigurationScript -C/func/-/CFNetworkExecuteProxyAutoConfigurationURL -C/tdef/-/CFNotificationCallback -C/func/-/CFNotificationCenterAddObserver -C/func/-/CFNotificationCenterGetDarwinNotifyCenter -C/func/-/CFNotificationCenterGetDistributedCenter -C/func/-/CFNotificationCenterGetLocalCenter -C/func/-/CFNotificationCenterGetTypeID -C/func/-/CFNotificationCenterPostNotification -C/func/-/CFNotificationCenterPostNotificationWithOptions -C/tdef/-/CFNotificationCenterRef -C/func/-/CFNotificationCenterRemoveEveryObserver -C/func/-/CFNotificationCenterRemoveObserver -C/tdef/-/CFNotificationSuspensionBehavior -C/econst/-/CFNotificationSuspensionBehaviorCoalesce -C/econst/-/CFNotificationSuspensionBehaviorDeliverImmediately -C/econst/-/CFNotificationSuspensionBehaviorDrop -C/econst/-/CFNotificationSuspensionBehaviorHold -C/func/-/CFNullGetTypeID -C/tdef/-/CFNullRef -C/func/-/CFNumberCompare -C/func/-/CFNumberCreate -C/func/-/CFNumberFormatterCopyProperty -C/func/-/CFNumberFormatterCreate -C/func/-/CFNumberFormatterCreateNumberFromString -C/func/-/CFNumberFormatterCreateStringWithNumber -C/func/-/CFNumberFormatterCreateStringWithValue -C/func/-/CFNumberFormatterGetDecimalInfoForCurrencyCode -C/func/-/CFNumberFormatterGetFormat -C/func/-/CFNumberFormatterGetLocale -C/func/-/CFNumberFormatterGetStyle -C/func/-/CFNumberFormatterGetTypeID -C/func/-/CFNumberFormatterGetValueFromString -C/tdef/-/CFNumberFormatterOptionFlags -C/tdef/-/CFNumberFormatterPadPosition -C/tdef/-/CFNumberFormatterRef -C/tdef/-/CFNumberFormatterRoundingMode -C/func/-/CFNumberFormatterSetFormat -C/func/-/CFNumberFormatterSetProperty -C/tdef/-/CFNumberFormatterStyle -C/func/-/CFNumberGetByteSize -C/func/-/CFNumberGetType -C/func/-/CFNumberGetTypeID -C/func/-/CFNumberGetValue -C/func/-/CFNumberIsFloatType -C/tdef/-/CFNumberRef -C/tdef/-/CFNumberType -C/tdef/-/CFOptionFlags -C/func/-/CFPlugInAddInstanceForFactory -C/func/-/CFPlugInCreate -C/tdef/-/CFPlugInDynamicRegisterFunction -C/tdef/-/CFPlugInFactoryFunction -C/func/-/CFPlugInFindFactoriesForPlugInType -C/func/-/CFPlugInFindFactoriesForPlugInTypeInPlugIn -C/func/-/CFPlugInGetBundle -C/func/-/CFPlugInGetTypeID -C/func/-/CFPlugInInstanceCreate -C/func/-/CFPlugInInstanceCreateWithInstanceDataSize -C/tdef/-/CFPlugInInstanceDeallocateInstanceDataFunction -C/func/-/CFPlugInInstanceGetFactoryName -C/func/-/CFPlugInInstanceGetInstanceData -C/tdef/-/CFPlugInInstanceGetInterfaceFunction -C/func/-/CFPlugInInstanceGetInterfaceFunctionTable -C/func/-/CFPlugInInstanceGetTypeID -C/tdef/-/CFPlugInInstanceRef -C/func/-/CFPlugInIsLoadOnDemand -C/tdef/-/CFPlugInRef -C/func/-/CFPlugInRegisterFactoryFunction -C/func/-/CFPlugInRegisterFactoryFunctionByName -C/func/-/CFPlugInRegisterPlugInType -C/func/-/CFPlugInRemoveInstanceForFactory -C/func/-/CFPlugInSetLoadOnDemand -C/tdef/-/CFPlugInUnloadFunction -C/func/-/CFPlugInUnregisterFactory -C/func/-/CFPlugInUnregisterPlugInType -C/func/-/CFPreferencesAddSuitePreferencesToApp -C/func/-/CFPreferencesAppSynchronize -C/func/-/CFPreferencesAppValueIsForced -C/func/-/CFPreferencesCopyApplicationList -C/func/-/CFPreferencesCopyAppValue -C/func/-/CFPreferencesCopyKeyList -C/func/-/CFPreferencesCopyMultiple -C/func/-/CFPreferencesCopyValue -C/func/-/CFPreferencesGetAppBooleanValue -C/func/-/CFPreferencesGetAppIntegerValue -C/func/-/CFPreferencesRemoveSuitePreferencesFromApp -C/func/-/CFPreferencesSetAppValue -C/func/-/CFPreferencesSetMultiple -C/func/-/CFPreferencesSetValue -C/func/-/CFPreferencesSynchronize -C/func/-/CFPropertyListCreateData -C/func/-/CFPropertyListCreateDeepCopy -C/func/-/CFPropertyListCreateFromStream -C/func/-/CFPropertyListCreateFromXMLData -C/func/-/CFPropertyListCreateWithData -C/func/-/CFPropertyListCreateWithStream -C/func/-/CFPropertyListCreateXMLData -C/tdef/-/CFPropertyListFormat -C/func/-/CFPropertyListIsValid -C/tdef/-/CFPropertyListMutabilityOptions -C/tdef/-/CFPropertyListRef -C/func/-/CFPropertyListWrite -C/func/-/CFPropertyListWriteToStream -C/tdef/-/CFProxyAutoConfigurationResultCallback -C/tdef/-/CFRange -C/func/-/CFRangeMake -C/tdef/-/CFReadStreamClientCallBack -C/func/-/CFReadStreamClose -C/func/-/CFReadStreamCopyError -C/func/-/CFReadStreamCopyProperty -C/func/-/CFReadStreamCreateForHTTPRequest -C/func/-/CFReadStreamCreateForStreamedHTTPRequest -C/func/-/CFReadStreamCreateWithBytesNoCopy -C/func/-/CFReadStreamCreateWithFile -C/func/-/CFReadStreamCreateWithFTPURL -C/func/-/CFReadStreamGetBuffer -C/func/-/CFReadStreamGetError -C/func/-/CFReadStreamGetStatus -C/func/-/CFReadStreamGetTypeID -C/func/-/CFReadStreamHasBytesAvailable -C/func/-/CFReadStreamOpen -C/func/-/CFReadStreamRead -C/tdef/-/CFReadStreamRef -C/func/-/CFReadStreamScheduleWithRunLoop -C/func/-/CFReadStreamSetClient -C/func/-/CFReadStreamSetProperty -C/func/-/CFReadStreamUnscheduleFromRunLoop -C/func/-/CFRelease -C/func/-/CFRetain -C/tdef/-/CFRunLoopActivity -C/func/-/CFRunLoopAddCommonMode -C/func/-/CFRunLoopAddObserver -C/func/-/CFRunLoopAddSource -C/func/-/CFRunLoopAddTimer -C/tdef/-/CFRunLoopCancelCallBack -C/func/-/CFRunLoopContainsObserver -C/func/-/CFRunLoopContainsSource -C/func/-/CFRunLoopContainsTimer -C/func/-/CFRunLoopCopyAllModes -C/func/-/CFRunLoopCopyCurrentMode -C/tdef/-/CFRunLoopEqualCallBack -C/func/-/CFRunLoopGetCurrent -C/func/-/CFRunLoopGetMain -C/func/-/CFRunLoopGetNextTimerFireDate -C/tdef/-/CFRunLoopGetPortCallBack -C/func/-/CFRunLoopGetTypeID -C/tdef/-/CFRunLoopHashCallBack -C/func/-/CFRunLoopIsWaiting -C/tdef/-/CFRunLoopMachPerformCallBack -C/tdef/-/CFRunLoopObserverCallBack -C/tdef/-/CFRunLoopObserverContext -C/func/-/CFRunLoopObserverCreate -C/func/-/CFRunLoopObserverDoesRepeat -C/func/-/CFRunLoopObserverGetActivities -C/func/-/CFRunLoopObserverGetContext -C/func/-/CFRunLoopObserverGetOrder -C/func/-/CFRunLoopObserverGetTypeID -C/func/-/CFRunLoopObserverInvalidate -C/func/-/CFRunLoopObserverIsValid -C/tdef/-/CFRunLoopObserverRef -C/func/-/CFRunLoopPerformBlock -C/tdef/-/CFRunLoopPerformCallBack -C/tdef/-/CFRunLoopRef -C/func/-/CFRunLoopRemoveObserver -C/func/-/CFRunLoopRemoveSource -C/func/-/CFRunLoopRemoveTimer -C/func/-/CFRunLoopRun -C/func/-/CFRunLoopRunInMode -C/tdef/-/CFRunLoopScheduleCallBack -C/tdef/-/CFRunLoopSourceContext -C/tdef/-/CFRunLoopSourceContext1 -C/func/-/CFRunLoopSourceCreate -C/func/-/CFRunLoopSourceGetContext -C/func/-/CFRunLoopSourceGetOrder -C/func/-/CFRunLoopSourceGetTypeID -C/func/-/CFRunLoopSourceInvalidate -C/func/-/CFRunLoopSourceIsValid -C/tdef/-/CFRunLoopSourceRef -C/func/-/CFRunLoopSourceSignal -C/func/-/CFRunLoopStop -C/tdef/-/CFRunLoopTimerCallBack -C/tdef/-/CFRunLoopTimerContext -C/func/-/CFRunLoopTimerCreate -C/func/-/CFRunLoopTimerDoesRepeat -C/func/-/CFRunLoopTimerGetContext -C/func/-/CFRunLoopTimerGetInterval -C/func/-/CFRunLoopTimerGetNextFireDate -C/func/-/CFRunLoopTimerGetOrder -C/func/-/CFRunLoopTimerGetTypeID -C/func/-/CFRunLoopTimerInvalidate -C/func/-/CFRunLoopTimerIsValid -C/tdef/-/CFRunLoopTimerRef -C/func/-/CFRunLoopTimerSetNextFireDate -C/func/-/CFRunLoopWakeUp -C/func/-/CFSetAddValue -C/tdef/-/CFSetApplierFunction -C/func/-/CFSetApplyFunction -C/tdef/-/CFSetCallBacks -C/func/-/CFSetContainsValue -C/tdef/-/CFSetCopyDescriptionCallBack -C/func/-/CFSetCreate -C/func/-/CFSetCreateCopy -C/func/-/CFSetCreateMutable -C/func/-/CFSetCreateMutableCopy -C/tdef/-/CFSetEqualCallBack -C/func/-/CFSetGetCount -C/func/-/CFSetGetCountOfValue -C/func/-/CFSetGetTypeID -C/func/-/CFSetGetValue -C/func/-/CFSetGetValueIfPresent -C/func/-/CFSetGetValues -C/tdef/-/CFSetHashCallBack -C/func/-/cfsetispeed -C/func/-/cfsetospeed -C/tdef/-/CFSetRef -C/tdef/-/CFSetReleaseCallBack -C/func/-/CFSetRemoveAllValues -C/func/-/CFSetRemoveValue -C/func/-/CFSetReplaceValue -C/tdef/-/CFSetRetainCallBack -C/func/-/CFSetSetValue -C/func/-/cfsetspeed -C/func/-/CFShow -C/func/-/CFShowStr -C/tdef/-/CFSocketCallBack -C/tdef/-/CFSocketCallBackType -C/func/-/CFSocketConnectToAddress -C/tdef/-/CFSocketContext -C/func/-/CFSocketCopyAddress -C/func/-/CFSocketCopyPeerAddress -C/func/-/CFSocketCopyRegisteredSocketSignature -C/func/-/CFSocketCopyRegisteredValue -C/func/-/CFSocketCreate -C/func/-/CFSocketCreateConnectedToSocketSignature -C/func/-/CFSocketCreateRunLoopSource -C/func/-/CFSocketCreateWithNative -C/func/-/CFSocketCreateWithSocketSignature -C/func/-/CFSocketDisableCallBacks -C/func/-/CFSocketEnableCallBacks -C/tdef/-/CFSocketError -C/func/-/CFSocketGetContext -C/func/-/CFSocketGetDefaultNameRegistryPortNumber -C/func/-/CFSocketGetNative -C/func/-/CFSocketGetSocketFlags -C/func/-/CFSocketGetTypeID -C/func/-/CFSocketInvalidate -C/func/-/CFSocketIsValid -C/tdef/-/CFSocketNativeHandle -C/tdef/-/CFSocketRef -C/func/-/CFSocketRegisterSocketSignature -C/func/-/CFSocketRegisterValue -C/func/-/CFSocketSendData -C/func/-/CFSocketSetAddress -C/func/-/CFSocketSetDefaultNameRegistryPortNumber -C/func/-/CFSocketSetSocketFlags -C/tdef/-/CFSocketSignature -C/func/-/CFSocketStreamPairSetSecurityProtocol -C/func/-/CFSocketStreamSOCKSGetError -C/func/-/CFSocketStreamSOCKSGetErrorSubdomain -C/func/-/CFSocketUnregister -C/macro/-/CFSTR -C/tag/-/CFStreamClientContext -C/tdef/-/CFStreamClientContext -C/func/-/CFStreamCreateBoundPair -C/func/-/CFStreamCreatePairWithPeerSocketSignature -C/func/-/CFStreamCreatePairWithSocket -C/func/-/CFStreamCreatePairWithSocketToCFHost -C/func/-/CFStreamCreatePairWithSocketToHost -C/func/-/CFStreamCreatePairWithSocketToNetService -C/tdef/-/CFStreamError -C/tdef/-/CFStreamErrorDomain -C/tdef/-/CFStreamErrorHTTP -C/tdef/-/CFStreamErrorHTTPAuthentication -C/tdef/-/CFStreamEventType -C/tdef/-/CFStreamSocketSecurityProtocol -C/tdef/-/CFStreamStatus -C/func/-/CFStringAppend -C/func/-/CFStringAppendCharacters -C/func/-/CFStringAppendCString -C/func/-/CFStringAppendFormat -C/func/-/CFStringAppendFormatAndArguments -C/func/-/CFStringAppendPascalString -C/tdef/-/CFStringBuiltInEncodings -C/func/-/CFStringCapitalize -C/func/-/CFStringCompare -C/tdef/-/CFStringCompareFlags -C/func/-/CFStringCompareWithOptions -C/func/-/CFStringCompareWithOptionsAndLocale -C/func/-/CFStringConvertEncodingToIANACharSetName -C/func/-/CFStringConvertEncodingToNSStringEncoding -C/func/-/CFStringConvertEncodingToWindowsCodepage -C/func/-/CFStringConvertIANACharSetNameToEncoding -C/func/-/CFStringConvertNSStringEncodingToEncoding -C/func/-/CFStringConvertWindowsCodepageToEncoding -C/func/-/CFStringCreateArrayBySeparatingStrings -C/func/-/CFStringCreateArrayWithFindResults -C/func/-/CFStringCreateByCombiningStrings -C/func/-/CFStringCreateCopy -C/func/-/CFStringCreateExternalRepresentation -C/func/-/CFStringCreateFromExternalRepresentation -C/func/-/CFStringCreateMutable -C/func/-/CFStringCreateMutableCopy -C/func/-/CFStringCreateMutableWithExternalCharactersNoCopy -C/func/-/CFStringCreateWithBytes -C/func/-/CFStringCreateWithBytesNoCopy -C/func/-/CFStringCreateWithCharacters -C/func/-/CFStringCreateWithCharactersNoCopy -C/func/-/CFStringCreateWithCString -C/func/-/CFStringCreateWithCStringNoCopy -C/func/-/CFStringCreateWithFileSystemRepresentation -C/func/-/CFStringCreateWithFormat -C/func/-/CFStringCreateWithFormatAndArguments -C/func/-/CFStringCreateWithPascalString -C/func/-/CFStringCreateWithPascalStringNoCopy -C/func/-/CFStringCreateWithSubstring -C/func/-/CFStringDelete -C/tdef/-/CFStringEncoding -C/tdef/-/CFStringEncodings -C/func/-/CFStringFind -C/func/-/CFStringFindAndReplace -C/func/-/CFStringFindCharacterFromSet -C/func/-/CFStringFindWithOptions -C/func/-/CFStringFindWithOptionsAndLocale -C/func/-/CFStringFold -C/func/-/CFStringGetBytes -C/func/-/CFStringGetCharacterAtIndex -C/func/-/CFStringGetCharacterFromInlineBuffer -C/func/-/CFStringGetCharacters -C/func/-/CFStringGetCharactersPtr -C/func/-/CFStringGetCString -C/func/-/CFStringGetCStringPtr -C/func/-/CFStringGetDoubleValue -C/func/-/CFStringGetFastestEncoding -C/func/-/CFStringGetFileSystemRepresentation -C/func/-/CFStringGetIntValue -C/func/-/CFStringGetLength -C/func/-/CFStringGetLineBounds -C/func/-/CFStringGetListOfAvailableEncodings -C/func/-/CFStringGetLongCharacterForSurrogatePair -C/func/-/CFStringGetMaximumSizeForEncoding -C/func/-/CFStringGetMaximumSizeOfFileSystemRepresentation -C/func/-/CFStringGetMostCompatibleMacStringEncoding -C/func/-/CFStringGetNameOfEncoding -C/func/-/CFStringGetParagraphBounds -C/func/-/CFStringGetPascalString -C/func/-/CFStringGetPascalStringPtr -C/func/-/CFStringGetRangeOfComposedCharactersAtIndex -C/func/-/CFStringGetSmallestEncoding -C/func/-/CFStringGetSurrogatePairForLongCharacter -C/func/-/CFStringGetSystemEncoding -C/func/-/CFStringGetTypeID -C/func/-/CFStringHasPrefix -C/func/-/CFStringHasSuffix -C/func/-/CFStringInitInlineBuffer -C/tag/-/CFStringInlineBuffer -C/func/-/CFStringInsert -C/func/-/CFStringIsEncodingAvailable -C/func/-/CFStringIsSurrogateHighCharacter -C/func/-/CFStringIsSurrogateLowCharacter -C/func/-/CFStringLowercase -C/tdef/-/CFStringNormalizationForm -C/func/-/CFStringNormalize -C/func/-/CFStringPad -C/tdef/-/CFStringRef -C/func/-/CFStringReplace -C/func/-/CFStringReplaceAll -C/func/-/CFStringSetExternalCharactersNoCopy -C/func/-/CFStringTokenizerAdvanceToNextToken -C/func/-/CFStringTokenizerCopyBestStringLanguage -C/func/-/CFStringTokenizerCopyCurrentTokenAttribute -C/func/-/CFStringTokenizerCreate -C/func/-/CFStringTokenizerGetCurrentSubTokens -C/func/-/CFStringTokenizerGetCurrentTokenRange -C/func/-/CFStringTokenizerGetTypeID -C/func/-/CFStringTokenizerGoToTokenAtIndex -C/tdef/-/CFStringTokenizerRef -C/func/-/CFStringTokenizerSetString -C/tdef/-/CFStringTokenizerTokenType -C/func/-/CFStringTransform -C/func/-/CFStringTrim -C/func/-/CFStringTrimWhitespace -C/func/-/CFStringUppercase -C/func/-/CFSwapInt16 -C/func/-/CFSwapInt16BigToHost -C/func/-/CFSwapInt16HostToBig -C/func/-/CFSwapInt16HostToLittle -C/func/-/CFSwapInt16LittleToHost -C/func/-/CFSwapInt32 -C/func/-/CFSwapInt32BigToHost -C/func/-/CFSwapInt32HostToBig -C/func/-/CFSwapInt32HostToLittle -C/func/-/CFSwapInt32LittleToHost -C/func/-/CFSwapInt64 -C/func/-/CFSwapInt64BigToHost -C/func/-/CFSwapInt64HostToBig -C/func/-/CFSwapInt64HostToLittle -C/func/-/CFSwapInt64LittleToHost -C/tdef/-/CFSwappedFloat32 -C/tdef/-/CFSwappedFloat64 -C/tdef/-/CFTimeInterval -C/func/-/CFTimeZoneCopyAbbreviation -C/func/-/CFTimeZoneCopyAbbreviationDictionary -C/func/-/CFTimeZoneCopyDefault -C/func/-/CFTimeZoneCopyKnownNames -C/func/-/CFTimeZoneCopyLocalizedName -C/func/-/CFTimeZoneCopySystem -C/func/-/CFTimeZoneCreate -C/func/-/CFTimeZoneCreateWithName -C/func/-/CFTimeZoneCreateWithTimeIntervalFromGMT -C/func/-/CFTimeZoneGetData -C/func/-/CFTimeZoneGetDaylightSavingTimeOffset -C/func/-/CFTimeZoneGetName -C/func/-/CFTimeZoneGetNextDaylightSavingTimeTransition -C/func/-/CFTimeZoneGetSecondsFromGMT -C/func/-/CFTimeZoneGetTypeID -C/func/-/CFTimeZoneIsDaylightSavingTime -C/tdef/-/CFTimeZoneNameStyle -C/tdef/-/CFTimeZoneRef -C/func/-/CFTimeZoneResetSystem -C/func/-/CFTimeZoneSetAbbreviationDictionary -C/func/-/CFTimeZoneSetDefault -C/func/-/CFTreeAppendChild -C/tdef/-/CFTreeApplierFunction -C/func/-/CFTreeApplyFunctionToChildren -C/tdef/-/CFTreeContext -C/tdef/-/CFTreeCopyDescriptionCallBack -C/func/-/CFTreeCreate -C/func/-/CFTreeFindRoot -C/func/-/CFTreeGetChildAtIndex -C/func/-/CFTreeGetChildCount -C/func/-/CFTreeGetChildren -C/func/-/CFTreeGetContext -C/func/-/CFTreeGetFirstChild -C/func/-/CFTreeGetNextSibling -C/func/-/CFTreeGetParent -C/func/-/CFTreeGetTypeID -C/func/-/CFTreeInsertSibling -C/func/-/CFTreePrependChild -C/tdef/-/CFTreeRef -C/tdef/-/CFTreeReleaseCallBack -C/func/-/CFTreeRemove -C/func/-/CFTreeRemoveAllChildren -C/tdef/-/CFTreeRetainCallBack -C/func/-/CFTreeSetContext -C/func/-/CFTreeSortChildren -C/tdef/-/CFTypeID -C/tdef/-/CFTypeRef -C/tdef/-/CFURLBookmarkCreationOptions -C/tdef/-/CFURLBookmarkFileCreationOptions -C/tdef/-/CFURLBookmarkResolutionOptions -C/func/-/CFURLCanBeDecomposed -C/func/-/CFURLClearResourcePropertyCache -C/func/-/CFURLClearResourcePropertyCacheForKey -C/tdef/-/CFURLComponentType -C/func/-/CFURLCopyAbsoluteURL -C/func/-/CFURLCopyFileSystemPath -C/func/-/CFURLCopyFragment -C/func/-/CFURLCopyHostName -C/func/-/CFURLCopyLastPathComponent -C/func/-/CFURLCopyNetLocation -C/func/-/CFURLCopyParameterString -C/func/-/CFURLCopyPassword -C/func/-/CFURLCopyPath -C/func/-/CFURLCopyPathExtension -C/func/-/CFURLCopyQueryString -C/func/-/CFURLCopyResourcePropertiesForKeys -C/func/-/CFURLCopyResourcePropertyForKey -C/func/-/CFURLCopyResourceSpecifier -C/func/-/CFURLCopyScheme -C/func/-/CFURLCopyStrictPath -C/func/-/CFURLCopyUserName -C/func/-/CFURLCreateAbsoluteURLWithBytes -C/func/-/CFURLCreateBookmarkData -C/func/-/CFURLCreateBookmarkDataFromAliasRecord -C/func/-/CFURLCreateBookmarkDataFromFile -C/func/-/CFURLCreateByResolvingBookmarkData -C/func/-/CFURLCreateCopyAppendingPathComponent -C/func/-/CFURLCreateCopyAppendingPathExtension -C/func/-/CFURLCreateCopyDeletingLastPathComponent -C/func/-/CFURLCreateCopyDeletingPathExtension -C/func/-/CFURLCreateData -C/func/-/CFURLCreateDataAndPropertiesFromResource -C/func/-/CFURLCreateFilePathURL -C/func/-/CFURLCreateFileReferenceURL -C/func/-/CFURLCreateFromFileSystemRepresentation -C/func/-/CFURLCreateFromFileSystemRepresentationRelativeToBase -C/func/-/CFURLCreateFromFSRef -C/func/-/CFURLCreatePropertyFromResource -C/func/-/CFURLCreateResourcePropertiesForKeysFromBookmarkData -C/func/-/CFURLCreateResourcePropertyForKeyFromBookmarkData -C/func/-/CFURLCreateStringByAddingPercentEscapes -C/func/-/CFURLCreateStringByReplacingPercentEscapes -C/func/-/CFURLCreateStringByReplacingPercentEscapesUsingEncoding -C/func/-/CFURLCreateWithBytes -C/func/-/CFURLCreateWithFileSystemPath -C/func/-/CFURLCreateWithFileSystemPathRelativeToBase -C/func/-/CFURLCreateWithString -C/func/-/CFURLDestroyResource -C/tdef/-/CFURLError -C/func/-/CFURLGetBaseURL -C/func/-/CFURLGetByteRangeForComponent -C/func/-/CFURLGetBytes -C/func/-/CFURLGetFileSystemRepresentation -C/func/-/CFURLGetFSRef -C/func/-/CFURLGetPortNumber -C/func/-/CFURLGetString -C/func/-/CFURLGetTypeID -C/func/-/CFURLHasDirectoryPath -C/tdef/-/CFURLPathStyle -C/tdef/-/CFURLRef -C/func/-/CFURLResourceIsReachable -C/func/-/CFURLSetResourcePropertiesForKeys -C/func/-/CFURLSetResourcePropertyForKey -C/func/-/CFURLSetTemporaryResourcePropertyForKey -C/func/-/CFURLWriteBookmarkDataToFile -C/func/-/CFURLWriteDataAndPropertiesToResource -C/tdef/-/CFUserNotificationCallBack -C/func/-/CFUserNotificationCancel -C/func/-/CFUserNotificationCheckBoxChecked -C/func/-/CFUserNotificationCreate -C/func/-/CFUserNotificationCreateRunLoopSource -C/func/-/CFUserNotificationDisplayAlert -C/func/-/CFUserNotificationDisplayNotice -C/func/-/CFUserNotificationGetResponseDictionary -C/func/-/CFUserNotificationGetResponseValue -C/func/-/CFUserNotificationGetTypeID -C/func/-/CFUserNotificationPopUpSelection -C/func/-/CFUserNotificationReceiveResponse -C/tdef/-/CFUserNotificationRef -C/func/-/CFUserNotificationSecureTextField -C/func/-/CFUserNotificationUpdate -C/tdef/-/CFUUIDBytes -C/func/-/CFUUIDCreate -C/func/-/CFUUIDCreateFromString -C/func/-/CFUUIDCreateFromUUIDBytes -C/func/-/CFUUIDCreateString -C/func/-/CFUUIDCreateWithBytes -C/func/-/CFUUIDGetConstantUUIDWithBytes -C/func/-/CFUUIDGetTypeID -C/func/-/CFUUIDGetUUIDBytes -C/tdef/-/CFUUIDRef -C/func/-/CFWriteStreamCanAcceptBytes -C/tdef/-/CFWriteStreamClientCallBack -C/func/-/CFWriteStreamClose -C/func/-/CFWriteStreamCopyError -C/func/-/CFWriteStreamCopyProperty -C/func/-/CFWriteStreamCreateWithAllocatedBuffers -C/func/-/CFWriteStreamCreateWithBuffer -C/func/-/CFWriteStreamCreateWithFile -C/func/-/CFWriteStreamCreateWithFTPURL -C/func/-/CFWriteStreamGetError -C/func/-/CFWriteStreamGetStatus -C/func/-/CFWriteStreamGetTypeID -C/func/-/CFWriteStreamOpen -C/tdef/-/CFWriteStreamRef -C/func/-/CFWriteStreamScheduleWithRunLoop -C/func/-/CFWriteStreamSetClient -C/func/-/CFWriteStreamSetProperty -C/func/-/CFWriteStreamUnscheduleFromRunLoop -C/func/-/CFWriteStreamWrite -C/tdef/-/CFXMLAttributeDeclarationInfo -C/tdef/-/CFXMLAttributeListDeclarationInfo -C/func/-/CFXMLCreateStringByEscapingEntities -C/func/-/CFXMLCreateStringByUnescapingEntities -C/tdef/-/CFXMLDocumentInfo -C/tdef/-/CFXMLDocumentTypeInfo -C/tdef/-/CFXMLElementInfo -C/tdef/-/CFXMLElementTypeDeclarationInfo -C/tdef/-/CFXMLEntityInfo -C/tdef/-/CFXMLEntityReferenceInfo -C/tdef/-/CFXMLEntityTypeCode -C/tdef/-/CFXMLExternalID -C/func/-/CFXMLNodeCreate -C/func/-/CFXMLNodeCreateCopy -C/func/-/CFXMLNodeGetInfoPtr -C/func/-/CFXMLNodeGetString -C/func/-/CFXMLNodeGetTypeCode -C/func/-/CFXMLNodeGetTypeID -C/func/-/CFXMLNodeGetVersion -C/tdef/-/CFXMLNodeRef -C/tdef/-/CFXMLNodeTypeCode -C/tdef/-/CFXMLNotationInfo -C/func/-/CFXMLParserAbort -C/tdef/-/CFXMLParserAddChildCallBack -C/tdef/-/CFXMLParserCallBacks -C/tdef/-/CFXMLParserContext -C/tdef/-/CFXMLParserCopyDescriptionCallBack -C/func/-/CFXMLParserCopyErrorDescription -C/func/-/CFXMLParserCreate -C/func/-/CFXMLParserCreateWithDataFromURL -C/tdef/-/CFXMLParserCreateXMLStructureCallBack -C/tdef/-/CFXMLParserEndXMLStructureCallBack -C/func/-/CFXMLParserGetCallBacks -C/func/-/CFXMLParserGetContext -C/func/-/CFXMLParserGetDocument -C/func/-/CFXMLParserGetLineNumber -C/func/-/CFXMLParserGetLocation -C/func/-/CFXMLParserGetSourceURL -C/func/-/CFXMLParserGetStatusCode -C/func/-/CFXMLParserGetTypeID -C/tdef/-/CFXMLParserHandleErrorCallBack -C/tdef/-/CFXMLParserOptions -C/func/-/CFXMLParserParse -C/tdef/-/CFXMLParserRef -C/tdef/-/CFXMLParserReleaseCallBack -C/tdef/-/CFXMLParserResolveExternalEntityCallBack -C/tdef/-/CFXMLParserRetainCallBack -C/tdef/-/CFXMLParserStatusCode -C/tdef/-/CFXMLProcessingInstructionInfo -C/func/-/CFXMLTreeCreateFromData -C/func/-/CFXMLTreeCreateFromDataWithError -C/func/-/CFXMLTreeCreateWithDataFromURL -C/func/-/CFXMLTreeCreateWithNode -C/func/-/CFXMLTreeCreateXMLData -C/func/-/CFXMLTreeGetNode -C/tdef/-/CFXMLTreeRef -C/func/-/CGAcquireDisplayFadeReservation -C/tdef/-/CGAffineTransform -C/func/-/CGAffineTransformConcat -C/func/-/CGAffineTransformEqualToTransform -C/data/-/CGAffineTransformIdentity -C/func/-/CGAffineTransformInvert -C/func/-/CGAffineTransformIsIdentity -C/func/-/CGAffineTransformMake -C/func/-/CGAffineTransformMakeRotation -C/func/-/CGAffineTransformMakeScale -C/func/-/CGAffineTransformMakeTranslation -C/func/-/CGAffineTransformRotate -C/func/-/CGAffineTransformScale -C/func/-/CGAffineTransformTranslate -C/func/-/CGAssociateMouseAndMouseCursorPosition -C/tdef/-/CGBeamPosition -C/func/-/CGBeginDisplayConfiguration -C/func/-/CGBitmapContextCreate -C/func/-/CGBitmapContextCreateImage -C/func/-/CGBitmapContextCreateWithData -C/func/-/CGBitmapContextGetAlphaInfo -C/func/-/CGBitmapContextGetBitmapInfo -C/func/-/CGBitmapContextGetBitsPerComponent -C/func/-/CGBitmapContextGetBitsPerPixel -C/func/-/CGBitmapContextGetBytesPerRow -C/func/-/CGBitmapContextGetColorSpace -C/func/-/CGBitmapContextGetData -C/func/-/CGBitmapContextGetHeight -C/func/-/CGBitmapContextGetWidth -C/tdef/-/CGBitmapInfo -C/tdef/-/CGBlendMode -C/tdef/-/CGButtonCount -C/tdef/-/CGByteValue -C/func/-/CGCancelDisplayConfiguration -C/func/-/CGCaptureAllDisplays -C/func/-/CGCaptureAllDisplaysWithOptions -C/tdef/-/CGCaptureOptions -C/tdef/-/CGCharCode -C/func/-/CGColorCreate -C/func/-/CGColorCreateCopy -C/func/-/CGColorCreateCopyWithAlpha -C/func/-/CGColorCreateGenericCMYK -C/func/-/CGColorCreateGenericGray -C/func/-/CGColorCreateGenericRGB -C/func/-/CGColorCreateWithPattern -C/func/-/CGColorEqualToColor -C/func/-/CGColorGetAlpha -C/func/-/CGColorGetColorSpace -C/func/-/CGColorGetComponents -C/func/-/CGColorGetConstantColor -C/func/-/CGColorGetNumberOfComponents -C/func/-/CGColorGetPattern -C/func/-/CGColorGetTypeID -C/tdef/-/CGColorRef -C/func/-/CGColorRelease -C/tdef/-/CGColorRenderingIntent -C/func/-/CGColorRetain -Objective-C/instm/NSColorSpace/CGColorSpace -C/func/-/CGColorSpaceCopyICCProfile -C/func/-/CGColorSpaceCopyName -C/func/-/CGColorSpaceCreateCalibratedGray -C/func/-/CGColorSpaceCreateCalibratedRGB -C/func/-/CGColorSpaceCreateDeviceCMYK -C/func/-/CGColorSpaceCreateDeviceGray -C/func/-/CGColorSpaceCreateDeviceRGB -C/func/-/CGColorSpaceCreateICCBased -C/func/-/CGColorSpaceCreateIndexed -C/func/-/CGColorSpaceCreateLab -C/func/-/CGColorSpaceCreatePattern -C/func/-/CGColorSpaceCreateWithICCProfile -C/func/-/CGColorSpaceCreateWithName -C/func/-/CGColorSpaceCreateWithPlatformColorSpace -C/func/-/CGColorSpaceGetBaseColorSpace -C/func/-/CGColorSpaceGetColorTable -C/func/-/CGColorSpaceGetColorTableCount -C/func/-/CGColorSpaceGetModel -C/func/-/CGColorSpaceGetNumberOfComponents -C/func/-/CGColorSpaceGetTypeID -C/tdef/-/CGColorSpaceModel -C/tdef/-/CGColorSpaceRef -C/func/-/CGColorSpaceRelease -C/func/-/CGColorSpaceRetain -C/func/-/CGCompleteDisplayConfiguration -C/func/-/CGConfigureDisplayFadeEffect -C/func/-/CGConfigureDisplayMirrorOfDisplay -C/func/-/CGConfigureDisplayMode -C/func/-/CGConfigureDisplayOrigin -C/func/-/CGConfigureDisplayStereoOperation -C/func/-/CGContextAddArc -C/func/-/CGContextAddArcToPoint -C/func/-/CGContextAddCurveToPoint -C/func/-/CGContextAddEllipseInRect -C/func/-/CGContextAddLines -C/func/-/CGContextAddLineToPoint -C/func/-/CGContextAddPath -C/func/-/CGContextAddQuadCurveToPoint -C/func/-/CGContextAddRect -C/func/-/CGContextAddRects -C/func/-/CGContextBeginPage -C/func/-/CGContextBeginPath -C/func/-/CGContextBeginTransparencyLayer -C/func/-/CGContextBeginTransparencyLayerWithRect -C/func/-/CGContextClearRect -C/func/-/CGContextClip -C/func/-/CGContextClipToMask -C/func/-/CGContextClipToRect -C/func/-/CGContextClipToRects -C/func/-/CGContextClosePath -C/func/-/CGContextConcatCTM -C/func/-/CGContextConvertPointToDeviceSpace -C/func/-/CGContextConvertPointToUserSpace -C/func/-/CGContextConvertRectToDeviceSpace -C/func/-/CGContextConvertRectToUserSpace -C/func/-/CGContextConvertSizeToDeviceSpace -C/func/-/CGContextConvertSizeToUserSpace -C/func/-/CGContextCopyPath -C/func/-/CGContextDrawImage -C/func/-/CGContextDrawLayerAtPoint -C/func/-/CGContextDrawLayerInRect -C/func/-/CGContextDrawLinearGradient -C/func/-/CGContextDrawPath -C/func/-/CGContextDrawPDFDocument -C/func/-/CGContextDrawPDFPage -C/func/-/CGContextDrawRadialGradient -C/func/-/CGContextDrawShading -C/func/-/CGContextDrawTiledImage -C/func/-/CGContextEndPage -C/func/-/CGContextEndTransparencyLayer -C/func/-/CGContextEOClip -C/func/-/CGContextEOFillPath -C/func/-/CGContextFillEllipseInRect -C/func/-/CGContextFillPath -C/func/-/CGContextFillRect -C/func/-/CGContextFillRects -C/func/-/CGContextFlush -C/func/-/CGContextGetClipBoundingBox -C/func/-/CGContextGetCTM -C/func/-/CGContextGetInterpolationQuality -C/func/-/CGContextGetPathBoundingBox -C/func/-/CGContextGetPathCurrentPoint -C/func/-/CGContextGetTextMatrix -C/func/-/CGContextGetTextPosition -C/func/-/CGContextGetTypeID -C/func/-/CGContextGetUserSpaceToDeviceSpaceTransform -C/func/-/CGContextIsPathEmpty -C/func/-/CGContextMoveToPoint -C/func/-/CGContextPathContainsPoint -C/tdef/-/CGContextRef -C/func/-/CGContextRelease -C/func/-/CGContextReplacePathWithStrokedPath -C/func/-/CGContextRestoreGState -C/func/-/CGContextRetain -C/func/-/CGContextRotateCTM -C/func/-/CGContextSaveGState -C/func/-/CGContextScaleCTM -C/func/-/CGContextSelectFont -C/func/-/CGContextSetAllowsAntialiasing -C/func/-/CGContextSetAllowsFontSmoothing -C/func/-/CGContextSetAllowsFontSubpixelPositioning -C/func/-/CGContextSetAllowsFontSubpixelQuantization -C/func/-/CGContextSetAlpha -C/func/-/CGContextSetBlendMode -C/func/-/CGContextSetCharacterSpacing -C/func/-/CGContextSetCMYKFillColor -C/func/-/CGContextSetCMYKStrokeColor -C/func/-/CGContextSetFillColor -C/func/-/CGContextSetFillColorSpace -C/func/-/CGContextSetFillColorWithColor -C/func/-/CGContextSetFillPattern -C/func/-/CGContextSetFlatness -C/func/-/CGContextSetFont -C/func/-/CGContextSetFontSize -C/func/-/CGContextSetGrayFillColor -C/func/-/CGContextSetGrayStrokeColor -C/func/-/CGContextSetInterpolationQuality -C/func/-/CGContextSetLineCap -C/func/-/CGContextSetLineDash -C/func/-/CGContextSetLineJoin -C/func/-/CGContextSetLineWidth -C/func/-/CGContextSetMiterLimit -C/func/-/CGContextSetPatternPhase -C/func/-/CGContextSetRenderingIntent -C/func/-/CGContextSetRGBFillColor -C/func/-/CGContextSetRGBStrokeColor -C/func/-/CGContextSetShadow -C/func/-/CGContextSetShadowWithColor -C/func/-/CGContextSetShouldAntialias -C/func/-/CGContextSetShouldSmoothFonts -C/func/-/CGContextSetShouldSubpixelPositionFonts -C/func/-/CGContextSetShouldSubpixelQuantizeFonts -C/func/-/CGContextSetStrokeColor -C/func/-/CGContextSetStrokeColorSpace -C/func/-/CGContextSetStrokeColorWithColor -C/func/-/CGContextSetStrokePattern -C/func/-/CGContextSetTextDrawingMode -C/func/-/CGContextSetTextMatrix -C/func/-/CGContextSetTextPosition -C/func/-/CGContextShowGlyphs -C/func/-/CGContextShowGlyphsAtPoint -C/func/-/CGContextShowGlyphsAtPositions -C/func/-/CGContextShowGlyphsWithAdvances -C/func/-/CGContextShowText -C/func/-/CGContextShowTextAtPoint -C/func/-/CGContextStrokeEllipseInRect -C/func/-/CGContextStrokeLineSegments -C/func/-/CGContextStrokePath -C/func/-/CGContextStrokeRect -C/func/-/CGContextStrokeRectWithWidth -C/func/-/CGContextSynchronize -C/func/-/CGContextTranslateCTM -C/func/-/CGCursorIsDrawnInFramebuffer -C/func/-/CGCursorIsVisible -C/tdef/-/CGDataConsumerCallbacks -C/func/-/CGDataConsumerCreate -C/func/-/CGDataConsumerCreateWithCFData -C/func/-/CGDataConsumerCreateWithURL -C/func/-/CGDataConsumerGetTypeID -C/tdef/-/CGDataConsumerPutBytesCallback -C/tdef/-/CGDataConsumerRef -C/func/-/CGDataConsumerRelease -C/tdef/-/CGDataConsumerReleaseInfoCallback -C/func/-/CGDataConsumerRetain -C/tdef/-/CGDataProviderCallbacks -C/func/-/CGDataProviderCopyData -C/func/-/CGDataProviderCreate -C/func/-/CGDataProviderCreateDirect -C/func/-/CGDataProviderCreateDirectAccess -C/func/-/CGDataProviderCreateSequential -C/func/-/CGDataProviderCreateWithCFData -C/func/-/CGDataProviderCreateWithData -C/func/-/CGDataProviderCreateWithFilename -C/func/-/CGDataProviderCreateWithURL -C/tdef/-/CGDataProviderDirectAccessCallbacks -C/tdef/-/CGDataProviderDirectCallbacks -C/tdef/-/CGDataProviderGetBytePointerCallback -C/tdef/-/CGDataProviderGetBytesAtOffsetCallback -C/tdef/-/CGDataProviderGetBytesAtPositionCallback -C/tdef/-/CGDataProviderGetBytesCallback -C/func/-/CGDataProviderGetTypeID -C/tdef/-/CGDataProviderRef -C/func/-/CGDataProviderRelease -C/tdef/-/CGDataProviderReleaseBytePointerCallback -C/tdef/-/CGDataProviderReleaseDataCallback -C/tdef/-/CGDataProviderReleaseInfoCallback -C/func/-/CGDataProviderRetain -C/tdef/-/CGDataProviderRewindCallback -C/tdef/-/CGDataProviderSequentialCallbacks -C/tdef/-/CGDataProviderSkipBytesCallback -C/tdef/-/CGDataProviderSkipForwardCallback -C/tdef/-/CGDeviceByteColor -C/tdef/-/CGDeviceColor -C/tdef/-/CGDirectDisplayID -C/tdef/-/CGDirectPaletteRef -C/func/-/CGDisplayAddressForPosition -C/func/-/CGDisplayAvailableModes -C/func/-/CGDisplayBaseAddress -C/func/-/CGDisplayBeamPosition -C/func/-/CGDisplayBestModeForParameters -C/func/-/CGDisplayBestModeForParametersAndRefreshRate -C/func/-/CGDisplayBestModeForParametersAndRefreshRateWithProperty -C/func/-/CGDisplayBitsPerPixel -C/func/-/CGDisplayBitsPerSample -C/tdef/-/CGDisplayBlendFraction -C/func/-/CGDisplayBounds -C/func/-/CGDisplayBytesPerRow -C/func/-/CGDisplayCanSetPalette -C/func/-/CGDisplayCapture -C/func/-/CGDisplayCaptureWithOptions -C/tdef/-/CGDisplayChangeSummaryFlags -C/tdef/-/CGDisplayConfigRef -C/tdef/-/CGDisplayCoord -C/func/-/CGDisplayCopyColorSpace -C/tdef/-/CGDisplayCount -C/func/-/CGDisplayCurrentMode -C/tdef/-/CGDisplayErr -C/func/-/CGDisplayFade -C/tdef/-/CGDisplayFadeInterval -C/func/-/CGDisplayFadeOperationInProgress -C/tdef/-/CGDisplayFadeReservationToken -C/func/-/CGDisplayGammaTableCapacity -C/func/-/CGDisplayGetDrawingContext -C/func/-/CGDisplayHideCursor -C/func/-/CGDisplayIDToOpenGLDisplayMask -C/func/-/CGDisplayIOServicePort -C/func/-/CGDisplayIsActive -C/func/-/CGDisplayIsAlwaysInMirrorSet -C/func/-/CGDisplayIsAsleep -C/func/-/CGDisplayIsBuiltin -C/func/-/CGDisplayIsCaptured -C/func/-/CGDisplayIsInHWMirrorSet -C/func/-/CGDisplayIsInMirrorSet -C/func/-/CGDisplayIsMain -C/func/-/CGDisplayIsOnline -C/func/-/CGDisplayIsStereo -C/func/-/CGDisplayMirrorsDisplay -C/func/-/CGDisplayModelNumber -C/func/-/CGDisplayMoveCursorToPoint -C/func/-/CGDisplayPixelsHigh -C/func/-/CGDisplayPixelsWide -C/func/-/CGDisplayPrimaryDisplay -C/tdef/-/CGDisplayReconfigurationCallBack -C/func/-/CGDisplayRegisterReconfigurationCallback -C/func/-/CGDisplayRelease -C/func/-/CGDisplayRemoveReconfigurationCallback -C/tdef/-/CGDisplayReservationInterval -C/func/-/CGDisplayRestoreColorSyncSettings -C/func/-/CGDisplayRotation -C/func/-/CGDisplaySamplesPerPixel -C/func/-/CGDisplayScreenSize -C/func/-/CGDisplaySerialNumber -C/func/-/CGDisplaySetPalette -C/func/-/CGDisplaySetStereoOperation -C/func/-/CGDisplayShowCursor -C/func/-/CGDisplaySwitchToMode -C/func/-/CGDisplayUnitNumber -C/func/-/CGDisplayUsesOpenGLAcceleration -C/func/-/CGDisplayVendorNumber -C/func/-/CGDisplayWaitForBeamPositionOutsideLines -C/func/-/CGEnableEventStateCombining -C/tdef/-/CGError -C/func/-/cgetcap -C/func/-/cgetclose -C/func/-/cgetent -C/func/-/cgetfirst -C/func/-/cgetmatch -C/func/-/cgetnext -C/func/-/cgetnum -C/func/-/cgetset -C/func/-/cgetstr -C/func/-/cgetustr -Objective-C/instm/NSEvent/CGEvent -C/func/-/CGEventCreate -C/func/-/CGEventCreateCopy -C/func/-/CGEventCreateData -C/func/-/CGEventCreateFromData -C/func/-/CGEventCreateKeyboardEvent -C/func/-/CGEventCreateMouseEvent -C/func/-/CGEventCreateScrollWheelEvent -C/func/-/CGEventCreateSourceFromEvent -C/tdef/-/CGEventField -C/tdef/-/CGEventFilterMask -C/tdef/-/CGEventFlags -C/func/-/CGEventGetDoubleValueField -C/func/-/CGEventGetFlags -C/func/-/CGEventGetIntegerValueField -C/func/-/CGEventGetLocation -C/func/-/CGEventGetSource -C/func/-/CGEventGetTimestamp -C/func/-/CGEventGetType -C/func/-/CGEventGetTypeID -C/func/-/CGEventGetUnflippedLocation -C/func/-/CGEventKeyboardGetUnicodeString -C/func/-/CGEventKeyboardSetUnicodeString -C/tdef/-/CGEventMask -C/macro/-/CGEventMaskBit -C/tdef/-/CGEventMouseSubtype -C/func/-/CGEventPost -C/func/-/CGEventPostToPSN -C/tdef/-/CGEventRef -C/func/-/CGEventSetDoubleValueField -C/func/-/CGEventSetFlags -C/func/-/CGEventSetIntegerValueField -C/func/-/CGEventSetLocation -C/func/-/CGEventSetSource -C/func/-/CGEventSetTimestamp -C/func/-/CGEventSetType -C/func/-/CGEventSourceButtonState -C/func/-/CGEventSourceCounterForEventType -C/func/-/CGEventSourceCreate -C/func/-/CGEventSourceFlagsState -C/func/-/CGEventSourceGetKeyboardType -C/func/-/CGEventSourceGetLocalEventsFilterDuringSuppressionState -C/func/-/CGEventSourceGetLocalEventsSuppressionInterval -C/func/-/CGEventSourceGetPixelsPerLine -C/func/-/CGEventSourceGetSourceStateID -C/func/-/CGEventSourceGetTypeID -C/func/-/CGEventSourceGetUserData -C/tdef/-/CGEventSourceKeyboardType -C/func/-/CGEventSourceKeyState -C/tdef/-/CGEventSourceRef -C/func/-/CGEventSourceSecondsSinceLastEventType -C/func/-/CGEventSourceSetKeyboardType -C/func/-/CGEventSourceSetLocalEventsFilterDuringSuppressionState -C/func/-/CGEventSourceSetLocalEventsSuppressionInterval -C/func/-/CGEventSourceSetPixelsPerLine -C/func/-/CGEventSourceSetUserData -C/tdef/-/CGEventSourceStateID -C/tdef/-/CGEventSuppressionState -C/tdef/-/CGEventTapCallBack -C/func/-/CGEventTapCreate -C/func/-/CGEventTapCreateForPSN -C/func/-/CGEventTapEnable -C/tdef/-/CGEventTapInformation -C/func/-/CGEventTapIsEnabled -C/tdef/-/CGEventTapLocation -C/tdef/-/CGEventTapOptions -C/tdef/-/CGEventTapPlacement -C/func/-/CGEventTapPostEvent -C/tdef/-/CGEventTapProxy -C/tdef/-/CGEventTimestamp -C/tdef/-/CGEventType -C/tdef/-/CGFloat -C/macro/-/CGFLOAT_IS_DOUBLE -C/macro/-/CGFLOAT_MAX -C/macro/-/CGFLOAT_MIN -C/func/-/CGFontCanCreatePostScriptSubset -C/func/-/CGFontCopyFullName -C/func/-/CGFontCopyGlyphNameForGlyph -C/func/-/CGFontCopyPostScriptName -C/func/-/CGFontCopyTableForTag -C/func/-/CGFontCopyTableTags -C/func/-/CGFontCopyVariationAxes -C/func/-/CGFontCopyVariations -C/func/-/CGFontCreateCopyWithVariations -C/func/-/CGFontCreatePostScriptEncoding -C/func/-/CGFontCreatePostScriptSubset -C/func/-/CGFontCreateWithDataProvider -C/func/-/CGFontCreateWithFontName -C/func/-/CGFontCreateWithPlatformFont -C/func/-/CGFontGetAscent -C/func/-/CGFontGetCapHeight -C/func/-/CGFontGetDescent -C/func/-/CGFontGetFontBBox -C/func/-/CGFontGetGlyphAdvances -C/func/-/CGFontGetGlyphBBoxes -C/func/-/CGFontGetGlyphWithGlyphName -C/func/-/CGFontGetItalicAngle -C/func/-/CGFontGetLeading -C/func/-/CGFontGetNumberOfGlyphs -C/func/-/CGFontGetStemV -C/func/-/CGFontGetTypeID -C/func/-/CGFontGetUnitsPerEm -C/func/-/CGFontGetXHeight -C/tdef/-/CGFontIndex -C/tdef/-/CGFontPostScriptFormat -C/tdef/-/CGFontRef -C/func/-/CGFontRelease -C/func/-/CGFontRetain -C/tdef/-/CGFunctionCallbacks -C/func/-/CGFunctionCreate -C/tdef/-/CGFunctionEvaluateCallback -C/func/-/CGFunctionGetTypeID -C/tdef/-/CGFunctionRef -C/func/-/CGFunctionRelease -C/tdef/-/CGFunctionReleaseInfoCallback -C/func/-/CGFunctionRetain -C/tdef/-/CGGammaValue -C/func/-/CGGetActiveDisplayList -C/func/-/CGGetDisplaysWithOpenGLDisplayMask -C/func/-/CGGetDisplaysWithPoint -C/func/-/CGGetDisplaysWithRect -C/func/-/CGGetDisplayTransferByFormula -C/func/-/CGGetDisplayTransferByTable -C/func/-/CGGetEventTapList -C/func/-/CGGetLastMouseDelta -C/func/-/CGGetOnlineDisplayList -C/func/-/CGGLContextCreate -C/func/-/CGGLContextUpdateViewportSize -C/tdef/-/CGGlyph -C/econst/-/CGGlyphMax -C/econst/-/CGGlyphMin -C/func/-/CGGradientCreateWithColorComponents -C/func/-/CGGradientCreateWithColors -C/tdef/-/CGGradientDrawingOptions -C/func/-/CGGradientGetTypeID -C/tdef/-/CGGradientRef -C/func/-/CGGradientRelease -C/func/-/CGGradientRetain -Objective-C/instm/NSBitmapImageRep/CGImage -C/tdef/-/CGImageAlphaInfo -C/func/-/CGImageCreate -C/func/-/CGImageCreateCopy -C/func/-/CGImageCreateCopyWithColorSpace -C/func/-/CGImageCreateWithImageInRect -C/func/-/CGImageCreateWithJPEGDataProvider -C/func/-/CGImageCreateWithMask -C/func/-/CGImageCreateWithMaskingColors -C/func/-/CGImageCreateWithPNGDataProvider -C/func/-/CGImageDestinationAddImage -C/func/-/CGImageDestinationAddImageFromSource -C/func/-/CGImageDestinationCopyTypeIdentifiers -C/func/-/CGImageDestinationCreateWithData -C/func/-/CGImageDestinationCreateWithDataConsumer -C/func/-/CGImageDestinationCreateWithURL -C/func/-/CGImageDestinationFinalize -C/func/-/CGImageDestinationGetTypeID -C/tdef/-/CGImageDestinationRef -C/func/-/CGImageDestinationSetProperties -Objective-C/instm/NSImageRep/CGImageForProposedRect:context:hints: -Objective-C/instm/NSImage/CGImageForProposedRect:context:hints: -C/func/-/CGImageGetAlphaInfo -C/func/-/CGImageGetBitmapInfo -C/func/-/CGImageGetBitsPerComponent -C/func/-/CGImageGetBitsPerPixel -C/func/-/CGImageGetBytesPerRow -C/func/-/CGImageGetColorSpace -C/func/-/CGImageGetDataProvider -C/func/-/CGImageGetDecode -C/func/-/CGImageGetHeight -C/func/-/CGImageGetRenderingIntent -C/func/-/CGImageGetShouldInterpolate -C/func/-/CGImageGetTypeID -C/func/-/CGImageGetWidth -C/func/-/CGImageIsMask -C/func/-/CGImageMaskCreate -C/tdef/-/CGImageRef -C/func/-/CGImageRelease -C/func/-/CGImageRetain -C/func/-/CGImageSourceCopyProperties -C/func/-/CGImageSourceCopyPropertiesAtIndex -C/func/-/CGImageSourceCopyTypeIdentifiers -C/func/-/CGImageSourceCreateImageAtIndex -C/func/-/CGImageSourceCreateIncremental -C/func/-/CGImageSourceCreateThumbnailAtIndex -C/func/-/CGImageSourceCreateWithData -C/func/-/CGImageSourceCreateWithDataProvider -C/func/-/CGImageSourceCreateWithURL -C/func/-/CGImageSourceGetCount -C/func/-/CGImageSourceGetStatus -C/func/-/CGImageSourceGetStatusAtIndex -C/func/-/CGImageSourceGetType -C/func/-/CGImageSourceGetTypeID -C/tdef/-/CGImageSourceRef -C/tdef/-/CGImageSourceStatus -C/func/-/CGImageSourceUpdateData -C/func/-/CGImageSourceUpdateDataProvider -C/func/-/CGInhibitLocalEvents -C/tdef/-/CGInterpolationQuality -C/tdef/-/CGKeyCode -C/func/-/CGLayerCreateWithContext -C/func/-/CGLayerGetContext -C/func/-/CGLayerGetSize -C/func/-/CGLayerGetTypeID -C/tdef/-/CGLayerRef -C/func/-/CGLayerRelease -C/func/-/CGLayerRetain -C/func/-/CGLChoosePixelFormat -C/func/-/CGLClearDrawable -C/tdef/-/CGLContextEnable -Objective-C/intfm/QCPlugInContext/CGLContextObj -Objective-C/instm/NSOpenGLContext/CGLContextObj -C/tdef/-/CGLContextObj -C/tdef/-/CGLContextParameter -C/func/-/CGLCopyContext -C/func/-/CGLCreateContext -C/func/-/CGLCreatePBuffer -C/func/-/CGLDescribePBuffer -C/func/-/CGLDescribePixelFormat -C/func/-/CGLDescribeRenderer -C/func/-/CGLDestroyContext -C/func/-/CGLDestroyPBuffer -C/func/-/CGLDestroyPixelFormat -C/func/-/CGLDestroyRendererInfo -C/func/-/CGLDisable -C/func/-/CGLEnable -C/func/-/CGLErrorString -C/func/-/CGLFlushDrawable -C/func/-/CGLGetContextRetainCount -C/func/-/CGLGetCurrentContext -C/func/-/CGLGetGlobalOption -C/func/-/CGLGetOffScreen -C/func/-/CGLGetOption -C/func/-/CGLGetParameter -C/func/-/CGLGetPBuffer -C/func/-/CGLGetPBufferRetainCount -C/func/-/CGLGetPixelFormat -C/func/-/CGLGetPixelFormatRetainCount -C/func/-/CGLGetVersion -C/func/-/CGLGetVirtualScreen -C/tdef/-/CGLGlobalOption -C/tdef/-/CGLineCap -C/tdef/-/CGLineJoin -C/func/-/CGLIsEnabled -C/func/-/CGLLockContext -Objective-C/instm/NSOpenGLPixelBuffer/CGLPBufferObj -C/tdef/-/CGLPBufferObj -C/tdef/-/CGLPixelFormatAttribute -Objective-C/instm/NSOpenGLPixelFormat/CGLPixelFormatObj -C/tdef/-/CGLPixelFormatObj -C/func/-/CGLQueryRendererInfo -C/func/-/CGLReleaseContext -C/func/-/CGLReleasePBuffer -C/func/-/CGLReleasePixelFormat -C/tdef/-/CGLRendererInfoObj -C/tdef/-/CGLRendererProperty -C/func/-/CGLRetainContext -C/func/-/CGLRetainPBuffer -C/func/-/CGLRetainPixelFormat -C/func/-/CGLSetCurrentContext -C/func/-/CGLSetFullScreen -C/func/-/CGLSetFullScreenOnDisplay -C/func/-/CGLSetGlobalOption -C/func/-/CGLSetOffScreen -C/func/-/CGLSetOption -C/func/-/CGLSetParameter -C/func/-/CGLSetPBuffer -C/func/-/CGLSetVirtualScreen -C/func/-/CGLTexImagePBuffer -C/func/-/CGLUnlockContext -C/func/-/CGMainDisplayID -C/tdef/-/CGMouseButton -C/tdef/-/CGMouseDelta -C/tdef/-/CGMutablePathRef -C/tdef/-/CGOpenGLDisplayMask -C/func/-/CGOpenGLDisplayMaskToDisplayID -C/tdef/-/CGPaletteBlendFraction -C/func/-/CGPaletteCreateCopy -C/func/-/CGPaletteCreateDefaultColorPalette -C/func/-/CGPaletteCreateFromPaletteBlendedWithColor -C/func/-/CGPaletteCreateWithByteSamples -C/func/-/CGPaletteCreateWithCapacity -C/func/-/CGPaletteCreateWithDisplay -C/func/-/CGPaletteCreateWithSamples -C/func/-/CGPaletteGetColorAtIndex -C/func/-/CGPaletteGetIndexForColor -C/func/-/CGPaletteGetNumberOfSamples -C/func/-/CGPaletteIsEqualToPalette -C/func/-/CGPaletteRelease -C/func/-/CGPaletteSetColorAtIndex -C/func/-/CGPathAddArc -C/func/-/CGPathAddArcToPoint -C/func/-/CGPathAddCurveToPoint -C/func/-/CGPathAddEllipseInRect -C/func/-/CGPathAddLines -C/func/-/CGPathAddLineToPoint -C/func/-/CGPathAddPath -C/func/-/CGPathAddQuadCurveToPoint -C/func/-/CGPathAddRect -C/func/-/CGPathAddRects -C/tdef/-/CGPathApplierFunction -C/func/-/CGPathApply -C/func/-/CGPathCloseSubpath -C/func/-/CGPathContainsPoint -C/func/-/CGPathCreateCopy -C/func/-/CGPathCreateMutable -C/func/-/CGPathCreateMutableCopy -C/tdef/-/CGPathDrawingMode -C/tdef/-/CGPathElement -C/tag/-/CGPathElement -C/tdef/-/CGPathElementType -C/func/-/CGPathEqualToPath -C/func/-/CGPathGetBoundingBox -C/func/-/CGPathGetCurrentPoint -C/func/-/CGPathGetPathBoundingBox -C/func/-/CGPathGetTypeID -C/func/-/CGPathIsEmpty -C/func/-/CGPathIsRect -C/func/-/CGPathMoveToPoint -C/tdef/-/CGPathRef -C/func/-/CGPathRelease -C/func/-/CGPathRetain -C/tdef/-/CGPatternCallbacks -C/func/-/CGPatternCreate -C/tdef/-/CGPatternDrawPatternCallback -C/func/-/CGPatternGetTypeID -C/tdef/-/CGPatternRef -C/func/-/CGPatternRelease -C/tdef/-/CGPatternReleaseInfoCallback -C/func/-/CGPatternRetain -C/tdef/-/CGPatternTiling -C/func/-/CGPDFArrayGetArray -C/func/-/CGPDFArrayGetBoolean -C/func/-/CGPDFArrayGetCount -C/func/-/CGPDFArrayGetDictionary -C/func/-/CGPDFArrayGetInteger -C/func/-/CGPDFArrayGetName -C/func/-/CGPDFArrayGetNull -C/func/-/CGPDFArrayGetNumber -C/func/-/CGPDFArrayGetObject -C/func/-/CGPDFArrayGetStream -C/func/-/CGPDFArrayGetString -C/tdef/-/CGPDFArrayRef -C/tdef/-/CGPDFBoolean -C/tdef/-/CGPDFBox -C/func/-/CGPDFContentStreamCreateWithPage -C/func/-/CGPDFContentStreamCreateWithStream -C/func/-/CGPDFContentStreamGetResource -C/func/-/CGPDFContentStreamGetStreams -C/tdef/-/CGPDFContentStreamRef -C/func/-/CGPDFContentStreamRelease -C/func/-/CGPDFContentStreamRetain -C/func/-/CGPDFContextAddDestinationAtPoint -C/func/-/CGPDFContextBeginPage -C/func/-/CGPDFContextClose -C/func/-/CGPDFContextCreate -C/func/-/CGPDFContextCreateWithURL -C/func/-/CGPDFContextEndPage -C/func/-/CGPDFContextSetDestinationForRect -C/func/-/CGPDFContextSetURLForRect -C/tdef/-/CGPDFDataFormat -C/econst/-/CGPDFDataFormatJPEG2000 -C/econst/-/CGPDFDataFormatJPEGEncoded -C/econst/-/CGPDFDataFormatRaw -C/tdef/-/CGPDFDictionaryApplierFunction -C/func/-/CGPDFDictionaryApplyFunction -C/func/-/CGPDFDictionaryGetArray -C/func/-/CGPDFDictionaryGetBoolean -C/func/-/CGPDFDictionaryGetCount -C/func/-/CGPDFDictionaryGetDictionary -C/func/-/CGPDFDictionaryGetInteger -C/func/-/CGPDFDictionaryGetName -C/func/-/CGPDFDictionaryGetNumber -C/func/-/CGPDFDictionaryGetObject -C/func/-/CGPDFDictionaryGetStream -C/func/-/CGPDFDictionaryGetString -C/tdef/-/CGPDFDictionaryRef -C/func/-/CGPDFDocumentAllowsCopying -C/func/-/CGPDFDocumentAllowsPrinting -C/func/-/CGPDFDocumentCreateWithProvider -C/func/-/CGPDFDocumentCreateWithURL -C/func/-/CGPDFDocumentGetArtBox -C/func/-/CGPDFDocumentGetBleedBox -C/func/-/CGPDFDocumentGetCatalog -C/func/-/CGPDFDocumentGetCropBox -C/func/-/CGPDFDocumentGetID -C/func/-/CGPDFDocumentGetInfo -C/func/-/CGPDFDocumentGetMediaBox -C/func/-/CGPDFDocumentGetNumberOfPages -C/func/-/CGPDFDocumentGetPage -C/func/-/CGPDFDocumentGetRotationAngle -C/func/-/CGPDFDocumentGetTrimBox -C/func/-/CGPDFDocumentGetTypeID -C/func/-/CGPDFDocumentGetVersion -C/func/-/CGPDFDocumentIsEncrypted -C/func/-/CGPDFDocumentIsUnlocked -C/tdef/-/CGPDFDocumentRef -C/func/-/CGPDFDocumentRelease -C/func/-/CGPDFDocumentRetain -C/func/-/CGPDFDocumentUnlockWithPassword -C/tdef/-/CGPDFInteger -C/func/-/CGPDFObjectGetType -C/func/-/CGPDFObjectGetValue -C/tdef/-/CGPDFObjectRef -C/tdef/-/CGPDFObjectType -C/tdef/-/CGPDFOperatorCallback -C/func/-/CGPDFOperatorTableCreate -C/tdef/-/CGPDFOperatorTableRef -C/func/-/CGPDFOperatorTableRelease -C/func/-/CGPDFOperatorTableRetain -C/func/-/CGPDFOperatorTableSetCallback -C/func/-/CGPDFPageGetBoxRect -C/func/-/CGPDFPageGetDictionary -C/func/-/CGPDFPageGetDocument -C/func/-/CGPDFPageGetDrawingTransform -C/func/-/CGPDFPageGetPageNumber -C/func/-/CGPDFPageGetRotationAngle -C/func/-/CGPDFPageGetTypeID -C/tdef/-/CGPDFPageRef -C/func/-/CGPDFPageRelease -C/func/-/CGPDFPageRetain -C/tdef/-/CGPDFReal -C/func/-/CGPDFScannerCreate -C/func/-/CGPDFScannerGetContentStream -C/func/-/CGPDFScannerPopArray -C/func/-/CGPDFScannerPopBoolean -C/func/-/CGPDFScannerPopDictionary -C/func/-/CGPDFScannerPopInteger -C/func/-/CGPDFScannerPopName -C/func/-/CGPDFScannerPopNumber -C/func/-/CGPDFScannerPopObject -C/func/-/CGPDFScannerPopStream -C/func/-/CGPDFScannerPopString -C/tdef/-/CGPDFScannerRef -C/func/-/CGPDFScannerRelease -C/func/-/CGPDFScannerRetain -C/func/-/CGPDFScannerScan -C/func/-/CGPDFStreamCopyData -C/func/-/CGPDFStreamGetDictionary -C/tdef/-/CGPDFStreamRef -C/func/-/CGPDFStringCopyDate -C/func/-/CGPDFStringCopyTextString -C/func/-/CGPDFStringGetBytePtr -C/func/-/CGPDFStringGetLength -C/tdef/-/CGPDFStringRef -C/tdef/-/CGPoint -C/func/-/CGPointApplyAffineTransform -C/func/-/CGPointCreateDictionaryRepresentation -C/func/-/CGPointEqualToPoint -C/func/-/CGPointMake -C/func/-/CGPointMakeWithDictionaryRepresentation -C/data/-/CGPointZero -C/func/-/CGPostKeyboardEvent -C/func/-/CGPostMouseEvent -C/func/-/CGPostScrollWheelEvent -C/func/-/CGPSConverterAbort -C/tdef/-/CGPSConverterBeginDocumentCallback -C/tdef/-/CGPSConverterBeginPageCallback -C/tdef/-/CGPSConverterCallbacks -C/func/-/CGPSConverterConvert -C/func/-/CGPSConverterCreate -C/tdef/-/CGPSConverterEndDocumentCallback -C/tdef/-/CGPSConverterEndPageCallback -C/func/-/CGPSConverterGetTypeID -C/func/-/CGPSConverterIsConverting -C/tdef/-/CGPSConverterMessageCallback -C/tdef/-/CGPSConverterProgressCallback -C/tdef/-/CGPSConverterRef -C/tdef/-/CGPSConverterReleaseInfoCallback -C/tag/-/CGrafPort -C/tdef/-/CGrafPtr -C/tdef/-/CGRect -C/func/-/CGRectApplyAffineTransform -C/func/-/CGRectContainsPoint -C/func/-/CGRectContainsRect -C/tdef/-/CGRectCount -C/func/-/CGRectCreateDictionaryRepresentation -C/func/-/CGRectDivide -C/tdef/-/CGRectEdge -C/func/-/CGRectEqualToRect -C/func/-/CGRectGetHeight -C/func/-/CGRectGetMaxX -C/func/-/CGRectGetMaxY -C/func/-/CGRectGetMidX -C/func/-/CGRectGetMidY -C/func/-/CGRectGetMinX -C/func/-/CGRectGetMinY -C/func/-/CGRectGetWidth -C/data/-/CGRectInfinite -C/func/-/CGRectInset -C/func/-/CGRectIntegral -C/func/-/CGRectIntersection -C/func/-/CGRectIntersectsRect -C/func/-/CGRectIsEmpty -C/func/-/CGRectIsInfinite -C/func/-/CGRectIsNull -C/func/-/CGRectMake -C/func/-/CGRectMakeWithDictionaryRepresentation -C/econst/-/CGRectMaxXEdge -C/econst/-/CGRectMaxYEdge -C/econst/-/CGRectMinXEdge -C/econst/-/CGRectMinYEdge -C/data/-/CGRectNull -C/func/-/CGRectOffset -C/func/-/CGRectStandardize -C/func/-/CGRectUnion -C/data/-/CGRectZero -C/tdef/-/CGRefreshRate -C/func/-/CGRegisterScreenRefreshCallback -C/func/-/CGReleaseAllDisplays -C/func/-/CGReleaseDisplayFadeReservation -C/func/-/CGReleaseScreenRefreshRects -C/func/-/CGRestorePermanentDisplayConfiguration -C/tdef/-/CGScreenRefreshCallback -C/func/-/CGScreenRegisterMoveCallback -C/func/-/CGScreenUnregisterMoveCallback -C/tdef/-/CGScreenUpdateMoveCallback -C/tdef/-/CGScreenUpdateMoveDelta -C/tdef/-/CGScreenUpdateOperation -C/tdef/-/CGScrollEventUnit -C/func/-/CGSessionCopyCurrentDictionary -C/func/-/CGSetDisplayTransferByByteTable -C/func/-/CGSetDisplayTransferByFormula -C/func/-/CGSetDisplayTransferByTable -C/func/-/CGSetLocalEventsFilterDuringSuppressionState -C/func/-/CGSetLocalEventsSuppressionInterval -C/func/-/CGShadingCreateAxial -C/func/-/CGShadingCreateRadial -C/func/-/CGShadingGetTypeID -C/tdef/-/CGShadingRef -C/func/-/CGShadingRelease -C/func/-/CGShadingRetain -C/func/-/CGShieldingWindowID -C/func/-/CGShieldingWindowLevel -C/tdef/-/CGSize -C/func/-/CGSizeApplyAffineTransform -C/func/-/CGSizeCreateDictionaryRepresentation -C/func/-/CGSizeEqualToSize -C/func/-/CGSizeMake -C/func/-/CGSizeMakeWithDictionaryRepresentation -C/data/-/CGSizeZero -C/tdef/-/CGTableCount -C/tdef/-/CGTextDrawingMode -C/tdef/-/CGTextEncoding -C/func/-/CGUnregisterScreenRefreshCallback -C/func/-/CGWaitForScreenRefreshRects -C/func/-/CGWaitForScreenUpdateRects -C/func/-/CGWarpMouseCursorPosition -C/tdef/-/CGWheelCount -C/tdef/-/CGWindowBackingType -C/tdef/-/CGWindowID -C/tdef/-/CGWindowImageOption -C/tdef/-/CGWindowLevel -C/func/-/CGWindowLevelForKey -C/tdef/-/CGWindowLevelKey -C/func/-/CGWindowListCopyWindowInfo -C/func/-/CGWindowListCreate -C/func/-/CGWindowListCreateDescriptionFromArray -C/func/-/CGWindowListCreateImage -C/func/-/CGWindowListCreateImageFromArray -C/tdef/-/CGWindowListOption -C/func/-/CGWindowServerCFMachPort -C/tdef/-/CGWindowSharingType -JavaScript/data/HTMLTableColElement/ch -JavaScript/data/HTMLTableSectionElement/ch -JavaScript/data/HTMLTableCellElement/ch -JavaScript/data/HTMLTableRowElement/ch -JavaScript/clconst/Event/CHANGE -Objective-C/instm/NSTextView/changeAttributes: -Objective-C/instm/WebView/changeAttributes: -Objective-C/instm/NSResponder/changeCaseOfLetter: -Objective-C/instm/NSObject/changeColor: -Objective-C/instm/NSTextView/changeColor: -Objective-C/instm/WebView/changeColor: -Objective-C/instm/NSPasteboard/changeCount -Objective-C/instm/NSFileManager/changeCurrentDirectoryPath: -Objective-C/instm/NSTextView/changeDocumentBackgroundColor: -Objective-C/instm/WebView/changeDocumentBackgroundColor: -Objective-C/instm/NSObject/changedRecordsForEntityName:moreComing:error: -C/func/-/ChangedResource -JavaScript/data/TouchEvent/changedTouches -Objective-C/instm/NSManagedObject/changedValues -Objective-C/instm/ISyncSession/changeEnumeratorForEntityNames: -Objective-C/instm/NSFileManager/changeFileAttributes:atPath: -Objective-C/instm/NSObject/changeFont: -Objective-C/instm/WebView/changeFont: -Objective-C/instm/NSText/changeFont: -Objective-C/instm/NSTextStorage/changeInLength -Objective-C/instm/ODRecord/changePassword:toPassword:error: -C++/instm/IOService/changePowerStateTo -C++/instm/IOService/changePowerStateToPriv -Objective-C/instm/ISyncChange/changes -Objective-C/instm/NSObject/changesForEntityName:moreComing:error: -Objective-C/intfm/NSChangeSpelling/changeSpelling: -JavaScript/instm/InspectorBackend/changeTagName -C/func/-/ChangeTextToUnicodeInfo -C/func/-/ChangeUnicodeToTextInfo -JavaScript/instm/DatabaseSync/changeVersion -JavaScript/instm/Database/changeVersion -Objective-C/instm/NSApplication/changeWindowsItem:title:filename: -Objective-C/clm/ISyncChange/changeWithType:recordIdentifier:changes: -C/tag/-/Channel -JavaScript/cl/-/Channel -Objective-C/instp/CWInterface/channel -Objective-C/instp/CWNetwork/channel -C++/data/IOAudioControl/channelID -Objective-C/instm/NSSound/channelMapping -Objective-C/instm/QTMovie/chapterCount -Objective-C/instm/QTMovie/chapterIndexForTime: -Objective-C/instm/QTMovie/chapters -Objective-C/instm/NSString/characterAtIndex: -Objective-C/instm/PDFPage/characterBoundsAtIndex: -Objective-C/instm/NSGlyphInfo/characterCollection -JavaScript/cl/-/CharacterData -JavaScript/data/DOMWindow/CharacterData -Objective-C/clm/NSLocale/characterDirectionForLanguage: -Objective-C/instm/NSXMLDocument/characterEncoding -Objective-C/instm/NSGlyphInfo/characterIdentifier -Objective-C/instm/PDFPage/characterIndexAtPoint: -Objective-C/instm/NSLayoutManager/characterIndexForGlyphAtIndex: -Objective-C/instm/NSTextView/characterIndexForInsertionAtPoint: -Objective-C/intfm/NSTextInput/characterIndexForPoint: -Objective-C/intfm/NSTextInputClient/characterIndexForPoint: -Objective-C/instm/NSLayoutManager/characterIndexForPoint:inTextContainer:fractionOfDistanceBetweenInsertionPoints: -Objective-C/intfm/IMKTextInput/characterIndexForPoint:tracking:inMarkedRange: -Objective-C/instm/NSCharacterSet/characterIsMember: -Objective-C/instm/NSATSTypesetter/characterRangeForGlyphRange:actualGlyphRange: -Objective-C/instm/NSLayoutManager/characterRangeForGlyphRange:actualGlyphRange: -Objective-C/instm/NSTypesetter/characterRangeForGlyphRange:actualGlyphRange: -Objective-C/instm/NSTextStorage/characters -Objective-C/instm/NSEvent/characters -JavaScript/data/Document/characterSet -Objective-C/clm/NSCharacterSet/characterSetWithBitmapRepresentation: -Objective-C/clm/NSCharacterSet/characterSetWithCharactersInString: -Objective-C/clm/NSCharacterSet/characterSetWithContentsOfFile: -Objective-C/clm/NSCharacterSet/characterSetWithRange: -Objective-C/instm/NSEvent/charactersIgnoringModifiers -C/tdef/-/charactersSAXFunc -Objective-C/instm/NSScanner/charactersToBeSkipped -JavaScript/data/KeyboardEvent/charCode -JavaScript/data/UIEvent/charCode -JavaScript/data/Document/charset -JavaScript/data/HTMLScriptElement/charset -JavaScript/data/HTMLAnchorElement/charset -JavaScript/data/HTMLLinkElement/charset -JavaScript/clconst/CSSRule/CHARSET_RULE -Objective-C/instm/NSNumber/charValue -C/func/-/chdir -C/macro/-/CHECK_ARITY -C/macro/-/CHECK_ERROR -C/macro/-/CHECK_ERROR0 -C/func/-/check_int32_add -C/func/-/check_int32_div -C/func/-/check_int32_mul -C/func/-/check_int32_sub -C/func/-/check_int64_add -C/func/-/check_int64_div -C/func/-/check_int64_mul -C/func/-/check_int64_sub -C/macro/-/CHECK_STOPPED -C/macro/-/CHECK_STOPPED0 -C/macro/-/CHECK_STOPPEDE -C/macro/-/CHECK_TYPE -C/macro/-/CHECK_TYPE0 -C/func/-/check_uint32_add -C/func/-/check_uint32_div -C/func/-/check_uint32_mul -C/func/-/check_uint32_sub -C/func/-/check_uint64_add -C/func/-/check_uint64_div -C/func/-/check_uint64_mul -C/func/-/check_uint64_sub -JavaScript/data/HTMLDataGridCellElement/checked -JavaScript/data/HTMLInputElement/checked -JavaScript/instm/SVGSVGElement/checkEnclosure -C++/instm/IOHIDDevice/checkEventDelivery -C++/instm/IOBlockStorageDriver/checkForMedia -Objective-C/instm/NSWorkspace/checkForRemovableMedia -C++/instm/IOCommandGate/checkForWork -C++/instm/IOEventSource/checkForWork -C++/instm/IOInterruptEventSource/checkForWork -C++/instm/IOTimerEventSource/checkForWork -JavaScript/instm/WebGLRenderingContext/checkFramebufferStatus -Objective-C/instm/NSSpellChecker/checkGrammarOfString:startingAt:language:wrap:inSpellDocumentWithTag:details: -JavaScript/clconst/DOMApplicationCache/CHECKING -C/func/-/checkint -JavaScript/instm/SVGSVGElement/checkIntersection -C++/instm/IOFWPhysicalAddressSpace/checkMemoryInRange -C++/instm/OSMetaClass/checkMetaCast -C++/clm/OSMetaClass/checkMetaCastWithName -C++/clm/OSMetaClass/checkModLoad -JavaScript/instm/NotificationCenter/checkPermission -C++/instm/IOSCSIProtocolInterface/CheckPowerState -Objective-C/instm/NSURL/checkResourceIsReachableAndReturnError: -Objective-C/instm/NSScroller/checkSpaceForParts -Objective-C/instm/WebView/checkSpelling: -Objective-C/instm/NSText/checkSpelling: -Objective-C/instm/NSSpellChecker/checkSpellingOfString:startingAt: -Objective-C/instm/NSSpellChecker/checkSpellingOfString:startingAt:language:wrap:inSpellDocumentWithTag:wordCount: -Objective-C/instm/NSSpellChecker/checkString:range:types:options:inSpellDocumentWithTag:orthography:wordCount: -Objective-C/instm/NSTextView/checkTextInDocument: -Objective-C/instm/NSTextView/checkTextInRange:types:options: -Objective-C/instm/NSTextView/checkTextInSelection: -C++/clm/OSMetaClassBase/checkTypeInst -JavaScript/instm/HTMLTextAreaElement/checkValidity -JavaScript/instm/HTMLFieldSetElement/checkValidity -JavaScript/instm/HTMLButtonElement/checkValidity -JavaScript/instm/HTMLInputElement/checkValidity -JavaScript/instm/HTMLSelectElement/checkValidity -JavaScript/instm/HTMLFormElement/checkValidity -C/func/-/chflags -C/func/-/chgat -Objective-C/instm/PDFOutline/childAtIndex: -Objective-C/instm/NSXMLNode/childAtIndex: -Objective-C/instm/NSXMLNode/childCount -JavaScript/data/Element/childElementCount -Objective-C/instm/WebFrame/childFrames -C++/instm/IORegistryEntry/childFromPath -C/func/-/childHasRequestedPower -Objective-C/instm/NSTreeNode/childNodes -JavaScript/data/core/childNodes -JavaScript/data/svg/childNodes -Objective-C/instm/DRFolder(VirtualFolders)/children -Objective-C/instm/NSXMLNode/children -JavaScript/data/HTMLElement/children -JavaScript/data/ScriptProfileNode/children -Objective-C/instm/NSTreeController/childrenKeyPath -Objective-C/instm/NSTreeController/childrenKeyPathForNode: -Objective-C/instm/IBDocument/childrenOfObject: -Objective-C/instm/NSScriptObjectSpecifier/childSpecifier -Objective-C/instm/NSWindow/childWindows -C/func/-/chmod -JavaScript/data/HTMLTableRowElement/chOff -JavaScript/data/HTMLTableColElement/chOff -JavaScript/data/HTMLTableSectionElement/chOff -JavaScript/data/HTMLTableCellElement/chOff -Objective-C/instm/PDFAnnotationChoiceWidget/choices -Objective-C/intfm/WebOpenPanelResultListener/chooseFilename: -Objective-C/intfm/WebOpenPanelResultListener/chooseFilenames: -Objective-C/instm/NSObject/chooseIdentityPanelShowHelp: -C/func/-/chown -C/func/-/chroot -Objective-C/cl/-/CIColor -Objective-C/cat/-/CIColor(AppKitAdditions) -Objective-C/cl/-/CIContext -Objective-C/instm/NSGraphicsContext/CIContext -Objective-C/cl/-/CIFilter -Objective-C/cat/-/CIFilter(CAFilterInfo) -Objective-C/cat/-/CIFilter(IKFilterUIAddition) -Objective-C/cl/-/CIFilterGenerator -Objective-C/cl/-/CIFilterShape -C/data/-/CIFormat -Objective-C/cl/-/CIImage -Objective-C/instm/NSCIImageRep/CIImage -Objective-C/cat/-/CIImage(NSAppKitAdditions) -Objective-C/cl/-/CIImageAccumulator -Objective-C/cat/-/CIImageProvider -Objective-C/cl/-/CIKernel -C/tdef/-/CInfoPBRec -Objective-C/cl/-/CIPlugIn -Objective-C/intf/-/CIPlugInRegistration -C/func/-/CIRCLEQ_ENTRY -C/func/-/CIRCLEQ_HEAD -C/func/-/CIRCLEQ_INIT -C/func/-/CIRCLEQ_INSERT_AFTER -C/func/-/CIRCLEQ_INSERT_BEFORE -C/func/-/CIRCLEQ_INSERT_HEAD -C/func/-/CIRCLEQ_INSERT_TAIL -C/func/-/CIRCLEQ_REMOVE -Objective-C/cl/-/CISampler -JavaScript/data/HTMLQuoteElement/cite -JavaScript/data/HTMLModElement/cite -JavaScript/data/HTMLBlockquoteElement/cite -Objective-C/cl/-/CIVector -C/func/-/ckalloc -C/func/-/ckfree -C/func/-/ckrealloc -JavaScript/clconst/WebGLRenderingContext/CLAMP_TO_EDGE -C++/instm/IOService/clampPowerOn -Objective-C/clm/NSProxy/class -C/tdef/-/Class -Objective-C/intfm/NSObject/class -Objective-C/clm/NSObject/class -C/func/-/class_addIvar -C/func/-/class_addMethod -C/func/-/class_addProtocol -C/func/-/class_conformsToProtocol -C/func/-/class_copyIvarList -C/func/-/class_copyMethodList -C/func/-/class_copyPropertyList -C/func/-/class_copyProtocolList -C/func/-/class_createInstance -C/func/-/class_getClassMethod -C/func/-/class_getClassVariable -C/func/-/class_getInstanceMethod -C/func/-/class_getInstanceSize -C/func/-/class_getInstanceVariable -C/func/-/class_getIvarLayout -C/func/-/class_getMethodImplementation -C/func/-/class_getMethodImplementation_stret -C/func/-/class_getName -C/func/-/class_getProperty -C/func/-/class_getSuperclass -C/func/-/class_getVersion -C/func/-/class_getWeakIvarLayout -C/func/-/class_isMetaClass -C/func/-/class_replaceMethod -C/func/-/class_respondsToSelector -C/func/-/class_setIvarLayout -C/func/-/class_setSuperclass -C/func/-/class_setVersion -C/func/-/class_setWeakIvarLayout -Objective-C/instm/CIFilterGenerator/classAttributes -Objective-C/instm/NSObject/classCode -Objective-C/instm/NSObject/classDescription -Objective-C/clm/NSScriptClassDescription/classDescriptionForClass: -Objective-C/clm/NSClassDescription/classDescriptionForClass: -Objective-C/instm/NSScriptClassDescription/classDescriptionForKey: -Objective-C/instm/NSScriptSuiteRegistry/classDescriptionsInSuite: -Objective-C/instm/NSScriptSuiteRegistry/classDescriptionWithAppleEventCode: -Objective-C/clm/NSObject/classFallbacksForKeyedArchiver -Objective-C/instm/NSObject/classForArchiver -Objective-C/clm/NSKeyedUnarchiver/classForClassName: -Objective-C/instm/NSKeyedUnarchiver/classForClassName: -Objective-C/instm/NSObject/classForCoder -Objective-C/instm/NSObject/classForKeyedArchiver -Objective-C/clm/NSObject/classForKeyedUnarchiver -Objective-C/instm/NSObject/classForPortCoder -Objective-C/instm/SBApplication/classForScriptingClass: -Objective-C/instm/NSScriptClassDescription/className -Objective-C/instm/NSObject/className -JavaScript/data/HTMLElement/className -JavaScript/data/SVGStylable/className -Objective-C/instm/NSBundle/classNamed: -Objective-C/instm/NSUnarchiver/classNameDecodedForArchiveClassName: -Objective-C/clm/NSUnarchiver/classNameDecodedForArchiveClassName: -Objective-C/instm/NSArchiver/classNameEncodedForTrueClassName: -Objective-C/instm/NSKeyedArchiver/classNameForClass: -Objective-C/clm/NSKeyedArchiver/classNameForClass: -Objective-C/instm/SBApplication/classNamesForCodes -Objective-C/instm/IOBluetoothHostController/classOfDevice -C++/instm/IOFireWireSerialBusProtocolTransport/cleanUp -Objective-C/instm/NSTextView/cleanUpAfterDragOperation -Objective-C/intfm/DRFileDataProduction/cleanupFileAfterBurn: -C++/cl/-/CleanupFunction -Objective-C/instm/NSPrintOperation/cleanUpOperation -Objective-C/intfm/DRTrackDataProduction/cleanupTrackAfterBurn: -Objective-C/intfm/DRTrackDataProduction/cleanupTrackAfterVerification: -Objective-C/instm/CIImageAccumulator/clear -C/func/-/clear -JavaScript/instm/DataGridColumnList/clear -JavaScript/data/HTMLBRElement/clear -JavaScript/instm/HTMLDocument/clear -JavaScript/instm/Storage/clear -JavaScript/instm/SVGLengthList/clear -JavaScript/instm/SVGNumberList/clear -JavaScript/instm/SVGStringList/clear -JavaScript/instm/SVGPathSegList/clear -JavaScript/instm/SVGTransformList/clear -JavaScript/instm/WebGLRenderingContext/clear -JavaScript/instm/SVGPointList/clear -C++/instm/IOSCSIProtocolInterface/ClearACA -Objective-C/instm/IOBluetoothDeviceSelectorController/clearAllowedUUIDs -Objective-C/instm/IOBluetoothServiceBrowserController/clearAllowedUUIDs -Objective-C/instm/IOBluetoothPairingController/clearAllowedUUIDs -C++/instm/IOFireWirePCRSpace/clearAllP2PConnections -C++/instm/IOAudioEngine/clearAllSampleBuffers -C++/instm/IONetworkData/clearBuffer -Objective-C/instm/CIContext/clearCaches -Objective-C/clm/NSColor/clearColor -JavaScript/instm/WebGLRenderingContext/clearColor -JavaScript/instm/InjectedScriptHost/clearConsoleMessages -Objective-C/instm/NSPasteboard/clearContents -Objective-C/clm/NSOpenGLContext/clearCurrentContext -JavaScript/instm/Clipboard/clearData -JavaScript/instm/WebGLRenderingContext/clearDepth -Objective-C/instm/NSOpenGLContext/clearDrawable -C/func/-/clearerr -C/func/-/clearerr_unlocked -Objective-C/instm/IOBluetoothDeviceInquiry/clearFoundDevices -Objective-C/instm/NSOpenGLView/clearGLContext -C++/instm/IONetworkInterface/clearInputQueue -JavaScript/instm/DOMWindow/clearInterval -JavaScript/instm/WorkerContext/clearInterval -C++/instm/IODMACommand/clearMemoryDescriptor -C++/instm/IOInterleavedMemoryDescriptor/clearMemoryDescriptors -C/func/-/ClearMovieSelection -C++/instm/IOFireWireDevice/clearNodeFlags -C/func/-/clearok -JavaScript/instm/XSLTProcessor/clearParameters -C++/instm/IOUSBPipe/ClearPipeStall -C++/instm/IOUSBController/ClearPipeStall -Objective-C/instm/NSDocumentController/clearRecentDocuments: -JavaScript/instm/CanvasRenderingContext2D/clearRect -C++/instm/IOUSBController/ClearRootHubFeature -C++/instm/IOUSBController/ClearRootHubPortFeature -Objective-C/instm/ABPeoplePickerView/clearSearchField: -Objective-C/instm/PDFView/clearSelection -Objective-C/instm/NSArrayController/clearsFilterPredicateOnInsertion -JavaScript/instm/CanvasRenderingContext2D/clearShadow -C++/instm/IOUSBPipe/ClearStall -Objective-C/instm/NSAnimation/clearStartAnimation -JavaScript/instm/WebGLRenderingContext/clearStencil -Objective-C/instm/NSAnimation/clearStopAnimation -C++/instm/IOSCSIProtocolInterface/ClearTaskSet -C++/instm/OSSerialize/clearText -JavaScript/instm/DOMWindow/clearTimeout -JavaScript/instm/WorkerContext/clearTimeout -JavaScript/instm/HTMLButtonElement/click -JavaScript/instm/HTMLInputElement/click -JavaScript/clconst/Event/CLICK -Objective-C/instm/NSEvent/clickCount -Objective-C/instm/NSBrowser/clickedColumn -Objective-C/instm/NSTableView/clickedColumn -Objective-C/instm/NSTextView/clickedOnLink:atIndex: -Objective-C/instm/NSPathCell/clickedPathComponentCell -Objective-C/instm/NSPathControl/clickedPathComponentCell -Objective-C/instm/NSBrowser/clickedRow -Objective-C/instm/NSTableView/clickedRow -Objective-C/instm/NSURLProtocol/client -Objective-C/instm/IMKInputController/client -Objective-C/instm/NSTextInputContext/client -Objective-C/instp/NSTextInputContext/client -Objective-C/instm/ISyncSessionDriver/client -Objective-C/instp/PSFeed/client -C/func/-/client_cert_cb -Objective-C/instm/ISyncSession/clientAcceptedChangesForRecordWithIdentifier:formattedRecord:newRecordIdentifier: -Objective-C/instm/ISyncSession/clientChangedRecordIdentifiers: -C++/instm/IOAudioControl/clientClosed -C++/instm/IOAudioEngine/clientClosed -Objective-C/instm/ISyncSession/clientCommittedAcceptedChanges -Objective-C/instm/ISyncSession/clientCommittedAcceptedChangesWithNextAnchors: -Objective-C/instm/NSObject/clientDescriptionURL -Objective-C/instm/ISyncSession/clientDidResetEntityNames: -Objective-C/instm/ISyncSession/clientFinishedPushingChangesWithNextAnchors: -Objective-C/clm/PSClient/clientForBundleIdentifier: -Objective-C/instm/OBEXSession/clientHandleIncomingData: -JavaScript/data/Element/clientHeight -Objective-C/instm/ISyncClient/clientIdentifier -Objective-C/instm/NSObject/clientIdentifier -Objective-C/instm/ISyncSession/clientInfoForRecordWithIdentifier: -JavaScript/data/DOMWindow/clientInformation -JavaScript/data/Element/clientLeft -Objective-C/instm/ISyncSession/clientLostRecordWithIdentifier:shouldReplaceOnNextSync: -JavaScript/cl/-/ClientRect -JavaScript/data/DOMWindow/ClientRect -JavaScript/cl/-/ClientRectList -JavaScript/data/DOMWindow/ClientRectList -Objective-C/instm/ISyncSession/clientRefusedChangesForRecordWithIdentifier: -JavaScript/data/Element/clientTop -Objective-C/instm/ISyncClient/clientType -Objective-C/instm/NSRulerView/clientView -Objective-C/instm/ISyncSession/clientWantsToPushAllRecordsForEntityNames: -C/func/-/ClientWhitePointOfCCC -JavaScript/data/Element/clientWidth -Objective-C/instm/ISyncManager/clientWithIdentifier: -Objective-C/instm/ISyncManager/clientWithIdentifier:needsSyncing: -JavaScript/data/MouseEvent/clientX -JavaScript/data/Touch/clientX -JavaScript/data/WheelEvent/clientX -JavaScript/data/MouseEvent/clientY -JavaScript/data/Touch/clientY -JavaScript/data/WheelEvent/clientY -JavaScript/instm/CanvasRenderingContext2D/clip -JavaScript/data/DOMWindow/Clipboard -JavaScript/cl/-/Clipboard -JavaScript/data/Event/clipboardData -JavaScript/data/SVGClipPathElement/clipPathUnits -Objective-C/clm/NSBezierPath/clipRect: -Objective-C/cl/-/CLLocation -C/tdef/-/CLLocationAccuracy -C/tdef/-/CLLocationCoordinate2D -C/tdef/-/CLLocationDegrees -C/tdef/-/CLLocationDirection -C/tdef/-/CLLocationDistance -Objective-C/cl/-/CLLocationManager -Objective-C/intf/-/CLLocationManagerDelegate -C/tdef/-/CLLocationSpeed -C/func/-/clnt_broadcast -C/func/-/clnt_call -C/func/-/clnt_control -C/func/-/clnt_create -C/func/-/clnt_destroy -C/func/-/clnt_freeres -C/func/-/clnt_geterr -C/func/-/clnt_pcreateerror -C/func/-/clnt_perrno -C/func/-/clnt_perror -C/func/-/clnt_spcreateerror -C/func/-/clnt_sperrno -C/func/-/clnt_sperror -C/func/-/clntraw_create -C/func/-/clnttcp_create -C/func/-/clntudp_bufcreate -C/func/-/clntudp_create -C/func/-/clock -C/func/-/ClockCallMeWhen -C/func/-/ClockCancelCallBack -C/func/-/ClockDisposeCallBack -C/func/-/ClockGetRate -C/func/-/ClockGetRateChangeConstraints -C/func/-/ClockGetTime -C/func/-/ClockNewCallBack -C/func/-/ClockRateChanged -C/func/-/ClockSetTimeBase -C/func/-/ClockStartStopChanged -C/func/-/ClockTimeChanged -C/func/-/clog -C/func/-/clogf -C/func/-/clogl -C++/instm/IODMACommand/cloneCommand -JavaScript/instm/Range/cloneContents -JavaScript/instm/core/cloneNode -JavaScript/instm/Range/cloneRange -Objective-C/instm/NSWindowController/close -Objective-C/instm/NSDocument/close -Objective-C/instm/NSDrawer/close -Objective-C/instm/NSStream/close -Objective-C/instm/QTCaptureDevice/close -Objective-C/instm/XGConnection/close -C/func/-/Close -Objective-C/instm/NSWindow/close -C/func/-/close -Objective-C/instm/WebView/close -C++/instm/IOService/close -JavaScript/instm/DOMWindow/close -JavaScript/instm/EventSource/close -JavaScript/instm/HTMLDocument/close -JavaScript/instm/MessagePort/close -JavaScript/instm/WorkerContext/close -JavaScript/instm/WebSocket/close -Objective-C/instm/NSDrawer/close: -Objective-C/instm/DRSetupPanel/close: -Objective-C/instm/NSDocumentController/closeAllDocumentsWithDelegate:didCloseAllSelector:contextInfo: -Objective-C/instm/IOBluetoothRFCOMMChannel/closeChannel -Objective-C/instm/IOBluetoothL2CAPChannel/closeChannel -C/func/-/CloseComponent -C/func/-/CloseComponentResFile -Objective-C/instm/IOBluetoothDevice/closeConnection -Objective-C/instm/AMAction/closed -JavaScript/data/DOMWindow/closed -JavaScript/clconst/EventSource/CLOSED -JavaScript/clconst/WebSocket/CLOSED -C/func/-/CloseDataBrowserContainer -Objective-C/instm/IOBluetoothRFCOMMAudioController/closeDeviceConnection -Objective-C/clm/NSCursor/closedHandCursor -C/func/-/closedir -Objective-C/instm/NSFileHandle/closeFile -C/func/-/closelog -Objective-C/instm/NSBezierPath/closePath -JavaScript/instm/CanvasRenderingContext2D/closePath -C++/instm/IOUSBController/ClosePipe -C/func/-/CloseResFile -Objective-C/instm/IOBluetoothRFCOMMAudioController/closeRFCOMMChannel -Objective-C/instm/IOBluetoothRFCOMMAudioController/closeSCOConnection -Objective-C/instm/NSSpellChecker/closeSpellDocumentWithTag: -Objective-C/instm/NSSlider/closestTickMarkValueToValue: -Objective-C/instm/NSSliderCell/closestTickMarkValueToValue: -Objective-C/instm/IOBluetoothOBEXSession/closeTransportConnection -Objective-C/instm/OBEXSession/closeTransportConnection -Objective-C/instm/DRDevice/closeTray -JavaScript/instm/InspectorFrontendHost/closeWindow -JavaScript/clconst/JavaScriptCallFrame/CLOSURE_SCOPE -C/func/-/clrtobot -C/func/-/clrtoeol -C/econst/-/cm10CLRData -C/econst/-/cm11CLRData -C/econst/-/cm12CLRData -C/econst/-/cm13CLRData -C/econst/-/cm14CLRData -C/econst/-/cm15CLRData -C/econst/-/cm16_8ColorPacking -C/econst/-/cm24_8ColorPacking -C/tdef/-/CM2Header -C/tdef/-/CM2Profile -C/econst/-/cm32_16ColorPacking -C/econst/-/cm32_32ColorPacking -C/econst/-/cm32_8ColorPacking -C/econst/-/cm3CLRData -C/econst/-/cm40_8ColorPacking -C/econst/-/cm48_16ColorPacking -C/econst/-/cm48_8ColorPacking -C/econst/-/cm4CLRData -C/tdef/-/CM4Header -C/econst/-/cm56_8ColorPacking -C/econst/-/cm5CLRData -C/econst/-/cm64_16ColorPacking -C/econst/-/cm64_8ColorPacking -C/econst/-/cm6CLRData -C/econst/-/cm7CLRData -C/econst/-/cm8_8ColorPacking -C/econst/-/cm8CLRData -C/econst/-/cm9CLRData -C/econst/-/cmAbortWriteAccess -C/econst/-/cmAbsoluteColorimetric -C/econst/-/cmAbstractClass -C/tdef/-/CMAccelerationCalcData -C/tdef/-/CMAccelerationCalcDataHdl -C/tdef/-/CMAccelerationCalcDataPtr -C/tdef/-/CMAccelerationTableData -C/tdef/-/CMAccelerationTableDataHdl -C/tdef/-/CMAccelerationTableDataPtr -C/tdef/-/CMAdaptationMatrixType -C/econst/-/cmAlphaFirstPacking -C/econst/-/cmAlphaLastPacking -C/econst/-/cmAlphaPmulSpace -C/econst/-/cmAlphaSpace -C/tdef/-/CMAppleProfileHeader -C/econst/-/cmARGB32PmulSpace -C/econst/-/cmARGB32Space -C/econst/-/cmARGB64LPmulSpace -C/econst/-/cmARGB64LSpace -C/econst/-/cmARGB64PmulSpace -C/econst/-/cmARGB64Space -C/econst/-/cmAsciiData -C/econst/-/cmAToB0Tag -C/econst/-/cmAToB1Tag -C/econst/-/cmAToB2Tag -C/econst/-/cmBeginAccess -C/econst/-/cmBeginProfile -C/econst/-/cmBeginProfileSel -C/econst/-/cmBestMode -C/econst/-/cmBgResponse -C/econst/-/cmBinaryData -C/tdef/-/CMBitmap -C/tdef/-/CMBitmapCallBackProc -C/tdef/-/CMBitmapCallBackProcPtr -C/tdef/-/CMBitmapCallBackUPP -C/tdef/-/CMBitmapColorSpace -C/econst/-/cmBlueColorantTag -C/econst/-/cmBlueResponse -C/econst/-/cmBlueTRCTag -C/econst/-/cmBradfordChromaticAdaptation -C/econst/-/cmBToA0Tag -C/econst/-/cmBToA1Tag -C/econst/-/cmBToA2Tag -C/econst/-/cmBufferBasedProfile -C/tdef/-/CMBufferLocation -C/func/-/CMCalibrateDisplay -C/econst/-/cmCalibrationDateTimeTag -C/econst/-/cmCameraDeviceClass -C/econst/-/cmCantConcatenateError -C/econst/-/cmCantCopyModifiedV1Profile -C/econst/-/cmCantDeleteElement -C/econst/-/cmCantDeleteProfile -C/econst/-/cmCantGamutCheckError -C/econst/-/cmCantXYZ -C/econst/-/cmCharTargetTag -C/tdef/-/CMChromaticAdaptation -C/econst/-/cmChromaticAdaptationTag -C/func/-/CMCloneProfileRef -C/econst/-/cmCloseAccess -C/func/-/CMCloseProfile -C/econst/-/cmCloseSpool -C/econst/-/cmCMSReservedFlagsMask -C/tdef/-/CMCMYColor -C/econst/-/cmCMYData -C/econst/-/cmCMYK32Space -C/econst/-/cmCMYK64LSpace -C/econst/-/cmCMYK64Space -C/tdef/-/CMCMYKColor -C/econst/-/cmCMYKData -C/econst/-/cmCMYKSpace -C/tdef/-/CMColor -C/econst/-/cmColorimetricMatch -C/econst/-/cmColorSpaceAlphaMask -C/econst/-/cmColorSpaceClass -C/econst/-/cmColorSpaceEncodingMask -C/econst/-/cmColorSpacePackingMask -C/econst/-/cmColorSpacePremulAlphaMask -C/econst/-/cmColorSpaceReservedMask -C/econst/-/cmColorSpaceSpaceAndAlphaMask -C/econst/-/cmColorSpaceSpaceMask -C/econst/-/cmComment -C/tdef/-/CMConcatCallBackProcPtr -C/tdef/-/CMConcatCallBackUPP -C/tdef/-/CMConcatProfileSet -C/econst/-/cmContinueProfileSel -C/func/-/CMConvertFixedXYZToXYZ -C/func/-/CMConvertHLSToRGB -C/func/-/CMConvertHSVToRGB -C/func/-/CMConvertLabToXYZ -C/func/-/CMConvertLuvToXYZ -C/func/-/CMConvertRGBToGray -C/func/-/CMConvertRGBToHLS -C/func/-/CMConvertRGBToHSV -C/func/-/CMConvertXYZToFixedXYZ -C/func/-/CMConvertXYZToLab -C/func/-/CMConvertXYZToLuv -C/func/-/CMConvertXYZToXYZ -C/func/-/CMConvertXYZToYxy -C/func/-/CMConvertYxyToXYZ -C/func/-/CMCopyProfile -C/func/-/CMCopyProfileDescriptionString -C/func/-/CMCopyProfileLocalizedString -C/func/-/CMCopyProfileLocalizedStringDictionary -C/econst/-/cmCopyrightTag -C/func/-/CMCountImageProfiles -C/tdef/-/CMCountImageProfilesProcPtr -C/func/-/CMCountProfileElements -C/econst/-/cmCreateNewAccess -C/func/-/CMCreateProfileIdentifier -C/econst/-/cmCS1ChromTag -C/econst/-/cmCS1CustTag -C/econst/-/cmCS1NameTag -C/econst/-/cmCS1ProfileVersion -C/econst/-/cmCS1TRCTag -C/econst/-/cmCS2ProfileVersion -C/econst/-/cmCurrentDeviceInfoVersion -C/econst/-/cmCurrentProfileInfoVersion -C/econst/-/cmCurrentProfileLocationSize -C/econst/-/cmCurrentProfileMajorVersion -C/tdef/-/CMCurveType -C/tdef/-/CMCWInfoRecord -C/econst/-/cmCyanResponse -C/tdef/-/CMDataType -C/tdef/-/CMDateTime -C/tdef/-/CMDateTimeType -C/econst/-/cmDefaultDeviceID -C/econst/-/cmDefaultProfileID -C/econst/-/cmDeviceAlreadyRegistered -C/tdef/-/CMDeviceClass -C/tdef/-/CMDeviceData -C/tdef/-/CMDeviceDataPtr -C/econst/-/cmDeviceDBNotFoundErr -C/tdef/-/CMDeviceID -C/tdef/-/CMDeviceInfo -C/econst/-/cmDeviceInfoVersion1 -C/econst/-/cmDeviceMfgDescTag -C/econst/-/cmDeviceModelDescTag -C/tdef/-/CMDeviceName -C/tdef/-/CMDeviceNamePtr -C/econst/-/cmDeviceNotRegistered -C/tdef/-/CMDeviceProfileArray -C/tdef/-/CMDeviceProfileID -C/tdef/-/CMDeviceProfileInfo -C/econst/-/cmDeviceProfileInfoVersion1 -C/econst/-/cmDeviceProfileInfoVersion2 -C/tdef/-/CMDeviceProfileScope -C/econst/-/cmDeviceProfilesNotFound -C/tdef/-/CMDeviceScope -C/tdef/-/CMDeviceSpec -C/tdef/-/CMDeviceSpecPtr -C/tdef/-/CMDeviceState -C/econst/-/cmDeviceStateAppleRsvdBits -C/econst/-/cmDeviceStateBusy -C/econst/-/cmDeviceStateDefault -C/econst/-/cmDeviceStateDeviceRsvdBits -C/econst/-/cmDeviceStateForceNotify -C/econst/-/cmDeviceStateOffline -C/econst/-/cmDisableMatching -C/econst/-/cmDisplayClass -C/econst/-/cmDisplayDeviceClass -C/tdef/-/CMDisplayIDType -C/econst/-/cmDisplayUse -C/func/-/CMDisposeProfileSearch -C/econst/-/cmDraftMode -C/econst/-/cmElementTagNotFound -C/econst/-/cmEmbeddedMask -C/econst/-/cmEmbeddedProfile -C/econst/-/cmEmbeddedUse -C/econst/-/cmEmbeddedUseMask -C/func/-/CMEmbedImage -C/tdef/-/CMEmbedImageProcPtr -C/econst/-/cmEmbedProfileIdentifier -C/econst/-/cmEmbedWholeProfile -C/econst/-/cmEnableMatching -C/func/-/CMEnableMatchingComment -C/econst/-/cmEndAccess -C/func/-/CMEndMatching -C/econst/-/cmEndProfile -C/econst/-/cmEndProfileSel -C/econst/-/cmErrIncompatibleProfile -C/tdef/-/CMError -C/econst/-/cmFatalProfileErr -C/econst/-/cmFileBasedProfile -C/tdef/-/CMFileLocation -C/tdef/-/CMFixedXYColor -C/tdef/-/CMFixedXYZColor -C/econst/-/cmFlare0 -C/econst/-/cmFlare100 -C/tdef/-/CMFlattenProcPtr -C/func/-/CMFlattenProfile -C/tdef/-/CMFlattenUPP -C/econst/-/cmGamutCheckingMask -C/econst/-/cmGamutResult1Space -C/econst/-/cmGamutResultSpace -C/econst/-/cmGamutTag -C/econst/-/cmGeometry045or450 -C/econst/-/cmGeometry0dord0 -C/econst/-/cmGeometryUnknown -C/func/-/CMGetColorSyncFolderSpec -C/func/-/CMGetColorSyncVersion -C/func/-/CMGetCWInfo -C/func/-/CMGetDefaultDevice -C/func/-/CMGetDefaultProfileBySpace -C/func/-/CMGetDefaultProfileByUse -C/func/-/CMGetDeviceDefaultProfileID -C/func/-/CMGetDeviceFactoryProfiles -C/func/-/CMGetDeviceInfo -C/func/-/CMGetDeviceProfile -C/func/-/CMGetDeviceProfiles -C/func/-/CMGetDeviceState -C/func/-/CMGetGammaByAVID -C/func/-/CMGetImageSpace -C/tdef/-/CMGetImageSpaceProcPtr -C/func/-/CMGetIndImageProfile -C/tdef/-/CMGetIndImageProfileProcPtr -C/func/-/CMGetIndNamedColorValue -C/func/-/CMGetIndProfileElement -C/func/-/CMGetIndProfileElementInfo -C/func/-/CMGetNamedColorIndex -C/func/-/CMGetNamedColorInfo -C/func/-/CMGetNamedColorName -C/func/-/CMGetNamedColorValue -C/func/-/CMGetPartialProfileElement -C/func/-/CMGetPreferredCMM -C/func/-/CMGetProfileByAVID -C/func/-/CMGetProfileDescriptions -C/func/-/CMGetProfileElement -C/func/-/CMGetProfileHeader -C/func/-/CMGetProfileLocation -C/func/-/CMGetProfileMD5 -C/func/-/CMGetProfileRefCount -C/func/-/CMGetPS2ColorRendering -C/func/-/CMGetPS2ColorRenderingIntent -C/func/-/CMGetPS2ColorRenderingVMSize -C/func/-/CMGetPS2ColorSpace -C/func/-/CMGetScriptProfileDescription -C/func/-/CMGetSystemProfile -C/econst/-/cmGlossy -C/econst/-/cmGlossyMatteMask -C/econst/-/cmGray16LSpace -C/econst/-/cmGray16Space -C/econst/-/cmGray8Space -C/econst/-/cmGrayA16PmulSpace -C/econst/-/cmGrayA16Space -C/econst/-/cmGrayA32LPmulSpace -C/econst/-/cmGrayA32LSpace -C/econst/-/cmGrayA32PmulSpace -C/econst/-/cmGrayA32Space -C/econst/-/cmGrayAPmulSpace -C/econst/-/cmGrayASpace -C/tdef/-/CMGrayColor -C/econst/-/cmGrayData -C/econst/-/cmGrayResponse -C/econst/-/cmGraySpace -C/econst/-/cmGrayTRCTag -C/econst/-/cmGreenColorantTag -C/econst/-/cmGreenResponse -C/econst/-/cmGreenTRCTag -C/econst/-/cmHandleBasedProfile -C/tdef/-/CMHandleLocation -C/tdef/-/CMHeader -C/econst/-/cmHLS32Space -C/tdef/-/CMHLSColor -C/econst/-/cmHLSData -C/econst/-/cmHLSSpace -C/econst/-/cmHSV32Space -C/tdef/-/CMHSVColor -C/econst/-/cmHSVData -C/econst/-/cmHSVSpace -C/econst/-/cmICCProfileVersion2 -C/econst/-/cmICCProfileVersion21 -C/econst/-/cmICCProfileVersion4 -C/econst/-/cmICCReservedFlagsMask -C/econst/-/cmIlluminantA -C/econst/-/cmIlluminantD50 -C/econst/-/cmIlluminantD55 -C/econst/-/cmIlluminantD65 -C/econst/-/cmIlluminantD93 -C/econst/-/cmIlluminantEquiPower -C/econst/-/cmIlluminantF2 -C/econst/-/cmIlluminantF8 -C/econst/-/cmIlluminantUnknown -C/econst/-/cmIndexRangeErr -C/econst/-/cmInputClass -C/econst/-/cmInputUse -C/tdef/-/CMIntentCRDVMSize -C/econst/-/cmInternalCFErr -C/econst/-/cmInterpolationMask -C/econst/-/cmInvalidColorSpace -C/econst/-/cmInvalidDstMap -C/econst/-/cmInvalidProfile -C/econst/-/cmInvalidProfileComment -C/econst/-/cmInvalidProfileLocation -C/econst/-/cmInvalidSearch -C/econst/-/cmInvalidSrcMap -C/tdef/-/CMIString -C/econst/-/cmIterateAllDeviceProfiles -C/func/-/CMIterateCMMInfo -C/func/-/CMIterateColorDevices -C/func/-/CMIterateColorSyncFolder -C/econst/-/cmIterateCurrentDeviceProfiles -C/econst/-/cmIterateCustomDeviceProfiles -C/tdef/-/CMIterateDeviceInfoProcPtr -C/tdef/-/CMIterateDeviceProfileProcPtr -C/func/-/CMIterateDeviceProfiles -C/econst/-/cmIterateDeviceProfilesMask -C/econst/-/cmIterateFactoryDeviceProfiles -C/econst/-/cmLAB24Space -C/econst/-/cmLAB32Space -C/econst/-/cmLAB48LSpace -C/econst/-/cmLAB48Space -C/tdef/-/CMLabColor -C/econst/-/cmLabData -C/econst/-/cmLABSpace -C/func/-/CMLaunchControlPanel -C/econst/-/cmLinearChromaticAdaptation -C/econst/-/cmLinesPer -C/econst/-/cmLinkClass -C/func/-/CMLinkImage -C/tdef/-/CMLinkImageProcPtr -C/econst/-/cmLittleEndianPacking -C/econst/-/cmLong10ColorPacking -C/econst/-/cmLong8ColorPacking -C/econst/-/cmLuminanceTag -C/tdef/-/CMLut16Type -C/tdef/-/CMLut8Type -C/econst/-/cmLUV32Space -C/tdef/-/CMLuvColor -C/econst/-/cmLuvData -C/econst/-/cmLUVSpace -C/econst/-/cmMagentaResponse -C/econst/-/cmMagicNumber -C/tdef/-/CMMakeAndModel -C/econst/-/cmMakeAndModelTag -C/tdef/-/CMMakeAndModelType -C/func/-/CMMakeProfile -C/econst/-/cmMatchAnyProfile -C/econst/-/cmMatchApplProfileVersion -C/econst/-/cmMatchAttributes -C/econst/-/cmMatchBlack -C/econst/-/cmMatchCMMType -C/econst/-/cmMatchDataColorSpace -C/econst/-/cmMatchDataType -C/econst/-/cmMatchDeviceAttributes -C/econst/-/cmMatchDeviceManufacturer -C/econst/-/cmMatchDeviceModel -C/econst/-/cmMatchDeviceType -C/tdef/-/CMMatchFlag -C/econst/-/cmMatchFlags -C/func/-/CMMatchImage -C/tdef/-/CMMatchImageProcPtr -C/econst/-/cmMatchManufacturer -C/econst/-/cmMatchModel -C/tdef/-/CMMatchOption -C/econst/-/cmMatchOptions -C/econst/-/cmMatchProfileClass -C/econst/-/cmMatchProfileCMMType -C/econst/-/cmMatchProfileConnectionSpace -C/econst/-/cmMatchProfileFlags -C/tdef/-/CMMatchRef -C/econst/-/cmMatchWhite -C/econst/-/cmMCEight8Space -C/econst/-/cmMCEightSpace -C/econst/-/cmMCFive8Space -C/econst/-/cmMCFiveSpace -C/econst/-/cmMCH5Data -C/econst/-/cmMCH6Data -C/econst/-/cmMCH7Data -C/econst/-/cmMCH8Data -C/econst/-/cmMCSeven8Space -C/econst/-/cmMCSevenSpace -C/econst/-/cmMCSix8Space -C/econst/-/cmMCSixSpace -C/econst/-/cmMeasurementTag -C/tdef/-/CMMeasurementType -C/econst/-/cmMediaBlackPointTag -C/econst/-/cmMediaWhitePointTag -C/econst/-/cmMethodError -C/econst/-/cmMethodNotFound -C/tdef/-/CMMInfo -C/tdef/-/CMMInfoRecord -C/econst/-/CMMInterfaceVersion -C/tdef/-/CMMIterateProcPtr -C/tdef/-/CMMIterateUPP -C/econst/-/cmMonitorDevice -C/tdef/-/CMMultichannel5Color -C/tdef/-/CMMultichannel6Color -C/tdef/-/CMMultichannel7Color -C/tdef/-/CMMultichannel8Color -C/tdef/-/CMMultiFunctCLUTType -C/tdef/-/CMMultiFunctLutA2BType -C/tdef/-/CMMultiFunctLutB2AType -C/tdef/-/CMMultiFunctLutType -C/tdef/-/CMMultiLocalizedUniCodeEntryRec -C/tdef/-/CMMultiLocalizedUniCodeType -C/tdef/-/CMNamedColor -C/tdef/-/CMNamedColor2EntryType -C/econst/-/cmNamedColor2Tag -C/tdef/-/CMNamedColor2Type -C/econst/-/cmNamedColorClass -C/econst/-/cmNamedColorNotFound -C/econst/-/cmNamedColorTag -C/tdef/-/CMNamedColorType -C/econst/-/cmNamedData -C/econst/-/cmNamedIndexed32LSpace -C/econst/-/cmNamedIndexed32Space -C/econst/-/cmNamedIndexedSpace -C/tdef/-/CMNativeDisplayInfo -C/econst/-/cmNativeDisplayInfoTag -C/tdef/-/CMNativeDisplayInfoType -C/econst/-/cmNativeMatchingPreferred -C/func/-/CMNewProfile -C/func/-/CMNewProfileSearch -C/econst/-/cmNoColorPacking -C/econst/-/cmNoCurrentProfile -C/econst/-/cmNoGDevicesError -C/econst/-/cmNoProfileBase -C/econst/-/cmNormalMode -C/econst/-/cmNoSpace -C/econst/-/cmNumHeaderElements -C/econst/-/cmOneBitDirectPacking -C/econst/-/cmOnePlusLastResponse -C/func/-/CMOpenProfile -C/econst/-/cmOpenReadAccess -C/econst/-/cmOpenReadSpool -C/econst/-/cmOpenWriteAccess -C/econst/-/cmOpenWriteSpool -C/econst/-/cmOriginalProfileLocationSize -C/econst/-/cmOutputClass -C/econst/-/cmOutputUse -C/tdef/-/CMovePBRec -C/econst/-/cmpAliasNoFlags -C/econst/-/cmpAliasOnlyThisFile -C/tdef/-/CMParametricCurveType -C/econst/-/cmParametricType0 -C/econst/-/cmParametricType1 -C/econst/-/cmParametricType2 -C/econst/-/cmParametricType3 -C/econst/-/cmParametricType4 -C/econst/-/cmPathBasedProfile -C/tdef/-/CMPathLocation -C/econst/-/cmPerceptual -C/econst/-/cmPerceptualMatch -C/econst/-/cmpIsMissing -C/econst/-/cmPreview0Tag -C/econst/-/cmPreview1Tag -C/econst/-/cmPreview2Tag -C/econst/-/cmPrinterDevice -C/econst/-/cmPrinterDeviceClass -C/econst/-/cmProcedureBasedProfile -C/tdef/-/CMProcedureLocation -C/tdef/-/CMProfile -C/tdef/-/CMProfileAccessProcPtr -C/tdef/-/CMProfileAccessUPP -C/tdef/-/CMProfileChromaticities -C/econst/-/cmProfileDescriptionMLTag -C/econst/-/cmProfileDescriptionTag -C/func/-/CMProfileElementExists -C/econst/-/cmProfileError -C/tdef/-/CMProfileFilterProc -C/tdef/-/CMProfileFilterProcPtr -C/tdef/-/CMProfileFilterUPP -C/tdef/-/CMProfileIdentifier -C/func/-/CMProfileIdentifierFolderSearch -C/func/-/CMProfileIdentifierListSearch -C/econst/-/cmProfileIdentifierSel -C/tdef/-/CMProfileIterateData -C/econst/-/cmProfileIterateDataVersion1 -C/econst/-/cmProfileIterateDataVersion2 -C/econst/-/cmProfileIterateDataVersion3 -C/tdef/-/CMProfileIterateProcPtr -C/tdef/-/CMProfileIterateUPP -C/tdef/-/CMProfileLocation -C/econst/-/cmProfileMajorVersionMask -C/tdef/-/CMProfileMD5 -C/func/-/CMProfileModified -C/tdef/-/CMProfileName -C/tdef/-/CMProfileNamePtr -C/econst/-/cmProfileNotFound -C/tdef/-/CMProfileRef -C/tdef/-/CMProfileResponse -C/tdef/-/CMProfileSearchRecord -C/tdef/-/CMProfileSearchRef -C/econst/-/cmProfileSequenceDescTag -C/tdef/-/CMProfileSequenceDescType -C/econst/-/cmProfilesIdentical -C/tdef/-/CMProfLoc -C/econst/-/cmProofDeviceClass -C/func/-/CMProofImage -C/tdef/-/CMProofImageProcPtr -C/econst/-/cmProofUse -C/econst/-/cmPrtrDefaultScreens -C/econst/-/cmPS2CRD0Tag -C/econst/-/cmPS2CRD1Tag -C/econst/-/cmPS2CRD2Tag -C/econst/-/cmPS2CRD3Tag -C/econst/-/cmPS2CRDVMSizeTag -C/tdef/-/CMPS2CRDVMSizeType -C/econst/-/cmPS2CSATag -C/econst/-/cmPS2RenderingIntentTag -C/econst/-/cmPS7bit -C/econst/-/cmPS8bit -C/econst/-/cmpThreadSafe -C/econst/-/cmPtrBasedProfile -C/tdef/-/CMPtrLocation -C/econst/-/cmpWantsRegisterMessage -C/econst/-/cmQualityMask -C/econst/-/cmRangeOverFlow -C/econst/-/cmReadAccess -C/econst/-/cmReadSpool -C/econst/-/cmRedColorantTag -C/econst/-/cmRedResponse -C/econst/-/cmRedTRCTag -C/econst/-/cmReflective -C/econst/-/cmReflectiveTransparentMask -C/func/-/CMRegisterColorDevice -C/econst/-/cmRelativeColorimetric -C/func/-/CMRemoveProfileElement -C/econst/-/cmReservedSpace1 -C/econst/-/cmReservedSpace2 -C/econst/-/cmReverseChannelPacking -C/econst/-/cmRGB16LSpace -C/econst/-/cmRGB16Space -C/econst/-/cmRGB24Space -C/econst/-/cmRGB32Space -C/econst/-/cmRGB48LSpace -C/econst/-/cmRGB48Space -C/econst/-/cmRGB565LSpace -C/econst/-/cmRGB565Space -C/econst/-/cmRGBA32PmulSpace -C/econst/-/cmRGBA32Space -C/econst/-/cmRGBA64LPmulSpace -C/econst/-/cmRGBA64LSpace -C/econst/-/cmRGBA64PmulSpace -C/econst/-/cmRGBA64Space -C/econst/-/cmRGBAPmulSpace -C/econst/-/cmRGBASpace -C/tdef/-/CMRGBColor -C/econst/-/cmRGBData -C/econst/-/cmRGBSpace -C/tdef/-/CMS15Fixed16ArrayType -C/econst/-/cmSaturation -C/econst/-/cmSaturationMatch -C/econst/-/cmScannerDevice -C/econst/-/cmScannerDeviceClass -C/tdef/-/CMSCertificateChainMode -C/tdef/-/CMScreeningChannelRec -C/econst/-/cmScreeningDescTag -C/econst/-/cmScreeningTag -C/tdef/-/CMScreeningType -C/func/-/CMSDecoderCopyAllCerts -C/func/-/CMSDecoderCopyContent -C/func/-/CMSDecoderCopyDetachedContent -C/func/-/CMSDecoderCopyEncapsulatedContentType -C/func/-/CMSDecoderCopySignerCert -C/func/-/CMSDecoderCopySignerEmailAddress -C/func/-/CMSDecoderCopySignerStatus -C/func/-/CMSDecoderCreate -C/func/-/CMSDecoderFinalizeMessage -C/func/-/CMSDecoderGetNumSigners -C/func/-/CMSDecoderGetTypeID -C/func/-/CMSDecoderIsContentEncrypted -C/tdef/-/CMSDecoderRef -C/func/-/CMSDecoderSetDetachedContent -C/func/-/CMSDecoderSetSearchKeychain -C/func/-/CMSDecoderUpdateMessage -C/econst/-/cmSearchError -C/func/-/CMSearchGetIndProfile -C/func/-/CMSearchGetIndProfileFileSpec -C/tdef/-/CMSearchRecord -C/func/-/CMSEncode -C/func/-/CMSEncoderAddRecipients -C/func/-/CMSEncoderAddSignedAttributes -C/func/-/CMSEncoderAddSigners -C/func/-/CMSEncoderAddSupportingCerts -C/func/-/CMSEncoderCopyEncapsulatedContentType -C/func/-/CMSEncoderCopyEncodedContent -C/func/-/CMSEncoderCopyRecipients -C/func/-/CMSEncoderCopySigners -C/func/-/CMSEncoderCopySupportingCerts -C/func/-/CMSEncoderCreate -C/func/-/CMSEncoderGetCertificateChainMode -C/func/-/CMSEncoderGetHasDetachedContent -C/func/-/CMSEncoderGetTypeID -C/tdef/-/CMSEncoderRef -C/func/-/CMSEncoderSetCertificateChainMode -C/func/-/CMSEncoderSetEncapsulatedContentType -C/func/-/CMSEncoderSetHasDetachedContent -C/func/-/CMSEncoderUpdateContent -C/func/-/CMSetDefaultDevice -C/func/-/CMSetDefaultProfileBySpace -C/func/-/CMSetDefaultProfileByUse -C/func/-/CMSetDeviceDefaultProfileID -C/func/-/CMSetDeviceFactoryProfiles -C/func/-/CMSetDeviceProfile -C/func/-/CMSetDeviceProfiles -C/func/-/CMSetDeviceState -C/func/-/CMSetGammaByAVID -C/func/-/CMSetIndImageProfile -C/tdef/-/CMSetIndImageProfileProcPtr -C/func/-/CMSetPartialProfileElement -C/func/-/CMSetProfileByAVID -C/func/-/CMSetProfileDescriptions -C/func/-/CMSetProfileElement -C/func/-/CMSetProfileElementReference -C/func/-/CMSetProfileElementSize -C/func/-/CMSetProfileHeader -C/func/-/CMSetProfileLocalizedStringDictionary -C/func/-/CMSetSystemProfile -C/econst/-/cmSigCrdInfoType -C/econst/-/cmSigCurveType -C/econst/-/cmSigDataType -C/econst/-/cmSigDateTimeType -C/econst/-/cmSigLut16Type -C/econst/-/cmSigLut8Type -C/econst/-/cmSigMakeAndModelType -C/econst/-/cmSigMeasurementType -C/econst/-/cmSigMultiFunctA2BType -C/econst/-/cmSigMultiFunctB2AType -C/econst/-/cmSigMultiLocalizedUniCodeType -C/econst/-/cmSigNamedColor2Type -C/econst/-/cmSigNamedColorType -C/econst/-/cmSigNativeDisplayInfoType -C/tdef/-/CMSignatureType -C/econst/-/cmSigParametricCurveType -C/econst/-/cmSigProfileDescriptionType -C/econst/-/cmSigProfileSequenceDescType -C/econst/-/cmSigPS2CRDVMSizeType -C/econst/-/cmSigS15Fixed16Type -C/econst/-/cmSigScreeningType -C/econst/-/cmSigSignatureType -C/econst/-/cmSigTextType -C/econst/-/cmSigU16Fixed16Type -C/econst/-/cmSigU1Fixed15Type -C/econst/-/cmSigUcrBgType -C/econst/-/cmSigUInt16Type -C/econst/-/cmSigUInt32Type -C/econst/-/cmSigUInt64Type -C/econst/-/cmSigUInt8Type -C/econst/-/cmSigUnicodeTextType -C/econst/-/cmSigVideoCardGammaType -C/econst/-/cmSigViewingConditionsType -C/econst/-/cmSigXYZType -C/econst/-/cmspFavorEmbeddedMask -C/econst/-/cmspInvalidImageFile -C/econst/-/cmspInvalidImageSpace -C/econst/-/cmspInvalidProfileDest -C/econst/-/cmspInvalidProfileEmbed -C/econst/-/cmspInvalidProfileLink -C/econst/-/cmspInvalidProfileProof -C/econst/-/cmspInvalidProfileSource -C/econst/-/cmSpotFunctionCross -C/econst/-/cmSpotFunctionDefault -C/econst/-/cmSpotFunctionDiamond -C/econst/-/cmSpotFunctionEllipse -C/econst/-/cmSpotFunctionLine -C/econst/-/cmSpotFunctionRound -C/econst/-/cmSpotFunctionSquare -C/econst/-/cmSpotFunctionUnknown -C/econst/-/cmSRGB16ChannelEncoding -C/econst/-/cmSRGBData -C/tdef/-/CMSSignedAttributes -C/tdef/-/CMSSignerStatus -C/econst/-/cmStdobs1931TwoDegrees -C/econst/-/cmStdobs1964TenDegrees -C/econst/-/cmStdobsUnknown -C/tdef/-/CMTagElemTable -C/tdef/-/CMTagRecord -C/econst/-/cmTechnologyAMDisplay -C/econst/-/cmTechnologyCRTDisplay -C/econst/-/cmTechnologyDigitalCamera -C/econst/-/cmTechnologyDyeSublimationPrinter -C/econst/-/cmTechnologyElectrophotographicPrinter -C/econst/-/cmTechnologyElectrostaticPrinter -C/econst/-/cmTechnologyFilmScanner -C/econst/-/cmTechnologyFilmWriter -C/econst/-/cmTechnologyFlexography -C/econst/-/cmTechnologyGravure -C/econst/-/cmTechnologyInkJetPrinter -C/econst/-/cmTechnologyOffsetLithography -C/econst/-/cmTechnologyPhotoCD -C/econst/-/cmTechnologyPhotographicPaperPrinter -C/econst/-/cmTechnologyPhotoImageSetter -C/econst/-/cmTechnologyPMDisplay -C/econst/-/cmTechnologyProjectionTelevision -C/econst/-/cmTechnologyReflectiveScanner -C/econst/-/cmTechnologySilkscreen -C/econst/-/cmTechnologyTag -C/econst/-/cmTechnologyThermalWaxPrinter -C/econst/-/cmTechnologyVideoCamera -C/econst/-/cmTechnologyVideoMonitor -C/tdef/-/CMTextDescriptionType -C/tdef/-/CMTextType -C/econst/-/cmTrap -C/econst/-/cmTurnOffCache -C/tdef/-/CMU16Fixed16ArrayType -C/econst/-/cmUcrBgTag -C/tdef/-/CMUcrBgType -C/econst/-/cmUcrResponse -C/tdef/-/CMUInt16ArrayType -C/tdef/-/CMUInt32ArrayType -C/tdef/-/CMUInt64ArrayType -C/tdef/-/CMUInt8ArrayType -C/func/-/CMUnembedImage -C/tdef/-/CMUnembedImageProcPtr -C/tdef/-/CMUnicodeTextType -C/func/-/CMUnregisterColorDevice -C/econst/-/cmUnsupportedDataType -C/func/-/CMUpdateProfile -C/func/-/CMUpdateProfileSearch -C/econst/-/cmUseDefaultChromaticAdaptation -C/func/-/CMValidateProfile -C/func/-/CMValidImage -C/tdef/-/CMValidImageProcPtr -C/tdef/-/CMVideoCardGamma -C/tdef/-/CMVideoCardGammaFormula -C/econst/-/cmVideoCardGammaFormulaType -C/tdef/-/CMVideoCardGammaTable -C/econst/-/cmVideoCardGammaTableType -C/econst/-/cmVideoCardGammaTag -C/tdef/-/CMVideoCardGammaType -C/econst/-/cmViewingConditionsDescTag -C/econst/-/cmViewingConditionsTag -C/tdef/-/CMViewingConditionsType -C/econst/-/cmVonKriesChromaticAdaptation -C/econst/-/cmWord565ColorPacking -C/econst/-/cmWord5ColorPacking -C/tdef/-/CMWorldRef -C/econst/-/cmWriteAccess -C/econst/-/cmWriteSpool -C/econst/-/cmXYZ24Space -C/econst/-/cmXYZ32Space -C/econst/-/cmXYZ48LSpace -C/econst/-/cmXYZ48Space -C/tdef/-/CMXYZColor -C/tdef/-/CMXYZComponent -C/econst/-/cmXYZData -C/econst/-/cmXYZSpace -C/tdef/-/CMXYZType -C/econst/-/cmYCbCrData -C/econst/-/cmYellowResponse -C/tdef/-/CMYKColor -C/econst/-/cmYXY32Space -C/tdef/-/CMYxyColor -C/econst/-/cmYxyData -C/econst/-/cmYXYSpace -C/tdef/-/CntrlParam -C++/instm/IOFireWireSerialBusProtocolTransport/CoalesceSenseData -JavaScript/instp/Error/code -Objective-C/instm/NSError/code -JavaScript/data/DOMCoreException/code -JavaScript/data/IDBDatabaseError/code -JavaScript/data/IDBErrorEvent/code -JavaScript/data/FileError/code -JavaScript/data/IDBDatabaseException/code -JavaScript/data/HTMLAppletElement/code -JavaScript/data/HTMLObjectElement/code -JavaScript/data/EventException/code -JavaScript/data/SQLError/code -JavaScript/data/PositionError/code -JavaScript/data/SVGException/code -JavaScript/data/MediaError/code -JavaScript/data/RangeException/code -JavaScript/data/XMLHttpRequestException/code -JavaScript/data/XPathException/code -JavaScript/data/HTMLObjectElement/codeBase -JavaScript/data/HTMLAppletElement/codeBase -C/econst/-/codecCompletionDecoded -C/econst/-/codecCompletionDest -C/econst/-/codecCompletionDropped -C/econst/-/codecCompletionForceChainFlush -C/econst/-/codecCompletionNotDisplayable -C/econst/-/codecCompletionNotDrawn -C/econst/-/codecCompletionSource -C/econst/-/codecCompletionUnlockBits -C/econst/-/codecCompletionWentOffscreen -C/tdef/-/CodecComponent -C/tag/-/CodecCompressParams -C/econst/-/codecConditionCatchUpDiff -C/econst/-/codecConditionCodecChangedMask -C/econst/-/codecConditionDoCursor -C/econst/-/codecConditionFirstBand -C/econst/-/codecConditionFirstFrame -C/econst/-/codecConditionFirstScreen -C/econst/-/codecConditionLastBand -C/econst/-/codecConditionMaskMayBeChanged -C/econst/-/codecConditionNewAccuracy -C/econst/-/codecConditionNewClut -C/econst/-/codecConditionNewDepth -C/econst/-/codecConditionNewDestination -C/econst/-/codecConditionNewMatte -C/econst/-/codecConditionNewSrcRect -C/econst/-/codecConditionNewTransferMode -C/econst/-/codecConditionNewTransform -C/econst/-/codecConditionToBuffer -C/tag/-/CodecDecompressParams -C/econst/-/codecDrawsHigherQualityScaled -C/econst/-/codecFlagDiffFrame -C/econst/-/codecFlagLiveGrab -C/econst/-/codecFlagSupportDisable -C/econst/-/codecFlagUpdatePrevious -C/econst/-/codecFlagUpdatePreviousComp -C/econst/-/codecFlagUsedImageBuffer -C/econst/-/codecFlagWasCompressed -C/econst/-/codecImageBufferIsInAGPMemory -C/econst/-/codecImageBufferIsInPCIMemory -C/econst/-/codecImageBufferIsOverlaySurface -C/econst/-/codecImageBufferMemoryFlagsValid -C/tag/-/CodecInfo -C/econst/-/codecInfoDepth1 -C/econst/-/codecInfoDepth16 -C/econst/-/codecInfoDepth2 -C/econst/-/codecInfoDepth24 -C/econst/-/codecInfoDepth32 -C/econst/-/codecInfoDepth33 -C/econst/-/codecInfoDepth34 -C/econst/-/codecInfoDepth36 -C/econst/-/codecInfoDepth4 -C/econst/-/codecInfoDepth40 -C/econst/-/codecInfoDepth8 -C/econst/-/codecInfoDoes1 -C/econst/-/codecInfoDoes16 -C/econst/-/codecInfoDoes2 -C/econst/-/codecInfoDoes32 -C/econst/-/codecInfoDoes4 -C/econst/-/codecInfoDoes8 -C/econst/-/codecInfoDoesBlend -C/econst/-/codecInfoDoesDither -C/econst/-/codecInfoDoesDouble -C/econst/-/codecInfoDoesHalf -C/econst/-/codecInfoDoesHorizFlip -C/econst/-/codecInfoDoesLossless -C/econst/-/codecInfoDoesMask -C/econst/-/codecInfoDoesMultiPass -C/econst/-/codecInfoDoesQuad -C/econst/-/codecInfoDoesQuarter -C/econst/-/codecInfoDoesRecompress -C/econst/-/codecInfoDoesReorder -C/econst/-/codecInfoDoesRotate -C/econst/-/codecInfoDoesShrink -C/econst/-/codecInfoDoesSpool -C/econst/-/codecInfoDoesStretch -C/econst/-/codecInfoDoesTemporal -C/econst/-/codecInfoDoesVertFlip -C/econst/-/codecInfoDoesWarp -C/econst/-/codecInfoHasEffectParameterList -C/econst/-/codecInfoResourceType -C/econst/-/codecInfoStoresClut -C/econst/-/codecInterfaceVersion -C/econst/-/codecLosslessQuality -C/econst/-/codecLowQuality -C/func/-/CodecManagerVersion -C/econst/-/codecMaxQuality -C/econst/-/codecMinQuality -C/tag/-/CodecNameSpecList -C/tdef/-/CodecNameSpecListPtr -C/econst/-/codecNormalQuality -C/tdef/-/CodecQ -C/econst/-/codecSrcMustBeImageBuffer -C/econst/-/codecSuggestedBufferSentinel -C/econst/-/codecSupportsOutOfOrderDisplayTimes -C/econst/-/codecSupportsScheduledBackwardsPlaybackWithDifferenceFrames -C/tdef/-/CodecType -C/econst/-/codecUsesOverlaySurface -Objective-C/instm/SBApplication/codesForPropertyNames -JavaScript/data/HTMLObjectElement/codeType -Objective-C/instm/NSAppleEventDescriptor/coerceToDescriptorType: -Objective-C/instm/NSObject/coerceValue:forKey: -Objective-C/instm/NSScriptCoercionHandler/coerceValue:toClass: -JavaScript/instm/DOMSelection/collapse -JavaScript/instm/Range/collapse -JavaScript/data/Range/collapsed -Objective-C/instm/IKImageBrowserView/collapseGroupAtIndex: -Objective-C/instm/NSOutlineView/collapseItem: -Objective-C/instm/NSOutlineView/collapseItem:collapseChildren: -Objective-C/instm/NSTextTable/collapsesBorders -JavaScript/instm/DOMSelection/collapseToEnd -JavaScript/instm/DOMSelection/collapseToStart -C/tdef/-/CollatorRef -Objective-C/instm/NSGarbageCollector/collectExhaustively -Objective-C/instm/NSGarbageCollector/collectIfNeeded -Objective-C/instm/NSExpression/collection -Objective-C/instm/NSWindow/collectionBehavior -Objective-C/instm/NSFontManager/collectionNames -Objective-C/instm/NSCollectionViewItem/collectionView -Objective-C/intfm/NSCollectionViewDelegate/collectionView:acceptDrop:index:dropOperation: -Objective-C/intfm/NSCollectionViewDelegate/collectionView:canDragItemsAtIndexes:withEvent: -Objective-C/intfm/NSCollectionViewDelegate/collectionView:draggingImageForItemsAtIndexes:withEvent:offset: -Objective-C/intfm/NSCollectionViewDelegate/collectionView:namesOfPromisedFilesDroppedAtDestination:forDraggedItemsAtIndexes: -Objective-C/intfm/NSCollectionViewDelegate/collectionView:validateDrop:proposedIndex:dropOperation: -Objective-C/intfm/NSCollectionViewDelegate/collectionView:writeItemsAtIndexes:toPasteboard: -Objective-C/instm/NSColorPanel/color -Objective-C/instm/NSColorWell/color -Objective-C/instm/PDFAnnotation/color -Objective-C/instm/PDFSelection/color -Objective-C/instm/CalCalendar/color -Objective-C/instp/CalCalendar/color -Objective-C/instm/CAEmitterCell/color -Objective-C/instp/CAEmitterCell/color -Objective-C/instm/NSTabViewItem/color -JavaScript/data/HTMLBaseFontElement/color -JavaScript/data/HTMLFontElement/color -JavaScript/clconst/WebGLRenderingContext/COLOR_ATTACHMENT0 -JavaScript/clconst/WebGLRenderingContext/COLOR_BUFFER_BIT -JavaScript/clconst/WebGLRenderingContext/COLOR_CLEAR_VALUE -C/func/-/color_content -C/func/-/COLOR_PAIR -C/func/-/color_set -JavaScript/clconst/WebGLRenderingContext/COLOR_WRITEMASK -Objective-C/instm/NSBitmapImageRep/colorAtX:y: -JavaScript/data/Screen/colorDepth -Objective-C/clm/NSColor/colorForControlTint: -Objective-C/clm/NSColor/colorFromPasteboard: -Objective-C/instm/FxImage/colorInfo -Objective-C/instm/NSBitmapImageRep/colorizeByMappingGray:toColor:blackMapping:whiteMapping: -Objective-C/clm/NSColorList/colorListNamed: -JavaScript/instm/WebGLRenderingContext/colorMask -Objective-C/instm/NSColor/colorNameComponent -Objective-C/instm/NSColorPicker/colorPanel -Objective-C/instm/NSGraphicsContext/colorRenderingIntent -Objective-C/instp/CAGradientLayer/colors -Objective-C/instm/CAGradientLayer/colors -Objective-C/intfm/QCPlugInContext/colorSpace -Objective-C/instm/CIColor/colorSpace -Objective-C/instm/NSColor/colorSpace -Objective-C/instm/NSGradient/colorSpace -Objective-C/instm/NSScreen/colorSpace -Objective-C/instm/NSWindow/colorSpace -Objective-C/instm/NSBitmapImageRep/colorSpace -Objective-C/instm/NSColorSpace/colorSpaceModel -Objective-C/instm/NSColor/colorSpaceName -Objective-C/instm/NSImageRep/colorSpaceName -Objective-C/instm/NSColorSpace/colorSyncProfile -JavaScript/data/SVGColor/colorType -Objective-C/instm/NSColor/colorUsingColorSpace: -Objective-C/instm/NSColor/colorUsingColorSpaceName: -Objective-C/instm/NSColor/colorUsingColorSpaceName:device: -Objective-C/instm/NSColor/colorWithAlphaComponent: -Objective-C/clm/NSColor/colorWithCalibratedHue:saturation:brightness:alpha: -Objective-C/clm/NSColor/colorWithCalibratedRed:green:blue:alpha: -Objective-C/clm/NSColor/colorWithCalibratedWhite:alpha: -Objective-C/clm/NSColor/colorWithCatalogName:colorName: -Objective-C/clm/CIColor/colorWithCGColor: -Objective-C/clm/NSColor/colorWithCIColor: -Objective-C/clm/NSColor/colorWithColorSpace:components:count: -Objective-C/clm/NSColor/colorWithDeviceCyan:magenta:yellow:black:alpha: -Objective-C/clm/NSColor/colorWithDeviceHue:saturation:brightness:alpha: -Objective-C/clm/NSColor/colorWithDeviceRed:green:blue:alpha: -Objective-C/clm/NSColor/colorWithDeviceWhite:alpha: -Objective-C/instm/NSColorList/colorWithKey: -Objective-C/clm/NSColor/colorWithPatternImage: -Objective-C/clm/CIColor/colorWithRed:green:blue: -Objective-C/clm/CIColor/colorWithRed:green:blue:alpha: -Objective-C/clm/CIColor/colorWithString: -JavaScript/data/HTMLFrameSetElement/cols -JavaScript/data/HTMLTextAreaElement/cols -JavaScript/data/HTMLTableCellElement/colSpan -Objective-C/instm/NSTableHeaderView/columnAtPoint: -Objective-C/instm/NSTableView/columnAtPoint: -Objective-C/instm/NSTableView/columnAutoresizingStyle -Objective-C/instm/NSBrowser/columnContentWidthForColumnWidth: -Objective-C/instm/IKImageBrowserView/columnIndexesInRect: -Objective-C/instm/NSTableView/columnIndexesInRect: -Objective-C/instm/NSXMLParser/columnNumber -Objective-C/instm/NSBrowser/columnOfMatrix: -Objective-C/instm/NSBrowser/columnResizingType -JavaScript/data/HTMLDataGridElement/columns -Objective-C/instm/NSBrowser/columnsAutosaveName -Objective-C/instm/NSTableView/columnsInRect: -Objective-C/instm/NSTextTableBlock/columnSpan -Objective-C/instm/ABPeoplePickerView/columnTitleForProperty: -Objective-C/instm/NSBrowser/columnWidthForColumnContentWidth: -Objective-C/instm/NSTableView/columnWithIdentifier: -Objective-C/intfm/NSComboBoxDataSource/comboBox:completedString: -Objective-C/intfm/NSComboBoxDataSource/comboBox:indexOfItemWithStringValue: -Objective-C/intfm/NSComboBoxDataSource/comboBox:objectValueForItemAtIndex: -Objective-C/intfm/NSComboBoxCellDataSource/comboBoxCell:completedString: -Objective-C/intfm/NSComboBoxCellDataSource/comboBoxCell:indexOfItemWithStringValue: -Objective-C/intfm/NSComboBoxCellDataSource/comboBoxCell:objectValueForItemAtIndex: -Objective-C/intfm/NSComboBoxDelegate/comboBoxSelectionDidChange: -Objective-C/intfm/NSComboBoxDelegate/comboBoxSelectionIsChanging: -Objective-C/intfm/NSComboBoxDelegate/comboBoxWillDismiss: -Objective-C/intfm/NSComboBoxDelegate/comboBoxWillPopUp: -C++/instm/IOService/command_received -Objective-C/instm/NSScriptCommandDescription/commandClassName -Objective-C/instm/NSScriptCommand/commandDescription -Objective-C/instm/NSScriptSuiteRegistry/commandDescriptionsInSuite: -Objective-C/instm/NSScriptSuiteRegistry/commandDescriptionWithAppleEventClass:andAppleEventCode: -C++/clm/IOCommandGate/commandGate -C++/data/IOAudioDevice/commandGate -C++/data/IOAudioEngine/commandGate -C++/data/IOAudioControl/commandGate -Objective-C/instm/NSScriptCommandDescription/commandName -C++/instm/IOFireWireSerialBusProtocolTransport/CommandORBAccessor -C++/clm/IOCommandPool/commandPool -Objective-C/instm/NSSpeechRecognizer/commands -C++/instm/IOCommandGate/commandSleep -C++/instm/IOCommandGate/commandWakeup -Objective-C/instm/NSHTTPCookie/comment -JavaScript/cl/-/Comment -JavaScript/data/DOMWindow/Comment -JavaScript/clconst/core/COMMENT_NODE -C/tdef/-/commentSAXFunc -Objective-C/instm/NSHTTPCookie/commentURL -Objective-C/clm/NSXMLNode/commentWithStringValue: -Objective-C/clm/CATransaction/commit -C++/instm/IOAGPDevice/commitAGPMemory -Objective-C/instm/NSObject/commitComposition: -Objective-C/instm/CWInterface/commitConfiguration:error: -Objective-C/instm/NSController/commitEditing -Objective-C/instm/NSViewController/commitEditing -Objective-C/instm/NSObject/commitEditing -Objective-C/instm/NSController/commitEditingWithDelegate:didCommitSelector:contextInfo: -Objective-C/instm/NSViewController/commitEditingWithDelegate:didCommitSelector:contextInfo: -Objective-C/instm/NSObject/commitEditingWithDelegate:didCommitSelector:contextInfo: -Objective-C/instm/NSManagedObject/committedValuesForKeys: -JavaScript/data/Range/commonAncestorContainer -C/func/-/CommonCrypto -Objective-C/clm/NSLocale/commonISOCurrencyCodes -C/tag/-/Commonly -Objective-C/instm/CalAttendee/commonName -Objective-C/instp/CalAttendee/commonName -Objective-C/instm/NSString/commonPrefixWithString:options: -Objective-C/instm/NSPointerArray/compact -JavaScript/data/HTMLUListElement/compact -JavaScript/data/HTMLDirectoryElement/compact -JavaScript/data/HTMLOListElement/compact -JavaScript/data/HTMLMenuElement/compact -JavaScript/data/HTMLDListElement/compact -C/func/-/CompAdd -Objective-C/instm/NSSortDescriptor/comparator -Objective-C/instm/PDFDestination/compare: -Objective-C/instm/NSDecimalNumber/compare: -Objective-C/instm/NSNumber/compare: -Objective-C/instm/NSIndexPath/compare: -Objective-C/instm/NSString/compare: -Objective-C/instm/NSCell/compare: -Objective-C/instm/NSDate/compare: -Objective-C/instm/NSString/compare:options: -Objective-C/instm/NSString/compare:options:range: -Objective-C/instm/NSString/compare:options:range:locale: -JavaScript/instm/Range/compareBoundaryPoints -JavaScript/instm/core/compareDocumentPosition -C++/instm/IORegistryEntry/compareName -C++/instm/IORegistryEntry/compareNames -JavaScript/instm/Range/compareNode -Objective-C/instm/NSSortDescriptor/compareObject:toObject: -JavaScript/instm/Range/comparePoint -C++/instm/IOService/compareProperties -C++/instm/IOService/compareProperty -Objective-C/instm/NSComparisonPredicate/comparisonPredicateModifier -JavaScript/data/HTMLDocument/compatMode -C/func/-/CompCompare -C/func/-/CompDiv -C/func/-/CompFixMul -JavaScript/clconst/WebGLRenderingContext/COMPILE_STATUS -Objective-C/instm/NSAppleScript/compileAndReturnError: -JavaScript/instm/WebGLRenderingContext/compileShader -C++/instm/IODMACommand/complete -C++/instm/IOMultiMemoryDescriptor/complete -C++/instm/IOMemoryDescriptor/complete -C++/instm/IOInterleavedMemoryDescriptor/complete -C++/instm/IOFWPhysicalAddressSpace/complete -C++/clm/IOStorage/complete -JavaScript/data/HTMLImageElement/complete -Objective-C/instm/NSTextView/complete: -Objective-C/instm/NSResponder/complete: -Objective-C/instp/CalTask/completedDate -Objective-C/instm/CalTask/completedDate -Objective-C/instm/NSComboBoxCell/completedString: -Objective-C/instm/XGJob/completedTaskCount -C++/instm/IOSCSIParallelInterfaceController/CompleteParallelTask -Objective-C/instm/NSString/completePathIntoString:caseSensitive:matchesIntoArray:filterTypes: -C++/instm/IOAudioDevice/completePowerStateChange -C++/clm/IOAudioDevice/completePowerStateChangeAction -Objective-C/instm/NSComboBox/completes -Objective-C/instm/NSComboBoxCell/completes -C++/instm/IOFireWireSerialBusProtocolTransport/CompleteSCSITask -Objective-C/instm/DRBurn(PropertyConvenienceMethods)/completionAction -C++/tdef/IOHIDInterface/CompletionAction -Objective-C/instm/DRBurnSetupPanel/completionAction: -Objective-C/instm/NSOperation/completionBlock -Objective-C/clm/CATransaction/completionBlock -Objective-C/instm/NSTokenFieldCell/completionDelay -Objective-C/instm/NSTokenField/completionDelay -Objective-C/instm/NSTextView/completionsForPartialWordRange:indexOfSelectedItem: -Objective-C/instm/NSSpellChecker/completionsForPartialWordRange:inString:language:inSpellDocumentWithTag: -C/func/-/complex -C/func/-/CompMul -C/func/-/CompMulDiv -C/func/-/CompMulDivTrunc -C/func/-/CompNeg -C/tdef/-/ComponentAliasResource -C/econst/-/componentAutoVersionIncludeFlags -C/tag/-/ComponentDependencyArray -C/tdef/-/ComponentDescription -C/econst/-/componentDllEntryNotFoundErr -C/econst/-/componentDllLoadErr -C/econst/-/componentDoAutoVersion -C/econst/-/componentDontRegister -C/func/-/ComponentFunctionImplemented -C/tdef/-/ComponentFunctionUPP -C/econst/-/componentHasMultiplePlatforms -C/tdef/-/ComponentInstance -C/tdef/-/ComponentInstanceRecord -C/tag/-/ComponentInstanceRecord -C/econst/-/componentLoadResident -C/tdef/-/ComponentMPWorkFunctionHeaderRecord -C/tdef/-/ComponentMPWorkFunctionProc -C/tdef/-/ComponentMPWorkFunctionProcPtr -C/tdef/-/ComponentMPWorkFunctionUPP -C/econst/-/componentNotCaptured -C/tdef/-/ComponentParameters -C/tdef/-/ComponentPlatformInfo -C/tdef/-/ComponentPlatformInfoArray -C/tdef/-/ComponentRecord -C/tdef/-/ComponentResource -C/tdef/-/ComponentResourceExtension -C/tdef/-/ComponentResult -C/tdef/-/ComponentRoutineProcPtr -C/tdef/-/ComponentRoutineUPP -Objective-C/instm/CIColor/components -Objective-C/instm/NSPortMessage/components -Objective-C/instm/NSCalendar/components:fromDate: -Objective-C/instm/NSCalendar/components:fromDate:toDate:options: -C/func/-/ComponentSetTarget -Objective-C/clm/NSLocale/componentsFromLocaleIdentifier: -Objective-C/instm/NSArray/componentsJoinedByString: -Objective-C/instm/NSString/componentsSeparatedByCharactersInSet: -Objective-C/instm/NSString/componentsSeparatedByString: -Objective-C/instm/NSFileManager/componentsToDisplayForPath: -C/econst/-/componentWantsUnregister -Objective-C/instm/NSObject/composedString: -Objective-C/instm/NSImage/compositeToPoint:fromRect:operation: -Objective-C/instm/NSImage/compositeToPoint:fromRect:operation:fraction: -Objective-C/instm/NSImage/compositeToPoint:operation: -Objective-C/instm/NSImage/compositeToPoint:operation:fraction: -Objective-C/instm/NSView/compositingFilter -Objective-C/instp/CALayer/compositingFilter -Objective-C/instm/CALayer/compositingFilter -Objective-C/instm/NSGraphicsContext/compositingOperation -Objective-C/instm/QCRenderer/composition -Objective-C/instm/QCCompositionLayer/composition -Objective-C/instm/QCCompositionPickerView/compositionAspectRatio -Objective-C/instm/IMKInputController/compositionAttributesAtRange: -JavaScript/cl/-/CompositionEvent -Objective-C/clm/QCCompositionLayer/compositionLayerWithComposition: -Objective-C/clm/QCCompositionLayer/compositionLayerWithFile: -Objective-C/instm/NSObject/compositionParameterView:shouldDisplayParameterWithKey:attributes: -Objective-C/instm/QCCompositionPickerPanel/compositionPickerView -Objective-C/instm/NSObject/compositionPickerView:didSelectComposition: -Objective-C/instm/NSObject/compositionPickerViewDidStartAnimating: -Objective-C/instm/NSObject/compositionPickerViewWillStopAnimating: -Objective-C/instm/QCCompositionParameterView/compositionRenderer -Objective-C/instm/QCCompositionPickerView/compositions -Objective-C/instm/QCCompositionRepository/compositionsWithProtocols:andAttributes: -Objective-C/clm/QCComposition/compositionWithData: -Objective-C/clm/QCComposition/compositionWithFile: -Objective-C/instm/QCCompositionRepository/compositionWithIdentifier: -Objective-C/instm/NSCompoundPredicate/compoundPredicateType -Objective-C/instm/NSPredicateEditorRowTemplate/compoundTypes -JavaScript/clconst/WebGLRenderingContext/COMPRESSED_TEXTURE_FORMATS -C/func/-/CompressImage -Objective-C/instm/QTCaptureFileOutput/compressionOptionsForConnection: -Objective-C/clm/QTCompressionOptions/compressionOptionsIdentifiersForMediaType: -Objective-C/clm/QTCompressionOptions/compressionOptionsWithIdentifier: -C/tdef/-/CompressorComponent -C/func/-/CompressPicture -C/func/-/CompressPictureFile -C/func/-/CompressSequenceBegin -C/func/-/CompressSequenceFrame -C/func/-/CompShift -C/func/-/CompSquareRoot -C/func/-/CompSub -Objective-C/instm/WebView/computedStyleForElement:pseudoElement: -Objective-C/instm/NSAffineTransform/concat -C/func/-/ConcatMatrix -Objective-C/instm/NSObject/concludeDragOperation: -C++/cl/-/ConcreteTestInvocation -Objective-C/instm/NSConditionLock/condition -C/func/-/CONF_modules_finish -C/func/-/CONF_modules_free -C/func/-/CONF_modules_load -C/func/-/CONF_modules_load_file -C/func/-/CONF_modules_unload -C/func/-/config_perror -C/func/-/config_pwarn -C++/instm/IOPCIDevice/configRead16 -C++/instm/IOPCIDevice/configRead32 -C++/instm/IOPCIDevice/configRead8 -Objective-C/clm/CWConfiguration/configuration -Objective-C/instp/CWInterface/configuration -C++/data/IOAudioEngine/configurationChangeInProgress -Objective-C/instm/NSToolbar/configurationDictionary -Objective-C/instm/NSPersistentStore/configurationName -Objective-C/instm/NSManagedObjectModel/configurations -Objective-C/instm/NSRunLoop/configureAsServer -C++/instm/IOUSBControllerV2/ConfigureDeviceZero -C++/instm/IONetworkController/configureInterface -Objective-C/instm/NSPersistentDocument/configurePersistentStoreCoordinatorForURL:ofType:error: -Objective-C/instm/NSPersistentDocument/configurePersistentStoreCoordinatorForURL:ofType:modelConfiguration:storeOptions:error: -Objective-C/instm/ScreenSaverView/configureSheet -C++/instm/IOPCIDevice/configWrite16 -C++/instm/IOPCIDevice/configWrite32 -C++/instm/IOPCIDevice/configWrite8 -Objective-C/intfm/NSMenuDelegate/confinementRectForMenu:onScreen: -JavaScript/instm/DOMWindow/confirm -Objective-C/intfm/NSObject/conformsToProtocol: -Objective-C/clm/NSObject/conformsToProtocol: -C/func/-/confstr -C/func/-/conj -C/func/-/conjf -C/func/-/conjl -C/func/-/connect -Objective-C/instm/IBDocument/connectAction:ofSourceObject:toDestinationObject: -Objective-C/instm/IBDocument/connectBinding:ofSourceObject:toDestinationObject:keyPath:options: -C++/instm/IOFramebuffer/connectFlags -JavaScript/clconst/EventSource/CONNECTING -JavaScript/clconst/WebSocket/CONNECTING -Objective-C/instm/NSDistantObjectRequest/connection -Objective-C/instm/NSPortCoder/connection -Objective-C/instm/XGResource/connection -Objective-C/instm/NSObject/connection:canAuthenticateAgainstProtectionSpace: -Objective-C/instm/NSObject/connection:didCancelAuthenticationChallenge: -Objective-C/instm/NSObject/connection:didFailWithError: -Objective-C/instm/NSObject/connection:didReceiveAuthenticationChallenge: -Objective-C/instm/NSObject/connection:didReceiveData: -Objective-C/instm/NSObject/connection:didReceiveResponse: -Objective-C/instm/NSObject/connection:didSendBodyData:totalBytesWritten:totalBytesExpectedToWrite: -Objective-C/intfm/NSConnectionDelegate/connection:handleRequest: -Objective-C/intfm/NSConnectionDelegate/connection:shouldMakeNewConnection: -Objective-C/instm/NSObject/connection:willCacheResponse: -Objective-C/instm/NSObject/connection:willSendRequest:redirectResponse: -Objective-C/instm/QTCaptureConnection/connectionAttributes -Objective-C/instm/NSObject(XGConnectionDelegate)/connectionDidClose: -Objective-C/instm/NSObject/connectionDidFinishLoading: -Objective-C/instm/NSObject(XGConnectionDelegate)/connectionDidNotOpen:withError: -Objective-C/instm/NSObject(XGConnectionDelegate)/connectionDidOpen: -Objective-C/instm/NSDistantObject/connectionForProxy -C/func/-/ConnectionNumber -Objective-C/instm/QTCaptureOutput/connections -Objective-C/instm/QTCaptureInput/connections -Objective-C/instm/NSObject/connectionShouldUseCredentialStorage: -Objective-C/clm/NSConnection/connectionWithReceivePort:sendPort: -Objective-C/clm/NSConnection/connectionWithRegisteredName:host: -Objective-C/clm/NSConnection/connectionWithRegisteredName:host:usingNameServer: -Objective-C/clm/NSURLConnection/connectionWithRequest:delegate: -Objective-C/instm/CIFilterGenerator/connectObject:withKey:toObject:withKey: -Objective-C/instm/IBDocument/connectOutlet:ofSourceObject:toDestinationObject: -C++/clm/OSMetaClass/considerUnloads -JavaScript/data/DOMWindow/console -JavaScript/cl/-/Console -JavaScript/instm/SVGTransformList/consolidate -C/func/-/const_pointer_cast -C/data/-/Constant -JavaScript/clconst/WebGLRenderingContext/CONSTANT_ALPHA -JavaScript/clconst/WebGLRenderingContext/CONSTANT_COLOR -Objective-C/instm/NSExpression/constantValue -C/tdef/-/ConstCStrList -C/tdef/-/ConstFSEventStreamRef -C/tdef/-/ConstFSSpecPtr -C/tdef/-/ConstHFSUniStr255Param -C/tdef/-/ConstPMRectList -C++/instm/IOBlockStorageDriver/constrainByteCount -Objective-C/instm/NSWindow/constrainFrameRect:toScreen: -Objective-C/instm/NSClipView/constrainScrollPoint: -Objective-C/instm/IKImageBrowserView/constrainsToOriginalSize -JavaScript/clconst/IDBDatabaseException/CONSTRAINT_ERR -Objective-C/instm/CALayer/constraints -Objective-C/instp/CALayer/constraints -Objective-C/clm/CAConstraint/constraintWithAttribute:relativeTo:attribute: -Objective-C/clm/CAConstraint/constraintWithAttribute:relativeTo:attribute:offset: -Objective-C/clm/CAConstraint/constraintWithAttribute:relativeTo:attribute:scale:offset: -C/tdef/-/ConstScriptCodeRunPtr -C/tdef/-/ConstSInt32List -C/tdef/-/ConstStr255Param -C/tdef/-/ConstStrFileNameParam -C/tdef/-/ConstTextEncodingRunPtr -C/tdef/-/ConstTextPtr -C/tdef/-/ConstTextToUnicodeInfo -C/tdef/-/ConstUniCharArrayPtr -C/tdef/-/ConstUnicodeMappingPtr -C/tdef/-/ConstUnicodeToTextInfo -Objective-C/intfm/ABImageClient/consumeImageData:forTag: -C++/data/IOInterruptEventSource/consumerCount -C/data/-/container -Objective-C/instm/NSScriptObjectSpecifier/containerClassDescription -Objective-C/instm/NSScriptObjectSpecifier/containerIsObjectBeingTested -Objective-C/instm/NSScriptObjectSpecifier/containerIsRangeContainerObject -Objective-C/instm/NSTextContainer/containerSize -Objective-C/instm/NSScriptObjectSpecifier/containerSpecifier -C++/instm/IOFWPseudoAddressSpace/contains -C++/instm/IOFWAddressSpace/contains -JavaScript/instm/Element/contains -Objective-C/instm/NSAttributedString/containsAttachments -Objective-C/instm/IOBluetoothSDPDataElement/containsDataElement: -Objective-C/instm/NSIndexSet/containsIndex: -Objective-C/instm/NSIndexSet/containsIndexes: -Objective-C/instm/NSIndexSet/containsIndexesInRange: -Objective-C/instm/WebBackForwardList/containsItem: -JavaScript/instm/DOMSelection/containsNode -C++/instm/OSOrderedSet/containsObject -C++/instm/OSSet/containsObject -Objective-C/instm/NSHashTable/containsObject: -Objective-C/instm/NSSet/containsObject: -Objective-C/instm/NSArray/containsObject: -Objective-C/instm/NSTextContainer/containsPoint: -Objective-C/instm/NSBezierPath/containsPoint: -Objective-C/instm/CALayer/containsPoint: -Objective-C/instm/FxImage/containsPointX:Y: -Objective-C/instm/IOBluetoothSDPDataElement/containsValue: -Objective-C/instm/NSCoder/containsValueForKey: -Objective-C/instm/NSKeyedUnarchiver/containsValueForKey: -Objective-C/instm/NSTreeController/content -Objective-C/instm/NSObjectController/content -Objective-C/instp/PSEntry/content -Objective-C/instm/NSCollectionView/content -Objective-C/binding/AMPathPopUpButton/content -Objective-C/binding/NSMatrix/content -Objective-C/binding/NSComboBox/content -Objective-C/binding/NSCollectionView/content -Objective-C/binding/NSComboBoxCell/content -Objective-C/binding/NSBrowser/content -Objective-C/binding/NSOutlineView/content -Objective-C/binding/NSTableView/content -Objective-C/binding/NSPopUpButtonCell/content -Objective-C/binding/NSPopUpButton/content -JavaScript/data/HTMLMetaElement/content -Objective-C/binding/NSArrayController/contentArray -Objective-C/binding/NSTreeController/contentArray -Objective-C/binding/NSArrayController/contentArrayForMultipleSelection -Objective-C/binding/NSTreeController/contentArrayForMultipleSelection -Objective-C/instm/NSWindow/contentAspectRatio -Objective-C/instm/NSWindow/contentBorderThicknessForEdge: -Objective-C/binding/NSDictionaryController/contentDictionary -JavaScript/data/HTMLFrameElement/contentDocument -JavaScript/data/HTMLIFrameElement/contentDocument -JavaScript/data/HTMLObjectElement/contentDocument -JavaScript/data/HTMLElement/contentEditable -Objective-C/instm/NSView/contentFilters -Objective-C/instm/DOMHTMLObjectElement/contentFrame -Objective-C/instm/DOMHTMLIFrameElement/contentFrame -Objective-C/instm/DOMHTMLFrameElement/contentFrame -Objective-C/binding/NSWindow/contentHeight -Objective-C/binding/NSPanel/contentHeight -Objective-C/instm/NSWindow/contentMaxSize -Objective-C/instm/NSWindow/contentMinSize -Objective-C/binding/NSArrayController/contentObject -Objective-C/binding/NSObjectController/contentObject -Objective-C/binding/NSTreeController/contentObject -Objective-C/binding/AMPathPopUpButton/contentObjects -Objective-C/binding/NSMatrix/contentObjects -Objective-C/binding/NSPopUpButtonCell/contentObjects -Objective-C/binding/NSPopUpButton/contentObjects -Objective-C/instm/NSTabView/contentRect -Objective-C/instm/NSWindow/contentRectForFrameRect: -Objective-C/clm/NSWindow/contentRectForFrameRect:styleMask: -Objective-C/instm/NSWindow/contentResizeIncrements -Objective-C/instm/IKImageBrowserView/contentResizingMask -Objective-C/instm/PDFAnnotation/contents -Objective-C/instp/CAEmitterCell/contents -Objective-C/instm/CAEmitterCell/contents -Objective-C/instm/CALayer/contents -Objective-C/instp/CALayer/contents -Objective-C/instm/CALayer/contentsAreFlipped -Objective-C/instm/NSFileManager/contentsAtPath: -Objective-C/instm/CALayer/contentsCenter -Objective-C/instp/CALayer/contentsCenter -JavaScript/data/SVGSVGElement/contentScriptType -Objective-C/instm/NSFileManager/contentsEqualAtPath:andPath: -Objective-C/binding/NSArrayController/contentSet -Objective-C/binding/NSTreeController/contentSet -Objective-C/instm/CALayer/contentsGravity -Objective-C/instp/CALayer/contentsGravity -Objective-C/instm/NSScrollView/contentSize -Objective-C/instm/NSDrawer/contentSize -Objective-C/clm/NSScrollView/contentSizeForFrameSize:hasHorizontalScroller:hasVerticalScroller:borderType: -Objective-C/instm/NSFileManager/contentsOfDirectoryAtPath:error: -Objective-C/instm/NSFileManager/contentsOfDirectoryAtURL:includingPropertiesForKeys:options:error: -Objective-C/instm/CAEmitterCell/contentsRect -Objective-C/instp/CAEmitterCell/contentsRect -Objective-C/instm/CALayer/contentsRect -Objective-C/instp/CALayer/contentsRect -JavaScript/data/SVGSVGElement/contentStyleType -Objective-C/binding/NSBrowser/contentValues -Objective-C/binding/NSMatrix/contentValues -Objective-C/binding/NSComboBoxCell/contentValues -Objective-C/binding/AMPathPopUpButton/contentValues -Objective-C/binding/NSComboBox/contentValues -Objective-C/binding/NSPopUpButton/contentValues -Objective-C/binding/NSPopUpButtonCell/contentValues -Objective-C/instm/NSScrollView/contentView -Objective-C/instm/NSBox/contentView -Objective-C/instm/NSDrawer/contentView -Objective-C/instm/NSDockTile/contentView -Objective-C/instm/NSWindow/contentView -Objective-C/instm/NSBox/contentViewMargins -Objective-C/instm/NSTextBlock/contentWidth -Objective-C/binding/NSWindow/contentWidth -Objective-C/binding/NSPanel/contentWidth -Objective-C/instm/NSTextBlock/contentWidthValueType -JavaScript/data/HTMLFrameElement/contentWindow -JavaScript/data/HTMLIFrameElement/contentWindow -Objective-C/instm/NSPrintOperation/context -Objective-C/instm/NSEvent/context -Objective-C/instm/NSApplication/context -Objective-C/instm/NSFetchRequestExpression/contextExpression -Objective-C/instm/NSBundle/contextHelpForKey: -Objective-C/instm/NSHelpManager/contextHelpForObject: -Objective-C/instm/NSMenu/contextMenuRepresentation -Objective-C/clm/NSManagedObject/contextShouldIgnoreUnmodeledPropertyChanges -Objective-C/clm/NSCursor/contextualMenuCursor -Objective-C/clm/CIContext/contextWithCGContext:options: -Objective-C/clm/CIContext/contextWithCGLContext:pixelFormat:options: -Objective-C/instm/NSSpeechSynthesizer/continueSpeaking -C/func/-/ContinueSpeech -Objective-C/instm/NSCell/continueTracking:at:inView: -Objective-C/intfm/NSURLAuthenticationChallengeSender/continueWithoutCredentialForAuthenticationChallenge: -Objective-C/instp/PSEntry/contributors -JavaScript/data/HTMLLabelElement/control -Objective-C/intfm/NSControlTextEditingDelegate/control:didFailToFormatString:errorDescription: -Objective-C/intfm/NSControlTextEditingDelegate/control:didFailToValidatePartialString:errorDescription: -Objective-C/intfm/NSControlTextEditingDelegate/control:isValidObject: -Objective-C/intfm/NSControlTextEditingDelegate/control:textShouldBeginEditing: -Objective-C/intfm/NSControlTextEditingDelegate/control:textShouldEndEditing: -Objective-C/intfm/NSControlTextEditingDelegate/control:textView:completions:forPartialWordRange:indexOfSelectedItem: -Objective-C/intfm/NSControlTextEditingDelegate/control:textView:doCommandBySelector: -Objective-C/clm/NSColor/controlAlternatingRowBackgroundColors -Objective-C/clm/NSColor/controlBackgroundColor -Objective-C/instm/IMAVManager/controlBar -Objective-C/clm/NSCharacterSet/controlCharacterSet -Objective-C/clm/NSColor/controlColor -Objective-C/clm/NSFont/controlContentFontOfSize: -Objective-C/clm/NSColor/controlDarkShadowColor -C++/data/IOWorkLoop/controlG -Objective-C/clm/NSColor/controlHighlightColor -C++/data/IOAudioControl/controlID -Objective-C/instm/XGResource/controller -Objective-C/instm/QTMovieView/controllerBarHeight -Objective-C/instm/NSObject(IOBluetoothHostControllerDelegate)/controllerClassOfDeviceReverted: -C++/instm/IONetworkInterface/controllerDidChangePowerState -C++/instm/IOEthernetInterface/controllerDidChangePowerState -C++/instm/IOEthernetInterface/controllerDidOpen -C++/instm/IONetworkInterface/controllerDidOpen -Objective-C/binding/QTMovieView/controllerVisible -C++/instm/IONetworkInterface/controllerWillChangePowerState -C++/instm/IOEthernetInterface/controllerWillChangePowerState -C++/instm/IONetworkInterface/controllerWillClose -C++/instm/IOEthernetInterface/controllerWillClose -Objective-C/clm/XGController(XGControllerCreation)/controllerWithHostname:portnumber: -Objective-C/clm/XGController(XGControllerCreation)/controllerWithNetService: -Objective-C/clm/NSColor/controlLightHighlightColor -Objective-C/instm/NSBezierPath/controlPointBounds -C++/instm/IOUSBPipe/ControlRequest -Objective-C/instm/IMAVControlBar/controls -JavaScript/data/HTMLMediaElement/controls -Objective-C/clm/NSColor/controlShadowColor -Objective-C/instm/NSScroller/controlSize -Objective-C/instm/NSProgressIndicator/controlSize -Objective-C/instm/NSTabView/controlSize -Objective-C/instm/NSCell/controlSize -Objective-C/clm/NSColor/controlTextColor -Objective-C/instm/NSObject/controlTextDidBeginEditing: -Objective-C/instm/NSObject/controlTextDidChange: -Objective-C/instm/NSObject/controlTextDidEndEditing: -Objective-C/instm/NSScroller/controlTint -Objective-C/instm/NSProgressIndicator/controlTint -Objective-C/instm/NSTabView/controlTint -Objective-C/instm/NSCell/controlTint -Objective-C/instm/PDFAnnotationButtonWidget/controlType -Objective-C/instm/NSActionCell/controlView -Objective-C/instm/NSCell/controlView -C/func/-/conv -C/func/-/convD -Objective-C/instm/NSDistantObjectRequest/conversation -Objective-C/intfm/NSTextInput/conversationIdentifier -Objective-C/instm/NSFontManager/convertAttributes: -Objective-C/instm/NSWindow/convertBaseToScreen: -C++/instm/IOFramebuffer/convertCursorImage -C/func/-/ConvertDataRefToMovieDataRef -C/func/-/ConvertFileToMovieFile -Objective-C/instm/NSFontManager/convertFont: -Objective-C/instm/NSFontManager/convertFont:toFace: -Objective-C/instm/NSFontManager/convertFont:toFamily: -Objective-C/instm/NSFontManager/convertFont:toHaveTrait: -Objective-C/instm/NSFontManager/convertFont:toNotHaveTrait: -Objective-C/instm/NSFontManager/convertFont:toSize: -Objective-C/instm/NSFontManager/convertFontTraits: -C/func/-/ConvertFromPStringToUnicode -C/func/-/ConvertFromTextToUnicode -C/func/-/ConvertFromUnicodeToPString -C/func/-/ConvertFromUnicodeToScriptCodeRun -C/func/-/ConvertFromUnicodeToText -C/func/-/ConvertFromUnicodeToTextRun -C/func/-/ConvertImage -Objective-C/instm/IKImageView/convertImagePointToViewPoint: -Objective-C/instm/IKImageView/convertImageRectToViewRect: -C++/instm/IOAudioEngine/convertInputSamplesVBR -C/func/-/ConvertMovieToDataRef -C/func/-/ConvertMovieToFile -Objective-C/instm/CALayer/convertPoint:fromLayer: -Objective-C/instm/PDFView/convertPoint:fromPage: -Objective-C/instm/NSView/convertPoint:fromView: -Objective-C/instm/CALayer/convertPoint:toLayer: -Objective-C/instm/PDFView/convertPoint:toPage: -Objective-C/instm/NSView/convertPoint:toView: -Objective-C/instm/NSView/convertPointFromBase: -Objective-C/intfm/FxOnScreenControlAPI/convertPointFromSpace:fromX:fromY:toSpace:toX:toY: -Objective-C/instm/NSView/convertPointToBase: -Objective-C/instm/CALayer/convertRect:fromLayer: -Objective-C/instm/PDFView/convertRect:fromPage: -Objective-C/instm/NSView/convertRect:fromView: -Objective-C/instm/CALayer/convertRect:toLayer: -Objective-C/instm/PDFView/convertRect:toPage: -Objective-C/instm/NSView/convertRect:toView: -Objective-C/instm/NSView/convertRectFromBase: -Objective-C/instm/NSView/convertRectToBase: -Objective-C/instm/NSWindow/convertScreenToBase: -Objective-C/instm/NSView/convertSize:fromView: -Objective-C/instm/NSView/convertSize:toView: -Objective-C/instm/NSView/convertSizeFromBase: -Objective-C/instm/NSView/convertSizeToBase: -Objective-C/instm/CALayer/convertTime:fromLayer: -Objective-C/instm/CALayer/convertTime:toLayer: -JavaScript/instm/SVGAngle/convertToSpecifiedUnits -JavaScript/instm/SVGLength/convertToSpecifiedUnits -Objective-C/instm/IKImageView/convertViewPointToImagePoint: -Objective-C/instm/IKImageView/convertViewRectToImageRect: -Objective-C/instm/NSFontManager/convertWeight:ofFont: -Objective-C/instm/NSHTTPCookieStorage/cookieAcceptPolicy -JavaScript/data/Navigator/cookieEnabled -Objective-C/instm/NSHTTPCookieStorage/cookies -Objective-C/instm/NSHTTPCookieStorage/cookiesForURL: -Objective-C/clm/NSHTTPCookie/cookiesWithResponseHeaderFields:forURL: -Objective-C/clm/NSHTTPCookie/cookieWithProperties: -Objective-C/instp/CLLocation/coordinate -Objective-C/instm/CLLocation/coordinate -JavaScript/cl/-/Coordinates -JavaScript/data/HTMLAreaElement/coords -JavaScript/data/HTMLAnchorElement/coords -Objective-C/instm/NSClipView/copiesOnScroll -Objective-C/instm/NSObject/copy -Objective-C/instm/NSEntityDescription/copy -Objective-C/instm/PDFView/copy: -Objective-C/instm/QTMovieView/copy: -Objective-C/instm/WebView/copy: -Objective-C/instm/NSText/copy: -Objective-C/instm/NSOpenGLContext/copyAttributesFromContext:withMask: -Objective-C/instm/CAOpenGLLayer/copyCGLContextForPixelFormat: -Objective-C/instm/CAOpenGLLayer/copyCGLPixelFormatForDisplayMask: -C++/instm/IORegistryEntry/copyChildEntry -C++/instm/IOService/copyClientWithCategory -C++/instm/OSDictionary/copyCollection -C++/instm/OSCollection/copyCollection -C++/instm/OSArray/copyCollection -C++/instm/OSOrderedSet/copyCollection -C++/instm/OSSet/copyCollection -C/func/-/CopyDataBrowserEditText -C/func/-/copyfile -C/func/-/copyfile_state_alloc -C/func/-/copyfile_state_free -C/func/-/copyfile_state_get -C/func/-/copyfile_state_set -Objective-C/instm/WebView/copyFont: -Objective-C/instm/NSText/copyFont: -Objective-C/instm/NSFileManager/copyItemAtPath:toPath:error: -Objective-C/instm/NSFileManager/copyItemAtURL:toURL:error: -C++/instm/IORegistryEntry/copyLocation -C/func/-/CopyMatrix -C/func/-/CopyMediaMutableSampleTable -C++/instm/IONetworkController/copyMediumDictionary -C/func/-/CopyMovieSelection -C/func/-/CopyMovieSettings -C++/instm/IORegistryEntry/copyName -C/func/-/CopyNameFromSoundBank -JavaScript/instm/InspectorBackend/copyNode -C++/instm/IONetworkController/copyPacket -C/tdef/-/CopyParam -C++/instm/IORegistryEntry/copyParentEntry -Objective-C/instm/NSFileManager/copyPath:toPath:handler: -C/func/-/CopyPhonemesFromText -C/func/-/copyPMSetting -C/func/-/CopyProcessName -C++/instm/IORegistryEntry/copyProperty -Objective-C/intfm/QCPlugInOutputImageProvider/copyRenderedTextureForCGLContext:pixelFormat:bounds:isFlipped: -Objective-C/instm/NSText/copyRuler: -Objective-C/instm/NSObject/copyScriptingValue:forKey:withProperties: -C/func/-/copysign -C/func/-/copysignf -C/func/-/copysignl -C/func/-/CopySpeechProperty -JavaScript/instm/WebGLRenderingContext/copyTexImage2D -JavaScript/instm/WebGLRenderingContext/copyTexSubImage2D -JavaScript/instm/InjectedScriptHost/copyText -JavaScript/instm/InspectorFrontendHost/copyText -C/func/-/CopyTrackSettings -C/func/-/copywin -Objective-C/intfm/NSCopying/copyWithZone: -Objective-C/clm/NSObject/copyWithZone: -C/func/-/CoreEndianFlipData -C/tdef/-/CoreEndianFlipProc -C/func/-/CoreEndianGetFlipper -C/func/-/CoreEndianInstallFlipper -Objective-C/instm/NSBox/cornerRadius -Objective-C/instp/CALayer/cornerRadius -Objective-C/instm/CALayer/cornerRadius -Objective-C/instm/NSTableView/cornerView -Objective-C/clm/NSTextCheckingResult/correctionCheckingResultWithRange:replacementString: -JavaScript/data/svg/correspondingElement -JavaScript/data/svg/correspondingUseElement -C/func/-/cos -C/func/-/cosf -C/func/-/cosh -C/func/-/coshf -C/func/-/coshl -C/func/-/cosl -Objective-C/instm/NSHashTable/count -Objective-C/instm/CIVector/count -Objective-C/instm/NSMetadataQueryAttributeValueTuple/count -Objective-C/instm/NSPointerArray/count -Objective-C/instm/ABMultiValue/count -Objective-C/instm/DRFolder(VirtualFolders)/count -Objective-C/instm/NSSet/count -Objective-C/instm/NSMapTable/count -Objective-C/instm/NSDictionary/count -Objective-C/instm/NSIndexSet/count -Objective-C/instm/NSArray/count -JavaScript/instm/Console/count -C/func/-/Count1Resources -C/func/-/Count1Types -Objective-C/intfm/NSFastEnumeration/countByEnumeratingWithState:objects:count: -C/func/-/CountComponentInstances -C/func/-/CountComponents -JavaScript/cl/-/Counter -JavaScript/data/DOMWindow/Counter -Objective-C/instm/NSManagedObjectContext/countForFetchRequest:error: -Objective-C/instm/NSCountedSet/countForObject: -C/func/-/CountImageDescriptionExtensionType -C/tdef/-/CountImageProfilesProcPtr -Objective-C/instm/NSTreeController/countKeyPath -Objective-C/instm/NSTreeController/countKeyPathForNode: -Objective-C/instm/NSCache/countLimit -Objective-C/instm/NSIndexSet/countOfIndexesInRange: -C/func/-/CountResources -Objective-C/instp/CWInterface/countryCode -C/func/-/CountTypes -C/func/-/CountUnicodeMappings -C/func/-/CountVoices -Objective-C/instm/NSSpellChecker/countWordsInString:language: -Objective-C/instp/CLLocation/course -Objective-C/instm/CLLocation/course -Objective-C/instm/NSFont/coveredCharacterSet -C/macro/-/CPLUSTEST_EXPORT -C/func/-/cpow -C/func/-/cpowf -C/func/-/cpowl -C/func/-/cproj -C/func/-/cprojf -C/func/-/cprojl -C/macro/-/CPTAssert -C/func/-/creal -C/func/-/crealf -C/func/-/creall -C/func/-/creat -C++/clm/IOAudioToggleControl/create -C++/clm/IOAudioLevelControl/create -C/func/-/create_fftsetup -C/func/-/create_fftsetupD -C++/instm/IOAGPDevice/createAGPSpace -C/func/-/CreateAsyncWakePort -JavaScript/instm/Document/createAttribute -JavaScript/instm/Document/createAttributeNS -JavaScript/instm/WebGLRenderingContext/createBuffer -JavaScript/instm/HTMLTableElement/createCaption -JavaScript/instm/Document/createCDATASection -Objective-C/instm/CIContext/createCGImage:fromRect: -Objective-C/instm/CIContext/createCGImage:fromRect:format:colorSpace: -C/func/-/CreateCGImageFromPixMaps -Objective-C/instm/CIContext/createCGLayerWithSize:info: -Objective-C/instm/NSCreateCommand/createClassDescription -Objective-C/instm/NSScriptCommandDescription/createCommandInstance -Objective-C/instm/NSScriptCommandDescription/createCommandInstanceWithZone: -JavaScript/instm/Document/createComment -Objective-C/instm/NSPrintOperation/createContext -JavaScript/instm/Range/createContextualFragment -Objective-C/intfm/NSConnectionDelegate/createConversationForConnection: -JavaScript/instm/Document/createCSSStyleDeclaration -JavaScript/instm/DOMImplementation/createCSSStyleSheet -Objective-C/instm/FxTexture/createData:withType: -C/func/-/CreateDataBrowserControl -Objective-C/instm/NSEntityMigrationPolicy/createDestinationInstancesForSourceInstance:entityMapping:manager:error: -C++/instm/IOUSBControllerV2/CreateDevice -C++/instm/IOSCSIParallelInterfaceController/CreateDeviceInterrupt -C++/clm/IOAudioEngine/createDictionaryFromSampleRate -Objective-C/instm/NSFileManager/createDirectoryAtPath:attributes: -Objective-C/instm/NSFileManager/createDirectoryAtPath:withIntermediateDirectories:attributes:error: -JavaScript/instm/DOMImplementation/createDocument -JavaScript/instm/Document/createDocumentFragment -Objective-C/instm/DOMHTMLDocument/createDocumentFragmentWithMarkupString:baseURL: -Objective-C/instm/DOMHTMLDocument/createDocumentFragmentWithText: -JavaScript/instm/DOMImplementation/createDocumentType -JavaScript/instm/Document/createElement -JavaScript/instm/Document/createElementNS -JavaScript/instm/Document/createEntityReference -JavaScript/instm/Document/createEvent -JavaScript/instm/SVGDocument/createEvent -JavaScript/instm/Document/createExpression -JavaScript/instm/XPathEvaluator/createExpression -Objective-C/instm/NSFileManager/createFileAtPath:contents:attributes: -JavaScript/instm/WebGLRenderingContext/createFramebuffer -JavaScript/instm/DOMImplementation/createHTMLDocument -JavaScript/instm/NotificationCenter/createHTMLNotification -JavaScript/instm/CanvasRenderingContext2D/createImageData -C++/instm/IOEthernetController/createInterface -C++/instm/IONetworkController/createInterface -C++/instm/IOUSBDevice/CreateInterfaceIterator -JavaScript/instm/CanvasRenderingContext2D/createLinearGradient -C++/instm/IOFireWireBus/createLocalIsochPort -C++/instm/IOMemoryDescriptor/createMappingInTask -C/econst/-/createMovieFileDontOpenFile -JavaScript/instm/Document/createNodeIterator -JavaScript/instm/NotificationCenter/createNotification -JavaScript/instm/Document/createNSResolver -JavaScript/instm/XPathEvaluator/createNSResolver -JavaScript/instm/IDBDatabaseRequest/createObjectStore -C++/instm/IONetworkController/createOutputQueue -C++/clm/IOAudioToggleControl/createPassThruMuteControl -JavaScript/instm/CanvasRenderingContext2D/createPattern -C++/instm/IOFireWireDevice/createPhysicalAddressSpace -JavaScript/instm/Document/createProcessingInstruction -JavaScript/instm/WebGLRenderingContext/createProgram -C++/instm/IOFireWireDevice/createPseudoAddressSpace -C++/instm/IOStream/createQueues -JavaScript/instm/CanvasRenderingContext2D/createRadialGradient -JavaScript/instm/Document/createRange -Objective-C/instm/ODNode/createRecordWithRecordType:name:attributes:error: -Objective-C/instm/NSEntityMigrationPolicy/createRelationshipsForDestinationInstance:entityMapping:manager:error: -JavaScript/instm/WebGLRenderingContext/createRenderbuffer -C++/clm/IOAudioEngine/createSampleRateFromDictionary -JavaScript/instm/WebGLRenderingContext/createShader -Objective-C/instm/QCView/createSnapshotImageOfType: -Objective-C/instm/QCRenderer/createSnapshotImageOfType: -JavaScript/instm/SVGSVGElement/createSVGAngle -JavaScript/instm/SVGSVGElement/createSVGLength -JavaScript/instm/SVGSVGElement/createSVGMatrix -JavaScript/instm/SVGSVGElement/createSVGNumber -JavaScript/instm/SVGPathElement/createSVGPathSegArcAbs -JavaScript/instm/SVGPathElement/createSVGPathSegArcRel -JavaScript/instm/SVGPathElement/createSVGPathSegClosePath -JavaScript/instm/SVGPathElement/createSVGPathSegCurvetoCubicAbs -JavaScript/instm/SVGPathElement/createSVGPathSegCurvetoCubicRel -JavaScript/instm/SVGPathElement/createSVGPathSegCurvetoCubicSmoothAbs -JavaScript/instm/SVGPathElement/createSVGPathSegCurvetoCubicSmoothRel -JavaScript/instm/SVGPathElement/createSVGPathSegCurvetoQuadraticAbs -JavaScript/instm/SVGPathElement/createSVGPathSegCurvetoQuadraticRel -JavaScript/instm/SVGPathElement/createSVGPathSegCurvetoQuadraticSmoothAbs -JavaScript/instm/SVGPathElement/createSVGPathSegCurvetoQuadraticSmoothRel -JavaScript/instm/SVGPathElement/createSVGPathSegLinetoAbs -JavaScript/instm/SVGPathElement/createSVGPathSegLinetoHorizontalAbs -JavaScript/instm/SVGPathElement/createSVGPathSegLinetoHorizontalRel -JavaScript/instm/SVGPathElement/createSVGPathSegLinetoRel -JavaScript/instm/SVGPathElement/createSVGPathSegLinetoVerticalAbs -JavaScript/instm/SVGPathElement/createSVGPathSegLinetoVerticalRel -JavaScript/instm/SVGPathElement/createSVGPathSegMovetoAbs -JavaScript/instm/SVGPathElement/createSVGPathSegMovetoRel -JavaScript/instm/SVGSVGElement/createSVGPoint -JavaScript/instm/SVGSVGElement/createSVGRect -JavaScript/instm/SVGSVGElement/createSVGTransform -JavaScript/instm/SVGSVGElement/createSVGTransformFromMatrix -JavaScript/instm/SVGTransformList/createSVGTransformFromMatrix -Objective-C/instm/NSFileManager/createSymbolicLinkAtPath:pathContent: -Objective-C/instm/NSFileManager/createSymbolicLinkAtPath:withDestinationPath:error: -C++/instm/IOSCSIParallelInterfaceController/CreateTargetForID -C/func/-/CreateTextEncoding -JavaScript/instm/Document/createTextNode -C/func/-/CreateTextToUnicodeInfo -C/func/-/CreateTextToUnicodeInfoByEncoding -JavaScript/instm/WebGLRenderingContext/createTexture -Objective-C/instm/NSOpenGLContext/createTexture:fromView:internalFormat: -JavaScript/instm/HTMLTableElement/createTFoot -JavaScript/instm/HTMLTableElement/createTHead -JavaScript/instm/Document/createTreeWalker -C/func/-/CreateUnicodeToTextInfo -C/func/-/CreateUnicodeToTextInfoByEncoding -C/func/-/CreateUnicodeToTextRunInfo -C/func/-/CreateUnicodeToTextRunInfoByEncoding -C/func/-/CreateUnicodeToTextRunInfoByScriptCode -C++/instm/IOAudioControl/createUserClient -Objective-C/instm/QCPlugIn/createViewController -Objective-C/intfm/FxCustomParameterViewHost/createViewForParm: -C++/instm/IONetworkController/createWorkLoop -Objective-C/clm/NSURLCredential/credentialForTrust: -Objective-C/instm/NSURLCredentialStorage/credentialsForProtectionSpace: -Objective-C/clm/NSURLCredential/credentialWithIdentity:certificates:persistence: -Objective-C/clm/NSURLCredential/credentialWithUser:password:persistence: -Objective-C/instm/NSRuleEditor/criteriaForRow: -Objective-C/instm/NSRuleEditor/criteriaKeyPath -C++/instm/IOFireWireSerialBusProtocolTransport/CriticalOrbSubmission -Objective-C/instm/NSLevelIndicator/criticalValue -Objective-C/instm/NSLevelIndicatorCell/criticalValue -Objective-C/binding/NSLevelIndicator/criticalValue -Objective-C/binding/NSLevelIndicatorCell/criticalValue -Objective-C/instm/IKImageView/crop: -Objective-C/clm/NSCursor/crosshairCursor -C/func/-/crypt -C/func/-/crypto -JavaScript/data/DOMWindow/crypto -C/func/-/CRYPTO_destroy_dynlockid -C/func/-/CRYPTO_get_ex_data -C/func/-/CRYPTO_get_new_dynlockid -C/func/-/CRYPTO_lock -C/func/-/CRYPTO_num_locks -C/func/-/CRYPTO_set_dynlock_create_callback -C/func/-/CRYPTO_set_dynlock_destroy_callback -C/func/-/CRYPTO_set_dynlock_lock_callback -C/func/-/CRYPTO_set_ex_data -C/func/-/CRYPTO_set_id_callback -C/func/-/CRYPTO_set_locking_callback -C/econst/-/CS_MAX_PATH -C/func/-/CSBackupIsItemExcluded -C/func/-/CSBackupSetItemExcluded -C/tdef/-/CSComponentsThreadMode -C/func/-/CSGetComponentsThreadMode -C/func/-/CSGetDefaultIdentityAuthority -C/func/-/CSGetLocalIdentityAuthority -C/func/-/CSGetManagedIdentityAuthority -Objective-C/instm/CBIdentity/CSIdentity -C/tag/-/CSIdentity -C/func/-/CSIdentityAddAlias -C/func/-/CSIdentityAddMember -C/func/-/CSIdentityAuthenticateUsingPassword -Objective-C/instm/CBIdentityAuthority/CSIdentityAuthority -C/func/-/CSIdentityAuthorityCopyLocalizedName -C/func/-/CSIdentityAuthorityGetTypeID -C/tdef/-/CSIdentityAuthorityRef -C/tag/-/CSIdentityClass -C/tag/-/CSIdentityClientContext -C/func/-/CSIdentityCommit -C/func/-/CSIdentityCommitAsynchronously -C/func/-/CSIdentityCreate -C/func/-/CSIdentityCreateCopy -C/func/-/CSIdentityCreateGroupMembershipQuery -C/func/-/CSIdentityCreatePersistentReference -C/func/-/CSIdentityDelete -C/tag/-/CSIdentityFlags -C/func/-/CSIdentityGetAliases -C/func/-/CSIdentityGetAuthority -C/func/-/CSIdentityGetCertificate -C/func/-/CSIdentityGetClass -C/func/-/CSIdentityGetEmailAddress -C/func/-/CSIdentityGetFullName -C/func/-/CSIdentityGetImageData -C/func/-/CSIdentityGetImageDataType -C/func/-/CSIdentityGetImageURL -C/func/-/CSIdentityGetPosixID -C/func/-/CSIdentityGetPosixName -C/func/-/CSIdentityGetTypeID -C/func/-/CSIdentityGetUUID -C/func/-/CSIdentityIsCommitting -C/func/-/CSIdentityIsEnabled -C/func/-/CSIdentityIsHidden -C/func/-/CSIdentityIsMemberOfGroup -C/tag/-/CSIdentityQueryClientContext -C/func/-/CSIdentityQueryCopyResults -C/func/-/CSIdentityQueryCreate -C/func/-/CSIdentityQueryCreateForCurrentUser -C/func/-/CSIdentityQueryCreateForName -C/func/-/CSIdentityQueryCreateForPersistentReference -C/func/-/CSIdentityQueryCreateForPosixID -C/func/-/CSIdentityQueryCreateForUUID -C/tag/-/CSIdentityQueryEvent -C/func/-/CSIdentityQueryExecute -C/func/-/CSIdentityQueryExecuteAsynchronously -C/tag/-/CSIdentityQueryFlags -C/func/-/CSIdentityQueryGetTypeID -C/tdef/-/CSIdentityQueryReceiveEventCallback -C/tdef/-/CSIdentityQueryRef -C/func/-/CSIdentityQueryStop -C/tag/-/CSIdentityQueryStringComparisonMethod -C/tdef/-/CSIdentityRef -C/func/-/CSIdentityRemoveAlias -C/func/-/CSIdentityRemoveClient -C/func/-/CSIdentityRemoveMember -C/func/-/CSIdentitySetCertificate -C/func/-/CSIdentitySetEmailAddress -C/func/-/CSIdentitySetFullName -C/func/-/CSIdentitySetImageData -C/func/-/CSIdentitySetImageURL -C/func/-/CSIdentitySetIsEnabled -C/func/-/CSIdentitySetPassword -C/func/-/csin -C/func/-/csinf -C/func/-/csinh -C/func/-/csinhf -C/func/-/csinhl -C/func/-/csinl -C/tdef/-/CSParam -C/func/-/csqrt -C/func/-/csqrtf -C/func/-/csqrtl -JavaScript/clconst/CSSPrimitiveValue/CSS_ATTR -JavaScript/clconst/CSSPrimitiveValue/CSS_CM -JavaScript/clconst/CSSPrimitiveValue/CSS_COUNTER -JavaScript/clconst/CSSValue/CSS_CUSTOM -JavaScript/clconst/CSSPrimitiveValue/CSS_DEG -JavaScript/clconst/CSSPrimitiveValue/CSS_DIMENSION -JavaScript/clconst/CSSPrimitiveValue/CSS_EMS -JavaScript/clconst/CSSPrimitiveValue/CSS_EXS -JavaScript/clconst/CSSPrimitiveValue/CSS_GRAD -JavaScript/clconst/CSSPrimitiveValue/CSS_HZ -JavaScript/clconst/CSSPrimitiveValue/CSS_IDENT -JavaScript/clconst/CSSPrimitiveValue/CSS_IN -JavaScript/clconst/CSSValue/CSS_INHERIT -JavaScript/clconst/CSSPrimitiveValue/CSS_KHZ -JavaScript/clconst/WebKitCSSTransformValue/CSS_MATRIX -JavaScript/clconst/WebKitCSSTransformValue/CSS_MATRIX3D -JavaScript/clconst/CSSPrimitiveValue/CSS_MM -JavaScript/clconst/CSSPrimitiveValue/CSS_MS -JavaScript/clconst/CSSPrimitiveValue/CSS_NUMBER -JavaScript/clconst/CSSPrimitiveValue/CSS_PC -JavaScript/clconst/CSSPrimitiveValue/CSS_PERCENTAGE -JavaScript/clconst/WebKitCSSTransformValue/CSS_PERSPECTIVE -JavaScript/clconst/CSSValue/CSS_PRIMITIVE_VALUE -JavaScript/clconst/CSSPrimitiveValue/CSS_PT -JavaScript/clconst/CSSPrimitiveValue/CSS_PX -JavaScript/clconst/CSSPrimitiveValue/CSS_RAD -JavaScript/clconst/CSSPrimitiveValue/CSS_RECT -JavaScript/clconst/CSSPrimitiveValue/CSS_RGBCOLOR -JavaScript/clconst/WebKitCSSTransformValue/CSS_ROTATE -JavaScript/clconst/WebKitCSSTransformValue/CSS_ROTATE3D -JavaScript/clconst/WebKitCSSTransformValue/CSS_ROTATEX -JavaScript/clconst/WebKitCSSTransformValue/CSS_ROTATEY -JavaScript/clconst/WebKitCSSTransformValue/CSS_ROTATEZ -JavaScript/clconst/CSSPrimitiveValue/CSS_S -JavaScript/clconst/WebKitCSSTransformValue/CSS_SCALE -JavaScript/clconst/WebKitCSSTransformValue/CSS_SCALE3D -JavaScript/clconst/WebKitCSSTransformValue/CSS_SCALEX -JavaScript/clconst/WebKitCSSTransformValue/CSS_SCALEY -JavaScript/clconst/WebKitCSSTransformValue/CSS_SCALEZ -JavaScript/clconst/WebKitCSSTransformValue/CSS_SKEW -JavaScript/clconst/WebKitCSSTransformValue/CSS_SKEWX -JavaScript/clconst/WebKitCSSTransformValue/CSS_SKEWY -JavaScript/clconst/CSSPrimitiveValue/CSS_STRING -JavaScript/clconst/WebKitCSSTransformValue/CSS_TRANSLATE -JavaScript/clconst/WebKitCSSTransformValue/CSS_TRANSLATE3D -JavaScript/clconst/WebKitCSSTransformValue/CSS_TRANSLATEX -JavaScript/clconst/WebKitCSSTransformValue/CSS_TRANSLATEY -JavaScript/clconst/WebKitCSSTransformValue/CSS_TRANSLATEZ -JavaScript/clconst/CSSPrimitiveValue/CSS_UNKNOWN -JavaScript/clconst/CSSPrimitiveValue/CSS_URI -JavaScript/clconst/CSSValue/CSS_VALUE_LIST -JavaScript/data/DOMWindow/CSSCharsetRule -JavaScript/cl/-/CSSCharsetRule -C/func/-/CSSetComponentsThreadMode -JavaScript/cl/-/CSSFontFaceRule -JavaScript/data/DOMWindow/CSSFontFaceRule -JavaScript/data/DOMWindow/CSSImportRule -JavaScript/cl/-/CSSImportRule -C/econst/-/CSSM_ACL_AUTHORIZATION_ANY -C/econst/-/CSSM_ACL_AUTHORIZATION_CHANGE_ACL -C/econst/-/CSSM_ACL_AUTHORIZATION_CHANGE_OWNER -C/econst/-/CSSM_ACL_AUTHORIZATION_DECRYPT -C/econst/-/CSSM_ACL_AUTHORIZATION_DELETE -C/econst/-/CSSM_ACL_AUTHORIZATION_DERIVE -C/econst/-/CSSM_ACL_AUTHORIZATION_ENCRYPT -C/econst/-/CSSM_ACL_AUTHORIZATION_EXPORT_CLEAR -C/econst/-/CSSM_ACL_AUTHORIZATION_EXPORT_WRAPPED -C/econst/-/CSSM_ACL_AUTHORIZATION_GENKEY -C/econst/-/CSSM_ACL_AUTHORIZATION_IMPORT_CLEAR -C/econst/-/CSSM_ACL_AUTHORIZATION_IMPORT_WRAPPED -C/econst/-/CSSM_ACL_AUTHORIZATION_LOGIN -C/econst/-/CSSM_ACL_AUTHORIZATION_MAC -C/econst/-/CSSM_ACL_AUTHORIZATION_SIGN -C/tdef/-/CSSM_ACL_AUTHORIZATION_TAG -C/econst/-/CSSM_ACL_AUTHORIZATION_TAG_VENDOR_DEFINED_START -C/tdef/-/CSSM_APPLE_TP_ACTION_FLAGS -C/econst/-/CSSM_CERT_STATUS_EXPIRED -C/econst/-/CSSM_CERT_STATUS_IS_FROM_NET -C/econst/-/CSSM_CERT_STATUS_IS_IN_ANCHORS -C/econst/-/CSSM_CERT_STATUS_IS_IN_INPUT_CERTS -C/econst/-/CSSM_CERT_STATUS_IS_ROOT -C/econst/-/CSSM_CERT_STATUS_NOT_VALID_YET -C/econst/-/CSSM_DL_DB_RECORD_ALL_KEYS -C/econst/-/CSSM_TP_ACTION_ALLOW_EXPIRED -C/econst/-/CSSM_TP_ACTION_ALLOW_EXPIRED_ROOT -C/econst/-/CSSM_TP_ACTION_FETCH_CERT_FROM_NET -C/econst/-/CSSM_TP_ACTION_LEAF_IS_CA -C/tdef/-/CSSM_TP_APPLE_CERT_STATUS -C/tdef/-/CSSM_TP_APPLE_EVIDENCE_INFO -JavaScript/cl/-/CSSMediaRule -JavaScript/data/DOMWindow/CSSMediaRule -JavaScript/cl/-/CSSPageRule -JavaScript/data/DOMWindow/CSSPageRule -JavaScript/data/DOMWindow/CSSPrimitiveValue -JavaScript/cl/-/CSSPrimitiveValue -JavaScript/data/DOMWindow/CSSRule -JavaScript/cl/-/CSSRule -JavaScript/cl/-/CSSRuleList -JavaScript/data/DOMWindow/CSSRuleList -JavaScript/data/CSSMediaRule/cssRules -JavaScript/data/CSSStyleSheet/cssRules -JavaScript/data/WebKitCSSKeyframesRule/cssRules -JavaScript/data/DOMWindow/CSSStyleDeclaration -JavaScript/cl/-/CSSStyleDeclaration -JavaScript/cl/-/CSSStyleRule -JavaScript/data/DOMWindow/CSSStyleRule -JavaScript/data/DOMWindow/CSSStyleSheet -JavaScript/cl/-/CSSStyleSheet -JavaScript/data/CSSRule/cssText -JavaScript/data/CSSStyleDeclaration/cssText -JavaScript/data/CSSVariablesDeclaration/cssText -JavaScript/data/CSSValue/cssText -JavaScript/cl/-/CSSUnknownRule -JavaScript/cl/-/CSSValue -JavaScript/data/DOMWindow/CSSValue -JavaScript/cl/-/CSSValueList -JavaScript/data/DOMWindow/CSSValueList -JavaScript/data/CSSValue/cssValueType -JavaScript/data/DOMWindow/CSSVariablesDeclaration -JavaScript/cl/-/CSSVariablesDeclaration -JavaScript/cl/-/CSSVariablesRule -JavaScript/data/DOMWindow/CSSVariablesRule -Objective-C/instm/NSString/cString -Objective-C/instm/NSString/cStringLength -Objective-C/instm/NSString/cStringUsingEncoding: -C/tdef/-/CStrList -C/tdef/-/CTabHandle -C/tdef/-/CTabPtr -C/func/-/ctan -C/func/-/ctanf -C/func/-/ctanh -C/func/-/ctanhf -C/func/-/ctanhl -C/func/-/ctanl -C/tdef/-/CTCharacterCollection -C/func/-/ctermid -C/func/-/ctermid_r -C/func/-/CTFontCollectionCreateCopyWithFontDescriptors -C/func/-/CTFontCollectionCreateFromAvailableFonts -C/func/-/CTFontCollectionCreateMatchingFontDescriptors -C/func/-/CTFontCollectionCreateMatchingFontDescriptorsSortedWithCallback -C/func/-/CTFontCollectionCreateWithFontDescriptors -C/func/-/CTFontCollectionGetTypeID -C/tdef/-/CTFontCollectionRef -C/func/-/CTFontCopyAttribute -C/func/-/CTFontCopyAvailableTables -C/func/-/CTFontCopyCharacterSet -C/func/-/CTFontCopyDisplayName -C/func/-/CTFontCopyFamilyName -C/func/-/CTFontCopyFeatures -C/func/-/CTFontCopyFeatureSettings -C/func/-/CTFontCopyFontDescriptor -C/func/-/CTFontCopyFullName -C/func/-/CTFontCopyGraphicsFont -C/func/-/CTFontCopyLocalizedName -C/func/-/CTFontCopyName -C/func/-/CTFontCopyPostScriptName -C/func/-/CTFontCopySupportedLanguages -C/func/-/CTFontCopyTable -C/func/-/CTFontCopyTraits -C/func/-/CTFontCopyVariation -C/func/-/CTFontCopyVariationAxes -C/func/-/CTFontCreateCopyWithAttributes -C/func/-/CTFontCreateCopyWithFamily -C/func/-/CTFontCreateCopyWithSymbolicTraits -C/func/-/CTFontCreateForString -C/func/-/CTFontCreatePathForGlyph -C/func/-/CTFontCreateUIFontForLanguage -C/func/-/CTFontCreateWithFontDescriptor -C/func/-/CTFontCreateWithFontDescriptorAndOptions -C/func/-/CTFontCreateWithGraphicsFont -C/func/-/CTFontCreateWithName -C/func/-/CTFontCreateWithNameAndOptions -C/func/-/CTFontCreateWithPlatformFont -C/func/-/CTFontCreateWithQuickdrawInstance -C/func/-/CTFontDescriptorCopyAttribute -C/func/-/CTFontDescriptorCopyAttributes -C/func/-/CTFontDescriptorCopyLocalizedAttribute -C/func/-/CTFontDescriptorCreateCopyWithAttributes -C/func/-/CTFontDescriptorCreateCopyWithFeature -C/func/-/CTFontDescriptorCreateCopyWithVariation -C/func/-/CTFontDescriptorCreateMatchingFontDescriptor -C/func/-/CTFontDescriptorCreateMatchingFontDescriptors -C/func/-/CTFontDescriptorCreateWithAttributes -C/func/-/CTFontDescriptorCreateWithNameAndSize -C/func/-/CTFontDescriptorGetTypeID -C/tdef/-/CTFontDescriptorRef -C/tdef/-/CTFontFormat -C/func/-/CTFontGetAdvancesForGlyphs -C/func/-/CTFontGetAscent -C/func/-/CTFontGetBoundingBox -C/func/-/CTFontGetBoundingRectsForGlyphs -C/func/-/CTFontGetCapHeight -C/func/-/CTFontGetDescent -C/func/-/CTFontGetGlyphCount -C/func/-/CTFontGetGlyphsForCharacters -C/func/-/CTFontGetGlyphWithName -C/func/-/CTFontGetLeading -C/func/-/CTFontGetMatrix -C/func/-/CTFontGetPlatformFont -C/func/-/CTFontGetSize -C/func/-/CTFontGetSlantAngle -C/func/-/CTFontGetStringEncoding -C/func/-/CTFontGetSymbolicTraits -C/func/-/CTFontGetTypeID -C/func/-/CTFontGetUnderlinePosition -C/func/-/CTFontGetUnderlineThickness -C/func/-/CTFontGetUnitsPerEm -C/func/-/CTFontGetVerticalTranslationsForGlyphs -C/func/-/CTFontGetXHeight -C/tdef/-/CTFontManagerAutoActivationSetting -C/func/-/CTFontManagerCompareFontFamilyNames -C/func/-/CTFontManagerCopyAvailableFontFamilyNames -C/func/-/CTFontManagerCopyAvailableFontURLs -C/func/-/CTFontManagerCopyAvailablePostScriptNames -C/func/-/CTFontManagerCreateFontDescriptorsFromURL -C/func/-/CTFontManagerCreateFontRequestRunLoopSource -C/func/-/CTFontManagerEnableFontDescriptors -C/tdef/-/CTFontManagerError -C/func/-/CTFontManagerGetAutoActivationSetting -C/func/-/CTFontManagerGetScopeForURL -C/func/-/CTFontManagerIsSupportedFontFile -C/func/-/CTFontManagerRegisterFontsForURL -C/func/-/CTFontManagerRegisterFontsForURLs -C/tdef/-/CTFontManagerScope -C/func/-/CTFontManagerSetAutoActivationSetting -C/func/-/CTFontManagerUnregisterFontsForURL -C/func/-/CTFontManagerUnregisterFontsForURLs -C/tdef/-/CTFontOptions -C/tdef/-/CTFontOrientation -C/tdef/-/CTFontPriority -C/tdef/-/CTFontRef -C/tdef/-/CTFontStylisticClass -C/tdef/-/CTFontSymbolicTraits -C/tdef/-/CTFontTableOptions -C/tdef/-/CTFontTableTag -C/tdef/-/CTFontUIFontType -C/func/-/CTFrameDraw -C/func/-/CTFrameGetFrameAttributes -C/func/-/CTFrameGetLineOrigins -C/func/-/CTFrameGetLines -C/func/-/CTFrameGetPath -C/func/-/CTFrameGetStringRange -C/func/-/CTFrameGetTypeID -C/func/-/CTFrameGetVisibleStringRange -C/tdef/-/CTFrameProgression -C/tdef/-/CTFrameRef -C/func/-/CTFramesetterCreateFrame -C/func/-/CTFramesetterCreateWithAttributedString -C/func/-/CTFramesetterGetTypeID -C/func/-/CTFramesetterGetTypesetter -C/tdef/-/CTFramesetterRef -C/func/-/CTFramesetterSuggestFrameSizeWithConstraints -C/func/-/CTGetCoreTextVersion -C/func/-/CTGlyphInfoCreateWithCharacterIdentifier -C/func/-/CTGlyphInfoCreateWithGlyph -C/func/-/CTGlyphInfoCreateWithGlyphName -C/func/-/CTGlyphInfoGetCharacterCollection -C/func/-/CTGlyphInfoGetCharacterIdentifier -C/func/-/CTGlyphInfoGetGlyphName -C/func/-/CTGlyphInfoGetTypeID -C/tdef/-/CTGlyphInfoRef -C/func/-/ctime -C/func/-/ctime_r -C/tdef/-/ctl_connect_func -C/macro/-/CTL_DATA_EOR -C/macro/-/CTL_DATA_NOWAKEUP -C/func/-/ctl_deregister -C/tdef/-/ctl_disconnect_func -C/func/-/ctl_enqueuedata -C/func/-/ctl_enqueuembuf -C/tag/-/ctl_event_data -C/macro/-/CTL_FLAG_PRIVILEGED -C/macro/-/CTL_FLAG_REG_ID_UNIT -C/macro/-/CTL_FLAG_REG_SOCK_STREAM -C/func/-/ctl_getenqueuespace -C/tdef/-/ctl_getopt_func -C/tag/-/ctl_info -C/func/-/ctl_register -C/tdef/-/ctl_send_func -C/tdef/-/ctl_setopt_func -C/tdef/-/CTLineBreakMode -C/func/-/CTLineCreateJustifiedLine -C/func/-/CTLineCreateTruncatedLine -C/func/-/CTLineCreateWithAttributedString -C/func/-/CTLineDraw -C/func/-/CTLineGetGlyphCount -C/func/-/CTLineGetGlyphRuns -C/func/-/CTLineGetImageBounds -C/func/-/CTLineGetOffsetForStringIndex -C/func/-/CTLineGetPenOffsetForFlush -C/func/-/CTLineGetStringIndexForPosition -C/func/-/CTLineGetStringRange -C/func/-/CTLineGetTrailingWhitespaceWidth -C/func/-/CTLineGetTypeID -C/func/-/CTLineGetTypographicBounds -C/tdef/-/CTLineRef -C/tdef/-/CTLineTruncationType -C/macro/-/CTLIOCGCOUNT -C/macro/-/CTLIOCGINFO -C/func/-/ctoz -C/func/-/ctozD -C/func/-/CTParagraphStyleCreate -C/func/-/CTParagraphStyleCreateCopy -C/func/-/CTParagraphStyleGetTypeID -C/func/-/CTParagraphStyleGetValueForSpecifier -C/tdef/-/CTParagraphStyleRef -C/tdef/-/CTParagraphStyleSetting -C/tag/-/CTParagraphStyleSetting -C/tdef/-/CTParagraphStyleSpecifier -JavaScript/data/KeyboardEvent/ctrlKey -JavaScript/data/MouseEvent/ctrlKey -JavaScript/data/TouchEvent/ctrlKey -JavaScript/data/WheelEvent/ctrlKey -C/func/-/CTRunDraw -C/func/-/CTRunGetAdvances -C/func/-/CTRunGetAdvancesPtr -C/func/-/CTRunGetAttributes -C/func/-/CTRunGetGlyphCount -C/func/-/CTRunGetGlyphs -C/func/-/CTRunGetGlyphsPtr -C/func/-/CTRunGetImageBounds -C/func/-/CTRunGetPositions -C/func/-/CTRunGetPositionsPtr -C/func/-/CTRunGetStatus -C/func/-/CTRunGetStringIndices -C/func/-/CTRunGetStringIndicesPtr -C/func/-/CTRunGetStringRange -C/func/-/CTRunGetTextMatrix -C/func/-/CTRunGetTypeID -C/func/-/CTRunGetTypographicBounds -C/tdef/-/CTRunRef -C/tdef/-/CTRunStatus -C/tdef/-/CTTextAlignment -C/func/-/CTTextTabCreate -C/func/-/CTTextTabGetAlignment -C/func/-/CTTextTabGetLocation -C/func/-/CTTextTabGetOptions -C/func/-/CTTextTabGetTypeID -C/tdef/-/CTTextTabRef -C/func/-/CTTypesetterCreateLine -C/func/-/CTTypesetterCreateWithAttributedString -C/func/-/CTTypesetterCreateWithAttributedStringAndOptions -C/func/-/CTTypesetterGetTypeID -C/tdef/-/CTTypesetterRef -C/func/-/CTTypesetterSuggestClusterBreak -C/func/-/CTTypesetterSuggestLineBreak -C/tdef/-/CTUnderlineStyle -C/tdef/-/CTUnderlineStyleModifiers -C/tdef/-/CTWritingDirection -C/func/-/ctype -C/func/-/ctype_l -JavaScript/clconst/WebGLRenderingContext/CULL_FACE -JavaScript/clconst/WebGLRenderingContext/CULL_FACE_MODE -JavaScript/instm/WebGLRenderingContext/cullFace -Objective-C/instp/CAPropertyAnimation/cumulative -C/func/-/curl_easy_cleanup -C/func/-/curl_easy_duphandle -C/func/-/curl_easy_escape -C/func/-/curl_easy_getinfo -C/func/-/curl_easy_init -C/func/-/curl_easy_pause -C/func/-/curl_easy_perform -C/func/-/curl_easy_recv -C/func/-/curl_easy_reset -C/func/-/curl_easy_send -C/func/-/curl_easy_setopt -C/func/-/curl_easy_strerror -C/func/-/curl_easy_unescape -C/func/-/curl_escape -C/func/-/curl_formadd -C/func/-/curl_formfree -C/func/-/curl_formget -C/func/-/curl_free -C/func/-/curl_getdate -C/func/-/curl_getenv -C/func/-/curl_global_cleanup -C/func/-/curl_global_init -C/func/-/curl_global_init_mem -C/func/-/curl_maprintf -C/func/-/curl_mfprintf -C/func/-/curl_mprintf -C/func/-/curl_msnprintf -C/func/-/curl_msprintf -C/func/-/curl_multi_add_handle -C/func/-/curl_multi_assign -C/func/-/curl_multi_cleanup -C/func/-/curl_multi_fdset -C/func/-/curl_multi_info_read -C/func/-/curl_multi_init -C/func/-/curl_multi_perform -C/func/-/curl_multi_remove_handle -C/func/-/curl_multi_setopt -C/func/-/curl_multi_socket -C/func/-/curl_multi_socket_action -C/func/-/curl_multi_socket_all -C/func/-/curl_multi_strerror -C/func/-/curl_multi_timeout -C/func/-/curl_mvaprintf -C/func/-/curl_mvfprintf -C/func/-/curl_mvprintf -C/func/-/curl_mvsnprintf -C/func/-/curl_mvsprintf -C/func/-/curl_share_cleanup -C/func/-/curl_share_init -C/func/-/curl_share_setopt -C/func/-/curl_share_strerror -C/func/-/curl_slist_append -C/func/-/curl_slist_free_all -C/func/-/curl_strenqual -C/func/-/curl_strequal -C/func/-/curl_unescape -C/func/-/curl_version -C/func/-/curl_version_info -Objective-C/instm/NSNumberFormatter/currencyCode -Objective-C/instm/NSNumberFormatter/currencyDecimalSeparator -Objective-C/instm/NSNumberFormatter/currencyGroupingSeparator -Objective-C/instm/NSNumberFormatter/currencySymbol -Objective-C/instp/PSEntry/current -JavaScript/clconst/WebGLRenderingContext/CURRENT_PROGRAM -JavaScript/clconst/WebGLRenderingContext/CURRENT_VERTEX_ATTRIB -Objective-C/instm/NSAppleEventManager/currentAppleEvent -Objective-C/clm/NSRunningApplication/currentApplication -Objective-C/clm/NSCalendar/currentCalendar -JavaScript/instm/InjectedScriptHost/currentCallFrame -C++/instm/IOService/currentCapability -Objective-C/clm/NSScriptCommand/currentCommand -Objective-C/clm/NSAnimationContext/currentContext -Objective-C/clm/NSOpenGLContext/currentContext -Objective-C/clm/NSGraphicsContext/currentContext -Objective-C/clm/NSGraphicsContext/currentContextDrawingToScreen -Objective-C/instp/QLPreviewPanel/currentController -Objective-C/instm/QLPreviewPanel/currentController -Objective-C/clm/NSColor/currentControlTint -Objective-C/clm/NSConnection/currentConversation -Objective-C/clm/NSCursor/currentCursor -Objective-C/instm/PDFView/currentDestination -Objective-C/instm/NSDocumentController/currentDirectory -Objective-C/instm/NSTask/currentDirectoryPath -Objective-C/instm/NSFileManager/currentDirectoryPath -Objective-C/instm/NSURLCache/currentDiskUsage -Objective-C/instm/NSDocumentController/currentDocument -Objective-C/instm/NSControl/currentEditor -Objective-C/instm/NSMigrationManager/currentEntityMapping -Objective-C/instm/NSWindow/currentEvent -Objective-C/instm/NSApplication/currentEvent -Objective-C/instm/NSFontManager/currentFontAction -Objective-C/instm/QTMovie/currentFrameImage -Objective-C/clm/NSAssertionHandler/currentHandler -Objective-C/clm/NSHost/currentHost -Objective-C/clm/NSTextInputContext/currentInputContext -Objective-C/instm/WebBackForwardList/currentItem -Objective-C/clm/NSLocale/currentLocale -Objective-C/instm/NSURLCache/currentMemoryUsage -Objective-C/intfm/NSColorPickingCustom/currentMode -Objective-C/instm/NSRunLoop/currentMode -JavaScript/data/TreeWalker/currentNode -Objective-C/clm/NSPrintOperation/currentOperation -Objective-C/instm/NSPrintOperation/currentPage -Objective-C/instm/NSPDFImageRep/currentPage -Objective-C/instm/PDFView/currentPage -Objective-C/instm/NSTypesetter/currentParagraphStyle -Objective-C/instm/NSBezierPath/currentPoint -C++/instm/IOService/currentPowerConsumption -C/data/-/currentPowerFlags -C++/data/IOAudioDevice/currentPowerState -Objective-C/instp/QLPreviewPanel/currentPreviewItem -Objective-C/instm/QLPreviewPanel/currentPreviewItem -Objective-C/instp/QLPreviewPanel/currentPreviewItemIndex -Objective-C/instm/QLPreviewPanel/currentPreviewItemIndex -Objective-C/instm/NSAnimation/currentProgress -Objective-C/clm/NSOperationQueue/currentQueue -Objective-C/instm/NSAppleEventManager/currentReplyAppleEvent -Objective-C/clm/NSRunLoop/currentRunLoop -Objective-C/clm/DRNotificationCenter/currentRunLoopCenter -JavaScript/data/SVGSVGElement/currentScale -Objective-C/instm/PDFView/currentSelection -JavaScript/data/HTMLMediaElement/currentSrc -Objective-C/clm/NSCursor/currentSystemCursor -Objective-C/instm/NSApplication/currentSystemPresentationOptions -JavaScript/data/Event/currentTarget -Objective-C/instm/NSATSTypesetter/currentTextContainer -Objective-C/instm/NSTypesetter/currentTextContainer -Objective-C/clm/NSThread/currentThread -Objective-C/intfm/FxCustomParameterActionAPI/currentTime -Objective-C/instm/NSSound/currentTime -Objective-C/instm/QTMovie/currentTime -JavaScript/data/HTMLMediaElement/currentTime -Objective-C/instm/IKImageView/currentToolMode -Objective-C/instp/IKImageView/currentToolMode -JavaScript/data/SVGSVGElement/currentTranslate -Objective-C/instm/NSAnimation/currentValue -Objective-C/instm/NSOpenGLContext/currentVirtualScreen -C/func/-/CurResFile -C/func/-/curs_add_wch -C/func/-/curs_add_wchstr -C/func/-/curs_addch -C/func/-/curs_addchstr -C/func/-/curs_addstr -C/func/-/curs_addwstr -C/func/-/curs_attr -C/func/-/curs_beep -C/func/-/curs_bkgd -C/func/-/curs_bkgrnd -C/func/-/curs_border -C/func/-/curs_border_set -C/func/-/curs_clear -C/func/-/curs_color -C/func/-/curs_delch -C/func/-/curs_deleteln -C/func/-/curs_extend -C/func/-/curs_get_wch -C/func/-/curs_get_wstr -C/func/-/curs_getcchar -C/func/-/curs_getch -C/func/-/curs_getstr -C/func/-/curs_getyx -C/func/-/curs_in_wch -C/func/-/curs_in_wchstr -C/func/-/curs_inch -C/func/-/curs_inchstr -C/func/-/curs_initscr -C/func/-/curs_inopts -C/func/-/curs_ins_wch -C/func/-/curs_ins_wstr -C/func/-/curs_insch -C/func/-/curs_insstr -C/func/-/curs_instr -C/func/-/curs_inwstr -C/func/-/curs_kernel -C/func/-/curs_legacy -C/func/-/curs_memleaks -C/func/-/curs_mouse -C/func/-/curs_move -C/func/-/curs_opaque -C/func/-/curs_outopts -C/func/-/curs_overlay -C/func/-/curs_pad -C/func/-/curs_print -C/func/-/curs_printw -C/func/-/curs_refresh -C/func/-/curs_scanw -C/func/-/curs_scr_dump -C/func/-/curs_scroll -C/func/-/curs_set -C/func/-/curs_slk -C/func/-/curs_termattrs -C/func/-/curs_termcap -C/func/-/curs_terminfo -C/func/-/curs_threads -C/func/-/curs_touch -C/func/-/curs_trace -C/func/-/curs_util -C/func/-/curs_window -C/func/-/curses_version -Objective-C/instm/WebPreferences/cursiveFontFamily -C/macro/-/CURSORHEIGHT -C/tag/-/CursorParameters -Objective-C/instm/NSResponder/cursorUpdate: -C/macro/-/CURSORWIDTH -C/func/-/CurveAddAtomToVectorStream -C/func/-/CurveAddPathAtomToVectorStream -C/func/-/CurveAddZeroAtomToVectorStream -C/func/-/CurveCountPointsInPath -C/func/-/CurveCreateVectorStream -C/func/-/CurveGetAtomDataFromVectorStream -C/func/-/CurveGetLength -C/func/-/CurveGetNearestPathPoint -C/func/-/CurveGetPathPoint -C/func/-/CurveInsertPointIntoPath -C/func/-/CurveLengthToPoint -C/func/-/CurveNewPath -C/func/-/CurvePathPointToLength -C/func/-/CurveSetPathPoint -Objective-C/instm/NSBezierPath/curveToPoint:controlPoint1:controlPoint2: -JavaScript/instm/TestObj/customArgsAndException -JavaScript/data/TestObj/customAttr -Objective-C/instm/ODNode/customCall:sendData:error: -JavaScript/instm/TestCallback/customCallback -JavaScript/data/ValidityState/customError -JavaScript/cl/-/CustomEvent -Objective-C/instm/NSToolbar/customizationPaletteIsRunning -JavaScript/instm/TestObj/customMethod -JavaScript/instm/TestObj/customMethodWithArgs -Objective-C/instm/NSComparisonPredicate/customSelector -Objective-C/instm/WebView/customTextEncodingName -Objective-C/instm/WebView/customUserAgent -Objective-C/intfm/AUCustomViewPersistentData/customViewPersistentData -Objective-C/instm/QTMovieView/cut: -Objective-C/instm/WebView/cut: -Objective-C/instm/NSText/cut: -C/func/-/CutMovieSelection -C/tdef/-/CVAttachmentMode -C/func/-/CVBufferGetAttachment -C/func/-/CVBufferGetAttachments -C/func/-/CVBufferPropagateAttachments -C/tdef/-/CVBufferRef -C/func/-/CVBufferRelease -C/func/-/CVBufferRemoveAllAttachments -C/func/-/CVBufferRemoveAttachment -C/func/-/CVBufferRetain -C/func/-/CVBufferSetAttachment -C/func/-/CVBufferSetAttachments -C/func/-/CVDisplayLinkCreateWithActiveCGDisplays -C/func/-/CVDisplayLinkCreateWithCGDisplay -C/func/-/CVDisplayLinkCreateWithCGDisplays -C/func/-/CVDisplayLinkCreateWithOpenGLDisplayMask -C/func/-/CVDisplayLinkGetActualOutputVideoRefreshPeriod -C/func/-/CVDisplayLinkGetCurrentCGDisplay -C/func/-/CVDisplayLinkGetCurrentTime -C/func/-/CVDisplayLinkGetNominalOutputVideoRefreshPeriod -C/func/-/CVDisplayLinkGetOutputVideoLatency -C/func/-/CVDisplayLinkGetTypeID -C/func/-/CVDisplayLinkIsRunning -C/tdef/-/CVDisplayLinkOutputCallback -C/tdef/-/CVDisplayLinkRef -C/func/-/CVDisplayLinkRelease -C/func/-/CVDisplayLinkRetain -C/func/-/CVDisplayLinkSetCurrentCGDisplay -C/func/-/CVDisplayLinkSetCurrentCGDisplayFromOpenGLContext -C/func/-/CVDisplayLinkSetOutputCallback -C/func/-/CVDisplayLinkStart -C/func/-/CVDisplayLinkStop -C/func/-/CVDisplayLinkTranslateTime -C/tdef/-/CVFillExtendedPixelsCallBack -C/tdef/-/CVFillExtendedPixelsCallBackData -C/func/-/CVGetCurrentHostTime -C/func/-/CVGetHostClockFrequency -C/func/-/CVGetHostClockMinimumTimeDelta -C/func/-/CVImageBufferGetCleanRect -C/func/-/CVImageBufferGetColorSpace -C/func/-/CVImageBufferGetDisplaySize -C/func/-/CVImageBufferGetEncodedSize -C/tdef/-/CVImageBufferRef -C/func/-/CVOpenGLBufferAttach -C/func/-/CVOpenGLBufferCreate -C/func/-/CVOpenGLBufferGetAttributes -C/func/-/CVOpenGLBufferGetTypeID -C/func/-/CVOpenGLBufferPoolCreate -C/func/-/CVOpenGLBufferPoolCreateOpenGLBuffer -C/func/-/CVOpenGLBufferPoolGetAttributes -C/func/-/CVOpenGLBufferPoolGetOpenGLBufferAttributes -C/func/-/CVOpenGLBufferPoolGetTypeID -C/tdef/-/CVOpenGLBufferPoolRef -C/func/-/CVOpenGLBufferPoolRelease -C/func/-/CVOpenGLBufferPoolRetain -C/tdef/-/CVOpenGLBufferRef -C/func/-/CVOpenGLBufferRelease -C/func/-/CVOpenGLBufferRetain -C/func/-/CVOpenGLTextureCacheCreate -C/func/-/CVOpenGLTextureCacheCreateTextureFromImage -C/func/-/CVOpenGLTextureCacheFlush -C/func/-/CVOpenGLTextureCacheGetTypeID -C/tdef/-/CVOpenGLTextureCacheRef -C/func/-/CVOpenGLTextureCacheRelease -C/func/-/CVOpenGLTextureCacheRetain -C/func/-/CVOpenGLTextureGetCleanTexCoords -C/func/-/CVOpenGLTextureGetName -C/func/-/CVOpenGLTextureGetTarget -C/func/-/CVOpenGLTextureGetTypeID -C/func/-/CVOpenGLTextureIsFlipped -C/tdef/-/CVOpenGLTextureRef -C/func/-/CVOpenGLTextureRelease -C/func/-/CVOpenGLTextureRetain -C/tdef/-/CVOptionFlags -C/func/-/CVPixelBufferCreate -C/func/-/CVPixelBufferCreateResolvedAttributesDictionary -C/func/-/CVPixelBufferCreateWithBytes -C/func/-/CVPixelBufferCreateWithPlanarBytes -C/func/-/CVPixelBufferFillExtendedPixels -C/func/-/CVPixelBufferGetBaseAddress -C/func/-/CVPixelBufferGetBaseAddressOfPlane -C/func/-/CVPixelBufferGetBytesPerRow -C/func/-/CVPixelBufferGetBytesPerRowOfPlane -C/func/-/CVPixelBufferGetDataSize -C/func/-/CVPixelBufferGetExtendedPixels -C/func/-/CVPixelBufferGetHeight -C/func/-/CVPixelBufferGetHeightOfPlane -C/func/-/CVPixelBufferGetPixelFormatType -C/func/-/CVPixelBufferGetPlaneCount -C/func/-/CVPixelBufferGetTypeID -C/func/-/CVPixelBufferGetWidth -C/func/-/CVPixelBufferGetWidthOfPlane -C/func/-/CVPixelBufferIsPlanar -C/func/-/CVPixelBufferLockBaseAddress -C/tdef/-/CVPixelBufferLockFlags -C/func/-/CVPixelBufferPoolCreate -C/func/-/CVPixelBufferPoolCreatePixelBuffer -C/func/-/CVPixelBufferPoolGetAttributes -C/func/-/CVPixelBufferPoolGetPixelBufferAttributes -C/func/-/CVPixelBufferPoolGetTypeID -C/tdef/-/CVPixelBufferPoolRef -C/func/-/CVPixelBufferPoolRelease -C/func/-/CVPixelBufferPoolRetain -C/tdef/-/CVPixelBufferRef -C/func/-/CVPixelBufferRelease -C/tdef/-/CVPixelBufferReleaseBytesCallback -C/tdef/-/CVPixelBufferReleasePlanarBytesCallback -C/func/-/CVPixelBufferRetain -C/func/-/CVPixelBufferUnlockBaseAddress -C/func/-/CVPixelFormatDescriptionArrayCreateWithAllPixelFormatTypes -C/func/-/CVPixelFormatDescriptionCreateWithPixelFormatType -C/func/-/CVPixelFormatDescriptionRegisterDescriptionWithPixelFormatType -C/tdef/-/CVPlanarComponentInfo -C/tag/-/CVPlanarComponentInfo -C/tag/-/CVPlanarPixelBufferInfo -C/tdef/-/CVPlanarPixelBufferInfo -C/tdef/-/CVPlanarPixelBufferInfo_YCbCrPlanar -C/tag/-/CVPlanarPixelBufferInfo_YCbCrPlanar -C/tdef/-/CVReturn -C/tdef/-/CVSMPTETime -C/tag/-/CVSMPTETime -C/tdef/-/CVTime -C/tdef/-/CVTimeStamp -JavaScript/clconst/WebGLRenderingContext/CW -Objective-C/cl/-/CW8021XProfile -C/func/-/CWCheckBitmap -C/func/-/CWCheckColors -C/func/-/CWCheckPixMap -C/func/-/CWConcatColorWorld -Objective-C/cl/-/CWConfiguration -C/func/-/CWDisposeColorWorld -C/tdef/-/CWErr -C/func/-/CWFillLookupTexture -Objective-C/cl/-/CWInterface -C/tdef/-/CWInterfaceState -C/func/-/CWMatchBitmap -C/func/-/CWMatchColors -C/func/-/CWMatchPixMap -Objective-C/cl/-/CWNetwork -C/func/-/CWNewLinkProfile -C/tdef/-/CWOpMode -C/tdef/-/CWPHYMode -C/tdef/-/CWScanType -C/tdef/-/CWSecurityMode -Objective-C/cl/-/CWWirelessProfile -JavaScript/data/SVGCircleElement/cx -JavaScript/data/SVGEllipseElement/cx -JavaScript/data/SVGRadialGradientElement/cx -JavaScript/data/SVGCircleElement/cy -JavaScript/data/SVGEllipseElement/cy -JavaScript/data/SVGRadialGradientElement/cy -Objective-C/clm/NSColor/cyanColor -Objective-C/instm/NSColor/cyanComponent -JavaScript/data/SVGMatrix/d -JavaScript/data/WebKitCSSMatrix/d -C/func/-/d2i_509_CRL_fp -C/func/-/d2i_ASN1_OBJECT -C/func/-/d2i_DHparams -C/func/-/d2i_DSA_PUBKEY -C/func/-/d2i_DSA_SIG -C/func/-/d2i_DSAparams -C/func/-/d2i_DSAPrivateKey -C/func/-/d2i_DSAPublicKey -C/func/-/d2i_ECDSA_SIG -C/func/-/d2i_Netscape_RSA -C/func/-/d2i_PKCS8PrivateKey -C/func/-/d2i_PKCS8PrivateKey_bio -C/func/-/d2i_PKCS8PrivateKey_fp -C/func/-/d2i_RSA_PUBKEY -C/func/-/d2i_RSAPrivateKey -C/func/-/d2i_RSAPublicKey -C/func/-/d2i_SSL_SESSION -C/func/-/d2i_X509 -C/func/-/d2i_X509_ALGOR -C/func/-/d2i_X509_bio -C/func/-/d2i_X509_CRL -C/func/-/d2i_X509_CRL_bio -C/func/-/d2i_X509_CRL_fp -C/func/-/d2i_X509_fp -C/func/-/d2i_X509_NAME -C/func/-/d2i_X509_REQ -C/func/-/d2i_X509_REQ_bio -C/func/-/d2i_X509_REQ_fp -C/func/-/d2i_X509_SIG -C/func/-/DAApprovalSessionCreate -C/func/-/DAApprovalSessionGetTypeID -C/tdef/-/DAApprovalSessionRef -C/func/-/DAApprovalSessionScheduleWithRunLoop -C/func/-/DAApprovalSessionUnscheduleFromRunLoop -C/tdef/-/DADiskAppearedCallback -C/func/-/DADiskClaim -C/tdef/-/DADiskClaimCallback -C/tag/-/DADiskClaimOptions -C/tdef/-/DADiskClaimReleaseCallback -C/func/-/DADiskCopyDescription -C/func/-/DADiskCopyIOMedia -C/func/-/DADiskCopyWholeDisk -C/func/-/DADiskCreateFromBSDName -C/func/-/DADiskCreateFromIOMedia -C/tdef/-/DADiskDescriptionChangedCallback -C/tdef/-/DADiskDisappearedCallback -C/func/-/DADiskEject -C/tdef/-/DADiskEjectApprovalCallback -C/tdef/-/DADiskEjectCallback -C/tag/-/DADiskEjectOptions -C/func/-/DADiskGetBSDName -C/func/-/DADiskGetOptions -C/func/-/DADiskGetTypeID -C/func/-/DADiskIsClaimed -C/func/-/DADiskMount -C/tdef/-/DADiskMountApprovalCallback -C/tdef/-/DADiskMountCallback -C/tag/-/DADiskMountOptions -C/func/-/DADiskMountWithArguments -C/tag/-/DADiskOptions -C/tdef/-/DADiskPeekCallback -C/tdef/-/DADiskRef -C/func/-/DADiskRename -C/tdef/-/DADiskRenameCallback -C/tag/-/DADiskRenameOptions -C/func/-/DADiskSetOptions -C/func/-/DADiskUnclaim -C/func/-/DADiskUnmount -C/tdef/-/DADiskUnmountApprovalCallback -C/tdef/-/DADiskUnmountCallback -C/tag/-/DADiskUnmountOptions -C/func/-/DADissenterCreate -C/func/-/DADissenterGetStatus -C/func/-/DADissenterGetStatusString -C/tdef/-/DADissenterRef -C/func/-/daemon -C/func/-/DARegisterDiskAppearedCallback -C/func/-/DARegisterDiskDescriptionChangedCallback -C/func/-/DARegisterDiskDisappearedCallback -C/func/-/DARegisterDiskEjectApprovalCallback -C/func/-/DARegisterDiskMountApprovalCallback -C/func/-/DARegisterDiskPeekCallback -C/func/-/DARegisterDiskUnmountApprovalCallback -C/tag/-/DAReturn -Objective-C/clm/NSColor/darkGrayColor -C/tdef/-/DASDModeParameterBlockDescriptor -C/func/-/DASessionCreate -C/func/-/DASessionGetTypeID -C/tdef/-/DASessionRef -C/func/-/DASessionScheduleWithRunLoop -C/func/-/DASessionUnscheduleFromRunLoop -Objective-C/clm/NSTextCheckingResult/dashCheckingResultWithRange:replacementString: -Objective-C/instm/PDFBorder/dashPattern -Objective-C/instm/NSAppleEventDescriptor/data -Objective-C/instm/NSCachedURLResponse/data -Objective-C/instm/WebDataSource/data -Objective-C/instm/WebResource/data -Objective-C/instm/WebArchive/data -Objective-C/instm/NSTimeZone/data -Objective-C/instp/PSContent/data -Objective-C/binding/NSImageCell/data -Objective-C/binding/NSImageView/data -Objective-C/binding/NSTextView/data -C/tdef/-/data -Objective-C/clm/NSData/data -JavaScript/data/CompositionEvent/data -JavaScript/data/CharacterData/data -JavaScript/data/HTMLObjectElement/data -JavaScript/data/ImageData/data -JavaScript/data/MessageEvent/data -JavaScript/data/ProcessingInstruction/data -JavaScript/data/TextEvent/data -Objective-C/instm/NSEvent/data1 -Objective-C/instm/NSEvent/data2 -JavaScript/clconst/IDBDatabaseException/DATA_ERR -C/macro/-/DATA_QUEUE_ENTRY_HEADER_SIZE -C/macro/-/DATA_QUEUE_MEMORY_APPENDIX_SIZE -C/macro/-/DATA_QUEUE_MEMORY_HEADER_SIZE -JavaScript/cl/-/Database -JavaScript/cl/-/DatabaseCallback -JavaScript/instm/InjectedScriptHost/databaseForId -JavaScript/cl/-/DatabaseSync -C/tdef/-/DataBrowserAcceptDragProcPtr -C/tdef/-/DataBrowserAccessibilityInfoV0 -C/tdef/-/DataBrowserAccessibilityInfoV1 -C/tdef/-/DataBrowserAddDragItemProcPtr -C/tdef/-/DataBrowserCallbacks -C/func/-/DataBrowserChangeAttributes -C/tdef/-/DataBrowserCustomCallbacks -C/tdef/-/DataBrowserDragFlags -C/tdef/-/DataBrowserDrawItemProcPtr -C/tdef/-/DataBrowserEditCommand -C/tdef/-/DataBrowserEditItemProcPtr -C/func/-/DataBrowserGetAttributes -C/tdef/-/DataBrowserGetContextualMenuProcPtr -C/func/-/DataBrowserGetMetric -C/tdef/-/DataBrowserHitTestProcPtr -C/tdef/-/DataBrowserItemAcceptDragProcPtr -C/tdef/-/DataBrowserItemCompareProcPtr -C/tdef/-/DataBrowserItemDataProcPtr -C/tdef/-/DataBrowserItemDataRef -C/tdef/-/DataBrowserItemDragRgnProcPtr -C/tdef/-/DataBrowserItemHelpContentProcPtr -C/tdef/-/DataBrowserItemID -C/tdef/-/DataBrowserItemNotification -C/tdef/-/DataBrowserItemNotificationProcPtr -C/tdef/-/DataBrowserItemNotificationWithItemProcPtr -C/tdef/-/DataBrowserItemProcPtr -C/tdef/-/DataBrowserItemReceiveDragProcPtr -C/tdef/-/DataBrowserItemState -C/tdef/-/DataBrowserListViewColumnDesc -C/tdef/-/DataBrowserListViewHeaderDesc -C/tdef/-/DataBrowserListViewPropertyFlags -C/tdef/-/DataBrowserMetric -C/tdef/-/DataBrowserPostProcessDragProcPtr -C/tdef/-/DataBrowserPropertyDesc -C/tdef/-/DataBrowserPropertyFlags -C/tdef/-/DataBrowserPropertyID -C/tdef/-/DataBrowserPropertyPart -C/tdef/-/DataBrowserPropertyType -C/tdef/-/DataBrowserReceiveDragProcPtr -C/tdef/-/DataBrowserRevealOptions -C/tdef/-/DataBrowserSelectContextualMenuProcPtr -C/tdef/-/DataBrowserSelectionAnchorDirection -C/tdef/-/DataBrowserSelectionFlags -C/func/-/DataBrowserSetMetric -C/tdef/-/DataBrowserSetOption -C/tdef/-/DataBrowserSortOrder -C/tdef/-/DataBrowserTableViewColumnDesc -C/tdef/-/DataBrowserTableViewColumnID -C/tdef/-/DataBrowserTableViewColumnIndex -C/tdef/-/DataBrowserTableViewHiliteStyle -C/tdef/-/DataBrowserTableViewPropertyFlags -C/tdef/-/DataBrowserTableViewRowIndex -C/tdef/-/DataBrowserTrackingProcPtr -C/tdef/-/DataBrowserTrackingResult -C/tdef/-/DataBrowserViewStyle -Objective-C/instm/NSTableColumn/dataCell -Objective-C/instm/NSTableColumn/dataCellForRow: -C/func/-/DataCodecBeginInterruptSafe -C/tdef/-/DataCodecComponent -C/func/-/DataCodecCompress -C/func/-/DataCodecCompressPartial -C/func/-/DataCodecDecompress -C/func/-/DataCodecDecompressPartial -C/func/-/DataCodecEndInterruptSafe -C/func/-/DataCodecGetCompressBufferSize -Objective-C/instm/NSUserDefaults/dataForKey: -Objective-C/instm/NSPasteboardItem/dataForType: -Objective-C/instm/NSPasteboard/dataForType: -Objective-C/clm/NSPropertyListSerialization/dataFromPropertyList:format:errorDescription: -Objective-C/instm/NSAttributedString/dataFromRange:documentAttributes:error: -Objective-C/clm/NSNetService/dataFromTXTRecordDictionary: -JavaScript/cl/-/DataGridColumn -JavaScript/cl/-/DataGridColumnList -C/func/-/DataHAddMovie -C/tdef/-/DataHandler -C/tdef/-/DataHandlerComponent -C/func/-/DataHAppend64 -C/func/-/DataHCanUseDataRef -C/func/-/DataHCloseForRead -C/func/-/DataHCloseForWrite -C/func/-/DataHCompareDataRef -C/tdef/-/DataHCompletionProc -C/tdef/-/DataHCompletionUPP -C/func/-/DataHCreateFile -C/func/-/DataHCreateFileWithFlags -C/func/-/DataHDeleteFile -C/func/-/DataHDoesBuffer -C/tdef/-/DataHFileTypeOrderingHandle -C/tdef/-/DataHFileTypeOrderingPtr -C/func/-/DataHFinishData -C/func/-/DataHFlushCache -C/func/-/DataHFlushData -C/func/-/DataHGetAvailableFileSize -C/func/-/DataHGetCacheSizeLimit -C/func/-/DataHGetData -C/func/-/DataHGetDataAvailability -C/func/-/DataHGetDataInBuffer -C/func/-/DataHGetDataRate -C/func/-/DataHGetDataRef -C/func/-/DataHGetDataRefAsType -C/func/-/DataHGetDataRefExtension -C/func/-/DataHGetDataRefWithAnchor -C/func/-/DataHGetDeviceIndex -C/func/-/DataHGetFileName -C/func/-/DataHGetFileSize -C/func/-/DataHGetFileSize64 -C/func/-/DataHGetFileSizeAsync -C/func/-/DataHGetFileTypeOrdering -C/func/-/DataHGetFreeSpace -C/func/-/DataHGetFreeSpace64 -C/func/-/DataHGetInfo -C/func/-/DataHGetInfoFlags -C/func/-/DataHGetMacOSFileType -C/func/-/DataHGetMIMEType -C/func/-/DataHGetMIMETypeAsync -C/func/-/DataHGetMovie -C/func/-/DataHGetMovieWithFlags -C/func/-/DataHGetPreferredBlockSize -C/func/-/DataHGetScheduleAheadTime -C/func/-/DataHGetTemporaryDataRefCapabilities -C/func/-/DataHGetVolumeList -C/func/-/DataHIsStreamingDataHandler -C/func/-/DataHOpenForRead -C/func/-/DataHOpenForWrite -C/func/-/DataHPlaybackHints -C/func/-/DataHPlaybackHints64 -C/func/-/DataHPollRead -C/func/-/DataHPreextend -C/func/-/DataHPreextend64 -C/func/-/DataHPutData -C/func/-/DataHReadAsync -C/func/-/DataHRenameFile -C/func/-/DataHResolveDataRef -C/func/-/DataHScheduleData -C/func/-/DataHScheduleData64 -C/tdef/-/DataHSchedulePtr -C/tag/-/DataHScheduleRecord -C/func/-/DataHSetCacheSizeLimit -C/func/-/DataHSetDataRef -C/func/-/DataHSetDataRefExtension -C/func/-/DataHSetDataRefWithAnchor -C/func/-/DataHSetFileSize -C/func/-/DataHSetFileSize64 -C/func/-/DataHSetIdleManager -C/func/-/DataHSetMacOSFileType -C/func/-/DataHSetMovieUsageFlags -C/func/-/DataHSetTimeBase -C/func/-/DataHSetTimeHints -C/func/-/DataHTask -C/func/-/DataHUpdateMovie -C/func/-/DataHUseTemporaryDataRef -C/tdef/-/DataHVolumeList -C/tdef/-/DataHVolumeListPtr -C/func/-/DataHWrite -C/func/-/DataHWrite64 -Objective-C/instm/NSDocument/dataOfType:error: -Objective-C/instm/FxBitmap/dataPtr -Objective-C/instm/FxBitmap/dataPtrForPositionX:Y: -C/tag/-/DataRateParams -C/tdef/-/DataRateParamsPtr -Objective-C/instm/QTDataReference/dataRef -Objective-C/instm/QTDataReference/dataRefData -Objective-C/clm/QTDataReference/dataReferenceWithDataRef:type: -Objective-C/clm/QTDataReference/dataReferenceWithDataRefData:type: -Objective-C/clm/QTDataReference/dataReferenceWithReferenceToData: -Objective-C/clm/QTDataReference/dataReferenceWithReferenceToData:name:MIMEType: -Objective-C/clm/QTDataReference/dataReferenceWithReferenceToFile: -Objective-C/clm/QTDataReference/dataReferenceWithReferenceToURL: -Objective-C/instm/QTDataReference/dataRefType -Objective-C/instm/PDFPage/dataRepresentation -Objective-C/instm/PDFDocument/dataRepresentation -Objective-C/instm/NSDocument/dataRepresentationOfType: -Objective-C/instm/ISyncSessionDriver/dataSource -Objective-C/instm/NSComboBox/dataSource -Objective-C/instm/WebFrame/dataSource -Objective-C/instm/NSComboBoxCell/dataSource -Objective-C/instp/QLPreviewPanel/dataSource -Objective-C/instm/QLPreviewPanel/dataSource -Objective-C/instm/IKImageBrowserView/dataSource -Objective-C/instm/IKImageEditPanel/dataSource -Objective-C/instp/IKImageEditPanel/dataSource -Objective-C/instm/NSTableView/dataSource -Objective-C/instm/NSOutlineView/dataSource -JavaScript/data/HTMLDataGridElement/dataSource -Objective-C/intfm/WebDocumentView/dataSourceUpdated: -JavaScript/data/MouseEvent/dataTransfer -Objective-C/instm/NSString/dataUsingEncoding: -Objective-C/instm/NSString/dataUsingEncoding:allowLossyConversion: -Objective-C/clm/NSData/dataWithBytes:length: -Objective-C/clm/NSData/dataWithBytesNoCopy:length: -Objective-C/clm/NSData/dataWithBytesNoCopy:length:freeWhenDone: -Objective-C/clm/NSMutableData/dataWithCapacity: -Objective-C/clm/NSData/dataWithContentsOfFile: -Objective-C/clm/NSData/dataWithContentsOfFile:options:error: -Objective-C/clm/NSData/dataWithContentsOfMappedFile: -Objective-C/clm/NSData/dataWithContentsOfURL: -Objective-C/clm/NSData/dataWithContentsOfURL:options:error: -Objective-C/clm/NSData/dataWithData: -Objective-C/instm/NSWindow/dataWithEPSInsideRect: -Objective-C/instm/NSView/dataWithEPSInsideRect: -Objective-C/clm/NSMutableData/dataWithLength: -Objective-C/instm/NSWindow/dataWithPDFInsideRect: -Objective-C/instm/NSView/dataWithPDFInsideRect: -Objective-C/clm/NSPropertyListSerialization/dataWithPropertyList:format:options:error: -Objective-C/instm/NSTextCheckingResult/date -Objective-C/instp/NSTextCheckingResult/date -Objective-C/clm/NSDate/date -Objective-C/instm/NSCalendar/dateByAddingComponents:toDate:options: -Objective-C/instm/NSDate/dateByAddingTimeInterval: -Objective-C/clm/NSTextCheckingResult/dateCheckingResultWithRange:date: -Objective-C/clm/NSTextCheckingResult/dateCheckingResultWithRange:date:timeZone:duration: -Objective-C/instp/PSEntry/dateCreated -Objective-C/instp/PSEntry/dateForDisplay -Objective-C/instm/NSDateFormatter/dateFormat -Objective-C/clm/NSDateFormatter/dateFormatFromTemplate:options:locale: -Objective-C/instm/NSCalendar/dateFromComponents: -Objective-C/instm/NSDateFormatter/dateFromString: -Objective-C/instp/PSClient/dateLastUpdated -Objective-C/intfm/NSDatePickerCellDelegate/datePickerCell:validateProposedDateValue:timeInterval: -Objective-C/instm/NSDatePicker/datePickerElements -Objective-C/instm/NSDatePickerCell/datePickerElements -Objective-C/instm/NSDatePicker/datePickerMode -Objective-C/instm/NSDatePickerCell/datePickerMode -Objective-C/instm/NSDatePicker/datePickerStyle -Objective-C/instm/NSDatePickerCell/datePickerStyle -Objective-C/instp/PSEntry/datePublished -Objective-C/instm/CalCalendarItem/dateStamp -Objective-C/instp/CalCalendarItem/dateStamp -Objective-C/instm/XGJob/dateStarted -Objective-C/instm/XGJob/dateStopped -Objective-C/instm/NSDateFormatter/dateStyle -Objective-C/instm/XGJob/dateSubmitted -JavaScript/data/HTMLModElement/dateTime -Objective-C/instp/PSFeed/dateUpdated -Objective-C/instp/PSEntry/dateUpdated -Objective-C/instm/NSDatePicker/dateValue -Objective-C/instm/NSDatePickerCell/dateValue -Objective-C/instm/NSDate/dateWithCalendarFormat:timeZone: -Objective-C/clm/NSDate/dateWithNaturalLanguageString: -Objective-C/clm/NSDate/dateWithNaturalLanguageString:locale: -Objective-C/clm/NSDate/dateWithString: -Objective-C/clm/NSDate/dateWithTimeInterval:sinceDate: -Objective-C/clm/NSDate/dateWithTimeIntervalSince1970: -Objective-C/clm/NSDate/dateWithTimeIntervalSinceNow: -Objective-C/clm/NSDate/dateWithTimeIntervalSinceReferenceDate: -C/func/-/DAUnregisterApprovalCallback -C/func/-/DAUnregisterCallback -Objective-C/instm/NSDateComponents/day -Objective-C/instm/NSTimeZone/daylightSavingTimeOffset -Objective-C/instm/NSTimeZone/daylightSavingTimeOffsetForDate: -Objective-C/instm/CalNthWeekDay/dayOfTheWeek -Objective-C/instp/CalNthWeekDay/dayOfTheWeek -Objective-C/instp/CalRecurrenceRule/daysOfTheMonth -Objective-C/instm/CalRecurrenceRule/daysOfTheMonth -Objective-C/instm/CalRecurrenceRule/daysOfTheWeek -Objective-C/instp/CalRecurrenceRule/daysOfTheWeek -C/func/-/db -C++/macro/-/dbdmaOutputSegment -C/func/-/DBE -JavaScript/clconst/Event/DBLCLICK -C/func/-/dbm -C/func/-/dbm_clearerr -C/func/-/dbm_close -C/func/-/dbm_delete -C/func/-/dbm_dirfno -C/func/-/dbm_error -C/func/-/dbm_fetch -C/func/-/dbm_firstkey -C/func/-/dbm_nextkey -C/func/-/dbm_open -C/func/-/dbm_store -C/func/-/dbopen -C/func/-/DCSCopyTextDefinition -C/tdef/-/DCSDictionaryRef -C/func/-/DCSGetTermRangeInString -C/econst/-/dDSBeginPlugInCustom -Objective-C/instm/NSColorWell/deactivate -Objective-C/instm/NSTextInputContext/deactivate -Objective-C/instm/NSApplication/deactivate -C++/instm/IOFWAddressSpace/deactivate -C++/instm/IOAudioDevice/deactivateAllAudioEngines -C++/instm/IOAudioPort/deactivateAudioControls -JavaScript/instm/InspectorBackend/deactivateBreakpoints -Objective-C/intfm/IMKStateSetting/deactivateServer: -JavaScript/clconst/IDBDatabaseException/DEADLOCK_ERR -C++/clm/IORegistryEntry/dealiasPath -Objective-C/instm/NSProxy/dealloc -Objective-C/instm/NSObject/dealloc -Objective-C/instm/NSManagedObject/dealloc -C++/instm/IORangeAllocator/deallocate -C++/instm/IOFireWireSBP2ORB/deallocatePageTable -C++/instm/IOFireWireSerialBusProtocolTransport/DeallocateResources -Objective-C/instm/SFAuthorizationView/deauthorize: -C++/instm/IOBlockStorageDriver/deblockRequest -JavaScript/instm/Console/debug -C/macro/-/DEBUG_MEMORY -C/macro/-/DEBUG_MEMORY_LOCATION -C++/clm/IOKernelDebugger/debugger -C/func/-/Debugger -Objective-C/clm/NSCharacterSet/decimalDigitCharacterSet -Objective-C/instm/NSDecimalNumber/decimalNumberByAdding: -Objective-C/instm/NSDecimalNumber/decimalNumberByAdding:withBehavior: -Objective-C/instm/NSDecimalNumber/decimalNumberByDividingBy: -Objective-C/instm/NSDecimalNumber/decimalNumberByDividingBy:withBehavior: -Objective-C/instm/NSDecimalNumber/decimalNumberByMultiplyingBy: -Objective-C/instm/NSDecimalNumber/decimalNumberByMultiplyingBy:withBehavior: -Objective-C/instm/NSDecimalNumber/decimalNumberByMultiplyingByPowerOf10: -Objective-C/instm/NSDecimalNumber/decimalNumberByMultiplyingByPowerOf10:withBehavior: -Objective-C/instm/NSDecimalNumber/decimalNumberByRaisingToPower: -Objective-C/instm/NSDecimalNumber/decimalNumberByRaisingToPower:withBehavior: -Objective-C/instm/NSDecimalNumber/decimalNumberByRoundingAccordingToBehavior: -Objective-C/instm/NSDecimalNumber/decimalNumberBySubtracting: -Objective-C/instm/NSDecimalNumber/decimalNumberBySubtracting:withBehavior: -Objective-C/clm/NSDecimalNumberHandler/decimalNumberHandlerWithRoundingMode:scale:raiseOnExactness:raiseOnOverflow:raiseOnUnderflow:raiseOnDivideByZero: -Objective-C/clm/NSDecimalNumber/decimalNumberWithDecimal: -Objective-C/clm/NSDecimalNumber/decimalNumberWithMantissa:exponent:isNegative: -Objective-C/clm/NSDecimalNumber/decimalNumberWithString: -Objective-C/clm/NSDecimalNumber/decimalNumberWithString:locale: -Objective-C/instm/NSNumberFormatter/decimalSeparator -Objective-C/instm/NSDecimalNumber/decimalValue -Objective-C/instm/NSNumber/decimalValue -JavaScript/data/HTMLObjectElement/declare -Objective-C/instm/NSPasteboard/declareTypes:owner: -Objective-C/instm/NSCoder/decodeArrayOfObjCType:count:at: -Objective-C/instm/NSCoder/decodeBoolForKey: -Objective-C/instm/NSKeyedUnarchiver/decodeBoolForKey: -Objective-C/instm/NSCoder/decodeBytesForKey:returnedLength: -Objective-C/instm/NSKeyedUnarchiver/decodeBytesForKey:returnedLength: -Objective-C/instm/NSCoder/decodeBytesWithReturnedLength: -Objective-C/clm/NSUnarchiver/decodeClassName:asClassName: -Objective-C/instm/NSUnarchiver/decodeClassName:asClassName: -Objective-C/instm/NSCoder/decodeDataObject -Objective-C/instm/NSCoder/decodeDoubleForKey: -Objective-C/instm/NSKeyedUnarchiver/decodeDoubleForKey: -Objective-C/instm/NSCoder/decodeFloatForKey: -Objective-C/instm/NSKeyedUnarchiver/decodeFloatForKey: -Objective-C/instm/NSCoder/decodeInt32ForKey: -Objective-C/instm/NSKeyedUnarchiver/decodeInt32ForKey: -Objective-C/instm/NSCoder/decodeInt64ForKey: -Objective-C/instm/NSKeyedUnarchiver/decodeInt64ForKey: -Objective-C/instm/NSCoder/decodeIntegerForKey: -Objective-C/instm/NSCoder/decodeIntForKey: -Objective-C/instm/NSKeyedUnarchiver/decodeIntForKey: -Objective-C/instm/NSCoder/decodeNXColor -Objective-C/instm/NSCoder/decodeNXObject -Objective-C/instm/NSCoder/decodeObject -Objective-C/instm/NSCoder/decodeObjectForKey: -Objective-C/instm/NSKeyedUnarchiver/decodeObjectForKey: -Objective-C/instm/NSCoder/decodePoint -Objective-C/instm/NSCoder/decodePointForKey: -Objective-C/instm/NSPortCoder/decodePortObject -Objective-C/instm/NSCoder/decodePropertyList -Objective-C/instm/NSCoder/decodeQTTimeForKey: -Objective-C/instm/NSCoder/decodeQTTimeRangeForKey: -Objective-C/instm/NSCoder/decodeRect -Objective-C/instm/NSCoder/decodeRectForKey: -Objective-C/instm/NSCoder/decodeSize -Objective-C/instm/NSCoder/decodeSizeForKey: -Objective-C/instm/NSCoder/decodeSMPTETimeForKey: -Objective-C/instm/QTSampleBuffer/decodeTime -Objective-C/instm/NSCoder/decodeValueOfObjCType:at: -Objective-C/instm/NSCoder/decodeValuesOfObjCTypes: -C++/instm/IOBlockStorageDriver/decommissionMedia -Objective-C/clm/NSCharacterSet/decomposableCharacterSet -Objective-C/instm/NSString/decomposedStringWithCanonicalMapping -Objective-C/instm/NSString/decomposedStringWithCompatibilityMapping -C/func/-/DecompressImage -C/tdef/-/DecompressorComponent -C/func/-/DecompressSequenceBegin -C/func/-/DecompressSequenceBeginS -C/func/-/DecompressSequenceFrame -C/func/-/DecompressSequenceFrameS -C/func/-/DecompressSequenceFrameWhen -JavaScript/clconst/WebGLRenderingContext/DECR -JavaScript/clconst/WebGLRenderingContext/DECR_WRAP -Objective-C/instm/QTSampleBuffer/decrementSampleUseCount -JavaScript/cl/-/DedicatedWorkerContext -Objective-C/clm/NSScreen/deepestScreen -Objective-C/instm/NSWindow/deepestScreen -C/func/-/def_prog_mode -C/func/-/def_shell_mode -C/func/-/default_colors -C/func/-/default_store -Objective-C/clm/CALayer/defaultActionForKey: -Objective-C/intfcm/NSAnimatablePropertyContainer/defaultAnimationForKey: -Objective-C/instm/NSLayoutManager/defaultAttachmentScaling -C++/data/IOAudioEngine/defaultAudioControls -Objective-C/instm/NSLayoutManager/defaultBaselineOffsetForFont: -Objective-C/clm/NSDecimalNumber/defaultBehavior -Objective-C/instm/NSWindow/defaultButtonCell -Objective-C/instm/NSPrintPanel/defaultButtonTitle -Objective-C/clm/CalCalendarStore/defaultCalendarStore -Objective-C/clm/NSDistributedNotificationCenter/defaultCenter -Objective-C/clm/NSNotificationCenter/defaultCenter -JavaScript/data/Document/defaultCharset -JavaScript/data/HTMLInputElement/defaultChecked -Objective-C/clm/PSFeedSettings/defaultClientSettings -Objective-C/clm/NSGarbageCollector/defaultCollector -C/func/-/DefaultColormap -C/func/-/DefaultColormapOfScreen -Objective-C/instm/NSBrowser/defaultColumnWidth -Objective-C/clm/NSTokenFieldCell/defaultCompletionDelay -Objective-C/clm/NSTokenField/defaultCompletionDelay -C/econst/-/defaultComponentAnyFlags -C/econst/-/defaultComponentAnyFlagsAnyManufacturer -C/econst/-/defaultComponentAnyFlagsAnyManufacturerAnySubType -C/econst/-/defaultComponentAnyManufacturer -C/econst/-/defaultComponentAnySubType -C/econst/-/defaultComponentIdentical -Objective-C/clm/NSConnection/defaultConnection -Objective-C/clm/XGController(XGControllerCreation)/defaultController -Objective-C/clm/IOBluetoothHostController/defaultController -Objective-C/instm/ABAddressBook/defaultCountryCode -Objective-C/instm/NSURLCredentialStorage/defaultCredentialForProtectionSpace: -Objective-C/clm/NSString/defaultCStringEncoding -Objective-C/instm/NSDateFormatter/defaultDate -Objective-C/clm/NSDecimalNumberHandler/defaultDecimalNumberHandler -C/func/-/DefaultDepth -Objective-C/clm/NSWindow/defaultDepthLimit -C/func/-/DefaultDepthOfScreen -Objective-C/intfm/ApertureExportPlugIn/defaultDirectory -Objective-C/clm/NSExceptionHandler/defaultExceptionHandler -Objective-C/clm/PSFeedSettings/defaultFeedSettings -Objective-C/instm/NSObjectController/defaultFetchRequest -Objective-C/instm/WebPreferences/defaultFixedFontSize -Objective-C/clm/NSBezierPath/defaultFlatness -Objective-C/clm/NSView/defaultFocusRingType -Objective-C/clm/NSCell/defaultFocusRingType -Objective-C/instm/WebPreferences/defaultFontSize -Objective-C/clm/NSDateFormatter/defaultFormatterBehavior -Objective-C/clm/NSNumberFormatter/defaultFormatterBehavior -C/func/-/DefaultGC -C/func/-/DefaultGCOfScreen -Objective-C/instm/XGController/defaultGrid -Objective-C/clm/CBIdentityAuthority/defaultIdentityAuthority -Objective-C/clm/QTCaptureDevice/defaultInputDeviceWithMediaType: -Objective-C/clm/NSBezierPath/defaultLineCapStyle -Objective-C/instm/NSFont/defaultLineHeightForFont -Objective-C/instm/NSLayoutManager/defaultLineHeightForFont: -Objective-C/clm/NSBezierPath/defaultLineJoinStyle -Objective-C/clm/NSBezierPath/defaultLineWidth -Objective-C/clm/NSFileManager/defaultManager -Objective-C/clm/NSView/defaultMenu -Objective-C/clm/NSCell/defaultMenu -Objective-C/clm/NSBezierPath/defaultMiterLimit -Objective-C/instm/ABAddressBook/defaultNameOrdering -Objective-C/instm/NSSocketPortNameServer/defaultNameServerPortNumber -Objective-C/clm/NSParagraphStyle/defaultParagraphStyle -Objective-C/instm/NSTextView/defaultParagraphStyle -Objective-C/clm/NSOpenGLView/defaultPixelFormat -Objective-C/clm/NSObject/defaultPlaceholderForMarker:withBinding: -JavaScript/data/HTMLMediaElement/defaultPlaybackRate -JavaScript/data/Event/defaultPrevented -Objective-C/clm/NSPrintInfo/defaultPrinter -Objective-C/clm/NSNotificationQueue/defaultQueue -C/func/-/DefaultRootWindow -Objective-C/instm/NSUserDefaultsController/defaults -C/func/-/DefaultScreen -C/func/-/DefaultScreenOfDisplay -JavaScript/data/HTMLOptionElement/defaultSelected -Objective-C/clm/ODSession/defaultSession -Objective-C/clm/ScreenSaverDefaults/defaultsForModuleWithName: -JavaScript/data/DOMWindow/defaultStatus -Objective-C/instm/NSScriptClassDescription/defaultSubcontainerAttributeKey -Objective-C/instm/NSParagraphStyle/defaultTabInterval -Objective-C/instm/WebPreferences/defaultTextEncodingName -Objective-C/clm/NSTimeZone/defaultTimeZone -Objective-C/clm/NSTokenFieldCell/defaultTokenizingCharacterSet -Objective-C/clm/NSTokenField/defaultTokenizingCharacterSet -Objective-C/instm/NSDocumentController/defaultType -Objective-C/clm/NSTypesetter/defaultTypesetterBehavior -Objective-C/instm/NSAttributeDescription/defaultValue -JavaScript/data/HTMLTextAreaElement/defaultValue -JavaScript/data/HTMLInputElement/defaultValue -Objective-C/clm/CAAnimation/defaultValueForKey: -Objective-C/clm/CAEmitterCell/defaultValueForKey: -Objective-C/clm/CALayer/defaultValueForKey: -JavaScript/data/Document/defaultView -C/func/-/DefaultVisual -C/func/-/DefaultVisualOfScreen -Objective-C/clm/NSSpeechSynthesizer/defaultVoice -Objective-C/clm/NSBezierPath/defaultWindingRule -Objective-C/clm/NSParagraphStyle/defaultWritingDirectionForLanguage: -JavaScript/data/HTMLScriptElement/defer -C/func/-/define_key -Objective-C/instm/CIImage/definition -Objective-C/instm/CISampler/definition -Objective-C/instm/AMAction/definition -C/func/-/del_curterm -C/func/-/delay_output -C/func/-/delch -Objective-C/instm/SFAuthorizationView/delegate -Objective-C/instm/AMWorkflowController/delegate -Objective-C/instm/QCCompositionPickerView/delegate -Objective-C/instm/QCCompositionParameterView/delegate -Objective-C/instm/NSCustomImageRep/delegate -Objective-C/instm/NSExceptionHandler/delegate -Objective-C/instm/SBApplication/delegate -Objective-C/instm/NSFontManager/delegate -Objective-C/instm/PDFDocument/delegate -Objective-C/instm/PDFView/delegate -Objective-C/instm/CAAnimation/delegate -Objective-C/instp/CAAnimation/delegate -Objective-C/instm/NSDatePicker/delegate -Objective-C/instm/NSSavePanel/delegate -Objective-C/instm/ISyncSessionDriver/delegate -Objective-C/instm/QTCaptureDecompressedAudioOutput/delegate -Objective-C/instm/NSComboBox/delegate -Objective-C/instm/QTCaptureFileOutput/delegate -Objective-C/instm/QTCaptureVideoPreviewOutput/delegate -Objective-C/instm/NSAnimation/delegate -Objective-C/instm/QTCaptureView/delegate -Objective-C/instm/NSMatrix/delegate -Objective-C/instm/NSDatePickerCell/delegate -Objective-C/instm/NSDrawer/delegate -Objective-C/instm/NSAlert/delegate -Objective-C/instm/NSLayoutManager/delegate -Objective-C/instm/NSStream/delegate -Objective-C/instm/NSTokenFieldCell/delegate -Objective-C/instm/NSMetadataQuery/delegate -Objective-C/instm/NSTextStorage/delegate -Objective-C/instm/NSSpellServer/delegate -Objective-C/instm/NSSpeechRecognizer/delegate -Objective-C/instm/NSNetServiceBrowser/delegate -Objective-C/instm/NSTokenField/delegate -Objective-C/instm/NSNetService/delegate -Objective-C/instm/NSSpeechSynthesizer/delegate -Objective-C/instm/NSBrowser/delegate -Objective-C/instm/ODQuery/delegate -Objective-C/instp/ODQuery/delegate -Objective-C/instm/NSSound/delegate -Objective-C/instm/NSPathCell/delegate -Objective-C/instp/QLPreviewPanel/delegate -Objective-C/instm/QLPreviewPanel/delegate -Objective-C/instm/NSTabView/delegate -Objective-C/instm/NSTextField/delegate -Objective-C/instp/PSClient/delegate -Objective-C/instm/XGAuthenticator/delegate -Objective-C/instm/IKImageBrowserView/delegate -Objective-C/instp/NSServerNotificationCenter/delegate -Objective-C/instm/NSServerNotificationCenter/delegate -Objective-C/instm/XGConnection/delegate -Objective-C/instm/XGFileDownload/delegate -Objective-C/instm/NSToolbar/delegate -Objective-C/instm/NSConnection/delegate -Objective-C/instm/NSCollectionView/delegate -Objective-C/instm/NSRuleEditor/delegate -Objective-C/instm/IOBluetoothHostController/delegate -Objective-C/instm/OBEXFileTransferServices/delegate -Objective-C/instm/IOBluetoothDeviceInquiry/delegate -Objective-C/instm/NSSplitView/delegate -Objective-C/instm/NSTextView/delegate -Objective-C/instm/NSImage/delegate -Objective-C/instm/NSTableView/delegate -Objective-C/instm/NSWindow/delegate -Objective-C/instm/NSPathControl/delegate -Objective-C/instm/QTMovie/delegate -Objective-C/instm/QTCaptureDecompressedVideoOutput/delegate -Objective-C/instm/QTMovieView/delegate -Objective-C/instp/IKCameraDeviceView/delegate -Objective-C/instp/IKDeviceBrowserView/delegate -Objective-C/instm/NSOutlineView/delegate -Objective-C/instm/IKSaveOptions/delegate -Objective-C/instm/IKScannerDeviceView/delegate -Objective-C/instm/NSApplication/delegate -Objective-C/instp/IKSaveOptions/delegate -Objective-C/instm/IKDeviceBrowserView/delegate -Objective-C/instp/IKScannerDeviceView/delegate -Objective-C/instm/IKCameraDeviceView/delegate -Objective-C/instm/NSMenu/delegate -Objective-C/instm/NSText/delegate -Objective-C/instp/CLLocationManager/delegate -Objective-C/instm/CLLocationManager/delegate -Objective-C/instm/NSKeyedArchiver/delegate -Objective-C/instm/NSKeyedUnarchiver/delegate -Objective-C/instm/NSPort/delegate -Objective-C/instm/NSCache/delegate -Objective-C/instm/NSMachPort/delegate -Objective-C/instm/NSXMLParser/delegate -Objective-C/instm/NSFileManager/delegate -Objective-C/instm/IKImageView/delegate -Objective-C/instp/CALayer/delegate -Objective-C/instm/CALayer/delegate -Objective-C/instp/IKImageView/delegate -Objective-C/instm/IMKInputController/delegate; -C/func/-/DelegateComponentCall -Objective-C/instm/QTMovieView/delete: -Objective-C/instm/WebView/delete: -Objective-C/instm/NSText/delete: -JavaScript/clconst/WebGLRenderingContext/DELETE_STATUS -Objective-C/instm/NSObject/deleteAllRecordsForEntityName:error: -Objective-C/instm/NSResponder/deleteBackward: -Objective-C/instm/NSResponder/deleteBackwardByDecomposingPreviousCharacter: -JavaScript/instm/WebGLRenderingContext/deleteBuffer -JavaScript/instm/HTMLTableElement/deleteCaption -JavaScript/instm/HTMLTableRowElement/deleteCell -Objective-C/instm/NSMutableString/deleteCharactersInRange: -Objective-C/instm/NSMutableAttributedString/deleteCharactersInRange: -JavaScript/instm/Range/deleteContents -C++/instm/IOBlockStorageDriver/deleteContext -JavaScript/instm/InspectorBackend/deleteCookie -Objective-C/instm/NSHTTPCookieStorage/deleteCookie: -JavaScript/instm/CharacterData/deleteData -Objective-C/instm/NSManagedObjectContext/deletedObjects -Objective-C/instm/NSResponder/deleteForward: -JavaScript/instm/WebGLRenderingContext/deleteFramebuffer -JavaScript/instm/DOMSelection/deleteFromDocument -C/func/-/DeleteGestaltValue -Objective-C/instm/NSATSTypesetter/deleteGlyphsInRange: -Objective-C/instm/NSLayoutManager/deleteGlyphsInRange: -Objective-C/instm/NSTypesetter/deleteGlyphsInRange: -C/func/-/deleteln -JavaScript/instm/MediaList/deleteMedium -C/func/-/DeleteMovieSegment -Objective-C/instm/NSManagedObjectContext/deleteObject: -JavaScript/instm/WebGLRenderingContext/deleteProgram -Objective-C/instm/ODRecord/deleteRecordAndReturnError: -Objective-C/instm/ISyncSession/deleteRecordWithIdentifier: -JavaScript/instm/WebGLRenderingContext/deleteRenderbuffer -JavaScript/instm/HTMLTableSectionElement/deleteRow -JavaScript/instm/HTMLTableElement/deleteRow -Objective-C/instm/NSRelationshipDescription/deleteRule -JavaScript/instm/CSSMediaRule/deleteRule -JavaScript/instm/CSSStyleSheet/deleteRule -JavaScript/instm/WebKitCSSKeyframesRule/deleteRule -Objective-C/instm/QTTrack/deleteSegment: -Objective-C/instm/QTMovie/deleteSegment: -Objective-C/instm/IKCameraDeviceView/deleteSelectedItems: -Objective-C/instm/WebView/deleteSelection -Objective-C/instm/NSURLDownload/deletesFileUponFailure -JavaScript/instm/WebGLRenderingContext/deleteShader -JavaScript/instm/WebGLRenderingContext/deleteTexture -JavaScript/instm/HTMLTableElement/deleteTFoot -JavaScript/instm/HTMLTableElement/deleteTHead -Objective-C/instm/NSResponder/deleteToBeginningOfLine: -Objective-C/instm/NSResponder/deleteToBeginningOfParagraph: -Objective-C/instm/NSResponder/deleteToEndOfLine: -Objective-C/instm/NSResponder/deleteToEndOfParagraph: -Objective-C/instm/NSResponder/deleteToMark: -C/func/-/DeleteTrackReference -C/func/-/DeleteTrackSegment -Objective-C/intfm/ApertureEditManager/deleteVersions: -Objective-C/instm/NSResponder/deleteWordBackward: -Objective-C/instm/NSResponder/deleteWordForward: -C/tdef/-/DelimiterInfo -Objective-C/instm/NSPrintOperation/deliverResult -C/func/-/delscreen -Objective-C/instm/NSEvent/deltaX -Objective-C/instm/NSEvent/deltaY -Objective-C/instm/NSEvent/deltaZ -C/func/-/delwin -Objective-C/instm/NSWindow/deminiaturize: -Objective-C/instm/NSOperation/dependencies -Objective-C/instm/FxImage/depth -Objective-C/instm/NSScreen/depth -JavaScript/data/WebGLContextAttributes/depth -JavaScript/clconst/WebGLRenderingContext/DEPTH_ATTACHMENT -JavaScript/clconst/WebGLRenderingContext/DEPTH_BITS -JavaScript/clconst/WebGLRenderingContext/DEPTH_BUFFER_BIT -JavaScript/clconst/WebGLRenderingContext/DEPTH_CLEAR_VALUE -JavaScript/clconst/WebGLRenderingContext/DEPTH_COMPONENT -JavaScript/clconst/WebGLRenderingContext/DEPTH_COMPONENT16 -JavaScript/clconst/WebGLRenderingContext/DEPTH_FUNC -JavaScript/clconst/WebGLRenderingContext/DEPTH_RANGE -JavaScript/clconst/WebGLRenderingContext/DEPTH_STENCIL -JavaScript/clconst/WebGLRenderingContext/DEPTH_STENCIL_ATTACHMENT -JavaScript/clconst/WebGLRenderingContext/DEPTH_TEST -JavaScript/clconst/WebGLRenderingContext/DEPTH_WRITEMASK -JavaScript/instm/WebGLRenderingContext/depthFunc -Objective-C/instm/NSWindow/depthLimit -JavaScript/instm/WebGLRenderingContext/depthMask -JavaScript/instm/WebGLRenderingContext/depthRange -C++/instm/IOSharedDataQueue/dequeue -C++/instm/IOPacketQueue/dequeue -C++/instm/IOPacketQueue/dequeueAll -C++/instm/IOStream/dequeueInputEntry -Objective-C/instm/NSNotificationQueue/dequeueNotificationsMatching:coalesceMask: -C/func/-/DequeueOutputEntry -C++/instm/IOService/deRegisterInterestedDriver -C/func/-/derwin -C/func/-/des -C/func/-/DES_cbc_cksum -C/func/-/DES_cfb64_encrypt -C/func/-/DES_cfb_encrypt -C/func/-/DES_crypt -C/func/-/DES_ecb2_encrypt -C/func/-/DES_ecb3_encrypt -C/func/-/DES_ecb_encrypt -C/func/-/DES_ede2_cbc_encrypt -C/func/-/DES_ede2_cfb64_encrypt -C/func/-/DES_ede2_ofb64_encrypt -C/func/-/DES_ede3_cbc_encrypt -C/func/-/DES_ede3_cbcm_encrypt -C/func/-/DES_ede3_cfb64_encrypt -C/func/-/DES_ede3_ofb64_encrypt -C/func/-/DES_enc_read -C/func/-/DES_enc_write -C/func/-/DES_fcrypt -C/func/-/DES_is_weak_key -C/func/-/DES_key_sched -C/func/-/DES_ncbc_encrypt -C/func/-/DES_ofb64_encrypt -C/func/-/DES_ofb_encrypt -C/func/-/DES_pcbc_encrypt -C/func/-/DES_quad_cksum -C/func/-/DES_random_key -C/func/-/des_read_2passwords -C/func/-/des_read_password -C/func/-/des_read_pw -C/func/-/des_read_pw_string -C/func/-/DES_set_key -C/func/-/DES_set_key_checked -C/func/-/DES_set_key_unchecked -C/func/-/DES_set_odd_parity -C/func/-/DES_string_to_2keys -C/func/-/DES_string_to_key -C/func/-/DES_xcbc_encrypt -Objective-C/instm/NSTreeNode/descendantNodeAtIndexPath: -Objective-C/instm/NSFont/descender -Objective-C/instm/NSProxy/description -Objective-C/instm/NSTimeZone/description -Objective-C/instm/DREraseProgressPanel/description -Objective-C/instm/DRBurnProgressPanel/description -Objective-C/instm/DRMSF/description -Objective-C/instm/NSDictionary/description -Objective-C/instm/NSSet/description -Objective-C/instm/NSXMLNode/description -Objective-C/intfm/NSObject/description -Objective-C/clm/NSObject/description -Objective-C/instm/NSArray/description -Objective-C/instm/NSString/description -Objective-C/instm/NSDate/description -Objective-C/instm/NSData/description -Objective-C/instm/CLLocation/description -JavaScript/data/MimeType/description -JavaScript/data/Plugin/description -Objective-C/instp/NSPointerFunctions/descriptionFunction -Objective-C/instm/NSPointerFunctions/descriptionFunction -Objective-C/instm/NSDictionary/descriptionInStringsFileFormat -Objective-C/instm/NSDate/descriptionWithCalendarFormat:timeZone:locale: -Objective-C/instm/DRMSF/descriptionWithFormat: -Objective-C/instm/NSDecimalNumber/descriptionWithLocale: -Objective-C/instm/NSNumber/descriptionWithLocale: -Objective-C/instm/NSDictionary/descriptionWithLocale: -Objective-C/instm/NSSet/descriptionWithLocale: -Objective-C/instm/NSArray/descriptionWithLocale: -Objective-C/instm/NSDate/descriptionWithLocale: -Objective-C/instm/NSDictionary/descriptionWithLocale:indent: -Objective-C/instm/NSArray/descriptionWithLocale:indent: -Objective-C/instm/NSScriptObjectSpecifier/descriptor -Objective-C/instm/NSAppleEventDescriptor/descriptorAtIndex: -Objective-C/instm/NSAppleEventDescriptor/descriptorForKeyword: -Objective-C/instm/NSAppleEventDescriptor/descriptorType -Objective-C/clm/NSAppleEventDescriptor/descriptorWithBoolean: -Objective-C/clm/NSAppleEventDescriptor/descriptorWithDescriptorType:bytes:length: -Objective-C/clm/NSAppleEventDescriptor/descriptorWithDescriptorType:data: -Objective-C/clm/NSAppleEventDescriptor/descriptorWithEnumCode: -Objective-C/clm/NSAppleEventDescriptor/descriptorWithInt32: -Objective-C/clm/NSAppleEventDescriptor/descriptorWithString: -Objective-C/clm/NSAppleEventDescriptor/descriptorWithTypeCode: -Objective-C/intfm/WebDocumentText/deselectAll -JavaScript/instm/SVGSVGElement/deselectAll -Objective-C/instm/ABPeoplePickerView/deselectAll: -Objective-C/instm/NSTableView/deselectAll: -Objective-C/instm/NSMatrix/deselectAllCells -Objective-C/instm/NSTableView/deselectColumn: -Objective-C/instm/ABPeoplePickerView/deselectGroup: -Objective-C/instm/ABPeoplePickerView/deselectIdentifier:forPerson: -Objective-C/instm/NSComboBox/deselectItemAtIndex: -Objective-C/instm/NSComboBoxCell/deselectItemAtIndex: -Objective-C/instm/ABPeoplePickerView/deselectRecord: -Objective-C/instm/NSTableView/deselectRow: -Objective-C/instm/NSMatrix/deselectSelectedCell -Objective-C/intfm/NSObjCTypeSerializationCallBack/deserializeObjectAt:ofObjCType:fromData:atCursor: -Objective-C/clm/NSDeserializer/deserializePropertyListFromData:atCursor:mutableContainers: -Objective-C/clm/NSDeserializer/deserializePropertyListFromData:mutableContainers: -Objective-C/clm/NSDeserializer/deserializePropertyListLazilyFromData:atCursor:length:mutableContainers: -JavaScript/data/HTMLDocument/designMode -Objective-C/instp/CLLocationManager/desiredAccuracy -Objective-C/instm/CLLocationManager/desiredAccuracy -C/data/-/desiredDomainState -Objective-C/instm/NSWorkspace/desktopImageOptionsForScreen: -Objective-C/instm/NSWorkspace/desktopImageURLForScreen: -Objective-C/instm/PDFAnnotationLink/destination -Objective-C/instm/NSNibConnector/destination -Objective-C/instm/PDFOutline/destination -Objective-C/instm/PDFActionGoTo/destination -Objective-C/instm/XGFileDownload/destination -Objective-C/instm/NSMigrationManager/destinationContext -Objective-C/instm/NSRelationshipDescription/destinationEntity -Objective-C/instm/NSMigrationManager/destinationEntityForEntityMapping: -Objective-C/instm/NSEntityMapping/destinationEntityName -Objective-C/instm/NSEntityMapping/destinationEntityVersionHash -Objective-C/instm/NSMigrationManager/destinationInstancesForEntityMappingNamed:sourceInstances: -Objective-C/instm/NSMigrationManager/destinationModel -Objective-C/instm/NSFileManager/destinationOfSymbolicLinkAtPath:error: -Objective-C/intfm/ApertureExportPlugIn/destinationPath -C/func/-/destroy_fftsetup -C/func/-/destroy_fftsetupD -C++/instm/IOAGPDevice/destroyAGPSpace -Objective-C/instm/NSPrintOperation/destroyContext -C/func/-/DestroyEffect -C++/instm/IOStream/destroyQueues -C++/instm/IOSCSIParallelInterfaceController/DestroyTargetForID -Objective-C/instm/NSXMLNode/detach -C++/instm/IOService/detach -JavaScript/instm/Range/detach -JavaScript/instm/NodeIterator/detach -C++/instm/IORegistryEntry/detachAbove -C++/instm/IORegistryEntry/detachAll -C++/instm/IOAudioDevice/detachAllAudioPorts -Objective-C/instm/NSColorPicker/detachColorList: -Objective-C/instm/NSColorPanel/detachColorList: -Objective-C/intfm/NSColorPickingDefault/detachColorList: -C++/instm/IONetworkController/detachDebuggerClient -Objective-C/clm/NSApplication/detachDrawingThread:toTarget:withObject: -C++/instm/IORegistryEntry/detachFromChild -Objective-C/instm/QTMovie/detachFromCurrentThread -C++/instm/IONetworkInterface/detachFromDataLinkLayer -C++/instm/IORegistryEntry/detachFromParent -C++/instm/IONetworkController/detachInterface -Objective-C/clm/NSThread/detachNewThreadSelector:toTarget:withObject: -C/func/-/DetachResource -C/func/-/DetachResourceFile -JavaScript/instm/WebGLRenderingContext/detachShader -Objective-C/instm/NSMenuView/detachSubmenu -C++/clm/IOAudioControl/detachUserClientsAction -JavaScript/data/CustomEvent/detail -JavaScript/data/UIEvent/detail -Objective-C/instm/SFCertificateView/detailsDisplayed -Objective-C/instm/NSManagedObjectContext/detectConflictsForObject: -Objective-C/instm/NSBundle/developmentLocalization -Objective-C/instp/NSTouch/device -Objective-C/instm/QTCaptureDeviceInput/device -Objective-C/instm/NSTouch/device -Objective-C/instm/DRBurn/device -Objective-C/instm/DRErase/device -Objective-C/instm/IOBluetoothDevicePair/device -Objective-C/instp/IOBluetoothSDPServiceRecord/device -Objective-C/instm/QTCaptureDevice/deviceAttributes -Objective-C/intfm/IKDeviceBrowserViewDelegate/deviceBrowserView:didEncounterError: -Objective-C/intfm/IKDeviceBrowserViewDelegate/deviceBrowserView:selectionDidChange: -Objective-C/clm/NSColorSpace/deviceCMYKColorSpace -Objective-C/instm/NSPrinter/deviceDescription -Objective-C/instm/NSScreen/deviceDescription -Objective-C/instm/NSWindow/deviceDescription -Objective-C/clm/DRDevice/deviceForBSDName: -Objective-C/clm/DRDevice/deviceForIORegistryEntryPath: -Objective-C/clm/NSColorSpace/deviceGrayColorSpace -Objective-C/instm/NSEvent/deviceID -Objective-C/clm/QTCaptureDeviceInput/deviceInputWithDevice: -Objective-C/instm/NSObject(IOBluetoothDeviceInquiryDelegate)/deviceInquiryComplete:error:aborted: -Objective-C/instm/NSObject(IOBluetoothDeviceInquiryDelegate)/deviceInquiryDeviceFound:device: -Objective-C/instm/NSObject(IOBluetoothDeviceInquiryDelegate)/deviceInquiryDeviceNameUpdated:device:devicesRemaining: -Objective-C/instm/NSObject(IOBluetoothDeviceInquiryDelegate)/deviceInquiryStarted: -Objective-C/instm/NSObject(IOBluetoothDeviceInquiryDelegate)/deviceInquiryUpdatingDeviceNamesStarted:devicesRemaining: -JavaScript/data/DOMWindow/devicePixelRatio -C++/instm/IOUSBInterface/DeviceRequest -C++/instm/IOUSBController/DeviceRequest -C++/instm/IOUSBDevice/DeviceRequest -Objective-C/clm/NSColorSpace/deviceRGBColorSpace -Objective-C/clm/DRDevice/devices -Objective-C/instm/DRSetupPanel/deviceSelectionChanged: -Objective-C/clm/IOBluetoothDeviceSelectorController/deviceSelector -Objective-C/instm/NSTouch/deviceSize -Objective-C/instp/NSTouch/deviceSize -C++/data/IOAudioEngine/deviceStartedAudioEngine -Objective-C/clm/QTCaptureDevice/deviceWithUniqueID: -C/func/-/devname -C/func/-/devname_r -C/econst/-/dfClipToTextBox -C/econst/-/dfDontAutoScale -C/econst/-/dfDontDisplay -C/econst/-/dfHorizScroll -C/econst/-/dfReverseScroll -C/econst/-/dfScrollIn -C/econst/-/dfScrollOut -C/econst/-/dfShrinkTextBoxToFit -C/econst/-/dfUseMovieBGColor -C/func/-/dh -C/func/-/DH_check -C/func/-/DH_compute_key -C/func/-/DH_free -C/func/-/DH_generate_key -C/func/-/DH_generate_parameters -C/func/-/DH_get_default_method -C/func/-/DH_get_ex_data -C/func/-/DH_get_ex_new_index -C/func/-/DH_new -C/func/-/DH_new_method -C/func/-/DH_OpenSSL -C/func/-/DH_set_default_method -C/func/-/DH_set_ex_data -C/func/-/DH_set_method -C/func/-/DH_size -C/func/-/DHCPInfoGetLeaseStartTime -C/func/-/DHCPInfoGetOptionData -C/func/-/DHparams_print -C/func/-/DHparams_print_fp -C/tdef/-/DialogPtr -C/tdef/-/DialogRef -Objective-C/instm/NSPrintInfo/dictionary -Objective-C/clm/NSDictionary/dictionary -Objective-C/instm/NSUserDefaults/dictionaryForKey: -Objective-C/clm/NSNetService/dictionaryFromTXTRecordData: -Objective-C/instm/NSMapTable/dictionaryRepresentation -Objective-C/instm/NSUserDefaults/dictionaryRepresentation -Objective-C/clm/NSMutableDictionary/dictionaryWithCapacity: -Objective-C/clm/NSDictionary/dictionaryWithContentsOfFile: -Objective-C/clm/NSDictionary/dictionaryWithContentsOfURL: -Objective-C/clm/NSDictionary/dictionaryWithDictionary: -Objective-C/clm/NSDictionary/dictionaryWithObject:forKey: -Objective-C/clm/NSDictionary/dictionaryWithObjects:forKeys: -Objective-C/clm/NSDictionary/dictionaryWithObjects:forKeys:count: -Objective-C/clm/NSDictionary/dictionaryWithObjectsAndKeys: -C++/instm/IORegistryEntry/dictionaryWithProperties -Objective-C/instm/NSObject/dictionaryWithValuesForKeys: -Objective-C/instm/NSManagedObject/didAccessValueForKey: -Objective-C/instm/SFAuthorizationPluginView/didActivate -Objective-C/instm/NSView/didAddSubview: -Objective-C/instm/NSPersistentStore/didAddToPersistentStoreCoordinator: -Objective-C/instm/NSObject/didChange:valuesAtIndexes:forKey: -Objective-C/instm/NSArrayController/didChangeArrangementCriteria -Objective-C/instm/NSTextView/didChangeText -Objective-C/instm/NSObject/didChangeValueForKey: -Objective-C/instm/NSManagedObject/didChangeValueForKey: -Objective-C/instm/NSObject/didChangeValueForKey:withSetMutation:usingObjects: -Objective-C/instm/NSManagedObject/didChangeValueForKey:withSetMutation:usingObjects: -Objective-C/instm/NSObject/didCommandBySelector:client: -JavaScript/instm/InjectedScriptHost/didCreateWorker -Objective-C/instm/SFAuthorizationPluginView/didDeactivate -C/func/-/DidDeactivate -JavaScript/instm/InjectedScriptHost/didDestroyWorker -JavaScript/instm/InspectorBackend/didEvaluateForTestInFrontend -Objective-C/instm/AMAction/didFinishRunningWithError: -Objective-C/instm/IBPlugin/didLoad -Objective-C/instm/NSURLHandle/didLoadBytes:loadComplete: -Objective-C/instm/NSObject/didMatchString: -Objective-C/instm/NSManagedObject/didSave -Objective-C/instm/NSPreferencePane/didSelect -C++/instm/IOService/didTerminate -Objective-C/instm/NSManagedObject/didTurnIntoFault -Objective-C/instm/NSPreferencePane/didUnselect -Objective-C/instm/QCPlugIn/didValueForInputKeyChange: -C++/instm/IOService/didYouWakeSystem -C/func/-/difftime -JavaScript/data/SVGFEDiffuseLightingElement/diffuseConstant -C/econst/-/diffVolErr -C/econst/-/digiInDoesBW -C/econst/-/digiInDoesColor -C/econst/-/digiInDoesComponent -C/econst/-/digiInDoesComposite -C/econst/-/digiInDoesGenLock -C/econst/-/digiInDoesNTSC -C/econst/-/digiInDoesPAL -C/econst/-/digiInDoesSECAM -C/econst/-/digiInSignalLock -C/econst/-/digiInVTR_Broadcast -C/econst/-/digiOutDoes1 -C/econst/-/digiOutDoes16 -C/econst/-/digiOutDoes2 -C/econst/-/digiOutDoes32 -C/econst/-/digiOutDoes4 -C/econst/-/digiOutDoes8 -C/econst/-/digiOutDoesAsyncGrabs -C/econst/-/digiOutDoesBlend -C/econst/-/digiOutDoesCompress -C/econst/-/digiOutDoesCompressOnly -C/econst/-/digiOutDoesDither -C/econst/-/digiOutDoesDouble -C/econst/-/digiOutDoesHorizFlip -C/econst/-/digiOutDoesHWPlayThru -C/econst/-/digiOutDoesILUT -C/econst/-/digiOutDoesKeyColor -C/econst/-/digiOutDoesMask -C/econst/-/digiOutDoesPlayThruDuringCompress -C/econst/-/digiOutDoesQuad -C/econst/-/digiOutDoesQuarter -C/econst/-/digiOutDoesRotate -C/econst/-/digiOutDoesShrink -C/econst/-/digiOutDoesSixteenth -C/econst/-/digiOutDoesSkew -C/econst/-/digiOutDoesStretch -C/econst/-/digiOutDoesUnreadableScreenBits -C/econst/-/digiOutDoesVertFlip -C/econst/-/digiOutDoesWarp -C/tag/-/DigitizerInfo -C/func/-/digittoint -C/func/-/digittoint_l -C/econst/-/digiUnimpErr -JavaScript/instm/Console/dir -JavaScript/data/HTMLDocument/dir -JavaScript/data/HTMLElement/dir -C/func/-/DirCreate -Objective-C/instm/NSSavePanel/directory -C/func/-/directory -Objective-C/instm/NSDirectoryEnumerator/directoryAttributes -Objective-C/instm/NSFileManager/directoryContentsAtPath: -Objective-C/instm/NSSavePanel/directoryURL -Objective-C/instm/NSScriptCommand/directParameter -C/func/-/dirfd -C/econst/-/dirFulErr -C/tdef/-/DirInfo -C/func/-/dirname -C/econst/-/dirNFErr -JavaScript/instm/Console/dirxml -Objective-C/instm/NSGarbageCollector/disable -Objective-C/instm/FxTexture/disable -C++/instm/IONetworkController/disable -C++/instm/IOEventSource/disable -C++/instm/ATATimerEventSource/disable -C++/instm/IOCommandGate/disable -C++/instm/IOInterruptEventSource/disable -C++/instm/IONotifier/disable -C++/instm/IOTimerEventSource/disable -JavaScript/instm/WebGLRenderingContext/disable -Objective-C/clm/CATransaction/disableActions -C++/instm/IOWorkLoop/disableAllEventSources -C++/instm/IOWorkLoop/disableAllInterrupts -Objective-C/instm/NSGarbageCollector/disableCollectorForPointer: -Objective-C/instm/NSWindow/disableCursorRects -JavaScript/data/HTMLOptionElement/disabled -JavaScript/data/HTMLStyleElement/disabled -JavaScript/data/HTMLButtonElement/disabled -JavaScript/data/HTMLTextAreaElement/disabled -JavaScript/data/HTMLOptGroupElement/disabled -JavaScript/data/HTMLDataGridElement/disabled -JavaScript/data/HTMLSelectElement/disabled -JavaScript/data/HTMLLinkElement/disabled -JavaScript/data/HTMLInputElement/disabled -JavaScript/data/StyleSheet/disabled -Objective-C/clm/NSColor/disabledControlTextColor -JavaScript/instm/InspectorBackend/disableDebugger -Objective-C/instm/QCPlugIn/disableExecution: -Objective-C/instm/NSWindow/disableFlushWindow -C++/instm/IOSCSIParallelInterfaceController/DisableInterrupt -C++/instm/IOService/disableInterrupt -C++/instm/IOFilterInterruptEventSource/disableInterruptOccurred -C++/instm/IOInterruptEventSource/disableInterruptOccurred -Objective-C/instm/NSWindow/disableKeyEquivalentForDefaultButtonCell -C++/instm/IOEthernetController/disablePacketFilter -C++/instm/IONetworkController/disablePacketFilter -JavaScript/instm/InspectorBackend/disableProfiler -JavaScript/instm/InspectorBackend/disableResourceTracking -Objective-C/instm/NSWindow/disableScreenUpdatesUntilFlush -JavaScript/instm/InspectorBackend/disableSearchingForNode -Objective-C/instm/NSProcessInfo/disableSuddenTermination -Objective-C/instm/NSUndoManager/disableUndoRegistration -Objective-C/instm/NSMetadataQuery/disableUpdates -JavaScript/instm/WebGLRenderingContext/disableVertexAttribArray -Objective-C/clm/NSCursor/disappearingItemCursor -Objective-C/instm/CWInterface/disassociate -C++/instm/IOFilterScheme/discard -C++/instm/IOBlockStorageDriver/discard -C++/instm/IOMedia/discard -C++/instm/IOPartitionScheme/discard -C++/instm/IOStorage/discard -Objective-C/instm/NSWindow/discardCachedImage -Objective-C/intfm/NSDiscardableContent/discardContentIfPossible -Objective-C/instm/NSWindow/discardCursorRects -Objective-C/instm/NSView/discardCursorRects -Objective-C/instm/NSController/discardEditing -Objective-C/instm/NSViewController/discardEditing -Objective-C/instm/NSObject/discardEditing -Objective-C/instm/NSWindow/discardEventsMatchingMask:beforeEvent: -Objective-C/instm/NSApplication/discardEventsMatchingMask:beforeEvent: -Objective-C/instm/NSTextInputContext/discardMarkedText -Objective-C/instm/CIFilterGenerator/disconnectObject:withKey:toObject:withKey: -Objective-C/instp/CWConfiguration/disconnectOnLogout -Objective-C/instm/IOBluetoothServiceBrowserController/discover: -Objective-C/instm/IOBluetoothServiceBrowserController/discoverAsSheetForWindow:withRecord: -Objective-C/instm/IOBluetoothServiceBrowserController/discoverWithDeviceAttributes:serviceList:serviceRecord: -Objective-C/instm/NSURLCache/diskCapacity -Objective-C/instm/IMKCandidates/dismissesAutomatically -Objective-C/instm/NSPopUpButtonCell/dismissPopUp -Objective-C/instm/NSPortCoder/dispatch -C/func/-/dispatch -C/func/-/dispatch_after -C/func/-/dispatch_after_f -C/func/-/dispatch_api -C/func/-/dispatch_apply -C/func/-/dispatch_apply_f -C/func/-/dispatch_async -C/func/-/dispatch_async_f -C/func/-/dispatch_debug -C/func/-/dispatch_get_context -C/func/-/dispatch_get_current_queue -C/func/-/dispatch_get_global_queue -C/func/-/dispatch_get_main_queue -C/macro/-/dispatch_get_main_queue -C/func/-/dispatch_group_async -C/func/-/dispatch_group_async_f -C/func/-/dispatch_group_create -C/func/-/dispatch_group_enter -C/func/-/dispatch_group_leave -C/func/-/dispatch_group_notify -C/func/-/dispatch_group_notify_f -C/tdef/-/dispatch_group_t -C/func/-/dispatch_group_wait -C/econst/-/DISPATCH_MACH_SEND_DEAD -C/func/-/dispatch_main -C/func/-/dispatch_object -C/func/-/dispatch_once -C/func/-/dispatch_once_f -C/tdef/-/dispatch_once_t -C/econst/-/DISPATCH_PROC_EXEC -C/econst/-/DISPATCH_PROC_EXIT -C/econst/-/DISPATCH_PROC_FORK -C/econst/-/DISPATCH_PROC_SIGNAL -C/func/-/dispatch_queue_create -C/func/-/dispatch_queue_get_label -C/econst/-/DISPATCH_QUEUE_PRIORITY_DEFAULT -C/econst/-/DISPATCH_QUEUE_PRIORITY_HIGH -C/econst/-/DISPATCH_QUEUE_PRIORITY_LOW -C/tdef/-/dispatch_queue_t -C/func/-/dispatch_release -C/func/-/dispatch_resume -C/func/-/dispatch_retain -C/func/-/dispatch_semaphore_create -C/func/-/dispatch_semaphore_signal -C/func/-/dispatch_semaphore_wait -C/func/-/dispatch_set_context -C/func/-/dispatch_set_finalizer_f -C/func/-/dispatch_set_target_queue -C/func/-/dispatch_source_cancel -C/func/-/dispatch_source_create -C/func/-/dispatch_source_get_data -C/func/-/dispatch_source_get_handle -C/func/-/dispatch_source_get_mask -C/func/-/dispatch_source_merge_data -C/func/-/dispatch_source_set_cancel_handler -C/func/-/dispatch_source_set_cancel_handler_f -C/func/-/dispatch_source_set_event_handler -C/func/-/dispatch_source_set_event_handler_f -C/func/-/dispatch_source_set_timer -C/func/-/dispatch_source_testcancel -C/macro/-/DISPATCH_SOURCE_TYPE_DATA_ADD -C/macro/-/DISPATCH_SOURCE_TYPE_DATA_OR -C/macro/-/DISPATCH_SOURCE_TYPE_MACH_RECV -C/macro/-/DISPATCH_SOURCE_TYPE_MACH_SEND -C/macro/-/DISPATCH_SOURCE_TYPE_PROC -C/macro/-/DISPATCH_SOURCE_TYPE_READ -C/macro/-/DISPATCH_SOURCE_TYPE_SIGNAL -C/tdef/-/dispatch_source_type_t -C/macro/-/DISPATCH_SOURCE_TYPE_TIMER -C/macro/-/DISPATCH_SOURCE_TYPE_VNODE -C/macro/-/DISPATCH_SOURCE_TYPE_WRITE -C/func/-/dispatch_suspend -C/func/-/dispatch_sync -C/func/-/dispatch_sync_f -C/func/-/dispatch_time -C/macro/-/DISPATCH_TIME_FOREVER -C/macro/-/DISPATCH_TIME_NOW -C/tdef/-/dispatch_time_t -C/econst/-/DISPATCH_VNODE_ATTRIB -C/econst/-/DISPATCH_VNODE_DELETE -C/econst/-/DISPATCH_VNODE_EXTEND -C/econst/-/DISPATCH_VNODE_LINK -C/econst/-/DISPATCH_VNODE_RENAME -C/econst/-/DISPATCH_VNODE_REVOKE -C/econst/-/DISPATCH_VNODE_WRITE -C/func/-/dispatch_walltime -JavaScript/instm/DOMWindow/dispatchEvent -JavaScript/instm/DOMApplicationCache/dispatchEvent -JavaScript/instm/AbstractWorker/dispatchEvent -JavaScript/instm/EventTarget/dispatchEvent -JavaScript/instm/IDBRequest/dispatchEvent -JavaScript/instm/EventSource/dispatchEvent -JavaScript/instm/svg/dispatchEvent -JavaScript/instm/MessagePort/dispatchEvent -JavaScript/instm/Notification/dispatchEvent -JavaScript/instm/core/dispatchEvent -JavaScript/instm/WebSocket/dispatchEvent -JavaScript/instm/WorkerContext/dispatchEvent -JavaScript/instm/XMLHttpRequest/dispatchEvent -JavaScript/instm/XMLHttpRequestUpload/dispatchEvent -C++/instm/IOATAController/dispatchNext -JavaScript/instm/InspectorBackend/dispatchOnInjectedScript -Objective-C/instm/NSAppleEventManager/dispatchRawAppleEvent:withRawReply:handlerRefCon: -C++/instm/IOAudioDevice/dispatchTimerEvents -Objective-C/instm/NSDockTile/display -Objective-C/instm/NSWindow/display -Objective-C/instm/NSView/display -Objective-C/instm/CALayer/display -Objective-C/instm/NSPredicateEditorRowTemplate/displayableSubpredicatesOfPredicate: -Objective-C/instm/NSBrowser/displayAllColumns -Objective-C/instm/PDFView/displayBox -C/func/-/DisplayCells -Objective-C/instm/NSBrowser/displayColumn: -Objective-C/instm/NSSpeechRecognizer/displayedCommandsTitle -Objective-C/instm/ABPeoplePickerView/displayedProperty -Objective-C/instp/ABPeoplePickerView/displayedProperty -C/func/-/DisplayHeight -C/func/-/DisplayHeightMM -Objective-C/instm/NSWindow/displayIfNeeded -Objective-C/instm/NSView/displayIfNeeded -Objective-C/instm/CALayer/displayIfNeeded -Objective-C/instm/NSView/displayIfNeededIgnoringOpacity -Objective-C/instm/NSView/displayIfNeededInRect: -Objective-C/instm/NSView/displayIfNeededInRectIgnoringOpacity: -Objective-C/instm/NSObject/displayLayer: -Objective-C/instm/PDFView/displayMode -Objective-C/instm/NSToolbar/displayMode -Objective-C/instm/NSFont/displayName -Objective-C/instm/NSDocument/displayName -Objective-C/instm/ISyncClient/displayName -Objective-C/instm/DRDevice(InfoConvenience)/displayName -Objective-C/instm/NSFileManager/displayNameAtPath: -Objective-C/instm/NSLocale/displayNameForKey:value: -Objective-C/instm/NSDocumentController/displayNameForType: -C/func/-/DisplayOfCCC -C/func/-/DisplayOfScreen -Objective-C/binding/NSBox/displayPatternTitle1 -Objective-C/binding/NSPanel/displayPatternTitle1 -Objective-C/binding/NSWindow/displayPatternTitle1 -Objective-C/binding/NSTextFieldCell/displayPatternValue1 -Objective-C/binding/NSTokenField/displayPatternValue1 -Objective-C/binding/NSSecureTextFieldCell/displayPatternValue1 -Objective-C/binding/NSTableColumn/displayPatternValue1 -Objective-C/binding/NSTextField/displayPatternValue1 -Objective-C/binding/NSSecureTextField/displayPatternValue1 -Objective-C/binding/NSTokenFieldCell/displayPatternValue1 -C/func/-/DisplayPlanes -Objective-C/instm/NSView/displayRect: -Objective-C/instm/NSView/displayRectIgnoringOpacity: -Objective-C/instm/NSView/displayRectIgnoringOpacity:inContext: -Objective-C/instm/PDFPage/displaysAnnotations -Objective-C/instm/PDFView/displaysAsBook -Objective-C/instm/IKScannerDeviceView/displaysDownloadsDirectoryControl -Objective-C/instp/IKCameraDeviceView/displaysDownloadsDirectoryControl -Objective-C/instp/IKScannerDeviceView/displaysDownloadsDirectoryControl -Objective-C/instm/IKCameraDeviceView/displaysDownloadsDirectoryControl -Objective-C/instm/NSTextView/displaysLinkToolTips -Objective-C/instm/IKDeviceBrowserView/displaysLocalCameras -Objective-C/instp/IKDeviceBrowserView/displaysLocalCameras -Objective-C/instm/IKDeviceBrowserView/displaysLocalScanners -Objective-C/instp/IKDeviceBrowserView/displaysLocalScanners -Objective-C/instp/IKDeviceBrowserView/displaysNetworkCameras -Objective-C/instm/IKDeviceBrowserView/displaysNetworkCameras -Objective-C/instm/IKDeviceBrowserView/displaysNetworkScanners -Objective-C/instp/IKDeviceBrowserView/displaysNetworkScanners -Objective-C/instm/PDFView/displaysPageBreaks -Objective-C/instm/IKCameraDeviceView/displaysPostProcessApplicationControl -Objective-C/instp/IKCameraDeviceView/displaysPostProcessApplicationControl -Objective-C/instp/IKScannerDeviceView/displaysPostProcessApplicationControl -Objective-C/instm/IKScannerDeviceView/displaysPostProcessApplicationControl -Objective-C/instp/QLPreviewPanel/displayState -Objective-C/instm/QLPreviewPanel/displayState -C/func/-/DisplayString -Objective-C/instm/NSWindow/displaysWhenScreenProfileChanges -C++/instm/IOUSBDevice/DisplayUserNotification -Objective-C/instm/NSRuleEditor/displayValuesForRow: -Objective-C/instm/NSRuleEditor/displayValuesKeyPath -Objective-C/instm/SFAuthorizationPluginView/displayView -C/func/-/DisplayWidth -C/func/-/DisplayWidthMM -C/func/-/DisposeAliasFilterUPP -C/func/-/DisposeAUGraph -C/func/-/DisposeCDataHandlerUPP -C/func/-/DisposeCharDataHandlerUPP -C/func/-/DisposeCMBitmapCallBackUPP -C/func/-/DisposeCMConcatCallBackUPP -C/func/-/DisposeCMFlattenUPP -C/func/-/DisposeCMMIterateUPP -C/func/-/DisposeCMProfileAccessUPP -C/func/-/DisposeCMProfileFilterUPP -C/func/-/DisposeCMProfileIterateUPP -C/func/-/DisposeCodecNameList -C/func/-/DisposeCommentHandlerUPP -C/func/-/DisposeComponentFunctionUPP -C/func/-/DisposeComponentMPWorkFunctionUPP -C/func/-/DisposeComponentRoutineUPP -C/func/-/DisposeDataBrowserAcceptDragUPP -C/func/-/DisposeDataBrowserAddDragItemUPP -C/func/-/DisposeDataBrowserDrawItemUPP -C/func/-/DisposeDataBrowserEditItemUPP -C/func/-/DisposeDataBrowserGetContextualMenuUPP -C/func/-/DisposeDataBrowserHitTestUPP -C/func/-/DisposeDataBrowserItemAcceptDragUPP -C/func/-/DisposeDataBrowserItemCompareUPP -C/func/-/DisposeDataBrowserItemDataUPP -C/func/-/DisposeDataBrowserItemDragRgnUPP -C/func/-/DisposeDataBrowserItemHelpContentUPP -C/func/-/DisposeDataBrowserItemNotificationUPP -C/func/-/DisposeDataBrowserItemNotificationWithItemUPP -C/func/-/DisposeDataBrowserItemReceiveDragUPP -C/func/-/DisposeDataBrowserItemUPP -C/func/-/DisposeDataBrowserPostProcessDragUPP -C/func/-/DisposeDataBrowserReceiveDragUPP -C/func/-/DisposeDataBrowserSelectContextualMenuUPP -C/func/-/DisposeDataBrowserTrackingUPP -C/func/-/DisposeDataHCompletionUPP -C/func/-/DisposeEndDocumentHandlerUPP -C/func/-/DisposeEndElementHandlerUPP -C/func/-/DisposeFNSubscriptionUPP -C/func/-/DisposeFSVolumeEjectUPP -C/func/-/DisposeFSVolumeMountUPP -C/func/-/DisposeFSVolumeUnmountUPP -C/func/-/DisposeGetMissingComponentResourceUPP -C/func/-/DisposeImageCodecDrawBandCompleteUPP -C/func/-/DisposeImageCodecMPDrawBandUPP -C/func/-/DisposeImageCodecTimeTriggerUPP -C/func/-/DisposeIOCompletionUPP -C/func/-/DisposeMovieEditState -C/func/-/DisposeMovieExportGetDataUPP -C/func/-/DisposeMovieExportGetPropertyUPP -C/func/-/DisposeMovieExportStageReachedCallbackUPP -C/func/-/DisposeMovieTrack -C/func/-/DisposeMusicEventIterator -C/func/-/DisposeMusicPlayer -C/func/-/DisposeMusicSequence -C/func/-/DisposePMIdleUPP -C/func/-/DisposePreprocessInstructionHandlerUPP -C/func/-/DisposeQTBandwidthNotificationUPP -C/func/-/DisposeQTTrackPropertyListenerUPP -C/func/-/DisposeResErrUPP -C/func/-/DisposeSCModalFilterUPP -C/func/-/DisposeSCModalHookUPP -C/func/-/DisposeSelectorFunctionUPP -C/func/-/DisposeSpeechChannel -C/func/-/DisposeSpeechDoneUPP -C/func/-/DisposeSpeechErrorUPP -C/func/-/DisposeSpeechPhonemeUPP -C/func/-/DisposeSpeechSyncUPP -C/func/-/DisposeSpeechTextDoneUPP -C/func/-/DisposeSpeechWordUPP -C/func/-/DisposeSRCallBackUPP -C/func/-/DisposeStartDocumentHandlerUPP -C/func/-/DisposeStartElementHandlerUPP -C/func/-/DisposeTextToUnicodeInfo -C/func/-/DisposeTrackEditState -C/func/-/DisposeTrackMedia -C/func/-/DisposeUnicodeToTextFallbackUPP -C/func/-/DisposeUnicodeToTextInfo -C/func/-/DisposeUnicodeToTextRunInfo -C/func/-/DisposeVdigIntUPP -Objective-C/instm/NSImage/dissolveToPoint:fraction: -Objective-C/instm/NSImage/dissolveToPoint:fromRect:fraction: -Objective-C/instm/CLLocationManager/distanceFilter -Objective-C/instp/CLLocationManager/distanceFilter -Objective-C/instm/CLLocation/distanceFromLocation: -Objective-C/clm/NSDate/distantFuture -Objective-C/clm/NSDate/distantPast -Objective-C/instm/NSURLProtectionSpace/distinguishedNames -Objective-C/instm/ABGroup/distributionIdentifierForProperty:person: -JavaScript/clconst/WebGLRenderingContext/DITHER -C/econst/-/ditherCopy -C/func/-/div -Objective-C/instm/NSSplitView/dividerColor -Objective-C/instm/NSSplitView/dividerStyle -Objective-C/instm/NSSplitView/dividerThickness -C/func/-/dladdr -C/func/-/dlclose -C/func/-/dlerror -C/func/-/dlopen -C/func/-/dlopen_preflight -C/func/-/dlsym -C/func/-/dMultMatMat_16x16 -C/func/-/dMultMatMat_32x32 -C/func/-/dMultMatMat_4x4 -C/func/-/dMultMatMat_8x8 -C/func/-/dMultMatVec_16x16 -C/func/-/dMultMatVec_32x32 -C/func/-/dMultMatVec_4x4 -C/func/-/dMultMatVec_8x8 -C/func/-/dMultVecMat_16x16 -C/func/-/dMultVecMat_32x32 -C/func/-/dMultVecMat_4x4 -C/func/-/dMultVecMat_8x8 -C/func/-/DMX -C/func/-/DMXAddBackendInput -C/func/-/DMXAddConsoleInput -C/func/-/DMXAddInput -C/func/-/DMXAddScreen -C/func/-/DMXChangeDesktopAttributes -C/func/-/DMXChangeScreensAttributes -C/func/-/DMXForceWindowCreation -C/func/-/DMXGetDesktopAttributes -C/func/-/DMXGetInputAttributes -C/func/-/DMXGetInputCount -C/func/-/DMXGetScreenAttributes -C/func/-/DMXGetScreenCount -C/func/-/DMXGetWindowAttributes -C/func/-/DMXQueryExtension -C/func/-/DMXQueryVersion -C/func/-/DMXRemoveInput -C/func/-/DMXRemoveScreen -C/func/-/DMXSync -C/func/-/dn_comp -C/func/-/dn_expand -C/func/-/dn_skipname -C/func/-/DNSServiceAddRecord -C/func/-/DNSServiceBrowse -C/func/-/DNSServiceBrowserCreate -C/tdef/-/DNSServiceBrowseReply -C/func/-/DNSServiceConstructFullName -C/func/-/DNSServiceCreateConnection -C/func/-/DNSServiceDiscovery_handleReply -C/func/-/DNSServiceDiscoveryDeallocate -C/func/-/DNSServiceDiscoveryMachPort -C/func/-/DNSServiceDomainEnumerationCreate -C/tdef/-/DNSServiceDomainEnumReply -C/func/-/DNSServiceEnumerateDomains -C/tdef/-/DNSServiceErrorType -C/tdef/-/DNSServiceFlags -C/func/-/DNSServiceGetAddrInfo -C/tdef/-/DNSServiceGetAddrInfoReply -C/func/-/DNSServiceGetProperty -C/func/-/DNSServiceNATPortMappingCreate -C/tdef/-/DNSServiceNATPortMappingReply -C/func/-/DNSServiceProcessResult -C/tdef/-/DNSServiceProtocol -C/func/-/DNSServiceQueryRecord -C/tdef/-/DNSServiceQueryRecordReply -C/func/-/DNSServiceReconfirmRecord -C/func/-/DNSServiceRefDeallocate -C/func/-/DNSServiceRefSockFD -C/func/-/DNSServiceRegister -C/func/-/DNSServiceRegisterRecord -C/tdef/-/DNSServiceRegisterRecordReply -C/tdef/-/DNSServiceRegisterReply -C/func/-/DNSServiceRegistrationAddRecord -C/func/-/DNSServiceRegistrationCreate -C/func/-/DNSServiceRegistrationRemoveRecord -C/func/-/DNSServiceRegistrationUpdateRecord -C/func/-/DNSServiceRemoveRecord -C/func/-/DNSServiceResolve -C/tdef/-/DNSServiceResolveReply -C/func/-/DNSServiceResolverResolve -C/func/-/DNSServiceUpdateRecord -C++/instm/IOBlockStorageDevice/doAsyncReadWrite -Objective-C/instm/NSAttributedString/docFormatFromRange:documentAttributes: -Objective-C/intfm/NSDockTilePlugIn/dockMenu -Objective-C/instm/NSWindow/dockTile -Objective-C/instm/NSApplication/dockTile -Objective-C/instm/NSBrowser/doClick: -Objective-C/intfm/NSTextInput/doCommandBySelector: -Objective-C/intfm/NSTextInputClient/doCommandBySelector: -Objective-C/instm/NSResponder/doCommandBySelector: -Objective-C/instm/IMKInputController/doCommandBySelector:commandDictionary: -JavaScript/data/Document/doctype -Objective-C/instm/IBInspector/document -Objective-C/instm/NSWindowController/document -Objective-C/instm/PDFOutline/document -Objective-C/instm/PDFView/document -Objective-C/instm/PDFPage/document -Objective-C/clm/NSXMLNode/document -JavaScript/data/AbstractView/document -JavaScript/cl/-/Document -JavaScript/data/DOMWindow/document -Objective-C/instm/IBPlugin/document:didAddDraggedObjects:fromDraggedLibraryView: -JavaScript/clconst/core/DOCUMENT_FRAGMENT_NODE -JavaScript/clconst/core/DOCUMENT_NODE -JavaScript/clconst/core/DOCUMENT_POSITION_CONTAINED_BY -JavaScript/clconst/core/DOCUMENT_POSITION_CONTAINS -JavaScript/clconst/core/DOCUMENT_POSITION_DISCONNECTED -JavaScript/clconst/core/DOCUMENT_POSITION_FOLLOWING -JavaScript/clconst/core/DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC -JavaScript/clconst/core/DOCUMENT_POSITION_PRECEDING -JavaScript/clconst/core/DOCUMENT_TYPE_NODE -Objective-C/instm/PDFDocument/documentAttributes -Objective-C/instm/NSDocumentController/documentClassForType: -Objective-C/instm/NSDocumentController/documentClassNames -Objective-C/instm/NSXMLDocument/documentContentKind -Objective-C/instm/NSClipView/documentCursor -Objective-C/instm/NSScrollView/documentCursor -Objective-C/instm/NSObject/documentDidBeginDocumentFind: -Objective-C/instm/NSObject/documentDidBeginPageFind: -Objective-C/instm/NSObject/documentDidEndDocumentFind: -Objective-C/instm/NSObject/documentDidEndPageFind: -Objective-C/instm/NSObject/documentDidFindMatch: -Objective-C/instm/NSObject/documentDidUnlock: -Objective-C/binding/NSPanel/documentEdited -Objective-C/binding/NSWindow/documentEdited -JavaScript/data/Document/documentElement -Objective-C/instm/NSDocumentController/documentForFileName: -Objective-C/clm/IBDocument/documentForObject: -Objective-C/instm/NSDocumentController/documentForURL: -Objective-C/instm/NSDocumentController/documentForWindow: -JavaScript/data/DOMWindow/DocumentFragment -JavaScript/cl/-/DocumentFragment -Objective-C/instm/IBDocument/documentImageNamed: -Objective-C/instp/IKScannerDeviceView/documentName -Objective-C/instm/IKScannerDeviceView/documentName -Objective-C/instm/NSClipView/documentRect -Objective-C/instm/NSDocumentController/documents -Objective-C/intfm/WebDocumentRepresentation/documentSource -JavaScript/data/DOMWindow/DocumentType -JavaScript/cl/-/DocumentType -JavaScript/data/Document/documentURI -Objective-C/instm/PDFDocument/documentURL -Objective-C/instm/NSClipView/documentView -Objective-C/instm/NSScrollView/documentView -Objective-C/instm/PDFView/documentView -Objective-C/instm/WebFrameView/documentView -Objective-C/instm/WebFrameView/documentViewShouldHandlePrint -Objective-C/instm/NSScrollView/documentVisibleRect -Objective-C/instm/NSClipView/documentVisibleRect -Objective-C/clm/NSXMLNode/documentWithRootElement: -C++/instm/IONetworkController/doDisable -C++/instm/IOBlockStorageDevice/doDiscard -Objective-C/instm/NSBrowser/doDoubleClick: -C++/instm/IOBlockStorageDevice/doEjectMedia -C++/instm/IONetworkController/doEnable -C/func/-/DoesBackingStore -Objective-C/instm/NSObject/doesContain: -C++/instm/IOSCSIParallelInterfaceController/DoesHBAPerformAutoSense -C++/instm/IOSCSIParallelInterfaceController/DoesHBAPerformDeviceManagement -C++/instm/IOSCSIParallelInterfaceController/DoesHBASupportSCSIParallelFeature -Objective-C/instm/NSObject/doesNotRecognizeSelector: -Objective-C/instm/NSDateFormatter/doesRelativeDateFormatting -C/func/-/DoesSaveUnders -C++/instm/IOBlockStorageDevice/doFormatMedia -C++/instm/IOBlockStorageDevice/doGetFormatCapacities -C++/instm/IOFramebuffer/doI2CRequest -C++/instm/IOFWAddressSpace/doLock -C++/instm/IOBlockStorageDevice/doLockUnlockMedia -Objective-C/instm/NSPrinter/domain -JavaScript/instp/Error/domain -Objective-C/instm/NSNetService/domain -Objective-C/instm/NSError/domain -Objective-C/instm/NSHTTPCookie/domain -JavaScript/data/Document/domain -JavaScript/cl/-/DOMApplicationCache -C/tdef/-/DoMCActionProc -C/tdef/-/DoMCActionUPP -JavaScript/cl/-/DOMCoreException -Objective-C/instm/WebFrame/DOMDocument -Objective-C/cat/-/DOMDocumentAdditions -Objective-C/cat/-/DOMElement(AppKitAdditions) -JavaScript/data/DOMWindow/DOMException -JavaScript/cl/-/DOMFormData -Objective-C/cat/-/DOMHTMLDocument(DOMHTMLDocumentExtensions) -Objective-C/cat/-/DOMHTMLFrameElement(WebKitAdditions) -Objective-C/cat/-/DOMHTMLIFrameElement(WebKitAdditions) -Objective-C/cat/-/DOMHTMLObjectElement(WebKitAdditions) -JavaScript/data/DOMWindow/DOMImplementation -JavaScript/cl/-/DOMImplementation -Objective-C/instm/NSOrthography/dominantLanguage -Objective-C/instp/NSOrthography/dominantLanguage -Objective-C/instm/NSOrthography/dominantLanguageForScript: -Objective-C/instp/NSOrthography/dominantScript -Objective-C/instm/NSOrthography/dominantScript -Objective-C/cat/-/DOMNodeAdditions -JavaScript/cl/-/DOMParser -JavaScript/data/DOMWindow/DOMParser -Objective-C/cat/-/DOMRangeAdditions -JavaScript/cl/-/DOMSelection -JavaScript/clconst/DOMCoreException/DOMSTRING_SIZE_ERR -JavaScript/cl/-/DOMWindow -JavaScript/clconst/IDBRequest/DONE -JavaScript/clconst/FileReader/DONE -JavaScript/clconst/XMLHttpRequest/DONE -JavaScript/clconst/WebGLRenderingContext/DONT_CARE -C++/instm/IOFWPseudoAddressSpace/doRead -C++/instm/IOFWPhysicalAddressSpace/doRead -C++/instm/IOFWAddressSpace/doRead -C++/instm/IOBlockStorageDevice/doSynchronizeCache -C/func/-/dotpr -C/func/-/dotprD -Objective-C/instm/NSStatusItem/doubleAction -Objective-C/instm/NSMatrix/doubleAction -Objective-C/instm/NSBrowser/doubleAction -Objective-C/instm/NSPathCell/doubleAction -Objective-C/instm/NSPathControl/doubleAction -Objective-C/instm/NSTableView/doubleAction -Objective-C/binding/NSOutlineView/doubleClickArgument -Objective-C/binding/NSTableView/doubleClickArgument -Objective-C/instm/NSAttributedString/doubleClickAtIndex: -Objective-C/clm/NSEvent/doubleClickInterval -Objective-C/instp/IKImageView/doubleClickOpensImageEditPanel -Objective-C/instm/IKImageView/doubleClickOpensImageEditPanel -Objective-C/binding/NSOutlineView/doubleClickTarget -Objective-C/binding/NSTableView/doubleClickTarget -Objective-C/instm/NSUserDefaults/doubleForKey: -Objective-C/instp/CALayer/doubleSided -Objective-C/instm/NSActionCell/doubleValue -Objective-C/instm/NSDecimalNumber/doubleValue -Objective-C/instm/NSNumber/doubleValue -Objective-C/instm/NSProgressIndicator/doubleValue -Objective-C/instm/IMAVControl/doubleValue -Objective-C/instm/NSControl/doubleValue -Objective-C/instm/NSCell/doubleValue -Objective-C/instm/NSString/doubleValue -C/func/-/doupdate -Objective-C/intfm/WebPolicyDecisionListener/download -Objective-C/instm/NSObject/download:canAuthenticateAgainstProtectionSpace: -Objective-C/instm/NSObject/download:decideDestinationWithSuggestedFilename: -Objective-C/instm/NSObject/download:didCancelAuthenticationChallenge: -Objective-C/instm/NSObject/download:didCreateDestination: -Objective-C/instm/NSObject/download:didFailWithError: -Objective-C/instm/NSObject/download:didReceiveAuthenticationChallenge: -Objective-C/instm/NSObject/download:didReceiveDataOfLength: -Objective-C/instm/NSObject/download:didReceiveResponse: -Objective-C/instm/NSObject/download:shouldDecodeSourceDataOfMIMEType: -Objective-C/instm/NSObject/download:willResumeWithResponse:fromByte: -Objective-C/instm/NSObject/download:willSendRequest:redirectResponse: -Objective-C/instp/IKCameraDeviceView/downloadAllControlLabel -Objective-C/instm/IKCameraDeviceView/downloadAllControlLabel -Objective-C/instm/IKCameraDeviceView/downloadAllItems: -Objective-C/instm/WebView/downloadDelegate -Objective-C/instm/NSObject/downloadDidBegin: -Objective-C/instm/NSObject/downloadDidFinish: -Objective-C/instp/PSEnclosure/downloadedPath -C/func/-/DownloadEffect -JavaScript/clconst/DOMApplicationCache/DOWNLOADING -Objective-C/instm/IKScannerDeviceView/downloadsDirectory -Objective-C/instp/IKScannerDeviceView/downloadsDirectory -Objective-C/instp/IKCameraDeviceView/downloadsDirectory -Objective-C/instm/IKCameraDeviceView/downloadsDirectory -Objective-C/instp/IKCameraDeviceView/downloadSelectedControlLabel -Objective-C/instm/IKCameraDeviceView/downloadSelectedControlLabel -Objective-C/instm/IKCameraDeviceView/downloadSelectedItems: -Objective-C/instp/PSFeedSettings/downloadsEnclosures -Objective-C/instm/NSObject/downloadShouldUseCredentialStorage: -Objective-C/instm/NSObject/downloadWindowForAuthenticationSheet: -C++/instm/IOFWAddressSpace/doWrite -C++/instm/IOFWPhysicalAddressSpace/doWrite -C++/instm/IOFWPseudoAddressSpace/doWrite -C/func/-/DPMSCapable -C/func/-/DPMSDisable -C/func/-/DPMSEnable -C/func/-/DPMSForceLevel -C/func/-/DPMSGetTimeouts -C/func/-/DPMSGetVersion -C/func/-/DPMSInfo -C/func/-/DPMSQueryExtension -C/func/-/DPMSSetTimeouts -C/data/-/DRAbstractFile -C/data/-/DRAccessDate -C/func/-/DragAlignedGrayRgn -C/func/-/DragAlignedWindow -Objective-C/clm/NSColorPanel/dragColor:withEvent:fromView: -Objective-C/clm/NSCursor/dragCopyCursor -JavaScript/clconst/Event/DRAGDROP -Objective-C/instm/NSView/dragFile:fromRect:slideBack:event: -JavaScript/data/HTMLElement/draggable -Objective-C/instm/NSTableHeaderView/draggedColumn -Objective-C/instm/NSTableHeaderView/draggedDistance -Objective-C/intfm/NSDraggingInfo/draggedImage -Objective-C/instm/NSObject/draggedImage:beganAt: -Objective-C/instm/NSObject/draggedImage:endedAt:deposited: -Objective-C/instm/NSObject/draggedImage:endedAt:operation: -Objective-C/instm/NSObject/draggedImage:movedTo: -Objective-C/intfm/NSDraggingInfo/draggedImageLocation -Objective-C/instm/IKImageBrowserView/draggingDestinationDelegate -Objective-C/instm/NSTableView/draggingDestinationFeedbackStyle -Objective-C/intfm/NSDraggingInfo/draggingDestinationWindow -Objective-C/instm/NSObject/draggingEnded: -Objective-C/instm/NSObject/draggingEntered: -Objective-C/instm/NSObject/draggingExited: -Objective-C/instm/NSCollectionView/draggingImageForItemsAtIndexes:withEvent:offset: -Objective-C/instm/NSBrowser/draggingImageForRowsWithIndexes:inColumn:withEvent:offset: -Objective-C/intfm/NSDraggingInfo/draggingLocation -Objective-C/intfm/NSDraggingInfo/draggingPasteboard -Objective-C/intfm/NSDraggingInfo/draggingSequenceNumber -Objective-C/intfm/NSDraggingInfo/draggingSource -Objective-C/intfm/NSDraggingInfo/draggingSourceOperationMask -Objective-C/instm/NSBrowser/draggingSourceOperationMaskForLocal: -Objective-C/instm/NSObject/draggingSourceOperationMaskForLocal: -Objective-C/instm/NSObject/draggingUpdated: -Objective-C/instm/NSWindow/dragImage:at:offset:event:pasteboard:source:slideBack: -Objective-C/instm/NSView/dragImage:at:offset:event:pasteboard:source:slideBack: -Objective-C/instm/NSTableView/dragImageForRows:event:dragImageOffset: -Objective-C/instm/NSTableView/dragImageForRowsWithIndexes:tableColumns:event:offset: -Objective-C/instm/NSTextView/dragImageForSelectionWithEvent:origin: -Objective-C/clm/NSCursor/dragLinkCursor -Objective-C/instm/NSTextView/dragOperationForDraggingInfo:type: -Objective-C/instm/NSView/dragPromisedFilesOfTypes:fromRect:source:slideBack:event: -Objective-C/instm/NSTextView/dragSelectionWithEvent:offset:slideBack: -Objective-C/instm/NSAutoreleasePool/drain -C/data/-/DRAllFilesystems -C/func/-/drand48 -C/data/-/DRApplicationIdentifier -C/data/-/DRAttributeModificationDate -C/data/-/DRAudioFourChannelKey -C/data/-/DRAudioPreEmphasisKey -C/func/-/DRAudioTrackCreate -C/func/-/DRAudioTrackCreateWithURL -C/tdef/-/DRAudioTrackRef -Objective-C/instm/FxTexture/draw -Objective-C/instm/NSImageRep/draw -JavaScript/instm/WebGLRenderingContext/drawArrays -Objective-C/instm/NSScroller/drawArrow:highlight: -Objective-C/instm/NSImageRep/drawAtPoint: -Objective-C/instm/NSAttributedString/drawAtPoint: -Objective-C/instm/CIImage/drawAtPoint:fromRect:operation:fraction: -Objective-C/instm/NSImage/drawAtPoint:fromRect:operation:fraction: -Objective-C/instm/NSString/drawAtPoint:withAttributes: -Objective-C/instm/NSTextTable/drawBackgroundForBlock:withFrame:inView:characterRange:layoutManager: -Objective-C/instm/NSLayoutManager/drawBackgroundForGlyphRange:atPoint: -Objective-C/instm/NSTableView/drawBackgroundInClipRect: -Objective-C/instm/NSTextBlock/drawBackgroundWithFrame:inView:characterRange:layoutManager: -Objective-C/instm/NSSliderCell/drawBarInside:flipped: -Objective-C/instm/NSButtonCell/drawBezelWithFrame:inView: -Objective-C/instm/NSMenuItemCell/drawBorderAndBackgroundWithFrame:inView: -Objective-C/instm/NSControl/drawCell: -Objective-C/instm/NSForm/drawCellAtIndex: -Objective-C/instm/NSMatrix/drawCellAtRow:column: -Objective-C/instm/NSControl/drawCellInside: -Objective-C/instm/NSSplitView/drawDividerInRect: -JavaScript/instm/WebGLRenderingContext/drawElements -C/func/-/DrawEllipticArcRot -Objective-C/intfm/NSDrawerDelegate/drawerDidClose: -Objective-C/intfm/NSDrawerDelegate/drawerDidOpen: -Objective-C/instm/NSWindow/drawers -Objective-C/intfm/NSDrawerDelegate/drawerShouldClose: -Objective-C/intfm/NSDrawerDelegate/drawerShouldOpen: -Objective-C/intfm/NSDrawerDelegate/drawerWillClose: -Objective-C/intfm/NSDrawerDelegate/drawerWillOpen: -Objective-C/intfm/NSDrawerDelegate/drawerWillResizeContents:toSize: -Objective-C/instm/PDFSelection/drawForPage:active: -Objective-C/instm/PDFSelection/drawForPage:withBox:active: -Objective-C/instm/NSGradient/drawFromCenter:radius:toCenter:radius:options: -Objective-C/instm/NSGradient/drawFromPoint:toPoint:options: -Objective-C/instm/NSLayoutManager/drawGlyphsForGlyphRange:atPoint: -Objective-C/instm/NSTableView/drawGridInClipRect: -Objective-C/instm/NSRulerView/drawHashMarksAndLabelsInRect: -JavaScript/instm/CanvasRenderingContext2D/drawImage -Objective-C/instm/CIContext/drawImage:atPoint:fromRect: -Objective-C/instm/CIContext/drawImage:inRect:fromRect: -Objective-C/instm/NSButtonCell/drawImage:withFrame:inView: -JavaScript/instm/CanvasRenderingContext2D/drawImageFromRect -Objective-C/instm/NSMenuItemCell/drawImageWithFrame:inView: -Objective-C/instm/NSGradient/drawInBezierPath:angle: -Objective-C/instm/NSGradient/drawInBezierPath:relativeCenterPosition: -Objective-C/instm/CAOpenGLLayer/drawInCGLContext:pixelFormat:forLayerTime:displayTime: -Objective-C/instm/CALayer/drawInContext: -Objective-C/intfm/FxOnScreenControl/drawingCoordinates -Objective-C/instm/NSCell/drawingRectForBounds: -Objective-C/instm/NSOpenGLLayer/drawInOpenGLContext:pixelFormat:forLayerTime:displayTime: -Objective-C/instm/PDFBorder/drawInRect: -Objective-C/instm/NSImageRep/drawInRect: -Objective-C/instm/NSAttributedString/drawInRect: -Objective-C/instm/NSGradient/drawInRect:angle: -Objective-C/instm/CIImage/drawInRect:fromRect:operation:fraction: -Objective-C/instm/NSImage/drawInRect:fromRect:operation:fraction: -Objective-C/instm/NSImageRep/drawInRect:fromRect:operation:fraction:respectFlipped:hints: -Objective-C/instm/NSImage/drawInRect:fromRect:operation:fraction:respectFlipped:hints: -Objective-C/instm/NSGradient/drawInRect:relativeCenterPosition: -Objective-C/instm/NSString/drawInRect:withAttributes: -Objective-C/instm/NSTextView/drawInsertionPointInRect:color:turnedOn: -Objective-C/instm/NSCell/drawInteriorWithFrame:inView: -Objective-C/instm/NSMenuItemCell/drawKeyEquivalentWithFrame:inView: -Objective-C/instm/NSSliderCell/drawKnob -Objective-C/instm/NSScroller/drawKnob -Objective-C/instm/NSSliderCell/drawKnob: -Objective-C/instm/NSScroller/drawKnobSlotInRect:highlight: -Objective-C/instm/NSTabViewItem/drawLabel:inRect: -Objective-C/instm/NSObject/drawLayer:inContext: -Objective-C/instm/NSRulerView/drawMarkersInRect: -Objective-C/intfm/FxOnScreenControl/drawOSC:height:activePart:time: -Objective-C/clm/NSBezierPath/drawPackedGlyphs:atPoint: -Objective-C/instm/PDFView/drawPage: -Objective-C/instm/NSView/drawPageBorderWithSize: -Objective-C/instm/PDFView/drawPagePost: -Objective-C/instm/NSScroller/drawParts -C/func/-/DrawPictureFile -Objective-C/instm/ScreenSaverView/drawRect: -Objective-C/instm/NSRulerMarker/drawRect: -Objective-C/instm/NSView/drawRect: -Objective-C/instm/NSImage/drawRepresentation:inRect: -Objective-C/instm/NSTableView/drawRow:clipRect: -Objective-C/instm/NSClipView/drawsBackground -Objective-C/instm/NSScrollView/drawsBackground -Objective-C/instm/QCCompositionPickerView/drawsBackground -Objective-C/instm/QCCompositionParameterView/drawsBackground -Objective-C/instm/NSDatePicker/drawsBackground -Objective-C/instm/NSDatePickerCell/drawsBackground -Objective-C/instm/NSMatrix/drawsBackground -Objective-C/instm/NSTextField/drawsBackground -Objective-C/instm/NSTabView/drawsBackground -Objective-C/instm/NSTextView/drawsBackground -Objective-C/instm/WebView/drawsBackground -Objective-C/instm/NSText/drawsBackground -Objective-C/instm/NSTextFieldCell/drawsBackground -Objective-C/instm/NSMatrix/drawsCellBackground -Objective-C/instm/NSSegmentedCell/drawSegment:inFrame:withView: -Objective-C/instm/NSCustomImageRep/drawSelector -Objective-C/instm/NSMenuItemCell/drawSeparatorItemWithFrame:inView: -Objective-C/instm/NSTableView/drawsGrid -Objective-C/instm/NSView/drawSheetBorderWithSize: -Objective-C/instm/NSTableHeaderCell/drawSortIndicatorWithFrame:inView:ascending:priority: -Objective-C/instm/NSLayoutManager/drawsOutsideLineFragmentForGlyphAtIndex: -Objective-C/instm/NSMenuItemCell/drawStateImageWithFrame:inView: -Objective-C/instm/NSStatusItem/drawStatusBarBackgroundInRect:withHighlight: -Objective-C/instm/NSLayoutManager/drawStrikethroughForGlyphRange:strikethroughType:baselineOffset:lineFragmentRect:lineFragmentGlyphRange:containerOrigin: -Objective-C/intfm/NSTextInputClient/drawsVerticallyForCharacterAtIndex: -Objective-C/instm/NSColor/drawSwatchInRect: -Objective-C/instm/NSButtonCell/drawTitle:withFrame:inView: -Objective-C/instm/NSBrowser/drawTitleOfColumn:inRect: -Objective-C/instm/NSMenuItemCell/drawTitleWithFrame:inView: -C/func/-/DrawTrimmedPicture -C/func/-/DrawTrimmedPictureFile -Objective-C/instm/NSLayoutManager/drawUnderlineForGlyphRange:underlineType:baselineOffset:lineFragmentRect:lineFragmentGlyphRange:containerOrigin: -Objective-C/instm/NSTextView/drawViewBackgroundInRect: -Objective-C/instm/NSColorWell/drawWellInside: -Objective-C/instm/PDFPage/drawWithBox: -Objective-C/instm/PDFAnnotation/drawWithBox: -Objective-C/instm/NSCell/drawWithExpansionFrame:inView: -Objective-C/intfm/NSTextAttachmentCell/drawWithFrame:inView: -Objective-C/instm/NSCell/drawWithFrame:inView: -Objective-C/intfm/NSTextAttachmentCell/drawWithFrame:inView:characterIndex: -Objective-C/intfm/NSTextAttachmentCell/drawWithFrame:inView:characterIndex:layoutManager: -Objective-C/instm/NSAttributedString/drawWithRect:options: -Objective-C/instm/NSString/drawWithRect:options:attributes: -C/data/-/DRBackupDate -C/data/-/DRBibliographicFile -C/data/-/DRBlockSize -C/data/-/DRBlockSizeKey -C/data/-/DRBlockTypeKey -Objective-C/cl/-/DRBurn -Objective-C/cat/-/DRBurn(ImageContentCreation) -Objective-C/cat/-/DRBurn(PropertyConvenienceMethods) -C/func/-/DRBurnAbort -C/data/-/DRBurnAppendableKey -C/data/-/DRBurnCompletionActionEject -C/data/-/DRBurnCompletionActionKey -C/data/-/DRBurnCompletionActionMount -C/func/-/DRBurnCopyStatus -C/func/-/DRBurnCreate -C/data/-/DRBurnDoubleLayerL0DataZoneBlocksKey -C/data/-/DRBurnFailureActionEject -C/data/-/DRBurnFailureActionKey -C/data/-/DRBurnFailureActionNone -C/func/-/DRBurnGetDevice -C/func/-/DRBurnGetProperties -C/func/-/DRBurnGetTypeID -C/data/-/DRBurnIcon -C/data/-/DRBurnOverwriteDiscKey -Objective-C/cl/-/DRBurnProgressPanel -C/data/-/DRBurnProgressPanelDidFinishNotification -C/data/-/DRBurnProgressPanelWillBeginNotification -C/tdef/-/DRBurnRef -C/data/-/DRBurnRequestedSpeedKey -C/func/-/DRBurnSessionBeginProgressDialog -C/tdef/-/DRBurnSessionBurnCompleteProcPtr -C/func/-/DRBurnSessionCreate -C/tdef/-/DRBurnSessionDeviceCheckProcPtr -C/tdef/-/DRBurnSessionDeviceSelectionNotificationProcPtr -C/func/-/DRBurnSessionGetBurn -C/func/-/DRBurnSessionGetTypeID -C/tdef/-/DRBurnSessionMediaCheckProcPtr -C/tdef/-/DRBurnSessionProgressBeginNotificationProcPtr -C/tag/-/DRBurnSessionProgressCallbacks -C/tdef/-/DRBurnSessionProgressDialogOptionFlags -C/tag/-/DRBurnSessionProgressDialogOptions -C/tdef/-/DRBurnSessionProgressFinishNotificationProcPtr -C/tdef/-/DRBurnSessionRef -C/func/-/DRBurnSessionSetBurn -C/tag/-/DRBurnSessionSetupCallbacks -C/func/-/DRBurnSessionSetupDialog -C/tdef/-/DRBurnSessionSetupDialogOptionFlags -C/tag/-/DRBurnSessionSetupDialogOptions -C/func/-/DRBurnSetProperties -Objective-C/cl/-/DRBurnSetupPanel -C/data/-/DRBurnSetupPanelDefaultButtonDefaultTitle -C/data/-/DRBurnStatusChangedNotification -C/data/-/DRBurnStrategyBDDAO -C/data/-/DRBurnStrategyCDSAO -C/data/-/DRBurnStrategyCDTAO -C/data/-/DRBurnStrategyDVDDAO -C/data/-/DRBurnStrategyIsRequiredKey -C/data/-/DRBurnStrategyKey -C/data/-/DRBurnTestingKey -C/data/-/DRBurnUnderrunProtectionKey -C/data/-/DRBurnVerifyDiscKey -C/func/-/DRBurnWriteLayout -C/data/-/DRCDTextArrangerKey -Objective-C/cl/-/DRCDTextBlock -Objective-C/cat/-/DRCDTextBlock(PropertyConvenienceMethods) -C/func/-/DRCDTextBlockCreate -C/func/-/DRCDTextBlockCreateArrayFromPackList -C/func/-/DRCDTextBlockFlatten -C/func/-/DRCDTextBlockGetProperties -C/func/-/DRCDTextBlockGetTrackDictionaries -C/func/-/DRCDTextBlockGetTypeID -C/func/-/DRCDTextBlockGetValue -C/tdef/-/DRCDTextBlockRef -C/func/-/DRCDTextBlockSetProperties -C/func/-/DRCDTextBlockSetTrackDictionaries -C/func/-/DRCDTextBlockSetValue -C/data/-/DRCDTextCharacterCodeKey -C/data/-/DRCDTextClosedKey -C/data/-/DRCDTextComposerKey -C/data/-/DRCDTextCopyrightAssertedForNamesKey -C/data/-/DRCDTextCopyrightAssertedForSpecialMessagesKey -C/data/-/DRCDTextCopyrightAssertedForTitlesKey -C/data/-/DRCDTextDiscIdentKey -C/data/-/DRCDTextGenreCodeKey -C/data/-/DRCDTextGenreKey -C/data/-/DRCDTextKey -C/data/-/DRCDTextLanguageKey -C/data/-/DRCDTextMCNISRCKey -C/data/-/DRCDTextNSStringEncodingKey -C/data/-/DRCDTextPerformerKey -C/data/-/DRCDTextSizeKey -C/data/-/DRCDTextSongwriterKey -C/data/-/DRCDTextSpecialMessageKey -C/data/-/DRCDTextTitleKey -C/data/-/DRCDTextTOC2Key -C/data/-/DRCDTextTOCKey -C/data/-/DRContentModificationDate -C/func/-/DRCopyDeviceArray -C/func/-/DRCopyLocalizedStringForAdditionalSense -C/func/-/DRCopyLocalizedStringForDiscRecordingError -C/func/-/DRCopyLocalizedStringForSenseCode -C/func/-/DRCopyLocalizedStringForValue -C/data/-/DRCopyrightFile -C/data/-/DRCreationDate -C/data/-/DRDataFormKey -C/data/-/DRDataPreparer -C/data/-/DRDefaultDate -Objective-C/cl/-/DRDevice -Objective-C/cat/-/DRDevice(InfoConvenience) -Objective-C/cat/-/DRDevice(StatusConvenience) -C/func/-/DRDeviceAcquireExclusiveAccess -C/func/-/DRDeviceAcquireMediaReservation -C/data/-/DRDeviceAppearedNotification -C/data/-/DRDeviceBurnSpeedBD1x -C/data/-/DRDeviceBurnSpeedCD1x -C/data/-/DRDeviceBurnSpeedDVD1x -C/data/-/DRDeviceBurnSpeedHDDVD1x -C/data/-/DRDeviceBurnSpeedMax -C/data/-/DRDeviceBurnSpeedsKey -C/data/-/DRDeviceCanTestWriteCDKey -C/data/-/DRDeviceCanTestWriteDVDKey -C/data/-/DRDeviceCanUnderrunProtectCDKey -C/data/-/DRDeviceCanUnderrunProtectDVDKey -C/data/-/DRDeviceCanWriteBDKey -C/data/-/DRDeviceCanWriteBDREKey -C/data/-/DRDeviceCanWriteBDRKey -C/data/-/DRDeviceCanWriteCDKey -C/data/-/DRDeviceCanWriteCDRawKey -C/data/-/DRDeviceCanWriteCDRKey -C/data/-/DRDeviceCanWriteCDRWKey -C/data/-/DRDeviceCanWriteCDSAOKey -C/data/-/DRDeviceCanWriteCDTAOKey -C/data/-/DRDeviceCanWriteCDTextKey -C/data/-/DRDeviceCanWriteDVDDAOKey -C/data/-/DRDeviceCanWriteDVDKey -C/data/-/DRDeviceCanWriteDVDPlusRDoubleLayerKey -C/data/-/DRDeviceCanWriteDVDPlusRKey -C/data/-/DRDeviceCanWriteDVDPlusRWDoubleLayerKey -C/data/-/DRDeviceCanWriteDVDPlusRWKey -C/data/-/DRDeviceCanWriteDVDRAMKey -C/data/-/DRDeviceCanWriteDVDRDualLayerKey -C/data/-/DRDeviceCanWriteDVDRKey -C/data/-/DRDeviceCanWriteDVDRWDualLayerKey -C/data/-/DRDeviceCanWriteDVDRWKey -C/data/-/DRDeviceCanWriteHDDVDKey -C/data/-/DRDeviceCanWriteHDDVDRAMKey -C/data/-/DRDeviceCanWriteHDDVDRDualLayerKey -C/data/-/DRDeviceCanWriteHDDVDRKey -C/data/-/DRDeviceCanWriteHDDVDRWDualLayerKey -C/data/-/DRDeviceCanWriteHDDVDRWKey -C/data/-/DRDeviceCanWriteIndexPointsKey -C/data/-/DRDeviceCanWriteISRCKey -C/data/-/DRDeviceCanWriteKey -C/macro/-/DRDeviceCDXFactorForKPS -C/func/-/DRDeviceCloseTray -C/func/-/DRDeviceCopyDeviceForBSDName -C/func/-/DRDeviceCopyDeviceForIORegistryEntryPath -C/func/-/DRDeviceCopyInfo -C/func/-/DRDeviceCopyStatus -C/data/-/DRDeviceCurrentWriteSpeedKey -C/data/-/DRDeviceDisappearedNotification -C/macro/-/DRDeviceDVDXFactorForKPS -C/func/-/DRDeviceEjectMedia -C/data/-/DRDeviceFirmwareRevisionKey -C/func/-/DRDeviceGetTypeID -C/data/-/DRDeviceIORegistryEntryPathKey -C/data/-/DRDeviceIsBusyKey -C/data/-/DRDeviceIsTrayOpenKey -C/func/-/DRDeviceIsValid -C/macro/-/DRDeviceKPSForCDXFactor -C/macro/-/DRDeviceKPSForDVDXFactor -C/func/-/DRDeviceKPSForXFactor -C/data/-/DRDeviceLoadingMechanismCanEjectKey -C/data/-/DRDeviceLoadingMechanismCanInjectKey -C/data/-/DRDeviceLoadingMechanismCanOpenKey -C/data/-/DRDeviceMaximumWriteSpeedKey -C/data/-/DRDeviceMediaBlocksFreeKey -C/data/-/DRDeviceMediaBlocksOverwritableKey -C/data/-/DRDeviceMediaBlocksUsedKey -C/data/-/DRDeviceMediaBSDNameKey -C/data/-/DRDeviceMediaClassBD -C/data/-/DRDeviceMediaClassCD -C/data/-/DRDeviceMediaClassDVD -C/data/-/DRDeviceMediaClassHDDVD -C/data/-/DRDeviceMediaClassKey -C/data/-/DRDeviceMediaClassUnknown -C/data/-/DRDeviceMediaDoubleLayerL0DataZoneBlocksKey -C/data/-/DRDeviceMediaFreeSpaceKey -C/data/-/DRDeviceMediaInfoKey -C/data/-/DRDeviceMediaIsAppendableKey -C/data/-/DRDeviceMediaIsBlankKey -C/data/-/DRDeviceMediaIsErasableKey -C/data/-/DRDeviceMediaIsOverwritableKey -C/data/-/DRDeviceMediaIsReservedKey -C/data/-/DRDeviceMediaOverwritableSpaceKey -C/data/-/DRDeviceMediaSessionCountKey -C/data/-/DRDeviceMediaStateInTransition -C/data/-/DRDeviceMediaStateKey -C/data/-/DRDeviceMediaStateMediaPresent -C/data/-/DRDeviceMediaStateNone -C/data/-/DRDeviceMediaTrackCountKey -C/data/-/DRDeviceMediaTypeBDR -C/data/-/DRDeviceMediaTypeBDRE -C/data/-/DRDeviceMediaTypeBDROM -C/data/-/DRDeviceMediaTypeCDR -C/data/-/DRDeviceMediaTypeCDROM -C/data/-/DRDeviceMediaTypeCDRW -C/data/-/DRDeviceMediaTypeDVDPlusR -C/data/-/DRDeviceMediaTypeDVDPlusRDoubleLayer -C/data/-/DRDeviceMediaTypeDVDPlusRW -C/data/-/DRDeviceMediaTypeDVDPlusRWDoubleLayer -C/data/-/DRDeviceMediaTypeDVDR -C/data/-/DRDeviceMediaTypeDVDRAM -C/data/-/DRDeviceMediaTypeDVDRDualLayer -C/data/-/DRDeviceMediaTypeDVDROM -C/data/-/DRDeviceMediaTypeDVDRW -C/data/-/DRDeviceMediaTypeDVDRWDualLayer -C/data/-/DRDeviceMediaTypeHDDVDR -C/data/-/DRDeviceMediaTypeHDDVDRAM -C/data/-/DRDeviceMediaTypeHDDVDRDualLayer -C/data/-/DRDeviceMediaTypeHDDVDROM -C/data/-/DRDeviceMediaTypeHDDVDRW -C/data/-/DRDeviceMediaTypeHDDVDRWDualLayer -C/data/-/DRDeviceMediaTypeKey -C/data/-/DRDeviceMediaTypeUnknown -C/data/-/DRDeviceMediaUsedSpaceKey -C/func/-/DRDeviceOpenTray -C/data/-/DRDevicePhysicalInterconnectATAPI -C/data/-/DRDevicePhysicalInterconnectFibreChannel -C/data/-/DRDevicePhysicalInterconnectFireWire -C/data/-/DRDevicePhysicalInterconnectKey -C/data/-/DRDevicePhysicalInterconnectLocationExternal -C/data/-/DRDevicePhysicalInterconnectLocationInternal -C/data/-/DRDevicePhysicalInterconnectLocationKey -C/data/-/DRDevicePhysicalInterconnectLocationUnknown -C/data/-/DRDevicePhysicalInterconnectSCSI -C/data/-/DRDevicePhysicalInterconnectUSB -C/data/-/DRDeviceProductNameKey -C/tdef/-/DRDeviceRef -C/func/-/DRDeviceReleaseExclusiveAccess -C/func/-/DRDeviceReleaseMediaReservation -C/data/-/DRDeviceStatusChangedNotification -C/data/-/DRDeviceSupportLevelAppleShipping -C/data/-/DRDeviceSupportLevelAppleSupported -C/data/-/DRDeviceSupportLevelKey -C/data/-/DRDeviceSupportLevelNone -C/data/-/DRDeviceSupportLevelUnsupported -C/data/-/DRDeviceSupportLevelVendorSupported -C/data/-/DRDeviceTrackInfoKey -C/data/-/DRDeviceTrackRefsKey -C/data/-/DRDeviceVendorNameKey -C/data/-/DRDeviceWriteBufferSizeKey -C/data/-/DRDeviceWriteCapabilitiesKey -C/func/-/DRDeviceXFactorForKPS -C/data/-/DRDVDCopyrightInfoKey -C/data/-/DRDVDTimestampKey -C/data/-/DREffectiveDate -C/func/-/drem -Objective-C/cl/-/DRErase -Objective-C/cat/-/DRErase(PropertyConvenienceMethods) -C/func/-/DREraseCopyStatus -C/func/-/DREraseCreate -C/func/-/DREraseGetDevice -C/func/-/DREraseGetProperties -C/func/-/DREraseGetTypeID -C/data/-/DREraseIcon -Objective-C/cl/-/DREraseProgressPanel -C/data/-/DREraseProgressPanelDidFinishNotification -C/data/-/DREraseProgressPanelWillBeginNotification -C/tdef/-/DREraseRef -C/func/-/DREraseSessionBeginProgressDialog -C/func/-/DREraseSessionCreate -C/tdef/-/DREraseSessionDeviceCheckProcPtr -C/tdef/-/DREraseSessionDeviceSelectionNotificationProcPtr -C/tdef/-/DREraseSessionEraseCompleteProcPtr -C/func/-/DREraseSessionGetErase -C/func/-/DREraseSessionGetTypeID -C/tdef/-/DREraseSessionMediaCheckProcPtr -C/tdef/-/DREraseSessionProgressBeginNotificationProcPtr -C/tag/-/DREraseSessionProgressCallbacks -C/tdef/-/DREraseSessionProgressDialogOptionFlags -C/tag/-/DREraseSessionProgressDialogOptions -C/tdef/-/DREraseSessionProgressFinishNotificationProcPtr -C/tdef/-/DREraseSessionRef -C/func/-/DREraseSessionSetErase -C/tag/-/DREraseSessionSetupCallbacks -C/func/-/DREraseSessionSetupDialog -C/tdef/-/DREraseSessionSetupDialogOptionFlags -C/tag/-/DREraseSessionSetupDialogOptions -C/func/-/DREraseSetProperties -Objective-C/cl/-/DREraseSetupPanel -C/func/-/DREraseStart -C/data/-/DREraseTypeComplete -C/data/-/DREraseTypeKey -C/data/-/DRErrorStatusAdditionalSenseStringKey -C/data/-/DRErrorStatusErrorInfoStringKey -C/data/-/DRErrorStatusErrorKey -C/data/-/DRErrorStatusErrorStringKey -C/data/-/DRErrorStatusKey -C/data/-/DRErrorStatusSenseCodeStringKey -C/data/-/DRErrorStatusSenseKey -C/data/-/DRExpirationDate -Objective-C/cl/-/DRFile -Objective-C/cat/-/DRFile(VirtualFiles) -Objective-C/cat/-/DRFile(VirtualLinks) -C/func/-/DRFileCreateReal -C/func/-/DRFileCreateRealWithURL -C/func/-/DRFileCreateVirtualLink -C/func/-/DRFileCreateVirtualWithCallback -C/func/-/DRFileCreateVirtualWithData -Objective-C/intf/-/DRFileDataProduction -C/tdef/-/DRFileFork -C/tdef/-/DRFileForkIndex -C/tag/-/DRFileForkSizeInfo -C/tdef/-/DRFileForkSizeQuery -C/func/-/DRFileGetTypeID -C/tdef/-/DRFileMessage -C/tdef/-/DRFileProc -C/tag/-/DRFileProductionInfo -C/tdef/-/DRFileRef -C/tdef/-/DRFilesystemInclusionMask -C/tdef/-/DRFilesystemMask -C/func/-/DRFilesystemTrackCreate -C/func/-/DRFilesystemTrackEstimateOverhead -C/tdef/-/DRFilesystemTrackRef -Objective-C/cl/-/DRFolder -Objective-C/cat/-/DRFolder(VirtualFolders) -C/func/-/DRFolderAddChild -C/func/-/DRFolderConvertRealToVirtual -C/func/-/DRFolderCopyChildren -C/func/-/DRFolderCountChildren -C/func/-/DRFolderCreateReal -C/func/-/DRFolderCreateRealWithURL -C/func/-/DRFolderCreateVirtual -C/func/-/DRFolderGetTypeID -C/tdef/-/DRFolderRef -C/func/-/DRFolderRemoveChild -C/data/-/DRFreeBlocksKey -Objective-C/cl/-/DRFSObject -C/func/-/DRFSObjectCopyBaseName -C/func/-/DRFSObjectCopyFilesystemProperties -C/func/-/DRFSObjectCopyFilesystemProperty -C/func/-/DRFSObjectCopyMangledName -C/func/-/DRFSObjectCopyMangledNames -C/func/-/DRFSObjectCopyRealURL -C/func/-/DRFSObjectCopySpecificName -C/func/-/DRFSObjectCopySpecificNames -C/func/-/DRFSObjectGetFilesystemMask -C/func/-/DRFSObjectGetParent -C/func/-/DRFSObjectGetRealFSRef -C/func/-/DRFSObjectIsVirtual -C/tdef/-/DRFSObjectRef -C/func/-/DRFSObjectSetBaseName -C/func/-/DRFSObjectSetFilesystemMask -C/func/-/DRFSObjectSetFilesystemProperties -C/func/-/DRFSObjectSetFilesystemProperty -C/func/-/DRFSObjectSetSpecificName -C/func/-/DRFSObjectSetSpecificNames -C/func/-/DRGetRefCon -C/data/-/DRHFSPlus -C/data/-/DRHFSPlusCatalogNodeID -C/data/-/DRHFSPlusTextEncodingHint -C/data/-/DRIndexPointsKey -C/data/-/DRInvisible -C/data/-/DRISO9660 -C/data/-/DRISO9660LevelOne -C/data/-/DRISO9660LevelTwo -C/data/-/DRISO9660VersionNumber -C/data/-/DRISOLevel -C/data/-/DRISOMacExtensions -C/data/-/DRISORockRidgeExtensions -C/econst/-/driverHardwareGoneErr -C/data/-/DRJoliet -C/tdef/-/DRLinkType -C/data/-/DRLinkTypeFinderAlias -C/data/-/DRLinkTypeHardLink -C/data/-/DRLinkTypeSymbolicLink -C/data/-/DRMacExtendedFinderFlags -C/data/-/DRMacFileCreator -C/data/-/DRMacFileType -C/data/-/DRMacFinderFlags -C/data/-/DRMacFinderHideExtension -C/data/-/DRMacIconLocation -C/data/-/DRMacScrollPosition -C/data/-/DRMacWindowBounds -C/data/-/DRMacWindowView -C/data/-/DRMaxBurnSpeedKey -C/data/-/DRMediaCatalogNumberKey -Objective-C/cl/-/DRMSF -Objective-C/cl/-/DRMSFFormatter -C/data/-/DRNextWritableAddressKey -C/tdef/-/DRNotificationCallback -Objective-C/cl/-/DRNotificationCenter -C/func/-/DRNotificationCenterAddObserver -C/func/-/DRNotificationCenterCreate -C/func/-/DRNotificationCenterCreateRunLoopSource -C/func/-/DRNotificationCenterGetTypeID -C/tdef/-/DRNotificationCenterRef -C/func/-/DRNotificationCenterRemoveObserver -JavaScript/data/Clipboard/dropEffect -Objective-C/instm/IKImageBrowserView/dropOperation -C/data/-/DRPosixFileMode -C/data/-/DRPosixGID -C/data/-/DRPosixUID -C/data/-/DRPreGapIsRequiredKey -C/data/-/DRPreGapLengthKey -C/data/-/DRPublisher -C/data/-/DRRecordingDate -C/tag/-/DRRefConCallbacks -C/tdef/-/DRRefConReleaseCallback -C/tdef/-/DRRefConRetainCallback -C/data/-/DRSCMSCopyrightFree -C/data/-/DRSCMSCopyrightProtectedCopy -C/data/-/DRSCMSCopyrightProtectedOriginal -C/data/-/DRSerialCopyManagementStateKey -C/data/-/DRSessionFormatKey -C/data/-/DRSessionNumberKey -C/func/-/DRSetRefCon -Objective-C/cl/-/DRSetupPanel -C/data/-/DRSetupPanelDeviceSelectionChangedNotification -C/data/-/DRSetupPanelSelectedDeviceKey -C/data/-/DRStatusCurrentSessionKey -C/data/-/DRStatusCurrentSpeedKey -C/data/-/DRStatusCurrentTrackKey -C/data/-/DRStatusEraseTypeKey -C/data/-/DRStatusPercentCompleteKey -C/data/-/DRStatusProgressCurrentKPS -C/data/-/DRStatusProgressCurrentXFactor -C/data/-/DRStatusProgressInfoKey -C/data/-/DRStatusStateDone -C/data/-/DRStatusStateErasing -C/data/-/DRStatusStateFailed -C/data/-/DRStatusStateFinishing -C/data/-/DRStatusStateKey -C/data/-/DRStatusStateNone -C/data/-/DRStatusStatePreparing -C/data/-/DRStatusStateSessionClose -C/data/-/DRStatusStateSessionOpen -C/data/-/DRStatusStateTrackClose -C/data/-/DRStatusStateTrackOpen -C/data/-/DRStatusStateTrackWrite -C/data/-/DRStatusStateVerifying -C/data/-/DRStatusTotalSessionsKey -C/data/-/DRStatusTotalTracksKey -C/data/-/DRSubchannelDataFormKey -C/data/-/DRSubchannelDataFormNone -C/data/-/DRSubchannelDataFormPack -C/data/-/DRSubchannelDataFormRaw -C/data/-/DRSuppressMacSpecificFiles -C/data/-/DRSynchronousBehaviorKey -C/data/-/DRSystemIdentifier -Objective-C/cl/-/DRTrack -Objective-C/cat/-/DRTrack(AudioContentCreation) -Objective-C/cat/-/DRTrack(DataContentCreation) -Objective-C/cat/-/DRTrack(PropertyConvenience) -C/tdef/-/DRTrackCallbackProc -C/func/-/DRTrackCreate -Objective-C/intf/-/DRTrackDataProduction -C/func/-/DRTrackEstimateLength -C/func/-/DRTrackGetProperties -C/func/-/DRTrackGetTypeID -C/data/-/DRTrackIsEmptyKey -C/data/-/DRTrackISRCKey -C/data/-/DRTrackLengthKey -C/tdef/-/DRTrackMessage -C/data/-/DRTrackModeKey -C/data/-/DRTrackNumberKey -C/data/-/DRTrackPacketSizeKey -C/data/-/DRTrackPacketTypeFixed -C/data/-/DRTrackPacketTypeKey -C/data/-/DRTrackPacketTypeVariable -C/tag/-/DRTrackProductionInfo -C/tdef/-/DRTrackRef -C/func/-/DRTrackSetProperties -C/func/-/DRTrackSpeedTest -C/data/-/DRTrackStartAddressKey -C/data/-/DRTrackTypeClosed -C/data/-/DRTrackTypeIncomplete -C/data/-/DRTrackTypeInvisible -C/data/-/DRTrackTypeKey -C/data/-/DRTrackTypeReserved -C/tdef/-/DRTypeRef -C/data/-/DRUDF -C/data/-/DRUDFApplicationIdentifierSuffix -C/data/-/DRUDFExtendedFilePermissions -C/data/-/DRUDFInterchangeLevel -C/data/-/DRUDFMaxInterchangeLevel -C/data/-/DRUDFMaxVolumeSequenceNumber -C/data/-/DRUDFPrimaryVolumeDescriptorNumber -C/data/-/DRUDFRealTimeFile -C/data/-/DRUDFVersion102 -C/data/-/DRUDFVersion150 -C/data/-/DRUDFVolumeSequenceNumber -C/data/-/DRUDFVolumeSetIdentifier -C/data/-/DRUDFVolumeSetImplementationUse -C/data/-/DRUDFVolumeSetTimestamp -C/data/-/DRUDFWriteVersion -C/data/-/DRVerificationTypeChecksum -C/data/-/DRVerificationTypeKey -C/data/-/DRVerificationTypeNone -C/data/-/DRVerificationTypeProduceAgain -C/data/-/DRVerificationTypeReceiveData -C/data/-/DRVolumeCheckedDate -C/data/-/DRVolumeCreationDate -C/data/-/DRVolumeEffectiveDate -C/data/-/DRVolumeExpirationDate -C/data/-/DRVolumeModificationDate -C/data/-/DRVolumeSet -C/tdef/-/DrvQEl -C/func/-/dsa -C/func/-/DSA_do_sign -C/func/-/DSA_do_verify -C/func/-/DSA_dup_DH -C/func/-/DSA_free -C/func/-/DSA_generate_key -C/func/-/DSA_generate_parameters -C/func/-/DSA_get_default_method -C/func/-/DSA_get_ex_data -C/func/-/DSA_get_ex_new_index -C/func/-/DSA_new -C/func/-/DSA_new_method -C/func/-/DSA_OpenSSL -C/func/-/DSA_print -C/func/-/DSA_print_fp -C/func/-/DSA_set_default_method -C/func/-/DSA_set_ex_data -C/func/-/DSA_set_method -C/func/-/DSA_SIG_free -C/func/-/DSA_SIG_new -C/func/-/DSA_sign -C/func/-/DSA_sign_setup -C/func/-/DSA_size -C/func/-/DSA_verify -C/func/-/dsAddAttribute -C/func/-/dsAddAttributeValue -C/func/-/dsAddChildPIDToReference -C/func/-/dsAllocAttributeValueEntry -C/func/-/dsAllocStringsFromList -C/func/-/DSAparams_print -C/func/-/DSAparams_print_fp -C/func/-/dsAppendAuthBuffer -C/func/-/dsAppendAuthBufferWithAuthorityAttribute -C/func/-/dsAppendAuthBufferWithAuthorityStrings -C/func/-/dsAppendStringToListAlloc -C/func/-/dsBuildFromPath -C/func/-/dsBuildListFromNodesAlloc -C/func/-/dsBuildListFromPathAlloc -C/func/-/dsBuildListFromStrings -C/func/-/dsBuildListFromStringsAlloc -C/func/-/dsBuildListFromStringsAllocV -C/func/-/dsCloseAttributeList -C/func/-/dsCloseAttributeValueList -C/func/-/dsCloseDirNode -C/func/-/dsCloseDirService -C/func/-/dsCloseRecord -C/func/-/dsCopyDirStatusName -C/func/-/dsCreateRecord -C/func/-/dsCreateRecordAndOpen -C/func/-/dsDataBufferAllocate -C/func/-/dsDataBufferDeAllocate -C/func/-/dsDataListAllocate -C/func/-/dsDataListCopyList -C/func/-/dsDataListDeallocate -C/func/-/dsDataListDeAllocate -C/func/-/dsDataListDeleteThisNode -C/func/-/dsDataListGetNodeAlloc -C/func/-/dsDataListGetNodeCount -C/func/-/dsDataListInsertAfter -C/func/-/dsDataListMergeListAfter -C/func/-/dsDataNodeAllocateBlock -C/func/-/dsDataNodeAllocateString -C/func/-/dsDataNodeDeAllocate -C/func/-/dsDataNodeGetLength -C/func/-/dsDataNodeGetSize -C/func/-/dsDataNodeSetLength -C/func/-/dsDeallocAttributeEntry -C/func/-/dsDeallocAttributeValueEntry -C/func/-/dsDeallocRecordEntry -C/tdef/-/DSDebugLog -C/func/-/dsDeleteRecord -C/func/-/dsDoAttributeValueSearch -C/func/-/dsDoAttributeValueSearchWithData -C/func/-/dsDoDirNodeAuth -C/func/-/dsDoDirNodeAuthOnRecordType -C/func/-/dsDoMultipleAttributeValueSearch -C/func/-/dsDoMultipleAttributeValueSearchWithData -C/func/-/dsDoPlugInCustomCall -C/func/-/dsFillAuthBuffer -C/func/-/dsFindDirNodes -C/func/-/dsFlushRecord -C/func/-/dsGetAttributeEntry -C/func/-/dsGetAttributeValue -C/func/-/dsGetDataLength -C/func/-/dsGetDirNodeCount -C/func/-/dsGetDirNodeCountWithInfo -C/func/-/dsGetDirNodeInfo -C/func/-/dsGetDirNodeList -C/func/-/dsGetDirNodeName -C/func/-/dsGetNextAttributeEntry -C/func/-/dsGetNextAttributeValue -C/func/-/dsGetPathFromList -C/func/-/dsGetRecordAttributeInfo -C/func/-/dsGetRecordAttributeValueByID -C/func/-/dsGetRecordAttributeValueByIndex -C/func/-/dsGetRecordAttributeValueByValue -C/func/-/dsGetRecordEntry -C/func/-/dsGetRecordList -C/func/-/dsGetRecordNameFromEntry -C/func/-/dsGetRecordReferenceInfo -C/func/-/dsGetRecordTypeFromEntry -C/func/-/DSIAttention -C/func/-/DSICloseSession -C/func/-/DSICommand -C/func/-/DSIGetStatus -C/tag/-/DSIHeader -C/func/-/DSIOpenSession -C/func/-/dsIsDirServiceLocalRunning -C/func/-/dsIsDirServiceRunning -C/func/-/DSITickle -C/func/-/DSIWrite -C/econst/-/dskFulErr -C/func/-/dsOpenDirNode -C/func/-/dsOpenDirService -C/func/-/dsOpenDirServiceLocal -C/func/-/dsOpenDirServiceProxy -C/func/-/dsOpenRecord -C/func/-/dsParseAuthAuthority -C/tag/-/DSPComplex -C/tdef/-/DSPComplex -C/tag/-/DSPDoubleComplex -C/tdef/-/DSPDoubleComplex -C/tag/-/DSPDoubleSplitComplex -C/tdef/-/DSPDoubleSplitComplex -C/macro/-/DSPROXY -C/tdef/-/DSPSplitComplex -C/tag/-/DSPSplitComplex -C/tdef/-/DSRegisterNode -C/func/-/dsReleaseContinueData -C/func/-/dsRemoveAttribute -C/func/-/dsRemoveAttributeValue -C/func/-/dsServiceInformationAllocate -C/func/-/dsSetAttributeValue -C/func/-/dsSetAttributeValues -C/func/-/dsSetRecordName -C/func/-/dsSetRecordType -JavaScript/clconst/WebGLRenderingContext/DST_ALPHA -JavaScript/clconst/WebGLRenderingContext/DST_COLOR -C/tdef/-/DSUnregisterNode -C/func/-/dsVerifyDirRefNum -Objective-C/instm/NSXMLDocument/DTD -Objective-C/instm/NSXMLDTDNode/DTDKind -Objective-C/clm/NSXMLNode/DTDNodeWithXMLString: -C/tdef/-/DTPBRec -Objective-C/instm/CalTask/dueDate -Objective-C/instp/CalTask/dueDate -C/tdef/-/dummy -C/macro/-/dummy -C/func/-/dup -C/func/-/dup2 -C/econst/-/dupFNErr -C/econst/-/duplicatePasteboardFlavorErr -Objective-C/instm/NSWorkspace/duplicateURLs:completionHandler: -C/func/-/duplocale -C/func/-/dupwin -Objective-C/instm/NSAnimationContext/duration -Objective-C/instm/NSAnimation/duration -Objective-C/instm/QTSampleBuffer/duration -Objective-C/instm/NSSound/duration -Objective-C/instp/NSTextCheckingResult/duration -Objective-C/instm/NSTextCheckingResult/duration -Objective-C/intfm/CAMediaTiming/duration -Objective-C/intfp/CAMediaTiming/duration -Objective-C/instm/QTMovie/duration -JavaScript/data/HTMLMediaElement/duration -Objective-C/intfm/FxTimingAPI/durationForEffect: -Objective-C/intfm/FxTimingAPI/durationOfImageParm:forEffect: -Objective-C/intfm/FxTimingAPI/durationOfInputAToTransition: -Objective-C/intfm/FxTimingAPI/durationOfInputBToTransition: -Objective-C/intfm/FxTimingAPI/durationOfInputToFilter: -C++/data/IOAudioDevice/duringStartup -C/tdef/-/DVDAspectRatio -C/tdef/-/DVDAudioExtensionCode -C/tdef/-/DVDAudioFormat -C/func/-/DVDClearLastPlayBookmark -C/func/-/DVDCloseMediaFile -C/func/-/DVDCloseMediaVolume -C/tdef/-/DVDDiscID -C/func/-/DVDDisplaySubPicture -C/func/-/DVDDispose -C/func/-/DVDDoButtonActivate -C/tdef/-/DVDDomainCode -C/func/-/DVDDoMenuClick -C/func/-/DVDDoMenuMouseOver -C/func/-/DVDDoUserNavigation -C/func/-/DVDEnableWebAccess -C/tdef/-/DVDErrorCode -C/tdef/-/DVDEventCallBackFunctionPtr -C/tdef/-/DVDEventCode -C/tdef/-/DVDFatalErrCallBackFunctionPtr -C/tdef/-/DVDFormat -C/func/-/DVDGetAngle -C/func/-/DVDGetAspectRatio -C/func/-/DVDGetAudioLanguageCode -C/func/-/DVDGetAudioLanguageCodeByStream -C/func/-/DVDGetAudioStream -C/func/-/DVDGetAudioStreamFormat -C/func/-/DVDGetAudioStreamFormatByStream -C/func/-/DVDGetAudioVolume -C/func/-/DVDGetAudioVolumeInfo -C/func/-/DVDGetBookmark -C/func/-/DVDGetButtoninfo -C/func/-/DVDGetButtonPosition -C/func/-/DVDGetChapter -C/func/-/DVDGetDiscRegionCode -C/func/-/DVDGetDriveRegionCode -C/func/-/DVDGetFormatStandard -C/func/-/DVDGetGPRMValue -C/func/-/DVDGetLastPlayBookmark -C/func/-/DVDGetMediaUniqueID -C/func/-/DVDGetMediaVolumeCFName -C/func/-/DVDGetMediaVolumeName -C/func/-/DVDGetMenuLanguageCode -C/func/-/DVDGetNativeVideoSize -C/func/-/DVDGetNumAngles -C/func/-/DVDGetNumAudioStreams -C/func/-/DVDGetNumChapters -C/func/-/DVDGetNumSubPictureStreams -C/func/-/DVDGetNumTitles -C/func/-/DVDGetScanRate -C/func/-/DVDGetState -C/func/-/DVDGetSubPictureLanguageCode -C/func/-/DVDGetSubPictureLanguageCodeByStream -C/func/-/DVDGetSubPictureStream -C/func/-/DVDGetTime -C/func/-/DVDGetTimeEventRate -C/func/-/DVDGetTitle -C/func/-/DVDGetVideoBounds -C/func/-/DVDGetVideoDevice -C/func/-/DVDGetVideoDisplay -C/func/-/DVDGetVideoKeyColor -C/func/-/DVDGetVideoPort -C/func/-/DVDGetVideoWindowID -C/func/-/DVDGoBackOneLevel -C/func/-/DVDGotoBookmark -C/func/-/DVDGoToMenu -C/func/-/DVDHasMedia -C/func/-/DVDHasMenu -C/func/-/DVDHasNextChapter -C/func/-/DVDHasPreviousChapter -C/func/-/DVDIdle -C/func/-/DVDInitialize -C/func/-/DVDIsDisplayingSubPicture -C/func/-/DVDIsMuted -C/func/-/DVDIsOnMenu -C/func/-/DVDIsPaused -C/func/-/DVDIsPlaying -C/func/-/DVDIsRegisteredEventCallBack -C/func/-/DVDIsSupportedDevice -C/func/-/DVDIsSupportedDisplay -C/func/-/DVDIsValidMediaRef -C/tdef/-/DVDLanguageCode -C/tdef/-/DVDMenu -C/func/-/DVDMute -C/func/-/DVDNextChapter -C/func/-/DVDOpenMediaFile -C/func/-/DVDOpenMediaVolume -C/func/-/DVDPause -C/func/-/DVDPlay -C/func/-/DVDPreviousChapter -C/tdef/-/DVDRegionCode -C/func/-/DVDRegisterEventCallBack -C/func/-/DVDResume -C/func/-/DVDReturnToTitle -C/func/-/DVDScan -C/tdef/-/DVDScanDirection -C/tdef/-/DVDScanRate -C/func/-/DVDSetAngle -C/func/-/DVDSetAspectRatio -C/func/-/DVDSetAudioStream -C/func/-/DVDSetAudioVolume -C/func/-/DVDSetChapter -C/func/-/DVDSetDefaultAudioLanguageCode -C/func/-/DVDSetDefaultMenuLanguageCode -C/func/-/DVDSetDefaultSubPictureLanguageCode -C/func/-/DVDSetDriveRegionCode -C/func/-/DVDSetFatalErrorCallBack -C/func/-/DVDSetLastPlayBookmark -C/func/-/DVDSetSubPictureStream -C/func/-/DVDSetTime -C/func/-/DVDSetTimeEventRate -C/func/-/DVDSetTitle -C/func/-/DVDSetVideoBounds -C/func/-/DVDSetVideoDevice -C/func/-/DVDSetVideoDisplay -C/func/-/DVDSetVideoPort -C/func/-/DVDSetVideoWindowID -C/func/-/DVDSleep -C/tdef/-/DVDState -C/func/-/DVDStepFrame -C/func/-/DVDStop -C/tdef/-/DVDSubpictureExtensionCode -C/func/-/DVDSwitchToDevice -C/func/-/DVDSwitchToDisplay -C/tdef/-/DVDTimeCode -C/tdef/-/DVDTimePosition -C/func/-/DVDUnregisterEventCallBack -C/tdef/-/DVDUOPCode -C/func/-/DVDUpdateVideo -C/tdef/-/DVDUserNavigation -C/func/-/DVDWakeUp -JavaScript/data/SVGFEOffsetElement/dx -JavaScript/data/SVGTextPositioningElement/dx -JavaScript/data/SVGFEOffsetElement/dy -JavaScript/data/SVGTextPositioningElement/dy -C/func/-/dyld -C/func/-/dyld_stub_binding_helper -C/tag/-/dylib -C/tag/-/dylib_command -C/tag/-/dylib_module -C/tag/-/dylib_module_64 -C/tag/-/dylib_reference -C/tag/-/dylib_table_of_contents -C/tag/-/dylinker_command -JavaScript/clconst/WebGLRenderingContext/DYNAMIC_DRAW -C/func/-/dynamic_pointer_cast -C/tag/-/dysymtab_command -JavaScript/data/SVGMatrix/e -JavaScript/data/WebKitCSSMatrix/e -C/macro/-/E_PENDING -Objective-C/instm/NSDate/earlierDate: -C/tdef/-/eAttributeFlags -C/func/-/ecdsa -C/func/-/ECDSA_do_sign -C/func/-/ECDSA_do_sign_ex -C/func/-/ECDSA_do_verify -C/func/-/ECDSA_get_default_method -C/func/-/ECDSA_get_ex_data -C/func/-/ECDSA_get_ex_new_index -C/func/-/ECDSA_OpenSSL -C/func/-/ECDSA_set_default_method -C/func/-/ECDSA_set_ex_data -C/func/-/ECDSA_set_method -C/func/-/ECDSA_SIG_free -C/func/-/ECDSA_SIG_new -C/func/-/ECDSA_sign -C/func/-/ECDSA_sign_ex -C/func/-/ECDSA_sign_setup -C/func/-/ECDSA_size -C/func/-/ECDSA_verify -C/econst/-/eCFBndleGetInfoDictErr -C/econst/-/eCFDictGetValueErr -C/econst/-/eCFMGetFileSysRepErr -C/econst/-/eCFPlugInGetBundleErr -C/func/-/echo -C/func/-/echo_wchar -C/func/-/echochar -Objective-C/instm/NSSecureTextFieldCell/echosBullets -C/func/-/ecvt -C/econst/-/eDataReceiveErr_NoAttrCount -C/econst/-/eDataReceiveErr_NoAttrEntry -C/econst/-/eDataReceiveErr_NoAttrListRef -C/econst/-/eDataReceiveErr_NoAttrValueEntry -C/econst/-/eDataReceiveErr_NoAttrValueListRef -C/econst/-/eDataReceiveErr_NoContinueData -C/econst/-/eDataReceiveErr_NoDataBuff -C/econst/-/eDataReceiveErr_NoDirRef -C/econst/-/eDataReceiveErr_NoNodeChangeToken -C/econst/-/eDataReceiveErr_NoNodeCount -C/econst/-/eDataReceiveErr_NoRecEntry -C/econst/-/eDataReceiveErr_NoRecEntryCount -C/econst/-/eDataReceiveErr_NoRecMatchCount -C/econst/-/eDataReceiveErr_NoRecRef -Objective-C/instm/NSDrawer/edge -Objective-C/instm/CALayer/edgeAntialiasingMask -Objective-C/instp/CALayer/edgeAntialiasingMask -Objective-C/binding/NSComboBox/editable -Objective-C/binding/NSMovieView/editable -Objective-C/binding/NSButtonCell/editable -Objective-C/binding/NSDictionaryController/editable -Objective-C/binding/NSImageCell/editable -Objective-C/binding/NSArrayController/editable -Objective-C/binding/NSDatePickerCell/editable -Objective-C/binding/NSImageView/editable -Objective-C/binding/NSFormCell/editable -Objective-C/binding/NSObjectController/editable -Objective-C/binding/NSLevelIndicatorCell/editable -Objective-C/binding/NSComboBoxCell/editable -Objective-C/binding/NSPopUpButtonCell/editable -Objective-C/binding/NSTextView/editable -Objective-C/binding/NSTextField/editable -Objective-C/binding/QTMovieView/editable -Objective-C/binding/NSTableColumn/editable -Objective-C/binding/NSTreeController/editable -Objective-C/binding/NSSearchField/editable -Objective-C/binding/NSTextFieldCell/editable -Objective-C/binding/NSPathCell/editable -Objective-C/binding/NSTokenFieldCell/editable -Objective-C/binding/NSSecureTextField/editable -Objective-C/binding/NSSliderCell/editable -Objective-C/binding/NSTokenField/editable -Objective-C/binding/NSPredicateEditor/editable -Objective-C/binding/NSStepperCell/editable -Objective-C/binding/NSSecureTextFieldCell/editable -Objective-C/binding/NSSegmentedCell/editable -Objective-C/instp/IKImageView/editable -Objective-C/instm/IKImageView/editable -Objective-C/instm/WebView/editableDOMRangeForPoint: -Objective-C/intfm/ApertureEditManager/editableVersionIds -Objective-C/intfm/ApertureEditManager/editableVersionsOfVersions:requestedFormat:stackWithOriginal: -Objective-C/intfm/ApertureEditManager/editableVersionsOfVersions:stackWithOriginal: -Objective-C/instm/NSTableView/editColumn:row:withEvent:select: -Objective-C/instm/NSTextStorage/edited:range:changeInLength: -Objective-C/instm/NSTableView/editedColumn -Objective-C/instm/NSTextStorage/editedMask -Objective-C/instm/NSTextStorage/editedRange -Objective-C/instm/NSTableView/editedRow -Objective-C/instm/ABPeoplePickerView/editInAddressBook: -Objective-C/instm/WebView/editingDelegate -Objective-C/instm/NSFormatter/editingStringForObjectValue: -Objective-C/instm/NSBrowser/editItemAtIndexPath:withEvent:select: -C/func/-/editline -Objective-C/intfm/ApertureEditPlugIn/editManager:didImportImageAtPath:versionUniqueID: -Objective-C/intfm/ApertureEditPlugIn/editManager:didNotImportImageAtPath:error: -Objective-C/intfm/ApertureEditPlugIn/editWindow -Objective-C/instm/NSCell/editWithFrame:inView:editor:delegate:event: -C/econst/-/eDSAllocationFailed -C/econst/-/eDSAnyMatch -C/econst/-/eDSAttributeDoesNotExist -C/econst/-/eDSAttributeNotFound -C/econst/-/eDSAttributeValueNotFound -C/econst/-/eDSAttrListError -C/econst/-/eDSAuthAccountDisabled -C/econst/-/eDSAuthAccountExpired -C/econst/-/eDSAuthAccountInactive -C/econst/-/eDSAuthBadPassword -C/econst/-/eDSAuthCannotRecoverPasswd -C/econst/-/eDSAuthContinueDataBad -C/econst/-/eDSAuthenticationFailed -C/econst/-/eDSAuthenticationSearchNodeName -C/econst/-/eDSAuthFailed -C/econst/-/eDSAuthFailedClearTextOnly -C/econst/-/eDSAuthInBuffFormatError -C/econst/-/eDSAuthInvalidComputer -C/econst/-/eDSAuthInvalidLogonHours -C/econst/-/eDSAuthInvalidUserName -C/econst/-/eDSAuthMasterUnreachabe -C/econst/-/eDSAuthMethodNotSupported -C/econst/-/eDSAuthNewPasswordRequired -C/econst/-/eDSAuthNoAuthServerFound -C/econst/-/eDSAuthNoSuchEntity -C/econst/-/eDSAuthParameterErr -C/econst/-/eDSAuthPasswordChangeTooSoon -C/econst/-/eDSAuthPasswordExpired -C/econst/-/eDSAuthPasswordNeedsDigit -C/econst/-/eDSAuthPasswordNeedsLetter -C/econst/-/eDSAuthPasswordQualityCheckFailed -C/econst/-/eDSAuthPasswordTooLong -C/econst/-/eDSAuthPasswordTooShort -C/econst/-/eDSAuthResponseBufTooSmall -C/econst/-/eDSAuthServerError -C/econst/-/eDSAuthUnknownUser -C/econst/-/eDSBadContextData -C/econst/-/eDSBadDataNodeFormat -C/econst/-/eDSBadDataNodeLength -C/econst/-/eDSBadDirReferences -C/econst/-/eDSBadPacket -C/econst/-/eDSBadSourceDataNode -C/econst/-/eDSBadTargetDataNode -C/econst/-/eDSBeginAppleReserve1 -C/econst/-/eDSBeginAppleReserve2 -C/econst/-/eDSBogusServer -C/econst/-/eDSBufferTooSmall -C/econst/-/eDSCannotAccessSession -C/econst/-/eDSCloseFailed -C/econst/-/eDSCompoundExpression -C/econst/-/eDSConfigNodeName -C/econst/-/eDSContactMaster -C/econst/-/eDSContactsSearchNodeName -C/econst/-/eDSContains -C/econst/-/eDSContinue -C/econst/-/eDSCorruptBuffer -C/econst/-/eDSCorruptRecEntryData -C/econst/-/eDSCustomBlockFailed -C/econst/-/eDSCustomUnblockFailed -C/econst/-/eDSCustomYieldFailed -C/econst/-/eDSDeAllocateFailed -C/econst/-/eDSDefaultNetworkNodes -C/econst/-/eDSDirSrvcNotOpened -C/econst/-/eDSEmptyAttribute -C/econst/-/eDSEmptyAttributeRequestList -C/econst/-/eDSEmptyAttributeType -C/econst/-/eDSEmptyAttributeTypeList -C/econst/-/eDSEmptyAttributeValue -C/econst/-/eDSEmptyAuthMethod -C/econst/-/eDSEmptyAuthStepData -C/econst/-/eDSEmptyAuthStepDataResp -C/econst/-/eDSEmptyBuffer -C/econst/-/eDSEmptyDataList -C/econst/-/eDSEmptyNodeInfoTypeList -C/econst/-/eDSEmptyNodeName -C/econst/-/eDSEmptyNodeNamePattern -C/econst/-/eDSEmptyParameter -C/econst/-/eDSEmptyPattern2Match -C/econst/-/eDSEmptyPatternMatch -C/econst/-/eDSEmptyRecordEntry -C/econst/-/eDSEmptyRecordName -C/econst/-/eDSEmptyRecordNameList -C/econst/-/eDSEmptyRecordType -C/econst/-/eDSEmptyRecordTypeList -C/econst/-/eDSEndAppleReserve1 -C/econst/-/eDSEndAppleReserve2 -C/econst/-/eDSEndPlugInCustom -C/econst/-/eDSEndsWith -C/econst/-/eDSExact -C/econst/-/eDSGetCustomFailed -C/econst/-/eDSGreaterEqual -C/econst/-/eDSGreaterThan -C/econst/-/eDSiCompoundExpression -C/econst/-/eDSiContains -C/econst/-/eDSiEndsWith -C/econst/-/eDSiExact -C/econst/-/eDSiGreaterEqual -C/econst/-/eDSiGreaterThan -C/econst/-/eDSiLessEqual -C/econst/-/eDSiLessThan -C/econst/-/eDSIndexNotFound -C/econst/-/eDSIndexOutOfRange -C/econst/-/eDSInvalDataList -C/econst/-/eDSInvalidAttributeType -C/econst/-/eDSInvalidAttrListRef -C/econst/-/eDSInvalidAttrValueRef -C/econst/-/eDSInvalidBuffFormat -C/econst/-/eDSInvalidContext -C/econst/-/eDSInvalidContinueData -C/econst/-/eDSInvalidDirRef -C/econst/-/eDSInvalidDomain -C/econst/-/eDSInvalidHandle -C/econst/-/eDSInvalidIndex -C/econst/-/eDSInvalidName -C/econst/-/eDSInvalidNativeMapping -C/econst/-/eDSInvalidNodeRef -C/econst/-/eDSInvalidPatternMatchType -C/econst/-/eDSInvalidPlugInConfigData -C/econst/-/eDSInvalidRecordName -C/econst/-/eDSInvalidRecordRef -C/econst/-/eDSInvalidRecordType -C/econst/-/eDSInvalidReference -C/econst/-/eDSInvalidRefType -C/econst/-/eDSInvalidSession -C/econst/-/eDSInvalidTag -C/econst/-/eDSIPUnreachable -C/econst/-/eDSiRegularExpression -C/econst/-/eDSiStartsWith -C/econst/-/eDSiWildCardPattern -C/econst/-/eDSLessEqual -C/econst/-/eDSLessThan -C/econst/-/eDSLocalHostedNodes -C/econst/-/eDSLocalNodeNames -C/econst/-/eDSMaxSessionsOpen -C/econst/-/eDSNetInfoError -C/econst/-/eDSNetworkSearchNodeName -C/econst/-/eDSNodeNotFound -C/econst/-/eDSNoErr -C/econst/-/eDSNoMatch1 -C/econst/-/eDSNoMatch2 -C/econst/-/eDSNoStdMappingAvailable -C/econst/-/eDSNotAuthorized -C/econst/-/eDSNullAttribute -C/econst/-/eDSNullAttributeAccess -C/econst/-/eDSNullAttributeControlPtr -C/econst/-/eDSNullAttributeRequestList -C/econst/-/eDSNullAttributeType -C/econst/-/eDSNullAttributeTypeList -C/econst/-/eDSNullAttributeValue -C/econst/-/eDSNullAuthStepData -C/econst/-/eDSNullAuthStepDataResp -C/econst/-/eDSNullAutMethod -C/econst/-/eDSNullDataBuff -C/econst/-/eDSNullDataList -C/econst/-/eDSNullDirNodeTypeList -C/econst/-/eDSNullNodeInfoTypeList -C/econst/-/eDSNullNodeName -C/econst/-/eDSNullNodeNamePattern -C/econst/-/eDSNullParameter -C/econst/-/eDSNullPatternMatch -C/econst/-/eDSNullRecEntryPtr -C/econst/-/eDSNullRecName -C/econst/-/eDSNullRecNameList -C/econst/-/eDSNullRecordReference -C/econst/-/eDSNullRecType -C/econst/-/eDSNullRecTypeList -C/econst/-/eDSNullTargetArgument -C/econst/-/eDSOpenFailed -C/econst/-/eDSOpenNodeFailed -C/econst/-/eDSOperationFailed -C/econst/-/eDSPermissionError -C/econst/-/eDSPlugInConfigFileError -C/econst/-/eDSReadOnly -C/econst/-/eDSReceiveFailed -C/econst/-/eDSRecordAlreadyExists -C/econst/-/eDSRecordNotFound -C/econst/-/eDSRefSpaceFull -C/econst/-/eDSRefTableAllocError -C/econst/-/eDSRefTableCSBPAllocError -C/econst/-/eDSRefTableEntryNilError -C/econst/-/eDSRefTableError -C/econst/-/eDSRefTableFWAllocError -C/econst/-/eDSRefTableIndexOfBoundsError -C/econst/-/eDSRefTableNilError -C/econst/-/eDSRegisterCustomFailed -C/econst/-/eDSRegularExpression -C/econst/-/eDSSchemaError -C/econst/-/eDSSearchNodeName -C/econst/-/eDSSendFailed -C/econst/-/eDSServerTimeout -C/econst/-/eDSServiceUnavailable -C/econst/-/eDSStartsWith -C/econst/-/eDSTCPReceiveError -C/econst/-/eDSTCPSendError -C/econst/-/eDSTCPVersionMismatch -C/econst/-/eDSUnknownHost -C/econst/-/eDSUnknownMatchType -C/econst/-/eDSUnknownNodeName -C/econst/-/eDSUnrecoverablePassword -C/econst/-/eDSUnRegisterFailed -C/econst/-/eDSUnSupportedMatchType -C/econst/-/eDSUserUnknown -C/econst/-/eDSVersionMismatch -C/econst/-/eDSWildCardPattern -JavaScript/data/Clipboard/effectAllowed -Objective-C/instm/DRFSObject/effectiveFilesystemMask -C/tag/-/EffectsFrameParams -C/tdef/-/EffectsFrameParamsPtr -C/tag/-/EffectSource -C/tdef/-/EffectSourcePtr -C/econst/-/eFWGetDirNodeNameErr1 -C/econst/-/eFWGetDirNodeNameErr2 -C/econst/-/eFWGetDirNodeNameErr3 -C/econst/-/eFWGetDirNodeNameErr4 -C/econst/-/eIPCReceiveError -C/econst/-/eIPCSendError -Objective-C/instm/DRSetupPanel/eject: -Objective-C/instm/DRDevice/ejectMedia -C++/instm/IOBlockStorageDriver/ejectMedia -C/func/-/el_deletestr -C/func/-/el_end -C/func/-/el_get -C/func/-/el_getc -C/func/-/el_gets -C/func/-/el_history -C/func/-/el_history_end -C/func/-/el_history_init -C/func/-/el_init -C/func/-/el_insertstr -C/func/-/el_line -C/func/-/el_parse -C/func/-/el_push -C/func/-/el_reset -C/func/-/el_resize -C/func/-/el_set -C/func/-/el_source -C/func/-/el_tok_end -C/func/-/el_tok_init -C/func/-/el_tok_line -C/func/-/el_tok_reset -C/func/-/el_tok_str -JavaScript/data/WebKitAnimationEvent/elapsedTime -JavaScript/data/WebKitTransitionEvent/elapsedTime -JavaScript/data/DOMWindow/Element -JavaScript/cl/-/Element -JavaScript/clconst/WebGLRenderingContext/ELEMENT_ARRAY_BUFFER -JavaScript/clconst/WebGLRenderingContext/ELEMENT_ARRAY_BUFFER_BINDING -JavaScript/clconst/core/ELEMENT_NODE -Objective-C/instm/SBObject/elementArrayWithCode: -Objective-C/instm/NSBezierPath/elementAtIndex: -Objective-C/instm/NSBezierPath/elementAtIndex:associatedPoints: -Objective-C/instm/WebView/elementAtPoint: -Objective-C/instm/NSBezierPath/elementCount -Objective-C/instm/NSXMLDTD/elementDeclarationForName: -C/tdef/-/elementDeclSAXFunc -JavaScript/instm/Document/elementFromPoint -JavaScript/data/HTMLFormElement/elements -Objective-C/clm/NSPersistentStoreCoordinator/elementsDerivedFromExternalRecordURL: -Objective-C/instm/NSXMLElement/elementsForLocalName:URI: -Objective-C/instm/NSXMLElement/elementsForName: -JavaScript/cl/-/ElementTimeControl -Objective-C/clm/NSXMLNode/elementWithName: -Objective-C/clm/NSXMLNode/elementWithName:children:attributes: -Objective-C/clm/NSXMLNode/elementWithName:stringValue: -Objective-C/clm/NSXMLNode/elementWithName:URI: -JavaScript/data/SVGFEDistantLightElement/elevation -Objective-C/instp/PSAuthor/email -Objective-C/instm/CBIdentity/emailAddress -Objective-C/instp/CalAlarm/emailAddress -Objective-C/instm/CalAlarm/emailAddress -C/tdef/-/EmbedImageProcPtr -JavaScript/data/HTMLDocument/embeds -C/econst/-/eMemoryAllocError -C/econst/-/eMemoryError -Objective-C/instp/CAEmitterCell/emissionLatitude -Objective-C/instm/CAEmitterCell/emissionLatitude -Objective-C/instp/CAEmitterCell/emissionLongitude -Objective-C/instm/CAEmitterCell/emissionLongitude -Objective-C/instp/CAEmitterCell/emissionRange -Objective-C/instm/CAEmitterCell/emissionRange -Objective-C/clm/CAEmitterCell/emitterCell -Objective-C/instm/CAEmitterCell/emitterCells -Objective-C/instm/CAEmitterLayer/emitterCells -Objective-C/instp/CAEmitterLayer/emitterCells -Objective-C/instp/CAEmitterCell/emitterCells -Objective-C/instp/CAEmitterLayer/emitterDepth -Objective-C/instm/CAEmitterLayer/emitterDepth -Objective-C/instp/CAEmitterLayer/emitterMode -Objective-C/instm/CAEmitterLayer/emitterMode -Objective-C/instp/CAEmitterLayer/emitterPosition -Objective-C/instm/CAEmitterLayer/emitterPosition -Objective-C/instp/CAEmitterLayer/emitterShape -Objective-C/instm/CAEmitterLayer/emitterShape -Objective-C/instp/CAEmitterLayer/emitterSize -Objective-C/instm/CAEmitterLayer/emitterSize -Objective-C/instp/CAEmitterLayer/emitterZPosition -Objective-C/instm/CAEmitterLayer/emitterZPosition -JavaScript/instm/DOMSelection/empty -JavaScript/clconst/FileReader/EMPTY -Objective-C/clm/CIImage/emptyImage -Objective-C/instm/NSGarbageCollector/enable -Objective-C/instm/FxTexture/enable -C++/instm/IONetworkController/enable -C++/instm/IOCommandGate/enable -C++/instm/ATATimerEventSource/enable -C++/instm/IOEventSource/enable -C++/instm/IOInterruptEventSource/enable -C++/instm/IONotifier/enable -C++/instm/IOTimerEventSource/enable -JavaScript/instm/WebGLRenderingContext/enable -C++/instm/IOWorkLoop/enableAllEventSources -C++/instm/IOWorkLoop/enableAllInterrupts -Objective-C/instm/NSGarbageCollector/enableCollectorForPointer: -C++/instm/IOFramebuffer/enableController -Objective-C/instm/NSWindow/enableCursorRects -Objective-C/instm/CIFilter/enabled -Objective-C/instp/CIFilter/enabled -Objective-C/instp/CAEmitterCell/enabled -C++/data/IOEventSource/enabled -Objective-C/binding/NSImageCell/enabled -Objective-C/binding/NSDatePickerCell/enabled -Objective-C/binding/NSLevelIndicatorCell/enabled -Objective-C/binding/NSButton/enabled -Objective-C/binding/NSForm/enabled -Objective-C/binding/NSMatrix/enabled -Objective-C/binding/NSImageView/enabled -Objective-C/binding/NSComboBox/enabled -Objective-C/binding/AMPathPopUpButton/enabled -Objective-C/binding/NSFormCell/enabled -Objective-C/binding/NSColorWell/enabled -Objective-C/binding/NSLevelIndicator/enabled -Objective-C/binding/NSOutlineView/enabled -Objective-C/binding/NSComboBoxCell/enabled -Objective-C/binding/NSButtonCell/enabled -Objective-C/binding/NSMenuItem/enabled -Objective-C/binding/NSDatePicker/enabled -Objective-C/binding/NSBrowser/enabled -Objective-C/binding/NSSegmentedCell/enabled -Objective-C/binding/NSSecureTextField/enabled -Objective-C/binding/NSTextFieldCell/enabled -Objective-C/binding/NSPathCell/enabled -Objective-C/binding/NSTokenField/enabled -Objective-C/binding/NSTokenFieldCell/enabled -Objective-C/binding/NSSliderCell/enabled -Objective-C/binding/NSTableColumn/enabled -Objective-C/binding/NSPathControl/enabled -Objective-C/binding/NSPredicateEditor/enabled -Objective-C/binding/NSTableView/enabled -Objective-C/binding/NSStepperCell/enabled -Objective-C/binding/NSSecureTextFieldCell/enabled -Objective-C/binding/NSSearchField/enabled -Objective-C/binding/NSPopUpButtonCell/enabled -Objective-C/binding/NSSlider/enabled -Objective-C/binding/NSPopUpButton/enabled -Objective-C/binding/NSStepper/enabled -Objective-C/binding/NSToolbarItem/enabled -Objective-C/binding/NSSegmentedControl/enabled -Objective-C/binding/NSTextField/enabled -C/func/-/EnableDataBrowserEditCommand -JavaScript/instm/InspectorBackend/enableDebugger -Objective-C/instm/ISyncClient/enabledEntityNames -JavaScript/data/MimeType/enabledPlugin -Objective-C/instm/NSTextView/enabledTextCheckingTypes -Objective-C/instm/QCPlugIn/enableExecution: -Objective-C/instm/NSWindow/enableFlushWindow -Objective-C/instm/CWInterface/enableIBSSWithParameters:error: -C++/instm/IOService/enableInterrupt -C++/instm/IOSCSIParallelInterfaceController/EnableInterrupt -Objective-C/instm/NSWindow/enableKeyEquivalentForDefaultButtonCell -Objective-C/instm/NSConnection/enableMultipleThreads -C++/instm/IONetworkController/enablePacketFilter -C++/instm/IOEthernetController/enablePacketFilter -C++/instm/IOPCIDevice/enablePCIPowerManagement -JavaScript/instm/InspectorBackend/enableProfiler -JavaScript/instm/InspectorBackend/enableResourceTracking -JavaScript/instm/InspectorBackend/enableSearchingForNode -Objective-C/instm/NSProcessInfo/enableSuddenTermination -Objective-C/instm/NSUndoManager/enableUndoRegistration -Objective-C/instm/NSMetadataQuery/enableUpdates -JavaScript/instm/WebGLRenderingContext/enableVertexAttribArray -Objective-C/instm/NSView/enclosingMenuItem -Objective-C/instm/NSView/enclosingScrollView -Objective-C/instp/PSEntry/enclosures -Objective-C/instp/PSFeedSettings/enclosureTypes -Objective-C/instm/NSCoder/encodeArrayOfObjCType:count:at: -Objective-C/instm/NSCoder/encodeBool:forKey: -Objective-C/instm/NSKeyedArchiver/encodeBool:forKey: -Objective-C/instm/NSCoder/encodeBycopyObject: -Objective-C/instm/NSCoder/encodeByrefObject: -Objective-C/instm/NSCoder/encodeBytes:length: -Objective-C/instm/NSCoder/encodeBytes:length:forKey: -Objective-C/instm/NSKeyedArchiver/encodeBytes:length:forKey: -Objective-C/instm/NSArchiver/encodeClassName:intoClassName: -Objective-C/instm/NSArchiver/encodeConditionalObject: -Objective-C/instm/NSCoder/encodeConditionalObject: -Objective-C/instm/NSCoder/encodeConditionalObject:forKey: -Objective-C/instm/NSKeyedArchiver/encodeConditionalObject:forKey: -Objective-C/instm/NSCoder/encodeDataObject: -Objective-C/instm/NSCoder/encodeDouble:forKey: -Objective-C/instm/NSKeyedArchiver/encodeDouble:forKey: -Objective-C/instm/NSCoder/encodeFloat:forKey: -Objective-C/instm/NSKeyedArchiver/encodeFloat:forKey: -Objective-C/instm/NSCoder/encodeInt32:forKey: -Objective-C/instm/NSKeyedArchiver/encodeInt32:forKey: -Objective-C/instm/NSCoder/encodeInt64:forKey: -Objective-C/instm/NSKeyedArchiver/encodeInt64:forKey: -Objective-C/instm/NSCoder/encodeInt:forKey: -Objective-C/instm/NSKeyedArchiver/encodeInt:forKey: -Objective-C/instm/NSCoder/encodeInteger:forKey: -Objective-C/instm/NSCoder/encodeNXObject: -Objective-C/instm/NSCoder/encodeObject: -Objective-C/instm/NSCoder/encodeObject:forKey: -Objective-C/instm/NSKeyedArchiver/encodeObject:forKey: -Objective-C/instm/NSCoder/encodePoint: -Objective-C/instm/NSCoder/encodePoint:forKey: -Objective-C/instm/NSPortCoder/encodePortObject: -Objective-C/instm/NSCoder/encodePropertyList: -Objective-C/instm/NSCoder/encodeQTTime:forKey: -Objective-C/instm/NSCoder/encodeQTTimeRange:forKey: -Objective-C/instm/NSCoder/encodeRect: -Objective-C/instm/NSCoder/encodeRect:forKey: -C/macro/-/EncodeRequest -Objective-C/instm/NSArchiver/encodeRootObject: -Objective-C/instm/NSCoder/encodeRootObject: -Objective-C/instm/NSCoder/encodeSize: -Objective-C/instm/NSCoder/encodeSize:forKey: -Objective-C/instm/NSCoder/encodeSMPTETime:forKey: -Objective-C/instm/NSCoder/encodeValueOfObjCType:at: -Objective-C/instm/NSCoder/encodeValuesOfObjCTypes: -Objective-C/intfm/NSCoding/encodeWithCoder: -Objective-C/instm/DRCDTextBlock(PropertyConvenienceMethods)/encoding -JavaScript/data/CSSCharsetRule/encoding -JavaScript/data/HTMLFormElement/encoding -JavaScript/clconst/FileError/ENCODING_ERR -Objective-C/instm/NSFont/encodingScheme -C/func/-/encrypt -JavaScript/data/HTMLFormElement/enctype -C/func/-/end -JavaScript/instm/TimeRanges/end -JavaScript/clconst/Range/END_TO_END -JavaScript/clconst/Range/END_TO_START -C/func/-/endac -Objective-C/intfm/FxCustomParameterActionAPI/endAction: -C/func/-/endauclass -C/func/-/endauevent -C/func/-/endauuser -C/func/-/EndCGContextForApplicationDockTile -JavaScript/data/Range/endContainer -Objective-C/intfm/NSDiscardableContent/endContentAccess -Objective-C/instp/CalRecurrenceEnd/endDate -Objective-C/instm/CalRecurrenceEnd/endDate -Objective-C/instm/CalEvent/endDate -Objective-C/instp/CalEvent/endDate -Objective-C/instm/NSView/endDocument -C/tdef/-/endDocumentSAXFunc -JavaScript/data/HTMLMediaElement/ended -Objective-C/instm/NSMutableAttributedString/endEditing -Objective-C/instm/NSCell/endEditing: -Objective-C/instm/NSWindow/endEditingFor: -Objective-C/intfm/ApertureEditManager/endEditSession -JavaScript/instm/ElementTimeControl/endElement -JavaScript/instm/ElementTimeControl/endElementAt -C/tdef/-/endElementNsSAX2Func -C/tdef/-/endElementSAXFunc -Objective-C/instm/NSEntityMigrationPolicy/endEntityMapping:manager:error: -Objective-C/instm/CARenderer/endFrame -C/func/-/endfsent -Objective-C/instm/NSResponder/endGestureWithEvent: -C/func/-/endgrent -Objective-C/clm/NSAnimationContext/endGrouping -C/func/-/endhostent -C/macro/-/Endian16_Swap -C/macro/-/Endian32_Swap -C/macro/-/Endian64_Swap -C/macro/-/EndianS16_BtoL -C/macro/-/EndianS16_BtoN -C/macro/-/EndianS16_LtoB -C/macro/-/EndianS16_LtoN -C/macro/-/EndianS16_NtoB -C/macro/-/EndianS16_NtoL -C/macro/-/EndianS32_BtoL -C/macro/-/EndianS32_BtoN -C/macro/-/EndianS32_LtoB -C/macro/-/EndianS32_LtoN -C/macro/-/EndianS32_NtoB -C/macro/-/EndianS32_NtoL -C/macro/-/EndianS64_BtoL -C/macro/-/EndianS64_BtoN -C/macro/-/EndianS64_LtoB -C/macro/-/EndianS64_LtoN -C/macro/-/EndianS64_NtoB -C/macro/-/EndianS64_NtoL -C/macro/-/EndianU16_BtoL -C/macro/-/EndianU16_BtoN -C/macro/-/EndianU16_LtoB -C/macro/-/EndianU16_LtoN -C/macro/-/EndianU16_NtoB -C/macro/-/EndianU16_NtoL -C/macro/-/EndianU32_BtoL -C/macro/-/EndianU32_BtoN -C/macro/-/EndianU32_LtoB -C/macro/-/EndianU32_LtoN -C/macro/-/EndianU32_NtoB -C/macro/-/EndianU32_NtoL -C/macro/-/EndianU64_BtoL -C/macro/-/EndianU64_BtoN -C/macro/-/EndianU64_LtoB -C/macro/-/EndianU64_LtoN -C/macro/-/EndianU64_NtoB -C/macro/-/EndianU64_NtoL -Objective-C/instm/NSEntityMigrationPolicy/endInstanceCreationForEntityMapping:manager:error: -Objective-C/instm/PDFAnnotationLine/endLineStyle -Objective-C/instm/NSTypesetter/endLineWithGlyphRange: -Objective-C/instm/NSURLHandle/endLoadInBackground -C/func/-/EndMediaEdits -Objective-C/instm/NSApplication/endModalSession: -C/func/-/endnetent -C/func/-/endnetgrent -JavaScript/data/Range/endOffset -C/macro/-/EndOfStream -Objective-C/instm/NSView/endPage -Objective-C/instm/NSTypesetter/endParagraph -Objective-C/intfm/FxParameterCreationAPI/endParameterSubGroup -Objective-C/instm/PDFAnnotationLine/endPoint -Objective-C/instm/CAGradientLayer/endPoint -Objective-C/instp/CAGradientLayer/endPoint -C++/tag/IOUSBController/Endpoint -Objective-C/intfm/QLPreviewPanelController/endPreviewPanelControl: -Objective-C/instm/CATransition/endProgress -Objective-C/instp/CATransition/endProgress -C/func/-/endprotoent -C/func/-/endpwent -C/func/-/EndQDContextForApplicationDockTile -Objective-C/instm/NSEntityMigrationPolicy/endRelationshipCreationForEntityMapping:manager:error: -C/func/-/endrpcent -C/func/-/endservent -Objective-C/instm/NSApplication/endSheet: -Objective-C/instm/NSApplication/endSheet:returnCode: -Objective-C/instm/NSRangeSpecifier/endSpecifier -Objective-C/instm/NSWhoseSpecifier/endSubelementIdentifier -Objective-C/instm/NSWhoseSpecifier/endSubelementIndex -C/func/-/endttyent -Objective-C/instm/NSUndoManager/endUndoGrouping -C/func/-/endusershell -C/func/-/endutxent -C/func/-/endwin -C/econst/-/eNetInfoError -C/func/-/engine -C/func/-/ENGINE_add -C/func/-/ENGINE_by_id -C/func/-/ENGINE_cleanup -C/func/-/ENGINE_cmd_is_executable -C/func/-/ENGINE_ctrl -C/func/-/ENGINE_ctrl_cmd -C/func/-/ENGINE_ctrl_cmd_string -C/func/-/ENGINE_finish -C/func/-/ENGINE_free -C/func/-/ENGINE_get_cipher -C/func/-/ENGINE_get_cipher_engine -C/func/-/ENGINE_get_ciphers -C/func/-/ENGINE_get_cmd_defns -C/func/-/ENGINE_get_ctrl_function -C/func/-/ENGINE_get_default_DH -C/func/-/ENGINE_get_default_DSA -C/func/-/ENGINE_get_default_ECDH -C/func/-/ENGINE_get_default_ECDSA -C/func/-/ENGINE_get_default_RAND -C/func/-/ENGINE_get_default_RSA -C/func/-/ENGINE_get_destroy_function -C/func/-/ENGINE_get_DH -C/func/-/ENGINE_get_digest -C/func/-/ENGINE_get_digest_engine -C/func/-/ENGINE_get_digests -C/func/-/ENGINE_get_DSA -C/func/-/ENGINE_get_ECDH -C/func/-/ENGINE_get_ECDSA -C/func/-/ENGINE_get_ex_data -C/func/-/ENGINE_get_ex_new_index -C/func/-/ENGINE_get_finish_function -C/func/-/ENGINE_get_first -C/func/-/ENGINE_get_flags -C/func/-/ENGINE_get_id -C/func/-/ENGINE_get_init_function -C/func/-/ENGINE_get_last -C/func/-/ENGINE_get_load_privkey_function -C/func/-/ENGINE_get_load_pubkey_function -C/func/-/ENGINE_get_name -C/func/-/ENGINE_get_next -C/func/-/ENGINE_get_prev -C/func/-/ENGINE_get_RAND -C/func/-/ENGINE_get_RSA -C/func/-/ENGINE_get_STORE -C/func/-/ENGINE_get_table_flags -C/func/-/ENGINE_init -C/func/-/ENGINE_load_4758cca -C/func/-/ENGINE_load_aep -C/func/-/ENGINE_load_atalla -C/func/-/ENGINE_load_builtin_engines -C/func/-/ENGINE_load_chil -C/func/-/ENGINE_load_cryptodev -C/func/-/ENGINE_load_cswift -C/func/-/ENGINE_load_dynamic -C/func/-/ENGINE_load_gmp -C/func/-/ENGINE_load_nuron -C/func/-/ENGINE_load_openssl -C/func/-/ENGINE_load_private_key -C/func/-/ENGINE_load_public_key -C/func/-/ENGINE_load_sureware -C/func/-/ENGINE_load_ubsec -C/func/-/ENGINE_new -C/func/-/ENGINE_register_all_ciphers -C/func/-/ENGINE_register_all_complete -C/func/-/ENGINE_register_all_DH -C/func/-/ENGINE_register_all_digests -C/func/-/ENGINE_register_all_DSA -C/func/-/ENGINE_register_all_ECDH -C/func/-/ENGINE_register_all_ECDSA -C/func/-/ENGINE_register_all_RAND -C/func/-/ENGINE_register_all_RSA -C/func/-/ENGINE_register_all_STORE -C/func/-/ENGINE_register_ciphers -C/func/-/ENGINE_register_complete -C/func/-/ENGINE_register_DH -C/func/-/ENGINE_register_digests -C/func/-/ENGINE_register_DSA -C/func/-/ENGINE_register_ECDH -C/func/-/ENGINE_register_ECDSA -C/func/-/ENGINE_register_RAND -C/func/-/ENGINE_register_RSA -C/func/-/ENGINE_register_STORE -C/func/-/ENGINE_remove -C/func/-/ENGINE_set_ciphers -C/func/-/ENGINE_set_cmd_defns -C/func/-/ENGINE_set_ctrl_function -C/func/-/ENGINE_set_default -C/func/-/ENGINE_set_default_ciphers -C/func/-/ENGINE_set_default_DH -C/func/-/ENGINE_set_default_digests -C/func/-/ENGINE_set_default_DSA -C/func/-/ENGINE_set_default_ECDH -C/func/-/ENGINE_set_default_ECDSA -C/func/-/ENGINE_set_default_RAND -C/func/-/ENGINE_set_default_RSA -C/func/-/ENGINE_set_default_string -C/func/-/ENGINE_set_destroy_function -C/func/-/ENGINE_set_DH -C/func/-/ENGINE_set_digests -C/func/-/ENGINE_set_DSA -C/func/-/ENGINE_set_ECDH -C/func/-/ENGINE_set_ECDSA -C/func/-/ENGINE_set_ex_data -C/func/-/ENGINE_set_finish_function -C/func/-/ENGINE_set_flags -C/func/-/ENGINE_set_id -C/func/-/ENGINE_set_init_function -C/func/-/ENGINE_set_load_privkey_function -C/func/-/ENGINE_set_load_pubkey_function -C/func/-/ENGINE_set_name -C/func/-/ENGINE_set_RAND -C/func/-/ENGINE_set_RSA -C/func/-/ENGINE_set_STORE -C/func/-/ENGINE_set_table_flags -C/func/-/ENGINE_unregister_ciphers -C/func/-/ENGINE_unregister_DH -C/func/-/ENGINE_unregister_digests -C/func/-/ENGINE_unregister_DSA -C/func/-/ENGINE_unregister_ECDH -C/func/-/ENGINE_unregister_ECDSA -C/func/-/ENGINE_unregister_RAND -C/func/-/ENGINE_unregister_RSA -C/func/-/ENGINE_unregister_STORE -C/func/-/ENGINE_up_ref -Objective-C/instm/SFAuthorizationPluginView/engineRef -C/econst/-/eNoLongerSupported -C/econst/-/eNoPluginFactoriesFound -C/econst/-/eNoPluginsLoaded -C/econst/-/eNoSearchNodesFound -C/econst/-/eNotHandledByThisNode -C/econst/-/eNotYetImplemented -C++/instm/IOBasicOutputQueue/enqueue -C++/instm/IODataQueue/enqueue -C++/instm/IOOutputQueue/enqueue -C++/instm/IOPacketQueue/enqueue -C/func/-/EnqueueInputBuffer -C/func/-/EnqueueInputEntry -Objective-C/instm/NSNotificationQueue/enqueueNotification:postingStyle: -Objective-C/instm/NSNotificationQueue/enqueueNotification:postingStyle:coalesceMask:forModes: -C++/instm/IOStream/enqueueOutputBuffer -C++/instm/IOStream/enqueueOutputEntry -C++/instm/IOPacketQueue/enqueueWithDrop -Objective-C/instm/NSTextStorage/ensureAttributesAreFixedInRange: -C++/instm/OSArray/ensureCapacity -C++/instm/OSCollection/ensureCapacity -C++/instm/OSDictionary/ensureCapacity -C++/instm/OSOrderedSet/ensureCapacity -C++/instm/OSData/ensureCapacity -C++/instm/OSSet/ensureCapacity -Objective-C/instm/NSLayoutManager/ensureGlyphsForCharacterRange: -Objective-C/instm/NSLayoutManager/ensureGlyphsForGlyphRange: -Objective-C/instm/NSLayoutManager/ensureLayoutForBoundingRect:inTextContainer: -Objective-C/instm/NSLayoutManager/ensureLayoutForCharacterRange: -Objective-C/instm/NSLayoutManager/ensureLayoutForGlyphRange: -Objective-C/instm/NSLayoutManager/ensureLayoutForTextContainer: -C++/instm/IORegistryIterator/enterEntry -Objective-C/clm/NSEvent/enterExitEventWithType:location:modifierFlags:timestamp:windowNumber:context:eventNumber:trackingNumber:userData: -Objective-C/instm/QLPreviewPanel/enterFullScreenMode:withOptions: -Objective-C/instm/NSView/enterFullScreenMode:withOptions: -Objective-C/clm/QTMovie/enterQTKitOnThread -Objective-C/clm/QTMovie/enterQTKitOnThreadDisablingThreadSafetyProtection -Objective-C/instm/NSManagedObjectModel/entities -JavaScript/data/DocumentType/entities -Objective-C/instm/NSManagedObjectModel/entitiesByName -Objective-C/instm/NSManagedObjectModel/entitiesForConfiguration: -Objective-C/instm/NSManagedObjectID/entity -Objective-C/instm/NSPropertyDescription/entity -Objective-C/instm/NSFetchRequest/entity -Objective-C/instm/NSManagedObject/entity -JavaScript/data/DOMWindow/Entity -JavaScript/cl/-/Entity -JavaScript/clconst/core/ENTITY_NODE -JavaScript/clconst/core/ENTITY_REFERENCE_NODE -Objective-C/instm/NSXMLDTD/entityDeclarationForName: -C/tdef/-/entityDeclSAXFunc -Objective-C/clm/NSEntityDescription/entityForName:inManagedObjectContext: -Objective-C/instm/NSMappingModel/entityMappings -Objective-C/instm/NSMappingModel/entityMappingsByName -Objective-C/instm/NSEntityMapping/entityMigrationPolicyClassName -Objective-C/instm/NSObjectController/entityName -Objective-C/instm/NSObject/entityNamesToPull -Objective-C/instm/NSObject/entityNamesToSync -JavaScript/data/DOMWindow/EntityReference -JavaScript/cl/-/EntityReference -Objective-C/instm/NSManagedObjectModel/entityVersionHashesByName -Objective-C/instp/PSFeed/entries -Objective-C/instp/PSEnclosure/entry -Objective-C/instm/PSFeed/entryEnumeratorSortedBy: -Objective-C/instm/NSCell/entryType -Objective-C/instm/PSClient/entryWithIdentifier: -Objective-C/instm/NSAppleEventDescriptor/enumCodeValue -Objective-C/instm/NSAttributedString/enumerateAttribute:inRange:options:usingBlock: -Objective-C/instm/NSAttributedString/enumerateAttributesInRange:options:usingBlock: -Objective-C/instm/NSIndexSet/enumerateIndexesInRange:options:usingBlock: -Objective-C/instm/NSIndexSet/enumerateIndexesUsingBlock: -Objective-C/instm/NSIndexSet/enumerateIndexesWithOptions:usingBlock: -Objective-C/instm/NSDictionary/enumerateKeysAndObjectsUsingBlock: -Objective-C/instm/NSDictionary/enumerateKeysAndObjectsWithOptions:usingBlock: -Objective-C/instm/NSString/enumerateLinesUsingBlock: -Objective-C/instm/NSArray/enumerateObjectsAtIndexes:options:usingBlock: -Objective-C/instm/NSSet/enumerateObjectsUsingBlock: -Objective-C/instm/NSArray/enumerateObjectsUsingBlock: -Objective-C/instm/NSSet/enumerateObjectsWithOptions:usingBlock: -Objective-C/instm/NSArray/enumerateObjectsWithOptions:usingBlock: -Objective-C/instm/NSString/enumerateSubstringsInRange:options:usingBlock: -Objective-C/instm/NSFileManager/enumeratorAtPath: -Objective-C/instm/NSFileManager/enumeratorAtURL:includingPropertiesForKeys:options:errorHandler: -Objective-C/instm/NSProcessInfo/environment -Objective-C/instm/NSTask/environment -C/econst/-/eofErr -C/econst/-/eParameterError -C/econst/-/eParameterReceiveError -C/econst/-/eParameterSendError -C/econst/-/ePluginAlreadyLoaded -C/econst/-/ePlugInCallTimedOut -C/econst/-/ePluginConfigAvailNotFound -C/econst/-/ePluginConfigFileNotFound -C/econst/-/ePlugInDataError -C/econst/-/ePlugInError -C/econst/-/ePlugInFailedToInitialize -C/econst/-/ePluginHandlerNotLoaded -C/econst/-/ePlugInInitError -C/econst/-/ePluginNameNotFound -C/econst/-/ePlugInNotActive -C/econst/-/ePlugInNotFound -C/tdef/-/ePluginState -C/econst/-/ePluginVersionNotFound -Objective-C/clm/NSPrintOperation/EPSOperationWithView:insideRect:toData: -Objective-C/clm/NSPrintOperation/EPSOperationWithView:insideRect:toData:printInfo: -Objective-C/clm/NSPrintOperation/EPSOperationWithView:insideRect:toPath:printInfo: -Objective-C/instm/NSEPSImageRep/EPSRepresentation -JavaScript/clconst/WebGLRenderingContext/EQUAL -C/func/-/EqualMatrix -Objective-C/instm/NSDateComponents/era -C/func/-/erand48 -Objective-C/instm/QCView/erase -C/func/-/erase -C/func/-/erasechar -Objective-C/instm/QCView/eraseColor -Objective-C/clm/DRErase/eraseForDevice: -Objective-C/instm/DREraseSetupPanel/eraseObject -C++/instm/IOAudioEngine/eraseOutputSamples -Objective-C/instm/NSObject(DREraseProgressPanelDelegateMethods)/eraseProgressPanel:eraseDidFinish: -Objective-C/instm/NSObject(DREraseProgressPanelDelegateMethods)/eraseProgressPanelDidFinish: -Objective-C/instm/NSObject(DREraseProgressPanelDelegateMethods)/eraseProgressPanelWillBegin: -Objective-C/instm/DRErase(PropertyConvenienceMethods)/eraseType -Objective-C/instm/DREraseSetupPanel/eraseType: -C/func/-/erasewchar -Objective-C/instm/NSDateFormatter/eraSymbols -C/func/-/erf -C/func/-/erfc -C/func/-/erfcf -C/func/-/erfcl -C/func/-/erff -C/func/-/erfl -C/func/-/err -C/func/-/ERR_add_error_data -C/func/-/ERR_clear_error -C/func/-/ERR_error_string -C/func/-/ERR_error_string_n -C/func/-/ERR_free_strings -C/func/-/ERR_func_error_string -C/func/-/ERR_get_error -C/func/-/ERR_get_error_line -C/func/-/ERR_get_error_line_data -C/func/-/ERR_GET_FUNC -C/func/-/ERR_GET_LIB -C/func/-/ERR_get_next_error_library -C/func/-/ERR_GET_REASON -C/func/-/ERR_lib_error_string -C/func/-/ERR_load_crypto_strings -C/func/-/ERR_load_strings -C/func/-/ERR_load_UI_strings -C/func/-/ERR_PACK -C/func/-/ERR_peek_error -C/func/-/ERR_peek_error_line -C/func/-/ERR_peek_error_line_data -C/func/-/ERR_peek_last_error -C/func/-/ERR_peek_last_error_line -C/func/-/ERR_peek_last_error_line_data -C/func/-/ERR_pop_to_mark -C/func/-/ERR_print_errors -C/func/-/ERR_print_errors_fp -C/func/-/ERR_put_error -C/func/-/ERR_reason_error_string -C/func/-/ERR_remove_state -C/func/-/err_set_exit -C/func/-/err_set_exit_b -C/func/-/err_set_file -C/func/-/ERR_set_mark -C/tag/-/ErrataListEntryStruct -C/econst/-/errAuthorizationCanceled -C/econst/-/errAuthorizationDenied -C/econst/-/errAuthorizationExternalizeNotAllowed -C/econst/-/errAuthorizationInteractionNotAllowed -C/econst/-/errAuthorizationInternal -C/econst/-/errAuthorizationInternalizeNotAllowed -C/econst/-/errAuthorizationInvalidFlags -C/econst/-/errAuthorizationInvalidPointer -C/econst/-/errAuthorizationInvalidRef -C/econst/-/errAuthorizationInvalidSet -C/econst/-/errAuthorizationInvalidTag -C/econst/-/errAuthorizationSuccess -C/econst/-/errAuthorizationToolEnvironmentError -C/econst/-/errAuthorizationToolExecuteFailure -C/func/-/errc -C/econst/-/errDataBrowserInvalidPropertyData -C/econst/-/errDataBrowserInvalidPropertyPart -C/econst/-/errDataBrowserItemNotAdded -C/econst/-/errDataBrowserItemNotFound -C/econst/-/errDataBrowserNotConfigured -C/econst/-/errDataBrowserPropertyNotFound -C/econst/-/errDataBrowserPropertyNotSupported -C/econst/-/errFSBadAllocFlags -C/econst/-/errFSBadBuffer -C/econst/-/errFSBadForkName -C/econst/-/errFSBadForkRef -C/econst/-/errFSBadFSRef -C/econst/-/errFSBadInfoBitmap -C/econst/-/errFSBadItemCount -C/econst/-/errFSBadIteratorFlags -C/econst/-/errFSBadPosMode -C/econst/-/errFSBadSearchParams -C/econst/-/errFSForkExists -C/econst/-/errFSForkNotFound -C/econst/-/errFSIteratorNotFound -C/econst/-/errFSIteratorNotSupported -C/econst/-/errFSMissingCatInfo -C/econst/-/errFSMissingName -C/econst/-/errFSNameTooLong -C/econst/-/errFSNoMoreItems -C/econst/-/errFSNotAFolder -C/econst/-/errFSQuotaExceeded -C/econst/-/errFSRefsDifferent -C/econst/-/errFSUnknownCall -C++/instm/IOService/errnoFromReturn -C/tag/-/Error -JavaScript/cl/-/Error -Objective-C/instm/XGConnection/error -Objective-C/instm/XGActionMonitor/error -Objective-C/instm/XGAuthenticator/error -Objective-C/instm/NSURLAuthenticationChallenge/error -JavaScript/instm/Console/error -JavaScript/data/HTMLMediaElement/error -JavaScript/data/FileReader/error -JavaScript/data/IDBRequest/error -JavaScript/cl/-/ErrorEvent -C/tdef/-/errorSAXFunc -Objective-C/clm/NSError/errorWithDomain:code:userInfo: -C/econst/-/errSecACLNotSimple -C/econst/-/errSecAllocate -C/econst/-/errSecAuthFailed -C/econst/-/errSecBufferTooSmall -C/econst/-/errSecCreateChainFailed -C/econst/-/errSecCSBadDictionaryFormat -C/econst/-/errSecCSBadObjectFormat -C/econst/-/errSecCSBadResource -C/econst/-/errSecCSCMSTooLarge -C/econst/-/errSecCSGuestInvalid -C/econst/-/errSecCSHostProtocolContradiction -C/econst/-/errSecCSHostProtocolDedicationError -C/econst/-/errSecCSHostProtocolInvalidAttribute -C/econst/-/errSecCSHostProtocolInvalidHash -C/econst/-/errSecCSHostProtocolNotProxy -C/econst/-/errSecCSHostProtocolRelativePath -C/econst/-/errSecCSHostProtocolStateError -C/econst/-/errSecCSHostProtocolUnrelated -C/econst/-/errSecCSHostReject -C/econst/-/errSecCSInternalError -C/econst/-/errSecCSInvalidAttributeValues -C/econst/-/errSecCSInvalidFlags -C/econst/-/errSecCSInvalidObjectRef -C/econst/-/errSecCSInvalidOperation -C/econst/-/errSecCSMultipleGuests -C/econst/-/errSecCSNoSuchCode -C/econst/-/errSecCSNotAHost -C/econst/-/errSecCSNotSupported -C/econst/-/errSecCSObjectRequired -C/econst/-/errSecCSReqFailed -C/econst/-/errSecCSReqInvalid -C/econst/-/errSecCSReqUnsupported -C/econst/-/errSecCSResourceRulesInvalid -C/econst/-/errSecCSResourcesInvalid -C/econst/-/errSecCSResourcesNotFound -C/econst/-/errSecCSResourcesNotSealed -C/econst/-/errSecCSSigDBAccess -C/econst/-/errSecCSSigDBDenied -C/econst/-/errSecCSSignatureFailed -C/econst/-/errSecCSSignatureInvalid -C/econst/-/errSecCSSignatureNotVerifiable -C/econst/-/errSecCSSignatureUnsupported -C/econst/-/errSecCSStaticCodeChanged -C/econst/-/errSecCSStaticCodeNotFound -C/econst/-/errSecCSUnimplemented -C/econst/-/errSecCSUnsigned -C/econst/-/errSecCSUnsupportedGuestAttributes -C/econst/-/errSecDataNotAvailable -C/econst/-/errSecDataNotModifiable -C/econst/-/errSecDataTooLarge -C/econst/-/errSecDecode -C/econst/-/errSecDuplicateCallback -C/econst/-/errSecDuplicateItem -C/econst/-/errSecDuplicateKeychain -C/econst/-/errSecInteractionNotAllowed -C/econst/-/errSecInteractionRequired -C/econst/-/errSecInvalidCallback -C/econst/-/errSecInvalidItemRef -C/econst/-/errSecInvalidKeychain -C/econst/-/errSecInvalidOwnerEdit -C/econst/-/errSecInvalidPasswordRef -C/econst/-/errSecInvalidPrefsDomain -C/econst/-/errSecInvalidSearchRef -C/econst/-/errSecInvalidTrustSetting -C/econst/-/errSecInvalidTrustSettings -C/econst/-/errSecItemNotFound -C/econst/-/errSecKeyIsSensitive -C/econst/-/errSecKeySizeNotAllowed -C/econst/-/errSecMultiplePrivKeys -C/econst/-/errSecNoAccessForItem -C/econst/-/errSecNoCertificateModule -C/econst/-/errSecNoDefaultKeychain -C/econst/-/errSecNoPolicyModule -C/econst/-/errSecNoStorageModule -C/econst/-/errSecNoSuchAttr -C/econst/-/errSecNoSuchClass -C/econst/-/errSecNoSuchKeychain -C/econst/-/errSecNotAvailable -C/econst/-/errSecNoTrustSettings -C/econst/-/errSecParam -C/econst/-/errSecPassphraseRequired -C/econst/-/errSecPkcs12VerifyFailure -C/econst/-/errSecPolicyNotFound -C/econst/-/errSecReadOnly -C/econst/-/errSecReadOnlyAttr -C/econst/-/errSecSuccess -C/econst/-/errSecTrustNotAvailable -C/econst/-/errSecUnimplemented -C/econst/-/errSecUnknownFormat -C/econst/-/errSecUnsupportedFormat -C/econst/-/errSecWrongSecVersion -C/econst/-/errSSLBadCert -C/econst/-/errSSLBadCipherSuite -C/econst/-/errSSLBadConfiguration -C/econst/-/errSSLBadRecordMac -C/econst/-/errSSLBufferOverflow -C/econst/-/errSSLCertExpired -C/econst/-/errSSLCertNotYetValid -C/econst/-/errSSLClosedAbort -C/econst/-/errSSLClosedGraceful -C/econst/-/errSSLClosedNoNotify -C/econst/-/errSSLConnectionRefused -C/econst/-/errSSLCrypto -C/econst/-/errSSLDecryptionFail -C/econst/-/errSSLFatalAlert -C/econst/-/errSSLIllegalParam -C/econst/-/errSSLInternal -C/econst/-/errSSLModuleAttach -C/econst/-/errSSLNegotiation -C/econst/-/errSSLNoRootCert -C/econst/-/errSSLPeerAccessDenied -C/econst/-/errSSLPeerBadCert -C/econst/-/errSSLPeerBadRecordMac -C/econst/-/errSSLPeerCertExpired -C/econst/-/errSSLPeerCertRevoked -C/econst/-/errSSLPeerCertUnknown -C/econst/-/errSSLPeerDecodeError -C/econst/-/errSSLPeerDecompressFail -C/econst/-/errSSLPeerDecryptError -C/econst/-/errSSLPeerDecryptionFail -C/econst/-/errSSLPeerExportRestriction -C/econst/-/errSSLPeerHandshakeFail -C/econst/-/errSSLPeerInsufficientSecurity -C/econst/-/errSSLPeerInternalError -C/econst/-/errSSLPeerNoRenegotiation -C/econst/-/errSSLPeerProtocolVersion -C/econst/-/errSSLPeerRecordOverflow -C/econst/-/errSSLPeerUnexpectedMsg -C/econst/-/errSSLPeerUnknownCA -C/econst/-/errSSLPeerUnsupportedCert -C/econst/-/errSSLPeerUserCancelled -C/econst/-/errSSLProtocol -C/econst/-/errSSLRecordOverflow -C/econst/-/errSSLSessionNotFound -C/econst/-/errSSLUnknownRootCert -C/econst/-/errSSLWouldBlock -C/econst/-/errSSLXCertChainInvalid -C/econst/-/errWSInternalError -C/econst/-/errWSParseError -C/econst/-/errWSTimeoutError -C/econst/-/errWSTransportError -C/func/-/errx -C/func/-/Escape -C/econst/-/eSearchPathNotDefined -C/econst/-/eServerError -C/econst/-/eServerNotRunning -C/econst/-/eServerReceiveError -C/econst/-/eServerReplyError -C/econst/-/eServerSendError -Objective-C/instm/NSNibControlConnector/establishConnection -Objective-C/instm/NSNibOutletConnector/establishConnection -Objective-C/instm/NSNibConnector/establishConnection -Objective-C/instm/WebView/estimatedProgress -Objective-C/instm/DRTrack/estimateLength -Objective-C/intfm/DRTrackDataProduction/estimateLengthOfTrack: -C/func/-/ether_aton -C/func/-/ether_hostton -C/func/-/ether_line -C/func/-/ether_ntoa -C/func/-/ether_ntohost -C/func/-/ethers -C/econst/-/eUndefinedError -C/econst/-/eUnknownAPICall -C/econst/-/eUnknownPlugIn -C/econst/-/eUnknownServerError -Objective-C/instm/NSPositionalSpecifier/evaluate -JavaScript/instm/Document/evaluate -JavaScript/instm/JavaScriptCallFrame/evaluate -JavaScript/instm/XPathEvaluator/evaluate -JavaScript/instm/XPathExpression/evaluate -Objective-C/instm/NSScriptCommand/evaluatedArguments -Objective-C/instm/NSScriptCommand/evaluatedReceivers -Objective-C/instm/WebScriptObject/evaluateWebScript: -Objective-C/instm/NSPredicate/evaluateWithObject: -Objective-C/instm/NSPredicate/evaluateWithObject:substitutionVariables: -Objective-C/instm/NSScriptObjectSpecifier/evaluationErrorNumber -Objective-C/instm/NSScriptObjectSpecifier/evaluationErrorSpecifier -C/func/-/evdns -C/func/-/evdns_clear_nameservers_and_suspend -C/func/-/evdns_config_windows_nameservers -C/func/-/evdns_count_nameservers -C/func/-/evdns_err_to_string -C/func/-/evdns_init -C/func/-/evdns_nameserver_add -C/func/-/evdns_nameserver_ip_add -C/func/-/evdns_resolv_conf_parse -C/func/-/evdns_resolve_ipv4 -C/func/-/evdns_resolve_reverse -C/func/-/evdns_resume -C/func/-/evdns_search_add -C/func/-/evdns_search_clear -C/func/-/evdns_search_ndots_set -C/func/-/evdns_set_log_fn -C/func/-/evdns_shutdown -Objective-C/clm/CalEvent/event -JavaScript/data/DOMWindow/event -JavaScript/data/HTMLScriptElement/event -JavaScript/cl/-/Event -C++/data/IOWorkLoop/eventChain -C++/data/IOEventSource/eventChainNext -Objective-C/instm/NSAppleEventDescriptor/eventClass -Objective-C/intfm/SBApplicationDelegate/eventDidFail:withError: -JavaScript/data/DOMWindow/EventException -JavaScript/cl/-/EventException -Objective-C/instm/QCView/eventForwardingMask -Objective-C/instm/NSAppleEventDescriptor/eventID -JavaScript/cl/-/EventListener -C/func/-/EventMaskOfScreen -Objective-C/instm/NSEvent/eventNumber -JavaScript/data/Event/eventPhase -Objective-C/clm/CalCalendarStore/eventPredicateWithStartDate:endDate:calendars: -Objective-C/clm/CalCalendarStore/eventPredicateWithStartDate:endDate:UID:calendars: -C/tag/-/EventRecord -Objective-C/instm/NSEvent/eventRef -JavaScript/data/DOMWindow/EventSource -JavaScript/cl/-/EventSource -JavaScript/data/WorkerContext/EventSource -Objective-C/instm/CalCalendarStore/eventsWithPredicate: -JavaScript/cl/-/EventTarget -Objective-C/clm/NSEvent/eventWithCGEvent: -Objective-C/clm/NSEvent/eventWithEventRef: -Objective-C/instm/CalCalendarStore/eventWithUID:occurrence: -Objective-C/instm/NSCache/evictsObjectsWithDiscardedContent -C/func/-/evp -C/func/-/EVP_BytesToKey -C/func/-/EVP_CIPHER_asn1_to_param -C/func/-/EVP_CIPHER_block_size -C/func/-/EVP_CIPHER_CTX_block_size -C/func/-/EVP_CIPHER_CTX_cipher -C/func/-/EVP_CIPHER_CTX_cleanup -C/func/-/EVP_CIPHER_CTX_ctrl -C/func/-/EVP_CIPHER_CTX_flags -C/func/-/EVP_CIPHER_CTX_get_app_data -C/func/-/EVP_CIPHER_CTX_init -C/func/-/EVP_CIPHER_CTX_iv_length -C/func/-/EVP_CIPHER_CTX_key_length -C/func/-/EVP_CIPHER_CTX_mode -C/func/-/EVP_CIPHER_CTX_nid -C/func/-/EVP_CIPHER_CTX_set_app_data -C/func/-/EVP_CIPHER_CTX_set_key_length -C/func/-/EVP_CIPHER_CTX_set_padding -C/func/-/EVP_CIPHER_CTX_type -C/func/-/EVP_CIPHER_flags -C/func/-/EVP_CIPHER_iv_length -C/func/-/EVP_CIPHER_key_length -C/func/-/EVP_CIPHER_mode -C/func/-/EVP_CIPHER_nid -C/func/-/EVP_CIPHER_param_to_asn1 -C/func/-/EVP_CIPHER_type -C/func/-/EVP_CipherFinal -C/func/-/EVP_CipherFinal_ex -C/func/-/EVP_CipherInit -C/func/-/EVP_CipherInit_ex -C/func/-/EVP_CipherUpdate -C/func/-/EVP_DecryptFinal -C/func/-/EVP_DecryptFinal_ex -C/func/-/EVP_DecryptInit -C/func/-/EVP_DecryptInit_ex -C/func/-/EVP_DecryptUpdate -C/func/-/EVP_DigestFinal_ex -C/func/-/EVP_DigestInit -C/func/-/EVP_DigestInit_ex -C/func/-/EVP_DigestUpdate -C/func/-/EVP_dss -C/func/-/EVP_dss1 -C/func/-/EVP_EncryptFinal -C/func/-/EVP_EncryptFinal_ex -C/func/-/EVP_EncryptInit -C/func/-/EVP_EncryptInit_ex -C/func/-/EVP_EncryptUpdate -C/func/-/EVP_get_cipherbyname -C/func/-/EVP_get_cipherbynid -C/func/-/EVP_get_cipherbyobj -C/func/-/EVP_get_digestbyname -C/func/-/EVP_get_digestbynid -C/func/-/EVP_get_digestbyobj -C/func/-/EVP_MAX_MD_SIZE -C/func/-/EVP_md2 -C/func/-/EVP_md5 -C/func/-/EVP_MD_block_size -C/func/-/EVP_MD_CTX_block_size -C/func/-/EVP_MD_CTX_cleanup -C/func/-/EVP_MD_CTX_copy -C/func/-/EVP_MD_CTX_copy_ex -C/func/-/EVP_MD_CTX_create -C/func/-/EVP_MD_CTX_destroy -C/func/-/EVP_MD_CTX_init -C/func/-/EVP_MD_CTX_md -C/func/-/EVP_MD_CTX_size -C/func/-/EVP_MD_CTX_type -C/func/-/EVP_md_null -C/func/-/EVP_MD_pkey_type -C/func/-/EVP_MD_size -C/func/-/EVP_MD_type -C/func/-/EVP_mdc2 -C/func/-/EVP_OpenFinal -C/func/-/EVP_OpenInit -C/func/-/EVP_OpenUpdate -C/func/-/EVP_PKEY_assign_DH -C/func/-/EVP_PKEY_assign_DSA -C/func/-/EVP_PKEY_assign_EC_KEY -C/func/-/EVP_PKEY_assign_RSA -C/func/-/EVP_PKEY_free -C/func/-/EVP_PKEY_get1_DH -C/func/-/EVP_PKEY_get1_DSA -C/func/-/EVP_PKEY_get1_EC_KEY -C/func/-/EVP_PKEY_get1_RSA -C/func/-/EVP_PKEY_new -C/func/-/EVP_PKEY_set1_DH -C/func/-/EVP_PKEY_set1_DSA -C/func/-/EVP_PKEY_set1_EC_KEY -C/func/-/EVP_PKEY_set1_RSA -C/func/-/EVP_PKEY_type -C/func/-/EVP_ripemd160 -C/func/-/EVP_SealFinal -C/func/-/EVP_SealInit -C/func/-/EVP_SealUpdate -C/func/-/EVP_sha -C/func/-/EVP_sha1 -C/func/-/EVP_SignFinal -C/func/-/EVP_SignInit -C/func/-/EVP_SignInit_ex -C/func/-/EVP_SignUpdate -C/func/-/EVP_VerifyFinal -C/func/-/EVP_VerifyInit -C/func/-/EVP_VerifyInit_ex -C/func/-/EVP_VerifyUpdate -C/econst/-/eWSArrayType -C/econst/-/eWSBooleanType -C/econst/-/eWSDataType -C/econst/-/eWSDateType -C/econst/-/eWSDictionaryType -C/econst/-/eWSDoubleType -C/econst/-/eWSIntegerType -C/econst/-/eWSNullType -C/econst/-/eWSStringType -C/econst/-/eWSUnknownType -Objective-C/intfm/NSDecimalNumberBehaviors/exceptionDuringOperation:error:leftOperand:rightOperand: -Objective-C/instm/NSObject/exceptionHandler:shouldHandleException:mask: -Objective-C/instm/NSObject/exceptionHandler:shouldLogException:mask: -Objective-C/instm/NSExceptionHandler/exceptionHandlingMask -Objective-C/instm/NSExceptionHandler/exceptionHangingMask -Objective-C/clm/NSException/exceptionWithName:reason:userInfo: -C/func/-/exchangedata -Objective-C/instm/NSMutableArray/exchangeObjectAtIndex:withObjectAtIndex: -Objective-C/instm/PDFDocument/exchangePageAtIndex:withPageAtIndex: -Objective-C/instm/NSDictionaryController/excludedKeys -Objective-C/binding/NSDictionaryController/excludedKeys -C/func/-/exec -JavaScript/instm/Document/execCommand -C/func/-/execl -C/func/-/execle -C/func/-/execlp -Objective-C/instm/NSRunningApplication/executableArchitecture -Objective-C/instp/NSRunningApplication/executableArchitecture -Objective-C/instm/NSBundle/executableArchitectures -Objective-C/instm/NSBundle/executablePath -Objective-C/instm/NSRunningApplication/executableURL -Objective-C/instp/NSRunningApplication/executableURL -Objective-C/instm/NSBundle/executableURL -Objective-C/instm/QCPlugIn/execute:atTime:withArguments: -Objective-C/instm/NSAppleScript/executeAndReturnError: -Objective-C/instm/NSAppleScript/executeAppleEvent:error: -C++/instm/IOATABusCommand/executeCallback -Objective-C/instm/NSScriptCommand/executeCommand -C++/instm/IONetworkController/executeCommand -C++/instm/IOATADevice/executeCommand -C++/instm/ATADeviceNub/executeCommand -C++/instm/IOSCSIProtocolInterface/ExecuteCommand -C/func/-/ExecuteDataBrowserEditCommand -Objective-C/instm/NSManagedObjectContext/executeFetchRequest:error: -C++/instm/IOSCSIParallelInterfaceController/ExecuteParallelTask -C++/instm/IOBlockStorageDriver/executeRequest -JavaScript/instm/SQLTransaction/executeSql -JavaScript/instm/SQLTransactionSync/executeSql -Objective-C/instm/NSBlockOperation/executionBlocks -Objective-C/clm/QCPlugIn/executionMode -C/func/-/execv -C/func/-/execve -C/func/-/execvP -C/func/-/execvp -Objective-C/instm/NSManagedObjectContext/existingObjectWithID:error: -C/func/-/exit -Objective-C/clm/NSThread/exit -C++/instm/IORegistryIterator/exitEntry -Objective-C/instm/QLPreviewPanel/exitFullScreenModeWithOptions: -Objective-C/instm/NSView/exitFullScreenModeWithOptions: -Objective-C/clm/QTMovie/exitQTKitOnThread -C/func/-/ExitToShell -C/func/-/exp -C/func/-/exp2 -C/func/-/exp2f -C/func/-/exp2l -JavaScript/instm/Range/expand -Objective-C/instm/DRBurnSetupPanel/expand: -JavaScript/data/HTMLDataGridRowElement/expanded -JavaScript/data/NodeIterator/expandEntityReferences -JavaScript/data/TreeWalker/expandEntityReferences -Objective-C/instm/IKImageBrowserView/expandGroupAtIndex: -Objective-C/instm/NSOutlineView/expandItem: -Objective-C/instm/NSOutlineView/expandItem:expandChildren: -C++/tag/IOFireWireAVCAsynchronousCommand/ExpansionData -C++/tdef/IOATAController/ExpansionData -C++/tag/IOEventSource/ExpansionData -C++/tag/IOFilterInterruptEventSource/ExpansionData -C++/tag/IOAGPDevice/ExpansionData -C++/tag/IOExtendedLBA/ExpansionData -C/tag/-/ExpansionData -C++/tag/IOFireWireAVCSubUnit/ExpansionData -C++/tag/IOFireWireAVCTargetSpace/ExpansionData -C++/tag/IOCommandGate/ExpansionData -C++/tag/IOATABusInfo/ExpansionData -C++/tag/IOATADevConfig/ExpansionData -C++/tag/IOFireWireAVCCommand/ExpansionData -C++/tag/IOATADevice/ExpansionData -C++/tag/IOATACommand/ExpansionData -C++/tag/IOConfigDirectory/ExpansionData -C++/tag/ATADeviceNub/ExpansionData -C++/tag/IOATABusCommand/ExpansionData -C++/tag/IOBufferMemoryDescriptor/ExpansionData -C++/tag/IOFireWireBusAux/ExpansionData -C++/tag/IOFireWireAVCUnit/ExpansionData -C++/tag/ATATimerEventSource/ExpansionData -C++/tag/IOCommandPool/ExpansionData -C++/tag/IOFWAddressSpaceAux/ExpansionData -C++/tag/IOFWPseudoAddressSpace/ExpansionData -C++/tag/IOLocalConfigDirectory/ExpansionData -C++/tag/IOFireWireNub/ExpansionData -C++/tag/IOFireWireNubAux/ExpansionData -C++/tag/IOFWDelayCommand/ExpansionData -C++/tag/IOFireWireController/ExpansionData -C++/tag/IOFWLocalIsochPort/ExpansionData -C++/tag/IOFireWirePowerManager/ExpansionData -C++/tag/IOFWBusCommand/ExpansionData -C++/tag/IOFireWireUnit/ExpansionData -C++/tag/IOFireWireDeviceAux/ExpansionData -C++/tag/IOFWPhysicalAddressSpaceAux/ExpansionData -C++/tag/IOFireWireIRMAllocation/ExpansionData -C++/tag/IOFireWirePCRSpace/ExpansionData -C++/tag/IOInterruptEventSource/ExpansionData -C++/tag/IOFramebuffer/ExpansionData -C++/tag/IOFireWireDevice/ExpansionData -C++/tag/IOMemoryDescriptor/ExpansionData -C++/tag/IOFireWireControllerAux/ExpansionData -C++/tag/IODCLProgram/ExpansionData -C++/tag/IOFWIsochChannel/ExpansionData -C++/tag/IOFireWireUnitAux/ExpansionData -C++/tag/IOFWAddressSpace/ExpansionData -C++/tag/IOFireWireLocalNodeAux/ExpansionData -C++/tag/IOFWAsyncStreamListener/ExpansionData -C++/tag/IOWorkLoop/ExpansionData -C++/tdef/IOPCIATA/ExpansionData -C++/tag/IOPCI2PCIBridge/ExpansionData -C++/tag/IOUserClient/ExpansionData -C++/tag/IOTimerEventSource/ExpansionData -C++/tag/IORegistryEntry/ExpansionData -C++/tag/IOService/ExpansionData -C++/tag/IORemoteConfigDirectory/ExpansionData -C++/tag/MacIOATA/ExpansionData -Objective-C/instm/NSCell/expansionFrameWithFrame:inView: -Objective-C/instm/NSURLResponse/expectedContentLength -Objective-C/instm/NSURLHandle/expectedResourceDataSize -C/func/-/expf -Objective-C/instp/PSFeedSettings/expirationInterval -Objective-C/instm/NSHTTPCookie/expiresDate -C/func/-/expl -C++/data/IOInterruptEventSource/explicitDisable -Objective-C/instm/DRFSObject/explicitFilesystemMask -C/func/-/expm1 -C/func/-/expm1f -C/func/-/expm1l -JavaScript/data/SVGComponentTransferFunctionElement/exponent -Objective-C/instm/NSNumberFormatter/exponentSymbol -Objective-C/instm/CIFilterGenerator/exportedKeys -Objective-C/instm/CIFilterGenerator/exportKey:fromObject:withName: -Objective-C/intfm/ApertureExportPlugIn/exportManagerDidFinishExport -Objective-C/intfm/ApertureExportPlugIn/exportManagerDidWriteImageDataToRelativePath:forImageAtIndex: -Objective-C/intfm/ApertureExportPlugIn/exportManagerExportTypeDidChange -Objective-C/intfm/ApertureExportPlugIn/exportManagerShouldBeginExport -Objective-C/intfm/ApertureExportPlugIn/exportManagerShouldCancelExport -Objective-C/intfm/ApertureExportPlugIn/exportManagerShouldExportImageAtIndex: -Objective-C/intfm/ApertureExportPlugIn/exportManagerShouldWriteImageData:toRelativePath:forImageAtIndex: -Objective-C/intfm/ApertureExportPlugIn/exportManagerWillBeginExportToPath: -Objective-C/intfm/ApertureExportPlugIn/exportManagerWillExportImageAtIndex: -C++/instm/IOUserClient/exportObjectToClient -Objective-C/clm/IKSlideshow/exportSlideshowItem:toApplication: -Objective-C/clm/NSObject/exposeBinding: -Objective-C/instm/NSObject/exposedBindings -Objective-C/instm/NSExpressionDescription/expression -Objective-C/instm/NSExpression/expressionBlock -Objective-C/clm/NSExpression/expressionForAggregate: -Objective-C/clm/NSExpression/expressionForBlock:arguments: -Objective-C/clm/NSExpression/expressionForConstantValue: -Objective-C/clm/NSExpression/expressionForEvaluatedObject -Objective-C/clm/NSFetchRequestExpression/expressionForFetch:context:countOnly: -Objective-C/clm/NSExpression/expressionForFunction:arguments: -Objective-C/clm/NSExpression/expressionForFunction:selectorName:arguments: -Objective-C/clm/NSExpression/expressionForIntersectSet:with: -Objective-C/clm/NSExpression/expressionForKeyPath: -Objective-C/clm/NSExpression/expressionForMinusSet:with: -Objective-C/clm/NSExpression/expressionForSubquery:usingIteratorVariable:predicate: -Objective-C/clm/NSExpression/expressionForUnionSet:with: -Objective-C/clm/NSExpression/expressionForVariable: -Objective-C/instm/NSExpressionDescription/expressionResultType -Objective-C/instm/NSExpression/expressionType -Objective-C/instm/NSExpression/expressionValueWithObject:context: -C/macro/-/EXSLT_COMMON_NAMESPACE -C/macro/-/EXSLT_CRYPTO_NAMESPACE -C/macro/-/EXSLT_DATE_NAMESPACE -C/macro/-/EXSLT_DYNAMIC_NAMESPACE -C/macro/-/EXSLT_FUNCTIONS_NAMESPACE -C/macro/-/EXSLT_MATH_NAMESPACE -C/macro/-/EXSLT_SETS_NAMESPACE -C/macro/-/EXSLT_STRINGS_NAMESPACE -C/macro/-/EXSLTCALL -C/func/-/exsltCommonRegister -C/func/-/exsltDateRegister -C/func/-/exsltDynRegister -C/func/-/exsltFuncRegister -C/func/-/exsltMathRegister -C/macro/-/EXSLTPUBFUN -C/macro/-/EXSLTPUBVAR -C/func/-/exsltRegisterAll -C/func/-/exsltSaxonRegister -C/func/-/exsltSetsRegister -C/func/-/exsltStrRegister -C/func/-/ExtAudioFileCreateNew -C/func/-/ExtAudioFileCreateWithURL -C/func/-/ExtAudioFileDispose -C/func/-/ExtAudioFileGetProperty -C/func/-/ExtAudioFileGetPropertyInfo -C/func/-/ExtAudioFileOpen -C/func/-/ExtAudioFileOpenURL -C/tdef/-/ExtAudioFilePropertyID -C/func/-/ExtAudioFileRead -C/tdef/-/ExtAudioFileRef -C/func/-/ExtAudioFileSeek -C/func/-/ExtAudioFileSetProperty -C/func/-/ExtAudioFileTell -C/func/-/ExtAudioFileWrapAudioFileID -C/func/-/ExtAudioFileWrite -C/func/-/ExtAudioFileWriteAsync -C/tdef/-/ExtComponentResource -JavaScript/instm/DOMSelection/extend -C++/instm/IOPCIDevice/extendedConfigRead16 -C++/instm/IOPCIDevice/extendedConfigRead32 -C++/instm/IOPCIDevice/extendedConfigRead8 -C++/instm/IOPCIDevice/extendedConfigWrite16 -C++/instm/IOPCIDevice/extendedConfigWrite32 -C++/instm/IOPCIDevice/extendedConfigWrite8 -C/tdef/-/ExtendedControlEvent -C++/instm/IOPCIDevice/extendedFindPCICapability -C/tdef/-/ExtendedNoteOnEvent -C/tdef/-/ExtendedTempoEvent -C/func/-/ExtendMediaDecodeDurationToDisplayEndTime -Objective-C/instm/NSWorkspace/extendPowerOffBy: -Objective-C/instm/PDFSelection/extendSelectionAtEnd: -Objective-C/instm/PDFSelection/extendSelectionAtStart: -C/func/-/Extension -JavaScript/clconst/WebGLRenderingContext/EXTENSIONS -Objective-C/instm/PSEntry/extensionXMLElementsUsingNamespace: -Objective-C/instm/PSFeed/extensionXMLElementsUsingNamespace: -Objective-C/instm/CIImageAccumulator/extent -Objective-C/instm/CIImage/extent -Objective-C/instm/CISampler/extent -JavaScript/data/DOMSelection/extentNode -JavaScript/data/DOMSelection/extentOffset -Objective-C/instm/NSObject/externalMovie: -JavaScript/data/SVGExternalResourcesRequired/externalResourcesRequired -C/tdef/-/externalSubsetSAXFunc -C/econst/-/extFSErr -JavaScript/instm/Range/extractContents -Objective-C/instm/NSLayoutManager/extraLineFragmentRect -Objective-C/instm/NSLayoutManager/extraLineFragmentTextContainer -Objective-C/instm/NSLayoutManager/extraLineFragmentUsedRect -JavaScript/data/SVGMatrix/f -JavaScript/data/WebKitCSSMatrix/f -C/func/-/f3x3 -C/func/-/f3x3D -C/func/-/f5x5 -C/func/-/f5x5D -C/func/-/fabs -C/func/-/fabsf -C/func/-/fabsl -JavaScript/data/HTMLBaseFontElement/face -JavaScript/data/HTMLFontElement/face -C++/data/IODMACommand/fActive -Objective-C/clm/CATiledLayer/fadeDuration -C++/instm/TestRun/failedTest -C++/instm/TestRun/failureCount -Objective-C/instm/NSURLHandle/failureReason -Objective-C/instm/NSURLAuthenticationChallenge/failureResponse -Objective-C/instm/XGAuthenticator/failWithError: -C++/data/IODMACommand/fAlignMask -JavaScript/clconst/WebGLRenderingContext/FALSE -C++/data/IOAudioDevice/familyManagePower -Objective-C/instm/NSFont/familyName -Objective-C/instm/WebPreferences/fantasyFontFamily -JavaScript/data/SVGLocatable/farthestViewportElement -JavaScript/clconst/WebGLRenderingContext/FASTEST -Objective-C/instm/NSString/fastestEncoding -C/tag/-/fat_arch -C/tag/-/fat_header -C/tdef/-/fatalErrorSAXFunc -Objective-C/instm/NSManagedObject/faultingState -Objective-C/clm/IOBluetoothDevice/favoriteDevices -C/econst/-/fBsyErr -C++/data/IODMACommand/fBypassMask -C/func/-/FcAtomicCreate -C/func/-/FcAtomicDeleteNew -C/func/-/FcAtomicDestroy -C/func/-/FcAtomicLock -C/func/-/FcAtomicNewFile -C/func/-/FcAtomicOrigFile -C/func/-/FcAtomicReplaceOrig -C/func/-/FcAtomicUnlock -C/func/-/FcBlanksAdd -C/func/-/FcBlanksCreate -C/func/-/FcBlanksDestroy -C/func/-/FcBlanksIsMember -C/tdef/-/FCBPBRec -C/func/-/FcCacheCopySet -C/func/-/FcCacheDir -C/func/-/FcCacheNumFont -C/func/-/FcCacheNumSubdir -C/func/-/FcCacheSubdir -C/func/-/FcCharSetAddChar -C/func/-/FcCharSetCopy -C/func/-/FcCharSetCount -C/func/-/FcCharSetCoverage -C/func/-/FcCharSetCreate -C/func/-/FcCharSetDestroy -C/func/-/FcCharSetEqual -C/func/-/FcCharSetFirstPage -C/func/-/FcCharSetHasChar -C/func/-/FcCharSetIntersect -C/func/-/FcCharSetIntersectCount -C/func/-/FcCharSetIsSubset -C/func/-/FcCharSetMerge -C/func/-/FcCharSetNew -C/func/-/FcCharSetNextPage -C/func/-/FcCharSetSubtract -C/func/-/FcCharSetSubtractCount -C/func/-/FcCharSetUnion -C/func/-/FcConfigAppFontAddDir -C/func/-/FcConfigAppFontAddFile -C/func/-/FcConfigAppFontClear -C/func/-/FcConfigBuildFonts -C/func/-/FcConfigCreate -C/func/-/FcConfigDestroy -C/func/-/FcConfigEnableHome -C/func/-/FcConfigFilename -C/func/-/FcConfigGetBlanks -C/func/-/FcConfigGetCache -C/func/-/FcConfigGetCacheDirs -C/func/-/FcConfigGetConfigDirs -C/func/-/FcConfigGetConfigFiles -C/func/-/FcConfigGetCurrent -C/func/-/FcConfigGetFontDirs -C/func/-/FcConfigGetFonts -C/func/-/FcConfigGetRescanInterval -C/func/-/FcConfigHome -C/func/-/FcConfigParseAndLoad -C/func/-/FcConfigReference -C/func/-/FcConfigSetCurrent -C/func/-/FcConfigSetRescanInterval -C/func/-/FcConfigSubstitute -C/func/-/FcConfigSubstituteWithPat -C/func/-/FcConfigUptoDate -C/func/-/FcDefaultSubstitute -C/func/-/FcDirCacheLoad -C/func/-/FcDirCacheLoadFile -C/func/-/FcDirCacheRead -C/func/-/FcDirCacheUnlink -C/func/-/FcDirCacheUnload -C/func/-/FcDirCacheValid -C/func/-/FcDirSave -C/func/-/FcDirScan -C/func/-/FcFileIsDir -C/func/-/FcFileScan -C/func/-/FcFini -C/func/-/FcFontList -C/func/-/FcFontMatch -C/func/-/FcFontRenderPrepare -C/func/-/FcFontSetAdd -C/func/-/FcFontSetCreate -C/func/-/FcFontSetDestroy -C/func/-/FcFontSetList -C/func/-/FcFontSetMatch -C/func/-/FcFontSetPrint -C/func/-/FcFontSetSort -C/func/-/FcFontSetSortDestroy -C/func/-/FcFontSort -C/func/-/FcFreeTypeCharIndex -C/func/-/FcFreeTypeCharSet -C/func/-/FcFreeTypeCharSetAndSpacing -C/func/-/FcFreeTypeQuery -C/func/-/FcFreeTypeQueryFace -C/func/-/FcGetLangs -C/func/-/FcGetVersion -C/func/-/fchdir -C/func/-/fchflags -C/func/-/fchmod -C/func/-/fchown -C/func/-/FcInit -C/func/-/FcInitBringUptoDate -C/func/-/FcInitLoadConfig -C/func/-/FcInitLoadConfigAndFonts -C/func/-/FcInitReinitialize -C/func/-/FcIsLower -C/func/-/FcIsUpper -C/func/-/FcLangGetCharSet -C/func/-/FcLangSetAdd -C/func/-/FcLangSetCompare -C/func/-/FcLangSetContains -C/func/-/FcLangSetCopy -C/func/-/FcLangSetCreate -C/func/-/FcLangSetDestroy -C/func/-/FcLangSetEqual -C/func/-/FcLangSetGetLangs -C/func/-/FcLangSetHash -C/func/-/FcLangSetHasLang -C/func/-/fclose -C/func/-/FcMatrixCopy -C/func/-/FcMatrixEqual -C/func/-/FcMatrixInit -C/func/-/FcMatrixMultiply -C/func/-/FcMatrixRotate -C/func/-/FcMatrixScale -C/func/-/FcMatrixShear -C/func/-/FcNameConstant -C/func/-/FcNameGetConstant -C/func/-/FcNameGetObjectType -C/func/-/FcNameParse -C/func/-/FcNameRegisterConstants -C/func/-/FcNameRegisterObjectTypes -C/func/-/FcNameUnparse -C/func/-/FcNameUnregisterConstants -C/func/-/FcNameUnregisterObjectTypes -C/func/-/fcntl -C/func/-/FcObjectSetAdd -C/func/-/FcObjectSetBuild -C/func/-/FcObjectSetCreate -C/func/-/FcObjectSetDestroy -C/func/-/FcObjectSetVaBuild -C/func/-/FcObjectSetVapBuild -C++/data/IOCommand/fCommandChain -C/func/-/FCompressImage -C/func/-/FCompressPicture -C/func/-/FCompressPictureFile -C/func/-/fcopyfile -C/func/-/FcPatternAdd -C/func/-/FcPatternAdd-Type -C/func/-/FcPatternAddBool -C/func/-/FcPatternAddCharSet -C/func/-/FcPatternAddDouble -C/func/-/FcPatternAddFTFace -C/func/-/FcPatternAddInteger -C/func/-/FcPatternAddLangSet -C/func/-/FcPatternAddMatrix -C/func/-/FcPatternAddString -C/func/-/FcPatternAddWeak -C/func/-/FcPatternBuild -C/func/-/FcPatternCreate -C/func/-/FcPatternDel -C/func/-/FcPatternDestroy -C/func/-/FcPatternDuplicate -C/func/-/FcPatternEqual -C/func/-/FcPatternEqualSubset -C/func/-/FcPatternFilter -C/func/-/FcPatternFormat -C/func/-/FcPatternGet -C/func/-/FcPatternGet-Type -C/func/-/FcPatternGetBool -C/func/-/FcPatternGetCharSet -C/func/-/FcPatternGetDouble -C/func/-/FcPatternGetFTFace -C/func/-/FcPatternGetInteger -C/func/-/FcPatternGetLangSet -C/func/-/FcPatternGetMatrix -C/func/-/FcPatternGetString -C/func/-/FcPatternHash -C/func/-/FcPatternPrint -C/func/-/FcPatternReference -C/func/-/FcPatternRemove -C/func/-/FcPatternVaBuild -C/func/-/FcPatternVapBuild -C/func/-/FcStrBasename -C/func/-/FcStrCmp -C/func/-/FcStrCmpIgnoreCase -C/func/-/FcStrCopy -C/func/-/FcStrCopyFilename -C/func/-/FcStrDirname -C/func/-/FcStrDowncase -C/func/-/FcStrFree -C/func/-/FcStrListCreate -C/func/-/FcStrListDone -C/func/-/FcStrListNext -C/func/-/FcStrPlus -C/func/-/FcStrSetAdd -C/func/-/FcStrSetAddFilename -C/func/-/FcStrSetCreate -C/func/-/FcStrSetDel -C/func/-/FcStrSetDestroy -C/func/-/FcStrSetEqual -C/func/-/FcStrSetMember -C/func/-/FcStrStr -C/func/-/FcStrStrIgnoreCase -C/func/-/FcToLower -C/func/-/FcUcs4ToUtf8 -C/func/-/FcUtf16Len -C/func/-/FcUtf16ToUcs4 -C/func/-/FcUtf8Len -C/func/-/FcUtf8ToUcs4 -C/func/-/FcValueDestroy -C/func/-/FcValueEqual -C/func/-/FcValuePrint -C/func/-/FcValueSave -C/func/-/fcvt -C/func/-/FD_CLR -C/func/-/FD_COPY -C/func/-/FD_ISSET -C/func/-/FD_SET -C/func/-/FD_ZERO -C/func/-/FDecompressImage -C/func/-/fdim -C/func/-/fdimf -C/func/-/fdiml -C/func/-/fdopen -Objective-C/instp/PSEntry/feed -Objective-C/instp/PSFeed/feedFormat -C++/instm/IONetworkInterface/feedPacketInputTap -C++/instm/IONetworkInterface/feedPacketOutputTap -Objective-C/instp/PSClient/feeds -Objective-C/instm/PSClient/feedWithIdentifier: -Objective-C/instm/PSClient/feedWithURL: -C/func/-/feof -C/func/-/feof_unlocked -C/func/-/ferror -C/func/-/ferror_unlocked -Objective-C/instm/NSObjectController/fetch: -Objective-C/instm/NSFetchRequest/fetchBatchSize -Objective-C/instm/NSFetchRequest/fetchLimit -Objective-C/instm/NSFetchRequest/fetchOffset -Objective-C/instm/NSObjectController/fetchPredicate -Objective-C/instm/NSFetchedPropertyDescription/fetchRequest -Objective-C/instm/NSManagedObjectModel/fetchRequestFromTemplateWithName:substitutionVariables: -Objective-C/instm/NSManagedObjectModel/fetchRequestTemplateForName: -Objective-C/instm/NSManagedObjectModel/fetchRequestTemplatesByName -Objective-C/instm/NSObjectController/fetchWithRequest:merge:error: -C++/data/IOATACommand/fExpansionData -C++/data/IODCLProgram/fExpansionData -C/macro/-/FF_DEGREES -C/macro/-/FF_DOWNLOADSKIPPED -C/macro/-/FF_EFFECTRESTARTED -C/macro/-/FF_FALSE -C/macro/-/FF_FFNOMINALMAX -C/macro/-/FF_INFINITE -C/macro/-/FF_OK -C/macro/-/FF_SECONDS -C/macro/-/FF_TRUNCATED -C/macro/-/FF_TRUNCATEDANDRESTARTED -C/econst/FFCapabilitiesEffectType/FFCAP_ET_CONSTANTFORCE -C/econst/FFCapabilitiesEffectType/FFCAP_ET_CUSTOMFORCE -C/econst/FFCapabilitiesEffectType/FFCAP_ET_DAMPER -C/econst/FFCapabilitiesEffectType/FFCAP_ET_FRICTION -C/econst/FFCapabilitiesEffectType/FFCAP_ET_INERTIA -C/econst/FFCapabilitiesEffectType/FFCAP_ET_RAMPFORCE -C/econst/FFCapabilitiesEffectType/FFCAP_ET_SAWTOOTHDOWN -C/econst/FFCapabilitiesEffectType/FFCAP_ET_SAWTOOTHUP -C/econst/FFCapabilitiesEffectType/FFCAP_ET_SINE -C/econst/FFCapabilitiesEffectType/FFCAP_ET_SPRING -C/econst/FFCapabilitiesEffectType/FFCAP_ET_SQUARE -C/econst/FFCapabilitiesEffectType/FFCAP_ET_TRIANGLE -C/tdef/-/FFCAPABILITIES -C/tag/-/FFCAPABILITIES -C/tag/-/FFCapabilitiesEffectSubType -C/tdef/-/FFCapabilitiesEffectSubType -C/tdef/-/FFCapabilitiesEffectType -C/tag/-/FFCapabilitiesEffectType -C/tdef/-/FFCommandFlag -C/tag/-/FFCommandFlag -C/tdef/-/FFCONDITION -C/tag/-/FFCONDITION -C/tdef/-/FFCONSTANTFORCE -C/tag/-/FFCONSTANTFORCE -C/tdef/-/FFCooperativeLevelFlag -C/tag/-/FFCooperativeLevelFlag -C/tdef/-/FFCoordinateSystemFlag -C/tag/-/FFCoordinateSystemFlag -C/func/-/FFCreateDevice -C/tdef/-/FFCUSTOMFORCE -C/tag/-/FFCUSTOMFORCE -C/func/-/FFDeviceCreateEffect -C/func/-/FFDeviceEscape -C/func/-/FFDeviceGetForceFeedbackCapabilities -C/func/-/FFDeviceGetForceFeedbackProperty -C/func/-/FFDeviceGetForceFeedbackState -C/func/-/FFDeviceReleaseEffect -C/func/-/FFDeviceSendForceFeedbackCommand -C/func/-/FFDeviceSetCooperativeLevel -C/func/-/FFDeviceSetForceFeedbackProperty -C/econst/FFCoordinateSystemFlag/FFEFF_CARTESIAN -C/macro/-/FFEFF_OBJECTOFFSETS -C/econst/FFCoordinateSystemFlag/FFEFF_POLAR -C/econst/FFCoordinateSystemFlag/FFEFF_SPHERICAL -C/tdef/-/FFEFFECT -C/tag/-/FFEFFECT -C/func/-/FFEffectDownload -C/tdef/-/FFEffectDownloadID -C/func/-/FFEffectEscape -C/func/-/FFEffectGetEffectStatus -C/func/-/FFEffectGetParameters -C/tdef/-/FFEffectParameterFlag -C/tag/-/FFEffectParameterFlag -C/func/-/FFEffectSetParameters -C/func/-/FFEffectStart -C/tdef/-/FFEffectStartFlag -C/tag/-/FFEffectStartFlag -C/tdef/-/FFEffectStatusFlag -C/tag/-/FFEffectStatusFlag -C/func/-/FFEffectStop -C/func/-/FFEffectUnload -C/tdef/-/FFEFFESCAPE -C/tag/-/FFEFFESCAPE -C/tag/-/FFENVELOPE -C/tdef/-/FFENVELOPE -C/macro/-/FFERR_DEVICEFULL -C/macro/-/FFERR_DEVICENOTREG -C/macro/-/FFERR_DEVICEPAUSED -C/macro/-/FFERR_DEVICERELEASED -C/macro/-/FFERR_EFFECTPLAYING -C/macro/-/FFERR_EFFECTTYPEMISMATCH -C/macro/-/FFERR_EFFECTTYPENOTSUPPORTED -C/macro/-/FFERR_GENERIC -C/macro/-/FFERR_HASEFFECTS -C/macro/-/FFERR_INCOMPLETEEFFECT -C/macro/-/FFERR_INTERNAL -C/macro/-/FFERR_INVALIDDOWNLOADID -C/macro/-/FFERR_INVALIDPARAM -C/macro/-/FFERR_MOREDATA -C/macro/-/FFERR_NOINTERFACE -C/macro/-/FFERR_NOTDOWNLOADED -C/macro/-/FFERR_NOTINITIALIZED -C/macro/-/FFERR_OUTOFMEMORY -C/macro/-/FFERR_UNPLUGGED -C/macro/-/FFERR_UNSUPPORTED -C/macro/-/FFERR_UNSUPPORTEDAXIS -C/func/-/ffi -C/func/-/ffi_call -C/func/-/ffi_prep_cif -C/func/-/ffi_prep_closure -C/func/-/FFIsForceFeedback -C/macro/-/FFJOFS_X -C/func/-/fflagstostr -C/func/-/fflush -C/tag/-/FFPERIODIC -C/tdef/-/FFPERIODIC -C/tag/-/FFProperty -C/tdef/-/FFProperty -C/tag/-/FFRAMPFORCE -C/tdef/-/FFRAMPFORCE -C/func/-/FFReleaseDevice -C/func/-/ffs -C/func/-/ffsl -C/tdef/-/FFState -C/tag/-/FFState -C/func/-/fft2d_zip -C/func/-/fft2d_zipD -C/func/-/fft2d_zipt -C/func/-/fft2d_ziptD -C/func/-/fft2d_zop -C/func/-/fft2d_zopD -C/func/-/fft2d_zopt -C/func/-/fft2d_zoptD -C/func/-/fft2d_zrip -C/func/-/fft2d_zripD -C/func/-/fft2d_zript -C/func/-/fft2d_zriptD -C/func/-/fft2d_zrop -C/func/-/fft2d_zropD -C/func/-/fft2d_zropt -C/func/-/fft2d_zroptD -C/func/-/fft3_zop -C/func/-/fft3_zopD -C/func/-/fft5_zop -C/func/-/fft5_zopD -C/func/-/fft_zip -C/func/-/fft_zipD -C/func/-/fft_zipt -C/func/-/fft_ziptD -C/func/-/fft_zop -C/func/-/fft_zopD -C/func/-/fft_zopt -C/func/-/fft_zoptD -C/func/-/fft_zrip -C/func/-/fft_zripD -C/func/-/fft_zript -C/func/-/fft_zriptD -C/func/-/fft_zrop -C/func/-/fft_zropD -C/func/-/fft_zropt -C/func/-/fft_zroptD -C/tdef/-/FFTDirection -C/func/-/fftm_zip -C/func/-/fftm_zipD -C/func/-/fftm_zipt -C/func/-/fftm_ziptD -C/func/-/fftm_zop -C/func/-/fftm_zopD -C/func/-/fftm_zopt -C/func/-/fftm_zoptD -C/func/-/fftm_zrip -C/func/-/fftm_zripD -C/func/-/fftm_zript -C/func/-/fftm_zriptD -C/func/-/fftm_zrop -C/func/-/fftm_zropD -C/func/-/fftm_zropt -C/func/-/fftm_zroptD -C/tdef/-/FFTRadix -C/tdef/-/FFTSetup -C/tdef/-/FFTSetupD -JavaScript/data/HTMLDocument/fgColor -C/func/-/fgetattrlist -C/func/-/fgetc -C/func/-/fgetln -C/func/-/fgetpos -C/func/-/fgetrune -C/func/-/fgets -C/func/-/fgetwc -C/func/-/fgetwc_l -C/func/-/fgetws -C/func/-/fgetws_l -C/func/-/fgetxattr -C/func/-/fhopen -C/econst/-/fidExists -C/econst/-/fidNotFound -C/tdef/-/FIDParam -Objective-C/instm/FxImage/field -Objective-C/instm/NSWindow/fieldEditor:forObject: -Objective-C/instm/NSCell/fieldEditorForView: -Objective-C/instm/PDFAnnotationChoiceWidget/fieldName -Objective-C/instm/PDFAnnotationTextWidget/fieldName -Objective-C/instm/PDFAnnotationButtonWidget/fieldName -Objective-C/instm/FxImage/fieldOrder -Objective-C/intfm/FxTimingAPI/fieldOrderForImageParm:forEffect: -Objective-C/intfm/FxTimingAPI/fieldOrderForInputAToTransition: -Objective-C/intfm/FxTimingAPI/fieldOrderForInputBToTransition: -Objective-C/intfm/FxTimingAPI/fieldOrderForInputToFilter: -Objective-C/instm/PDFActionResetForm/fields -Objective-C/instm/PDFActionResetForm/fieldsIncludedAreCleared -C++/instm/TestFailure/file -Objective-C/instm/XGFileDownload/file -JavaScript/data/DOMWindow/File -JavaScript/cl/-/File -Objective-C/instm/NSDirectoryEnumerator/fileAttributes -Objective-C/instm/NSFileWrapper/fileAttributes -Objective-C/instm/NSFileManager/fileAttributesAtPath:traverseLink: -Objective-C/instm/NSDocument/fileAttributesToWriteToFile:ofType:saveOperation: -Objective-C/instm/NSDocument/fileAttributesToWriteToURL:ofType:forSaveOperation:originalContentsURL:error: -C/econst/-/fileBoundsErr -Objective-C/instm/NSDictionary/fileCreationDate -Objective-C/instm/NSFileHandle/fileDescriptor -Objective-C/instm/NSObject(XGFileDownloadDelegate)/fileDownload:decideDestinationWithSuggestedPath: -Objective-C/instm/NSObject(XGFileDownloadDelegate)/fileDownload:didCreateDestination: -Objective-C/instm/NSObject(XGFileDownloadDelegate)/fileDownload:didFailWithError: -Objective-C/instm/NSObject(XGFileDownloadDelegate)/fileDownload:didReceiveAttributes: -Objective-C/instm/NSObject(XGFileDownloadDelegate)/fileDownload:didReceiveData: -Objective-C/instm/NSObject(XGFileDownloadDelegate)/fileDownloadDidBegin: -Objective-C/instm/NSObject(XGFileDownloadDelegate)/fileDownloadDidFinish: -JavaScript/data/DOMWindow/FileError -JavaScript/cl/-/FileError -Objective-C/instm/NSFileManager/fileExistsAtPath: -Objective-C/instm/NSFileManager/fileExistsAtPath:isDirectory: -Objective-C/instm/NSDictionary/fileExtensionHidden -Objective-C/instm/NSDocumentController/fileExtensionsFromType: -Objective-C/instm/NSDictionary/fileGroupOwnerAccountID -Objective-C/instm/NSDictionary/fileGroupOwnerAccountName -Objective-C/instm/NSPipe/fileHandleForReading -Objective-C/clm/NSFileHandle/fileHandleForReadingAtPath: -Objective-C/clm/NSFileHandle/fileHandleForReadingFromURL:error: -Objective-C/clm/NSFileHandle/fileHandleForUpdatingAtPath: -Objective-C/clm/NSFileHandle/fileHandleForUpdatingURL:error: -Objective-C/instm/NSPipe/fileHandleForWriting -Objective-C/clm/NSFileHandle/fileHandleForWritingAtPath: -Objective-C/clm/NSFileHandle/fileHandleForWritingToURL:error: -Objective-C/clm/NSFileHandle/fileHandleWithNullDevice -Objective-C/clm/NSFileHandle/fileHandleWithStandardError -Objective-C/clm/NSFileHandle/fileHandleWithStandardInput -Objective-C/clm/NSFileHandle/fileHandleWithStandardOutput -Objective-C/instm/NSDictionary/fileHFSCreatorCode -Objective-C/instm/NSDictionary/fileHFSTypeCode -Objective-C/instm/NSDictionary/fileIsAppendOnly -Objective-C/instm/NSDictionary/fileIsImmutable -Objective-C/instm/NSWorkspace/fileLabelColors -Objective-C/instm/NSWorkspace/fileLabels -JavaScript/data/DOMWindow/FileList -JavaScript/cl/-/FileList -Objective-C/instm/NSObject/fileManager:shouldCopyItemAtPath:toPath: -Objective-C/instm/NSObject/fileManager:shouldCopyItemAtURL:toURL: -Objective-C/instm/NSObject/fileManager:shouldLinkItemAtPath:toPath: -Objective-C/instm/NSObject/fileManager:shouldLinkItemAtURL:toURL: -Objective-C/instm/NSObject/fileManager:shouldMoveItemAtPath:toPath: -Objective-C/instm/NSObject/fileManager:shouldMoveItemAtURL:toURL: -Objective-C/instm/NSObject/fileManager:shouldProceedAfterError: -Objective-C/instm/NSObject/fileManager:shouldProceedAfterError:copyingItemAtPath:toPath: -Objective-C/instm/NSObject/fileManager:shouldProceedAfterError:copyingItemAtURL:toURL: -Objective-C/instm/NSObject/fileManager:shouldProceedAfterError:linkingItemAtPath:toPath: -Objective-C/instm/NSObject/fileManager:shouldProceedAfterError:linkingItemAtURL:toURL: -Objective-C/instm/NSObject/fileManager:shouldProceedAfterError:movingItemAtPath:toPath: -Objective-C/instm/NSObject/fileManager:shouldProceedAfterError:movingItemAtURL:toURL: -Objective-C/instm/NSObject/fileManager:shouldProceedAfterError:removingItemAtPath: -Objective-C/instm/NSObject/fileManager:shouldProceedAfterError:removingItemAtURL: -Objective-C/instm/NSObject/fileManager:shouldRemoveItemAtPath: -Objective-C/instm/NSObject/fileManager:shouldRemoveItemAtURL: -Objective-C/instm/NSObject/fileManager:willProcessPath: -Objective-C/instm/NSDocument/fileModificationDate -Objective-C/instm/NSDictionary/fileModificationDate -Objective-C/instm/NSDocument/fileName -Objective-C/instm/NSSavePanel/filename -Objective-C/instm/NSFileWrapper/filename -JavaScript/data/File/fileName -JavaScript/data/ErrorEvent/filename -JavaScript/data/Plugin/filename -Objective-C/instm/NSWorkspace/filenameExtension:isValidForType: -Objective-C/instm/NSDocument/fileNameExtensionForType:saveOperation: -Objective-C/instm/NSDocument/fileNameExtensionWasHiddenInLastRunSavePanel -Objective-C/instm/NSDocument/fileNameFromRunningSavePanelForSaveOperation: -Objective-C/instm/NSOpenPanel/filenames -Objective-C/instm/NSDocumentController/fileNamesFromRunningOpenPanel -C/func/-/fileno -C/func/-/fileno_unlocked -Objective-C/instm/NSDictionary/fileOwnerAccountID -Objective-C/instm/NSDictionary/fileOwnerAccountName -C/tdef/-/FileParam -Objective-C/instm/NSURL/filePathURL -Objective-C/instm/NSDictionary/filePosixPermissions -JavaScript/data/DOMWindow/FileReader -JavaScript/cl/-/FileReader -Objective-C/instm/NSURL/fileReferenceURL -JavaScript/data/Clipboard/files -JavaScript/data/HTMLInputElement/files -Objective-C/instm/NSDictionary/fileSize -JavaScript/data/File/fileSize -Objective-C/instm/NSFileManager/fileSystemAttributesAtPath: -Objective-C/instm/NSWorkspace/fileSystemChanged -Objective-C/instm/NSDictionary/fileSystemFileNumber -Objective-C/instm/NSDictionary/fileSystemNumber -Objective-C/instm/NSString/fileSystemRepresentation -Objective-C/instm/NSFileManager/fileSystemRepresentationWithPath: -Objective-C/instm/NSDocument/fileType -Objective-C/instm/NSDictionary/fileType -Objective-C/instm/NSDocument/fileTypeFromLastRunSavePanel -Objective-C/instm/AMWorkflow/fileURL -Objective-C/instm/NSDocument/fileURL -Objective-C/clm/NSURL/fileURLWithPath: -Objective-C/clm/NSURL/fileURLWithPath:isDirectory: -Objective-C/clm/NSURL/fileURLWithPathComponents: -Objective-C/clm/DRFile/fileWithPath: -Objective-C/instm/NSTextAttachment/fileWrapper -Objective-C/instm/NSAttributedString/fileWrapperFromRange:documentAttributes:error: -Objective-C/instm/NSDocument/fileWrapperOfType:error: -Objective-C/instm/NSDocument/fileWrapperRepresentationOfType: -Objective-C/instm/NSFileWrapper/fileWrappers -Objective-C/instm/NSBezierPath/fill -JavaScript/instm/CanvasRenderingContext2D/fill -Objective-C/instm/NSLayoutManager/fillBackgroundRectArray:count:forCharacterRange:color: -Objective-C/instm/NSBox/fillColor -Objective-C/instm/QTCaptureView/fillColor -Objective-C/instm/QTMovieView/fillColor -Objective-C/instp/CAShapeLayer/fillColor -Objective-C/instm/CAShapeLayer/fillColor -Objective-C/binding/QTMovieView/fillColor -Objective-C/intfm/CAMediaTiming/fillMode -Objective-C/intfp/CAMediaTiming/fillMode -C/func/-/FillOutASBDForLPCM -C/func/-/FillOutAudioTimeStampWithHostTime -C/func/-/FillOutAudioTimeStampWithSampleAndHostTime -C/func/-/FillOutAudioTimeStampWithSampleTime -JavaScript/instm/CanvasRenderingContext2D/fillRect -Objective-C/clm/NSBezierPath/fillRect: -Objective-C/instp/CAShapeLayer/fillRule -Objective-C/instm/CAShapeLayer/fillRule -JavaScript/data/CanvasRenderingContext2D/fillStyle -JavaScript/instm/CanvasRenderingContext2D/fillText -Objective-C/instm/IKFilterUIView/filter -Objective-C/instm/CIFilterGenerator/filter -Objective-C/instm/CATransition/filter -Objective-C/instp/CATransition/filter -C/func/-/filter -C++/tdef/IOFilterInterruptEventSource/Filter -JavaScript/data/NodeIterator/filter -JavaScript/data/TreeWalker/filter -JavaScript/clconst/NodeFilter/FILTER_ACCEPT -JavaScript/clconst/NodeFilter/FILTER_REJECT -JavaScript/clconst/NodeFilter/FILTER_SKIP -C++/data/IOFilterInterruptEventSource/filterAction -Objective-C/instm/IKImageEditPanel/filterArray -Objective-C/instp/IKImageEditPanel/filterArray -Objective-C/clm/IKFilterBrowserPanel/filterBrowserPanelWithStyleMask: -Objective-C/instm/IKFilterBrowserPanel/filterBrowserViewWithOptions: -Objective-C/instm/NSArray/filteredArrayUsingPredicate: -Objective-C/instm/NSSet/filteredSetUsingPredicate: -Objective-C/clm/CIFilterGenerator/filterGenerator -Objective-C/clm/CIFilterGenerator/filterGeneratorWithContentsOfURL: -C++/clm/IOFilterInterruptEventSource/filterInterruptEventSource -C++/instm/IOSCSIParallelInterfaceController/FilterInterruptRequest -Objective-C/clm/ISyncFilter/filterMatchingAllFilters: -Objective-C/clm/ISyncFilter/filterMatchingAtLeastOneFilter: -Objective-C/instm/IKFilterBrowserPanel/filterName -Objective-C/instm/IKFilterBrowserView/filterName -Objective-C/clm/CIFilter/filterNamesInCategories: -Objective-C/clm/CIFilter/filterNamesInCategory: -Objective-C/instm/NSArrayController/filterPredicate -Objective-C/binding/NSDictionaryController/filterPredicate -Objective-C/binding/NSArrayController/filterPredicate -JavaScript/data/SVGFilterElement/filterResX -JavaScript/data/SVGFilterElement/filterResY -Objective-C/instm/ISyncClient/filters -Objective-C/instp/CALayer/filters -Objective-C/instm/CALayer/filters -JavaScript/data/SVGFilterElement/filterUnits -Objective-C/instm/NSMutableSet/filterUsingPredicate: -Objective-C/instm/NSMutableArray/filterUsingPredicate: -Objective-C/clm/CIFilter/filterWithImageData:options: -Objective-C/clm/CIFilter/filterWithImageURL:options: -Objective-C/clm/CIFilter/filterWithName: -Objective-C/clm/CIFilter/filterWithName:keysAndValues: -Objective-C/instm/NSProxy/finalize -Objective-C/instm/NSObject/finalize -C++/instm/IOFireWireSerialBusProtocolTransport/finalize -C++/instm/IOSCSIProtocolInterface/finalize -C++/instm/IOService/finalize -Objective-C/instm/NSObject/finalizeForWebScript -Objective-C/instm/NSPrintPanel/finalWritePrintInfo -JavaScript/instm/DOMWindow/find -Objective-C/instm/NSWorkspace/findApplications -C/func/-/FindCodec -C++/instm/IOCatalogue/findDrivers -Objective-C/clm/DRFile(VirtualLinks)/finderAliasPointingTo:inFilesystem: -Objective-C/instm/WebFrame/findFrameNamed: -C/func/-/FindNextAltInterface -C++/instm/IOUSBInterface/FindNextAltInterface -C/func/-/FindNextAssociatedDescriptor -C++/instm/IOUSBInterface/FindNextAssociatedDescriptor -C/func/-/FindNextComponent -C++/instm/IOUSBDevice/FindNextInterface -C++/instm/IOUSBDevice/FindNextInterfaceDescriptor -C++/instm/IOUSBInterface/FindNextPipe -C++/instm/IOPCIDevice/findPCICapability -JavaScript/instm/WebKitCSSKeyframesRule/findRule -Objective-C/instm/PDFDocument/findString:fromSelection:withOptions: -Objective-C/instm/NSHelpManager/findString:inBook: -Objective-C/instm/PDFDocument/findString:withOptions: -C++/instm/IOSCSIParallelInterfaceController/FindTaskForAddress -C++/instm/IOSCSIParallelInterfaceController/FindTaskForControllerIdentifier -JavaScript/instm/WebGLRenderingContext/finish -Objective-C/instm/IKFilterBrowserPanel/finish: -Objective-C/instm/XGAuthenticator/finishAuthentication -Objective-C/instm/NSKeyedUnarchiver/finishDecoding -Objective-C/instp/NSRunningApplication/finishedLaunching -Objective-C/intfm/WebDocumentRepresentation/finishedLoadingWithDataSource: -Objective-C/instm/NSKeyedArchiver/finishEncoding -Objective-C/instm/NSApplication/finishLaunching -Objective-C/instm/ISyncSessionDriver/finishSyncing -Objective-C/instm/ISyncSession/finishSyncing -C/func/-/finite -C++/data/IOFireWireAVCCommand/fIOFireWireAVCCommandExpansion -C++/data/IOFireWireAVCUnit/fIOFireWireAVCUnitExpansion -C++/data/IOFWAddressSpace/fIOFWAddressSpaceExpansion -Objective-C/instm/NSTimer/fire -Objective-C/instm/NSTimer/fireDate -JavaScript/clconst/XPathResult/FIRST_ORDERED_NODE_TYPE -JavaScript/data/svg/firstChild -JavaScript/data/core/firstChild -JavaScript/instm/TreeWalker/firstChild -Objective-C/instp/CalRecurrenceRule/firstDayOfTheWeek -Objective-C/instm/CalRecurrenceRule/firstDayOfTheWeek -C/econst/-/firstDskErr -JavaScript/data/Element/firstElementChild -Objective-C/instm/NSIndexSet/firstIndex -Objective-C/instm/NSPreferencePane/firstKeyView -Objective-C/instm/SFAuthorizationPluginView/firstKeyView -Objective-C/instm/NSParagraphStyle/firstLineHeadIndent -Objective-C/instm/NSArray/firstObjectCommonWithArray: -Objective-C/intfm/NSTextInput/firstRectForCharacterRange: -Objective-C/intfm/NSTextInputClient/firstRectForCharacterRange:actualRange: -Objective-C/instm/SFAuthorizationPluginView/firstResponder -Objective-C/instm/NSWindow/firstResponder -Objective-C/instm/NSLayoutManager/firstTextView -Objective-C/instm/NSLayoutManager/firstUnlaidCharacterIndex -Objective-C/instm/NSLayoutManager/firstUnlaidGlyphIndex -Objective-C/intfm/ApertureExportPlugIn/firstView -Objective-C/instm/NSBrowser/firstVisibleColumn -Objective-C/instm/NSCalendar/firstWeekday -Objective-C/instm/NSMutableAttributedString/fixAttachmentAttributeInRange: -Objective-C/instm/NSMutableAttributedString/fixAttributesInRange: -JavaScript/clconst/WebGLRenderingContext/FIXED -Objective-C/instm/WebPreferences/fixedFontFamily -C/tag/-/FixedPoint -C/tag/-/FixedRect -Objective-C/instm/NSTextStorage/fixesAttributesLazily -C/func/-/FixExp2 -Objective-C/instm/NSMutableAttributedString/fixFontAttributeInRange: -C/func/-/FixLog2 -C/func/-/FixMulDiv -Objective-C/instm/NSMutableAttributedString/fixParagraphStyleAttributeInRange: -C/func/-/FixPow -Objective-C/instp/PSEntry/flagged -Objective-C/instm/NSResponder/flagsChanged: -C/func/-/flash -Objective-C/instm/NSBezierPath/flatness -Objective-C/instm/DRCDTextBlock/flatten -C/econst/-/fLckdErr -Objective-C/instm/IKImageView/flipImageHorizontal: -Objective-C/instm/IKImageView/flipImageVertical: -JavaScript/instm/SVGMatrix/flipX -JavaScript/instm/SVGMatrix/flipY -C/func/-/flistxattr -C/func/-/float -JavaScript/clconst/WebGLRenderingContext/FLOAT -JavaScript/clconst/WebGLRenderingContext/FLOAT_MAT2 -JavaScript/clconst/WebGLRenderingContext/FLOAT_MAT3 -JavaScript/clconst/WebGLRenderingContext/FLOAT_MAT4 -JavaScript/clconst/WebGLRenderingContext/FLOAT_VEC2 -JavaScript/clconst/WebGLRenderingContext/FLOAT_VEC3 -JavaScript/clconst/WebGLRenderingContext/FLOAT_VEC4 -JavaScript/data/DOMWindow/FloatArray -JavaScript/cl/-/FloatArray -Objective-C/instm/NSUserDefaults/floatForKey: -Objective-C/instm/NSPrinter/floatForKey:inTable: -Objective-C/instm/NSActionCell/floatValue -Objective-C/instm/NSNumber/floatValue -Objective-C/instm/IMAVControl/floatValue -Objective-C/instm/NSControl/floatValue -Objective-C/instm/NSCell/floatValue -Objective-C/instm/NSString/floatValue -C/func/-/flock -C/func/-/flockfile -C/func/-/floor -C/func/-/floorf -C/func/-/floorl -C/func/-/fls -C/func/-/flsl -Objective-C/clm/CATransaction/flush -C++/instm/IOBasicOutputQueue/flush -C++/instm/IOOutputQueue/flush -C++/instm/IOPacketQueue/flush -JavaScript/instm/WebGLRenderingContext/flush -C++/instm/IOAudioDevice/flushAudioControls -Objective-C/instm/NSOpenGLContext/flushBuffer -Objective-C/instm/NSResponder/flushBufferedKeyEvents -Objective-C/instm/NSURLHandle/flushCachedData -C++/instm/OSDictionary/flushCollection -C++/instm/OSArray/flushCollection -C++/instm/OSOrderedSet/flushCollection -C++/instm/OSCollection/flushCollection -C++/instm/OSSet/flushCollection -C++/instm/IOFramebuffer/flushCursor -Objective-C/instm/NSGraphicsContext/flushGraphics -Objective-C/clm/NSHost/flushHostCache -C/func/-/flushinp -C++/instm/IONetworkInterface/flushInputQueue -C++/instm/IOAudioControl/flushValue -C/func/-/FlushVol -Objective-C/instm/NSWindow/flushWindow -Objective-C/instm/NSWindow/flushWindowIfNeeded -C/func/-/fma -C/func/-/fmaf -C/func/-/fmal -C++/data/IODMACommand/fMapper -C++/data/IODMACommand/fMappingOptions -C/func/-/fmax -C/func/-/fmaxf -C/func/-/fmaxl -C++/data/IODMACommand/fMaxSegmentSize -C++/data/IODMACommand/fMaxTransferSize -C++/data/IOFWCommand/fMembers -C++/clconst/IODMACommand/fMemory -C/func/-/fmin -C/func/-/fminf -C/func/-/fminl -C/func/-/fmod -C/func/-/fmodf -C/func/-/fmodl -C/func/-/fmtcheck -C/func/-/fmtmsg -C/econst/-/fnfErr -C/func/-/FNGetDirectoryForSubscription -C/func/-/fnmatch -C/tdef/-/FNMessage -C/func/-/FNNotify -C/func/-/FNNotifyAll -C/func/-/FNNotifyByPath -C/econst/-/fnOpnErr -C/func/-/FNSubscribe -C/func/-/FNSubscribeByPath -C/tdef/-/FNSubscriptionProcPtr -C/tdef/-/FNSubscriptionRef -C/tdef/-/FNSubscriptionUPP -C++/data/IODMACommand/fNumAddressBits -C++/data/IODMACommand/fNumSegments -C/func/-/FNUnsubscribe -Objective-C/intfm/Fx3DAPI/focalLengthAtTime: -JavaScript/instm/DOMWindow/focus -JavaScript/instm/Element/focus -JavaScript/clconst/Event/FOCUS -JavaScript/data/HTMLDataGridRowElement/focused -JavaScript/data/HTMLDataGridCellElement/focused -Objective-C/instm/NSTableView/focusedColumn -JavaScript/data/DOMSelection/focusNode -JavaScript/data/DOMSelection/focusOffset -Objective-C/instm/NSView/focusRingType -Objective-C/instm/NSCell/focusRingType -Objective-C/instm/NSGraphicsContext/focusStack -Objective-C/clm/NSView/focusView -Objective-C/clm/DRFolder/folderWithPath: -C/func/-/FollowFinderAlias -Objective-C/instm/PDFAnnotationFreeText/font -Objective-C/instm/PDFAnnotationTextWidget/font -Objective-C/instm/PDFAnnotationButtonWidget/font -Objective-C/instm/PDFAnnotationChoiceWidget/font -Objective-C/instm/NSMenuView/font -Objective-C/instm/NSTextStorage/font -Objective-C/instm/NSControl/font -Objective-C/instm/NSTabView/font -Objective-C/binding/NSButton/font -Objective-C/binding/AMPathPopUpButton/font -Objective-C/binding/NSComboBox/font -Objective-C/binding/NSFormCell/font -Objective-C/binding/NSDatePicker/font -Objective-C/binding/NSDatePickerCell/font -Objective-C/binding/NSBrowser/font -Objective-C/binding/NSButtonCell/font -Objective-C/binding/NSOutlineView/font -Objective-C/binding/NSForm/font -Objective-C/binding/NSComboBoxCell/font -Objective-C/binding/NSMatrix/font -Objective-C/binding/NSTokenField/font -Objective-C/binding/NSTableColumn/font -Objective-C/binding/NSTableView/font -Objective-C/binding/NSSecureTextFieldCell/font -Objective-C/binding/NSTextField/font -Objective-C/binding/NSSearchField/font -Objective-C/instm/NSText/font -Objective-C/binding/NSTextFieldCell/font -Objective-C/instm/NSMenu/font -Objective-C/binding/NSSegmentedCell/font -Objective-C/binding/NSTabView/font -Objective-C/binding/NSSecureTextField/font -Objective-C/binding/NSPredicateEditor/font -Objective-C/binding/NSTokenFieldCell/font -Objective-C/binding/NSPathControl/font -Objective-C/binding/NSTextView/font -Objective-C/binding/NSPopUpButton/font -Objective-C/instm/NSCell/font -Objective-C/binding/NSPathCell/font -Objective-C/binding/NSPopUpButtonCell/font -Objective-C/binding/NSSegmentedControl/font -Objective-C/instm/CATextLayer/font -Objective-C/instp/CATextLayer/font -JavaScript/data/CanvasRenderingContext2D/font -JavaScript/clconst/CSSRule/FONT_FACE_RULE -Objective-C/instm/NSFontDescriptor/fontAttributes -Objective-C/instm/NSAttributedString/fontAttributesInRange: -Objective-C/binding/NSForm/fontBold -Objective-C/binding/NSButton/fontBold -Objective-C/binding/NSBrowser/fontBold -Objective-C/binding/NSOutlineView/fontBold -Objective-C/binding/AMPathPopUpButton/fontBold -Objective-C/binding/NSComboBoxCell/fontBold -Objective-C/binding/NSMatrix/fontBold -Objective-C/binding/NSComboBox/fontBold -Objective-C/binding/NSDatePicker/fontBold -Objective-C/binding/NSFormCell/fontBold -Objective-C/binding/NSDatePickerCell/fontBold -Objective-C/binding/NSButtonCell/fontBold -Objective-C/binding/NSPathCell/fontBold -Objective-C/binding/NSTextView/fontBold -Objective-C/binding/NSSearchField/fontBold -Objective-C/binding/NSTokenFieldCell/fontBold -Objective-C/binding/NSPopUpButton/fontBold -Objective-C/binding/NSSegmentedCell/fontBold -Objective-C/binding/NSPredicateEditor/fontBold -Objective-C/binding/NSTableView/fontBold -Objective-C/binding/NSTabView/fontBold -Objective-C/binding/NSTableColumn/fontBold -Objective-C/binding/NSSecureTextField/fontBold -Objective-C/binding/NSTextField/fontBold -Objective-C/binding/NSSecureTextFieldCell/fontBold -Objective-C/binding/NSTextFieldCell/fontBold -Objective-C/binding/NSSegmentedControl/fontBold -Objective-C/binding/NSTokenField/fontBold -Objective-C/binding/NSPathControl/fontBold -Objective-C/binding/NSPopUpButtonCell/fontBold -Objective-C/instm/PDFAnnotationChoiceWidget/fontColor -Objective-C/instm/PDFAnnotationButtonWidget/fontColor -Objective-C/instm/PDFAnnotationTextWidget/fontColor -Objective-C/instm/PDFAnnotationFreeText/fontColor -Objective-C/instm/NSFont/fontDescriptor -Objective-C/instm/NSFontDescriptor/fontDescriptorByAddingAttributes: -Objective-C/instm/NSFontManager/fontDescriptorsInCollection: -Objective-C/instm/NSFontDescriptor/fontDescriptorWithFace: -Objective-C/instm/NSFontDescriptor/fontDescriptorWithFamily: -Objective-C/clm/NSFontDescriptor/fontDescriptorWithFontAttributes: -Objective-C/instm/NSFontDescriptor/fontDescriptorWithMatrix: -Objective-C/clm/NSFontDescriptor/fontDescriptorWithName:matrix: -Objective-C/clm/NSFontDescriptor/fontDescriptorWithName:size: -Objective-C/instm/NSFontDescriptor/fontDescriptorWithSize: -Objective-C/instm/NSFontDescriptor/fontDescriptorWithSymbolicTraits: -Objective-C/binding/NSComboBox/fontFamilyName -Objective-C/binding/NSOutlineView/fontFamilyName -Objective-C/binding/NSButtonCell/fontFamilyName -Objective-C/binding/NSDatePicker/fontFamilyName -Objective-C/binding/NSDatePickerCell/fontFamilyName -Objective-C/binding/NSForm/fontFamilyName -Objective-C/binding/NSBrowser/fontFamilyName -Objective-C/binding/NSFormCell/fontFamilyName -Objective-C/binding/AMPathPopUpButton/fontFamilyName -Objective-C/binding/NSButton/fontFamilyName -Objective-C/binding/NSComboBoxCell/fontFamilyName -Objective-C/binding/NSMatrix/fontFamilyName -Objective-C/binding/NSSearchField/fontFamilyName -Objective-C/binding/NSTableView/fontFamilyName -Objective-C/binding/NSSegmentedCell/fontFamilyName -Objective-C/binding/NSTokenFieldCell/fontFamilyName -Objective-C/binding/NSPopUpButtonCell/fontFamilyName -Objective-C/binding/NSTextView/fontFamilyName -Objective-C/binding/NSSegmentedControl/fontFamilyName -Objective-C/binding/NSPopUpButton/fontFamilyName -Objective-C/binding/NSTableColumn/fontFamilyName -Objective-C/binding/NSTabView/fontFamilyName -Objective-C/binding/NSSecureTextFieldCell/fontFamilyName -Objective-C/binding/NSSecureTextField/fontFamilyName -Objective-C/binding/NSTextField/fontFamilyName -Objective-C/binding/NSPathControl/fontFamilyName -Objective-C/binding/NSTextFieldCell/fontFamilyName -Objective-C/binding/NSPathCell/fontFamilyName -Objective-C/binding/NSPredicateEditor/fontFamilyName -Objective-C/binding/NSTokenField/fontFamilyName -Objective-C/binding/NSBrowser/fontItalic -Objective-C/binding/AMPathPopUpButton/fontItalic -Objective-C/binding/NSFormCell/fontItalic -Objective-C/binding/NSButton/fontItalic -Objective-C/binding/NSButtonCell/fontItalic -Objective-C/binding/NSOutlineView/fontItalic -Objective-C/binding/NSComboBoxCell/fontItalic -Objective-C/binding/NSMatrix/fontItalic -Objective-C/binding/NSForm/fontItalic -Objective-C/binding/NSDatePicker/fontItalic -Objective-C/binding/NSDatePickerCell/fontItalic -Objective-C/binding/NSComboBox/fontItalic -Objective-C/binding/NSPopUpButtonCell/fontItalic -Objective-C/binding/NSPredicateEditor/fontItalic -Objective-C/binding/NSSearchField/fontItalic -Objective-C/binding/NSSecureTextFieldCell/fontItalic -Objective-C/binding/NSSecureTextField/fontItalic -Objective-C/binding/NSPopUpButton/fontItalic -Objective-C/binding/NSTableView/fontItalic -Objective-C/binding/NSSegmentedCell/fontItalic -Objective-C/binding/NSPathCell/fontItalic -Objective-C/binding/NSTokenFieldCell/fontItalic -Objective-C/binding/NSSegmentedControl/fontItalic -Objective-C/binding/NSTabView/fontItalic -Objective-C/binding/NSTextView/fontItalic -Objective-C/binding/NSPathControl/fontItalic -Objective-C/binding/NSTokenField/fontItalic -Objective-C/binding/NSTableColumn/fontItalic -Objective-C/binding/NSTextField/fontItalic -Objective-C/binding/NSTextFieldCell/fontItalic -Objective-C/instm/NSObject/fontManager:willIncludeFont: -Objective-C/instm/NSFontManager/fontMenu: -Objective-C/instm/NSFont/fontName -Objective-C/binding/NSFormCell/fontName -Objective-C/binding/AMPathPopUpButton/fontName -Objective-C/binding/NSOutlineView/fontName -Objective-C/binding/NSForm/fontName -Objective-C/binding/NSMatrix/fontName -Objective-C/binding/NSComboBoxCell/fontName -Objective-C/binding/NSDatePickerCell/fontName -Objective-C/binding/NSBrowser/fontName -Objective-C/binding/NSButtonCell/fontName -Objective-C/binding/NSDatePicker/fontName -Objective-C/binding/NSComboBox/fontName -Objective-C/binding/NSButton/fontName -Objective-C/binding/NSTextField/fontName -Objective-C/binding/NSPathControl/fontName -Objective-C/binding/NSTextFieldCell/fontName -Objective-C/binding/NSPopUpButtonCell/fontName -Objective-C/binding/NSPopUpButton/fontName -Objective-C/binding/NSSecureTextField/fontName -Objective-C/binding/NSSegmentedControl/fontName -Objective-C/binding/NSSecureTextFieldCell/fontName -Objective-C/binding/NSSearchField/fontName -Objective-C/binding/NSTabView/fontName -Objective-C/binding/NSTableColumn/fontName -Objective-C/binding/NSTableView/fontName -Objective-C/binding/NSSegmentedCell/fontName -Objective-C/binding/NSPathCell/fontName -Objective-C/binding/NSTokenFieldCell/fontName -Objective-C/binding/NSTextView/fontName -Objective-C/binding/NSTokenField/fontName -Objective-C/binding/NSPredicateEditor/fontName -Objective-C/instm/NSFontManager/fontNamed:hasTraits: -Objective-C/instm/NSFontManager/fontPanel: -Objective-C/binding/NSComboBox/fontSize -Objective-C/binding/NSDatePicker/fontSize -Objective-C/binding/NSDatePickerCell/fontSize -Objective-C/binding/NSFormCell/fontSize -Objective-C/binding/NSButton/fontSize -Objective-C/binding/NSForm/fontSize -Objective-C/binding/NSComboBoxCell/fontSize -Objective-C/binding/NSBrowser/fontSize -Objective-C/binding/NSMatrix/fontSize -Objective-C/binding/AMPathPopUpButton/fontSize -Objective-C/binding/NSButtonCell/fontSize -Objective-C/binding/NSPredicateEditor/fontSize -Objective-C/binding/NSTokenFieldCell/fontSize -Objective-C/binding/NSTextView/fontSize -Objective-C/binding/NSPopUpButton/fontSize -Objective-C/binding/NSSearchField/fontSize -Objective-C/binding/NSPathCell/fontSize -Objective-C/binding/NSTableColumn/fontSize -Objective-C/binding/NSTokenField/fontSize -Objective-C/binding/NSTextField/fontSize -Objective-C/binding/NSOutlineView/fontSize -Objective-C/binding/NSTextFieldCell/fontSize -Objective-C/binding/NSTableView/fontSize -Objective-C/binding/NSPathControl/fontSize -Objective-C/binding/NSPopUpButtonCell/fontSize -Objective-C/binding/NSSegmentedCell/fontSize -Objective-C/binding/NSSecureTextField/fontSize -Objective-C/binding/NSSegmentedControl/fontSize -Objective-C/binding/NSTabView/fontSize -Objective-C/binding/NSSecureTextFieldCell/fontSize -Objective-C/instm/CATextLayer/fontSize -Objective-C/instp/CATextLayer/fontSize -Objective-C/clm/NSFont/fontWithDescriptor:size: -Objective-C/clm/NSFont/fontWithDescriptor:textTransform: -Objective-C/instm/NSFontManager/fontWithFamily:traits:weight:size: -Objective-C/clm/NSFont/fontWithName:matrix: -Objective-C/clm/NSFont/fontWithName:size: -C/func/-/fopen -C/tdef/-/ForceFeedbackDeviceState -C/tag/-/ForceFeedbackDeviceState -C/func/-/ForceFeedbackGetVersion -C/tdef/-/ForceFeedbackVersion -C/tag/-/ForceFeedbackVersion -C/econst/-/forceReadBit -C/econst/-/forceReadMask -JavaScript/instm/SVGSVGElement/forceRedraw -Objective-C/instm/NSRunningApplication/forceTerminate -C/func/-/ForEachDataBrowserItem -Objective-C/instm/NSTextStorage/foregroundColor -Objective-C/instm/CATextLayer/foregroundColor -Objective-C/instp/CATextLayer/foregroundColor -Objective-C/instm/IKImageBrowserView/foregroundLayer -C/tdef/-/ForeignPrivParam -Objective-C/instm/NSSpellChecker/forgetWord: -C/func/-/fork -C/func/-/forkpty -C/func/-/form -JavaScript/data/HTMLFieldSetElement/form -JavaScript/data/HTMLObjectElement/form -JavaScript/data/HTMLTextAreaElement/form -JavaScript/data/HTMLProgressElement/form -JavaScript/data/HTMLButtonElement/form -JavaScript/data/HTMLLegendElement/form -JavaScript/data/HTMLIsIndexElement/form -JavaScript/data/HTMLLabelElement/form -JavaScript/data/HTMLInputElement/form -JavaScript/data/HTMLMeterElement/form -JavaScript/data/HTMLOptionElement/form -JavaScript/data/HTMLSelectElement/form -C/func/-/form_cursor -C/func/-/form_data -C/func/-/form_driver -C/func/-/form_field -C/func/-/form_field_attributes -C/func/-/form_field_buffer -C/func/-/form_field_info -C/func/-/form_field_just -C/func/-/form_field_new -C/func/-/form_field_opts -C/func/-/form_field_userptr -C/func/-/form_field_validation -C/func/-/form_fieldtype -C/func/-/form_hook -C/func/-/form_new -C/func/-/form_new_page -C/func/-/form_opts -C/func/-/form_opts_off -C/func/-/form_opts_on -C/func/-/form_page -C/func/-/form_post -C/func/-/form_requestname -C/func/-/form_userptr -C/func/-/form_win -C/tag/-/Format -Objective-C/instm/CIImageAccumulator/format -Objective-C/instm/DRMSFFormatter/format -Objective-C/instm/NSNumberFormatter/format -JavaScript/data/SVGAltGlyphElement/format -Objective-C/instm/QTSampleBuffer/formatDescription -Objective-C/instm/QTCaptureConnection/formatDescription -Objective-C/instm/QTFormatDescription/formatDescriptionAttributes -Objective-C/instm/QTCaptureDevice/formatDescriptions -C++/instm/IOBlockStorageDriver/formatMedia -Objective-C/instm/FxHostCapabilities/formatsFloatRGBABitmapsAsARGB -Objective-C/instm/ISyncClient/formatsRelationships -Objective-C/instm/ABAddressBook/formattedAddressFromDictionary: -Objective-C/instm/NSControl/formatter -Objective-C/instm/NSCell/formatter -Objective-C/instm/NSDateFormatter/formatterBehavior -Objective-C/instm/NSNumberFormatter/formatterBehavior -Objective-C/instm/NSRuleEditor/formattingDictionary -Objective-C/instm/NSRuleEditor/formattingStringsFilename -Objective-C/instm/QTFormatDescription/formatType -Objective-C/instm/NSNumberFormatter/formatWidth -JavaScript/data/DOMWindow/FormData -Objective-C/instm/NSMutableCharacterSet/formIntersectionWithCharacterSet: -JavaScript/data/HTMLButtonElement/formNoValidate -JavaScript/data/HTMLInputElement/formNoValidate -JavaScript/data/Document/forms -Objective-C/instm/NSMutableCharacterSet/formUnionWithCharacterSet: -JavaScript/instm/window/forward -Objective-C/clm/IMAVButton/forwardButton -Objective-C/instm/NSObject/forwardingTargetForSelector: -Objective-C/instm/NSProxy/forwardInvocation: -Objective-C/instm/NSUndoManager/forwardInvocation: -Objective-C/instm/NSObject/forwardInvocation: -Objective-C/instm/WebBackForwardList/forwardItem -Objective-C/instm/WebBackForwardList/forwardListCount -Objective-C/instm/WebBackForwardList/forwardListWithLimit: -Objective-C/instm/IOBluetoothDeviceInquiry/foundDevices -C++/data/IODMACommand/fOutSeg -C/func/-/FPAccess -C/func/-/FPAddAPPL -C/func/-/FPAddComment -C/func/-/FPAddIcon -C/func/-/fparseln -C/func/-/fpathconf -C/func/-/FPByteRangeLock -C/func/-/FPByteRangeLockExt -C/func/-/FPCatSearch -C/func/-/FPCatSearchExt -C/func/-/FPChangePassword -C/func/-/fpclassify -C/func/-/FPCloseDir -C/func/-/FPCloseDT -C/func/-/FPCloseFork -C/func/-/FPCloseVol -C/func/-/FPCopyFile -C/func/-/FPCreateDir -C/func/-/FPCreateFile -C/func/-/FPCreateID -C/func/-/FPDelete -C/func/-/FPDeleteID -C/func/-/FPDisconnectOldSession -C/func/-/FPEnumerate -C/func/-/FPEnumerateExt -C/func/-/FPEnumerateExt2 -C/func/-/FPExchangeFiles -C/func/-/FPFlush -C/func/-/FPFlushFork -C/func/-/FPGetACL -C/func/-/FPGetAPPL -C/func/-/FPGetAuthMethods -C/func/-/FPGetComment -C/func/-/FPGetExtAttr -C/func/-/FPGetFileDirParms -C/func/-/FPGetForkParms -C/func/-/FPGetIcon -C/func/-/FPGetIconInfo -C/func/-/FPGetSessionToken -C/func/-/FPGetSrvrInfo -C/func/-/FPGetSrvrMsg -C/func/-/FPGetSrvrParms -C/func/-/FPGetUserInfo -C/func/-/FPGetVolParms -C/func/-/FPListExtAttrs -C/func/-/FPLogin -C/func/-/FPLoginCont -C/func/-/FPLoginExt -C/func/-/FPLogout -C/func/-/FPMapID -C/func/-/FPMapName -C/func/-/FPMoveAndRename -C/func/-/FPOpenDir -C/func/-/FPOpenDT -C/func/-/FPOpenFork -C/func/-/FPOpenVol -C/func/-/FPRead -C/func/-/FPReadExt -C/func/-/FPRemoveAPPL -C/func/-/FPRemoveComment -C/func/-/FPRemoveExtAttr -C/func/-/FPRename -C/func/-/FPResolveID -C/func/-/fprint_description -C/func/-/fprint_objid -C/func/-/fprint_value -C/func/-/fprint_variable -C/func/-/fprintf -C/func/-/fprintf_l -C/func/-/FPSetACL -C/func/-/FPSetDirParms -C/func/-/FPSetExtAttr -C/func/-/FPSetFileDirParms -C/func/-/FPSetFileParms -C/func/-/FPSetForkParms -C/func/-/FPSetVolParms -C/func/-/FPSpotlightRPC -C/func/-/FPSyncDir -C/func/-/FPSyncFork -C/tag/-/FPUnixPrivs -C/func/-/fpurge -C/func/-/fputc -C/func/-/fputrune -C/func/-/fputs -C/func/-/fputwc -C/func/-/fputwc_l -C/func/-/fputws -C/func/-/fputws_l -C/func/-/FPWrite -C/func/-/FPWriteExt -C/func/-/FPZzzzz -C/func/-/FracSinCos -C/tdef/-/Fract -Objective-C/intfm/NSTextInputClient/fractionOfDistanceThroughGlyphForPoint: -Objective-C/instm/NSLayoutManager/fractionOfDistanceThroughGlyphForPoint:inTextContainer: -Objective-C/instm/NSURL/fragment -JavaScript/clconst/WebGLRenderingContext/FRAGMENT_SHADER -Objective-C/instm/NSScreen/frame -Objective-C/instm/NSWindow/frame -Objective-C/instm/NSView/frame -Objective-C/instm/IKImageBrowserCell/frame -Objective-C/instp/CALayer/frame -Objective-C/instm/CALayer/frame -JavaScript/data/HTMLTableElement/frame -Objective-C/instm/NSWindow/frameAutosaveName -JavaScript/data/HTMLFrameElement/frameBorder -JavaScript/data/HTMLIFrameElement/frameBorder -JavaScript/clconst/WebGLRenderingContext/FRAMEBUFFER -JavaScript/clconst/WebGLRenderingContext/FRAMEBUFFER_ATTACHMENT_OBJECT_NAME -JavaScript/clconst/WebGLRenderingContext/FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE -JavaScript/clconst/WebGLRenderingContext/FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE -JavaScript/clconst/WebGLRenderingContext/FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL -JavaScript/clconst/WebGLRenderingContext/FRAMEBUFFER_BINDING -JavaScript/clconst/WebGLRenderingContext/FRAMEBUFFER_COMPLETE -JavaScript/clconst/WebGLRenderingContext/FRAMEBUFFER_INCOMPLETE_ATTACHMENT -JavaScript/clconst/WebGLRenderingContext/FRAMEBUFFER_INCOMPLETE_DIMENSIONS -JavaScript/clconst/WebGLRenderingContext/FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT -JavaScript/clconst/WebGLRenderingContext/FRAMEBUFFER_UNSUPPORTED -C/tag/-/FramebufferConstants -JavaScript/instm/WebGLRenderingContext/framebufferRenderbuffer -JavaScript/instm/WebGLRenderingContext/framebufferTexture2D -Objective-C/instm/NSView/frameCenterRotation -Objective-C/intfm/FxTransition/frameCleanup -Objective-C/intfm/FxFilter/frameCleanup -Objective-C/intfm/FxGenerator/frameCleanup -Objective-C/instm/WebFrame/frameElement -JavaScript/data/DOMWindow/frameElement -Objective-C/instm/NSCollectionView/frameForItemAtIndex: -Objective-C/instm/QTMovie/frameImageAtTime: -Objective-C/instm/QTMovie/frameImageAtTime:withAttributes:error: -Objective-C/instm/NSMethodSignature/frameLength -Objective-C/instm/WebView/frameLoadDelegate -Objective-C/instm/WebResource/frameName -Objective-C/instm/NSTableView/frameOfCellAtColumn:row: -Objective-C/instm/NSBrowser/frameOfColumn: -Objective-C/instm/NSBrowser/frameOfInsideOfColumn: -Objective-C/instm/NSOutlineView/frameOfOutlineCellAtRow: -Objective-C/instm/NSBrowser/frameOfRow:inColumn: -Objective-C/instm/NSAnimation/frameRate -Objective-C/instm/NSWindow/frameRectForContentRect: -Objective-C/clm/NSWindow/frameRectForContentRect:styleMask: -Objective-C/instm/NSView/frameRotation -Objective-C/instm/DRMSF/frames -JavaScript/data/DOMWindow/frames -Objective-C/intfm/FxGenerator/frameSetup:hardware:software: -Objective-C/intfm/FxFilter/frameSetup:inputInfo:hardware:software: -Objective-C/intfm/FxTransition/frameSetup:inputInfoA:inputInfoB:timeFraction:hardware:software: -Objective-C/clm/NSScrollView/frameSizeForContentSize:hasHorizontalScroller:hasVerticalScroller:borderType: -Objective-C/instm/WebFrame/frameView -C/func/-/fread -C++/instm/IONetworkInterface/free -C++/instm/IOEthernetInterface/free -C++/instm/IOEthernetController/free -C++/instm/IONetworkMedium/free -C++/instm/IONetworkController/free -C/func/-/free -C++/instm/IOCatalogue/free -C++/instm/IOBasicOutputQueue/free -C++/instm/IOAudioEngine/free -C++/instm/IOAudioPort/free -C++/instm/IOAudioControl/free -C++/instm/IOAudioDevice/free -C++/instm/IOHIDDevice/free -C++/instm/IONetworkData/free -C++/instm/IOGatedOutputQueue/free -C++/instm/IOInterruptEventSource/free -C++/instm/IOFireWireSerialBusProtocolTransport/free -C++/instm/IOHIDInterface/free -C++/instm/IOKernelDebugger/free -C++/instm/IOOutputQueue/free -C++/instm/IOStream/free -C++/instm/IOSCSIProtocolInterface/free -C++/instm/IOTimerEventSource/free -C++/instm/IORegistryEntry/free -C++/instm/IOService/free -C++/instm/IOWorkLoop/free -C++/instm/IOPacketQueue/free -C++/instm/OSDictionary/free -C++/instm/OSArray/free -C++/instm/OSObject/free -C++/instm/OSBoolean/free -C++/instm/OSNumber/free -C++/instm/OSData/free -C++/instm/OSCollectionIterator/free -C++/instm/OSSymbol/free -C++/instm/OSOrderedSet/free -C++/instm/OSSet/free -C++/instm/OSString/free -C/func/-/free_fieldtype -C/func/-/free_form -C/func/-/freeaddrinfo -C++/instm/IOATADevice/freeCommand -C++/instm/ATADeviceNub/freeCommand -C/func/-/freeFileSource -C/func/-/freehostent -C++/instm/IOFireWirePCRSpace/freeInputPlug -C/func/-/freelocale -C++/instm/IOFireWirePCRSpace/freeOutputPlug -C++/instm/IONetworkController/freePacket -C++/instm/IOSCSIParallelInterfaceController/FreeSCSIParallelTask -C++/data/IODMACommand/fRefCon -C/func/-/fremovexattr -C/func/-/freopen -C/func/-/frexp -C/func/-/frexpf -C/func/-/frexpl -JavaScript/data/MouseEvent/fromElement -C++/clm/IORegistryEntry/fromPath -Objective-C/instm/CABasicAnimation/fromValue -Objective-C/instp/CABasicAnimation/fromValue -JavaScript/clconst/WebGLRenderingContext/FRONT -JavaScript/clconst/WebGLRenderingContext/FRONT_AND_BACK -JavaScript/clconst/WebGLRenderingContext/FRONT_FACE -JavaScript/instm/WebGLRenderingContext/frontFace -C/func/-/fropen -C/tdef/-/FSAliasFilterProcPtr -C/tdef/-/FSAliasInfo -C/tdef/-/FSAliasInfoBitmap -C/func/-/FSAllocateFork -C/tdef/-/FSAllocationFlags -C/econst/-/fsAtMark -C/func/-/FSCancelVolumeOperation -C/func/-/fscanf -C/func/-/fscanf_l -C/tdef/-/FSCatalogBulkParam -C/tdef/-/FSCatalogInfo -C/tdef/-/FSCatalogInfoBitmap -C/func/-/FSCatalogSearch -C/func/-/FSClose -C/func/-/FSCloseFork -C/func/-/FSCloseIterator -C/func/-/FSCompareFSRefs -C/func/-/FSCopyAliasInfo -C/func/-/FSCopyDiskIDForVolume -C/func/-/FSCopyObjectAsync -C/func/-/FSCopyObjectSync -C/func/-/FSCopyURLForVolume -C/func/-/FSCreateDirectoryUnicode -C/func/-/FSCreateFileUnicode -C/func/-/FSCreateFork -C/func/-/FSCreateResFile -C/func/-/FSCreateResourceFile -C/func/-/FSCreateResourceFork -C/func/-/FSCreateVolumeOperation -C/econst/-/fsCurPerm -C/econst/-/fsDataTooBigErr -C/func/-/FSDeleteFork -C/func/-/FSDeleteObject -C/func/-/FSDisposeVolumeOperation -C/econst/-/fsDSIntErr -C/func/-/fseek -C/func/-/fseeko -C/tdef/-/FSEjectStatus -C/func/-/FSEjectVolumeAsync -C/func/-/FSEjectVolumeSync -C/func/-/fsetattrlist -C/func/-/fsetpos -C/func/-/fsetxattr -C/func/-/FSEventsCopyUUIDForDevice -C/func/-/FSEventsGetCurrentEventId -C/func/-/FSEventsGetLastEventIdForDeviceBeforeTime -C/func/-/FSEventsPurgeEventsForDeviceUpToEventId -C/tdef/-/FSEventStreamCallback -C/tag/-/FSEventStreamContext -C/func/-/FSEventStreamCopyDescription -C/func/-/FSEventStreamCopyPathsBeingWatched -C/func/-/FSEventStreamCreate -C/tdef/-/FSEventStreamCreateFlags -C/tag/-/FSEventStreamCreateFlags -C/func/-/FSEventStreamCreateRelativeToDevice -C/tag/-/FSEventStreamEventFlags -C/tdef/-/FSEventStreamEventFlags -C/tdef/-/FSEventStreamEventId -C/func/-/FSEventStreamFlushAsync -C/func/-/FSEventStreamFlushSync -C/func/-/FSEventStreamGetDeviceBeingWatched -C/func/-/FSEventStreamGetLatestEventId -C/func/-/FSEventStreamInvalidate -C/tdef/-/FSEventStreamRef -C/func/-/FSEventStreamRelease -C/func/-/FSEventStreamScheduleWithRunLoop -C/func/-/FSEventStreamSetDispatchQueue -C/func/-/FSEventStreamShow -C/func/-/FSEventStreamStart -C/func/-/FSEventStreamStop -C/func/-/FSEventStreamUnscheduleFromRunLoop -C/func/-/FSExchangeObjects -C/func/-/FSFileOperationCancel -C/tdef/-/FSFileOperationClientContext -C/func/-/FSFileOperationCopyStatus -C/func/-/FSFileOperationCreate -C/func/-/FSFileOperationGetTypeID -C/tdef/-/FSFileOperationRef -C/func/-/FSFileOperationScheduleWithRunLoop -C/tdef/-/FSFileOperationStage -C/tdef/-/FSFileOperationStatusProcPtr -C/func/-/FSFileOperationUnscheduleFromRunLoop -C/func/-/FSFlushFork -C/func/-/FSFlushVolume -C/func/-/FSFollowFinderAlias -C/tdef/-/FSForkCBInfoParam -C/tdef/-/FSForkInfo -C/tdef/-/FSForkIOParam -C/econst/-/fsFromLEOF -C/econst/-/fsFromMark -C/econst/-/fsFromStart -C/func/-/FSGetAsyncEjectStatus -C/func/-/FSGetAsyncMountStatus -C/func/-/FSGetAsyncUnmountStatus -C/func/-/FSGetCatalogInfo -C/func/-/FSGetCatalogInfoBulk -C/func/-/FSGetDataForkName -C/func/-/FSGetForkCBInfo -C/func/-/FSGetForkPosition -C/func/-/FSGetForkSize -C/func/-/FSGetResourceForkName -C/func/-/FSGetVolumeInfo -C/func/-/FSGetVolumeMountInfo -C/func/-/FSGetVolumeMountInfoSize -C/func/-/FSGetVolumeParms -C/func/-/FSIsAliasFile -C/func/-/FSIterateForks -C/tdef/-/FSIterator -C/tdef/-/FSIteratorFlags -C/func/-/FSLockRange -C/func/-/FSMakeFSRefUnicode -C/func/-/FSMakeFSSpec -C/func/-/FSMatchAlias -C/func/-/FSMatchAliasBulk -C/func/-/FSMatchAliasNoUI -C/econst/-/fsmBadFFSNameErr -C/econst/-/fsmBadFSDLenErr -C/econst/-/fsmBadFSDVersionErr -C/econst/-/fsmBusyFFSErr -C/econst/-/fsmDuplicateFSIDErr -C/econst/-/fsmFFSNotFoundErr -C/econst/-/fsmNoAlternateStackErr -C/func/-/FSMountLocalVolumeAsync -C/func/-/FSMountLocalVolumeSync -C/func/-/FSMountServerVolumeAsync -C/func/-/FSMountServerVolumeSync -C/tdef/-/FSMountStatus -C/func/-/FSMoveObject -C/func/-/FSMoveObjectAsync -C/func/-/FSMoveObjectSync -C/func/-/FSMoveObjectToTrashAsync -C/func/-/FSMoveObjectToTrashSync -C/econst/-/fsmUnknownFSMMessageErr -C/func/-/FSNewAlias -C/func/-/FSNewAliasFromPath -C/func/-/FSNewAliasMinimal -C/func/-/FSNewAliasMinimalUnicode -C/func/-/FSNewAliasUnicode -C/func/-/FSOpenFork -C/func/-/FSOpenIterator -C/func/-/FSOpenOrphanResFile -C/func/-/FSOpenResFile -C/func/-/FSOpenResourceFile -C/func/-/FSPathCopyObjectAsync -C/func/-/FSPathCopyObjectSync -C/func/-/FSPathFileOperationCopyStatus -C/tdef/-/FSPathFileOperationStatusProcPtr -C/func/-/FSPathMakeRef -C/func/-/FSPathMakeRefWithOptions -C/func/-/FSPathMoveObjectAsync -C/func/-/FSPathMoveObjectSync -C/func/-/FSPathMoveObjectToTrashAsync -C/func/-/FSPathMoveObjectToTrashSync -C/func/-/FSpCatMove -C/func/-/FSpCreate -C/func/-/FSpCreateResFile -C/func/-/FSpDelete -C/func/-/FSpDirCreate -C/tdef/-/FSPermissionInfo -C/func/-/FSpExchangeFiles -C/func/-/FSpGetFInfo -C/func/-/FSpMakeFSRef -C/func/-/FSpOpenDF -C/func/-/FSpOpenOrphanResFile -C/func/-/FSpOpenResFile -C/func/-/FSpOpenRF -C/func/-/FSpRename -C/func/-/FSpResourceFileAlreadyOpen -C/func/-/FSpRstFLock -C/func/-/FSpSetFInfo -C/func/-/FSpSetFLock -C/tdef/-/FSRangeLockParam -C/tdef/-/FSRangeLockParamPtr -C/econst/-/fsRdDenyPerm -C/econst/-/fsRdPerm -C/econst/-/fsRdWrPerm -C/econst/-/fsRdWrShPerm -C/func/-/FSRead -C/func/-/FSReadFork -C/tdef/-/FSRef -C/func/-/FSRefMakePath -C/tdef/-/FSRefParam -C/func/-/FSRenameUnicode -C/func/-/FSResolveAlias -C/func/-/FSResolveAliasFile -C/func/-/FSResolveAliasFileWithMountFlags -C/func/-/FSResolveAliasWithMountFlags -C/func/-/FSResourceFileAlreadyOpen -C/econst/-/fsRnErr -C/econst/-/fsRtDirID -C/econst/-/fsRtParID -C/econst/-/fsSBAccessDate -C/econst/-/fsSBAccessDateBit -C/econst/-/fsSBAttributeModDate -C/econst/-/fsSBAttributeModDateBit -C/econst/-/fsSBDrBkDat -C/econst/-/fsSBDrBkDatBit -C/econst/-/fsSBDrCrDat -C/econst/-/fsSBDrCrDatBit -C/econst/-/fsSBDrFndrInfo -C/econst/-/fsSBDrFndrInfoBit -C/econst/-/fsSBDrMdDat -C/econst/-/fsSBDrMdDatBit -C/econst/-/fsSBDrNmFls -C/econst/-/fsSBDrNmFlsBit -C/econst/-/fsSBDrParID -C/econst/-/fsSBDrParIDBit -C/econst/-/fsSBDrUsrWds -C/econst/-/fsSBDrUsrWdsBit -C/econst/-/fsSBFlAttrib -C/econst/-/fsSBFlAttribBit -C/econst/-/fsSBFlBkDat -C/econst/-/fsSBFlBkDatBit -C/econst/-/fsSBFlCrDat -C/econst/-/fsSBFlCrDatBit -C/econst/-/fsSBFlFndrInfo -C/econst/-/fsSBFlFndrInfoBit -C/econst/-/fsSBFlLgLen -C/econst/-/fsSBFlLgLenBit -C/econst/-/fsSBFlMdDat -C/econst/-/fsSBFlMdDatBit -C/econst/-/fsSBFlParID -C/econst/-/fsSBFlParIDBit -C/econst/-/fsSBFlPyLen -C/econst/-/fsSBFlPyLenBit -C/econst/-/fsSBFlRLgLen -C/econst/-/fsSBFlRLgLenBit -C/econst/-/fsSBFlRPyLen -C/econst/-/fsSBFlRPyLenBit -C/econst/-/fsSBFlXFndrInfo -C/econst/-/fsSBFlXFndrInfoBit -C/econst/-/fsSBFullName -C/econst/-/fsSBFullNameBit -C/econst/-/fsSBNegate -C/econst/-/fsSBNegateBit -C/econst/-/fsSBNodeID -C/econst/-/fsSBNodeIDBit -C/econst/-/fsSBPartialName -C/econst/-/fsSBPartialNameBit -C/econst/-/fsSBPermissions -C/econst/-/fsSBPermissionsBit -C/tdef/-/FSSearchParams -C/func/-/FSSetCatalogInfo -C/func/-/FSSetForkPosition -C/func/-/FSSetForkSize -C/func/-/FSSetVolumeInfo -C/tag/-/FSSpec -C/tdef/-/FSSpec -C/tdef/-/FSSpecArrayPtr -C/func/-/fstat -C/func/-/fstat64 -C/func/-/fstatfs -C/func/-/fstatfs64 -C/func/-/fstatvfs -C/econst/-/fsUnixPriv -C/func/-/FSUnlockRange -C/tdef/-/FSUnmountStatus -C/func/-/FSUnmountVolumeAsync -C/func/-/FSUnmountVolumeSync -C/func/-/FSUpdateAlias -C/tdef/-/FSVolumeEjectProcPtr -C/tdef/-/FSVolumeEjectUPP -C/tdef/-/FSVolumeInfo -C/tdef/-/FSVolumeInfoBitmap -C/tdef/-/FSVolumeInfoParam -C/func/-/FSVolumeMount -C/tdef/-/FSVolumeMountProcPtr -C/tdef/-/FSVolumeMountUPP -C/tdef/-/FSVolumeOperation -C/tdef/-/FSVolumeRefNum -C/tdef/-/FSVolumeUnmountProcPtr -C/tdef/-/FSVolumeUnmountUPP -C/econst/-/fsWrDenyPerm -C/func/-/FSWrite -C/func/-/FSWriteFork -C/econst/-/fsWrPerm -C/func/-/fsync -C/func/-/ftell -C/func/-/ftello -C/func/-/ftime -C/func/-/ftok -C/tdef/-/ftpDataCallback -C/tdef/-/ftpListCallback -C/func/-/ftruncate -C/func/-/ftrylockfile -C/func/-/fts -C/func/-/fts_children -C/func/-/fts_close -C/func/-/fts_open -C/func/-/fts_open_b -C/func/-/fts_read -C/func/-/fts_set -C/tag/-/FTSFileType -C/func/-/ftw -Objective-C/instm/CBIdentity/fullName -Objective-C/instm/NSWorkspace/fullPathForApplication: -JavaScript/clconst/WebGLRenderingContext/FUNC_ADD -JavaScript/clconst/WebGLRenderingContext/FUNC_REVERSE_SUBTRACT -JavaScript/clconst/WebGLRenderingContext/FUNC_SUBTRACT -C/func/-/function -Objective-C/instm/NSExpression/function -JavaScript/data/ScriptProfileNode/functionName -JavaScript/data/JavaScriptCallFrame/functionName -Objective-C/clm/CAMediaTimingFunction/functionWithControlPoints:::: -Objective-C/clm/CAMediaTimingFunction/functionWithName: -Objective-C/clm/CAValueFunction/functionWithName: -C/func/-/fungetrune -C/func/-/funlockfile -C/func/-/funopen -C/func/-/futimes -C/func/-/FWAAttachFWAudioMIDIStream -C/func/-/FWAAttachFWAudioStream -C/func/-/FWAClose -C/func/-/FWACountDevices -C/func/-/FWACreateAudioStream -C/func/-/FWACreateFWAudioDevice -C/func/-/FWACreateFWAudioEngine -C/func/-/FWACreateFWAudioMIDIDeviceNub -C/func/-/FWACreateFWAudioMIDIPlug -C/func/-/FWACreateFWAudioMIDIStream -C/func/-/FWACreateFWAudioPlug -C/func/-/FWACreateFWAudioStream -C/func/-/FWACreateIsochStream -C/func/-/FWACreateMIDIStream -C/tdef/-/FWAddressSpaceFlags -C/func/-/FWADisposeAudioStream -C/func/-/FWADisposeFWAudioDevice -C/func/-/FWADisposeFWAudioEngine -C/func/-/FWADisposeFWAudioMIDIDeviceNub -C/func/-/FWADisposeFWAudioMIDIPlug -C/func/-/FWADisposeFWAudioMIDIStream -C/func/-/FWADisposeFWAudioPlug -C/func/-/FWADisposeFWAudioStream -C/func/-/FWADisposeIsochStream -C/func/-/FWADisposeMIDIStream -C/func/-/FWAExecuteAVC -C/func/-/FWAGetAEvntSource -C/func/-/FWAGetClockSource -C/func/-/FWAGetCurrentIsochStreamRefs -C/func/-/FWAGetCycleTimeOffset -C/func/-/FWAGetDeviceName -C/func/-/FWAGetDeviceSampleRate -C/func/-/FWAGetDeviceSendMode -C/func/-/FWAGetDeviceStatus -C/func/-/FWAGetDeviceStreamInfo -C/func/-/FWAGetFWAudioMIDIPlugChannel -C/func/-/FWAGetFWAudioPlugChannel -C/func/-/FWAGetGUID -C/func/-/FWAGetIndexedFWAudioMIDIPlug -C/func/-/FWAGetIndexedFWAudioPlug -C/func/-/FWAGetIsochStreamAudioSequenceCount -C/func/-/FWAGetIsochStreamAudioType -C/func/-/FWAGetIsochStreamChannelID -C/func/-/FWAGetIsochStreamDirection -C/func/-/FWAGetIsochStreamMIDISequenceCount -C/func/-/FWAGetIsochStreamOutputSpeed -C/func/-/FWAGetIsochStreamSampleRate -C/func/-/FWAGetIsochStreamState -C/func/-/FWAGetMacGUID -C/func/-/FWAGetMaxIsochChannels -C/func/-/FWAGetMaxSequences -C/func/-/FWAGetMaxSpeed -C/func/-/FWAGetNodeID -C/func/-/FWAGetNumAudioInputPlugs -C/func/-/FWAGetNumAudioOutputPlugs -C/func/-/FWAGetNumMIDIInputPlugs -C/func/-/FWAGetNumMIDIOutputPlugs -C/func/-/FWAGetSessionRef -C/func/-/FWAGetSupportedAudioTypes -C/func/-/FWAGetSupportedSampleRates -C/func/-/FWAGetVendorID -C/func/-/FWAGetVendorName -C/func/-/FWAInitAEvntSource -C/func/-/FWAIsMIDICapable -C/func/-/FWAMIDIDeviceNubAttachMIDIPlug -C/func/-/FWAMIDIDeviceNubDetachMIDIPlug -C/func/-/FWAOpen -C/func/-/FWAOpenLocal -C/func/-/FWAOpenLocalWithInterface -C/func/-/FWAOpenWithService -C/func/-/FWARead -C/func/-/FWAReadBlock -C/func/-/FWAReadMIDIData -C/func/-/FWAReadMIDIDataAsync -C/func/-/FWAReadQuadlet -C/func/-/FWAReserveIsochSequences -C/func/-/FWASetAutoLoad -C/func/-/FWASetClockSource -C/func/-/FWASetCycleTimeOffset -C/func/-/FWASetDeviceStreamInfo -C/func/-/FWASetFWAudioMIDIPlugChannel -C/func/-/FWASetFWAudioMIDIPlugProperty -C/func/-/FWASetFWAudioPlugChannel -C/func/-/FWASetFWAudioPlugProperty -C/func/-/FWASetIsochStreamAudioSequenceCount -C/func/-/FWASetIsochStreamAudioType -C/func/-/FWASetIsochStreamChannelID -C/func/-/FWASetIsochStreamMIDISequenceCount -C/func/-/FWASetIsochStreamOutputSpeed -C/func/-/FWASetIsochStreamSampleRate -C/func/-/FWASetNumMIDIInputPlugs -C/func/-/FWASetNumMIDIOutputPlugs -C/func/-/FWASetPluginPath -C/func/-/FWAStartFWAudioDevice -C/func/-/FWAStartIsochStream -C/func/-/FWAStopFWAudioDevice -C/func/-/FWAStopIsochStream -C/func/-/FWASyncUpDevice -C/func/-/FWAWrite -C/func/-/FWAWriteBlock -C/func/-/FWAWriteMIDIData -C/func/-/FWAWriteMIDIDataAsync -C/func/-/FWAWriteQuadlet -C/func/-/fwide -C/func/-/fwopen -C/func/-/fwprintf -C/func/-/fwprintf_l -C/tdef/-/FWReadCallback -C/func/-/fwrite -C/tdef/-/FWSBP2FetchAgentWriteCallback -C/tdef/-/FWSBP2LoginCallback -C/tdef/-/FWSBP2LoginCompleteParams -C/tdef/-/FWSBP2LoginCompleteParamsPtr -C/tdef/-/FWSBP2LoginResponse -C/tdef/-/FWSBP2LoginResponsePtr -C/tdef/-/FWSBP2LogoutCallback -C/tdef/-/FWSBP2LogoutCompleteParams -C/tdef/-/FWSBP2LogoutCompleteParamsPtr -C/tdef/-/FWSBP2ManagementCallback -C/tdef/-/FWSBP2NotifyCallback -C/tdef/-/FWSBP2NotifyParams -C/tdef/-/FWSBP2NotifyParamsPtr -C/tdef/-/FWSBP2ReconnectParams -C/tdef/-/FWSBP2ReconnectParamsPtr -C/tdef/-/FWSBP2StatusBlock -C/tdef/-/FWSBP2StatusCallback -C/tdef/-/FWSBP2VirtualRange -C/func/-/fwscanf -C/func/-/fwscanf_l -C/tdef/-/FWWriteCallback -JavaScript/data/SVGRadialGradientElement/fx -Objective-C/intf/-/Fx3DAPI -Objective-C/intf/-/FxBaseEffect -Objective-C/cl/-/FxBitmap -Objective-C/intf/-/FxCustomParameterActionAPI -Objective-C/intf/-/FxCustomParameterViewHost -C/tag/-/FxDepth -C/tag/-/FxDrawingCoordinates -C/tag/-/FxField -C/tag/-/FxFieldOrder -Objective-C/intf/-/FxFilter -Objective-C/intf/-/FxGenerator -Objective-C/cl/-/FxHostCapabilities -Objective-C/cl/-/FxImage -C/tag/-/FxImageColorInfo -C/tdef/-/FxImageInfo -C/tag/-/FxImageOrigin -C/tag/-/FxImageType -Objective-C/intf/-/FxLayerInfoAPI -C/tag/-/FxModifierKeys -Objective-C/intf/-/FxOnScreenControl -Objective-C/intf/-/FxOnScreenControlAPI -Objective-C/intf/-/FxOptionalParameterCreationAPI -Objective-C/intf/-/FxOptionalParameterRetrievalAPI -Objective-C/intf/-/FxOptionalParameterSettingAPI -Objective-C/intf/-/FxParameterCreationAPI -Objective-C/intf/-/FxParameterCreationAPI_v2 -C/tag/-/FxParameterFlags -Objective-C/intf/-/FxParameterRetrievalAPI -Objective-C/intf/-/FxParameterRetrievalAPI_v2 -Objective-C/intf/-/FxParameterSettingAPI -Objective-C/intf/-/FxParameterSettingAPI_v2 -C/tag/-/FxPixelFormat -Objective-C/intf/-/FxProgressAPI -C/tag/-/FxQuality -C/tdef/-/FxRenderInfo -Objective-C/intf/-/FxTemporalImageAPI -Objective-C/intf/-/FxTemporalTransitionImageAPI -Objective-C/cl/-/FxTexture -C/tag/-/FxTimeBase -Objective-C/intf/-/FxTimingAPI -Objective-C/intf/-/FxTransition -Objective-C/tag/FxTemporalTransitionImageAPI/FxTransitionInput -Objective-C/intf/-/FxVersioningAPI -JavaScript/data/SVGRadialGradientElement/fy -C/func/-/gai_strerror -C/func/-/gamma -C/func/-/gamma_r -C/tdef/-/GammaFunction -C++/instm/IOCommandPool/gatedGetCommand -C++/instm/IOCommandPool/gatedReturnCommand -C++/data/IOWorkLoop/gateLock -C/func/-/gcvt -C/func/-/GDGetScale -C/tdef/-/GDHandle -C/func/-/GDHasScale -C/tdef/-/GDPtr -C/func/-/GDSetScale -C++/instm/IODMACommand/gen32IOVMSegments -C++/instm/IODMACommand/gen64IOVMSegments -Objective-C/clm/NSPasteboard/generalPasteboard -JavaScript/clconst/WebGLRenderingContext/GENERATE_MIPMAP_HINT -Objective-C/instm/QTTrack/generateApertureModeDimensions -Objective-C/instm/QTMovie/generateApertureModeDimensions -Objective-C/instm/NSGlyphGenerator/generateGlyphsForGlyphStorage:desiredNumberOfCharacters:glyphIndex:characterIndex: -JavaScript/instm/WebGLRenderingContext/generateMipmap -C/tdef/-/GeneratePreviewForURL -Objective-C/instm/NSDateFormatter/generatesCalendarDates -Objective-C/instm/NSNumberFormatter/generatesDecimalNumbers -C/tdef/-/GenerateThumbnailForURL -Objective-C/clm/NSColorSpace/genericCMYKColorSpace -Objective-C/clm/NSColorSpace/genericGamma22GrayColorSpace -Objective-C/clm/NSColorSpace/genericGrayColorSpace -Objective-C/clm/NSColorSpace/genericRGBColorSpace -C++/instm/IODMACommand/genIOVMSegments -C++/instm/IOMbufMemoryCursor/genPhysicalSegments -C++/instm/IOMemoryCursor/genPhysicalSegments -JavaScript/data/Navigator/geolocation -Objective-C/instp/CALayer/geometryFlipped -JavaScript/clconst/WebGLRenderingContext/GEQUAL -C/func/-/Gestalt -C/econst/-/gestalt16BitAudioSupport -C/econst/-/gestalt16BitSoundIO -C/econst/-/gestalt32BitAddressing -C/econst/-/gestalt32BitCapable -C/econst/-/gestalt32BitQD -C/econst/-/gestalt32BitQD11 -C/econst/-/gestalt32BitQD12 -C/econst/-/gestalt32BitQD13 -C/econst/-/gestalt32BitSysZone -C/econst/-/gestalt68000 -C/econst/-/gestalt68010 -C/econst/-/gestalt68020 -C/econst/-/gestalt68030 -C/econst/-/gestalt68030MMU -C/econst/-/gestalt68040 -C/econst/-/gestalt68040FPU -C/econst/-/gestalt68040MMU -C/econst/-/gestalt68851 -C/econst/-/gestalt68881 -C/econst/-/gestalt68882 -C/econst/-/gestalt68k -C/econst/-/gestalt8BitQD -C/econst/-/gestaltAddressingModeAttr -C/econst/-/gestaltAdminFeaturesFlagsAttr -C/econst/-/gestaltAliasMgrAttr -C/econst/-/gestaltAllegroQD -C/econst/-/gestaltAllegroQDText -C/econst/-/gestaltAltivecRegistersSwappedCorrectlyBit -C/econst/-/gestaltAMU -C/econst/-/gestaltAntiAliasedTextAvailable -C/econst/-/gestaltAppearanceAttr -C/econst/-/gestaltAppearanceCompatMode -C/econst/-/gestaltAppearanceExists -C/econst/-/gestaltAppearanceVersion -C/econst/-/gestaltAppleEventsAttr -C/econst/-/gestaltAppleEventsPresent -C/econst/-/gestaltAppleGuideIsDebug -C/econst/-/gestaltAppleGuidePresent -C/econst/-/gestaltAppleScriptAttr -C/econst/-/gestaltAppleScriptPowerPCSupport -C/econst/-/gestaltAppleScriptPresent -C/econst/-/gestaltAppleScriptVersion -C/econst/-/gestaltAppleTalkVersion -C/econst/-/gestaltATalkVersion -C/econst/-/gestaltATSUAscentDescentControlsFeature -C/econst/-/gestaltATSUBatchBreakLinesFeature -C/econst/-/gestaltATSUBiDiCursorPositionFeature -C/econst/-/gestaltATSUByCharacterClusterFeature -C/econst/-/gestaltATSUDecimalTabFeature -C/econst/-/gestaltATSUDirectAccess -C/econst/-/gestaltATSUDropShadowStyleFeature -C/econst/-/gestaltATSUFallbacksFeature -C/econst/-/gestaltATSUFallbacksObjFeatures -C/econst/-/gestaltATSUFeatures -C/econst/-/gestaltATSUGlyphBoundsFeature -C/econst/-/gestaltATSUHighlightColorControlFeature -C/econst/-/gestaltATSUHighlightInactiveTextFeature -C/econst/-/gestaltATSUIgnoreLeadingFeature -C/econst/-/gestaltATSULayoutCacheClearFeature -C/econst/-/gestaltATSULayoutCreateAndCopyFeature -C/econst/-/gestaltATSULineControlFeature -C/econst/-/gestaltATSULowLevelOrigFeatures -C/econst/-/gestaltATSUMemoryFeature -C/econst/-/gestaltATSUNearestCharLineBreakFeature -C/econst/-/gestaltATSUPositionToCursorFeature -C/econst/-/gestaltATSUStrikeThroughStyleFeature -C/econst/-/gestaltATSUTabSupportFeature -C/econst/-/gestaltATSUTextLocatorUsageFeature -C/econst/-/gestaltATSUTrackingFeature -C/econst/-/gestaltATSUUnderlineOptionsStyleFeature -C/econst/-/gestaltATSUUpdate1 -C/econst/-/gestaltATSUUpdate2 -C/econst/-/gestaltATSUUpdate3 -C/econst/-/gestaltATSUUpdate4 -C/econst/-/gestaltATSUUpdate5 -C/econst/-/gestaltATSUUpdate6 -C/econst/-/gestaltATSUUpdate7 -C/econst/-/gestaltATSUVersion -C/econst/-/gestaltAUXVersion -C/econst/-/gestaltBuiltInSoundInput -C/econst/-/gestaltCanStartDragInFloatWindow -C/econst/-/gestaltCanUseCGTextRendering -C/econst/-/gestaltCollectionMgrVersion -C/econst/-/gestaltColorMatchingAttr -C/econst/-/gestaltColorMatchingLibLoaded -C/econst/-/gestaltColorMatchingVersion -C/econst/-/gestaltColorSync10 -C/econst/-/gestaltColorSync104 -C/econst/-/gestaltColorSync105 -C/econst/-/gestaltColorSync11 -C/econst/-/gestaltColorSync20 -C/econst/-/gestaltColorSync21 -C/econst/-/gestaltColorSync211 -C/econst/-/gestaltColorSync212 -C/econst/-/gestaltColorSync213 -C/econst/-/gestaltColorSync25 -C/econst/-/gestaltColorSync26 -C/econst/-/gestaltColorSync261 -C/econst/-/gestaltColorSync30 -C/econst/-/gestaltComponentMgr -C/econst/-/gestaltCompressionMgr -C/econst/-/gestaltConnMgrAttr -C/econst/-/gestaltConnMgrCMSearchFix -C/econst/-/gestaltConnMgrErrorString -C/econst/-/gestaltConnMgrMultiAsyncIO -C/econst/-/gestaltConnMgrPresent -C/econst/-/gestaltControlMgrAttr -C/econst/-/gestaltControlMgrPresent -C/econst/-/gestaltControlMgrPresentBit -C/econst/-/gestaltControlMgrVersion -C/econst/-/gestaltControlMsgPresentMask -C/econst/-/gestaltControlStripVersion -C/econst/-/gestaltCPU601 -C/econst/-/gestaltCPU603 -C/econst/-/gestaltCPU603e -C/econst/-/gestaltCPU603ev -C/econst/-/gestaltCPU604 -C/econst/-/gestaltCPU604e -C/econst/-/gestaltCPU604ev -C/econst/-/gestaltCPU68000 -C/econst/-/gestaltCPU68010 -C/econst/-/gestaltCPU68020 -C/econst/-/gestaltCPU68030 -C/econst/-/gestaltCPU68040 -C/econst/-/gestaltCPU750 -C/econst/-/gestaltCPUG4 -C/econst/-/gestaltCPUG47450 -C/econst/-/gestaltCreatesAliasFontRsrc -C/econst/-/gestaltCTBVersion -C/econst/-/gestaltCurrentGraphicsVersion -C/econst/-/gestaltDesktopSpeechRecognition -C/econst/-/gestaltDialogMgrAttr -C/econst/-/gestaltDialogMgrHasAquaAlertBit -C/econst/-/gestaltDialogMgrHasAquaAlertMask -C/econst/-/gestaltDialogMgrPresent -C/econst/-/gestaltDialogMgrPresentBit -C/econst/-/gestaltDialogMgrPresentMask -C/econst/-/gestaltDialogMsgPresentMask -C/econst/-/gestaltDiskCacheSize -C/econst/-/gestaltDisplayMgrAttr -C/econst/-/gestaltDisplayMgrCanConfirm -C/econst/-/gestaltDisplayMgrCanSwitchMirrored -C/econst/-/gestaltDisplayMgrColorSyncAware -C/econst/-/gestaltDisplayMgrGeneratesProfiles -C/econst/-/gestaltDisplayMgrPresent -C/econst/-/gestaltDisplayMgrSetDepthNotifies -C/econst/-/gestaltDisplayMgrSleepNotifies -C/econst/-/gestaltDisplayMgrVers -C/econst/-/gestaltDITLExtAttr -C/econst/-/gestaltDITLExtPresent -C/econst/-/gestaltDITLExtSupportsIctb -C/econst/-/gestaltDragMgrAttr -C/econst/-/gestaltDragMgrFloatingWind -C/econst/-/gestaltDragMgrHasImageSupport -C/econst/-/gestaltDragMgrPresent -C/econst/-/gestaltDTMgrSupportsFSM -C/econst/-/gestaltDupSelectorErr -C/econst/-/gestaltEMMU1 -C/econst/-/gestaltExtendedTimeMgr -C/econst/-/gestaltExtendedWindowAttributes -C/econst/-/gestaltExtendedWindowAttributesBit -C/econst/-/gestaltExtendedWindowAttributesMask -C/econst/-/gestaltExtToolboxTable -C/econst/-/gestaltFinderUsesSpecialOpenFoldersFile -C/econst/-/gestaltFindFolderAttr -C/econst/-/gestaltFindFolderPresent -C/econst/-/gestaltFirstSlotNumber -C/econst/-/gestaltFolderDescSupport -C/econst/-/gestaltFolderMgrFollowsAliasesWhenResolving -C/econst/-/gestaltFolderMgrSupportsDomains -C/econst/-/gestaltFolderMgrSupportsExtendedCalls -C/econst/-/gestaltFolderMgrSupportsFSCalls -C/econst/-/gestaltFontMgrAttr -C/econst/-/gestaltFPUType -C/econst/-/gestaltFrontWindowMayBeHiddenBit -C/econst/-/gestaltFrontWindowMayBeHiddenMask -C/econst/-/gestaltFSAttr -C/econst/-/gestaltFSIncompatibleDFA82 -C/econst/-/gestaltFSMDoesDynamicLoad -C/econst/-/gestaltFSMVersion -C/econst/-/gestaltFSNoMFSVols -C/econst/-/gestaltFSSupports2TBVols -C/econst/-/gestaltFSSupports4GBVols -C/econst/-/gestaltFSSupportsExclusiveLocks -C/econst/-/gestaltFSSupportsHardLinkDetection -C/econst/-/gestaltFSSupportsHFSPlusVols -C/econst/-/gestaltFSUsesPOSIXPathsForConversion -C/econst/-/gestaltFullExtFSDispatching -C/econst/-/gestaltFXfrMgrAttr -C/econst/-/gestaltGraphicsVersion -C/econst/-/gestaltHardwareAttr -C/econst/-/gestaltHasASC -C/econst/-/gestaltHasColor -C/econst/-/gestaltHasDeepGWorlds -C/econst/-/gestaltHasDirectPixMaps -C/econst/-/gestaltHasEnhancedLtalk -C/econst/-/gestaltHasExtendedDiskInit -C/econst/-/gestaltHasFileSystemManager -C/econst/-/gestaltHasFloatingWindows -C/econst/-/gestaltHasFloatingWindowsBit -C/econst/-/gestaltHasFloatingWindowsMask -C/econst/-/gestaltHasFSSpecCalls -C/econst/-/gestaltHasGPIaToDCDa -C/econst/-/gestaltHasGPIaToRTxCa -C/econst/-/gestaltHasGPIbToDCDb -C/econst/-/gestaltHasGrayishTextOr -C/econst/-/gestaltHasHFSPlusAPIs -C/econst/-/gestaltHasParityCapability -C/econst/-/gestaltHasResourceOverrides -C/econst/-/gestaltHasSCC -C/econst/-/gestaltHasSCSI -C/econst/-/gestaltHasSCSI961 -C/econst/-/gestaltHasSCSI962 -C/econst/-/gestaltHasSoftPowerOff -C/econst/-/gestaltHasSoundInputDevice -C/econst/-/gestaltHasUniversalROM -C/econst/-/gestaltHasVIA1 -C/econst/-/gestaltHasVIA2 -C/econst/-/gestaltHasWindowBuffering -C/econst/-/gestaltHasWindowBufferingBit -C/econst/-/gestaltHasWindowBufferingMask -C/econst/-/gestaltHasWindowShadowsBit -C/econst/-/gestaltHasWindowShadowsMask -C/econst/-/gestaltHelpMgrAttr -C/econst/-/gestaltHelpMgrExtensions -C/econst/-/gestaltHelpMgrPresent -C/econst/-/gestaltHidePortA -C/econst/-/gestaltHidePortB -C/econst/-/gestaltHighLevelMatching -C/econst/-/gestaltIconUtilitiesAttr -C/econst/-/gestaltIconUtilitiesHas32BitIcons -C/econst/-/gestaltIconUtilitiesHas48PixelIcons -C/econst/-/gestaltIconUtilitiesHas8BitDeepMasks -C/econst/-/gestaltIconUtilitiesHasIconServices -C/econst/-/gestaltIconUtilitiesPresent -C/econst/-/gestaltIntel -C/econst/-/gestaltIPCSupport -C/econst/-/gestaltKeyboardType -C/econst/-/gestaltLaunchCanReturn -C/econst/-/gestaltLaunchControl -C/econst/-/gestaltLaunchFullFileSpec -C/econst/-/gestaltLineLevelInput -C/econst/-/gestaltLocationErr -C/econst/-/gestaltLogicalPageSize -C/econst/-/gestaltLogicalRAMSize -C/econst/-/gestaltLowMemorySize -C/econst/-/gestaltMachineIcon -C/econst/-/gestaltMacOSXQD -C/econst/-/gestaltMacOSXQDText -C/econst/-/gestaltMenuMgrAquaLayoutBit -C/econst/-/gestaltMenuMgrAquaLayoutMask -C/econst/-/gestaltMenuMgrAttr -C/econst/-/gestaltMenuMgrMoreThanFiveMenusDeepBit -C/econst/-/gestaltMenuMgrMoreThanFiveMenusDeepMask -C/econst/-/gestaltMenuMgrMultipleItemsWithCommandIDBit -C/econst/-/gestaltMenuMgrMultipleItemsWithCommandIDMask -C/econst/-/gestaltMenuMgrPresent -C/econst/-/gestaltMenuMgrPresentBit -C/econst/-/gestaltMenuMgrPresentMask -C/econst/-/gestaltMenuMgrRetainsIconRefBit -C/econst/-/gestaltMenuMgrRetainsIconRefMask -C/econst/-/gestaltMenuMgrSendsMenuBoundsToDefProcBit -C/econst/-/gestaltMenuMgrSendsMenuBoundsToDefProcMask -C/econst/-/gestaltMiscAttr -C/econst/-/gestaltMixedModeAttr -C/econst/-/gestaltMixedModeCFM68K -C/econst/-/gestaltMixedModeCFM68KHasState -C/econst/-/gestaltMixedModeCFM68KHasTrap -C/econst/-/gestaltMixedModePowerPC -C/econst/-/gestaltMixedModeVersion -C/econst/-/gestaltMMUType -C/econst/-/gestaltMPCallableAPIsAttr -C/econst/-/gestaltMPDeviceManager -C/econst/-/gestaltMPFileManager -C/econst/-/gestaltMPTrapCalls -C/econst/-/gestaltMultiChannels -C/econst/-/gestaltMustUseFCBAccessors -C/econst/-/gestaltNameRegistryVersion -C/econst/-/gestaltNativeCPUfamily -C/econst/-/gestaltNativeCPUtype -C/econst/-/gestaltNativeProcessMgrBit -C/econst/-/gestaltNativeTimeMgr -C/econst/-/gestaltNativeType1FontSupport -C/econst/-/gestaltNoFPU -C/econst/-/gestaltNoMMU -C/econst/-/gestaltNotificationMgrAttr -C/econst/-/gestaltNotificationPresent -C/econst/-/gestaltNuBusConnectors -C/econst/-/gestaltNuBusPresent -C/econst/-/gestaltOFA2available -C/econst/-/gestaltOriginalATSUVersion -C/econst/-/gestaltOriginalQD -C/econst/-/gestaltOriginalQDText -C/econst/-/gestaltOSAttr -C/econst/-/gestaltOSLInSystem -C/econst/-/gestaltOSTable -C/econst/-/gestaltOutlineFonts -C/econst/-/gestaltParityAttr -C/econst/-/gestaltParityEnabled -C/econst/-/gestaltPartialRsrcs -C/econst/-/gestaltPCXAttr -C/econst/-/gestaltPCXHas8and16BitFAT -C/econst/-/gestaltPCXHasProDOS -C/econst/-/gestaltPCXNewUI -C/econst/-/gestaltPCXUseICMapping -C/econst/-/gestaltPhysicalRAMSize -C/econst/-/gestaltPlayAndRecord -C/econst/-/gestaltPMgrCPUIdle -C/econst/-/gestaltPMgrDispatchExists -C/econst/-/gestaltPMgrExists -C/econst/-/gestaltPMgrSCC -C/econst/-/gestaltPMgrSound -C/econst/-/gestaltPMgrSupportsAVPowerStateAtSleepWake -C/econst/-/gestaltPopupAttr -C/econst/-/gestaltPopupPresent -C/econst/-/gestaltPortableSlotPresent -C/econst/-/gestaltPortADisabled -C/econst/-/gestaltPortBDisabled -C/econst/-/gestaltPowerMgrAttr -C/econst/-/gestaltPowerPC -C/econst/-/gestaltPowerPCAware -C/econst/-/gestaltPPCDragLibPresent -C/econst/-/gestaltPPCSupportsIncoming -C/econst/-/gestaltPPCSupportsIncomingAppleTalk -C/econst/-/gestaltPPCSupportsIncomingTCP_IP -C/econst/-/gestaltPPCSupportsOutGoing -C/econst/-/gestaltPPCSupportsOutgoingAppleTalk -C/econst/-/gestaltPPCSupportsOutgoingTCP_IP -C/econst/-/gestaltPPCSupportsRealTime -C/econst/-/gestaltPPCSupportsTCP_IP -C/econst/-/gestaltPPCToolboxAttr -C/econst/-/gestaltPPCToolboxPresent -C/econst/-/gestaltProcessorType -C/econst/-/gestaltQDHasLongRowBytes -C/econst/-/gestaltQDTextFeatures -C/econst/-/gestaltQDTextVersion -C/econst/-/gestaltQuickdrawFeatures -C/econst/-/gestaltQuickdrawVersion -C/econst/-/gestaltQuickTime -C/econst/-/gestaltQuickTimeConferencingInfo -C/econst/-/gestaltQuickTimeVersion -C/econst/-/gestaltRealTempMemory -C/econst/-/gestaltRealtimeMgrAttr -C/econst/-/gestaltRealtimeMgrPresent -C/econst/-/gestaltResourceMgrAttr -C/econst/-/gestaltRevisedTimeMgr -C/econst/-/gestaltROMSize -C/econst/-/gestaltROMVersion -C/econst/-/gestaltSbitFontSupport -C/econst/-/gestaltScrapMgrAttr -C/econst/-/gestaltScrapMgrTranslationAware -C/econst/-/gestaltScriptCount -C/econst/-/gestaltScriptingSupport -C/econst/-/gestaltScriptMgrVersion -C/econst/-/gestaltScrollingThrottle -C/econst/-/gestaltSE30SlotPresent -C/econst/-/gestaltSerialAttr -C/econst/-/gestaltSESlotPresent -C/econst/-/gestaltSetDragImageUpdates -C/econst/-/gestaltSheetsAreWindowModalBit -C/econst/-/gestaltSheetsAreWindowModalMask -C/econst/-/gestaltSlotAttr -C/econst/-/gestaltSlotMgrExists -C/econst/-/gestaltSndPlayDoubleBuffer -C/econst/-/gestaltSoundAttr -C/econst/-/gestaltSoundIOMgrPresent -C/econst/-/gestaltSpecificMatchSupport -C/econst/-/gestaltSpeechAttr -C/econst/-/gestaltSpeechHasPPCGlue -C/econst/-/gestaltSpeechMgrPresent -C/econst/-/gestaltSpeechRecognitionAttr -C/econst/-/gestaltSquareMenuBar -C/econst/-/gestaltStandardFile58 -C/econst/-/gestaltStandardFileAttr -C/econst/-/gestaltStandardFileHasColorIcons -C/econst/-/gestaltStandardFileHasDynamicVolumeAllocation -C/econst/-/gestaltStandardFileTranslationAware -C/econst/-/gestaltStandardFileUseGenericIcons -C/econst/-/gestaltStandardTimeMgr -C/econst/-/gestaltStdNBPAttr -C/econst/-/gestaltStdNBPPresent -C/econst/-/gestaltStdNBPSupportsAutoPosition -C/econst/-/gestaltStereoCapability -C/econst/-/gestaltStereoInput -C/econst/-/gestaltStereoMixing -C/econst/-/gestaltSupportsApplicationURL -C/econst/-/gestaltSupportsMirroring -C/econst/-/gestaltSysArchitecture -C/econst/-/gestaltSysDebuggerSupport -C/econst/-/gestaltSystemVersion -C/econst/-/gestaltSystemVersionBugFix -C/econst/-/gestaltSystemVersionMajor -C/econst/-/gestaltSystemVersionMinor -C/econst/-/gestaltSysZoneGrowable -C/econst/-/gestaltTE1 -C/econst/-/gestaltTE2 -C/econst/-/gestaltTE3 -C/econst/-/gestaltTE4 -C/econst/-/gestaltTE5 -C/econst/-/gestaltTEAttr -C/econst/-/gestaltTEHasGetHiliteRgn -C/econst/-/gestaltTEHasWhiteBackground -C/econst/-/gestaltTelephoneSpeechRecognition -C/econst/-/gestaltTempMemSupport -C/econst/-/gestaltTempMemTracked -C/econst/-/gestaltTermMgrAttr -C/econst/-/gestaltTermMgrErrorString -C/econst/-/gestaltTermMgrPresent -C/econst/-/gestaltTESupportsInlineInput -C/econst/-/gestaltTESupportsTextObjects -C/econst/-/gestaltTextEditVersion -C/econst/-/gestaltThreadMgrAttr -C/econst/-/gestaltThreadMgrPresent -C/econst/-/gestaltThreadsLibraryPresent -C/econst/-/gestaltTimeMgrVersion -C/econst/-/gestaltToolboxTable -C/econst/-/gestaltTranslationAttr -C/econst/-/gestaltTranslationGetPathAPIAvail -C/econst/-/gestaltTranslationMgrExists -C/econst/-/gestaltTranslationMgrHintOrder -C/econst/-/gestaltTranslationPPCAvail -C/econst/-/gestaltTSMgr15 -C/econst/-/gestaltTSMgr20 -C/econst/-/gestaltTSMgrVersion -C/econst/-/gestaltUndefSelectorErr -C/econst/-/gestaltUnknownErr -C/econst/-/gestaltValueImplementedVers -C/econst/-/gestaltVersion -C/econst/-/gestaltVMAttr -C/econst/-/gestaltVMFilemappingOn -C/econst/-/gestaltVMHasLockMemoryForOutput -C/econst/-/gestaltVMHasPagingControl -C/econst/-/gestaltVMPresent -C/econst/-/gestaltWindowLiveResizeBit -C/econst/-/gestaltWindowLiveResizeMask -C/econst/-/gestaltWindowMgrAttr -C/econst/-/gestaltWindowMgrPresent -C/econst/-/gestaltWindowMgrPresentBit -C/econst/-/gestaltWindowMgrPresentMask -C/econst/-/gestaltWindowMinimizeToDockBit -C/econst/-/gestaltWindowMinimizeToDockMask -C/econst/-/gestaltWSIISupport -Objective-C/instm/SBElementArray/get -Objective-C/instm/SBObject/get -C/func/-/Get1IndResource -C/func/-/Get1IndType -C/func/-/Get1NamedResource -C/func/-/Get1Resource -C/func/-/get_edata -C/func/-/get_end -C/func/-/get_etext -C/macro/-/GET_HEADER_ID_IS_NULL_TERMINATED_UNICODE_TEXT -C/func/-/get_module_node -C/func/-/get_myaddress -C/func/-/get_session_cb -C/func/-/get_wch -C/func/-/get_wstr -C++/instm/IONetworkData/getAccessTypes -C/func/-/getacdir -C/func/-/getacexpire -C/func/-/getacfilesz -C/func/-/getacflg -C/func/-/getacmin -C/func/-/getacna -C/func/-/getacpol -C++/instm/IOEventSource/getAction -JavaScript/instm/WebGLRenderingContext/getActiveAttrib -JavaScript/instm/WebGLRenderingContext/getActiveUniform -C++/instm/IOATACommand/getActualTransfer -C++/instm/IOBlockStorageDevice/getAdditionalDeviceInfoString -Objective-C/instm/IOBluetoothDevice/getAddress -C++/instm/IOUSBDevice/GetAddress -Objective-C/instm/IOBluetoothHostController/getAddress: -Objective-C/instm/IOBluetoothDevice/getAddressString -C++/instm/IOMemoryMap/getAddressTask -C/func/-/getaddrinfo -Objective-C/instm/NSFont/getAdvancements:forGlyphs:count: -Objective-C/instm/NSFont/getAdvancements:forPackedGlyphs:length: -C++/instm/IOService/getAggressiveness -C++/instm/IOAGPDevice/getAGPRangeAllocator -C++/instm/IOAGPDevice/getAGPSpace -C++/instm/IOAGPDevice/getAGPStatus -C/func/-/GetAliasInfo -C/func/-/GetAliasSize -C/func/-/GetAliasSizeFromPtr -C/func/-/GetAliasUserType -C/func/-/GetAliasUserTypeFromPtr -JavaScript/instm/XMLHttpRequest/getAllResponseHeaders -JavaScript/instm/InspectorBackend/getAllStyles -C++/instm/IOUSBInterface/GetAlternateSetting -C++/instm/IOMbufMemoryCursor/getAndResetCoalesceCount -C++/instm/OSSet/getAnyObject -C++/instm/IOFramebuffer/getApertureRange -C++/instm/IOFramebuffer/getAppleSense -C/func/-/GetApplicationDockTileMenu -C/func/-/GetApplicationScript -C/func/-/GetApplicationTextEncoding -Objective-C/instm/NSInvocation/getArgument:atIndex: -C/func/-/GetArguments -Objective-C/instm/NSMethodSignature/getArgumentTypeAtIndex: -Objective-C/instm/IOBluetoothSDPDataElement/getArrayValue -JavaScript/instm/WebGLRenderingContext/getAttribLocation -C++/instm/IOFramebuffer/getAttribute -JavaScript/instm/Element/getAttribute -Objective-C/instm/IOBluetoothSDPServiceRecord/getAttributeDataElement: -C++/instm/IOFramebuffer/getAttributeForConnection -Objective-C/instm/IOBluetoothSDPServiceAttribute/getAttributeID -JavaScript/instm/Element/getAttributeNode -JavaScript/instm/Element/getAttributeNodeNS -JavaScript/instm/Element/getAttributeNS -C++/instm/IOMedia/getAttributes -C/func/-/getattrlist -C/func/-/getauclassent -C/func/-/getauclassent_r -C/func/-/getauclassnam -C/func/-/getauclassnam_r -Objective-C/instm/IOBluetoothRFCOMMAudioController/getAudioDeviceID -Objective-C/instm/QTSampleBuffer/getAudioStreamPacketDescriptions:inRange: -C/macro/-/GetAudioUnitParameterDisplayType -C/func/-/getaudit -C/func/-/getaudit_addr -C/func/-/getauditflagsbin -C/func/-/getauditflagschar -C/func/-/getauevent -C/func/-/getauevent_r -C/func/-/getauevnam -C/func/-/getauevnam_r -C/func/-/getauevnonam -C/func/-/getauevnonam_r -C/func/-/getauevnum -C/func/-/getauevnum_r -C/func/-/getauid -C++/instm/IOInterruptEventSource/getAutoDisable -C++/instm/IOSCSIParallelInterfaceController/GetAutoSenseData -C++/instm/IOSCSIParallelInterfaceController/GetAutoSenseDataSize -C/func/-/getauuserent -C/func/-/getauuserent_r -C/func/-/getauusernam -C/func/-/getauusernam_r -Objective-C/instm/OBEXSession/getAvailableCommandPayloadLength: -Objective-C/instm/OBEXSession/getAvailableCommandResponsePayloadLength: -C++/clm/IOFireWireAVCTargetSpace/getAVCTargetSpace -C/func/-/getAwaitingAck -C++/instm/IOUSBController/GetBandwidthAvailable -C++/instm/IOMedia/getBase -JavaScript/instm/SVGLocatable/getBBox -C/func/-/getbegx -C/func/-/getbegy -C/func/-/getbegyx -C/func/-/GetBestDeviceRect -Objective-C/intfm/FxParameterRetrievalAPI/getBitmap:layerOffsetX:layerOffsetY:requestInfo:fromParm:atTime: -Objective-C/instm/NSBitmapImageRep/getBitmapDataPlanes: -C/func/-/getbkgd -C/func/-/getbkgrnd -Objective-C/instm/IOBluetoothRFCOMMAudioController/getBluetoothDevice -Objective-C/intfm/FxParameterRetrievalAPI/getBoolValue:fromParm:atTime: -JavaScript/instm/Element/getBoundingClientRect -JavaScript/instm/Range/getBoundingClientRect -Objective-C/instm/NSFont/getBoundingRects:forGlyphs:count: -C/func/-/getbsize -C++/instm/IOATABusCommand/getBuffer -C++/instm/IOATACommand/getBuffer -C++/instm/IONetworkData/getBuffer -Objective-C/instm/NSInputStream/getBuffer:length: -C/func/-/GetBufferCount -C++/instm/IOStream/getBufferCount -C++/instm/IOStreamBuffer/getBufferID -C/func/-/GetBufferInfo -JavaScript/instm/WebGLRenderingContext/getBufferParameter -C++/instm/IOStream/getBuffers -C++/instm/IONetworkData/getBufferType -C++/instm/IOStream/getBufferWithID -C++/instm/IOUSBDevice/GetBus -C/func/-/GetBusFrameNumberWithTime -C++/instm/IOPCIDevice/getBusNumber -C++/instm/IOUSBDevice/GetBusPowerAvailable -C++/instm/IOService/getBusyState -C++/instm/IOATABusCommand/getByteCount -Objective-C/instm/NSData/getBytes: -Objective-C/instm/NSData/getBytes:length: -Objective-C/instm/NSString/getBytes:maxLength:usedLength:encoding:options:range:remainingRange: -Objective-C/instm/NSData/getBytes:range: -C++/instm/OSData/getBytesNoCopy -C/func/-/getc -C/func/-/getc_unlocked -C++/instm/IOATABusCommand/getCallbackPtr -C/func/-/getcap -C++/instm/IOBasicOutputQueue/getCapacity -C++/instm/IOOutputQueue/getCapacity -C++/instm/IOPacketQueue/getCapacity -C++/instm/OSArray/getCapacity -C++/instm/OSData/getCapacity -C++/instm/OSDictionary/getCapacity -C++/instm/OSCollection/getCapacity -C++/instm/OSOrderedSet/getCapacity -C++/instm/OSSet/getCapacity -C++/instm/OSArray/getCapacityIncrement -C++/instm/OSDictionary/getCapacityIncrement -C++/instm/OSData/getCapacityIncrement -C++/instm/OSCollection/getCapacityIncrement -C++/instm/OSOrderedSet/getCapacityIncrement -C++/instm/OSSet/getCapacityIncrement -C/func/-/getcchar -Objective-C/instm/NSRunLoop/getCFRunLoop -C/func/-/getch -Objective-C/instm/IOBluetoothRFCOMMChannel/getChannelID -C++/instm/IOAudioControl/getChannelID -C/func/-/getchar -C++/instm/OSString/getChar -C/func/-/getchar_unlocked -Objective-C/instm/NSString/getCharacters: -Objective-C/instm/NSString/getCharacters:range: -JavaScript/instm/SVGTextContentElement/getCharNumAtPosition -C++/instm/IONetworkController/getChecksumDemand -C++/instm/IONetworkController/getChecksumSupport -C++/instm/IORegistryEntry/getChildEntry -C++/instm/IORegistryEntry/getChildIterator -C++/instm/IOUSBDevice/GetChildLocationID -JavaScript/instm/InspectorBackend/getChildNodes -C++/instm/OSMetaClass/getClassName -Objective-C/instm/IOBluetoothDevice/getClassOfDevice -C++/instm/OSMetaClass/getClassSize -C++/instm/IOService/getClient -C++/instm/IOService/getClientIterator -JavaScript/instm/Element/getClientRects -JavaScript/instm/Range/getClientRects -C++/instm/IOStreamBuffer/getClientReferenceCount -Objective-C/instm/IOBluetoothDevice/getClockOffset -C/func/-/GetCodecInfo -C/func/-/GetCodecNameList -Objective-C/instm/NSGradient/getColor:location:atIndex: -C++/instm/IOCommandPool/getCommand -C++/instm/IOExtendedLBA/getCommand -C++/instm/IOFireWireSBP2ORB/getCommandBufferDescriptor -C++/instm/IONetworkController/getCommandClient -C++/instm/IOSCSIParallelInterfaceController/GetCommandDescriptorBlock -C++/instm/IOSCSIParallelInterfaceController/GetCommandDescriptorBlockSize -C++/instm/IOFireWireSBP2ORB/getCommandFlags -C++/instm/IONetworkController/getCommandGate -C++/instm/IOAudioDevice/getCommandGate -C++/instm/IOAudioControl/getCommandGate -C++/instm/IOAudioEngine/getCommandGate -C++/instm/IOSCSIProtocolInterface/GetCommandGate -C++/instm/IOSCSIParallelInterfaceController/GetCommandGate -C++/instm/IOFireWireSBP2ORB/getCommandGeneration -C++/instm/IOATACommand/getCommandInUse -C++/instm/IOFireWireSBP2ORB/getCommandTimeout -C/func/-/GetComponentIconSuite -C/func/-/GetComponentIndString -C/func/-/GetComponentInfo -C/func/-/GetComponentInstanceError -C/func/-/GetComponentInstanceStorage -C/func/-/GetComponentListModSeed -C/func/-/GetComponentPublicIndString -C/func/-/GetComponentPublicResource -C/func/-/GetComponentPublicResourceList -C/func/-/GetComponentRefcon -C/func/-/GetComponentResource -Objective-C/instm/NSColor/getComponents: -C/func/-/GetComponentTypeModSeed -C/func/-/GetComponentVersion -C/func/-/GetCompressedImageSize -C/func/-/GetCompressedPixMapInfo -Objective-C/instm/NSBitmapImageRep/getCompression:factor: -C/func/-/GetCompressionTime -JavaScript/instm/DOMWindow/getComputedStyle -JavaScript/instm/InspectorBackend/getComputedStyle -JavaScript/instm/SVGTextContentElement/getComputedTextLength -C++/instm/IOUSBDevice/GetConfiguration -C++/instm/IOUSBDevice/GetConfigurationDescriptor -C++/instm/IOUSBInterface/GetConfigValue -C++/instm/IOFramebuffer/getConnectionCount -Objective-C/instm/IOBluetoothDevice/getConnectionHandle -C++/instm/IOMedia/getContent -C++/instm/IOMedia/getContentHint -C/func/-/getcontext -JavaScript/instm/HTMLCanvasElement/getContext -JavaScript/instm/WebGLRenderingContext/getContextAttributes -C/func/-/GetContextValue -C/func/-/GetControlBuffer -C++/instm/IOStreamBuffer/getControlBuffer -C/func/-/GetControlBufferLength -C++/instm/IOAudioControl/getControlID -C++/instm/IONetworkInterface/getController -Objective-C/instm/CAMediaTimingFunction/getControlPointAtIndex:values: -JavaScript/instm/InspectorBackend/getCookies -C++/instm/OSArray/getCount -C++/instm/OSCollection/getCount -C++/instm/OSDictionary/getCount -C++/instm/OSSet/getCount -C++/instm/OSOrderedSet/getCount -JavaScript/instm/CSSPrimitiveValue/getCounterValue -C/func/-/GetCSequenceDataRateParams -C/func/-/GetCSequenceFrameNumber -C/func/-/GetCSequenceKeyFrameRate -C/func/-/GetCSequenceMaxCompressionSize -C/func/-/GetCSequencePrevBuffer -JavaScript/instm/Document/getCSSCanvasContext -Objective-C/instm/NSString/getCString: -Objective-C/instm/NSString/getCString:maxLength: -Objective-C/instm/NSString/getCString:maxLength:encoding: -Objective-C/instm/NSString/getCString:maxLength:range:remainingRange: -C++/instm/OSString/getCStringNoCopy -JavaScript/instm/SVGLocatable/getCTM -C++/instm/IOFramebuffer/getCurrentDisplayMode -C++/instm/IORegistryIterator/getCurrentEntry -C/func/-/GetCurrentProcess -C++/instm/IOAudioEngine/getCurrentSampleFrame -JavaScript/instm/SVGAnimationElement/getCurrentTime -JavaScript/instm/SVGSVGElement/getCurrentTime -C/func/-/getcurx -C/func/-/getcury -Objective-C/intfm/FxParameterRetrievalAPI/getCustomParameterValue:fromParm: -C/func/-/getcwd -Objective-C/instm/NSColor/getCyan:magenta:yellow:black:alpha: -C++/instm/IOATACommand/getCylHi -C++/instm/IOATACommand/getCylLo -JavaScript/instm/Clipboard/getData -JavaScript/instm/InspectorBackend/getDatabaseTableNames -C/func/-/GetDataBrowserActiveItems -C/func/-/GetDataBrowserCallbacks -C/func/-/GetDataBrowserColumnViewDisplayType -C/func/-/GetDataBrowserColumnViewPath -C/func/-/GetDataBrowserColumnViewPathLength -C/func/-/GetDataBrowserCustomCallbacks -C/func/-/GetDataBrowserEditItem -C/func/-/GetDataBrowserEditText -C/func/-/GetDataBrowserHasScrollBars -C/func/-/GetDataBrowserItemCount -C/func/-/GetDataBrowserItemDataBooleanValue -C/func/-/GetDataBrowserItemDataButtonValue -C/func/-/GetDataBrowserItemDataDateTime -C/func/-/GetDataBrowserItemDataDrawState -C/func/-/GetDataBrowserItemDataIcon -C/func/-/GetDataBrowserItemDataIconTransform -C/func/-/GetDataBrowserItemDataItemID -C/func/-/GetDataBrowserItemDataLongDateTime -C/func/-/GetDataBrowserItemDataMaximum -C/func/-/GetDataBrowserItemDataMenuRef -C/func/-/GetDataBrowserItemDataMinimum -C/func/-/GetDataBrowserItemDataProperty -C/func/-/GetDataBrowserItemDataRGBColor -C/func/-/GetDataBrowserItemDataText -C/func/-/GetDataBrowserItemDataValue -C/func/-/GetDataBrowserItemPartBounds -C/func/-/GetDataBrowserItems -C/func/-/GetDataBrowserItemState -C/func/-/GetDataBrowserListViewDisclosureColumn -C/func/-/GetDataBrowserListViewHeaderBtnHeight -C/func/-/GetDataBrowserListViewHeaderDesc -C/func/-/GetDataBrowserListViewUsePlainBackground -C/func/-/GetDataBrowserPropertyFlags -C/func/-/GetDataBrowserScrollBarInset -C/func/-/GetDataBrowserScrollPosition -C/func/-/GetDataBrowserSelectionAnchor -C/func/-/GetDataBrowserSelectionFlags -C/func/-/GetDataBrowserSortOrder -C/func/-/GetDataBrowserSortProperty -C/func/-/GetDataBrowserTableViewColumnCount -C/func/-/GetDataBrowserTableViewColumnPosition -C/func/-/GetDataBrowserTableViewColumnProperty -C/func/-/GetDataBrowserTableViewColumnWidth -C/func/-/GetDataBrowserTableViewGeometry -C/func/-/GetDataBrowserTableViewHiliteStyle -C/func/-/GetDataBrowserTableViewItemID -C/func/-/GetDataBrowserTableViewItemRow -C/func/-/GetDataBrowserTableViewItemRowHeight -C/func/-/GetDataBrowserTableViewNamedColumnWidth -C/func/-/GetDataBrowserTableViewRowHeight -C/func/-/GetDataBrowserTarget -C/func/-/GetDataBrowserUserState -C/func/-/GetDataBrowserViewStyle -C/func/-/GetDataBuffer -C++/instm/IOStreamBuffer/getDataBuffer -C++/instm/IOSCSIParallelInterfaceController/GetDataBuffer -C/func/-/GetDataBufferLength -C++/instm/IOSCSIParallelInterfaceController/GetDataBufferOffset -Objective-C/instm/IOBluetoothSDPServiceAttribute/getDataElement -C/func/-/GetDataHandler -C++/instm/IOSCSIParallelInterfaceController/GetDataTransferDirection -Objective-C/instm/IOBluetoothSDPDataElement/getDataValue -C/func/-/getdate -C++/instm/IOFramebuffer/getDDCBlock -C++/instm/IORegistryEntry/getDepth -Objective-C/instm/IOBluetoothServiceBrowserController/getDescriptionText -Objective-C/instm/IOBluetoothPairingController/getDescriptionText -Objective-C/instm/IOBluetoothDeviceSelectorController/getDescriptionText -C/func/-/getDesiredDomainState -Objective-C/instm/IOBluetoothObjectPushUIController/getDevice -Objective-C/instm/IOBluetoothOBEXSession/getDevice -Objective-C/instm/IOBluetoothL2CAPChannel/getDevice -Objective-C/instm/IOBluetoothRFCOMMChannel/getDevice -C++/instm/IOExtendedLBA/getDevice -C++/instm/IOFireWireAVCNub/getDevice -C++/instm/IOUSBInterface/GetDevice -C++/instm/IOATACommand/getDevice_Head -Objective-C/instm/IOBluetoothDevice/getDeviceClassMajor -Objective-C/instm/IOBluetoothDevice/getDeviceClassMinor -C++/instm/ATADeviceNub/getDeviceID -C++/instm/IOUSBDevice/GetDeviceInformation -C++/instm/IOService/getDeviceMemory -C++/instm/IOService/getDeviceMemoryCount -C++/instm/IOService/getDeviceMemoryWithIndex -C++/instm/IOPCIDevice/getDeviceMemoryWithRegister -C++/instm/IOPCIDevice/getDeviceNumber -Objective-C/instm/IOBluetoothDevice/getDeviceRef -C++/instm/IOUSBDevice/GetDeviceRelease -Objective-C/instm/IOBluetoothDeviceSelectorController/getDeviceSelectorControllerRef -C++/instm/IOUSBDevice/GetDeviceStatus -Objective-C/instm/IOBluetoothHandsFreeGateway/getDeviceSupportedFeatures -C++/instm/IOATADevice/getDeviceType -C++/instm/IOBlockStorageDriver/getDeviceTypeName -C++/instm/IOMemoryDescriptor/getDirection -C++/instm/IOUSBPipe/GetDirection -C/func/-/getdirentries -C/func/-/getdirentriesattr -C++/instm/IOFramebuffer/getDisplayModeCount -C++/instm/IOFramebuffer/getDisplayModes -Objective-C/instm/CLLocation/getDistanceFrom: -C++/instm/IOFWPhysicalAddressSpace/getDMACommand -C++/instm/IOSCSIParallelInterfaceController/GetDMACommand -C++/instm/IOATADevConfig/getDMACycleTime -C++/instm/IOATADevConfig/getDMAMode -C++/instm/IOATABusInfo/getDMAModes -C/func/-/getdomainname -JavaScript/instm/InspectorBackend/getDOMStorageEntries -C++/instm/IOBasicOutputQueue/getDropCount -C/func/-/GetDSequenceImageBuffer -C/func/-/GetDSequenceMatrix -C/func/-/GetDSequenceNonScheduledDisplayDirection -C/func/-/GetDSequenceNonScheduledDisplayTime -C/func/-/GetDSequenceScreenBuffer -C/func/-/getdtablesize -C/func/-/GetEffectStatus -C/func/-/getegid -JavaScript/instm/Document/getElementById -JavaScript/instm/Document/getElementsByClassName -JavaScript/instm/Element/getElementsByClassName -JavaScript/instm/Document/getElementsByName -JavaScript/instm/Document/getElementsByTagName -JavaScript/instm/Element/getElementsByTagName -JavaScript/instm/Document/getElementsByTagNameNS -JavaScript/instm/Element/getElementsByTagNameNS -JavaScript/instm/SVGSVGElement/getEnclosureList -Objective-C/instm/IOBluetoothDevice/getEncryptionMode -C++/instm/IOATACommand/getEndErrorReg -C++/instm/IOUSBPipe/GetEndpoint -C++/instm/IOUSBPipe/GetEndpointDescriptor -C++/instm/IOUSBPipe/GetEndpointNumber -C++/instm/IOUSBInterface/GetEndpointProperties -JavaScript/instm/SVGTextContentElement/getEndPositionOfChar -C++/instm/IOATACommand/getEndStatusReg -C/tdef/-/getEntitySAXFunc -C/func/-/getenv -C/func/-/GetEOF -JavaScript/instm/WebGLRenderingContext/getError -C++/instm/IOATACommand/getErrorReg -C/func/-/geteuid -JavaScript/instm/InspectorBackend/getEventListenersForNode -C++/instm/IOExtendedLBA/getExtendedLBA -JavaScript/instm/SVGTextContentElement/getExtentOfChar -C++/instm/IONetworkInterface/getExtraFlags -C++/instm/IOUSBDevice/GetExtraPowerAllocated -C/func/-/getfauditflags -C++/instm/IONetworkController/getFeatures -C++/instm/IOExtendedLBA/getFeatures16 -C/func/-/getfh -Objective-C/instm/NSWorkspace/getFileSystemInfoForPath:isRemovable:isWritable:isUnmountable:description:type: -Objective-C/instm/NSString/getFileSystemRepresentation:maxLength: -C++/instm/IOFilterInterruptEventSource/getFilterAction -C++/instm/OSOrderedSet/getFirstObject -Objective-C/instm/NSLayoutManager/getFirstUnlaidCharacterIndex:glyphIndex: -C++/instm/IONetworkInterface/getFlags -C++/instm/IONetworkMedium/getFlags -C++/instm/IOATABusCommand/getFlags -C++/instm/IOFWAsyncStreamListener/getFlags -JavaScript/instm/CSSPrimitiveValue/getFloatValue -Objective-C/intfm/FxParameterRetrievalAPI/getFloatValue:fromParm:atTime: -C/func/-/GetForceFeedbackCapabilities -C/func/-/GetForceFeedbackState -C++/instm/IOBlockStorageDriver/getFormatCapacities -C/func/-/GetFPos -C++/instm/IORangeAllocator/getFragmentCapacity -C++/instm/IORangeAllocator/getFragmentCount -JavaScript/instm/WebGLRenderingContext/getFramebufferAttachmentParameter -C++/instm/IOUSBController/GetFrameNumber -C++/instm/IOUSBController/GetFrameNumber32 -C++/instm/IOUSBControllerV2/GetFrameNumberWithTime -C++/instm/IORangeAllocator/getFreeCount -C/func/-/GetFrontProcess -C/func/-/getfsent -C/func/-/getfsfile -C/func/-/getfsspec -C/func/-/getfsstat -C/func/-/getfsstat64 -C/func/-/getfstype -C++/instm/IOUSBDevice/GetFullConfigurationDescriptor -C++/instm/IOPCIDevice/getFunctionNumber -Objective-C/instm/IOBluetoothHandsFreeGateway/getGatewaySupportedFeatures -C++/instm/IOCatalogue/getGenerationCount -C++/clm/IORegistryEntry/getGenerationCount -C/func/-/getgid -Objective-C/instm/NSLayoutManager/getGlyphs:range: -Objective-C/instm/NSATSTypesetter/getGlyphsInRange:glyphs:characterIndexes:glyphInscriptions:elasticBits: -Objective-C/instm/NSLayoutManager/getGlyphsInRange:glyphs:characterIndexes:glyphInscriptions:elasticBits: -Objective-C/instm/NSLayoutManager/getGlyphsInRange:glyphs:characterIndexes:glyphInscriptions:elasticBits:bidiLevels: -Objective-C/instm/NSTypesetter/getGlyphsInRange:glyphs:characterIndexes:glyphInscriptions:elasticBits:bidiLevels: -Objective-C/intfm/FxOptionalParameterRetrievalAPI/getGradientSamples:numSamples:depth:fromParm:atTime: -C/func/-/GetGraphicsImporterForDataRef -C/func/-/GetGraphicsImporterForDataRefWithFlags -C/func/-/GetGraphicsImporterForFile -C/func/-/GetGraphicsImporterForFileWithFlags -C/func/-/getgrent -C/func/-/getgrgid -C/func/-/getgrgid_r -C/func/-/getgrnam -C/func/-/getgrnam_r -C/func/-/getgrouplist -C/func/-/getgroups -C++/instm/IOEthernetController/getHardwareAddress -C++/instm/IONetworkController/getHardwareAddress -C++/instm/IOSCSIParallelInterfaceController/GetHBADataDescriptor -C++/instm/IOSCSIParallelInterfaceController/GetHBADataPointer -C++/instm/IOSCSIParallelInterfaceController/GetHBADataSize -C++/instm/IOSCSIParallelInterfaceController/GetHBATargetDataPointer -C++/instm/IOSCSIParallelInterfaceController/GetHBATargetDataSize -C/func/-/GetHintValue -Objective-C/intfm/FxOptionalParameterRetrievalAPI/getHistogramBlackIn:BlackOut:WhiteIn:WhiteOut:Gamma:forChannel:fromParm:atTime: -C/func/-/gethostbyaddr -C/func/-/gethostbyname -C/func/-/gethostbyname2 -C/func/-/gethostent -C/func/-/gethostid -C/func/-/gethostname -C/func/-/gethostuuid -C++/instm/IOUSBHubDevice/GetHubCharacteristics -C++/instm/IOUSBDevice/GetHubParent -Objective-C/instm/NSColor/getHue:saturation:brightness:alpha: -Objective-C/instm/IOBluetoothSDPServiceAttribute/getIDDataElement -C/func/-/getifaddrs -C++/instm/IONetworkInterface/getIfnet -JavaScript/instm/CanvasRenderingContext2D/getImageData -C/func/-/GetImageDescriptionCTable -C/func/-/GetImageDescriptionExtension -C/tdef/-/GetImageSpaceProcPtr -Objective-C/instm/IOBluetoothL2CAPChannel/getIncomingMTU -Objective-C/instm/IOBluetoothRFCOMMAudioController/getIncomingRFCOMMChannelID -C++/instm/IONetworkMedium/getIndex -C++/instm/IOConfigDirectory/getIndexEntry -Objective-C/instm/NSIndexPath/getIndexes: -Objective-C/instm/NSIndexSet/getIndexes:maxCount:inIndexRange: -C++/instm/IOConfigDirectory/getIndexKey -C++/instm/IOConfigDirectory/getIndexType -C++/instm/IOConfigDirectory/getIndexValue -C/tdef/-/GetIndImageProfileProcPtr -C/func/-/GetIndResource -C/func/-/GetIndType -C/func/-/GetIndVoice -Objective-C/instm/NSWorkspace/getInfoForFile:application:type: -C++/instm/IOFramebuffer/getInformationForDisplayMode -C++/instm/IOSCSIProtocolInterface/GetInitialPowerState -JavaScript/instm/InspectorBackend/getInlineStyle -Objective-C/intfm/FxTemporalImageAPI/getInputBitmap:withInfo:atTime: -C/func/-/GetInputPort -C++/instm/IOStream/getInputPort -C/func/-/GetInputQueue -C++/instm/IOStream/getInputQueue -C++/instm/IOStream/getInputQueueMemoryDescriptor -Objective-C/instm/NSNetService/getInputStream:outputStream: -Objective-C/intfm/FxTemporalImageAPI/getInputTexture:withInfo:atTime: -C++/instm/OSMetaClass/getInstanceCount -C++/instm/IOUSBInterface/GetInterfaceClass -C++/instm/IOUSBInterface/GetInterfaceNumber -C++/instm/IOUSBInterface/GetInterfaceProtocol -C++/instm/IONetworkInterface/getInterfaceState -C++/instm/IOUSBInterface/GetInterfaceStringIndex -C++/instm/IOUSBInterface/GetInterfaceSubClass -C++/instm/IONetworkInterface/getInterfaceType -C++/instm/IOService/getInterruptType -JavaScript/instm/SVGSVGElement/getIntersectionList -C++/instm/IOInterruptEventSource/getIntIndex -Objective-C/intfm/FxParameterRetrievalAPI/getIntValue:fromParm:atTime: -C/func/-/getiopolicy_np -C/func/-/getipnodebyaddr -C/func/-/getipnodebyname -C++/instm/IOAudioControl/getIsStarted -JavaScript/instm/SVGLengthList/getItem -JavaScript/instm/SVGNumberList/getItem -JavaScript/instm/Storage/getItem -JavaScript/instm/SVGTransformList/getItem -JavaScript/instm/SVGStringList/getItem -JavaScript/instm/SVGPointList/getItem -JavaScript/instm/SVGPathSegList/getItem -C/func/-/getitimer -C++/instm/IONetworkMedium/getKey -C++/instm/IONetworkData/getKey -C++/instm/IOConfigDirectory/getKeySubdirectories -C++/instm/IOConfigDirectory/getKeyType -C++/instm/IOConfigDirectory/getKeyValue -C++/instm/OSMetaClass/getKmodName -Objective-C/instm/IOBluetoothL2CAPChannel/getL2CAPChannelRef -Objective-C/instm/IOBluetoothSDPServiceRecord/getL2CAPPSM: -Objective-C/instm/IOBluetoothDevice/getLastInquiryUpdate -C/func/-/getlastlogx -C/func/-/getlastlogxbyname -Objective-C/instm/IOBluetoothDevice/getLastNameUpdate -C++/instm/OSArray/getLastObject -C++/instm/OSOrderedSet/getLastObject -Objective-C/instm/IOBluetoothDevice/getLastServicesUpdate -Objective-C/intfm/FxLayerInfoAPI/getLayerGlobalOffsetX:OffsetY:atTime: -C++/instm/IOExtendedLBA/getLBAHigh16 -C++/instm/IOExtendedLBA/getLBALow16 -C++/instm/IOExtendedLBA/getLBAMid16 -C/func/-/getlcid -C++/instm/IOFWPhysicalAddressSpace/getLength -C++/instm/IOMemoryDescriptor/getLength -C++/instm/IOMemoryMap/getLength -C++/instm/OSData/getLength -C++/instm/OSString/getLength -Objective-C/instm/NSBezierPath/getLineDash:count:phase: -Objective-C/instm/NSLayoutManager/getLineFragmentInsertionPointsForCharacterAtIndex:alternatePositions:inDisplayOrder:positions:characterIndexes: -Objective-C/instm/NSATSTypesetter/getLineFragmentRect:usedRect:forParagraphSeparatorGlyphRange:atProposedOrigin: -Objective-C/instm/NSTypesetter/getLineFragmentRect:usedRect:forParagraphSeparatorGlyphRange:atProposedOrigin: -Objective-C/instm/NSTypesetter/getLineFragmentRect:usedRect:remainingRect:forStartingGlyphAtIndex:proposedRect:lineSpacing:paragraphSpacingBefore:paragraphSpacingAfter: -Objective-C/instm/NSString/getLineStart:end:contentsEnd:forRange: -Objective-C/instm/IOBluetoothDevice/getLinkType -C/func/-/getloadavg -Objective-C/instm/IOBluetoothL2CAPChannel/getLocalChannelID -C++/instm/IORegistryEntry/getLocation -C++/instm/IOSCSIParallelInterfaceController/GetLogicalUnitNumber -C/func/-/getlogin -C++/instm/IOFireWireSBP2ORB/getLogin -C++/instm/IOUSBControllerV2/GetLowLatencyOptionsAndPhysicalMask -C++/instm/IOUSBDevice/GetManufacturerStringIndex -C++/instm/IOMemoryMap/getMapOptions -JavaScript/instm/DOMWindow/getMatchedCSSRules -C++/clm/IOService/getMatchingServices -C/func/-/GetMatrixType -C/func/-/GetMaxCompressionSize -Objective-C/instm/OBEXSession/getMaxPacketLength -C++/instm/IONetworkController/getMaxPacketSize -C++/instm/IOEthernetController/getMaxPacketSize -C++/instm/IOUSBDevice/GetMaxPacketSize -C++/instm/IOFireWireSBP2ORB/getMaxPayloadSize -C++/instm/IOUSBHubDevice/GetMaxProvidedPower -C/func/-/GetMaxResourceSize -C++/instm/IONetworkInterface/getMaxTransferUnit -C/func/-/getmaxx -C/func/-/getmaxy -C/func/-/getmaxyx -C++/instm/IONetworkInterface/getMediaAddressLength -C/func/-/GetMediaAdvanceDecodeTime -C++/instm/IOBlockStorageDriver/getMediaBlockSize -C/func/-/GetMediaCreationTime -C/func/-/GetMediaDataHandler -C/func/-/GetMediaDataHandlerDescription -C/func/-/GetMediaDataSize -C/func/-/GetMediaDataSize64 -C/func/-/GetMediaDataSizeTime64 -C/func/-/GetMediaDecodeDuration -C/func/-/GetMediaDisplayDuration -C/func/-/GetMediaDisplayEndTime -C/func/-/GetMediaDisplayStartTime -C/func/-/GetMediaDuration -C/func/-/GetMediaHandler -C/func/-/GetMediaHandlerDescription -C++/instm/IONetworkInterface/getMediaHeaderLength -C/func/-/GetMediaInputMap -C/func/-/GetMediaLanguage -C/func/-/GetMediaModificationTime -C/func/-/GetMediaPreferredChunkSize -C/func/-/GetMediaQuality -C/func/-/GetMediaSample -C/func/-/GetMediaSample2 -C/func/-/GetMediaSampleCount -C/func/-/GetMediaSampleDescription -C/func/-/GetMediaSampleDescriptionCount -C/func/-/GetMediaSampleReference -C/func/-/GetMediaSampleReferences -C/func/-/GetMediaSampleReferences64 -C/func/-/GetMediaShadowSync -C++/instm/IOBlockStorageDriver/getMediaState -C/func/-/GetMediaSyncSampleCount -C/func/-/GetMediaTimeScale -C/func/-/GetMediaTrack -C/func/-/GetMediaUserData -C++/instm/IONetworkController/getMediumDictionary -C++/clm/IONetworkMedium/getMediumWithIndex -C++/clm/IONetworkMedium/getMediumWithType -C++/instm/IODMACommand/getMemoryDescriptor -C++/instm/IODataQueue/getMemoryDescriptor -C++/instm/IOMemoryMap/getMemoryDescriptor -C++/instm/IOFWPhysicalAddressSpace/getMemoryDescriptor -C++/instm/IOSharedDataQueue/getMemoryDescriptor -C++/instm/IOHIDDevice/getMemoryWithCurrentElementValues -C++/instm/OSMetaClassBase/getMetaClass -C++/clm/OSMetaClass/getMetaClassWithName -C++/instm/IONetworkController/getMinPacketSize -C++/instm/IOEthernetController/getMinPacketSize -C/tdef/-/GetMissingComponentResourceProcPtr -C/tdef/-/GetMissingComponentResourceUPP -C/func/-/getmntinfo -C/func/-/getmntinfo64 -C/func/-/GetMode -C/func/-/getmode -C/func/-/GetMode() -JavaScript/instm/KeyboardEvent/getModifierState -C/func/-/getmouse -C/func/-/GetMovieDataSize -C/func/-/GetMovieDataSize64 -C/func/-/GetMovieImporterForDataRef -C/func/-/GetMovieIndTrack -C/func/-/GetMovieIndTrackType -C/func/-/GetMovieTrack -C/func/-/GetMovieTrackCount -Objective-C/instm/IOBluetoothRFCOMMChannel/getMTU -C/func/-/getn_wstr -C++/instm/IONetworkMedium/getName -C++/instm/IORegistryEntry/getName -JavaScript/instm/NamedNodeMap/getNamedItem -JavaScript/instm/NamedNodeMap/getNamedItemNS -C/func/-/GetNamedResource -C/func/-/GetNameFromSoundBank -C/func/-/getnameinfo -C++/instm/IOEthernetInterface/getNamePrefix -C++/instm/IONetworkInterface/getNamePrefix -C/func/-/getnetbyaddr -C/func/-/getnetbyname -C/func/-/getnetent -C/func/-/getnetgrent -C++/instm/IONetworkInterface/getNetworkData -C++/instm/IONetworkUserClient/getNetworkDataCapacity -C++/instm/IONetworkUserClient/getNetworkDataHandle -C++/instm/IOEventSource/getNext -C/func/-/GetNextFOND -C/func/-/GetNextImageDescriptionExtensionType -C++/instm/OSArray/getNextIndexOfObject -C++/instm/IORegistryIterator/getNextObject -C++/instm/OSIterator/getNextObject -C++/instm/OSCollectionIterator/getNextObject -C++/instm/IORegistryIterator/getNextObjectFlat -C++/instm/OSCollection/getNextObjectForIterator -C++/instm/IORegistryIterator/getNextObjectRecursive -C/func/-/GetNextProcess -C/func/-/GetNextResourceFile -C/func/-/GetNextTrackReferenceType -C++/instm/IOFireWireDevice/getNodeFlags -C++/instm/IONetworkData/getNotificationAction -C++/instm/IONetworkData/getNotificationParameter -C++/instm/IONetworkData/getNotificationTarget -C/func/-/getnstr -JavaScript/instm/SVGTextContentElement/getNumberOfChars -Objective-C/instm/NSMatrix/getNumberOfRows:columns: -Objective-C/instm/IOBluetoothSDPDataElement/getNumberValue -C++/instm/IOUSBDevice/GetNumConfigurations -C++/instm/IOUSBInterface/GetNumEndpoints -C++/instm/OSArray/getObject -C++/instm/OSDictionary/getObject -C++/instm/OSOrderedSet/getObject -Objective-C/instm/IOBluetoothL2CAPChannel/getObjectID -Objective-C/instm/IOBluetoothRFCOMMChannel/getObjectID -Objective-C/instm/NSArray/getObjects: -Objective-C/instm/NSDictionary/getObjects:andKeys: -Objective-C/instm/NSArray/getObjects:range: -Objective-C/instm/NSFormatter/getObjectValue:forString:errorDescription: -Objective-C/instm/NSDateFormatter/getObjectValue:forString:range:error: -Objective-C/instm/NSNumberFormatter/getObjectValue:forString:range:error: -C++/instm/IOATABusCommand/getOpcode -C++/instm/IOService/getOpenClientIterator -Objective-C/instm/NSObject/getOpenGLBufferContext:pixelFormat: -C++/instm/IOService/getOpenProviderIterator -C/func/-/getopt -C/func/-/getopt_long -C/func/-/getopt_long_only -Objective-C/instm/IOBluetoothPairingController/getOptions -Objective-C/instm/IOBluetoothServiceBrowserController/getOptions -Objective-C/instm/IOBluetoothDeviceSelectorController/getOptions -C++/instm/IOFireWireSBP2ORB/getORBAddress -C++/instm/OSOrderedSet/getOrderingRef -Objective-C/instm/IOBluetoothL2CAPChannel/getOutgoingMTU -Objective-C/instm/IOBluetoothRFCOMMAudioController/getOutgoingRFCOMMChannelID -C++/instm/IOBasicOutputQueue/getOutputCount -C++/instm/IONetworkController/getOutputHandler -C++/instm/IOOutputQueue/getOutputHandler -C/func/-/GetOutputPort -C++/instm/IOStream/getOutputPort -C++/instm/IONetworkController/getOutputQueue -C/func/-/GetOutputQueue -C++/instm/IOStream/getOutputQueue -C++/instm/IOStream/getOutputQueueMemoryDescriptor -Objective-C/intfm/FxFilter/getOutputWidth:height:withInput:withInfo: -Objective-C/intfm/FxTransition/getOutputWidth:height:withInputA:withInputB:withTimeFraction:withInfo: -JavaScript/instm/Document/getOverrideStyle -C++/instm/IOFWAsyncStreamListener/getOverrunCounter -C++/instm/IONetworkController/getPacketBufferConstraints -C++/instm/IOATADevConfig/getPacketConfig -C++/instm/IOATABusCommand/getPacketData -C++/instm/IONetworkController/getPacketFilters -C++/instm/IOEthernetController/getPacketFilters -C++/instm/IOATABusCommand/getPacketSize -Objective-C/instm/IOBluetoothDevice/getPageScanMode -Objective-C/instm/IOBluetoothDevice/getPageScanPeriodMode -Objective-C/instm/IOBluetoothDevice/getPageScanRepetitionMode -C/func/-/getpagesize -Objective-C/instm/IOBluetoothPairingController/getPairingControllerRef -Objective-C/instm/NSString/getParagraphStart:end:contentsEnd:forRange: -JavaScript/instm/WebGLRenderingContext/getParameter -JavaScript/instm/XSLTProcessor/getParameter -C/tdef/-/getParameterEntitySAXFunc -Objective-C/intfm/FxParameterRetrievalAPI/getParameterFlags:fromParm: -C++/instm/IORegistryEntry/getParentEntry -C++/instm/IORegistryEntry/getParentIterator -C/func/-/getparx -C/func/-/getpary -C/func/-/getparyx -C/func/-/getpass -C++/instm/IORegistryEntry/getPath -C++/instm/IORegistryEntry/getPathComponent -JavaScript/instm/SVGPathElement/getPathSegAtLength -C++/clm/IOFireWirePCRSpace/getPCRAddressSpace -C/func/-/getpeereid -C/func/-/getpeername -C++/instm/IOAudioDevice/getPendingPowerState -Objective-C/instm/NSButton/getPeriodicDelay:interval: -Objective-C/instm/NSButtonCell/getPeriodicDelay:interval: -Objective-C/instm/NSCell/getPeriodicDelay:interval: -C/func/-/getpgid -C/func/-/getpgrp -C++/instm/IOMemoryMap/getPhysicalAddress -C++/instm/IOMemoryDescriptor/getPhysicalAddress -C++/instm/IOInterleavedMemoryDescriptor/getPhysicalSegment -C++/instm/IOMemoryDescriptor/getPhysicalSegment -C++/instm/IOMemoryMap/getPhysicalSegment -C++/instm/IOMultiMemoryDescriptor/getPhysicalSegment -C++/instm/IOLittleMemoryCursor/getPhysicalSegments -C++/instm/IOMbufNaturalMemoryCursor/getPhysicalSegments -C++/instm/IOMbufDBDMAMemoryCursor/getPhysicalSegments -C++/instm/IOMbufBigMemoryCursor/getPhysicalSegments -C++/instm/IODBDMAMemoryCursor/getPhysicalSegments -C++/instm/IOMbufLittleMemoryCursor/getPhysicalSegments -C++/instm/IOBigMemoryCursor/getPhysicalSegments -C++/instm/IONaturalMemoryCursor/getPhysicalSegments -C++/instm/IOMbufLittleMemoryCursor/getPhysicalSegmentsWithCoalesce -C++/instm/IOMbufBigMemoryCursor/getPhysicalSegmentsWithCoalesce -C++/instm/IOMbufDBDMAMemoryCursor/getPhysicalSegmentsWithCoalesce -C++/instm/IOMbufNaturalMemoryCursor/getPhysicalSegmentsWithCoalesce -C/func/-/GetPictureFileHeader -C/func/-/getpid -C++/instm/IOATADevConfig/getPIOCycleTime -C++/instm/IOATADevConfig/getPIOMode -C++/instm/IOATABusInfo/getPIOModes -C++/instm/IOUSBInterface/GetPipeObj -C++/instm/IOUSBPipe/GetPipeStatus -C++/instm/IOUSBDevice/GetPipeZero -Objective-C/instm/NSBitmapImageRep/getPixel:atX:y: -Objective-C/instm/NSObject/getPixelBufferPixelFormat: -C++/instm/IOFramebuffer/getPixelFormats -C++/instm/IOFramebuffer/getPixelFormatsForDisplayMode -C++/instm/IOFramebuffer/getPixelInformation -C++/clm/IORegistryEntry/getPlane -C++/clm/IOService/getPlatform -C++/clm/IOService/getPMRootDomain -C++/instm/IOService/getPMworkloop -JavaScript/instm/SVGPathElement/getPointAtLength -C++/instm/IOUSBHubDevice/GetPolicyMaker -C++/instm/IOATABusCommand/getPosition -C++/instm/IOAudioDevice/getPowerState -C++/instm/IOService/getPowerState -C/func/-/getppid -C++/instm/IOMedia/getPreferredBlockSize -C++/instm/IODMACommand/getPreparedOffsetAndLength -JavaScript/instm/SVGStylable/getPresentationAttribute -C/func/-/getPreventIdleSleepFlag -C/func/-/getPreventSystemSleepFlag -C/func/-/getpriority -C/func/-/GetProcessBundleLocation -C/func/-/GetProcessForPID -C/func/-/GetProcessInformation -C/func/-/GetProcessPID -C++/instm/IOUSBDevice/GetProductID -C++/instm/IOBlockStorageDevice/getProductString -C++/instm/IOUSBDevice/GetProductStringIndex -JavaScript/instm/InspectorBackend/getProfile -JavaScript/instm/InspectorBackend/getProfileHeaders -C/func/-/getprogname -JavaScript/instm/WebGLRenderingContext/getProgramInfoLog -JavaScript/instm/WebGLRenderingContext/getProgramParameter -Objective-C/instm/IOBluetoothDeviceSelectorController/getPrompt -Objective-C/instm/IOBluetoothPairingController/getPrompt -Objective-C/instm/IOBluetoothServiceBrowserController/getPrompt -C++/instm/IORegistryEntry/getProperty -JavaScript/instm/CSSStyleDeclaration/getPropertyCSSValue -JavaScript/instm/CSSStyleDeclaration/getPropertyPriority -JavaScript/instm/CSSStyleDeclaration/getPropertyShorthand -C++/instm/IORegistryEntry/getPropertyTable -JavaScript/instm/CSSStyleDeclaration/getPropertyValue -C/func/-/getprotobyname -C/func/-/getprotobynumber -C/func/-/getprotoent -C++/instm/IOInterruptEventSource/getProvider -C++/instm/IOSCSIParallelInterfaceController/GetProvider -C++/instm/IOService/getProvider -C++/instm/IOService/getProviderIterator -Objective-C/instm/IOBluetoothL2CAPChannel/getPSM -C/func/-/getpwent -C/func/-/getpwnam -C/func/-/getpwnam_r -C/func/-/getpwuid -C/func/-/getpwuid_r -JavaScript/instm/DOMSelection/getRangeAt -C/func/-/getReadyFlag -C++/instm/IOSCSIParallelInterfaceController/GetRealizedDataTransferCount -C++/instm/IOFWAsyncStreamListener/getReceiver -Objective-C/instm/NSView/getRectsBeingDrawn:count: -Objective-C/instm/NSView/getRectsExposedDuringLiveResize:count: -JavaScript/instm/CSSPrimitiveValue/getRectValue -Objective-C/instm/NSColor/getRed:green:blue:alpha: -Objective-C/intfm/FxParameterRetrievalAPI/getRedValue:GreenValue:BlueValue:AlphaValue:fromParm:atTime: -Objective-C/intfm/FxParameterRetrievalAPI/getRedValue:GreenValue:BlueValue:fromParm:atTime: -C++/instm/IOFireWireSBP2ORB/getRefCon -C++/instm/IOFWAsyncStreamListener/getRefCon -C++/instm/IOFireWireSBP2ORB/getRefCon64 -C++/instm/IORegistryEntry/getRegistryEntryID -C++/clm/IORegistryEntry/getRegistryRoot -C++/instm/IOATABusCommand/getRegMask -Objective-C/instm/IOBluetoothL2CAPChannel/getRemoteChannelID -JavaScript/instm/WebGLRenderingContext/getRenderbufferParameter -C++/instm/IOHIDDevice/getReport -C++/instm/IOSCSIParallelInterfaceController/GetRequestedDataTransferCount -Objective-C/clm/IOBluetoothHeadsetDevice/getRequiredSDPRFCOMMChannelIDForDevice: -Objective-C/clm/IOBluetoothHandsFreeGateway/getRequiredSDPRFCOMMChannelIDForDevice: -Objective-C/clm/IOBluetoothHeadsetDevice/getRequiredSDPServiceRecordForDevice: -Objective-C/clm/IOBluetoothHandsFreeGateway/getRequiredSDPServiceRecordForDevice: -C/func/-/GetResAttrs -C/func/-/GetResFileAttrs -C/func/-/GetResInfo -C/func/-/GetResource -JavaScript/instm/InspectorBackend/getResourceContent -C++/instm/IOService/getResources -C++/clm/IOService/getResourceService -C/func/-/GetResourceSizeOnDisk -Objective-C/instm/NSURL/getResourceValue:forKey:error: -JavaScript/instm/XMLHttpRequest/getResponseHeader -C++/instm/IOATACommand/getResult -Objective-C/instm/IOBluetoothDeviceSelectorController/getResults -Objective-C/instm/IOBluetoothPairingController/getResults -Objective-C/instm/IOBluetoothServiceBrowserController/getResults -C++/instm/OSMetaClassBase/getRetainCount -C++/instm/OSObject/getRetainCount -C++/instm/OSMetaClass/getRetainCount -C++/instm/IOBasicOutputQueue/getRetryCount -Objective-C/instm/NSInvocation/getReturnValue: -C++/instm/IOBlockStorageDevice/getRevisionString -Objective-C/instm/IOBluetoothOBEXSession/getRFCOMMChannel -Objective-C/instm/IOBluetoothSDPServiceRecord/getRFCOMMChannelID: -Objective-C/instm/IOBluetoothRFCOMMChannel/getRFCOMMChannelRef -JavaScript/instm/CSSPrimitiveValue/getRGBColorValue -C/func/-/getrlimit -C++/instm/IOUSBController/GetRootHubConfDescriptor -C++/instm/IOUSBController/GetRootHubDescriptor -C++/instm/IOUSBController/GetRootHubDeviceDescriptor -C++/instm/IOUSBController/GetRootHubPortState -C++/instm/IOUSBController/GetRootHubPortStatus -C++/instm/IOUSBController/GetRootHubStatus -JavaScript/instm/SVGTextContentElement/getRotationOfChar -Objective-C/instm/NSMatrix/getRow:column:forPoint: -Objective-C/instm/NSBrowser/getRow:column:forPoint: -Objective-C/instm/NSMatrix/getRow:column:ofCell: -C/func/-/getrpcbyname -C/func/-/getrpcbynumber -C/func/-/getrpcent -C/func/-/getrpcport -C++/instm/IOAudioEngine/getRunEraseHead -C/func/-/GetRunLoopSource -C/func/-/getrusage -C/func/-/gets -C++/instm/IOAudioEngine/getSampleRate -JavaScript/instm/SVGLocatable/getScreenCTM -C++/instm/IOSCSIParallelInterfaceController/GetSCSIDomainIdentifier -C++/instm/IOSCSIParallelInterfaceController/GetSCSIParallelFeatureNegotiation -C++/instm/IOSCSIParallelInterfaceController/GetSCSIParallelFeatureNegotiationCount -C++/instm/IOSCSIParallelInterfaceController/GetSCSIParallelFeatureNegotiationResult -C++/instm/IOSCSIParallelInterfaceController/GetSCSIParallelFeatureNegotiationResultCount -C++/instm/IOSCSIParallelInterfaceController/GetSCSIParallelTask -C++/instm/IOSCSIParallelInterfaceController/GetSCSITaskIdentifier -Objective-C/instm/IOBluetoothSDPDataElement/getSDPDataElementRef -Objective-C/instm/IOBluetoothSDPServiceRecord/getSDPServiceRecordRef -Objective-C/instm/IOBluetoothSDPUUID/getSDPUUIDRef -Objective-C/instm/IOBluetoothDeviceSelectorController/getSearchAttributes -Objective-C/instm/IOBluetoothPairingController/getSearchAttributes -Objective-C/instm/IOBluetoothServiceBrowserController/getSearchAttributes -C/func/-/getsectbyname -C/func/-/getsectbynamefromheader -C/func/-/getsectbynamefromheader_64 -C/func/-/getsectdata -C/func/-/getsectdatafromFramework -C/func/-/getsectdatafromheader -C/func/-/getsectdatafromheader_64 -C++/instm/IOATACommand/getSectorCount -C++/instm/IOExtendedLBA/getSectorCount16 -C++/instm/IOATACommand/getSectorNumber -C/func/-/getsegbyname -C++/instm/IOFWPhysicalAddressSpace/getSegments -C++/instm/IONetworkController/getSelectedMedium -JavaScript/instm/DOMWindow/getSelection -JavaScript/instm/Document/getSelection -C++/instm/IOUSBDevice/GetSerialNumberStringIndex -C/func/-/getservbyname -C/func/-/getservbyport -C/func/-/getservent -Objective-C/instm/IOBluetoothServiceBrowserController/getServiceBrowserControllerRef -Objective-C/instm/IOBluetoothDevice/getServiceClassMajor -Objective-C/instm/IOBluetoothSDPServiceRecord/getServiceName -Objective-C/instm/IOBluetoothDevice/getServiceRecordForUUID: -Objective-C/instm/IOBluetoothSDPServiceRecord/getServiceRecordHandle: -C++/clm/IOService/getServiceRoot -Objective-C/instm/IOBluetoothDevice/getServices -C/func/-/GetSessionID -JavaScript/instm/WebGLRenderingContext/getShaderInfoLog -JavaScript/instm/WebGLRenderingContext/getShaderParameter -JavaScript/instm/WebGLRenderingContext/getShaderSource -C/func/-/getsid -C/func/-/GetSimilarity -JavaScript/instm/SVGAnimationElement/getSimpleDuration -Objective-C/instm/IOBluetoothSDPDataElement/getSize -C++/instm/IOBasicOutputQueue/getSize -C++/instm/IOMedia/getSize -C++/instm/IOOutputQueue/getSize -C++/instm/IONetworkData/getSize -C++/instm/IOPacketQueue/getSize -Objective-C/instm/IOBluetoothSDPDataElement/getSizeDescriptor -C++/instm/IOATABusInfo/getSocketType -C/func/-/getsockname -C/func/-/getsockopt -Objective-C/intfm/FxTemporalImageAPI/getSourceBitmap:withInfo:atTime: -Objective-C/intfm/FxTemporalImageAPI/getSourceTexture:withInfo:atTime: -C/func/-/GetSpeechInfo -C/func/-/GetSpeechPitch -C/func/-/GetSpeechRate -C++/instm/IONetworkMedium/getSpeed -C++/instm/IOBDMedia/getSpeed -C++/instm/IOCDMedia/getSpeed -C++/instm/IODVDMedia/getSpeed -C++/instm/IOUSBDevice/GetSpeed -C++/instm/IOBasicOutputQueue/getStallCount -JavaScript/instm/SVGTextContentElement/getStartPositionOfChar -JavaScript/instm/SVGAnimationElement/getStartTime -C++/instm/IOFramebuffer/getStartupDisplayMode -C++/instm/IOAudioEngine/getState -C++/instm/IOBasicOutputQueue/getState -C++/instm/IOService/getState -C++/tag/IOBasicOutputQueue/GetStateBits -C++/instm/IOBlockStorageDriver/getStatistic -C++/instm/IOBlockStorageDriver/getStatistics -C++/instm/IOBasicOutputQueue/getStatisticsData -C++/instm/IOOutputQueue/getStatisticsData -C++/instm/IOAudioEngine/getStatus -C++/instm/IOATACommand/getStatus -C++/instm/IOUSBPipe/GetStatus -JavaScript/instm/Navigator/getStorageUpdates -C/func/-/getstr -C++/instm/IOStream/getStreamMode -Objective-C/clm/NSStream/getStreamsToHost:port:inputStream:outputStream: -JavaScript/instm/WebGLRenderingContext/getString -C++/instm/IOUSBDevice/GetStringDescriptor -Objective-C/intfm/FxParameterRetrievalAPI_v2/getStringParameterValue:fromParm: -Objective-C/instm/IOBluetoothSDPDataElement/getStringValue -JavaScript/instm/CSSPrimitiveValue/getStringValue -JavaScript/instm/InspectorBackend/getStyles -C++/instm/IOConfigDirectory/getSubdirectories -C/func/-/getsubopt -JavaScript/instm/SVGTextContentElement/getSubStringLength -C++/instm/OSMetaClass/getSuperClass -Objective-C/instm/IOBluetoothHostController/getSupportedFeatures: -JavaScript/instm/HTMLFrameElement/getSVGDocument -JavaScript/instm/HTMLIFrameElement/getSVGDocument -JavaScript/instm/HTMLEmbedElement/getSVGDocument -JavaScript/instm/HTMLObjectElement/getSVGDocument -C/func/-/GetSystemUIMode -C/func/-/getsyx -C++/instm/IOMemoryDescriptor/getTag -C++/instm/IOSCSIParallelInterfaceController/GetTaggedTaskIdentifier -C++/instm/IOSCSIParallelInterfaceController/GetTargetForID -C++/instm/IOSCSIParallelInterfaceController/GetTargetIdentifier -C++/instm/IOSCSIParallelInterfaceController/GetTaskAttribute -C++/instm/IOATABusCommand/getTaskFilePtr -JavaScript/instm/WebGLRenderingContext/getTexParameter -C/func/-/GetTextEncodingBase -C/func/-/GetTextEncodingFormat -C/func/-/GetTextEncodingName -C/func/-/GetTextEncodingVariant -Objective-C/intfm/FxParameterRetrievalAPI/getTexture:layerOffsetX:layerOffsetY:requestInfo:fromParm:atTime: -Objective-C/instm/FxTexture/getTextureCoords:right:bottom:top: -C++/instm/IOWorkLoop/getThread -Objective-C/clm/NSBitmapImageRep/getTIFFCompressionTypes:count: -C/func/-/gettimeofday -C++/instm/IOSCSIParallelInterfaceController/GetTimeoutDuration -C++/instm/IOATABusCommand/getTimeoutMS -C++/instm/IOAudioEngine/getTimerInterval -C++/instm/IOFramebuffer/getTimingInfoForDisplayMode -Objective-C/instm/IOBluetoothPairingController/getTitle -Objective-C/instm/IOBluetoothObjectPushUIController/getTitle -Objective-C/instm/IOBluetoothDeviceSelectorController/getTitle -Objective-C/instm/IOBluetoothServiceBrowserController/getTitle -C++/instm/IOCDMedia/getTOC -C/func/-/GetTopResourceFile -JavaScript/instm/SVGPathElement/getTotalLength -C/func/-/GetTrackAlternate -C/func/-/GetTrackCreationTime -C/func/-/GetTrackDataSize -C/func/-/GetTrackDataSize64 -C/func/-/GetTrackDimensions -C/func/-/GetTrackDisplayMatrix -C/func/-/GetTrackDuration -C/func/-/GetTrackEditRate -C/func/-/GetTrackEditRate64 -C/func/-/GetTrackEnabled -C/func/-/GetTrackID -C/func/-/GetTrackLayer -C/func/-/GetTrackMatrix -C/func/-/GetTrackMedia -C/func/-/GetTrackModificationTime -C/func/-/GetTrackMovie -C/func/-/GetTrackOffset -C/func/-/GetTrackReference -C/func/-/GetTrackReferenceCount -C/func/-/GetTrackSoundLocalizationSettings -C/func/-/GetTrackUsage -C/func/-/GetTrackUserData -C/func/-/GetTrackVolume -C++/instm/IOATABusCommand/getTransferChunkSize -JavaScript/instm/SVGLocatable/getTransformToElement -Objective-C/intfm/FxTemporalTransitionImageAPI/getTransitionInputImage:forInput:applyFilters:withImageType:withInfo:atTime: -C/func/-/getttyent -C/func/-/getttynam -C++/instm/IONetworkMedium/getType -C++/instm/IOUSBPipe/GetType -Objective-C/instm/IOBluetoothSDPDataElement/getTypeDescriptor -C/func/-/getuid -C++/instm/IOATADevConfig/getUltraMode -C++/instm/IOATABusInfo/getUltraModes -JavaScript/instm/WebGLRenderingContext/getUniform -JavaScript/instm/WebGLRenderingContext/getUniformLocation -C++/instm/IOATABusCommand/getUnit -C++/instm/IOFireWireDevice/getUnitCount -C++/instm/IOATADevice/getUnitID -C++/instm/IONetworkInterface/getUnitNumber -C++/instm/IOATABusInfo/getUnits -C++/instm/IOSCSIProtocolInterface/GetUserClientExclusivityState -C/func/-/getusershell -C/func/-/getutmp -C/func/-/getutmpx -C/func/-/getutxent -C/func/-/getutxid -C/func/-/getutxline -Objective-C/instm/IOBluetoothSDPDataElement/getUUIDValue -Objective-C/instm/IOBluetoothSDPUUID/getUUIDWithLength: -Objective-C/instm/IOBluetoothSDPDataElement/getValue -C++/instm/IOAudioControl/getValue -C++/instm/OSBoolean/getValue -Objective-C/instm/NSValue/getValue: -Objective-C/instm/NSOpenGLPixelFormat/getValues:forAttribute:forVirtualScreen: -Objective-C/instm/NSOpenGLContext/getValues:forParameter: -JavaScript/instm/CSSVariablesDeclaration/getVariableValue -C++/instm/IOUSBDevice/GetVendorID -C++/instm/IOBlockStorageDevice/getVendorString -JavaScript/instm/WebGLRenderingContext/getVertexAttrib -JavaScript/instm/WebGLRenderingContext/getVertexAttribOffset -C/func/-/getvfsbyname -C++/instm/IOMemoryMap/getVirtualAddress -C++/instm/IOEthernetController/getVlanTagDemand -C/func/-/GetVoiceDescription -C/func/-/GetVoiceInfo -C/tdef/-/GetVolParmsInfoBuffer -C++/instm/IOFramebuffer/getVRAMRange -C/func/-/GetVRefNum -C/func/-/getw -C/func/-/getwc -C/func/-/getwc_l -C/func/-/getwchar -C/func/-/getwchar_l -C/func/-/getwd -Objective-C/instm/NSColor/getWhite:alpha: -C/func/-/getwin -C++/instm/IOAudioControl/getWorkLoop -C++/instm/IOAudioEngine/getWorkLoop -C++/instm/IOAudioDevice/getWorkLoop -C++/instm/IOEventSource/getWorkLoop -C++/instm/IOSCSIParallelInterfaceController/GetWorkLoop -C++/instm/IOService/getWorkLoop -C++/instm/IOBlockStorageDevice/getWriteCacheState -C/func/-/getxattr -Objective-C/intfm/FxParameterRetrievalAPI/getXValue:YValue:fromParm:atTime: -C/func/-/getyx -C/econst/-/gfpErr -C++/clconst/IOAudioDevice/gIOAudioPlane -C++/clconst/IOAudioDevice/gIOAudioPlaneAstaticIORegistryPlanerepresentingthenewIOAudioPlanethattheIOAudioFamilyuses -C/data/-/gIOEthernetDisabledWakeOnLANFilterGroup -C/data/-/gIOEthernetWakeOnLANFilterGroup -C/data/-/gIONetworkFilterGroup -C/func/-/glAccum -C/func/-/glActiveTextureARB -C/func/-/glAlphaFunc -C/func/-/glAreTexturesResident -C/func/-/glArrayElement -C/func/-/glBegin -C/func/-/glBindTexture -C/func/-/glBitmap -C/func/-/glBlendColor -C/func/-/glBlendEquation -C/func/-/glBlendFunc -C/func/-/glCallList -C/func/-/glCallLists -C/func/-/glClear -C/func/-/glClearAccum -C/func/-/glClearColor -C/func/-/glClearDepth -C/func/-/glClearIndex -C/func/-/glClearStencil -C/func/-/glClientActiveTextureARB -C/func/-/glClipPlane -C/func/-/glColor -C/func/-/glColorMask -C/func/-/glColorMaterial -C/func/-/glColorPointer -C/func/-/glColorSubTable -C/func/-/glColorTable -C/func/-/glColorTableParameter -Objective-C/instm/FxHostCapabilities/glContextPixelFormatAttributes -C/func/-/glConvolutionFilter1D -C/func/-/glConvolutionFilter2D -C/func/-/glConvolutionParameter -C/func/-/glCopyColorSubTable -C/func/-/glCopyColorTable -C/func/-/glCopyConvolutionFilter1D -C/func/-/glCopyConvolutionFilter2D -C/func/-/glCopyPixels -C/func/-/glCopyTexImage1D -C/func/-/glCopyTexImage2D -C/func/-/glCopyTexSubImage1D -C/func/-/glCopyTexSubImage2D -C/func/-/glCopyTexSubImage3D -C/func/-/glCullFace -C/func/-/glDeleteLists -C/func/-/glDeleteTextures -C/func/-/glDepthFunc -C/func/-/glDepthMask -C/func/-/glDepthRange -C/func/-/glDrawArrays -C/func/-/glDrawBuffer -C/func/-/glDrawElements -C/func/-/glDrawPixels -C/func/-/glDrawRangeElements -C/func/-/glEdgeFlag -C/func/-/glEdgeFlagPointer -C/func/-/glEnable -C/func/-/glEnableClientState -C/func/-/glEvalCoord -C/func/-/glEvalMesh -C/func/-/glEvalPoint -C/func/-/glFeedbackBuffer -C/func/-/glFinish -C/func/-/glFlush -C/func/-/glFog -C/func/-/glFrontFace -C/func/-/glFrustum -C/func/-/glGenLists -C/func/-/glGenTextures -C/func/-/glGet -C/func/-/glGetClipPlane -C/func/-/glGetColorTable -C/func/-/glGetColorTableParameter -C/func/-/glGetConvolutionFilter -C/func/-/glGetConvolutionParameter -C/func/-/glGetError -C/func/-/glGetHistogram -C/func/-/glGetHistogramParameter -C/func/-/glGetLight -C/func/-/glGetMap -C/func/-/glGetMaterial -C/func/-/glGetMinmax -C/func/-/glGetMinmaxParameter -C/func/-/glGetPixelMap -C/func/-/glGetPointerv -C/func/-/glGetPolygonStipple -C/func/-/glGetSeparableFilter -C/func/-/glGetString -C/func/-/glGetTexEnv -C/func/-/glGetTexGen -C/func/-/glGetTexImage -C/func/-/glGetTexLevelParameter -C/func/-/glGetTexParameter -C/func/-/glHint -C/func/-/glHistogram -C/func/-/glIndex -C/func/-/glIndexMask -C/func/-/glIndexPointer -C/func/-/glInitNames -C/func/-/glInterleavedArrays -C/func/-/glIsEnabled -C/func/-/glIsList -C/func/-/glIsTexture -C/func/-/glLight -C/func/-/glLightModel -C/func/-/glLineStipple -C/func/-/glLineWidth -C/func/-/glListBase -C/func/-/glLoadIdentity -C/func/-/glLoadMatrix -C/func/-/glLoadName -C/func/-/glLogicOp -C/func/-/glMap1 -C/func/-/glMap2 -C/func/-/glMapGrid -C/func/-/glMaterial -C/func/-/glMatrixMode -C/func/-/glMinmax -C/func/-/glMultiTexCoordARB -C/func/-/glMultMatrix -C/func/-/glNewList -C/func/-/glNormal -C/func/-/glNormalPointer -C/func/-/glob -C/func/-/glob_b -JavaScript/clconst/JavaScriptCallFrame/GLOBAL_SCOPE -JavaScript/data/CanvasRenderingContext2D/globalAlpha -JavaScript/data/CanvasRenderingContext2D/globalCompositeOperation -Objective-C/instm/WebFrame/globalContext -Objective-C/instm/NSProcessInfo/globallyUniqueString -C/func/-/globfree -C/func/-/glOrtho -C/func/-/glPassThrough -C/func/-/glPixelMap -C/func/-/glPixelStore -C/func/-/glPixelTransfer -C/func/-/glPixelZoom -C/func/-/glPointSize -C/func/-/glPolygonMode -C/func/-/glPolygonOffset -C/func/-/glPolygonStipple -C/func/-/glPrioritizeTextures -C/func/-/glPushAttrib -C/func/-/glPushClientAttrib -C/func/-/glPushMatrix -C/func/-/glPushName -C/func/-/glRasterPos -C/func/-/glReadBuffer -C/func/-/glReadPixels -C/func/-/glRect -C/func/-/glRenderMode -C/func/-/glResetHistogram -C/func/-/glResetMinMax -C/func/-/glRotate -C/func/-/glScale -C/func/-/glScissor -C/func/-/glSelectBuffer -C/func/-/glSeparableFilter2D -C/func/-/glShadeModel -C/func/-/glStencilFunc -C/func/-/glStencilMask -C/func/-/glStencilOp -C/func/-/glTexCoord -C/func/-/glTexCoordPointer -C/func/-/glTexEnv -C/func/-/glTexGen -C/func/-/glTexImage1D -C/func/-/glTexImage2D -C/func/-/glTexImage3D -C/func/-/glTexParameter -C/func/-/glTexSubImage1D -C/func/-/glTexSubImage2D -C/func/-/glTexSubImage3D -C/func/-/glTranslate -C/func/-/gluBeginCurve -C/func/-/gluBeginPolygon -C/func/-/gluBeginSurface -C/func/-/gluBeginTrim -C/func/-/gluBuild1DMipmapLevels -C/func/-/gluBuild1DMipmaps -C/func/-/gluBuild2DMipmapLevels -C/func/-/gluBuild2DMipmaps -C/func/-/gluBuild3DMipmapLevels -C/func/-/gluBuild3DMipmaps -C/func/-/gluCheckExtension -C/func/-/gluCylinder -C/func/-/gluDeleteNurbsRenderer -C/func/-/gluDeleteQuadric -C/func/-/gluDeleteTess -C/func/-/gluDisk -C/func/-/gluErrorString -C/func/-/gluGetNurbsProperty -C/func/-/gluGetString -C/func/-/gluGetTessProperty -C/func/-/gluLoadSamplingMatrices -C/func/-/gluLookAt -C/func/-/gluNewNurbsRenderer -C/func/-/gluNewQuadric -C/func/-/gluNewTess -C/func/-/gluNextContour -C/func/-/gluNurbsCallback -C/func/-/gluNurbsCallbackData -C/func/-/gluNurbsCallbackDataEXT -C/func/-/gluNurbsCurve -C/func/-/gluNurbsProperty -C/func/-/gluNurbsSurface -C/func/-/gluOrtho2D -C/func/-/gluPartialDisk -C/func/-/gluPerspective -C/func/-/gluPickMatrix -C/func/-/gluProject -C/func/-/gluPwlCurve -C/func/-/gluQuadricCallback -C/func/-/gluQuadricDrawStyle -C/func/-/gluQuadricNormals -C/func/-/gluQuadricOrientation -C/func/-/gluQuadricTexture -C/func/-/gluScaleImage -C/func/-/gluSphere -C/func/-/glut -C/func/-/glutAddMenuEntry -C/func/-/glutAddSubMenu -C/func/-/glutAttachMenu -C/func/-/glutBitmapCharacter -C/func/-/glutBitmapWidth -C/func/-/glutButtonBoxFunc -C/func/-/glutChangeToMenuEntry -C/func/-/glutChangeToSubMenu -C/func/-/glutCopyColormap -C/func/-/glutCreateMenu -C/func/-/glutCreateSubWindow -C/func/-/glutCreateWindow -C/func/-/glutDestroyMenu -C/func/-/glutDestroyWindow -C/func/-/glutDeviceGet -C/func/-/glutDialsFunc -C/func/-/glutDisplayFunc -C/func/-/glutEnterGameMode -C/func/-/glutEntryFunc -C/func/-/gluTessBeginContour -C/func/-/gluTessBeginPolygon -C/func/-/gluTessCallback -C/func/-/gluTessEndPolygon -C/func/-/gluTessNormal -C/func/-/gluTessProperty -C/func/-/gluTessVertex -C/func/-/glutEstablishOverlay -C/func/-/glutExtensionSupported -C/func/-/glutForceJoystickFunc -C/func/-/glutFullScreen -C/func/-/glutGameModeGet -C/func/-/glutGameModeString -C/func/-/glutGet -C/func/-/glutGetColor -C/func/-/glutGetModifiers -C/func/-/glutIdleFunc -C/func/-/glutIgnoreKeyRepeat -C/func/-/glutInit -C/func/-/glutInitDisplayMode -C/func/-/glutInitDisplayString -C/func/-/glutInitWindowPosition -C/func/-/glutJoystickFunc -C/func/-/glutKeyboardFunc -C/func/-/glutKeyboardUpFunc -C/func/-/glutLayerGet -C/func/-/glutMainLoop -C/func/-/glutMenuStatusFunc -C/func/-/glutMotionFunc -C/func/-/glutMouseFunc -C/func/-/glutOverlayDisplayFunc -C/func/-/glutPopWindow -C/func/-/glutPositionWindow -C/func/-/glutPostOverlayRedisplay -C/func/-/glutPostRedisplay -C/func/-/glutRemoveMenuItem -C/func/-/glutRemoveOverlay -C/func/-/glutReportErrors -C/func/-/glutReshapeFunc -C/func/-/glutReshapeWindow -C/func/-/glutSetColor -C/func/-/glutSetCursor -C/func/-/glutSetKeyRepeat -C/func/-/glutSetMenu -C/func/-/glutSetWindow -C/func/-/glutSetWindowTitle -C/func/-/glutShowOverlay -C/func/-/glutShowWindow -C/func/-/glutSolidCone -C/func/-/glutSolidCube -C/func/-/glutSolidDodecahedron -C/func/-/glutSolidIcosahedron -C/func/-/glutSolidOctahedron -C/func/-/glutSolidSphere -C/func/-/glutSolidTeapot -C/func/-/glutSolidTetrahedron -C/func/-/glutSolidTorus -C/func/-/glutSpaceballButtonFunc -C/func/-/glutSpaceballMotionFunc -C/func/-/glutSpaceballRotateFunc -C/func/-/glutSpecialFunc -C/func/-/glutSpecialUpFunc -C/func/-/glutStrokeCharacter -C/func/-/glutStrokeWidth -C/func/-/glutSwapBuffers -C/func/-/glutTabletButtonFunc -C/func/-/glutTabletMotionFunc -C/func/-/glutTimerFunc -C/func/-/glutUseLayer -C/func/-/glutVisibilityFunc -C/func/-/glutWarpPointer -C/func/-/gluUnProject -C/func/-/gluUnProject4 -C/func/-/glVertex -C/func/-/glVertexPointer -C/func/-/glViewport -Objective-C/instm/NSLayoutManager/glyphAtIndex: -Objective-C/instm/NSLayoutManager/glyphAtIndex:isValidIndex: -Objective-C/instm/NSLayoutManager/glyphGenerator -Objective-C/instm/NSLayoutManager/glyphIndexForCharacterAtIndex: -Objective-C/instm/NSLayoutManager/glyphIndexForPoint:inTextContainer: -Objective-C/instm/NSLayoutManager/glyphIndexForPoint:inTextContainer:fractionOfDistanceThroughGlyph: -Objective-C/clm/NSGlyphInfo/glyphInfoWithCharacterIdentifier:collection:baseString: -Objective-C/clm/NSGlyphInfo/glyphInfoWithGlyph:forFont:baseString: -Objective-C/clm/NSGlyphInfo/glyphInfoWithGlyphName:forFont:baseString: -Objective-C/instm/NSFont/glyphIsEncoded: -Objective-C/instm/NSGlyphInfo/glyphName -Objective-C/instm/NSFont/glyphPacking -Objective-C/instm/NSLayoutManager/glyphRangeForBoundingRect:inTextContainer: -Objective-C/instm/NSLayoutManager/glyphRangeForBoundingRectWithoutAdditionalLayout:inTextContainer: -Objective-C/instm/NSATSTypesetter/glyphRangeForCharacterRange:actualCharacterRange: -Objective-C/instm/NSLayoutManager/glyphRangeForCharacterRange:actualCharacterRange: -Objective-C/instm/NSTypesetter/glyphRangeForCharacterRange:actualCharacterRange: -Objective-C/instm/NSLayoutManager/glyphRangeForTextContainer: -JavaScript/data/SVGAltGlyphElement/glyphRef -Objective-C/instm/NSFont/glyphWithName: -C/func/-/gmtime -C/func/-/gmtime_r -JavaScript/instm/window/go -Objective-C/instm/WebBackForwardList/goBack -Objective-C/instm/WebView/goBack -Objective-C/instm/PDFView/goBack: -Objective-C/instm/WebView/goBack: -Objective-C/instm/WebBackForwardList/goForward -Objective-C/instm/WebView/goForward -Objective-C/instm/PDFView/goForward: -Objective-C/instm/WebView/goForward: -C/data/-/gOSKextUnresolved -Objective-C/instm/WebView/goToBackForwardItem: -Objective-C/instm/QTMovie/gotoBeginning -Objective-C/instm/QTMovieView/gotoBeginning: -Objective-C/instm/PDFView/goToDestination: -Objective-C/instm/QTMovie/gotoEnd -Objective-C/instm/QTMovieView/gotoEnd: -Objective-C/instm/PDFView/goToFirstPage: -Objective-C/instm/WebBackForwardList/goToItem: -Objective-C/instm/PDFView/goToLastPage: -Objective-C/instm/PDFView/goToNextPage: -Objective-C/instm/QTMovie/gotoNextSelectionPoint -Objective-C/instm/QTMovieView/gotoNextSelectionPoint: -Objective-C/instm/PDFView/goToPage: -Objective-C/instm/QTMovieView/gotoPosterFrame: -Objective-C/instm/QTMovie/gotoPosterTime -Objective-C/instm/PDFView/goToPreviousPage: -Objective-C/instm/QTMovie/gotoPreviousSelectionPoint -Objective-C/instm/QTMovieView/gotoPreviousSelectionPoint: -Objective-C/instm/PDFView/goToRect:onPage: -Objective-C/instm/PDFView/goToSelection: -JavaScript/data/SVGGradientElement/gradientTransform -Objective-C/instm/NSButtonCell/gradientType -JavaScript/data/SVGGradientElement/gradientUnits -C/tag/-/GrafPort -C/tdef/-/GrafPtr -Objective-C/clm/NSTextCheckingResult/grammarCheckingResultWithRange:details: -Objective-C/instp/NSTextCheckingResult/grammarDetails -Objective-C/instm/NSTextCheckingResult/grammarDetails -C/func/-/grantpt -C/tdef/-/GraphicImageMovieImportComponent -Objective-C/instm/NSWindow/graphicsContext -Objective-C/clm/NSGraphicsContext/graphicsContextWithAttributes: -Objective-C/clm/NSGraphicsContext/graphicsContextWithBitmapImageRep: -Objective-C/clm/NSGraphicsContext/graphicsContextWithGraphicsPort:flipped: -Objective-C/clm/NSGraphicsContext/graphicsContextWithWindow: -C/func/-/GraphicsExportCanTranscode -C/func/-/GraphicsExportCanUseCompressor -C/tdef/-/GraphicsExportComponent -C/func/-/GraphicsExportDoExport -C/func/-/GraphicsExportDoStandaloneExport -C/func/-/GraphicsExportDoTranscode -C/func/-/GraphicsExportDoUseCompressor -C/func/-/GraphicsExportDrawInputImage -C/func/-/GraphicsExportGetColorSyncProfile -C/func/-/GraphicsExportGetCompressionMethod -C/func/-/GraphicsExportGetCompressionQuality -C/func/-/GraphicsExportGetDefaultFileNameExtension -C/func/-/GraphicsExportGetDefaultFileTypeAndCreator -C/func/-/GraphicsExportGetDepth -C/func/-/GraphicsExportGetDontRecompress -C/func/-/GraphicsExportGetExifEnabled -C/func/-/GraphicsExportGetInputCGBitmapContext -C/func/-/GraphicsExportGetInputCGImage -C/func/-/GraphicsExportGetInputDataReference -C/func/-/GraphicsExportGetInputDataSize -C/func/-/GraphicsExportGetInputFile -C/func/-/GraphicsExportGetInputGraphicsImporter -C/func/-/GraphicsExportGetInputGWorld -C/func/-/GraphicsExportGetInputHandle -C/func/-/GraphicsExportGetInputImageDepth -C/func/-/GraphicsExportGetInputImageDescription -C/func/-/GraphicsExportGetInputImageDimensions -C/func/-/GraphicsExportGetInputOffsetAndLimit -C/func/-/GraphicsExportGetInputPicture -C/func/-/GraphicsExportGetInputPixmap -C/func/-/GraphicsExportGetInputPtr -C/func/-/GraphicsExportGetInterlaceStyle -C/func/-/GraphicsExportGetMetaData -C/func/-/GraphicsExportGetMIMETypeList -C/func/-/GraphicsExportGetOutputDataReference -C/func/-/GraphicsExportGetOutputFile -C/func/-/GraphicsExportGetOutputFileTypeAndCreator -C/func/-/GraphicsExportGetOutputHandle -C/func/-/GraphicsExportGetOutputMark -C/func/-/GraphicsExportGetOutputOffsetAndMaxSize -C/func/-/GraphicsExportGetProgressProc -C/func/-/GraphicsExportGetResolution -C/func/-/GraphicsExportGetSettingsAsAtomContainer -C/func/-/GraphicsExportGetSettingsAsText -C/func/-/GraphicsExportGetTargetDataSize -C/func/-/GraphicsExportGetThumbnailEnabled -C/func/-/GraphicsExportMayExporterReadInputData -C/func/-/GraphicsExportReadInputData -C/func/-/GraphicsExportReadOutputData -C/func/-/GraphicsExportRequestSettings -C/func/-/GraphicsExportSetColorSyncProfile -C/func/-/GraphicsExportSetCompressionMethod -C/func/-/GraphicsExportSetCompressionQuality -C/func/-/GraphicsExportSetDepth -C/func/-/GraphicsExportSetDontRecompress -C/func/-/GraphicsExportSetExifEnabled -C/func/-/GraphicsExportSetInputCGBitmapContext -C/func/-/GraphicsExportSetInputCGImage -C/func/-/GraphicsExportSetInputDataReference -C/func/-/GraphicsExportSetInputFile -C/func/-/GraphicsExportSetInputGraphicsImporter -C/func/-/GraphicsExportSetInputGWorld -C/func/-/GraphicsExportSetInputHandle -C/func/-/GraphicsExportSetInputOffsetAndLimit -C/func/-/GraphicsExportSetInputPicture -C/func/-/GraphicsExportSetInputPixmap -C/func/-/GraphicsExportSetInputPtr -C/func/-/GraphicsExportSetInterlaceStyle -C/func/-/GraphicsExportSetMetaData -C/func/-/GraphicsExportSetOutputDataReference -C/func/-/GraphicsExportSetOutputFile -C/func/-/GraphicsExportSetOutputFileTypeAndCreator -C/func/-/GraphicsExportSetOutputHandle -C/func/-/GraphicsExportSetOutputMark -C/func/-/GraphicsExportSetOutputOffsetAndMaxSize -C/func/-/GraphicsExportSetProgressProc -C/func/-/GraphicsExportSetResolution -C/func/-/GraphicsExportSetSettingsFromAtomContainer -C/func/-/GraphicsExportSetTargetDataSize -C/func/-/GraphicsExportSetThumbnailEnabled -C/func/-/GraphicsExportWriteOutputData -C/func/-/GraphicsImageImportGetSequenceEnabled -C/func/-/GraphicsImageImportSetSequenceEnabled -C/tdef/-/GraphicsImportComponent -C/func/-/GraphicsImportCreateCGImage -C/func/-/GraphicsImportDoesDrawAllPixels -C/func/-/GraphicsImportDoExportImageFileDialog -C/func/-/GraphicsImportDoExportImageFileToDataRefDialog -C/func/-/GraphicsImportDraw -C/func/-/GraphicsImportExportImageFile -C/func/-/GraphicsImportExportImageFileToDataRef -C/func/-/GraphicsImportGetAliasedDataReference -C/func/-/GraphicsImportGetAsPicture -C/func/-/GraphicsImportGetBaseDataOffsetAndSize64 -C/func/-/GraphicsImportGetBoundsRect -C/func/-/GraphicsImportGetClip -C/func/-/GraphicsImportGetColorSyncProfile -C/func/-/GraphicsImportGetDataFile -C/func/-/GraphicsImportGetDataHandle -C/func/-/GraphicsImportGetDataOffsetAndSize -C/func/-/GraphicsImportGetDataOffsetAndSize64 -C/func/-/GraphicsImportGetDataReference -C/func/-/GraphicsImportGetDataReferenceOffsetAndLimit -C/func/-/GraphicsImportGetDataReferenceOffsetAndLimit64 -C/func/-/GraphicsImportGetDefaultClip -C/func/-/GraphicsImportGetDefaultGraphicsMode -C/func/-/GraphicsImportGetDefaultMatrix -C/func/-/GraphicsImportGetDefaultSourceRect -C/func/-/GraphicsImportGetDestinationColorSyncProfileRef -C/func/-/GraphicsImportGetDestRect -C/func/-/GraphicsImportGetExportImageTypeList -C/func/-/GraphicsImportGetExportSettingsAsAtomContainer -C/func/-/GraphicsImportGetFlags -C/func/-/GraphicsImportGetGenericColorSyncProfile -C/func/-/GraphicsImportGetGraphicsMode -C/func/-/GraphicsImportGetGWorld -C/func/-/GraphicsImportGetImageCount -C/func/-/GraphicsImportGetImageDescription -C/func/-/GraphicsImportGetImageIndex -C/func/-/GraphicsImportGetMatrix -C/func/-/GraphicsImportGetMetaData -C/func/-/GraphicsImportGetMIMETypeList -C/func/-/GraphicsImportGetNaturalBounds -C/func/-/GraphicsImportGetOverrideSourceColorSyncProfileRef -C/func/-/GraphicsImportGetProgressProc -C/func/-/GraphicsImportGetQuality -C/func/-/GraphicsImportGetSourceRect -C/func/-/GraphicsImportReadData -C/func/-/GraphicsImportReadData64 -C/func/-/GraphicsImportSaveAsPicture -C/func/-/GraphicsImportSaveAsPictureToDataRef -C/func/-/GraphicsImportSaveAsQuickTimeImageFile -C/func/-/GraphicsImportSaveAsQuickTimeImageFileToDataRef -C/func/-/GraphicsImportSetBoundsRect -C/func/-/GraphicsImportSetClip -C/func/-/GraphicsImportSetDataFile -C/func/-/GraphicsImportSetDataHandle -C/func/-/GraphicsImportSetDataReference -C/func/-/GraphicsImportSetDataReferenceOffsetAndLimit -C/func/-/GraphicsImportSetDataReferenceOffsetAndLimit64 -C/func/-/GraphicsImportSetDestinationColorSyncProfileRef -C/func/-/GraphicsImportSetDestRect -C/func/-/GraphicsImportSetExportSettingsFromAtomContainer -C/func/-/GraphicsImportSetFlags -C/func/-/GraphicsImportSetGraphicsMode -C/func/-/GraphicsImportSetGWorld -C/func/-/GraphicsImportSetImageIndex -C/func/-/GraphicsImportSetImageIndexToThumbnail -C/func/-/GraphicsImportSetMatrix -C/func/-/GraphicsImportSetOverrideSourceColorSyncProfileRef -C/func/-/GraphicsImportSetProgressProc -C/func/-/GraphicsImportSetQuality -C/func/-/GraphicsImportSetSourceRect -C/func/-/GraphicsImportValidate -C/func/-/GraphicsImportWillUseColorMatching -Objective-C/instm/NSGraphicsContext/graphicsPort -Objective-C/clm/NSColor/grayColor -C/econst/-/grayishTextOr -JavaScript/clconst/WebGLRenderingContext/GREATER -Objective-C/instm/PDFView/greekingThreshold -Objective-C/instm/CIColor/green -JavaScript/data/RGBColor/green -JavaScript/clconst/WebGLRenderingContext/GREEN_BITS -Objective-C/clm/NSColor/greenColor -Objective-C/instm/NSColor/greenComponent -Objective-C/instm/CAEmitterCell/greenRange -Objective-C/instp/CAEmitterCell/greenRange -Objective-C/instm/CAEmitterCell/greenSpeed -Objective-C/instp/CAEmitterCell/greenSpeed -Objective-C/instm/NSDateFormatter/gregorianStartDate -Objective-C/clm/NSColor/gridColor -Objective-C/instm/NSTableView/gridColor -Objective-C/instm/XGController/gridForIdentifier: -Objective-C/instm/XGController/grids -Objective-C/instm/NSTableView/gridStyleMask -JavaScript/instm/Console/group -Objective-C/instp/ABPeoplePickerView/groupDoubleAction -Objective-C/instm/ABPeoplePickerView/groupDoubleAction -Objective-C/instm/NSMetadataQuery/groupedResults -JavaScript/instm/Console/groupEnd -Objective-C/clm/CBGroupIdentity/groupIdentityWithPosixGID:authority: -Objective-C/instm/NSMetadataQuery/groupingAttributes -Objective-C/instm/NSUndoManager/groupingLevel -Objective-C/instm/NSNumberFormatter/groupingSeparator -Objective-C/instm/NSNumberFormatter/groupingSize -Objective-C/instm/WebView/groupName -Objective-C/instm/ABAddressBook/groups -Objective-C/instm/NSUndoManager/groupsByEvent -C++/clconst/IOAudioEngine/gSampleRateFractionKey -C++/clconst/IOAudioEngine/gSampleRateWholeNumberKey -Objective-C/instm/NSWindow/gState -Objective-C/instm/NSView/gState -C/func/-/Guard_Malloc -C/func/-/guardmalloc -Objective-C/instm/NSSpellChecker/guessesForWord: -Objective-C/instm/NSSpellChecker/guessesForWordRange:inString:language:inSpellDocumentWithTag: -C/tdef/-/GWorldFlags -C/tdef/-/GWorldPtr -C/tag/-/gxPaths -C/tag/-/gxPoint -C/func/-/halfdelay -C++/instm/IOSCSIProtocolInterface/HandleCheckPowerState -C++/instm/IONetworkInterface/handleClientClose -C++/instm/IONetworkInterface/handleClientOpen -C++/instm/IONetworkInterface/handleClose -C++/instm/IONetworkController/handleClose -C++/instm/IOFireWireAVCUnit/handleClose -C++/instm/IOFilterScheme/handleClose -C++/instm/IOBlockStorageDriver/handleClose -C++/instm/IOFireWireAVCSubUnit/handleClose -C++/instm/IOMedia/handleClose -C++/instm/IOKernelDebugger/handleClose -C++/instm/IOHIDDevice/handleClose -C/func/-/handleClose -C++/instm/IOStream/handleClose -C++/instm/IOService/handleClose -C++/instm/IOPartitionScheme/handleClose -C++/instm/IOStorage/handleClose -Objective-C/instm/NSWindow/handleCloseScriptCommand: -Objective-C/instm/NSDocument/handleCloseScriptCommand: -C++/instm/IOATAController/handleCommand -C++/instm/IOFramebuffer/handleEvent -JavaScript/instm/DatabaseCallback/handleEvent -JavaScript/instm/EventListener/handleEvent -JavaScript/instm/SQLTransactionErrorCallback/handleEvent -JavaScript/instm/SQLTransactionCallback/handleEvent -JavaScript/instm/SQLStatementErrorCallback/handleEvent -JavaScript/instm/SQLTransactionSyncCallback/handleEvent -JavaScript/instm/SQLStatementCallback/handleEvent -JavaScript/instm/VoidCallback/handleEvent -Objective-C/instm/NSTextInputContext/handleEvent: -Objective-C/instm/NSObject/handleEvent:client: -Objective-C/instm/NSAssertionHandler/handleFailureInFunction:file:lineNumber:description: -Objective-C/instm/NSAssertionHandler/handleFailureInMethod:object:file:lineNumber:description: -C++/instm/IOSCSIProtocolInterface/HandleGetUserClientExclusivityState -C++/instm/IOSCSIParallelInterfaceController/HandleInterruptRequest -C++/instm/IONetworkInterface/handleIsOpen -C++/instm/IONetworkController/handleIsOpen -C++/instm/IOFilterScheme/handleIsOpen -C++/instm/IOBlockStorageDriver/handleIsOpen -C++/instm/IOHIDDevice/handleIsOpen -C++/instm/IOMedia/handleIsOpen -C++/instm/IOKernelDebugger/handleIsOpen -C/func/-/handleIsOpen -C++/instm/IOStorage/handleIsOpen -C++/instm/IOService/handleIsOpen -C++/instm/IOPartitionScheme/handleIsOpen -Objective-C/intfm/NSMachPortDelegate/handleMachMessage: -C++/instm/IOBasicOutputQueue/handleNetworkDataAccess -C++/instm/IONetworkInterface/handleOpen -C++/instm/IONetworkController/handleOpen -C++/instm/IOBlockStorageDriver/handleOpen -C++/instm/IOFireWireAVCUnit/handleOpen -C++/instm/IOFilterScheme/handleOpen -C++/instm/IOFireWireAVCSubUnit/handleOpen -C++/instm/IOKernelDebugger/handleOpen -C++/instm/IOMedia/handleOpen -C/func/-/handleOpen -C++/instm/IOHIDDevice/handleOpen -C++/instm/IOPartitionScheme/handleOpen -C++/instm/IOStream/handleOpen -C++/instm/IOStorage/handleOpen -C++/instm/IOService/handleOpen -Objective-C/intfm/NSPortDelegate/handlePortMessage: -C++/instm/IOSCSIProtocolInterface/HandlePowerChange -Objective-C/instm/NSWindow/handlePrintScriptCommand: -Objective-C/instm/NSDocument/handlePrintScriptCommand: -C++/instm/IOFireWireSerialBusProtocolTransport/HandleProtocolServiceFeature -C++/instm/IOSCSIProtocolInterface/HandleProtocolServiceFeature -Objective-C/instm/NSObject/handleQueryWithUnboundKey: -C++/instm/IOHIDDevice/handleReport -C++/instm/IOHIDDevice/handleReportWithTime -C/tdef/-/HandlerError -Objective-C/instm/NSWindow/handleSaveScriptCommand: -Objective-C/instm/NSDocument/handleSaveScriptCommand: -C++/instm/IOSCSIProtocolInterface/HandleSetPowerState -C++/instm/IOSCSIProtocolInterface/HandleSetUserClientExclusivityState -Objective-C/instm/ISyncSessionDriver/handlesSyncAlerts -C++/instm/IOBlockStorageDriver/handleStart -C++/instm/IOHIDDevice/handleStart -C/func/-/handleStart -C++/instm/IOHIDDevice/handleStop -C/func/-/handleStop -Objective-C/instm/NSObject/handleTakeValue:forUnboundKey: -Objective-C/instm/NSTextView/handleTextCheckingResults:forRange:types:options:orthography:wordCount: -C++/instm/IOSCSIParallelInterfaceController/HandleTimeout -C++/instm/IOBlockStorageDriver/handleYield -Objective-C/clm/DRFile(VirtualLinks)/hardLinkPointingTo:inFilesystem: -C/econst/-/hardwareConfigErr -C++/instm/IOAudioControl/hardwareValueChanged -C/func/-/has_colors -C/func/-/has_ic -C/func/-/has_il -C/func/-/has_key -Objective-C/intfm/IKImageEditPanelDataSource/hasAdjustMode -Objective-C/instm/CalCalendarItem/hasAlarm -Objective-C/instm/NSImageRep/hasAlpha -Objective-C/instm/PDFAnnotation/hasAppearanceStream -JavaScript/instm/Element/hasAttribute -JavaScript/instm/Element/hasAttributeNS -JavaScript/instm/core/hasAttributes -Objective-C/instm/NSInputStream/hasBytesAvailable -Objective-C/instm/NSManagedObjectContext/hasChanges -Objective-C/instm/QTMovie/hasChapters -Objective-C/instm/QTMedia/hasCharacteristic: -JavaScript/instm/core/hasChildNodes -Objective-C/instm/NSWindow/hasCloseBox -Objective-C/instm/ScreenSaverView/hasConfigureSheet -C++/instm/IOFramebuffer/hasDDCConnect -Objective-C/intfm/IKImageEditPanelDataSource/hasDetailsMode -Objective-C/instp/IKScannerDeviceView/hasDisplayModeAdvanced -Objective-C/instm/IKScannerDeviceView/hasDisplayModeAdvanced -Objective-C/instm/IKCameraDeviceView/hasDisplayModeIcon -Objective-C/instp/IKCameraDeviceView/hasDisplayModeIcon -Objective-C/instp/IKScannerDeviceView/hasDisplayModeSimple -Objective-C/instm/IKScannerDeviceView/hasDisplayModeSimple -Objective-C/instp/IKCameraDeviceView/hasDisplayModeTable -Objective-C/instm/IKCameraDeviceView/hasDisplayModeTable -Objective-C/instm/NSWindow/hasDynamicDepthLimit -Objective-C/instm/NSDocumentController/hasEditedDocuments -Objective-C/intfm/IKImageEditPanelDataSource/hasEffectsMode -JavaScript/instm/Channel/hasError -JavaScript/instm/SVGTests/hasExtension -C/tdef/-/hasExternalSubsetSAXFunc -Objective-C/instm/NSManagedObject/hasFaultForRelationshipNamed: -JavaScript/instm/DOMImplementation/hasFeature -JavaScript/instm/HTMLDocument/hasFocus -Objective-C/intfm/NSObject/hash -C/func/-/hash -Objective-C/instm/NSString/hash -JavaScript/data/HTMLAnchorElement/hash -JavaScript/data/HTMLAreaElement/hash -JavaScript/data/window/hash -JavaScript/data/WorkerLocation/hash -Objective-C/instp/NSPointerFunctions/hashFunction -Objective-C/instm/NSPointerFunctions/hashFunction -Objective-C/instm/NSScrollView/hasHorizontalRuler -Objective-C/instm/NSScrollView/hasHorizontalScroller -Objective-C/instm/NSBrowser/hasHorizontalScroller -Objective-C/instp/IKImageView/hasHorizontalScroller -Objective-C/instm/IKImageView/hasHorizontalScroller -Objective-C/clm/NSHashTable/hashTableWithOptions: -Objective-C/clm/NSHashTable/hashTableWithWeakObjects -C/tdef/-/hasInternalSubsetSAXFunc -Objective-C/instm/NSSpellChecker/hasLearnedWord: -Objective-C/intfm/NSTextInput/hasMarkedText -Objective-C/intfm/NSTextInputClient/hasMarkedText -Objective-C/instm/QTCaptureDevice/hasMediaType: -Objective-C/instm/NSCharacterSet/hasMemberInPlane: -Objective-C/instm/NSLayoutManager/hasNonContiguousLayout -Objective-C/instm/OBEXSession/hasOpenOBEXConnection -Objective-C/instm/IOBluetoothOBEXSession/hasOpenTransportConnection -Objective-C/instm/OBEXSession/hasOpenTransportConnection -Objective-C/instm/NSScriptClassDescription/hasOrderedToManyRelationshipForKey: -Objective-C/instm/QCCompositionParameterView/hasParameters -Objective-C/instm/NSURLCredential/hasPassword -C++/instm/IOPCIDevice/hasPCIPowerManagement -Objective-C/instm/NSString/hasPrefix: -Objective-C/instm/NSScriptClassDescription/hasPropertyForKey: -Objective-C/instm/NSScriptClassDescription/hasReadablePropertyForKey: -Objective-C/instm/IOBluetoothSDPServiceRecord/hasServiceFromArray: -Objective-C/instm/NSWindow/hasShadow -Objective-C/instm/NSOutputStream/hasSpaceAvailable -Objective-C/instm/NSMenuItem/hasSubmenu -Objective-C/instm/NSString/hasSuffix: -Objective-C/instm/NSNumberFormatter/hasThousandSeparators -C++/instm/ATATimerEventSource/hasTimedOut -Objective-C/instm/NSWindow/hasTitleBar -Objective-C/instm/NSUserDefaultsController/hasUnappliedChanges -Objective-C/instm/NSDocument/hasUnautosavedChanges -Objective-C/instm/NSPersistentDocument/hasUndoManager -Objective-C/instm/NSDocument/hasUndoManager -Objective-C/instm/ABAddressBook/hasUnsavedChanges -Objective-C/instm/NSCell/hasValidObjectValue -Objective-C/instm/NSScrollView/hasVerticalRuler -Objective-C/instm/NSScrollView/hasVerticalScroller -Objective-C/instm/NSComboBox/hasVerticalScroller -Objective-C/instm/NSComboBoxCell/hasVerticalScroller -Objective-C/instm/IKImageView/hasVerticalScroller -Objective-C/instp/IKImageView/hasVerticalScroller -Objective-C/instm/AMBundleAction/hasView -Objective-C/instm/NSScriptClassDescription/hasWritablePropertyForKey: -JavaScript/clconst/HTMLMediaElement/HAVE_CURRENT_DATA -JavaScript/clconst/HTMLMediaElement/HAVE_ENOUGH_DATA -JavaScript/clconst/HTMLMediaElement/HAVE_FUTURE_DATA -JavaScript/clconst/HTMLMediaElement/HAVE_METADATA -JavaScript/clconst/HTMLMediaElement/HAVE_NOTHING -C++/instm/OSCollection/haveUpdated -C/func/-/HCreate -C/func/-/hcreate -C/func/-/HCreateResFile -C/func/-/HDelete -C/func/-/hdestroy -JavaScript/data/Document/head -JavaScript/data/ScriptProfile/head -Objective-C/instm/NSTableColumn/headerCell -Objective-C/clm/NSColor/headerColor -Objective-C/instm/NSParagraphStyle/headerLevel -Objective-C/instm/NSTableHeaderView/headerRectOfColumn: -JavaScript/data/HTMLTableCellElement/headers -JavaScript/clconst/XMLHttpRequest/HEADERS_RECEIVED -Objective-C/clm/NSColor/headerTextColor -Objective-C/binding/NSTableColumn/headerTitle -Objective-C/instm/NSTableColumn/headerToolTip -Objective-C/instm/NSTableView/headerView -Objective-C/instm/NSParagraphStyle/headIndent -JavaScript/data/Coordinates/heading -C/func/-/heapsort -C/func/-/heapsort_b -Objective-C/instm/FxImage/height -JavaScript/data/ClientRect/height -JavaScript/data/HTMLEmbedElement/height -JavaScript/data/HTMLDocument/height -JavaScript/data/HTMLObjectElement/height -JavaScript/data/HTMLFrameElement/height -JavaScript/data/HTMLCanvasElement/height -JavaScript/data/HTMLIFrameElement/height -JavaScript/data/HTMLAppletElement/height -JavaScript/data/HTMLVideoElement/height -JavaScript/data/HTMLTableCellElement/height -JavaScript/data/HTMLImageElement/height -JavaScript/data/ImageData/height -JavaScript/data/SVGFilterElement/height -JavaScript/data/Screen/height -JavaScript/data/SVGImageElement/height -JavaScript/data/SVGForeignObjectElement/height -JavaScript/data/SVGFilterPrimitiveStandardAttributes/height -JavaScript/data/SVGMaskElement/height -JavaScript/data/SVGPatternElement/height -JavaScript/data/SVGRect/height -JavaScript/data/SVGRectElement/height -JavaScript/data/SVGUseElement/height -JavaScript/data/SVGSVGElement/height -Objective-C/instm/NSView/heightAdjustLimit -C/func/-/HeightMMOfScreen -C/func/-/HeightOfScreen -Objective-C/instm/NSTextContainer/heightTracksTextView -Objective-C/instm/SFCertificatePanel/helpAnchor -Objective-C/instm/NSAlert/helpAnchor -Objective-C/instm/NSPrintPanel/helpAnchor -Objective-C/instm/NSError/helpAnchor -Objective-C/instm/SFChooseIdentityPanel/helpAnchor -Objective-C/instm/NSApplication/helpMenu -Objective-C/instm/NSResponder/helpRequested: -Objective-C/instm/NSMenu/helpRequested: -C/func/-/herror -C/tdef/-/HFileInfo -C/tdef/-/HFileParam -C/tdef/-/HFSUniStr255 -C/func/-/HGetFInfo -C/func/-/HGetVol -C/func/-/HIAboutBox -C/func/-/HIApplicationCreateDockTileContext -C/func/-/HIApplicationGetCurrent -C/func/-/HIApplicationGetFocus -C/func/-/HICopyAccessibilityActionDescription -C/func/-/HICopyAccessibilityRoleDescription -C/tag/-/HIDCaps -C/tdef/-/HIDCapsPtr -C/func/-/HIDCloseReportDescriptor -Objective-C/instp/NSRunningApplication/hidden -Objective-C/binding/NSButton/hidden -Objective-C/binding/NSCollectionView/hidden -Objective-C/binding/NSForm/hidden -Objective-C/binding/NSLevelIndicator/hidden -Objective-C/binding/NSOutlineView/hidden -Objective-C/binding/NSImageView/hidden -Objective-C/binding/NSDatePicker/hidden -Objective-C/binding/NSMatrix/hidden -Objective-C/binding/NSBox/hidden -Objective-C/binding/NSColorWell/hidden -Objective-C/binding/NSBrowser/hidden -Objective-C/binding/NSComboBox/hidden -Objective-C/binding/AMPathPopUpButton/hidden -Objective-C/binding/NSMovieView/hidden -Objective-C/binding/NSStepper/hidden -Objective-C/binding/NSSegmentedControl/hidden -Objective-C/binding/PDFThumbnailView/hidden -Objective-C/binding/NSTabView/hidden -Objective-C/binding/NSPathControl/hidden -Objective-C/binding/NSScrollView/hidden -Objective-C/binding/NSTokenField/hidden -Objective-C/binding/QCView/hidden -Objective-C/binding/NSSecureTextField/hidden -Objective-C/binding/NSPopUpButton/hidden -Objective-C/binding/NSProgressIndicator/hidden -Objective-C/binding/QTMovieView/hidden -Objective-C/binding/NSTextView/hidden -Objective-C/binding/NSTableView/hidden -Objective-C/binding/NSSearchField/hidden -Objective-C/binding/NSPredicateEditor/hidden -Objective-C/binding/NSTextField/hidden -Objective-C/binding/NSSlider/hidden -Objective-C/binding/NSView/hidden -Objective-C/binding/NSSplitView/hidden -Objective-C/instp/CALayer/hidden -JavaScript/instm/InspectorFrontendHost/hiddenPanels -Objective-C/instm/IMKCandidates/hide -Objective-C/clm/NSCursor/hide -Objective-C/instm/NSRunningApplication/hide -Objective-C/instm/NSApplication/hide: -JavaScript/instm/InspectorBackend/hideDOMNodeHighlight -Objective-C/instm/NSWorkspace/hideOtherApplications -Objective-C/instm/NSApplication/hideOtherApplications: -Objective-C/instm/IMKInputController/hidePalettes -Objective-C/instm/NSTextTable/hidesEmptyCells -Objective-C/instm/NSWindow/hidesOnDeactivate -C/func/-/HIDGetButtonCapabilities -C/func/-/HIDGetButtonCaps -C/func/-/HIDGetButtons -C/func/-/HIDGetButtonsOnPage -C/func/-/HIDGetCapabilities -C/func/-/HIDGetCaps -C/func/-/HIDGetCollectionNodes -C/func/-/HIDGetScaledUsageValue -C/func/-/HIDGetSpecificButtonCapabilities -C/func/-/HIDGetSpecificButtonCaps -C/func/-/HIDGetSpecificValueCapabilities -C/func/-/HIDGetSpecificValueCaps -C/func/-/HIDGetUsageValue -C/func/-/HIDGetUsageValueArray -C/func/-/HIDGetValueCapabilities -C/func/-/HIDGetValueCaps -C/func/-/HIDictionaryWindowShow -C/func/-/HIDMaxUsageListLength -C/func/-/HIDOpenReportDescriptor -C/func/-/HIDSetButton -C/func/-/HIDSetButtons -C/func/-/HIDSetScaledUsageValue -C/func/-/HIDSetUsageValue -C/func/-/HIDSetUsageValueArray -C/tag/-/HIDUsageAndPage -C/tdef/-/HIDUsageAndPagePtr -C/func/-/HIDUsageListDifference -JavaScript/clconst/DOMCoreException/HIERARCHY_REQUEST_ERR -JavaScript/data/HTMLMeterElement/high -JavaScript/clconst/WebGLRenderingContext/HIGH_FLOAT -JavaScript/clconst/WebGLRenderingContext/HIGH_INT -Objective-C/instm/NSButton/highlight: -Objective-C/instm/NSScroller/highlight: -Objective-C/intfm/NSTextAttachmentCell/highlight:withFrame:inView: -Objective-C/instm/NSCell/highlight:withFrame:inView: -Objective-C/instm/NSMatrix/highlightCell:atRow:column: -Objective-C/clm/NSColor/highlightColor -Objective-C/instm/NSBrowserCell/highlightColorInView: -Objective-C/instm/NSCell/highlightColorWithFrame:inView: -JavaScript/instm/InspectorBackend/highlightDOMNode -Objective-C/clm/NSBrowserCell/highlightedBranchImage -Objective-C/instm/NSMenu/highlightedItem -Objective-C/instm/NSMenuView/highlightedItemIndex -Objective-C/instm/PDFView/highlightedSelections -Objective-C/instm/NSTableView/highlightedTableColumn -Objective-C/instm/NSStatusItem/highlightMode -Objective-C/instm/NSButtonCell/highlightsBy -Objective-C/instm/NSTableView/highlightSelectionInClipRect: -Objective-C/instm/NSColor/highlightWithLevel: -C/econst/-/hilite -C/econst/-/hilitetransfermode -JavaScript/instm/WebGLRenderingContext/hint -C/func/-/HIObjectIsAccessibilityIgnored -C/func/-/HIObjectOverrideAccessibilityContainment -C/func/-/HIObjectSetAccessibilityIgnored -C/func/-/HIObjectSetAuxiliaryAccessibilityAttribute -C/tdef/-/HIOParam -C/func/-/HISearchWindowShow -C/func/-/history -JavaScript/data/DOMWindow/history -C/func/-/history_end -C/func/-/history_init -Objective-C/instm/WebHistory/historyAgeInDaysLimit -Objective-C/instm/WebHistory/historyItemLimit -Objective-C/instm/NSScroller/hitPart -Objective-C/instm/CATransformLayer/hitTest: -Objective-C/instm/NSView/hitTest: -Objective-C/instm/CALayer/hitTest: -C/func/-/HitTestDSequenceData -Objective-C/instm/NSCell/hitTestForEvent:inRect:ofView: -Objective-C/instm/NSImage/hitTestRect:withImageDestinationRect:context:hints:flipped: -C/func/-/HIWebViewCreate -C/func/-/HIWebViewGetWebView -C/func/-/hline -C/func/-/hline_set -C/func/-/HMAC -C/func/-/hmac -C/func/-/HMAC_cleanup -C/func/-/HMAC_CTX_cleanup -C/func/-/HMAC_CTX_init -C/func/-/HMAC_Final -C/func/-/HMAC_Init -C/func/-/HMAC_Init_ex -C/func/-/HMAC_Update -C/func/-/HomeResFile -C/func/-/HOpen -C/func/-/HOpenDF -C/func/-/HOpenResFile -C/func/-/HOpenRF -JavaScript/clconst/OverflowEvent/HORIZONTAL -Objective-C/instp/CLLocation/horizontalAccuracy -Objective-C/instm/CLLocation/horizontalAccuracy -Objective-C/instm/PDFBorder/horizontalCornerRadius -Objective-C/instm/NSMenuView/horizontalEdgePadding -Objective-C/instm/NSScrollView/horizontalLineScroll -JavaScript/data/OverflowEvent/horizontalOverflow -Objective-C/instm/NSScrollView/horizontalPageScroll -Objective-C/instm/NSPrintInfo/horizontalPagination -Objective-C/instm/NSScrollView/horizontalRulerView -Objective-C/instm/NSScrollView/horizontalScroller -Objective-C/instm/NSPrinter/host -Objective-C/instm/NSURLProtectionSpace/host -Objective-C/instm/NSURL/host -JavaScript/data/HTMLAnchorElement/host -JavaScript/data/HTMLAreaElement/host -JavaScript/data/window/host -JavaScript/data/WorkerLocation/host -C/tdef/-/HostCallback_GetBeatAndTempo -C/tdef/-/HostCallback_GetMusicalTimeLocation -C/tdef/-/HostCallback_GetTransportState -C/tdef/-/HostCallbackInfo -C/tag/-/HostCallbackInfo -Objective-C/instm/FxHostCapabilities/hostID -Objective-C/instm/FxHostCapabilities/hostIsFCE -Objective-C/instm/FxHostCapabilities/hostIsFCP -Objective-C/instm/FxHostCapabilities/hostIsMotion -Objective-C/instm/NSNetService/hostName -Objective-C/instm/NSProcessInfo/hostName -Objective-C/instm/XGConnection/hostname -JavaScript/data/HTMLAreaElement/hostname -JavaScript/data/HTMLAnchorElement/hostname -JavaScript/data/window/hostname -JavaScript/data/WorkerLocation/hostname -C/func/-/hosts_access -C/func/-/hosts_ctl -Objective-C/instm/FxHostCapabilities/hostVersionNumber -Objective-C/instm/WebView/hostWindow -Objective-C/clm/NSHost/hostWithAddress: -Objective-C/clm/NSHost/hostWithName: -Objective-C/instm/NSCursor/hotSpot -Objective-C/instm/NSDateComponents/hour -C/tdef/-/HParamBlockRec -JavaScript/data/CSSImportRule/href -JavaScript/data/HTMLAnchorElement/href -JavaScript/data/HTMLLinkElement/href -JavaScript/data/HTMLBaseElement/href -JavaScript/data/HTMLAreaElement/href -JavaScript/data/window/href -JavaScript/data/StyleSheet/href -JavaScript/data/SVGURIReference/href -JavaScript/data/WorkerLocation/href -JavaScript/data/HTMLLinkElement/hreflang -JavaScript/data/HTMLAnchorElement/hreflang -C/func/-/HRename -C/func/-/HRstFLock -C/func/-/hsearch -C/func/-/HSetFInfo -C/func/-/HSetFLock -C/func/-/HSetVol -JavaScript/data/HTMLAppletElement/hspace -JavaScript/data/HTMLObjectElement/hspace -JavaScript/data/HTMLImageElement/hspace -C/func/-/hstrerror -C/macro/-/HTML_COMMENT_NODE -C/macro/-/HTML_ENTITY_REF_NODE -C/macro/-/HTML_PI_NODE -C/macro/-/HTML_PRESERVE_NODE -C/macro/-/HTML_TEXT_NODE -JavaScript/data/DOMWindow/HTMLAllCollection -JavaScript/cl/-/HTMLAllCollection -JavaScript/data/DOMWindow/HTMLAnchorElement -JavaScript/cl/-/HTMLAnchorElement -JavaScript/data/DOMWindow/HTMLAppletElement -JavaScript/cl/-/HTMLAppletElement -JavaScript/data/DOMWindow/HTMLAreaElement -JavaScript/cl/-/HTMLAreaElement -JavaScript/data/DOMWindow/HTMLAudioElement -JavaScript/cl/-/HTMLAudioElement -JavaScript/data/DOMWindow/HTMLBaseElement -JavaScript/cl/-/HTMLBaseElement -JavaScript/data/DOMWindow/HTMLBaseFontElement -JavaScript/cl/-/HTMLBaseFontElement -JavaScript/data/DOMWindow/HTMLBlockquoteElement -JavaScript/cl/-/HTMLBlockquoteElement -JavaScript/data/DOMWindow/HTMLBodyElement -JavaScript/cl/-/HTMLBodyElement -JavaScript/data/DOMWindow/HTMLBRElement -JavaScript/cl/-/HTMLBRElement -JavaScript/data/DOMWindow/HTMLButtonElement -JavaScript/cl/-/HTMLButtonElement -JavaScript/data/DOMWindow/HTMLCanvasElement -JavaScript/cl/-/HTMLCanvasElement -JavaScript/data/DOMWindow/HTMLCollection -JavaScript/cl/-/HTMLCollection -JavaScript/data/DOMWindow/HTMLDataGridCellElement -JavaScript/cl/-/HTMLDataGridCellElement -JavaScript/data/DOMWindow/HTMLDataGridColElement -JavaScript/cl/-/HTMLDataGridColElement -JavaScript/data/DOMWindow/HTMLDataGridElement -JavaScript/cl/-/HTMLDataGridElement -JavaScript/cl/-/HTMLDataGridRowElement -JavaScript/cl/-/HTMLDataListElement -C/macro/-/htmlDefaultSubelement -JavaScript/data/DOMWindow/HTMLDirectoryElement -JavaScript/cl/-/HTMLDirectoryElement -JavaScript/data/DOMWindow/HTMLDivElement -JavaScript/cl/-/HTMLDivElement -JavaScript/data/DOMWindow/HTMLDListElement -JavaScript/cl/-/HTMLDListElement -JavaScript/data/DOMWindow/HTMLDocument -JavaScript/cl/-/HTMLDocument -JavaScript/data/DOMWindow/HTMLElement -JavaScript/cl/-/HTMLElement -C/macro/-/htmlElementAllowedHereDesc -JavaScript/data/DOMWindow/HTMLEmbedElement -JavaScript/cl/-/HTMLEmbedElement -JavaScript/data/DOMWindow/HTMLFieldSetElement -JavaScript/cl/-/HTMLFieldSetElement -JavaScript/data/DOMWindow/HTMLFontElement -JavaScript/cl/-/HTMLFontElement -JavaScript/data/HTMLScriptElement/htmlFor -JavaScript/data/HTMLLabelElement/htmlFor -JavaScript/data/DOMWindow/HTMLFormElement -JavaScript/cl/-/HTMLFormElement -JavaScript/data/DOMWindow/HTMLFrameElement -JavaScript/cl/-/HTMLFrameElement -JavaScript/data/DOMWindow/HTMLFrameSetElement -JavaScript/cl/-/HTMLFrameSetElement -JavaScript/data/DOMWindow/HTMLHeadElement -JavaScript/cl/-/HTMLHeadElement -JavaScript/data/DOMWindow/HTMLHeadingElement -JavaScript/cl/-/HTMLHeadingElement -JavaScript/data/DOMWindow/HTMLHRElement -JavaScript/cl/-/HTMLHRElement -JavaScript/data/DOMWindow/HTMLHtmlElement -JavaScript/cl/-/HTMLHtmlElement -JavaScript/data/DOMWindow/HTMLIFrameElement -JavaScript/cl/-/HTMLIFrameElement -JavaScript/data/DOMWindow/HTMLImageElement -JavaScript/cl/-/HTMLImageElement -JavaScript/data/DOMWindow/HTMLInputElement -JavaScript/cl/-/HTMLInputElement -JavaScript/data/DOMWindow/HTMLIsIndexElement -JavaScript/cl/-/HTMLIsIndexElement -JavaScript/data/DOMWindow/HTMLLabelElement -JavaScript/cl/-/HTMLLabelElement -JavaScript/data/DOMWindow/HTMLLegendElement -JavaScript/cl/-/HTMLLegendElement -JavaScript/data/DOMWindow/HTMLLIElement -JavaScript/cl/-/HTMLLIElement -JavaScript/data/DOMWindow/HTMLLinkElement -JavaScript/cl/-/HTMLLinkElement -JavaScript/data/DOMWindow/HTMLMapElement -JavaScript/cl/-/HTMLMapElement -JavaScript/data/DOMWindow/HTMLMarqueeElement -JavaScript/cl/-/HTMLMarqueeElement -JavaScript/data/DOMWindow/HTMLMediaElement -JavaScript/cl/-/HTMLMediaElement -JavaScript/data/DOMWindow/HTMLMenuElement -JavaScript/cl/-/HTMLMenuElement -JavaScript/data/DOMWindow/HTMLMetaElement -JavaScript/cl/-/HTMLMetaElement -JavaScript/data/DOMWindow/HTMLMeterElement -JavaScript/cl/-/HTMLMeterElement -JavaScript/data/DOMWindow/HTMLModElement -JavaScript/cl/-/HTMLModElement -JavaScript/data/DOMWindow/HTMLObjectElement -JavaScript/cl/-/HTMLObjectElement -JavaScript/data/DOMWindow/HTMLOListElement -JavaScript/cl/-/HTMLOListElement -JavaScript/data/DOMWindow/HTMLOptGroupElement -JavaScript/cl/-/HTMLOptGroupElement -JavaScript/data/DOMWindow/HTMLOptionElement -JavaScript/cl/-/HTMLOptionElement -JavaScript/cl/-/HTMLOptionsCollection -JavaScript/data/DOMWindow/HTMLParagraphElement -JavaScript/cl/-/HTMLParagraphElement -JavaScript/data/DOMWindow/HTMLParamElement -JavaScript/cl/-/HTMLParamElement -C/tdef/-/htmlParserOption -JavaScript/data/DOMWindow/HTMLPreElement -JavaScript/cl/-/HTMLPreElement -JavaScript/data/DOMWindow/HTMLProgressElement -JavaScript/cl/-/HTMLProgressElement -JavaScript/data/DOMWindow/HTMLQuoteElement -JavaScript/cl/-/HTMLQuoteElement -C/macro/-/htmlRequiredAttrs -JavaScript/data/DOMWindow/HTMLScriptElement -JavaScript/cl/-/HTMLScriptElement -JavaScript/data/DOMWindow/HTMLSelectElement -JavaScript/cl/-/HTMLSelectElement -JavaScript/cl/-/HTMLSourceElement -Objective-C/instp/PSContent/HTMLString -JavaScript/data/DOMWindow/HTMLStyleElement -JavaScript/cl/-/HTMLStyleElement -JavaScript/data/DOMWindow/HTMLTableCaptionElement -JavaScript/cl/-/HTMLTableCaptionElement -JavaScript/data/DOMWindow/HTMLTableCellElement -JavaScript/cl/-/HTMLTableCellElement -JavaScript/data/DOMWindow/HTMLTableColElement -JavaScript/cl/-/HTMLTableColElement -JavaScript/data/DOMWindow/HTMLTableElement -JavaScript/cl/-/HTMLTableElement -JavaScript/data/DOMWindow/HTMLTableRowElement -JavaScript/cl/-/HTMLTableRowElement -JavaScript/data/DOMWindow/HTMLTableSectionElement -JavaScript/cl/-/HTMLTableSectionElement -JavaScript/data/DOMWindow/HTMLTextAreaElement -JavaScript/cl/-/HTMLTextAreaElement -JavaScript/data/DOMWindow/HTMLTitleElement -JavaScript/cl/-/HTMLTitleElement -JavaScript/data/DOMWindow/HTMLUListElement -JavaScript/cl/-/HTMLUListElement -JavaScript/data/DOMWindow/HTMLVideoElement -JavaScript/cl/-/HTMLVideoElement -C/func/-/htonl -C/func/-/htons -Objective-C/instm/NSURLRequest/HTTPBody -Objective-C/instm/NSURLRequest/HTTPBodyStream -JavaScript/data/HTMLMetaElement/httpEquiv -Objective-C/instm/NSURLRequest/HTTPMethod -Objective-C/instm/NSURLRequest/HTTPShouldHandleCookies -C/tag/-/HubCharacteristics -C/tag/-/HubFeatures -C/tag/-/HubPortStatus -C/tag/-/HubStatus -Objective-C/instm/NSColor/hueComponent -C/tdef/-/HVolumeParam -Objective-C/instm/NSATSTypesetter/hyphenationFactor -Objective-C/instm/NSLayoutManager/hyphenationFactor -Objective-C/instm/NSTypesetter/hyphenationFactor -Objective-C/instm/NSParagraphStyle/hyphenationFactor -Objective-C/instm/NSATSTypesetter/hyphenationFactorForGlyphAtIndex: -Objective-C/instm/NSTypesetter/hyphenationFactorForGlyphAtIndex: -Objective-C/instm/NSATSTypesetter/hyphenCharacterForGlyphAtIndex: -Objective-C/instm/NSTypesetter/hyphenCharacterForGlyphAtIndex: -C/func/-/hypot -C/func/-/hypotf -C/func/-/hypotl -C/func/-/i2d_ASN1_OBJECT -C/func/-/i2d_DHparams -C/func/-/i2d_DSA_PUBKEY -C/func/-/i2d_DSA_SIG -C/func/-/i2d_DSAparams -C/func/-/i2d_DSAPrivateKey -C/func/-/i2d_DSAPublicKey -C/func/-/i2d_ECDSA_SIG -C/func/-/i2d_Netscape_RSA -C/func/-/i2d_PKCS8PrivateKey_bio -C/func/-/i2d_PKCS8PrivateKey_fp -C/func/-/i2d_PKCS8PrivateKey_nid_bio -C/func/-/i2d_PKCS8PrivateKey_nid_fp -C/func/-/i2d_RSA_PUBKEY -C/func/-/i2d_RSAPrivateKey -C/func/-/i2d_RSAPublicKey -C/func/-/i2d_SSL_SESSION -C/func/-/i2d_X509 -C/func/-/i2d_X509_ALGOR -C/func/-/i2d_X509_bio -C/func/-/i2d_X509_CRL -C/func/-/i2d_X509_CRL_bio -C/func/-/i2d_X509_CRL_fp -C/func/-/i2d_X509_fp -C/func/-/i2d_X509_NAME -C/func/-/i2d_X509_REQ -C/func/-/i2d_X509_REQ_bio -C/func/-/i2d_X509_REQ_fp -C/func/-/i2d_X509_SIG -C/func/-/i386_get_ldt -C/func/-/i386_set_ldt --/writerid/-/IB3_User_Guide_Introduction -C/macro/-/IBAction -C/data/-/IBAdditionalLocalizableKeyPaths -C/data/-/IBAttributeKeyPaths -Objective-C/instm/NSObject/ibAwakeInDesignableDocument: -Objective-C/instm/NSView/ibBaselineAtIndex: -Objective-C/instm/NSView/ibBaselineCount -Objective-C/instm/NSObject/ibCanRemoveChildren: -Objective-C/instm/NSObject/ibDefaultChildren -Objective-C/instm/NSObject/ibDefaultImage -Objective-C/instm/NSObject/ibDefaultLabel -Objective-C/instm/NSView/ibDesignableContentView -Objective-C/instm/NSObject/ibDidAddToDesignableDocument: -Objective-C/instm/NSObject/ibDidRemoveFromDesignableDocument: -C/tdef/-/IBDirection -Objective-C/cl/-/IBDocument -Objective-C/clm/NSCursor/IBeamCursor -C/tdef/-/IBInset -Objective-C/cl/-/IBInspector -Objective-C/instm/NSObject/ibIsChildInitiallySelectable: -Objective-C/instm/NSObject/ibIsChildViewUserMovable: -Objective-C/instm/NSObject/ibIsChildViewUserSizable: -Objective-C/instm/NSView/ibLayoutInset -C/data/-/IBLocalizableGeometryKeyPaths -C/data/-/IBLocalizableStringKeyPaths -Objective-C/instm/NSView/ibMaximumSize -C/econst/-/IBMaxXDirection -C/econst/-/IBMaxXMaxYDirection -C/econst/-/IBMaxXMinYDirection -C/econst/-/IBMaxYDirection -Objective-C/instm/NSView/ibMinimumSize -C/econst/-/IBMinXDirection -C/econst/-/IBMinXMaxYDirection -C/econst/-/IBMinXMinYDirection -C/econst/-/IBMinYDirection -C/econst/-/IBNoDirection -Objective-C/instm/NSObject/ibObjectAtLocation:inWindowController: -C/macro/-/IBOutlet -Objective-C/cl/-/IBPlugin -Objective-C/instm/NSObject/ibPopulateAttributeInspectorClasses: -Objective-C/instm/NSObject/ibPopulateKeyPaths: -Objective-C/instm/NSObject/ibPopulateSizeInspectorClasses: -Objective-C/instm/NSView/ibPreferredDesignSize -Objective-C/instm/NSView/ibPreferredResizeDirection -Objective-C/instm/NSObject/ibRectForChild:inWindowController: -Objective-C/instm/NSObject/ibRemoveChildren: -C/data/-/IBToManyRelationshipKeyPaths -C/data/-/IBToOneRelationshipKeyPaths -C/func/-/ICACloseSession -C/tdef/-/ICACloseSessionPB -C/func/-/ICACopyObjectData -C/tdef/-/ICACopyObjectDataPB -C/func/-/ICACopyObjectPropertyDictionary -C/tdef/-/ICACopyObjectPropertyDictionaryPB -C/func/-/ICACopyObjectThumbnail -C/tdef/-/ICACopyObjectThumbnailPB -C/func/-/ICADownloadFile -C/tdef/-/ICADownloadFilePB -C/func/-/ICAGetDeviceList -C/tdef/-/ICAGetDeviceListPB -C/tdef/-/ICAHeader -C/func/-/ICAImportImage -C/tdef/-/ICAImportImagePB -C/func/-/ICALoadDeviceModule -C/tdef/-/ICALoadDeviceModulePB -C/tdef/-/ICAMessage -C/tdef/-/ICAObjectInfo -C/func/-/ICAObjectSendMessage -C/tdef/-/ICAObjectSendMessagePB -C/func/-/ICAOpenSession -C/tdef/-/ICAOpenSessionPB -C/tdef/-/ICAPTPEventDataset -C/tdef/-/ICAPTPPassThroughPB -C/func/-/ICARegisterForEventNotification -C/tdef/-/ICARegisterForEventNotificationPB -C/func/-/ICAScannerCloseSession -C/tdef/-/ICAScannerCloseSessionPB -C/func/-/ICAScannerGetParameters -C/tdef/-/ICAScannerGetParametersPB -C/func/-/ICAScannerInitialize -C/tdef/-/ICAScannerInitializePB -C/func/-/ICAScannerOpenSession -C/tdef/-/ICAScannerOpenSessionPB -C/func/-/ICAScannerSetParameters -C/tdef/-/ICAScannerSetParametersPB -C/func/-/ICAScannerStart -C/tdef/-/ICAScannerStartPB -C/func/-/ICAScannerStatus -C/tdef/-/ICAScannerStatusPB -C/func/-/ICAShowDeviceBrowser -C/func/-/ICAUnloadDeviceModule -C/tdef/-/ICAUnloadDeviceModulePB -C/func/-/ICAUploadFile -C/tdef/-/ICAUploadFilePB -Objective-C/instm/NSColorSpace/ICCProfileData -C/tdef/-/ICD_DisposeObjectPB -C/tdef/-/ICD_NewObjectPB -C/func/-/ICDDisposeObject -C/tdef/-/ICDHeader -C/func/-/ICDNewObject -C/tag/-/ICMAlignmentProcRecord -C/tdef/-/ICMAlignmentProcRecordPtr -C/tag/-/ICMCompletionProcRecord -C/tdef/-/ICMCompletionProcRecordPtr -C/tdef/-/ICMConvertDataFormatProc -C/tdef/-/ICMConvertDataFormatUPP -C/tag/-/ICMDataProcRecord -C/tdef/-/ICMDataProcRecordPtr -C/func/-/ICMDecompressComplete -C/func/-/ICMDecompressCompleteS -C/tag/-/ICMFlushProcRecord -C/tdef/-/ICMFlushProcRecordPtr -C/econst/-/icmFrameTimeHasDecodeTime -C/econst/-/icmFrameTimeHasVirtualStartTimeAndDuration -C/tag/-/ICMFrameTimeRecord -C/func/-/ICMGetPixelFormatInfo -C/tdef/-/ICMMemoryDisposedProc -C/tdef/-/ICMMemoryDisposedUPP -C/tag/-/ICMPixelFormatInfo -C/tdef/-/ICMPixelFormatInfoPtr -C/tag/-/ICMProgressProcRecord -C/tdef/-/ICMProgressProcRecordPtr -C/func/-/ICMSequenceGetChainMember -C/func/-/ICMSequenceGetInfo -C/func/-/ICMSequenceLockBits -C/func/-/ICMSequenceSetInfo -C/func/-/ICMSequenceUnlockBits -C/func/-/ICMSetPixelFormatInfo -C/func/-/ICMShieldSequenceCursor -Objective-C/instm/WebHistoryItem/icon -Objective-C/instm/NSAlert/icon -Objective-C/instp/NSRunningApplication/icon -Objective-C/instm/NSRunningApplication/icon -Objective-C/instm/NSWorkspace/iconForFile: -Objective-C/instm/NSWorkspace/iconForFiles: -Objective-C/instm/NSWorkspace/iconForFileType: -Objective-C/instm/IKCameraDeviceView/iconSize -Objective-C/instp/IKCameraDeviceView/iconSize -Objective-C/instm/PDFAnnotationText/iconType -Objective-C/instp/PSFeed/iconURL -C/func/-/iconv -C/func/-/iconv_close -C/func/-/iconv_open -C/func/-/iconvctl -JavaScript/data/DataGridColumn/id -JavaScript/data/HTMLElement/id -JavaScript/data/SVGElement/id -C/macro/-/ID_TYPE_GID -C/macro/-/ID_TYPE_GROUPNAME -C/macro/-/ID_TYPE_GSS_EXPORT_NAME -C/macro/-/ID_TYPE_KERBEROS -C/macro/-/ID_TYPE_SID -C/macro/-/ID_TYPE_UID -C/macro/-/ID_TYPE_USERNAME -C/macro/-/ID_TYPE_X509_DN -JavaScript/cl/-/IDBAny -JavaScript/cl/-/IDBDatabaseError -JavaScript/cl/-/IDBDatabaseException -JavaScript/cl/-/IDBDatabaseRequest -JavaScript/cl/-/IDBErrorEvent -JavaScript/cl/-/IDBEvent -JavaScript/cl/-/IDBRequest -JavaScript/cl/-/IDBSuccessEvent -C/func/-/idcok -Objective-C/instm/QCComposition/identifier -Objective-C/instm/NSTableColumn/identifier -Objective-C/instm/NSPersistentStore/identifier -Objective-C/instm/NSTabViewItem/identifier -Objective-C/instm/WebPreferences/identifier -Objective-C/instp/PSEntry/identifier -Objective-C/instp/PSFeed/identifier -Objective-C/instm/XGResource/identifier -Objective-C/instm/NSToolbar/identifier -JavaScript/data/Counter/identifier -JavaScript/data/Touch/identifier -Objective-C/instm/ABMultiValue/identifierAtIndex: -Objective-C/instm/NSObject/identifiersForRecordsToDeleteForEntityName:moreComing:error: -Objective-C/instm/CBIdentityPicker/identities -Objective-C/instp/NSTouch/identity -Objective-C/instm/NSTouch/identity -Objective-C/instm/NSURLCredential/identity -Objective-C/instm/SFChooseIdentityPanel/identity -Objective-C/clm/CBIdentityAuthority/identityAuthorityWithCSIdentityAuthority: -Objective-C/clm/CBIdentity/identityWithCSIdentity: -Objective-C/clm/CBIdentity/identityWithName:authority: -Objective-C/clm/CBIdentity/identityWithPersistentReference: -Objective-C/clm/CBIdentity/identityWithUUIDString:authority: -JavaScript/clconst/DOMApplicationCache/IDLE -C/func/-/idlok -Objective-C/instp/CWNetwork/ieData -C/func/-/if -C/func/-/if_freenameindex -C/func/-/if_indextoname -C/func/-/if_nameindex -C/func/-/if_nametoindex -C/func/-/ifaddr_address -C/func/-/ifaddr_address_family -C/func/-/ifaddr_dstaddress -C/func/-/ifaddr_findbestforaddr -C/func/-/ifaddr_ifnet -C/func/-/ifaddr_netmask -C/func/-/ifaddr_reference -C/func/-/ifaddr_release -C/func/-/ifaddr_withaddr -C/func/-/ifaddr_withdstaddr -C/func/-/ifaddr_withnet -C/func/-/ifaddr_withroute -C/tdef/-/iff_detached_func -C/tdef/-/iff_event_func -C/tag/-/iff_filter -C/tdef/-/iff_input_func -C/tdef/-/iff_ioctl_func -C/tdef/-/iff_output_func -C/func/-/iflt_attach -C/func/-/iflt_detach -C/func/-/ifmaddr_address -C/func/-/ifmaddr_ifnet -C/func/-/ifmaddr_lladdress -C/func/-/ifmaddr_reference -C/func/-/ifmaddr_release -C/func/-/ifnet_add_multicast -C/tdef/-/ifnet_add_proto_func -C/func/-/ifnet_addrlen -C/func/-/ifnet_allocate -C/func/-/ifnet_attach -C/tag/-/ifnet_attach_proto_param -C/func/-/ifnet_attach_protocol -C/func/-/ifnet_attach_protocol_v2 -C/func/-/ifnet_baudrate -C/tdef/-/ifnet_check_multi -C/econst/Interface/IFNET_CSUM_FRAGMENT -C/econst/Interface/IFNET_CSUM_IP -C/econst/Interface/IFNET_CSUM_TCP -C/econst/Interface/IFNET_CSUM_UDP -C/tdef/-/ifnet_del_proto_func -C/tag/-/ifnet_demux_desc -C/tdef/-/ifnet_demux_func -C/func/-/ifnet_detach -C/func/-/ifnet_detach_protocol -C/tdef/-/ifnet_detached_func -C/func/-/ifnet_event -C/tdef/-/ifnet_event_func -C/func/-/ifnet_family -C/econst/Interface/IFNET_FAMILY_ANY -C/econst/Interface/IFNET_FAMILY_BOND -C/econst/Interface/IFNET_FAMILY_DISC -C/econst/Interface/IFNET_FAMILY_ETHERNET -C/econst/Interface/IFNET_FAMILY_FAITH -C/econst/Interface/IFNET_FAMILY_FIREWIRE -C/econst/Interface/IFNET_FAMILY_GIF -C/econst/Interface/IFNET_FAMILY_LOOPBACK -C/econst/Interface/IFNET_FAMILY_MDECAP -C/econst/Interface/IFNET_FAMILY_PPP -C/econst/Interface/IFNET_FAMILY_PVC -C/econst/Interface/IFNET_FAMILY_SLIP -C/econst/Interface/IFNET_FAMILY_STF -C/tdef/-/ifnet_family_t -C/econst/Interface/IFNET_FAMILY_TUN -C/econst/Interface/IFNET_FAMILY_VLAN -C/func/-/ifnet_find_by_name -C/func/-/ifnet_flags -C/tdef/-/ifnet_framer_func -C/func/-/ifnet_free_address_list -C/func/-/ifnet_free_multicast_list -C/func/-/ifnet_get_address_list -C/func/-/ifnet_get_address_list_family -C/func/-/ifnet_get_link_mib_data -C/func/-/ifnet_get_link_mib_data_length -C/func/-/ifnet_get_multicast_list -C/func/-/ifnet_get_tso_mtu -C/func/-/ifnet_get_wake_flags -C/func/-/ifnet_hdrlen -C/func/-/ifnet_index -C/tag/-/ifnet_init_params -C/func/-/ifnet_input -C/func/-/ifnet_interface_family_find -C/func/-/ifnet_ioctl -C/tdef/-/ifnet_ioctl_func -C/econst/Interface/IFNET_IP_FRAGMENT -C/func/-/ifnet_lastchange -C/func/-/ifnet_list_free -C/func/-/ifnet_list_get -C/func/-/ifnet_lladdr_copy_bytes -C/func/-/ifnet_llbroadcast_copy_bytes -C/func/-/ifnet_metric -C/func/-/ifnet_mtu -C/econst/Interface/IFNET_MULTIPAGES -C/func/-/ifnet_name -C/func/-/ifnet_offload -C/tdef/-/ifnet_offload_t -C/func/-/ifnet_output -C/tdef/-/ifnet_output_func -C/func/-/ifnet_output_raw -C/func/-/ifnet_reference -C/func/-/ifnet_release -C/func/-/ifnet_remove_multicast -C/func/-/ifnet_resolve_multicast -C/func/-/ifnet_set_addrlen -C/func/-/ifnet_set_baudrate -C/tdef/-/ifnet_set_bpf_tap -C/func/-/ifnet_set_flags -C/func/-/ifnet_set_hdrlen -C/func/-/ifnet_set_link_mib_data -C/func/-/ifnet_set_lladdr -C/func/-/ifnet_set_metric -C/func/-/ifnet_set_mtu -C/func/-/ifnet_set_offload -C/func/-/ifnet_set_promiscuous -C/func/-/ifnet_set_stat -C/func/-/ifnet_set_tso_mtu -C/func/-/ifnet_set_wake_flags -C/func/-/ifnet_softc -C/func/-/ifnet_stat -C/func/-/ifnet_stat_increment -C/func/-/ifnet_stat_increment_in -C/func/-/ifnet_stat_increment_out -C/tag/-/ifnet_stat_increment_param -C/tag/-/ifnet_stats_param -C/func/-/ifnet_touch_lastchange -C/econst/Interface/IFNET_TSO_IPV4 -C/econst/Interface/IFNET_TSO_IPV6 -C/func/-/ifnet_type -C/func/-/ifnet_unit -C/econst/Interface/IFNET_VLAN_MTU -C/econst/Interface/IFNET_VLAN_TAGGING -C/econst/Interface/IFNET_WAKE_ON_MAGIC_PACKET -C/tdef/-/ignorableWhitespaceSAXFunc -Objective-C/intfm/WebPolicyDecisionListener/ignore -Objective-C/instm/NSSpellChecker/ignoredWordsInSpellDocumentWithTag: -Objective-C/instm/NSObject/ignoreModifierKeysWhileDragging -Objective-C/clm/NSColor/ignoresAlpha -Objective-C/instm/AMAction/ignoresInput -Objective-C/instm/NSWindow/ignoresMouseEvents -Objective-C/instm/NSControl/ignoresMultiClick -Objective-C/intfm/NSIgnoreMisspelledWords/ignoreSpelling: -Objective-C/instm/NSSpellChecker/ignoreWord:inSpellDocumentWithTag: -C/data/-/IK_ApertureBundleIdentifier -C/data/-/IK_iPhotoBundleIdentifier -C/data/-/IK_MailBundleIdentifier -Objective-C/cl/-/IKCameraDeviceView -Objective-C/intf/-/IKCameraDeviceViewDelegate -C/tdef/-/IKCameraDeviceViewDisplayMode -C/econst/-/IKCameraDeviceViewDisplayModeIcon -C/econst/-/IKCameraDeviceViewDisplayModeTable -C/tdef/-/IKCameraDeviceViewTransferMode -C/econst/-/IKCameraDeviceViewTransferModeFileBased -C/econst/-/IKCameraDeviceViewTransferModeMemoryBased -C/econst/-/IKCellsStyleNone -C/econst/-/IKCellsStyleOutlined -C/econst/-/IKCellsStyleShadowed -C/econst/-/IKCellsStyleSubtitled -C/econst/-/IKCellsStyleTitled -Objective-C/cl/-/IKDeviceBrowserView -Objective-C/intf/-/IKDeviceBrowserViewDelegate -C/tdef/-/IKDeviceBrowserViewDisplayMode -C/econst/-/IKDeviceBrowserViewDisplayModeIcon -C/econst/-/IKDeviceBrowserViewDisplayModeOutline -C/econst/-/IKDeviceBrowserViewDisplayModeTable -C/data/-/IKFilterBrowserDefaultInputImage -C/data/-/IKFilterBrowserExcludeCategories -C/data/-/IKFilterBrowserExcludeFilters -C/data/-/IKFilterBrowserFilterDoubleClickNotification -C/data/-/IKFilterBrowserFilterSelectedNotification -Objective-C/cl/-/IKFilterBrowserPanel -C/data/-/IKFilterBrowserShowCategories -C/data/-/IKFilterBrowserShowPreview -Objective-C/cl/-/IKFilterBrowserView -C/data/-/IKFilterBrowserWillPreviewFilterNotification -Objective-C/intf/-/IKFilterCustomUIProvider -Objective-C/cl/-/IKFilterUIView -C/econst/-/IKGroupBezelStyle -C/econst/-/IKGroupDisclosureStyle -C/data/-/IKImageBrowserBackgroundColorKey -Objective-C/cl/-/IKImageBrowserCell -C/data/-/IKImageBrowserCellBackgroundLayer -C/data/-/IKImageBrowserCellForegroundLayer -C/data/-/IKImageBrowserCellPlaceHolderLayer -C/data/-/IKImageBrowserCellSelectionLayer -C/data/-/IKImageBrowserCellsHighlightedTitleAttributesKey -C/data/-/IKImageBrowserCellsOutlineColorKey -C/data/-/IKImageBrowserCellsSubtitleAttributesKey -C/tdef/-/IKImageBrowserCellState -C/data/-/IKImageBrowserCellsTitleAttributesKey -C/data/-/IKImageBrowserCGImageRepresentationType -C/data/-/IKImageBrowserCGImageSourceRepresentationType -Objective-C/cat/-/IKImageBrowserDataSource -Objective-C/cat/-/IKImageBrowserDelegate -C/econst/-/IKImageBrowserDropBefore -C/econst/-/IKImageBrowserDropOn -C/tdef/-/IKImageBrowserDropOperation -C/data/-/IKImageBrowserGroupBackgroundColorKey -C/data/-/IKImageBrowserGroupFooterLayer -C/data/-/IKImageBrowserGroupHeaderLayer -C/data/-/IKImageBrowserGroupRangeKey -C/data/-/IKImageBrowserGroupStyleKey -C/data/-/IKImageBrowserGroupTitleKey -C/data/-/IKImageBrowserIconRefPathRepresentationType -C/data/-/IKImageBrowserIconRefRepresentationType -Objective-C/cat/-/IKImageBrowserItem -C/data/-/IKImageBrowserNSBitmapImageRepresentationType -C/data/-/IKImageBrowserNSDataRepresentationType -C/data/-/IKImageBrowserNSImageRepresentationType -C/data/-/IKImageBrowserNSURLRepresentationType -C/data/-/IKImageBrowserPathRepresentationType -C/data/-/IKImageBrowserPDFPageRepresentationType -C/data/-/IKImageBrowserQCCompositionPathRepresentationType -C/data/-/IKImageBrowserQCCompositionRepresentationType -C/data/-/IKImageBrowserQTMoviePathRepresentationType -C/data/-/IKImageBrowserQTMovieRepresentationType -C/data/-/IKImageBrowserQuickLookPathRepresentationType -C/data/-/IKImageBrowserSelectionColorKey -Objective-C/cl/-/IKImageBrowserView -Objective-C/cl/-/IKImageEditPanel -Objective-C/intf/-/IKImageEditPanelDataSource -C/econst/-/IKImageStateInvalid -C/econst/-/IKImageStateNoImage -C/econst/-/IKImageStateReady -Objective-C/cl/-/IKImageView -C/data/-/IKOverlayTypeBackground -C/data/-/IKOverlayTypeImage -Objective-C/cl/-/IKPictureTaker -C/data/-/IKPictureTakerAllowsEditingKey -C/data/-/IKPictureTakerAllowsFileChoosingKey -C/data/-/IKPictureTakerAllowsVideoCaptureKey -C/data/-/IKPictureTakerCropAreaSizeKey -C/data/-/IKPictureTakerImageTransformsKey -C/data/-/IKPictureTakerInformationalTextKey -C/data/-/IKPictureTakerOutputImageMaxSizeKey -C/data/-/IKPictureTakerRemainOpenAfterValidateKey -C/data/-/IKPictureTakerShowAddressBookPictureKey -C/data/-/IKPictureTakerShowEffectsKey -C/data/-/IKPictureTakerShowEmptyPictureKey -C/data/-/IKPictureTakerUpdateRecentPictureKey -Objective-C/cl/-/IKSaveOptions -Objective-C/cl/-/IKScannerDeviceView -Objective-C/intf/-/IKScannerDeviceViewDelegate -C/tdef/-/IKScannerDeviceViewDisplayMode -C/econst/-/IKScannerDeviceViewDisplayModeAdvanced -C/econst/-/IKScannerDeviceViewDisplayModeSimple -C/tdef/-/IKScannerDeviceViewTransferMode -C/econst/-/IKScannerDeviceViewTransferModeFileBased -C/econst/-/IKScannerDeviceViewTransferModeMemoryBased -Objective-C/cl/-/IKSlideshow -C/data/-/IKSlideshowAudioFile -Objective-C/intf/-/IKSlideshowDataSource -C/data/-/IKSlideshowModeImages -C/data/-/IKSlideshowModeOther -C/data/-/IKSlideshowModePDF -C/data/-/IKSlideshowPDFDisplayBox -C/data/-/IKSlideshowPDFDisplayMode -C/data/-/IKSlideshowPDFDisplaysAsBook -C/data/-/IKSlideshowScreen -C/data/-/IKSlideshowStartIndex -C/data/-/IKSlideshowStartPaused -C/data/-/IKSlideshowWrapAround -C/data/-/IKToolModeAnnotate -C/data/-/IKToolModeCrop -C/data/-/IKToolModeMove -C/data/-/IKToolModeNone -C/data/-/IKToolModeRotate -C/data/-/IKToolModeSelect -C/data/-/IKToolModeSelectEllipse -C/data/-/IKToolModeSelectLasso -C/data/-/IKToolModeSelectRect -C/data/-/IKUIFlavorAllowFallback -C/data/-/IKUImaxSize -C/data/-/IKUISizeFlavor -C/data/-/IKUISizeMini -C/data/-/IKUISizeRegular -C/data/-/IKUISizeSmall -Objective-C/clm/NSCharacterSet/illegalCharacterSet -C/func/-/ilogb -C/func/-/ilogbf -C/func/-/ilogbl -Objective-C/instm/NSToolbarItem/image -Objective-C/instm/NSPathComponentCell/image -Objective-C/instm/NSSlider/image -Objective-C/instm/NSRulerMarker/image -Objective-C/instm/CIImageAccumulator/image -Objective-C/instm/NSImageView/image -Objective-C/instm/NSStatusItem/image -Objective-C/instm/CBIdentity/image -Objective-C/instm/NSBrowserCell/image -Objective-C/instm/NSButton/image -Objective-C/instm/NSCursor/image -Objective-C/instm/NSMenuItem/image -Objective-C/instm/DOMElement/image -Objective-C/intfm/IKImageEditPanelDataSource/image -Objective-C/binding/NSButtonCell/image -Objective-C/binding/NSMenuItem/image -Objective-C/binding/NSButton/image -Objective-C/instm/NSCell/image -Objective-C/instm/IKImageView/image -JavaScript/data/DOMWindow/Image -Objective-C/intfm/NSImageDelegate/image:didLoadPartOfRepresentation:withValidRows: -Objective-C/intfm/NSImageDelegate/image:didLoadRepresentation:withStatus: -Objective-C/intfm/NSImageDelegate/image:didLoadRepresentationHeader: -Objective-C/intfm/NSImageDelegate/image:willLoadRepresentation: -Objective-C/instm/NSPrintInfo/imageablePageBounds -Objective-C/clm/CIImageAccumulator/imageAccumulatorWithExtent:format: -Objective-C/instm/NSImageView/imageAlignment -Objective-C/instm/IKImageBrowserCell/imageAlignment -Objective-C/instm/NSImageCell/imageAlignment -Objective-C/instm/NSMenuView/imageAndTitleOffset -Objective-C/instm/NSMenuView/imageAndTitleWidth -Objective-C/intfm/QCPlugInOutputImageProvider/imageBounds -Objective-C/intfm/QCPlugInInputImageSource/imageBounds -Objective-C/instm/NSObject/imageBrowser:backgroundWasRightClickedWithEvent: -Objective-C/instm/NSObject/imageBrowser:cellWasDoubleClickedAtIndex: -Objective-C/instm/NSObject/imageBrowser:cellWasRightClickedAtIndex:withEvent: -Objective-C/instm/NSObject/imageBrowser:groupAtIndex: -Objective-C/instm/NSObject/imageBrowser:itemAtIndex: -Objective-C/instm/NSObject/imageBrowser:moveItemsAtIndexes:toIndex: -Objective-C/instm/NSObject/imageBrowser:removeItemsAtIndexes: -Objective-C/instm/NSObject/imageBrowser:writeItemsAtIndexes:toPasteboard: -Objective-C/instm/NSObject/imageBrowserSelectionDidChange: -Objective-C/instm/IKImageBrowserCell/imageBrowserView -Objective-C/instm/CIImage/imageByApplyingTransform: -Objective-C/instm/CIImage/imageByCroppingToRect: -C/func/-/ImageByteOrder -C/func/-/ImageCodecBandCompress -C/func/-/ImageCodecBandDecompress -C/func/-/ImageCodecBeginBand -C/func/-/ImageCodecBeginPass -C/func/-/ImageCodecBusy -C/func/-/ImageCodecCancelTrigger -C/func/-/ImageCodecCompleteFrame -C/func/-/ImageCodecCreateStandardParameterDialog -C/func/-/ImageCodecDecodeBand -C/func/-/ImageCodecDismissStandardParameterDialog -C/func/-/ImageCodecDisposeImageGWorld -C/func/-/ImageCodecDisposeMemory -C/func/-/ImageCodecDITLEvent -C/func/-/ImageCodecDITLInstall -C/func/-/ImageCodecDITLItem -C/func/-/ImageCodecDITLRemove -C/func/-/ImageCodecDITLValidateInput -C/func/-/ImageCodecDrawBand -C/func/-/ImageCodecDroppingFrame -C/func/-/ImageCodecEffectBegin -C/func/-/ImageCodecEffectCancel -C/func/-/ImageCodecEffectConvertEffectSourceToFormat -C/func/-/ImageCodecEffectDisposeSMPTEFrame -C/func/-/ImageCodecEffectGetSpeed -C/func/-/ImageCodecEffectPrepareSMPTEFrame -C/func/-/ImageCodecEffectRenderFrame -C/func/-/ImageCodecEffectRenderSMPTEFrame -C/func/-/ImageCodecEffectSetup -C/func/-/ImageCodecEncodeFrame -C/func/-/ImageCodecEndBand -C/func/-/ImageCodecExtractAndCombineFields -C/func/-/ImageCodecFlush -C/func/-/ImageCodecFlushFrame -C/func/-/ImageCodecGetBaseMPWorkFunction -C/func/-/ImageCodecGetCodecInfo -C/func/-/ImageCodecGetCompressedImageSize -C/func/-/ImageCodecGetCompressionTime -C/func/-/ImageCodecGetDecompressLatency -C/func/-/ImageCodecGetDITLForSize -C/func/-/ImageCodecGetMaxCompressionSize -C/func/-/ImageCodecGetMaxCompressionSizeWithSources -C/func/-/ImageCodecGetParameterList -C/func/-/ImageCodecGetParameterListHandle -C/func/-/ImageCodecGetSettings -C/func/-/ImageCodecGetSettingsAsText -C/func/-/ImageCodecGetSimilarity -C/func/-/ImageCodecGetSourceDataGammaLevel -C/func/-/ImageCodecHitTestData -C/func/-/ImageCodecHitTestDataWithFlags -C/func/-/ImageCodecInitialize -C/func/-/ImageCodecIsImageDescriptionEquivalent -C/func/-/ImageCodecIsStandardParameterDialogEvent -C/func/-/ImageCodecMergeFloatingImageOntoWindow -C/tdef/-/ImageCodecMPDrawBandProc -C/tdef/-/ImageCodecMPDrawBandUPP -C/func/-/ImageCodecNewImageBufferMemory -C/func/-/ImageCodecNewImageGWorld -C/func/-/ImageCodecNewMemory -C/func/-/ImageCodecPreCompress -C/func/-/ImageCodecPreDecompress -C/func/-/ImageCodecPreflight -C/func/-/ImageCodecPrepareToCompressFrames -C/func/-/ImageCodecProcessBetweenPasses -C/func/-/ImageCodecQueueStarting -C/func/-/ImageCodecQueueStopping -C/func/-/ImageCodecRemoveFloatingImage -C/func/-/ImageCodecRequestGammaLevel -C/func/-/ImageCodecRequestSettings -C/func/-/ImageCodecScheduleFrame -C/func/-/ImageCodecSetSettings -C/func/-/ImageCodecSetTimeBase -C/func/-/ImageCodecSetTimeCode -C/func/-/ImageCodecSourceChanged -C/func/-/ImageCodecStandardParameterDialogDoAction -C/tdef/-/ImageCodecTimeTriggerProc -C/tdef/-/ImageCodecTimeTriggerUPP -C/func/-/ImageCodecTrimImage -C/func/-/ImageCodecValidateParameters -Objective-C/intfm/QCPlugInInputImageSource/imageColorSpace -Objective-C/intfm/QCPlugInOutputImageProvider/imageColorSpace -Objective-C/instm/IKImageBrowserCell/imageContainerFrame -Objective-C/instp/IKImageView/imageCorrection -Objective-C/instm/IKImageView/imageCorrection -Objective-C/intfm/ApertureExportManager/imageCount -Objective-C/instm/ABPerson/imageData -JavaScript/data/DOMWindow/ImageData -JavaScript/cl/-/ImageData -C/tdef/-/ImageDescriptionHandle -C/tdef/-/ImageDescriptionPtr -Objective-C/intfm/NSImageDelegate/imageDidNotDraw:inRect: -Objective-C/instm/NSButtonCell/imageDimsWhenDisabled -C/tdef/-/ImageFieldSequence -C/func/-/ImageFieldSequenceBegin -C/func/-/ImageFieldSequenceEnd -C/func/-/ImageFieldSequenceExtractCombine -Objective-C/clm/NSImageRep/imageFileTypes -Objective-C/clm/NSImage/imageFileTypes -Objective-C/instm/NSSegmentedCell/imageForSegment: -Objective-C/instm/NSSegmentedControl/imageForSegment: -Objective-C/instm/IKImageBrowserCell/imageFrame -Objective-C/instm/NSImageView/imageFrameStyle -Objective-C/instm/NSImageCell/imageFrameStyle -Objective-C/instm/FxImage/imageInfo -Objective-C/instm/NSGraphicsContext/imageInterpolation -Objective-C/clm/NSImage/imageNamed: -Objective-C/clm/IMService/imageNameForStatus: -Objective-C/instm/NSRulerMarker/imageOrigin -Objective-C/clm/NSImageRep/imagePasteboardTypes -Objective-C/clm/NSImage/imagePasteboardTypes -Objective-C/instm/ISyncClient/imagePath -Objective-C/instm/NSButton/imagePosition -Objective-C/instm/NSButtonCell/imagePosition -Objective-C/intfm/IKImageEditPanelDataSource/imageProperties -Objective-C/instp/IKSaveOptions/imageProperties -Objective-C/instm/IKSaveOptions/imageProperties -Objective-C/instm/IKImageView/imageProperties -Objective-C/instm/NSCell/imageRectForBounds: -Objective-C/instm/NSPrinter/imageRectForPaper: -Objective-C/instm/NSRulerMarker/imageRectInRuler -Objective-C/clm/NSImageRep/imageRepClassForData: -Objective-C/clm/NSImageRep/imageRepClassForFileType: -Objective-C/clm/NSImageRep/imageRepClassForPasteboardType: -Objective-C/clm/NSImageRep/imageRepClassForType: -Objective-C/instm/NSObject/imageRepresentation -Objective-C/instm/NSObject/imageRepresentationType -Objective-C/clm/NSImageRep/imageRepsWithContentsOfFile: -Objective-C/clm/NSImageRep/imageRepsWithContentsOfURL: -Objective-C/clm/NSBitmapImageRep/imageRepsWithData: -Objective-C/clm/NSImageRep/imageRepsWithPasteboard: -Objective-C/clm/NSCIImageRep/imageRepWithCIImage: -Objective-C/clm/NSImageRep/imageRepWithContentsOfFile: -Objective-C/clm/NSImageRep/imageRepWithContentsOfURL: -Objective-C/clm/NSEPSImageRep/imageRepWithData: -Objective-C/clm/NSPICTImageRep/imageRepWithData: -Objective-C/clm/NSPDFImageRep/imageRepWithData: -Objective-C/clm/NSBitmapImageRep/imageRepWithData: -Objective-C/clm/NSImageRep/imageRepWithPasteboard: -JavaScript/data/Document/images -Objective-C/instm/NSImageView/imageScaling -Objective-C/instm/NSButtonCell/imageScaling -Objective-C/instm/NSImageCell/imageScaling -Objective-C/instm/NSSegmentedCell/imageScalingForSegment: -Objective-C/instm/NSSegmentedControl/imageScalingForSegment: -C/tdef/-/ImageSequence -C/tdef/-/ImageSequenceDataSource -Objective-C/instm/IKImageView/imageSize -C/tag/-/ImageSubCodecDecompressCapabilities -C/tag/-/ImageSubCodecDecompressRecord -Objective-C/instm/NSObject/imageSubtitle -Objective-C/intfm/FxTimingAPI/imageTimeForParmId:forEffect:fromTimelineTime: -Objective-C/instm/NSObject/imageTitle -C/func/-/ImageTranscodeDisposeFrameData -C/func/-/ImageTranscodeFrame -C/tdef/-/ImageTranscodeSequence -C/func/-/ImageTranscodeSequenceBegin -C/func/-/ImageTranscodeSequenceEnd -Objective-C/instm/FxImage/imageType -Objective-C/clm/NSImageRep/imageTypes -Objective-C/clm/NSImage/imageTypes -Objective-C/instm/NSObject/imageUID -Objective-C/clm/NSImageRep/imageUnfilteredFileTypes -Objective-C/clm/NSImage/imageUnfilteredFileTypes -Objective-C/clm/NSImageRep/imageUnfilteredPasteboardTypes -Objective-C/clm/NSImage/imageUnfilteredPasteboardTypes -Objective-C/clm/NSImageRep/imageUnfilteredTypes -Objective-C/clm/NSImage/imageUnfilteredTypes -Objective-C/clm/IMService/imageURLForStatus: -Objective-C/instp/IKSaveOptions/imageUTType -Objective-C/instm/IKSaveOptions/imageUTType -Objective-C/instm/NSObject/imageVersion -Objective-C/instm/NSMenuItemCell/imageWidth -Objective-C/clm/CIImage/imageWithBitmapData:bytesPerRow:size:format:colorSpace: -Objective-C/clm/CIImage/imageWithCGImage: -Objective-C/clm/CIImage/imageWithCGImage:options: -Objective-C/clm/CIImage/imageWithCGLayer: -Objective-C/clm/CIImage/imageWithCGLayer:options: -Objective-C/clm/CIImage/imageWithColor: -Objective-C/clm/CIImage/imageWithContentsOfURL: -Objective-C/clm/CIImage/imageWithContentsOfURL:options: -Objective-C/clm/CIImage/imageWithCVImageBuffer: -Objective-C/clm/CIImage/imageWithCVImageBuffer:options: -Objective-C/clm/CIImage/imageWithData: -Objective-C/clm/CIImage/imageWithData:options: -Objective-C/clm/CIImage/imageWithImageProvider:size:format:colorSpace:options: -Objective-C/clm/CIImage/imageWithTexture:size:flipped:colorSpace: -Objective-C/cl/-/IMAVButton -Objective-C/cl/-/IMAVControl -Objective-C/cl/-/IMAVControlBar -C/econst/-/IMAVInactive -Objective-C/cl/-/IMAVManager -C/tdef/-/IMAVManagerState -C/data/-/IMAVManagerStateChangedNotification -C/data/-/IMAVManagerURLToShareChangedNotification -C/econst/-/IMAVPending -C/econst/-/IMAVRequested -C/econst/-/IMAVRunning -C/econst/-/IMAVShuttingDown -Objective-C/cl/-/IMAVSlider -C/econst/-/IMAVStartingUp -C/func/-/imaxabs -C/func/-/imaxdiv -C/data/-/IMCapabilityAudioConference -C/data/-/IMCapabilityDirectIM -C/data/-/IMCapabilityFileSharing -C/data/-/IMCapabilityFileTransfer -C/data/-/IMCapabilityText -C/data/-/IMCapabilityVideoConference -C/func/-/imclient -C/func/-/imclient_addcallback -C/func/-/imclient_authenticate -C/func/-/imclient_clearflags -C/func/-/imclient_close -C/func/-/imclient_connect -C/func/-/imclient_getselectinfo -C/func/-/imclient_havetls -C/func/-/imclient_processoneevent -C/func/-/imclient_send -C/func/-/imclient_servername -C/func/-/imclient_setflags -C/func/-/imclient_starttls -C/func/-/IMComparePersonStatus -C/func/-/imgfir -C/func/-/imgfirD -C/tdef/-/IMKCandidatePanelType -Objective-C/cl/-/IMKCandidates -C/tdef/-/IMKCandidatesLocationHint -C/data/-/IMKCandidatesOpacityAttributeName -C/data/-/IMKControllerClass -C/data/-/IMKDelegateClass -Objective-C/cl/-/IMKInputController -C/tdef/-/IMKLocationToOffsetMappingMode -C/data/-/IMKModeDictionary -Objective-C/intf/-/IMKMouseHandling -Objective-C/cl/-/IMKServer -Objective-C/cat/-/IMKServerInput -Objective-C/intf/-/IMKStateSetting -Objective-C/intf/-/IMKTextInput -C/data/-/IMKTextOrientationName -C/func/-/immedok -C/data/-/IMMyStatusChangedNotification -C/tag/-/IMP -C/data/-/IMPersonAVBusyKey -C/data/-/IMPersonCapabilitiesKey -C/data/-/IMPersonEmailKey -C/data/-/IMPersonFirstNameKey -C/data/-/IMPersonIdleSinceKey -C/data/-/IMPersonInfoChangedNotification -C/data/-/IMPersonLastNameKey -C/data/-/IMPersonPictureDataKey -C/data/-/IMPersonScreenNameKey -C/data/-/IMPersonServiceNameKey -C/tdef/-/IMPersonStatus -C/econst/-/IMPersonStatusAvailable -C/econst/-/IMPersonStatusAway -C/data/-/IMPersonStatusChangedNotification -C/econst/-/IMPersonStatusIdle -C/data/-/IMPersonStatusKey -C/data/-/IMPersonStatusMessageKey -C/econst/-/IMPersonStatusNoStatus -C/econst/-/IMPersonStatusOffline -C/econst/-/IMPersonStatusUnknown -JavaScript/data/Document/implementation -JavaScript/clconst/WebGLRenderingContext/IMPLEMENTATION_COLOR_READ_FORMAT -JavaScript/clconst/WebGLRenderingContext/IMPLEMENTATION_COLOR_READ_TYPE -Objective-C/instm/NSScriptClassDescription/implementationClassName -JavaScript/clconst/CSSRule/IMPORT_RULE -Objective-C/intfm/ApertureEditManager/importedVersionIds -C/tdef/-/ImporterImportData -Objective-C/intfm/ApertureEditManager/importImageAtPath:referenced:stackWithVersions: -JavaScript/instm/Document/importNode -JavaScript/instm/WorkerContext/importScripts -Objective-C/instm/NSTextField/importsGraphics -Objective-C/instm/NSTextView/importsGraphics -Objective-C/instm/NSText/importsGraphics -Objective-C/instm/NSCell/importsGraphics -Objective-C/instm/NSPersistentStoreCoordinator/importStoreWithIdentifier:fromExternalRecordsDirectory:toURL:options:withType:error: -JavaScript/instm/XSLTProcessor/importStylesheet -Objective-C/cl/-/IMService -C/tdef/-/IMServiceStatus -C/data/-/IMServiceStatusChangedNotification -C/econst/-/IMServiceStatusDisconnected -C/econst/-/IMServiceStatusLoggedIn -C/econst/-/IMServiceStatusLoggedOut -C/econst/-/IMServiceStatusLoggingIn -C/econst/-/IMServiceStatusLoggingOut -C/data/-/IMStatusImagesChangedAppearanceNotification -Objective-C/cat/-/IMVideoDataSource -C/econst/-/IMVideoOptimizationDefault -C/tdef/-/IMVideoOptimizationOptions -C/econst/-/IMVideoOptimizationReplacement -C/econst/-/IMVideoOptimizationStills -JavaScript/data/SVGFEMergeNodeElement/in1 -JavaScript/data/SVGFETileElement/in1 -JavaScript/data/SVGFEOffsetElement/in1 -JavaScript/data/SVGFEColorMatrixElement/in1 -JavaScript/data/SVGFECompositeElement/in1 -JavaScript/data/SVGFEMorphologyElement/in1 -JavaScript/data/SVGFEComponentTransferElement/in1 -JavaScript/data/SVGFEDiffuseLightingElement/in1 -JavaScript/data/SVGFESpecularLightingElement/in1 -JavaScript/data/SVGFEBlendElement/in1 -JavaScript/data/SVGFEGaussianBlurElement/in1 -JavaScript/data/SVGFEDisplacementMapElement/in1 -JavaScript/data/SVGFEDisplacementMapElement/in2 -JavaScript/data/SVGFECompositeElement/in2 -JavaScript/data/SVGFEBlendElement/in2 -C/func/-/in_wch -C/func/-/in_wchnstr -C/func/-/in_wchstr -C/func/-/inch -C/func/-/inchnstr -C/func/-/inchstr -Objective-C/instm/NSDictionaryController/includedKeys -Objective-C/binding/NSDictionaryController/includedKeys -Objective-C/instm/NSFetchRequest/includesPendingChanges -Objective-C/instm/NSFetchRequest/includesPropertyValues -Objective-C/instm/NSFetchRequest/includesSubentities -C/econst/-/incompatibleVoice -JavaScript/clconst/WebGLRenderingContext/INCR -JavaScript/clconst/WebGLRenderingContext/INCR_WRAP -Objective-C/instm/NSMutableData/increaseLengthBy: -Objective-C/instm/NSStepper/increment -Objective-C/instm/NSStepperCell/increment -Objective-C/instm/NSBitmapImageRep/incrementalLoadFromData:complete: -Objective-C/instm/NSProgressIndicator/incrementBy: -C++/instm/IOBlockStorageDriver/incrementErrors -C++/instm/IOSCSIParallelInterfaceController/IncrementRealizedDataTransferCount -C++/instm/IOBlockStorageDriver/incrementRetries -Objective-C/instm/QTSampleBuffer/incrementSampleUseCount -Objective-C/instm/NSResponder/indent: -Objective-C/instm/NSMenuItem/indentationLevel -Objective-C/instm/NSOutlineView/indentationMarkerFollowsCell -Objective-C/instm/NSOutlineView/indentationPerLevel -Objective-C/instm/NSConnection/independentConversationQueueing -JavaScript/data/HTMLInputElement/indeterminate -JavaScript/data/HTMLDataGridCellElement/indeterminate -Objective-C/instm/NSIndexSpecifier/index -Objective-C/instm/PDFOutline/index -Objective-C/instm/NSXMLNode/index -C/func/-/index -JavaScript/data/HTMLOptionElement/index -JavaScript/clconst/DOMCoreException/INDEX_SIZE_ERR -Objective-C/instm/IKImageBrowserView/indexAtLocationOfDroppedItem -Objective-C/instm/NSIndexPath/indexAtPosition: -JavaScript/cl/-/IndexedDatabaseRequest -JavaScript/data/DOMWindow/indexedDB -Objective-C/instm/NSIndexSet/indexesInRange:options:passingTest: -Objective-C/instm/NSArray/indexesOfObjectsAtIndexes:options:passingTest: -Objective-C/instm/NSArray/indexesOfObjectsPassingTest: -Objective-C/instm/NSArray/indexesOfObjectsWithOptions:passingTest: -Objective-C/instm/NSIndexSet/indexesPassingTest: -Objective-C/instm/NSIndexSet/indexesWithOptions:passingTest: -Objective-C/instm/ABMultiValue/indexForIdentifier: -Objective-C/instm/PDFDocument/indexForPage: -Objective-C/instm/NSIndexSet/indexGreaterThanIndex: -Objective-C/instm/NSIndexSet/indexGreaterThanOrEqualToIndex: -Objective-C/instm/NSIndexSet/indexInRange:options:passingTest: -Objective-C/instm/NSIndexSet/indexLessThanIndex: -Objective-C/instm/NSIndexSet/indexLessThanOrEqualToIndex: -Objective-C/instm/NSForm/indexOfCellWithTag: -Objective-C/instm/IKSlideshow/indexOfCurrentSlideshowItem -Objective-C/instm/NSPopUpButton/indexOfItem: -Objective-C/instm/NSPopUpButtonCell/indexOfItem: -Objective-C/instm/NSMenu/indexOfItem: -Objective-C/instm/NSMenuView/indexOfItemAtPoint: -Objective-C/instm/IKImageBrowserView/indexOfItemAtPoint: -Objective-C/instm/NSComboBox/indexOfItemWithObjectValue: -Objective-C/instm/NSComboBoxCell/indexOfItemWithObjectValue: -Objective-C/instm/NSPopUpButtonCell/indexOfItemWithRepresentedObject: -Objective-C/instm/NSPopUpButton/indexOfItemWithRepresentedObject: -Objective-C/instm/NSMenu/indexOfItemWithRepresentedObject: -Objective-C/instm/NSMenu/indexOfItemWithSubmenu: -Objective-C/instm/NSPopUpButton/indexOfItemWithTag: -Objective-C/instm/NSPopUpButtonCell/indexOfItemWithTag: -Objective-C/instm/NSMenu/indexOfItemWithTag: -Objective-C/instm/NSPopUpButtonCell/indexOfItemWithTarget:andAction: -Objective-C/instm/NSPopUpButton/indexOfItemWithTarget:andAction: -Objective-C/instm/NSMenu/indexOfItemWithTarget:andAction: -Objective-C/instm/NSPopUpButtonCell/indexOfItemWithTitle: -Objective-C/instm/NSPopUpButton/indexOfItemWithTitle: -Objective-C/instm/NSMenu/indexOfItemWithTitle: -Objective-C/instm/NSArray/indexOfObject: -Objective-C/instm/NSArray/indexOfObject:inRange: -Objective-C/instm/NSArray/indexOfObject:inSortedRange:options:usingComparator: -Objective-C/instm/NSArray/indexOfObjectAtIndexes:options:passingTest: -Objective-C/instm/NSArray/indexOfObjectIdenticalTo: -Objective-C/instm/NSArray/indexOfObjectIdenticalTo:inRange: -Objective-C/instm/NSArray/indexOfObjectPassingTest: -Objective-C/instm/NSArray/indexOfObjectWithOptions:passingTest: -Objective-C/instm/NSPasteboard/indexOfPasteboardItem: -Objective-C/instm/IKImageBrowserCell/indexOfRepresentedItem -Objective-C/instm/NSMetadataQuery/indexOfResult: -Objective-C/instm/NSForm/indexOfSelectedItem -Objective-C/instm/NSPopUpButtonCell/indexOfSelectedItem -Objective-C/instm/NSPopUpButton/indexOfSelectedItem -Objective-C/instm/NSComboBox/indexOfSelectedItem -Objective-C/instm/NSComboBoxCell/indexOfSelectedItem -Objective-C/instm/NSTabView/indexOfTabViewItem: -Objective-C/instm/NSTabView/indexOfTabViewItemWithIdentifier: -Objective-C/instm/NSSlider/indexOfTickMarkAtPoint: -Objective-C/instm/NSSliderCell/indexOfTickMarkAtPoint: -Objective-C/instm/NSIndexSet/indexPassingTest: -Objective-C/instm/NSTreeNode/indexPath -Objective-C/instm/NSIndexPath/indexPathByAddingIndex: -Objective-C/instm/NSIndexPath/indexPathByRemovingLastIndex -Objective-C/instm/NSBrowser/indexPathForColumn: -Objective-C/clm/NSIndexPath/indexPathWithIndex: -Objective-C/clm/NSIndexPath/indexPathWithIndexes:length: -Objective-C/clm/NSIndexSet/indexSet -Objective-C/clm/NSIndexSet/indexSetWithIndex: -Objective-C/clm/NSIndexSet/indexSetWithIndexesInRange: -Objective-C/instm/NSIndexSet/indexWithOptions:passingTest: -Objective-C/instm/NSTableView/indicatorImageInTableColumn: -Objective-C/instm/NSObject/indicesOfObjectsByEvaluatingObjectSpecifier: -Objective-C/instm/NSScriptObjectSpecifier/indicesOfObjectsByEvaluatingWithContainer:count: -C/func/-/inet -C/func/-/inet6_option_alloc -C/func/-/inet6_option_append -C/func/-/inet6_option_find -C/func/-/inet6_option_init -C/func/-/inet6_option_next -C/func/-/inet6_option_space -C/func/-/inet6_rthdr_add -C/func/-/inet6_rthdr_getaddr -C/func/-/inet6_rthdr_getflags -C/func/-/inet6_rthdr_init -C/func/-/inet6_rthdr_lasthop -C/func/-/inet6_rthdr_reverse -C/func/-/inet6_rthdr_segments -C/func/-/inet6_rthdr_space -C/func/-/inet_addr -C/func/-/inet_arp_handle_input -C/func/-/inet_arp_init_ifaddr -C/func/-/inet_arp_lookup -C/func/-/inet_aton -C/func/-/inet_lnaof -C/func/-/inet_makeaddr -C/func/-/inet_net -C/func/-/inet_net_ntop -C/func/-/inet_net_pton -C/func/-/inet_netof -C/func/-/inet_network -C/func/-/inet_ntop -C/func/-/inet_pton -Objective-C/clm/NSMappingModel/inferredMappingModelForSourceModel:destinationModel:error: -Objective-C/instm/DRDevice/info -C/tdef/-/info -JavaScript/instm/Console/info -JavaScript/clconst/WebGLRenderingContext/INFO_LOG_LENGTH -Objective-C/instm/NSBundle/infoDictionary -Objective-C/instm/IMService/infoForAllScreenNames -Objective-C/instm/NSObject/infoForBinding: -Objective-C/instm/IMService/infoForPreferredScreenNames -Objective-C/instm/IMService/infoForScreenName: -Objective-C/instm/NSAlert/informativeText -Objective-C/instp/QLPreviewPanel/inFullScreenMode -Objective-C/instm/QLPreviewPanel/inFullScreenMode -C++/instm/IOWorkLoop/inGate -Objective-C/instm/ABIdentityPicker/init -Objective-C/instm/SBObject/init -Objective-C/instm/NSPipe/init -Objective-C/instm/PDFActionResetForm/init -Objective-C/instm/PDFOutline/init -Objective-C/instm/NSSocketPort/init -Objective-C/instm/NSOperation/init -Objective-C/instm/NSDocument/init -Objective-C/instm/NSShadow/init -Objective-C/instm/NSDateFormatter/init -Objective-C/instm/NSLayoutManager/init -Objective-C/instm/NSMetadataQuery/init -Objective-C/instm/NSNetServiceBrowser/init -Objective-C/instm/NSSpeechRecognizer/init -Objective-C/instm/NSTextBlock/init -Objective-C/instm/ABRecord/init -Objective-C/instm/NSIndexSet/init -Objective-C/instm/CWWirelessProfile/init -Objective-C/instm/NSTask/init -Objective-C/instm/CW8021XProfile/init -Objective-C/instm/CWConfiguration/init -Objective-C/instm/CWInterface/init -Objective-C/instm/SFAuthorization/init -C++/instm/IONetworkInterface/init -C++/instm/IOEthernetInterface/init -C++/instm/IONetworkController/init -C++/instm/IOEthernetController/init -C++/instm/IONetworkMedium/init -Objective-C/instm/NSDocumentController/init -Objective-C/instm/NSUserDefaults/init -Objective-C/instm/NSThread/init -Objective-C/instm/NSObject/init -C++/instm/IOATABusCommand/init -C++/instm/IOFilterInterruptEventSource/init -C++/instm/IOAudioEngine/init -C++/instm/IOAudioLevelControl/init -C++/instm/IOCommandPool/init -C++/instm/IOBlockStorageDevice/init -C++/instm/ATATimerEventSource/init -C++/instm/IOBasicOutputQueue/init -C++/instm/IOBDBlockStorageDevice/init -C++/instm/IOEventSource/init -C++/instm/IOAudioDevice/init -C++/instm/ATADeviceNub/init -C++/instm/IOFireWireAVCTargetSpace/init -C++/instm/IOCatalogue/init -C++/instm/IOCommandGate/init -C++/instm/IOAudioToggleControl/init -C++/instm/IOAudioControl/init -C++/instm/IOFireWireDevice/init -C++/instm/IOHIDInterface/init -C++/instm/IOFireWirePCRSpace/init -C++/instm/IOHIDDevice/init -C++/instm/IONetworkData/init -C++/instm/IOKernelDebugger/init -C++/instm/IOInterruptEventSource/init -C++/instm/IOOutputQueue/init -C++/instm/IOFWPhysicalAddressSpace/init -C++/instm/IOGatedOutputQueue/init -C++/instm/IOMedia/init -C++/instm/IOFireWireSerialBusProtocolTransport/init -C++/instm/IORegistryEntry/init -C++/instm/IORangeAllocator/init -C++/instm/IOWorkLoop/init -C++/instm/IOTimerEventSource/init -C++/instm/OSCollection/init -C++/instm/OSNumber/init -C++/instm/OSObject/init -Objective-C/instm/NSString/init -Objective-C/instm/NSDate/init -Objective-C/instm/NSFileManager/init -Objective-C/instm/CALayer/init -C/func/-/init_agent -C/func/-/init_color -C/func/-/init_master_agent -C/func/-/init_mib -C/func/-/init_mib_internals -C/func/-/init_my_mib_code -C/func/-/init_pair -C/func/-/init_snmp -C++/instm/IOFWPseudoAddressSpace/initAll -C++/instm/IOFWAsyncStreamListener/initAll -Objective-C/instm/NSLogicalTest/initAndTestWithTests: -Objective-C/instm/NSMenuView/initAsTearOff -JavaScript/instm/BeforeLoadEvent/initBeforeLoadEvent -Objective-C/instm/NSImage/initByReferencingFile: -Objective-C/instm/NSImage/initByReferencingURL: -Objective-C/instm/NSURL/initByResolvingBookmarkData:options:relativeToURL:bookmarkDataIsStale:error: -JavaScript/instm/CompositionEvent/initCompositionEvent -JavaScript/instm/CustomEvent/initCustomEvent -Objective-C/instm/CalRecurrenceRule/initDailyRecurrenceWithInterval:end: -C/func/-/InitDataBrowserCallbacks -C/func/-/InitDataBrowserCustomCallbacks -Objective-C/instm/NSFileWrapper/initDirectoryWithFileWrappers: -C++/tag/IODeviceMemory/InitElement -JavaScript/instm/ErrorEvent/initErrorEvent -JavaScript/instm/Event/initEvent -C/func/-/initFileSink -C/func/-/initFileSource -Objective-C/instm/NSURL/initFileURLWithPath: -Objective-C/instm/NSURL/initFileURLWithPath:isDirectory: -C++/instm/IOFWPseudoAddressSpace/initFixed -Objective-C/instm/IOBluetoothHeadsetDevice/initForConnectionToDevice:delegate: -Objective-C/instm/IOBluetoothRFCOMMAudioController/initForConnectionToDevice:delegate: -Objective-C/instm/IOBluetoothHandsFreeGateway/initForConnectionToDevice:supportedFeatures:delegate: -Objective-C/instm/NSBitmapImageRep/initForIncrementalLoad -Objective-C/instm/NSUnarchiver/initForReadingWithData: -Objective-C/instm/NSKeyedUnarchiver/initForReadingWithData: -Objective-C/instm/NSDocument/initForURL:withContentsOfURL:ofType:error: -Objective-C/instm/NSArchiver/initForWritingWithMutableData: -Objective-C/instm/NSKeyedArchiver/initForWritingWithMutableData: -C/func/-/initgroups -C++/instm/IOAudioDevice/initHardware -C++/instm/IOAudioEngine/initHardware -JavaScript/clconst/IDBRequest/INITIAL -Objective-C/instm/NSTabViewItem/initialFirstResponder -Objective-C/instm/NSWindow/initialFirstResponder -C/func/-/Initialize -C++/clm/IOEthernetController/initialize -Objective-C/clm/NSObject/initialize -C++/clm/IOCatalogue/initialize -JavaScript/instm/SVGNumberList/initialize -JavaScript/instm/SVGLengthList/initialize -JavaScript/instm/SVGPathSegList/initialize -JavaScript/instm/SVGStringList/initialize -JavaScript/instm/SVGPointList/initialize -JavaScript/instm/SVGTransformList/initialize -C++/instm/IOSCSIParallelInterfaceController/InitializeController -C++/instm/IOSCSIParallelInterfaceController/InitializeDMASpecification -C++/instm/IOSCSIProtocolInterface/InitializePowerManagement -C++/instm/IOSCSIParallelInterfaceController/InitializeTargetForID -C/func/-/InitializeTerminate -JavaScript/instm/Document/initializeWMLPageState -Objective-C/instm/NSDictionaryController/initialKey -Objective-C/binding/NSDictionaryController/initialKey -Objective-C/instm/NSPreferencePane/initialKeyView -C++/instm/IOService/initialPowerStateForDomainState -C++/instm/IOSCSIProtocolInterface/initialPowerStateForDomainState -Objective-C/instm/WebDataSource/initialRequest -Objective-C/instm/NSDictionaryController/initialValue -Objective-C/binding/NSDictionaryController/initialValue -Objective-C/instm/NSUserDefaultsController/initialValues -C++/instm/IOAudioDevice/initiatePowerStateChange -C++/instm/IONetworkInterface/initIfnet -Objective-C/instm/NSCell/initImageCell: -C/func/-/initInputBuffer -C++/instm/OSCollection/initIterator -JavaScript/instm/KeyboardEvent/initKeyboardEvent -C++/clm/IOAudioEngine/initKeys -Objective-C/instm/NSAppleEventDescriptor/initListDescriptor -C++/instm/IOBlockStorageDriver/initMediaState -JavaScript/instm/MessageEvent/initMessageEvent -Objective-C/instm/CalRecurrenceRule/initMonthlyRecurrenceWithInterval:end: -Objective-C/instm/CalRecurrenceRule/initMonthlyRecurrenceWithInterval:forDayOfTheWeek:forWeekOfTheMonth:end: -Objective-C/instm/CalRecurrenceRule/initMonthlyRecurrenceWithInterval:forDaysOfTheMonth:end: -JavaScript/instm/MouseEvent/initMouseEvent -JavaScript/instm/MutationEvent/initMutationEvent -Objective-C/instm/NSLogicalTest/initNotTestWithTest: -Objective-C/instm/IOBluetoothObjectPushUIController/initObjectPushWithBluetoothDevice:withFiles:delegate: -Objective-C/instm/QCRenderer/initOffScreenWithSize:colorSpace:composition: -Objective-C/instm/NSLogicalTest/initOrTestWithTests: -C/func/-/initOutputBuffer -JavaScript/instm/OverflowEvent/initOverflowEvent -JavaScript/instm/PageTransitionEvent/initPageTransitionEvent -JavaScript/instm/PopStateEvent/initPopStateEvent -JavaScript/instm/ProgressEvent/initProgressEvent -Objective-C/instm/NSAppleEventDescriptor/initRecordDescriptor -Objective-C/instm/NSFileWrapper/initRegularFileWithContents: -Objective-C/instm/NSSocketPort/initRemoteWithProtocolFamily:socketType:protocol:address: -Objective-C/instm/NSSocketPort/initRemoteWithTCPPort:host: -C/func/-/initscr -C/func/-/initstate -JavaScript/instm/StorageEvent/initStorageEvent -Objective-C/instm/NSFileWrapper/initSymbolicLinkWithDestination: -Objective-C/instm/NSFileWrapper/initSymbolicLinkWithDestinationURL: -Objective-C/instm/NSFormCell/initTextCell: -Objective-C/instm/NSCell/initTextCell: -Objective-C/instm/NSPopUpButtonCell/initTextCell:pullsDown: -JavaScript/instm/TextEvent/initTextEvent -Objective-C/instm/NSOutputStream/initToBuffer:capacity: -Objective-C/instm/NSOutputStream/initToFileAtPath:append: -Objective-C/instm/NSOutputStream/initToMemory -JavaScript/instm/TouchEvent/initTouchEvent -Objective-C/instm/QTMovie/initToWritableData:error: -Objective-C/instm/QTMovie/initToWritableDataReference:error: -Objective-C/instm/QTMovie/initToWritableFile:error: -JavaScript/instm/UIEvent/initUIEvent -JavaScript/instm/WebKitAnimationEvent/initWebKitAnimationEvent -JavaScript/instm/WebKitTransitionEvent/initWebKitTransitionEvent -JavaScript/instm/WheelEvent/initWebKitWheelEvent -Objective-C/instm/CalRecurrenceRule/initWeeklyRecurrenceWithInterval:end: -Objective-C/instm/CalRecurrenceRule/initWeeklyRecurrenceWithInterval:forDaysOfTheWeek:end: -JavaScript/instm/WheelEvent/initWheelEvent -Objective-C/instm/ABRecord/initWithAddressBook: -Objective-C/instm/NSAppleEventDescriptor/initWithAEDescNoCopy: -Objective-C/intfm/ApertureEditPlugIn/initWithAPIManager: -Objective-C/intfm/ApertureExportPlugIn/initWithAPIManager: -Objective-C/instm/FxHostCapabilities/initWithAPIManager: -C++/instm/OSArray/initWithArray -C++/instm/OSSet/initWithArray -Objective-C/instm/NSCountedSet/initWithArray: -Objective-C/instm/NSSet/initWithArray: -Objective-C/instm/NSArray/initWithArray: -Objective-C/instm/NSArray/initWithArray:copyItems: -Objective-C/instm/CAConstraint/initWithAttribute:relativeTo:attribute:scale:offset: -Objective-C/instm/NSAttributedString/initWithAttributedString: -C++/instm/IOAudioPort/initWithAttributes -Objective-C/instm/NSOpenGLPixelFormat/initWithAttributes: -Objective-C/instm/QTMovie/initWithAttributes:error: -Objective-C/instm/AUGenericView/initWithAudioUnit: -Objective-C/instm/AUGenericView/initWithAudioUnit:displayFlags: -Objective-C/instm/NSURLAuthenticationChallenge/initWithAuthenticationChallenge:sender: -C++/instm/IOATADevConfig/initWithBestSelection -Objective-C/instm/CIImage/initWithBitmapData:bytesPerRow:size:format:colorSpace: -Objective-C/instm/NSBitmapImageRep/initWithBitmapDataPlanes:pixelsWide:pixelsHigh:bitsPerSample:samplesPerPixel:hasAlpha:isPlanar:colorSpaceName:bitmapFormat:bytesPerRow:bitsPerPixel: -Objective-C/instm/NSBitmapImageRep/initWithBitmapDataPlanes:pixelsWide:pixelsHigh:bitsPerSample:samplesPerPixel:hasAlpha:isPlanar:colorSpaceName:bytesPerRow:bitsPerPixel: -Objective-C/instm/CIImage/initWithBitmapImageRep: -Objective-C/instm/NSNumber/initWithBool: -Objective-C/instm/PDFAnnotation/initWithBounds: -C++/instm/IOStream/initWithBuffers -Objective-C/instm/NSPreferencePane/initWithBundle: -Objective-C/instm/NSObject/initWithBundle: -Objective-C/instm/SBApplication/initWithBundleIdentifier: -C++/instm/OSData/initWithBytes -Objective-C/instm/IOBluetoothSDPUUID/initWithBytes:length: -Objective-C/instm/NSData/initWithBytes:length: -Objective-C/instm/NSString/initWithBytes:length:encoding: -Objective-C/instm/NSValue/initWithBytes:objCType: -C++/instm/OSData/initWithBytesNoCopy -Objective-C/instm/NSData/initWithBytesNoCopy:length: -Objective-C/instm/NSString/initWithBytesNoCopy:length:encoding:freeWhenDone: -Objective-C/instm/NSData/initWithBytesNoCopy:length:freeWhenDone: -Objective-C/instm/NSCalendar/initWithCalendarIdentifier: -Objective-C/instm/SFAuthorizationPluginView/initWithCallbacks:andEngineRef: -C++/instm/IODataQueue/initWithCapacity -C++/instm/IOInterleavedMemoryDescriptor/initWithCapacity -C++/instm/IOPacketQueue/initWithCapacity -C++/instm/IOSharedDataQueue/initWithCapacity -C++/instm/OSArray/initWithCapacity -C++/instm/OSDictionary/initWithCapacity -C++/instm/OSData/initWithCapacity -C++/instm/OSSet/initWithCapacity -C++/instm/OSOrderedSet/initWithCapacity -Objective-C/instm/NSMutableSet/initWithCapacity: -Objective-C/instm/NSMutableData/initWithCapacity: -Objective-C/instm/NSMutableString/initWithCapacity: -Objective-C/instm/NSCountedSet/initWithCapacity: -Objective-C/instm/NSMutableDictionary/initWithCapacity: -Objective-C/instm/NSMutableArray/initWithCapacity: -Objective-C/instm/CIColor/initWithCGColor: -Objective-C/instm/NSColorSpace/initWithCGColorSpace: -Objective-C/instm/CIImage/initWithCGImage: -Objective-C/instm/NSBitmapImageRep/initWithCGImage: -Objective-C/instm/CIImage/initWithCGImage:options: -Objective-C/instm/NSImage/initWithCGImage:size: -Objective-C/instm/CIImage/initWithCGLayer: -Objective-C/instm/CIImage/initWithCGLayer:options: -Objective-C/instm/QCRenderer/initWithCGLContext:pixelFormat:colorSpace:composition: -Objective-C/instm/NSOpenGLContext/initWithCGLContextObj: -Objective-C/instm/NSOpenGLPixelBuffer/initWithCGLPBufferObj: -Objective-C/instm/NSOpenGLPixelFormat/initWithCGLPixelFormatObj: -Objective-C/instm/ISyncChange/initWithChangeType:recordIdentifier:changes: -Objective-C/instm/NSNumber/initWithChar: -Objective-C/instm/NSString/initWithCharacters:length: -Objective-C/instm/NSString/initWithCharactersNoCopy:length:freeWhenDone: -Objective-C/instm/NSCIImageRep/initWithCIImage: -Objective-C/instm/NSBitmapImageRep/initWithCIImage: -Objective-C/instm/NSTextInputContext/initWithClient: -Objective-C/intfm/NSCoding/initWithCoder: -C++/instm/OSCollectionIterator/initWithCollection -Objective-C/instm/CIColor/initWithColor: -Objective-C/instm/CIImage/initWithColor: -Objective-C/instm/NSGradient/initWithColors: -Objective-C/instm/NSGradient/initWithColors:atLocations:colorSpace: -Objective-C/instm/NSGradient/initWithColorsAndLocations: -Objective-C/instm/NSColorSpace/initWithColorSyncProfile: -Objective-C/instm/NSScriptCommand/initWithCommandDescription: -Objective-C/instm/QCCompositionLayer/initWithComposition: -Objective-C/instm/QCRenderer/initWithComposition:colorSpace: -Objective-C/instm/NSPredicateEditorRowTemplate/initWithCompoundTypes: -Objective-C/instm/NSConditionLock/initWithCondition: -Objective-C/instm/XGController/initWithConnection: -Objective-C/instm/NSScriptObjectSpecifier/initWithContainerClassDescription:containerSpecifier:key: -Objective-C/instm/NSIndexSpecifier/initWithContainerClassDescription:containerSpecifier:key:index: -Objective-C/instm/NSNameSpecifier/initWithContainerClassDescription:containerSpecifier:key:name: -Objective-C/instm/NSRelativeSpecifier/initWithContainerClassDescription:containerSpecifier:key:relativePosition:baseSpecifier: -Objective-C/instm/NSRangeSpecifier/initWithContainerClassDescription:containerSpecifier:key:startSpecifier:endSpecifier: -Objective-C/instm/NSWhoseSpecifier/initWithContainerClassDescription:containerSpecifier:key:test: -Objective-C/instm/NSUniqueIDSpecifier/initWithContainerClassDescription:containerSpecifier:key:uniqueID: -Objective-C/instm/NSTextContainer/initWithContainerSize: -Objective-C/instm/NSScriptObjectSpecifier/initWithContainerSpecifier:key: -Objective-C/instm/NSObjectController/initWithContent: -Objective-C/instm/NSWindow/initWithContentRect:styleMask:backing:defer: -Objective-C/instm/NSWindow/initWithContentRect:styleMask:backing:defer:screen: -Objective-C/instm/NSDrawer/initWithContentSize:preferredEdge: -Objective-C/instm/NSDictionary/initWithContentsOfFile: -Objective-C/instm/NSImage/initWithContentsOfFile: -Objective-C/instm/NSArray/initWithContentsOfFile: -Objective-C/instm/NSString/initWithContentsOfFile: -Objective-C/instm/NSData/initWithContentsOfFile: -Objective-C/instm/NSSound/initWithContentsOfFile:byReference: -Objective-C/instm/NSString/initWithContentsOfFile:encoding:error: -Objective-C/instm/NSDocument/initWithContentsOfFile:ofType: -Objective-C/instm/NSData/initWithContentsOfFile:options:error: -Objective-C/instm/NSString/initWithContentsOfFile:usedEncoding:error: -Objective-C/instm/NSData/initWithContentsOfMappedFile: -Objective-C/instm/CIFilterGenerator/initWithContentsOfURL: -Objective-C/instm/CIImage/initWithContentsOfURL: -Objective-C/instm/NSNib/initWithContentsOfURL: -Objective-C/instm/NSMappingModel/initWithContentsOfURL: -Objective-C/instm/NSManagedObjectModel/initWithContentsOfURL: -Objective-C/instm/NSDictionary/initWithContentsOfURL: -Objective-C/instm/NSImage/initWithContentsOfURL: -Objective-C/instm/NSArray/initWithContentsOfURL: -Objective-C/instm/NSString/initWithContentsOfURL: -Objective-C/instm/NSXMLParser/initWithContentsOfURL: -Objective-C/instm/NSData/initWithContentsOfURL: -Objective-C/instm/NSSound/initWithContentsOfURL:byReference: -Objective-C/instm/NSString/initWithContentsOfURL:encoding:error: -Objective-C/instm/AMWorkflow/initWithContentsOfURL:error: -Objective-C/instm/NSAppleScript/initWithContentsOfURL:error: -Objective-C/instm/AMAction/initWithContentsOfURL:error: -Objective-C/instm/NSDocument/initWithContentsOfURL:ofType: -Objective-C/instm/NSDocument/initWithContentsOfURL:ofType:error: -Objective-C/instm/CIImage/initWithContentsOfURL:options: -Objective-C/instm/NSXMLDocument/initWithContentsOfURL:options:error: -Objective-C/instm/NSXMLDTD/initWithContentsOfURL:options:error: -Objective-C/instm/NSData/initWithContentsOfURL:options:error: -Objective-C/instm/NSString/initWithContentsOfURL:usedEncoding:error: -Objective-C/instm/CAMediaTimingFunction/initWithControlPoints:::: -Objective-C/instm/CLLocation/initWithCoordinate:altitude:horizontalAccuracy:verticalAccuracy:timestamp: -Objective-C/instm/FxBitmap/initWithCopy: -C++/instm/OSSymbol/initWithCString -C++/instm/OSString/initWithCString -Objective-C/instm/NSString/initWithCString: -Objective-C/instm/NSString/initWithCString:encoding: -Objective-C/instm/NSString/initWithCString:length: -C++/instm/OSSymbol/initWithCStringNoCopy -C++/instm/OSString/initWithCStringNoCopy -Objective-C/instm/NSString/initWithCStringNoCopy:length:freeWhenDone: -Objective-C/instm/CIImage/initWithCVImageBuffer: -Objective-C/instm/CIImage/initWithCVImageBuffer:options: -C++/instm/OSData/initWithData -Objective-C/instm/CIImage/initWithData: -Objective-C/instm/SBObject/initWithData: -Objective-C/instm/NSEPSImageRep/initWithData: -Objective-C/instm/NSPICTImageRep/initWithData: -Objective-C/instm/NSPDFImageRep/initWithData: -Objective-C/instm/PDFDocument/initWithData: -Objective-C/instm/WebArchive/initWithData: -Objective-C/instm/NSSound/initWithData: -Objective-C/instm/NSOpenGLPixelFormat/initWithData: -Objective-C/instm/NSInputStream/initWithData: -Objective-C/instm/IOBluetoothSDPUUID/initWithData: -Objective-C/instm/NSImage/initWithData: -Objective-C/instm/NSBitmapImageRep/initWithData: -Objective-C/instm/NSData/initWithData: -Objective-C/instm/NSXMLParser/initWithData: -Objective-C/instm/NSString/initWithData:encoding: -Objective-C/instm/QTMovie/initWithData:error: -Objective-C/instm/CIImage/initWithData:options: -Objective-C/instm/NSAttributedString/initWithData:options:documentAttributes:error: -Objective-C/instm/NSXMLDocument/initWithData:options:error: -Objective-C/instm/NSXMLDTD/initWithData:options:error: -Objective-C/instm/PSFeed/initWithData:URL: -Objective-C/instm/WebResource/initWithData:URL:MIMEType:textEncodingName:frameName: -Objective-C/instm/NSImage/initWithDataIgnoringOrientation: -Objective-C/instm/QTDataReference/initWithDataRef:type: -Objective-C/instm/QTDataReference/initWithDataRefData:type: -Objective-C/instm/QTMovie/initWithDataReference:error: -Objective-C/instm/NSDateFormatter/initWithDateFormat:allowNaturalLanguage: -Objective-C/instm/NSDecimalNumber/initWithDecimal: -Objective-C/instm/NSUserDefaultsController/initWithDefaults:initialValues: -Objective-C/instm/AMAction/initWithDefinition:fromArchive: -Objective-C/instm/AMBundleAction/initWithDefinition:fromArchive: -Objective-C/instm/IOBluetoothDeviceInquiry/initWithDelegate: -C++/instm/IOFWPhysicalAddressSpace/initWithDesc -C++/instm/IOMultiMemoryDescriptor/initWithDescriptors -Objective-C/instm/NSAppleEventDescriptor/initWithDescriptorType:bytes:length: -Objective-C/instm/NSAppleEventDescriptor/initWithDescriptorType:data: -Objective-C/instm/PDFActionGoTo/initWithDestination: -Objective-C/instm/QTCaptureDeviceInput/initWithDevice: -Objective-C/instm/DRBurn/initWithDevice: -Objective-C/instm/DRErase/initWithDevice: -Objective-C/instm/IOBluetoothOBEXSession/initWithDevice:channelID: -C++/instm/OSDictionary/initWithDictionary -Objective-C/instm/NSPrintInfo/initWithDictionary: -Objective-C/instm/NSDictionary/initWithDictionary: -Objective-C/instm/NSDictionary/initWithDictionary:copyItems: -C++/instm/IOFWPhysicalAddressSpace/initWithDMACommand -Objective-C/instm/NSAttributedString/initWithDocFormat:documentAttributes: -Objective-C/instm/PDFPage/initWithDocument: -Objective-C/instm/PDFOutline/initWithDocument: -Objective-C/instm/PDFSelection/initWithDocument: -Objective-C/instm/NSError/initWithDomain:code:userInfo: -Objective-C/instm/NSNetService/initWithDomain:type:name: -Objective-C/instm/NSNetService/initWithDomain:type:name:port: -Objective-C/instm/NSOrthography/initWithDominantScript:languageMap: -Objective-C/instm/NSNumber/initWithDouble: -Objective-C/instm/NSCustomImageRep/initWithDrawSelector:delegate: -Objective-C/instm/NSAnimation/initWithDuration:animationCurve: -Objective-C/instm/SBObject/initWithElementCode:properties:data: -Objective-C/instm/IOBluetoothSDPDataElement/initWithElementValue: -Objective-C/instm/NSManagedObject/initWithEntity:insertIntoManagedObjectContext: -C++/instm/IODataQueue/initWithEntries -Objective-C/instm/NSAppleEventDescriptor/initWithEventClass:eventID:targetDescriptor:returnID:transactionID: -Objective-C/instm/NSExpression/initWithExpressionType: -Objective-C/instm/CIImageAccumulator/initWithExtent:format: -Objective-C/instm/QCCompositionLayer/initWithFile: -Objective-C/instm/XGFileDownload/initWithFile:delegate: -Objective-C/instm/QTMovie/initWithFile:error: -Objective-C/instm/NSInputStream/initWithFileAtPath: -Objective-C/instm/NSFileHandle/initWithFileDescriptor: -Objective-C/instm/NSFileHandle/initWithFileDescriptor:closeOnDealloc: -Objective-C/instm/NSTextAttachment/initWithFileWrapper: -Objective-C/instm/NSTimer/initWithFireDate:interval:target:selector:userInfo:repeats: -Objective-C/instm/SFAuthorization/initWithFlags:rights:environment: -Objective-C/instm/NSNumber/initWithFloat: -Objective-C/instm/NSBitmapImageRep/initWithFocusedViewRect: -Objective-C/instm/NSFontDescriptor/initWithFontAttributes: -Objective-C/instm/DRMSFFormatter/initWithFormat: -Objective-C/instm/NSString/initWithFormat: -Objective-C/instm/NSString/initWithFormat:arguments: -Objective-C/instm/NSString/initWithFormat:locale: -Objective-C/instm/NSString/initWithFormat:locale:arguments: -Objective-C/instm/NSOpenGLContext/initWithFormat:shareContext: -Objective-C/instm/ScreenSaverView/initWithFrame: -Objective-C/instm/NSMenuView/initWithFrame: -Objective-C/instm/NSMatrix/initWithFrame: -Objective-C/instm/NSControl/initWithFrame: -Objective-C/instm/IKImageBrowserView/initWithFrame: -Objective-C/instm/NSTextView/initWithFrame: -Objective-C/instm/QTMovieView/initWithFrame: -Objective-C/instm/NSView/initWithFrame: -Objective-C/instm/IKFilterUIView/initWithFrame:filter: -Objective-C/instm/WebView/initWithFrame:frameName:groupName: -Objective-C/instm/ScreenSaverView/initWithFrame:isPreview: -Objective-C/instm/NSMatrix/initWithFrame:mode:cellClass:numberOfRows:numberOfColumns: -Objective-C/instm/NSMatrix/initWithFrame:mode:prototype:numberOfRows:numberOfColumns: -Objective-C/instm/NSOpenGLView/initWithFrame:pixelFormat: -Objective-C/instm/NSPopUpButton/initWithFrame:pullsDown: -Objective-C/instm/NSTextView/initWithFrame:textContainer: -Objective-C/instm/DRMSF/initWithFrames: -Objective-C/instm/NSURLProtectionSpace/initWithHost:port:protocol:realm:authenticationMethod: -Objective-C/instm/XGConnection/initWithHostname:portnumber: -Objective-C/instm/NSAttributedString/initWithHTML:baseURL:documentAttributes: -Objective-C/instm/NSAttributedString/initWithHTML:documentAttributes: -Objective-C/instm/NSAttributedString/initWithHTML:options:documentAttributes: -Objective-C/instm/NSColorSpace/initWithICCProfileData: -Objective-C/instm/NSImage/initWithIconRef: -Objective-C/instm/IOBluetoothSDPServiceAttribute/initWithID:attributeElement: -Objective-C/instm/IOBluetoothSDPServiceAttribute/initWithID:attributeElementValue: -Objective-C/instm/NSTableColumn/initWithIdentifier: -Objective-C/instm/NSTabViewItem/initWithIdentifier: -Objective-C/instm/WebPreferences/initWithIdentifier: -Objective-C/instm/NSToolbar/initWithIdentifier: -Objective-C/instm/NSURLCredential/initWithIdentity:certificates:persistence: -Objective-C/instm/CISampler/initWithImage: -Objective-C/instm/PDFPage/initWithImage: -Objective-C/instm/NSCursor/initWithImage:foregroundColorHint:backgroundColorHint:hotSpot: -Objective-C/instm/NSCursor/initWithImage:hotSpot: -Objective-C/instm/CISampler/initWithImage:keysAndValues: -Objective-C/instm/CISampler/initWithImage:options: -Objective-C/instm/IKSaveOptions/initWithImageProperties:imageUTType: -Objective-C/instm/CIImage/initWithImageProvider:size:format:colorSpace:options: -Objective-C/instm/IOBluetoothHeadsetDevice/initWithIncomingDevice:incomingRFCOMMChannelID:delegate: -Objective-C/instm/IOBluetoothRFCOMMAudioController/initWithIncomingDevice:incomingRFCOMMChannelID:delegate: -Objective-C/instm/IOBluetoothHandsFreeGateway/initWithIncomingDevice:incomingRFCOMMChannelID:supportedFeatures:delegate: -Objective-C/instm/IOBluetoothOBEXSession/initWithIncomingRFCOMMChannel:eventSelector:selectorTarget:refCon: -Objective-C/instm/NSIndexPath/initWithIndex: -Objective-C/instm/NSIndexSet/initWithIndex: -Objective-C/instm/NSIndexPath/initWithIndexes:length: -Objective-C/instm/NSIndexSet/initWithIndexesInRange: -Objective-C/instm/NSIndexSet/initWithIndexSet: -Objective-C/instm/FxImage/initWithInfo: -Objective-C/instm/FxBitmap/initWithInfo: -Objective-C/instm/FxTexture/initWithInfo: -Objective-C/instm/FxTexture/initWithInfo:andData: -Objective-C/instm/FxBitmap/initWithInfo:andData: -Objective-C/instm/FxBitmap/initWithInfo:andRowBytes:andData: -Objective-C/instm/FxTexture/initWithInfo:andTextureId: -Objective-C/instm/NSNumber/initWithInt: -Objective-C/instm/NSNumber/initWithInteger: -Objective-C/instm/CWInterface/initWithInterfaceName: -Objective-C/instm/NSInvocationOperation/initWithInvocation: -Objective-C/instm/NSToolbarItem/initWithItemIdentifier: -Objective-C/instm/NSSortDescriptor/initWithKey:ascending: -Objective-C/instm/NSSortDescriptor/initWithKey:ascending:comparator: -Objective-C/instm/NSSortDescriptor/initWithKey:ascending:selector: -Objective-C/instm/NSMapTable/initWithKeyOptions:valueOptions:capacity: -Objective-C/instm/NSMapTable/initWithKeyPointerFunctions:valuePointerFunctions:capacity: -Objective-C/instm/NSXMLNode/initWithKind: -Objective-C/instm/NSXMLNode/initWithKind:options: -Objective-C/instm/DRCDTextBlock/initWithLanguage:encoding: -Objective-C/instm/CLLocation/initWithLatitude:longitude: -Objective-C/instm/CALayer/initWithLayer: -Objective-C/instm/NSComparisonPredicate/initWithLeftExpression:rightExpression:customSelector: -Objective-C/instm/NSComparisonPredicate/initWithLeftExpression:rightExpression:modifier:type:options: -Objective-C/instm/NSPredicateEditorRowTemplate/initWithLeftExpressions:rightExpressionAttributeType:modifier:operators:options: -Objective-C/instm/NSPredicateEditorRowTemplate/initWithLeftExpressions:rightExpressions:modifier:operators:options: -Objective-C/instm/NSMutableData/initWithLength: -Objective-C/instm/NSLevelIndicatorCell/initWithLevelIndicatorStyle: -Objective-C/instm/DRFile(VirtualLinks)/initWithLinkType:pointingTo:inFilesystem: -Objective-C/instm/NSDistantObject/initWithLocal:connection: -Objective-C/instm/NSLocale/initWithLocaleIdentifier: -Objective-C/instm/NSNumber/initWithLong: -Objective-C/instm/NSNumber/initWithLongLong: -Objective-C/instm/NSMachPort/initWithMachPort: -Objective-C/instm/NSMachPort/initWithMachPort:options: -Objective-C/instm/WebArchive/initWithMainResource:subresources:subframeArchives: -Objective-C/instm/NSPersistentStoreCoordinator/initWithManagedObjectModel: -Objective-C/instm/NSDecimalNumber/initWithMantissa:exponent:isNegative: -Objective-C/instm/NSTextList/initWithMarkerFormat:options: -Objective-C/instm/NSURLCache/initWithMemoryCapacity:diskCapacity:diskPath: -C++/instm/IOStreamBuffer/initWithMemoryDescriptors -Objective-C/instm/QTMovieLayer/initWithMovie: -Objective-C/instm/QTMovie/initWithMovie:timeRange:error: -Objective-C/instm/NSColorList/initWithName: -Objective-C/instm/NSXMLElement/initWithName: -Objective-C/instm/PDFActionNamed/initWithName: -Objective-C/instm/NSTimeZone/initWithName: -Objective-C/instm/DRFolder(VirtualFolders)/initWithName: -Objective-C/instm/IMKServer/initWithName:bundleIdentifier: -Objective-C/instm/IMKServer/initWithName:controllerClass:delegateClass: -Objective-C/instm/NSTimeZone/initWithName:data: -Objective-C/instm/DRFile(VirtualFiles)/initWithName:data: -Objective-C/instm/DRFile(VirtualFiles)/initWithName:dataProducer: -Objective-C/instm/NSColorList/initWithName:fromFile: -Objective-C/instm/NSException/initWithName:reason:userInfo: -Objective-C/instm/NSXMLElement/initWithName:stringValue: -Objective-C/instm/NSXMLElement/initWithName:URI: -Objective-C/instm/WebFrame/initWithName:webFrameView:webView: -Objective-C/instm/XGConnection/initWithNetService: -Objective-C/instm/DRSetupPanel/initWithNibName: -Objective-C/instm/NSViewController/initWithNibName:bundle: -Objective-C/instm/NSNib/initWithNibNamed:bundle: -Objective-C/instm/ODQuery/initWithNode:forRecordTypes:attribute:matchType:queryValues:returnAttributes:maximumResults:error: -Objective-C/instm/NSNotificationQueue/initWithNotificationCenter: -Objective-C/instm/NSAtomicStoreCacheNode/initWithObjectID: -C++/instm/OSArray/initWithObjects -C++/instm/OSDictionary/initWithObjects -C++/instm/OSSet/initWithObjects -Objective-C/instm/NSSet/initWithObjects: -Objective-C/instm/NSArray/initWithObjects: -Objective-C/instm/NSSet/initWithObjects:count: -Objective-C/instm/NSArray/initWithObjects:count: -Objective-C/instm/NSDictionary/initWithObjects:forKeys: -Objective-C/instm/NSDictionary/initWithObjects:forKeys:count: -Objective-C/instm/NSDictionary/initWithObjectsAndKeys: -Objective-C/instm/NSSpecifierTest/initWithObjectSpecifier:comparisonOperator:testObject: -Objective-C/instm/QCRenderer/initWithOpenGLContext:pixelFormat:file: -C++/instm/IOMemoryDescriptor/initWithOptions -Objective-C/instm/NSPointerFunctions/initWithOptions: -Objective-C/instm/NSPointerArray/initWithOptions: -Objective-C/instm/NSHashTable/initWithOptions:capacity: -Objective-C/instm/ODSession/initWithOptions:error: -Objective-C/instm/PDFDestination/initWithPage:atPoint: -Objective-C/instm/PDFActionRemoteGoTo/initWithPageIndex:atPoint:fileURL: -Objective-C/instm/NSSound/initWithPasteboard: -Objective-C/instm/NSImage/initWithPasteboard: -Objective-C/instm/QTMovie/initWithPasteboard:error: -Objective-C/intfm/NSPasteboardReading/initWithPasteboardPropertyList:ofType: -Objective-C/instm/NSDistributedLock/initWithPath: -Objective-C/instm/DRFile/initWithPath: -Objective-C/instm/DRFolder/initWithPath: -Objective-C/instm/NSBundle/initWithPath: -Objective-C/instm/NSFileWrapper/initWithPath: -Objective-C/instm/NSAttributedString/initWithPath:documentAttributes: -Objective-C/instm/NSPersistentStore/initWithPersistentStoreCoordinator:configurationName:URL:options: -Objective-C/instm/NSAtomicStore/initWithPersistentStoreCoordinator:configurationName:URL:options: -Objective-C/instm/NSColorPicker/initWithPickerMask:colorPanel: -Objective-C/intfm/NSColorPickingDefault/initWithPickerMask:colorPanel: -Objective-C/instm/QCPlugInViewController/initWithPlugIn:viewNibName: -Objective-C/instm/NSPointerArray/initWithPointerFunctions: -Objective-C/instm/NSHashTable/initWithPointerFunctions:capacity: -Objective-C/instm/NSPositionalSpecifier/initWithPosition:objectSpecifier: -Objective-C/instm/SBApplication/initWithProcessIdentifier: -Objective-C/instm/DRTrack/initWithProducer: -Objective-C/instm/SBObject/initWithProperties: -Objective-C/instm/NSHTTPCookie/initWithProperties: -Objective-C/instm/NSURLAuthenticationChallenge/initWithProtectionSpace:proposedCredential:previousFailureCount:failureResponse:error:sender: -Objective-C/instm/NSSocketPort/initWithProtocolFamily:socketType:protocol:address: -Objective-C/instm/NSSocketPort/initWithProtocolFamily:socketType:protocol:socket: -Objective-C/instm/NSURLProtectionSpace/initWithProxyHost:port:type:realm:authenticationMethod: -Objective-C/instm/QTMedia/initWithQuickTimeMedia:error: -Objective-C/instm/QTMovie/initWithQuickTimeMovie:disposeWhenDone:error: -Objective-C/instm/QTTrack/initWithQuickTimeTrack:error: -Objective-C/instm/NSConnection/initWithReceivePort:sendPort: -Objective-C/instm/NSPortCoder/initWithReceivePort:sendPort:components: -Objective-C/instm/CIFilterShape/initWithRect: -Objective-C/instm/NSTrackingArea/initWithRect:options:owner:userInfo: -Objective-C/instm/QTDataReference/initWithReferenceToData: -Objective-C/instm/QTDataReference/initWithReferenceToData:name:MIMEType: -Objective-C/instm/QTDataReference/initWithReferenceToFile: -Objective-C/instm/QTDataReference/initWithReferenceToURL: -Objective-C/instm/NSTreeNode/initWithRepresentedObject: -Objective-C/instm/WebDataSource/initWithRequest: -Objective-C/instm/NSURLProtocol/initWithRequest:cachedResponse:client: -Objective-C/instm/NSURLDownload/initWithRequest:delegate: -Objective-C/instm/NSURLConnection/initWithRequest:delegate: -Objective-C/instm/NSURLConnection/initWithRequest:delegate:startImmediately: -Objective-C/instm/XGActionMonitor/initWithResource:action:parameters: -Objective-C/instm/NSCachedURLResponse/initWithResponse:data: -Objective-C/instm/NSCachedURLResponse/initWithResponse:data:userInfo:storagePolicy: -Objective-C/instm/NSURLDownload/initWithResumeData:delegate:path: -Objective-C/instm/NSXMLDocument/initWithRootElement: -Objective-C/instm/NSDecimalNumberHandler/initWithRoundingMode:scale:raiseOnExactness:raiseOnOverflow:raiseOnUnderflow:raiseOnDivideByZero: -Objective-C/instm/NSAttributedString/initWithRTF:documentAttributes: -Objective-C/instm/NSAttributedString/initWithRTFD:documentAttributes: -Objective-C/instm/NSAttributedString/initWithRTFDFileWrapper:documentAttributes: -Objective-C/instm/NSRulerMarker/initWithRulerView:markerLocation:image:imageOrigin: -Objective-C/instm/NSURL/initWithScheme:host:path: -Objective-C/instm/NSRulerView/initWithScrollView:orientation: -Objective-C/instm/IOBluetoothOBEXSession/initWithSDPServiceRecord: -Objective-C/instm/NSPortMessage/initWithSendPort:receivePort:components: -Objective-C/instm/NSFileWrapper/initWithSerializedRepresentation: -Objective-C/instm/IMKInputController/initWithServer:delegate:client: -Objective-C/instm/IMKCandidates/initWithServer:panelType: -Objective-C/instm/IOBluetoothSDPServiceRecord/initWithServiceDictionary:device: -Objective-C/instm/QTCaptureLayer/initWithSession: -Objective-C/instm/ODNode/initWithSession:name:error: -Objective-C/instm/ODNode/initWithSession:type:error: -C++/instm/OSSet/initWithSet -Objective-C/instm/NSCountedSet/initWithSet: -Objective-C/instm/NSSet/initWithSet: -Objective-C/instm/NSSet/initWithSet:copyItems: -Objective-C/instm/NSNumber/initWithShort: -Objective-C/instm/NSImage/initWithSize: -Objective-C/instm/NSCachedImageRep/initWithSize:depth:separate:alpha: -Objective-C/instm/NSAppleScript/initWithSource: -Objective-C/instm/NSMigrationManager/initWithSourceModel:destinationModel: -C++/instm/IODMACommand/initWithSpecification -C++/instm/IOMemoryCursor/initWithSpecification -C++/instm/IODBDMAMemoryCursor/initWithSpecification -C++/instm/IOMbufMemoryCursor/initWithSpecification -C++/instm/IOBigMemoryCursor/initWithSpecification -C++/instm/IONaturalMemoryCursor/initWithSpecification -C++/instm/IOLittleMemoryCursor/initWithSpecification -Objective-C/instm/NSGradient/initWithStartingColor:endingColor: -C++/instm/OSString/initWithString -C++/instm/OSSymbol/initWithString -Objective-C/instm/CIVector/initWithString: -Objective-C/instm/NSDecimalNumber/initWithString: -Objective-C/instm/DRMSF/initWithString: -Objective-C/instm/NSScanner/initWithString: -Objective-C/instm/NSString/initWithString: -Objective-C/instm/NSAttributedString/initWithString: -Objective-C/instm/NSDate/initWithString: -Objective-C/instm/NSURL/initWithString: -Objective-C/instm/NSAttributedString/initWithString:attributes: -Objective-C/instm/NSDecimalNumber/initWithString:locale: -Objective-C/instm/NSURL/initWithString:relativeToURL: -Objective-C/instm/NSScriptClassDescription/initWithSuiteName:className:dictionary: -Objective-C/instm/NSScriptCommandDescription/initWithSuiteName:commandName:dictionary: -Objective-C/instm/NSTextTableBlock/initWithTable:startingRow:rowSpan:startingColumn:columnSpan: -Objective-C/instm/NSDistantObject/initWithTarget:connection: -Objective-C/instm/NSProtocolChecker/initWithTarget:protocol: -Objective-C/instm/NSInvocationOperation/initWithTarget:selector:object: -Objective-C/instm/NSThread/initWithTarget:selector:object: -Objective-C/instm/NSSocketPort/initWithTCPPort: -Objective-C/instm/NSTextTab/initWithTextAlignment:location:options: -Objective-C/instm/CIImage/initWithTexture:size:flipped:colorSpace: -Objective-C/instm/NSOpenGLPixelBuffer/initWithTextureTarget:textureInternalFormat:textureMaxMipMapLevel:pixelsWide:pixelsHigh: -Objective-C/instm/NSDate/initWithTimeInterval:sinceDate: -Objective-C/instm/NSDate/initWithTimeIntervalSince1970: -Objective-C/instm/NSDate/initWithTimeIntervalSinceNow: -Objective-C/instm/NSDate/initWithTimeIntervalSinceReferenceDate: -Objective-C/instm/NSMenu/initWithTitle: -Objective-C/instm/NSMenuItem/initWithTitle:action:keyEquivalent: -Objective-C/instm/NSAffineTransform/initWithTransform: -Objective-C/instm/NSURLCredential/initWithTrust: -Objective-C/instm/NSDocument/initWithType:error: -Objective-C/instm/NSTextTab/initWithType:location: -Objective-C/instm/IOBluetoothSDPDataElement/initWithType:sizeDescriptor:size:value: -Objective-C/instm/NSCompoundPredicate/initWithType:subpredicates: -Objective-C/instm/NSNumber/initWithUnsignedChar: -Objective-C/instm/NSNumber/initWithUnsignedInt: -Objective-C/instm/NSNumber/initWithUnsignedInteger: -Objective-C/instm/NSNumber/initWithUnsignedLong: -Objective-C/instm/NSNumber/initWithUnsignedLongLong: -Objective-C/instm/NSNumber/initWithUnsignedShort: -Objective-C/instm/SBApplication/initWithURL: -Objective-C/instm/NSURLRequest/initWithURL: -Objective-C/instm/PDFActionURL/initWithURL: -Objective-C/instm/PDFDocument/initWithURL: -Objective-C/instm/PSFeed/initWithURL: -Objective-C/instm/NSInputStream/initWithURL: -Objective-C/instm/NSBundle/initWithURL: -Objective-C/instm/NSOutputStream/initWithURL:append: -Objective-C/instm/NSURLHandle/initWithURL:cached: -Objective-C/instm/NSURLRequest/initWithURL:cachePolicy:timeoutInterval: -Objective-C/instm/NSAttributedString/initWithURL:documentAttributes: -Objective-C/instm/QTMovie/initWithURL:error: -Objective-C/instm/NSURLResponse/initWithURL:MIMEType:expectedContentLength:textEncodingName: -Objective-C/instm/NSAttributedString/initWithURL:options:documentAttributes:error: -Objective-C/instm/NSFileWrapper/initWithURL:options:error: -Objective-C/instm/WebHistoryItem/initWithURLString:title:lastVisitedTimeInterval: -Objective-C/instm/NSUserDefaults/initWithUser: -Objective-C/instm/NSURLCredential/initWithUser:password:persistence: -Objective-C/instm/NSString/initWithUTF8String: -Objective-C/instm/IOBluetoothSDPUUID/initWithUUID16: -Objective-C/instm/IOBluetoothSDPUUID/initWithUUID32: -Objective-C/instm/CIVector/initWithValues:count: -Objective-C/instm/ABPerson/initWithVCardRepresentation: -Objective-C/instm/NSViewAnimation/initWithViewAnimations: -Objective-C/instm/NSSpeechSynthesizer/initWithVoice: -Objective-C/instm/NSWindowController/initWithWindow: -Objective-C/instm/NSCachedImageRep/initWithWindow:rect: -Objective-C/instm/NSWindowController/initWithWindowNibName: -Objective-C/instm/NSWindowController/initWithWindowNibName:owner: -Objective-C/instm/NSWindowController/initWithWindowNibPath:owner: -Objective-C/instm/NSWindow/initWithWindowRef: -C++/instm/IOCommandPool/initWithWorkLoop -Objective-C/instm/CIVector/initWithX: -Objective-C/instm/CIVector/initWithX:Y: -Objective-C/instm/CIVector/initWithX:Y:Z: -Objective-C/instm/CIVector/initWithX:Y:Z:W: -Objective-C/instm/NSXMLDTDNode/initWithXMLString: -Objective-C/instm/NSXMLElement/initWithXMLString:error: -Objective-C/instm/NSXMLDocument/initWithXMLString:options:error: -Objective-C/instm/CalRecurrenceRule/initYearlyRecurrenceWithInterval:end: -Objective-C/instm/CalRecurrenceRule/initYearlyRecurrenceWithInterval:forDayOfTheWeek:forWeekOfTheMonth:forMonthsOfTheYear:end: -Objective-C/instm/CalRecurrenceRule/initYearlyRecurrenceWithInterval:forMonthsOfTheYear:end: -JavaScript/cl/-/InjectedScriptHost -C/func/-/InkAddStrokeToCurrentPhrase -C/tdef/-/InkAlternateCount -C/tdef/-/InkApplicationModeType -C/tdef/-/InkDrawingModeType -C/tdef/-/InkGestureKind -C/func/-/InkIsPhraseInProgress -C/tdef/-/InkPoint -C/tdef/-/InkRecognitionType -C/func/-/InkSetApplicationRecognitionMode -C/func/-/InkSetApplicationWritingMode -C/func/-/InkSetDrawingMode -C/func/-/InkSetPhraseTerminationMode -C/func/-/InkStrokeGetPointCount -C/func/-/InkStrokeGetPoints -C/func/-/InkStrokeGetTypeID -C/tdef/-/InkStrokeRef -C/func/-/InkTerminateCurrentPhrase -C/tdef/-/InkTerminationType -C/func/-/InkTextAlternatesCount -C/func/-/InkTextBounds -C/func/-/InkTextCopy -C/func/-/InkTextCreateCFString -C/func/-/InkTextCreateFromCFData -C/func/-/InkTextDraw -C/func/-/InkTextFlatten -C/func/-/InkTextGetStroke -C/func/-/InkTextGetStrokeCount -C/func/-/InkTextGetTypeID -C/func/-/InkTextInsertAlternatesInMenu -C/func/-/InkTextKeyModifiers -C/tdef/-/InkTextRef -C/func/-/InkUserWritingMode -C/tdef/-/InkUserWritingModeType -Objective-C/instm/NSWindow/inLiveResize -Objective-C/instm/NSView/inLiveResize -JavaScript/data/DOMWindow/innerHeight -JavaScript/data/HTMLElement/innerHTML -Objective-C/instm/NSMenuView/innerRect -JavaScript/data/HTMLElement/innerText -JavaScript/data/DOMWindow/innerWidth -C/func/-/innetgr -C/func/-/innstr -C/func/-/innwstr -C++/instm/IORegistryEntry/inPlane -Objective-C/intfm/FxTimingAPI/inPointOfTimelineForEffect: -Objective-C/instm/AMWorkflow/input -C/macro/-/INPUT_CHUNK -Objective-C/intfm/FxTimingAPI/inputATimeForTransition:fromTimelineTime: -Objective-C/intfm/FxTimingAPI/inputBTimeForTransition:fromTimelineTime: -C++/instm/IOStream/inputCallback -Objective-C/instm/NSView/inputContext -Objective-C/clm/QTCaptureDevice/inputDevices -Objective-C/clm/QTCaptureDevice/inputDevicesWithMediaType: -JavaScript/data/Document/inputEncoding -C++/instm/IONetworkInterface/inputEvent -Objective-C/instm/AMShellScriptAction/inputFieldSeparator -Objective-C/instm/IKPictureTaker/inputImage -Objective-C/instm/QCComposition/inputKeys -Objective-C/instm/CIFilter/inputKeys -Objective-C/intfm/QCCompositionRenderer/inputKeys -C++/tag/IONetworkInterface/InputOptionQueuePacket -C/econst/-/inputOutOfBounds -C++/instm/IONetworkInterface/inputPacket -Objective-C/instm/QTCaptureSession/inputs -C++/data/IOAudioEngine/inputStreams -Objective-C/clm/NSInputStream/inputStreamWithData: -Objective-C/clm/NSInputStream/inputStreamWithFileAtPath: -Objective-C/clm/NSInputStream/inputStreamWithURL: -C++/instm/IOStream/inputSyncCallback -Objective-C/instm/NSObject/inputText:client: -Objective-C/instm/NSObject/inputText:key:modifiers:client: -Objective-C/intfm/FxTimingAPI/inputTimeForFilter:fromTimelineTime: -Objective-C/instm/IOBluetoothDeviceInquiry/inquiryLength -Objective-C/clm/IOBluetoothDeviceInquiry/inquiryWithDelegate: -C/func/-/ins_nwstr -C/func/-/ins_wch -C/func/-/ins_wstr -C/func/-/insch -C/func/-/insdelln -Objective-C/instm/NSTreeController/insert: -Objective-C/instm/NSArrayController/insert: -Objective-C/instm/AMWorkflow/insertAction:atIndex: -JavaScript/instm/HTMLElement/insertAdjacentElement -JavaScript/instm/HTMLElement/insertAdjacentHTML -JavaScript/instm/HTMLElement/insertAdjacentText -C++/instm/IOFWCommand/insertAfter -Objective-C/instm/NSMutableAttributedString/insertAttributedString:atIndex: -Objective-C/instm/NSResponder/insertBacktab: -JavaScript/instm/core/insertBefore -JavaScript/instm/HTMLTableRowElement/insertCell -Objective-C/instm/NSTreeController/insertChild: -Objective-C/instm/NSXMLDTD/insertChild:atIndex: -Objective-C/instm/NSXMLElement/insertChild:atIndex: -Objective-C/instm/NSXMLDocument/insertChild:atIndex: -Objective-C/instm/PDFOutline/insertChild:atIndex: -Objective-C/instm/NSXMLDTD/insertChildren:atIndex: -Objective-C/instm/NSXMLElement/insertChildren:atIndex: -Objective-C/instm/NSXMLDocument/insertChildren:atIndex: -Objective-C/instm/NSColorList/insertColor:key:atIndex: -Objective-C/instm/NSMatrix/insertColumn: -Objective-C/instm/NSMatrix/insertColumn:withCells: -Objective-C/instm/NSTextView/insertCompletion:forPartialWordRange:movement:isFinal: -Objective-C/instm/NSResponder/insertContainerBreak: -JavaScript/instm/CharacterData/insertData -Objective-C/instm/NSAppleEventDescriptor/insertDescriptor:atIndex: -Objective-C/instm/NSResponder/insertDoubleQuoteIgnoringSubstitution: -Objective-C/instm/NSManagedObjectContext/insertedObjects -C/func/-/InsertEmptyMovieSegment -Objective-C/instm/QTTrack/insertEmptySegmentAt: -Objective-C/instm/QTMovie/insertEmptySegmentAt: -C/func/-/InsertEmptyTrackSegment -Objective-C/instm/NSForm/insertEntry:atIndex: -Objective-C/instm/NSATSTypesetter/insertGlyph:atGlyphIndex:characterIndex: -Objective-C/instm/NSLayoutManager/insertGlyph:atGlyphIndex:characterIndex: -Objective-C/instm/NSTypesetter/insertGlyph:atGlyphIndex:characterIndex: -Objective-C/intfm/NSGlyphStorage/insertGlyphs:length:forStartingGlyphAtIndex:characterIndex: -Objective-C/instm/NSLayoutManager/insertGlyphs:length:forStartingGlyphAtIndex:characterIndex: -JavaScript/data/SQLResultSet/insertId -Objective-C/instm/NSPositionalSpecifier/insertionContainer -Objective-C/instm/NSPositionalSpecifier/insertionIndex -Objective-C/instm/NSPositionalSpecifier/insertionKey -Objective-C/instm/NSTextView/insertionPointColor -Objective-C/instm/NSPositionalSpecifier/insertionReplaces -Objective-C/instm/NSMenu/insertItem:atIndex: -JavaScript/instm/SVGNumberList/insertItemBefore -JavaScript/instm/SVGLengthList/insertItemBefore -JavaScript/instm/SVGTransformList/insertItemBefore -JavaScript/instm/SVGStringList/insertItemBefore -JavaScript/instm/SVGPathSegList/insertItemBefore -JavaScript/instm/SVGPointList/insertItemBefore -Objective-C/instm/NSToolbar/insertItemWithItemIdentifier:atIndex: -Objective-C/instm/NSComboBox/insertItemWithObjectValue:atIndex: -Objective-C/instm/NSComboBoxCell/insertItemWithObjectValue:atIndex: -Objective-C/instm/NSMenu/insertItemWithTitle:action:keyEquivalent:atIndex: -Objective-C/instm/NSPopUpButtonCell/insertItemWithTitle:atIndex: -Objective-C/instm/NSPopUpButton/insertItemWithTitle:atIndex: -Objective-C/instm/NSResponder/insertLineBreak: -C/func/-/insertln -C/func/-/InsertMediaIntoTrack -C/func/-/InsertMovieSegment -Objective-C/instm/NSColorPicker/insertNewButtonImage:in: -Objective-C/intfm/NSColorPickingDefault/insertNewButtonImage:in: -Objective-C/instm/NSResponder/insertNewline: -Objective-C/instm/NSResponder/insertNewlineIgnoringFieldEditor: -Objective-C/clm/NSEntityDescription/insertNewObjectForEntityForName:inManagedObjectContext: -JavaScript/instm/Range/insertNode -Objective-C/instm/NSManagedObjectContext/insertObject: -Objective-C/instm/NSArrayController/insertObject:atArrangedObjectIndex: -Objective-C/instm/NSTreeController/insertObject:atArrangedObjectIndexPath: -Objective-C/instm/NSMutableArray/insertObject:atIndex: -Objective-C/instm/NSArrayController/insertObjects:atArrangedObjectIndexes: -Objective-C/instm/NSTreeController/insertObjects:atArrangedObjectIndexPaths: -Objective-C/instm/NSMutableArray/insertObjects:atIndexes: -Objective-C/instm/PDFDocument/insertPage:atIndex: -Objective-C/instm/NSResponder/insertParagraphSeparator: -Objective-C/instm/NSPointerArray/insertPointer:atIndex: -C/func/-/InsertResourceFile -JavaScript/instm/HTMLTableSectionElement/insertRow -JavaScript/instm/HTMLTableElement/insertRow -Objective-C/instm/NSMatrix/insertRow: -Objective-C/instm/NSMatrix/insertRow:withCells: -Objective-C/instm/NSRuleEditor/insertRowAtIndex:withType:asSubrowOfRow:animate: -JavaScript/instm/CSSStyleSheet/insertRule -JavaScript/instm/CSSMediaRule/insertRule -JavaScript/instm/WebKitCSSKeyframesRule/insertRule -Objective-C/instm/QTMovie/insertSegmentOfMovie:fromRange:scaledToRange: -Objective-C/instm/QTMovie/insertSegmentOfMovie:timeRange:atTime: -Objective-C/instm/QTTrack/insertSegmentOfTrack:fromRange:scaledToRange: -Objective-C/instm/QTMovie/insertSegmentOfTrack:fromRange:scaledToRange: -Objective-C/instm/QTTrack/insertSegmentOfTrack:timeRange:atTime: -Objective-C/instm/QTMovie/insertSegmentOfTrack:timeRange:atTime: -Objective-C/instm/NSResponder/insertSingleQuoteIgnoringSubstitution: -Objective-C/instm/NSMutableString/insertString:atIndex: -Objective-C/instm/CALayer/insertSublayer:above: -Objective-C/instm/CALayer/insertSublayer:atIndex: -Objective-C/instm/CALayer/insertSublayer:below: -Objective-C/instm/NSResponder/insertTab: -Objective-C/instm/NSResponder/insertTabIgnoringFieldEditor: -Objective-C/instm/NSTabView/insertTabViewItem:atIndex: -Objective-C/intfm/NSTextInput/insertText: -Objective-C/instm/NSTextView/insertText: -Objective-C/instm/NSResponder/insertText: -Objective-C/intfm/IMKTextInput/insertText:replacementRange: -Objective-C/intfm/NSTextInputClient/insertText:replacementRange: -Objective-C/instm/NSLayoutManager/insertTextContainer:atIndex: -C/func/-/InsertTrackSegment -Objective-C/instm/NSObject/insertValue:atIndex:inPropertyWithKey: -Objective-C/instm/NSObject/insertValue:inPropertyWithKey: -Objective-C/instm/ABMutableMultiValue/insertValue:withLabel:atIndex: -Objective-C/instm/CIFilterShape/insetByX:Y: -C/func/-/insnstr -Objective-C/instm/IBInspector/inspectedObjects -Objective-C/instm/IBInspector/inspectedObjectsController -JavaScript/instm/InspectorFrontendHost/inspectedURLChanged -JavaScript/cl/-/InspectorBackend -JavaScript/cl/-/InspectorFrontendHost -C/func/-/insque -C/func/-/insstr -Objective-C/instp/CAReplicatorLayer/instanceAlphaOffset -Objective-C/instm/CAReplicatorLayer/instanceAlphaOffset -Objective-C/instp/CAReplicatorLayer/instanceBlueOffset -Objective-C/instm/CAReplicatorLayer/instanceBlueOffset -Objective-C/instm/CAReplicatorLayer/instanceColor -Objective-C/instp/CAReplicatorLayer/instanceColor -C++/instm/OSMetaClass/instanceConstructed -Objective-C/instp/CAReplicatorLayer/instanceCount -Objective-C/instm/CAReplicatorLayer/instanceCount -Objective-C/instm/CAReplicatorLayer/instanceDelay -Objective-C/instp/CAReplicatorLayer/instanceDelay -C++/instm/OSMetaClass/instanceDestructed -Objective-C/instp/CAReplicatorLayer/instanceGreenOffset -Objective-C/instm/CAReplicatorLayer/instanceGreenOffset -Objective-C/clm/NSObject/instanceMethodForSelector: -Objective-C/clm/NSObject/instanceMethodSignatureForSelector: -Objective-C/instp/CAReplicatorLayer/instanceRedOffset -Objective-C/instm/CAReplicatorLayer/instanceRedOffset -JavaScript/data/SVGUseElement/instanceRoot -Objective-C/clm/NSObject/instancesRespondToSelector: -Objective-C/instp/CAReplicatorLayer/instanceTransform -Objective-C/instm/CAReplicatorLayer/instanceTransform -C++/instm/IOBlockStorageDriver/instantiateDesiredMediaObject -C++/instm/IOBlockStorageDriver/instantiateMediaObject -Objective-C/instm/NSNib/instantiateNibWithExternalNameTable: -Objective-C/instm/NSNib/instantiateNibWithOwner:topLevelObjects: -C/func/-/instr -JavaScript/clconst/WebGLRenderingContext/INT -JavaScript/data/DOMWindow/Int16Array -JavaScript/cl/-/Int16Array -JavaScript/data/DOMWindow/Int32Array -JavaScript/cl/-/Int32Array -Objective-C/instm/NSAppleEventDescriptor/int32Value -JavaScript/data/DOMWindow/Int8Array -JavaScript/cl/-/Int8Array -JavaScript/clconst/WebGLRenderingContext/INT_VEC2 -JavaScript/clconst/WebGLRenderingContext/INT_VEC3 -JavaScript/clconst/WebGLRenderingContext/INT_VEC4 -C++/clm/IOBufferMemoryDescriptor/inTaskWithOptions -C++/clm/IOBufferMemoryDescriptor/inTaskWithPhysicalMask -JavaScript/data/TestObj/intAttr -Objective-C/instm/NSLayoutManager/intAttribute:forGlyphAtIndex: -Objective-C/instm/NSUserDefaults/integerForKey: -Objective-C/instm/NSActionCell/integerValue -Objective-C/instm/NSNumber/integerValue -Objective-C/instm/IMAVControl/integerValue -Objective-C/instm/NSControl/integerValue -Objective-C/instm/NSString/integerValue -Objective-C/instm/NSCell/integerValue -Objective-C/instm/NSMatrix/intercellSpacing -Objective-C/instm/NSComboBox/intercellSpacing -Objective-C/instm/NSComboBoxCell/intercellSpacing -Objective-C/instm/IKImageBrowserView/intercellSpacing -Objective-C/instm/NSTableView/intercellSpacing -JavaScript/data/SVGComponentTransferFunctionElement/intercept -Objective-C/clm/CWInterface/interface -C/tag/-/Interface -C/tag/-/InterfaceObjectStates -Objective-C/instp/CWInterface/interfaceState -Objective-C/instm/NSResponder/interfaceStyle -Objective-C/clm/CWInterface/interfaceWithName: -Objective-C/instm/NSCell/interiorBackgroundStyle -Objective-C/instm/NSSegmentedCell/interiorBackgroundStyleForSegment: -Objective-C/instm/PDFAnnotationCircle/interiorColor -Objective-C/instm/PDFAnnotationSquare/interiorColor -Objective-C/instm/PDFAnnotationLine/interiorColor -JavaScript/data/DocumentType/internalSubset -C/tdef/-/internalSubsetSAXFunc -Objective-C/instm/NSNumberFormatter/internationalCurrencySymbol -Objective-C/instm/NSGradient/interpolatedColorAtLocation: -Objective-C/instm/NSResponder/interpretKeyEvents: -Objective-C/instm/NSTask/interrupt -C++/clm/IOInterruptEventSource/interruptEventSource -C++/instm/IOInterruptEventSource/interruptOccurred -C++/tdef/IOHIDInterface/InterruptReportAction -Objective-C/instm/NSHashTable/intersectHashTable: -C++/instm/IOFWAddressSpace/intersects -Objective-C/instm/NSMutableSet/intersectSet: -Objective-C/instm/NSHashTable/intersectsHashTable: -Objective-C/instm/NSIndexSet/intersectsIndexesInRange: -JavaScript/instm/Range/intersectsNode -Objective-C/instm/NSSet/intersectsSet: -Objective-C/instm/CIFilterShape/intersectWith: -Objective-C/instm/CIFilterShape/intersectWithRect: -Objective-C/instm/NSPrinter/intForKey:inTable: -C++/data/IOInterruptEventSource/intIndex -JavaScript/instm/TestObj/intMethod -JavaScript/instm/TestObj/intMethodWithArgs -C/func/-/intrflush -C/func/-/intro -Objective-C/instm/NSActionCell/intValue -Objective-C/instm/NSNumber/intValue -Objective-C/instm/IMAVControl/intValue -Objective-C/instm/NSControl/intValue -Objective-C/instm/NSString/intValue -Objective-C/instm/NSCell/intValue -C++/tdef/IOAudioControl/IntValueChangeHandler -JavaScript/clconst/DOMCoreException/INUSE_ATTRIBUTE_ERR -JavaScript/clconst/DOMCoreException/INVALID_ACCESS_ERR -JavaScript/clconst/DOMCoreException/INVALID_CHARACTER_ERR -JavaScript/clconst/WebGLRenderingContext/INVALID_ENUM -JavaScript/clconst/XPathException/INVALID_EXPRESSION_ERR -JavaScript/clconst/WebGLRenderingContext/INVALID_FRAMEBUFFER_OPERATION -JavaScript/clconst/DOMCoreException/INVALID_MODIFICATION_ERR -JavaScript/clconst/RangeException/INVALID_NODE_TYPE_ERR -JavaScript/clconst/WebGLRenderingContext/INVALID_OPERATION -JavaScript/clconst/DOMCoreException/INVALID_STATE_ERR -JavaScript/clconst/WebGLRenderingContext/INVALID_VALUE -Objective-C/instm/NSConnection/invalidate -Objective-C/instm/NSTimer/invalidate -Objective-C/instm/QTMovie/invalidate -Objective-C/instm/NSPort/invalidate -Objective-C/instm/NSTextStorage/invalidateAttributesInRange: -Objective-C/instm/NSTextInputContext/invalidateCharacterCoordinates -Objective-C/clm/NSClassDescription/invalidateClassDescriptionCache -Objective-C/instm/SFAuthorization/invalidateCredentials -Objective-C/instm/NSWindow/invalidateCursorRectsForView: -Objective-C/instm/NSLayoutManager/invalidateDisplayForCharacterRange: -Objective-C/instm/NSLayoutManager/invalidateDisplayForGlyphRange: -Objective-C/instm/NSLayoutManager/invalidateGlyphsForCharacterRange:changeInLength:actualCharacterRange: -Objective-C/instm/NSLayoutManager/invalidateGlyphsOnLayoutInvalidationForGlyphRange: -Objective-C/instm/NSRulerView/invalidateHashMarks -Objective-C/instm/NSLayoutManager/invalidateLayoutForCharacterRange:actualCharacterRange: -Objective-C/instm/NSLayoutManager/invalidateLayoutForCharacterRange:isSoft:actualCharacterRange: -Objective-C/instm/NSObject/invalidateLayoutOfLayer: -Objective-C/instm/NSWindow/invalidateShadow -Objective-C/instm/NSTextView/invalidateTextContainerOrigin -C/econst/-/invalidComponentID -JavaScript/data/XPathResult/invalidIteratorState -JavaScript/instm/SVGMatrix/inverse -JavaScript/instm/WebKitCSSMatrix/inverse -Objective-C/instm/NSClassDescription/inverseForRelationshipKey: -Objective-C/instm/NSObject/inverseForRelationshipKey: -C/func/-/InverseMatrix -Objective-C/instm/NSRelationshipDescription/inverseRelationship -Objective-C/instm/NSMutableCharacterSet/invert -Objective-C/instm/NSAffineTransform/invert -JavaScript/clconst/WebGLRenderingContext/INVERT -Objective-C/instm/NSCharacterSet/invertedSet -Objective-C/instm/NSDistantObjectRequest/invocation -Objective-C/instm/NSInvocationOperation/invocation -Objective-C/clm/NSInvocation/invocationWithMethodSignature: -Objective-C/instm/NSInvocation/invoke -C/func/-/InvokeAliasFilterUPP -C++/instm/IOFWAsyncStreamListener/invokeClients -C/func/-/InvokeCMBitmapCallBackUPP -C/func/-/InvokeCMConcatCallBackUPP -C/func/-/InvokeCMFlattenUPP -C/func/-/InvokeCMMIterateUPP -C/func/-/InvokeCMProfileAccessUPP -C/func/-/InvokeCMProfileFilterUPP -C/func/-/InvokeCMProfileIterateUPP -C/func/-/InvokeComponentMPWorkFunctionUPP -C/func/-/InvokeComponentRoutineUPP -C/func/-/InvokeDataBrowserAcceptDragUPP -C/func/-/InvokeDataBrowserAddDragItemUPP -C/func/-/InvokeDataBrowserDrawItemUPP -C/func/-/InvokeDataBrowserEditItemUPP -C/func/-/InvokeDataBrowserGetContextualMenuUPP -C/func/-/InvokeDataBrowserHitTestUPP -C/func/-/InvokeDataBrowserItemAcceptDragUPP -C/func/-/InvokeDataBrowserItemCompareUPP -C/func/-/InvokeDataBrowserItemDataUPP -C/func/-/InvokeDataBrowserItemDragRgnUPP -C/func/-/InvokeDataBrowserItemHelpContentUPP -C/func/-/InvokeDataBrowserItemNotificationUPP -C/func/-/InvokeDataBrowserItemNotificationWithItemUPP -C/func/-/InvokeDataBrowserItemReceiveDragUPP -C/func/-/InvokeDataBrowserItemUPP -C/func/-/InvokeDataBrowserPostProcessDragUPP -C/func/-/InvokeDataBrowserReceiveDragUPP -C/func/-/InvokeDataBrowserSelectContextualMenuUPP -C/func/-/InvokeDataBrowserTrackingUPP -Objective-C/instm/NSObject/invokeDefaultMethodWithArguments: -C/func/-/InvokeFNSubscriptionUPP -C/func/-/InvokeFSVolumeEjectUPP -C/func/-/InvokeFSVolumeMountUPP -C/func/-/InvokeFSVolumeUnmountUPP -C/func/-/InvokeGetMissingComponentResourceUPP -C/func/-/InvokeIOCompletionUPP -C/func/-/InvokePMIdleUPP -C/func/-/InvokeQTTrackPropertyListenerUPP -C/func/-/InvokeResErrUPP -C/func/-/InvokeSelectorFunctionUPP -C/func/-/InvokeSpeechDoneUPP -C/func/-/InvokeSpeechErrorUPP -C/func/-/InvokeSpeechPhonemeUPP -C/func/-/InvokeSpeechSyncUPP -C/func/-/InvokeSpeechTextDoneUPP -C/func/-/InvokeSpeechWordUPP -C/func/-/InvokeSRCallBackUPP -Objective-C/instm/NSObject/invokeUndefinedMethodFromWebScript:withArguments: -C/func/-/InvokeUnicodeToTextFallbackUPP -C++/instm/TestInvocation/invokeWithTarget -Objective-C/instm/NSInvocation/invokeWithTarget: -C/func/-/inwstr -C++/cl/-/IOAGPDevice -C/func/-/IOAllowPowerChange -C/tdef/-/IOAsyncCallback -C/tdef/-/IOAsyncCallback0 -C/tdef/-/IOAsyncCallback1 -C/tdef/-/IOAsyncCallback2 -C++/cl/-/IOATABusCommand -C++/cl/-/IOATABusInfo -C++/cl/-/IOATACommand -C/tdef/-/IOATACompletionFunction -C++/cl/-/IOATAController -C++/cl/-/IOATADevConfig -C++/cl/-/IOATADevice -C++/cl/-/IOATAPIProtocolTransport -C/tdef/-/IOATASMARTInterface -C++/cl/-/IOAudioControl -C/tdef/-/IOAudioControlCalls -C/tdef/-/IOAudioControlNotifications -C++/cl/-/IOAudioDevice -C/tdef/-/IOAudioDevicePowerState -C++/cl/-/IOAudioEngine -C/tdef/-/IOAudioEngineCalls -C/tdef/-/IOAudioEngineMemory -C/tdef/-/IOAudioEnginePosition -C/tdef/-/IOAudioEngineState -C/tdef/-/IOAudioEngineStatus -C/func/-/IOAudioFlush -C/func/-/IOAudioIsOutput -C++/cl/-/IOAudioLevelControl -C/tdef/-/IOAudioNotificationMessage -C++/cl/-/IOAudioPort -C/func/-/IOAudioSetErase -C/tdef/-/IOAudioSMPTETime -C++/cl/-/IOAudioStream -C/tdef/-/IOAudioStreamDirection -C++/cl/-/IOAudioToggleControl -C++/cl/-/IOBasicOutputQueue -C++/cl/-/IOBDBlockStorageDevice -C++/cl/-/IOBDBlockStorageDriver -C++/cl/-/IOBDMedia -C++/cl/-/IOBigMemoryCursor -C++/cl/-/IOBlockStorageDevice -C++/cl/-/IOBlockStorageDriver -C/func/-/IOBluetoothAddSCOAudioDevice -C/func/-/IOBluetoothAddServiceDict -C/tdef/-/IOBluetoothCreateConnectionCallback -Objective-C/cl/-/IOBluetoothDevice -C/func/-/IOBluetoothDeviceAddToFavorites -C/func/-/IOBluetoothDeviceCloseConnection -C/func/-/IOBluetoothDeviceCreateWithAddress -C/func/-/IOBluetoothDeviceGetAddress -C/func/-/IOBluetoothDeviceGetAddressString -C/func/-/IOBluetoothDeviceGetClassOfDevice -C/func/-/IOBluetoothDeviceGetClockOffset -C/func/-/IOBluetoothDeviceGetConnectionHandle -C/func/-/IOBluetoothDeviceGetDeviceClassMajor -C/func/-/IOBluetoothDeviceGetDeviceClassMinor -C/func/-/IOBluetoothDeviceGetEncryptionMode -C/func/-/IOBluetoothDeviceGetLastInquiryUpdate -C/func/-/IOBluetoothDeviceGetLastNameUpdate -C/func/-/IOBluetoothDeviceGetLastServicesUpdate -C/func/-/IOBluetoothDeviceGetLinkType -C/func/-/IOBluetoothDeviceGetName -C/func/-/IOBluetoothDeviceGetNameOrAddress -C/func/-/IOBluetoothDeviceGetPageScanMode -C/func/-/IOBluetoothDeviceGetPageScanPeriodMode -C/func/-/IOBluetoothDeviceGetPageScanRepetitionMode -C/func/-/IOBluetoothDeviceGetRecentAccessDate -C/func/-/IOBluetoothDeviceGetServiceClassMajor -C/func/-/IOBluetoothDeviceGetServiceRecordForUUID -C/func/-/IOBluetoothDeviceGetServices -Objective-C/cl/-/IOBluetoothDeviceInquiry -C/func/-/IOBluetoothDeviceInquiryClearFoundDevices -C/tdef/-/IOBluetoothDeviceInquiryCompleteCallback -C/func/-/IOBluetoothDeviceInquiryCreateWithCallbackRefCon -C/func/-/IOBluetoothDeviceInquiryDelete -C/tdef/-/IOBluetoothDeviceInquiryDeviceFoundCallback -C/tdef/-/IOBluetoothDeviceInquiryDeviceNameUpdatedCallback -C/func/-/IOBluetoothDeviceInquiryGetFoundDevices -C/func/-/IOBluetoothDeviceInquiryGetInquiryLength -C/func/-/IOBluetoothDeviceInquiryGetUpdateNewDeviceNames -C/func/-/IOBluetoothDeviceInquiryGetUserRefCon -C/tdef/-/IOBluetoothDeviceInquiryRef -C/func/-/IOBluetoothDeviceInquirySetCompleteCallback -C/func/-/IOBluetoothDeviceInquirySetDeviceFoundCallback -C/func/-/IOBluetoothDeviceInquirySetDeviceNameUpdatedCallback -C/func/-/IOBluetoothDeviceInquirySetInquiryLength -C/func/-/IOBluetoothDeviceInquirySetSearchCriteria -C/func/-/IOBluetoothDeviceInquirySetStartedCallback -C/func/-/IOBluetoothDeviceInquirySetUpdateNewDeviceNames -C/func/-/IOBluetoothDeviceInquirySetUpdatingNamesStartedCallback -C/func/-/IOBluetoothDeviceInquirySetUserRefCon -C/func/-/IOBluetoothDeviceInquiryStart -C/tdef/-/IOBluetoothDeviceInquiryStartedCallback -C/func/-/IOBluetoothDeviceInquiryStop -C/tdef/-/IOBluetoothDeviceInquiryUpdatingNamesStartedCallback -C/func/-/IOBluetoothDeviceIsConnected -C/func/-/IOBluetoothDeviceIsFavorite -C/func/-/IOBluetoothDeviceIsPaired -C/func/-/IOBluetoothDeviceOpenConnection -C/func/-/IOBluetoothDeviceOpenConnectionWithOptions -C/func/-/IOBluetoothDeviceOpenL2CAPChannel -C/func/-/IOBluetoothDeviceOpenL2CAPChannelAsync -C/func/-/IOBluetoothDeviceOpenL2CAPChannelSync -C/func/-/IOBluetoothDeviceOpenRFCOMMChannel -C/func/-/IOBluetoothDeviceOpenRFCOMMChannelAsync -C/func/-/IOBluetoothDeviceOpenRFCOMMChannelSync -Objective-C/cl/-/IOBluetoothDevicePair -C/func/-/IOBluetoothDevicePerformSDPQuery -C/func/-/IOBluetoothDeviceRegisterForDisconnectNotification -C/func/-/IOBluetoothDeviceRemoteNameRequest -C/func/-/IOBluetoothDeviceRemoteNameRequestWithTimeout -C/func/-/IOBluetoothDeviceRemoveFromFavorites -C/func/-/IOBluetoothDeviceRequestAuthentication -C/tdef/-/IOBluetoothDeviceSearchAttributes -C/tag/-/IOBluetoothDeviceSearchAttributes -C/tdef/-/IOBluetoothDeviceSearchDeviceAttributes -C/tag/-/IOBluetoothDeviceSearchDeviceAttributes -C/tdef/-/IOBluetoothDeviceSearchOptions -C/tag/-/IOBluetoothDeviceSearchOptionsBits -Objective-C/cl/-/IOBluetoothDeviceSelectorController -C/func/-/IOBluetoothDeviceSelectorRunPanelWithAttributes -C/func/-/IOBluetoothDeviceSendL2CAPEchoRequest -C/func/-/IOBluetoothFavoriteDevices -C/func/-/IOBluetoothFindNumberOfRegistryEntriesOfClassName -C/func/-/IOBluetoothGetDeviceSelectorController -C/func/-/IOBluetoothGetObjectIDFromArguments -C/func/-/IOBluetoothGetPairingController -C/func/-/IOBluetoothGetUniqueFileNameAndPath -C/func/-/IOBluetoothGetVersion -C/tdef/-/IOBluetoothHandsFreeFeatures -Objective-C/cl/-/IOBluetoothHandsFreeGateway -Objective-C/cl/-/IOBluetoothHeadsetDevice -Objective-C/cl/-/IOBluetoothHostController -C/func/-/IOBluetoothIgnoreHIDDevice -C/func/-/IOBluetoothIsFileAppleDesignatedPIMData -Objective-C/cl/-/IOBluetoothL2CAPChannel -C/func/-/IOBluetoothL2CAPChannelCloseChannel -C/func/-/IOBluetoothL2CAPChannelCreateFromObjectID -C/tdef/-/IOBluetoothL2CAPChannelDataBlock -C/tdef/-/IOBluetoothL2CAPChannelEvent -C/tdef/-/IOBluetoothL2CAPChannelEventType -C/func/-/IOBluetoothL2CAPChannelGetDevice -C/func/-/IOBluetoothL2CAPChannelGetIncomingMTU -C/func/-/IOBluetoothL2CAPChannelGetLocalChannelID -C/func/-/IOBluetoothL2CAPChannelGetObjectID -C/func/-/IOBluetoothL2CAPChannelGetOutgoingMTU -C/func/-/IOBluetoothL2CAPChannelGetPSM -C/func/-/IOBluetoothL2CAPChannelGetRemoteChannelID -C/tdef/-/IOBluetoothL2CAPChannelIncomingDataListener -C/tdef/-/IOBluetoothL2CAPChannelIncomingEventListener -C/func/-/IOBluetoothL2CAPChannelIsIncoming -C/func/-/IOBluetoothL2CAPChannelRegisterForChannelCloseNotification -C/func/-/IOBluetoothL2CAPChannelRegisterIncomingDataListener -C/func/-/IOBluetoothL2CAPChannelRegisterIncomingEventListener -C/func/-/IOBluetoothL2CAPChannelRequestRemoteMTU -C/func/-/IOBluetoothL2CAPChannelWrite -C/func/-/IOBluetoothL2CAPChannelWriteAsync -C/func/-/IOBluetoothL2CAPChannelWriteSync -C/func/-/IOBluetoothLocalDeviceAvailable -C/func/-/IOBluetoothLocalDeviceGetDiscoverable -C/func/-/IOBluetoothLocalDeviceGetPowerState -C/func/-/IOBluetoothLocalDeviceReadAddress -C/func/-/IOBluetoothLocalDeviceReadAuthenticationEnable -C/func/-/IOBluetoothLocalDeviceReadClassOfDevice -C/func/-/IOBluetoothLocalDeviceReadConnectionAcceptTimeout -C/func/-/IOBluetoothLocalDeviceReadEncryptionMode -C/func/-/IOBluetoothLocalDeviceReadName -C/func/-/IOBluetoothLocalDeviceReadPageScanMode -C/func/-/IOBluetoothLocalDeviceReadPageScanPeriodMode -C/func/-/IOBluetoothLocalDeviceReadPageTimeout -C/func/-/IOBluetoothLocalDeviceReadScanEnable -C/func/-/IOBluetoothLocalDeviceReadSupportedFeatures -C/func/-/IOBluetoothLocalDeviceReadVersionInformation -C/func/-/IOBluetoothNSStringFromDeviceAddress -C/func/-/IOBluetoothNSStringToDeviceAddress -C/func/-/IOBluetoothNumberOfAvailableHIDDevices -C/func/-/IOBluetoothNumberOfKeyboardHIDDevices -C/func/-/IOBluetoothNumberOfPointingHIDDevices -C/func/-/IOBluetoothNumberOfTabletHIDDevices -Objective-C/cl/-/IOBluetoothOBEXSession -C/func/-/IOBluetoothOBEXSessionCreateWithIncomingIOBluetoothRFCOMMChannel -C/func/-/IOBluetoothOBEXSessionCreateWithIOBluetoothDeviceRefAndChannelNumber -C/func/-/IOBluetoothOBEXSessionCreateWithIOBluetoothSDPServiceRecordRef -C/func/-/IOBluetoothOBEXSessionOpenTransportConnection -Objective-C/cl/-/IOBluetoothObjectPushUIController -C/func/-/IOBluetoothObjectRelease -C/func/-/IOBluetoothObjectRetain -C/func/-/IOBluetoothPackData -C/func/-/IOBluetoothPairedDevices -Objective-C/cl/-/IOBluetoothPairingController -C/func/-/IOBluetoothPairingControllerRunPanelWithAttributes -C/func/-/IOBluetoothRecentDevices -C/func/-/IOBluetoothRegisterForDeviceConnectNotifications -C/func/-/IOBluetoothRegisterForFilteredL2CAPChannelOpenNotifications -C/func/-/IOBluetoothRegisterForFilteredRFCOMMChannelOpenNotifications -C/func/-/IOBluetoothRegisterForL2CAPChannelOpenNotifications -C/func/-/IOBluetoothRegisterForRFCOMMChannelOpenNotifications -C/tdef/-/IOBluetoothRemoteNameRequestCallback -C/func/-/IOBluetoothRemoveIgnoredHIDDevice -C/func/-/IOBluetoothRemoveSCOAudioDevice -C/func/-/IOBluetoothRemoveServiceWithRecordHandle -Objective-C/cl/-/IOBluetoothRFCOMMAudioController -Objective-C/cl/-/IOBluetoothRFCOMMChannel -C/func/-/IOBluetoothRFCOMMChannelCloseChannel -C/func/-/IOBluetoothRFCOMMChannelCreateFromObjectID -C/tdef/-/IOBluetoothRFCOMMChannelEvent -C/tdef/-/IOBluetoothRFCOMMChannelEventType -C/func/-/IOBluetoothRFCOMMChannelGetChannelID -C/func/-/IOBluetoothRFCOMMChannelGetDevice -C/func/-/IOBluetoothRFCOMMChannelGetMTU -C/func/-/IOBluetoothRFCOMMChannelGetObjectID -C/tdef/-/IOBluetoothRFCOMMChannelIncomingDataListener -C/tdef/-/IOBluetoothRFCOMMChannelIncomingEventListener -C/func/-/IOBluetoothRFCOMMChannelIsIncoming -C/func/-/IOBluetoothRFCOMMChannelIsOpen -C/func/-/IOBluetoothRFCOMMChannelIsTransmissionPaused -C/func/-/IOBluetoothRFCOMMChannelRegisterForChannelCloseNotification -C/func/-/IOBluetoothRFCOMMChannelRegisterIncomingDataListener -C/func/-/IOBluetoothRFCOMMChannelRegisterIncomingEventListener -C/func/-/IOBluetoothRFCOMMChannelWrite -C/func/-/IOBluetoothRFCOMMChannelWriteAsync -C/func/-/IOBluetoothRFCOMMChannelWriteSimple -C/func/-/IOBluetoothRFCOMMChannelWriteSync -C/tdef/-/IOBluetoothRFCOMMDataBlock -C/tdef/-/IOBluetoothRFCOMMFlowControlStatus -C/func/-/IOBluetoothRFCOMMSendRemoteLineStatus -C/func/-/IOBluetoothRFCOMMSetSerialParameters -Objective-C/cl/-/IOBluetoothSDPDataElement -C/func/-/IOBluetoothSDPDataElementContainsDataElement -C/func/-/IOBluetoothSDPDataElementGetArrayValue -C/func/-/IOBluetoothSDPDataElementGetDataValue -C/func/-/IOBluetoothSDPDataElementGetNumberValue -C/func/-/IOBluetoothSDPDataElementGetSize -C/func/-/IOBluetoothSDPDataElementGetSizeDescriptor -C/func/-/IOBluetoothSDPDataElementGetStringValue -C/func/-/IOBluetoothSDPDataElementGetTypeDescriptor -C/func/-/IOBluetoothSDPDataElementGetUUIDValue -C/func/-/IOBluetoothSDPDataElementIsEqualToDataElement -C/tdef/-/IOBluetoothSDPQueryCallback -Objective-C/cl/-/IOBluetoothSDPServiceAttribute -Objective-C/cl/-/IOBluetoothSDPServiceRecord -C/func/-/IOBluetoothSDPServiceRecordGetAttributeDataElement -C/func/-/IOBluetoothSDPServiceRecordGetAttributes -C/func/-/IOBluetoothSDPServiceRecordGetDevice -C/func/-/IOBluetoothSDPServiceRecordGetL2CAPPSM -C/func/-/IOBluetoothSDPServiceRecordGetRFCOMMChannelID -C/func/-/IOBluetoothSDPServiceRecordGetServiceName -C/func/-/IOBluetoothSDPServiceRecordGetServiceRecordHandle -C/func/-/IOBluetoothSDPServiceRecordHasServiceFromArray -Objective-C/cl/-/IOBluetoothSDPUUID -C/func/-/IOBluetoothSDPUUIDCreateUUID16 -C/func/-/IOBluetoothSDPUUIDCreateUUID32 -C/func/-/IOBluetoothSDPUUIDCreateWithBytes -C/func/-/IOBluetoothSDPUUIDCreateWithData -C/func/-/IOBluetoothSDPUUIDGetBytes -C/func/-/IOBluetoothSDPUUIDGetLength -C/func/-/IOBluetoothSDPUUIDGetUUIDWithLength -C/func/-/IOBluetoothSDPUUIDIsEqualToUUID -Objective-C/cl/-/IOBluetoothServiceBrowserController -C/func/-/IOBluetoothServiceBrowserControllerBrowseDevices -C/func/-/IOBluetoothServiceBrowserControllerCreate -C/func/-/IOBluetoothServiceBrowserControllerDiscover -C/func/-/IOBluetoothServiceBrowserControllerDiscoverWithDeviceAttributes -C/tdef/-/IOBluetoothServiceBrowserControllerOptions -C/tag/-/IOBluetoothServiceBrowserControllerOptions -C/func/-/IOBluetoothServiceBrowserControllerSetOptions -C/func/-/IOBluetoothSetSupervisionTimeout -C/func/-/IOBluetoothUnpackData -Objective-C/cl/-/IOBluetoothUserNotification -C/tdef/-/IOBluetoothUserNotificationCallback -C/func/-/IOBluetoothUserNotificationUnregister -C/func/-/IOBSDNameMatching -C++/cl/-/IOBufferMemoryDescriptor -C/func/-/IOCancelPowerChange -C++/cl/-/IOCatalogue -C/tag/-/IOCatalogueGetData -C/tag/-/IOCatalogueReset -C/tag/-/IOCatalogueSendData -C/tag/-/IOCatalogueTerminate -C++/cl/-/IOCDBlockStorageDevice -C++/cl/-/IOCDMedia -C/tag/-/IOColorEntry -C++/cl/-/IOCommand -C++/cl/-/IOCommandGate -C++/cl/-/IOCommandPool -C/tdef/-/IOCompletionProcPtr -C/tdef/-/IOCompletionUPP -C++/cl/-/IOConfigDirectory -C/func/-/IOConnectAddClient -C/func/-/IOConnectAddRef -C/func/-/IOConnectGetService -C/func/-/IOConnectMapMemory -C/func/-/IOConnectMapMemory64 -C/func/-/IOConnectRelease -C/func/-/IOConnectSetCFProperties -C/func/-/IOConnectSetCFProperty -C/func/-/IOConnectSetNotificationPort -C/func/-/IOConnectUnmapMemory -C/func/-/IOConnectUnmapMemory64 -C/func/-/IOCopySystemLoadAdvisoryDetailed -C/macro/-/IOCreateDisplayInfoDictionary -C/func/-/IOCreateReceivePort -C/func/-/IOCreateThread -C/func/-/ioctl -C++/cl/-/IODataQueue -C/func/-/IODataQueueAllocateNotificationPort -C/tdef/-/IODataQueueAppendix -C/func/-/IODataQueueDataAvailable -C/func/-/IODataQueueDequeue -C/func/-/IODataQueueEnqueue -C/tdef/-/IODataQueueEntry -C/tdef/-/IODataQueueMemory -C/func/-/IODataQueuePeek -C/func/-/IODataQueueSetNotificationPort -C/func/-/IODataQueueWaitForAvailableData -C++/cl/-/IODBDMAMemoryCursor -C++/cl/-/IODCLProgram -C++/cl/-/IODCLTranslateListen -C++/cl/-/IODCLTranslateTalk -C++/cl/-/IODCLTranslator -C/tdef/-/IODebuggerLockState -C/tdef/-/IODebuggerRxHandler -C/tdef/-/IODebuggerTxHandler -C/func/-/IODelay -C/func/-/IODeregisterApp -C/func/-/IODeregisterForSystemPower -C/tag/-/IODetailedTimingInformationV2 -C++/cl/-/IODeviceMemory -C++/instm/IOPCIDevice/ioDeviceMemory -C/tag/-/IODirection -C/econst/-/ioDirFlg -C/econst/-/ioDirMask -C/func/-/IODispatchCalloutFromMessage -C/func/-/IODisplayCreateInfoDictionary -C/tag/-/IODisplayDictionaryOptions -C/func/-/IODisplayMatchDictionaries -C/tag/-/IODisplayModeInformation -C/tag/-/IODisplayScalerInformation -C/tag/-/IODisplayTimingRange -C++/cl/-/IODMACommand -C/tdef/-/IODot3CollEntry -C/tdef/-/IODot3RxExtraEntry -C/tdef/-/IODot3StatsEntry -C/tdef/-/IODot3TxExtraEntry -C++/cl/-/IODVDBlockStorageDevice -C++/cl/-/IODVDBlockStorageDriver -C++/cl/-/IODVDMedia -C/econst/-/ioErr -C++/cl/-/IOEthernetController -C++/cl/-/IOEthernetInterface -C/tdef/-/IOEthernetStats -C++/cl/-/IOEventSource -C++/macro/-/IOEventSourceAction -C/func/-/IOExitThread -C++/cl/-/IOExtendedLBA -C/macro/-/IOFB_ARBITRARY_SIZE_CURSOR -C/func/-/IOFBCopyI2CInterfaceForBus -C/func/-/IOFBCreateDisplayModeDictionary -C/func/-/IOFBCreateSharedCursor -C/func/-/IOFBGetCurrentDisplayModeAndDepth -C/func/-/IOFBGetDisplayModeCount -C/func/-/IOFBGetDisplayModeInformation -C/func/-/IOFBGetDisplayModes -C/func/-/IOFBGetFramebufferInformationForAperture -C/func/-/IOFBGetFramebufferOffsetForAperture -C/func/-/IOFBGetI2CInterfaceCount -C/func/-/IOFBGetPixelFormat -C/func/-/IOFBGetPixelFormats -C/func/-/IOFBGetPixelInfoDictionary -C/func/-/IOFBGetPixelInformation -C/func/-/IOFBSet256To888Table -C/func/-/IOFBSet444To555Table -C/func/-/IOFBSet555To444Table -C/func/-/IOFBSet888To256Table -C/func/-/IOFBSetBounds -C/func/-/IOFBSetCLUT -C/func/-/IOFBSetCursorPosition -C/func/-/IOFBSetCursorVisible -C/func/-/IOFBSetDisplayModeAndDepth -C/func/-/IOFBSetGamma -C/func/-/IOFBSetNewCursor -C/func/-/IOFBSetStartupDisplayModeAndDepth -C++/macro/-/IOFilterInterruptAction -C++/cl/-/IOFilterInterruptEventSource -C++/cl/-/IOFilterScheme -C/cl/-/IOFireWireAsyncStreamCommandInterface -C++/cl/-/IOFireWireAVCAsynchronousCommand -C++/cl/-/IOFireWireAVCCommand -C/cl/-/IOFireWireAVCLibConsumerInterface -C/cl/-/IOFireWireAVCLibProtocolInterface -C/cl/-/IOFireWireAVCLibUnitInterface -C++/cl/-/IOFireWireAVCNub -C++/cl/-/IOFireWireAVCSubUnit -C++/cl/-/IOFireWireAVCTargetSpace -C++/cl/-/IOFireWireAVCUnit -C++/cl/-/IOFireWireBus -C++/cl/-/IOFireWireBusAux -C/tdef/-/IOFireWireBusResetDoneHandler -C/tdef/-/IOFireWireBusResetHandler -C/cl/-/IOFireWireCommandInterface -C/cl/-/IOFireWireCompareSwapCommandInterface -C/cl/-/IOFireWireCompareSwapCommandInterface_v3 -C/cl/-/IOFireWireConfigDirectoryInterface -C++/cl/-/IOFireWireController -C++/cl/-/IOFireWireControllerAux -C/cl/-/IOFireWireDCLCommandPoolInterface -C++/cl/-/IOFireWireDevice -C++/cl/-/IOFireWireDeviceAux -C/cl/-/IOFireWireDeviceInterface -C++/cl/-/IOFireWireIRMAllocation -C/cl/-/IOFireWireIsochChannelInterface -C/cl/-/IOFireWireIsochPortInterface -C/tdef/-/IOFireWireLibCommandCallback -C/cl/-/IOFireWireLibIRMAllocationInterface -C/tdef/-/IOFireWireLibIRMAllocationLostNotificationProc -C/tdef/-/IOFireWireLibPHYPacketCallback -C/cl/-/IOFireWireLibPHYPacketListenerInterface -C/tdef/-/IOFireWireLibPHYPacketSkippedCallback -C/cl/-/IOFireWireLibVectorCommandInterface -C/cl/-/IOFireWireLocalIsochPortInterface -C++/cl/-/IOFireWireLocalNode -C++/cl/-/IOFireWireLocalNodeAux -C/cl/-/IOFireWireLocalUnitDirectoryInterface -C++/cl/-/IOFireWireMultiIsochReceiveListener -C++/cl/-/IOFireWireMultiIsochReceivePacket -C++/cl/-/IOFireWireNub -C++/cl/-/IOFireWireNubAux -C/cl/-/IOFireWireNubInterface -C/cl/-/IOFireWireNuDCLPoolInterface -C/tdef/-/IOFireWirePCRCallback -C++/cl/-/IOFireWirePCRSpace -C/cl/-/IOFireWirePHYCommandInterface -C/cl/-/IOFireWirePhysicalAddressSpaceInterface -C++/cl/-/IOFireWirePowerManager -C/cl/-/IOFireWirePseudoAddressSpaceInterface -C/tdef/-/IOFireWirePseudoAddressSpaceReadHandler -C/tdef/-/IOFireWirePseudoAddressSpaceSkippedPacketHandler -C/tdef/-/IOFireWirePseudoAddressSpaceWriteHandler -C/cl/-/IOFireWireReadCommandInterface -C/cl/-/IOFireWireReadQuadletCommandInterface -C/cl/-/IOFireWireRemoteIsochPortInterface -C/cl/-/IOFireWireSBP2LibLoginInterface -C/cl/-/IOFireWireSBP2LibLUNInterface -C/cl/-/IOFireWireSBP2LibMgmtORBInterface -C/cl/-/IOFireWireSBP2LibORBInterface -C++/cl/-/IOFireWireSBP2Login -C++/cl/-/IOFireWireSBP2LSIWorkaroundDescriptor -C++/cl/-/IOFireWireSBP2LUN -C++/cl/-/IOFireWireSBP2ManagementORB -C++/cl/-/IOFireWireSBP2ORB -C++/cl/-/IOFireWireSBP2Target -C++/cl/-/IOFireWireSerialBusProtocolTransport -C++/cl/-/IOFireWireUnit -C++/cl/-/IOFireWireUnitAux -C/cl/-/IOFireWireUnitInterface -C/cl/-/IOFireWireWriteCommandInterface -C/cl/-/IOFireWireWriteQuadletCommandInterface -C/func/-/IOFlushProcessorCache -C++/cl/-/IOFramebuffer -C/macro/-/IOFRAMEBUFFER_CONFORMSTO -C/func/-/IOFree -C/func/-/IOFreeAligned -C/func/-/IOFreeContiguous -C/func/-/IOFreePageable -C++/cl/-/IOFWAddressSpace -C++/cl/-/IOFWAddressSpaceAux -C++/cl/-/IOFWAsyncCommand -C++/cl/-/IOFWAsyncPHYCommand -C++/cl/-/IOFWAsyncStreamCommand -C++/cl/-/IOFWAsyncStreamListener -C/tdef/-/IOFWAsyncStreamListenerHandler -C/cl/-/IOFWAsyncStreamListenerInterface -C/tdef/-/IOFWAsyncStreamListenerSkippedPacketHandler -C/tdef/-/IOFWAVCCommandHandlerCallback -C/tdef/-/IOFWAVCPCRCallback -C/tdef/-/IOFWAVCRequestCallback -C/tdef/-/IOFWAVCSubunitPlugHandlerCallback -C++/cl/-/IOFWBusCommand -C/tag/-/IOFWCmdQ -C++/cl/-/IOFWCommand -C++/cl/-/IOFWCompareAndSwapCommand -C++/cl/-/IOFWDCL -C++/cl/-/IOFWDCLPool -C++/cl/-/IOFWDelayCommand -C++/cl/-/IOFWIsochChannel -C++/cl/-/IOFWIsochPort -C++/cl/-/IOFWLocalIsochPort -C++/cl/-/IOFWPHYPacketListener -C++/cl/-/IOFWPhysicalAddressSpace -C++/cl/-/IOFWPhysicalAddressSpaceAux -C++/cl/-/IOFWPseudoAddressSpace -C++/cl/-/IOFWPseudoAddressSpaceAux -C++/cl/-/IOFWReadQuadCommand -C++/cl/-/IOFWReceiveDCL -C/tdef/-/IOFWSBP2FetchAgentWriteCallback -C/tdef/-/IOFWSBP2LoginCallback -C/tdef/-/IOFWSBP2LogoutCallback -C/tdef/-/IOFWSBP2NotifyCallback -C/tdef/-/IOFWSBP2ORBAppendCallback -C/tdef/-/IOFWSBP2ORBCompleteCallback -C/tdef/-/IOFWSBP2StatusCallback -C++/cl/-/IOFWSendDCL -C++/cl/-/IOFWSimpleContiguousPhysicalAddressSpace -C++/cl/-/IOFWSimplePhysicalAddressSpace -C++/cl/-/IOFWSkipCycleDCL -C++/cl/-/IOFWWriteQuadCommand -C++/cl/-/IOGatedOutputQueue -C/func/-/IOGetSystemLoadAdvisory -C/tag/-/IOHardwareCursorDescriptor -C/tag/-/IOHardwareCursorInfo -C/tdef/-/IOHIDCallback -C/tdef/-/IOHIDCallbackFunction -C/tdef/-/IOHIDCompletion -C/tdef/-/IOHIDCompletionAction -C++/cl/-/IOHIDDevice -C/tdef/-/IOHIDDeviceCallback -C/func/-/IOHIDDeviceClose -C/func/-/IOHIDDeviceConformsTo -C/func/-/IOHIDDeviceCopyMatchingElements -C/func/-/IOHIDDeviceCopyValueMultiple -C/func/-/IOHIDDeviceCopyValueMultipleWithCallback -C/func/-/IOHIDDeviceCreate -C/cl/-/IOHIDDeviceDeviceInterface -C/func/-/IOHIDDeviceGetProperty -C/func/-/IOHIDDeviceGetReport -C/func/-/IOHIDDeviceGetReportWithCallback -C/func/-/IOHIDDeviceGetService -C/func/-/IOHIDDeviceGetTypeID -C/func/-/IOHIDDeviceGetValue -C/func/-/IOHIDDeviceGetValueWithCallback -C/cl/-/IOHIDDeviceInterface -C/cl/-/IOHIDDeviceInterface121 -C/cl/-/IOHIDDeviceInterface122 -C/func/-/IOHIDDeviceOpen -C/cl/-/IOHIDDeviceQueueInterface -C/tdef/-/IOHIDDeviceRef -C/func/-/IOHIDDeviceRegisterInputReportCallback -C/func/-/IOHIDDeviceRegisterInputValueCallback -C/func/-/IOHIDDeviceRegisterRemovalCallback -C/func/-/IOHIDDeviceScheduleWithRunLoop -C/func/-/IOHIDDeviceSetInputValueMatching -C/func/-/IOHIDDeviceSetInputValueMatchingMultiple -C/func/-/IOHIDDeviceSetProperty -C/func/-/IOHIDDeviceSetReport -C/func/-/IOHIDDeviceSetReportWithCallback -C/func/-/IOHIDDeviceSetValue -C/func/-/IOHIDDeviceSetValueMultiple -C/func/-/IOHIDDeviceSetValueMultipleWithCallback -C/func/-/IOHIDDeviceSetValueWithCallback -C/cl/-/IOHIDDeviceTransactionInterface -C/func/-/IOHIDDeviceUnscheduleFromRunLoop -C/func/-/IOHIDElementAttach -C/tdef/-/IOHIDElementCallbackFunction -C/tdef/-/IOHIDElementCollectionType -C/tag/-/IOHIDElementCollectionType -C/tdef/-/IOHIDElementCookie -C/func/-/IOHIDElementCopyAttached -C/func/-/IOHIDElementCreateWithDictionary -C/func/-/IOHIDElementDetach -C/func/-/IOHIDElementGetChildren -C/func/-/IOHIDElementGetCollectionType -C/func/-/IOHIDElementGetCookie -C/func/-/IOHIDElementGetDevice -C/func/-/IOHIDElementGetLogicalMax -C/func/-/IOHIDElementGetLogicalMin -C/func/-/IOHIDElementGetName -C/func/-/IOHIDElementGetParent -C/func/-/IOHIDElementGetPhysicalMax -C/func/-/IOHIDElementGetPhysicalMin -C/func/-/IOHIDElementGetProperty -C/func/-/IOHIDElementGetReportCount -C/func/-/IOHIDElementGetReportID -C/func/-/IOHIDElementGetReportSize -C/func/-/IOHIDElementGetType -C/func/-/IOHIDElementGetTypeID -C/func/-/IOHIDElementGetUnit -C/func/-/IOHIDElementGetUnitExponent -C/func/-/IOHIDElementGetUsage -C/func/-/IOHIDElementGetUsagePage -C/func/-/IOHIDElementHasNullState -C/func/-/IOHIDElementHasPreferredState -C/func/-/IOHIDElementIsArray -C/func/-/IOHIDElementIsNonLinear -C/func/-/IOHIDElementIsRelative -C/func/-/IOHIDElementIsVirtual -C/func/-/IOHIDElementIsWrapping -C/tdef/-/IOHIDElementRef -C/func/-/IOHIDElementSetProperty -C/tag/-/IOHIDElementType -C/tdef/-/IOHIDElementType -C++/cl/-/IOHIDInterface -C/func/-/IOHIDManagerClose -C/func/-/IOHIDManagerCopyDevices -C/func/-/IOHIDManagerCreate -C/func/-/IOHIDManagerGetProperty -C/func/-/IOHIDManagerGetTypeID -C/func/-/IOHIDManagerOpen -C/tdef/-/IOHIDManagerRef -C/func/-/IOHIDManagerRegisterDeviceMatchingCallback -C/func/-/IOHIDManagerRegisterDeviceRemovalCallback -C/func/-/IOHIDManagerRegisterInputReportCallback -C/func/-/IOHIDManagerRegisterInputValueCallback -C/func/-/IOHIDManagerScheduleWithRunLoop -C/func/-/IOHIDManagerSetDeviceMatching -C/func/-/IOHIDManagerSetDeviceMatchingMultiple -C/func/-/IOHIDManagerSetInputValueMatching -C/func/-/IOHIDManagerSetInputValueMatchingMultiple -C/func/-/IOHIDManagerSetProperty -C/func/-/IOHIDManagerUnscheduleFromRunLoop -C/tag/-/IOHIDOptionsType -C/tdef/-/IOHIDOptionsType -C/cl/-/IOHIDOutputTransactionInterface -C++/cl/-/IOHIDPointing -C/func/-/IOHIDQueueAddElement -C/func/-/IOHIDQueueContainsElement -C/func/-/IOHIDQueueCopyNextValue -C/func/-/IOHIDQueueCopyNextValueWithTimeout -C/func/-/IOHIDQueueCreate -C/func/-/IOHIDQueueGetDepth -C/func/-/IOHIDQueueGetDevice -C/func/-/IOHIDQueueGetTypeID -C/cl/-/IOHIDQueueInterface -C/tdef/-/IOHIDQueueOptionsType -C/tag/-/IOHIDQueueOptionsType -C/tdef/-/IOHIDQueueRef -C/func/-/IOHIDQueueRegisterValueAvailableCallback -C/func/-/IOHIDQueueRemoveElement -C/func/-/IOHIDQueueScheduleWithRunLoop -C/func/-/IOHIDQueueSetDepth -C/func/-/IOHIDQueueStart -C/func/-/IOHIDQueueStop -C/func/-/IOHIDQueueUnscheduleFromRunLoop -C/tdef/-/IOHIDReportCallback -C/tdef/-/IOHIDReportCallbackFunction -C/cl/-/IOHIDReportHandler -C/tag/-/IOHIDReportOption -C/tdef/-/IOHIDReportType -C/tag/-/IOHIDReportType -C/func/-/IOHIDTransactionAddElement -C/func/-/IOHIDTransactionClear -C/func/-/IOHIDTransactionCommit -C/func/-/IOHIDTransactionCommitWithCallback -C/func/-/IOHIDTransactionContainsElement -C/func/-/IOHIDTransactionCreate -C/tdef/-/IOHIDTransactionDirectionType -C/tag/-/IOHIDTransactionDirectionType -C/func/-/IOHIDTransactionGetDevice -C/func/-/IOHIDTransactionGetDirection -C/func/-/IOHIDTransactionGetTypeID -C/func/-/IOHIDTransactionGetValue -C/tag/-/IOHIDTransactionOption -C/tdef/-/IOHIDTransactionRef -C/func/-/IOHIDTransactionRemoveElement -C/func/-/IOHIDTransactionScheduleWithRunLoop -C/func/-/IOHIDTransactionSetDirection -C/func/-/IOHIDTransactionSetValue -C/func/-/IOHIDTransactionUnscheduleFromRunLoop -C/tdef/-/IOHIDValueCallback -C/func/-/IOHIDValueCreateWithBytes -C/func/-/IOHIDValueCreateWithBytesNoCopy -C/func/-/IOHIDValueCreateWithIntegerValue -C/func/-/IOHIDValueGetBytePtr -C/func/-/IOHIDValueGetElement -C/func/-/IOHIDValueGetIntegerValue -C/func/-/IOHIDValueGetLength -C/func/-/IOHIDValueGetScaledValue -C/func/-/IOHIDValueGetTimeStamp -C/func/-/IOHIDValueGetTypeID -C/tdef/-/IOHIDValueMultipleCallback -C/tdef/-/IOHIDValueRef -C/tag/-/IOHIDValueScaleType -C/tdef/-/IOHIDValueScaleType -C/tag/-/IOI2CBusTiming -C++/cl/-/IOI2CInterface -C/func/-/IOI2CInterfaceClose -C/func/-/IOI2CInterfaceOpen -C/tag/-/IOI2CRequest -C/func/-/IOI2CSendRequest -C++/cl/-/IOInterleavedMemoryDescriptor -C++/macro/-/IOInterruptEventAction -C++/cl/-/IOInterruptEventSource -C/func/-/IOIteratorIsValid -C/func/-/IOIteratorNext -C/func/-/IOIteratorReset -C++/cl/-/IOKernelDebugger -C/macro/-/iokit_usb_err -C/macro/-/iokit_usb_msg -C/macro/-/iokit_vendor_specific_msg -C/func/-/IOKitGetBusyState -C/func/-/IOKitWaitQuiet -C++/cl/-/IOLittleMemoryCursor -C++/cl/-/IOLocalConfigDirectory -C/func/-/IOLockAlloc -C/func/-/IOLockFree -C/func/-/IOLockGetMachLock -C/data/-/IOLockGroup -C/func/-/IOLockLock_multideclaration_block -C/func/-/IOLockTryLock_multideclaration_block -C/func/-/IOLockUnlock_multideclaration_block -C/func/-/IOLog -C/func/-/IOLogv -C/tag/-/IOMakeMatching -C/func/-/IOMalloc -C/func/-/IOMallocAligned -C/func/-/IOMallocContiguous -C/func/-/IOMallocPageable -C/func/-/IOMappedRead16 -C/func/-/IOMappedRead32 -C/func/-/IOMappedRead64 -C/func/-/IOMappedRead8 -C/func/-/IOMappedWrite16 -C/func/-/IOMappedWrite32 -C/func/-/IOMappedWrite64 -C/func/-/IOMappedWrite8 -C/func/-/IOMasterPort -C++/cl/-/IOMbufBigMemoryCursor -C++/cl/-/IOMbufDBDMAMemoryCursor -C++/cl/-/IOMbufLittleMemoryCursor -C++/cl/-/IOMbufMemoryCursor -C++/cl/-/IOMbufNaturalMemoryCursor -C++/cl/-/IOMedia -C/tag/-/IOMediaAttributeMask -C/tag/-/IOMediaState -C/tdef/-/IOMediumType -C++/cl/-/IOMemoryCursor -C++/cl/-/IOMemoryDescriptor -C++/cl/-/IOMemoryMap -C++/cl/-/IOMultiMemoryDescriptor -C++/cl/-/IONaturalMemoryCursor -C/func/-/IONetworkClose -C++/cl/-/IONetworkController -C++/cl/-/IONetworkData -C/func/-/IONetworkGetDataCapacity -C/func/-/IONetworkGetDataHandle -C/func/-/IONetworkGetPacketFiltersMask -C++/cl/-/IONetworkInterface -C++/cl/-/IONetworkMedium -C/func/-/IONetworkOpen -C/tag/-/IONetworkPacketFilterOptions -C/func/-/IONetworkReadData -C/func/-/IONetworkResetData -C/func/-/IONetworkSetPacketFiltersMask -C/tdef/-/IONetworkStats -C++/cl/-/IONetworkUserClient -C/func/-/IONetworkWriteData -C/func/-/IONotificationPortCreate -C/func/-/IONotificationPortDestroy -C/func/-/IONotificationPortGetMachPort -C/func/-/IONotificationPortGetRunLoopSource -C++/cl/-/IONotifier -C/func/-/IOObjectConformsTo -C/func/-/IOObjectCopyBundleIdentifierForClass -C/func/-/IOObjectCopyClass -C/func/-/IOObjectCopySuperclassForClass -C/func/-/IOObjectGetClass -C/func/-/IOObjectGetKernelRetainCount -C/func/-/IOObjectGetRetainCount -C/func/-/IOObjectGetUserRetainCount -C/func/-/IOObjectIsEqualTo -C/func/-/IOObjectRelease -C/func/-/IOObjectRetain -C/func/-/IOOpenFirmwarePathMatching -C/tag/-/IOOptionBits -C/tdef/-/IOOutputAction -C++/cl/-/IOOutputQueue -C/tdef/-/IOOutputQueueStats -C/tdef/-/IOPacketBufferConstraints -C++/cl/-/IOPacketQueue -C++/clconst/IOPacketQueue/IOPacketQueueDefaultCapacity -C/tdef/-/IOParam -C++/cl/-/IOPartitionScheme -C/func/-/IOPause -C++/cl/-/IOPCI2PCIBridge -C++/cl/-/IOPCIATA -C++/cl/-/IOPCIConfigurator -C++/cl/-/IOPCIDevice -C++/macro/-/IOPhysicalSegment -C/tag/-/IOPixelInformation -C/func/-/IOPMAssertionCreate -C/func/-/IOPMAssertionCreateWithName -C/tdef/-/IOPMAssertionID -C/tdef/-/IOPMAssertionLevel -C/func/-/IOPMAssertionRelease -C/func/-/IOPMCancelScheduledPowerEvent -C/func/-/IOPMCopyAssertionsByProcess -C/func/-/IOPMCopyAssertionsStatus -C/func/-/IOPMCopyBatteryInfo -C/func/-/IOPMCopyScheduledPowerEvents -C/func/-/IOPMFindPowerManagement -C/func/-/IOPMGetAggressiveness -C/tag/-/IOPMPowerFlags -C/tdef/-/IOPMPowerFlags -C/tag/-/IOPMPowerState -C/func/-/IOPMSchedulePowerEvent -C/func/-/IOPMSetAggressiveness -C/func/-/IOPMSleepEnabled -C/func/-/IOPMSleepSystem -C/func/-/IOPSCopyExternalPowerAdapterDetails -C/func/-/IOPSCopyPowerSourcesInfo -C/func/-/IOPSCopyPowerSourcesList -C/func/-/IOPSGetBatteryWarningLevel -C/func/-/IOPSGetPowerSourceDescription -C/func/-/IOPSNotificationCreateRunLoopSource -C++/cl/-/IORangeAllocator -C++/instm/IOPCIDevice/ioRead16 -C++/instm/IOPCIDevice/ioRead32 -C++/instm/IOPCIDevice/ioRead8 -C/func/-/IORegisterApp -C/func/-/IORegisterForSystemPower -C/func/-/IORegistryCreateIterator -C++/cl/-/IORegistryEntry -C/func/-/IORegistryEntryCreateCFProperties -C/func/-/IORegistryEntryCreateCFProperty -C/func/-/IORegistryEntryCreateIterator -C/func/-/IORegistryEntryFromPath -C/func/-/IORegistryEntryGetChildEntry -C/func/-/IORegistryEntryGetChildIterator -C/func/-/IORegistryEntryGetLocationInPlane -C/func/-/IORegistryEntryGetName -C/func/-/IORegistryEntryGetNameInPlane -C/func/-/IORegistryEntryGetParentEntry -C/func/-/IORegistryEntryGetParentIterator -C/func/-/IORegistryEntryGetPath -C/func/-/IORegistryEntryGetRegistryEntryID -C/func/-/IORegistryEntryIDMatching -C/func/-/IORegistryEntryInPlane -Objective-C/instm/DRDevice(InfoConvenience)/ioRegistryEntryPath -C/func/-/IORegistryEntrySearchCFProperty -C/func/-/IORegistryEntrySetCFProperties -C/func/-/IORegistryEntrySetCFProperty -C/func/-/IORegistryGetRootEntry -C++/cl/-/IORegistryIterator -C/func/-/IORegistryIteratorEnterEntry -C/func/-/IORegistryIteratorExitEntry -C++/cl/-/IORemoteConfigDirectory -C++/cl/-/IOSCSIParallelInterfaceController -C++/cl/-/IOSCSIProtocolInterface -C++/cl/-/IOService -C/func/-/IOServiceAddInterestNotification -C/func/-/IOServiceAddMatchingNotification -C/func/-/IOServiceClose -C/func/-/IOServiceGetBusyState -C/func/-/IOServiceGetMatchingService -C/func/-/IOServiceGetMatchingServices -C/tdef/-/IOServiceInterestCallback -C/tdef/-/IOServiceInterestHandler -C/func/-/IOServiceMatching -C/tdef/-/IOServiceMatchingCallback -C/func/-/IOServiceMatchPropertyTable -C/func/-/IOServiceNameMatching -C/tdef/-/IOServiceNotificationHandler -C/func/-/IOServiceOFPathToBSDName -C/func/-/IOServiceOpen -C/func/-/IOServiceRequestProbe -C/func/-/IOServiceWaitQuiet -C/func/-/IOSetProcessorCacheMode -C++/cl/-/IOSharedDataQueue -C/func/-/IOSleep -C++/cl/-/IOStorage -C/tag/-/IOStorageAccess -C/tag/-/IOStorageAttributes -C/tag/-/IOStorageCompletion -C/tdef/-/IOStorageCompletionAction -C/tag/-/IOStorageOptions -C/tag/-/IOStream -C++/cl/-/IOStream -C++/cl/-/IOStreamBuffer -C/tdef/-/IOStreamBufferID -C/tag/-/IOStreamBufferQueue -C/tag/-/IOStreamBufferQueueEntry -C/tdef/-/IOStreamOutputCallback -C/tdef/-/IOStreamRef -C++/cl/-/IOSubMemoryDescriptor -C/tdef/-/IOSystemLoadAdvisoryLevel -C/macro/-/IOThreadSelf -C++/cl/-/IOTimerEventSource -C/tdef/-/IOUPSEventCallbackFunction -C/cl/-/IOUPSPlugInInterface -C++/cl/-/IOUSBCommand -C/tdef/-/IOUSBCompletion -C/tdef/-/IOUSBCompletionAction -C/tdef/-/IOUSBCompletionActionWithTimeStamp -C/tdef/-/IOUSBCompletionWithTimeStamp -C++/cl/-/IOUSBCompositeDriver -C/tdef/-/IOUSBConfigurationDescHeader -C/tag/-/IOUSBConfigurationDescHeader -C/tag/-/IOUSBConfigurationDescriptor -C/tdef/-/IOUSBConfigurationDescriptor -C++/cl/-/IOUSBController -C++/cl/-/IOUSBControllerListElement -C++/cl/-/IOUSBControllerV2 -C++/cl/-/IOUSBControllerV3 -C/tdef/-/IOUSBDescriptorHeader -C/tag/-/IOUSBDescriptorHeader -C++/cl/-/IOUSBDevice -C/tag/-/IOUSBDeviceDescriptor -C/tdef/-/IOUSBDeviceDescriptor -C/cl/-/IOUSBDeviceInterface -C/cl/-/IOUSBDeviceInterface182 -C/cl/-/IOUSBDeviceInterface187 -C/cl/-/IOUSBDeviceInterface197 -C/cl/-/IOUSBDeviceInterface245 -C/cl/-/IOUSBDeviceInterface300 -C/cl/-/IOUSBDeviceInterface320 -C/tag/-/IOUSBDeviceQualifierDescriptor -C/tdef/-/IOUSBDeviceQualifierDescriptor -C/tdef/-/IOUSBDevRequest -C/tdef/-/IOUSBDevRequestDesc -C/tdef/-/IOUSBDevRequestTO -C/tag/-/IOUSBDFUDescriptor -C/tdef/-/IOUSBDFUDescriptor -C/tdef/-/IOUSBEndpointDescriptor -C/tag/-/IOUSBEndpointDescriptor -C/tdef/-/IOUSBFindEndpointRequest -C/tdef/-/IOUSBFindInterfaceRequest -C/tdef/-/IOUSBGetFrameStruct -C/tag/-/IOUSBHIDDescriptor -C/tdef/-/IOUSBHIDDescriptor -C++/cl/-/IOUSBHIDDriver -C/tag/-/IOUSBHIDReportDesc -C/tdef/-/IOUSBHIDReportDesc -C/tdef/-/IOUSBHubDescriptor -C/tag/-/IOUSBHubDescriptor -C++/cl/-/IOUSBHubDevice -C++/cl/-/IOUSBHubPolicyMaker -C/tdef/-/IOUSBHubPortReEnumerateParam -C/tdef/-/IOUSBHubStatus -C/tag/-/IOUSBHubStatus -C++/cl/-/IOUSBInterface -C/tag/-/IOUSBInterfaceAssociationDescriptor -C/tdef/-/IOUSBInterfaceAssociationDescriptor -C/tag/-/IOUSBInterfaceDescriptor -C/tdef/-/IOUSBInterfaceDescriptor -C/cl/-/IOUSBInterfaceInterface -C/cl/-/IOUSBInterfaceInterface182 -C/cl/-/IOUSBInterfaceInterface183 -C/cl/-/IOUSBInterfaceInterface190 -C/cl/-/IOUSBInterfaceInterface192 -C/cl/-/IOUSBInterfaceInterface197 -C/tdef/-/IOUSBIsocCompletion -C/tdef/-/IOUSBIsocCompletionAction -C/tdef/-/IOUSBIsocFrame -C/tdef/-/IOUSBLowLatencyIsocCompletion -C/tdef/-/IOUSBLowLatencyIsocCompletionAction -C/tag/-/IOUSBLowLatencyIsocFrame -C/tdef/-/IOUSBLowLatencyIsocFrame -C++/cl/-/IOUSBNub -C++/cl/-/IOUSBPipe -C++/cl/-/IOUSBRootHubDevice -C++/cl/-/IOUSBWorkLoop -C++/cl/-/IOUserClient -C/func/-/IOVirtualRangeMake -C++/cl/-/IOWorkLoop -C++/instm/IOPCIDevice/ioWrite16 -C++/instm/IOPCIDevice/ioWrite32 -C++/instm/IOPCIDevice/ioWrite8 -C/func/-/ipf_addv4 -C/func/-/ipf_addv6 -C/tdef/-/ipf_detach_func -C/tag/-/ipf_filter -C/func/-/ipf_inject_input -C/func/-/ipf_inject_output -C/tdef/-/ipf_input_func -C/tdef/-/ipf_output_func -C/func/-/ipf_remove -C/tdef/-/ipfilter_t -C/func/-/ipsec_dump_policy -C/func/-/ipsec_get_policylen -C/func/-/ipsec_set_policy -C/func/-/ipsec_strerror -C/func/-/iruserok -C/func/-/iruserok_sa -Objective-C/intfm/Fx3DAPI/is3D -C/macro/-/IS_ASCII_DIGIT -C/macro/-/IS_ASCII_LETTER -C/macro/-/IS_BASECHAR -C/macro/-/IS_BLANK -C/macro/-/IS_BLANK_CH -C/macro/-/IS_BYTE_CHAR -C/macro/-/IS_CHAR -C/macro/-/IS_CHAR_CH -C/func/-/is_cleared -C/macro/-/IS_COMBINING -C/macro/-/IS_COMBINING_CH -C/macro/-/IS_DIGIT -C/macro/-/IS_DIGIT_CH -C/macro/-/IS_EXTENDER -C/macro/-/IS_EXTENDER_CH -C/func/-/is_idcok -C/macro/-/IS_IDEOGRAPHIC -C/func/-/is_idlok -C/func/-/is_immedok -C/func/-/is_keypad -C/func/-/is_leaveok -C/macro/-/IS_LETTER -C/macro/-/IS_LETTER_CH -C/func/-/is_linetouched -C/func/-/is_nodelay -C/func/-/is_notimeout -C/macro/-/IS_PUBIDCHAR -C/macro/-/IS_PUBIDCHAR_CH -C/func/-/is_scrollok -C/func/-/is_syncok -C/func/-/is_term_resized -C/func/-/is_timeout -C/func/-/is_wintouched -C/macro/-/IS_XSLT_ELEM -C/macro/-/IS_XSLT_NAME -C/macro/-/IS_XSLT_REAL_NODE -Objective-C/instm/NSString/isAbsolutePath -Objective-C/instm/NSEntityDescription/isAbstract -Objective-C/instm/NSColorWell/isActive -Objective-C/instm/NSRunningApplication/isActive -Objective-C/instm/NSApplication/isActive -Objective-C/instm/CAPropertyAnimation/isAdditive -C/func/-/IsAliasFile -Objective-C/instp/CalEvent/isAllDay -Objective-C/instm/CalEvent/isAllDay -C/func/-/isalnum -C/func/-/isalnum_l -C/func/-/isalpha -C/func/-/isalpha_l -Objective-C/instm/NSMenuItem/isAlternate -C/func/-/ISAMAX -Objective-C/instm/ScreenSaverView/isAnimating -Objective-C/instm/QCCompositionPickerView/isAnimating -Objective-C/instm/NSAnimation/isAnimating -Objective-C/clm/NSSpeechSynthesizer/isAnyApplicationSpeaking -Objective-C/instm/NSEvent/isARepeat -C/func/-/isascii -C/func/-/isascii_l -Objective-C/instm/CAOpenGLLayer/isAsynchronous -Objective-C/instm/NSUnarchiver/isAtEnd -Objective-C/instm/NSScanner/isAtEnd -JavaScript/instp/Error/isATError -Objective-C/instm/NSMenuView/isAttached -Objective-C/instm/NSMenu/isAttached -C/func/-/isatty -C/func/-/IsAudioFormatNativeEndian -Objective-C/instm/NSWindow/isAutodisplay -Objective-C/instm/NSTextView/isAutomaticDashSubstitutionEnabled -Objective-C/instm/NSTextView/isAutomaticDataDetectionEnabled -Objective-C/instm/NSTextView/isAutomaticLinkDetectionEnabled -Objective-C/instm/NSTextView/isAutomaticQuoteSubstitutionEnabled -Objective-C/instm/NSTextView/isAutomaticSpellingCorrectionEnabled -Objective-C/instm/NSTextView/isAutomaticTextReplacementEnabled -Objective-C/instm/NSMatrix/isAutoscroll -Objective-C/instm/QTMovieView/isBackButtonVisible -Objective-C/instm/NSFont/isBaseFont -Objective-C/instm/NSProgressIndicator/isBezeled -Objective-C/instm/NSDatePicker/isBezeled -Objective-C/instm/NSTextField/isBezeled -Objective-C/instm/NSCell/isBezeled -C/func/-/isblank -C/func/-/isblank_l -Objective-C/instm/NSButton/isBordered -Objective-C/instm/NSColorWell/isBordered -Objective-C/instm/NSDatePicker/isBordered -Objective-C/instm/NSTextField/isBordered -Objective-C/instm/NSCell/isBordered -JavaScript/instm/WebGLRenderingContext/isBuffer -Objective-C/instm/NSComboBox/isButtonBordered -Objective-C/instm/NSComboBoxCell/isButtonBordered -Objective-C/instm/NSPortCoder/isBycopy -Objective-C/instm/NSPortCoder/isByref -Objective-C/instm/NSImage/isCachedSeparately -Objective-C/instm/NSOperation/isCancelled -Objective-C/instm/ISyncSession/isCancelled -Objective-C/instm/NSThread/isCancelled -Objective-C/instm/NSObject/isCaseInsensitiveLike: -C++/instm/IORegistryEntry/isChild -Objective-C/instm/XGConnection/isClosed -C/func/-/iscntrl -C/func/-/iscntrl_l -Objective-C/instm/NSTextView/isCoalescingUndo -JavaScript/data/DOMSelection/isCollapsed -Objective-C/instm/NSGarbageCollector/isCollecting -Objective-C/instm/NSPrinter/isColor -Objective-C/instm/NSTableView/isColumnSelected: -Objective-C/instm/NSAppleScript/isCompiled -Objective-C/instm/CalTask/isCompleted -Objective-C/instp/CalTask/isCompleted -Objective-C/instm/NSOperation/isConcurrent -Objective-C/instm/NSManagedObjectModel/isConfiguration:compatibleWithStoreMetadata: -Objective-C/instm/QTCaptureDevice/isConnected -Objective-C/instm/IOBluetoothDevice/isConnected -Objective-C/intfm/NSDiscardableContent/isContentDiscarded -JavaScript/data/HTMLElement/isContentEditable -Objective-C/clm/NSHelpManager/isContextHelpModeActive -Objective-C/instm/NSColorPanel/isContinuous -Objective-C/instm/NSControl/isContinuous -Objective-C/instm/NSCell/isContinuous -Objective-C/instm/NSTextView/isContinuousSpellCheckingEnabled -Objective-C/instm/WebView/isContinuousSpellCheckingEnabled -Objective-C/instm/QTMovieView/isControllerVisible -Objective-C/instm/NSPrintOperation/isCopyingOperation -Objective-C/instm/NSFetchRequestExpression/isCountOnlyRequest -Objective-C/instm/CAPropertyAnimation/isCumulative -C/func/-/IsCursorKey -Objective-C/instm/QTMovieView/isCustomButtonVisible -C/func/-/IsDataBrowserItemSelected -Objective-C/instm/NSImage/isDataRetained -Objective-C/instm/NSTimeZone/isDaylightSavingTime -Objective-C/instm/NSTimeZone/isDaylightSavingTimeForDate: -Objective-C/instm/XGGrid/isDefault -JavaScript/instm/core/isDefaultNamespace -Objective-C/instm/NSFileManager/isDeletableFileAtPath: -Objective-C/instm/NSManagedObject/isDeleted -Objective-C/instm/NSView/isDescendantOf: -Objective-C/instm/CalEvent/isDetached -Objective-C/instp/CalEvent/isDetached -Objective-C/instm/IOBluetoothRFCOMMAudioController/isDeviceConnected -C/func/-/isdigit -C/func/-/isdigit_l -Objective-C/instm/NSFileWrapper/isDirectory -Objective-C/instm/NSProgressIndicator/isDisplayedWhenStopped -Objective-C/instm/NSPersistentDocument/isDocumentEdited -Objective-C/instm/NSDocument/isDocumentEdited -Objective-C/instm/NSWindow/isDocumentEdited -Objective-C/instm/CALayer/isDoubleSided -Objective-C/instm/NSRulerMarker/isDragging -Objective-C/instm/NSGraphicsContext/isDrawingToScreen -Objective-C/instm/SFCertificateView/isEditable -Objective-C/instm/NSImageView/isEditable -Objective-C/instm/AMWorkflowView/isEditable -Objective-C/instm/NSColorList/isEditable -Objective-C/instm/NSTableColumn/isEditable -Objective-C/instm/NSObjectController/isEditable -Objective-C/instm/CalCalendar/isEditable -Objective-C/instp/CalCalendar/isEditable -Objective-C/instm/NSTextField/isEditable -Objective-C/instm/NSRuleEditor/isEditable -Objective-C/instm/NSTextView/isEditable -Objective-C/instm/QTMovieView/isEditable -Objective-C/instm/WebView/isEditable -Objective-C/instm/NSCell/isEditable -Objective-C/instm/NSText/isEditable -Objective-C/instm/NSController/isEditing -C++/instm/IOMedia/isEjectable -Objective-C/instm/NSBezierPath/isEmpty -Objective-C/instm/CIFilter/isEnabled -Objective-C/instm/SFAuthorizationView/isEnabled -Objective-C/instm/NSToolbarItem/isEnabled -Objective-C/instm/NSFontManager/isEnabled -Objective-C/instm/NSStatusItem/isEnabled -Objective-C/instm/CBUserIdentity/isEnabled -Objective-C/instm/NSGarbageCollector/isEnabled -Objective-C/instm/ISyncManager/isEnabled -Objective-C/instm/CAEmitterCell/isEnabled -Objective-C/instm/QTCaptureConnection/isEnabled -Objective-C/instm/QTTrack/isEnabled -Objective-C/instm/IMAVControl/isEnabled -Objective-C/instm/NSMenuItem/isEnabled -Objective-C/instm/NSControl/isEnabled -Objective-C/instm/NSFontPanel/isEnabled -C++/instm/IOEventSource/isEnabled -Objective-C/instm/NSCell/isEnabled -JavaScript/instm/WebGLRenderingContext/isEnabled -Objective-C/instm/ISyncClient/isEnabledForEntityName: -Objective-C/instm/NSSegmentedCell/isEnabledForSegment: -Objective-C/instm/NSSegmentedControl/isEnabledForSegment: -Objective-C/instm/PDFDocument/isEncrypted -C/func/-/isendwin -Objective-C/instm/NSEvent/isEnteringProximity -Objective-C/instm/NSCell/isEntryAcceptable: -Objective-C/intfm/ISyncFiltering/isEqual: -Objective-C/instm/IOBluetoothDevice/isEqual: -Objective-C/instm/IOBluetoothSDPDataElement/isEqual: -Objective-C/intfm/NSObject/isEqual: -Objective-C/instm/NSURL/isEqual: -Objective-C/instp/NSPointerFunctions/isEqualFunction -Objective-C/instm/NSPointerFunctions/isEqualFunction -JavaScript/instm/core/isEqualNode -C++/instm/IONetworkMedium/isEqualTo -C++/instm/OSArray/isEqualTo -C++/instm/OSBoolean/isEqualTo -C++/instm/OSData/isEqualTo -C++/instm/OSMetaClassBase/isEqualTo -C++/instm/OSDictionary/isEqualTo -C++/instm/OSNumber/isEqualTo -C++/instm/OSOrderedSet/isEqualTo -C++/instm/OSSet/isEqualTo -C++/instm/OSSymbol/isEqualTo -C++/instm/OSString/isEqualTo -Objective-C/instm/NSObject/isEqualTo: -Objective-C/instm/NSArray/isEqualToArray: -Objective-C/instm/NSAttributedString/isEqualToAttributedString: -Objective-C/instm/QTCompressionOptions/isEqualToCompressionOptions: -Objective-C/instm/CWConfiguration/isEqualToConfiguration: -Objective-C/instm/IOBluetoothSDPUUID/isEqualToData: -Objective-C/instm/NSData/isEqualToData: -Objective-C/instm/NSDate/isEqualToDate: -Objective-C/instm/DRDevice/isEqualToDevice: -Objective-C/instm/NSDictionary/isEqualToDictionary: -Objective-C/instm/QTFormatDescription/isEqualToFormatDescription: -Objective-C/instm/NSHashTable/isEqualToHashTable: -Objective-C/instm/NSHost/isEqualToHost: -Objective-C/instm/NSIndexSet/isEqualToIndexSet: -Objective-C/instm/CWInterface/isEqualToInterface: -Objective-C/instm/DRMSF/isEqualToMSF: -Objective-C/instm/CWNetwork/isEqualToNetwork: -Objective-C/instm/NSNumber/isEqualToNumber: -Objective-C/instm/CW8021XProfile/isEqualToProfile: -Objective-C/instm/CWWirelessProfile/isEqualToProfile: -Objective-C/instm/NSSet/isEqualToSet: -Objective-C/instm/NSString/isEqualToString: -Objective-C/instm/NSTimeZone/isEqualToTimeZone: -Objective-C/instm/IOBluetoothSDPUUID/isEqualToUUID: -Objective-C/instm/NSValue/isEqualToValue: -Objective-C/instm/NSWindow/isExcludedFromWindowsMenu -C++/instm/IOFWAddressSpace/isExclusive -Objective-C/instm/NSFileManager/isExecutableFileAtPath: -Objective-C/instm/NSOperation/isExecuting -Objective-C/instm/NSThread/isExecuting -Objective-C/instm/NSOutlineView/isExpandable: -Objective-C/instm/NSSavePanel/isExpanded -Objective-C/instm/NSObject/isExplicitlyIncluded -Objective-C/instm/NSSavePanel/isExtensionHidden -Objective-C/instm/NSXMLDTDNode/isExternal -C++/instm/OSBoolean/isFalse -Objective-C/instm/NSManagedObject/isFault -Objective-C/instm/IOBluetoothDevice/isFavorite -Objective-C/instm/NSTextView/isFieldEditor -Objective-C/instm/NSText/isFieldEditor -Objective-C/instm/NSWorkspace/isFilePackageAtPath: -Objective-C/instm/NSURL/isFileReferenceURL -Objective-C/instm/NSURL/isFileURL -Objective-C/instm/PDFDocument/isFinding -Objective-C/instm/NSOperation/isFinished -Objective-C/instm/NSThread/isFinished -Objective-C/instm/NSRunningApplication/isFinishedLaunching -C/func/-/isfinite -Objective-C/instm/NSCollectionView/isFirstResponder -Objective-C/instm/NSFont/isFixedPitch -Objective-C/instm/NSRulerView/isFlipped -Objective-C/instm/NSGraphicsContext/isFlipped -Objective-C/instm/NSImage/isFlipped -Objective-C/instm/NSView/isFlipped -Objective-C/instm/NSWindow/isFloatingPanel -Objective-C/instm/NSPanel/isFloatingPanel -Objective-C/instm/NSWindow/isFlushWindowDisabled -Objective-C/instm/NSPrinter/isFontAvailable: -C++/instm/IOMedia/isFormatted -JavaScript/instm/WebGLRenderingContext/isFramebuffer -Objective-C/instm/NSApplication/isFullKeyboardAccessEnabled -C/func/-/IsFunctionKey -Objective-C/instm/NSMetadataQuery/isGathering -Objective-C/instm/CALayer/isGeometryFlipped -Objective-C/instm/NSTextView/isGrammarCheckingEnabled -C/func/-/isgraph -C/func/-/isgraph_l -C/func/-/isgreater -C/func/-/isgreaterequal -Objective-C/instm/NSObject/isGreaterThan: -Objective-C/instm/NSObject/isGreaterThanOrEqualTo: -Objective-C/instm/IKImageBrowserView/isGroupExpandedAtIndex: -C/func/-/ishexnumber -C/func/-/ishexnumber_l -Objective-C/instm/CBIdentity/isHidden -Objective-C/instm/NSTableColumn/isHidden -Objective-C/instm/NSMenuItem/isHidden -Objective-C/instm/NSRunningApplication/isHidden -Objective-C/instm/NSView/isHidden -Objective-C/instm/NSApplication/isHidden -Objective-C/instm/CALayer/isHidden -Objective-C/instm/NSMenuItem/isHiddenOrHasHiddenAncestor -Objective-C/instm/NSView/isHiddenOrHasHiddenAncestor -Objective-C/instm/PDFAnnotationButtonWidget/isHighlighted -Objective-C/instm/NSMenuItem/isHighlighted -Objective-C/instm/NSCell/isHighlighted -Objective-C/instm/NSMenuView/isHorizontal -Objective-C/instm/NSPrintInfo/isHorizontallyCentered -Objective-C/instm/NSText/isHorizontallyResizable -Objective-C/clm/NSHost/isHostCacheEnabled -Objective-C/instm/QTMovieView/isHotSpotButtonVisible -Objective-C/instm/NSHTTPCookie/isHTTPOnly -Objective-C/instp/CWNetwork/isIBSS -JavaScript/data/Attr/isId -C/func/-/isideogram -C/func/-/isideogram_l -Objective-C/instm/QTMovie/isIdling -C++/instm/IOService/isInactive -Objective-C/instm/IOBluetoothRFCOMMChannel/isIncoming -Objective-C/instm/IOBluetoothL2CAPChannel/isIncoming -Objective-C/instm/IOBluetoothDevice/isIncoming -Objective-C/instm/NSProgressIndicator/isIndeterminate -Objective-C/binding/NSProgressIndicator/isIndeterminate -Objective-C/instm/NSPropertyDescription/isIndexed -Objective-C/instm/NSPropertyDescription/isIndexedBySpotlight -C/func/-/isinf -Objective-C/instm/NSView/isInFullScreenMode -Objective-C/instm/NSManagedObject/isInserted -Objective-C/instm/QTCaptureDevice/isInUseByAnotherApplication -JavaScript/instp/Application/isISync -Objective-C/instm/NSOutlineView/isItemExpanded: -Objective-C/instm/WebPreferences/isJavaEnabled -Objective-C/instm/WebPreferences/isJavaScriptEnabled -Objective-C/instm/NSPrinter/isKey:inTable: -Objective-C/clm/NSObject/isKeyExcludedFromWebScript: -C/func/-/IsKeypadKey -Objective-C/instm/NSWindow/isKeyWindow -Objective-C/intfm/NSObject/isKindOfClass: -Objective-C/instm/NSEntityDescription/isKindOfEntity: -Objective-C/instm/NSTreeNode/isLeaf -Objective-C/instm/NSBrowserCell/isLeaf -Objective-C/instm/NSBrowser/isLeafItem: -Objective-C/instm/NSDateFormatter/isLenient -Objective-C/instm/NSNumberFormatter/isLenient -C/func/-/isless -C/func/-/islessequal -C/func/-/islessgreater -Objective-C/instm/NSObject/isLessThan: -Objective-C/instm/NSObject/isLessThanOrEqualTo: -Objective-C/instm/NSObject/isLike: -Objective-C/instm/PDFAnnotationChoiceWidget/isListChoice -Objective-C/instm/NSBrowserCell/isLoaded -Objective-C/instm/NSBrowser/isLoaded -Objective-C/instm/NSBundle/isLoaded -Objective-C/instm/WebDataSource/isLoading -Objective-C/instm/WebView/isLoading -Objective-C/instm/NSScriptClassDescription/isLocationRequiredToCreateForKey: -Objective-C/instm/PDFDocument/isLocked -C/func/-/islower -C/func/-/islower_l -Objective-C/clm/NSThread/isMainThread -Objective-C/instm/NSThread/isMainThread -Objective-C/instm/NSWindow/isMainWindow -JavaScript/data/HTMLImageElement/isMap -Objective-C/intfm/ApertureExportManager/isMasterExport -C++/instm/IOBlockStorageDriver/isMediaEjectable -C++/instm/IOBlockStorageDriver/isMediaPollExpensive -C++/instm/IOBlockStorageDriver/isMediaPollRequired -C++/instm/IOBlockStorageDriver/isMediaRemovable -Objective-C/intfm/NSObject/isMemberOfClass: -Objective-C/instm/CBIdentity/isMemberOfGroup: -Objective-C/instm/ODRecord/isMemberRecord:error: -Objective-C/instm/NSWindow/isMiniaturizable -Objective-C/instm/NSWindow/isMiniaturized -C/func/-/IsMiscFunctionKey -Objective-C/instm/NSWindow/isModalPanel -C/func/-/IsModifierKey -C++/instm/IOCatalogue/isModuleLoaded -Objective-C/clm/NSEvent/isMouseCoalescingEnabled -Objective-C/instm/NSRulerMarker/isMovable -Objective-C/instm/NSWindow/isMovable -Objective-C/instm/NSWindow/isMovableByWindowBackground -Objective-C/instm/NSFontManager/isMultiple -Objective-C/clm/NSThread/isMultiThreaded -C/func/-/isnan -Objective-C/clm/NSDocument/isNativeType: -C/func/-/isnormal -Objective-C/instm/NSObject/isNotEqualTo: -C++/instm/IOFWAsyncStreamListener/IsNotificationOn -C/func/-/isnumber -C/func/-/isnumber_l -C++/instm/IOUSBController/IsocIO -Objective-C/clm/NSLocale/ISOCountryCodes -Objective-C/clm/NSLocale/ISOCurrencyCodes -Objective-C/clm/NSLocale/ISOLanguageCodes -Objective-C/instm/NSWindow/isOnActiveSpace -Objective-C/instm/NSWindow/isOneShot -Objective-C/instm/NSMethodSignature/isOneway -Objective-C/instm/NSFormCell/isOpaque -Objective-C/instm/NSButtonCell/isOpaque -Objective-C/instm/NSBrowser/isOpaque -Objective-C/instm/NSImageRep/isOpaque -Objective-C/instm/NSWindow/isOpaque -Objective-C/instm/NSView/isOpaque -Objective-C/instm/NSCell/isOpaque -Objective-C/instm/CALayer/isOpaque -Objective-C/instm/PDFOutline/isOpen -Objective-C/instm/PDFAnnotationPopup/isOpen -Objective-C/instm/QTCaptureDevice/isOpen -Objective-C/instm/IOBluetoothRFCOMMChannel/isOpen -C++/instm/IOService/isOpen -Objective-C/instm/XGConnection/isOpened -Objective-C/instm/NSPropertyDescription/isOptional -Objective-C/instm/NSScriptCommandDescription/isOptionalArgumentWithName: -Objective-C/instm/NSPrinter/isOutputStackInReverseOrder -Objective-C/instm/IOBluetoothDevice/isPaired -Objective-C/instm/NSSplitView/isPaneSplitter -C++/instm/IORegistryEntry/isParent -Objective-C/instm/NSFormatter/isPartialStringValid:newEditingString:errorDescription: -Objective-C/instm/NSFormatter/isPartialStringValid:proposedSelectedRange:originalString:originalSelectedRange:errorDescription: -Objective-C/instm/NSNumberFormatter/isPartialStringValidationEnabled -Objective-C/instm/QCView/isPausedRendering -C/func/-/IsPFKey -C/func/-/isphonogram -C/func/-/isphonogram_l -Objective-C/instm/NSBitmapImageRep/isPlanar -Objective-C/instm/NSSound/isPlaying -JavaScript/instm/CanvasRenderingContext2D/isPointInPath -JavaScript/instm/Range/isPointInRange -C++/instm/IOSCSIProtocolInterface/IsPowerManagementIntialized -Objective-C/instm/FxImage/isPremultiplied -C++/instm/IOFWPhysicalAddressSpace/isPrepared -Objective-C/instm/ScreenSaverView/isPreview -C++/instm/IONetworkInterface/isPrimaryInterface -C/func/-/isprint -C/func/-/isprint_l -Objective-C/instp/PSClient/isPrivate -C/func/-/IsPrivateKeypadKey -C/func/-/IsProcessVisible -JavaScript/instm/WebGLRenderingContext/isProgram -JavaScript/instm/CSSStyleDeclaration/isPropertyImplicit -C++/instm/IOFireWireSerialBusProtocolTransport/IsProtocolServiceSupported -C++/instm/IOSCSIProtocolInterface/IsProtocolServiceSupported -Objective-C/instm/NSURLProtectionSpace/isProxy -Objective-C/intfm/NSObject/isProxy -C/func/-/ispunct -C/func/-/ispunct_l -Objective-C/instm/NSFileManager/isReadableFileAtPath: -Objective-C/instm/NSPersistentStore/isReadOnly -Objective-C/instm/ABRecord/isReadOnly -Objective-C/instm/NSScriptClassDescription/isReadOnlyKey: -Objective-C/instm/NSOperation/isReady -Objective-C/instm/QTCaptureFileOutput/isRecordingPaused -Objective-C/instm/NSUndoManager/isRedoing -C++/instm/IONetworkInterface/isRegistered -C++/data/IOAudioEngine/isRegistered -Objective-C/instm/NSFileWrapper/isRegularFile -Objective-C/instm/NSWindow/isReleasedWhenClosed -Objective-C/instm/NSRulerMarker/isRemovable -Objective-C/instm/CAAnimation/isRemovedOnCompletion -JavaScript/instm/WebGLRenderingContext/isRenderbuffer -Objective-C/instm/QCView/isRendering -Objective-C/instm/NSWindow/isResizable -Objective-C/instm/NSTableColumn/isResizable -Objective-C/instp/NSTouch/isResting -Objective-C/instm/NSTouch/isResting -Objective-C/instm/IOBluetoothRFCOMMAudioController/isRFCOMMChannelOpen -Objective-C/instm/NSTextView/isRichText -Objective-C/instm/NSText/isRichText -Objective-C/instm/NSView/isRotatedFromBase -Objective-C/instm/NSView/isRotatedOrScaledFromBase -Objective-C/instm/NSTableView/isRowSelected: -Objective-C/instm/NSTextView/isRulerVisible -Objective-C/instm/NSText/isRulerVisible -C/func/-/isrune -C/func/-/isrune_l -Objective-C/instm/AMWorkflowController/isRunning -Objective-C/instm/SBApplication/isRunning -Objective-C/instm/QTCaptureSession/isRunning -Objective-C/instm/NSTask/isRunning -Objective-C/instm/NSApplication/isRunning -JavaScript/instm/core/isSameNode -Objective-C/instm/IOBluetoothRFCOMMAudioController/isSCOConnected -C/func/-/IsScrapMovie -Objective-C/instm/NSCell/isScrollable -Objective-C/instm/NSHTTPCookie/isSecure -Objective-C/instm/NSTextField/isSelectable -Objective-C/instm/NSCollectionView/isSelectable -Objective-C/instm/NSTextView/isSelectable -Objective-C/instm/NSObject/isSelectable -Objective-C/instm/NSCell/isSelectable -Objective-C/instm/NSText/isSelectable -Objective-C/instm/NSPreferencePane/isSelected -Objective-C/instm/NSCollectionViewItem/isSelected -Objective-C/instm/IKImageBrowserCell/isSelected -Objective-C/instm/NSSegmentedControl/isSelectedForSegment: -Objective-C/instm/NSSegmentedCell/isSelectedForSegment: -Objective-C/instm/NSMatrix/isSelectionByRect -Objective-C/instm/NSPrintInfo/isSelectionOnly -Objective-C/clm/NSObject/isSelectorExcludedFromWebScript: -Objective-C/instm/NSMenuItem/isSeparatorItem -Objective-C/instm/NSHTTPCookie/isSessionOnly -Objective-C/instm/IOBluetoothOBEXSession/isSessionTargetAMac -Objective-C/instm/NSCursor/isSetOnMouseEntered -Objective-C/instm/NSCursor/isSetOnMouseExited -C/func/-/issetugid -JavaScript/instm/WebGLRenderingContext/isShader -Objective-C/instm/NSWindow/isSheet -Objective-C/instm/NSTextContainer/isSimpleRectangularTextContainer -C/func/-/isspace -C/func/-/isspace_l -Objective-C/instm/NSSpeechSynthesizer/isSpeaking -C/func/-/isspecial -C/func/-/isspecial_l -Objective-C/instm/NSXMLDocument/isStandalone -C/tdef/-/isStandaloneSAXFunc -Objective-C/instm/NSMetadataQuery/isStarted -C++/data/IOAudioControl/isStarted -Objective-C/instm/NSMetadataQuery/isStopped -Objective-C/instm/NSPropertyDescription/isStoredInExternalRecord -Objective-C/clm/NSObject/isSubclassOfClass: -Objective-C/instm/NSHashTable/isSubsetOfHashTable: -Objective-C/instm/NSSet/isSubsetOfSet: -Objective-C/instm/NSSplitView/isSubviewCollapsed: -Objective-C/instm/NSCharacterSet/isSupersetOfSet: -JavaScript/instm/core/isSupported -Objective-C/instm/NSOperationQueue/isSuspended -Objective-C/instm/NSFileWrapper/isSymbolicLink -Objective-C/instm/NSImage/isTemplate -Objective-C/instm/NSManagedObjectID/isTemporaryID -Objective-C/instm/NSRunningApplication/isTerminated -JavaScript/instm/WebGLRenderingContext/isTexture -Objective-C/instm/NSBrowser/isTitled -Objective-C/instm/NSRelationshipDescription/isToMany -Objective-C/instm/NSMenuView/isTornOff -Objective-C/instm/NSMenu/isTornOff -Objective-C/instm/IOBluetoothObjectPushUIController/isTransferInProgress -Objective-C/instm/NSPropertyDescription/isTransient -Objective-C/instm/QTMovieView/isTranslateButtonVisible -Objective-C/instm/IOBluetoothRFCOMMChannel/isTransmissionPaused -Objective-C/instm/NSButton/isTransparent -Objective-C/instm/NSBox/isTransparent -Objective-C/instm/NSButtonCell/isTransparent -Objective-C/instm/NSScriptWhoseTest/isTrue -C++/instm/OSBoolean/isTrue -Objective-C/instm/SFCertificateView/isTrustDisplayed -C++/instm/IOFWAddressSpace/isTrustedNode -Objective-C/instm/NSUndoManager/isUndoing -Objective-C/instm/NSUndoManager/isUndoRegistrationEnabled -C/func/-/isunordered -Objective-C/instm/XGResource/isUpdated -Objective-C/instm/NSManagedObject/isUpdated -Objective-C/instm/XGResource/isUpdating -C/func/-/isupper -C/func/-/isupper_l -Objective-C/instm/DRDevice/isValid -Objective-C/instm/NSConnection/isValid -Objective-C/instm/NSTimer/isValid -Objective-C/instm/NSImage/isValid -C++/instm/IORegistryIterator/isValid -C++/instm/OSCollectionIterator/isValid -C++/instm/OSIterator/isValid -Objective-C/instm/NSPort/isValid -Objective-C/instm/NSLayoutManager/isValidGlyphIndex: -Objective-C/instm/NSSlider/isVertical -Objective-C/instm/NSSliderCell/isVertical -Objective-C/instm/NSStatusBar/isVertical -Objective-C/instm/NSSplitView/isVertical -Objective-C/instm/NSPrintInfo/isVerticallyCentered -Objective-C/instm/NSText/isVerticallyResizable -Objective-C/instm/DRFSObject/isVirtual -Objective-C/instm/IMKCandidates/isVisible -Objective-C/instm/NSToolbar/isVisible -Objective-C/instm/NSWindow/isVisible -Objective-C/instm/QTMovieView/isVolumeButtonVisible -C/func/-/iswalnum -C/func/-/iswalnum_l -C/func/-/iswalpha -C/func/-/iswalpha_l -C/func/-/iswascii -C/func/-/iswascii_l -C/func/-/iswblank -C/func/-/iswblank_l -C/func/-/iswcntrl -C/func/-/iswcntrl_l -C/func/-/iswctype -C/func/-/iswctype_l -C/func/-/iswdigit -C/func/-/iswdigit_l -Objective-C/instm/NSScriptCommand/isWellFormed -C/func/-/iswgraph -C/func/-/iswgraph_l -C/func/-/iswhexnumber -C/func/-/iswhexnumber_l -C++/instm/IOMedia/isWhole -C/func/-/iswideogram -C/func/-/iswideogram_l -Objective-C/instm/NSWindowController/isWindowLoaded -C/func/-/iswlower -C/func/-/iswlower_l -C/func/-/iswnumber -C/func/-/iswnumber_l -Objective-C/instm/NSSpellServer/isWordInUserDictionaries:caseSensitive: -C/func/-/iswphonogram -C/func/-/iswphonogram_l -C/func/-/iswprint -C/func/-/iswprint_l -C/func/-/iswpunct -C/func/-/iswpunct_l -Objective-C/instm/CATextLayer/isWrapped -C++/instm/IOMedia/isWritable -Objective-C/instm/NSFileManager/isWritableFileAtPath: -C/func/-/iswrune -C/func/-/iswrune_l -C/func/-/iswspace -C/func/-/iswspace_l -C/func/-/iswspecial -C/func/-/iswspecial_l -C/func/-/iswupper -C/func/-/iswupper_l -C/func/-/iswxdigit -C/func/-/iswxdigit_l -C/func/-/isxdigit -C/func/-/isxdigit_l -C/data/-/ISyncAvailabilityChangedNotification -Objective-C/cl/-/ISyncChange -C/data/-/ISyncChangePropertyActionKey -C/data/-/ISyncChangePropertyClear -C/data/-/ISyncChangePropertyNameKey -C/data/-/ISyncChangePropertySet -C/data/-/ISyncChangePropertyValueIsDefaultKey -C/data/-/ISyncChangePropertyValueKey -C/tdef/-/ISyncChangeType -C/econst/-/ISyncChangeTypeAdd -C/econst/-/ISyncChangeTypeDelete -C/econst/-/ISyncChangeTypeModify -C/econst/-/ISyncChangeTypeNone -Objective-C/cl/-/ISyncClient -C/data/-/ISyncClientTypeApplication -C/data/-/ISyncClientTypeDevice -C/data/-/ISyncClientTypePeer -C/data/-/ISyncClientTypeServer -C/data/-/ISyncErrorDomain -Objective-C/cl/-/ISyncFilter -Objective-C/intf/-/ISyncFiltering -C/data/-/ISyncInvalidArgumentsException -C/data/-/ISyncInvalidEntityException -C/data/-/ISyncInvalidRecordException -C/data/-/ISyncInvalidRecordIdentifiersKey -C/data/-/ISyncInvalidRecordReasonsKey -C/data/-/ISyncInvalidRecordsKey -C/data/-/ISyncInvalidSchemaException -Objective-C/cl/-/ISyncManager --/writerid/-/iSyncPluginMakerUserGuide_Intro --/writerid/-/iSyncPluginMakerUserGuide_ModemScript -C/data/-/ISyncRecordEntityNameKey -Objective-C/cl/-/ISyncRecordReference -Objective-C/cl/-/ISyncRecordSnapshot -C/tdef/-/ISyncServerDisabledReason -C/econst/-/ISyncServerDisabledReasonByPreference -C/econst/-/ISyncServerDisabledReasonNone -C/econst/-/ISyncServerDisabledReasonSharedNetworkHome -C/econst/-/ISyncServerDisabledReasonUnknown -C/econst/-/ISyncServerDisabledReasonUnresponsive -C/data/-/ISyncServerUnavailableException -Objective-C/cl/-/ISyncSession -C/data/-/ISyncSessionCancelledException -C/econst/-/ISyncSessionClientAlreadySyncingError -Objective-C/cl/-/ISyncSessionDriver -C/econst/-/ISyncSessionDriverChangeAccepted -C/econst/-/ISyncSessionDriverChangeError -C/econst/-/ISyncSessionDriverChangeIgnored -C/econst/-/ISyncSessionDriverChangeRefused -C/tdef/-/ISyncSessionDriverChangeResult -Objective-C/cat/-/ISyncSessionDriverDataSource -Objective-C/intf/-/ISyncSessionDriverDelegate -C/econst/-/ISyncSessionDriverFatalError -C/tdef/-/ISyncSessionDriverMode -C/econst/-/ISyncSessionDriverModeFast -C/econst/-/ISyncSessionDriverModeRefresh -C/econst/-/ISyncSessionDriverModeSlow -C/econst/-/ISyncSessionDriverPullFailureError -C/econst/-/ISyncSessionDriverRegistrationError -C/data/-/ISyncSessionUnavailableException -C/econst/-/ISyncSessionUserCanceledSessionError -C/tdef/-/ISyncStatus -C/econst/-/ISyncStatusCancelled -C/econst/-/ISyncStatusErrors -C/econst/-/ISyncStatusFailed -C/econst/-/ISyncStatusNever -C/econst/-/ISyncStatusRunning -C/econst/-/ISyncStatusSuccess -C/econst/-/ISyncStatusWarnings -Objective-C/cat/-/ISyncUIHelper -C/data/-/ISyncUnsupportedEntityException -Objective-C/instm/NSWindow/isZoomable -Objective-C/instm/NSWindow/isZoomed -Objective-C/instm/NSFont/italicAngle -JavaScript/instm/CSSVariablesDeclaration/item -JavaScript/instm/CSSStyleDeclaration/item -JavaScript/instm/CSSValueList/item -JavaScript/instm/CSSRuleList/item -JavaScript/instm/DataGridColumnList/item -JavaScript/instm/ClientRectList/item -JavaScript/instm/HTMLAllCollection/item -JavaScript/instm/HTMLSelectElement/item -JavaScript/instm/HTMLCollection/item -JavaScript/instm/FileList/item -JavaScript/instm/NamedNodeMap/item -JavaScript/instm/MimeTypeArray/item -JavaScript/instm/MediaList/item -JavaScript/instm/StyleSheetList/item -JavaScript/instm/SVGElementInstanceList/item -JavaScript/instm/NodeList/item -JavaScript/instm/SQLResultSetRowList/item -JavaScript/instm/Plugin/item -JavaScript/instm/PluginArray/item -JavaScript/instm/TouchList/item -Objective-C/instm/NSMenuView/itemAdded: -Objective-C/instm/NSPopUpButtonCell/itemArray -Objective-C/instm/NSPopUpButton/itemArray -Objective-C/instm/NSMenu/itemArray -Objective-C/instm/NSPopUpButton/itemAtIndex: -Objective-C/instm/NSPopUpButtonCell/itemAtIndex: -Objective-C/instm/WebBackForwardList/itemAtIndex: -Objective-C/instm/NSCollectionView/itemAtIndex: -Objective-C/instm/NSMenu/itemAtIndex: -Objective-C/instm/NSBrowser/itemAtIndexPath: -Objective-C/instm/NSOutlineView/itemAtRow: -Objective-C/instm/NSBrowser/itemAtRow:inColumn: -Objective-C/instm/NSMenuView/itemChanged: -Objective-C/instm/NSMenu/itemChanged: -C/tdef/-/ItemCount -Objective-C/instm/WebHistory/itemForURL: -Objective-C/instm/IKImageBrowserView/itemFrameAtIndex: -Objective-C/instm/NSComboBox/itemHeight -Objective-C/instm/NSComboBoxCell/itemHeight -Objective-C/instm/NSToolbarItem/itemIdentifier -Objective-C/instm/NSAttributedString/itemNumberInTextList:atIndex: -Objective-C/instm/NSComboBox/itemObjectValueAtIndex: -Objective-C/instm/NSComboBoxCell/itemObjectValueAtIndex: -Objective-C/instm/NSCollectionView/itemPrototype -Objective-C/instm/NSMenuView/itemRemoved: -Objective-C/instm/NSToolbar/items -Objective-C/instm/NSPopUpButtonCell/itemTitleAtIndex: -Objective-C/instm/NSPopUpButton/itemTitleAtIndex: -Objective-C/instm/NSPopUpButton/itemTitles -Objective-C/instm/NSPopUpButtonCell/itemTitles -Objective-C/instm/NSMenu/itemWithTag: -Objective-C/instm/NSPopUpButton/itemWithTitle: -Objective-C/instm/NSPopUpButtonCell/itemWithTitle: -Objective-C/instm/NSMenu/itemWithTitle: -C++/instm/IORegistryIterator/iterateAll -JavaScript/instm/XPathResult/iterateNext -C++/clm/IORegistryIterator/iterateOver -C++/instm/OSCollection/iteratorSize -C/tdef/-/Ivar -C/func/-/ivar_getName -C/func/-/ivar_getOffset -C/func/-/ivar_getTypeEncoding -C/func/-/j0 -C/func/-/j1 -JavaScript/instm/Navigator/javaEnabled -JavaScript/cl/-/JavaScriptCallFrame -Objective-C/instm/WebPreferences/javaScriptCanOpenWindowsAutomatically -C/func/-/jn -Objective-C/instm/XGFile/job -Objective-C/instm/NSPrintInfo/jobDisposition -Objective-C/instm/XGGrid/jobForIdentifier: -Objective-C/instm/XGGrid/jobs -Objective-C/instm/XGController/jobsPredicateString -Objective-C/instm/NSPrintOperation/jobStyleHint -Objective-C/instm/NSPrintPanel/jobStyleHint -Objective-C/instm/NSObject/jobTemplate -Objective-C/instm/NSPrintOperation/jobTitle -C++/instm/IOService/joinPMtree -C/func/-/jrand48 -C/tdef/-/JSChar -C/func/-/JSCheckScriptSyntax -C/tag/-/JSClassAttribute -C/tdef/-/JSClassAttributes -C/func/-/JSClassCreate -C/tdef/-/JSClassDefinition -C/tdef/-/JSClassRef -C/func/-/JSClassRelease -C/func/-/JSClassRetain -C/func/-/JSContextGetGlobalObject -C/func/-/JSContextGetGroup -C/func/-/JSContextGroupCreate -C/tdef/-/JSContextGroupRef -C/func/-/JSContextGroupRelease -C/func/-/JSContextGroupRetain -C/tdef/-/JSContextRef -C/func/-/JSEvaluateScript -C/func/-/JSGarbageCollect -C/func/-/JSGlobalContextCreate -C/func/-/JSGlobalContextCreateInGroup -C/tdef/-/JSGlobalContextRef -C/func/-/JSGlobalContextRelease -C/func/-/JSGlobalContextRetain -Objective-C/instm/WebScriptObject/JSObject -C/func/-/JSObjectCallAsConstructor -C/tdef/-/JSObjectCallAsConstructorCallback -C/func/-/JSObjectCallAsFunction -C/tdef/-/JSObjectCallAsFunctionCallback -C/tdef/-/JSObjectConvertToTypeCallback -C/func/-/JSObjectCopyPropertyNames -C/func/-/JSObjectDeleteProperty -C/tdef/-/JSObjectDeletePropertyCallback -C/tdef/-/JSObjectFinalizeCallback -C/func/-/JSObjectGetPrivate -C/func/-/JSObjectGetProperty -C/func/-/JSObjectGetPropertyAtIndex -C/tdef/-/JSObjectGetPropertyCallback -C/tdef/-/JSObjectGetPropertyNamesCallback -C/func/-/JSObjectGetPrototype -C/tdef/-/JSObjectHasInstanceCallback -C/func/-/JSObjectHasProperty -C/tdef/-/JSObjectHasPropertyCallback -C/tdef/-/JSObjectInitializeCallback -C/func/-/JSObjectIsConstructor -C/func/-/JSObjectIsFunction -C/func/-/JSObjectMake -C/func/-/JSObjectMakeArray -C/func/-/JSObjectMakeConstructor -C/func/-/JSObjectMakeDate -C/func/-/JSObjectMakeError -C/func/-/JSObjectMakeFunction -C/func/-/JSObjectMakeFunctionWithCallback -C/func/-/JSObjectMakeRegExp -C/tdef/-/JSObjectRef -C/func/-/JSObjectSetPrivate -C/func/-/JSObjectSetProperty -C/func/-/JSObjectSetPropertyAtIndex -C/tdef/-/JSObjectSetPropertyCallback -C/func/-/JSObjectSetPrototype -C/tag/-/JSPropertyAttribute -C/tdef/-/JSPropertyAttributes -C/func/-/JSPropertyNameAccumulatorAddName -C/tdef/-/JSPropertyNameAccumulatorRef -C/func/-/JSPropertyNameArrayGetCount -C/func/-/JSPropertyNameArrayGetNameAtIndex -C/tdef/-/JSPropertyNameArrayRef -C/func/-/JSPropertyNameArrayRelease -C/func/-/JSPropertyNameArrayRetain -C/tdef/-/JSStaticFunction -C/tdef/-/JSStaticValue -C/func/-/JSStringCopyCFString -C/func/-/JSStringCreateWithCFString -C/func/-/JSStringCreateWithCharacters -C/func/-/JSStringCreateWithUTF8CString -C/func/-/JSStringGetCharactersPtr -C/func/-/JSStringGetLength -C/func/-/JSStringGetMaximumUTF8CStringSize -C/func/-/JSStringGetUTF8CString -C/func/-/JSStringIsEqual -C/func/-/JSStringIsEqualToUTF8CString -C/tdef/-/JSStringRef -C/func/-/JSStringRelease -C/func/-/JSStringRetain -C/tdef/-/JSType -C/func/-/JSValueGetType -C/func/-/JSValueIsBoolean -C/func/-/JSValueIsEqual -C/func/-/JSValueIsInstanceOfConstructor -C/func/-/JSValueIsNull -C/func/-/JSValueIsNumber -C/func/-/JSValueIsObject -C/func/-/JSValueIsObjectOfClass -C/func/-/JSValueIsStrictEqual -C/func/-/JSValueIsString -C/func/-/JSValueIsUndefined -C/func/-/JSValueMakeBoolean -C/func/-/JSValueMakeNull -C/func/-/JSValueMakeNumber -C/func/-/JSValueMakeString -C/func/-/JSValueMakeUndefined -C/func/-/JSValueProtect -C/tdef/-/JSValueRef -C/func/-/JSValueToBoolean -C/func/-/JSValueToNumber -C/func/-/JSValueToObject -C/func/-/JSValueToStringCopy -C/func/-/JSValueUnprotect -JavaScript/data/SVGFECompositeElement/k1 -JavaScript/data/SVGFECompositeElement/k2 -JavaScript/data/SVGFECompositeElement/k3 -C/econst/-/k3DMixerAttenuationCurve_Exponential -C/econst/-/k3DMixerAttenuationCurve_Inverse -C/econst/-/k3DMixerAttenuationCurve_Linear -C/econst/-/k3DMixerAttenuationCurve_Power -C/econst/-/k3DMixerParam_Azimuth -C/econst/-/k3DMixerParam_Distance -C/econst/-/k3DMixerParam_Elevation -C/econst/-/k3DMixerParam_Gain -C/econst/-/k3DMixerParam_PlaybackRate -C/econst/-/k3DMixerRenderingFlags_ConstantReverbBlend -C/econst/-/k3DMixerRenderingFlags_DistanceAttenuation -C/econst/-/k3DMixerRenderingFlags_DistanceDiffusion -C/econst/-/k3DMixerRenderingFlags_DistanceFilter -C/econst/-/k3DMixerRenderingFlags_DopplerShift -C/econst/-/k3DMixerRenderingFlags_InterAuralDelay -C/econst/-/k3DMixerRenderingFlags_LinearDistanceAttenuation -JavaScript/data/SVGFECompositeElement/k4 -C/econst/-/k422YpCbCr10CodecType -C/econst/-/k422YpCbCr16CodecType -C/econst/-/k422YpCbCr8CodecType -C/econst/-/k4444YpCbCrA8CodecType -C/econst/-/k4444YpCbCrA8RCodecType -C/econst/-/k444YpCbCr10CodecType -C/econst/-/k444YpCbCr8CodecType -C/data/-/kABAddressCityKey -C/data/-/kABAddressCountryCodeKey -C/data/-/kABAddressCountryKey -C/data/-/kABAddressHomeLabel -C/data/-/kABAddressProperty -C/data/-/kABAddressStateKey -C/data/-/kABAddressStreetKey -C/data/-/kABAddressWorkLabel -C/data/-/kABAddressZIPKey -C/data/-/kABAIMHomeLabel -C/data/-/kABAIMInstantProperty -C/data/-/kABAIMMobileMeLabel -C/data/-/kABAIMWorkLabel -C/data/-/kABAnniversaryLabel -C/econst/-/kABArrayProperty -C/data/-/kABAssistantLabel -C/data/-/kABBirthdayProperty -C/econst/-/kABBitsInBitFieldMatch -C/data/-/kABBrotherLabel -C/data/-/kABCalendarURIsProperty -C/data/-/kABChildLabel -C/econst/-/kABContainsSubString -C/econst/-/kABContainsSubStringCaseInsensitive -C/data/-/kABCreationDateProperty -C/data/-/kABDatabaseChangedExternallyNotification -C/data/-/kABDatabaseChangedNotification -C/econst/-/kABDataProperty -C/econst/-/kABDateProperty -C/macro/-/kABDefaultNameOrdering -C/data/-/kABDeletedRecords -C/data/-/kABDepartmentProperty -C/econst/-/kABDictionaryProperty -C/econst/-/kABDoesNotContainSubString -C/econst/-/kABDoesNotContainSubStringCaseInsensitive -C/data/-/kABEmailHomeLabel -C/data/-/kABEmailMobileMeLabel -C/data/-/kABEmailProperty -C/data/-/kABEmailWorkLabel -C/econst/-/kABEqual -C/econst/-/kABEqualCaseInsensitive -C/econst/-/kABErrorInProperty -C/data/-/kABFatherLabel -C/macro/-/kABFirstNameFirst -C/data/-/kABFirstNamePhoneticProperty -C/data/-/kABFirstNameProperty -C/data/-/kABFriendLabel -C/econst/-/kABGreaterThan -C/econst/-/kABGreaterThanOrEqual -C/data/-/kABGroupNameProperty -C/data/-/kABGroupRecordType -C/data/-/kABHomeLabel -C/data/-/kABHomePageLabel -C/data/-/kABHomePageProperty -C/data/-/kABICQHomeLabel -C/data/-/kABICQInstantProperty -C/data/-/kABICQWorkLabel -C/data/-/kABIdentityUIDProperty -C/data/-/kABInsertedRecords -C/econst/-/kABIntegerProperty -C/data/-/kABJabberHomeLabel -C/data/-/kABJabberInstantProperty -C/data/-/kABJabberWorkLabel -C/data/-/kABJobTitleProperty -C/macro/-/kABLastNameFirst -C/data/-/kABLastNamePhoneticProperty -C/data/-/kABLastNameProperty -C/econst/-/kABLessThan -C/econst/-/kABLessThanOrEqual -C/data/-/kABMaidenNameProperty -C/data/-/kABManagerLabel -C/data/-/kABMiddleNamePhoneticProperty -C/data/-/kABMiddleNameProperty -C/data/-/kABModificationDateProperty -C/data/-/kABMotherLabel -C/data/-/kABMSNHomeLabel -C/data/-/kABMSNInstantProperty -C/data/-/kABMSNWorkLabel -C/econst/-/kABMultiArrayProperty -C/econst/-/kABMultiDataProperty -C/econst/-/kABMultiDateProperty -C/econst/-/kABMultiDictionaryProperty -C/econst/-/kABMultiIntegerProperty -C/econst/-/kABMultiRealProperty -C/econst/-/kABMultiStringProperty -C/macro/-/kABMultiValueMask -C/macro/-/kABNameOrderingMask -C/data/-/kABNicknameProperty -C/data/-/kABNoteProperty -C/econst/-/kABNotEqual -C/econst/-/kABNotEqualCaseInsensitive -C/econst/-/kABNotWithinIntervalAroundToday -C/econst/-/kABNotWithinIntervalAroundTodayYearless -C/econst/-/kABNotWithinIntervalFromToday -C/econst/-/kABNotWithinIntervalFromTodayYearless -C/data/-/kABOrganizationProperty -C/data/-/kABOtherDatesProperty -C/data/-/kABOtherLabel -C/data/-/kABParentLabel -C/data/-/kABPartnerLabel -C/data/-/kABPersonFlags -C/data/-/kABPersonRecordType -C/data/-/kABPhoneHomeFAXLabel -C/data/-/kABPhoneHomeLabel -C/data/-/kABPhoneiPhoneLabel -C/data/-/kABPhoneMainLabel -C/data/-/kABPhoneMobileLabel -C/data/-/kABPhonePagerLabel -C/data/-/kABPhoneProperty -C/data/-/kABPhoneWorkFAXLabel -C/data/-/kABPhoneWorkLabel -C/econst/-/kABPickerMultipleValueSelection -C/econst/-/kABPickerSingleValueSelection -C/econst/-/kABPrefixMatch -C/econst/-/kABPrefixMatchCaseInsensitive -C/econst/-/kABRealProperty -C/data/-/kABRelatedNamesProperty -C/econst/-/kABSearchAnd -C/econst/-/kABSearchOr -C/macro/-/kABShowAsCompany -C/macro/-/kABShowAsMask -C/macro/-/kABShowAsPerson -C/macro/-/kABShowAsResource -C/macro/-/kABShowAsRoom -C/data/-/kABSisterLabel -C/data/-/kABSpouseLabel -C/econst/-/kABStringProperty -C/econst/-/kABSuffixMatch -C/econst/-/kABSuffixMatchCaseInsensitive -C/data/-/kABSuffixProperty -C/data/-/kABTitleProperty -C/data/-/kABUIDProperty -C/data/-/kABUpdatedRecords -C/data/-/kABURLsProperty -C/econst/-/kABWithinIntervalAroundToday -C/econst/-/kABWithinIntervalAroundTodayYearless -C/econst/-/kABWithinIntervalFromToday -C/econst/-/kABWithinIntervalFromTodayYearless -C/data/-/kABWorkLabel -C/data/-/kABYahooHomeLabel -C/data/-/kABYahooInstantProperty -C/data/-/kABYahooWorkLabel -C/econst/-/kActive -C/econst/-/kadministratorUser -C/econst/-/kAESpeechDetected -C/econst/-/kAESpeechDone -C/econst/-/kAESpeechSuite -C/macro/-/kAFInfoDictionary_Album -C/macro/-/kAFInfoDictionary_ApproximateDurationInSeconds -C/macro/-/kAFInfoDictionary_Artist -C/macro/-/kAFInfoDictionary_ChannelLayout -C/macro/-/kAFInfoDictionary_Comments -C/macro/-/kAFInfoDictionary_Composer -C/macro/-/kAFInfoDictionary_Copyright -C/macro/-/kAFInfoDictionary_EncodingApplication -C/macro/-/kAFInfoDictionary_Genre -C/macro/-/kAFInfoDictionary_KeySignature -C/macro/-/kAFInfoDictionary_Lyricist -C/macro/-/kAFInfoDictionary_NominalBitRate -C/macro/-/kAFInfoDictionary_RecordedDate -C/macro/-/kAFInfoDictionary_SourceEncoder -C/macro/-/kAFInfoDictionary_Tempo -C/macro/-/kAFInfoDictionary_TimeSignature -C/macro/-/kAFInfoDictionary_Title -C/macro/-/kAFInfoDictionary_TrackNumber -C/macro/-/kAFInfoDictionary_Year -C/econst/-/kAFPExtendedFlagsAlternateAddressMask -C/econst/-/kAFPTagLengthDDP -C/econst/-/kAFPTagLengthIP -C/econst/-/kAFPTagLengthIPPort -C/econst/-/kAFPTagTypeDDP -C/econst/-/kAFPTagTypeDNS -C/econst/-/kAFPTagTypeIP -C/econst/-/kAFPTagTypeIPPort -C/macro/-/kAFPVersion_2_1 -C/macro/-/kAFPVersion_2_2 -C/macro/-/kAFPVersion_2_3 -C/macro/-/kAFPVersion_3_0 -C/macro/-/kAFPVersion_3_1 -C/macro/-/kAFPVersion_3_2 -C/macro/-/kAFPVersion_3_3 -C/econst/-/kAHInternalErr -C/econst/-/kAHInternetConfigPrefErr -C/econst/-/kAHTOCTypeDeveloper -C/econst/-/kAHTOCTypeUser -C/econst/-/kAllowReconnectMask -C/econst/-/kAllPPDDomains -C/econst/-/kAlwaysAuthenticate -C/econst/-/kAnyComponentFlagsMask -C/econst/-/kAnyComponentManufacturer -C/econst/-/kAnyComponentSubType -C/econst/-/kAnyComponentType -C/econst/-/kAppleLosslessFormatFlag_16BitSourceData -C/econst/-/kAppleLosslessFormatFlag_20BitSourceData -C/econst/-/kAppleLosslessFormatFlag_24BitSourceData -C/econst/-/kAppleLosslessFormatFlag_32BitSourceData -C/econst/-/kAppleManufacturer -C/econst/-/kARMMountVol -C/econst/-/kARMMultVols -C/econst/-/kARMNoUI -C/econst/-/kARMSearch -C/econst/-/kARMSearchMore -C/econst/-/kARMSearchRelFirst -C/econst/-/kARMTryFileIDFirst -C/econst/-/kASPSessClosed -C/econst/-/kAsyncEjectComplete -C/econst/-/kAsyncEjectInProgress -C/econst/-/kAsyncMountComplete -C/econst/-/kAsyncMountInProgress -C/econst/-/kAsyncUnmountComplete -C/econst/-/kAsyncUnmountInProgress -C/econst/-/kAttrInExpFolder -C/econst/-/kAttrIsExpFolder -C/econst/-/kAttrMounted -C/econst/-/kAudioAggregateDeviceClassID -C/macro/-/kAudioAggregateDeviceIsPrivateKey -C/macro/-/kAudioAggregateDeviceMasterSubDeviceKey -C/macro/-/kAudioAggregateDeviceNameKey -C/macro/-/kAudioAggregateDeviceSubDeviceListKey -C/macro/-/kAudioAggregateDeviceUIDKey -C/econst/-/kAudioBalanceFadeType_EqualPower -C/econst/-/kAudioBalanceFadeType_MaxUnityGain -C/econst/-/kAudioBooleanControlClassID -C/econst/-/kAudioBootChimeVolumeControlClassID -C/econst/-/kAudioChannelBit_Center -C/econst/-/kAudioChannelBit_CenterSurround -C/econst/-/kAudioChannelBit_Left -C/econst/-/kAudioChannelBit_LeftCenter -C/econst/-/kAudioChannelBit_LeftSurround -C/econst/-/kAudioChannelBit_LeftSurroundDirect -C/econst/-/kAudioChannelBit_LFEScreen -C/econst/-/kAudioChannelBit_Right -C/econst/-/kAudioChannelBit_RightCenter -C/econst/-/kAudioChannelBit_RightSurround -C/econst/-/kAudioChannelBit_RightSurroundDirect -C/econst/-/kAudioChannelBit_TopBackCenter -C/econst/-/kAudioChannelBit_TopBackLeft -C/econst/-/kAudioChannelBit_TopBackRight -C/econst/-/kAudioChannelBit_TopCenterSurround -C/econst/-/kAudioChannelBit_VerticalHeightCenter -C/econst/-/kAudioChannelBit_VerticalHeightLeft -C/econst/-/kAudioChannelBit_VerticalHeightRight -C/econst/-/kAudioChannelCoordinates_Azimuth -C/econst/-/kAudioChannelCoordinates_BackFront -C/econst/-/kAudioChannelCoordinates_Distance -C/econst/-/kAudioChannelCoordinates_DownUp -C/econst/-/kAudioChannelCoordinates_Elevation -C/econst/-/kAudioChannelCoordinates_LeftRight -C/econst/-/kAudioChannelFlags_AllOff -C/econst/-/kAudioChannelFlags_Meters -C/econst/-/kAudioChannelFlags_RectangularCoordinates -C/econst/-/kAudioChannelFlags_SphericalCoordinates -C/econst/-/kAudioChannelLabel_Ambisonic_W -C/econst/-/kAudioChannelLabel_Ambisonic_X -C/econst/-/kAudioChannelLabel_Ambisonic_Y -C/econst/-/kAudioChannelLabel_Ambisonic_Z -C/econst/-/kAudioChannelLabel_Center -C/econst/-/kAudioChannelLabel_CenterSurround -C/econst/-/kAudioChannelLabel_CenterSurroundDirect -C/econst/-/kAudioChannelLabel_ClickTrack -C/econst/-/kAudioChannelLabel_DialogCentricMix -C/econst/-/kAudioChannelLabel_Discrete -C/econst/-/kAudioChannelLabel_Discrete_0 -C/econst/-/kAudioChannelLabel_Discrete_1 -C/econst/-/kAudioChannelLabel_Discrete_10 -C/econst/-/kAudioChannelLabel_Discrete_11 -C/econst/-/kAudioChannelLabel_Discrete_12 -C/econst/-/kAudioChannelLabel_Discrete_13 -C/econst/-/kAudioChannelLabel_Discrete_14 -C/econst/-/kAudioChannelLabel_Discrete_15 -C/econst/-/kAudioChannelLabel_Discrete_2 -C/econst/-/kAudioChannelLabel_Discrete_3 -C/econst/-/kAudioChannelLabel_Discrete_4 -C/econst/-/kAudioChannelLabel_Discrete_5 -C/econst/-/kAudioChannelLabel_Discrete_6 -C/econst/-/kAudioChannelLabel_Discrete_65535 -C/econst/-/kAudioChannelLabel_Discrete_7 -C/econst/-/kAudioChannelLabel_Discrete_8 -C/econst/-/kAudioChannelLabel_Discrete_9 -C/econst/-/kAudioChannelLabel_ForeignLanguage -C/econst/-/kAudioChannelLabel_Haptic -C/econst/-/kAudioChannelLabel_HeadphonesLeft -C/econst/-/kAudioChannelLabel_HeadphonesRight -C/econst/-/kAudioChannelLabel_HearingImpaired -C/econst/-/kAudioChannelLabel_Left -C/econst/-/kAudioChannelLabel_LeftCenter -C/econst/-/kAudioChannelLabel_LeftSurround -C/econst/-/kAudioChannelLabel_LeftSurroundDirect -C/econst/-/kAudioChannelLabel_LeftTotal -C/econst/-/kAudioChannelLabel_LeftWide -C/econst/-/kAudioChannelLabel_LFE2 -C/econst/-/kAudioChannelLabel_LFEScreen -C/econst/-/kAudioChannelLabel_Mono -C/econst/-/kAudioChannelLabel_MS_Mid -C/econst/-/kAudioChannelLabel_MS_Side -C/econst/-/kAudioChannelLabel_Narration -C/econst/-/kAudioChannelLabel_RearSurroundLeft -C/econst/-/kAudioChannelLabel_RearSurroundRight -C/econst/-/kAudioChannelLabel_Right -C/econst/-/kAudioChannelLabel_RightCenter -C/econst/-/kAudioChannelLabel_RightSurround -C/econst/-/kAudioChannelLabel_RightSurroundDirect -C/econst/-/kAudioChannelLabel_RightTotal -C/econst/-/kAudioChannelLabel_RightWide -C/econst/-/kAudioChannelLabel_TopBackCenter -C/econst/-/kAudioChannelLabel_TopBackLeft -C/econst/-/kAudioChannelLabel_TopBackRight -C/econst/-/kAudioChannelLabel_TopCenterSurround -C/econst/-/kAudioChannelLabel_Unknown -C/econst/-/kAudioChannelLabel_Unused -C/econst/-/kAudioChannelLabel_UseCoordinates -C/econst/-/kAudioChannelLabel_VerticalHeightCenter -C/econst/-/kAudioChannelLabel_VerticalHeightLeft -C/econst/-/kAudioChannelLabel_VerticalHeightRight -C/econst/-/kAudioChannelLabel_XY_X -C/econst/-/kAudioChannelLabel_XY_Y -C/econst/-/kAudioChannelLayoutTag_AAC_3_0 -C/econst/-/kAudioChannelLayoutTag_AAC_4_0 -C/econst/-/kAudioChannelLayoutTag_AAC_5_0 -C/econst/-/kAudioChannelLayoutTag_AAC_5_1 -C/econst/-/kAudioChannelLayoutTag_AAC_6_0 -C/econst/-/kAudioChannelLayoutTag_AAC_6_1 -C/econst/-/kAudioChannelLayoutTag_AAC_7_0 -C/econst/-/kAudioChannelLayoutTag_AAC_7_1 -C/econst/-/kAudioChannelLayoutTag_AAC_Octagonal -C/econst/-/kAudioChannelLayoutTag_AAC_Quadraphonic -C/econst/-/kAudioChannelLayoutTag_AC3_1_0_1 -C/econst/-/kAudioChannelLayoutTag_AC3_2_1_1 -C/econst/-/kAudioChannelLayoutTag_AC3_3_0 -C/econst/-/kAudioChannelLayoutTag_AC3_3_0_1 -C/econst/-/kAudioChannelLayoutTag_AC3_3_1 -C/econst/-/kAudioChannelLayoutTag_AC3_3_1_1 -C/econst/-/kAudioChannelLayoutTag_Ambisonic_B_Format -C/econst/-/kAudioChannelLayoutTag_AudioUnit_4 -C/econst/-/kAudioChannelLayoutTag_AudioUnit_5 -C/econst/-/kAudioChannelLayoutTag_AudioUnit_5_0 -C/econst/-/kAudioChannelLayoutTag_AudioUnit_5_1 -C/econst/-/kAudioChannelLayoutTag_AudioUnit_6 -C/econst/-/kAudioChannelLayoutTag_AudioUnit_6_0 -C/econst/-/kAudioChannelLayoutTag_AudioUnit_6_1 -C/econst/-/kAudioChannelLayoutTag_AudioUnit_7_0 -C/econst/-/kAudioChannelLayoutTag_AudioUnit_7_0_Front -C/econst/-/kAudioChannelLayoutTag_AudioUnit_7_1 -C/econst/-/kAudioChannelLayoutTag_AudioUnit_7_1_Front -C/econst/-/kAudioChannelLayoutTag_AudioUnit_8 -C/econst/-/kAudioChannelLayoutTag_Binaural -C/econst/-/kAudioChannelLayoutTag_Cube -C/econst/-/kAudioChannelLayoutTag_DiscreteInOrder -C/econst/-/kAudioChannelLayoutTag_DVD_0 -C/econst/-/kAudioChannelLayoutTag_DVD_1 -C/econst/-/kAudioChannelLayoutTag_DVD_10 -C/econst/-/kAudioChannelLayoutTag_DVD_11 -C/econst/-/kAudioChannelLayoutTag_DVD_12 -C/econst/-/kAudioChannelLayoutTag_DVD_13 -C/econst/-/kAudioChannelLayoutTag_DVD_14 -C/econst/-/kAudioChannelLayoutTag_DVD_15 -C/econst/-/kAudioChannelLayoutTag_DVD_16 -C/econst/-/kAudioChannelLayoutTag_DVD_17 -C/econst/-/kAudioChannelLayoutTag_DVD_18 -C/econst/-/kAudioChannelLayoutTag_DVD_19 -C/econst/-/kAudioChannelLayoutTag_DVD_2 -C/econst/-/kAudioChannelLayoutTag_DVD_20 -C/econst/-/kAudioChannelLayoutTag_DVD_3 -C/econst/-/kAudioChannelLayoutTag_DVD_4 -C/econst/-/kAudioChannelLayoutTag_DVD_5 -C/econst/-/kAudioChannelLayoutTag_DVD_6 -C/econst/-/kAudioChannelLayoutTag_DVD_7 -C/econst/-/kAudioChannelLayoutTag_DVD_8 -C/econst/-/kAudioChannelLayoutTag_DVD_9 -C/econst/-/kAudioChannelLayoutTag_Emagic_Default_7_1 -C/econst/-/kAudioChannelLayoutTag_Hexagonal -C/econst/-/kAudioChannelLayoutTag_ITU_1_0 -C/econst/-/kAudioChannelLayoutTag_ITU_2_0 -C/econst/-/kAudioChannelLayoutTag_ITU_2_1 -C/econst/-/kAudioChannelLayoutTag_ITU_2_2 -C/econst/-/kAudioChannelLayoutTag_ITU_3_0 -C/econst/-/kAudioChannelLayoutTag_ITU_3_1 -C/econst/-/kAudioChannelLayoutTag_ITU_3_2 -C/econst/-/kAudioChannelLayoutTag_ITU_3_2_1 -C/econst/-/kAudioChannelLayoutTag_ITU_3_4_1 -C/econst/-/kAudioChannelLayoutTag_MatrixStereo -C/econst/-/kAudioChannelLayoutTag_MidSide -C/econst/-/kAudioChannelLayoutTag_Mono -C/econst/-/kAudioChannelLayoutTag_MPEG_1_0 -C/econst/-/kAudioChannelLayoutTag_MPEG_2_0 -C/econst/-/kAudioChannelLayoutTag_MPEG_3_0_A -C/econst/-/kAudioChannelLayoutTag_MPEG_3_0_B -C/econst/-/kAudioChannelLayoutTag_MPEG_4_0_A -C/econst/-/kAudioChannelLayoutTag_MPEG_4_0_B -C/econst/-/kAudioChannelLayoutTag_MPEG_5_0_A -C/econst/-/kAudioChannelLayoutTag_MPEG_5_0_B -C/econst/-/kAudioChannelLayoutTag_MPEG_5_0_C -C/econst/-/kAudioChannelLayoutTag_MPEG_5_0_D -C/econst/-/kAudioChannelLayoutTag_MPEG_5_1_A -C/econst/-/kAudioChannelLayoutTag_MPEG_5_1_B -C/econst/-/kAudioChannelLayoutTag_MPEG_5_1_C -C/econst/-/kAudioChannelLayoutTag_MPEG_5_1_D -C/econst/-/kAudioChannelLayoutTag_MPEG_6_1_A -C/econst/-/kAudioChannelLayoutTag_MPEG_7_1_A -C/econst/-/kAudioChannelLayoutTag_MPEG_7_1_B -C/econst/-/kAudioChannelLayoutTag_MPEG_7_1_C -C/econst/-/kAudioChannelLayoutTag_Octagonal -C/econst/-/kAudioChannelLayoutTag_Pentagonal -C/econst/-/kAudioChannelLayoutTag_Quadraphonic -C/econst/-/kAudioChannelLayoutTag_SMPTE_DTV -C/econst/-/kAudioChannelLayoutTag_Stereo -C/econst/-/kAudioChannelLayoutTag_StereoHeadphones -C/econst/-/kAudioChannelLayoutTag_TMH_10_2_full -C/econst/-/kAudioChannelLayoutTag_TMH_10_2_std -C/econst/-/kAudioChannelLayoutTag_Unknown -C/econst/-/kAudioChannelLayoutTag_UseChannelBitmap -C/econst/-/kAudioChannelLayoutTag_UseChannelDescriptions -C/econst/-/kAudioChannelLayoutTag_XY -C/econst/-/kAudioClockSourceControlClassID -C/econst/-/kAudioCodecAppendInputDataSelect -C/econst/-/kAudioCodecBadPropertySizeError -C/econst/-/kAudioCodecBitRateControlMode_Constant -C/econst/-/kAudioCodecBitRateControlMode_LongTermAverage -C/econst/-/kAudioCodecBitRateControlMode_Variable -C/econst/-/kAudioCodecBitRateControlMode_VariableConstrained -C/econst/-/kAudioCodecBitRateFormat -C/econst/-/kAudioCodecBitRateFormat_ABR -C/econst/-/kAudioCodecBitRateFormat_CBR -C/econst/-/kAudioCodecBitRateFormat_VBR -C/econst/-/kAudioCodecDoesSampleRateConversion -C/econst/-/kAudioCodecExtendFrequencies -C/econst/-/kAudioCodecGetPropertyInfoSelect -C/econst/-/kAudioCodecGetPropertySelect -C/econst/-/kAudioCodecIllegalOperationError -C/econst/-/kAudioCodecInitializeSelect -C/econst/-/kAudioCodecInputFormatsForOutputFormat -C/econst/-/kAudioCodecNoError -C/econst/-/kAudioCodecNotEnoughBufferSpaceError -C/econst/-/kAudioCodecOutputFormatsForInputFormat -C/econst/-/kAudioCodecOutputPrecedence -C/econst/-/kAudioCodecOutputPrecedenceBitRate -C/econst/-/kAudioCodecOutputPrecedenceNone -C/econst/-/kAudioCodecOutputPrecedenceSampleRate -C/econst/-/kAudioCodecPrimeMethod_None -C/econst/-/kAudioCodecPrimeMethod_Normal -C/econst/-/kAudioCodecPrimeMethod_Pre -C/econst/-/kAudioCodecProduceOutputDataSelect -C/econst/-/kAudioCodecProduceOutputPacketAtEOF -C/econst/-/kAudioCodecProduceOutputPacketFailure -C/econst/-/kAudioCodecProduceOutputPacketNeedsMoreInputData -C/econst/-/kAudioCodecProduceOutputPacketSuccess -C/econst/-/kAudioCodecProduceOutputPacketSuccessHasMore -C/econst/-/kAudioCodecPropertyApplicableBitRateRange -C/econst/-/kAudioCodecPropertyApplicableInputSampleRates -C/econst/-/kAudioCodecPropertyApplicableOutputSampleRates -C/econst/-/kAudioCodecPropertyAvailableBitRateRange -C/econst/-/kAudioCodecPropertyAvailableBitRates -C/econst/-/kAudioCodecPropertyAvailableInputChannelLayouts -C/econst/-/kAudioCodecPropertyAvailableInputChannelLayoutTags -C/econst/-/kAudioCodecPropertyAvailableInputSampleRates -C/econst/-/kAudioCodecPropertyAvailableNumberChannels -C/econst/-/kAudioCodecPropertyAvailableOutputChannelLayouts -C/econst/-/kAudioCodecPropertyAvailableOutputChannelLayoutTags -C/econst/-/kAudioCodecPropertyAvailableOutputSampleRates -C/econst/-/kAudioCodecPropertyBitRateControlMode -C/econst/-/kAudioCodecPropertyCurrentInputChannelLayout -C/econst/-/kAudioCodecPropertyCurrentInputFormat -C/econst/-/kAudioCodecPropertyCurrentInputSampleRate -C/econst/-/kAudioCodecPropertyCurrentOutputChannelLayout -C/econst/-/kAudioCodecPropertyCurrentOutputFormat -C/econst/-/kAudioCodecPropertyCurrentOutputSampleRate -C/econst/-/kAudioCodecPropertyCurrentTargetBitRate -C/econst/-/kAudioCodecPropertyDoesSampleRateConversion -C/econst/-/kAudioCodecPropertyFormatCFString -C/econst/-/kAudioCodecPropertyFormatInfo -C/econst/-/kAudioCodecPropertyFormatList -C/econst/-/kAudioCodecPropertyHasVariablePacketByteSizes -C/econst/-/kAudioCodecPropertyInputBufferSize -C/econst/-/kAudioCodecPropertyInputChannelLayout -C/econst/-/kAudioCodecPropertyInputFormatsForOutputFormat -C/econst/-/kAudioCodecPropertyIsInitialized -C/econst/-/kAudioCodecPropertyMagicCookie -C/econst/-/kAudioCodecPropertyManufacturerCFString -C/econst/-/kAudioCodecPropertyMaximumPacketByteSize -C/econst/-/kAudioCodecPropertyMinimumDelayMode -C/econst/-/kAudioCodecPropertyMinimumNumberInputPackets -C/econst/-/kAudioCodecPropertyMinimumNumberOutputPackets -C/econst/-/kAudioCodecPropertyNameCFString -C/econst/-/kAudioCodecPropertyOutputChannelLayout -C/econst/-/kAudioCodecPropertyOutputFormatsForInputFormat -C/econst/-/kAudioCodecPropertyPacketFrameSize -C/econst/-/kAudioCodecPropertyPaddedZeros -C/econst/-/kAudioCodecPropertyPrimeInfo -C/econst/-/kAudioCodecPropertyPrimeMethod -C/econst/-/kAudioCodecPropertyQualitySetting -C/econst/-/kAudioCodecPropertyRequiresPacketDescription -C/econst/-/kAudioCodecPropertySettings -C/econst/-/kAudioCodecPropertySoundQualityForVBR -C/econst/-/kAudioCodecPropertySupportedInputFormats -C/econst/-/kAudioCodecPropertySupportedOutputFormats -C/econst/-/kAudioCodecPropertyUsedInputBufferSize -C/econst/-/kAudioCodecPropertyZeroFramesPadded -C/econst/-/kAudioCodecQuality_High -C/econst/-/kAudioCodecQuality_Low -C/econst/-/kAudioCodecQuality_Max -C/econst/-/kAudioCodecQuality_Medium -C/econst/-/kAudioCodecQuality_Min -C/econst/-/kAudioCodecResetSelect -C/econst/-/kAudioCodecSetPropertySelect -C/econst/-/kAudioCodecStateError -C/econst/-/kAudioCodecUninitializeSelect -C/econst/-/kAudioCodecUnknownPropertyError -C/econst/-/kAudioCodecUnspecifiedError -C/econst/-/kAudioCodecUnsupportedFormatError -C/econst/-/kAudioCodecUseRecommendedSampleRate -C/econst/-/kAudioControlClassID -C/econst/-/kAudioConverterApplicableEncodeBitRates -C/econst/-/kAudioConverterApplicableEncodeSampleRates -C/econst/-/kAudioConverterAvailableEncodeBitRates -C/econst/-/kAudioConverterAvailableEncodeChannelLayoutTags -C/econst/-/kAudioConverterAvailableEncodeSampleRates -C/econst/-/kAudioConverterChannelMap -C/econst/-/kAudioConverterCodecQuality -C/econst/-/kAudioConverterCompressionMagicCookie -C/econst/-/kAudioConverterCurrentInputStreamDescription -C/econst/-/kAudioConverterCurrentOutputStreamDescription -C/econst/-/kAudioConverterDecompressionMagicCookie -C/econst/-/kAudioConverterEncodeAdjustableSampleRate -C/econst/-/kAudioConverterEncodeBitRate -C/econst/-/kAudioConverterErr_BadPropertySizeError -C/econst/-/kAudioConverterErr_FormatNotSupported -C/econst/-/kAudioConverterErr_InputSampleRateOutOfRange -C/econst/-/kAudioConverterErr_InvalidInputSize -C/econst/-/kAudioConverterErr_InvalidOutputSize -C/econst/-/kAudioConverterErr_OperationNotSupported -C/econst/-/kAudioConverterErr_OutputSampleRateOutOfRange -C/econst/-/kAudioConverterErr_PropertyNotSupported -C/econst/-/kAudioConverterErr_RequiresPacketDescriptionsError -C/econst/-/kAudioConverterErr_UnspecifiedError -C/econst/-/kAudioConverterInputChannelLayout -C/econst/-/kAudioConverterOutputChannelLayout -C/econst/-/kAudioConverterPrimeInfo -C/econst/-/kAudioConverterPrimeMethod -C/econst/-/kAudioConverterPropertyBitDepthHint -C/econst/-/kAudioConverterPropertyCalculateInputBufferSize -C/econst/-/kAudioConverterPropertyCalculateOutputBufferSize -C/econst/-/kAudioConverterPropertyFormatList -C/econst/-/kAudioConverterPropertyInputCodecParameters -C/econst/-/kAudioConverterPropertyMaximumInputBufferSize -C/econst/-/kAudioConverterPropertyMaximumInputPacketSize -C/econst/-/kAudioConverterPropertyMaximumOutputPacketSize -C/econst/-/kAudioConverterPropertyMinimumInputBufferSize -C/econst/-/kAudioConverterPropertyMinimumOutputBufferSize -C/econst/-/kAudioConverterPropertyOutputCodecParameters -C/econst/-/kAudioConverterPropertySettings -C/econst/-/kAudioConverterQuality_High -C/econst/-/kAudioConverterQuality_Low -C/econst/-/kAudioConverterQuality_Max -C/econst/-/kAudioConverterQuality_Medium -C/econst/-/kAudioConverterQuality_Min -C/econst/-/kAudioConverterSampleRateConverterAlgorithm -C/econst/-/kAudioConverterSampleRateConverterComplexity -C/econst/-/kAudioConverterSampleRateConverterComplexity_Linear -C/econst/-/kAudioConverterSampleRateConverterComplexity_Mastering -C/econst/-/kAudioConverterSampleRateConverterComplexity_Normal -C/econst/-/kAudioConverterSampleRateConverterInitialPhase -C/econst/-/kAudioConverterSampleRateConverterQuality -C/econst/-/kAudioDataDestinationControlClassID -C/econst/-/kAudioDataSourceControlClassID -C/econst/-/kAudioDecoderComponentType -C/econst/-/kAudioDeviceClassID -C/econst/-/kAudioDevicePropertyScopeInput -C/econst/-/kAudioDevicePropertyScopeOutput -C/econst/-/kAudioDevicePropertyScopePlayThrough -C/econst/-/kAudioDeviceTransportTypeAggregate -C/econst/-/kAudioDeviceTransportTypeAutoAggregate -C/econst/-/kAudioDeviceUnknown -C/econst/-/kAudioEncoderComponentType -C/econst/-/kAudioFile3GP2Type -C/econst/-/kAudioFile3GPType -C/econst/-/kAudioFileAAC_ADTSType -C/econst/-/kAudioFileAC3Type -C/econst/-/kAudioFileAIFCType -C/econst/-/kAudioFileAIFFType -C/econst/-/kAudioFileAMRType -C/econst/-/kAudioFileBadPropertySizeError -C/econst/-/kAudioFileCAFType -C/econst/-/kAudioFileDoesNotAllow64BitDataSizeError -C/econst/-/kAudioFileFlags_DontPageAlignAudioData -C/econst/-/kAudioFileFlags_EraseFile -C/econst/-/kAudioFileGlobalInfo_AllExtensions -C/econst/-/kAudioFileGlobalInfo_AllHFSTypeCodes -C/econst/-/kAudioFileGlobalInfo_AllMIMETypes -C/econst/-/kAudioFileGlobalInfo_AllUTIs -C/econst/-/kAudioFileGlobalInfo_AvailableFormatIDs -C/econst/-/kAudioFileGlobalInfo_AvailableStreamDescriptionsForFormat -C/econst/-/kAudioFileGlobalInfo_ExtensionsForType -C/econst/-/kAudioFileGlobalInfo_FileTypeName -C/econst/-/kAudioFileGlobalInfo_HFSTypeCodesForType -C/econst/-/kAudioFileGlobalInfo_MIMETypesForType -C/econst/-/kAudioFileGlobalInfo_ReadableTypes -C/econst/-/kAudioFileGlobalInfo_TypesForExtension -C/econst/-/kAudioFileGlobalInfo_TypesForHFSTypeCode -C/econst/-/kAudioFileGlobalInfo_TypesForMIMEType -C/econst/-/kAudioFileGlobalInfo_TypesForUTI -C/econst/-/kAudioFileGlobalInfo_UTIsForType -C/econst/-/kAudioFileGlobalInfo_WritableTypes -C/econst/-/kAudioFileInvalidChunkError -C/econst/-/kAudioFileInvalidFileError -C/econst/-/kAudioFileInvalidPacketOffsetError -C/econst/-/kAudioFileLoopDirection_Backward -C/econst/-/kAudioFileLoopDirection_Forward -C/econst/-/kAudioFileLoopDirection_ForwardAndBackward -C/econst/-/kAudioFileLoopDirection_NoLooping -C/econst/-/kAudioFileM4AType -C/econst/-/kAudioFileMarkerType_Generic -C/econst/-/kAudioFileMP1Type -C/econst/-/kAudioFileMP2Type -C/econst/-/kAudioFileMP3Type -C/econst/-/kAudioFileMPEG4Type -C/econst/-/kAudioFileNextType -C/econst/-/kAudioFileNotOptimizedError -C/econst/-/kAudioFileOperationNotSupportedError -C/econst/-/kAudioFilePermissionsError -C/econst/-/kAudioFilePropertyAudioDataByteCount -C/econst/-/kAudioFilePropertyAudioDataPacketCount -C/econst/-/kAudioFilePropertyBitRate -C/econst/-/kAudioFilePropertyByteToPacket -C/econst/-/kAudioFilePropertyChannelLayout -C/econst/-/kAudioFilePropertyChunkIDs -C/econst/-/kAudioFilePropertyDataFormat -C/econst/-/kAudioFilePropertyDataFormatName -C/econst/-/kAudioFilePropertyDataOffset -C/econst/-/kAudioFilePropertyDeferSizeUpdates -C/econst/-/kAudioFilePropertyEstimatedDuration -C/econst/-/kAudioFilePropertyFileFormat -C/econst/-/kAudioFilePropertyFormatList -C/econst/-/kAudioFilePropertyFrameToPacket -C/econst/-/kAudioFilePropertyID3Tag -C/econst/-/kAudioFilePropertyInfoDictionary -C/econst/-/kAudioFilePropertyIsOptimized -C/econst/-/kAudioFilePropertyMagicCookieData -C/econst/-/kAudioFilePropertyMarkerList -C/econst/-/kAudioFilePropertyMaximumPacketSize -C/econst/-/kAudioFilePropertyPacketSizeUpperBound -C/econst/-/kAudioFilePropertyPacketTableInfo -C/econst/-/kAudioFilePropertyPacketToByte -C/econst/-/kAudioFilePropertyPacketToFrame -C/econst/-/kAudioFilePropertyRegionList -C/econst/-/kAudioFilePropertyReserveDuration -C/econst/-/kAudioFileReadPermission -C/econst/-/kAudioFileReadWritePermission -C/econst/-/kAudioFileRegionFlag_LoopEnable -C/econst/-/kAudioFileRegionFlag_PlayBackward -C/econst/-/kAudioFileRegionFlag_PlayForward -C/econst/-/kAudioFileSoundDesigner2Type -C/econst/-/kAudioFileStreamError_BadPropertySize -C/econst/-/kAudioFileStreamError_DataUnavailable -C/econst/-/kAudioFileStreamError_DiscontinuityCantRecover -C/econst/-/kAudioFileStreamError_IllegalOperation -C/econst/-/kAudioFileStreamError_InvalidFile -C/econst/-/kAudioFileStreamError_InvalidPacketOffset -C/econst/-/kAudioFileStreamError_NotOptimized -C/econst/-/kAudioFileStreamError_UnspecifiedError -C/econst/-/kAudioFileStreamError_UnsupportedDataFormat -C/econst/-/kAudioFileStreamError_UnsupportedFileType -C/econst/-/kAudioFileStreamError_UnsupportedProperty -C/econst/-/kAudioFileStreamError_ValueUnknown -C/econst/-/kAudioFileStreamParseFlag_Discontinuity -C/econst/-/kAudioFileStreamProperty_AudioDataByteCount -C/econst/-/kAudioFileStreamProperty_AudioDataPacketCount -C/econst/-/kAudioFileStreamProperty_AverageBytesPerPacket -C/econst/-/kAudioFileStreamProperty_BitRate -C/econst/-/kAudioFileStreamProperty_ByteToPacket -C/econst/-/kAudioFileStreamProperty_ChannelLayout -C/econst/-/kAudioFileStreamProperty_DataFormat -C/econst/-/kAudioFileStreamProperty_DataOffset -C/econst/-/kAudioFileStreamProperty_FileFormat -C/econst/-/kAudioFileStreamProperty_FormatList -C/econst/-/kAudioFileStreamProperty_FrameToPacket -C/econst/-/kAudioFileStreamProperty_MagicCookieData -C/econst/-/kAudioFileStreamProperty_MaximumPacketSize -C/econst/-/kAudioFileStreamProperty_PacketSizeUpperBound -C/econst/-/kAudioFileStreamProperty_PacketTableInfo -C/econst/-/kAudioFileStreamProperty_PacketToByte -C/econst/-/kAudioFileStreamProperty_PacketToFrame -C/econst/-/kAudioFileStreamProperty_ReadyToProducePackets -C/econst/-/kAudioFileStreamPropertyFlag_CacheProperty -C/econst/-/kAudioFileStreamPropertyFlag_PropertyIsCached -C/econst/-/kAudioFileStreamSeekFlag_OffsetIsEstimated -C/econst/-/kAudioFileUnspecifiedError -C/econst/-/kAudioFileUnsupportedDataFormatError -C/econst/-/kAudioFileUnsupportedFileTypeError -C/econst/-/kAudioFileUnsupportedPropertyError -C/econst/-/kAudioFileWAVEType -C/econst/-/kAudioFileWritePermission -C/econst/-/kAudioFormat60958AC3 -C/econst/-/kAudioFormatAC3 -C/econst/-/kAudioFormatAES3 -C/econst/-/kAudioFormatALaw -C/econst/-/kAudioFormatAMR -C/econst/-/kAudioFormatAppleIMA4 -C/econst/-/kAudioFormatAppleLossless -C/econst/-/kAudioFormatAudible -C/econst/-/kAudioFormatBadPropertySizeError -C/econst/-/kAudioFormatBadSpecifierSizeError -C/econst/-/kAudioFormatDVAudio -C/econst/-/kAudioFormatDVIIntelIMA -C/econst/-/kAudioFormatFlagIsAlignedHigh -C/econst/-/kAudioFormatFlagIsBigEndian -C/econst/-/kAudioFormatFlagIsFloat -C/econst/-/kAudioFormatFlagIsNonInterleaved -C/econst/-/kAudioFormatFlagIsNonMixable -C/econst/-/kAudioFormatFlagIsPacked -C/econst/-/kAudioFormatFlagIsSignedInteger -C/econst/-/kAudioFormatFlagsAreAllClear -C/econst/-/kAudioFormatFlagsAudioUnitCanonical -C/econst/-/kAudioFormatFlagsCanonical -C/econst/-/kAudioFormatFlagsNativeEndian -C/econst/-/kAudioFormatFlagsNativeFloatPacked -C/econst/-/kAudioFormatiLBC -C/econst/-/kAudioFormatLinearPCM -C/econst/-/kAudioFormatMACE3 -C/econst/-/kAudioFormatMACE6 -C/econst/-/kAudioFormatMicrosoftGSM -C/econst/-/kAudioFormatMIDIStream -C/econst/-/kAudioFormatMPEG4AAC -C/econst/-/kAudioFormatMPEG4AAC_HE -C/econst/-/kAudioFormatMPEG4AAC_HE_V2 -C/econst/-/kAudioFormatMPEG4AAC_LD -C/econst/-/kAudioFormatMPEG4AAC_Spatial -C/econst/-/kAudioFormatMPEG4CELP -C/econst/-/kAudioFormatMPEG4HVXC -C/econst/-/kAudioFormatMPEG4TwinVQ -C/econst/-/kAudioFormatMPEGLayer1 -C/econst/-/kAudioFormatMPEGLayer2 -C/econst/-/kAudioFormatMPEGLayer3 -C/econst/-/kAudioFormatParameterValueStream -C/econst/-/kAudioFormatProperty_ASBDFromESDS -C/econst/-/kAudioFormatProperty_ASBDFromMPEGPacket -C/econst/-/kAudioFormatProperty_AvailableEncodeBitRates -C/econst/-/kAudioFormatProperty_AvailableEncodeChannelLayoutTags -C/econst/-/kAudioFormatProperty_AvailableEncodeNumberChannels -C/econst/-/kAudioFormatProperty_AvailableEncodeSampleRates -C/econst/-/kAudioFormatProperty_BalanceFade -C/econst/-/kAudioFormatProperty_BitmapForLayoutTag -C/econst/-/kAudioFormatProperty_ChannelLayoutForBitmap -C/econst/-/kAudioFormatProperty_ChannelLayoutForTag -C/econst/-/kAudioFormatProperty_ChannelLayoutFromESDS -C/econst/-/kAudioFormatProperty_ChannelLayoutName -C/econst/-/kAudioFormatProperty_ChannelMap -C/econst/-/kAudioFormatProperty_ChannelName -C/econst/-/kAudioFormatProperty_ChannelShortName -C/econst/-/kAudioFormatProperty_DecodeFormatIDs -C/econst/-/kAudioFormatProperty_Decoders -C/econst/-/kAudioFormatProperty_EncodeFormatIDs -C/econst/-/kAudioFormatProperty_Encoders -C/econst/-/kAudioFormatProperty_FirstPlayableFormatFromList -C/econst/-/kAudioFormatProperty_FormatInfo -C/econst/-/kAudioFormatProperty_FormatIsExternallyFramed -C/econst/-/kAudioFormatProperty_FormatIsVBR -C/econst/-/kAudioFormatProperty_FormatList -C/econst/-/kAudioFormatProperty_FormatName -C/econst/-/kAudioFormatProperty_ID3TagSize -C/econst/-/kAudioFormatProperty_ID3TagToDictionary -C/econst/-/kAudioFormatProperty_MatrixMixMap -C/econst/-/kAudioFormatProperty_NumberOfChannelsForLayout -C/econst/-/kAudioFormatProperty_OutputFormatList -C/econst/-/kAudioFormatProperty_PanningMatrix -C/econst/-/kAudioFormatProperty_TagForChannelLayout -C/econst/-/kAudioFormatProperty_TagsForNumberOfChannels -C/econst/-/kAudioFormatQDesign -C/econst/-/kAudioFormatQDesign2 -C/econst/-/kAudioFormatQUALCOMM -C/econst/-/kAudioFormatTimeCode -C/econst/-/kAudioFormatULaw -C/econst/-/kAudioFormatUnknownFormatError -C/econst/-/kAudioFormatUnspecifiedError -C/econst/-/kAudioFormatUnsupportedDataFormatError -C/econst/-/kAudioFormatUnsupportedPropertyError -C/econst/-/kAudioFormatVariableDurationDVAudio -C/macro/-/kAudioHardwarePlugInInterface2ID -C/macro/-/kAudioHardwarePlugInInterface3ID -C/macro/-/kAudioHardwarePlugInInterfaceID -C/macro/-/kAudioHardwarePlugInTypeID -C/econst/-/kAudioHardwareServiceDeviceProperty_VirtualMasterBalance -C/econst/-/kAudioHardwareServiceDeviceProperty_VirtualMasterVolume -C/econst/-/kAudioHardwareServiceProperty_ServiceRestarted -C/econst/-/kAudioISubOwnerClassID -C/econst/-/kAudioJackControlClassID -C/econst/-/kAudioLevelControlClassID -C/econst/-/kAudioLFEMuteControlClassID -C/econst/-/kAudioLFEVolumeControlClassID -C/econst/-/kAudioLineLevelControlClassID -C/econst/-/kAudioMuteControlClassID -C/econst/-/kAudioObjectClassID -C/econst/-/kAudioObjectClassIDWildcard -C/econst/-/kAudioObjectPropertyClass -C/econst/-/kAudioObjectPropertyCreator -C/econst/-/kAudioObjectPropertyElementCategoryName -C/econst/-/kAudioObjectPropertyElementMaster -C/econst/-/kAudioObjectPropertyElementName -C/econst/-/kAudioObjectPropertyElementNumberName -C/econst/-/kAudioObjectPropertyListenerAdded -C/econst/-/kAudioObjectPropertyListenerRemoved -C/econst/-/kAudioObjectPropertyManufacturer -C/econst/-/kAudioObjectPropertyObjectName -C/econst/-/kAudioObjectPropertyOwnedObjects -C/econst/-/kAudioObjectPropertyOwner -C/econst/-/kAudioObjectPropertyScopeGlobal -C/econst/-/kAudioObjectSystemObject -C/econst/-/kAudioObjectUnknown -C/econst/-/kAudioOfflineUnitRenderAction_Complete -C/econst/-/kAudioOfflineUnitRenderAction_Preflight -C/econst/-/kAudioOfflineUnitRenderAction_Render -C/econst/-/kAudioOutputUnitProperty_ChannelMap -C/econst/-/kAudioOutputUnitProperty_CurrentDevice -C/econst/-/kAudioOutputUnitProperty_EnableIO -C/econst/-/kAudioOutputUnitProperty_HasIO -C/econst/-/kAudioOutputUnitProperty_IsRunning -C/econst/-/kAudioOutputUnitProperty_SetInputCallback -C/econst/-/kAudioOutputUnitProperty_StartTime -C/econst/-/kAudioOutputUnitProperty_StartTimestampsAtZero -C/econst/-/kAudioOutputUnitRange -C/econst/-/kAudioOutputUnitStartSelect -C/econst/-/kAudioOutputUnitStopSelect -C/econst/-/kAudioPlugInClassID -C/econst/-/kAudioQueueDeviceProperty_NumberChannels -C/econst/-/kAudioQueueDeviceProperty_SampleRate -C/econst/-/kAudioQueueErr_BufferEmpty -C/econst/-/kAudioQueueErr_BufferInQueue -C/econst/-/kAudioQueueErr_CannotStart -C/econst/-/kAudioQueueErr_CodecNotFound -C/econst/-/kAudioQueueErr_DisposalPending -C/econst/-/kAudioQueueErr_EnqueueDuringReset -C/econst/-/kAudioQueueErr_InvalidBuffer -C/econst/-/kAudioQueueErr_InvalidDevice -C/econst/-/kAudioQueueErr_InvalidParameter -C/econst/-/kAudioQueueErr_InvalidProperty -C/econst/-/kAudioQueueErr_InvalidPropertySize -C/econst/-/kAudioQueueErr_InvalidPropertyValue -C/econst/-/kAudioQueueErr_InvalidQueueType -C/econst/-/kAudioQueueErr_InvalidRunState -C/econst/-/kAudioQueueErr_Permissions -C/econst/-/kAudioQueueErr_PrimeTimedOut -C/econst/-/kAudioQueueParam_Volume -C/econst/-/kAudioQueueProperty_ChannelLayout -C/econst/-/kAudioQueueProperty_CurrentDevice -C/econst/-/kAudioQueueProperty_CurrentLevelMeter -C/econst/-/kAudioQueueProperty_CurrentLevelMeterDB -C/econst/-/kAudioQueueProperty_DecodeBufferSizeFrames -C/econst/-/kAudioQueueProperty_EnableLevelMetering -C/econst/-/kAudioQueueProperty_IsRunning -C/econst/-/kAudioQueueProperty_MagicCookie -C/econst/-/kAudioQueueProperty_MaximumOutputPacketSize -C/econst/-/kAudioQueueProperty_StreamDescription -C/econst/-/kAudioSelectorControlClassID -C/econst/-/kAudioServicesBadPropertySizeError -C/econst/-/kAudioServicesBadSpecifierSizeError -C/econst/-/kAudioServicesNoError -C/econst/-/kAudioServicesPropertyCompletePlaybackIfAppDies -C/econst/-/kAudioServicesPropertyIsUISound -C/econst/-/kAudioServicesSystemSoundClientTimedOutError -C/econst/-/kAudioServicesSystemSoundUnspecifiedError -C/econst/-/kAudioServicesUnsupportedPropertyError -C/econst/-/kAudioSoloControlClassID -C/econst/-/kAudioStereoPanControlClassID -C/econst/-/kAudioStreamAnyRate -C/econst/-/kAudioStreamClassID -C/econst/-/kAudioStreamUnknown -C/econst/-/kAudioSubDeviceClassID -C/macro/-/kAudioSubDeviceDriftCompensationKey -C/macro/-/kAudioSubDeviceDriftCompensationQualityKey -C/macro/-/kAudioSubDeviceExtraInputLatencyKey -C/macro/-/kAudioSubDeviceExtraOutputLatencyKey -C/macro/-/kAudioSubDeviceInputChannelsKey -C/macro/-/kAudioSubDeviceNameKey -C/macro/-/kAudioSubDeviceOutputChannelsKey -C/macro/-/kAudioSubDeviceUIDKey -C/econst/-/kAudioSystemObjectClassID -C/econst/-/kAudioTimeStampHostTimeValid -C/econst/-/kAudioTimeStampRateScalarValid -C/econst/-/kAudioTimeStampSampleHostTimeValid -C/econst/-/kAudioTimeStampSampleTimeValid -C/econst/-/kAudioTimeStampSMPTETimeValid -C/econst/-/kAudioTimeStampWordClockTimeValid -C/econst/-/kAudioToolboxErr_CannotDoInCurrentContext -C/econst/-/kAudioToolboxErr_EndOfTrack -C/econst/-/kAudioToolboxErr_IllegalTrackDestination -C/econst/-/kAudioToolboxErr_InvalidEventType -C/econst/-/kAudioToolboxErr_InvalidPlayerState -C/econst/-/kAudioToolboxErr_InvalidSequenceType -C/econst/-/kAudioToolboxErr_NoSequence -C/econst/-/kAudioToolboxErr_StartOfTrack -C/econst/-/kAudioToolboxErr_TrackIndexError -C/econst/-/kAudioToolboxErr_TrackNotFound -C/econst/-/kAudioUnitAddPropertyListenerSelect -C/econst/-/kAudioUnitAddRenderNotifySelect -C/econst/-/kAudioUnitClumpID_System -C/econst/-/kAudioUnitErr_CannotDoInCurrentContext -C/econst/-/kAudioUnitErr_FailedInitialization -C/econst/-/kAudioUnitErr_FileNotSpecified -C/econst/-/kAudioUnitErr_FormatNotSupported -C/econst/-/kAudioUnitErr_IllegalInstrument -C/econst/-/kAudioUnitErr_Initialized -C/econst/-/kAudioUnitErr_InstrumentTypeNotFound -C/econst/-/kAudioUnitErr_InvalidElement -C/econst/-/kAudioUnitErr_InvalidFile -C/econst/-/kAudioUnitErr_InvalidOfflineRender -C/econst/-/kAudioUnitErr_InvalidParameter -C/econst/-/kAudioUnitErr_InvalidProperty -C/econst/-/kAudioUnitErr_InvalidPropertyValue -C/econst/-/kAudioUnitErr_InvalidScope -C/econst/-/kAudioUnitErr_NoConnection -C/econst/-/kAudioUnitErr_PropertyNotInUse -C/econst/-/kAudioUnitErr_PropertyNotWritable -C/econst/-/kAudioUnitErr_TooManyFramesToProcess -C/econst/-/kAudioUnitErr_Unauthorized -C/econst/-/kAudioUnitErr_Uninitialized -C/econst/-/kAudioUnitErr_UnknownFileType -C/econst/-/kAudioUnitGetParameterSelect -C/econst/-/kAudioUnitGetPropertyInfoSelect -C/econst/-/kAudioUnitGetPropertySelect -C/econst/-/kAudioUnitInitializeSelect -C/econst/-/kAudioUnitManufacturer_Apple -C/econst/-/kAudioUnitOfflineProperty_InputSize -C/econst/-/kAudioUnitOfflineProperty_OutputSize -C/econst/-/kAudioUnitOfflineProperty_PreflightName -C/econst/-/kAudioUnitOfflineProperty_PreflightRequirements -C/econst/-/kAudioUnitOfflineProperty_StartOffset -C/econst/-/kAudioUnitParameterFlag_CanRamp -C/econst/-/kAudioUnitParameterFlag_CFNameRelease -C/econst/-/kAudioUnitParameterFlag_DisplayCubed -C/econst/-/kAudioUnitParameterFlag_DisplayCubeRoot -C/econst/-/kAudioUnitParameterFlag_DisplayExponential -C/econst/-/kAudioUnitParameterFlag_DisplayLogarithmic -C/econst/-/kAudioUnitParameterFlag_DisplayMask -C/econst/-/kAudioUnitParameterFlag_DisplaySquared -C/econst/-/kAudioUnitParameterFlag_DisplaySquareRoot -C/econst/-/kAudioUnitParameterFlag_ExpertMode -C/econst/-/kAudioUnitParameterFlag_HasCFNameString -C/econst/-/kAudioUnitParameterFlag_HasClump -C/econst/-/kAudioUnitParameterFlag_IsElementMeta -C/econst/-/kAudioUnitParameterFlag_IsGlobalMeta -C/econst/-/kAudioUnitParameterFlag_IsHighResolution -C/econst/-/kAudioUnitParameterFlag_IsReadable -C/econst/-/kAudioUnitParameterFlag_IsWritable -C/econst/-/kAudioUnitParameterFlag_MeterReadOnly -C/econst/-/kAudioUnitParameterFlag_NonRealTime -C/econst/-/kAudioUnitParameterFlag_ValuesHaveStrings -C/econst/-/kAudioUnitParameterUnit_AbsoluteCents -C/econst/-/kAudioUnitParameterUnit_Beats -C/econst/-/kAudioUnitParameterUnit_Boolean -C/econst/-/kAudioUnitParameterUnit_BPM -C/econst/-/kAudioUnitParameterUnit_Cents -C/econst/-/kAudioUnitParameterUnit_CustomUnit -C/econst/-/kAudioUnitParameterUnit_Decibels -C/econst/-/kAudioUnitParameterUnit_Degrees -C/econst/-/kAudioUnitParameterUnit_EqualPowerCrossfade -C/econst/-/kAudioUnitParameterUnit_Generic -C/econst/-/kAudioUnitParameterUnit_Hertz -C/econst/-/kAudioUnitParameterUnit_Indexed -C/econst/-/kAudioUnitParameterUnit_LinearGain -C/econst/-/kAudioUnitParameterUnit_Meters -C/econst/-/kAudioUnitParameterUnit_MIDIController -C/econst/-/kAudioUnitParameterUnit_MIDINoteNumber -C/econst/-/kAudioUnitParameterUnit_Milliseconds -C/econst/-/kAudioUnitParameterUnit_MixerFaderCurve1 -C/econst/-/kAudioUnitParameterUnit_Octaves -C/econst/-/kAudioUnitParameterUnit_Pan -C/econst/-/kAudioUnitParameterUnit_Percent -C/econst/-/kAudioUnitParameterUnit_Phase -C/econst/-/kAudioUnitParameterUnit_Rate -C/econst/-/kAudioUnitParameterUnit_Ratio -C/econst/-/kAudioUnitParameterUnit_RelativeSemiTones -C/econst/-/kAudioUnitParameterUnit_SampleFrames -C/econst/-/kAudioUnitParameterUnit_Seconds -C/econst/-/kAudioUnitProperty_3DMixerAttenuationCurve -C/econst/-/kAudioUnitProperty_3DMixerDistanceAtten -C/econst/-/kAudioUnitProperty_3DMixerDistanceParams -C/econst/-/kAudioUnitProperty_3DMixerRenderingFlags -C/econst/-/kAudioUnitProperty_AudioChannelLayout -C/econst/-/kAudioUnitProperty_AUHostIdentifier -C/econst/-/kAudioUnitProperty_BypassEffect -C/econst/-/kAudioUnitProperty_ClassInfo -C/econst/-/kAudioUnitProperty_ClassInfoFromDocument -C/econst/-/kAudioUnitProperty_CocoaUI -C/econst/-/kAudioUnitProperty_ContextName -C/econst/-/kAudioUnitProperty_CPULoad -C/econst/-/kAudioUnitProperty_DependentParameters -C/econst/-/kAudioUnitProperty_DopplerShift -C/econst/-/kAudioUnitProperty_ElementCount -C/econst/-/kAudioUnitProperty_ElementName -C/econst/-/kAudioUnitProperty_FactoryPresets -C/econst/-/kAudioUnitProperty_FastDispatch -C/econst/-/kAudioUnitProperty_FrequencyResponse -C/econst/-/kAudioUnitProperty_GetUIComponentList -C/econst/-/kAudioUnitProperty_HostCallbacks -C/econst/-/kAudioUnitProperty_IconLocation -C/econst/-/kAudioUnitProperty_InPlaceProcessing -C/econst/-/kAudioUnitProperty_InputSamplesInOutput -C/econst/-/kAudioUnitProperty_LastRenderError -C/econst/-/kAudioUnitProperty_Latency -C/econst/-/kAudioUnitProperty_MakeConnection -C/econst/-/kAudioUnitProperty_MatrixDimensions -C/econst/-/kAudioUnitProperty_MatrixLevels -C/econst/-/kAudioUnitProperty_MaximumFramesPerSlice -C/econst/-/kAudioUnitProperty_MeterClipping -C/econst/-/kAudioUnitProperty_MeteringMode -C/econst/-/kAudioUnitProperty_MIDIOutputCallback -C/econst/-/kAudioUnitProperty_MIDIOutputCallbackInfo -C/econst/-/kAudioUnitProperty_OfflineRender -C/econst/-/kAudioUnitProperty_ParameterClumpName -C/econst/-/kAudioUnitProperty_ParameterIDName -C/econst/-/kAudioUnitProperty_ParameterInfo -C/econst/-/kAudioUnitProperty_ParameterList -C/econst/-/kAudioUnitProperty_ParameterStringFromValue -C/econst/-/kAudioUnitProperty_ParameterValueFromString -C/econst/-/kAudioUnitProperty_ParameterValueStrings -C/econst/-/kAudioUnitProperty_PresentationLatency -C/econst/-/kAudioUnitProperty_PresentPreset -C/econst/-/kAudioUnitProperty_RenderQuality -C/econst/-/kAudioUnitProperty_ReverbPreset -C/econst/-/kAudioUnitProperty_SampleRate -C/econst/-/kAudioUnitProperty_SampleRateConverterComplexity -C/econst/-/kAudioUnitProperty_SetExternalBuffer -C/econst/-/kAudioUnitProperty_SetRenderCallback -C/econst/-/kAudioUnitProperty_ShouldAllocateBuffer -C/econst/-/kAudioUnitProperty_SpatializationAlgorithm -C/econst/-/kAudioUnitProperty_SpeechChannel -C/econst/-/kAudioUnitProperty_StreamFormat -C/econst/-/kAudioUnitProperty_SupportedChannelLayoutTags -C/econst/-/kAudioUnitProperty_SupportedNumChannels -C/econst/-/kAudioUnitProperty_TailTime -C/econst/-/kAudioUnitProperty_Voice -C/econst/-/kAudioUnitRange -C/econst/-/kAudioUnitRemovePropertyListenerSelect -C/econst/-/kAudioUnitRemovePropertyListenerWithUserDataSelect -C/econst/-/kAudioUnitRemoveRenderNotifySelect -C/econst/-/kAudioUnitRenderAction_OutputIsSilence -C/econst/-/kAudioUnitRenderAction_PostRender -C/econst/-/kAudioUnitRenderAction_PostRenderError -C/econst/-/kAudioUnitRenderAction_PreRender -C/econst/-/kAudioUnitRenderSelect -C/econst/-/kAudioUnitResetSelect -C/econst/-/kAudioUnitSampleRateConverterComplexity_Linear -C/econst/-/kAudioUnitSampleRateConverterComplexity_Mastering -C/econst/-/kAudioUnitSampleRateConverterComplexity_Normal -C/econst/-/kAudioUnitScheduleParametersSelect -C/econst/-/kAudioUnitScope_Global -C/econst/-/kAudioUnitScope_Group -C/econst/-/kAudioUnitScope_Input -C/econst/-/kAudioUnitScope_Note -C/econst/-/kAudioUnitScope_Output -C/econst/-/kAudioUnitScope_Part -C/econst/-/kAudioUnitSetParameterSelect -C/econst/-/kAudioUnitSetPropertySelect -C/econst/-/kAudioUnitSubType_3DMixer -C/econst/-/kAudioUnitSubType_AUConverter -C/econst/-/kAudioUnitSubType_AUFilter -C/econst/-/kAudioUnitSubType_BandPassFilter -C/econst/-/kAudioUnitSubType_DefaultOutput -C/econst/-/kAudioUnitSubType_DeferredRenderer -C/econst/-/kAudioUnitSubType_Delay -C/econst/-/kAudioUnitSubType_Distortion -C/econst/-/kAudioUnitSubType_DynamicsProcessor -C/econst/-/kAudioUnitSubType_GenericOutput -C/econst/-/kAudioUnitSubType_GraphicEQ -C/econst/-/kAudioUnitSubType_HALOutput -C/econst/-/kAudioUnitSubType_HighPassFilter -C/econst/-/kAudioUnitSubType_HighShelfFilter -C/econst/-/kAudioUnitSubType_LowPassFilter -C/econst/-/kAudioUnitSubType_LowShelfFilter -C/econst/-/kAudioUnitSubType_MatrixMixer -C/econst/-/kAudioUnitSubType_MatrixReverb -C/econst/-/kAudioUnitSubType_Merger -C/econst/-/kAudioUnitSubType_MultiBandCompressor -C/econst/-/kAudioUnitSubType_MultiChannelMixer -C/econst/-/kAudioUnitSubType_NetSend -C/econst/-/kAudioUnitSubType_ParametricEQ -C/econst/-/kAudioUnitSubType_PeakLimiter -C/econst/-/kAudioUnitSubType_Pitch -C/econst/-/kAudioUnitSubType_RogerBeep -C/econst/-/kAudioUnitSubType_SampleDelay -C/econst/-/kAudioUnitSubType_SpeechSynthesis -C/econst/-/kAudioUnitSubType_Splitter -C/econst/-/kAudioUnitSubType_StereoMixer -C/econst/-/kAudioUnitSubType_SystemOutput -C/econst/-/kAudioUnitSubType_TimePitch -C/econst/-/kAudioUnitSubType_Varispeed -C/econst/-/kAudioUnitType_Effect -C/econst/-/kAudioUnitType_FormatConverter -C/econst/-/kAudioUnitType_Generator -C/econst/-/kAudioUnitType_Mixer -C/econst/-/kAudioUnitType_MusicDevice -C/econst/-/kAudioUnitType_MusicEffect -C/econst/-/kAudioUnitType_OfflineEffect -C/econst/-/kAudioUnitType_Output -C/econst/-/kAudioUnitType_Panner -C/econst/-/kAudioUnitUninitializeSelect -C/econst/-/kAudioUnityCodecComponentType -C/econst/-/kAudioVolumeControlClassID -C/econst/-/kAUGraphErr_CannotDoInCurrentContext -C/econst/-/kAUGraphErr_InvalidAudioUnit -C/econst/-/kAUGraphErr_InvalidConnection -C/econst/-/kAUGraphErr_NodeNotFound -C/econst/-/kAUGraphErr_OutputNodeErr -C/econst/-/kAUNodeInteraction_Connection -C/econst/-/kAUNodeInteraction_InputCallback -C/macro/-/kAUPresetCPULoadKey -C/macro/-/kAUPresetDataKey -C/macro/-/kAUPresetElementNameKey -C/macro/-/kAUPresetExternalFileRefs -C/macro/-/kAUPresetManufacturerKey -C/macro/-/kAUPresetMASDataKey -C/macro/-/kAUPresetNameKey -C/macro/-/kAUPresetPartKey -C/macro/-/kAUPresetRenderQualityKey -C/macro/-/kAUPresetSubtypeKey -C/macro/-/kAUPresetTypeKey -C/macro/-/kAUPresetVersionKey -C/macro/-/kAUPresetVSTDataKey -C/macro/-/kAUPresetVSTPresetKey -C/tag/-/kauth_acl -C/tdef/-/kauth_cred_t -C/macro/-/KAUTH_VNODE_GENERIC_ALL -C/macro/-/KAUTH_VNODE_GENERIC_EXECUTE -C/macro/-/KAUTH_VNODE_GENERIC_READ -C/macro/-/KAUTH_VNODE_GENERIC_WRITE -C/macro/-/kAuthorizationComment -C/econst/-/kAuthorizationContextFlagExtractable -C/econst/-/kAuthorizationContextFlagSticky -C/econst/-/kAuthorizationContextFlagVolatile -C/macro/-/kAuthorizationEmptyEnvironment -C/macro/-/kAuthorizationEnvironmentIcon -C/macro/-/kAuthorizationEnvironmentPassword -C/macro/-/kAuthorizationEnvironmentPrompt -C/macro/-/kAuthorizationEnvironmentShared -C/macro/-/kAuthorizationEnvironmentUsername -C/econst/-/kAuthorizationExternalFormLength -C/econst/-/kAuthorizationFlagCanNotPreAuthorize -C/econst/-/kAuthorizationFlagDefaults -C/econst/-/kAuthorizationFlagDestroyRights -C/econst/-/kAuthorizationFlagExtendRights -C/econst/-/kAuthorizationFlagInteractionAllowed -C/econst/-/kAuthorizationFlagNoData -C/econst/-/kAuthorizationFlagPartialRights -C/econst/-/kAuthorizationFlagPreAuthorize -C/econst/-/kAuthorizationResultAllow -C/econst/-/kAuthorizationResultDeny -C/econst/-/kAuthorizationResultUndefined -C/econst/-/kAuthorizationResultUserCanceled -C/macro/-/kAuthorizationRightExecute -C/macro/-/kAuthorizationRightRule -C/macro/-/kAuthorizationRuleAuthenticateAsAdmin -C/macro/-/kAuthorizationRuleAuthenticateAsSessionUser -C/macro/-/kAuthorizationRuleClassAllow -C/macro/-/kAuthorizationRuleClassDeny -C/macro/-/kAuthorizationRuleIsAdmin -C/macro/-/kAXAllowedValuesAttribute -C/macro/-/kAXAMPMFieldAttribute -C/macro/-/kAXApplicationActivatedNotification -C/macro/-/kAXApplicationDeactivatedNotification -C/macro/-/kAXApplicationDockItemSubrole -C/macro/-/kAXApplicationHiddenNotification -C/macro/-/kAXApplicationRole -C/macro/-/kAXApplicationShownNotification -C/macro/-/kAXAscendingSortDirectionValue -C/data/-/kAXAttachmentTextAttribute -C/macro/-/kAXAttributedStringForRangeParameterizedAttribute -C/data/-/kAXBackgroundColorTextAttribute -C/macro/-/kAXBoundsForRangeParameterizedAttribute -C/macro/-/kAXBrowserRole -C/macro/-/kAXBusyIndicatorRole -C/macro/-/kAXButtonRole -C/macro/-/kAXCancelAction -C/macro/-/kAXCancelButtonAttribute -C/macro/-/kAXCheckBoxRole -C/macro/-/kAXChildrenAttribute -C/macro/-/kAXCloseButtonAttribute -C/macro/-/kAXCloseButtonSubrole -C/macro/-/kAXColorWellRole -C/macro/-/kAXColumnHeaderUIElementsAttribute -C/macro/-/kAXColumnRole -C/macro/-/kAXColumnsAttribute -C/macro/-/kAXColumnTitleAttribute -C/macro/-/kAXComboBoxRole -C/macro/-/kAXConfirmAction -C/macro/-/kAXContentsAttribute -C/tag/-/kAXCopyMultipleAttributeOptionStopOnError -C/macro/-/kAXCreatedNotification -C/macro/-/kAXDateFieldRole -C/macro/-/kAXDayFieldAttribute -C/macro/-/kAXDecrementAction -C/macro/-/kAXDecrementArrowSubrole -C/macro/-/kAXDecrementButtonAttribute -C/macro/-/kAXDecrementPageSubrole -C/macro/-/kAXDefaultButtonAttribute -C/macro/-/kAXDescendingSortDirectionValue -C/macro/-/kAXDescriptionAttribute -C/macro/-/kAXDialogSubrole -C/macro/-/kAXDisclosedByRowAttribute -C/macro/-/kAXDisclosedRowsAttribute -C/macro/-/kAXDisclosingAttribute -C/macro/-/kAXDisclosureTriangleRole -C/macro/-/kAXDockExtraDockItemSubrole -C/macro/-/kAXDockItemRole -C/macro/-/kAXDocumentAttribute -C/macro/-/kAXDocumentDockItemSubrole -C/macro/-/kAXDrawerCreatedNotification -C/macro/-/kAXDrawerRole -C/macro/-/kAXEditedAttribute -C/macro/-/kAXEnabledAttribute -C/econst/-/kAXErrorActionUnsupported -C/econst/-/kAXErrorAPIDisabled -C/econst/-/kAXErrorAttributeUnsupported -C/econst/-/kAXErrorCannotComplete -C/econst/-/kAXErrorFailure -C/econst/-/kAXErrorIllegalArgument -C/econst/-/kAXErrorInvalidUIElement -C/econst/-/kAXErrorInvalidUIElementObserver -C/econst/-/kAXErrorNotificationAlreadyRegistered -C/econst/-/kAXErrorNotificationNotRegistered -C/econst/-/kAXErrorNotificationUnsupported -C/econst/-/kAXErrorNotImplemented -C/econst/-/kAXErrorNoValue -C/econst/-/kAXErrorParameterizedAttributeUnsupported -C/tag/-/kAXErrorSuccess -C/econst/-/kAXErrorSuccess -C/macro/-/kAXExpandedAttribute -C/macro/-/kAXFilenameAttribute -C/macro/-/kAXFloatingWindowSubrole -C/macro/-/kAXFocusedApplicationAttribute -C/macro/-/kAXFocusedAttribute -C/macro/-/kAXFocusedUIElemenAttribute -C/macro/-/kAXFocusedUIElementChangedNotification -C/macro/-/kAXFocusedWindowAttribute -C/macro/-/kAXFocusedWindowChangedNotification -C/macro/-/kAXFolderDockItemSubrole -C/data/-/kAXFontFamilyKey -C/data/-/kAXFontNameKey -C/data/-/kAXFontSizeKey -C/data/-/kAXFontTextAttribute -C/data/-/kAXForegroundColorTextAttribute -C/macro/-/kAXFrontmostAttribute -C/macro/-/kAXGroupRole -C/macro/-/kAXGrowAreaAttribute -C/macro/-/kAXGrowAreaRole -C/macro/-/kAXHeaderAttribute -C/macro/-/kAXHelpAttribute -C/macro/-/kAXHelpTagCreatedNotification -C/macro/-/kAXHelpTagRole -C/macro/-/kAXHiddenAttribute -C/macro/-/kAXHorizontalOrientationValue -C/macro/-/kAXHorizontalScrollBarAttribute -C/macro/-/kAXHourFieldAttribute -C/macro/-/kAXImageRole -C/macro/-/kAXIncrementAction -C/macro/-/kAXIncrementArrowSubrole -C/macro/-/kAXIncrementButtonAttribute -C/macro/-/kAXIncrementorAttribute -C/macro/-/kAXIncrementorRole -C/macro/-/kAXIncrementPageSubrole -C/macro/-/kAXIndexAttribute -C/macro/-/kAXInsertionPointLineNumberAttribute -C/macro/-/kAXIsApplicationRunningAttribute -C/macro/-/kAXLabelUIElementsAttribute -C/macro/-/kAXLabelValueAttribute -C/macro/-/kAXLineForIndexParameterizedAttribute -C/macro/-/kAXLinkedUIElementsAttribute -C/data/-/kAXLinkTextAttribute -C/macro/-/kAXListRole -C/macro/-/kAXMainAttribute -C/macro/-/kAXMainWindowAttribute -C/macro/-/kAXMainWindowChangedNotification -C/macro/-/kAXMatteContentUIElementAttribute -C/macro/-/kAXMatteHoleAttribute -C/macro/-/kAXMatteRole -C/macro/-/kAXMaxValueAttribute -C/macro/-/kAXMenuBarAttribute -C/macro/-/kAXMenuBarItemRole -C/macro/-/kAXMenuBarRole -C/macro/-/kAXMenuButtonRole -C/macro/-/kAXMenuClosedNotification -C/macro/-/kAXMenuItemCmdCharAttribute -C/macro/-/kAXMenuItemCmdGlyphAttribute -C/macro/-/kAXMenuItemCmdModifiersAttribute -C/macro/-/kAXMenuItemCmdVirtualKeyAttribute -C/macro/-/kAXMenuItemMarkCharAttribute -C/macro/-/kAXMenuItemPrimaryUIElementAttribute -C/macro/-/kAXMenuItemRole -C/macro/-/kAXMenuItemSelectedNotification -C/macro/-/kAXMenuOpenedNotification -C/macro/-/kAXMenuRole -C/macro/-/kAXMinimizeButtonAttribute -C/macro/-/kAXMinimizeButtonSubrole -C/macro/-/kAXMinimizedAttribute -C/macro/-/kAXMinimizedWindowDockItemSubrole -C/macro/-/kAXMinuteFieldAttribute -C/macro/-/kAXMinValueAttribute -C/data/-/kAXMisspelledTextAttribute -C/macro/-/kAXModalAttribute -C/macro/-/kAXMonthFieldAttribute -C/macro/-/kAXMovedNotification -C/data/-/kAXNaturalLanguageTextAttribute -C/macro/-/kAXNextContentsAttribute -C/macro/-/kAXNumberOfCharactersAttribute -C/macro/-/kAXOrientationAttribute -C/macro/-/kAXOutlineRole -C/macro/-/kAXOutlineRowSubrole -C/macro/-/kAXOverflowButtonAttribute -C/macro/-/kAXParentAttribute -C/macro/-/kAXPickAction -C/macro/-/kAXPopUpButtonRole -C/macro/-/kAXPositionAttribute -C/macro/-/kAXPressAction -C/macro/-/kAXPreviousContentsAttribute -C/macro/-/kAXProcessSwitcherListSubrole -C/macro/-/kAXProgressIndicatorRole -C/macro/-/kAXProxyAttribute -C/macro/-/kAXRadioButtonRole -C/macro/-/kAXRadioGroupRole -C/macro/-/kAXRaiseAction -C/macro/-/kAXRangeForIndexParameterizedAttribute -C/macro/-/kAXRangeForLineParameterizedAttribute -C/macro/-/kAXRangeForPositionParameterizedAttribute -C/macro/-/kAXRelevanceIndicatorRole -C/data/-/kAXReplacementStringTextAttribute -C/macro/-/kAXResizedNotification -C/macro/-/kAXRoleAttribute -C/macro/-/kAXRoleDescriptionAttribute -C/macro/-/kAXRowCountChangedNotification -C/macro/-/kAXRowRole -C/macro/-/kAXRowsAttribute -C/macro/-/kAXRTFForRangeParameterizedAttribute -C/macro/-/kAXScrollAreaRole -C/macro/-/kAXScrollBarRole -C/macro/-/kAXSearchFieldSubrole -C/macro/-/kAXSecondFieldAttribute -C/macro/-/kAXSecureTextFieldSubrole -C/macro/-/kAXSelectedAttribute -C/macro/-/kAXSelectedChildrenAttribute -C/macro/-/kAXSelectedChildrenChangedNotification -C/macro/-/kAXSelectedColumnsAttribute -C/macro/-/kAXSelectedColumnsChangedNotification -C/macro/-/kAXSelectedRowsAttribute -C/macro/-/kAXSelectedRowsChangedNotification -C/macro/-/kAXSelectedTextAttribute -C/macro/-/kAXSelectedTextChangedNotification -C/macro/-/kAXSelectedTextRangeAttribute -C/macro/-/kAXServesAsTitleForUIElementsAttribute -C/data/-/kAXShadowTextAttribute -C/macro/-/kAXSharedCharacterRangeAttribute -C/macro/-/kAXSharedTextUIElementsAttribute -C/macro/-/kAXSheetCreatedNotification -C/macro/-/kAXSheetRole -C/macro/-/kAXShowMenuAction -C/macro/-/kAXShownMenuUIElementAttribute -C/macro/-/kAXSizeAttribute -C/macro/-/kAXSliderRole -C/macro/-/kAXSortButtonSubrole -C/macro/-/kAXSortDirectionAttribute -C/macro/-/kAXSplitGroupRole -C/macro/-/kAXSplitterRole -C/macro/-/kAXSplittersAttribute -C/macro/-/kAXStandardWindowSubrole -C/macro/-/kAXStaticTextRole -C/data/-/kAXStrikethroughColorTextAttribute -C/data/-/kAXStrikethroughTextAttribute -C/macro/-/kAXStringForRangeParameterizedAttribute -C/macro/-/kAXStyleRangeForIndexParameterizedAttribute -C/macro/-/kAXSubroleAttribute -C/data/-/kAXSuperscriptTextAttribute -C/macro/-/kAXSystemDialogSubrole -C/macro/-/kAXSystemFloatingWindowSubrole -C/macro/-/kAXSystemWideRole -C/macro/-/kAXTabGroupRole -C/macro/-/kAXTableRole -C/macro/-/kAXTableRowSubrole -C/macro/-/kAXTabsAttribute -C/macro/-/kAXTextAreaRole -C/macro/-/kAXTextFieldRole -C/macro/-/kAXTimeFieldRole -C/macro/-/kAXTitleAttribute -C/macro/-/kAXTitleUIElementAttribute -C/macro/-/kAXToolbarButtonAttribute -C/macro/-/kAXToolbarButtonSubrole -C/macro/-/kAXToolbarRole -C/macro/-/kAXTopLevelUIElementAttribute -C/macro/-/kAXTrashDockItemSubrole -C/macro/-/kAXUIElementDestroyedNotification -C/data/-/kAXUnderlineColorTextAttribute -C/tag/-/kAXUnderlineStyleNone -C/data/-/kAXUnderlineTextAttribute -C/macro/-/kAXUnknownOrientationValue -C/macro/-/kAXUnknownRole -C/macro/-/kAXUnknownSortDirectionValue -C/macro/-/kAXUnknownSubrole -C/macro/-/kAXURLAttribute -C/macro/-/kAXURLDockItemSubrole -C/macro/-/kAXValueAttribute -C/econst/-/kAXValueAXErrorType -C/econst/-/kAXValueCFRangeType -C/econst/-/kAXValueCGPointType -C/econst/-/kAXValueCGRectType -C/econst/-/kAXValueCGSizeType -C/macro/-/kAXValueChangedNotification -C/econst/-/kAXValueIllegalType -C/macro/-/kAXValueIncrementAttribute -C/macro/-/kAXValueIndicatorRole -C/macro/-/kAXValueWrapsAttribute -C/macro/-/kAXVerticalOrientationValue -C/macro/-/kAXVerticalScrollBarAttribute -C/macro/-/kAXVisibleCharacterRangeAttribute -C/macro/-/kAXVisibleChildrenAttribute -C/macro/-/kAXVisibleColumnsAttribute -C/data/-/kAXVisibleNameKey -C/macro/-/kAXVisibleRowsAttribute -C/macro/-/kAXWindowAttribute -C/macro/-/kAXWindowCreatedNotification -C/macro/-/kAXWindowDeminiaturizedNotification -C/macro/-/kAXWindowMiniaturizedNotification -C/macro/-/kAXWindowMovedNotification -C/macro/-/kAXWindowResizedNotification -C/macro/-/kAXWindowRole -C/macro/-/kAXWindowsAttribute -C/macro/-/kAXYearFieldAttribute -C/macro/-/kAXZoomButtonAttribute -C/macro/-/kAXZoomButtonSubrole -C/econst/-/kBig5_BasicVariant -C/econst/-/kBig5_ETenVariant -C/econst/-/kBig5_StandardVariant -C/econst/-/kBlankAcess -C/econst/BluetoothHCIUSBDeviceMatchingConstants/kBluetoothHCITransportUSBClassCode -C/econst/BluetoothHCIUSBDeviceMatchingConstants/kBluetoothHCITransportUSBProtocolCode -C/econst/BluetoothHCIUSBDeviceMatchingConstants/kBluetoothHCITransportUSBSubClassCode -C/econst/-/kBytePacketTranslationFlag_IsEstimate -C/data/-/kCAAlignmentCenter -C/data/-/kCAAlignmentJustified -C/data/-/kCAAlignmentLeft -C/data/-/kCAAlignmentNatural -C/data/-/kCAAlignmentRight -C/data/-/kCAAnimationDiscrete -C/data/-/kCAAnimationLinear -C/data/-/kCAAnimationPaced -C/data/-/kCAAnimationRotateAuto -C/data/-/kCAAnimationRotateAutoReverse -C/econst/-/kCAConstraintHeight -C/econst/-/kCAConstraintMaxX -C/econst/-/kCAConstraintMaxY -C/econst/-/kCAConstraintMidX -C/econst/-/kCAConstraintMidY -C/econst/-/kCAConstraintMinX -C/econst/-/kCAConstraintMinY -C/econst/-/kCAConstraintWidth -C/data/-/kCAEmitterLayerAdditive -C/data/-/kCAEmitterLayerBackToFront -C/data/-/kCAEmitterLayerCircle -C/data/-/kCAEmitterLayerCuboid -C/data/-/kCAEmitterLayerLine -C/data/-/kCAEmitterLayerOldestFirst -C/data/-/kCAEmitterLayerOldestLast -C/data/-/kCAEmitterLayerOutline -C/data/-/kCAEmitterLayerPoint -C/data/-/kCAEmitterLayerPoints -C/data/-/kCAEmitterLayerRectangle -C/data/-/kCAEmitterLayerSphere -C/data/-/kCAEmitterLayerSurface -C/data/-/kCAEmitterLayerUnordered -C/data/-/kCAEmitterLayerVolume -C/data/-/kCAFillModeBackwards -C/data/-/kCAFillModeBoth -C/data/-/kCAFillModeForwards -C/data/-/kCAFillModeFrozen -C/data/-/kCAFillModeRemoved -C/data/-/kCAFillRuleEvenOdd -C/data/-/kCAFillRuleNonZero -C/data/-/kCAFilterLinear -C/data/-/kCAFilterNearest -C/data/-/kCAFilterTrilinear -C/data/-/kCAGradientLayerAxial -C/data/-/kCAGravityBottom -C/data/-/kCAGravityBottomLeft -C/data/-/kCAGravityBottomRight -C/data/-/kCAGravityCenter -C/data/-/kCAGravityLeft -C/data/-/kCAGravityResize -C/data/-/kCAGravityResizeAspect -C/data/-/kCAGravityResizeAspectFill -C/data/-/kCAGravityRight -C/data/-/kCAGravityTop -C/data/-/kCAGravityTopLeft -C/data/-/kCAGravityTopRight -C/econst/-/kCALayerBottomEdge -C/econst/-/kCALayerHeightSizable -C/econst/-/kCALayerLeftEdge -C/econst/-/kCALayerMaxXMargin -C/econst/-/kCALayerMaxYMargin -C/econst/-/kCALayerMinXMargin -C/econst/-/kCALayerMinYMargin -C/econst/-/kCALayerNotSizable -C/econst/-/kCALayerRightEdge -C/econst/-/kCALayerTopEdge -C/econst/-/kCALayerWidthSizable -C/econst/-/kCalibratorNamePrefix -C/data/-/kCALineCapButt -C/data/-/kCALineCapRound -C/data/-/kCALineCapSquare -C/data/-/kCALineJoinBevel -C/data/-/kCALineJoinMiter -C/data/-/kCALineJoinRound -C/macro/-/kCallInterfaceOpenWithGate -C/data/-/kCAMediaTimingFunctionDefault -C/data/-/kCAMediaTimingFunctionEaseIn -C/data/-/kCAMediaTimingFunctionEaseInEaseOut -C/data/-/kCAMediaTimingFunctionEaseOut -C/data/-/kCAMediaTimingFunctionLinear -C/data/-/kCAOnOrderIn -C/data/-/kCAOnOrderOut -C/data/-/kCAScrollBoth -C/data/-/kCAScrollHorizontally -C/data/-/kCAScrollNone -C/data/-/kCAScrollVertically -C/econst/-/kCaseSensitive -C/data/-/kCATransactionAnimationDuration -C/data/-/kCATransactionAnimationTimingFunction -C/data/-/kCATransactionCompletionBlock -C/data/-/kCATransactionDisableActions -C/data/-/kCATransition -C/data/-/kCATransitionFade -C/data/-/kCATransitionFromBottom -C/data/-/kCATransitionFromLeft -C/data/-/kCATransitionFromRight -C/data/-/kCATransitionFromTop -C/data/-/kCATransitionMoveIn -C/data/-/kCATransitionPush -C/data/-/kCATransitionReveal -C/data/-/kCATruncationEnd -C/data/-/kCATruncationMiddle -C/data/-/kCATruncationNone -C/data/-/kCATruncationStart -C/data/-/kCAValueFunctionRotateX -C/data/-/kCAValueFunctionRotateY -C/data/-/kCAValueFunctionRotateZ -C/data/-/kCAValueFunctionScale -C/data/-/kCAValueFunctionScaleX -C/data/-/kCAValueFunctionScaleY -C/data/-/kCAValueFunctionScaleZ -C/data/-/kCAValueFunctionTranslate -C/data/-/kCAValueFunctionTranslateX -C/data/-/kCAValueFunctionTranslateY -C/data/-/kCAValueFunctionTranslateZ -C/data/-/kCFAbsoluteTimeIntervalSince1904 -C/data/-/kCFAbsoluteTimeIntervalSince1970 -C/data/-/kCFAllocatorDefault -C/data/-/kCFAllocatorMalloc -C/data/-/kCFAllocatorMallocZone -C/data/-/kCFAllocatorNull -C/data/-/kCFAllocatorSystemDefault -C/data/-/kCFAllocatorUseContext -C/data/-/kCFBookmarkResolutionWithoutMountingMask -C/data/-/kCFBookmarkResolutionWithoutUIMask -C/data/-/kCFBooleanFalse -C/data/-/kCFBooleanTrue -C/data/-/kCFBuddhistCalendar -C/data/-/kCFBundleDevelopmentRegionKey -C/econst/-/kCFBundleExecutableArchitectureI386 -C/econst/-/kCFBundleExecutableArchitecturePPC -C/econst/-/kCFBundleExecutableArchitecturePPC64 -C/econst/-/kCFBundleExecutableArchitectureX86_64 -C/data/-/kCFBundleExecutableKey -C/data/-/kCFBundleIdentifierKey -C/macro/-/kCFBundleIdentifierKey -C/data/-/kCFBundleInfoDictionaryVersionKey -C/data/-/kCFBundleLocalizationsKey -C/data/-/kCFBundleNameKey -C/data/-/kCFBundleVersionKey -C/econst/-/kCFCalendarComponentsWrap -C/econst/-/kCFCalendarUnitDay -C/econst/-/kCFCalendarUnitEra -C/econst/-/kCFCalendarUnitHour -C/econst/-/kCFCalendarUnitMinute -C/econst/-/kCFCalendarUnitMonth -C/econst/-/kCFCalendarUnitSecond -C/econst/-/kCFCalendarUnitWeek -C/econst/-/kCFCalendarUnitWeekday -C/econst/-/kCFCalendarUnitWeekdayOrdinal -C/econst/-/kCFCalendarUnitYear -C/econst/-/kCFCharacterSetAlphaNumeric -C/econst/-/kCFCharacterSetCapitalizedLetter -C/econst/-/kCFCharacterSetControl -C/econst/-/kCFCharacterSetDecimalDigit -C/econst/-/kCFCharacterSetDecomposable -C/econst/-/kCFCharacterSetIllegal -C/econst/-/kCFCharacterSetLetter -C/econst/-/kCFCharacterSetLowercaseLetter -C/econst/-/kCFCharacterSetNewline -C/econst/-/kCFCharacterSetNonBase -C/econst/-/kCFCharacterSetPunctuation -C/econst/-/kCFCharacterSetSymbol -C/econst/-/kCFCharacterSetUppercaseLetter -C/econst/-/kCFCharacterSetWhitespace -C/econst/-/kCFCharacterSetWhitespaceAndNewline -C/data/-/kCFChineseCalendar -C/econst/-/kCFCompareAnchored -C/econst/-/kCFCompareBackwards -C/econst/-/kCFCompareCaseInsensitive -C/econst/-/kCFCompareDiacriticInsensitive -C/econst/-/kCFCompareEqualTo -C/econst/-/kCFCompareForcedOrdering -C/econst/-/kCFCompareGreaterThan -C/econst/-/kCFCompareLessThan -C/econst/-/kCFCompareLocalized -C/econst/-/kCFCompareNonliteral -C/econst/-/kCFCompareNumerically -C/econst/-/kCFCompareWidthInsensitive -C/data/-/kCFCopyStringBagCallBacks -C/data/-/kCFCopyStringDictionaryKeyCallBacks -C/data/-/kCFCopyStringSetCallBacks -C/data/-/kCFCoreFoundationVersionNumber -C/macro/-/kCFCoreFoundationVersionNumber10_0 -C/macro/-/kCFCoreFoundationVersionNumber10_0_3 -C/macro/-/kCFCoreFoundationVersionNumber10_1 -C/macro/-/kCFCoreFoundationVersionNumber10_1_1 -C/macro/-/kCFCoreFoundationVersionNumber10_1_2 -C/macro/-/kCFCoreFoundationVersionNumber10_1_3 -C/macro/-/kCFCoreFoundationVersionNumber10_1_4 -C/macro/-/kCFCoreFoundationVersionNumber10_2 -C/macro/-/kCFCoreFoundationVersionNumber10_2_1 -C/macro/-/kCFCoreFoundationVersionNumber10_2_2 -C/macro/-/kCFCoreFoundationVersionNumber10_2_3 -C/macro/-/kCFCoreFoundationVersionNumber10_2_4 -C/macro/-/kCFCoreFoundationVersionNumber10_2_5 -C/macro/-/kCFCoreFoundationVersionNumber10_2_6 -C/macro/-/kCFCoreFoundationVersionNumber10_2_7 -C/macro/-/kCFCoreFoundationVersionNumber10_2_8 -C/macro/-/kCFCoreFoundationVersionNumber10_3 -C/macro/-/kCFCoreFoundationVersionNumber10_3_1 -C/macro/-/kCFCoreFoundationVersionNumber10_3_2 -C/macro/-/kCFCoreFoundationVersionNumber10_3_3 -C/macro/-/kCFCoreFoundationVersionNumber10_3_4 -C/macro/-/kCFCoreFoundationVersionNumber10_3_5 -C/macro/-/kCFCoreFoundationVersionNumber10_3_6 -C/macro/-/kCFCoreFoundationVersionNumber10_3_7 -C/macro/-/kCFCoreFoundationVersionNumber10_3_8 -C/macro/-/kCFCoreFoundationVersionNumber10_3_9 -C/macro/-/kCFCoreFoundationVersionNumber10_4 -C/macro/-/kCFCoreFoundationVersionNumber10_4_1 -C/macro/-/kCFCoreFoundationVersionNumber10_4_10 -C/macro/-/kCFCoreFoundationVersionNumber10_4_11 -C/macro/-/kCFCoreFoundationVersionNumber10_4_2 -C/macro/-/kCFCoreFoundationVersionNumber10_4_3 -C/macro/-/kCFCoreFoundationVersionNumber10_4_4_Intel -C/macro/-/kCFCoreFoundationVersionNumber10_4_4_PowerPC -C/macro/-/kCFCoreFoundationVersionNumber10_4_5_Intel -C/macro/-/kCFCoreFoundationVersionNumber10_4_5_PowerPC -C/macro/-/kCFCoreFoundationVersionNumber10_4_6_Intel -C/macro/-/kCFCoreFoundationVersionNumber10_4_6_PowerPC -C/macro/-/kCFCoreFoundationVersionNumber10_4_7 -C/macro/-/kCFCoreFoundationVersionNumber10_4_8 -C/macro/-/kCFCoreFoundationVersionNumber10_4_9 -C/macro/-/kCFCoreFoundationVersionNumber10_5 -C/macro/-/kCFCoreFoundationVersionNumber10_5_1 -C/macro/-/kCFCoreFoundationVersionNumber10_5_2 -C/macro/-/kCFCoreFoundationVersionNumber10_5_3 -C/macro/-/kCFCoreFoundationVersionNumber10_5_4 -C/macro/-/kCFCoreFoundationVersionNumber10_5_5 -C/macro/-/kCFCoreFoundationVersionNumber10_5_6 -C/data/-/kCFDateFormatterAMSymbol -C/data/-/kCFDateFormatterCalendar -C/data/-/kCFDateFormatterCalendarName -C/data/-/kCFDateFormatterDefaultDate -C/data/-/kCFDateFormatterDefaultFormat -C/data/-/kCFDateFormatterEraSymbols -C/econst/-/kCFDateFormatterFullStyle -C/data/-/kCFDateFormatterGregorianStartDate -C/data/-/kCFDateFormatterIsLenient -C/data/-/kCFDateFormatterLongEraSymbols -C/econst/-/kCFDateFormatterLongStyle -C/econst/-/kCFDateFormatterMediumStyle -C/data/-/kCFDateFormatterMonthSymbols -C/econst/-/kCFDateFormatterNoStyle -C/data/-/kCFDateFormatterPMSymbol -C/data/-/kCFDateFormatterQuarterSymbols -C/data/-/kCFDateFormatterShortMonthSymbols -C/data/-/kCFDateFormatterShortQuarterSymbols -C/data/-/kCFDateFormatterShortStandaloneMonthSymbols -C/data/-/kCFDateFormatterShortStandaloneQuarterSymbols -C/data/-/kCFDateFormatterShortStandaloneWeekdaySymbols -C/econst/-/kCFDateFormatterShortStyle -C/data/-/kCFDateFormatterShortWeekdaySymbols -C/data/-/kCFDateFormatterStandaloneMonthSymbols -C/data/-/kCFDateFormatterStandaloneQuarterSymbols -C/data/-/kCFDateFormatterStandaloneWeekdaySymbols -C/data/-/kCFDateFormatterTimeZone -C/data/-/kCFDateFormatterTwoDigitStartDate -C/data/-/kCFDateFormatterVeryShortMonthSymbols -C/data/-/kCFDateFormatterVeryShortStandaloneMonthSymbols -C/data/-/kCFDateFormatterVeryShortStandaloneWeekdaySymbols -C/data/-/kCFDateFormatterVeryShortWeekdaySymbols -C/data/-/kCFDateFormatterWeekdaySymbols -C/data/-/kCFDNSServiceFailureKey -C/data/-/kCFErrorDescriptionKey -C/data/-/kCFErrorDomainCFNetwork -C/data/-/kCFErrorDomainCocoa -C/data/-/kCFErrorDomainMach -C/data/-/kCFErrorDomainOSStatus -C/data/-/kCFErrorDomainPOSIX -C/data/-/kCFErrorDomainSystemConfiguration -C/data/-/kCFErrorDomainWinSock -C/econst/-/kCFErrorHTTPAuthenticationTypeUnsupported -C/econst/-/kCFErrorHTTPBadCredentials -C/econst/-/kCFErrorHTTPBadProxyCredentials -C/econst/-/kCFErrorHTTPBadURL -C/econst/-/kCFErrorHTTPConnectionLost -C/econst/-/kCFErrorHTTPParseFailure -C/econst/-/kCFErrorHTTPProxyConnectionFailure -C/econst/-/kCFErrorHTTPRedirectionLoopDetected -C/data/-/kCFErrorLocalizedDescriptionKey -C/data/-/kCFErrorLocalizedFailureReasonKey -C/data/-/kCFErrorLocalizedRecoverySuggestionKey -C/data/-/kCFErrorUnderlyingErrorKey -C/econst/-/kCFFileDescriptorReadCallBack -C/econst/-/kCFFileDescriptorWriteCallBack -C/econst/-/kCFFTPErrorUnexpectedStatusCode -C/data/-/kCFFTPResourceGroup -C/data/-/kCFFTPResourceLink -C/data/-/kCFFTPResourceModDate -C/data/-/kCFFTPResourceMode -C/data/-/kCFFTPResourceName -C/data/-/kCFFTPResourceOwner -C/data/-/kCFFTPResourceSize -C/data/-/kCFFTPResourceType -C/data/-/kCFFTPStatusCodeKey -C/data/-/kCFGetAddrInfoFailureKey -C/econst/-/kCFGregorianAllUnits -C/data/-/kCFGregorianCalendar -C/econst/-/kCFGregorianUnitsDays -C/econst/-/kCFGregorianUnitsHours -C/econst/-/kCFGregorianUnitsMinutes -C/econst/-/kCFGregorianUnitsMonths -C/econst/-/kCFGregorianUnitsSeconds -C/econst/-/kCFGregorianUnitsYears -C/data/-/kCFHebrewCalendar -C/econst/-/kCFHostAddresses -C/econst/-/kCFHostErrorHostNotFound -C/econst/-/kCFHostErrorUnknown -C/econst/-/kCFHostNames -C/econst/-/kCFHostReachability -C/data/-/kCFHTTPAuthenticationAccountDomain -C/data/-/kCFHTTPAuthenticationPassword -C/data/-/kCFHTTPAuthenticationSchemeBasic -C/data/-/kCFHTTPAuthenticationSchemeDigest -C/data/-/kCFHTTPAuthenticationSchemeNegotiate -C/data/-/kCFHTTPAuthenticationSchemeNTLM -C/data/-/kCFHTTPAuthenticationUsername -C/econst/-/kCFHTTPVersion1_0 -C/econst/-/kCFHTTPVersion1_1 -C/data/-/kCFIndianCalendar -C/data/-/kCFIslamicCalendar -C/data/-/kCFIslamicCivilCalendar -C/data/-/kCFISO8601Calendar -C/data/-/kCFJapaneseCalendar -C/data/-/kCFLocaleCalendar -C/data/-/kCFLocaleCalendarIdentifier -C/data/-/kCFLocaleCollationIdentifier -C/data/-/kCFLocaleCountryCode -C/data/-/kCFLocaleCurrencyCode -C/data/-/kCFLocaleCurrencySymbol -C/data/-/kCFLocaleCurrentLocaleDidChangeNotification -C/data/-/kCFLocaleDecimalSeparator -C/data/-/kCFLocaleExemplarCharacterSet -C/data/-/kCFLocaleGroupingSeparator -C/data/-/kCFLocaleIdentifier -C/data/-/kCFLocaleLanguageCode -C/data/-/kCFLocaleMeasurementSystem -C/data/-/kCFLocaleScriptCode -C/data/-/kCFLocaleUsesMetricSystem -C/data/-/kCFLocaleVariantCode -C/econst/-/kCFMessagePortIsInvalid -C/econst/-/kCFMessagePortReceiveTimeout -C/econst/-/kCFMessagePortSendTimeout -C/econst/-/kCFMessagePortSuccess -C/econst/-/kCFMessagePortTransportError -C/econst/-/kCFNetDiagnosticConnectionDown -C/econst/-/kCFNetDiagnosticConnectionIndeterminate -C/econst/-/kCFNetDiagnosticConnectionUp -C/econst/-/kCFNetDiagnosticErr -C/econst/-/kCFNetDiagnosticNoErr -C/econst/-/kCFNetServiceErrorBadArgument -C/econst/-/kCFNetServiceErrorCancel -C/econst/-/kCFNetServiceErrorCollision -C/econst/-/kCFNetServiceErrorDNSServiceFailure -C/econst/-/kCFNetServiceErrorInProgress -C/econst/-/kCFNetServiceErrorInvalid -C/econst/-/kCFNetServiceErrorNotFound -C/econst/-/kCFNetServiceErrorTimeout -C/econst/-/kCFNetServiceErrorUnknown -C/econst/-/kCFNetServiceFlagIsDefault -C/econst/-/kCFNetServiceFlagIsDomain -C/econst/-/kCFNetServiceFlagMoreComing -C/econst/-/kCFNetServiceFlagNoAutoRename -C/econst/-/kCFNetServiceFlagRemove -C/econst/-/kCFNetServiceMonitorTXT -C/econst/-/kCFNetServicesErrorBadArgument -C/econst/-/kCFNetServicesErrorCancel -C/econst/-/kCFNetServicesErrorCollision -C/econst/-/kCFNetServicesErrorInProgress -C/econst/-/kCFNetServicesErrorInvalid -C/econst/-/kCFNetServicesErrorNotFound -C/econst/-/kCFNetServicesErrorTimeout -C/econst/-/kCFNetServicesErrorUnknown -C/data/-/kCFNetworkProxiesExceptionsList -C/data/-/kCFNetworkProxiesExcludeSimpleHostnames -C/data/-/kCFNetworkProxiesFTPEnable -C/data/-/kCFNetworkProxiesFTPPassive -C/data/-/kCFNetworkProxiesFTPPort -C/data/-/kCFNetworkProxiesFTPProxy -C/data/-/kCFNetworkProxiesGopherEnable -C/data/-/kCFNetworkProxiesGopherPort -C/data/-/kCFNetworkProxiesGopherProxy -C/data/-/kCFNetworkProxiesHTTPEnable -C/data/-/kCFNetworkProxiesHTTPPort -C/data/-/kCFNetworkProxiesHTTPProxy -C/data/-/kCFNetworkProxiesHTTPSEnable -C/data/-/kCFNetworkProxiesHTTPSPort -C/data/-/kCFNetworkProxiesHTTPSProxy -C/data/-/kCFNetworkProxiesProxyAutoConfigEnable -C/data/-/kCFNetworkProxiesProxyAutoConfigURLString -C/data/-/kCFNetworkProxiesProxyAutoDiscoveryEnable -C/data/-/kCFNetworkProxiesRTSPEnable -C/data/-/kCFNetworkProxiesRTSPPort -C/data/-/kCFNetworkProxiesRTSPProxy -C/data/-/kCFNetworkProxiesSOCKSEnable -C/data/-/kCFNetworkProxiesSOCKSPort -C/data/-/kCFNetworkProxiesSOCKSProxy -C/econst/-/kCFNotFound -C/econst/-/kCFNotificationDeliverImmediately -C/econst/-/kCFNotificationPostToAllSessions -C/data/-/kCFNull -C/econst/-/kCFNumberCFIndexType -C/econst/-/kCFNumberCGFloatType -C/econst/-/kCFNumberCharType -C/econst/-/kCFNumberDoubleType -C/econst/-/kCFNumberFloat32Type -C/econst/-/kCFNumberFloat64Type -C/econst/-/kCFNumberFloatType -C/data/-/kCFNumberFormatterAlwaysShowDecimalSeparator -C/data/-/kCFNumberFormatterCurrencyCode -C/data/-/kCFNumberFormatterCurrencyDecimalSeparator -C/data/-/kCFNumberFormatterCurrencyGroupingSeparator -C/econst/-/kCFNumberFormatterCurrencyStyle -C/data/-/kCFNumberFormatterCurrencySymbol -C/data/-/kCFNumberFormatterDecimalSeparator -C/econst/-/kCFNumberFormatterDecimalStyle -C/data/-/kCFNumberFormatterDefaultFormat -C/data/-/kCFNumberFormatterExponentSymbol -C/data/-/kCFNumberFormatterFormatWidth -C/data/-/kCFNumberFormatterGroupingSeparator -C/data/-/kCFNumberFormatterGroupingSize -C/data/-/kCFNumberFormatterInfinitySymbol -C/data/-/kCFNumberFormatterInternationalCurrencySymbol -C/data/-/kCFNumberFormatterIsLenient -C/data/-/kCFNumberFormatterMaxFractionDigits -C/data/-/kCFNumberFormatterMaxIntegerDigits -C/data/-/kCFNumberFormatterMaxSignificantDigits -C/data/-/kCFNumberFormatterMinFractionDigits -C/data/-/kCFNumberFormatterMinIntegerDigits -C/data/-/kCFNumberFormatterMinSignificantDigits -C/data/-/kCFNumberFormatterMinusSign -C/data/-/kCFNumberFormatterMultiplier -C/data/-/kCFNumberFormatterNaNSymbol -C/data/-/kCFNumberFormatterNegativePrefix -C/data/-/kCFNumberFormatterNegativeSuffix -C/econst/-/kCFNumberFormatterNoStyle -C/econst/-/kCFNumberFormatterPadAfterPrefix -C/econst/-/kCFNumberFormatterPadAfterSuffix -C/econst/-/kCFNumberFormatterPadBeforePrefix -C/econst/-/kCFNumberFormatterPadBeforeSuffix -C/data/-/kCFNumberFormatterPaddingCharacter -C/data/-/kCFNumberFormatterPaddingPosition -C/econst/-/kCFNumberFormatterParseIntegersOnly -C/econst/-/kCFNumberFormatterPercentStyle -C/data/-/kCFNumberFormatterPercentSymbol -C/data/-/kCFNumberFormatterPerMillSymbol -C/data/-/kCFNumberFormatterPlusSign -C/data/-/kCFNumberFormatterPositivePrefix -C/data/-/kCFNumberFormatterPositiveSuffix -C/econst/-/kCFNumberFormatterRoundCeiling -C/econst/-/kCFNumberFormatterRoundDown -C/econst/-/kCFNumberFormatterRoundFloor -C/econst/-/kCFNumberFormatterRoundHalfDown -C/econst/-/kCFNumberFormatterRoundHalfEven -C/econst/-/kCFNumberFormatterRoundHalfUp -C/data/-/kCFNumberFormatterRoundingIncrement -C/data/-/kCFNumberFormatterRoundingMode -C/econst/-/kCFNumberFormatterRoundUp -C/econst/-/kCFNumberFormatterScientificStyle -C/data/-/kCFNumberFormatterSecondaryGroupingSize -C/econst/-/kCFNumberFormatterSpellOutStyle -C/data/-/kCFNumberFormatterUseGroupingSeparator -C/data/-/kCFNumberFormatterUseSignificantDigits -C/data/-/kCFNumberFormatterZeroSymbol -C/econst/-/kCFNumberIntType -C/econst/-/kCFNumberLongLongType -C/econst/-/kCFNumberLongType -C/econst/-/kCFNumberMaxType -C/data/-/kCFNumberNaN -C/data/-/kCFNumberNegativeInfinity -C/econst/-/kCFNumberNSIntegerType -C/data/-/kCFNumberPositiveInfinity -C/econst/-/kCFNumberShortType -C/econst/-/kCFNumberSInt16Type -C/econst/-/kCFNumberSInt32Type -C/econst/-/kCFNumberSInt64Type -C/econst/-/kCFNumberSInt8Type -C/data/-/kCFPersianCalendar -C/data/-/kCFPlugInDynamicRegisterFunctionKey -C/data/-/kCFPlugInDynamicRegistrationKey -C/data/-/kCFPlugInFactoriesKey -C/data/-/kCFPlugInTypesKey -C/data/-/kCFPlugInUnloadFunctionKey -C/data/-/kCFPreferencesAnyApplication -C/data/-/kCFPreferencesAnyHost -C/data/-/kCFPreferencesAnyUser -C/data/-/kCFPreferencesCurrentApplication -C/data/-/kCFPreferencesCurrentHost -C/data/-/kCFPreferencesCurrentUser -C/econst/-/kCFPropertyListBinaryFormat_v1_0 -C/econst/-/kCFPropertyListImmutable -C/econst/-/kCFPropertyListMutableContainers -C/econst/-/kCFPropertyListMutableContainersAndLeaves -C/econst/-/kCFPropertyListOpenStepFormat -C/econst/-/kCFPropertyListReadCorruptError -C/econst/-/kCFPropertyListReadStreamError -C/econst/-/kCFPropertyListReadUnknownVersionError -C/econst/-/kCFPropertyListWriteStreamError -C/econst/-/kCFPropertyListXMLFormat_v1_0 -C/data/-/kCFProxyAutoConfigurationURLKey -C/data/-/kCFProxyHostNameKey -C/data/-/kCFProxyPasswordKey -C/data/-/kCFProxyPortNumberKey -C/data/-/kCFProxyTypeAutoConfigurationURL -C/data/-/kCFProxyTypeFTP -C/data/-/kCFProxyTypeHTTP -C/data/-/kCFProxyTypeHTTPS -C/data/-/kCFProxyTypeKey -C/data/-/kCFProxyTypeNone -C/data/-/kCFProxyTypeSOCKS -C/data/-/kCFProxyUsernameKey -C/data/-/kCFRepublicOfChinaCalendar -C/econst/-/kCFRunLoopAfterWaiting -C/econst/-/kCFRunLoopAllActivities -C/econst/-/kCFRunLoopBeforeSources -C/econst/-/kCFRunLoopBeforeTimers -C/econst/-/kCFRunLoopBeforeWaiting -C/data/-/kCFRunLoopCommonModes -C/data/-/kCFRunLoopDefaultMode -C/econst/-/kCFRunLoopEntry -C/econst/-/kCFRunLoopExit -C/econst/-/kCFRunLoopRunFinished -C/econst/-/kCFRunLoopRunHandledSource -C/econst/-/kCFRunLoopRunStopped -C/econst/-/kCFRunLoopRunTimedOut -C/econst/-/kCFSocketAcceptCallBack -C/econst/-/kCFSocketAutomaticallyReenableAcceptCallBack -C/econst/-/kCFSocketAutomaticallyReenableDataCallBack -C/econst/-/kCFSocketAutomaticallyReenableReadCallBack -C/econst/-/kCFSocketAutomaticallyReenableWriteCallBack -C/econst/-/kCFSocketCloseOnInvalidate -C/data/-/kCFSocketCommandKey -C/econst/-/kCFSocketConnectCallBack -C/econst/-/kCFSocketDataCallBack -C/econst/-/kCFSocketError -C/data/-/kCFSocketErrorKey -C/data/-/kCFSocketNameKey -C/econst/-/kCFSocketNoCallBack -C/econst/-/kCFSocketReadCallBack -C/data/-/kCFSocketRegisterCommand -C/data/-/kCFSocketResultKey -C/data/-/kCFSocketRetrieveCommand -C/econst/-/kCFSocketSuccess -C/econst/-/kCFSocketTimeout -C/data/-/kCFSocketValueKey -C/econst/-/kCFSocketWriteCallBack -C/econst/-/kCFSOCKS4ErrorIdConflict -C/econst/-/kCFSOCKS4ErrorIdentdFailed -C/econst/-/kCFSOCKS4ErrorRequestFailed -C/econst/-/kCFSOCKS4ErrorUnknownStatusCode -C/econst/-/kCFSOCKS5ErrorBadCredentials -C/econst/-/kCFSOCKS5ErrorBadResponseAddr -C/econst/-/kCFSOCKS5ErrorBadState -C/econst/-/kCFSOCKS5ErrorNoAcceptableMethod -C/econst/-/kCFSOCKS5ErrorUnsupportedNegotiationMethod -C/econst/-/kCFSOCKSErrorUnknownClientVersion -C/econst/-/kCFSOCKSErrorUnsupportedServerVersion -C/data/-/kCFSOCKSNegotiationMethodKey -C/data/-/kCFSOCKSStatusCodeKey -C/data/-/kCFSOCKSVersionKey -C/econst/-/kCFStreamErrorDomainCustom -C/data/-/kCFStreamErrorDomainFTP -C/data/-/kCFStreamErrorDomainHTTP -C/data/-/kCFStreamErrorDomainMach -C/econst/-/kCFStreamErrorDomainMacOSStatus -C/data/-/kCFStreamErrorDomainNetDB -C/data/-/kCFStreamErrorDomainNetServices -C/econst/-/kCFStreamErrorDomainPOSIX -C/data/-/kCFStreamErrorDomainSOCKS -C/data/-/kCFStreamErrorDomainSSL -C/data/-/kCFStreamErrorDomainSystemConfiguration -C/data/-/kCFStreamErrorDomainWinSock -C/econst/-/kCFStreamErrorHTTPAuthenticationBadPassword -C/econst/-/kCFStreamErrorHTTPAuthenticationBadUserName -C/econst/-/kCFStreamErrorHTTPAuthenticationTypeUnsupported -C/econst/-/kCFStreamErrorHTTPBadURL -C/econst/-/kCFStreamErrorHTTPParseFailure -C/econst/-/kCFStreamErrorHTTPRedirectionLoop -C/econst/-/kCFStreamErrorSOCKS4IdConflict -C/econst/-/kCFStreamErrorSOCKS4IdentdFailed -C/econst/-/kCFStreamErrorSOCKS4RequestFailed -C/data/-/kCFStreamErrorSOCKS4SubDomainResponse -C/econst/-/kCFStreamErrorSOCKS5BadResponseAddr -C/econst/-/kCFStreamErrorSOCKS5BadState -C/data/-/kCFStreamErrorSOCKS5SubDomainMethod -C/data/-/kCFStreamErrorSOCKS5SubDomainResponse -C/data/-/kCFStreamErrorSOCKS5SubDomainUserPass -C/data/-/kCFStreamErrorSOCKSSubDomainNone -C/data/-/kCFStreamErrorSOCKSSubDomainVersionCode -C/econst/-/kCFStreamErrorSOCKSUnknownClientVersion -C/econst/-/kCFStreamEventCanAcceptBytes -C/econst/-/kCFStreamEventEndEncountered -C/econst/-/kCFStreamEventErrorOccurred -C/econst/-/kCFStreamEventHasBytesAvailable -C/econst/-/kCFStreamEventNone -C/econst/-/kCFStreamEventOpenCompleted -C/data/-/kCFStreamPropertyAppendToFile -C/data/-/kCFStreamPropertyDataWritten -C/data/-/kCFStreamPropertyFileCurrentOffset -C/data/-/kCFStreamPropertyFTPAttemptPersistentConnection -C/data/-/kCFStreamPropertyFTPFetchResourceInfo -C/data/-/kCFStreamPropertyFTPFileTransferOffset -C/data/-/kCFStreamPropertyFTPPassword -C/data/-/kCFStreamPropertyFTPProxy -C/data/-/kCFStreamPropertyFTPProxyHost -C/data/-/kCFStreamPropertyFTPProxyPassword -C/data/-/kCFStreamPropertyFTPProxyPort -C/data/-/kCFStreamPropertyFTPProxyUser -C/data/-/kCFStreamPropertyFTPResourceSize -C/data/-/kCFStreamPropertyFTPUsePassiveMode -C/data/-/kCFStreamPropertyFTPUserName -C/data/-/kCFStreamPropertyHTTPAttemptPersistentConnection -C/data/-/kCFStreamPropertyHTTPFinalRequest -C/data/-/kCFStreamPropertyHTTPFinalURL -C/data/-/kCFStreamPropertyHTTPProxy -C/data/-/kCFStreamPropertyHTTPProxyHost -C/data/-/kCFStreamPropertyHTTPProxyPort -C/data/-/kCFStreamPropertyHTTPRequestBytesWrittenCount -C/data/-/kCFStreamPropertyHTTPResponseHeader -C/data/-/kCFStreamPropertyHTTPShouldAutoredirect -C/data/-/kCFStreamPropertyHTTPSProxyHost -C/data/-/kCFStreamPropertyHTTPSProxyPort -C/data/-/kCFStreamPropertyProxyLocalBypass -C/data/-/kCFStreamPropertyShouldCloseNativeSocket -C/data/-/kCFStreamPropertySocketNativeHandle -C/data/-/kCFStreamPropertySocketRemoteHost -C/data/-/kCFStreamPropertySocketRemoteHostName -C/data/-/kCFStreamPropertySocketRemoteNetService -C/data/-/kCFStreamPropertySocketRemotePortNumber -C/data/-/kCFStreamPropertySocketSecurityLevel -C/data/-/kCFStreamPropertySOCKSPassword -C/data/-/kCFStreamPropertySOCKSProxy -C/data/-/kCFStreamPropertySOCKSProxyHost -C/data/-/kCFStreamPropertySOCKSProxyPort -C/data/-/kCFStreamPropertySOCKSUser -C/data/-/kCFStreamPropertySOCKSVersion -C/data/-/kCFStreamPropertySSLPeerCertificates -C/data/-/kCFStreamPropertySSLPeerTrust -C/data/-/kCFStreamPropertySSLSettings -C/data/-/kCFStreamSocketSecurityLevelNegotiatedSSL -C/data/-/kCFStreamSocketSecurityLevelNone -C/data/-/kCFStreamSocketSecurityLevelSSLv2 -C/data/-/kCFStreamSocketSecurityLevelSSLv3 -C/data/-/kCFStreamSocketSecurityLevelTLSv1 -C/econst/-/kCFStreamSocketSecurityNone -C/econst/-/kCFStreamSocketSecuritySSLv2 -C/econst/-/kCFStreamSocketSecuritySSLv23 -C/econst/-/kCFStreamSocketSecuritySSLv3 -C/econst/-/kCFStreamSocketSecurityTLSv1 -C/data/-/kCFStreamSocketSOCKSVersion4 -C/data/-/kCFStreamSocketSOCKSVersion5 -C/data/-/kCFStreamSSLAllowsAnyRoot -C/data/-/kCFStreamSSLAllowsExpiredCertificates -C/data/-/kCFStreamSSLAllowsExpiredRoots -C/data/-/kCFStreamSSLCertificates -C/data/-/kCFStreamSSLIsServer -C/data/-/kCFStreamSSLLevel -C/data/-/kCFStreamSSLPeerName -C/data/-/kCFStreamSSLValidatesCertificateChain -C/econst/-/kCFStreamStatusAtEnd -C/econst/-/kCFStreamStatusClosed -C/econst/-/kCFStreamStatusError -C/econst/-/kCFStreamStatusNotOpen -C/econst/-/kCFStreamStatusOpen -C/econst/-/kCFStreamStatusOpening -C/econst/-/kCFStreamStatusReading -C/econst/-/kCFStreamStatusWriting -C/data/-/kCFStringBinaryHeapCallBacks -C/econst/-/kCFStringEncodingANSEL -C/econst/-/kCFStringEncodingASCII -C/econst/-/kCFStringEncodingBig5 -C/econst/-/kCFStringEncodingBig5_E -C/econst/-/kCFStringEncodingBig5_HKSCS_1999 -C/econst/-/kCFStringEncodingCNS_11643_92_P1 -C/econst/-/kCFStringEncodingCNS_11643_92_P2 -C/econst/-/kCFStringEncodingCNS_11643_92_P3 -C/econst/-/kCFStringEncodingDOSArabic -C/econst/-/kCFStringEncodingDOSBalticRim -C/econst/-/kCFStringEncodingDOSCanadianFrench -C/econst/-/kCFStringEncodingDOSChineseSimplif -C/econst/-/kCFStringEncodingDOSChineseTrad -C/econst/-/kCFStringEncodingDOSCyrillic -C/econst/-/kCFStringEncodingDOSGreek -C/econst/-/kCFStringEncodingDOSGreek1 -C/econst/-/kCFStringEncodingDOSGreek2 -C/econst/-/kCFStringEncodingDOSHebrew -C/econst/-/kCFStringEncodingDOSIcelandic -C/econst/-/kCFStringEncodingDOSJapanese -C/econst/-/kCFStringEncodingDOSKorean -C/econst/-/kCFStringEncodingDOSLatin1 -C/econst/-/kCFStringEncodingDOSLatin2 -C/econst/-/kCFStringEncodingDOSLatinUS -C/econst/-/kCFStringEncodingDOSNordic -C/econst/-/kCFStringEncodingDOSPortuguese -C/econst/-/kCFStringEncodingDOSRussian -C/econst/-/kCFStringEncodingDOSThai -C/econst/-/kCFStringEncodingDOSTurkish -C/econst/-/kCFStringEncodingEBCDIC_CP037 -C/econst/-/kCFStringEncodingEBCDIC_US -C/econst/-/kCFStringEncodingEUC_CN -C/econst/-/kCFStringEncodingEUC_JP -C/econst/-/kCFStringEncodingEUC_KR -C/econst/-/kCFStringEncodingEUC_TW -C/econst/-/kCFStringEncodingGB_18030_2000 -C/econst/-/kCFStringEncodingGB_2312_80 -C/econst/-/kCFStringEncodingGBK_95 -C/econst/-/kCFStringEncodingHZ_GB_2312 -C/macro/-/kCFStringEncodingInvalidId -C/econst/-/kCFStringEncodingISO_2022_CN -C/econst/-/kCFStringEncodingISO_2022_CN_EXT -C/econst/-/kCFStringEncodingISO_2022_JP -C/econst/-/kCFStringEncodingISO_2022_JP_1 -C/econst/-/kCFStringEncodingISO_2022_JP_2 -C/econst/-/kCFStringEncodingISO_2022_JP_3 -C/econst/-/kCFStringEncodingISO_2022_KR -C/econst/-/kCFStringEncodingISOLatin1 -C/econst/-/kCFStringEncodingISOLatin10 -C/econst/-/kCFStringEncodingISOLatin2 -C/econst/-/kCFStringEncodingISOLatin3 -C/econst/-/kCFStringEncodingISOLatin4 -C/econst/-/kCFStringEncodingISOLatin5 -C/econst/-/kCFStringEncodingISOLatin6 -C/econst/-/kCFStringEncodingISOLatin7 -C/econst/-/kCFStringEncodingISOLatin8 -C/econst/-/kCFStringEncodingISOLatin9 -C/econst/-/kCFStringEncodingISOLatinArabic -C/econst/-/kCFStringEncodingISOLatinCyrillic -C/econst/-/kCFStringEncodingISOLatinGreek -C/econst/-/kCFStringEncodingISOLatinHebrew -C/econst/-/kCFStringEncodingISOLatinThai -C/econst/-/kCFStringEncodingJIS_C6226_78 -C/econst/-/kCFStringEncodingJIS_X0201_76 -C/econst/-/kCFStringEncodingJIS_X0208_83 -C/econst/-/kCFStringEncodingJIS_X0208_90 -C/econst/-/kCFStringEncodingJIS_X0212_90 -C/econst/-/kCFStringEncodingKOI8_R -C/econst/-/kCFStringEncodingKOI8_U -C/econst/-/kCFStringEncodingKSC_5601_87 -C/econst/-/kCFStringEncodingKSC_5601_92_Johab -C/econst/-/kCFStringEncodingMacArabic -C/econst/-/kCFStringEncodingMacArmenian -C/econst/-/kCFStringEncodingMacBengali -C/econst/-/kCFStringEncodingMacBurmese -C/econst/-/kCFStringEncodingMacCeltic -C/econst/-/kCFStringEncodingMacCentralEurRoman -C/econst/-/kCFStringEncodingMacChineseSimp -C/econst/-/kCFStringEncodingMacChineseTrad -C/econst/-/kCFStringEncodingMacCroatian -C/econst/-/kCFStringEncodingMacCyrillic -C/econst/-/kCFStringEncodingMacDevanagari -C/econst/-/kCFStringEncodingMacDingbats -C/econst/-/kCFStringEncodingMacEthiopic -C/econst/-/kCFStringEncodingMacExtArabic -C/econst/-/kCFStringEncodingMacFarsi -C/econst/-/kCFStringEncodingMacGaelic -C/econst/-/kCFStringEncodingMacGeorgian -C/econst/-/kCFStringEncodingMacGreek -C/econst/-/kCFStringEncodingMacGujarati -C/econst/-/kCFStringEncodingMacGurmukhi -C/econst/-/kCFStringEncodingMacHebrew -C/econst/-/kCFStringEncodingMacHFS -C/econst/-/kCFStringEncodingMacIcelandic -C/econst/-/kCFStringEncodingMacInuit -C/econst/-/kCFStringEncodingMacJapanese -C/econst/-/kCFStringEncodingMacKannada -C/econst/-/kCFStringEncodingMacKhmer -C/econst/-/kCFStringEncodingMacKorean -C/econst/-/kCFStringEncodingMacLaotian -C/econst/-/kCFStringEncodingMacMalayalam -C/econst/-/kCFStringEncodingMacMongolian -C/econst/-/kCFStringEncodingMacOriya -C/econst/-/kCFStringEncodingMacRoman -C/econst/-/kCFStringEncodingMacRomanian -C/econst/-/kCFStringEncodingMacRomanLatin1 -C/econst/-/kCFStringEncodingMacSinhalese -C/econst/-/kCFStringEncodingMacSymbol -C/econst/-/kCFStringEncodingMacTamil -C/econst/-/kCFStringEncodingMacTelugu -C/econst/-/kCFStringEncodingMacThai -C/econst/-/kCFStringEncodingMacTibetan -C/econst/-/kCFStringEncodingMacTurkish -C/econst/-/kCFStringEncodingMacUkrainian -C/econst/-/kCFStringEncodingMacVietnamese -C/econst/-/kCFStringEncodingMacVT100 -C/econst/-/kCFStringEncodingNextStepJapanese -C/econst/-/kCFStringEncodingNextStepLatin -C/econst/-/kCFStringEncodingNonLossyASCII -C/econst/-/kCFStringEncodingShiftJIS -C/econst/-/kCFStringEncodingShiftJIS_X0213 -C/econst/-/kCFStringEncodingShiftJIS_X0213_00 -C/econst/-/kCFStringEncodingShiftJIS_X0213_MenKuTen -C/econst/-/kCFStringEncodingUnicode -C/econst/-/kCFStringEncodingUTF16 -C/econst/-/kCFStringEncodingUTF16BE -C/econst/-/kCFStringEncodingUTF16LE -C/econst/-/kCFStringEncodingUTF32 -C/econst/-/kCFStringEncodingUTF32BE -C/econst/-/kCFStringEncodingUTF32LE -C/econst/-/kCFStringEncodingUTF7 -C/econst/-/kCFStringEncodingUTF7_IMAP -C/econst/-/kCFStringEncodingUTF8 -C/econst/-/kCFStringEncodingVISCII -C/econst/-/kCFStringEncodingWindowsArabic -C/econst/-/kCFStringEncodingWindowsBalticRim -C/econst/-/kCFStringEncodingWindowsCyrillic -C/econst/-/kCFStringEncodingWindowsGreek -C/econst/-/kCFStringEncodingWindowsHebrew -C/econst/-/kCFStringEncodingWindowsKoreanJohab -C/econst/-/kCFStringEncodingWindowsLatin1 -C/econst/-/kCFStringEncodingWindowsLatin2 -C/econst/-/kCFStringEncodingWindowsLatin5 -C/econst/-/kCFStringEncodingWindowsVietnamese -C/econst/-/kCFStringNormalizationFormC -C/econst/-/kCFStringNormalizationFormD -C/econst/-/kCFStringNormalizationFormKC -C/econst/-/kCFStringNormalizationFormKD -C/econst/-/kCFStringTokenizerAttributeLanguage -C/econst/-/kCFStringTokenizerAttributeLatinTranscription -C/econst/-/kCFStringTokenizerTokenHasDerivedSubTokensMask -C/econst/-/kCFStringTokenizerTokenHasHasNumbersMask -C/econst/-/kCFStringTokenizerTokenHasNonLettersMask -C/econst/-/kCFStringTokenizerTokenHasSubTokensMask -C/econst/-/kCFStringTokenizerTokenIsCJWordMask -C/econst/-/kCFStringTokenizerTokenNone -C/econst/-/kCFStringTokenizerTokenNormal -C/econst/-/kCFStringTokenizerUnitLineBreak -C/econst/-/kCFStringTokenizerUnitParagraph -C/econst/-/kCFStringTokenizerUnitSentence -C/econst/-/kCFStringTokenizerUnitWord -C/econst/-/kCFStringTokenizerUnitWordBoundary -C/data/-/kCFStringTransformFullwidthHalfwidth -C/data/-/kCFStringTransformHiraganaKatakana -C/data/-/kCFStringTransformLatinArabic -C/data/-/kCFStringTransformLatinCyrillic -C/data/-/kCFStringTransformLatinGreek -C/data/-/kCFStringTransformLatinHangul -C/data/-/kCFStringTransformLatinHebrew -C/data/-/kCFStringTransformLatinHiragana -C/data/-/kCFStringTransformLatinKatakana -C/data/-/kCFStringTransformLatinThai -C/data/-/kCFStringTransformMandarinLatin -C/data/-/kCFStringTransformStripCombiningMarks -C/data/-/kCFStringTransformStripDiacritics -C/data/-/kCFStringTransformToLatin -C/data/-/kCFStringTransformToUnicodeName -C/data/-/kCFStringTransformToXMLHex -C/econst/-/kCFTimeZoneNameStyleDaylightSaving -C/econst/-/kCFTimeZoneNameStyleShortDaylightSaving -C/econst/-/kCFTimeZoneNameStyleShortStandard -C/econst/-/kCFTimeZoneNameStyleStandard -C/data/-/kCFTimeZoneSystemTimeZoneDidChangeNotification -C/data/-/kCFTypeArrayCallBacks -C/data/-/kCFTypeBagCallBacks -C/data/-/kCFTypeDictionaryKeyCallBacks -C/data/-/kCFTypeDictionaryValueCallBacks -C/data/-/kCFTypeSetCallBacks -C/data/-/kCFURLAttributeModificationDateKey -C/data/-/kCFURLBookmarkCreationMinimalBookmarkMask -C/data/-/kCFURLBookmarkCreationPreferFileIDResolutionMask -C/data/-/kCFURLBookmarkCreationSuitableForBookmarkFile -C/econst/-/kCFURLComponentFragment -C/econst/-/kCFURLComponentHost -C/econst/-/kCFURLComponentNetLocation -C/econst/-/kCFURLComponentParameterString -C/econst/-/kCFURLComponentPassword -C/econst/-/kCFURLComponentPath -C/econst/-/kCFURLComponentPort -C/econst/-/kCFURLComponentQuery -C/econst/-/kCFURLComponentResourceSpecifier -C/econst/-/kCFURLComponentScheme -C/econst/-/kCFURLComponentUser -C/econst/-/kCFURLComponentUserInfo -C/data/-/kCFURLContentAccessDateKey -C/data/-/kCFURLContentModificationDateKey -C/data/-/kCFURLCreationDateKey -C/data/-/kCFURLCustomIconKey -C/data/-/kCFURLEffectiveIconKey -C/data/-/kCFURLFileAllocatedSizeKey -C/data/-/kCFURLFileDirectoryContents -C/data/-/kCFURLFileExists -C/data/-/kCFURLFileLastModificationTime -C/data/-/kCFURLFileLength -C/data/-/kCFURLFileOwnerID -C/data/-/kCFURLFilePOSIXMode -C/data/-/kCFURLFileSizeKey -C/data/-/kCFURLHasHiddenExtensionKey -C/econst/-/kCFURLHFSPathStyle -C/data/-/kCFURLHTTPStatusCode -C/data/-/kCFURLHTTPStatusLine -C/econst/-/kCFURLImproperArgumentsError -C/data/-/kCFURLIsAliasFileKey -C/data/-/kCFURLIsDirectoryKey -C/data/-/kCFURLIsHiddenKey -C/data/-/kCFURLIsPackageKey -C/data/-/kCFURLIsRegularFileKey -C/data/-/kCFURLIsSymbolicLinkKey -C/data/-/kCFURLIsSystemImmutableKey -C/data/-/kCFURLIsUserImmutableKey -C/data/-/kCFURLIsVolumeKey -C/data/-/kCFURLLabelColorKey -C/data/-/kCFURLLabelNumberKey -C/data/-/kCFURLLinkCountKey -C/data/-/kCFURLLocalizedLabelKey -C/data/-/kCFURLLocalizedNameKey -C/data/-/kCFURLLocalizedTypeDescriptionKey -C/data/-/kCFURLNameKey -C/data/-/kCFURLParentDirectoryURLKey -C/econst/-/kCFURLPOSIXPathStyle -C/econst/-/kCFURLPropertyKeyUnavailableError -C/econst/-/kCFURLRemoteHostUnavailableError -C/econst/-/kCFURLResourceAccessViolationError -C/econst/-/kCFURLResourceNotFoundError -C/econst/-/kCFURLTimeoutError -C/data/-/kCFURLTypeIdentifierKey -C/econst/-/kCFURLUnknownError -C/econst/-/kCFURLUnknownPropertyKeyError -C/econst/-/kCFURLUnknownSchemeError -C/data/-/kCFURLVolumeAvailableCapacityKey -C/data/-/kCFURLVolumeIsJournalingKey -C/data/-/kCFURLVolumeLocalizedFormatDescriptionKey -C/data/-/kCFURLVolumeResourceCountKey -C/data/-/kCFURLVolumeSupportsCasePreservedNamesKey -C/data/-/kCFURLVolumeSupportsCaseSensitiveNamesKey -C/data/-/kCFURLVolumeSupportsHardLinksKey -C/data/-/kCFURLVolumeSupportsJournalingKey -C/data/-/kCFURLVolumeSupportsPersistentIDsKey -C/data/-/kCFURLVolumeSupportsSparseFilesKey -C/data/-/kCFURLVolumeSupportsSymbolicLinksKey -C/data/-/kCFURLVolumeSupportsZeroRunsKey -C/data/-/kCFURLVolumeTotalCapacityKey -C/data/-/kCFURLVolumeURLKey -C/econst/-/kCFURLWindowsPathStyle -C/data/-/kCFUserNotificationAlertHeaderKey -C/data/-/kCFUserNotificationAlertMessageKey -C/data/-/kCFUserNotificationAlternateButtonTitleKey -C/econst/-/kCFUserNotificationAlternateResponse -C/econst/-/kCFUserNotificationCancelResponse -C/econst/-/kCFUserNotificationCautionAlertLevel -C/data/-/kCFUserNotificationCheckBoxTitlesKey -C/data/-/kCFUserNotificationDefaultButtonTitleKey -C/econst/-/kCFUserNotificationDefaultResponse -C/data/-/kCFUserNotificationIconURLKey -C/data/-/kCFUserNotificationLocalizationURLKey -C/econst/-/kCFUserNotificationNoDefaultButtonFlag -C/econst/-/kCFUserNotificationNoteAlertLevel -C/data/-/kCFUserNotificationOtherButtonTitleKey -C/econst/-/kCFUserNotificationOtherResponse -C/econst/-/kCFUserNotificationPlainAlertLevel -C/data/-/kCFUserNotificationPopUpSelectionKey -C/data/-/kCFUserNotificationPopUpTitlesKey -C/data/-/kCFUserNotificationProgressIndicatorValueKey -C/data/-/kCFUserNotificationSoundURLKey -C/econst/-/kCFUserNotificationStopAlertLevel -C/data/-/kCFUserNotificationTextFieldTitlesKey -C/data/-/kCFUserNotificationTextFieldValuesKey -C/econst/-/kCFUserNotificationUseRadioButtonsFlag -C/econst/-/kCFXMLEntityTypeCharacter -C/econst/-/kCFXMLEntityTypeParameter -C/econst/-/kCFXMLEntityTypeParsedExternal -C/econst/-/kCFXMLEntityTypeParsedInternal -C/econst/-/kCFXMLEntityTypeUnparsed -C/econst/-/kCFXMLErrorElementlessDocument -C/econst/-/kCFXMLErrorEncodingConversionFailure -C/econst/-/kCFXMLErrorMalformedCDSect -C/econst/-/kCFXMLErrorMalformedCharacterReference -C/econst/-/kCFXMLErrorMalformedCloseTag -C/econst/-/kCFXMLErrorMalformedComment -C/econst/-/kCFXMLErrorMalformedDocument -C/econst/-/kCFXMLErrorMalformedDTD -C/econst/-/kCFXMLErrorMalformedName -C/econst/-/kCFXMLErrorMalformedParsedCharacterData -C/econst/-/kCFXMLErrorMalformedProcessingInstruction -C/econst/-/kCFXMLErrorMalformedStartTag -C/econst/-/kCFXMLErrorNoData -C/econst/-/kCFXMLErrorUnexpectedEOF -C/econst/-/kCFXMLErrorUnknownEncoding -C/econst/-/kCFXMLNodeCurrentVersion -C/econst/-/kCFXMLNodeTypeAttribute -C/econst/-/kCFXMLNodeTypeAttributeListDeclaration -C/econst/-/kCFXMLNodeTypeCDATASection -C/econst/-/kCFXMLNodeTypeComment -C/econst/-/kCFXMLNodeTypeDocument -C/econst/-/kCFXMLNodeTypeDocumentFragment -C/econst/-/kCFXMLNodeTypeDocumentType -C/econst/-/kCFXMLNodeTypeElement -C/econst/-/kCFXMLNodeTypeElementTypeDeclaration -C/econst/-/kCFXMLNodeTypeEntity -C/econst/-/kCFXMLNodeTypeEntityReference -C/econst/-/kCFXMLNodeTypeNotation -C/econst/-/kCFXMLNodeTypeProcessingInstruction -C/econst/-/kCFXMLNodeTypeText -C/econst/-/kCFXMLNodeTypeWhitespace -C/econst/-/kCFXMLParserAddImpliedAttributes -C/econst/-/kCFXMLParserAllOptions -C/econst/-/kCFXMLParserNoOptions -C/econst/-/kCFXMLParserReplacePhysicalEntities -C/econst/-/kCFXMLParserResolveExternalEntities -C/econst/-/kCFXMLParserSkipMetaData -C/econst/-/kCFXMLParserSkipWhitespace -C/econst/-/kCFXMLParserValidateDocument -C/econst/-/kCFXMLStatusParseInProgress -C/econst/-/kCFXMLStatusParseNotBegun -C/econst/-/kCFXMLStatusParseSuccessful -C/data/-/kCFXMLTreeErrorDescription -C/data/-/kCFXMLTreeErrorLineNumber -C/data/-/kCFXMLTreeErrorLocation -C/data/-/kCFXMLTreeErrorStatusCode -C/econst/-/kCGAnnotatedSessionEventTap -C/macro/-/kCGAnyInputEventType -C/econst/-/kCGBackingStoreBuffered -C/econst/-/kCGBackingStoreNonretained -C/econst/-/kCGBackingStoreRetained -C/econst/-/kCGBackstopMenuLevelKey -C/econst/-/kCGBaseWindowLevelKey -C/econst/-/kCGBitmapAlphaInfoMask -C/econst/-/kCGBitmapByteOrder16Big -C/macro/-/kCGBitmapByteOrder16Host -C/econst/-/kCGBitmapByteOrder16Little -C/econst/-/kCGBitmapByteOrder32Big -C/macro/-/kCGBitmapByteOrder32Host -C/econst/-/kCGBitmapByteOrder32Little -C/econst/-/kCGBitmapByteOrderDefault -C/econst/-/kCGBitmapByteOrderMask -C/econst/-/kCGBitmapFloatComponents -C/econst/-/kCGBlendModeClear -C/econst/-/kCGBlendModeColor -C/econst/-/kCGBlendModeColorBurn -C/econst/-/kCGBlendModeColorDodge -C/econst/-/kCGBlendModeCopy -C/econst/-/kCGBlendModeDarken -C/econst/-/kCGBlendModeDestinationAtop -C/econst/-/kCGBlendModeDestinationIn -C/econst/-/kCGBlendModeDestinationOut -C/econst/-/kCGBlendModeDestinationOver -C/econst/-/kCGBlendModeDifference -C/econst/-/kCGBlendModeExclusion -C/econst/-/kCGBlendModeHardLight -C/econst/-/kCGBlendModeHue -C/econst/-/kCGBlendModeLighten -C/econst/-/kCGBlendModeLuminosity -C/econst/-/kCGBlendModeMultiply -C/econst/-/kCGBlendModeNormal -C/econst/-/kCGBlendModeOverlay -C/econst/-/kCGBlendModePlusDarker -C/econst/-/kCGBlendModePlusLighter -C/econst/-/kCGBlendModeSaturation -C/econst/-/kCGBlendModeScreen -C/econst/-/kCGBlendModeSoftLight -C/econst/-/kCGBlendModeSourceAtop -C/econst/-/kCGBlendModeSourceIn -C/econst/-/kCGBlendModeSourceOut -C/econst/-/kCGBlendModeXOR -C/econst/-/kCGCaptureNoFill -C/econst/-/kCGCaptureNoOptions -C/data/-/kCGColorBlack -C/data/-/kCGColorClear -C/data/-/kCGColorSpaceAdobeRGB1998 -C/data/-/kCGColorSpaceGenericCMYK -C/data/-/kCGColorSpaceGenericGray -C/data/-/kCGColorSpaceGenericGrayGamma2_2 -C/data/-/kCGColorSpaceGenericRGB -C/data/-/kCGColorSpaceGenericRGBLinear -C/econst/-/kCGColorSpaceModelCMYK -C/econst/-/kCGColorSpaceModelDeviceN -C/econst/-/kCGColorSpaceModelIndexed -C/econst/-/kCGColorSpaceModelLab -C/econst/-/kCGColorSpaceModelMonochrome -C/econst/-/kCGColorSpaceModelPattern -C/econst/-/kCGColorSpaceModelRGB -C/econst/-/kCGColorSpaceModelUnknown -C/data/-/kCGColorSpaceSRGB -C/data/-/kCGColorWhite -C/econst/-/kCGConfigureForAppOnly -C/econst/-/kCGConfigureForSession -C/econst/-/kCGConfigurePermanently -C/econst/-/kCGCursorWindowLevelKey -C/econst/-/kCGDesktopIconWindowLevelKey -C/econst/-/kCGDesktopWindowLevelKey -C/macro/-/kCGDirectMainDisplay -C/econst/-/kCGDisplayAddFlag -C/econst/-/kCGDisplayBeginConfigurationFlag -C/macro/-/kCGDisplayBitsPerPixel -C/macro/-/kCGDisplayBitsPerSample -C/macro/-/kCGDisplayBlendNormal -C/macro/-/kCGDisplayBlendSolidColor -C/macro/-/kCGDisplayBytesPerRow -C/econst/-/kCGDisplayDesktopShapeChangedFlag -C/econst/-/kCGDisplayDisabledFlag -C/econst/-/kCGDisplayEnabledFlag -C/macro/-/kCGDisplayFadeReservationInvalidToken -C/macro/-/kCGDisplayHeight -C/macro/-/kCGDisplayIOFlags -C/econst/-/kCGDisplayMirrorFlag -C/macro/-/kCGDisplayMode -C/macro/-/kCGDisplayModeIsInterlaced -C/macro/-/kCGDisplayModeIsSafeForHardware -C/macro/-/kCGDisplayModeIsStretched -C/macro/-/kCGDisplayModeIsTelevisionOutput -C/macro/-/kCGDisplayModeUsableForDesktopGUI -C/econst/-/kCGDisplayMovedFlag -C/macro/-/kCGDisplayRefreshRate -C/econst/-/kCGDisplayRemoveFlag -C/macro/-/kCGDisplaySamplesPerPixel -C/econst/-/kCGDisplaySetMainFlag -C/econst/-/kCGDisplaySetModeFlag -C/econst/-/kCGDisplayUnMirrorFlag -C/macro/-/kCGDisplayWidth -C/econst/-/kCGDockWindowLevelKey -C/econst/-/kCGDraggingWindowLevelKey -C/econst/-/kCGEncodingFontSpecific -C/econst/-/kCGEncodingMacRoman -C/econst/-/kCGErrorApplicationAlreadyRunning -C/econst/-/kCGErrorApplicationCanOnlyBeRunInOneSessionAtATime -C/econst/-/kCGErrorApplicationIncorrectExecutableFormatFound -C/econst/-/kCGErrorApplicationIsLaunching -C/econst/-/kCGErrorApplicationNotPermittedToExecute -C/econst/-/kCGErrorApplicationRequiresNewerSystem -C/econst/-/kCGErrorCannotComplete -C/econst/-/kCGErrorClassicApplicationsMustBeLaunchedByClassic -C/econst/-/kCGErrorFailure -C/econst/-/kCGErrorForkFailed -C/econst/-/kCGErrorIllegalArgument -C/econst/-/kCGErrorInvalidConnection -C/econst/-/kCGErrorInvalidContext -C/econst/-/kCGErrorInvalidOperation -C/econst/-/kCGErrorNameTooLong -C/econst/-/kCGErrorNoCurrentPoint -C/econst/-/kCGErrorNoneAvailable -C/econst/-/kCGErrorNotImplemented -C/econst/-/kCGErrorRangeCheck -C/econst/-/kCGErrorRetryRegistration -C/econst/-/kCGErrorSuccess -C/econst/-/kCGErrorTypeCheck -C/econst/-/kCGEventFlagMaskAlphaShift -C/econst/-/kCGEventFlagMaskAlternate -C/econst/-/kCGEventFlagMaskCommand -C/econst/-/kCGEventFlagMaskControl -C/econst/-/kCGEventFlagMaskHelp -C/econst/-/kCGEventFlagMaskNonCoalesced -C/econst/-/kCGEventFlagMaskNumericPad -C/econst/-/kCGEventFlagMaskSecondaryFn -C/econst/-/kCGEventFlagMaskShift -C/econst/-/kCGEventFlagsChanged -C/econst/-/kCGEventKeyDown -C/econst/-/kCGEventKeyUp -C/econst/-/kCGEventLeftMouseDown -C/econst/-/kCGEventLeftMouseDragged -C/econst/-/kCGEventLeftMouseUp -C/macro/-/kCGEventMaskForAllEvents -C/econst/-/kCGEventMouseMoved -C/econst/-/kCGEventMouseSubtypeDefault -C/econst/-/kCGEventMouseSubtypeTabletPoint -C/econst/-/kCGEventMouseSubtypeTabletProximity -C/econst/-/kCGEventNull -C/econst/-/kCGEventOtherMouseDown -C/econst/-/kCGEventOtherMouseDragged -C/econst/-/kCGEventOtherMouseUp -C/econst/-/kCGEventRightMouseDown -C/econst/-/kCGEventRightMouseDragged -C/econst/-/kCGEventRightMouseUp -C/econst/-/kCGEventScrollWheel -C/econst/-/kCGEventSourceGroupID -C/econst/-/kCGEventSourceStateCombinedSessionState -C/econst/-/kCGEventSourceStateHIDSystemState -C/econst/-/kCGEventSourceStateID -C/econst/-/kCGEventSourceStatePrivate -C/econst/-/kCGEventSourceUnixProcessID -C/econst/-/kCGEventSourceUserData -C/econst/-/kCGEventSourceUserID -C/econst/-/kCGEventSuppressionStateRemoteMouseDrag -C/econst/-/kCGEventSuppressionStateSuppressionInterval -C/econst/-/kCGEventTabletPointer -C/econst/-/kCGEventTabletProximity -C/econst/-/kCGEventTapDisabledByTimeout -C/econst/-/kCGEventTapDisabledByUserInput -C/econst/-/kCGEventTapOptionDefault -C/econst/-/kCGEventTapOptionListenOnly -C/econst/-/kCGEventTargetProcessSerialNumber -C/econst/-/kCGEventTargetUnixProcessID -C/econst/-/kCGFloatingWindowLevelKey -C/econst/-/kCGFontIndexInvalid -C/econst/-/kCGFontIndexMax -C/econst/-/kCGFontPostScriptFormatType1 -C/econst/-/kCGFontPostScriptFormatType3 -C/econst/-/kCGFontPostScriptFormatType42 -C/data/-/kCGFontVariationAxisDefaultValue -C/data/-/kCGFontVariationAxisMaxValue -C/data/-/kCGFontVariationAxisMinValue -C/data/-/kCGFontVariationAxisName -C/econst/-/kCGGlyphMax -C/econst/-/kCGGradientDrawsAfterEndLocation -C/econst/-/kCGGradientDrawsBeforeStartLocation -C/econst/-/kCGHeadInsertEventTap -C/econst/-/kCGHelpWindowLevelKey -C/econst/-/kCGHIDEventTap -C/econst/-/kCGImageAlphaFirst -C/econst/-/kCGImageAlphaLast -C/econst/-/kCGImageAlphaNone -C/econst/-/kCGImageAlphaNoneSkipFirst -C/econst/-/kCGImageAlphaNoneSkipLast -C/econst/-/kCGImageAlphaOnly -C/econst/-/kCGImageAlphaPremultipliedFirst -C/econst/-/kCGImageAlphaPremultipliedLast -C/data/-/kCGImageDestinationBackgroundColor -C/data/-/kCGImageDestinationLossyCompressionQuality -C/data/-/kCGImageProperty8BIMDictionary -C/data/-/kCGImageProperty8BIMLayerNames -C/data/-/kCGImagePropertyCIFFCameraSerialNumber -C/data/-/kCGImagePropertyCIFFContinuousDrive -C/data/-/kCGImagePropertyCIFFDescription -C/data/-/kCGImagePropertyCIFFDictionary -C/data/-/kCGImagePropertyCIFFFirmware -C/data/-/kCGImagePropertyCIFFFlashExposureComp -C/data/-/kCGImagePropertyCIFFFocusMode -C/data/-/kCGImagePropertyCIFFImageFileName -C/data/-/kCGImagePropertyCIFFImageName -C/data/-/kCGImagePropertyCIFFImageSerialNumber -C/data/-/kCGImagePropertyCIFFLensMaxMM -C/data/-/kCGImagePropertyCIFFLensMinMM -C/data/-/kCGImagePropertyCIFFLensModel -C/data/-/kCGImagePropertyCIFFMeasuredEV -C/data/-/kCGImagePropertyCIFFMeteringMode -C/data/-/kCGImagePropertyCIFFOwnerName -C/data/-/kCGImagePropertyCIFFRecordID -C/data/-/kCGImagePropertyCIFFReleaseMethod -C/data/-/kCGImagePropertyCIFFReleaseTiming -C/data/-/kCGImagePropertyCIFFSelfTimingTime -C/data/-/kCGImagePropertyCIFFShootingMode -C/data/-/kCGImagePropertyCIFFWhiteBalanceIndex -C/data/-/kCGImagePropertyColorModel -C/data/-/kCGImagePropertyColorModelCMYK -C/data/-/kCGImagePropertyColorModelGray -C/data/-/kCGImagePropertyColorModelLab -C/data/-/kCGImagePropertyColorModelRGB -C/data/-/kCGImagePropertyDepth -C/data/-/kCGImagePropertyDNGBackwardVersion -C/data/-/kCGImagePropertyDNGCameraSerialNumber -C/data/-/kCGImagePropertyDNGDictionary -C/data/-/kCGImagePropertyDNGLensInfo -C/data/-/kCGImagePropertyDNGLocalizedCameraModel -C/data/-/kCGImagePropertyDNGUniqueCameraModel -C/data/-/kCGImagePropertyDNGVersion -C/data/-/kCGImagePropertyDPIHeight -C/data/-/kCGImagePropertyDPIWidth -C/data/-/kCGImagePropertyExifApertureValue -C/data/-/kCGImagePropertyExifAuxDictionary -C/data/-/kCGImagePropertyExifAuxFirmware -C/data/-/kCGImagePropertyExifAuxFlashCompensation -C/data/-/kCGImagePropertyExifAuxImageNumber -C/data/-/kCGImagePropertyExifAuxLensID -C/data/-/kCGImagePropertyExifAuxLensInfo -C/data/-/kCGImagePropertyExifAuxLensModel -C/data/-/kCGImagePropertyExifAuxLensSerialNumber -C/data/-/kCGImagePropertyExifAuxOwnerName -C/data/-/kCGImagePropertyExifAuxSerialNumber -C/data/-/kCGImagePropertyExifBrightnessValue -C/data/-/kCGImagePropertyExifCFAPattern -C/data/-/kCGImagePropertyExifColorSpace -C/data/-/kCGImagePropertyExifComponentsConfiguration -C/data/-/kCGImagePropertyExifCompressedBitsPerPixel -C/data/-/kCGImagePropertyExifContrast -C/data/-/kCGImagePropertyExifCustomRendered -C/data/-/kCGImagePropertyExifDateTimeDigitized -C/data/-/kCGImagePropertyExifDateTimeOriginal -C/data/-/kCGImagePropertyExifDeviceSettingDescription -C/data/-/kCGImagePropertyExifDictionary -C/data/-/kCGImagePropertyExifDigitalZoomRatio -C/data/-/kCGImagePropertyExifExposureBiasValue -C/data/-/kCGImagePropertyExifExposureIndex -C/data/-/kCGImagePropertyExifExposureMode -C/data/-/kCGImagePropertyExifExposureProgram -C/data/-/kCGImagePropertyExifExposureTime -C/data/-/kCGImagePropertyExifFileSource -C/data/-/kCGImagePropertyExifFlash -C/data/-/kCGImagePropertyExifFlashEnergy -C/data/-/kCGImagePropertyExifFlashPixVersion -C/data/-/kCGImagePropertyExifFNumber -C/data/-/kCGImagePropertyExifFocalLength -C/data/-/kCGImagePropertyExifFocalLenIn35mmFilm -C/data/-/kCGImagePropertyExifFocalPlaneResolutionUnit -C/data/-/kCGImagePropertyExifFocalPlaneXResolution -C/data/-/kCGImagePropertyExifFocalPlaneYResolution -C/data/-/kCGImagePropertyExifGainControl -C/data/-/kCGImagePropertyExifGamma -C/data/-/kCGImagePropertyExifImageUniqueID -C/data/-/kCGImagePropertyExifISOSpeedRatings -C/data/-/kCGImagePropertyExifLightSource -C/data/-/kCGImagePropertyExifMakerNote -C/data/-/kCGImagePropertyExifMaxApertureValue -C/data/-/kCGImagePropertyExifMeteringMode -C/data/-/kCGImagePropertyExifOECF -C/data/-/kCGImagePropertyExifPixelXDimension -C/data/-/kCGImagePropertyExifPixelYDimension -C/data/-/kCGImagePropertyExifRelatedSoundFile -C/data/-/kCGImagePropertyExifSaturation -C/data/-/kCGImagePropertyExifSceneCaptureType -C/data/-/kCGImagePropertyExifSceneType -C/data/-/kCGImagePropertyExifSensingMethod -C/data/-/kCGImagePropertyExifSharpness -C/data/-/kCGImagePropertyExifShutterSpeedValue -C/data/-/kCGImagePropertyExifSpatialFrequencyResponse -C/data/-/kCGImagePropertyExifSpectralSensitivity -C/data/-/kCGImagePropertyExifSubjectArea -C/data/-/kCGImagePropertyExifSubjectDistance -C/data/-/kCGImagePropertyExifSubjectDistRange -C/data/-/kCGImagePropertyExifSubjectLocation -C/data/-/kCGImagePropertyExifSubsecTime -C/data/-/kCGImagePropertyExifSubsecTimeDigitized -C/data/-/kCGImagePropertyExifSubsecTimeOrginal -C/data/-/kCGImagePropertyExifUserComment -C/data/-/kCGImagePropertyExifVersion -C/data/-/kCGImagePropertyExifWhiteBalance -C/data/-/kCGImagePropertyFileSize -C/data/-/kCGImagePropertyGIFDelayTime -C/data/-/kCGImagePropertyGIFDictionary -C/data/-/kCGImagePropertyGIFHasGlobalColorMap -C/data/-/kCGImagePropertyGIFImageColorMap -C/data/-/kCGImagePropertyGIFLoopCount -C/data/-/kCGImagePropertyGPSAltitude -C/data/-/kCGImagePropertyGPSAltitudeRef -C/data/-/kCGImagePropertyGPSAreaInformation -C/data/-/kCGImagePropertyGPSDateStamp -C/data/-/kCGImagePropertyGPSDestBearing -C/data/-/kCGImagePropertyGPSDestBearingRef -C/data/-/kCGImagePropertyGPSDestDistance -C/data/-/kCGImagePropertyGPSDestDistanceRef -C/data/-/kCGImagePropertyGPSDestLatitude -C/data/-/kCGImagePropertyGPSDestLatitudeRef -C/data/-/kCGImagePropertyGPSDestLongitude -C/data/-/kCGImagePropertyGPSDestLongitudeRef -C/data/-/kCGImagePropertyGPSDictionary -C/data/-/kCGImagePropertyGPSDifferental -C/data/-/kCGImagePropertyGPSDOP -C/data/-/kCGImagePropertyGPSImgDirection -C/data/-/kCGImagePropertyGPSImgDirectionRef -C/data/-/kCGImagePropertyGPSLatitude -C/data/-/kCGImagePropertyGPSLatitudeRef -C/data/-/kCGImagePropertyGPSLongitude -C/data/-/kCGImagePropertyGPSLongitudeRef -C/data/-/kCGImagePropertyGPSMapDatum -C/data/-/kCGImagePropertyGPSMeasureMode -C/data/-/kCGImagePropertyGPSProcessingMethod -C/data/-/kCGImagePropertyGPSSatellites -C/data/-/kCGImagePropertyGPSSpeed -C/data/-/kCGImagePropertyGPSSpeedRef -C/data/-/kCGImagePropertyGPSStatus -C/data/-/kCGImagePropertyGPSTimeStamp -C/data/-/kCGImagePropertyGPSTrack -C/data/-/kCGImagePropertyGPSTrackRef -C/data/-/kCGImagePropertyGPSVersion -C/data/-/kCGImagePropertyHasAlpha -C/data/-/kCGImagePropertyIPTCActionAdvised -C/data/-/kCGImagePropertyIPTCByline -C/data/-/kCGImagePropertyIPTCBylineTitle -C/data/-/kCGImagePropertyIPTCCaptionAbstract -C/data/-/kCGImagePropertyIPTCCategory -C/data/-/kCGImagePropertyIPTCCity -C/data/-/kCGImagePropertyIPTCContact -C/data/-/kCGImagePropertyIPTCContentLocationCode -C/data/-/kCGImagePropertyIPTCContentLocationName -C/data/-/kCGImagePropertyIPTCCopyrightNotice -C/data/-/kCGImagePropertyIPTCCountryPrimaryLocationCode -C/data/-/kCGImagePropertyIPTCCountryPrimaryLocationName -C/data/-/kCGImagePropertyIPTCCredit -C/data/-/kCGImagePropertyIPTCDateCreated -C/data/-/kCGImagePropertyIPTCDictionary -C/data/-/kCGImagePropertyIPTCDigitalCreationDate -C/data/-/kCGImagePropertyIPTCDigitalCreationTime -C/data/-/kCGImagePropertyIPTCEditorialUpdate -C/data/-/kCGImagePropertyIPTCEditStatus -C/data/-/kCGImagePropertyIPTCExpirationDate -C/data/-/kCGImagePropertyIPTCExpirationTime -C/data/-/kCGImagePropertyIPTCFixtureIdentifier -C/data/-/kCGImagePropertyIPTCHeadline -C/data/-/kCGImagePropertyIPTCImageOrientation -C/data/-/kCGImagePropertyIPTCImageType -C/data/-/kCGImagePropertyIPTCKeywords -C/data/-/kCGImagePropertyIPTCLanguageIdentifier -C/data/-/kCGImagePropertyIPTCObjectAttributeReference -C/data/-/kCGImagePropertyIPTCObjectCycle -C/data/-/kCGImagePropertyIPTCObjectName -C/data/-/kCGImagePropertyIPTCObjectTypeReference -C/data/-/kCGImagePropertyIPTCOriginalTransmissionReference -C/data/-/kCGImagePropertyIPTCOriginatingProgram -C/data/-/kCGImagePropertyIPTCProgramVersion -C/data/-/kCGImagePropertyIPTCProvinceState -C/data/-/kCGImagePropertyIPTCReferenceDate -C/data/-/kCGImagePropertyIPTCReferenceNumber -C/data/-/kCGImagePropertyIPTCReferenceService -C/data/-/kCGImagePropertyIPTCReleaseDate -C/data/-/kCGImagePropertyIPTCReleaseTime -C/data/-/kCGImagePropertyIPTCSource -C/data/-/kCGImagePropertyIPTCSpecialInstructions -C/data/-/kCGImagePropertyIPTCStarRating -C/data/-/kCGImagePropertyIPTCSubjectReference -C/data/-/kCGImagePropertyIPTCSubLocation -C/data/-/kCGImagePropertyIPTCSupplementalCategory -C/data/-/kCGImagePropertyIPTCTimeCreated -C/data/-/kCGImagePropertyIPTCUrgency -C/data/-/kCGImagePropertyIPTCWriterEditor -C/data/-/kCGImagePropertyIsFloat -C/data/-/kCGImagePropertyIsIndexed -C/data/-/kCGImagePropertyJFIFDensityUnit -C/data/-/kCGImagePropertyJFIFDictionary -C/data/-/kCGImagePropertyJFIFIsProgressive -C/data/-/kCGImagePropertyJFIFVersion -C/data/-/kCGImagePropertyJFIFXDensity -C/data/-/kCGImagePropertyJFIFYDensity -C/data/-/kCGImagePropertyMakerCanonAspectRatioInfo -C/data/-/kCGImagePropertyMakerCanonCameraSerialNumber -C/data/-/kCGImagePropertyMakerCanonContinuousDrive -C/data/-/kCGImagePropertyMakerCanonDictionary -C/data/-/kCGImagePropertyMakerCanonFirmware -C/data/-/kCGImagePropertyMakerCanonFlashExposureComp -C/data/-/kCGImagePropertyMakerCanonImageSerialNumber -C/data/-/kCGImagePropertyMakerCanonLensModel -C/data/-/kCGImagePropertyMakerCanonOwnerName -C/data/-/kCGImagePropertyMakerFujiDictionary -C/data/-/kCGImagePropertyMakerMinoltaDictionary -C/data/-/kCGImagePropertyMakerNikonCameraSerialNumber -C/data/-/kCGImagePropertyMakerNikonColorMode -C/data/-/kCGImagePropertyMakerNikonDictionary -C/data/-/kCGImagePropertyMakerNikonDigitalZoom -C/data/-/kCGImagePropertyMakerNikonFlashExposureComp -C/data/-/kCGImagePropertyMakerNikonFlashSetting -C/data/-/kCGImagePropertyMakerNikonFocusDistance -C/data/-/kCGImagePropertyMakerNikonFocusMode -C/data/-/kCGImagePropertyMakerNikonImageAdjustment -C/data/-/kCGImagePropertyMakerNikonISOSelection -C/data/-/kCGImagePropertyMakerNikonISOSetting -C/data/-/kCGImagePropertyMakerNikonLensAdapter -C/data/-/kCGImagePropertyMakerNikonLensInfo -C/data/-/kCGImagePropertyMakerNikonLensType -C/data/-/kCGImagePropertyMakerNikonQuality -C/data/-/kCGImagePropertyMakerNikonSharpenMode -C/data/-/kCGImagePropertyMakerNikonShootingMode -C/data/-/kCGImagePropertyMakerNikonShutterCount -C/data/-/kCGImagePropertyMakerNikonWhiteBalanceMode -C/data/-/kCGImagePropertyMakerOlympusDictionary -C/data/-/kCGImagePropertyMakerPentaxDictionary -C/data/-/kCGImagePropertyOrientation -C/data/-/kCGImagePropertyPixelHeight -C/data/-/kCGImagePropertyPixelWidth -C/data/-/kCGImagePropertyPNGChromaticities -C/data/-/kCGImagePropertyPNGDictionary -C/data/-/kCGImagePropertyPNGGamma -C/data/-/kCGImagePropertyPNGInterlaceType -C/data/-/kCGImagePropertyPNGsRGBIntent -C/data/-/kCGImagePropertyPNGXPixelsPerMeter -C/data/-/kCGImagePropertyPNGYPixelsPerMeter -C/data/-/kCGImagePropertyProfileName -C/data/-/kCGImagePropertyRawDictionary -C/data/-/kCGImagePropertyTIFFArtist -C/data/-/kCGImagePropertyTIFFCompression -C/data/-/kCGImagePropertyTIFFCopyright -C/data/-/kCGImagePropertyTIFFDateTime -C/data/-/kCGImagePropertyTIFFDictionary -C/data/-/kCGImagePropertyTIFFDocumentName -C/data/-/kCGImagePropertyTIFFHostComputer -C/data/-/kCGImagePropertyTIFFImageDescription -C/data/-/kCGImagePropertyTIFFMake -C/data/-/kCGImagePropertyTIFFModel -C/data/-/kCGImagePropertyTIFFOrientation -C/data/-/kCGImagePropertyTIFFPhotometricInterpretation -C/data/-/kCGImagePropertyTIFFPrimaryChromaticities -C/data/-/kCGImagePropertyTIFFResolutionUnit -C/data/-/kCGImagePropertyTIFFSoftware -C/data/-/kCGImagePropertyTIFFTransferFunction -C/data/-/kCGImagePropertyTIFFWhitePoint -C/data/-/kCGImagePropertyTIFFXResolution -C/data/-/kCGImagePropertyTIFFYResolution -C/data/-/kCGImageSourceCreateThumbnailFromImageAlways -C/data/-/kCGImageSourceCreateThumbnailFromImageIfAbsent -C/data/-/kCGImageSourceCreateThumbnailWithTransform -C/data/-/kCGImageSourceShouldAllowFloat -C/data/-/kCGImageSourceShouldCache -C/data/-/kCGImageSourceThumbnailMaxPixelSize -C/data/-/kCGImageSourceTypeIdentifierHint -C/econst/-/kCGImageStatusComplete -C/econst/-/kCGImageStatusIncomplete -C/econst/-/kCGImageStatusInvalidData -C/econst/-/kCGImageStatusReadingHeader -C/econst/-/kCGImageStatusUnexpectedEOF -C/econst/-/kCGImageStatusUnknownType -C/econst/-/kCGInterpolationDefault -C/econst/-/kCGInterpolationHigh -C/econst/-/kCGInterpolationLow -C/econst/-/kCGInterpolationMedium -C/econst/-/kCGInterpolationNone -C/econst/-/kCGKeyboardEventAutorepeat -C/econst/-/kCGKeyboardEventKeyboardType -C/econst/-/kCGKeyboardEventKeycode -C/econst/-/kCGL0Bit -C/econst/-/kCGL10Bit -C/econst/-/kCGL128Bit -C/econst/-/kCGL12Bit -C/econst/-/kCGL16Bit -C/econst/-/kCGL1Bit -C/econst/-/kCGL24Bit -C/econst/-/kCGL2Bit -C/econst/-/kCGL32Bit -C/econst/-/kCGL3Bit -C/econst/-/kCGL48Bit -C/econst/-/kCGL4Bit -C/econst/-/kCGL5Bit -C/econst/-/kCGL64Bit -C/econst/-/kCGL6Bit -C/econst/-/kCGL8Bit -C/econst/-/kCGL96Bit -C/econst/-/kCGLARGB12121212Bit -C/econst/-/kCGLARGB1555Bit -C/econst/-/kCGLARGB2101010Bit -C/econst/-/kCGLARGB4444Bit -C/econst/-/kCGLARGB8888Bit -C/econst/-/kCGLBadAddress -C/econst/-/kCGLBadAlloc -C/econst/-/kCGLBadAttribute -C/econst/-/kCGLBadCodeModule -C/econst/-/kCGLBadConnection -C/econst/-/kCGLBadContext -C/econst/-/kCGLBadDisplay -C/econst/-/kCGLBadDrawable -C/econst/-/kCGLBadEnumeration -C/econst/-/kCGLBadFullScreen -C/econst/-/kCGLBadMatch -C/econst/-/kCGLBadOffScreen -C/econst/-/kCGLBadPixelFormat -C/econst/-/kCGLBadProperty -C/econst/-/kCGLBadRendererInfo -C/econst/-/kCGLBadState -C/econst/-/kCGLBadValue -C/econst/-/kCGLBadWindow -C/econst/-/kCGLCEDisplayListOptimization -C/econst/-/kCGLCEMPEngine -C/econst/-/kCGLCERasterization -C/econst/-/kCGLCEStateValidation -C/econst/-/kCGLCESurfaceBackingSize -C/econst/-/kCGLCESwapRectangle -C/econst/-/kCGLCPClientStorage -C/econst/-/kCGLCPCurrentRendererID -C/econst/-/kCGLCPDispatchTableSize -C/econst/-/kCGLCPGPUFragmentProcessing -C/econst/-/kCGLCPGPUVertexProcessing -C/econst/-/kCGLCPHasDrawable -C/econst/-/kCGLCPMPSwapsInFlight -C/econst/-/kCGLCPReclaimResources -C/econst/-/kCGLCPSurfaceBackingSize -C/econst/-/kCGLCPSurfaceOpacity -C/econst/-/kCGLCPSurfaceOrder -C/econst/-/kCGLCPSurfaceSurfaceVolatile -C/econst/-/kCGLCPSurfaceTexture -C/econst/-/kCGLCPSwapInterval -C/econst/-/kCGLCPSwapRectangle -C/econst/-/kCGLDoubleBufferBit -C/econst/-/kCGLGOClearFormatCache -C/econst/-/kCGLGOFormatCacheSize -C/econst/-/kCGLGOResetLibrary -C/econst/-/kCGLGORetainRenderers -C/econst/-/kCGLGOUseBuildCache -C/econst/-/kCGLGOUseErrorHandler -C/econst/-/kCGLineCapButt -C/econst/-/kCGLineCapRound -C/econst/-/kCGLineCapSquare -C/econst/-/kCGLineJoinBevel -C/econst/-/kCGLineJoinMiter -C/econst/-/kCGLineJoinRound -C/econst/-/kCGLMonoscopicBit -C/econst/-/kCGLMultisampleBit -C/econst/-/kCGLNoError -C/econst/-/kCGLPFAAccelerated -C/econst/-/kCGLPFAAcceleratedCompute -C/econst/-/kCGLPFAAccumSize -C/econst/-/kCGLPFAAllowOfflineRenderers -C/econst/-/kCGLPFAAllRenderers -C/econst/-/kCGLPFAAlphaSize -C/econst/-/kCGLPFAAuxBuffers -C/econst/-/kCGLPFAAuxDepthStencil -C/econst/-/kCGLPFABackingStore -C/econst/-/kCGLPFAClosestPolicy -C/econst/-/kCGLPFAColorFloat -C/econst/-/kCGLPFAColorSize -C/econst/-/kCGLPFACompliant -C/econst/-/kCGLPFADepthSize -C/econst/-/kCGLPFADisplayMask -C/econst/-/kCGLPFADoubleBuffer -C/econst/-/kCGLPFAFullScreen -C/econst/-/kCGLPFAMaximumPolicy -C/econst/-/kCGLPFAMinimumPolicy -C/econst/-/kCGLPFAMPSafe -C/econst/-/kCGLPFAMultisample -C/econst/-/kCGLPFAMultiScreen -C/econst/-/kCGLPFANoRecovery -C/econst/-/kCGLPFAOffScreen -C/econst/-/kCGLPFAPBuffer -C/econst/-/kCGLPFARemotePBuffer -C/econst/-/kCGLPFARendererID -C/econst/-/kCGLPFARobust -C/econst/-/kCGLPFASampleAlpha -C/econst/-/kCGLPFASampleBuffers -C/econst/-/kCGLPFASamples -C/econst/-/kCGLPFASingleRenderer -C/econst/-/kCGLPFAStencilSize -C/econst/-/kCGLPFAStereo -C/econst/-/kCGLPFASupersample -C/econst/-/kCGLPFAVirtualScreenCount -C/econst/-/kCGLPFAWindow -C/econst/-/kCGLRendererAppleSWID -C/econst/-/kCGLRendererATIRadeon8500ID -C/econst/-/kCGLRendererATIRadeon9700ID -C/econst/-/kCGLRendererATIRadeonID -C/econst/-/kCGLRendererATIRadeonX1000ID -C/econst/-/kCGLRendererATIRadeonX2000ID -C/econst/-/kCGLRendererATIRage128ID -C/econst/-/kCGLRendererATIRageProID -C/econst/-/kCGLRendererGeForce2MXID -C/econst/-/kCGLRendererGeForce3ID -C/econst/-/kCGLRendererGeForce8xxxID -C/econst/-/kCGLRendererGeForceFXID -C/econst/-/kCGLRendererGenericFloatID -C/econst/-/kCGLRendererGenericID -C/econst/-/kCGLRendererIDMatchingMask -C/econst/-/kCGLRendererIntel900ID -C/econst/-/kCGLRendererIntelX3100ID -C/econst/-/kCGLRendererMesa3DFXID -C/econst/-/kCGLRendererVTBladeXP2ID -C/econst/-/kCGLRGB101010_A8Bit -C/econst/-/kCGLRGB101010Bit -C/econst/-/kCGLRGB121212Bit -C/econst/-/kCGLRGB161616Bit -C/econst/-/kCGLRGB444A8Bit -C/econst/-/kCGLRGB444Bit -C/econst/-/kCGLRGB555A8Bit -C/econst/-/kCGLRGB555Bit -C/econst/-/kCGLRGB565A8Bit -C/econst/-/kCGLRGB565Bit -C/econst/-/kCGLRGB888A8Bit -C/econst/-/kCGLRGB888Bit -C/econst/-/kCGLRGBA16161616Bit -C/econst/-/kCGLRGBAFloat128Bit -C/econst/-/kCGLRGBAFloat256Bit -C/econst/-/kCGLRGBAFloat64Bit -C/econst/-/kCGLRGBFloat128Bit -C/econst/-/kCGLRGBFloat256Bit -C/econst/-/kCGLRGBFloat64Bit -C/econst/-/kCGLRPAccelerated -C/econst/-/kCGLRPAcceleratedCompute -C/econst/-/kCGLRPAccumModes -C/econst/-/kCGLRPBackingStore -C/econst/-/kCGLRPBufferModes -C/econst/-/kCGLRPColorModes -C/econst/-/kCGLRPCompliant -C/econst/-/kCGLRPDepthModes -C/econst/-/kCGLRPDisplayMask -C/econst/-/kCGLRPFullScreen -C/econst/-/kCGLRPGPUFragProcCapable -C/econst/-/kCGLRPGPUVertProcCapable -C/econst/-/kCGLRPMaxAuxBuffers -C/econst/-/kCGLRPMaxSampleBuffers -C/econst/-/kCGLRPMaxSamples -C/econst/-/kCGLRPMPSafe -C/econst/-/kCGLRPMultiScreen -C/econst/-/kCGLRPOffScreen -C/econst/-/kCGLRPOnline -C/econst/-/kCGLRPRendererCount -C/econst/-/kCGLRPRendererID -C/econst/-/kCGLRPRobust -C/econst/-/kCGLRPSampleAlpha -C/econst/-/kCGLRPSampleModes -C/econst/-/kCGLRPStencilModes -C/econst/-/kCGLRPTextureMemory -C/econst/-/kCGLRPVideoMemory -C/econst/-/kCGLRPWindow -C/econst/-/kCGLSingleBufferBit -C/econst/-/kCGLStereoscopicBit -C/econst/-/kCGLSupersampleBit -C/econst/-/kCGMainMenuWindowLevelKey -C/macro/-/kCGMaxDisplayReservationInterval -C/econst/-/kCGMaximumWindowLevelKey -C/econst/-/kCGMinimumWindowLevelKey -C/econst/-/kCGModalPanelWindowLevelKey -C/econst/-/kCGMouseButtonCenter -C/econst/-/kCGMouseButtonLeft -C/econst/-/kCGMouseButtonRight -C/econst/-/kCGMouseEventButtonNumber -C/econst/-/kCGMouseEventClickState -C/econst/-/kCGMouseEventDeltaX -C/econst/-/kCGMouseEventDeltaY -C/econst/-/kCGMouseEventInstantMouser -C/econst/-/kCGMouseEventNumber -C/econst/-/kCGMouseEventPressure -C/econst/-/kCGMouseEventSubtype -C/econst/-/kCGNormalWindowLevelKey -C/macro/-/kCGNullDirectDisplay -C/macro/-/kCGNullWindowID -C/econst/-/kCGNumberOfWindowLevelKeys -C/macro/-/kCGNumReservedWindowLevels -C/econst/-/kCGOverlayWindowLevelKey -C/econst/-/kCGPathElementAddCurveToPoint -C/econst/-/kCGPathElementAddLineToPoint -C/econst/-/kCGPathElementAddQuadCurveToPoint -C/econst/-/kCGPathElementCloseSubpath -C/econst/-/kCGPathElementMoveToPoint -C/econst/-/kCGPathEOFill -C/econst/-/kCGPathEOFillStroke -C/econst/-/kCGPathFill -C/econst/-/kCGPathFillStroke -C/econst/-/kCGPathStroke -C/econst/-/kCGPatternTilingConstantSpacing -C/econst/-/kCGPatternTilingConstantSpacingMinimalDistortion -C/econst/-/kCGPatternTilingNoDistortion -C/econst/-/kCGPDFArtBox -C/econst/-/kCGPDFBleedBox -C/data/-/kCGPDFContextAllowsCopying -C/data/-/kCGPDFContextAllowsPrinting -C/data/-/kCGPDFContextArtBox -C/data/-/kCGPDFContextAuthor -C/data/-/kCGPDFContextBleedBox -C/data/-/kCGPDFContextCreator -C/data/-/kCGPDFContextCropBox -C/data/-/kCGPDFContextEncryptionKeyLength -C/data/-/kCGPDFContextKeywords -C/data/-/kCGPDFContextMediaBox -C/data/-/kCGPDFContextOutputIntent -C/data/-/kCGPDFContextOutputIntents -C/data/-/kCGPDFContextOwnerPassword -C/data/-/kCGPDFContextSubject -C/data/-/kCGPDFContextTitle -C/data/-/kCGPDFContextTrimBox -C/data/-/kCGPDFContextUserPassword -C/econst/-/kCGPDFCropBox -C/econst/-/kCGPDFMediaBox -C/econst/-/kCGPDFObjectTypeArray -C/econst/-/kCGPDFObjectTypeBoolean -C/econst/-/kCGPDFObjectTypeDictionary -C/econst/-/kCGPDFObjectTypeInteger -C/econst/-/kCGPDFObjectTypeName -C/econst/-/kCGPDFObjectTypeNull -C/econst/-/kCGPDFObjectTypeReal -C/econst/-/kCGPDFObjectTypeStream -C/econst/-/kCGPDFObjectTypeString -C/econst/-/kCGPDFTrimBox -C/data/-/kCGPDFXDestinationOutputProfile -C/data/-/kCGPDFXInfo -C/data/-/kCGPDFXOutputCondition -C/data/-/kCGPDFXOutputConditionIdentifier -C/data/-/kCGPDFXOutputIntentSubtype -C/data/-/kCGPDFXRegistryName -C/econst/-/kCGPopUpMenuWindowLevelKey -C/econst/-/kCGRenderingIntentAbsoluteColorimetric -C/econst/-/kCGRenderingIntentDefault -C/econst/-/kCGRenderingIntentPerceptual -C/econst/-/kCGRenderingIntentRelativeColorimetric -C/econst/-/kCGRenderingIntentSaturation -C/econst/-/kCGScreenSaverWindowLevelKey -C/econst/-/kCGScreenUpdateOperationMove -C/econst/-/kCGScreenUpdateOperationReducedDirtyRectangleCount -C/econst/-/kCGScreenUpdateOperationRefresh -C/econst/-/kCGScrollEventUnitLine -C/econst/-/kCGScrollEventUnitPixel -C/econst/-/kCGScrollWheelEventDeltaAxis1 -C/econst/-/kCGScrollWheelEventDeltaAxis2 -C/econst/-/kCGScrollWheelEventDeltaAxis3 -C/econst/-/kCGScrollWheelEventFixedPtDeltaAxis1 -C/econst/-/kCGScrollWheelEventFixedPtDeltaAxis2 -C/econst/-/kCGScrollWheelEventFixedPtDeltaAxis3 -C/econst/-/kCGScrollWheelEventInstantMouser -C/econst/-/kCGScrollWheelEventIsContinuous -C/econst/-/kCGScrollWheelEventPointDeltaAxis1 -C/econst/-/kCGScrollWheelEventPointDeltaAxis2 -C/econst/-/kCGScrollWheelEventPointDeltaAxis3 -C/macro/-/kCGSessionConsoleSetKey -C/econst/-/kCGSessionEventTap -C/macro/-/kCGSessionLoginDoneKey -C/macro/-/kCGSessionOnConsoleKey -C/macro/-/kCGSessionUserIDKey -C/macro/-/kCGSessionUserNameKey -C/econst/-/kCGStatusWindowLevelKey -C/econst/-/kCGTabletEventDeviceID -C/econst/-/kCGTabletEventPointButtons -C/econst/-/kCGTabletEventPointPressure -C/econst/-/kCGTabletEventPointX -C/econst/-/kCGTabletEventPointY -C/econst/-/kCGTabletEventPointZ -C/econst/-/kCGTabletEventRotation -C/econst/-/kCGTabletEventTangentialPressure -C/econst/-/kCGTabletEventTiltX -C/econst/-/kCGTabletEventTiltY -C/econst/-/kCGTabletEventVendor1 -C/econst/-/kCGTabletEventVendor2 -C/econst/-/kCGTabletEventVendor3 -C/econst/-/kCGTabletProximityEventCapabilityMask -C/econst/-/kCGTabletProximityEventDeviceID -C/econst/-/kCGTabletProximityEventEnterProximity -C/econst/-/kCGTabletProximityEventPointerID -C/econst/-/kCGTabletProximityEventPointerType -C/econst/-/kCGTabletProximityEventSystemTabletID -C/econst/-/kCGTabletProximityEventTabletID -C/econst/-/kCGTabletProximityEventVendorID -C/econst/-/kCGTabletProximityEventVendorPointerSerialNumber -C/econst/-/kCGTabletProximityEventVendorPointerType -C/econst/-/kCGTabletProximityEventVendorUniqueID -C/econst/-/kCGTailAppendEventTap -C/econst/-/kCGTextClip -C/econst/-/kCGTextFill -C/econst/-/kCGTextFillClip -C/econst/-/kCGTextFillStroke -C/econst/-/kCGTextFillStrokeClip -C/econst/-/kCGTextInvisible -C/econst/-/kCGTextStroke -C/econst/-/kCGTextStrokeClip -C/econst/-/kCGTornOffMenuWindowLevelKey -C/econst/-/kCGUtilityWindowLevelKey -C/data/-/kCGWindowAlpha -C/macro/-/kCGWindowBackingCFNumberType -C/data/-/kCGWindowBackingLocationVideoMemory -C/data/-/kCGWindowBounds -C/macro/-/kCGWindowIDCFNumberType -C/econst/-/kCGWindowImageBoundsIgnoreFraming -C/econst/-/kCGWindowImageDefault -C/econst/-/kCGWindowImageOnlyShadows -C/econst/-/kCGWindowImageShouldBeOpaque -C/data/-/kCGWindowIsOnscreen -C/data/-/kCGWindowLayer -C/econst/-/kCGWindowListExcludeDesktopElements -C/econst/-/kCGWindowListOptionAll -C/econst/-/kCGWindowListOptionIncludingWindow -C/econst/-/kCGWindowListOptionOnScreenAboveWindow -C/econst/-/kCGWindowListOptionOnScreenBelowWindow -C/econst/-/kCGWindowListOptionOnScreenOnly -C/data/-/kCGWindowMemoryUsage -C/data/-/kCGWindowName -C/data/-/kCGWindowNumber -C/data/-/kCGWindowOwnerName -C/data/-/kCGWindowOwnerPID -C/macro/-/kCGWindowSharingCFNumberType -C/econst/-/kCGWindowSharingNone -C/econst/-/kCGWindowSharingReadOnly -C/econst/-/kCGWindowSharingReadWrite -C/data/-/kCGWindowSharingState -C/data/-/kCGWindowStoreType -C/data/-/kCGWindowWorkspace -C/data/-/kCIApplyOptionDefinition -C/data/-/kCIApplyOptionExtent -C/data/-/kCIApplyOptionUserInfo -C/data/-/kCIAttributeClass -C/data/-/kCIAttributeDefault -C/data/-/kCIAttributeDescription -C/data/-/kCIAttributeDisplayName -C/data/-/kCIAttributeFilterCategories -C/data/-/kCIAttributeFilterDisplayName -C/data/-/kCIAttributeFilterName -C/data/-/kCIAttributeIdentity -C/data/-/kCIAttributeMax -C/data/-/kCIAttributeMin -C/data/-/kCIAttributeName -C/data/-/kCIAttributeReferenceDocumentation -C/data/-/kCIAttributeSliderMax -C/data/-/kCIAttributeSliderMin -C/data/-/kCIAttributeType -C/data/-/kCIAttributeTypeAngle -C/data/-/kCIAttributeTypeBoolean -C/data/-/kCIAttributeTypeCount -C/data/-/kCIAttributeTypeDistance -C/data/-/kCIAttributeTypeGradient -C/data/-/kCIAttributeTypeInteger -C/data/-/kCIAttributeTypeOffset -C/data/-/kCIAttributeTypeOpaqueColor -C/data/-/kCIAttributeTypePosition -C/data/-/kCIAttributeTypePosition3 -C/data/-/kCIAttributeTypeRectangle -C/data/-/kCIAttributeTypeScalar -C/data/-/kCIAttributeTypeTime -C/data/-/kCICategoryBlur -C/data/-/kCICategoryBuiltIn -C/data/-/kCICategoryColorAdjustment -C/data/-/kCICategoryColorEffect -C/data/-/kCICategoryCompositeOperation -C/data/-/kCICategoryDistortionEffect -C/data/-/kCICategoryFilterGenerator -C/data/-/kCICategoryGenerator -C/data/-/kCICategoryGeometryAdjustment -C/data/-/kCICategoryGradient -C/data/-/kCICategoryHalftoneEffect -C/data/-/kCICategoryHighDynamicRange -C/data/-/kCICategoryInterlaced -C/data/-/kCICategoryNonSquarePixels -C/data/-/kCICategoryReduction -C/data/-/kCICategorySharpen -C/data/-/kCICategoryStillImage -C/data/-/kCICategoryStylize -C/data/-/kCICategoryTileEffect -C/data/-/kCICategoryTransition -C/data/-/kCICategoryVideo -C/data/-/kCIContextOutputColorSpace -C/data/-/kCIContextUseSoftwareRenderer -C/data/-/kCIContextWorkingColorSpace -C/data/-/kCIFilterGeneratorExportedKey -C/data/-/kCIFilterGeneratorExportedKeyName -C/data/-/kCIFilterGeneratorExportedKeyTargetObject -C/data/-/kCIFormatARGB8 -C/data/-/kCIFormatRGBA16 -C/data/-/kCIFormatRGBAf -C/data/-/kCIImageColorSpace -C/data/-/kCIImageProviderTileSize -C/data/-/kCIImageProviderUserInfo -C/data/-/kCIInputAllowDraftModeKey -C/data/-/kCIInputAngleKey -C/data/-/kCIInputAspectRatioKey -C/data/-/kCIInputBackgroundImageKey -C/data/-/kCIInputBiasKey -C/data/-/kCIInputBoostKey -C/data/-/kCIInputBoostShadowAmountKey -C/data/-/kCIInputBrightnessKey -C/data/-/kCIInputCenterKey -C/data/-/kCIInputColorKey -C/data/-/kCIInputContrastKey -C/data/-/kCIInputDecoderVersionKey -C/data/-/kCIInputEnableChromaticNoiseTrackingKey -C/data/-/kCIInputEnableSharpeningKey -C/data/-/kCIInputEVKey -C/data/-/kCIInputExtentKey -C/data/-/kCIInputGradientImageKey -C/data/-/kCIInputIgnoreImageOrientationKey -C/data/-/kCIInputImageKey -C/data/-/kCIInputImageOrientationKey -C/data/-/kCIInputIntensityKey -C/data/-/kCIInputMaskImageKey -C/data/-/kCIInputNeutralChromaticityXKey -C/data/-/kCIInputNeutralChromaticityYKey -C/data/-/kCIInputNeutralLocationKey -C/data/-/kCIInputNeutralTemperatureKey -C/data/-/kCIInputNeutralTintKey -C/data/-/kCIInputRadiusKey -C/data/-/kCIInputRefractionKey -C/data/-/kCIInputSaturationKey -C/data/-/kCIInputScaleFactorKey -C/data/-/kCIInputScaleKey -C/data/-/kCIInputShadingImageKey -C/data/-/kCIInputSharpnessKey -C/data/-/kCIInputTargetImageKey -C/data/-/kCIInputTimeKey -C/data/-/kCIInputTransformKey -C/data/-/kCIInputWidthKey -C/data/-/kCIOutputImageKey -C/data/-/kCISamplerAffineMatrix -C/data/-/kCISamplerFilterLinear -C/data/-/kCISamplerFilterMode -C/data/-/kCISamplerFilterNearest -C/data/-/kCISamplerWrapBlack -C/data/-/kCISamplerWrapClamp -C/data/-/kCISamplerWrapMode -C/data/-/kCISupportedDecoderVersionsKey -C/data/-/kCIUIParameterSet -C/data/-/kCIUISetAdvanced -C/data/-/kCIUISetBasic -C/data/-/kCIUISetDevelopment -C/data/-/kCIUISetIntermediate -C/data/-/kCLDistanceFilterNone -C/econst/-/kClearTextPwdStr -C/econst/-/kCLErrorDenied -C/data/-/kCLErrorDomain -C/econst/-/kCLErrorLocationUnknown -C/data/-/kCLLocationAccuracyBest -C/data/-/kCLLocationAccuracyHundredMeters -C/data/-/kCLLocationAccuracyKilometer -C/data/-/kCLLocationAccuracyNearestTenMeters -C/data/-/kCLLocationAccuracyThreeKilometers -C/econst/-/kCMMCheckBitmap -C/econst/-/kCMMCheckColors -C/econst/-/kCMMCheckPixMap -C/econst/-/kCMMClose -C/econst/-/kCMMConcatenateProfiles -C/econst/-/kCMMConcatInit -C/econst/-/kCMMFlattenProfile -C/econst/-/kCMMGetIndNamedColorValue -C/econst/-/kCMMGetInfo -C/econst/-/kCMMGetNamedColorIndex -C/econst/-/kCMMGetNamedColorInfo -C/econst/-/kCMMGetNamedColorName -C/econst/-/kCMMGetNamedColorValue -C/econst/-/kCMMGetPS2ColorRendering -C/econst/-/kCMMGetPS2ColorRenderingIntent -C/econst/-/kCMMGetPS2ColorRenderingVMSize -C/econst/-/kCMMGetPS2ColorSpace -C/econst/-/kCMMInit -C/econst/-/kCMMMatchBitmap -C/econst/-/kCMMMatchColors -C/econst/-/kCMMMatchPixMap -C/econst/-/kCMMNewLinkProfile -C/econst/-/kCMMOpen -C/econst/-/kCMMUnflattenProfile -C/econst/-/kCMMValidateProfile -C/econst/-/kCMSAttrNone -C/econst/-/kCMSAttrSigningTime -C/econst/-/kCMSAttrSmimeCapabilities -C/econst/-/kCMSAttrSmimeEncryptionKeyPrefs -C/econst/-/kCMSAttrSmimeMSEncryptionKeyPrefs -C/econst/-/kCMSCertificateChain -C/econst/-/kCMSCertificateChainWithRoot -C/econst/-/kCMSCertificateNone -C/econst/-/kCMSCertificateSignerOnly -C/econst/-/kCMSSignerInvalidCert -C/econst/-/kCMSSignerInvalidIndex -C/econst/-/kCMSSignerInvalidSignature -C/econst/-/kCMSSignerNeedsDetachedContent -C/econst/-/kCMSSignerUnsigned -C/econst/-/kCMSSignerValid -C/econst/-/kCodecFrameTypeDifference -C/econst/-/kCodecFrameTypeKey -C/econst/-/kCodecFrameTypeUnknown -C/econst/-/kComponentAliasResourceType -C/econst/-/kComponentCanDoSelect -C/econst/-/kComponentCloseSelect -C/econst/-/kComponentExecuteWiredActionSelect -C/econst/-/kComponentGetMPWorkFunctionSelect -C/econst/-/kComponentGetPublicResourceSelect -C/econst/-/kComponentOpenSelect -C/econst/-/kComponentPropertyCacheFlagIsDynamic -C/econst/-/kComponentPropertyCacheFlagNotPersistent -C/econst/-/kComponentPropertyCacheFlags -C/econst/-/kComponentPropertyCacheSeed -C/econst/-/kComponentPropertyClassPropertyInfo -C/econst/-/kComponentPropertyInfoList -C/econst/-/kComponentRegisterSelect -C/econst/-/kComponentResourceType -C/econst/-/kComponentTargetSelect -C/econst/-/kComponentUnregisterSelect -C/econst/-/kComponentVersionSelect -C/econst/-/kControlDataBrowserEditTextKeyFilterTag -C/econst/-/kControlDataBrowserEditTextValidationProcTag -C/econst/-/kControlDataBrowserIncludesFrameAndFocusTag -C/econst/-/kControlDataBrowserKeyFilterTag -C/econst/-/kControlKindDataBrowser -C/econst/-/kConverterPrimeMethod_None -C/econst/-/kConverterPrimeMethod_Normal -C/econst/-/kConverterPrimeMethod_Pre -C/econst/-/kCoreEndianAppleEventManagerDomain -C/econst/-/kCoreEndianResourceManagerDomain -C/econst/-/kCSAcceptAllComponentsMode -C/econst/-/kCSAcceptThreadSafeComponentsOnlyMode -C/econst/-/kCSIdentityAuthorityNotAccessibleErr -C/econst/-/kCSIdentityClassGroup -C/econst/-/kCSIdentityClassUser -C/econst/-/kCSIdentityCommitCompleted -C/econst/-/kCSIdentityDeletedErr -C/econst/-/kCSIdentityDuplicateFullNameErr -C/econst/-/kCSIdentityDuplicatePosixNameErr -C/econst/-/kCSIdentityFlagHidden -C/econst/-/kCSIdentityFlagNone -C/econst/-/kCSIdentityInvalidFullNameErr -C/econst/-/kCSIdentityInvalidPosixNameErr -C/econst/-/kCSIdentityPermissionErr -C/econst/-/kCSIdentityQueryEventErrorOccurred -C/econst/-/kCSIdentityQueryEventResultsAdded -C/econst/-/kCSIdentityQueryEventResultsChanged -C/econst/-/kCSIdentityQueryEventResultsRemoved -C/econst/-/kCSIdentityQueryEventSearchPhaseFinished -C/econst/-/kCSIdentityQueryGenerateUpdateEvents -C/econst/-/kCSIdentityQueryIncludeHiddenIdentities -C/econst/-/kCSIdentityQueryStringBeginsWith -C/econst/-/kCSIdentityQueryStringEquals -C/econst/-/kCSIdentityUnknownAuthorityErr -C/econst/-/kCTAdobeCNS1CharacterCollection -C/econst/-/kCTAdobeGB1CharacterCollection -C/econst/-/kCTAdobeJapan1CharacterCollection -C/econst/-/kCTAdobeJapan2CharacterCollection -C/econst/-/kCTAdobeKorea1CharacterCollection -C/econst/-/kCTCenterTextAlignment -C/data/-/kCTCharacterShapeAttributeName -C/econst/-/kCTFontAlertHeaderFontType -C/econst/-/kCTFontApplicationFontType -C/data/-/kCTFontAttributeName -C/data/-/kCTFontBaselineAdjustAttribute -C/econst/-/kCTFontBoldTrait -C/data/-/kCTFontCascadeListAttribute -C/data/-/kCTFontCharacterSetAttribute -C/econst/-/kCTFontClarendonSerifsClass -C/data/-/kCTFontClassMaskShift -C/econst/-/kCTFontClassMaskTrait -C/data/-/kCTFontCollectionRemoveDuplicatesOption -C/econst/-/kCTFontCondensedTrait -C/econst/-/kCTFontControlContentFontType -C/data/-/kCTFontCopyrightNameKey -C/econst/-/kCTFontDefaultOrientation -C/data/-/kCTFontDescriptionNameKey -C/data/-/kCTFontDesignerNameKey -C/data/-/kCTFontDesignerURLNameKey -C/data/-/kCTFontDisplayNameAttribute -C/econst/-/kCTFontEmphasizedSystemDetailFontType -C/econst/-/kCTFontEmphasizedSystemFontType -C/data/-/kCTFontEnabledAttribute -C/econst/-/kCTFontExpandedTrait -C/data/-/kCTFontFamilyNameAttribute -C/data/-/kCTFontFamilyNameKey -C/data/-/kCTFontFeaturesAttribute -C/data/-/kCTFontFeatureSelectorDefaultKey -C/data/-/kCTFontFeatureSelectorIdentifierKey -C/data/-/kCTFontFeatureSelectorNameKey -C/data/-/kCTFontFeatureSelectorSettingKey -C/data/-/kCTFontFeatureSettingsAttribute -C/data/-/kCTFontFeatureTypeExclusiveKey -C/data/-/kCTFontFeatureTypeIdentifierKey -C/data/-/kCTFontFeatureTypeNameKey -C/data/-/kCTFontFeatureTypeSelectorsKey -C/data/-/kCTFontFixedAdvanceAttribute -C/data/-/kCTFontFormatAttribute -C/econst/-/kCTFontFormatBitmap -C/econst/-/kCTFontFormatOpenTypePostScript -C/econst/-/kCTFontFormatOpenTypeTrueType -C/econst/-/kCTFontFormatPostScript -C/econst/-/kCTFontFormatTrueType -C/econst/-/kCTFontFormatUnrecognized -C/econst/-/kCTFontFreeformSerifsClass -C/data/-/kCTFontFullNameKey -C/econst/-/kCTFontHorizontalOrientation -C/econst/-/kCTFontItalicTrait -C/econst/-/kCTFontLabelFontType -C/data/-/kCTFontLanguagesAttribute -C/data/-/kCTFontLicenseNameKey -C/data/-/kCTFontLicenseURLNameKey -C/data/-/kCTFontMacintoshEncodingsAttribute -C/econst/-/kCTFontManagerAutoActivationDefault -C/econst/-/kCTFontManagerAutoActivationDisabled -C/econst/-/kCTFontManagerAutoActivationEnabled -C/econst/-/kCTFontManagerAutoActivationPromptUser -C/data/-/kCTFontManagerBundleIdentifier -C/econst/-/kCTFontManagerErrorAlreadyRegistered -C/data/-/kCTFontManagerErrorDomain -C/econst/-/kCTFontManagerErrorFileNotFound -C/data/-/kCTFontManagerErrorFontURLsKey -C/econst/-/kCTFontManagerErrorInsufficientPermissions -C/econst/-/kCTFontManagerErrorInUse -C/econst/-/kCTFontManagerErrorInvalidFontData -C/econst/-/kCTFontManagerErrorNotRegistered -C/econst/-/kCTFontManagerErrorSystemRequired -C/econst/-/kCTFontManagerErrorUnrecognizedFormat -C/data/-/kCTFontManagerRegisteredFontsChangedNotification -C/econst/-/kCTFontManagerScopeNone -C/econst/-/kCTFontManagerScopeProcess -C/econst/-/kCTFontManagerScopeSession -C/econst/-/kCTFontManagerScopeUser -C/data/-/kCTFontManufacturerNameKey -C/data/-/kCTFontMatrixAttribute -C/econst/-/kCTFontMenuItemCmdKeyFontType -C/econst/-/kCTFontMenuItemFontType -C/econst/-/kCTFontMenuItemMarkFontType -C/econst/-/kCTFontMenuTitleFontType -C/econst/-/kCTFontMessageFontType -C/econst/-/kCTFontMiniEmphasizedSystemFontType -C/econst/-/kCTFontMiniSystemFontType -C/econst/-/kCTFontModernSerifsClass -C/econst/-/kCTFontMonoSpaceTrait -C/data/-/kCTFontNameAttribute -C/econst/-/kCTFontNoFontType -C/econst/-/kCTFontOldStyleSerifsClass -C/econst/-/kCTFontOptionsDefault -C/econst/-/kCTFontOptionsPreferSystemFont -C/econst/-/kCTFontOptionsPreventAutoActivation -C/data/-/kCTFontOrientationAttribute -C/econst/-/kCTFontOrnamentalsClass -C/econst/-/kCTFontPaletteFontType -C/data/-/kCTFontPostScriptCIDNameKey -C/data/-/kCTFontPostScriptNameKey -C/data/-/kCTFontPriorityAttribute -C/econst/-/kCTFontPriorityComputer -C/econst/-/kCTFontPriorityDynamic -C/econst/-/kCTFontPriorityNetwork -C/econst/-/kCTFontPriorityProcess -C/econst/-/kCTFontPrioritySystem -C/econst/-/kCTFontPriorityUser -C/econst/-/kCTFontPushButtonFontType -C/data/-/kCTFontRegistrationScopeAttribute -C/data/-/kCTFontSampleTextNameKey -C/econst/-/kCTFontSansSerifClass -C/econst/-/kCTFontScriptsClass -C/data/-/kCTFontSizeAttribute -C/econst/-/kCTFontSlabSerifsClass -C/data/-/kCTFontSlantTrait -C/econst/-/kCTFontSmallEmphasizedSystemFontType -C/econst/-/kCTFontSmallSystemFontType -C/econst/-/kCTFontSmallToolbarFontType -C/data/-/kCTFontStyleNameAttribute -C/data/-/kCTFontStyleNameKey -C/data/-/kCTFontSubFamilyNameKey -C/econst/-/kCTFontSymbolicClass -C/data/-/kCTFontSymbolicTrait -C/econst/-/kCTFontSystemDetailFontType -C/econst/-/kCTFontSystemFontType -C/econst/-/kCTFontTableAcnt -C/econst/-/kCTFontTableAvar -C/econst/-/kCTFontTableBASE -C/econst/-/kCTFontTableBdat -C/econst/-/kCTFontTableBhed -C/econst/-/kCTFontTableBloc -C/econst/-/kCTFontTableBsln -C/econst/-/kCTFontTableCFF -C/econst/-/kCTFontTableCmap -C/econst/-/kCTFontTableCvar -C/econst/-/kCTFontTableCvt -C/econst/-/kCTFontTableDSIG -C/econst/-/kCTFontTableEBDT -C/econst/-/kCTFontTableEBLC -C/econst/-/kCTFontTableEBSC -C/econst/-/kCTFontTableFdsc -C/econst/-/kCTFontTableFeat -C/econst/-/kCTFontTableFmtx -C/econst/-/kCTFontTableFpgm -C/econst/-/kCTFontTableFvar -C/econst/-/kCTFontTableGasp -C/econst/-/kCTFontTableGDEF -C/econst/-/kCTFontTableGlyf -C/econst/-/kCTFontTableGPOS -C/econst/-/kCTFontTableGSUB -C/econst/-/kCTFontTableGvar -C/econst/-/kCTFontTableHdmx -C/econst/-/kCTFontTableHead -C/econst/-/kCTFontTableHhea -C/econst/-/kCTFontTableHmtx -C/econst/-/kCTFontTableHsty -C/econst/-/kCTFontTableJSTF -C/econst/-/kCTFontTableJust -C/econst/-/kCTFontTableKern -C/econst/-/kCTFontTableLcar -C/econst/-/kCTFontTableLoca -C/econst/-/kCTFontTableLTSH -C/econst/-/kCTFontTableMaxp -C/econst/-/kCTFontTableMort -C/econst/-/kCTFontTableMorx -C/econst/-/kCTFontTableName -C/econst/-/kCTFontTableOpbd -C/econst/-/kCTFontTableOptionExcludeSynthetic -C/econst/-/kCTFontTableOptionNoOptions -C/econst/-/kCTFontTableOS2 -C/econst/-/kCTFontTablePCLT -C/econst/-/kCTFontTablePost -C/econst/-/kCTFontTablePrep -C/econst/-/kCTFontTableProp -C/econst/-/kCTFontTableTrak -C/econst/-/kCTFontTableVDMX -C/econst/-/kCTFontTableVhea -C/econst/-/kCTFontTableVmtx -C/econst/-/kCTFontTableVORG -C/econst/-/kCTFontTableZapf -C/econst/-/kCTFontToolbarFontType -C/econst/-/kCTFontToolTipFontType -C/data/-/kCTFontTrademarkNameKey -C/data/-/kCTFontTraitsAttribute -C/econst/-/kCTFontTransitionalSerifsClass -C/econst/-/kCTFontUIOptimizedTrait -C/data/-/kCTFontUniqueNameKey -C/econst/-/kCTFontUnknownClass -C/data/-/kCTFontURLAttribute -C/econst/-/kCTFontUserFixedPitchFontType -C/econst/-/kCTFontUserFontType -C/econst/-/kCTFontUtilityWindowTitleFontType -C/data/-/kCTFontVariationAttribute -C/data/-/kCTFontVariationAxisDefaultValueKey -C/data/-/kCTFontVariationAxisIdentifierKey -C/data/-/kCTFontVariationAxisMaximumValueKey -C/data/-/kCTFontVariationAxisMinimumValueKey -C/data/-/kCTFontVariationAxisNameKey -C/data/-/kCTFontVendorURLNameKey -C/data/-/kCTFontVersionNameKey -C/econst/-/kCTFontVerticalOrientation -C/econst/-/kCTFontVerticalTrait -C/econst/-/kCTFontViewsFontType -C/data/-/kCTFontWeightTrait -C/data/-/kCTFontWidthTrait -C/econst/-/kCTFontWindowTitleFontType -C/data/-/kCTForegroundColorAttributeName -C/data/-/kCTForegroundColorFromContextAttributeName -C/data/-/kCTFrameProgressionAttributeName -C/econst/-/kCTFrameProgressionRightToLeft -C/econst/-/kCTFrameProgressionTopToBottom -C/data/-/kCTGlyphInfoAttributeName -C/econst/-/kCTIdentityMappingCharacterCollection -C/econst/-/kCTJustifiedTextAlignment -C/data/-/kCTKernAttributeName -C/econst/-/kCTLeftTextAlignment -C/data/-/kCTLigatureAttributeName -C/econst/-/kCTLineBreakByCharWrapping -C/econst/-/kCTLineBreakByClipping -C/econst/-/kCTLineBreakByTruncatingHead -C/econst/-/kCTLineBreakByTruncatingMiddle -C/econst/-/kCTLineBreakByTruncatingTail -C/econst/-/kCTLineBreakByWordWrapping -C/econst/-/kCTLineTruncationEnd -C/econst/-/kCTLineTruncationMiddle -C/econst/-/kCTLineTruncationStart -C/econst/-/kCTNaturalTextAlignment -C/data/-/kCTParagraphStyleAttributeName -C/econst/-/kCTParagraphStyleSpecifierAlignment -C/econst/-/kCTParagraphStyleSpecifierBaseWritingDirection -C/econst/-/kCTParagraphStyleSpecifierCount -C/econst/-/kCTParagraphStyleSpecifierDefaultTabInterval -C/econst/-/kCTParagraphStyleSpecifierFirstLineHeadIndent -C/econst/-/kCTParagraphStyleSpecifierHeadIndent -C/econst/-/kCTParagraphStyleSpecifierLineBreakMode -C/econst/-/kCTParagraphStyleSpecifierLineHeightMultiple -C/econst/-/kCTParagraphStyleSpecifierLineSpacing -C/econst/-/kCTParagraphStyleSpecifierMaximumLineHeight -C/econst/-/kCTParagraphStyleSpecifierMinimumLineHeight -C/econst/-/kCTParagraphStyleSpecifierParagraphSpacing -C/econst/-/kCTParagraphStyleSpecifierParagraphSpacingBefore -C/econst/-/kCTParagraphStyleSpecifierTabStops -C/econst/-/kCTParagraphStyleSpecifierTailIndent -C/econst/-/kCTRightTextAlignment -C/econst/-/kCTRunStatusHasNonIdentityMatrix -C/econst/-/kCTRunStatusNonMonotonic -C/econst/-/kCTRunStatusNoStatus -C/econst/-/kCTRunStatusRightToLeft -C/data/-/kCTStrokeColorAttributeName -C/data/-/kCTStrokeWidthAttributeName -C/data/-/kCTSuperscriptAttributeName -C/data/-/kCTTabColumnTerminatorsAttributeName -C/data/-/kCTTypesetterOptionDisableBidiProcessing -C/data/-/kCTTypesetterOptionForcedEmbeddingLevel -C/data/-/kCTUnderlineColorAttributeName -C/econst/-/kCTUnderlinePatternDash -C/econst/-/kCTUnderlinePatternDashDot -C/econst/-/kCTUnderlinePatternDashDotDot -C/econst/-/kCTUnderlinePatternDot -C/econst/-/kCTUnderlinePatternSolid -C/data/-/kCTUnderlineStyleAttributeName -C/econst/-/kCTUnderlineStyleDouble -C/econst/-/kCTUnderlineStyleNone -C/econst/-/kCTUnderlineStyleSingle -C/econst/-/kCTUnderlineStyleThick -C/macro/-/kCTVersionNumber10_5 -C/macro/-/kCTVersionNumber10_5_2 -C/macro/-/kCTVersionNumber10_5_3 -C/macro/-/kCTVersionNumber10_5_5 -C/macro/-/kCTVersionNumber10_6 -C/data/-/kCTVerticalFormsAttributeName -C/econst/-/kCTWritingDirectionLeftToRight -C/econst/-/kCTWritingDirectionNatural -C/econst/-/kCTWritingDirectionRightToLeft -C/econst/-/kCUPSPPDDomain -C/econst/-/kCurrentProcess -C/econst/-/kCVAttachmentMode_ShouldNotPropagate -C/econst/-/kCVAttachmentMode_ShouldPropagate -C/data/-/kCVBufferMovieTimeKey -C/data/-/kCVBufferNonPropagatedAttachmentsKey -C/data/-/kCVBufferPropagatedAttachmentsKey -C/data/-/kCVBufferTimeScaleKey -C/data/-/kCVBufferTimeValueKey -C/data/-/kCVImageBufferCGColorSpaceKey -C/data/-/kCVImageBufferChromaLocation_Bottom -C/data/-/kCVImageBufferChromaLocation_BottomLeft -C/data/-/kCVImageBufferChromaLocation_Center -C/data/-/kCVImageBufferChromaLocation_DV420 -C/data/-/kCVImageBufferChromaLocation_Left -C/data/-/kCVImageBufferChromaLocation_Top -C/data/-/kCVImageBufferChromaLocation_TopLeft -C/data/-/kCVImageBufferChromaLocationBottomFieldKey -C/data/-/kCVImageBufferChromaLocationTopFieldKey -C/data/-/kCVImageBufferChromaSubsampling_411 -C/data/-/kCVImageBufferChromaSubsampling_420 -C/data/-/kCVImageBufferChromaSubsampling_422 -C/data/-/kCVImageBufferChromaSubsamplingKey -C/data/-/kCVImageBufferCleanApertureHeightKey -C/data/-/kCVImageBufferCleanApertureHorizontalOffsetKey -C/data/-/kCVImageBufferCleanApertureKey -C/data/-/kCVImageBufferCleanApertureVerticalOffsetKey -C/data/-/kCVImageBufferCleanApertureWidthKey -C/data/-/kCVImageBufferColorPrimaries_EBU_3213 -C/data/-/kCVImageBufferColorPrimaries_ITU_R_709_2 -C/data/-/kCVImageBufferColorPrimaries_SMPTE_C -C/data/-/kCVImageBufferColorPrimariesKey -C/data/-/kCVImageBufferDisplayDimensionsKey -C/data/-/kCVImageBufferDisplayHeightKey -C/data/-/kCVImageBufferDisplayWidthKey -C/data/-/kCVImageBufferFieldCountKey -C/data/-/kCVImageBufferFieldDetailKey -C/data/-/kCVImageBufferFieldDetailSpatialFirstLineEarly -C/data/-/kCVImageBufferFieldDetailSpatialFirstLineLate -C/data/-/kCVImageBufferFieldDetailTemporalBottomFirst -C/data/-/kCVImageBufferFieldDetailTemporalTopFirst -C/data/-/kCVImageBufferGammaLevelKey -C/data/-/kCVImageBufferPixelAspectRatioHorizontalSpacingKey -C/data/-/kCVImageBufferPixelAspectRatioKey -C/data/-/kCVImageBufferPixelAspectRatioVerticalSpacingKey -C/data/-/kCVImageBufferPreferredCleanApertureKey -C/data/-/kCVImageBufferTransferFunction_EBU_3213 -C/data/-/kCVImageBufferTransferFunction_ITU_R_709_2 -C/data/-/kCVImageBufferTransferFunction_SMPTE_240M_1995 -C/data/-/kCVImageBufferTransferFunction_SMPTE_C -C/data/-/kCVImageBufferTransferFunction_UseGamma -C/data/-/kCVImageBufferTransferFunctionKey -C/data/-/kCVImageBufferYCbCrMatrix_ITU_R_601_4 -C/data/-/kCVImageBufferYCbCrMatrix_ITU_R_709_2 -C/data/-/kCVImageBufferYCbCrMatrix_SMPTE_240M_1995 -C/data/-/kCVImageBufferYCbCrMatrixKey -C/data/-/kCVIndefiniteTime -C/data/-/kCVOpenGLBufferHeight -C/data/-/kCVOpenGLBufferInternalFormat -C/data/-/kCVOpenGLBufferMaximumMipmapLevel -C/data/-/kCVOpenGLBufferPoolMaximumBufferAgeKey -C/data/-/kCVOpenGLBufferPoolMinimumBufferCountKey -C/data/-/kCVOpenGLBufferTarget -C/data/-/kCVOpenGLBufferWidth -C/data/-/kCVPixelBufferBytesPerRowAlignmentKey -C/data/-/kCVPixelBufferCGBitmapContextCompatibilityKey -C/data/-/kCVPixelBufferCGImageCompatibilityKey -C/data/-/kCVPixelBufferExtendedPixelsBottomKey -C/data/-/kCVPixelBufferExtendedPixelsLeftKey -C/data/-/kCVPixelBufferExtendedPixelsRightKey -C/data/-/kCVPixelBufferExtendedPixelsTopKey -C/data/-/kCVPixelBufferHeightKey -C/data/-/kCVPixelBufferIOSurfacePropertiesKey -C/econst/-/kCVPixelBufferLock_ReadOnly -C/data/-/kCVPixelBufferMemoryAllocatorKey -C/data/-/kCVPixelBufferOpenGLCompatibilityKey -C/data/-/kCVPixelBufferPixelFormatTypeKey -C/data/-/kCVPixelBufferPlaneAlignmentKey -C/data/-/kCVPixelBufferPoolMaximumBufferAgeKey -C/data/-/kCVPixelBufferPoolMinimumBufferCountKey -C/data/-/kCVPixelBufferWidthKey -C/data/-/kCVPixelFormatBitsPerBlock -C/data/-/kCVPixelFormatBlackBlock -C/data/-/kCVPixelFormatBlockHeight -C/data/-/kCVPixelFormatBlockHorizontalAlignment -C/data/-/kCVPixelFormatBlockVerticalAlignment -C/data/-/kCVPixelFormatBlockWidth -C/data/-/kCVPixelFormatCGBitmapContextCompatibility -C/data/-/kCVPixelFormatCGBitmapInfo -C/data/-/kCVPixelFormatCGImageCompatibility -C/data/-/kCVPixelFormatCodecType -C/data/-/kCVPixelFormatConstant -C/data/-/kCVPixelFormatFillExtendedPixelsCallback -C/data/-/kCVPixelFormatFourCC -C/data/-/kCVPixelFormatHorizontalSubsampling -C/data/-/kCVPixelFormatName -C/data/-/kCVPixelFormatOpenGLCompatibility -C/data/-/kCVPixelFormatOpenGLFormat -C/data/-/kCVPixelFormatOpenGLInternalFormat -C/data/-/kCVPixelFormatOpenGLType -C/data/-/kCVPixelFormatPlanes -C/data/-/kCVPixelFormatQDCompatibility -C/econst/-/kCVPixelFormatType_16BE555 -C/econst/-/kCVPixelFormatType_16BE565 -C/econst/-/kCVPixelFormatType_16Gray -C/econst/-/kCVPixelFormatType_16LE555 -C/econst/-/kCVPixelFormatType_16LE5551 -C/econst/-/kCVPixelFormatType_16LE565 -C/econst/-/kCVPixelFormatType_1IndexedGray_WhiteIsZero -C/econst/-/kCVPixelFormatType_1Monochrome -C/econst/-/kCVPixelFormatType_24BGR -C/econst/-/kCVPixelFormatType_24RGB -C/econst/-/kCVPixelFormatType_2Indexed -C/econst/-/kCVPixelFormatType_2IndexedGray_WhiteIsZero -C/econst/-/kCVPixelFormatType_32ABGR -C/econst/-/kCVPixelFormatType_32AlphaGray -C/econst/-/kCVPixelFormatType_32ARGB -C/econst/-/kCVPixelFormatType_32BGRA -C/econst/-/kCVPixelFormatType_32RGBA -C/econst/-/kCVPixelFormatType_420YpCbCr8Planar -C/econst/-/kCVPixelFormatType_422YpCbCr10 -C/econst/-/kCVPixelFormatType_422YpCbCr16 -C/econst/-/kCVPixelFormatType_422YpCbCr8 -C/econst/-/kCVPixelFormatType_422YpCbCr_4A_8BiPlanar -C/econst/-/kCVPixelFormatType_4444YpCbCrA8 -C/econst/-/kCVPixelFormatType_4444YpCbCrA8R -C/econst/-/kCVPixelFormatType_444YpCbCr10 -C/econst/-/kCVPixelFormatType_444YpCbCr8 -C/econst/-/kCVPixelFormatType_48RGB -C/econst/-/kCVPixelFormatType_4Indexed -C/econst/-/kCVPixelFormatType_4IndexedGray_WhiteIsZero -C/econst/-/kCVPixelFormatType_64ARGB -C/econst/-/kCVPixelFormatType_8Indexed -C/econst/-/kCVPixelFormatType_8IndexedGray_WhiteIsZero -C/data/-/kCVPixelFormatVerticalSubsampling -C/econst/-/kCVReturnAllocationFailed -C/econst/-/kCVReturnDisplayLinkAlreadyRunning -C/econst/-/kCVReturnDisplayLinkCallbacksNotSet -C/econst/-/kCVReturnDisplayLinkNotRunning -C/econst/-/kCVReturnError -C/econst/-/kCVReturnFirst -C/econst/-/kCVReturnInvalidArgument -C/econst/-/kCVReturnInvalidDisplay -C/econst/-/kCVReturnInvalidPixelBufferAttributes -C/econst/-/kCVReturnInvalidPixelFormat -C/econst/-/kCVReturnInvalidPoolAttributes -C/econst/-/kCVReturnInvalidSize -C/econst/-/kCVReturnLast -C/econst/-/kCVReturnPixelBufferNotOpenGLCompatible -C/econst/-/kCVReturnPoolAllocationFailed -C/econst/-/kCVReturnSuccess -C/econst/-/kCVSMPTETimeRunning -C/econst/-/kCVSMPTETimeType24 -C/econst/-/kCVSMPTETimeType25 -C/econst/-/kCVSMPTETimeType2997 -C/econst/-/kCVSMPTETimeType2997Drop -C/econst/-/kCVSMPTETimeType30 -C/econst/-/kCVSMPTETimeType30Drop -C/econst/-/kCVSMPTETimeType5994 -C/econst/-/kCVSMPTETimeType60 -C/econst/-/kCVSMPTETimeValid -C/econst/-/kCVTimeIsIndefinite -C/econst/-/kCVTimeStampBottomField -C/econst/-/kCVTimeStampHostTimeValid -C/econst/-/kCVTimeStampIsInterlaced -C/econst/-/kCVTimeStampRateScalarValid -C/econst/-/kCVTimeStampSMPTETimeValid -C/econst/-/kCVTimeStampTopField -C/econst/-/kCVTimeStampVideoHostTimeValid -C/econst/-/kCVTimeStampVideoRefreshPeriodValid -C/econst/-/kCVTimeStampVideoTimeValid -C/data/-/kCVZeroTime -C/data/-/kCWAssocKey8021XProfile -C/data/-/kCWAssocKeyPassphrase -C/data/-/kCWBSSIDDidChangeNotification -C/data/-/kCWCountryCodeDidChangeNotification -C/data/-/kCWErrorDomain -C/data/-/kCWIBSSKeyChannel -C/data/-/kCWIBSSKeyPassphrase -C/data/-/kCWIBSSKeySSID -C/data/-/kCWLinkDidChangeNotification -C/data/-/kCWModeDidChangeNotification -C/data/-/kCWPowerDidChangeNotification -C/data/-/kCWScanKeyBSSID -C/data/-/kCWScanKeyDwellTime -C/data/-/kCWScanKeyMerge -C/data/-/kCWScanKeyRestTime -C/data/-/kCWScanKeyScanType -C/data/-/kCWScanKeySSID -C/data/-/kCWSSIDDidChangeNotification -C/econst/DADiskClaimOptions/kDADiskClaimOptionDefault -C/data/-/kDADiskDescriptionBusNameKey -C/data/-/kDADiskDescriptionBusPathKey -C/data/-/kDADiskDescriptionDeviceGUIDKey -C/data/-/kDADiskDescriptionDeviceInternalKey -C/data/-/kDADiskDescriptionDeviceModelKey -C/data/-/kDADiskDescriptionDevicePathKey -C/data/-/kDADiskDescriptionDeviceProtocolKey -C/data/-/kDADiskDescriptionDeviceRevisionKey -C/data/-/kDADiskDescriptionDeviceUnitKey -C/data/-/kDADiskDescriptionDeviceVendorKey -C/data/-/kDADiskDescriptionMatchMediaUnformatted -C/data/-/kDADiskDescriptionMatchMediaWhole -C/data/-/kDADiskDescriptionMatchVolumeMountable -C/data/-/kDADiskDescriptionMatchVolumeUnrecognized -C/data/-/kDADiskDescriptionMediaBlockSizeKey -C/data/-/kDADiskDescriptionMediaBSDMajorKey -C/data/-/kDADiskDescriptionMediaBSDMinorKey -C/data/-/kDADiskDescriptionMediaBSDNameKey -C/data/-/kDADiskDescriptionMediaBSDUnitKey -C/data/-/kDADiskDescriptionMediaContentKey -C/data/-/kDADiskDescriptionMediaEjectableKey -C/data/-/kDADiskDescriptionMediaIconKey -C/data/-/kDADiskDescriptionMediaKindKey -C/data/-/kDADiskDescriptionMediaLeafKey -C/data/-/kDADiskDescriptionMediaNameKey -C/data/-/kDADiskDescriptionMediaPathKey -C/data/-/kDADiskDescriptionMediaRemovableKey -C/data/-/kDADiskDescriptionMediaSizeKey -C/data/-/kDADiskDescriptionMediaTypeKey -C/data/-/kDADiskDescriptionMediaUUIDKey -C/data/-/kDADiskDescriptionMediaWholeKey -C/data/-/kDADiskDescriptionMediaWritableKey -C/data/-/kDADiskDescriptionVolumeKindKey -C/data/-/kDADiskDescriptionVolumeMountableKey -C/data/-/kDADiskDescriptionVolumeNameKey -C/data/-/kDADiskDescriptionVolumeNetworkKey -C/data/-/kDADiskDescriptionVolumePathKey -C/data/-/kDADiskDescriptionVolumeUUIDKey -C/data/-/kDADiskDescriptionWatchVolumeName -C/data/-/kDADiskDescriptionWatchVolumePath -C/econst/DADiskEjectOptions/kDADiskEjectOptionDefault -C/econst/DADiskMountOptions/kDADiskMountOptionDefault -C/econst/DADiskMountOptions/kDADiskMountOptionWhole -C/econst/DADiskOptions/kDADiskOptionDefault -C/econst/DADiskOptions/kDADiskOptionEjectUponLogout -C/econst/DADiskOptions/kDADiskOptionMountAutomatic -C/econst/DADiskOptions/kDADiskOptionMountAutomaticNoDefer -C/econst/DADiskOptions/kDADiskOptionPrivate -C/econst/DADiskRenameOptions/kDADiskRenameOptionDefault -C/econst/DADiskUnmountOptions/kDADiskUnmountOptionDefault -C/econst/DADiskUnmountOptions/kDADiskUnmountOptionForce -C/econst/DADiskUnmountOptions/kDADiskUnmountOptionWhole -C/econst/-/kDataBrowserAlwaysExtendSelection -C/econst/-/kDataBrowserAttributeColumnViewResizeWindow -C/econst/-/kDataBrowserAttributeListViewAlternatingRowColors -C/econst/-/kDataBrowserAttributeListViewDrawColumnDividers -C/econst/-/kDataBrowserAttributeNone -C/econst/-/kDataBrowserCheckboxTriState -C/econst/-/kDataBrowserCheckboxType -C/econst/-/kDataBrowserClientPropertyFlagsMask -C/econst/-/kDataBrowserClientPropertyFlagsOffset -C/econst/-/kDataBrowserCmdTogglesSelection -C/econst/-/kDataBrowserColumnView -C/econst/-/kDataBrowserColumnViewPreviewProperty -C/econst/-/kDataBrowserContainerAliasIDProperty -C/econst/-/kDataBrowserContainerClosed -C/econst/-/kDataBrowserContainerClosing -C/econst/-/kDataBrowserContainerIsClosableProperty -C/econst/-/kDataBrowserContainerIsOpen -C/econst/-/kDataBrowserContainerIsOpenableProperty -C/econst/-/kDataBrowserContainerIsSortableProperty -C/econst/-/kDataBrowserContainerOpened -C/econst/-/kDataBrowserContainerSorted -C/econst/-/kDataBrowserContainerSorting -C/econst/-/kDataBrowserContentHit -C/econst/-/kDataBrowserCustomType -C/econst/-/kDataBrowserDateTimeDateOnly -C/econst/-/kDataBrowserDateTimeRelative -C/econst/-/kDataBrowserDateTimeSecondsToo -C/econst/-/kDataBrowserDateTimeTimeOnly -C/econst/-/kDataBrowserDateTimeType -C/econst/-/kDataBrowserDefaultPropertyFlags -C/econst/-/kDataBrowserDoNotTruncateText -C/econst/-/kDataBrowserDragSelect -C/econst/-/kDataBrowserEditMsgClear -C/econst/-/kDataBrowserEditMsgCopy -C/econst/-/kDataBrowserEditMsgCut -C/econst/-/kDataBrowserEditMsgPaste -C/econst/-/kDataBrowserEditMsgRedo -C/econst/-/kDataBrowserEditMsgSelectAll -C/econst/-/kDataBrowserEditMsgUndo -C/econst/-/kDataBrowserEditStarted -C/econst/-/kDataBrowserEditStopped -C/econst/-/kDataBrowserIconAndTextType -C/econst/-/kDataBrowserIconType -C/econst/-/kDataBrowserItemAdded -C/econst/-/kDataBrowserItemAnyState -C/econst/-/kDataBrowserItemDeselected -C/econst/-/kDataBrowserItemDoubleClicked -C/econst/-/kDataBrowserItemIsActiveProperty -C/econst/-/kDataBrowserItemIsContainerProperty -C/econst/-/kDataBrowserItemIsDragTarget -C/econst/-/kDataBrowserItemIsEditableProperty -C/econst/-/kDataBrowserItemIsSelectableProperty -C/econst/-/kDataBrowserItemIsSelected -C/econst/-/kDataBrowserItemNoProperty -C/econst/-/kDataBrowserItemNoState -C/econst/-/kDataBrowserItemParentContainerProperty -C/econst/-/kDataBrowserItemRemoved -C/econst/-/kDataBrowserItemsAdd -C/econst/-/kDataBrowserItemsAssign -C/econst/-/kDataBrowserItemSelected -C/econst/-/kDataBrowserItemSelfIdentityProperty -C/econst/-/kDataBrowserItemsRemove -C/econst/-/kDataBrowserItemsToggle -C/econst/-/kDataBrowserLatestCallbacks -C/econst/-/kDataBrowserLatestCustomCallbacks -C/econst/-/kDataBrowserListView -C/econst/-/kDataBrowserListViewAppendColumn -C/econst/-/kDataBrowserListViewDefaultColumnFlags -C/econst/-/kDataBrowserListViewLatestHeaderDesc -C/econst/-/kDataBrowserListViewMovableColumn -C/econst/-/kDataBrowserListViewNoGapForIconInHeaderButton -C/econst/-/kDataBrowserListViewSelectionColumn -C/econst/-/kDataBrowserListViewSortableColumn -C/econst/-/kDataBrowserListViewTypeSelectColumn -C/econst/-/kDataBrowserMetricCellContentInset -C/econst/-/kDataBrowserMetricDisclosureColumnEdgeInset -C/econst/-/kDataBrowserMetricDisclosureColumnPerDepthGap -C/econst/-/kDataBrowserMetricDisclosureTriangleAndContentGap -C/econst/-/kDataBrowserMetricIconAndTextGap -C/econst/-/kDataBrowserMetricLast -C/econst/-/kDataBrowserNeverEmptySelectionSet -C/econst/-/kDataBrowserNoDisjointSelection -C/econst/-/kDataBrowserNoItem -C/econst/-/kDataBrowserNothingHit -C/econst/-/kDataBrowserNoView -C/econst/-/kDataBrowserOrderDecreasing -C/econst/-/kDataBrowserOrderIncreasing -C/econst/-/kDataBrowserOrderUndefined -C/econst/-/kDataBrowserPopupMenuButtonless -C/econst/-/kDataBrowserPopupMenuType -C/econst/-/kDataBrowserProgressBarType -C/econst/-/kDataBrowserPropertyCheckboxPart -C/econst/-/kDataBrowserPropertyContentPart -C/econst/-/kDataBrowserPropertyDisclosurePart -C/econst/-/kDataBrowserPropertyEnclosingPart -C/econst/-/kDataBrowserPropertyFlagsMask -C/econst/-/kDataBrowserPropertyFlagsOffset -C/econst/-/kDataBrowserPropertyIconPart -C/econst/-/kDataBrowserPropertyIsEditable -C/econst/-/kDataBrowserPropertyIsMutable -C/econst/-/kDataBrowserPropertyModificationFlags -C/econst/-/kDataBrowserPropertyProgressBarPart -C/econst/-/kDataBrowserPropertyRelevanceRankPart -C/econst/-/kDataBrowserPropertySliderPart -C/econst/-/kDataBrowserPropertyTextPart -C/econst/-/kDataBrowserRelativeDateTime -C/econst/-/kDataBrowserRelevanceRankType -C/econst/-/kDataBrowserResetSelection -C/econst/-/kDataBrowserRevealAndCenterInView -C/econst/-/kDataBrowserRevealOnly -C/econst/-/kDataBrowserRevealWithoutSelecting -C/econst/-/kDataBrowserSelectionAnchorDown -C/econst/-/kDataBrowserSelectionAnchorLeft -C/econst/-/kDataBrowserSelectionAnchorRight -C/econst/-/kDataBrowserSelectionAnchorUp -C/econst/-/kDataBrowserSelectionSetChanged -C/econst/-/kDataBrowserSelectOnlyOne -C/econst/-/kDataBrowserSliderDownwardThumb -C/econst/-/kDataBrowserSliderPlainThumb -C/econst/-/kDataBrowserSliderType -C/econst/-/kDataBrowserSliderUpwardThumb -C/econst/-/kDataBrowserStopTracking -C/econst/-/kDataBrowserTableViewFillHilite -C/econst/-/kDataBrowserTableViewLastColumn -C/econst/-/kDataBrowserTableViewMinimalHilite -C/econst/-/kDataBrowserTableViewSelectionColumn -C/econst/-/kDataBrowserTargetChanged -C/econst/-/kDataBrowserTextType -C/econst/-/kDataBrowserTruncateTextAtEnd -C/econst/-/kDataBrowserTruncateTextAtStart -C/econst/-/kDataBrowserTruncateTextMiddle -C/econst/-/kDataBrowserUniversalPropertyFlags -C/econst/-/kDataBrowserUniversalPropertyFlagsMask -C/econst/-/kDataBrowserUserStateChanged -C/econst/-/kDataBrowserUserToggledContainer -C/econst/-/kDataBrowserViewSpecificFlagsMask -C/econst/-/kDataBrowserViewSpecificFlagsOffset -C/econst/-/kDataBrowserViewSpecificPropertyFlags -C/econst/-/kDataHCanRead -C/econst/-/kDataHCanStreamingWrite -C/econst/-/kDataHCanWrite -C/econst/-/kDataHSpecialRead -C/econst/-/kDataHSpecialReadFile -C/econst/-/kDataHSpecialWrite -C/econst/-/kDefaultCMMSignature -C/econst/-/kDefaultPrivsFromParent -C/econst/-/kDeviceToPCS -C/econst/-/kDHCAST128UAMStr -C/econst/-/kDHX2UAMStr -C/econst/-/kDisconnectNotifyMask -C/macro/-/kDNSServiceInterfaceIndexAny -C/macro/-/kDNSServiceInterfaceIndexLocalOnly -C/macro/-/kDNSServiceInterfaceIndexUnicast -C/macro/-/kDNSServiceMaxDomainName -C/macro/-/kDNSServiceMaxServiceName -C/macro/-/kDNSServiceProperty_DaemonVersion -C/econst/-/kDontAllowSavePwd -C++/clm/IOKernelDebugger/kdpReceiveDispatcher -C++/clm/IOKernelDebugger/kdpTransmitDispatcher -C/data/-/kDRAbstractFile -C/data/-/kDRAccessDate -C/data/-/kDRAllFilesystems -C/data/-/kDRApplicationIdentifier -C/data/-/kDRAttributeModificationDate -C/data/-/kDRAudioFourChannelKey -C/data/-/kDRAudioPreEmphasisKey -C/data/-/kDRBackupDate -C/data/-/kDRBibliographicFile -C/data/-/kDRBlockSize -C/data/-/kDRBlockSizeKey -C/data/-/kDRBlockTypeKey -C/data/-/kDRBufferZone1DataKey -C/data/-/kDRBurnAppendableKey -C/data/-/kDRBurnCompletionActionEject -C/data/-/kDRBurnCompletionActionKey -C/data/-/kDRBurnCompletionActionMount -C/data/-/kDRBurnDoubleLayerL0DataZoneBlocksKey -C/data/-/kDRBurnFailureActionEject -C/data/-/kDRBurnFailureActionKey -C/data/-/kDRBurnFailureActionNone -C/data/-/kDRBurnKey -C/data/-/kDRBurnOverwriteDiscKey -C/data/-/kDRBurnRequestedSpeedKey -C/data/-/kDRBurnStatusChangedNotification -C/data/-/kDRBurnStrategyBDDAO -C/data/-/kDRBurnStrategyCDSAO -C/data/-/kDRBurnStrategyCDTAO -C/data/-/kDRBurnStrategyDVDDAO -C/data/-/kDRBurnStrategyIsRequiredKey -C/data/-/kDRBurnStrategyKey -C/data/-/kDRBurnTestingKey -C/data/-/kDRBurnUnderrunProtectionKey -C/data/-/kDRBurnVerifyDiscKey -C/data/-/kDRCDTextArrangerKey -C/data/-/kDRCDTextCFStringEncodingKey -C/data/-/kDRCDTextCharacterCodeKey -C/data/-/kDRCDTextClosedKey -C/data/-/kDRCDTextComposerKey -C/data/-/kDRCDTextCopyrightAssertedForNamesKey -C/data/-/kDRCDTextCopyrightAssertedForSpecialMessagesKey -C/data/-/kDRCDTextCopyrightAssertedForTitlesKey -C/data/-/kDRCDTextDiscIdentKey -C/data/-/kDRCDTextGenreCodeKey -C/data/-/kDRCDTextGenreKey -C/data/-/kDRCDTextKey -C/data/-/kDRCDTextLanguageKey -C/data/-/kDRCDTextMCNISRCKey -C/data/-/kDRCDTextPerformerKey -C/data/-/kDRCDTextSizeKey -C/data/-/kDRCDTextSongwriterKey -C/data/-/kDRCDTextSpecialMessageKey -C/data/-/kDRCDTextTitleKey -C/data/-/kDRCDTextTOC2Key -C/data/-/kDRCDTextTOCKey -C/data/-/kDRContentModificationDate -C/data/-/kDRCopyrightFile -C/data/-/kDRCreationDate -C/data/-/kDRDataFormKey -C/data/-/kDRDataPreparer -C/data/-/kDRDefaultDate -C/data/-/kDRDeviceAppearedNotification -C/data/-/kDRDeviceBurnSpeedBD1x -C/data/-/kDRDeviceBurnSpeedCD1x -C/data/-/kDRDeviceBurnSpeedDVD1x -C/data/-/kDRDeviceBurnSpeedHDDVD1x -C/data/-/kDRDeviceBurnSpeedMax -C/data/-/kDRDeviceBurnSpeedsKey -C/data/-/kDRDeviceCanTestWriteCDKey -C/data/-/kDRDeviceCanTestWriteDVDKey -C/data/-/kDRDeviceCanUnderrunProtectCDKey -C/data/-/kDRDeviceCanUnderrunProtectDVDKey -C/data/-/kDRDeviceCanWriteBDKey -C/data/-/kDRDeviceCanWriteBDREKey -C/data/-/kDRDeviceCanWriteBDRKey -C/data/-/kDRDeviceCanWriteCDKey -C/data/-/kDRDeviceCanWriteCDRawKey -C/data/-/kDRDeviceCanWriteCDRKey -C/data/-/kDRDeviceCanWriteCDRWKey -C/data/-/kDRDeviceCanWriteCDSAOKey -C/data/-/kDRDeviceCanWriteCDTAOKey -C/data/-/kDRDeviceCanWriteCDTextKey -C/data/-/kDRDeviceCanWriteDVDDAOKey -C/data/-/kDRDeviceCanWriteDVDKey -C/data/-/kDRDeviceCanWriteDVDPlusRDoubleLayerKey -C/data/-/kDRDeviceCanWriteDVDPlusRKey -C/data/-/kDRDeviceCanWriteDVDPlusRWDoubleLayerKey -C/data/-/kDRDeviceCanWriteDVDPlusRWKey -C/data/-/kDRDeviceCanWriteDVDRAMKey -C/data/-/kDRDeviceCanWriteDVDRDualLayerKey -C/data/-/kDRDeviceCanWriteDVDRKey -C/data/-/kDRDeviceCanWriteDVDRWDualLayerKey -C/data/-/kDRDeviceCanWriteDVDRWKey -C/data/-/kDRDeviceCanWriteHDDVDKey -C/data/-/kDRDeviceCanWriteHDDVDRAMKey -C/data/-/kDRDeviceCanWriteHDDVDRDualLayerKey -C/data/-/kDRDeviceCanWriteHDDVDRKey -C/data/-/kDRDeviceCanWriteHDDVDRWDualLayerKey -C/data/-/kDRDeviceCanWriteHDDVDRWKey -C/data/-/kDRDeviceCanWriteIndexPointsKey -C/data/-/kDRDeviceCanWriteISRCKey -C/data/-/kDRDeviceCanWriteKey -C/data/-/kDRDeviceCurrentWriteSpeedKey -C/data/-/kDRDeviceDisappearedNotification -C/data/-/kDRDeviceFirmwareRevisionKey -C/data/-/kDRDeviceIORegistryEntryPathKey -C/data/-/kDRDeviceIsBusyKey -C/data/-/kDRDeviceIsTrayOpenKey -C/data/-/kDRDeviceLoadingMechanismCanEjectKey -C/data/-/kDRDeviceLoadingMechanismCanInjectKey -C/data/-/kDRDeviceLoadingMechanismCanOpenKey -C/data/-/kDRDeviceMaximumWriteSpeedKey -C/data/-/kDRDeviceMediaBlocksFreeKey -C/data/-/kDRDeviceMediaBlocksOverwritableKey -C/data/-/kDRDeviceMediaBlocksUsedKey -C/data/-/kDRDeviceMediaBSDNameKey -C/data/-/kDRDeviceMediaClassBD -C/data/-/kDRDeviceMediaClassCD -C/data/-/kDRDeviceMediaClassDVD -C/data/-/kDRDeviceMediaClassHDDVD -C/data/-/kDRDeviceMediaClassKey -C/data/-/kDRDeviceMediaClassUnknown -C/data/-/kDRDeviceMediaDoubleLayerL0DataZoneBlocksKey -C/data/-/kDRDeviceMediaInfoKey -C/data/-/kDRDeviceMediaIsAppendableKey -C/data/-/kDRDeviceMediaIsBlankKey -C/data/-/kDRDeviceMediaIsErasableKey -C/data/-/kDRDeviceMediaIsOverwritableKey -C/data/-/kDRDeviceMediaIsReservedKey -C/data/-/kDRDeviceMediaSessionCountKey -C/data/-/kDRDeviceMediaStateInTransition -C/data/-/kDRDeviceMediaStateKey -C/data/-/kDRDeviceMediaStateMediaPresent -C/data/-/kDRDeviceMediaStateNone -C/data/-/kDRDeviceMediaTrackCountKey -C/data/-/kDRDeviceMediaTypeBDR -C/data/-/kDRDeviceMediaTypeBDRE -C/data/-/kDRDeviceMediaTypeBDROM -C/data/-/kDRDeviceMediaTypeCDR -C/data/-/kDRDeviceMediaTypeCDROM -C/data/-/kDRDeviceMediaTypeCDRW -C/data/-/kDRDeviceMediaTypeDVDPlusR -C/data/-/kDRDeviceMediaTypeDVDPlusRDoubleLayer -C/data/-/kDRDeviceMediaTypeDVDPlusRW -C/data/-/kDRDeviceMediaTypeDVDPlusRWDoubleLayer -C/data/-/kDRDeviceMediaTypeDVDR -C/data/-/kDRDeviceMediaTypeDVDRAM -C/data/-/kDRDeviceMediaTypeDVDRDualLayer -C/data/-/kDRDeviceMediaTypeDVDROM -C/data/-/kDRDeviceMediaTypeDVDRW -C/data/-/kDRDeviceMediaTypeDVDRWDualLayer -C/data/-/kDRDeviceMediaTypeHDDVDR -C/data/-/kDRDeviceMediaTypeHDDVDRAM -C/data/-/kDRDeviceMediaTypeHDDVDRDualLayer -C/data/-/kDRDeviceMediaTypeHDDVDROM -C/data/-/kDRDeviceMediaTypeHDDVDRW -C/data/-/kDRDeviceMediaTypeHDDVDRWDualLayer -C/data/-/kDRDeviceMediaTypeKey -C/data/-/kDRDeviceMediaTypeUnknown -C/data/-/kDRDevicePhysicalInterconnectATAPI -C/data/-/kDRDevicePhysicalInterconnectFibreChannel -C/data/-/kDRDevicePhysicalInterconnectFireWire -C/data/-/kDRDevicePhysicalInterconnectKey -C/data/-/kDRDevicePhysicalInterconnectLocationExternal -C/data/-/kDRDevicePhysicalInterconnectLocationInternal -C/data/-/kDRDevicePhysicalInterconnectLocationKey -C/data/-/kDRDevicePhysicalInterconnectLocationUnknown -C/data/-/kDRDevicePhysicalInterconnectSCSI -C/data/-/kDRDevicePhysicalInterconnectUSB -C/data/-/kDRDeviceProductNameKey -C/data/-/kDRDeviceStatusChangedNotification -C/data/-/kDRDeviceSupportLevelAppleShipping -C/data/-/kDRDeviceSupportLevelAppleSupported -C/data/-/kDRDeviceSupportLevelKey -C/data/-/kDRDeviceSupportLevelNone -C/data/-/kDRDeviceSupportLevelUnsupported -C/data/-/kDRDeviceSupportLevelVendorSupported -C/data/-/kDRDeviceTrackInfoKey -C/data/-/kDRDeviceTrackRefsKey -C/data/-/kDRDeviceVendorNameKey -C/data/-/kDRDeviceWriteBufferSizeKey -C/data/-/kDRDeviceWriteCapabilitiesKey -C/data/-/kDRDVDCopyrightInfoKey -C/data/-/kDRDVDTimestampKey -C/data/-/kDREffectiveDate -C/data/-/kDREraseStatusChangedNotification -C/data/-/kDREraseTypeComplete -C/data/-/kDREraseTypeKey -C/data/-/kDREraseTypeQuick -C/data/-/kDRErrorStatusAdditionalSenseStringKey -C/data/-/kDRErrorStatusErrorInfoStringKey -C/data/-/kDRErrorStatusErrorKey -C/data/-/kDRErrorStatusErrorStringKey -C/data/-/kDRErrorStatusKey -C/data/-/kDRErrorStatusSenseCodeStringKey -C/data/-/kDRErrorStatusSenseKey -C/data/-/kDRExpirationDate -C/data/-/kDRFreeBlocksKey -C/data/-/kDRHFSPlus -C/data/-/kDRHFSPlusCatalogNodeID -C/data/-/kDRHFSPlusTextEncodingHint -C/data/-/kDRIndexPointsKey -C/data/-/kDRInvisible -C/data/-/kDRISO9660 -C/data/-/kDRISO9660LevelOne -C/data/-/kDRISO9660LevelTwo -C/data/-/kDRISO9660VersionNumber -C/data/-/kDRISOLevel -C/data/-/kDRISOMacExtensions -C/data/-/kDRISORockRidgeExtensions -C/data/-/kDRJoliet -C/data/-/kDRMacExtendedFinderFlags -C/data/-/kDRMacFileCreator -C/data/-/kDRMacFileType -C/data/-/kDRMacFinderFlags -C/data/-/kDRMacFinderHideExtension -C/data/-/kDRMacIconLocation -C/data/-/kDRMacScrollPosition -C/data/-/kDRMacWindowBounds -C/data/-/kDRMacWindowView -C/data/-/kDRMaxBurnSpeedKey -C/data/-/kDRMediaCatalogNumberKey -C/data/-/kDRNextWritableAddressKey -C/data/-/kDRPosixFileMode -C/data/-/kDRPosixGID -C/data/-/kDRPosixUID -C/data/-/kDRPreGapIsRequiredKey -C/data/-/kDRPreGapLengthKey -C/data/-/kDRPublisher -C/data/-/kDRRecordingDate -C/data/-/kDRRefConCFTypeCallbacks -C/data/-/kDRSCMSCopyrightFree -C/data/-/kDRSCMSCopyrightProtectedCopy -C/data/-/kDRSCMSCopyrightProtectedOriginal -C/data/-/kDRSerialCopyManagementStateKey -C/data/-/kDRSessionFormatKey -C/data/-/kDRSessionNumberKey -C/data/-/kDRStatusCurrentSessionKey -C/data/-/kDRStatusCurrentSpeedKey -C/data/-/kDRStatusCurrentTrackKey -C/data/-/kDRStatusEraseTypeKey -C/data/-/kDRStatusPercentCompleteKey -C/data/-/kDRStatusProgressCurrentKPS -C/data/-/kDRStatusProgressCurrentXFactor -C/data/-/kDRStatusProgressInfoKey -C/data/-/kDRStatusStateDone -C/data/-/kDRStatusStateErasing -C/data/-/kDRStatusStateFailed -C/data/-/kDRStatusStateFinishing -C/data/-/kDRStatusStateKey -C/data/-/kDRStatusStateNone -C/data/-/kDRStatusStatePreparing -C/data/-/kDRStatusStateSessionClose -C/data/-/kDRStatusStateSessionOpen -C/data/-/kDRStatusStateTrackClose -C/data/-/kDRStatusStateTrackOpen -C/data/-/kDRStatusStateTrackWrite -C/data/-/kDRStatusStateVerifying -C/data/-/kDRStatusTotalSessionsKey -C/data/-/kDRStatusTotalTracksKey -C/data/-/kDRSubchannelDataFormKey -C/data/-/kDRSubchannelDataFormNone -C/data/-/kDRSubchannelDataFormPack -C/data/-/kDRSubchannelDataFormRaw -C/data/-/kDRSuppressMacSpecificFiles -C/data/-/kDRSynchronousBehaviorKey -C/data/-/kDRSystemIdentifier -C/data/-/kDRTrackIsEmptyKey -C/data/-/kDRTrackISRCKey -C/data/-/kDRTrackLengthKey -C/data/-/kDRTrackModeKey -C/data/-/kDRTrackNumberKey -C/data/-/kDRTrackPacketSizeKey -C/data/-/kDRTrackPacketTypeFixed -C/data/-/kDRTrackPacketTypeKey -C/data/-/kDRTrackPacketTypeVariable -C/data/-/kDRTrackStartAddressKey -C/data/-/kDRTrackTypeClosed -C/data/-/kDRTrackTypeIncomplete -C/data/-/kDRTrackTypeInvisible -C/data/-/kDRTrackTypeKey -C/data/-/kDRTrackTypeReserved -C/data/-/kDRUDF -C/data/-/kDRUDFApplicationIdentifierSuffix -C/data/-/kDRUDFExtendedFilePermissions -C/data/-/kDRUDFInterchangeLevel -C/data/-/kDRUDFMaxInterchangeLevel -C/data/-/kDRUDFMaxVolumeSequenceNumber -C/data/-/kDRUDFPrimaryVolumeDescriptorNumber -C/data/-/kDRUDFRealTimeFile -C/data/-/kDRUDFVersion102 -C/data/-/kDRUDFVersion150 -C/data/-/kDRUDFVolumeSequenceNumber -C/data/-/kDRUDFVolumeSetIdentifier -C/data/-/kDRUDFVolumeSetImplementationUse -C/data/-/kDRUDFVolumeSetTimestamp -C/data/-/kDRUDFWriteVersion -C/data/-/kDRVerificationTypeChecksum -C/data/-/kDRVerificationTypeKey -C/data/-/kDRVerificationTypeNone -C/data/-/kDRVerificationTypeProduceAgain -C/data/-/kDRVerificationTypeReceiveData -C/data/-/kDRVolumeCheckedDate -C/data/-/kDRVolumeCreationDate -C/data/-/kDRVolumeEffectiveDate -C/data/-/kDRVolumeExpirationDate -C/data/-/kDRVolumeModificationDate -C/data/-/kDRVolumeSet -C/econst/-/kDS1AttrAdminLimits -C/macro/-/kDS1AttrAdminLimits -C/econst/-/kDS1AttrAdminStatus -C/macro/-/kDS1AttrAdminStatus -C/econst/-/kDS1AttrAlias -C/macro/-/kDS1AttrAlias -C/econst/-/kDS1AttrAliasData -C/macro/-/kDS1AttrAliasData -C/econst/-/kDS1AttrAlternateDatastoreLocation -C/macro/-/kDS1AttrAlternateDatastoreLocation -C/macro/-/kDS1AttrAttrListRefCount -C/macro/-/kDS1AttrAttrListValueRefCount -C/econst/-/kDS1AttrAuthCredential -C/macro/-/kDS1AttrAuthCredential -C/econst/-/kDS1AttrAuthenticationHint -C/macro/-/kDS1AttrAuthenticationHint -C/econst/-/kDS1AttrAuthorityRevocationList -C/macro/-/kDS1AttrAuthorityRevocationList -C/macro/-/kDS1AttrBirthday -C/econst/-/kDS1AttrBootFile -C/macro/-/kDS1AttrBootFile -C/macro/-/kDS1AttrBuildVersion -C/econst/-/kDS1AttrCACertificate -C/macro/-/kDS1AttrCACertificate -C/econst/-/kDS1AttrCapabilities -C/macro/-/kDS1AttrCapabilities -C/macro/-/kDS1AttrCapacity -C/macro/-/kDS1AttrCategory -C/econst/-/kDS1AttrCertificateRevocationList -C/macro/-/kDS1AttrCertificateRevocationList -C/econst/-/kDS1AttrChange -C/macro/-/kDS1AttrChange -C/econst/-/kDS1AttrComment -C/macro/-/kDS1AttrComment -C/econst/-/kDS1AttrComputerAlias -C/macro/-/kDS1AttrConfigAvail -C/macro/-/kDS1AttrConfigFile -C/macro/-/kDS1AttrContactGUID -C/econst/-/kDS1AttrContactPerson -C/macro/-/kDS1AttrContactPerson -C/econst/-/kDS1AttrCopyTimestamp -C/macro/-/kDS1AttrCopyTimestamp -C/macro/-/kDS1AttrCoreFWVersion -C/econst/-/kDS1AttrCreationTimestamp -C/macro/-/kDS1AttrCreationTimestamp -C/econst/-/kDS1AttrCrossCertificatePair -C/macro/-/kDS1AttrCrossCertificatePair -C/econst/-/kDS1AttrCSPSearchPath -C/macro/-/kDS1AttrCSPSearchPath -C/econst/-/kDS1AttrDataStamp -C/macro/-/kDS1AttrDataStamp -C/econst/-/kDS1AttrDateRecordCreated -C/macro/-/kDS1AttrDateRecordCreated -C/macro/-/kDS1AttrDirRefCount -C/econst/-/kDS1AttrDistinguishedName -C/macro/-/kDS1AttrDistinguishedName -C/econst/-/kDS1AttrDNSDomain -C/macro/-/kDS1AttrDNSDomain -C/econst/-/kDS1AttrDNSNameServer -C/macro/-/kDS1AttrDNSNameServer -C/econst/-/kDS1AttrENetAddress -C/macro/-/kDS1AttrENetAddress -C/econst/-/kDS1AttrExpire -C/macro/-/kDS1AttrExpire -C/econst/-/kDS1AttrFirstName -C/macro/-/kDS1AttrFirstName -C/macro/-/kDS1AttrFunctionalState -C/macro/-/kDS1AttrFWVersion -C/econst/-/kDS1AttrGeneratedUID -C/macro/-/kDS1AttrGeneratedUID -C/econst/-/kDS1AttrHomeDirectoryQuota -C/macro/-/kDS1AttrHomeDirectoryQuota -C/econst/-/kDS1AttrHomeDirectorySoftQuota -C/macro/-/kDS1AttrHomeDirectorySoftQuota -C/econst/-/kDS1AttrHomeLocOwner -C/macro/-/kDS1AttrHomeLocOwner -C/econst/-/kDS1AttrInternetAlias -C/macro/-/kDS1AttrInternetAlias -C/econst/-/kDS1AttrKDCConfigData -C/macro/-/kDS1AttrKDCConfigData -C/econst/-/kDS1AttrKerberosRealm -C/macro/-/kDS1AttrKerberosRealm -C/econst/-/kDS1AttrLastName -C/macro/-/kDS1AttrLastName -C/macro/-/kDS1AttrLDAPSearchBaseSuffix -C/econst/-/kDS1AttrLocation -C/macro/-/kDS1AttrLocation -C/econst/-/kDS1AttrLSPSearchPath -C/macro/-/kDS1AttrLSPSearchPath -C/econst/-/kDS1AttrMailAttribute -C/macro/-/kDS1AttrMailAttribute -C/macro/-/kDS1AttrMapGUID -C/econst/-/kDS1AttrMCXFlags -C/macro/-/kDS1AttrMCXFlags -C/econst/-/kDS1AttrMCXSettings -C/macro/-/kDS1AttrMCXSettings -C/macro/-/kDS1AttrMetaAutomountMap -C/econst/-/kDS1AttrMiddleName -C/macro/-/kDS1AttrMiddleName -C/econst/-/kDS1AttrModificationTimestamp -C/macro/-/kDS1AttrModificationTimestamp -C/econst/-/kDS1AttrNeighborhoodAlias -C/econst/-/kDS1AttrNeighborhoodType -C/macro/-/kDS1AttrNeighborhoodType -C/macro/-/kDS1AttrNetworkNumber -C/econst/-/kDS1AttrNetworkView -C/macro/-/kDS1AttrNetworkView -C/econst/-/kDS1AttrNFSHomeDirectory -C/macro/-/kDS1AttrNFSHomeDirectory -C/econst/-/kDS1AttrNodePathXMLPlist -C/macro/-/kDS1AttrNodeRefCount -C/econst/-/kDS1AttrNote -C/macro/-/kDS1AttrNote -C/econst/-/kDS1AttrNSPSearchPath -C/macro/-/kDS1AttrNSPSearchPath -C/macro/-/kDS1AttrNTDomainComputerAccount -C/econst/-/kDS1AttrOriginalNFSHomeDirectory -C/macro/-/kDS1AttrOriginalNFSHomeDirectory -C/econst/-/kDS1AttrOriginalNodeName -C/macro/-/kDS1AttrOriginalNodeName -C/econst/-/kDS1AttrOwner -C/macro/-/kDS1AttrOwner -C/macro/-/kDS1AttrOwnerGUID -C/econst/-/kDS1AttrPassword -C/macro/-/kDS1AttrPassword -C/econst/-/kDS1AttrPasswordPlus -C/macro/-/kDS1AttrPasswordPlus -C/econst/-/kDS1AttrPasswordPolicyOptions -C/macro/-/kDS1AttrPasswordPolicyOptions -C/econst/-/kDS1AttrPasswordServerList -C/macro/-/kDS1AttrPasswordServerList -C/econst/-/kDS1AttrPasswordServerLocation -C/macro/-/kDS1AttrPasswordServerLocation -C/econst/-/kDS1AttrPicture -C/macro/-/kDS1AttrPicture -C/macro/-/kDS1AttrPIDValue -C/macro/-/kDS1AttrPluginIndex -C/econst/-/kDS1AttrPort -C/macro/-/kDS1AttrPort -C/econst/-/kDS1AttrPresetUserIsAdmin -C/macro/-/kDS1AttrPresetUserIsAdmin -C/macro/-/kDS1AttrPrimaryComputerGUID -C/macro/-/kDS1AttrPrimaryComputerList -C/econst/-/kDS1AttrPrimaryGroupID -C/macro/-/kDS1AttrPrimaryGroupID -C/econst/-/kDS1AttrPrimaryNTDomain -C/macro/-/kDS1AttrPrimaryNTDomain -C/econst/-/kDS1AttrPrimaryNTDomainComputerAccount -C/econst/-/kDS1AttrPrinter1284DeviceID -C/macro/-/kDS1AttrPrinter1284DeviceID -C/econst/-/kDS1AttrPrinterLPRHost -C/macro/-/kDS1AttrPrinterLPRHost -C/econst/-/kDS1AttrPrinterLPRQueue -C/macro/-/kDS1AttrPrinterLPRQueue -C/econst/-/kDS1AttrPrinterMakeAndModel -C/macro/-/kDS1AttrPrinterMakeAndModel -C/econst/-/kDS1AttrPrinterType -C/macro/-/kDS1AttrPrinterType -C/econst/-/kDS1AttrPrinterURI -C/macro/-/kDS1AttrPrinterURI -C/econst/-/kDS1AttrPrintServiceInfoText -C/macro/-/kDS1AttrPrintServiceInfoText -C/econst/-/kDS1AttrPrintServiceInfoXML -C/macro/-/kDS1AttrPrintServiceInfoXML -C/econst/-/kDS1AttrPrintServiceUserData -C/macro/-/kDS1AttrPrintServiceUserData -C/macro/-/kDS1AttrProcessName -C/macro/-/kDS1AttrProtocolNumber -C/econst/-/kDS1AttrPwdAgingPolicy -C/macro/-/kDS1AttrPwdAgingPolicy -C/econst/-/kDS1AttrRARA -C/macro/-/kDS1AttrRARA -C/econst/-/kDS1AttrReadOnlyNode -C/macro/-/kDS1AttrReadOnlyNode -C/econst/-/kDS1AttrRealUserID -C/macro/-/kDS1AttrRealUserID -C/econst/-/kDS1AttrRecordImage -C/macro/-/kDS1AttrRecordImage -C/macro/-/kDS1AttrRecRefCount -C/macro/-/kDS1AttrRefNumTableList -C/econst/-/kDS1AttrRelativeDNPrefix -C/macro/-/kDS1AttrRelativeDNPrefix -C/macro/-/kDS1AttrRPCNumber -C/econst/-/kDS1AttrSearchPath -C/macro/-/kDS1AttrSearchPath -C/econst/-/kDS1AttrSearchPolicy -C/macro/-/kDS1AttrSearchPolicy -C/econst/-/kDS1AttrServiceType -C/macro/-/kDS1AttrServiceType -C/econst/-/kDS1AttrSetupAdvertising -C/macro/-/kDS1AttrSetupAdvertising -C/econst/-/kDS1AttrSetupAutoRegister -C/macro/-/kDS1AttrSetupAutoRegister -C/econst/-/kDS1AttrSetupLocation -C/macro/-/kDS1AttrSetupLocation -C/econst/-/kDS1AttrSetupOccupation -C/macro/-/kDS1AttrSetupOccupation -C/econst/-/kDS1AttrSMBAcctFlags -C/macro/-/kDS1AttrSMBAcctFlags -C/econst/-/kDS1AttrSMBGroupRID -C/macro/-/kDS1AttrSMBGroupRID -C/econst/-/kDS1AttrSMBHome -C/macro/-/kDS1AttrSMBHome -C/econst/-/kDS1AttrSMBHomeDrive -C/macro/-/kDS1AttrSMBHomeDrive -C/econst/-/kDS1AttrSMBKickoffTime -C/macro/-/kDS1AttrSMBKickoffTime -C/econst/-/kDS1AttrSMBLogoffTime -C/macro/-/kDS1AttrSMBLogoffTime -C/econst/-/kDS1AttrSMBLogonTime -C/macro/-/kDS1AttrSMBLogonTime -C/econst/-/kDS1AttrSMBPrimaryGroupSID -C/macro/-/kDS1AttrSMBPrimaryGroupSID -C/econst/-/kDS1AttrSMBProfilePath -C/macro/-/kDS1AttrSMBProfilePath -C/econst/-/kDS1AttrSMBPWDLastSet -C/macro/-/kDS1AttrSMBPWDLastSet -C/econst/-/kDS1AttrSMBRID -C/macro/-/kDS1AttrSMBRID -C/econst/-/kDS1AttrSMBScriptPath -C/macro/-/kDS1AttrSMBScriptPath -C/econst/-/kDS1AttrSMBSID -C/macro/-/kDS1AttrSMBSID -C/econst/-/kDS1AttrSMBUserWorkstations -C/macro/-/kDS1AttrSMBUserWorkstations -C/econst/-/kDS1AttrTimePackage -C/macro/-/kDS1AttrTimePackage -C/econst/-/kDS1AttrTimeToLive -C/macro/-/kDS1AttrTimeToLive -C/macro/-/kDS1AttrTotalRefCount -C/econst/-/kDS1AttrTotalSize -C/macro/-/kDS1AttrTotalSize -C/econst/-/kDS1AttrUniqueID -C/macro/-/kDS1AttrUniqueID -C/econst/-/kDS1AttrUserCertificate -C/macro/-/kDS1AttrUserCertificate -C/econst/-/kDS1AttrUserPKCS12Data -C/macro/-/kDS1AttrUserPKCS12Data -C/econst/-/kDS1AttrUserShell -C/macro/-/kDS1AttrUserShell -C/econst/-/kDS1AttrUserSMIMECertificate -C/macro/-/kDS1AttrUserSMIMECertificate -C/macro/-/kDS1AttrVersion -C/econst/-/kDS1AttrVFSDumpFreq -C/macro/-/kDS1AttrVFSDumpFreq -C/econst/-/kDS1AttrVFSLinkDir -C/macro/-/kDS1AttrVFSLinkDir -C/econst/-/kDS1AttrVFSPassNo -C/macro/-/kDS1AttrVFSPassNo -C/econst/-/kDS1AttrVFSType -C/macro/-/kDS1AttrVFSType -C/macro/-/kDS1AttrWeblogURI -C/econst/-/kDS1AttrXMLPlist -C/macro/-/kDS1AttrXMLPlist -C/macro/-/kDS1StandardAttrHomeLocOwner -C/econst/-/kDSAttributesAll -C/macro/-/kDSAttributesAll -C/econst/-/kDSAttributesNativeAll -C/macro/-/kDSAttributesNativeAll -C/econst/-/kDSAttributesStandardAll -C/macro/-/kDSAttributesStandardAll -C/econst/-/kDSAttrNone -C/macro/-/kDSAttrNone -C/econst/-/kDSNativeAttrTypePrefix -C/macro/-/kDSNativeAttrTypePrefix -C/econst/-/kDSNativeAuthMethodPrefix -C/macro/-/kDSNativeAuthMethodPrefix -C/econst/-/kDSNativeRecordTypePrefix -C/macro/-/kDSNativeRecordTypePrefix -C/econst/-/kDSNAttrAccessControlEntry -C/macro/-/kDSNAttrAccessControlEntry -C/econst/-/kDSNAttrAddressLine1 -C/macro/-/kDSNAttrAddressLine1 -C/econst/-/kDSNAttrAddressLine2 -C/macro/-/kDSNAttrAddressLine2 -C/econst/-/kDSNAttrAddressLine3 -C/macro/-/kDSNAttrAddressLine3 -C/econst/-/kDSNAttrAllNames -C/macro/-/kDSNAttrAllNames -C/econst/-/kDSNAttrAreaCode -C/macro/-/kDSNAttrAreaCode -C/macro/-/kDSNAttrAttributeTypes -C/macro/-/kDSNAttrAttrListRefs -C/macro/-/kDSNAttrAttrListValueRefs -C/econst/-/kDSNAttrAuthenticationAuthority -C/macro/-/kDSNAttrAuthenticationAuthority -C/econst/-/kDSNAttrAuthMethod -C/macro/-/kDSNAttrAuthMethod -C/macro/-/kDSNAttrAutomountInformation -C/econst/-/kDSNAttrBootParams -C/macro/-/kDSNAttrBootParams -C/econst/-/kDSNAttrBuilding -C/macro/-/kDSNAttrBuilding -C/econst/-/kDSNAttrCity -C/macro/-/kDSNAttrCity -C/macro/-/kDSNAttrCompany -C/macro/-/kDSNAttrComputerAlias -C/econst/-/kDSNAttrComputers -C/macro/-/kDSNAttrComputers -C/econst/-/kDSNAttrCountry -C/macro/-/kDSNAttrCountry -C/econst/-/kDSNAttrCSPSearchPath -C/macro/-/kDSNAttrCSPSearchPath -C/econst/-/kDSNAttrDepartment -C/macro/-/kDSNAttrDepartment -C/macro/-/kDSNAttrDirRefs -C/econst/-/kDSNAttrDNSName -C/macro/-/kDSNAttrDNSName -C/econst/-/kDSNAttrEMailAddress -C/macro/-/kDSNAttrEMailAddress -C/macro/-/kDSNAttrEMailContacts -C/econst/-/kDSNAttrFaxNumber -C/macro/-/kDSNAttrFaxNumber -C/econst/-/kDSNAttrGroup -C/macro/-/kDSNAttrGroup -C/econst/-/kDSNAttrGroupMembers -C/macro/-/kDSNAttrGroupMembers -C/econst/-/kDSNAttrGroupMembership -C/macro/-/kDSNAttrGroupMembership -C/macro/-/kDSNAttrGroupServices -C/econst/-/kDSNAttrHomeDirectory -C/macro/-/kDSNAttrHomeDirectory -C/macro/-/kDSNAttrHomePhoneNumber -C/econst/-/kDSNAttrHTML -C/macro/-/kDSNAttrHTML -C/econst/-/kDSNAttrIMHandle -C/macro/-/kDSNAttrIMHandle -C/econst/-/kDSNAttrIPAddress -C/macro/-/kDSNAttrIPAddress -C/macro/-/kDSNAttrIPAddressAndENetAddress -C/macro/-/kDSNAttrIPv6Address -C/econst/-/kDSNAttrJobTitle -C/macro/-/kDSNAttrJobTitle -C/macro/-/kDSNAttrJPEGPhoto -C/econst/-/kDSNAttrKDCAuthKey -C/macro/-/kDSNAttrKDCAuthKey -C/econst/-/kDSNAttrKeywords -C/macro/-/kDSNAttrKeywords -C/econst/-/kDSNAttrLDAPReadReplicas -C/macro/-/kDSNAttrLDAPReadReplicas -C/econst/-/kDSNAttrLDAPWriteReplicas -C/macro/-/kDSNAttrLDAPWriteReplicas -C/econst/-/kDSNAttrLSPSearchPath -C/macro/-/kDSNAttrLSPSearchPath -C/econst/-/kDSNAttrMachineServes -C/macro/-/kDSNAttrMachineServes -C/macro/-/kDSNAttrMapCoordinates -C/macro/-/kDSNAttrMapURI -C/econst/-/kDSNAttrMCXSettings -C/macro/-/kDSNAttrMCXSettings -C/econst/-/kDSNAttrMember -C/macro/-/kDSNAttrMember -C/econst/-/kDSNAttrMetaNodeLocation -C/macro/-/kDSNAttrMetaNodeLocation -C/econst/-/kDSNAttrMIME -C/macro/-/kDSNAttrMIME -C/econst/-/kDSNAttrMobileNumber -C/macro/-/kDSNAttrMobileNumber -C/econst/-/kDSNAttrNamePrefix -C/macro/-/kDSNAttrNamePrefix -C/econst/-/kDSNAttrNameSuffix -C/macro/-/kDSNAttrNameSuffix -C/econst/-/kDSNAttrNBPEntry -C/macro/-/kDSNAttrNBPEntry -C/macro/-/kDSNAttrNeighborhoodAlias -C/econst/-/kDSNAttrNestedGroups -C/macro/-/kDSNAttrNestedGroups -C/econst/-/kDSNAttrNetGroups -C/macro/-/kDSNAttrNetGroups -C/macro/-/kDSNAttrNetGroupTriplet -C/econst/-/kDSNAttrNickName -C/macro/-/kDSNAttrNickName -C/econst/-/kDSNAttrNodePath -C/macro/-/kDSNAttrNodePath -C/macro/-/kDSNAttrNodePathXMLPlist -C/macro/-/kDSNAttrNodeRefs -C/econst/-/kDSNAttrNSPSearchPath -C/macro/-/kDSNAttrNSPSearchPath -C/macro/-/kDSNAttrOrganizationInfo -C/econst/-/kDSNAttrOrganizationName -C/macro/-/kDSNAttrOrganizationName -C/econst/-/kDSNAttrOriginalHomeDirectory -C/macro/-/kDSNAttrOriginalHomeDirectory -C/econst/-/kDSNAttrPagerNumber -C/macro/-/kDSNAttrPagerNumber -C/econst/-/kDSNAttrPGPPublicKey -C/macro/-/kDSNAttrPGPPublicKey -C/macro/-/kDSNAttrPhoneContacts -C/econst/-/kDSNAttrPhoneNumber -C/macro/-/kDSNAttrPhoneNumber -C/econst/-/kDSNAttrPlugInInfo -C/macro/-/kDSNAttrPlugInInfo -C/econst/-/kDSNAttrPostalAddress -C/macro/-/kDSNAttrPostalAddress -C/macro/-/kDSNAttrPostalAddressContacts -C/econst/-/kDSNAttrPostalCode -C/macro/-/kDSNAttrPostalCode -C/econst/-/kDSNAttrPrinterXRISupported -C/macro/-/kDSNAttrPrinterXRISupported -C/econst/-/kDSNAttrProtocols -C/macro/-/kDSNAttrProtocols -C/econst/-/kDSNAttrRecordAlias -C/macro/-/kDSNAttrRecordAlias -C/econst/-/kDSNAttrRecordName -C/macro/-/kDSNAttrRecordName -C/econst/-/kDSNAttrRecordType -C/macro/-/kDSNAttrRecordType -C/macro/-/kDSNAttrRecRefs -C/macro/-/kDSNAttrRelationships -C/macro/-/kDSNAttrResourceInfo -C/macro/-/kDSNAttrResourceType -C/econst/-/kDSNAttrSchema -C/macro/-/kDSNAttrSchema -C/econst/-/kDSNAttrSearchPath -C/macro/-/kDSNAttrSearchPath -C/macro/-/kDSNAttrServicesLocator -C/econst/-/kDSNAttrSetPasswdMethod -C/macro/-/kDSNAttrSetPasswdMethod -C/econst/-/kDSNAttrState -C/macro/-/kDSNAttrState -C/econst/-/kDSNAttrStreet -C/macro/-/kDSNAttrStreet -C/econst/-/kDSNAttrSubNodes -C/macro/-/kDSNAttrSubNodes -C/econst/-/kDSNAttrURL -C/macro/-/kDSNAttrURL -C/econst/-/kDSNAttrURLForNSL -C/macro/-/kDSNAttrURLForNSL -C/econst/-/kDSNAttrVFSOpts -C/macro/-/kDSNAttrVFSOpts -C/econst/-/kDSRecordsAll -C/macro/-/kDSRecordsAll -C/econst/-/kDSRecordsNativeAll -C/macro/-/kDSRecordsNativeAll -C/econst/-/kDSRecordsStandardAll -C/macro/-/kDSRecordsStandardAll -C/econst/-/kDSSetPasswdBestOf -C/macro/-/kDSSetPasswdBestOf -C/econst/-/kDSStdAttrTypePrefix -C/macro/-/kDSStdAttrTypePrefix -C/econst/-/kDSStdAuth2WayRandom -C/macro/-/kDSStdAuth2WayRandom -C/econst/-/kDSStdAuth2WayRandomChangePasswd -C/macro/-/kDSStdAuth2WayRandomChangePasswd -C/econst/-/kDSStdAuthAPOP -C/macro/-/kDSStdAuthAPOP -C/econst/-/kDSStdAuthChangePasswd -C/macro/-/kDSStdAuthChangePasswd -C/econst/-/kDSStdAuthCHAP -C/macro/-/kDSStdAuthCHAP -C/econst/-/kDSStdAuthClearText -C/macro/-/kDSStdAuthClearText -C/econst/-/kDSStdAuthCRAM_MD5 -C/macro/-/kDSStdAuthCRAM_MD5 -C/econst/-/kDSStdAuthCrypt -C/macro/-/kDSStdAuthCrypt -C/econst/-/kDSStdAuthDeleteUser -C/macro/-/kDSStdAuthDeleteUser -C/econst/-/kDSStdAuthDIGEST_MD5 -C/macro/-/kDSStdAuthDIGEST_MD5 -C/econst/-/kDSStdAuthGetEffectivePolicy -C/macro/-/kDSStdAuthGetEffectivePolicy -C/econst/-/kDSStdAuthGetGlobalPolicy -C/macro/-/kDSStdAuthGetGlobalPolicy -C/econst/-/kDSStdAuthGetKerberosPrincipal -C/macro/-/kDSStdAuthGetKerberosPrincipal -C/macro/-/kDSStdAuthGetMethodsForUser -C/econst/-/kDSStdAuthGetPolicy -C/macro/-/kDSStdAuthGetPolicy -C/econst/-/kDSStdAuthGetUserData -C/macro/-/kDSStdAuthGetUserData -C/econst/-/kDSStdAuthGetUserName -C/macro/-/kDSStdAuthGetUserName -C/macro/-/kDSStdAuthKerberosTickets -C/econst/-/kDSStdAuthMASKE_A -C/macro/-/kDSStdAuthMASKE_A -C/econst/-/kDSStdAuthMASKE_B -C/macro/-/kDSStdAuthMASKE_B -C/econst/-/kDSStdAuthMethodPrefix -C/macro/-/kDSStdAuthMethodPrefix -C/econst/-/kDSStdAuthMPPEMasterKeys -C/macro/-/kDSStdAuthMPPEMasterKeys -C/econst/-/kDSStdAuthMSCHAP1 -C/macro/-/kDSStdAuthMSCHAP1 -C/econst/-/kDSStdAuthMSCHAP2 -C/macro/-/kDSStdAuthMSCHAP2 -C/econst/-/kDSStdAuthNewUser -C/macro/-/kDSStdAuthNewUser -C/econst/-/kDSStdAuthNewUserWithPolicy -C/macro/-/kDSStdAuthNewUserWithPolicy -C/econst/-/kDSStdAuthNodeNativeClearTextOK -C/macro/-/kDSStdAuthNodeNativeClearTextOK -C/econst/-/kDSStdAuthNodeNativeNoClearText -C/macro/-/kDSStdAuthNodeNativeNoClearText -C/econst/-/kDSStdAuthNTLMv2 -C/macro/-/kDSStdAuthNTLMv2 -C/macro/-/kDSStdAuthNTLMv2WithSessionKey -C/econst/-/kDSStdAuthReadSecureHash -C/macro/-/kDSStdAuthReadSecureHash -C/econst/-/kDSStdAuthSecureHash -C/macro/-/kDSStdAuthSecureHash -C/econst/-/kDSStdAuthSetGlobalPolicy -C/macro/-/kDSStdAuthSetGlobalPolicy -C/econst/-/kDSStdAuthSetLMHash -C/macro/-/kDSStdAuthSetLMHash -C/econst/-/kDSStdAuthSetNTHash -C/macro/-/kDSStdAuthSetNTHash -C/econst/-/kDSStdAuthSetPasswd -C/macro/-/kDSStdAuthSetPasswd -C/econst/-/kDSStdAuthSetPasswdAsRoot -C/macro/-/kDSStdAuthSetPasswdAsRoot -C/econst/-/kDSStdAuthSetPolicy -C/macro/-/kDSStdAuthSetPolicy -C/econst/-/kDSStdAuthSetPolicyAsRoot -C/macro/-/kDSStdAuthSetPolicyAsRoot -C/econst/-/kDSStdAuthSetUserData -C/macro/-/kDSStdAuthSetUserData -C/econst/-/kDSStdAuthSetUserName -C/macro/-/kDSStdAuthSetUserName -C/econst/-/kDSStdAuthSetWorkstationPasswd -C/macro/-/kDSStdAuthSetWorkstationPasswd -C/econst/-/kDSStdAuthSMB_LM_Key -C/macro/-/kDSStdAuthSMB_LM_Key -C/econst/-/kDSStdAuthSMB_NT_Key -C/macro/-/kDSStdAuthSMB_NT_Key -C/econst/-/kDSStdAuthSMB_NT_UserSessionKey -C/macro/-/kDSStdAuthSMB_NT_UserSessionKey -C/macro/-/kDSStdAuthSMB_NT_WithUserSessionKey -C/econst/-/kDSStdAuthSMBNTv2UserSessionKey -C/macro/-/kDSStdAuthSMBNTv2UserSessionKey -C/econst/-/kDSStdAuthSMBWorkstationCredentialSessionKey -C/macro/-/kDSStdAuthSMBWorkstationCredentialSessionKey -C/econst/-/kDSStdAuthWithAuthorizationRef -C/macro/-/kDSStdAuthWithAuthorizationRef -C/econst/-/kDSStdAuthWriteSecureHash -C/macro/-/kDSStdAuthWriteSecureHash -C/macro/-/kDSStdMachDebugPortName -C/macro/-/kDSStdMachDSLookupPortName -C/macro/-/kDSStdMachLocalPortName -C/econst/-/kDSStdMachPortName -C/macro/-/kDSStdMachPortName -C/econst/-/kDSStdRecordTypeAccessControls -C/macro/-/kDSStdRecordTypeAccessControls -C/econst/-/kDSStdRecordTypeAFPServer -C/macro/-/kDSStdRecordTypeAFPServer -C/econst/-/kDSStdRecordTypeAFPUserAliases -C/macro/-/kDSStdRecordTypeAFPUserAliases -C/econst/-/kDSStdRecordTypeAliases -C/macro/-/kDSStdRecordTypeAliases -C/econst/-/kDSStdRecordTypeAll -C/macro/-/kDSStdRecordTypeAll -C/macro/-/kDSStdRecordTypeAttributeTypes -C/macro/-/kDSStdRecordTypeAugments -C/macro/-/kDSStdRecordTypeAutomount -C/macro/-/kDSStdRecordTypeAutomountMap -C/econst/-/kDSStdRecordTypeAutoServerSetup -C/macro/-/kDSStdRecordTypeAutoServerSetup -C/econst/-/kDSStdRecordTypeBootp -C/macro/-/kDSStdRecordTypeBootp -C/econst/-/kDSStdRecordTypeCertificateAuthorities -C/macro/-/kDSStdRecordTypeCertificateAuthorities -C/macro/-/kDSStdRecordTypeComputerGroups -C/econst/-/kDSStdRecordTypeComputerLists -C/macro/-/kDSStdRecordTypeComputerLists -C/econst/-/kDSStdRecordTypeComputers -C/macro/-/kDSStdRecordTypeComputers -C/econst/-/kDSStdRecordTypeConfig -C/macro/-/kDSStdRecordTypeConfig -C/econst/-/kDSStdRecordTypeEthernets -C/macro/-/kDSStdRecordTypeEthernets -C/econst/-/kDSStdRecordTypeFileMakerServers -C/macro/-/kDSStdRecordTypeFileMakerServers -C/econst/-/kDSStdRecordTypeFTPServer -C/macro/-/kDSStdRecordTypeFTPServer -C/econst/-/kDSStdRecordTypeGroupAliases -C/macro/-/kDSStdRecordTypeGroupAliases -C/econst/-/kDSStdRecordTypeGroups -C/macro/-/kDSStdRecordTypeGroups -C/econst/-/kDSStdRecordTypeHosts -C/macro/-/kDSStdRecordTypeHosts -C/econst/-/kDSStdRecordTypeHostServices -C/macro/-/kDSStdRecordTypeHostServices -C/econst/-/kDSStdRecordTypeLDAPServer -C/macro/-/kDSStdRecordTypeLDAPServer -C/econst/-/kDSStdRecordTypeLocations -C/macro/-/kDSStdRecordTypeLocations -C/econst/-/kDSStdRecordTypeMachines -C/macro/-/kDSStdRecordTypeMachines -C/econst/-/kDSStdRecordTypeMeta -C/macro/-/kDSStdRecordTypeMeta -C/econst/-/kDSStdRecordTypeMounts -C/macro/-/kDSStdRecordTypeMounts -C/econst/-/kDSStdRecordTypeNeighborhoods -C/macro/-/kDSStdRecordTypeNeighborhoods -C/econst/-/kDSStdRecordTypeNetDomains -C/macro/-/kDSStdRecordTypeNetDomains -C/econst/-/kDSStdRecordTypeNetGroups -C/macro/-/kDSStdRecordTypeNetGroups -C/econst/-/kDSStdRecordTypeNetworks -C/macro/-/kDSStdRecordTypeNetworks -C/econst/-/kDSStdRecordTypeNFS -C/macro/-/kDSStdRecordTypeNFS -C/econst/-/kDSStdRecordTypePasswordServer -C/macro/-/kDSStdRecordTypePasswordServer -C/econst/-/kDSStdRecordTypePeople -C/macro/-/kDSStdRecordTypePeople -C/macro/-/kDSStdRecordTypePlugins -C/econst/-/kDSStdRecordTypePrefix -C/macro/-/kDSStdRecordTypePrefix -C/macro/-/kDSStdRecordTypePresetComputerGroups -C/econst/-/kDSStdRecordTypePresetComputerLists -C/macro/-/kDSStdRecordTypePresetComputerLists -C/macro/-/kDSStdRecordTypePresetComputers -C/econst/-/kDSStdRecordTypePresetGroups -C/macro/-/kDSStdRecordTypePresetGroups -C/econst/-/kDSStdRecordTypePresetUsers -C/macro/-/kDSStdRecordTypePresetUsers -C/econst/-/kDSStdRecordTypePrinters -C/macro/-/kDSStdRecordTypePrinters -C/econst/-/kDSStdRecordTypePrintService -C/macro/-/kDSStdRecordTypePrintService -C/econst/-/kDSStdRecordTypePrintServiceUser -C/macro/-/kDSStdRecordTypePrintServiceUser -C/econst/-/kDSStdRecordTypeProtocols -C/macro/-/kDSStdRecordTypeProtocols -C/econst/-/kDSStdRecordTypeQTSServer -C/macro/-/kDSStdRecordTypeQTSServer -C/macro/-/kDSStdRecordTypeRecordTypes -C/macro/-/kDSStdRecordTypeRefTableEntries -C/macro/-/kDSStdRecordTypeResources -C/econst/-/kDSStdRecordTypeRPC -C/macro/-/kDSStdRecordTypeRPC -C/econst/-/kDSStdRecordTypeServer -C/macro/-/kDSStdRecordTypeServer -C/econst/-/kDSStdRecordTypeServices -C/macro/-/kDSStdRecordTypeServices -C/econst/-/kDSStdRecordTypeSharePoints -C/macro/-/kDSStdRecordTypeSharePoints -C/econst/-/kDSStdRecordTypeSMBServer -C/macro/-/kDSStdRecordTypeSMBServer -C/econst/-/kDSStdRecordTypeUserAliases -C/macro/-/kDSStdRecordTypeUserAliases -C/econst/-/kDSStdRecordTypeUsers -C/macro/-/kDSStdRecordTypeUsers -C/econst/-/kDSStdRecordTypeWebServer -C/macro/-/kDSStdRecordTypeWebServer -C/macro/-/kDSStdRecordTypMounts -C/macro/-/kDSStdRecordTypProtocols -C/macro/-/kDSStdRecordTypRPC -C/econst/-/kDSStdUserNamesMeta -C/macro/-/kDSStdUserNamesMeta -C/econst/-/kDSTagAuthAuthorityBasic -C/macro/-/kDSTagAuthAuthorityBasic -C/econst/-/kDSTagAuthAuthorityBetterHashOnly -C/macro/-/kDSTagAuthAuthorityBetterHashOnly -C/econst/-/kDSTagAuthAuthorityDisabledUser -C/macro/-/kDSTagAuthAuthorityDisabledUser -C/econst/-/kDSTagAuthAuthorityKerberosv5 -C/macro/-/kDSTagAuthAuthorityKerberosv5 -C/econst/-/kDSTagAuthAuthorityLocalCachedUser -C/macro/-/kDSTagAuthAuthorityLocalCachedUser -C/econst/-/kDSTagAuthAuthorityLocalWindowsHash -C/macro/-/kDSTagAuthAuthorityLocalWindowsHash -C/econst/-/kDSTagAuthAuthorityPasswordServer -C/macro/-/kDSTagAuthAuthorityPasswordServer -C/econst/-/kDSTagAuthAuthorityShadowHash -C/macro/-/kDSTagAuthAuthorityShadowHash -C/econst/-/kDSValueAuthAuthorityBasic -C/macro/-/kDSValueAuthAuthorityBasic -C/econst/-/kDSValueAuthAuthorityDefault -C/macro/-/kDSValueAuthAuthorityDefault -C/econst/-/kDSValueAuthAuthorityDisabledUser -C/macro/-/kDSValueAuthAuthorityDisabledUser -C/econst/-/kDSValueAuthAuthorityKerberosv5 -C/macro/-/kDSValueAuthAuthorityKerberosv5 -C/econst/-/kDSValueAuthAuthorityLocalCachedUser -C/macro/-/kDSValueAuthAuthorityLocalCachedUser -C/econst/-/kDSValueAuthAuthorityLocalWindowsHash -C/macro/-/kDSValueAuthAuthorityLocalWindowsHash -C/econst/-/kDSValueAuthAuthorityPasswordServerPrefix -C/macro/-/kDSValueAuthAuthorityPasswordServerPrefix -C/econst/-/kDSValueAuthAuthorityShadowHash -C/macro/-/kDSValueAuthAuthorityShadowHash -C/econst/-/kDSValueNonCryptPasswordMarker -C/macro/-/kDSValueNonCryptPasswordMarker -C/econst/-/kDSValueNSLDynamicNeighboodType -C/macro/-/kDSValueNSLDynamicNeighborhoodType -C/econst/-/kDSValueNSLLocalNeighboodType -C/macro/-/kDSValueNSLLocalNeighborhoodType -C/econst/-/kDSValueNSLStaticNeighboodType -C/macro/-/kDSValueNSLStaticNeighborhoodType -C/econst/-/kDSValueNSLTopLevelNeighborhoodType -C/macro/-/kDSValueNSLTopLevelNeighborhoodType -C/econst/-/kDurationForever -C/econst/-/kDurationImmediate -C/econst/-/kDurationMicrosecond -C/econst/-/kDurationMillisecond -C/econst/-/kDVDAMGMDomain -C/econst/-/kDVDAspectRatio16x9 -C/econst/-/kDVDAspectRatio4x3 -C/econst/-/kDVDAspectRatio4x3PanAndScan -C/econst/-/kDVDAspectRatioLetterBox -C/econst/-/kDVDAspectRatioUninitialized -C/econst/-/kDVDAudioAC3Format -C/econst/-/kDVDAudioDTSFormat -C/econst/-/kDVDAudioExtensionCodeDirectorsComment1 -C/econst/-/kDVDAudioExtensionCodeDirectorsComment2 -C/econst/-/kDVDAudioExtensionCodeNormalCaptions -C/econst/-/kDVDAudioExtensionCodeNotSpecified -C/econst/-/kDVDAudioExtensionCodeNVisualImpaired -C/econst/-/kDVDAudioMPEG1Format -C/econst/-/kDVDAudioMPEG2Format -C/econst/-/kDVDAudioPCMFormat -C/econst/-/kDVDAudioSDDSFormat -C/econst/-/kDVDAudioUnknownFormat -C/econst/-/kDVDErrorAlreadyPlaying -C/econst/-/kDVDErrorAuthentification -C/econst/-/kDVDErrorDontNeedWakeup -C/econst/-/kDVDErrordRegionCodeUninitialized -C/econst/-/kDVDErrorGraphicsDevice -C/econst/-/kDVDErrorInitializingLib -C/econst/-/kDVDErrorInvalidRegionCode -C/econst/-/kDVDErrorIsAlreadySleeping -C/econst/-/kDVDErrorMismatchedRegionCode -C/econst/-/kDVDErrorMissingDrive -C/econst/-/kDVDErrorMissingGraphicsDevice -C/econst/-/kDVDErrorNavigation -C/econst/-/kDVDErrorNoAudioOutputDevice -C/econst/-/kDVDErrorNoFatalErrCallBack -C/econst/-/kDVDErrorNoMoreRegionSets -C/econst/-/kDVDErrorNotAllowedDuringPlayback -C/econst/-/kDVDErrorNotSupportedConfiguration -C/econst/-/kDVDErrorNotSupportedFunction -C/econst/-/kDVDErrorNoValidMedia -C/econst/-/kDVDErrorOutOfVideoMemory -C/econst/-/kDVDErrorPlaybackOpen -C/econst/-/kDVDErrorRgnMgrInstall -C/econst/-/kDVDErrorSystem -C/econst/-/kDVDErrorTimeOutOfRange -C/econst/-/kDVDErrorUnassignedGrafPort -C/econst/-/kDVDErrorUninitializedLib -C/econst/-/kDVDErrorUnknown -C/econst/-/kDVDErrorUserActionNoOp -C/econst/-/kDVDErrorWrongParam -C/econst/-/kDVDFormatNTSC -C/econst/-/kDVDFormatPAL -C/econst/-/kDVDFormatUninitialized -C/econst/-/kDVDFPDomain -C/econst/-/kDVDMenuAngle -C/econst/-/kDVDMenuAudio -C/econst/-/kDVDMenuNone -C/econst/-/kDVDMenuPTT -C/econst/-/kDVDMenuRoot -C/econst/-/kDVDMenuSubPicture -C/econst/-/kDVDMenuTitle -C/econst/-/kDVDRegionCode1 -C/econst/-/kDVDRegionCode2 -C/econst/-/kDVDRegionCode3 -C/econst/-/kDVDRegionCode4 -C/econst/-/kDVDRegionCode5 -C/econst/-/kDVDRegionCode6 -C/econst/-/kDVDRegionCode7 -C/econst/-/kDVDRegionCode8 -C/econst/-/kDVDRegionCodeUninitialized -C/econst/-/kDVDScanDirectionBackward -C/econst/-/kDVDScanDirectionForward -C/econst/-/kDVDStateIdle -C/econst/-/kDVDStatePaused -C/econst/-/kDVDStatePlaying -C/econst/-/kDVDStatePlayingSlow -C/econst/-/kDVDStatePlayingStill -C/econst/-/kDVDStateScanning -C/econst/-/kDVDStateStopped -C/econst/-/kDVDStateUnknown -C/econst/-/kDVDSTOPDomain -C/econst/-/kDVDSubpictureExtensionCodeCaption4Children -C/econst/-/kDVDSubpictureExtensionCodeCaptionBiggerSize -C/econst/-/kDVDSubpictureExtensionCodeCaptionNormalSize -C/econst/-/kDVDSubpictureExtensionCodeClosedCaption4Children -C/econst/-/kDVDSubpictureExtensionCodeClosedCaptionBiggerSize -C/econst/-/kDVDSubpictureExtensionCodeClosedCaptionNormalSize -C/econst/-/kDVDSubpictureExtensionCodeForcedCaption -C/econst/-/kDVDSubpictureExtensionCodeNotSpecified -C/econst/-/kDVDSubpictureExtensionDirectorsComment4Children -C/econst/-/kDVDSubpictureExtensionDirectorsCommentBiggerSize -C/econst/-/kDVDSubpictureExtensionDirectorsCommentNormalSize -C/econst/-/kDVDTimeCodeChapterDurationSeconds -C/econst/-/kDVDTimeCodeChapterElapsedSeconds -C/econst/-/kDVDTimeCodeChapterRemainingSeconds -C/econst/-/kDVDTimeCodeElapsedSeconds -C/econst/-/kDVDTimeCodeRemainingSeconds -C/econst/-/kDVDTimeCodeTitleDurationSeconds -C/econst/-/kDVDTimeCodeUninitialized -C/econst/-/kDVDTTDomain -C/econst/-/kDVDTTGRDomain -C/econst/-/kDVDUOPAngleChange -C/econst/-/kDVDUOPAudioStreamChange -C/econst/-/kDVDUOPBackwardScan -C/econst/-/kDVDUOPButton -C/econst/-/kDVDUOPForwardScan -C/econst/-/kDVDUOPGoUp -C/econst/-/kDVDUOPKaraokeModeChange -C/econst/-/kDVDUOPMenuCallAngle -C/econst/-/kDVDUOPMenuCallAudio -C/econst/-/kDVDUOPMenuCallPTT -C/econst/-/kDVDUOPMenuCallRoot -C/econst/-/kDVDUOPMenuCallSubPicture -C/econst/-/kDVDUOPMenuCallTitle -C/econst/-/kDVDUOPNextPGSearch -C/econst/-/kDVDUOPPauseOff -C/econst/-/kDVDUOPPauseOn -C/econst/-/kDVDUOPPrevTopPGSearch -C/econst/-/kDVDUOPPTTPlaySearch -C/econst/-/kDVDUOPResume -C/econst/-/kDVDUOPScanOff -C/econst/-/kDVDUOPStillOff -C/econst/-/kDVDUOPStop -C/econst/-/kDVDUOPTimePlaySearch -C/econst/-/kDVDUOPTimePTTSearch -C/econst/-/kDVDUOPTitlePlay -C/econst/-/kDVDUOPVideoModeChange -C/econst/-/kDVDUserNavigationEnter -C/econst/-/kDVDUserNavigationMoveDown -C/econst/-/kDVDUserNavigationMoveLeft -C/econst/-/kDVDUserNavigationMoveRight -C/econst/-/kDVDUserNavigationMoveUp -C/econst/-/kDVDVMGMDomain -C/econst/-/kDVDVTSMDomain -C/econst/-/keAttrReadOnly -C/econst/-/keAttrReadWrite -JavaScript/clconst/WebGLRenderingContext/KEEP -Objective-C/instm/NSDocument/keepBackupFile -C/econst/-/kEffectRawSource -C/econst/-/kEncryptPassword -C/econst/-/kEndOfSentence -C/econst/-/kEndOfWord -C/tdef/-/kern_ctl_ref -C/tag/-/kern_ctl_reg -C/tag/-/kern_event_msg -C/func/-/kernel_thread_start -Objective-C/clm/CIKernel/kernelsWithString: -JavaScript/data/SVGFEDiffuseLightingElement/kernelUnitLengthX -JavaScript/data/SVGFEDiffuseLightingElement/kernelUnitLengthY -C/macro/-/KEV_APPLESHARE_CLASS -C/macro/-/KEV_CTL_DEREGISTERED -C/macro/-/KEV_CTL_REGISTERED -C/macro/-/KEV_CTL_SUBCLASS -C/tag/-/kev_d_vectors -C/macro/-/KEV_FIREWALL_CLASS -C/macro/-/KEV_IEEE80211_CLASS -C/macro/-/KEV_IOKIT_CLASS -C/macro/-/KEV_IP6FW_ADD -C/macro/-/KEV_IP6FW_DEL -C/macro/-/KEV_IP6FW_ENABLE -C/macro/-/KEV_IP6FW_FLUSH -C/macro/-/KEV_IP6FW_SUBCLASS -C/macro/-/KEV_IPFW_ADD -C/macro/-/KEV_IPFW_DEL -C/macro/-/KEV_IPFW_ENABLE -C/macro/-/KEV_IPFW_FLUSH -C/macro/-/KEV_IPFW_SUBCLASS -C/macro/-/KEV_MEMORYSTATUS_SUBCLASS -C/tag/-/kev_msg -C/macro/-/KEV_MSG_HEADER_SIZE -C/func/-/kev_msg_post -C/macro/-/KEV_NETWORK_CLASS -C/tag/-/kev_request -C/macro/-/KEV_SYSTEM_CLASS -C/macro/-/KEV_VENDOR_APPLE -C/tag/-/kev_vendor_code -C/func/-/kev_vendor_code_find -C/macro/-/KEV_VENDOR_CODE_MAX_STR_LEN -C/func/-/kevent -C/func/-/kevent64 -C/econst/-/kEventABPeoplePickerDisplayedPropertyChanged -C/econst/-/kEventABPeoplePickerGroupDoubleClicked -C/econst/-/kEventABPeoplePickerGroupSelectionChanged -C/econst/-/kEventABPeoplePickerNameDoubleClicked -C/econst/-/kEventABPeoplePickerNameSelectionChanged -C/econst/-/kEventABPeoplePickerValueSelectionChanged -C/econst/-/kEventAccessibleGetAllActionNames -C/econst/-/kEventAccessibleGetAllAttributeNames -C/econst/-/kEventAccessibleGetAllParameterizedAttributeNames -C/econst/-/kEventAccessibleGetChildAtPoint -C/econst/-/kEventAccessibleGetFocusedChild -C/econst/-/kEventAccessibleGetNamedActionDescription -C/econst/-/kEventAccessibleGetNamedAttribute -C/econst/-/kEventAccessibleIsNamedAttributeSettable -C/econst/-/kEventAccessiblePerformNamedAction -C/econst/-/kEventAccessibleSetNamedAttribute -C/econst/-/kEventClassABPeoplePicker -C/econst/-/kEventClassAccessibility -C/econst/-/kEventParamABPickerRef -C/econst/-/kEventParamAccessibleActionDescription -C/econst/-/kEventParamAccessibleActionName -C/econst/-/kEventParamAccessibleActionNames -C/econst/-/kEventParamAccessibleAttributeName -C/econst/-/kEventParamAccessibleAttributeNames -C/econst/-/kEventParamAccessibleAttributeParameter -C/econst/-/kEventParamAccessibleAttributeSettable -C/econst/-/kEventParamAccessibleAttributeValue -C/econst/-/kEventParamAccessibleChild -C/econst/-/kEventParamAccessibleEventQueued -C/econst/-/kEventParamAccessibleObject -C/macro/-/kExportKeyCustomProperties -C/macro/-/kExportKeyEXIFProperties -C/macro/-/kExportKeyHierarchicalKeywords -C/macro/-/kExportKeyImageHasAdjustments -C/macro/-/kExportKeyImageSize -C/macro/-/kExportKeyIPTCProperties -C/macro/-/kExportKeyIsRAWImage -C/macro/-/kExportKeyKeywords -C/macro/-/kExportKeyMainRating -C/macro/-/kExportKeyMasterPath -C/macro/-/kExportKeyProjectName -C/macro/-/kExportKeyReferencedMasterPath -C/macro/-/kExportKeyThumbnailImage -C/macro/-/kExportKeyUniqueID -C/macro/-/kExportKeyVersionName -C/macro/-/kExportKeyWhiteBalanceTemperature -C/macro/-/kExportKeyWhiteBalanceTint -C/macro/-/kExportKeyXMPString -C/econst/-/kExtAudioFileError_AsyncWriteBufferOverflow -C/econst/-/kExtAudioFileError_AsyncWriteTooLarge -C/econst/-/kExtAudioFileError_InvalidChannelMap -C/econst/-/kExtAudioFileError_InvalidDataFormat -C/econst/-/kExtAudioFileError_InvalidOperationOrder -C/econst/-/kExtAudioFileError_InvalidProperty -C/econst/-/kExtAudioFileError_InvalidPropertySize -C/econst/-/kExtAudioFileError_InvalidSeek -C/econst/-/kExtAudioFileError_MaxPacketSizeUnknown -C/econst/-/kExtAudioFileError_NonPCMClientFormat -C/econst/-/kExtAudioFileProperty_AudioConverter -C/econst/-/kExtAudioFileProperty_AudioFile -C/econst/-/kExtAudioFileProperty_ClientChannelLayout -C/econst/-/kExtAudioFileProperty_ClientDataFormat -C/econst/-/kExtAudioFileProperty_ClientMaxPacketSize -C/econst/-/kExtAudioFileProperty_ConverterConfig -C/econst/-/kExtAudioFileProperty_FileChannelLayout -C/econst/-/kExtAudioFileProperty_FileDataFormat -C/econst/-/kExtAudioFileProperty_FileLengthFrames -C/econst/-/kExtAudioFileProperty_FileMaxPacketSize -C/econst/-/kExtAudioFileProperty_IOBuffer -C/econst/-/kExtAudioFileProperty_IOBufferSizeBytes -C/func/-/KextManagerCreateURLForBundleIdentifier -C/func/-/KextManagerLoadKextWithIdentifier -C/func/-/KextManagerLoadKextWithURL -Objective-C/instm/NSScriptObjectSpecifier/key -Objective-C/instm/NSSortDescriptor/key -Objective-C/instm/NSObject/key -JavaScript/data/StorageEvent/key -JavaScript/instm/Storage/key -C/func/-/key_defined -JavaScript/clconst/KeyboardEvent/KEY_LOCATION_LEFT -JavaScript/clconst/KeyboardEvent/KEY_LOCATION_NUMPAD -JavaScript/clconst/KeyboardEvent/KEY_LOCATION_RIGHT -JavaScript/clconst/KeyboardEvent/KEY_LOCATION_STANDARD -C/func/-/key_name -JavaScript/data/DOMWindow/KeyboardEvent -JavaScript/cl/-/KeyboardEvent -Objective-C/clm/NSColor/keyboardFocusIndicatorColor -Objective-C/instm/NSTextInputContext/keyboardInputSources -Objective-C/instp/NSTextInputContext/keyboardInputSources -C/func/-/keybound -Objective-C/instm/NSMatrix/keyCell -Objective-C/instm/SFKeychainSavePanel/keychain -Objective-C/instm/NSScriptObjectSpecifier/keyClassDescription -Objective-C/instm/NSEvent/keyCode -JavaScript/data/KeyboardEvent/keyCode -JavaScript/data/UIEvent/keyCode -JavaScript/clconst/Event/KEYDOWN -Objective-C/instm/NSWindow/keyDown: -Objective-C/instm/NSResponder/keyDown: -Objective-C/intfm/FxOnScreenControl/keyDown:positionY:keyPressed:modifiers:forceUpdate:didHandle:time: -Objective-C/instm/NSDictionary/keyEnumerator -Objective-C/instm/NSMapTable/keyEnumerator -Objective-C/instm/NSButton/keyEquivalent -Objective-C/instm/NSButtonCell/keyEquivalent -Objective-C/instm/NSMenuItem/keyEquivalent -Objective-C/instm/NSCell/keyEquivalent -Objective-C/instm/NSButtonCell/keyEquivalentFont -Objective-C/instm/NSButton/keyEquivalentModifierMask -Objective-C/instm/NSButtonCell/keyEquivalentModifierMask -Objective-C/instm/NSMenuItem/keyEquivalentModifierMask -Objective-C/instm/NSMenuView/keyEquivalentOffset -Objective-C/instm/NSMenuItemCell/keyEquivalentRectForBounds: -Objective-C/instm/NSMenuItemCell/keyEquivalentWidth -Objective-C/instm/NSMenuView/keyEquivalentWidth -Objective-C/clm/NSEvent/keyEventWithType:location:modifierFlags:timestamp:windowNumber:context:characters:charactersIgnoringModifiers:isARepeat:keyCode: -Objective-C/instm/NSFileWrapper/keyForFileWrapper: -JavaScript/data/KeyboardEvent/keyIdentifier -JavaScript/data/KeyboardEvent/keyLocation -C/func/-/keyname -C/func/-/keyok -C/func/-/keypad -Objective-C/instp/CAPropertyAnimation/keyPath -Objective-C/instm/CAPropertyAnimation/keyPath -Objective-C/instm/NSExpression/keyPath -Objective-C/intfm/NSPrintPanelAccessorizing/keyPathsForValuesAffectingPreview -Objective-C/clm/NSObject/keyPathsForValuesAffectingValueForKey: -Objective-C/instm/NSMapTable/keyPointerFunctions -JavaScript/clconst/Event/KEYPRESS -Objective-C/clm/NSEvent/keyRepeatDelay -Objective-C/clm/NSEvent/keyRepeatInterval -Objective-C/instm/NSDictionary/keysOfEntriesPassingTest: -Objective-C/instm/NSDictionary/keysOfEntriesWithOptions:passingTest: -Objective-C/instm/NSMoveCommand/keySpecifier -Objective-C/instm/NSCloneCommand/keySpecifier -Objective-C/instm/NSSetCommand/keySpecifier -Objective-C/instm/NSDeleteCommand/keySpecifier -C/econst/-/keySRRecognizer -C/econst/-/keySRSpeechResult -C/econst/-/keySRSpeechStatus -Objective-C/instm/NSDictionary/keysSortedByValueUsingComparator: -Objective-C/instm/NSDictionary/keysSortedByValueUsingSelector: -Objective-C/instm/NSDictionary/keysSortedByValueWithOptions:usingComparator: -JavaScript/data/WebKitCSSKeyframeRule/keyText -Objective-C/instm/CAKeyframeAnimation/keyTimes -Objective-C/instp/CAKeyframeAnimation/keyTimes -JavaScript/clconst/Event/KEYUP -Objective-C/instm/NSResponder/keyUp: -Objective-C/intfm/FxOnScreenControl/keyUp:positionY:keyPressed:modifiers:forceUpdate:didHandle:time: -Objective-C/instm/NSWindow/keyViewSelectionDirection -Objective-C/instm/NSApplication/keyWindow -Objective-C/instm/NSScriptClassDescription/keyWithAppleEventCode: -Objective-C/instm/NSAppleEventDescriptor/keywordForDescriptorAtIndex: -C/econst/-/kFailedToInit -C/econst/-/kFemale -C/macro/-/kFFEffectType_ConstantForce_ID -C/macro/-/kFFEffectType_CustomForce_ID -C/macro/-/kFFEffectType_Damper_ID -C/macro/-/kFFEffectType_Friction_ID -C/macro/-/kFFEffectType_Inertia_ID -C/macro/-/kFFEffectType_RampForce_ID -C/macro/-/kFFEffectType_SawtoothDown_ID -C/macro/-/kFFEffectType_SawtoothUp_ID -C/macro/-/kFFEffectType_Sine_ID -C/macro/-/kFFEffectType_Spring_ID -C/macro/-/kFFEffectType_Square_ID -C/macro/-/kFFEffectType_Triangle_ID -C/econst/-/kFFTDirection_Forward -C/econst/-/kFFTDirection_Inverse -C/econst/-/kFFTRadix2 -C/econst/-/kFFTRadix3 -C/econst/-/kFFTRadix5 -C/econst/-/kFileSec_ACL -C/econst/-/kFileSec_GRPUUID -C/econst/-/kFileSec_Inherit -C/econst/-/kFileSec_REMOVEACL -C/econst/-/kFileSec_UUID -C/econst/-/kFNDirectoryModifiedMessage -C/econst/-/kFNNoImplicitAllSubscription -C/econst/-/kFNNotifyInBackground -C/econst/-/kFPAccessDenied -C/econst/-/kFPAccessRightsBit -C/econst/-/kFPAttributeBit -C/econst/-/kFPAuthContinue -C/econst/-/kFPBackupDateBit -C/econst/-/kFPBackUpNeededBit -C/econst/-/kFPBadIDErr -C/econst/-/kFPBadUAM -C/econst/-/kFPBadVersNum -C/econst/-/kFPBitmapErr -C/econst/-/kFPCallNotSupported -C/econst/-/kFPCantMove -C/econst/-/kFPCantRename -C/econst/-/kFPCatalogChanged -C/econst/-/kFPContainsSharedErr -C/econst/-/kFPCopyProtectBit -C/econst/-/kFPCreateDateBit -C/econst/-/kFPDAlreadyOpenBit -C/econst/-/kFPDataForkLenBit -C/econst/-/kFPDeleteInhibitBit -C/econst/-/kFPDenyConflict -C/econst/-/kFPDiffVolErr -C/econst/-/kFPDirNotEmpty -C/econst/-/kFPDirNotFound -C/econst/-/kFPDiskFull -C/econst/-/kFPDiskQuotaExceeded -C/econst/-/kFPEOFErr -C/econst/-/kFPExtDataForkLenBit -C/econst/-/kFPExtRsrcForkLenBit -C/econst/-/kFPFileBusy -C/econst/-/kFPFinderInfoBit -C/econst/-/kFPFlatVol -C/econst/-/kFPGroupIDBit -C/econst/-/kFPIconTypeError -C/econst/-/kFPIDExists -C/econst/-/kFPIDNotFound -C/econst/-/kFPInsideSharedErr -C/econst/-/kFPInsideTrashErr -C/econst/-/kFPInvisibleBit -C/econst/-/kFPItemNotFound -C/econst/-/kFPLaunchLimitBit -C/econst/-/kFPLockErr -C/econst/-/kFPLongCreate -C/econst/-/kFPLongName -C/econst/-/kFPLongNameBit -C/econst/-/kFPMiscErr -C/econst/-/kFPModDateBit -C/econst/-/kFPMultiUserBit -C/econst/-/kFPNodeIDBit -C/econst/-/kFPNoErr -C/econst/-/kFPNoMoreLocks -C/econst/-/kFPNoMoreSessions -C/econst/-/kFPNoServer -C/econst/-/kFPObjectExists -C/econst/-/kFPObjectLocked -C/econst/-/kFPObjectNotFound -C/econst/-/kFPObjectTypeErr -C/econst/-/kFPOffspringCountBit -C/econst/-/kFPOwnerIDBit -C/econst/-/kFPParamErr -C/econst/-/kFPParentDirIDBit -C/econst/-/kFPProDOSInfoBit -C/econst/-/kFPPwdExpiredErr -C/econst/-/kFPPwdNeedsChangeErr -C/econst/-/kFPPwdPolicyErr -C/econst/-/kFPPwdSameErr -C/econst/-/kFPPwdTooShortErr -C/econst/-/kFPRAlreadyOpenBit -C/econst/-/kFPRangeNotLocked -C/econst/-/kFPRangeOverlap -C/econst/-/kFPRenameInhibitBit -C/econst/-/kFPRsrcForkLenBit -C/econst/-/kFPSameObjectErr -C/econst/-/kFPServerGoingDown -C/econst/-/kFPSessClosed -C/econst/-/kFPSetClearBit -C/econst/-/kFPShortName -C/econst/-/kFPShortNameBit -C/econst/-/kFPSoftCreate -C/econst/-/kFPSystemBit -C/econst/-/kFPTooManyFilesOpen -C/econst/-/kFPUnixPrivsBit -C/econst/-/kFPUserNotAuth -C/econst/-/kFPUTF8Name -C/econst/-/kFPUTF8NameBit -C/econst/-/kFPUUID -C/econst/-/kFPVolAttributeBit -C/econst/-/kFPVolBackupDateBit -C/econst/-/kFPVolBlockSizeBit -C/econst/-/kFPVolBytesFreeBit -C/econst/-/kFPVolBytesTotalBit -C/econst/-/kFPVolCreateDateBit -C/econst/-/kFPVolExtBytesFreeBit -C/econst/-/kFPVolExtBytesTotalBit -C/econst/-/kFPVolIDBit -C/econst/-/kFPVolLocked -C/econst/-/kFPVolModDateBit -C/econst/-/kFPVolNameBit -C/econst/-/kFPVolSignatureBit -C/econst/-/kFPWriteInhibitBit -C/econst/-/kFSAliasInfoFinderInfo -C/econst/-/kFSAliasInfoFSInfo -C/econst/-/kFSAliasInfoIDs -C/econst/-/kFSAliasInfoIsDirectory -C/econst/-/kFSAliasInfoNone -C/econst/-/kFSAliasInfoTargetCreateDate -C/econst/-/kFSAliasInfoVolumeCreateDate -C/econst/-/kFSAliasInfoVolumeFlags -C/econst/-/kFSAllocAllOrNothingMask -C/econst/-/kFSAllocContiguousMask -C/econst/-/kFSAllocDefaultFlags -C/econst/-/kFSAllocNoRoundUpMask -C/econst/-/kFSAllocReservedMask -C/econst/-/kFSCatInfoAccessDate -C/econst/-/kFSCatInfoAllDates -C/econst/-/kFSCatInfoAttrMod -C/econst/-/kFSCatInfoBackupDate -C/econst/-/kFSCatInfoContentMod -C/econst/-/kFSCatInfoCreateDate -C/econst/-/kFSCatInfoDataSizes -C/econst/-/kFSCatInfoFinderInfo -C/econst/-/kFSCatInfoFinderXInfo -C/econst/-/kFSCatInfoGettableInfo -C/econst/-/kFSCatInfoNodeFlags -C/econst/-/kFSCatInfoNodeID -C/econst/-/kFSCatInfoNone -C/econst/-/kFSCatInfoParentDirID -C/econst/-/kFSCatInfoPermissions -C/econst/-/kFSCatInfoReserved -C/econst/-/kFSCatInfoRsrcSizes -C/econst/-/kFSCatInfoSetOwnership -C/econst/-/kFSCatInfoSettableInfo -C/econst/-/kFSCatInfoSharingFlags -C/econst/-/kFSCatInfoTextEncoding -C/econst/-/kFSCatInfoUserAccess -C/econst/-/kFSCatInfoUserPrivs -C/econst/-/kFSCatInfoValence -C/econst/-/kFSCatInfoVolume -C/econst/FSEventStreamCreateFlags/kFSEventStreamCreateFlagIgnoreSelf -C/econst/FSEventStreamCreateFlags/kFSEventStreamCreateFlagNoDefer -C/econst/FSEventStreamCreateFlags/kFSEventStreamCreateFlagNone -C/econst/FSEventStreamCreateFlags/kFSEventStreamCreateFlagUseCFTypes -C/econst/FSEventStreamCreateFlags/kFSEventStreamCreateFlagWatchRoot -C/econst/FSEventStreamEventFlags/kFSEventStreamEventFlagEventIdsWrapped -C/econst/FSEventStreamEventFlags/kFSEventStreamEventFlagHistoryDone -C/econst/FSEventStreamEventFlags/kFSEventStreamEventFlagKernelDropped -C/econst/FSEventStreamEventFlags/kFSEventStreamEventFlagMount -C/econst/FSEventStreamEventFlags/kFSEventStreamEventFlagMustScanSubDirs -C/econst/FSEventStreamEventFlags/kFSEventStreamEventFlagNone -C/econst/FSEventStreamEventFlags/kFSEventStreamEventFlagRootChanged -C/econst/FSEventStreamEventFlags/kFSEventStreamEventFlagUnmount -C/econst/FSEventStreamEventFlags/kFSEventStreamEventFlagUserDropped -C/econst/-/kFSFileOperationDefaultOptions -C/econst/-/kFSFileOperationDoNotMoveAcrossVolumes -C/econst/-/kFSFileOperationOverwrite -C/econst/-/kFSFileOperationSkipPreflight -C/econst/-/kFSFileOperationSkipSourcePermissionErrors -C/econst/-/kFSInvalidVolumeRefNum -C/econst/-/kFSIterateDelete -C/econst/-/kFSIterateFlat -C/econst/-/kFSIterateReserved -C/econst/-/kFSIterateSubtree -C/econst/-/kFSNodeCopyProtectBit -C/econst/-/kFSNodeCopyProtectMask -C/econst/-/kFSNodeDataOpenBit -C/econst/-/kFSNodeDataOpenMask -C/econst/-/kFSNodeForkOpenBit -C/econst/-/kFSNodeForkOpenMask -C/econst/-/kFSNodeHardLinkBit -C/econst/-/kFSNodeHardLinkMask -C/econst/-/kFSNodeInSharedBit -C/econst/-/kFSNodeInSharedMask -C/econst/-/kFSNodeIsDirectoryBit -C/econst/-/kFSNodeIsDirectoryMask -C/econst/-/kFSNodeIsMountedBit -C/econst/-/kFSNodeIsMountedMask -C/econst/-/kFSNodeIsSharePointBit -C/econst/-/kFSNodeIsSharePointMask -C/econst/-/kFSNodeLockedBit -C/econst/-/kFSNodeLockedMask -C/econst/-/kFSNodeResOpenBit -C/econst/-/kFSNodeResOpenMask -C/data/-/kFSOperationBytesCompleteKey -C/data/-/kFSOperationBytesRemainingKey -C/data/-/kFSOperationObjectsCompleteKey -C/data/-/kFSOperationObjectsRemainingKey -C/econst/-/kFSOperationStageComplete -C/econst/-/kFSOperationStagePreflighting -C/econst/-/kFSOperationStageRunning -C/econst/-/kFSOperationStageUndefined -C/data/-/kFSOperationThroughputKey -C/data/-/kFSOperationTotalBytesKey -C/data/-/kFSOperationTotalObjectsKey -C/data/-/kFSOperationTotalUserVisibleObjectsKey -C/data/-/kFSOperationUserVisibleObjectsCompleteKey -C/data/-/kFSOperationUserVisibleObjectsRemainingKey -C/econst/-/kFSPathMakeRefDefaultOptions -C/econst/-/kFSPathMakeRefDoNotFollowLeafSymlink -C/econst/-/kFSVolFlagDefaultVolumeBit -C/econst/-/kFSVolFlagDefaultVolumeMask -C/econst/-/kFSVolFlagFilesOpenBit -C/econst/-/kFSVolFlagFilesOpenMask -C/econst/-/kFSVolFlagHardwareLockedBit -C/econst/-/kFSVolFlagHardwareLockedMask -C/econst/-/kFSVolFlagSoftwareLockedBit -C/econst/-/kFSVolFlagSoftwareLockedMask -C/econst/-/kFSVolInfoBackupDate -C/econst/-/kFSVolInfoBlocks -C/econst/-/kFSVolInfoCheckedDate -C/econst/-/kFSVolInfoCreateDate -C/econst/-/kFSVolInfoDataClump -C/econst/-/kFSVolInfoDirCount -C/econst/-/kFSVolInfoDriveInfo -C/econst/-/kFSVolInfoFileCount -C/econst/-/kFSVolInfoFinderInfo -C/econst/-/kFSVolInfoFlags -C/econst/-/kFSVolInfoFSInfo -C/econst/-/kFSVolInfoGettableInfo -C/econst/-/kFSVolInfoModDate -C/econst/-/kFSVolInfoNextAlloc -C/econst/-/kFSVolInfoNextID -C/econst/-/kFSVolInfoNone -C/econst/-/kFSVolInfoRsrcClump -C/econst/-/kFSVolInfoSettableInfo -C/econst/-/kFSVolInfoSizes -Objective-C/econst/FTSFileType/kFTSFileTypeFile -Objective-C/econst/FTSFileType/kFTSFileTypeFolder -C/data/-/kFTSListingNameKey -C/data/-/kFTSListingSizeKey -C/data/-/kFTSListingTypeKey -C/data/-/kFTSProgressBytesTotalKey -C/data/-/kFTSProgressBytesTransferredKey -C/data/-/kFTSProgressEstimatedTimeKey -C/data/-/kFTSProgressPercentageKey -C/data/-/kFTSProgressTimeElapsedKey -C/data/-/kFTSProgressTransferRateKey -C/econst/-/kfullPrivileges -C/econst/-/kFxDepth_FLOAT16 -C/econst/-/kFxDepth_FLOAT32 -C/econst/-/kFxDepth_UINT8 -C/econst/-/kFxDrawingCoordinates_CANVAS -C/econst/-/kFxDrawingCoordinates_DOCUMENT -C/econst/-/kFxDrawingCoordinates_OBJECT -C/econst/-/kFxDrawingCoordinates_OBJECT_CENTERED -Objective-C/macro/-/kFxDuration_Undefined -C/econst/-/kFxField_LOWER -C/econst/-/kFxField_NONE -C/econst/-/kFxField_UPPER -C/econst/-/kFxFieldOrder_LOWER_FIRST -C/econst/-/kFxFieldOrder_PROGRESSIVE -C/econst/-/kFxFieldOrder_UPPER_FIRST -C/econst/-/kFxImageColorInfo_RGB_GAMMA_DEFAULT_MACINTOSH_DISPLAY -C/econst/-/kFxImageColorInfo_RGB_GAMMA_VIDEO -C/econst/-/kFxImageColorInfo_RGB_LINEAR -C/econst/-/kFxImageColorInfo_YCbCr_R601 -C/econst/-/KFXImageColorInfo_YCbCr_R709 -C/econst/-/kFxImageOrigin_BOTTOM_LEFT -C/econst/-/kFxImageOrigin_TOP_LEFT -C/econst/-/kFxImageType_BITMAP -C/econst/-/kFxImageType_TEXTURE -C/econst/-/kFxImageType_UNKNOWN -C/econst/-/kFxModifierKey_CAPS_LOCK -C/econst/-/kFxModifierKey_COMMAND -C/econst/-/kFxModifierKey_CONTROL -C/econst/-/kFxModifierKey_OPTION -C/econst/-/kFxModifierKey_SHIFT -C/econst/-/kFxParameterFlag_COLLAPSED -C/econst/-/kFxParameterFlag_CUSTOM_UI -C/econst/-/kFxParameterFlag_DEFAULT -C/econst/-/kFxParameterFlag_DISABLED -C/econst/-/kFxParameterFlag_DONT_DISPLAY_IN_DASHBOARD -C/econst/-/kFxParameterFlag_DONT_SAVE -C/econst/-/kFxParameterFlag_HIDDEN -C/econst/-/kFxParameterFlag_IGNORE_MINMAX -C/econst/-/kFxParameterFlag_NOT_ANIMATABLE -C/econst/-/kFxPixelFormat_ARGB -C/econst/-/kFxPixelFormat_R408 -C/econst/-/kFxPixelFormat_R4fl -C/econst/-/kFxPixelFormat_RGBA -C/macro/-/kFxPropertyKey_EquivalentSMPTEWipeCode -C/macro/-/kFxPropertyKey_MayRemapTime -C/macro/-/kFxPropertyKey_PixelIndependent -C/macro/-/kFxPropertyKey_PreservesAlpha -C/macro/-/kFxPropertyKey_SupportsR408 -C/macro/-/kFxPropertyKey_SupportsR4fl -C/macro/-/kFxPropertyKey_SupportsRowBytes -C/econst/-/kFxQuality_HIGH -C/econst/-/kFxQuality_LOW -C/econst/-/kFxQuality_MEDIUM -C/econst/-/kFxTimeBase_CLIP -C/econst/-/kFxTimeBase_TIMELINE -Objective-C/econst/FxTemporalTransitionImageAPI/kFxTransitionInput_A -Objective-C/econst/FxTemporalTransitionImageAPI/kFxTransitionInput_B -C/econst/-/kGetKerberosSessionKey -C/econst/-/kGroupID2Name -C/econst/-/kGroupIDToName -C/econst/-/kGroupIDToUTF8Name -C/econst/-/kGroupName2ID -C/econst/-/kGroupUUIDToUTF8Name -C/econst/-/kHALOutputParam_Volume -C/econst/-/kHasVolumePassword -C/econst/-/kHebrewFigureSpaceVariant -C/econst/-/kHebrewStandardVariant -C/econst/-/kHFSCatalogNodeIDsReusedBit -C/econst/-/kHFSCatalogNodeIDsReusedMask -C/macro/-/kHIAboutBoxCopyrightKey -C/macro/-/kHIAboutBoxDescriptionKey -C/macro/-/kHIAboutBoxNameKey -C/macro/-/kHIAboutBoxStringFileKey -C/macro/-/kHIAboutBoxVersionKey -C/tag/-/kHIDataBrowserClassID -C/econst/-/kHintAdvanced -C/econst/-/kHintBasic -C/econst/-/kHintHidden -C/data/-/kHIToolboxVersionNumber -C/data/-/kICAUserAssignedDeviceNameKey -C/econst/-/kICMPixelFormatIsIndexed -C/econst/-/kICMPixelFormatIsPlanarMask -C/econst/-/kICMPixelFormatIsSupportedByQD -C/econst/-/kICMSequenceUserPreferredCodecs -C/econst/-/kicnsIconFamily -C/func/-/kill -C/func/-/killchar -C/func/-/killpg -C/func/-/KillProcess -C/func/-/killwchar -C/data/-/kIMKCommandClientName -C/data/-/kIMKCommandMenuItemName -C/econst/-/kIMKLocateCandidatesAboveHint -C/econst/-/kIMKLocateCandidatesBelowHint -C/econst/-/kIMKLocateCandidatesLeftHint -C/econst/-/kIMKLocateCandidatesRightHint -C/econst/-/kIMKMouseTrackingMode -C/econst/-/kIMKNearestBoundaryMode -C/econst/-/kIMKScrollingGridCandidatePanel -C/econst/-/kIMKSingleColumnScrollingCandidatePanel -C/econst/-/kIMKSingleRowSteppingCandidatePanel -C/econst/-/kImmediate -C/econst/-/kInactive -Objective-C/instm/NSXMLNode/kind -C/econst/-/kInjectionSectCoverPage -C/econst/-/kInjectionSectJob -C/econst/-/kInjectionSubBeginDefaults -C/econst/-/kInjectionSubBeginFont -C/econst/-/kInjectionSubBeginPageSetup -C/econst/-/kInjectionSubBeginProlog -C/econst/-/kInjectionSubBeginResource -C/econst/-/kInjectionSubBeginSetup -C/econst/-/kInjectionSubBoundingBox -C/econst/-/kInjectionSubDocCustomColors -C/econst/-/kInjectionSubDocFonts -C/econst/-/kInjectionSubDocNeededFonts -C/econst/-/kInjectionSubDocNeededRes -C/econst/-/kInjectionSubDocProcessColors -C/econst/-/kInjectionSubDocSuppliedFonts -C/econst/-/kInjectionSubDocSuppliedRes -C/econst/-/kInjectionSubEndComments -C/econst/-/kInjectionSubEndDefaults -C/econst/-/kInjectionSubEndFont -C/econst/-/kInjectionSubEndPageSetup -C/econst/-/kInjectionSubEndProlog -C/econst/-/kInjectionSubEndResource -C/econst/-/kInjectionSubEndSetup -C/econst/-/kInjectionSubEOF -C/econst/-/kInjectionSubOrientation -C/econst/-/kInjectionSubPage -C/econst/-/kInjectionSubPageOrder -C/econst/-/kInjectionSubPages -C/econst/-/kInjectionSubPageTrailer -C/econst/-/kInjectionSubPlateColor -C/econst/-/kInjectionSubPSAdobe -C/econst/-/kInjectionSubPSAdobeEPS -C/econst/-/kInjectionSubTrailer -C/econst/-/kInkAlternateCommand -C/econst/-/kInkDrawingCommand -C/econst/-/kInkDrawInkAndWritingGuides -C/econst/-/kInkDrawInkOnly -C/econst/-/kInkDrawNothing -C/econst/-/kInkGestureClear -C/econst/-/kInkGestureCopy -C/econst/-/kInkGestureCut -C/econst/-/kInkGestureDelete -C/econst/-/kInkGestureEscape -C/econst/-/kInkGestureJoin -C/econst/-/kInkGestureLeftReturn -C/econst/-/kInkGestureLeftSpace -C/econst/-/kInkGesturePaste -C/econst/-/kInkGestureRightReturn -C/econst/-/kInkGestureRightSpace -C/econst/-/kInkGestureSelectAll -C/econst/-/kInkGestureTab -C/econst/-/kInkGestureUndo -C/econst/-/kInkPenLowerSideButtonMask -C/econst/-/kInkPenTipButtonMask -C/econst/-/kInkPenUpperSideButtonMask -C/econst/-/kInkRecognitionDefault -C/econst/-/kInkRecognitionGesture -C/econst/-/kInkRecognitionNone -C/econst/-/kInkRecognitionText -C/econst/-/kInkSeparatorCommand -C/econst/-/kInkSourceApplication -C/econst/-/kInkSourceUser -C/econst/-/kInkTabletPointerCursor -C/econst/-/kInktabletPointerEraser -C/econst/-/kInkTabletPointerPen -C/econst/-/kInkTabletPointerUnknown -C/econst/-/kInkTerminationAll -C/econst/-/kInkTerminationDefault -C/econst/-/kInkTerminationNone -C/econst/-/kInkTerminationOutOfProximity -C/econst/-/kInkTerminationRecognizerHorizontalBreak -C/econst/-/kInkTerminationRecognizerVerticalBreak -C/econst/-/kInkTerminationStroke -C/econst/-/kInkTerminationTimeOut -C/econst/-/kInkTextDrawDefault -C/econst/-/kInkTextDrawHonorContext -C/econst/-/kInkTextDrawIgnorePressure -C/econst/-/kInkWriteAnywhere -C/econst/-/kInkWriteAnywhereInApp -C/econst/-/kInkWriteInInkAwareAppsOnly -C/econst/-/kInkWriteNowhere -C/econst/-/kInkWriteNowhereInApp -C/macro/-/kINQUIRY_VERSION_DESCRIPTOR_MaxCount -C/econst/-/kioACAccessBlankAccessBit -C/econst/-/kioACAccessBlankAccessMask -C/econst/-/kioACAccessEveryoneReadBit -C/econst/-/kioACAccessEveryoneReadMask -C/econst/-/kioACAccessEveryoneSearchBit -C/econst/-/kioACAccessEveryoneSearchMask -C/econst/-/kioACAccessEveryoneWriteBit -C/econst/-/kioACAccessEveryoneWriteMask -C/econst/-/kioACAccessGroupReadBit -C/econst/-/kioACAccessGroupReadMask -C/econst/-/kioACAccessGroupSearchBit -C/econst/-/kioACAccessGroupSearchMask -C/econst/-/kioACAccessGroupWriteBit -C/econst/-/kioACAccessGroupWriteMask -C/econst/-/kioACAccessOwnerBit -C/econst/-/kioACAccessOwnerMask -C/econst/-/kioACAccessOwnerReadBit -C/econst/-/kioACAccessOwnerReadMask -C/econst/-/kioACAccessOwnerSearchBit -C/econst/-/kioACAccessOwnerSearchMask -C/econst/-/kioACAccessOwnerWriteBit -C/econst/-/kioACAccessOwnerWriteMask -C/econst/-/kioACAccessUserReadBit -C/econst/-/kioACAccessUserReadMask -C/econst/-/kioACAccessUserSearchBit -C/econst/-/kioACAccessUserSearchMask -C/econst/-/kioACAccessUserWriteBit -C/econst/-/kioACAccessUserWriteMask -C/macro/-/kIOActiveMedium -C/macro/-/kIOActivePacketFilters -C/econst/-/kioACUserNoMakeChangesBit -C/econst/-/kioACUserNoMakeChangesMask -C/econst/-/kioACUserNoSeeFilesBit -C/econst/-/kioACUserNoSeeFilesMask -C/econst/-/kioACUserNoSeeFolderBit -C/econst/-/kioACUserNoSeeFolderMask -C/econst/-/kioACUserNotOwnerBit -C/econst/-/kioACUserNotOwnerMask -C/macro/-/kIOATASMARTInterfaceID -C/macro/-/kIOATASMARTLibFactoryID -C/macro/-/kIOATASMARTUserClientTypeID -C/macro/-/kIOAudioControlChannelIDKey -C/macro/-/kIOAudioControlChannelNameAll -C/macro/-/kIOAudioControlChannelNameCenter -C/macro/-/kIOAudioControlChannelNameFrontLeftCenter -C/macro/-/kIOAudioControlChannelNameFrontRightCenter -C/macro/-/kIOAudioControlChannelNameKey -C/macro/-/kIOAudioControlChannelNameLeft -C/macro/-/kIOAudioControlChannelNameLeftRear -C/macro/-/kIOAudioControlChannelNameRearCenter -C/macro/-/kIOAudioControlChannelNameRight -C/macro/-/kIOAudioControlChannelNameRightRear -C/macro/-/kIOAudioControlChannelNameSub -C/macro/-/kIOAudioControlChannelNameSurroundLeft -C/macro/-/kIOAudioControlChannelNameSurroundRight -C/macro/-/kIOAudioControlNumCalls -C/macro/-/kIOAudioControlTypeKey -C/macro/-/kIOAudioControlValueIsReadOnlyKey -C/macro/-/kIOAudioControlValueKey -C/macro/-/kIOAudioDeviceIconNameKey -C/macro/-/kIOAudioDeviceManufacturerNameKey -C/macro/-/kIOAudioDeviceNameKey -C/macro/-/kIOAudioEngineDefaultMixBufferSampleSize -C/macro/-/kIOAudioEngineFullChannelCategoryNamesKey -C/macro/-/kIOAudioEngineFullChannelNamesKey -C/macro/-/kIOAudioEngineFullChannelNumberNamesKey -C/macro/-/kIOAudioEngineNumCalls -C/macro/-/kIOAudioEngineOutputSampleLatencyKey -C/macro/-/kIOAudioEngineStateKey -C/macro/-/kIOAudioLevelControlMaxDBKey -C/macro/-/kIOAudioLevelControlMaxValueKey -C/macro/-/kIOAudioLevelControlMinDBKey -C/macro/-/kIOAudioLevelControlMinValueKey -C/macro/-/kIOAudioPortNameKey -C/macro/-/kIOAudioPortSubTypeKey -C/macro/-/kIOAudioPortTypeKey -C/macro/-/kIOAudioSampleRateKey -C/macro/-/kIOAudioStreamDirectionKey -C/macro/-/kIOAudioStreamSampleLatencyKey -C/macro/-/kIOBDBlockStorageDeviceClass -C/macro/-/kIOBDBlockStorageDriverClass -C/macro/-/kIOBDMediaClass -C/macro/-/kIOBDMediaTypeKey -C/macro/-/kIOBDMediaTypeR -C/macro/-/kIOBDMediaTypeRE -C/macro/-/kIOBDMediaTypeROM -C/macro/-/kIOBlockStorageDeviceClass -C/macro/-/kIOBlockStorageDeviceTypeGeneric -C/macro/-/kIOBlockStorageDeviceTypeKey -C/macro/-/kIOBlockStorageDeviceWriteCacheStateKey -C/macro/-/kIOBlockStorageDriverClass -C/macro/-/kIOBlockStorageDriverStatisticsBytesReadKey -C/macro/-/kIOBlockStorageDriverStatisticsBytesWrittenKey -C/macro/-/kIOBlockStorageDriverStatisticsKey -C/macro/-/kIOBlockStorageDriverStatisticsLatentReadTimeKey -C/macro/-/kIOBlockStorageDriverStatisticsLatentWriteTimeKey -C/macro/-/kIOBlockStorageDriverStatisticsReadErrorsKey -C/macro/-/kIOBlockStorageDriverStatisticsReadRetriesKey -C/macro/-/kIOBlockStorageDriverStatisticsReadsKey -C/macro/-/kIOBlockStorageDriverStatisticsTotalReadTimeKey -C/macro/-/kIOBlockStorageDriverStatisticsTotalWriteTimeKey -C/macro/-/kIOBlockStorageDriverStatisticsWriteErrorsKey -C/macro/-/kIOBlockStorageDriverStatisticsWriteRetriesKey -C/macro/-/kIOBlockStorageDriverStatisticsWritesKey -C/econst/IOBluetoothServiceBrowserControllerOptions/kIOBluetoothServiceBrowserControllerOptionsAutoStartInquiry -C/econst/IOBluetoothServiceBrowserControllerOptions/kIOBluetoothServiceBrowserControllerOptionsDisconnectWhenDone -C/econst/IOBluetoothServiceBrowserControllerOptions/kIOBluetoothServiceBrowserControllerOptionsNone -C/econst/IOMakeMatching/kIOBSDNameMatching -C/macro/-/kIOBuiltin -C/econst/IOCatalogueSendData/kIOCatalogAddDrivers -C/econst/IOCatalogueSendData/kIOCatalogAddDriversNoMatch -C/econst/IOCatalogueGetData/kIOCatalogGetContents -C/econst/IOCatalogueTerminate/kIOCatalogModuleTerminate -C/econst/IOCatalogueTerminate/kIOCatalogModuleUnload -C/econst/IOCatalogueSendData/kIOCatalogRemoveDrivers -C/econst/IOCatalogueSendData/kIOCatalogRemoveDriversNoMatch -C/econst/IOCatalogueReset/kIOCatalogResetDefault -C/econst/IOCatalogueTerminate/kIOCatalogServiceTerminate -C/econst/IOCatalogueSendData/kIOCatalogStartMatching -C/macro/-/kIOCDBlockStorageDeviceClass -C/macro/-/kIOCDBlockStorageDriverClass -C/macro/-/kIOCDMediaClass -C/macro/-/kIOCDMediaTOCKey -C/macro/-/kIOCDMediaTypeKey -C/macro/-/kIOCDMediaTypeR -C/macro/-/kIOCDMediaTypeROM -C/macro/-/kIOCDMediaTypeRW -C/macro/-/kIOCDPartitionSchemeClass -C++/clconst/IOCommandPool/kIOCommandPoolDefaultSize -C/econst/IODebuggerLockState/kIODebuggerLockTaken -C/macro/-/kIODefaultMedium -C/econst/IODisplayDictionaryOptions/kIODisplayMatchingInfo -C/econst/IODisplayDictionaryOptions/kIODisplayNoProductName -C/econst/IODisplayDictionaryOptions/kIODisplayOnlyPreferredName -C++/macro/-/kIODMACommandOutputBig32 -C++/macro/-/kIODMACommandOutputBig64 -C++/macro/-/kIODMACommandOutputHost32 -C++/macro/-/kIODMACommandOutputHost64 -C++/macro/-/kIODMACommandOutputLittle32 -C++/macro/-/kIODMACommandOutputLittle64 -C/macro/-/kIODVDBlockStorageDeviceClass -C/macro/-/kIODVDBlockStorageDriverClass -C/macro/-/kIODVDMediaClass -C/macro/-/kIODVDMediaTypeHDR -C/macro/-/kIODVDMediaTypeHDRAM -C/macro/-/kIODVDMediaTypeHDROM -C/macro/-/kIODVDMediaTypeHDRW -C/macro/-/kIODVDMediaTypeKey -C/macro/-/kIODVDMediaTypePlusR -C/macro/-/kIODVDMediaTypePlusRW -C/macro/-/kIODVDMediaTypeR -C/macro/-/kIODVDMediaTypeRAM -C/macro/-/kIODVDMediaTypeROM -C/macro/-/kIODVDMediaTypeRW -C/macro/-/kIOEthernetAddressSize -C/macro/-/kIOEthernetControllerClass -C/macro/-/kIOEthernetCRCSize -C/macro/-/kIOEthernetDisabledWakeOnLANFilterGroup -C/macro/-/kIOEthernetInterfaceClass -C/macro/-/kIOEthernetMaxPacketSize -C/macro/-/kIOEthernetMinPacketSize -C/macro/-/kIOEthernetStatsKey -C/macro/-/kIOEthernetWakeOnLANFilterGroup -C/econst/kIOExternalMethodScalarInputCountMax/kIOExternalMethodScalarInputCountMax -C/tag/-/kIOExternalMethodScalarInputCountMax -C/econst/kIOExternalMethodScalarInputCountMax/kIOExternalMethodScalarOutputCountMax -C/econst/FramebufferConstants/kIOFBCurrentShmemVersion -C/econst/FramebufferConstants/kIOFBCursorMemory -C/econst/CursorParameters/kIOFBMaxCursorDepth -C/econst/CursorParameters/kIOFBNumCursorFrames -C/econst/CursorParameters/kIOFBNumCursorFramesShift -C/econst/-/kioFCBFileLockedBit -C/econst/-/kioFCBFileLockedMask -C/econst/-/kioFCBLargeFileBit -C/econst/-/kioFCBLargeFileMask -C/econst/-/kioFCBModifiedBit -C/econst/-/kioFCBModifiedMask -C/econst/-/kioFCBOwnClumpBit -C/econst/-/kioFCBOwnClumpMask -C/econst/-/kioFCBResourceBit -C/econst/-/kioFCBResourceMask -C/econst/-/kioFCBSharedWriteBit -C/econst/-/kioFCBSharedWriteMask -C/econst/-/kioFCBWriteBit -C/econst/-/kioFCBWriteLockedBit -C/econst/-/kioFCBWriteLockedMask -C/econst/-/kioFCBWriteMask -C/macro/-/kIOFeatures -C/macro/-/kIOFilterSchemeClass -C/econst/-/kioFlAttribCopyProtBit -C/econst/-/kioFlAttribCopyProtMask -C/econst/-/kioFlAttribDataOpenBit -C/econst/-/kioFlAttribDataOpenMask -C/econst/-/kioFlAttribDirBit -C/econst/-/kioFlAttribDirMask -C/econst/-/kioFlAttribFileOpenBit -C/econst/-/kioFlAttribFileOpenMask -C/econst/-/kioFlAttribInSharedBit -C/econst/-/kioFlAttribInSharedMask -C/econst/-/kioFlAttribLockedBit -C/econst/-/kioFlAttribLockedMask -C/econst/-/kioFlAttribMountedBit -C/econst/-/kioFlAttribMountedMask -C/econst/-/kioFlAttribResOpenBit -C/econst/-/kioFlAttribResOpenMask -C/econst/-/kioFlAttribSharePointBit -C/econst/-/kioFlAttribSharePointMask -C/econst/NodeFlags/kIOFWDisableAllPhysicalAccess -C/econst/NodeFlags/kIOFWDisablePhyOnSleep -C/econst/NodeFlags/kIOFWDisablePhysicalAccess -C/econst/NodeFlags/kIOFWEnableRetryOnAckD -C/econst/NodeFlags/kIOFWLimitAsyncPacketSize -C/econst/NodeFlags/kIOFWMustBeRoot -C/econst/NodeFlags/kIOFWMustHaveGap63 -C/econst/NodeFlags/kIOFWMustNotBeRoot -C/macro/-/kIOHIDDeviceDeviceInterfaceID -C/macro/-/kIOHIDDeviceFactoryID -C/macro/-/kIOHIDDeviceInterfaceID -C/macro/-/kIOHIDDeviceInterfaceID121 -C/macro/-/kIOHIDDeviceInterfaceID122 -C/macro/-/kIOHIDDeviceQueueInterfaceID -C/macro/-/kIOHIDDeviceTransactionInterfaceID -C/macro/-/kIOHIDDeviceTypeID -C/macro/-/kIOHIDElementCalibrationDeadZoneMaxKey -C/macro/-/kIOHIDElementCalibrationDeadZoneMinKey -C/macro/-/kIOHIDElementCalibrationGranularityKey -C/macro/-/kIOHIDElementCalibrationMaxKey -C/macro/-/kIOHIDElementCalibrationMinKey -C/macro/-/kIOHIDElementCalibrationSaturationMaxKey -C/macro/-/kIOHIDElementCalibrationSaturationMinKey -C/econst/IOHIDElementCollectionType/kIOHIDElementCollectionTypeApplication -C/econst/IOHIDElementCollectionType/kIOHIDElementCollectionTypeLogical -C/econst/IOHIDElementCollectionType/kIOHIDElementCollectionTypeNamedArray -C/econst/IOHIDElementCollectionType/kIOHIDElementCollectionTypePhysical -C/econst/IOHIDElementCollectionType/kIOHIDElementCollectionTypeReport -C/econst/IOHIDElementCollectionType/kIOHIDElementCollectionTypeUsageModifier -C/econst/IOHIDElementCollectionType/kIOHIDElementCollectionTypeUsageSwitch -C/macro/-/kIOHIDElementCookieKey -C/macro/-/kIOHIDElementCookieMinKey -C/macro/-/kIOHIDElementKey -C/econst/IOHIDElementType/kIOHIDElementTypeCollection -C/econst/IOHIDElementType/kIOHIDElementTypeFeature -C/econst/IOHIDElementType/kIOHIDElementTypeInput_Axis -C/econst/IOHIDElementType/kIOHIDElementTypeInput_Button -C/econst/IOHIDElementType/kIOHIDElementTypeInput_Misc -C/econst/IOHIDElementType/kIOHIDElementTypeInput_ScanCodes -C/econst/IOHIDElementType/kIOHIDElementTypeOutput -C/econst/IOHIDOptionsType/kIOHIDOptionsTypeNone -C/econst/IOHIDOptionsType/kIOHIDOptionsTypeSeizeDevice -C/macro/-/kIOHIDOutputTransactionInterfaceID -C/macro/-/kIOHIDQueueInterfaceID -C/econst/IOHIDQueueOptionsType/kIOHIDQueueOptionsTypeEnqueueAll -C/econst/IOHIDQueueOptionsType/kIOHIDQueueOptionsTypeNone -C/econst/IOHIDReportOption/kIOHIDReportOptionNotInterrupt -C/econst/IOHIDReportType/kIOHIDReportTypeFeature -C/econst/IOHIDReportType/kIOHIDReportTypeInput -C/econst/IOHIDReportType/kIOHIDReportTypeOutput -C/econst/IOHIDTransactionDirectionType/kIOHIDTransactionDirectionTypeInput -C/econst/IOHIDTransactionDirectionType/kIOHIDTransactionDirectionTypeOutput -C/econst/IOHIDTransactionOption/kIOHIDTransactionOptionDefaultOutputValue -C/macro/-/kIOHIDTransportKey -C/econst/IOHIDValueScaleType/kIOHIDValueScaleTypeCalibrated -C/econst/IOHIDValueScaleType/kIOHIDValueScaleTypePhysical -C/macro/-/kIOInterfaceExtraFlags -C/macro/-/kIOInterfaceFlags -C/macro/-/kIOInterfaceNamePrefix -C/macro/-/kIOInterfaceState -C/macro/-/kIOInterfaceType -C/macro/-/kIOInterfaceUnit -C/macro/-/kIOKitPersonalitiesKey -C/macro/-/kIOLinkData -C/macro/-/kIOLinkSpeed -C/macro/-/kIOLinkStatus -C/macro/-/kIOLocation -C/macro/-/kIOMACAddress -C/data/-/kIOMasterPortDefault -C/macro/-/kIOMaxPacketSize -C/macro/-/kIOMaxTransferUnit -C/macro/-/kIOMediaAddressLength -C/econst/IOMediaAttributeMask/kIOMediaAttributeEjectableMask -C/econst/IOMediaAttributeMask/kIOMediaAttributeRemovableMask -C/macro/-/kIOMediaClass -C/macro/-/kIOMediaContentHintKey -C/macro/-/kIOMediaContentKey -C/macro/-/kIOMediaContentMaskKey -C/macro/-/kIOMediaEjectableKey -C/macro/-/kIOMediaHeaderLength -C/macro/-/kIOMediaIconKey -C/macro/-/kIOMediaLeafKey -C/macro/-/kIOMediaLiveKey -C/macro/-/kIOMediaOpenKey -C/macro/-/kIOMediaPartitionIDKey -C/macro/-/kIOMediaPreferredBlockSizeKey -C/macro/-/kIOMediaRemovableKey -C/macro/-/kIOMediaSessionIDKey -C/macro/-/kIOMediaSizeKey -C/econst/IOMediaState/kIOMediaStateBusy -C/econst/IOMediaState/kIOMediaStateOffline -C/econst/IOMediaState/kIOMediaStateOnline -C/macro/-/kIOMediaUUIDKey -C/macro/-/kIOMediaWholeKey -C/macro/-/kIOMediaWritableKey -C/macro/-/kIOMediumDictionary -C/macro/-/kIOMediumFlags -C/macro/-/kIOMediumIndex -C/macro/-/kIOMediumSpeed -C/macro/-/kIOMediumType -C/macro/-/kIOMessageMediaParametersHaveChanged -C/macro/-/kIOMessageMediaStateHasChanged -C/macro/-/kIOMinPacketSize -C/macro/-/kIOMMCDeviceInterfaceID -C/macro/-/kIOMMCDeviceUserClientTypeID -C/macro/-/kIOModel -C/macro/-/kIOMulticastAddressList -C/macro/-/kIONetworkControllerClass -C/macro/-/kIONetworkData -C/econst/NetworkDataAccessTypes/kIONetworkDataAccessTypeRead -C/econst/NetworkDataAccessTypes/kIONetworkDataAccessTypeReset -C/macro/-/kIONetworkDataAccessTypes -C/econst/NetworkDataAccessTypes/kIONetworkDataAccessTypeSerialize -C/econst/NetworkDataAccessTypes/kIONetworkDataAccessTypeWrite -C/macro/-/kIONetworkDataBasicAccessTypes -C/econst/NetworkDataBufferTypes/kIONetworkDataBufferTypeExternal -C/econst/NetworkDataBufferTypes/kIONetworkDataBufferTypeInternal -C/econst/NetworkDataBufferTypes/kIONetworkDataBufferTypeNone -C/macro/-/kIONetworkDataBytes -C/macro/-/kIONetworkDataSize -C/econst/NetworkFeatureFlags/kIONetworkFeatureMultiPages -C/econst/NetworkFeatureFlags/kIONetworkFeatureNoBSDWait -C/econst/NetworkFeatureFlags/kIONetworkFeaturesHardwareVlan -C/econst/NetworkFeatureFlags/kIONetworkFeaturesSoftwareVlan -C/econst/NetworkFeatureFlags/kIONetworkFeatureTSOIPv4 -C/econst/NetworkFeatureFlags/kIONetworkFeatureTSOIPv6 -C/macro/-/kIONetworkFilterGroup -C/macro/-/kIONetworkInterfaceClass -C/econst/InterfaceObjectStates/kIONetworkInterfaceDisabledState -C/econst/InterfaceObjectStates/kIONetworkInterfaceOpenedState -C/econst/InterfaceObjectStates/kIONetworkInterfaceRegisteredState -C/macro/-/kIONetworkStatsKey -C/econst/IONetworkPacketFilterOptions/kIONetworkSupportedPacketFilters -C/econst/IOMakeMatching/kIOOFPathMatching -C/econst/OutputCommands/kIOOutputCommandMask -C/econst/OutputCommands/kIOOutputCommandNone -C/econst/OutputCommands/kIOOutputCommandStall -C/macro/-/kIOOutputQueueStatsKey -C/econst/OutputPacketStatus/kIOOutputStatusAccept -C/econst/OutputPacketStatus/kIOOutputStatusDropped -C/econst/OutputPacketStatus/kIOOutputStatusMask -C/econst/OutputPacketStatus/kIOOutputStatusRetry -C/econst/StandardPacketFilters/kIOPacketFilterBroadcast -C/econst/StandardPacketFilters/kIOPacketFilterMulticast -C/econst/StandardPacketFilters/kIOPacketFilterMulticastAll -C/econst/StandardPacketFilters/kIOPacketFilterPromiscuous -C/econst/StandardPacketFilters/kIOPacketFilterPromiscuousAll -C/macro/-/kIOPacketFilters -C/econst/StandardPacketFilters/kIOPacketFilterUnicast -C/macro/-/kIOPartitionSchemeClass -C/macro/-/kIOPMAssertionLevelKey -C/econst/Assertion/kIOPMAssertionLevelOff -C/econst/Assertion/kIOPMAssertionLevelOn -C/macro/-/kIOPMAssertionNameKey -C/macro/-/kIOPMAssertionTypeKey -C/macro/-/kIOPMAssertionTypeNoDisplaySleep -C/macro/-/kIOPMAssertionTypeNoIdleSleep -C/macro/-/kIOPMAutoPowerOn -C/macro/-/kIOPMAutoRestart -C/macro/-/kIOPMAutoShutdown -C/macro/-/kIOPMAutoSleep -C/macro/-/kIOPMAutoWake -C/macro/-/kIOPMAutoWakeOrPowerOn -C/econst/IOPMPowerFlags/kIOPMDeviceUsable -C/econst/IOPMPowerFlags/kIOPMLowPower -C/tag/-/kIOPMNullAssertionID -C/macro/-/kIOPMPowerEventAppNameKey -C/macro/-/kIOPMPowerEventTimeKey -C/macro/-/kIOPMPowerEventTypeKey -C/econst/IOPMPowerFlags/kIOPMPowerOn -C/econst/IOPMPowerFlags/kIOPMPreventIdleSleep -C/econst/IOPMPowerFlags/kIOPMRestart -C/econst/IOPMPowerFlags/kIOPMRestartCapability -C/econst/IOPMPowerFlags/kIOPMSleep -C/econst/IOPMPowerFlags/kIOPMSleepCapability -C/macro/-/kIOPrimaryInterface -C/macro/-/kIOPropertyAutonomousSpinDownKey -C/macro/-/kIOPropertyBridgeCharacteristicsKey -C/macro/-/kIOPropertyBytesPerPhysicalSectorKey -C/macro/-/kIOPropertyCylinderCountKey -C/macro/-/kIOPropertyDeviceCharacteristicsKey -C/macro/-/kIOPropertyEjectRequireStartStopUnitKey -C/macro/-/kIOPropertyExternalKey -C/macro/-/kIOPropertyFibreChannelAddressIdentifierKey -C/macro/-/kIOPropertyFibreChannelALPAKey -C/macro/-/kIOPropertyFibreChannelCableDescriptionCopperKey -C/macro/-/kIOPropertyFibreChannelCableDescriptionFiberOpticKey -C/macro/-/kIOPropertyFibreChannelCableDescriptionKey -C/macro/-/kIOPropertyFibreChannelNodeWorldWideNameKey -C/macro/-/kIOPropertyFibreChannelPortWorldWideNameKey -C/macro/-/kIOPropertyHeadCountKey -C/macro/-/kIOPropertyInterconnectFileKey -C/macro/-/kIOPropertyInterconnectRAMKey -C/macro/-/kIOPropertyInternalExternalKey -C/macro/-/kIOPropertyInternalKey -C/macro/-/kIOPropertyLogicalBlockSizeKey -C/macro/-/kIOPropertyMediumRotationRateKey -C/macro/-/kIOPropertyMediumTypeKey -C/macro/-/kIOPropertyMediumTypeRotationalKey -C/macro/-/kIOPropertyMediumTypeSolidStateKey -C/macro/-/kIOPropertyPhysicalBlockSizeKey -C/macro/-/kIOPropertyPhysicalInterconnectLocationKey -C/macro/-/kIOPropertyPhysicalInterconnectTypeATA -C/macro/-/kIOPropertyPhysicalInterconnectTypeATAPI -C/macro/-/kIOPropertyPhysicalInterconnectTypeFibreChannel -C/macro/-/kIOPropertyPhysicalInterconnectTypeFireWire -C/macro/-/kIOPropertyPhysicalInterconnectTypeKey -C/macro/-/kIOPropertyPhysicalInterconnectTypeSCSIParallel -C/macro/-/kIOPropertyPhysicalInterconnectTypeSerialATA -C/macro/-/kIOPropertyPhysicalInterconnectTypeSerialAttachedSCSI -C/macro/-/kIOPropertyPhysicalInterconnectTypeUSB -C/macro/-/kIOPropertyPhysicalInterconnectTypeVirtual -C/macro/-/kIOPropertyPortDescriptionKey -C/macro/-/kIOPropertyPortSpeed10GigabitKey -C/macro/-/kIOPropertyPortSpeed1_5GigabitKey -C/macro/-/kIOPropertyPortSpeed1GigabitKey -C/macro/-/kIOPropertyPortSpeed2GigabitKey -C/macro/-/kIOPropertyPortSpeed3GigabitKey -C/macro/-/kIOPropertyPortSpeed4GigabitKey -C/macro/-/kIOPropertyPortSpeed6GigabitKey -C/macro/-/kIOPropertyPortSpeed8GigabitKey -C/macro/-/kIOPropertyPortSpeedAutomatic10GigabitKey -C/macro/-/kIOPropertyPortSpeedAutomatic1_5GigabitKey -C/macro/-/kIOPropertyPortSpeedAutomatic1GigabitKey -C/macro/-/kIOPropertyPortSpeedAutomatic2GigabitKey -C/macro/-/kIOPropertyPortSpeedAutomatic3GigabitKey -C/macro/-/kIOPropertyPortSpeedAutomatic4GigabitKey -C/macro/-/kIOPropertyPortSpeedAutomatic6GigabitKey -C/macro/-/kIOPropertyPortSpeedAutomatic8GigabitKey -C/macro/-/kIOPropertyPortSpeedAutomaticKey -C/macro/-/kIOPropertyPortSpeedKey -C/macro/-/kIOPropertyPortStatusKey -C/macro/-/kIOPropertyPortStatusLinkEstablishedKey -C/macro/-/kIOPropertyPortStatusLinkFailedKey -C/macro/-/kIOPropertyPortStatusNoLinkEstablishedKey -C/macro/-/kIOPropertyPortTopologyAutomaticKey -C/macro/-/kIOPropertyPortTopologyAutomaticNLPortKey -C/macro/-/kIOPropertyPortTopologyAutomaticNPortKey -C/macro/-/kIOPropertyPortTopologyKey -C/macro/-/kIOPropertyPortTopologyNLPortKey -C/macro/-/kIOPropertyPortTopologyNPortKey -C/macro/-/kIOPropertyProductNameKey -C/macro/-/kIOPropertyProductRevisionLevelKey -C/macro/-/kIOPropertyProductSerialNumberKey -C/macro/-/kIOPropertyProtocolCharacteristicsKey -C/macro/-/kIOPropertyReadTimeOutDurationKey -C/macro/-/kIOPropertyRetryCountKey -C/macro/-/kIOPropertyRigidDiskGeometryKey -C/macro/-/kIOPropertySASAddressKey -C/macro/-/kIOPropertySATProductIdentification -C/macro/-/kIOPropertySATProductRevisonLevel -C/macro/-/kIOPropertySATVendorIdentification -C/macro/-/kIOPropertySCSIDeviceCharacteristicsKey -C/macro/-/kIOPropertySCSIDomainIdentifierKey -C/macro/-/kIOPropertySCSIInitiatorIdentifierKey -C/macro/-/kIOPropertySCSIINQUIRYDeviceIdAssociation -C/macro/-/kIOPropertySCSIINQUIRYDeviceIdCodeSet -C/macro/-/kIOPropertySCSIINQUIRYDeviceIdentification -C/macro/-/kIOPropertySCSIINQUIRYDeviceIdentifier -C/macro/-/kIOPropertySCSIINQUIRYDeviceIdType -C/macro/-/kIOPropertySCSIInquiryLengthKey -C/macro/-/kIOPropertySCSIINQUIRYUnitSerialNumber -C/macro/-/kIOPropertySCSILogicalUnitNumberKey -C/macro/-/kIOPropertySCSIManualEjectKey -C/macro/-/kIOPropertySCSIParallelSignalingTypeHVDKey -C/macro/-/kIOPropertySCSIParallelSignalingTypeKey -C/macro/-/kIOPropertySCSIParallelSignalingTypeLVDKey -C/macro/-/kIOPropertySCSIParallelSignalingTypeSEKey -C/macro/-/kIOPropertySCSIPeripheralDeviceType -C/macro/-/kIOPropertySCSIPeripheralDeviceTypeSize -C/macro/-/kIOPropertySCSIProductIdentification -C/macro/-/kIOPropertySCSIProductRevisionLevel -C/macro/-/kIOPropertySCSIProtocolMultiInitKey -C/macro/-/kIOPropertySCSITargetIdentifierKey -C/macro/-/kIOPropertySCSITaskAuthoringDevice -C/macro/-/kIOPropertySCSITaskDeviceCategory -C/macro/-/kIOPropertySCSITaskUserClientDevice -C/macro/-/kIOPropertySCSITaskUserClientInstanceGUID -C/macro/-/kIOPropertySCSIVendorIdentification -C/macro/-/kIOPropertySectorCountPerTrackKey -C/macro/-/kIOPropertySMARTCapableKey -C/macro/-/kIOPropertySupportedBDFeaturesKey -C/macro/-/kIOPropertySupportedCDFeaturesKey -C/macro/-/kIOPropertySupportedDVDFeaturesKey -C/macro/-/kIOPropertyTargetDiskModeKey -C/macro/-/kIOPropertyVendorNameKey -C/macro/-/kIOPropertyWriteTimeOutDurationKey -C/macro/-/kIOPSACPowerValue -C/macro/-/kIOPSBatteryFailureModesKey -C/macro/-/kIOPSBatteryHealthConditionKey -C/macro/-/kIOPSBatteryHealthKey -C/macro/-/kIOPSBatteryPowerValue -C/macro/-/kIOPSCheckBatteryValue -C/macro/-/kIOPSCommandDelayedRemovePowerKey -C/macro/-/kIOPSCommandEnableAudibleAlarmKey -C/macro/-/kIOPSCommandStartupDelayKey -C/macro/-/kIOPSCurrentCapacityKey -C/macro/-/kIOPSCurrentKey -C/macro/-/kIOPSDeadWarnLevelKey -C/macro/-/kIOPSDesignCapacityKey -C/macro/-/kIOPSDynamicStorePath -C/macro/-/kIOPSFailureCellImbalance -C/macro/-/kIOPSFailureChargeFET -C/macro/-/kIOPSFailureChargeOverCurrent -C/macro/-/kIOPSFailureChargeOverTemp -C/macro/-/kIOPSFailureDataFlushFault -C/macro/-/kIOPSFailureDischargeFET -C/macro/-/kIOPSFailureDischargeOverCurrent -C/macro/-/kIOPSFailureDischargeOverTemp -C/macro/-/kIOPSFailureExternalInput -C/macro/-/kIOPSFailureFuseBlown -C/macro/-/kIOPSFailureOpenThermistor -C/macro/-/kIOPSFailurePeriodicAFEComms -C/macro/-/kIOPSFailurePermanentAFEComms -C/macro/-/kIOPSFailureSafetyOverVoltage -C/macro/-/kIOPSFairValue -C/macro/-/kIOPSGoodValue -C/macro/-/kIOPSHardwareSerialNumberKey -C/macro/-/kIOPSHealthConfidenceKey -C/macro/-/kIOPSInternalBatteryType -C/macro/-/kIOPSInternalType -C/macro/-/kIOPSIsChargedKey -C/macro/-/kIOPSIsChargingKey -C/macro/-/kIOPSIsFinishingChargeKey -C/macro/-/kIOPSIsPresentKey -C/data/-/kIOPSLowBatteryWarningFinal -C/data/-/kIOPSLowBatteryWarningNone -C/macro/-/kIOPSLowWarnLevelKey -C/macro/-/kIOPSMaxCapacityKey -C/macro/-/kIOPSMaxErrKey -C/macro/-/kIOPSNameKey -C/macro/-/kIOPSNetworkTransportType -C/macro/-/kIOPSNotifyLowBattery -C/macro/-/kIOPSOffLineValue -C/macro/-/kIOPSPermanentFailureValue -C/macro/-/kIOPSPoorValue -C/macro/-/kIOPSPowerAdapterFamilyKey -C/macro/-/kIOPSPowerAdapterIDKey -C/macro/-/kIOPSPowerAdapterRevisionKey -C/macro/-/kIOPSPowerAdapterSerialNumberKey -C/macro/-/kIOPSPowerAdapterWattsKey -C/macro/-/kIOPSPowerSourceIDKey -C/macro/-/kIOPSPowerSourceStateKey -C/macro/-/kIOPSSerialTransportType -C/macro/-/kIOPSTimeToEmptyKey -C/macro/-/kIOPSTimeToFullChargeKey -C/macro/-/kIOPSTransportTypeKey -C/macro/-/kIOPSTypeKey -C/macro/-/kIOPSUPSManagementClaimed -C/macro/-/kIOPSUPSType -C/macro/-/kIOPSUSBTransportType -C/macro/-/kIOPSVendorDataKey -C/macro/-/kIOPSVoltageKey -C/macro/-/kIORequiredPacketFilters -C/econst/OutputHandlerReturnCodes/kIOReturnOutputDropped -C/econst/OutputHandlerReturnCodes/kIOReturnOutputStall -C/econst/OutputHandlerReturnCodes/kIOReturnOutputSuccess -C/macro/-/kIORevision -C/macro/-/kIOSCSIArchitectureBundleIdentifierKey -C/macro/-/kIOSCSITaskDeviceInterfaceID -C/macro/-/kIOSCSITaskDeviceUserClientTypeID -C/macro/-/kIOSCSITaskInterfaceID -C/macro/-/kIOSCSITaskLibFactoryID -C/macro/-/kIOSelectedMedium -C/econst/IOMakeMatching/kIOServiceMatching -C/econst/IOStorageAccess/kIOStorageAccessExclusiveLock -C/econst/IOStorageAccess/kIOStorageAccessNone -C/econst/IOStorageAccess/kIOStorageAccessReader -C/econst/IOStorageAccess/kIOStorageAccessReaderWriter -C/econst/IOStorageAccess/kIOStorageAccessSharedLock -C/macro/-/kIOStorageCategory -C/macro/-/kIOStorageClass -C/macro/-/kIOStorageFeatureDiscard -C/macro/-/kIOStorageFeatureForceUnitAccess -C/macro/-/kIOStorageFeaturesKey -C/econst/IOStorageOptions/kIOStorageOptionForceUnitAccess -C/econst/Memory/kIOStreamBufferIDMask -C/econst/User/kIOStreamEnqueueInputSyncTrap -C/econst/User/kIOStreamEnqueueInputTrap -C/econst/Memory/kIOStreamMemoryTypeBufferControl -C/econst/Memory/kIOStreamMemoryTypeBufferData -C/econst/Memory/kIOStreamMemoryTypeInputQueue -C/econst/Memory/kIOStreamMemoryTypeMask -C/econst/Memory/kIOStreamMemoryTypeOutputQueue -C/econst/User/kIOStreamMethodClose -C/econst/User/kIOStreamMethodGetMode -C/econst/User/kIOStreamMethodOpen -C/econst/User/kIOStreamMethodSetMode -C/econst/User/kIOStreamMethodStart -C/econst/User/kIOStreamMethodStop -C/econst/User/kIOStreamMethodSuspend -C/econst/Mach/kIOStreamPortTypeInput -C/econst/Mach/kIOStreamPortTypeOutput -C/macro/-/kIOSystemLoadAdvisoryBatteryLevelKey -C/macro/-/kIOSystemLoadAdvisoryCombinedLevelKey -C/macro/-/kIOSystemLoadAdvisoryNotifyName -C/macro/-/kIOSystemLoadAdvisoryThermalLevelKey -C/macro/-/kIOSystemLoadAdvisoryUserLevelKey -C/tag/-/kIOUCVariableStructureSize -C/econst/kIOUCVariableStructureSize/kIOUCVariableStructureSize -C/macro/-/kIOUPSPlugInInterfaceID -C/macro/-/kIOUPSPlugInInterfaceID_v140 -C/macro/-/kIOUPSPlugInTypeID -C/macro/-/kIOUSBDeviceInterfaceID -C/macro/-/kIOUSBDeviceInterfaceID182 -C/macro/-/kIOUSBDeviceInterfaceID187 -C/macro/-/kIOUSBDeviceInterfaceID197 -C/macro/-/kIOUSBDeviceInterfaceID245 -C/macro/-/kIOUSBDeviceInterfaceID300 -C/macro/-/kIOUSBDeviceInterfaceID320 -C/macro/-/kIOUSBDeviceUserClientTypeID -C/macro/-/kIOUSBFactoryID -C/tag/-/kIOUSBFindInterfaceDontCare -C/macro/-/kIOUSBInterfaceInterfaceID -C/macro/-/kIOUSBInterfaceInterfaceID182 -C/macro/-/kIOUSBInterfaceInterfaceID183 -C/macro/-/kIOUSBInterfaceInterfaceID190 -C/macro/-/kIOUSBInterfaceInterfaceID192 -C/macro/-/kIOUSBInterfaceInterfaceID197 -C/macro/-/kIOUSBInterfaceInterfaceID220 -C/macro/-/kIOUSBInterfaceInterfaceID245 -C/macro/-/kIOUSBInterfaceInterfaceID300 -C/econst/IOOptionBits/kIOUSBInterfaceOpenAlt -C/macro/-/kIOUSBInterfaceUserClientTypeID -C/macro/-/kIOUSBLinkErr -C/econst/-/kioVAtrbDefaultVolumeBit -C/econst/-/kioVAtrbDefaultVolumeMask -C/econst/-/kioVAtrbFilesOpenBit -C/econst/-/kioVAtrbFilesOpenMask -C/econst/-/kioVAtrbHardwareLockedBit -C/econst/-/kioVAtrbHardwareLockedMask -C/econst/-/kioVAtrbSoftwareLockedBit -C/econst/-/kioVAtrbSoftwareLockedMask -C/macro/-/kIOVendor -C/econst/-/kJapaneseBasicVariant -C/econst/-/kJapaneseNoOneByteKanaOption -C/econst/-/kJapanesePostScriptPrintVariant -C/econst/-/kJapanesePostScriptScrnVariant -C/econst/-/kJapaneseStandardVariant -C/econst/-/kJapaneseStdNoVerticalsVariant -C/econst/-/kJapaneseUseAsciiBackslashOption -C/econst/-/kJapaneseVertAtKuPlusTenVariant -C/econst/JSClassAttribute/kJSClassAttributeNoAutomaticPrototype -C/econst/JSClassAttribute/kJSClassAttributeNone -C/data/-/kJSClassDefinitionEmpty -C/econst/JSPropertyAttribute/kJSPropertyAttributeDontDelete -C/econst/JSPropertyAttribute/kJSPropertyAttributeDontEnum -C/econst/JSPropertyAttribute/kJSPropertyAttributeNone -C/econst/JSPropertyAttribute/kJSPropertyAttributeReadOnly -C/econst/-/kKerberosUAMStr -C/econst/-/kLarge4BitIcon -C/econst/-/kLarge4BitIconSize -C/econst/-/kLarge8BitIcon -C/econst/-/kLarge8BitIconSize -C/econst/-/kLargeIcon -C/econst/-/kLargeIconSize -C/func/-/kld -C/func/-/kld_address_func -C/func/-/kld_forget_symbol -C/func/-/kld_load -C/func/-/kld_load_basefile -C/func/-/kld_load_basefile_from_memory -C/func/-/kld_load_from_memory -C/func/-/kld_lookup -C/func/-/kld_set_link_options -C/func/-/kld_unload_all -C/econst/-/kLinearPCMFormatFlagIsAlignedHigh -C/econst/-/kLinearPCMFormatFlagIsBigEndian -C/econst/-/kLinearPCMFormatFlagIsFloat -C/econst/-/kLinearPCMFormatFlagIsNonInterleaved -C/econst/-/kLinearPCMFormatFlagIsNonMixable -C/econst/-/kLinearPCMFormatFlagIsPacked -C/econst/-/kLinearPCMFormatFlagIsSignedInteger -C/econst/-/kLinearPCMFormatFlagsAreAllClear -C/econst/-/kLinearPCMFormatFlagsSampleFractionMask -C/econst/-/kLinearPCMFormatFlagsSampleFractionShift -C/econst/-/kLocalPPDDomain -C/econst/-/kLoginWithID -C/econst/-/kLoginWithoutID -C/econst/-/kLoginWithTimeAndID -C/econst/-/kLSAcceptAllowLoginUI -C/econst/-/kLSAcceptDefault -C/econst/-/kLSAppDoesNotClaimTypeErr -C/econst/-/kLSAppDoesNotSupportSchemeWarning -C/econst/-/kLSAppInTrashErr -C/econst/-/kLSApplicationNotFoundErr -C/econst/-/kLSCannotSetInfoErr -C/econst/-/kLSDataErr -C/econst/-/kLSDataTooOldErr -C/econst/-/kLSDataUnavailableErr -C/econst/-/kLSHandlerOptionsDefault -C/econst/-/kLSHandlerOptionsIgnoreCreator -C/econst/-/kLSIncompatibleSystemVersionErr -C/econst/-/kLSInitializeDefaults -C/econst/-/kLSInvalidExtensionIndex -C/data/-/kLSItemContentType -C/data/-/kLSItemDisplayKind -C/data/-/kLSItemDisplayName -C/data/-/kLSItemExtension -C/data/-/kLSItemExtensionIsHidden -C/data/-/kLSItemFileCreator -C/data/-/kLSItemFileType -C/econst/-/kLSItemInfoAppIsScriptable -C/econst/-/kLSItemInfoAppPrefersClassic -C/econst/-/kLSItemInfoAppPrefersNative -C/econst/-/kLSItemInfoExtensionIsHidden -C/econst/-/kLSItemInfoIsAliasFile -C/econst/-/kLSItemInfoIsApplication -C/econst/-/kLSItemInfoIsClassicApp -C/econst/-/kLSItemInfoIsContainer -C/econst/-/kLSItemInfoIsInvisible -C/econst/-/kLSItemInfoIsNativeApp -C/econst/-/kLSItemInfoIsPackage -C/econst/-/kLSItemInfoIsPlainFile -C/econst/-/kLSItemInfoIsSymlink -C/econst/-/kLSItemInfoIsVolume -C/data/-/kLSItemIsInvisible -C/data/-/kLSItemRoleHandlerDisplayName -C/econst/-/kLSLaunchAndDisplayErrors -C/econst/-/kLSLaunchAndHide -C/econst/-/kLSLaunchAndHideOthers -C/econst/-/kLSLaunchAndPrint -C/econst/-/kLSLaunchAsync -C/econst/-/kLSLaunchDefaults -C/econst/-/kLSLaunchDontAddToRecents -C/econst/-/kLSLaunchDontSwitch -C/econst/-/kLSLaunchHasUntrustedContents -C/econst/-/kLSLaunchInClassic -C/econst/-/kLSLaunchInhibitBGOnly -C/econst/-/kLSLaunchInProgressErr -C/econst/-/kLSLaunchNewInstance -C/econst/-/kLSLaunchNoParams -C/econst/-/kLSLaunchReserved2 -C/econst/-/kLSLaunchReserved3 -C/econst/-/kLSLaunchReserved4 -C/econst/-/kLSLaunchReserved5 -C/econst/-/kLSLaunchStartClassic -C/macro/-/kLSMAlgorithmDense -C/macro/-/kLSMAlgorithmKey -C/macro/-/kLSMAlgorithmSparse -C/macro/-/kLSMDimensionKey -C/econst/-/kLSMinCatInfoBitmap -C/macro/-/kLSMIterationsKey -C/macro/-/kLSMPrecisionDouble -C/macro/-/kLSMPrecisionFloat -C/macro/-/kLSMPrecisionKey -C/macro/-/kLSMSweepAgeKey -C/macro/-/kLSMSweepCutoffKey -C/econst/-/kLSMultipleSessionsNotSupportedErr -C/econst/-/kLSNoClassicEnvironmentErr -C/econst/-/kLSNoExecutableErr -C/econst/-/kLSNoLaunchPermissionErr -C/econst/-/kLSNoRegistrationInfoErr -C/econst/-/kLSNotAnApplicationErr -C/econst/-/kLSNotInitializedErr -C/econst/-/kLSNotRegisteredErr -C/econst/-/kLSRequestAllFlags -C/econst/-/kLSRequestAllInfo -C/econst/-/kLSRequestAppTypeFlags -C/econst/-/kLSRequestBasicFlagsOnly -C/econst/-/kLSRequestExtension -C/econst/-/kLSRequestExtensionFlagsOnly -C/econst/-/kLSRequestIconAndKind -C/econst/-/kLSRequestTypeCreator -C/econst/-/kLSRolesAll -C/econst/-/kLSRolesEditor -C/econst/-/kLSRolesNone -C/econst/-/kLSRolesShell -C/econst/-/kLSRolesViewer -C/econst/-/kLSServerCommunicationErr -C/econst/-/kLSUnknownCreator -C/econst/-/kLSUnknownErr -C/econst/-/kLSUnknownKindID -C/econst/-/kLSUnknownType -C/econst/-/kLSUnknownTypeErr -C/econst/-/kMacArabicAlBayanVariant -C/econst/-/kMacArabicStandardVariant -C/econst/-/kMacArabicThuluthVariant -C/econst/-/kMacArabicTrueTypeVariant -C/econst/-/kMacCroatianCurrencySignVariant -C/econst/-/kMacCroatianDefaultVariant -C/econst/-/kMacCroatianEuroSignVariant -C/econst/-/kMacCyrillicCurrSignStdVariant -C/econst/-/kMacCyrillicCurrSignUkrVariant -C/econst/-/kMacCyrillicDefaultVariant -C/econst/-/kMacCyrillicEuroSignVariant -C/econst/-/kMacFarsiStandardVariant -C/econst/-/kMacFarsiTrueTypeVariant -C/econst/-/kMacHebrewFigureSpaceVariant -C/econst/-/kMacHebrewStandardVariant -C/econst/-/kMacIcelandicStandardVariant -C/econst/-/kMacIcelandicStdCurrSignVariant -C/econst/-/kMacIcelandicStdDefaultVariant -C/econst/-/kMacIcelandicStdEuroSignVariant -C/econst/-/kMacIcelandicTrueTypeVariant -C/econst/-/kMacIcelandicTTCurrSignVariant -C/econst/-/kMacIcelandicTTDefaultVariant -C/econst/-/kMacIcelandicTTEuroSignVariant -C/econst/-/kMacJapaneseBasicVariant -C/econst/-/kMacJapanesePostScriptPrintVariant -C/econst/-/kMacJapanesePostScriptScrnVariant -C/econst/-/kMacJapaneseStandardVariant -C/econst/-/kMacJapaneseStdNoVerticalsVariant -C/econst/-/kMacJapaneseVertAtKuPlusTenVariant -C/econst/-/kMacRomanCurrencySignVariant -C/econst/-/kMacRomanDefaultVariant -C/econst/-/kMacRomanEuroSignVariant -C/econst/-/kMacRomanianCurrencySignVariant -C/econst/-/kMacRomanianDefaultVariant -C/econst/-/kMacRomanianEuroSignVariant -C/econst/-/kMacRomanLatin1CroatianVariant -C/econst/-/kMacRomanLatin1DefaultVariant -C/econst/-/kMacRomanLatin1IcelandicVariant -C/econst/-/kMacRomanLatin1RomanianVariant -C/econst/-/kMacRomanLatin1StandardVariant -C/econst/-/kMacRomanLatin1TurkishVariant -C/econst/-/kMacRomanStandardVariant -C/econst/-/kMacVT100CurrencySignVariant -C/econst/-/kMacVT100DefaultVariant -C/econst/-/kMacVT100EuroSignVariant -C/econst/-/kMale -C/econst/-/kMaximumBlocksIn4GB -C/data/-/kMDAttributeAllValues -C/data/-/kMDAttributeDisplayValues -C/data/-/kMDAttributeMultiValued -C/data/-/kMDAttributeName -C/data/-/kMDAttributeReadOnlyValues -C/data/-/kMDAttributeType -C/data/-/kMDExporterAvaliable -C/macro/-/kMDImporterInterfaceID -C/macro/-/kMDImporterTypeID -C/data/-/kMDItemAcquisitionMake -C/data/-/kMDItemAcquisitionModel -C/data/-/kMDItemAlbum -C/data/-/kMDItemAltitude -C/data/-/kMDItemAperture -C/data/-/kMDItemAppleLoopDescriptors -C/data/-/kMDItemAppleLoopsKeyFilterType -C/data/-/kMDItemAppleLoopsLoopMode -C/data/-/kMDItemAppleLoopsRootKey -C/data/-/kMDItemAttributeChangeDate -C/data/-/kMDItemAudiences -C/data/-/kMDItemAudioBitRate -C/data/-/kMDItemAudioChannelCount -C/data/-/kMDItemAudioEncodingApplication -C/data/-/kMDItemAudioSampleRate -C/data/-/kMDItemAudioTrackNumber -C/data/-/kMDItemAuthorAddresses -C/data/-/kMDItemAuthorEmailAddresses -C/data/-/kMDItemAuthors -C/data/-/kMDItemBitsPerSample -C/data/-/kMDItemCFBundleIdentifier -C/data/-/kMDItemCity -C/data/-/kMDItemCodecs -C/data/-/kMDItemColorSpace -C/data/-/kMDItemComment -C/data/-/kMDItemComposer -C/data/-/kMDItemContactKeywords -C/data/-/kMDItemContentCreationDate -C/data/-/kMDItemContentModificationDate -C/data/-/kMDItemContentType -C/data/-/kMDItemContributors -C/data/-/kMDItemCopyright -C/data/-/kMDItemCountry -C/data/-/kMDItemCoverage -C/data/-/kMDItemCreator -C/data/-/kMDItemDeliveryType -C/data/-/kMDItemDescription -C/data/-/kMDItemDirector -C/data/-/kMDItemDisplayName -C/data/-/kMDItemDueDate -C/data/-/kMDItemDurationSeconds -C/data/-/kMDItemEmailAddresses -C/data/-/kMDItemEncodingApplications -C/data/-/kMDItemEXIFGPSVersion -C/data/-/kMDItemEXIFVersion -C/data/-/kMDItemExposureMode -C/data/-/kMDItemExposureProgram -C/data/-/kMDItemExposureTimeSeconds -C/data/-/kMDItemExposureTimeString -C/data/-/kMDItemFinderComment -C/data/-/kMDItemFlashOnOff -C/data/-/kMDItemFNumber -C/data/-/kMDItemFocalLength -C/data/-/kMDItemFonts -C/data/-/kMDItemFSContentChangeDate -C/data/-/kMDItemFSCreationDate -C/data/-/kMDItemFSExists -C/data/-/kMDItemFSHasCustomIcon -C/data/-/kMDItemFSInvisible -C/data/-/kMDItemFSIsExtensionHidden -C/data/-/kMDItemFSIsReadable -C/data/-/kMDItemFSIsStationery -C/data/-/kMDItemFSIsWriteable -C/data/-/kMDItemFSLabel -C/data/-/kMDItemFSName -C/data/-/kMDItemFSNodeCount -C/data/-/kMDItemFSOwnerGroupID -C/data/-/kMDItemFSOwnerUserID -C/data/-/kMDItemFSSize -C/data/-/kMDItemGenre -C/data/-/kMDItemGPSTrack -C/data/-/kMDItemHasAlphaChannel -C/data/-/kMDItemHeadline -C/data/-/kMDItemIdentifier -C/data/-/kMDItemImageDirection -C/data/-/kMDItemInformation -C/data/-/kMDItemInstantMessageAddresses -C/data/-/kMDItemInstructions -C/data/-/kMDItemIsGeneralMIDISequence -C/data/-/kMDItemISOSpeed -C/data/-/kMDItemKeySignature -C/data/-/kMDItemKeywords -C/data/-/kMDItemKind -C/data/-/kMDItemLanguages -C/data/-/kMDItemLastUsedDate -C/data/-/kMDItemLatitude -C/data/-/kMDItemLayerNames -C/data/-/kMDItemLongitude -C/data/-/kMDItemLyricist -C/data/-/kMDItemMaxAperture -C/data/-/kMDItemMediaTypes -C/data/-/kMDItemMeteringMode -C/data/-/kMDItemMusicalGenre -C/data/-/kMDItemMusicalInstrumentCategory -C/data/-/kMDItemMusicalInstrumentName -C/data/-/kMDItemNamedLocation -C/data/-/kMDItemNumberOfPages -C/data/-/kMDItemOrganizations -C/data/-/kMDItemOrientation -C/data/-/kMDItemOriginalFormat -C/data/-/kMDItemOriginalSource -C/data/-/kMDItemPageHeight -C/data/-/kMDItemPageWidth -C/data/-/kMDItemParticipants -C/data/-/kMDItemPath -C/data/-/kMDItemPerformers -C/data/-/kMDItemPhoneNumbers -C/data/-/kMDItemPixelCount -C/data/-/kMDItemPixelHeight -C/data/-/kMDItemPixelWidth -C/data/-/kMDItemProducer -C/data/-/kMDItemProfileName -C/data/-/kMDItemProjects -C/data/-/kMDItemPublishers -C/data/-/kMDItemRecipientAddresses -C/data/-/kMDItemRecipientEmailAddresses -C/data/-/kMDItemRecipients -C/data/-/kMDItemRecordingDate -C/data/-/kMDItemRecordingYear -C/data/-/kMDItemRedEyeOnOff -C/data/-/kMDItemResolutionHeightDPI -C/data/-/kMDItemResolutionWidthDPI -C/data/-/kMDItemRights -C/data/-/kMDItemSecurityMethod -C/data/-/kMDItemSpeed -C/data/-/kMDItemStarRating -C/data/-/kMDItemStateOrProvince -C/data/-/kMDItemStreamable -C/data/-/kMDItemSubject -C/data/-/kMDItemSupportFileType -C/data/-/kMDItemTempo -C/data/-/kMDItemTextContent -C/data/-/kMDItemTheme -C/data/-/kMDItemTimeSignature -C/data/-/kMDItemTimestamp -C/data/-/kMDItemTitle -C/data/-/kMDItemTotalBitRate -C/data/-/kMDItemURL -C/data/-/kMDItemVersion -C/data/-/kMDItemVideoBitRate -C/data/-/kMDItemWhereFroms -C/data/-/kMDItemWhiteBalance -C/data/-/kMDQueryDidFinishNotification -C/data/-/kMDQueryDidUpdateNotification -C/data/-/kMDQueryProgressNotification -C/data/-/kMDQueryResultContentRelevance -C/data/-/kMDQueryScopeAllIndexed -C/data/-/kMDQueryScopeComputer -C/data/-/kMDQueryScopeComputerIndexed -C/data/-/kMDQueryScopeHome -C/data/-/kMDQueryScopeNetwork -C/data/-/kMDQueryScopeNetworkIndexed -C/econst/-/kMDQuerySynchronous -C/data/-/kMDQueryUpdateAddedItems -C/data/-/kMDQueryUpdateChangedItems -C/data/-/kMDQueryUpdateRemovedItems -C/econst/-/kMDQueryWantsUpdates -C/econst/-/kMIDIControlType_14Bit -C/econst/-/kMIDIControlType_14BitNRPN -C/econst/-/kMIDIControlType_14BitRPN -C/econst/-/kMIDIControlType_7Bit -C/econst/-/kMIDIControlType_7BitNRPN -C/econst/-/kMIDIControlType_7BitRPN -C/macro/-/kMIDIDriverInterface2ID -C/macro/-/kMIDIDriverInterfaceID -C/data/-/kMIDIDriverPropertyUsesSerial -C/macro/-/kMIDIDriverTypeID -C/econst/-/kMIDIIDNotUnique -C/econst/-/kMIDIInvalidClient -C/econst/-/kMIDIInvalidPort -C/econst/-/kMIDIMessageSendErr -C/econst/-/kMIDIMsgIOError -C/econst/-/kMIDIMsgObjectAdded -C/econst/-/kMIDIMsgObjectRemoved -C/econst/-/kMIDIMsgPropertyChanged -C/econst/-/kMIDIMsgSerialPortOwnerChanged -C/econst/-/kMIDIMsgSetupChanged -C/econst/-/kMIDIMsgThruConnectionsChanged -C/econst/-/kMIDINoConnection -C/econst/-/kMIDINoCurrentSetup -C/econst/-/kMIDIObjectNotFound -C/data/-/kMIDIPropertyAdvanceScheduleTimeMuSec -C/data/-/kMIDIPropertyCanRoute -C/data/-/kMIDIPropertyConnectionUniqueID -C/data/-/kMIDIPropertyDeviceID -C/data/-/kMIDIPropertyDisplayName -C/data/-/kMIDIPropertyDriverDeviceEditorApp -C/data/-/kMIDIPropertyDriverOwner -C/data/-/kMIDIPropertyDriverVersion -C/data/-/kMIDIPropertyFactoryPatchNameFile -C/data/-/kMIDIPropertyImage -C/data/-/kMIDIPropertyIsBroadcast -C/data/-/kMIDIPropertyIsDrumMachine -C/data/-/kMIDIPropertyIsEffectUnit -C/data/-/kMIDIPropertyIsEmbeddedEntity -C/data/-/kMIDIPropertyIsMixer -C/data/-/kMIDIPropertyIsSampler -C/data/-/kMIDIPropertyManufacturer -C/data/-/kMIDIPropertyMaxReceiveChannels -C/data/-/kMIDIPropertyMaxSysExSpeed -C/data/-/kMIDIPropertyMaxTransmitChannels -C/data/-/kMIDIPropertyModel -C/data/-/kMIDIPropertyName -C/data/-/kMIDIPropertyNameConfiguration -C/data/-/kMIDIPropertyOffline -C/data/-/kMIDIPropertyPanDisruptsStereo -C/data/-/kMIDIPropertyPrivate -C/data/-/kMIDIPropertyReceiveChannels -C/data/-/kMIDIPropertyReceivesBankSelectLSB -C/data/-/kMIDIPropertyReceivesBankSelectMSB -C/data/-/kMIDIPropertyReceivesClock -C/data/-/kMIDIPropertyReceivesMTC -C/data/-/kMIDIPropertyReceivesNotes -C/data/-/kMIDIPropertyReceivesProgramChanges -C/data/-/kMIDIPropertySingleRealtimeEntity -C/data/-/kMIDIPropertySupportsGeneralMIDI -C/data/-/kMIDIPropertySupportsMMC -C/data/-/kMIDIPropertySupportsShowControl -C/data/-/kMIDIPropertyTransmitChannels -C/data/-/kMIDIPropertyTransmitsBankSelectLSB -C/data/-/kMIDIPropertyTransmitsBankSelectMSB -C/data/-/kMIDIPropertyTransmitsClock -C/data/-/kMIDIPropertyTransmitsMTC -C/data/-/kMIDIPropertyTransmitsNotes -C/data/-/kMIDIPropertyTransmitsProgramChanges -C/data/-/kMIDIPropertyUniqueID -C/data/-/kMIDIPropertyUserPatchNameFile -C/econst/-/kMIDIServerStartErr -C/econst/-/kMIDISetupFormatErr -C/econst/-/kMIDITransform_Add -C/econst/-/kMIDITransform_FilterOut -C/econst/-/kMIDITransform_MapControl -C/econst/-/kMIDITransform_MapValue -C/econst/-/kMIDITransform_MaxValue -C/econst/-/kMIDITransform_MinValue -C/econst/-/kMIDITransform_None -C/econst/-/kMIDITransform_Scale -C/econst/-/kMIDIUnknownEndpoint -C/econst/-/kMIDIUnknownProperty -C/econst/-/kMIDIWrongEndpointType -C/econst/-/kMIDIWrongPropertyType -C/econst/-/kMIDIWrongThread -C/econst/MMCDeviceTrayState/kMMCDeviceTrayClosed -C/econst/MMCDeviceTrayState/kMMCDeviceTrayOpen -C/econst/-/kMovieMediaBackgroundColor -C/econst/-/kMovieMediaDefaultDataReferenceID -C/econst/-/kMovieMediaPrerollTime -C/econst/-/kMovieMediaSlaveGraphicsMode -C/econst/-/kMovieMediaSlaveTime -C/econst/-/kMPAddressSpaceInfoVersion -C/econst/-/kMPAllocate1024ByteAligned -C/econst/-/kMPAllocate16ByteAligned -C/econst/-/kMPAllocate32ByteAligned -C/econst/-/kMPAllocate4096ByteAligned -C/econst/-/kMPAllocate8ByteAligned -C/econst/-/kMPAllocateAltiVecAligned -C/econst/-/kMPAllocateClearMask -C/econst/-/kMPAllocateDefaultAligned -C/econst/-/kMPAllocateGloballyMask -C/econst/-/kMPAllocateInterlockAligned -C/econst/-/kMPAllocateMaxAlignment -C/econst/-/kMPAllocateNoCreateMask -C/econst/-/kMPAllocateNoGrowthMask -C/econst/-/kMPAllocateResidentMask -C/econst/-/kMPAllocateVMPageAligned -C/econst/-/kMPAllocateVMXAligned -C/econst/-/kMPAnyRemoteContext -C/econst/-/kMPAsyncInterruptRemoteContext -C/econst/-/kMPCreateTaskNotDebuggableMask -C/econst/-/kMPCreateTaskSuspendedMask -C/econst/-/kMPCreateTaskTakesAllExceptionsMask -C/econst/-/kMPCreateTaskValidOptionsMask -C/econst/-/kMPCriticalRegionInfoVersion -C/econst/-/kMPDeletedErr -C/econst/-/kMPEG4Object_AAC_LC -C/econst/-/kMPEG4Object_AAC_LTP -C/econst/-/kMPEG4Object_AAC_Main -C/econst/-/kMPEG4Object_AAC_SBR -C/econst/-/kMPEG4Object_AAC_Scalable -C/econst/-/kMPEG4Object_AAC_SSR -C/econst/-/kMPEG4Object_CELP -C/econst/-/kMPEG4Object_HVXC -C/econst/-/kMPEG4Object_TwinVQ -C/econst/-/kMPEventInfoVersion -C/econst/-/kMPHighLevelDebugger -C/econst/-/kMPInsufficientResourcesErr -C/econst/-/kMPInterruptRemoteContext -C/econst/-/kMPInvalidIDErr -C/econst/-/kMPIterationEndErr -C/econst/-/kMPLowLevelDebugger -C/econst/-/kMPMaxAllocSize -C/econst/-/kMPMidLevelDebugger -C/econst/-/kMPNoID -C/econst/-/kMPNotificationInfoVersion -C/econst/-/kMPOwningProcessRemoteContext -C/econst/-/kMPPreserveTimerIDMask -C/econst/-/kMPPrivilegedErr -C/econst/-/kMPProcessCreatedErr -C/econst/-/kMPProcessTerminatedErr -C/econst/-/kMPQueueInfoVersion -C/econst/-/kMPSemaphoreInfoVersion -C/econst/-/kMPTaskBlocked -C/econst/-/kMPTaskBlockedErr -C/econst/-/kMPTaskCreatedErr -C/econst/-/kMPTaskInfoVersion -C/econst/-/kMPTaskPropagate -C/econst/-/kMPTaskPropagateMask -C/econst/-/kMPTaskReady -C/econst/-/kMPTaskResumeBranch -C/econst/-/kMPTaskResumeBranchMask -C/econst/-/kMPTaskResumeMask -C/econst/-/kMPTaskResumeStep -C/econst/-/kMPTaskResumeStepMask -C/econst/-/kMPTaskRunning -C/econst/-/kMPTaskState32BitMemoryException -C/econst/-/kMPTaskStateFPU -C/econst/-/kMPTaskStateMachine -C/econst/-/kMPTaskStateRegisters -C/econst/-/kMPTaskStateTaskInfo -C/econst/-/kMPTaskStateVectors -C/econst/-/kMPTaskStoppedErr -C/econst/-/kMPTimeIsDeltaMask -C/econst/-/kMPTimeIsDurationMask -C/econst/-/kMPTimeoutErr -C/econst/-/kMsgNotifyMask -C/econst/-/kMultiChannelMixerParam_Enable -C/econst/-/kMultiChannelMixerParam_PostAveragePower -C/econst/-/kMultiChannelMixerParam_PostPeakHoldLevel -C/econst/-/kMultiChannelMixerParam_PreAveragePower -C/econst/-/kMultiChannelMixerParam_PrePeakHoldLevel -C/econst/-/kMultiChannelMixerParam_Volume -C/econst/-/kMusicEventType_AUPreset -C/econst/-/kMusicEventType_ExtendedControl -C/econst/-/kMusicEventType_ExtendedNote -C/econst/-/kMusicEventType_ExtendedTempo -C/econst/-/kMusicEventType_Last -C/econst/-/kMusicEventType_Meta -C/econst/-/kMusicEventType_MIDIChannelMessage -C/econst/-/kMusicEventType_MIDINoteMessage -C/econst/-/kMusicEventType_MIDIRawData -C/econst/-/kMusicEventType_NULL -C/econst/-/kMusicEventType_Parameter -C/econst/-/kMusicEventType_User -C/econst/-/kMusicSequenceFile_iMelodyType -C/econst/-/kMusicSequenceFile_MIDIType -C/econst/-/kMusicSequenceFileFlags_EraseFile -C/econst/-/kMusicSequenceLoadSMF_ChannelsToTracks -C/econst/-/kMusicSequenceType_Beats -C/econst/-/kMusicSequenceType_Samples -C/econst/-/kMusicSequenceType_Seconds -C/macro/-/kMusicTimeStamp_EndOfTrack -C/econst/-/kNameToGroupID -C/econst/-/kNameToUserID -C/econst/-/kNCMMConcatInit -C/econst/-/kNCMMInit -C/econst/-/kNCMMNewLinkProfile -C/econst/-/kNetworkPPDDomain -C/econst/-/kNeuter -C/econst/-/kNeverAuthenticate -Objective-C/clm/NSColor/knobColor -Objective-C/instm/NSScroller/knobProportion -Objective-C/instm/NSSliderCell/knobRectFlipped: -Objective-C/instm/NSSlider/knobThickness -Objective-C/instm/NSSliderCell/knobThickness -C/econst/-/kNoEndingProsody -C/econst/-/kNoExchangeFiles -C/econst/-/knoGroup -C/econst/-/kNoNetworkUserIDs -C/econst/-/kNoProcess -C/econst/-/kNoSpeechInterrupt -C/econst/-/kNoTransform -C/econst/-/knoUser -C/econst/-/kNoUserAuthentication -C/econst/-/kNoUserAuthStr -Objective-C/clm/NSTimeZone/knownTimeZoneNames -Objective-C/instm/NSView/knowsPageRange: -C/econst/-/kNumberOfResponseFrequencies -C/econst/OBEXErrorCodes/kOBEXErrorRangeMax -C/econst/OBEXErrorCodes/kOBEXErrorRangeMin -C/econst/OBEXHeaderIdentifiers/kOBEXHeaderIDAppParameters -C/econst/OBEXHeaderIdentifiers/kOBEXHeaderIDAuthorizationChallenge -C/econst/OBEXHeaderIdentifiers/kOBEXHeaderIDAuthorizationResponse -C/econst/OBEXHeaderIdentifiers/kOBEXHeaderIDBody -C/econst/OBEXHeaderIdentifiers/kOBEXHeaderIDConnectionID -C/econst/OBEXHeaderIdentifiers/kOBEXHeaderIDCount -C/econst/OBEXHeaderIdentifiers/kOBEXHeaderIDDescription -C/econst/OBEXHeaderIdentifiers/kOBEXHeaderIDEndOfBody -C/econst/OBEXHeaderIdentifiers/kOBEXHeaderIDHTTP -C/econst/OBEXHeaderIdentifiers/kOBEXHeaderIDLength -C/econst/OBEXHeaderIdentifiers/kOBEXHeaderIDName -C/econst/OBEXHeaderIdentifiers/kOBEXHeaderIDOBEX13CreatorID -C/econst/OBEXHeaderIdentifiers/kOBEXHeaderIDOBEX13ObjectClass -C/econst/OBEXHeaderIdentifiers/kOBEXHeaderIDOBEX13SessionParameters -C/econst/OBEXHeaderIdentifiers/kOBEXHeaderIDOBEX13SessionSequenceNumber -C/econst/OBEXHeaderIdentifiers/kOBEXHeaderIDOBEX13WANUUID -C/econst/OBEXHeaderIdentifiers/kOBEXHeaderIDObjectClass -C/econst/OBEXHeaderIdentifiers/kOBEXHeaderIDReservedRangeEnd -C/econst/OBEXHeaderIdentifiers/kOBEXHeaderIDReservedRangeStart -C/econst/OBEXHeaderIdentifiers/kOBEXHeaderIDTarget -C/econst/OBEXHeaderIdentifiers/kOBEXHeaderIDTime4Byte -C/econst/OBEXHeaderIdentifiers/kOBEXHeaderIDTimeISO -C/econst/OBEXHeaderIdentifiers/kOBEXHeaderIDType -C/econst/OBEXHeaderIdentifiers/kOBEXHeaderIDUserDefinedRangeEnd -C/econst/OBEXHeaderIdentifiers/kOBEXHeaderIDUserDefinedRangeStart -C/econst/OBEXHeaderIdentifiers/kOBEXHeaderIDWho -C/data/-/kODAttributeTypeAccessControlEntry -C/data/-/kODAttributeTypeAddressLine1 -C/data/-/kODAttributeTypeAddressLine2 -C/data/-/kODAttributeTypeAddressLine3 -C/data/-/kODAttributeTypeAdminLimits -C/data/-/kODAttributeTypeAlias -C/data/-/kODAttributeTypeAllAttributes -C/data/-/kODAttributeTypeAllTypes -C/data/-/kODAttributeTypeAreaCode -C/data/-/kODAttributeTypeAttrListRefCount -C/data/-/kODAttributeTypeAttrListRefs -C/data/-/kODAttributeTypeAttrListValueRefCount -C/data/-/kODAttributeTypeAttrListValueRefs -C/data/-/kODAttributeTypeAuthCredential -C/data/-/kODAttributeTypeAuthenticationAuthority -C/data/-/kODAttributeTypeAuthenticationHint -C/data/-/kODAttributeTypeAuthMethod -C/data/-/kODAttributeTypeAuthorityRevocationList -C/data/-/kODAttributeTypeAutomaticSearchPath -C/data/-/kODAttributeTypeAutomountInformation -C/data/-/kODAttributeTypeBirthday -C/data/-/kODAttributeTypeBootParams -C/data/-/kODAttributeTypeBuilding -C/data/-/kODAttributeTypeBuildVersion -C/data/-/kODAttributeTypeCACertificate -C/data/-/kODAttributeTypeCapacity -C/data/-/kODAttributeTypeCertificateRevocationList -C/data/-/kODAttributeTypeCity -C/data/-/kODAttributeTypeComment -C/data/-/kODAttributeTypeCompany -C/data/-/kODAttributeTypeComputers -C/data/-/kODAttributeTypeConfigAvailable -C/data/-/kODAttributeTypeConfigFile -C/data/-/kODAttributeTypeContactGUID -C/data/-/kODAttributeTypeContactPerson -C/data/-/kODAttributeTypeCopyTimestamp -C/data/-/kODAttributeTypeCoreFWVersion -C/data/-/kODAttributeTypeCountry -C/data/-/kODAttributeTypeCreationTimestamp -C/data/-/kODAttributeTypeCrossCertificatePair -C/data/-/kODAttributeTypeCustomSearchPath -C/data/-/kODAttributeTypeDataStamp -C/data/-/kODAttributeTypeDateRecordCreated -C/data/-/kODAttributeTypeDepartment -C/data/-/kODAttributeTypeDirRefCount -C/data/-/kODAttributeTypeDirRefs -C/data/-/kODAttributeTypeDNSDomain -C/data/-/kODAttributeTypeDNSName -C/data/-/kODAttributeTypeDNSNameServer -C/data/-/kODAttributeTypeEMailAddress -C/data/-/kODAttributeTypeEMailContacts -C/data/-/kODAttributeTypeENetAddress -C/data/-/kODAttributeTypeExpire -C/data/-/kODAttributeTypeFaxNumber -C/data/-/kODAttributeTypeFirstName -C/data/-/kODAttributeTypeFullName -C/data/-/kODAttributeTypeFunctionalState -C/data/-/kODAttributeTypeFWVersion -C/data/-/kODAttributeTypeGroup -C/data/-/kODAttributeTypeGroupMembers -C/data/-/kODAttributeTypeGroupMembership -C/data/-/kODAttributeTypeGroupServices -C/data/-/kODAttributeTypeGUID -C/data/-/kODAttributeTypeHomeDirectory -C/data/-/kODAttributeTypeHomeDirectoryQuota -C/data/-/kODAttributeTypeHomeDirectorySoftQuota -C/data/-/kODAttributeTypeHomeLocOwner -C/data/-/kODAttributeTypeHomePhoneNumber -C/data/-/kODAttributeTypeHTML -C/data/-/kODAttributeTypeIMHandle -C/data/-/kODAttributeTypeInternetAlias -C/data/-/kODAttributeTypeIPAddress -C/data/-/kODAttributeTypeIPAddressAndENetAddress -C/data/-/kODAttributeTypeIPv6Address -C/data/-/kODAttributeTypeJobTitle -C/data/-/kODAttributeTypeJPEGPhoto -C/data/-/kODAttributeTypeKDCAuthKey -C/data/-/kODAttributeTypeKDCConfigData -C/data/-/kODAttributeTypeKerberosRealm -C/data/-/kODAttributeTypeKeywords -C/data/-/kODAttributeTypeLastName -C/data/-/kODAttributeTypeLDAPReadReplicas -C/data/-/kODAttributeTypeLDAPSearchBaseSuffix -C/data/-/kODAttributeTypeLDAPWriteReplicas -C/data/-/kODAttributeTypeLocalOnlySearchPath -C/data/-/kODAttributeTypeLocation -C/data/-/kODAttributeTypeMailAttribute -C/data/-/kODAttributeTypeMapCoordinates -C/data/-/kODAttributeTypeMapGUID -C/data/-/kODAttributeTypeMapURI -C/data/-/kODAttributeTypeMCXFlags -C/data/-/kODAttributeTypeMCXSettings -C/data/-/kODAttributeTypeMetaAutomountMap -C/data/-/kODAttributeTypeMetaNodeLocation -C/data/-/kODAttributeTypeMiddleName -C/data/-/kODAttributeTypeMIME -C/data/-/kODAttributeTypeMobileNumber -C/data/-/kODAttributeTypeModificationTimestamp -C/data/-/kODAttributeTypeNamePrefix -C/data/-/kODAttributeTypeNameSuffix -C/data/-/kODAttributeTypeNativeOnly -C/data/-/kODAttributeTypeNestedGroups -C/data/-/kODAttributeTypeNetGroups -C/data/-/kODAttributeTypeNetGroupTriplet -C/data/-/kODAttributeTypeNetworkNumber -C/data/-/kODAttributeTypeNFSHomeDirectory -C/data/-/kODAttributeTypeNickName -C/data/-/kODAttributeTypeNodePath -C/data/-/kODAttributeTypeNodeRefCount -C/data/-/kODAttributeTypeNodeRefs -C/data/-/kODAttributeTypeNote -C/data/-/kODAttributeTypeNTDomainComputerAccount -C/data/-/kODAttributeTypeNumTableList -C/data/-/kODAttributeTypeOrganizationInfo -C/data/-/kODAttributeTypeOrganizationName -C/data/-/kODAttributeTypeOriginalHomeDirectory -C/data/-/kODAttributeTypeOriginalNFSHomeDirectory -C/data/-/kODAttributeTypeOriginalNodeName -C/data/-/kODAttributeTypeOwner -C/data/-/kODAttributeTypeOwnerGUID -C/data/-/kODAttributeTypePagerNumber -C/data/-/kODAttributeTypePassword -C/data/-/kODAttributeTypePasswordPlus -C/data/-/kODAttributeTypePasswordPolicyOptions -C/data/-/kODAttributeTypePasswordServerList -C/data/-/kODAttributeTypePasswordServerLocation -C/data/-/kODAttributeTypePGPPublicKey -C/data/-/kODAttributeTypePhoneContacts -C/data/-/kODAttributeTypePhoneNumber -C/data/-/kODAttributeTypePicture -C/data/-/kODAttributeTypePIDValue -C/data/-/kODAttributeTypePluginIndex -C/data/-/kODAttributeTypePlugInInfo -C/data/-/kODAttributeTypePort -C/data/-/kODAttributeTypePostalAddress -C/data/-/kODAttributeTypePostalAddressContacts -C/data/-/kODAttributeTypePostalCode -C/data/-/kODAttributeTypePresetUserIsAdmin -C/data/-/kODAttributeTypePrimaryComputerGUID -C/data/-/kODAttributeTypePrimaryComputerList -C/data/-/kODAttributeTypePrimaryGroupID -C/data/-/kODAttributeTypePrimaryNTDomain -C/data/-/kODAttributeTypePrinter1284DeviceID -C/data/-/kODAttributeTypePrinterLPRHost -C/data/-/kODAttributeTypePrinterLPRQueue -C/data/-/kODAttributeTypePrinterMakeAndModel -C/data/-/kODAttributeTypePrinterType -C/data/-/kODAttributeTypePrinterURI -C/data/-/kODAttributeTypePrinterXRISupported -C/data/-/kODAttributeTypePrintServiceInfoText -C/data/-/kODAttributeTypePrintServiceInfoXML -C/data/-/kODAttributeTypePrintServiceUserData -C/data/-/kODAttributeTypeProcessName -C/data/-/kODAttributeTypeProtocolNumber -C/data/-/kODAttributeTypeProtocols -C/data/-/kODAttributeTypePwdAgingPolicy -C/data/-/kODAttributeTypeReadOnlyNode -C/data/-/kODAttributeTypeRealUserID -C/data/-/kODAttributeTypeRecordName -C/data/-/kODAttributeTypeRecordType -C/data/-/kODAttributeTypeRecRefCount -C/data/-/kODAttributeTypeRecRefs -C/data/-/kODAttributeTypeRelationships -C/data/-/kODAttributeTypeRelativeDNPrefix -C/data/-/kODAttributeTypeResourceInfo -C/data/-/kODAttributeTypeResourceType -C/data/-/kODAttributeTypeRPCNumber -C/data/-/kODAttributeTypeSchema -C/data/-/kODAttributeTypeSearchPath -C/data/-/kODAttributeTypeSearchPolicy -C/data/-/kODAttributeTypeServicesLocator -C/data/-/kODAttributeTypeServiceType -C/data/-/kODAttributeTypeSetupAdvertising -C/data/-/kODAttributeTypeSetupAutoRegister -C/data/-/kODAttributeTypeSetupLocation -C/data/-/kODAttributeTypeSetupOccupation -C/data/-/kODAttributeTypeSMBAcctFlags -C/data/-/kODAttributeTypeSMBGroupRID -C/data/-/kODAttributeTypeSMBHome -C/data/-/kODAttributeTypeSMBHomeDrive -C/data/-/kODAttributeTypeSMBKickoffTime -C/data/-/kODAttributeTypeSMBLogoffTime -C/data/-/kODAttributeTypeSMBLogonTime -C/data/-/kODAttributeTypeSMBPrimaryGroupSID -C/data/-/kODAttributeTypeSMBProfilePath -C/data/-/kODAttributeTypeSMBPWDLastSet -C/data/-/kODAttributeTypeSMBRID -C/data/-/kODAttributeTypeSMBScriptPath -C/data/-/kODAttributeTypeSMBSID -C/data/-/kODAttributeTypeSMBUserWorkstations -C/data/-/kODAttributeTypeStandardOnly -C/data/-/kODAttributeTypeState -C/data/-/kODAttributeTypeStreet -C/data/-/kODAttributeTypeSubNodes -C/data/-/kODAttributeTypeTimePackage -C/data/-/kODAttributeTypeTimeToLive -C/data/-/kODAttributeTypeTotalRefCount -C/data/-/kODAttributeTypeTotalSize -C/data/-/kODAttributeTypeUniqueID -C/data/-/kODAttributeTypeURL -C/data/-/kODAttributeTypeUserCertificate -C/data/-/kODAttributeTypeUserPKCS12Data -C/data/-/kODAttributeTypeUserShell -C/data/-/kODAttributeTypeUserSMIMECertificate -C/data/-/kODAttributeTypeVersion -C/data/-/kODAttributeTypeVFSDumpFreq -C/data/-/kODAttributeTypeVFSLinkDir -C/data/-/kODAttributeTypeVFSOpts -C/data/-/kODAttributeTypeVFSPassNo -C/data/-/kODAttributeTypeVFSType -C/data/-/kODAttributeTypeWeblogURI -C/data/-/kODAttributeTypeXMLPlist -C/data/-/kODAuthenticationType2WayRandom -C/data/-/kODAuthenticationType2WayRandomChangePasswd -C/data/-/kODAuthenticationTypeAPOP -C/data/-/kODAuthenticationTypeChangePasswd -C/data/-/kODAuthenticationTypeClearText -C/data/-/kODAuthenticationTypeCRAM_MD5 -C/data/-/kODAuthenticationTypeCrypt -C/data/-/kODAuthenticationTypeDeleteUser -C/data/-/kODAuthenticationTypeDIGEST_MD5 -C/data/-/kODAuthenticationTypeGetEffectivePolicy -C/data/-/kODAuthenticationTypeGetGlobalPolicy -C/data/-/kODAuthenticationTypeGetKerberosPrincipal -C/data/-/kODAuthenticationTypeGetPolicy -C/data/-/kODAuthenticationTypeGetUserData -C/data/-/kODAuthenticationTypeGetUserName -C/data/-/kODAuthenticationTypeKerberosTickets -C/data/-/kODAuthenticationTypeMPPEMasterKeys -C/data/-/kODAuthenticationTypeMSCHAP2 -C/data/-/kODAuthenticationTypeNewUser -C/data/-/kODAuthenticationTypeNewUserWithPolicy -C/data/-/kODAuthenticationTypeNodeNativeClearTextOK -C/data/-/kODAuthenticationTypeNodeNativeNoClearText -C/data/-/kODAuthenticationTypeNTLMv2 -C/data/-/kODAuthenticationTypeNTLMv2WithSessionKey -C/data/-/kODAuthenticationTypeReadSecureHash -C/data/-/kODAuthenticationTypeSecureHash -C/data/-/kODAuthenticationTypeSetGlobalPolicy -C/data/-/kODAuthenticationTypeSetLMHash -C/data/-/kODAuthenticationTypeSetNTHash -C/data/-/kODAuthenticationTypeSetPassword -C/data/-/kODAuthenticationTypeSetPasswordAsCurrent -C/data/-/kODAuthenticationTypeSetPolicy -C/data/-/kODAuthenticationTypeSetPolicyAsCurrent -C/data/-/kODAuthenticationTypeSetUserData -C/data/-/kODAuthenticationTypeSetUserName -C/data/-/kODAuthenticationTypeSetWorkstationPassword -C/data/-/kODAuthenticationTypeSMB_LM_Key -C/data/-/kODAuthenticationTypeSMB_NT_Key -C/data/-/kODAuthenticationTypeSMB_NT_UserSessionKey -C/data/-/kODAuthenticationTypeSMB_NT_WithUserSessionKey -C/data/-/kODAuthenticationTypeSMBNTv2UserSessionKey -C/data/-/kODAuthenticationTypeSMBWorkstationCredentialSessionKey -C/data/-/kODAuthenticationTypeWithAuthorizationRef -C/data/-/kODAuthenticationTypeWriteSecureHash -C/econst/-/kODErrorCredentialsAccountDisabled -C/econst/-/kODErrorCredentialsAccountExpired -C/econst/-/kODErrorCredentialsAccountInactive -C/econst/-/kODErrorCredentialsAccountNotFound -C/econst/-/kODErrorCredentialsContactMaster -C/econst/-/kODErrorCredentialsInvalid -C/econst/-/kODErrorCredentialsInvalidComputer -C/econst/-/kODErrorCredentialsInvalidLogonHours -C/econst/-/kODErrorCredentialsMethodNotSupported -C/econst/-/kODErrorCredentialsNotAuthorized -C/econst/-/kODErrorCredentialsOperationFailed -C/econst/-/kODErrorCredentialsParameterError -C/econst/-/kODErrorCredentialsPasswordChangeRequired -C/econst/-/kODErrorCredentialsPasswordChangeTooSoon -C/econst/-/kODErrorCredentialsPasswordExpired -C/econst/-/kODErrorCredentialsPasswordNeedsDigit -C/econst/-/kODErrorCredentialsPasswordNeedsLetter -C/econst/-/kODErrorCredentialsPasswordQualityFailed -C/econst/-/kODErrorCredentialsPasswordTooLong -C/econst/-/kODErrorCredentialsPasswordTooShort -C/econst/-/kODErrorCredentialsPasswordUnrecoverable -C/econst/-/kODErrorCredentialsServerCommunicationError -C/econst/-/kODErrorCredentialsServerError -C/econst/-/kODErrorCredentialsServerNotFound -C/econst/-/kODErrorCredentialsServerTimeout -C/econst/-/kODErrorCredentialsServerUnreachable -C/econst/-/kODErrorDaemonError -C/econst/-/kODErrorNodeConnectionFailed -C/econst/-/kODErrorNodeUnknownHost -C/econst/-/kODErrorNodeUnknownName -C/econst/-/kODErrorNodeUnknownType -C/econst/-/kODErrorPluginError -C/econst/-/kODErrorPluginOperationNotSupported -C/econst/-/kODErrorQueryInvalidMatchType -C/econst/-/kODErrorQuerySynchronize -C/econst/-/kODErrorQueryTimeout -C/econst/-/kODErrorQueryUnsupportedMatchType -C/econst/-/kODErrorRecordAlreadyExists -C/econst/-/kODErrorRecordAttributeNotFound -C/econst/-/kODErrorRecordAttributeUnknownType -C/econst/-/kODErrorRecordAttributeValueNotFound -C/econst/-/kODErrorRecordAttributeValueSchemaError -C/econst/-/kODErrorRecordParameterError -C/econst/-/kODErrorRecordPermissionError -C/econst/-/kODErrorRecordReadOnlyNode -C/econst/-/kODErrorRecordTypeDisabled -C/econst/-/kODErrorSessionDaemonNotRunning -C/econst/-/kODErrorSessionDaemonRefused -C/econst/-/kODErrorSessionLocalOnlyDaemonInUse -C/econst/-/kODErrorSessionNormalDaemonInUse -C/econst/-/kODErrorSessionProxyCommunicationError -C/econst/-/kODErrorSessionProxyIPUnreachable -C/econst/-/kODErrorSessionProxyUnknownHost -C/econst/-/kODErrorSessionProxyVersionMismatch -C/data/-/kODMatchAny -C/data/-/kODMatchBeginsWith -C/data/-/kODMatchContains -C/data/-/kODMatchEndsWith -C/data/-/kODMatchEqualTo -C/data/-/kODMatchGreaterThan -C/data/-/kODMatchInsensitiveBeginsWith -C/data/-/kODMatchInsensitiveContains -C/data/-/kODMatchInsensitiveEndsWith -C/data/-/kODMatchInsensitiveEqualTo -C/data/-/kODMatchLessThan -C/econst/-/kODNodeTypeAuthentication -C/econst/-/kODNodeTypeConfigure -C/econst/-/kODNodeTypeContacts -C/econst/-/kODNodeTypeLocalNodes -C/econst/-/kODNodeTypeNetwork -C/data/-/kODRecordTypeAFPServer -C/data/-/kODRecordTypeAliases -C/data/-/kODRecordTypeAttributeTypes -C/data/-/kODRecordTypeAugments -C/data/-/kODRecordTypeAutomount -C/data/-/kODRecordTypeAutomountMap -C/data/-/kODRecordTypeAutoServerSetup -C/data/-/kODRecordTypeBootp -C/data/-/kODRecordTypeCertificateAuthorities -C/data/-/kODRecordTypeComputerGroups -C/data/-/kODRecordTypeComputerLists -C/data/-/kODRecordTypeComputers -C/data/-/kODRecordTypeConfiguration -C/data/-/kODRecordTypeEthernets -C/data/-/kODRecordTypeFileMakerServers -C/data/-/kODRecordTypeFTPServer -C/data/-/kODRecordTypeGroups -C/data/-/kODRecordTypeHosts -C/data/-/kODRecordTypeHostServices -C/data/-/kODRecordTypeLDAPServer -C/data/-/kODRecordTypeLocations -C/data/-/kODRecordTypeMounts -C/data/-/kODRecordTypeNetDomains -C/data/-/kODRecordTypeNetGroups -C/data/-/kODRecordTypeNetworks -C/data/-/kODRecordTypeNFS -C/data/-/kODRecordTypePeople -C/data/-/kODRecordTypePresetComputerGroups -C/data/-/kODRecordTypePresetComputerLists -C/data/-/kODRecordTypePresetComputers -C/data/-/kODRecordTypePresetGroups -C/data/-/kODRecordTypePresetUsers -C/data/-/kODRecordTypePrinters -C/data/-/kODRecordTypePrintService -C/data/-/kODRecordTypePrintServiceUser -C/data/-/kODRecordTypeProtocols -C/data/-/kODRecordTypeQTSServer -C/data/-/kODRecordTypeRecordTypes -C/data/-/kODRecordTypeResources -C/data/-/kODRecordTypeRPC -C/data/-/kODRecordTypeServer -C/data/-/kODRecordTypeServices -C/data/-/kODRecordTypeSharePoints -C/data/-/kODRecordTypeSMBServer -C/data/-/kODRecordTypeUsers -C/data/-/kODRecordTypeWebServer -C/data/-/kODSessionDefault -C/data/-/kODSessionProxyAddress -C/data/-/kODSessionProxyPassword -C/data/-/kODSessionProxyPort -C/data/-/kODSessionProxyUsername -C/econst/-/kOpaqueAddressSpaceID -C/econst/-/kOpaqueAnyID -C/econst/-/kOpaqueAreaID -C/econst/-/kOpaqueCoherenceID -C/econst/-/kOpaqueConsoleID -C/econst/-/kOpaqueCpuID -C/econst/-/kOpaqueCriticalRegionID -C/econst/-/kOpaqueEventID -C/econst/-/kOpaqueNotificationID -C/econst/-/kOpaqueProcessID -C/econst/-/kOpaqueQueueID -C/econst/-/kOpaqueSemaphoreID -C/econst/-/kOpaqueTaskID -C/econst/-/kOpaqueTimerID -C/data/-/kOSBooleanFalse -C/data/-/kOSBooleanTrue -C/macro/-/kOSBundleAllowUserLoadKey -C/macro/-/kOSBundleCompatibleVersionKey -C/macro/-/kOSBundleEnableKextLoggingKey -C/macro/-/kOSBundleIsInterfaceKey -C/macro/-/kOSBundleLibrariesKey -C/macro/-/kOSBundleRequiredConsole -C/macro/-/kOSBundleRequiredKey -C/macro/-/kOSBundleRequiredLocalRoot -C/macro/-/kOSBundleRequiredNetworkRoot -C/macro/-/kOSBundleRequiredRoot -C/macro/-/kOSBundleRequiredSafeBoot -C/macro/-/kOSBundleSharedExecutableIdentifierKey -C/macro/-/kOSKernelResourceKey -C/macro/-/kOSKextInvalidLoadTag -C/macro/-/kOSKextKernelIdentifier -C/macro/-/kOSKextReturnArchNotFound -C/macro/-/kOSKextReturnAuthentication -C/macro/-/kOSKextReturnBadData -C/macro/-/kOSKextReturnBootLevel -C/macro/-/kOSKextReturnCache -C/macro/-/kOSKextReturnDeferred -C/macro/-/kOSKextReturnDependencies -C/macro/-/kOSKextReturnDependencyLoadError -C/macro/-/kOSKextReturnDisabled -C/macro/-/kOSKextReturnInternalError -C/macro/-/kOSKextReturnInUse -C/macro/-/kOSKextReturnInvalidArgument -C/macro/-/kOSKextReturnLinkError -C/macro/-/kOSKextReturnLoadedVersionDiffers -C/macro/-/kOSKextReturnNoMemory -C/macro/-/kOSKextReturnNoResources -C/macro/-/kOSKextReturnNotAKext -C/macro/-/kOSKextReturnNotFound -C/macro/-/kOSKextReturnNotLoadable -C/macro/-/kOSKextReturnNotPrivileged -C/macro/-/kOSKextReturnSerialization -C/macro/-/kOSKextReturnStartStopError -C/macro/-/kOSKextReturnStopping -C/macro/-/kOSKextReturnTimeout -C/macro/-/kOSKextReturnUnsupported -C/macro/-/kOSKextReturnValidation -C/macro/-/kOSMetaClassDuplicateClass -C/macro/-/kOSMetaClassHasInstances -C/macro/-/kOSMetaClassInstNoSuper -C/macro/-/kOSMetaClassInternal -C/macro/-/kOSMetaClassNoDicts -C/macro/-/kOSMetaClassNoInit -C/macro/-/kOSMetaClassNoInsKModSet -C/macro/-/kOSMetaClassNoKext -C/macro/-/kOSMetaClassNoKModSet -C/macro/-/kOSMetaClassNoSuper -C/macro/-/kOSMetaClassNoTempData -C/macro/-/kOSReturnError -C/macro/-/kOSReturnSuccess -C/econst/-/kOwnerID2Name -C/econst/-/kOwnerName2ID -C/econst/-/kownerPrivileges -C/econst/-/kPanningMode_SoundField -C/econst/-/kPanningMode_VectorBasedPanning -C/econst/-/kParameterEvent_Immediate -C/econst/-/kParameterEvent_Ramped -C/econst/-/kPassword -C/econst/-/kPasteboardClientIsOwner -C/macro/-/kPasteboardClipboard -C/macro/-/kPasteboardFind -C/econst/-/kPasteboardFlavorNoFlags -C/econst/-/kPasteboardFlavorNotSaved -C/econst/-/kPasteboardFlavorPromised -C/econst/-/kPasteboardFlavorRequestOnly -C/econst/-/kPasteboardFlavorSenderOnly -C/econst/-/kPasteboardFlavorSenderTranslated -C/econst/-/kPasteboardFlavorSystemTranslated -C/econst/-/kPasteboardModified -C/macro/-/kPasteboardPromisedData -C/macro/-/kPasteboardResolveAllPromises -C/macro/-/kPasteboardUniqueName -C/econst/-/kPCSToDevice -C/econst/-/kPCSToPCS -C/econst/-/kPDFActionNamedFind -C/econst/-/kPDFActionNamedFirstPage -C/econst/-/kPDFActionNamedGoBack -C/econst/-/kPDFActionNamedGoForward -C/econst/-/kPDFActionNamedGoToPage -C/econst/-/kPDFActionNamedLastPage -C/econst/-/kPDFActionNamedNextPage -C/econst/-/kPDFActionNamedNone -C/econst/-/kPDFActionNamedPreviousPage -C/econst/-/kPDFActionNamedPrint -C/econst/-/kPDFActionNamedZoomIn -C/econst/-/kPDFActionNamedZoomOut -C/econst/-/kPDFAnnotationArea -C/econst/-/kPDFBorderStyleBeveled -C/econst/-/kPDFBorderStyleDashed -C/econst/-/kPDFBorderStyleInset -C/econst/-/kPDFBorderStyleSolid -C/econst/-/kPDFBorderStyleUnderline -C/econst/-/kPDFControlArea -C/macro/-/kPDFDestinationUnspecifiedValue -C/econst/-/kPDFDisplayBoxArtBox -C/econst/-/kPDFDisplayBoxBleedBox -C/econst/-/kPDFDisplayBoxCropBox -C/econst/-/kPDFDisplayBoxMediaBox -C/econst/-/kPDFDisplayBoxTrimBox -C/econst/-/kPDFDisplaySinglePage -C/econst/-/kPDFDisplaySinglePageContinuous -C/econst/-/kPDFDisplayTwoUp -C/econst/-/kPDFDisplayTwoUpContinuous -C/econst/-/kPDFIconArea -C/econst/-/kPDFLineStyleCircle -C/econst/-/kPDFLineStyleClosedArrow -C/econst/-/kPDFLineStyleDiamond -C/econst/-/kPDFLineStyleNone -C/econst/-/kPDFLineStyleOpenArrow -C/econst/-/kPDFLineStyleSquare -C/econst/-/kPDFLinkArea -C/econst/-/kPDFMarkupTypeHighlight -C/econst/-/kPDFMarkupTypeStrikeOut -C/econst/-/kPDFMarkupTypeUnderline -C/econst/-/kPDFNoArea -C/econst/-/kPDFPageArea -C/econst/-/kPDFPopupArea -C/econst/-/kPDFPrintPageScaleDownToFit -C/econst/-/kPDFPrintPageScaleNone -C/econst/-/kPDFPrintPageScaleToFit -C/econst/-/kPDFTextAnnotationIconComment -C/econst/-/kPDFTextAnnotationIconHelp -C/econst/-/kPDFTextAnnotationIconInsert -C/econst/-/kPDFTextAnnotationIconKey -C/econst/-/kPDFTextAnnotationIconNewParagraph -C/econst/-/kPDFTextAnnotationIconNote -C/econst/-/kPDFTextAnnotationIconParagraph -C/econst/-/kPDFTextArea -C/econst/-/kPDFTextFieldArea -C/econst/-/kPDFWidgetCheckBoxControl -C/econst/-/kPDFWidgetPushButtonControl -C/econst/-/kPDFWidgetRadioButtonControl -C/econst/-/kPDFWidgetUnknownControl -C/macro/-/kPDFWorkflowDisplayNameKey -C/macro/-/kPDFWorkflowFolderURLKey -C/macro/-/kPDFWorkflowItemsKey -C/macro/-/kPDFWorkFlowItemURLKey -C/econst/-/kPM8BitCommKey -C/econst/-/kPM8BitCommStr -C/econst/-/kPMAdjustedPageRectKey -C/econst/-/kPMAdjustedPageRectStr -C/econst/-/kPMAdjustedPaperRectKey -C/econst/-/kPMAdjustedPaperRectStr -C/econst/-/kPMApplicationNameKey -C/econst/-/kPMApplicationNameStr -C/econst/-/kPMBandingRequestedKey -C/econst/-/kPMBandingRequestedStr -C/econst/-/kPMBlackAndWhite -C/econst/-/kPMBorderKey -C/econst/-/kPMBorderStr -C/econst/-/kPMBorderTypeKey -C/econst/-/kPMBorderTypeStr -C/econst/-/kPMCancel -C/econst/-/kPMColor -C/econst/-/kPMColorDeviceIDKey -C/econst/-/kPMColorDeviceIDStr -C/econst/-/kPMColorModeDuotone -C/econst/-/kPMColorModeKey -C/econst/-/kPMColorModeSpecialColor -C/econst/-/kPMColorModeStr -C/econst/-/kPMColorSyncProfileIDKey -C/econst/-/kPMColorSyncProfileIDStr -C/econst/-/kPMColorSyncProfilesKey -C/econst/-/kPMColorSyncProfilesStr -C/econst/-/kPMColorSyncSystemProfilePathKey -C/econst/-/kPMColorSyncSystemProfilePathStr -C/econst/-/kPMCompiledPPDKey -C/econst/-/kPMCompiledPPDStr -C/econst/-/kPMConstraintList -C/econst/-/kPMConstraintPrivate -C/econst/-/kPMConstraintRange -C/econst/-/kPMConstraintUndefined -C/econst/-/kPMConverterResHorizontalKey -C/econst/-/kPMConverterResHorizontalStr -C/econst/-/kPMConverterResVerticalKey -C/econst/-/kPMConverterResVerticalStr -C/econst/-/kPMConverterSetupPrelude -C/econst/-/kPMConverterSetupTicket -C/econst/-/kPMConverterSetupTicketType -C/econst/-/kPMCopiesKey -C/econst/-/kPMCopiesStr -C/econst/-/kPMCopyCollateDefault -C/econst/-/kPMCopyCollateKey -C/econst/-/kPMCopyCollateStr -C/econst/-/kPMCurrentValue -C/econst/-/kPMCVColorSyncProfileIDKey -C/econst/-/kPMDataFormatXMLCompressed -C/econst/-/kPMDataFormatXMLDefault -C/econst/-/kPMDataFormatXMLMinimal -C/econst/-/kPMDefaultResolution -C/econst/-/kPMDefaultValue -C/econst/-/kPMDeleteSubTicketFailed -C/econst/-/kPMDepthSwitchingEnabledKey -C/econst/-/kPMDepthSwitchingEnabledStr -C/econst/-/kPMDescriptionFileKey -C/econst/-/kPMDescriptionFileStr -C/econst/-/kPMDestinationFax -C/econst/-/kPMDestinationFile -C/econst/-/kPMDestinationInvalid -C/econst/-/kPMDestinationPreview -C/econst/-/kPMDestinationPrinter -C/econst/-/kPMDestinationProcessPDF -C/econst/-/kPMDestinationTicket -C/econst/-/kPMDestinationTicketType -C/econst/-/kPMDestinationTypeKey -C/econst/-/kPMDestinationTypeStr -C/econst/-/kPMDocumentFormatDefault -C/econst/-/kPMDocumentFormatPDF -C/econst/-/kPMDocumentFormatPICT -C/econst/-/kPMDocumentFormatPICTPS -C/econst/-/kPMDocumentFormatPostScript -C/econst/-/kPMDocumentTicket -C/econst/-/kPMDocumentTicketPrelude -C/econst/-/kPMDocumentTicketType -C/econst/-/kPMDoesCopiesKey -C/econst/-/kPMDoesCopiesStr -C/econst/-/kPMDoesCopyCollateKey -C/econst/-/kPMDoesCopyCollateStr -C/econst/-/kPMDoesReverseOrderKey -C/econst/-/kPMDoesReverseOrderStr -C/econst/-/kPMDontFetchItem -C/econst/-/kPMDontWantBoolean -C/econst/-/kPMDontWantData -C/econst/-/kPMDontWantSize -C/econst/-/kPMDrawingResHorizontalKey -C/econst/-/kPMDrawingResHorizontalStr -C/econst/-/kPMDrawingResVerticalKey -C/econst/-/kPMDrawingResVerticalStr -C/econst/-/kPMDriverCreatorKey -C/econst/-/kPMDriverCreatorStr -C/econst/-/kPMDuplexDefault -C/econst/-/kPMDuplexingKey -C/econst/-/kPMDuplexingStr -C/econst/-/kPMDuplexNone -C/econst/-/kPMDuplexNoTumble -C/econst/-/kPMDuplexTumble -C/econst/-/kPMFirstPageKey -C/econst/-/kPMFirstPageStr -C/econst/-/kPMFormattingPrinterKey -C/econst/-/kPMFormattingPrinterStr -C/econst/-/kPMGeneralError -C/econst/-/kPMGraphicsContextCoreGraphics -C/econst/-/kPMGraphicsContextDefault -C/econst/-/kPMGraphicsContextQuickdraw -C/econst/-/kPMGray -C/econst/-/kPMInputFileTypeListKey -C/econst/-/kPMInputFileTypeListStr -C/econst/-/kPMInstallableOptionKey -C/econst/-/kPMInstallableOptionStr -C/econst/-/kPMInvalidAllocator -C/econst/-/kPMInvalidCalibrationTarget -C/econst/-/kPMInvalidConnection -C/econst/-/kPMInvalidFileType -C/econst/-/kPMInvalidIndex -C/econst/-/kPMInvalidItem -C/econst/-/kPMInvalidJobTemplate -C/econst/-/kPMInvalidKey -C/econst/-/kPMInvalidObject -C/econst/-/kPMInvalidPageFormat -C/econst/-/kPMInvalidPaper -C/econst/-/kPMInvalidPreset -C/econst/-/kPMInvalidPrinter -C/econst/-/kPMInvalidPrinterInfo -C/econst/-/kPMInvalidPrintSession -C/econst/-/kPMInvalidPrintSettings -C/econst/-/kPMInvalidReply -C/econst/-/kPMInvalidSubTicket -C/econst/-/kPMInvalidTicket -C/econst/-/kPMInvalidType -C/econst/-/kPMInvalidValue -C/econst/-/kPMIsBinaryOKKey -C/econst/-/kPMIsBinaryOKStr -C/econst/-/kPMItemBooleanType -C/econst/-/kPMItemCStringType -C/econst/-/kPMItemCStrListType -C/econst/-/kPMItemInvalidType -C/econst/-/kPMItemIsLocked -C/econst/-/kPMItemPMRectListType -C/econst/-/kPMItemPMRectType -C/econst/-/kPMItemSInt32ListType -C/econst/-/kPMItemSInt32Type -C/econst/-/kPMJobHoldUntilTimeKey -C/econst/-/kPMJobHoldUntilTimeStr -C/econst/-/kPMJobNameKey -C/econst/-/kPMJobNameStr -C/econst/-/kPMJobOwnerKey -C/econst/-/kPMJobOwnerStr -C/econst/-/kPMJobPriorityKey -C/econst/-/kPMJobPriorityStr -C/econst/-/kPMJobStateKey -C/econst/-/kPMJobStateStr -C/econst/-/kPMJobTemplateKey -C/econst/-/kPMJobTemplateStr -C/econst/-/kPMJobTicket -C/econst/-/kPMJobTicketPrelude -C/econst/-/kPMJobTicketType -C/econst/-/kPMKeyNotFound -C/econst/-/kPMKeyNotUnique -C/econst/-/kPMLandscape -C/econst/-/kPMLastPageKey -C/econst/-/kPMLastPageStr -C/econst/-/kPMLayoutColumnsKey -C/econst/-/kPMLayoutColumnsStr -C/econst/-/kPMLayoutDirectionKey -C/econst/-/kPMLayoutDirectionStr -C/econst/-/kPMLayoutNUpKey -C/econst/-/kPMLayoutNUpStr -C/econst/-/kPMLayoutRowsKey -C/econst/-/kPMLayoutRowsStr -C/econst/-/kPMLayoutTileOrientationKey -C/econst/-/kPMLayoutTileOrientationStr -C/econst/-/kPMLocked -C/econst/-/kPMLockIgnored -C/econst/-/kPMMakeAndModelNameKey -C/econst/-/kPMMakeAndModelNameStr -C/econst/-/kPMMatchPaperKey -C/econst/-/kPMMatchPaperStr -C/econst/-/kPMMaximumValue -C/econst/-/kPMMaxRange -C/econst/-/kPMMaxSquareResolution -C/econst/-/kPMMinimumValue -C/econst/-/kPMMinRange -C/econst/-/kPMMinSquareResolution -C/econst/-/kPMModuleInfoTicket -C/econst/-/kPMModuleInfoTicketType -C/econst/-/kPMNoData -C/econst/-/kPMNoDefaultPrinter -C/econst/-/kPMNoPageFormat -C/econst/-/kPMNoPrintSettings -C/econst/-/kPMNoReference -C/econst/-/kPMNoSuchEntry -C/econst/-/kPMNotImplemented -C/econst/-/kPMObjectInUse -C/econst/-/kPMOutOfScope -C/econst/-/kPMOutputFilenameKey -C/econst/-/kPMOutputFilenameStr -C/econst/-/kPMOutputTypeKey -C/econst/-/kPMOutputTypeListKey -C/econst/-/kPMOutputTypeListStr -C/econst/-/kPMOutputTypeStr -C/econst/-/kPMPageBackupRecordDataKey -C/econst/-/kPMPageBackupRecordDataStr -C/econst/-/kPMPageBackupRecordHdlKey -C/econst/-/kPMPageBackupRecordHdlStr -C/econst/-/kPMPageCustomDialogHdlKey -C/econst/-/kPMPageCustomDialogHdlStr -C/econst/-/kPMPageFormatPrelude -C/econst/-/kPMPageFormatTicket -C/econst/-/kPMPageFormatTicketType -C/econst/-/kPMPageOrientationKey -C/econst/-/kPMPageOrientationStr -C/econst/-/kPMPageRangeKey -C/econst/-/kPMPageRangeStr -C/econst/-/kPMPageScalingHorizontalStr -C/econst/-/kPMPageScalingVerticalKey -C/econst/-/kPMPageScalingVerticalStr -C/econst/-/kPMPageTicket -C/econst/-/kPMPageTicketPrelude -C/econst/-/kPMPageTicketType -C/econst/-/kPMPaperInfoList -C/econst/-/kPMPaperInfoListStr -C/econst/-/kPMPaperInfoPrelude -C/econst/-/kPMPaperInfoTicket -C/econst/-/kPMPaperInfoTicketType -C/econst/-/kPMPaperNameKey -C/econst/-/kPMPaperNameStr -C/econst/-/kPMPaperSourceKey -C/econst/-/kPMPaperSourceStr -C/econst/-/kPMPaperTypeKey -C/econst/-/kPMPaperTypeStr -C/econst/-/kPMPhaseAppDrawing -C/econst/-/kPMPhaseConverting -C/econst/-/kPMPhaseDialogsUp -C/econst/-/kPMPhaseKey -C/econst/-/kPMPhasePostAppDrawing -C/econst/-/kPMPhasePostConversion -C/econst/-/kPMPhasePostDialogs -C/econst/-/kPMPhasePreAppDrawing -C/econst/-/kPMPhasePreConversion -C/econst/-/kPMPhasePreDialog -C/econst/-/kPMPhasePrinting -C/econst/-/kPMPhaseStr -C/econst/-/kPMPhaseUnknown -C/econst/-/kPMPortrait -C/macro/-/kPMPPDDescriptionType -C/econst/-/kPMPPDDictKey -C/econst/-/kPMPPDDictStr -C/econst/-/kPMPreviewKey -C/econst/-/kPMPreviewStr -C/econst/-/kPMPrimaryPaperFeedKey -C/econst/-/kPMPrimaryPaperFeedStr -C/econst/-/kPMPrintAllPages -C/econst/-/kPMPrintBackupRecordDataKey -C/econst/-/kPMPrintBackupRecordDataStr -C/econst/-/kPMPrintBackupRecordHdlKey -C/econst/-/kPMPrintBackupRecordHdlStr -C/econst/-/kPMPrintCustomDialogHdlKey -C/econst/-/kPMPrintCustomDialogHdlStr -C/econst/-/kPMPrinterAddressKey -C/econst/-/kPMPrinterAddressStr -C/econst/-/kPMPrinterFontKey -C/econst/-/kPMPrinterFontStr -C/econst/-/kPMPrinterIdle -C/econst/-/kPMPrinterInfoPrelude -C/econst/-/kPMPrinterInfoTicket -C/econst/-/kPMPrinterInfoTicketType -C/econst/-/kPMPrinterIsPostScriptDriverKey -C/econst/-/kPMPrinterIsPostScriptDriverStr -C/econst/-/kPMPrinterLongNameKey -C/econst/-/kPMPrinterLongNameStr -C/econst/-/kPMPrinterMaxResKey -C/econst/-/kPMPrinterMaxResStr -C/econst/-/kPMPrinterMinResKey -C/econst/-/kPMPrinterMinResStr -C/econst/-/kPMPrinterModuleFormatKey -C/econst/-/kPMPrinterModuleFormatStr -C/econst/-/kPMPrinterProcessing -C/econst/-/kPMPrinterShortNameKey -C/econst/-/kPMPrinterShortNameStr -C/econst/-/kPMPrinterStopped -C/econst/-/kPMPrinterSuggestedResKey -C/econst/-/kPMPrinterSuggestedResStr -C/econst/-/kPMPrintOrientationKey -C/econst/-/kPMPrintOrientationStr -C/econst/-/kPMPrintScalingAlignmentKey -C/econst/-/kPMPrintScalingAlignmentStr -C/econst/-/kPMPrintScalingHorizontalKey -C/econst/-/kPMPrintScalingHorizontalStr -C/econst/-/kPMPrintScalingVerticalKey -C/econst/-/kPMPrintScalingVerticalStr -C/econst/-/kPMPrintSettingsPrelude -C/econst/-/kPMPrintSettingsTicket -C/econst/-/kPMPrintSettingsTicketType -C/econst/-/kPMPSErrorHandlerKey -C/econst/-/kPMPSErrorHandlerStr -C/econst/-/kPMPSErrorOnScreenKey -C/econst/-/kPMPSErrorOnScreenStr -C/econst/-/kPMPSTargetLanguageLevel1 -C/econst/-/kPMPSTargetLanguageLevel1and2 -C/econst/-/kPMPSTargetLanguageLevel2 -C/econst/-/kPMPSTargetLanguageLevel2and3 -C/econst/-/kPMPSTargetLanguageLevel3 -C/econst/-/kPMPSTargetLanguageLevelDefault -C/econst/-/kPMPSTargetLanguageLevelUnknown -C/econst/-/kPMPSTraySwitchKey -C/econst/-/kPMPSTraySwitchStr -C/econst/-/kPMPSTTRasterizerAccept68K -C/econst/-/kPMPSTTRasterizerNone -C/econst/-/kPMPSTTRasterizerType42 -C/econst/-/kPMPSTTRasterizerUnknown -C/econst/-/kPMQualityBest -C/econst/-/kPMQualityDraft -C/econst/-/kPMQualityHighest -C/econst/-/kPMQualityInkSaver -C/econst/-/kPMQualityKey -C/econst/-/kPMQualityLowest -C/econst/-/kPMQualityNormal -C/econst/-/kPMQualityPhoto -C/econst/-/kPMQualityStr -C/econst/-/kPMRequestedPixelFormatKey -C/econst/-/kPMRequestedPixelFormatStr -C/econst/-/kPMRequestedPixelLayoutKey -C/econst/-/kPMRequestedPixelLayoutStr -C/econst/-/kPMRequiredBandHeightKey -C/econst/-/kPMRequiredBandHeightStr -C/econst/-/kPMReverseLandscape -C/econst/-/kPMReverseOrderKey -C/econst/-/kPMReverseOrderStr -C/econst/-/kPMReversePortrait -C/econst/-/kPMSecondaryPaperFeedKey -C/econst/-/kPMSecondaryPaperFeedStr -C/econst/-/kPMSimplexTumble -C/econst/-/kPMSourceProfile -C/econst/-/kPMSpoolFormatKey -C/econst/-/kPMSpoolFormatStr -C/econst/-/kPMStringConversionFailure -C/econst/-/kPMSubTicketNotFound -C/econst/-/kPMSupportsColorKey -C/econst/-/kPMSupportsColorStr -C/econst/-/kPMTemplateIsLocked -C/econst/-/kPMTemplatePrelude -C/econst/-/kPMTicketIsLocked -C/econst/-/kPMTicketList -C/econst/-/kPMTicketListPrelude -C/econst/-/kPMTicketListType -C/econst/-/kPMTicketTypeNotFound -C/econst/-/kPMTicketTypeUnknown -C/econst/-/kPMTopLevel -C/econst/-/kPMTotalMemAvailableKey -C/econst/-/kPMTotalMemAvailableStr -C/econst/-/kPMTotalMemInstalledKey -C/econst/-/kPMTotalMemInstalledStr -C/econst/-/kPMTransparentCommKey -C/econst/-/kPMTransparentCommStr -C/econst/-/kPMUnadjustedPageRectKey -C/econst/-/kPMUnadjustedPageRectStr -C/econst/-/kPMUnadjustedPaperRectKey -C/econst/-/kPMUnadjustedPaperRectStr -C/econst/-/kPMUnknownDataType -C/econst/-/kPMUnlocked -C/econst/-/kPMUpdateTicketFailed -C/econst/-/kPMUserLanguageKey -C/econst/-/kPMUserLanguageStr -C/econst/-/kPMValidateTicketFailed -C/econst/-/kPMValueArray -C/econst/-/kPMValueBoolean -C/econst/-/kPMValueData -C/econst/-/kPMValueDate -C/econst/-/kPMValueDict -C/econst/-/kPMValueDouble -C/econst/-/kPMValueDoubleRange -C/econst/-/kPMValueOutOfRange -C/econst/-/kPMValuePMRect -C/econst/-/kPMValueSInt32 -C/econst/-/kPMValueSInt32Range -C/econst/-/kPMValueString -C/econst/-/kPMValueTicket -C/econst/-/kPMValueUInt32 -C/econst/-/kPMValueUInt32Range -C/econst/-/kPMValueUndefined -C/econst/-/kPMWhiteSkippingEnabledKey -C/econst/-/kPMWhiteSkippingEnabledStr -C/econst/-/kPMXMLParseError -C/econst/-/kPreflightThenPause -C/econst/-/kProcessTransformToForegroundApplication -C/econst/-/kPSErrorHandler -C/econst/-/kPSInjectionAfterSubsection -C/econst/-/kPSInjectionBeforeSubsection -C/econst/-/kPSInjectionMaxDictSize -C/econst/-/kPSInjectionPageKey -C/econst/-/kPSInjectionPlacementKey -C/econst/-/kPSInjectionPostScriptKey -C/econst/-/kPSInjectionReplaceSubsection -C/econst/-/kPSInjectionSectionKey -C/econst/-/kPSInjectionSubSectionKey -C/econst/-/kPSNoErrorHandler -C/econst/-/kPSPageInjectAllPages -C/econst/-/kQCPlugInExecutionModeConsumer -C/econst/-/kQCPlugInExecutionModeProcessor -C/econst/-/kQCPlugInExecutionModeProvider -C/econst/-/kQCPlugInTimeModeIdle -C/econst/-/kQCPlugInTimeModeNone -C/econst/-/kQCPlugInTimeModeTimeBase -C/data/-/kQLPreviewContentIDScheme -C/data/-/kQLPreviewPropertyAttachmentDataKey -C/data/-/kQLPreviewPropertyAttachmentsKey -C/data/-/kQLPreviewPropertyDisplayNameKey -C/data/-/kQLPreviewPropertyHeightKey -C/data/-/kQLPreviewPropertyMIMETypeKey -C/data/-/kQLPreviewPropertyStringEncodingKey -C/data/-/kQLPreviewPropertyTextEncodingNameKey -C/data/-/kQLPreviewPropertyWidthKey -C/data/-/kQLThumbnailOptionIconModeKey -C/data/-/kQLThumbnailOptionScaleFactorKey -C/econst/-/kQTAlphaMode -C/econst/-/kQTAlphaModePreMulColor -C/econst/-/kQTCCIR601VideoGammaLevel -C/econst/-/kQTEnableExif -C/econst/-/kQTParseTextHREFText -C/econst/-/kQTPNGFilterPreference -C/econst/-/kQTPNGInterlaceStyle -C/econst/-/kQTTIFFCompression_PackBits -C/econst/-/kQTTIFFCompressionMethod -C/econst/-/kQTTIFFExifGPSUserDataPrefix -C/econst/-/kQTTIFFExifUserDataPrefix -C/econst/-/kQTTIFFLittleEndian -C/econst/-/kQTTIFFUserDataGeoAsciiParams -C/econst/-/kQTTIFFUserDataGeoDoubleParams -C/econst/-/kQTTIFFUserDataGeoKeyDirectory -C/econst/-/kQTTIFFUserDataIntergraphMatrix -C/econst/-/kQTTIFFUserDataModelPixelScale -C/econst/-/kQTTIFFUserDataModelTiepoint -C/econst/-/kQTTIFFUserDataModelTransformation -C/econst/-/kQTTIFFUserDataOrientation -C/econst/-/kQTTIFFUserDataPrefix -C/econst/-/kQTTIFFUserDataPrimaryChromaticities -C/econst/-/kQTTIFFUserDataTransferFunction -C/econst/-/kQTTIFFUserDataTransferRange -C/econst/-/kQTTIFFUserDataWhitePoint -C/econst/-/kQTTIFFUserDataYCbCrPositioning -C/func/-/kqueue -C/econst/-/kRandNumUAMStr -C/econst/-/kReadOnly -C/econst/-/kRecon1Login -C/econst/-/kRecon1ReconnectLogin -C/econst/-/kRecon1RefreshToken -C/econst/-/kReconnectUAMStr -C/econst/-/kReconnWithID -C/econst/-/kReconnWithTimeAndID -C/econst/-/kRenderQuality_High -C/econst/-/kRenderQuality_Low -C/econst/-/kRenderQuality_Max -C/econst/-/kRenderQuality_Medium -C/econst/-/kRenderQuality_Min -C/macro/-/kREPORT_CAPACITY_16_MaximumLBA -C/macro/-/kREPORT_CAPACITY_MaximumLBA -C/macro/-/kREPORT_LUNS_HeaderSize -C/econst/-/kResFileNotOpened -C/econst/-/kResolveAliasFileNoUI -C/econst/-/kResolveAliasTryFileIDFirst -C/econst/-/kReturnNextGroup -C/econst/-/kReturnNextUG -C/econst/-/kReturnNextUser -C/econst/-/kRotate0DegreesClockwise -C/econst/-/kRotate0DegreesCounterClockwise -C/econst/-/kRotate180DegreesClockwise -C/econst/-/kRotate180DegreesCounterClockwise -C/econst/-/kRotate270DegreesClockwise -C/econst/-/kRotate270DegreesCounterClockwise -C/econst/-/kRotate90DegreesClockwise -C/econst/-/kRotate90DegreesCounterClockwise -C/econst/-/kRPGroup -C/econst/-/kRPOther -C/econst/-/kRPOwner -C/econst/-/kRPUser -C/econst/-/kRsrcChainAboveAllMaps -C/econst/-/kRsrcChainAboveApplicationMap -C/econst/-/kRsrcChainBelowApplicationMap -C/econst/-/kRsrcChainBelowSystemMap -C/data/-/kSCBondStatusDeviceAggregationStatus -C/data/-/kSCBondStatusDeviceCollecting -C/data/-/kSCBondStatusDeviceDistributing -C/econst/-/kSCBondStatusLinkInvalid -C/econst/-/kSCBondStatusNoPartner -C/econst/-/kSCBondStatusNotInActiveGroup -C/econst/-/kSCBondStatusOK -C/econst/-/kSCBondStatusUnknown -C/data/-/kSCCompGlobal -C/data/-/kSCCompHostNames -C/data/-/kSCCompInterface -C/data/-/kSCCompNetwork -C/data/-/kSCCompService -C/data/-/kSCCompSystem -C/data/-/kSCCompUsers -C/data/-/kSCDynamicStoreDomainFile -C/data/-/kSCDynamicStoreDomainPlugin -C/data/-/kSCDynamicStoreDomainPrefs -C/data/-/kSCDynamicStoreDomainSetup -C/data/-/kSCDynamicStoreDomainState -C/data/-/kSCDynamicStorePropNetInterfaces -C/data/-/kSCDynamicStorePropNetPrimaryInterface -C/data/-/kSCDynamicStorePropNetPrimaryService -C/data/-/kSCDynamicStorePropNetServiceIDs -C/data/-/kSCDynamicStorePropSetupCurrentSet -C/data/-/kSCDynamicStorePropSetupLastUpdated -C/data/-/kSCDynamicStoreUseSessionKeys -C/data/-/kSCEntNet6to4 -C/data/-/kSCEntNetAirPort -C/data/-/kSCEntNetAppleTalk -C/data/-/kSCEntNetDHCP -C/data/-/kSCEntNetDNS -C/data/-/kSCEntNetEthernet -C/data/-/kSCEntNetFireWire -C/data/-/kSCEntNetInterface -C/data/-/kSCEntNetIPSec -C/data/-/kSCEntNetIPv4 -C/data/-/kSCEntNetIPv6 -C/data/-/kSCEntNetL2TP -C/data/-/kSCEntNetLink -C/data/-/kSCEntNetModem -C/data/-/kSCEntNetPPP -C/data/-/kSCEntNetPPPoE -C/data/-/kSCEntNetPPPSerial -C/data/-/kSCEntNetPPTP -C/data/-/kSCEntNetProxies -C/data/-/kSCEntNetSMB -C/data/-/kSCEntUsersConsoleUser -C/macro/-/kSCNetworkConnectionBytesIn -C/macro/-/kSCNetworkConnectionBytesOut -C/econst/-/kSCNetworkConnectionConnected -C/econst/-/kSCNetworkConnectionConnecting -C/econst/-/kSCNetworkConnectionDisconnected -C/econst/-/kSCNetworkConnectionDisconnecting -C/macro/-/kSCNetworkConnectionErrorsIn -C/macro/-/kSCNetworkConnectionErrorsOut -C/econst/-/kSCNetworkConnectionInvalid -C/macro/-/kSCNetworkConnectionPacketsIn -C/macro/-/kSCNetworkConnectionPacketsOut -C/econst/-/kSCNetworkConnectionPPPAuthenticating -C/econst/-/kSCNetworkConnectionPPPConnected -C/econst/-/kSCNetworkConnectionPPPConnectingLink -C/econst/-/kSCNetworkConnectionPPPDialOnTraffic -C/econst/-/kSCNetworkConnectionPPPDisconnected -C/econst/-/kSCNetworkConnectionPPPDisconnectingLink -C/econst/-/kSCNetworkConnectionPPPHoldingLinkOff -C/econst/-/kSCNetworkConnectionPPPInitializing -C/econst/-/kSCNetworkConnectionPPPNegotiatingLink -C/econst/-/kSCNetworkConnectionPPPNegotiatingNetwork -C/econst/-/kSCNetworkConnectionPPPSuspended -C/econst/-/kSCNetworkConnectionPPPTerminating -C/econst/-/kSCNetworkConnectionPPPWaitingForCallBack -C/econst/-/kSCNetworkConnectionPPPWaitingForRedial -C/macro/-/kSCNetworkConnectionSelectionOptionOnDemandHostName -C/macro/-/kSCNetworkConnectionSelectionOptionOnDemandRetry -C/econst/-/kSCNetworkFlagsConnectionAutomatic -C/econst/-/kSCNetworkFlagsConnectionRequired -C/econst/-/kSCNetworkFlagsInterventionRequired -C/econst/-/kSCNetworkFlagsIsDirect -C/econst/-/kSCNetworkFlagsIsLocalAddress -C/econst/-/kSCNetworkFlagsReachable -C/econst/-/kSCNetworkFlagsTransientConnection -C/data/-/kSCNetworkInterfaceIPv4 -C/data/-/kSCNetworkInterfaceType6to4 -C/data/-/kSCNetworkInterfaceTypeBluetooth -C/data/-/kSCNetworkInterfaceTypeBond -C/data/-/kSCNetworkInterfaceTypeEthernet -C/data/-/kSCNetworkInterfaceTypeFireWire -C/data/-/kSCNetworkInterfaceTypeIEEE80211 -C/data/-/kSCNetworkInterfaceTypeIPSec -C/data/-/kSCNetworkInterfaceTypeIPv4 -C/data/-/kSCNetworkInterfaceTypeIrDA -C/data/-/kSCNetworkInterfaceTypeL2TP -C/data/-/kSCNetworkInterfaceTypeModem -C/data/-/kSCNetworkInterfaceTypePPP -C/data/-/kSCNetworkInterfaceTypePPTP -C/data/-/kSCNetworkInterfaceTypeSerial -C/data/-/kSCNetworkInterfaceTypeVLAN -C/data/-/kSCNetworkInterfaceTypeWWAN -C/data/-/kSCNetworkProtocolTypeAppleTalk -C/data/-/kSCNetworkProtocolTypeDNS -C/data/-/kSCNetworkProtocolTypeIPv4 -C/data/-/kSCNetworkProtocolTypeIPv6 -C/data/-/kSCNetworkProtocolTypeProxies -C/data/-/kSCNetworkProtocolTypeSMB -C/econst/-/kSCNetworkReachabilityFlagsConnectionOnDemand -C/econst/-/kSCNetworkReachabilityFlagsConnectionOnTraffic -C/econst/-/kSCNetworkReachabilityFlagsConnectionRequired -C/econst/-/kSCNetworkReachabilityFlagsInterventionRequired -C/econst/-/kSCNetworkReachabilityFlagsIsDirect -C/econst/-/kSCNetworkReachabilityFlagsIsLocalAddress -C/econst/-/kSCNetworkReachabilityFlagsReachable -C/econst/-/kSCNetworkReachabilityFlagsTransientConnection -C/data/-/kSCPrefCurrentSet -C/econst/-/kSCPreferencesNotificationApply -C/econst/-/kSCPreferencesNotificationCommit -C/data/-/kSCPrefNetworkServices -C/data/-/kSCPrefSets -C/data/-/kSCPrefSystem -C/data/-/kSCPropInterfaceName -C/data/-/kSCPropMACAddress -C/data/-/kSCPropNet6to4Relay -C/data/-/kSCPropNetAirPortAllowNetCreation -C/data/-/kSCPropNetAirPortAuthPassword -C/data/-/kSCPropNetAirPortAuthPasswordEncryption -C/data/-/kSCPropNetAirPortJoinMode -C/data/-/kSCPropNetAirPortPowerEnabled -C/data/-/kSCPropNetAirPortPreferredNetwork -C/data/-/kSCPropNetAirPortSavePasswords -C/data/-/kSCPropNetAppleTalkComputerName -C/data/-/kSCPropNetAppleTalkComputerNameEncoding -C/data/-/kSCPropNetAppleTalkConfigMethod -C/data/-/kSCPropNetAppleTalkDefaultZone -C/data/-/kSCPropNetAppleTalkNetworkID -C/data/-/kSCPropNetAppleTalkNetworkRange -C/data/-/kSCPropNetAppleTalkNodeID -C/data/-/kSCPropNetAppleTalkSeedNetworkRange -C/data/-/kSCPropNetAppleTalkSeedZones -C/data/-/kSCPropNetDNSDomainName -C/data/-/kSCPropNetDNSOptions -C/data/-/kSCPropNetDNSSearchDomains -C/data/-/kSCPropNetDNSSearchOrder -C/data/-/kSCPropNetDNSServerAddresses -C/data/-/kSCPropNetDNSServerPort -C/data/-/kSCPropNetDNSServerTimeout -C/data/-/kSCPropNetDNSSortList -C/data/-/kSCPropNetDNSSupplementalMatchDomains -C/data/-/kSCPropNetDNSSupplementalMatchOrders -C/data/-/kSCPropNetEthernetMediaOptions -C/data/-/kSCPropNetEthernetMediaSubType -C/data/-/kSCPropNetEthernetMTU -C/data/-/kSCPropNetInterfaceDeviceName -C/data/-/kSCPropNetInterfaceHardware -C/data/-/kSCPropNetInterfaces -C/data/-/kSCPropNetInterfaceSubType -C/data/-/kSCPropNetInterfaceSupportsModemOnHold -C/data/-/kSCPropNetInterfaceType -C/data/-/kSCPropNetIPSecAuthenticationMethod -C/data/-/kSCPropNetIPSecLocalCertificate -C/data/-/kSCPropNetIPSecLocalIdentifier -C/data/-/kSCPropNetIPSecLocalIdentifierType -C/data/-/kSCPropNetIPSecSharedSecret -C/data/-/kSCPropNetIPSecSharedSecretEncryption -C/data/-/kSCPropNetIPv4Addresses -C/data/-/kSCPropNetIPv4BroadcastAddresses -C/data/-/kSCPropNetIPv4ConfigMethod -C/data/-/kSCPropNetIPv4DestAddresses -C/data/-/kSCPropNetIPv4DHCPClientID -C/data/-/kSCPropNetIPv4Router -C/data/-/kSCPropNetIPv4SubnetMasks -C/data/-/kSCPropNetIPv6Addresses -C/data/-/kSCPropNetIPv6ConfigMethod -C/data/-/kSCPropNetIPv6DestAddresses -C/data/-/kSCPropNetIPv6Flags -C/data/-/kSCPropNetIPv6PrefixLength -C/data/-/kSCPropNetIPv6Router -C/data/-/kSCPropNetL2TPIPSecSharedSecret -C/data/-/kSCPropNetL2TPIPSecSharedSecretEncryption -C/data/-/kSCPropNetL2TPTransport -C/data/-/kSCPropNetLinkActive -C/data/-/kSCPropNetLinkDetaching -C/data/-/kSCPropNetLocalHostName -C/data/-/kSCPropNetModemAccessPointName -C/data/-/kSCPropNetModemConnectionPersonality -C/data/-/kSCPropNetModemConnectionScript -C/data/-/kSCPropNetModemConnectSpeed -C/data/-/kSCPropNetModemDataCompression -C/data/-/kSCPropNetModemDeviceContextID -C/data/-/kSCPropNetModemDeviceModel -C/data/-/kSCPropNetModemDeviceVendor -C/data/-/kSCPropNetModemDialMode -C/data/-/kSCPropNetModemErrorCorrection -C/data/-/kSCPropNetModemHoldCallWaitingAudibleAlert -C/data/-/kSCPropNetModemHoldDisconnectOnAnswer -C/data/-/kSCPropNetModemHoldEnabled -C/data/-/kSCPropNetModemHoldReminder -C/data/-/kSCPropNetModemHoldReminderTime -C/data/-/kSCPropNetModemNote -C/data/-/kSCPropNetModemPulseDial -C/data/-/kSCPropNetModemSpeaker -C/data/-/kSCPropNetModemSpeed -C/data/-/kSCPropNetOverridePrimary -C/data/-/kSCPropNetPPPACSPEnabled -C/data/-/kSCPropNetPPPAuthEAPPlugins -C/data/-/kSCPropNetPPPAuthName -C/data/-/kSCPropNetPPPAuthPassword -C/data/-/kSCPropNetPPPAuthPasswordEncryption -C/data/-/kSCPropNetPPPAuthPrompt -C/data/-/kSCPropNetPPPAuthProtocol -C/data/-/kSCPropNetPPPCCPEnabled -C/data/-/kSCPropNetPPPCCPMPPE128Enabled -C/data/-/kSCPropNetPPPCCPMPPE40Enabled -C/data/-/kSCPropNetPPPCommAlternateRemoteAddress -C/data/-/kSCPropNetPPPCommConnectDelay -C/data/-/kSCPropNetPPPCommDisplayTerminalWindow -C/data/-/kSCPropNetPPPCommRedialCount -C/data/-/kSCPropNetPPPCommRedialEnabled -C/data/-/kSCPropNetPPPCommRedialInterval -C/data/-/kSCPropNetPPPCommRemoteAddress -C/data/-/kSCPropNetPPPCommTerminalScript -C/data/-/kSCPropNetPPPCommUseTerminalScript -C/data/-/kSCPropNetPPPConnectTime -C/data/-/kSCPropNetPPPDeviceLastCause -C/data/-/kSCPropNetPPPDialOnDemand -C/data/-/kSCPropNetPPPDisconnectOnFastUserSwitch -C/data/-/kSCPropNetPPPDisconnectOnIdle -C/data/-/kSCPropNetPPPDisconnectOnIdleTimer -C/data/-/kSCPropNetPPPDisconnectOnLogout -C/data/-/kSCPropNetPPPDisconnectOnSleep -C/data/-/kSCPropNetPPPDisconnectTime -C/data/-/kSCPropNetPPPIdleReminder -C/data/-/kSCPropNetPPPIdleReminderTimer -C/data/-/kSCPropNetPPPIPCPCompressionVJ -C/data/-/kSCPropNetPPPIPCPUsePeerDNS -C/data/-/kSCPropNetPPPLastCause -C/data/-/kSCPropNetPPPLCPCompressionACField -C/data/-/kSCPropNetPPPLCPCompressionPField -C/data/-/kSCPropNetPPPLCPEchoEnabled -C/data/-/kSCPropNetPPPLCPEchoFailure -C/data/-/kSCPropNetPPPLCPEchoInterval -C/data/-/kSCPropNetPPPLCPMRU -C/data/-/kSCPropNetPPPLCPMTU -C/data/-/kSCPropNetPPPLCPReceiveACCM -C/data/-/kSCPropNetPPPLCPTransmitACCM -C/data/-/kSCPropNetPPPLogfile -C/data/-/kSCPropNetPPPOverridePrimary -C/data/-/kSCPropNetPPPPlugins -C/data/-/kSCPropNetPPPRetryConnectTime -C/data/-/kSCPropNetPPPSessionTimer -C/data/-/kSCPropNetPPPStatus -C/data/-/kSCPropNetPPPUseSessionTimer -C/data/-/kSCPropNetPPPVerboseLogging -C/data/-/kSCPropNetProxiesExceptionsList -C/data/-/kSCPropNetProxiesExcludeSimpleHostnames -C/data/-/kSCPropNetProxiesFTPEnable -C/data/-/kSCPropNetProxiesFTPPassive -C/data/-/kSCPropNetProxiesFTPPort -C/data/-/kSCPropNetProxiesFTPProxy -C/data/-/kSCPropNetProxiesGopherEnable -C/data/-/kSCPropNetProxiesGopherPort -C/data/-/kSCPropNetProxiesGopherProxy -C/data/-/kSCPropNetProxiesHTTPEnable -C/data/-/kSCPropNetProxiesHTTPPort -C/data/-/kSCPropNetProxiesHTTPProxy -C/data/-/kSCPropNetProxiesHTTPSEnable -C/data/-/kSCPropNetProxiesHTTPSPort -C/data/-/kSCPropNetProxiesHTTPSProxy -C/data/-/kSCPropNetProxiesProxyAutoConfigEnable -C/data/-/kSCPropNetProxiesProxyAutoConfigURLString -C/data/-/kSCPropNetProxiesProxyAutoDiscoveryEnable -C/data/-/kSCPropNetProxiesRTSPEnable -C/data/-/kSCPropNetProxiesRTSPPort -C/data/-/kSCPropNetProxiesRTSPProxy -C/data/-/kSCPropNetProxiesSOCKSEnable -C/data/-/kSCPropNetProxiesSOCKSPort -C/data/-/kSCPropNetProxiesSOCKSProxy -C/data/-/kSCPropNetServiceOrder -C/data/-/kSCPropNetSMBNetBIOSName -C/data/-/kSCPropNetSMBNetBIOSNodeType -C/data/-/kSCPropNetSMBNetBIOSScope -C/data/-/kSCPropNetSMBWINSAddresses -C/data/-/kSCPropNetSMBWorkgroup -C/data/-/kSCPropSystemComputerName -C/data/-/kSCPropSystemComputerNameEncoding -C/data/-/kSCPropUserDefinedName -C/data/-/kSCPropVersion -C/econst/-/kScreenFloodMethodAlpha -C/econst/-/kScreenFloodMethodKeyColor -C/econst/-/kScreenFloodMethodNone -C/macro/-/kSCSICmdFieldMask10Bit -C/macro/-/kSCSICmdFieldMask11Bit -C/macro/-/kSCSICmdFieldMask12Bit -C/macro/-/kSCSICmdFieldMask13Bit -C/macro/-/kSCSICmdFieldMask14Bit -C/macro/-/kSCSICmdFieldMask15Bit -C/macro/-/kSCSICmdFieldMask17Bit -C/macro/-/kSCSICmdFieldMask18Bit -C/macro/-/kSCSICmdFieldMask19Bit -C/macro/-/kSCSICmdFieldMask1Bit -C/macro/-/kSCSICmdFieldMask20Bit -C/macro/-/kSCSICmdFieldMask21Bit -C/macro/-/kSCSICmdFieldMask22Bit -C/macro/-/kSCSICmdFieldMask23Bit -C/macro/-/kSCSICmdFieldMask25Bit -C/macro/-/kSCSICmdFieldMask26Bit -C/macro/-/kSCSICmdFieldMask27Bit -C/macro/-/kSCSICmdFieldMask28Bit -C/macro/-/kSCSICmdFieldMask29Bit -C/macro/-/kSCSICmdFieldMask2Bit -C/macro/-/kSCSICmdFieldMask2Byte -C/macro/-/kSCSICmdFieldMask30Bit -C/macro/-/kSCSICmdFieldMask31Bit -C/macro/-/kSCSICmdFieldMask33Bit -C/macro/-/kSCSICmdFieldMask34Bit -C/macro/-/kSCSICmdFieldMask35Bit -C/macro/-/kSCSICmdFieldMask36Bit -C/macro/-/kSCSICmdFieldMask37Bit -C/macro/-/kSCSICmdFieldMask38Bit -C/macro/-/kSCSICmdFieldMask39Bit -C/macro/-/kSCSICmdFieldMask3Bit -C/macro/-/kSCSICmdFieldMask3Byte -C/macro/-/kSCSICmdFieldMask41Bit -C/macro/-/kSCSICmdFieldMask42Bit -C/macro/-/kSCSICmdFieldMask43Bit -C/macro/-/kSCSICmdFieldMask44Bit -C/macro/-/kSCSICmdFieldMask45Bit -C/macro/-/kSCSICmdFieldMask46Bit -C/macro/-/kSCSICmdFieldMask47Bit -C/macro/-/kSCSICmdFieldMask49Bit -C/macro/-/kSCSICmdFieldMask4Bit -C/macro/-/kSCSICmdFieldMask4Byte -C/macro/-/kSCSICmdFieldMask50Bit -C/macro/-/kSCSICmdFieldMask51Bit -C/macro/-/kSCSICmdFieldMask52Bit -C/macro/-/kSCSICmdFieldMask53Bit -C/macro/-/kSCSICmdFieldMask54Bit -C/macro/-/kSCSICmdFieldMask55Bit -C/macro/-/kSCSICmdFieldMask57Bit -C/macro/-/kSCSICmdFieldMask58Bit -C/macro/-/kSCSICmdFieldMask59Bit -C/macro/-/kSCSICmdFieldMask5Bit -C/macro/-/kSCSICmdFieldMask5Byte -C/macro/-/kSCSICmdFieldMask60Bit -C/macro/-/kSCSICmdFieldMask61Bit -C/macro/-/kSCSICmdFieldMask62Bit -C/macro/-/kSCSICmdFieldMask63Bit -C/macro/-/kSCSICmdFieldMask6Bit -C/macro/-/kSCSICmdFieldMask6Byte -C/macro/-/kSCSICmdFieldMask7Bit -C/macro/-/kSCSICmdFieldMask7Byte -C/macro/-/kSCSICmdFieldMask8Byte -C/macro/-/kSCSICmdFieldMask9Bit -C/tag/-/kSCSIPort_NotificationStatusChange -C/econst/SCSIServiceResponse/kSCSIServiceResponse_FUNCTION_COMPLETE -C/econst/SCSIServiceResponse/kSCSIServiceResponse_FUNCTION_REJECTED -C/econst/SCSIServiceResponse/kSCSIServiceResponse_LINK_COMMAND_COMPLETE -C/econst/SCSIServiceResponse/kSCSIServiceResponse_Request_In_Process -C/econst/SCSIServiceResponse/kSCSIServiceResponse_SERVICE_DELIVERY_OR_TARGET_FAILURE -C/econst/SCSIServiceResponse/kSCSIServiceResponse_TASK_COMPLETE -C/econst/SCSITaskAttribute/kSCSITask_ACA -C/econst/SCSITaskAttribute/kSCSITask_HEAD_OF_QUEUE -C/econst/SCSITaskAttribute/kSCSITask_ORDERED -C/econst/SCSITaskAttribute/kSCSITask_SIMPLE -C/econst/SCSITaskState/kSCSITaskState_BLOCKED -C/econst/SCSITaskState/kSCSITaskState_DORMANT -C/econst/SCSITaskState/kSCSITaskState_ENABLED -C/econst/SCSITaskState/kSCSITaskState_ENDED -C/econst/SCSITaskState/kSCSITaskState_NEW_TASK -C/econst/SCSITaskStatus/kSCSITaskStatus_ACA_ACTIVE -C/econst/SCSITaskStatus/kSCSITaskStatus_BUSY -C/econst/SCSITaskStatus/kSCSITaskStatus_CHECK_CONDITION -C/econst/SCSITaskStatus/kSCSITaskStatus_CONDITION_MET -C/econst/SCSITaskStatus/kSCSITaskStatus_DeliveryFailure -C/econst/SCSITaskStatus/kSCSITaskStatus_DeviceNotPresent -C/econst/SCSITaskStatus/kSCSITaskStatus_DeviceNotResponding -C/econst/SCSITaskStatus/kSCSITaskStatus_GOOD -C/econst/SCSITaskStatus/kSCSITaskStatus_INTERMEDIATE -C/econst/SCSITaskStatus/kSCSITaskStatus_INTERMEDIATE_CONDITION_MET -C/econst/SCSITaskStatus/kSCSITaskStatus_No_Status -C/econst/SCSITaskStatus/kSCSITaskStatus_ProtocolTimeoutOccurred -C/econst/SCSITaskStatus/kSCSITaskStatus_RESERVATION_CONFLICT -C/econst/SCSITaskStatus/kSCSITaskStatus_TASK_SET_FULL -C/econst/SCSITaskStatus/kSCSITaskStatus_TaskTimeoutOccurred -C/econst/-/kSCStatusAccessError -C/econst/-/kSCStatusConnectionNoService -C/econst/-/kSCStatusFailed -C/econst/-/kSCStatusInvalidArgument -C/econst/-/kSCStatusKeyExists -C/econst/-/kSCStatusLocked -C/econst/-/kSCStatusMaxLink -C/econst/-/kSCStatusNeedLock -C/econst/-/kSCStatusNoConfigFile -C/econst/-/kSCStatusNoKey -C/econst/-/kSCStatusNoLink -C/econst/-/kSCStatusNoPrefsSession -C/econst/-/kSCStatusNoStoreServer -C/econst/-/kSCStatusNoStoreSession -C/econst/-/kSCStatusNotifierActive -C/econst/-/kSCStatusOK -C/econst/-/kSCStatusPrefsBusy -C/econst/-/kSCStatusReachabilityUnknown -C/econst/-/kSCStatusStale -C/econst/-/kSecAccountItemAttr -C/econst/-/kSecAddEvent -C/econst/-/kSecAddEventMask -C/econst/-/kSecAddressItemAttr -C/econst/-/kSecAlias -C/econst/-/kSecAppleSharePasswordItemClass -C/data/-/kSecAttrAccount -C/data/-/kSecAttrApplicationLabel -C/data/-/kSecAttrApplicationTag -C/data/-/kSecAttrAuthenticationType -C/data/-/kSecAttrAuthenticationTypeDefault -C/data/-/kSecAttrAuthenticationTypeDPA -C/data/-/kSecAttrAuthenticationTypeHTMLForm -C/data/-/kSecAttrAuthenticationTypeHTTPBasic -C/data/-/kSecAttrAuthenticationTypeHTTPDigest -C/data/-/kSecAttrAuthenticationTypeMSN -C/data/-/kSecAttrAuthenticationTypeNTLM -C/data/-/kSecAttrAuthenticationTypeRPA -C/data/-/kSecAttrCanDecrypt -C/data/-/kSecAttrCanDerive -C/data/-/kSecAttrCanEncrypt -C/data/-/kSecAttrCanSign -C/data/-/kSecAttrCanUnwrap -C/data/-/kSecAttrCanVerify -C/data/-/kSecAttrCanWrap -C/data/-/kSecAttrCertificateEncoding -C/data/-/kSecAttrCertificateType -C/data/-/kSecAttrComment -C/data/-/kSecAttrCreationDate -C/data/-/kSecAttrCreator -C/data/-/kSecAttrDescription -C/data/-/kSecAttrEffectiveKeySize -C/data/-/kSecAttrGeneric -C/data/-/kSecAttrIsInvisible -C/data/-/kSecAttrIsNegative -C/data/-/kSecAttrIsPermanent -C/data/-/kSecAttrIssuer -C/data/-/kSecAttrKeyClass -C/data/-/kSecAttrKeyClassPrivate -C/data/-/kSecAttrKeyClassPublic -C/data/-/kSecAttrKeyClassSymmetric -C/data/-/kSecAttrKeySizeInBits -C/data/-/kSecAttrKeyType -C/data/-/kSecAttrKeyTypeRSA -C/data/-/kSecAttrLabel -C/data/-/kSecAttrModificationDate -C/data/-/kSecAttrPath -C/data/-/kSecAttrPort -C/data/-/kSecAttrProtocol -C/data/-/kSecAttrProtocolAFP -C/data/-/kSecAttrProtocolAppleTalk -C/data/-/kSecAttrProtocolDAAP -C/data/-/kSecAttrProtocolEPPC -C/data/-/kSecAttrProtocolFTP -C/data/-/kSecAttrProtocolFTPAccount -C/data/-/kSecAttrProtocolFTPProxy -C/data/-/kSecAttrProtocolFTPS -C/data/-/kSecAttrProtocolHTTP -C/data/-/kSecAttrProtocolHTTPProxy -C/data/-/kSecAttrProtocolHTTPS -C/data/-/kSecAttrProtocolHTTPSProxy -C/data/-/kSecAttrProtocolIMAP -C/data/-/kSecAttrProtocolIMAPS -C/data/-/kSecAttrProtocolIPP -C/data/-/kSecAttrProtocolIRC -C/data/-/kSecAttrProtocolIRCS -C/data/-/kSecAttrProtocolLDAP -C/data/-/kSecAttrProtocolLDAPS -C/data/-/kSecAttrProtocolNNTP -C/data/-/kSecAttrProtocolNNTPS -C/data/-/kSecAttrProtocolPOP3 -C/data/-/kSecAttrProtocolPOP3S -C/data/-/kSecAttrProtocolRTSP -C/data/-/kSecAttrProtocolRTSPProxy -C/data/-/kSecAttrProtocolSMB -C/data/-/kSecAttrProtocolSMTP -C/data/-/kSecAttrProtocolSOCKS -C/data/-/kSecAttrProtocolSSH -C/data/-/kSecAttrProtocolTelnet -C/data/-/kSecAttrProtocolTelnetS -C/data/-/kSecAttrPublicKeyHash -C/data/-/kSecAttrSecurityDomain -C/data/-/kSecAttrSerialNumber -C/data/-/kSecAttrServer -C/data/-/kSecAttrService -C/data/-/kSecAttrSubject -C/data/-/kSecAttrSubjectKeyID -C/data/-/kSecAttrType -C/econst/-/kSecAuthenticationTypeAny -C/econst/-/kSecAuthenticationTypeDefault -C/econst/-/kSecAuthenticationTypeDPA -C/econst/-/kSecAuthenticationTypeHTMLForm -C/econst/-/kSecAuthenticationTypeHTTPBasic -C/econst/-/kSecAuthenticationTypeHTTPDigest -C/econst/-/kSecAuthenticationTypeItemAttr -C/econst/-/kSecAuthenticationTypeMSN -C/econst/-/kSecAuthenticationTypeNTLM -C/econst/-/kSecAuthenticationTypeRPA -C/econst/-/kSecCertEncodingItemAttr -C/econst/-/kSecCertificateEncoding -C/econst/-/kSecCertificateItemClass -C/econst/-/kSecCertificateType -C/econst/-/kSecCertTypeItemAttr -C/data/-/kSecCFErrorGuestAttributes -C/data/-/kSecCFErrorInfoPlist -C/data/-/kSecCFErrorPattern -C/data/-/kSecCFErrorRequirementSyntax -C/data/-/kSecCFErrorResourceAdded -C/data/-/kSecCFErrorResourceAltered -C/data/-/kSecCFErrorResourceMissing -C/data/-/kSecCFErrorResourceSeal -C/data/-/kSecClass -C/data/-/kSecClassInternetPassword -C/data/-/kSecCodeInfoCertificates -C/data/-/kSecCodeInfoChangedFiles -C/data/-/kSecCodeInfoCMS -C/data/-/kSecCodeInfoDesignatedRequirement -C/data/-/kSecCodeInfoEntitlements -C/data/-/kSecCodeInfoFormat -C/data/-/kSecCodeInfoIdentifier -C/data/-/kSecCodeInfoImplicitDesignatedRequirement -C/data/-/kSecCodeInfoMainExecutable -C/data/-/kSecCodeInfoPList -C/data/-/kSecCodeInfoRequirementData -C/data/-/kSecCodeInfoRequirements -C/data/-/kSecCodeInfoSource -C/data/-/kSecCodeInfoStatus -C/data/-/kSecCodeInfoTime -C/data/-/kSecCodeInfoTrust -C/data/-/kSecCodeInfoUnique -C/econst/-/kSecCodeSignatureAdhoc -C/econst/-/kSecCodeSignatureForceExpiration -C/econst/-/kSecCodeSignatureForceHard -C/econst/-/kSecCodeSignatureForceKill -C/econst/-/kSecCodeSignatureHost -C/econst/-/kSecCodeStatusHard -C/econst/-/kSecCodeStatusKill -C/econst/-/kSecCodeStatusValid -C/econst/-/kSecCommentItemAttr -C/econst/-/kSecCreationDateItemAttr -C/econst/-/kSecCreatorItemAttr -C/econst/-/kSecCredentialTypeDefault -C/econst/-/kSecCredentialTypeNoUI -C/econst/-/kSecCredentialTypeWithUI -C/econst/-/kSecCrlEncoding -C/econst/-/kSecCrlType -C/econst/-/kSecCSBasicValidateOnly -C/econst/-/kSecCSCheckAllArchitectures -C/econst/-/kSecCSConsiderExpiration -C/econst/-/kSecCSContentInformation -C/econst/-/kSecCSDedicatedHost -C/econst/-/kSecCSDefaultFlags -C/econst/-/kSecCSDoNotValidateExecutable -C/econst/-/kSecCSDoNotValidateResources -C/econst/-/kSecCSDynamicInformation -C/econst/-/kSecCSGenerateGuestHash -C/econst/-/kSecCSInternalInformation -C/econst/-/kSecCSRequirementInformation -C/econst/-/kSecCSSigningInformation -C/econst/-/kSecCustomIconItemAttr -C/econst/-/kSecDataAccessEvent -C/econst/-/kSecDataAccessEventMask -C/econst/-/kSecDefaultChangedEvent -C/econst/-/kSecDefaultChangedEventMask -C/econst/-/kSecDeleteEvent -C/econst/-/kSecDeleteEventMask -C/econst/-/kSecDescriptionItemAttr -C/econst/-/kSecDesignatedRequirementType -C/econst/-/kSecEveryEventMask -C/econst/-/kSecFormatBSAFE -C/econst/-/kSecFormatNetscapeCertSequence -C/econst/-/kSecFormatOpenSSL -C/econst/-/kSecFormatPEMSequence -C/econst/-/kSecFormatPKCS12 -C/econst/-/kSecFormatPKCS7 -C/econst/-/kSecFormatRawKey -C/econst/-/kSecFormatSSH -C/econst/-/kSecFormatSSHv2 -C/econst/-/kSecFormatUnknown -C/econst/-/kSecFormatWrappedLSH -C/econst/-/kSecFormatWrappedOpenSSL -C/econst/-/kSecFormatWrappedPKCS8 -C/econst/-/kSecFormatWrappedSSH -C/econst/-/kSecFormatX509Cert -C/econst/-/kSecGenericItemAttr -C/econst/-/kSecGenericPasswordItemClass -C/data/-/kSecGuestAttributeArchitecture -C/data/-/kSecGuestAttributeCanonical -C/data/-/kSecGuestAttributeHash -C/data/-/kSecGuestAttributeMachPort -C/data/-/kSecGuestAttributePid -C/data/-/kSecGuestAttributeSubarchitecture -C/econst/-/kSecGuestRequirementType -C/econst/-/kSecHostRequirementType -C/data/-/kSecIdentityDomainDefault -C/data/-/kSecIdentityDomainKerberosKDC -C/data/-/kSecImportItemCertChain -C/data/-/kSecImportItemIdentity -C/data/-/kSecImportItemKeyID -C/data/-/kSecImportItemLabel -C/data/-/kSecImportItemTrust -C/econst/-/kSecInternetPasswordItemClass -C/econst/-/kSecInvalidRequirementType -C/econst/-/kSecInvisibleItemAttr -C/econst/-/kSecIssuerItemAttr -C/econst/-/kSecItemPemArmour -C/econst/-/kSecItemTypeAggregate -C/econst/-/kSecItemTypeCertificate -C/econst/-/kSecItemTypePrivateKey -C/econst/-/kSecItemTypePublicKey -C/econst/-/kSecItemTypeSessionKey -C/econst/-/kSecKeyAlias -C/econst/-/kSecKeyAlwaysSensitive -C/econst/-/kSecKeyApplicationTag -C/econst/-/kSecKeychainListChangedEvent -C/econst/-/kSecKeychainListChangedMask -C/econst/-/kSecKeyDecrypt -C/econst/-/kSecKeyDerive -C/econst/-/kSecKeyEffectiveKeySize -C/econst/-/kSecKeyEncrypt -C/econst/-/kSecKeyEndDate -C/econst/-/kSecKeyExtractable -C/econst/-/kSecKeyImportOnlyOne -C/econst/-/kSecKeyKeyClass -C/econst/-/kSecKeyKeyCreator -C/econst/-/kSecKeyKeySizeInBits -C/econst/-/kSecKeyKeyType -C/econst/-/kSecKeyLabel -C/econst/-/kSecKeyModifiable -C/econst/-/kSecKeyNeverExtractable -C/econst/-/kSecKeyNoAccessControl -C/econst/-/kSecKeyPermanent -C/econst/-/kSecKeyPrintName -C/econst/-/kSecKeyPrivate -C/econst/-/kSecKeySecurePassphrase -C/econst/-/kSecKeySensitive -C/econst/-/kSecKeySign -C/econst/-/kSecKeySignRecover -C/econst/-/kSecKeyStartDate -C/econst/-/kSecKeyUnwrap -C/econst/-/kSecKeyVerify -C/econst/-/kSecKeyVerifyRecover -C/econst/-/kSecKeyWrap -C/econst/-/kSecLabelItemAttr -C/econst/-/kSecLibraryRequirementType -C/econst/-/kSecLockEvent -C/econst/-/kSecLockEventMask -C/data/-/kSecMatchCaseInsensitive -C/data/-/kSecMatchEmailAddressIfPresent -C/data/-/kSecMatchIssuers -C/data/-/kSecMatchItemList -C/data/-/kSecMatchLimit -C/data/-/kSecMatchLimitAll -C/data/-/kSecMatchLimitOne -C/data/-/kSecMatchPolicy -C/data/-/kSecMatchSearchList -C/data/-/kSecMatchSubjectContains -C/data/-/kSecMatchTrustedOnly -C/data/-/kSecMatchValidOnDate -C/econst/-/kSecModDateItemAttr -C/econst/-/kSecNegativeItemAttr -C/econst/-/kSecNoGuest -C/econst/-/kSecPaddingNone -C/econst/-/kSecPaddingPKCS1 -C/econst/-/kSecPaddingPKCS1MD2 -C/econst/-/kSecPaddingPKCS1MD5 -C/econst/-/kSecPaddingPKCS1SHA1 -C/econst/-/kSecPasswordChangedEvent -C/econst/-/kSecPasswordChangedEventMask -C/econst/-/kSecPathItemAttr -C/econst/-/kSecPortItemAttr -C/econst/-/kSecPreferencesDomainAlternate -C/econst/-/kSecPreferencesDomainCommon -C/econst/-/kSecPreferencesDomainSystem -C/econst/-/kSecPreferencesDomainUser -C/econst/-/kSecPrivateKeyItemClass -C/econst/-/kSecProtocolItemAttr -C/econst/-/kSecProtocolTypeAFP -C/econst/-/kSecProtocolTypeAny -C/econst/-/kSecProtocolTypeAppleTalk -C/econst/-/kSecProtocolTypeCIFS -C/econst/-/kSecProtocolTypeCVSpserver -C/econst/-/kSecProtocolTypeDAAP -C/econst/-/kSecProtocolTypeEPPC -C/econst/-/kSecProtocolTypeFTP -C/econst/-/kSecProtocolTypeFTPAccount -C/econst/-/kSecProtocolTypeFTPProxy -C/econst/-/kSecProtocolTypeFTPS -C/econst/-/kSecProtocolTypeHTTP -C/econst/-/kSecProtocolTypeHTTPProxy -C/econst/-/kSecProtocolTypeHTTPS -C/econst/-/kSecProtocolTypeHTTPSProxy -C/econst/-/kSecProtocolTypeIMAP -C/econst/-/kSecProtocolTypeIMAPS -C/econst/-/kSecProtocolTypeIPP -C/econst/-/kSecProtocolTypeIRC -C/econst/-/kSecProtocolTypeIRCS -C/econst/-/kSecProtocolTypeLDAP -C/econst/-/kSecProtocolTypeLDAPS -C/econst/-/kSecProtocolTypeNNTP -C/econst/-/kSecProtocolTypeNNTPS -C/econst/-/kSecProtocolTypePOP3 -C/econst/-/kSecProtocolTypePOP3S -C/econst/-/kSecProtocolTypeRTSP -C/econst/-/kSecProtocolTypeRTSPProxy -C/econst/-/kSecProtocolTypeSMB -C/econst/-/kSecProtocolTypeSMTP -C/econst/-/kSecProtocolTypeSOCKS -C/econst/-/kSecProtocolTypeSSH -C/econst/-/kSecProtocolTypeSVN -C/econst/-/kSecProtocolTypeTelnet -C/econst/-/kSecProtocolTypeTelnetS -C/econst/-/kSecPublicKeyHashItemAttr -C/econst/-/kSecPublicKeyItemClass -C/econst/-/kSecReadPermStatus -C/econst/-/kSecRequirementTypeCount -C/data/-/kSecReturnAttributes -C/data/-/kSecReturnData -C/data/-/kSecReturnPersistentRef -C/data/-/kSecReturnRef -C/econst/-/kSecScriptCodeItemAttr -C/econst/-/kSecSecurityDomainItemAttr -C/econst/-/kSecSerialNumberItemAttr -C/econst/-/kSecServerItemAttr -C/econst/-/kSecServiceItemAttr -C/econst/-/kSecSignatureItemAttr -C/econst/-/kSecSubjectItemAttr -C/econst/-/kSecSubjectKeyIdentifierItemAttr -C/econst/-/kSecSymmetricKeyItemClass -C/econst/-/kSecTrustResultConfirm -C/econst/-/kSecTrustResultDeny -C/econst/-/kSecTrustResultFatalTrustFailure -C/econst/-/kSecTrustResultInvalid -C/econst/-/kSecTrustResultOtherError -C/econst/-/kSecTrustResultProceed -C/econst/-/kSecTrustResultRecoverableTrustFailure -C/econst/-/kSecTrustResultUnspecified -C/macro/-/kSecTrustSettingsAllowedError -C/macro/-/kSecTrustSettingsApplication -C/econst/-/kSecTrustSettingsChangedEvent -C/econst/-/kSecTrustSettingsChangedEventMask -C/macro/-/kSecTrustSettingsDefaultRootCertSetting -C/econst/-/kSecTrustSettingsDomainAdmin -C/econst/-/kSecTrustSettingsDomainSystem -C/econst/-/kSecTrustSettingsDomainUser -C/macro/-/kSecTrustSettingsKeyUsage -C/econst/-/kSecTrustSettingsKeyUseAny -C/econst/-/kSecTrustSettingsKeyUseEnDecryptData -C/econst/-/kSecTrustSettingsKeyUseEnDecryptKey -C/econst/-/kSecTrustSettingsKeyUseKeyExchange -C/econst/-/kSecTrustSettingsKeyUseSignature -C/econst/-/kSecTrustSettingsKeyUseSignCert -C/econst/-/kSecTrustSettingsKeyUseSignRevocation -C/macro/-/kSecTrustSettingsPolicy -C/macro/-/kSecTrustSettingsPolicyString -C/macro/-/kSecTrustSettingsResult -C/econst/-/kSecTrustSettingsResultDeny -C/econst/-/kSecTrustSettingsResultInvalid -C/econst/-/kSecTrustSettingsResultTrustAsRoot -C/econst/-/kSecTrustSettingsResultTrustRoot -C/econst/-/kSecTrustSettingsResultUnspecified -C/econst/-/kSecTypeItemAttr -C/econst/-/kSecUnlockEvent -C/econst/-/kSecUnlockEventMask -C/econst/-/kSecUnlockStateStatus -C/econst/-/kSecUpdateEvent -C/econst/-/kSecUpdateEventMask -C/data/-/kSecUseItemList -C/data/-/kSecValueData -C/data/-/kSecValuePersistentRef -C/data/-/kSecValueRef -C/econst/-/kSecVolumeItemAttr -C/econst/-/kSecWritePermStatus -C/tag/-/kSenseDefaultSize -C/econst/-/kSequenceTrackProperty_AutomatedParameters -C/econst/-/kSequenceTrackProperty_LoopInfo -C/econst/-/kSequenceTrackProperty_MuteStatus -C/econst/-/kSequenceTrackProperty_OffsetTime -C/econst/-/kSequenceTrackProperty_SoloStatus -C/econst/-/kSequenceTrackProperty_TimeResolution -C/econst/-/kSequenceTrackProperty_TrackLength -C/econst/-/kSetFrontProcessFrontWindowOnly -C/econst/-/kShutDownNotifyMask -C/econst/-/kSKDocumentStateAddPending -C/econst/-/kSKDocumentStateDeletePending -C/econst/-/kSKDocumentStateIndexed -C/econst/-/kSKDocumentStateNotIndexed -C/data/-/kSKEndTermChars -C/econst/-/kSKIndexInverted -C/econst/-/kSKIndexInvertedVector -C/econst/-/kSKIndexUnknown -C/econst/-/kSKIndexVector -C/data/-/kSKLanguageTypes -C/data/-/kSKMaximumTerms -C/data/-/kSKMinTermLength -C/data/-/kSKProximityIndexing -C/econst/-/kSKSearchBooleanRanked -C/econst/-/kSKSearchOptionDefault -C/econst/-/kSKSearchOptionFindSimilar -C/econst/-/kSKSearchOptionNoRelevanceScores -C/econst/-/kSKSearchOptionSpaceMeansOR -C/econst/-/kSKSearchPrefixRanked -C/econst/-/kSKSearchRanked -C/econst/-/kSKSearchRequiredRanked -C/data/-/kSKStartTermChars -C/data/-/kSKStopWords -C/data/-/kSKSubstitutions -C/data/-/kSKTermChars -C/econst/-/kSmall4BitIcon -C/econst/-/kSmall4BitIconSize -C/econst/-/kSmall8BitIcon -C/econst/-/kSmall8BitIconSize -C/econst/-/kSmallIcon -C/econst/-/kSmallIconSize -C/data/-/kSMDomainSystemLaunchd -C/data/-/kSMDomainUserLaunchd -C/data/-/kSMErrorDomainFramework -C/data/-/kSMErrorDomainIPC -C/data/-/kSMErrorDomainLaunchd -C/data/-/kSMInfoKeyAuthorizedClients -C/data/-/kSMInfoKeyPrivilegedExecutables -C/econst/-/kSMPTETimeRunning -C/econst/-/kSMPTETimeType2398 -C/econst/-/kSMPTETimeType24 -C/econst/-/kSMPTETimeType25 -C/econst/-/kSMPTETimeType2997 -C/econst/-/kSMPTETimeType2997Drop -C/econst/-/kSMPTETimeType30 -C/econst/-/kSMPTETimeType30Drop -C/econst/-/kSMPTETimeType50 -C/econst/-/kSMPTETimeType5994 -C/econst/-/kSMPTETimeType5994Drop -C/econst/-/kSMPTETimeType60 -C/econst/-/kSMPTETimeType60Drop -C/econst/-/kSMPTETimeValid -C/macro/-/kSMRightBlessPrivilegedHelper -C/macro/-/kSMRightModifySystemDaemons -C/econst/-/kSOCKS5NoAcceptableMethod -C/econst/-/kSoftSynthComponentSubType -C/econst/-/kSorenson3CodecType -C/econst/-/kSpatializationAlgorithm_EqualPowerPanning -C/econst/-/kSpatializationAlgorithm_HRTF -C/econst/-/kSpatializationAlgorithm_SoundField -C/econst/-/kSpatializationAlgorithm_SphericalHead -C/econst/-/kSpatializationAlgorithm_StereoPassThrough -C/econst/-/kSpatializationAlgorithm_VectorBasedPanning -C/data/-/kSpeechCharacterModeProperty -C/data/-/kSpeechCommandDelimiterProperty -C/data/-/kSpeechCommandPrefix -C/data/-/kSpeechCommandSuffix -C/data/-/kSpeechCurrentVoiceProperty -C/data/-/kSpeechDictionaryAbbreviations -C/data/-/kSpeechDictionaryEntryPhonemes -C/data/-/kSpeechDictionaryEntrySpelling -C/data/-/kSpeechDictionaryLocaleIdentifier -C/data/-/kSpeechDictionaryModificationDate -C/data/-/kSpeechDictionaryPronunciations -C/data/-/kSpeechErrorCallbackCharacterOffset -C/data/-/kSpeechErrorCallbackSpokenString -C/data/-/kSpeechErrorCFCallBack -C/data/-/kSpeechErrorCount -C/data/-/kSpeechErrorNewest -C/data/-/kSpeechErrorNewestCharacterOffset -C/data/-/kSpeechErrorOldest -C/data/-/kSpeechErrorOldestCharacterOffset -C/data/-/kSpeechErrorsProperty -C/econst/-/kSpeechGenerateTune -C/data/-/kSpeechInputModeProperty -C/data/-/kSpeechModeLiteral -C/data/-/kSpeechModeNormal -C/data/-/kSpeechModePhoneme -C/data/-/kSpeechModeText -C/data/-/kSpeechNoEndingProsody -C/data/-/kSpeechNoSpeechInterrupt -C/data/-/kSpeechNumberModeProperty -C/data/-/kSpeechOutputToAudioDeviceProperty -C/data/-/kSpeechOutputToExtAudioFileProperty -C/data/-/kSpeechOutputToFileURLProperty -C/data/-/kSpeechPhonemeCallBack -C/data/-/kSpeechPhonemeInfoExample -C/data/-/kSpeechPhonemeInfoHiliteEnd -C/data/-/kSpeechPhonemeInfoHiliteStart -C/data/-/kSpeechPhonemeInfoOpcode -C/data/-/kSpeechPhonemeInfoSymbol -C/data/-/kSpeechPhonemeOptionsProperty -C/data/-/kSpeechPhonemeSymbolsProperty -C/data/-/kSpeechPitchBaseProperty -C/data/-/kSpeechPitchModProperty -C/data/-/kSpeechPreflightThenPause -C/data/-/kSpeechRateProperty -C/data/-/kSpeechRecentSyncProperty -C/data/-/kSpeechRefConProperty -C/econst/-/kSpeechRelativeDuration -C/econst/-/kSpeechRelativePitch -C/data/-/kSpeechResetProperty -C/econst/-/kSpeechShowSyllables -C/data/-/kSpeechSpeechDoneCallBack -C/data/-/kSpeechStatusNumberOfCharactersLeft -C/data/-/kSpeechStatusOutputBusy -C/data/-/kSpeechStatusOutputPaused -C/data/-/kSpeechStatusPhonemeCode -C/data/-/kSpeechStatusProperty -C/data/-/kSpeechSyncCallBack -C/data/-/kSpeechSynthesizerInfoIdentifier -C/data/-/kSpeechSynthesizerInfoManufacturer -C/data/-/kSpeechSynthesizerInfoProperty -C/data/-/kSpeechSynthesizerInfoVersion -C/data/-/kSpeechTextDoneCallBack -C/data/-/kSpeechVoiceCreator -C/data/-/kSpeechVoiceID -C/data/-/kSpeechVolumeProperty -C/data/-/kSpeechWordCFCallBack -C/econst/-/kSPGroup -C/econst/-/kSPOther -C/econst/-/kSPOwner -C/econst/-/kSPUser -C/econst/-/kSRAlreadyFinished -C/econst/-/kSRAlreadyListening -C/econst/-/kSRAlreadyReleased -C/econst/-/kSRAutoFinishingParam -C/econst/-/kSRBadParameter -C/econst/-/kSRBadSelector -C/econst/-/kSRBlockBackground -C/econst/-/kSRBlockModally -C/econst/-/kSRBufferTooSmall -C/econst/-/kSRCallBackParam -C/econst/-/kSRCancelOnSoundOut -C/econst/-/kSRCanned22kHzSpeechSource -C/econst/-/kSRCantAdd -C/econst/-/kSRCantGetProperty -C/econst/-/kSRCantReadLanguageObject -C/econst/-/kSRCantSetDuringRecognition -C/econst/-/kSRCantSetProperty -C/econst/-/kSRCleanupOnClientExit -C/econst/-/kSRComponentNotFound -C/econst/-/kSRDefaultRecognitionSystemID -C/econst/-/kSRDefaultSpeechSource -C/econst/-/kSREnabled -C/econst/-/kSRExpansionTooDeep -C/econst/-/kSRFeedbackAndListeningModes -C/econst/-/kSRFeedbackNotAvail -C/econst/-/kSRForegroundOnly -C/econst/-/kSRHasFeedbackHasListenModes -C/econst/-/kSRHasNoSubItems -C/econst/-/kSRIdleRecognizer -C/econst/-/kSRInternalError -C/econst/-/kSRKeyExpected -C/econst/-/kSRKeyWord -C/econst/-/kSRLanguageModelFormat -C/econst/-/kSRLanguageModelTooBig -C/econst/-/kSRLanguageModelType -C/econst/-/kSRListenKeyCombo -C/econst/-/kSRListenKeyMode -C/econst/-/kSRListenKeyName -C/econst/-/kSRLiveDesktopSpeechSource -C/econst/-/kSRLMObjType -C/econst/-/kSRModelMismatch -C/econst/-/kSRMustCancelSearch -C/econst/-/kSRNoClientLanguageModel -C/econst/-/kSRNoFeedbackHasListenModes -C/econst/-/kSRNoFeedbackNoListenModes -C/econst/-/kSRNoPendingUtterances -C/econst/-/kSRNotARecSystem -C/econst/-/kSRNotASpeechObject -C/econst/-/kSRNotAvailable -C/econst/-/kSRNotFinishedWithRejection -C/econst/-/kSRNotificationParam -C/econst/-/kSRNotifyRecognitionBeginning -C/econst/-/kSRNotifyRecognitionDone -C/econst/-/kSRNotImplementedYet -C/econst/-/kSRNotListeningState -C/econst/-/kSROptional -C/econst/-/kSROtherRecAlreadyModal -C/econst/-/kSROutOfMemory -C/econst/-/kSRParamOutOfRange -C/econst/-/kSRPathFormat -C/econst/-/kSRPathType -C/econst/-/kSRPendingSearch -C/econst/-/kSRPhraseFormat -C/econst/-/kSRPhraseType -C/econst/-/kSRReadAudioFSSpec -C/econst/-/kSRRecognitionCanceled -C/econst/-/kSRRecognitionDone -C/econst/-/kSRRefCon -C/econst/-/kSRRejectable -C/econst/-/kSRRejectedWord -C/econst/-/kSRRejectionLevel -C/econst/-/kSRRepeatable -C/econst/-/kSRSearchInProgress -C/econst/-/kSRSearchStatusParam -C/econst/-/kSRSearchWaitForAllClients -C/econst/-/kSRSndInSourceDisconnected -C/econst/-/kSRSoundInVolume -C/econst/-/kSRSpeedVsAccuracyParam -C/econst/-/kSRSpelling -C/econst/-/kSRSubItemNotFound -C/econst/-/kSRTEXTFormat -C/econst/-/kSRTooManyElements -C/econst/-/kSRUsePushToTalk -C/econst/-/kSRUseToggleListen -C/econst/-/kSrvrMsg -C/econst/-/kSrvrSig -C/econst/-/kSRWantsAutoFBGestures -C/econst/-/kSRWantsResultTextDrawn -C/econst/-/kSRWordNotFound -C/econst/-/kSRWordType -C/econst/-/kSSLAborted -C/econst/-/kSSLClientCertNone -C/econst/-/kSSLClientCertRejected -C/econst/-/kSSLClientCertRequested -C/econst/-/kSSLClientCertSent -C/econst/-/kSSLClosed -C/econst/-/kSSLConnected -C/econst/-/kSSLHandshake -C/econst/-/kSSLIdle -C/econst/-/kSSLProtocol2 -C/econst/-/kSSLProtocol3 -C/econst/-/kSSLProtocol3Only -C/econst/-/kSSLProtocolAll -C/econst/-/kSSLProtocolUnknown -C/econst/-/kStandardSourceAlias -C/macro/-/kStandardSourceAlias -C/econst/-/kStandardTargetAlias -C/macro/-/kStandardTargetAlias -C/econst/-/kSupportsACLs -C/econst/-/kSupportsBlankAccessPrivs -C/econst/-/kSupportsCatSearch -C/econst/-/kSupportsChgPwd -C/econst/-/kSupportsCopyfile -C/econst/-/kSupportsDirServices -C/econst/-/kSupportsExtAttrs -C/econst/-/kSupportsExtSleep -C/econst/-/kSupportsFileIDs -C/econst/-/kSupportsReconnect -C/econst/-/kSupportsSrvrMsg -C/econst/-/kSupportsSrvrNotify -C/econst/-/kSupportsSuperClient -C/econst/-/kSupportsTCP -C/econst/-/kSupportsTMLockSteal -C/econst/-/kSupportsUnixPrivs -C/econst/-/kSupportsUTF8Names -C/econst/-/kSupportsUTF8SrvrName -C/econst/-/kSupportsUUIDs -C/econst/-/kSystemPPDDomain -C/econst/-/kSystemProcess -C/econst/-/kSystemResFile -C/econst/-/kSystemSoundID_FlashScreen -C/econst/-/kSystemSoundID_UserPreferredAlert -C/econst/-/kTargetChildMovieMovieName -C/econst/-/kTargetChildMovieTrackIndex -C/econst/-/kTargetCurrentQTEventParams -C/econst/-/kTargetQD3DNamedObjectName -C/econst/-/kTargetSpriteID -C/econst/-/kTargetSpriteName -C/econst/-/kTargetTrackIndex -C/econst/-/kTargetTrackType -C/econst/-/kTECAddFallbackInterruptBit -C/econst/-/kTECAddForceASCIIChangesBit -C/econst/-/kTECAddTextRunHeuristicsBit -C/econst/-/kTECArrayFullErr -C/econst/-/kTECBufferBelowMinimumSizeErr -C/econst/-/kTECCorruptConverterErr -C/econst/-/kTECDirectionErr -C/econst/-/kTECFallbackTextLengthFixBit -C/econst/-/kTECGlobalsUnavailableErr -C/econst/-/kTECIncompleteElementErr -C/econst/-/kTECItemUnavailableErr -C/econst/-/kTECKeepInfoFixBit -C/econst/-/kTECMissingTableErr -C/econst/-/kTECNeedFlushStatus -C/econst/-/kTECNoConversionPathErr -C/econst/-/kTECOutputBufferFullStatus -C/econst/-/kTECPartialCharErr -C/econst/-/kTECPluginDispatchTableCurrentVersion -C/econst/-/kTECPluginDispatchTableVersion1 -C/econst/-/kTECPluginDispatchTableVersion1_1 -C/econst/-/kTECPluginDispatchTableVersion1_2 -C/econst/-/kTECPreferredEncodingFixBit -C/econst/-/kTECTableChecksumErr -C/econst/-/kTECTableFormatErr -C/econst/-/kTECTextRunBitClearFixBit -C/econst/-/kTECTextToUnicodeScanFixBit -C/econst/-/kTECUnmappableElementErr -C/econst/-/kTECUsedFallbacksStatus -C/econst/-/kTextEditState -C/econst/-/kTextEncodingBaseName -C/econst/-/kTextEncodingBig5 -C/econst/-/kTextEncodingBig5_HKSCS_1999 -C/econst/-/kTextEncodingCNS_11643_92_P1 -C/econst/-/kTextEncodingCNS_11643_92_P2 -C/econst/-/kTextEncodingCNS_11643_92_P3 -C/econst/-/kTextEncodingDefaultFormat -C/econst/-/kTextEncodingDefaultVariant -C/econst/-/kTextEncodingDOSArabic -C/econst/-/kTextEncodingDOSBalticRim -C/econst/-/kTextEncodingDOSCanadianFrench -C/econst/-/kTextEncodingDOSChineseSimplif -C/econst/-/kTextEncodingDOSChineseTrad -C/econst/-/kTextEncodingDOSCyrillic -C/econst/-/kTextEncodingDOSGreek -C/econst/-/kTextEncodingDOSGreek1 -C/econst/-/kTextEncodingDOSGreek2 -C/econst/-/kTextEncodingDOSHebrew -C/econst/-/kTextEncodingDOSIcelandic -C/econst/-/kTextEncodingDOSJapanese -C/econst/-/kTextEncodingDOSKorean -C/econst/-/kTextEncodingDOSLatin1 -C/econst/-/kTextEncodingDOSLatin2 -C/econst/-/kTextEncodingDOSLatinUS -C/econst/-/kTextEncodingDOSNordic -C/econst/-/kTextEncodingDOSPortuguese -C/econst/-/kTextEncodingDOSRussian -C/econst/-/kTextEncodingDOSThai -C/econst/-/kTextEncodingDOSTurkish -C/econst/-/kTextEncodingEBCDIC_CP037 -C/econst/-/kTextEncodingEBCDIC_US -C/econst/-/kTextEncodingEUC_CN -C/econst/-/kTextEncodingEUC_JP -C/econst/-/kTextEncodingEUC_KR -C/econst/-/kTextEncodingEUC_TW -C/econst/-/kTextEncodingFormatName -C/econst/-/kTextEncodingFullName -C/econst/-/kTextEncodingGB_18030_2000 -C/econst/-/kTextEncodingGB_2312_80 -C/econst/-/kTextEncodingGBK_95 -C/econst/-/kTextEncodingHZ_GB_2312 -C/econst/-/kTextEncodingISO10646_1993 -C/econst/-/kTextEncodingISO_2022_CN -C/econst/-/kTextEncodingISO_2022_CN_EXT -C/econst/-/kTextEncodingISO_2022_JP -C/econst/-/kTextEncodingISO_2022_JP_1 -C/econst/-/kTextEncodingISO_2022_JP_2 -C/econst/-/kTextEncodingISO_2022_JP_3 -C/econst/-/kTextEncodingISO_2022_KR -C/econst/-/kTextEncodingISOLatin1 -C/econst/-/kTextEncodingISOLatin2 -C/econst/-/kTextEncodingISOLatin3 -C/econst/-/kTextEncodingISOLatin4 -C/econst/-/kTextEncodingISOLatin5 -C/econst/-/kTextEncodingISOLatin6 -C/econst/-/kTextEncodingISOLatin7 -C/econst/-/kTextEncodingISOLatin8 -C/econst/-/kTextEncodingISOLatin9 -C/econst/-/kTextEncodingISOLatinArabic -C/econst/-/kTextEncodingISOLatinCyrillic -C/econst/-/kTextEncodingISOLatinGreek -C/econst/-/kTextEncodingISOLatinHebrew -C/econst/-/kTextEncodingJIS_C6226_78 -C/econst/-/kTextEncodingJIS_X0201_76 -C/econst/-/kTextEncodingJIS_X0208_83 -C/econst/-/kTextEncodingJIS_X0208_90 -C/econst/-/kTextEncodingJIS_X0212_90 -C/econst/-/kTextEncodingKOI8_R -C/econst/-/kTextEncodingKSC_5601_87 -C/econst/-/kTextEncodingKSC_5601_92_Johab -C/econst/-/kTextEncodingMacArabic -C/econst/-/kTextEncodingMacArmenian -C/econst/-/kTextEncodingMacBengali -C/econst/-/kTextEncodingMacBurmese -C/econst/-/kTextEncodingMacCeltic -C/econst/-/kTextEncodingMacCentralEurRoman -C/econst/-/kTextEncodingMacChineseSimp -C/econst/-/kTextEncodingMacChineseTrad -C/econst/-/kTextEncodingMacCroatian -C/econst/-/kTextEncodingMacCyrillic -C/econst/-/kTextEncodingMacDevanagari -C/econst/-/kTextEncodingMacDingbats -C/econst/-/kTextEncodingMacEthiopic -C/econst/-/kTextEncodingMacExtArabic -C/econst/-/kTextEncodingMacFarsi -C/econst/-/kTextEncodingMacGaelic -C/econst/-/kTextEncodingMacGeorgian -C/econst/-/kTextEncodingMacGreek -C/econst/-/kTextEncodingMacGujarati -C/econst/-/kTextEncodingMacGurmukhi -C/econst/-/kTextEncodingMacHebrew -C/econst/-/kTextEncodingMacHFS -C/econst/-/kTextEncodingMacIcelandic -C/econst/-/kTextEncodingMacInuit -C/econst/-/kTextEncodingMacJapanese -C/econst/-/kTextEncodingMacKannada -C/econst/-/kTextEncodingMacKeyboardGlyphs -C/econst/-/kTextEncodingMacKhmer -C/econst/-/kTextEncodingMacKorean -C/econst/-/kTextEncodingMacLaotian -C/econst/-/kTextEncodingMacMalayalam -C/econst/-/kTextEncodingMacMongolian -C/econst/-/kTextEncodingMacOriya -C/econst/-/kTextEncodingMacRoman -C/econst/-/kTextEncodingMacRomanian -C/econst/-/kTextEncodingMacRomanLatin1 -C/econst/-/kTextEncodingMacSinhalese -C/econst/-/kTextEncodingMacSymbol -C/econst/-/kTextEncodingMacTamil -C/econst/-/kTextEncodingMacTelugu -C/econst/-/kTextEncodingMacThai -C/econst/-/kTextEncodingMacTibetan -C/econst/-/kTextEncodingMacTurkish -C/econst/-/kTextEncodingMacUkrainian -C/econst/-/kTextEncodingMacUnicode -C/econst/-/kTextEncodingMacVietnamese -C/econst/-/kTextEncodingMacVT100 -C/econst/-/kTextEncodingMultiRun -C/econst/-/kTextEncodingShiftJIS -C/econst/-/kTextEncodingShiftJIS_X0213_00 -C/econst/-/kTextEncodingUnicodeDefault -C/econst/-/kTextEncodingUnicodeV1_1 -C/econst/-/kTextEncodingUnicodeV2_0 -C/econst/-/kTextEncodingUnicodeV2_1 -C/econst/-/kTextEncodingUnicodeV3_0 -C/econst/-/kTextEncodingUnicodeV3_1 -C/econst/-/kTextEncodingUnicodeV3_2 -C/econst/-/kTextEncodingUnknown -C/econst/-/kTextEncodingUS_ASCII -C/econst/-/kTextEncodingVariantName -C/econst/-/kTextEncodingWindowsANSI -C/econst/-/kTextEncodingWindowsArabic -C/econst/-/kTextEncodingWindowsBalticRim -C/econst/-/kTextEncodingWindowsCyrillic -C/econst/-/kTextEncodingWindowsGreek -C/econst/-/kTextEncodingWindowsHebrew -C/econst/-/kTextEncodingWindowsKoreanJohab -C/econst/-/kTextEncodingWindowsLatin1 -C/econst/-/kTextEncodingWindowsLatin2 -C/econst/-/kTextEncodingWindowsLatin5 -C/econst/-/kTextEncodingWindowsVietnamese -C/econst/-/kTextHyperTextColor -C/econst/-/kTextHyperTextFace -C/econst/-/kTextKeyEntry -C/econst/-/kTextLanguageDontCare -C/econst/-/kTextLength -C/econst/-/kTextMalformedInputErr -C/econst/-/kTextMouseDown -C/econst/-/kTextRegionDontCare -C/econst/-/kTextRelativeScroll -C/econst/-/kTextScriptDontCare -C/econst/-/kTextScroll -C/econst/-/kTextSelection -C/econst/-/kTextTextBox -C/econst/-/kTextToSpeechSynthType -C/econst/-/kTextToSpeechVoiceBundleType -C/econst/-/kTextToSpeechVoiceFileType -C/econst/-/kTextToSpeechVoiceType -C/econst/-/kTextUndefinedElementErr -C/econst/-/kTextUnsupportedEncodingErr -C/econst/-/kTimePitchParam_EffectBlend -C/econst/-/kTimePitchParam_Pitch -C/econst/-/kTimePitchParam_Rate -C/econst/-/kTISCategoryInkInputSource -C/econst/-/kTISCategoryKeyboardInputSource -C/econst/-/kTISCategoryPaletteInputSource -C/econst/-/kTISNotifyEnabledKeyboardInputSourcesChanged -C/econst/-/kTISNotifySelectedKeyboardInputSourceChanged -C/econst/-/kTISPropertyBundleID -C/econst/-/kTISPropertyIconImageURL -C/econst/-/kTISPropertyIconRef -C/econst/-/kTISPropertyInputModeID -C/econst/-/kTISPropertyInputSourceCategory -C/econst/-/kTISPropertyInputSourceID -C/econst/-/kTISPropertyInputSourceIsASCIICapable -C/econst/-/kTISPropertyInputSourceIsEnableCapable -C/econst/-/kTISPropertyInputSourceIsEnabled -C/econst/-/kTISPropertyInputSourceIsSelectCapable -C/econst/-/kTISPropertyInputSourceIsSelected -C/econst/-/kTISPropertyInputSourceLanguages -C/econst/-/kTISPropertyInputSourceType -C/econst/-/kTISPropertyLocalizedName -C/econst/-/kTISPropertyUnicodeKeyLayoutData -C/econst/-/kTISTypeCharacterPalette -C/econst/-/kTISTypeInk -C/econst/-/kTISTypeKeyboardInputMethodModeEnabled -C/econst/-/kTISTypeKeyboardInputMethodWithoutModes -C/econst/-/kTISTypeKeyboardInputMode -C/econst/-/kTISTypeKeyboardLayout -C/econst/-/kTISTypeKeyboardViewer -C/econst/-/kTLSProtocol1 -C/econst/-/kTLSProtocol1Only -C/econst/-/kTryAuthenticate -C/econst/-/kTwoWayEncryptPassword -C/econst/-/kTwoWayRandNumUAMStr -C/econst/-/kUAZoomFocusTypeInsertionPoint -C/econst/-/kUAZoomFocusTypeOther -C/tag/-/kUAZoomFocusTypeOther -C/econst/-/kUCBidiCatArabicNumber -C/econst/-/kUCBidiCatBlockSeparator -C/econst/-/kUCBidiCatBoundaryNeutral -C/econst/-/kUCBidiCatCommonNumberSeparator -C/econst/-/kUCBidiCatEuroNumber -C/econst/-/kUCBidiCatEuroNumberSeparator -C/econst/-/kUCBidiCatEuroNumberTerminator -C/econst/-/kUCBidiCatLeftRight -C/econst/-/kUCBidiCatLeftRightEmbedding -C/econst/-/kUCBidiCatLeftRightOverride -C/econst/-/kUCBidiCatNonSpacingMark -C/econst/-/kUCBidiCatNotApplicable -C/econst/-/kUCBidiCatOtherNeutral -C/econst/-/kUCBidiCatPopDirectionalFormat -C/econst/-/kUCBidiCatRightLeft -C/econst/-/kUCBidiCatRightLeftArabic -C/econst/-/kUCBidiCatRightLeftEmbedding -C/econst/-/kUCBidiCatRightLeftOverride -C/econst/-/kUCBidiCatSegmentSeparator -C/econst/-/kUCBidiCatWhitespace -C/econst/-/kUCCharPropTypeBidiCategory -C/econst/-/kUCCharPropTypeCombiningClass -C/econst/-/kUCCharPropTypeGenlCategory -C/econst/-/kUCCollateCaseInsensitiveMask -C/econst/-/kUCCollateComposeInsensitiveMask -C/econst/-/kUCCollateDiacritInsensitiveMask -C/econst/-/kUCCollateDigitsAsNumberMask -C/econst/-/kUCCollateDigitsOverrideMask -C/econst/-/kUCCollatePunctuationSignificantMask -C/econst/-/kUCCollateStandardOptions -C/econst/-/kUCCollateTypeHFSExtended -C/econst/-/kUCCollateTypeMask -C/econst/-/kUCCollateTypeShiftBits -C/econst/-/kUCCollateTypeSourceMask -C/econst/-/kUCCollateWidthInsensitiveMask -C/econst/-/kUCGenlCatLetterLowercase -C/econst/-/kUCGenlCatLetterModifier -C/econst/-/kUCGenlCatLetterOther -C/econst/-/kUCGenlCatLetterTitlecase -C/econst/-/kUCGenlCatLetterUppercase -C/econst/-/kUCGenlCatMarkEnclosing -C/econst/-/kUCGenlCatMarkNonSpacing -C/econst/-/kUCGenlCatMarkSpacingCombining -C/econst/-/kUCGenlCatNumberDecimalDigit -C/econst/-/kUCGenlCatNumberLetter -C/econst/-/kUCGenlCatNumberOther -C/econst/-/kUCGenlCatOtherControl -C/econst/-/kUCGenlCatOtherFormat -C/econst/-/kUCGenlCatOtherNotAssigned -C/econst/-/kUCGenlCatOtherPrivateUse -C/econst/-/kUCGenlCatOtherSurrogate -C/econst/-/kUCGenlCatPunctClose -C/econst/-/kUCGenlCatPunctConnector -C/econst/-/kUCGenlCatPunctDash -C/econst/-/kUCGenlCatPunctFinalQuote -C/econst/-/kUCGenlCatPunctInitialQuote -C/econst/-/kUCGenlCatPunctOpen -C/econst/-/kUCGenlCatPunctOther -C/econst/-/kUCGenlCatSeparatorLine -C/econst/-/kUCGenlCatSeparatorParagraph -C/econst/-/kUCGenlCatSeparatorSpace -C/econst/-/kUCGenlCatSymbolCurrency -C/econst/-/kUCGenlCatSymbolMath -C/econst/-/kUCGenlCatSymbolModifier -C/econst/-/kUCGenlCatSymbolOther -C/econst/-/kUCKeyActionAutoKey -C/econst/-/kUCKeyActionDisplay -C/econst/-/kUCKeyActionDown -C/econst/-/kUCKeyActionUp -C/econst/-/kUCKeyLayoutFeatureInfoFormat -C/econst/-/kUCKeyLayoutHeaderFormat -C/econst/-/kUCKeyModifiersToTableNumFormat -C/econst/-/kUCKeyOutputGetIndexMask -C/econst/-/kUCKeyOutputSequenceIndexMask -C/econst/-/kUCKeyOutputStateIndexMask -C/econst/-/kUCKeyOutputTestForIndexMask -C/econst/-/kUCKeySequenceDataIndexFormat -C/econst/-/kUCKeyStateEntryRangeFormat -C/econst/-/kUCKeyStateEntryTerminalFormat -C/econst/-/kUCKeyStateRecordsIndexFormat -C/econst/-/kUCKeyStateTerminatorsFormat -C/econst/-/kUCKeyToCharTableIndexFormat -C/econst/-/kUCKeyTranslateNoDeadKeysBit -C/econst/-/kUCKeyTranslateNoDeadKeysMask -C/econst/-/kUCTextBreakCharMask -C/econst/-/kUCTextBreakClusterMask -C/econst/-/kUCTextBreakGoBackwardsMask -C/econst/-/kUCTextBreakIterateMask -C/econst/-/kUCTextBreakLeadingEdgeMask -C/econst/-/kUCTextBreakLineMask -C/econst/-/kUCTextBreakWordMask -C/econst/-/kUIModeAllHidden -C/econst/-/kUIModeAllSuppressed -C/econst/-/kUIModeContentHidden -C/econst/-/kUIModeContentSuppressed -C/econst/-/kUIModeNormal -C/econst/-/kUIOptionAutoShowMenuBar -C/econst/-/kUIOptionDisableAppleMenu -C/econst/-/kUIOptionDisableForceQuit -C/econst/-/kUIOptionDisableHide -C/econst/-/kUIOptionDisableProcessSwitch -C/econst/-/kUIOptionDisableSessionTerminate -C/econst/-/kUnicode16BitFormat -C/econst/-/kUnicode32BitFormat -C/econst/-/kUnicodeByteOrderMark -C/econst/-/kUnicodeCanonicalCompVariant -C/econst/-/kUnicodeCanonicalDecompVariant -C/econst/-/kUnicodeCollationClass -C/econst/-/kUnicodeDefaultDirection -C/econst/-/kUnicodeDefaultDirectionMask -C/econst/-/kUnicodeDirectionalityBits -C/econst/-/kUnicodeDirectionalityMask -C/econst/-/kUnicodeFallbackCustomFirst -C/econst/-/kUnicodeFallbackCustomOnly -C/econst/-/kUnicodeFallbackDefaultFirst -C/econst/-/kUnicodeFallbackDefaultOnly -C/econst/-/kUnicodeFallbackInterruptSafeMask -C/econst/-/kUnicodeFallbackSequencingMask -C/econst/-/kUnicodeForceASCIIRangeBit -C/econst/-/kUnicodeForceASCIIRangeMask -C/econst/-/kUnicodeHFSPlusCompVariant -C/econst/-/kUnicodeHFSPlusDecompVariant -C/econst/-/kUnicodeKeepInfoBit -C/econst/-/kUnicodeKeepInfoMask -C/econst/-/kUnicodeKeepSameEncodingBit -C/econst/-/kUnicodeKeepSameEncodingMask -C/econst/-/kUnicodeLeftToRight -C/econst/-/kUnicodeLeftToRightMask -C/econst/-/kUnicodeLooseMappingsBit -C/econst/-/kUnicodeLooseMappingsMask -C/econst/-/kUnicodeMapLineFeedToReturnBit -C/econst/-/kUnicodeMapLineFeedToReturnMask -C/econst/-/kUnicodeMatchOtherBaseBit -C/econst/-/kUnicodeMatchOtherBaseMask -C/econst/-/kUnicodeMatchOtherFormatBit -C/econst/-/kUnicodeMatchOtherFormatMask -C/econst/-/kUnicodeMatchOtherVariantBit -C/econst/-/kUnicodeMatchOtherVariantMask -C/econst/-/kUnicodeMatchUnicodeBaseBit -C/econst/-/kUnicodeMatchUnicodeBaseMask -C/econst/-/kUnicodeMatchUnicodeFormatBit -C/econst/-/kUnicodeMatchUnicodeFormatMask -C/econst/-/kUnicodeMatchUnicodeVariantBit -C/econst/-/kUnicodeMatchUnicodeVariantMask -C/econst/-/kUnicodeMaxDecomposedVariant -C/econst/-/kUnicodeNoComposedVariant -C/econst/-/kUnicodeNoHalfwidthCharsBit -C/econst/-/kUnicodeNoHalfwidthCharsMask -C/econst/-/kUnicodeNoSubset -C/econst/-/kUnicodeNotAChar -C/econst/-/kUnicodeObjectReplacement -C/econst/-/kUnicodeReplacementChar -C/econst/-/kUnicodeRightToLeft -C/econst/-/kUnicodeRightToLeftMask -C/econst/-/kUnicodeStringUnterminatedBit -C/econst/-/kUnicodeStringUnterminatedMask -C/econst/-/kUnicodeSwappedByteOrderMark -C/econst/-/kUnicodeTextBreakClass -C/econst/-/kUnicodeTextRunBit -C/econst/-/kUnicodeTextRunHeuristicsBit -C/econst/-/kUnicodeTextRunHeuristicsMask -C/econst/-/kUnicodeTextRunMask -C/econst/-/kUnicodeUseFallbacksBit -C/econst/-/kUnicodeUseFallbacksMask -C/econst/-/kUnicodeUseHFSPlusMapping -C/econst/-/kUnicodeUseLatestMapping -C/econst/-/kUnicodeUTF7Format -C/econst/-/kUnicodeUTF8Format -C/econst/-/kUnicodeVerticalFormBit -C/econst/-/kUnicodeVerticalFormMask -C/econst/-/kUninitialized -C/econst/-/kUnknownState -C/macro/-/kUSB1284DeviceID -C/macro/-/kUSBAlternateSetting -C/macro/-/kUSBConfigurationValue -C/macro/-/kUSBDeviceClass -C/macro/-/kUSBDeviceMaxPacketSize -C/macro/-/kUSBDeviceNumConfigs -C/macro/-/kUSBDevicePropertySpeed -C/macro/-/kUSBDeviceProtocol -C/macro/-/kUSBDeviceReleaseNumber -C/econst/USBDeviceSpeed/kUSBDeviceSpeedFull -C/econst/USBDeviceSpeed/kUSBDeviceSpeedHigh -C/econst/USBDeviceSpeed/kUSBDeviceSpeedLow -C/macro/-/kUSBDeviceSubClass -C/econst/MicrosecondsInFrame/kUSBFullSpeedMicrosecondsInFrame -C/econst/MicrosecondsInFrame/kUSBHighSpeedMicrosecondsInFrame -C/macro/-/kUSBInterfaceClass -C/macro/-/kUSBInterfaceNumber -C/macro/-/kUSBInterfaceProtocol -C/macro/-/kUSBInterfaceStringIndex -C/macro/-/kUSBInterfaceSubClass -C/macro/-/kUSBManufacturerStringIndex -C/tag/-/kUSBMaxIsocFrameReqCount -C/macro/-/kUSBNumEndpoints -C/macro/-/kUSBProductID -C/macro/-/kUSBProductName -C/macro/-/kUSBProductString -C/macro/-/kUSBProductStringIndex -C/macro/-/kUSBSerialNumberString -C/macro/-/kUSBSerialNumberStringIndex -C/macro/-/kUSBVendorID -C/macro/-/kUSBVendorName -C/macro/-/kUSBVendorString -C/econst/-/kUseAtoB -C/econst/-/kUseBtoA -C/econst/-/kUseBtoB -C/econst/-/kUseProfileIntent -C/econst/-/kUserIDToName -C/econst/-/kUserIDToUTF8Name -C/econst/-/kUserIsOwner -C/econst/-/kUserPPDDomain -C/econst/-/kUserPreferredAlert -C/econst/-/kUserUUIDToUTF8Name -C/econst/-/kUseWidePositioning -C/data/-/kUTExportedTypeDeclarationsKey -C/econst/-/kUTF8NameToGroupID -C/econst/-/kUTF8NameToGroupUUID -C/econst/-/kUTF8NameToUserID -C/econst/-/kUTF8NameToUserUUID -C/econst/-/kUTF8SrvrMsg -C/data/-/kUTImportedTypeDeclarationsKey -C/data/-/kUTTagClassFilenameExtension -C/data/-/kUTTagClassMIMEType -C/data/-/kUTTagClassNSPboardType -C/data/-/kUTTagClassOSType -C/data/-/kUTTypeAliasFile -C/data/-/kUTTypeAliasRecord -C/data/-/kUTTypeAppleICNS -C/data/-/kUTTypeAppleProtectedMPEG4Audio -C/data/-/kUTTypeApplication -C/data/-/kUTTypeApplicationBundle -C/data/-/kUTTypeApplicationFile -C/data/-/kUTTypeArchive -C/data/-/kUTTypeAudio -C/data/-/kUTTypeAudiovisualContent -C/data/-/kUTTypeBMP -C/data/-/kUTTypeBundle -C/data/-/kUTTypeCHeader -C/data/-/kUTTypeCompositeContent -C/data/-/kUTTypeConformsToKey -C/data/-/kUTTypeContact -C/data/-/kUTTypeContent -C/data/-/kUTTypeCPlusPlusHeader -C/data/-/kUTTypeCPlusPlusSource -C/data/-/kUTTypeCSource -C/data/-/kUTTypeData -C/data/-/kUTTypeDescriptionKey -C/data/-/kUTTypeDirectory -C/data/-/kUTTypeDiskImage -C/data/-/kUTTypeFileURL -C/data/-/kUTTypeFlatRTFD -C/data/-/kUTTypeFolder -C/data/-/kUTTypeFramework -C/data/-/kUTTypeGIF -C/data/-/kUTTypeHTML -C/data/-/kUTTypeICO -C/data/-/kUTTypeIconFileKey -C/data/-/kUTTypeIdentifierKey -C/data/-/kUTTypeImage -C/data/-/kUTTypeInkText -C/data/-/kUTTypeItem -C/data/-/kUTTypeJavaSource -C/data/-/kUTTypeJPEG -C/data/-/kUTTypeJPEG2000 -C/data/-/kUTTypeMessage -C/data/-/kUTTypeMountPoint -C/data/-/kUTTypeMovie -C/data/-/kUTTypeMP3 -C/data/-/kUTTypeMPEG -C/data/-/kUTTypeMPEG4 -C/data/-/kUTTypeMPEG4Audio -C/data/-/kUTTypeObjectiveCPlusPlusSource -C/data/-/kUTTypeObjectiveCSource -C/data/-/kUTTypePackage -C/data/-/kUTTypePDF -C/data/-/kUTTypePICT -C/data/-/kUTTypePlainText -C/data/-/kUTTypePNG -C/data/-/kUTTypeQuickTimeImage -C/data/-/kUTTypeQuickTimeMovie -C/data/-/kUTTypeReferenceURLKey -C/data/-/kUTTypeResolvable -C/data/-/kUTTypeRTF -C/data/-/kUTTypeRTFD -C/data/-/kUTTypeSourceCode -C/data/-/kUTTypeSymLink -C/data/-/kUTTypeTagSpecificationKey -C/data/-/kUTTypeText -C/data/-/kUTTypeTIFF -C/data/-/kUTTypeTXNTextAndMultimediaData -C/data/-/kUTTypeURL -C/data/-/kUTTypeUTF16ExternalPlainText -C/data/-/kUTTypeUTF16PlainText -C/data/-/kUTTypeUTF8PlainText -C/data/-/kUTTypeVCard -C/data/-/kUTTypeVersionKey -C/data/-/kUTTypeVideo -C/data/-/kUTTypeVolume -C/data/-/kUTTypeWebArchive -C/data/-/kUTTypeXML -C/econst/-/kVCBFlagsHardwareGoneBit -C/econst/-/kVCBFlagsHardwareGoneMask -C/econst/-/kVCBFlagsHFSPlusAPIsBit -C/econst/-/kVCBFlagsHFSPlusAPIsMask -C/econst/-/kVCBFlagsIdleFlushBit -C/econst/-/kVCBFlagsIdleFlushMask -C/econst/-/kVCBFlagsVolumeDirtyBit -C/econst/-/kVCBFlagsVolumeDirtyMask -C/econst/-/kvImage_PNG_FILTER_VALUE_AVG -C/econst/-/kvImage_PNG_FILTER_VALUE_NONE -C/econst/-/kvImage_PNG_FILTER_VALUE_PAETH -C/econst/-/kvImage_PNG_FILTER_VALUE_SUB -C/econst/-/kvImage_PNG_FILTER_VALUE_UP -C/econst/-/kvImageBackgroundColorFill -C/econst/-/kvImageBufferSizeMismatch -C/econst/-/kvImageCopyInPlace -C/econst/-/kvImageDoNotTile -C/econst/-/kvImageEdgeExtend -C/econst/-/kvImageGamma_11_over_5_half_precision -C/econst/-/kvImageGamma_11_over_9_half_precision -C/econst/-/kvImageGamma_5_over_11_half_precision -C/econst/-/kvImageGamma_5_over_9_half_precision -C/econst/-/kvImageGamma_9_over_11_half_precision -C/econst/-/kvImageGamma_9_over_5_half_precision -C/econst/-/kvImageGamma_BT709_forward_half_precision -C/econst/-/kvImageGamma_BT709_reverse_half_precision -C/econst/-/kvImageGamma_sRGB_forward_half_precision -C/econst/-/kvImageGamma_sRGB_reverse_half_precision -C/econst/-/kvImageGamma_UseGammaValue -C/econst/-/kvImageGamma_UseGammaValue_half_precision -C/econst/-/kvImageGetTempBufferSize -C/econst/-/kvImageHighQualityResampling -C/econst/-/kvImageInvalidKernelSize -C/econst/-/kvImageInvalidOffset_X -C/econst/-/kvImageInvalidOffset_Y -C/econst/-/kvImageInvalidParameter -C/econst/-/kvImageLeaveAlphaUnchanged -C/econst/-/kvImageMemoryAllocationError -C/econst/-/kvImageNoEdgeStyleSpecified -C/econst/-/kvImageNoError -C/econst/-/kvImageNoFlags -C/econst/-/kvImageNullPointerArgument -C/econst/-/kvImageRoiLargerThanInputBuffer -C/econst/-/kvImageTruncateKernel -C/econst/-/kvImageUnknownFlagsBit -C/econst/-/kWidePosOffsetBit -C/econst/-/kWPGroup -C/econst/-/kWPOther -C/econst/-/kWPOwner -C/econst/-/kWPUser -C/data/-/kWSDebugIncomingBody -C/data/-/kWSDebugIncomingHeaders -C/data/-/kWSDebugOutgoingBody -C/data/-/kWSDebugOutgoingHeaders -C/data/-/kWSFaultCode -C/data/-/kWSFaultExtra -C/data/-/kWSFaultString -C/data/-/kWSHTTPExtraHeaders -C/data/-/kWSHTTPFollowsRedirects -C/data/-/kWSHTTPMessage -C/data/-/kWSHTTPProxy -C/data/-/kWSHTTPResponseMessage -C/data/-/kWSHTTPVersion -C/data/-/kWSMethodInvocationResult -C/data/-/kWSMethodInvocationResultParameterName -C/data/-/kWSNetworkStreamFaultString -C/data/-/kWSRecordNamespaceURI -C/data/-/kWSRecordParameterOrder -C/data/-/kWSRecordType -C/data/-/kWSSOAP1999Protocol -C/data/-/kWSSOAP2001Protocol -C/data/-/kWSSOAPMessageHeaders -C/data/-/kWSStreamErrorDomain -C/data/-/kWSStreamErrorError -C/data/-/kWSStreamErrorMessage -C/data/-/kWSXMLRPCProtocol -C/econst/-/kXAttrCreate -C/econst/-/kXAttrNoFollow -C/econst/-/kXAttrReplace -C/func/-/l64a -Objective-C/instm/IBInspector/label -Objective-C/instm/IBPlugin/label -Objective-C/instm/NSToolbarItem/label -Objective-C/instm/NSNibConnector/label -Objective-C/instm/PDFPage/label -Objective-C/instm/PDFOutline/label -Objective-C/instm/NSTabViewItem/label -Objective-C/binding/NSTabViewItem/label -JavaScript/data/DataGridColumn/label -JavaScript/data/HTMLDataGridColElement/label -JavaScript/data/HTMLOptionElement/label -JavaScript/data/HTMLOptGroupElement/label -JavaScript/data/HTMLDataGridCellElement/label -Objective-C/instm/ABMultiValue/labelAtIndex: -Objective-C/instm/PDFThumbnailView/labelFont -Objective-C/clm/NSFont/labelFontOfSize: -Objective-C/clm/NSFont/labelFontSize -Objective-C/instm/ABMultiValue/labelForIdentifier: -Objective-C/instm/NSSegmentedControl/labelForSegment: -Objective-C/instm/NSSegmentedCell/labelForSegment: -C/func/-/labs -JavaScript/data/HTMLElement/lang -C/econst/-/langIrishGaelic -C/econst/-/langIrishGaelicScript -C/econst/-/langSimpChinese -C/econst/-/langTradChinese -Objective-C/instm/NSSpellChecker/language -Objective-C/instm/DRCDTextBlock(PropertyConvenienceMethods)/language -JavaScript/data/Navigator/language -Objective-C/instm/NSPrinter/languageLevel -Objective-C/instm/NSOrthography/languageMap -Objective-C/instp/NSOrthography/languageMap -Objective-C/instm/NSOrthography/languagesForScript: -JavaScript/data/SVGPathSegArcAbs/largeArcFlag -JavaScript/data/SVGPathSegArcRel/largeArcFlag -Objective-C/instm/NSObject/lastAnchorForEntityName: -JavaScript/data/svg/lastChild -JavaScript/data/core/lastChild -JavaScript/instm/TreeWalker/lastChild -Objective-C/instm/NSBrowser/lastColumn -Objective-C/instm/NSDocument/lastComponentOfFileName -C/econst/-/lastDskErr -JavaScript/data/Element/lastElementChild -JavaScript/instp/Channel/lastError -Objective-C/instm/ISyncSessionDriver/lastError -Objective-C/instp/PSFeed/lastError -Objective-C/instm/SFAuthorizationPluginView/lastError -JavaScript/data/MessageEvent/lastEventId -Objective-C/instm/NSIndexSet/lastIndex -Objective-C/instm/NSPopUpButton/lastItem -Objective-C/instm/NSPopUpButtonCell/lastItem -Objective-C/instm/NSPreferencePane/lastKeyView -Objective-C/instm/SFAuthorizationPluginView/lastKeyView -C/func/-/LastKnownRequestProcessed -JavaScript/data/Document/lastModified -Objective-C/instm/NSArray/lastObject -Objective-C/instm/NSString/lastPathComponent -Objective-C/instm/NSURL/lastPathComponent -Objective-C/instm/ISyncClient/lastSyncDateForEntityName: -Objective-C/instm/ISyncClient/lastSyncStatusForEntityName: -Objective-C/intfm/ApertureExportPlugIn/lastView -Objective-C/instm/NSBrowser/lastVisibleColumn -Objective-C/instm/WebHistoryItem/lastVisitedTimeInterval -JavaScript/instm/Console/lastWMLErrorMessage -Objective-C/instm/NSDate/laterDate: -JavaScript/data/Coordinates/latitude -Objective-C/instm/NSTask/launch -C/econst/-/launchAllow24Bit -C/func/-/LaunchApplication -Objective-C/instm/NSWorkspace/launchApplication: -Objective-C/instm/NSWorkspace/launchApplication:showIcon:autolaunch: -Objective-C/instm/NSWorkspace/launchApplicationAtURL:options:configuration:error: -Objective-C/instm/NSWorkspace/launchAppWithBundleIdentifier:options:additionalEventParamDescriptor:launchIdentifier: -C/econst/-/launchContinue -Objective-C/instm/NSRunningApplication/launchDate -Objective-C/instp/NSRunningApplication/launchDate -C/econst/-/launchDontSwitch -Objective-C/instm/NSWorkspace/launchedApplications -Objective-C/clm/NSTask/launchedTaskWithLaunchPath:arguments: -Objective-C/instm/SBApplication/launchFlags -C/tdef/-/LaunchFlags -C/econst/-/launchInhibitDaemon -C/econst/-/launchNoFileFlags -C/tdef/-/LaunchParamBlockRec -Objective-C/instm/NSTask/launchPath -C/econst/-/launchUseMinimum -Objective-C/instp/CARenderer/layer -Objective-C/instm/CARenderer/layer -C/func/-/Layer -Objective-C/instm/NSView/layer -Objective-C/clm/CALayer/layer -Objective-C/instm/NSView/layerContentsPlacement -Objective-C/instm/NSView/layerContentsRedrawPolicy -Objective-C/instm/IKImageBrowserCell/layerForType: -Objective-C/intfm/Fx3DAPI/layerMatrixAtTime: -Objective-C/clm/QTMovieLayer/layerWithMovie: -Objective-C/clm/QTCaptureLayer/layerWithSession: -JavaScript/data/UIEvent/layerX -JavaScript/data/UIEvent/layerY -Objective-C/instm/NSAlert/layout -Objective-C/intfm/WebDocumentView/layout -Objective-C/instm/NSTextTable/layoutAlgorithm -Objective-C/instm/NSTypesetter/layoutCharactersInRange:forLayoutManager:maximumNumberOfLineFragments: -Objective-C/instm/PDFView/layoutDocumentView -Objective-C/clm/DRBurn(ImageContentCreation)/layoutForImageFile: -Objective-C/instm/NSTypesetter/layoutGlyphsInLayoutManager:startingAtGlyphIndex:maxNumberOfLineFragments:nextGlyphIndex: -Objective-C/instm/CALayer/layoutIfNeeded -Objective-C/instm/NSTextContainer/layoutManager -Objective-C/clm/CAConstraintLayoutManager/layoutManager -Objective-C/instm/NSATSTypesetter/layoutManager -Objective-C/instm/NSTypesetter/layoutManager -Objective-C/instm/NSTextView/layoutManager -Objective-C/instp/CALayer/layoutManager -Objective-C/instm/CALayer/layoutManager -Objective-C/intfm/NSLayoutManagerDelegate/layoutManager:didCompleteLayoutForTextContainer:atEnd: -Objective-C/intfm/NSLayoutManagerDelegate/layoutManager:shouldUseTemporaryAttributes:forDrawingToScreen:atCharacterIndex:effectiveRange: -Objective-C/intfm/NSLayoutManagerDelegate/layoutManagerDidInvalidateLayout: -Objective-C/instm/NSLayoutManager/layoutManagerOwnsFirstResponderInWindow: -Objective-C/instm/NSTextStorage/layoutManagers -Objective-C/intfm/NSGlyphStorage/layoutOptions -Objective-C/instm/NSLayoutManager/layoutOptions -Objective-C/instm/NSATSTypesetter/layoutParagraphAtPoint: -Objective-C/instm/NSTypesetter/layoutParagraphAtPoint: -Objective-C/instm/NSLayoutManager/layoutRectForTextBlock:atIndex:effectiveRange: -Objective-C/instm/NSLayoutManager/layoutRectForTextBlock:glyphRange: -Objective-C/instm/CALayer/layoutSublayers -Objective-C/instm/NSObject/layoutSublayersOfLayer: -C/func/-/lber-decode -C/func/-/lber-encode -C/func/-/lber-memory -C/func/-/lber-sockbuf -C/func/-/lber-types -C/tag/-/lc_str -C/func/-/lchflags -C/func/-/lchmod -C/func/-/lchown -C/func/-/lck_mtx_lock -C/func/-/lck_mtx_try_lock -C/func/-/lck_mtx_unlock -C/func/-/lcong48 -C/func/-/ld_errno -C/func/-/ldap -C/func/-/ldap_abandon -C/func/-/ldap_abandon_ext -C/func/-/ldap_add -C/func/-/ldap_add_ext -C/func/-/ldap_add_ext_s -C/func/-/ldap_add_s -C/func/-/ldap_attributetype2name -C/func/-/ldap_attributetype2str -C/func/-/ldap_attributetype_free -C/func/-/ldap_bind -C/func/-/ldap_bind_s -C/func/-/ldap_compare -C/func/-/ldap_compare_ext -C/func/-/ldap_compare_ext_s -C/func/-/ldap_compare_s -C/func/-/ldap_control_create -C/func/-/ldap_control_dup -C/func/-/ldap_control_find -C/func/-/ldap_control_free -C/func/-/ldap_controls -C/func/-/ldap_controls_dup -C/func/-/ldap_controls_free -C/func/-/ldap_count_entries -C/func/-/ldap_count_messages -C/func/-/ldap_count_references -C/func/-/ldap_count_values -C/func/-/ldap_count_values_len -C/func/-/ldap_delete -C/func/-/ldap_delete_ext -C/func/-/ldap_delete_ext_s -C/func/-/ldap_delete_s -C/func/-/ldap_dn2ufn -C/func/-/ldap_err2string -C/func/-/ldap_errlist -C/func/-/ldap_error -C/func/-/ldap_explode_dn -C/func/-/ldap_explode_rdn -C/func/-/ldap_extended_operation -C/func/-/ldap_extended_operation_s -C/func/-/ldap_first_attribute -C/func/-/ldap_first_entry -C/func/-/ldap_first_message -C/func/-/ldap_first_reference -C/func/-/ldap_free_urldesc -C/func/-/ldap_get_dn -C/func/-/ldap_get_option -C/func/-/ldap_get_values -C/func/-/ldap_get_values_len -C/func/-/ldap_init -C/func/-/ldap_init_fd -C/func/-/ldap_initialize -C/func/-/ldap_install_tls -C/func/-/ldap_is_ldap_url -C/func/-/ldap_matchingrule2name -C/func/-/ldap_matchingrule2str -C/func/-/ldap_matchingrule_free -C/func/-/ldap_memalloc -C/func/-/ldap_memcalloc -C/func/-/ldap_memfree -C/func/-/ldap_memory -C/func/-/ldap_memrealloc -C/func/-/ldap_memvfree -C/func/-/ldap_modify -C/func/-/ldap_modify_ext -C/func/-/ldap_modify_ext_s -C/func/-/ldap_modify_s -C/func/-/ldap_modrdn -C/func/-/ldap_modrdn2 -C/func/-/ldap_modrdn2_s -C/func/-/ldap_modrdn_s -C/func/-/ldap_mods_free -C/func/-/ldap_next_attribute -C/func/-/ldap_next_entry -C/func/-/ldap_next_message -C/func/-/ldap_next_reference -C/func/-/ldap_objectclass2name -C/func/-/ldap_objectclass2str -C/func/-/ldap_objectclass_free -C/func/-/ldap_open -C/func/-/ldap_parse_reference -C/func/-/ldap_parse_result -C/func/-/ldap_parse_sasl_bind_result -C/func/-/ldap_parse_sort_control -C/func/-/ldap_parse_vlv_control -C/func/-/ldap_perror -C/func/-/ldap_rename -C/func/-/ldap_rename_s -C/func/-/ldap_result -C/func/-/ldap_result2error -C/func/-/ldap_sasl_bind -C/func/-/ldap_sasl_bind_s -C/func/-/ldap_sasl_interactive_bind_s -C/func/-/ldap_schema -C/func/-/ldap_scherr2str -C/func/-/ldap_search -C/func/-/ldap_search_ext -C/func/-/ldap_search_ext_s -C/func/-/ldap_search_s -C/func/-/ldap_search_st -C/func/-/ldap_set_option -C/func/-/ldap_set_rebind_proc -C/func/-/ldap_simple_bind -C/func/-/ldap_simple_bind_s -C/func/-/ldap_sort -C/func/-/ldap_sort_entries -C/func/-/ldap_sort_strcasecmp -C/func/-/ldap_sort_values -C/func/-/ldap_start_tls -C/func/-/ldap_start_tls_s -C/func/-/ldap_str2attributetype -C/func/-/ldap_str2dn -C/func/-/ldap_str2matchingrule -C/func/-/ldap_str2objectclass -C/func/-/ldap_str2syntax -C/func/-/ldap_strdup -C/func/-/ldap_sync -C/func/-/ldap_sync_destroy -C/func/-/ldap_sync_init -C/func/-/ldap_sync_init_refresh_and_persist -C/func/-/ldap_sync_init_refresh_only -C/func/-/ldap_sync_initialize -C/func/-/ldap_sync_poll -C/func/-/ldap_syntax2name -C/func/-/ldap_syntax2str -C/func/-/ldap_syntax_free -C/func/-/ldap_tls -C/func/-/ldap_tls_inplace -C/func/-/ldap_unbind -C/func/-/ldap_unbind_ext -C/func/-/ldap_unbind_ext_s -C/func/-/ldap_unbind_s -C/func/-/ldap_url -C/func/-/ldap_url_parse -C/func/-/ldap_value_free -C/func/-/ldap_value_free_len -C/func/-/ldexp -C/func/-/ldexpf -C/func/-/ldexpl -C/func/-/ldiv -Objective-C/instm/NSFont/leading -Objective-C/instm/NSDrawer/leadingOffset -Objective-C/instm/NSTreeController/leafKeyPath -Objective-C/instm/NSTreeController/leafKeyPathForNode: -Objective-C/instm/NSSpellChecker/learnWord: -C/func/-/leaveok -JavaScript/data/ClientRect/left -JavaScript/data/Rect/left -Objective-C/instm/NSExpression/leftExpression -Objective-C/instm/NSComparisonPredicate/leftExpression -Objective-C/instm/NSPredicateEditorRowTemplate/leftExpressions -Objective-C/instm/NSPrintInfo/leftMargin -C/func/-/legacy_coding -Objective-C/instm/NSStatusItem/length -Objective-C/intfm/IMKTextInput/length -Objective-C/instm/NSIndexPath/length -Objective-C/instm/DRTrack(PropertyConvenience)/length -Objective-C/instp/PSEnclosure/length -Objective-C/instm/IOBluetoothSDPUUID/length -Objective-C/instm/NSString/length -Objective-C/instm/NSAttributedString/length -Objective-C/instm/NSData/length -JavaScript/data/CharacterData/length -JavaScript/data/DOMWindow/length -JavaScript/data/CSSStyleDeclaration/length -JavaScript/data/CanvasNumberArray/length -JavaScript/data/CSSRuleList/length -JavaScript/data/CSSValueList/length -JavaScript/data/ArrayBufferView/length -JavaScript/data/ClientRectList/length -JavaScript/data/CanvasPixelArray/length -JavaScript/data/DataGridColumnList/length -JavaScript/data/CSSVariablesDeclaration/length -JavaScript/data/HTMLCollection/length -JavaScript/data/window/length -JavaScript/data/HTMLSelectElement/length -JavaScript/data/HTMLOptionsCollection/length -JavaScript/data/FileList/length -JavaScript/data/HTMLAllCollection/length -JavaScript/data/HTMLFormElement/length -JavaScript/data/MimeTypeArray/length -JavaScript/data/SVGElementInstanceList/length -JavaScript/data/PluginArray/length -JavaScript/data/StyleSheetList/length -JavaScript/data/NodeList/length -JavaScript/data/MediaList/length -JavaScript/data/SQLResultSetRowList/length -JavaScript/data/Storage/length -JavaScript/data/NamedNodeMap/length -JavaScript/data/Plugin/length -JavaScript/data/TimeRanges/length -JavaScript/data/TouchList/length -JavaScript/data/SVGTextContentElement/lengthAdjust -JavaScript/clconst/SVGTextContentElement/LENGTHADJUST_SPACING -JavaScript/clconst/SVGTextContentElement/LENGTHADJUST_SPACINGANDGLYPHS -JavaScript/clconst/SVGTextContentElement/LENGTHADJUST_UNKNOWN -JavaScript/data/ProgressEvent/lengthComputable -Objective-C/instm/QTSampleBuffer/lengthForAllSamples -Objective-C/instm/NSString/lengthOfBytesUsingEncoding: -JavaScript/clconst/WebGLRenderingContext/LEQUAL -JavaScript/clconst/WebGLRenderingContext/LESS -Objective-C/clm/NSCharacterSet/letterCharacterSet -Objective-C/instm/NSDirectoryEnumerator/level -Objective-C/instm/NSXMLNode/level -Objective-C/instm/NSWindow/level -Objective-C/instm/NSOutlineView/levelForItem: -Objective-C/instm/NSOutlineView/levelForRow: -Objective-C/instm/NSLevelIndicatorCell/levelIndicatorStyle -Objective-C/instp/CATiledLayer/levelsOfDetail -Objective-C/instm/CATiledLayer/levelsOfDetail -Objective-C/instm/CATiledLayer/levelsOfDetailBias -Objective-C/instp/CATiledLayer/levelsOfDetailBias -Objective-C/instm/NSUndoManager/levelsOfUndo -C/func/-/lfind -C/func/-/lgamma -C/func/-/lgamma_r -C/func/-/lgammaf -C/func/-/lgammaf_r -C/func/-/lgammal -C/func/-/lgammal_r -C/func/-/lh_delete -C/func/-/lh_doall -C/func/-/lh_doall_arg -C/func/-/lh_error -C/func/-/lh_free -C/func/-/lh_insert -C/func/-/lh_new -C/func/-/lh_node_stats -C/func/-/lh_node_stats_bio -C/func/-/lh_node_usage_stats -C/func/-/lh_node_usage_stats_bio -C/func/-/lh_retrieve -C/func/-/lh_stats -C/func/-/lh_stats_bio -C/func/-/lhash -C/func/-/libbsm -C/func/-/libcurl -C/func/-/libcurl-easy -C/func/-/libcurl-errors -C/func/-/libcurl-multi -C/func/-/libcurl-share -C/func/-/libcurl-tutorial -C/func/-/libexslt -C/macro/-/LIBEXSLT_DOTTED_VERSION -C/macro/-/LIBEXSLT_VERSION -C/macro/-/LIBEXSLT_VERSION_EXTRA -C/macro/-/LIBEXSLT_VERSION_STRING -C/func/-/libgmalloc -C/func/-/libpng -C/func/-/libpngpf -Objective-C/instm/IBPlugin/libraryNibNames -C/func/-/libxml -C/macro/-/LIBXML_DOTTED_VERSION -C/macro/-/LIBXML_TEST_VERSION -C/macro/-/LIBXML_VERSION -C/macro/-/LIBXML_VERSION_EXTRA -C/macro/-/LIBXML_VERSION_STRING -C/func/-/libXp -C/func/-/libxslt -C/macro/-/LIBXSLT_DOTTED_VERSION -C/macro/-/LIBXSLT_VERSION -C/macro/-/LIBXSLT_VERSION_EXTRA -C/macro/-/LIBXSLT_VERSION_STRING -Objective-C/instm/CAEmitterLayer/lifetime -Objective-C/instp/CAEmitterCell/lifetime -Objective-C/instm/CAEmitterCell/lifetime -Objective-C/instp/CAEmitterLayer/lifetime -Objective-C/instm/CAEmitterCell/lifetimeRange -Objective-C/instp/CAEmitterCell/lifetimeRange -Objective-C/clm/NSColor/lightGrayColor -Objective-C/instm/NSRunLoop/limitDateForMode: -JavaScript/data/SVGFESpotLightElement/limitingConeAngle -C++/instm/TestFailure/line -JavaScript/data/JavaScriptCallFrame/line -JavaScript/clconst/WebGLRenderingContext/LINE_LOOP -JavaScript/clconst/WebGLRenderingContext/LINE_STRIP -JavaScript/clconst/WebGLRenderingContext/LINE_WIDTH -JavaScript/clconst/WebGLRenderingContext/LINEAR -JavaScript/clconst/WebGLRenderingContext/LINEAR_MIPMAP_LINEAR -JavaScript/clconst/WebGLRenderingContext/LINEAR_MIPMAP_NEAREST -Objective-C/instm/DOMNode/lineBoxRects -Objective-C/instm/NSAttributedString/lineBreakBeforeIndex:withinRange: -Objective-C/instm/NSAttributedString/lineBreakByHyphenatingBeforeIndex:withinRange: -Objective-C/instm/NSParagraphStyle/lineBreakMode -Objective-C/instm/NSCell/lineBreakMode -Objective-C/instp/CAShapeLayer/lineCap -Objective-C/instm/CAShapeLayer/lineCap -JavaScript/data/CanvasRenderingContext2D/lineCap -Objective-C/instm/NSBezierPath/lineCapStyle -Objective-C/instm/CAShapeLayer/lineDashPattern -Objective-C/instp/CAShapeLayer/lineDashPattern -Objective-C/instp/CAShapeLayer/lineDashPhase -Objective-C/instm/CAShapeLayer/lineDashPhase -Objective-C/clm/NSLocale/lineDirectionForLanguage: -Objective-C/instm/NSTextContainer/lineFragmentPadding -Objective-C/instm/NSATSTypesetter/lineFragmentPadding -Objective-C/instm/NSTypesetter/lineFragmentPadding -Objective-C/instm/NSLayoutManager/lineFragmentRectForGlyphAtIndex:effectiveRange: -Objective-C/instm/NSLayoutManager/lineFragmentRectForGlyphAtIndex:effectiveRange:withoutAdditionalLayout: -Objective-C/instm/NSATSTypesetter/lineFragmentRectForProposedRect:remainingRect: -Objective-C/instm/NSTextContainer/lineFragmentRectForProposedRect:sweepDirection:movementDirection:remainingRect: -Objective-C/instm/NSLayoutManager/lineFragmentUsedRectForGlyphAtIndex:effectiveRange: -Objective-C/instm/NSLayoutManager/lineFragmentUsedRectForGlyphAtIndex:effectiveRange:withoutAdditionalLayout: -Objective-C/instm/NSParagraphStyle/lineHeightMultiple -Objective-C/instm/CAShapeLayer/lineJoin -Objective-C/instp/CAShapeLayer/lineJoin -JavaScript/data/CanvasRenderingContext2D/lineJoin -Objective-C/instm/NSBezierPath/lineJoinStyle -JavaScript/data/ErrorEvent/lineno -Objective-C/instm/NSXMLParser/lineNumber -JavaScript/data/ScriptProfileNode/lineNumber -Objective-C/instm/NSString/lineRangeForRange: -JavaScript/clconst/WebGLRenderingContext/LINES -Objective-C/instm/NSScrollView/lineScroll -Objective-C/instm/NSParagraphStyle/lineSpacing -Objective-C/instm/NSATSTypesetter/lineSpacingAfterGlyphAtIndex:withProposedLineFragmentRect: -Objective-C/instm/NSTypesetter/lineSpacingAfterGlyphAtIndex:withProposedLineFragmentRect: -JavaScript/instm/CanvasRenderingContext2D/lineTo -Objective-C/instm/NSBezierPath/lineToPoint: -Objective-C/instm/PDFBorder/lineWidth -Objective-C/instm/NSBezierPath/lineWidth -Objective-C/instm/CAShapeLayer/lineWidth -Objective-C/instp/CAShapeLayer/lineWidth -JavaScript/data/CanvasRenderingContext2D/lineWidth -JavaScript/instm/WebGLRenderingContext/lineWidth -C/func/-/link -JavaScript/data/HTMLBodyElement/link -C/func/-/link_addr -C/func/-/link_fieldtype -C/func/-/link_ntoa -JavaScript/clconst/WebGLRenderingContext/LINK_STATUS -C/func/-/linkaddr -Objective-C/clm/NSTextCheckingResult/linkCheckingResultWithRange:URL: -JavaScript/data/HTMLDocument/linkColor -Objective-C/instm/NSFileManager/linkItemAtPath:toPath:error: -Objective-C/instm/NSFileManager/linkItemAtURL:toURL:error: -Objective-C/instp/PSLink/linkKind -Objective-C/instm/NSFileManager/linkPath:toPath:handler: -JavaScript/instm/WebGLRenderingContext/linkProgram -Objective-C/instp/PSFeed/links -JavaScript/data/Document/links -Objective-C/clm/PSLink/linksInXML:baseURL: -Objective-C/instm/NSTextView/linkTextAttributes -JavaScript/data/HTMLInputElement/list -C/func/-/LIST_EMPTY -C/func/-/LIST_ENTRY -C/func/-/LIST_FIRST -C/func/-/LIST_FOREACH -C/func/-/LIST_FOREACH_SAFE -C/func/-/LIST_HEAD -C/func/-/LIST_HEAD_INITIALIZER -C/func/-/LIST_INIT -C/func/-/LIST_INSERT_AFTER -C/func/-/LIST_INSERT_BEFORE -C/func/-/LIST_INSERT_HEAD -C/func/-/LIST_NEXT -C/func/-/LIST_REMOVE -Objective-C/clm/NSAppleEventDescriptor/listDescriptor -C/func/-/listen -Objective-C/instm/NSSpeechRecognizer/listensInForegroundOnly -Objective-C/instm/NSTextList/listOptions -JavaScript/data/Counter/listStyle -C/func/-/listxattr -C++/macro/-/littleOutputSegment -C/tdef/-/LittleSInt16 -C/tdef/-/LittleSInt32 -C/tdef/-/LittleSInt64 -C/tdef/-/LittleUInt16 -C/tdef/-/LittleUInt32 -C/tdef/-/LittleUInt64 -C/func/-/llabs -C/func/-/lldiv -C/func/-/llrint -C/func/-/llrintf -C/func/-/llrintl -C/func/-/llround -C/func/-/llroundf -C/func/-/llroundl -Objective-C/clm/NSObject/load -Objective-C/instm/NSBundle/load -JavaScript/instm/HTMLMediaElement/load -Objective-C/intfm/CIPlugInRegistration/load: -Objective-C/instm/NSAtomicStore/load: -C/tag/-/load_command -Objective-C/clm/CIPlugIn/loadAllPlugIns -Objective-C/instm/WebFrame/loadAlternateHTMLString:baseURL:forUnreachableURL: -Objective-C/instm/NSBundle/loadAndReturnError: -Objective-C/instm/WebFrame/loadArchive: -Objective-C/instm/NSBrowser/loadColumnZero -Objective-C/instm/QCView/loadComposition: -Objective-C/instm/QCView/loadCompositionFromFile: -Objective-C/instm/WebFrame/loadData:MIMEType:textEncodingName:baseURL: -Objective-C/instm/NSDocument/loadDataRepresentation:ofType: -JavaScript/instm/InspectorFrontendHost/loaded -JavaScript/data/ProgressEvent/loaded -Objective-C/instm/NSBrowser/loadedCellAtRow:column: -Objective-C/instm/QCView/loadedComposition -Objective-C/instm/NSDocument/loadFileWrapperRepresentation:ofType: -Objective-C/instm/WebHistory/loadFromURL:error: -Objective-C/instm/WebFrame/loadHTMLString:baseURL: -Objective-C/instm/NSURLHandle/loadInBackground -Objective-C/instm/NSURLHandle/loadInForeground -JavaScript/clconst/FileReader/LOADING -JavaScript/clconst/IDBRequest/LOADING -JavaScript/clconst/XMLHttpRequest/LOADING -Objective-C/instm/NSPreferencePane/loadMainView -Objective-C/instm/NSPersistentStore/loadMetadata: -Objective-C/instm/NSBundle/loadNibFile:externalNameTable:withZone: -Objective-C/clm/NSBundle/loadNibFile:externalNameTable:withZone: -Objective-C/clm/NSBundle/loadNibNamed:owner: -Objective-C/clm/CIPlugIn/loadNonExecutablePlugIns -Objective-C/clm/CIPlugIn/loadPlugIn:allowNonExecutable: -Objective-C/clm/QCPlugIn/loadPlugInAtPath: -Objective-C/instm/WebFrame/loadRequest: -C/func/-/LoadResource -Objective-C/instm/NSURL/loadResourceDataNotifyingClient:usingCache: -Objective-C/instm/WebPreferences/loadsImagesAutomatically -Objective-C/instm/NSScriptSuiteRegistry/loadSuitesFromBundle: -Objective-C/instm/NSScriptSuiteRegistry/loadSuiteWithDictionary:fromBundle: -Objective-C/instm/NSViewController/loadView -Objective-C/instm/NSWindowController/loadWindow -JavaScript/clconst/JavaScriptCallFrame/LOCAL_SCOPE -Objective-C/instp/PSEntry/localDateCreated -Objective-C/instp/PSEntry/localDateUpdated -Objective-C/instp/PSFeed/localDateUpdated -Objective-C/instm/NSDatePicker/locale -Objective-C/instm/NSDateFormatter/locale -Objective-C/instm/NSDatePickerCell/locale -Objective-C/instm/NSCalendar/locale -Objective-C/instm/NSScanner/locale -Objective-C/instm/NSNumberFormatter/locale -C/func/-/localeconv -C/func/-/localeconv_l -Objective-C/instm/NSLocale/localeIdentifier -Objective-C/clm/NSLocale/localeIdentifierFromComponents: -Objective-C/clm/NSLocale/localeIdentifierFromWindowsLocaleCode: -Objective-C/clm/CBIdentityAuthority/localIdentityAuthority -Objective-C/instm/NSManagedObjectModel/localizationDictionary -Objective-C/instm/NSBundle/localizations -Objective-C/instm/NSString/localizedCaseInsensitiveCompare: -Objective-C/instm/NSColor/localizedCatalogNameComponent -Objective-C/instm/NSColor/localizedColorNameComponent -Objective-C/instm/NSString/localizedCompare: -Objective-C/instm/QTCompressionOptions/localizedCompressionOptionsSummary -Objective-C/instm/NSError/localizedDescription -Objective-C/clm/CIFilter/localizedDescriptionForFilterName: -Objective-C/instm/NSWorkspace/localizedDescriptionForType: -Objective-C/instm/QTCaptureDevice/localizedDisplayName -Objective-C/instm/QTCompressionOptions/localizedDisplayName -Objective-C/instm/NSError/localizedFailureReason -Objective-C/instm/QTFormatDescription/localizedFormatSummary -Objective-C/instm/NSBundle/localizedInfoDictionary -Objective-C/instm/NSObject/localizedKey -Objective-C/instm/NSDictionaryController/localizedKeyDictionary -Objective-C/binding/NSDictionaryController/localizedKeyDictionary -Objective-C/instm/NSDictionaryController/localizedKeyTable -Objective-C/instm/CBIdentityAuthority/localizedName -Objective-C/instm/NSColorSpace/localizedName -Objective-C/instm/IMService/localizedName -Objective-C/instp/NSRunningApplication/localizedName -Objective-C/instm/NSRunningApplication/localizedName -Objective-C/instm/NSHost/localizedName -Objective-C/instm/NSTimeZone/localizedName:locale: -Objective-C/clm/CIFilter/localizedNameForCategory: -Objective-C/instm/NSFontManager/localizedNameForFamily:face: -Objective-C/clm/CIFilter/localizedNameForFilterName: -Objective-C/clm/NSTextInputContext/localizedNameForInputSource: -Objective-C/clm/NSBitmapImageRep/localizedNameForTIFFCompressionType: -Objective-C/clm/NSString/localizedNameOfStringEncoding: -Objective-C/instm/NSPrintInfo/localizedPaperName -Objective-C/instm/NSError/localizedRecoveryOptions -Objective-C/instm/NSError/localizedRecoverySuggestion -Objective-C/clm/CIFilter/localizedReferenceDocumentationForFilterName: -Objective-C/clm/NSScanner/localizedScannerWithString: -Objective-C/instm/IMService/localizedShortName -Objective-C/instm/NSString/localizedStandardCompare: -Objective-C/instm/NSBundle/localizedStringForKey:value:table: -Objective-C/clm/NSHTTPURLResponse/localizedStringForStatusCode: -Objective-C/clm/NSDateFormatter/localizedStringFromDate:dateStyle:timeStyle: -Objective-C/clm/NSNumberFormatter/localizedStringFromNumber:numberStyle: -JavaScript/instm/InspectorFrontendHost/localizedStringsURL -Objective-C/clm/NSString/localizedStringWithFormat: -Objective-C/intfm/NSPrintPanelAccessorizing/localizedSummaryItems -Objective-C/intfm/NSUserInterfaceItemSearching/localizedTitlesForItem: -Objective-C/instm/NSNumberFormatter/localizesFormat -Objective-C/instm/NSXMLNode/localName -JavaScript/data/core/localName -Objective-C/clm/NSXMLNode/localNameForName: -Objective-C/instm/NSConnection/localObjects -JavaScript/data/DOMWindow/localStorage -C/func/-/localtime -C/func/-/localtime_r -Objective-C/clm/NSTimeZone/localTimeZone -Objective-C/instm/NSTextTab/location -Objective-C/instm/CalEvent/location -Objective-C/instp/CalEvent/location -Objective-C/instp/CLLocationManager/location -Objective-C/instm/CLLocationManager/location -JavaScript/data/Document/location -JavaScript/data/DOMWindow/location -JavaScript/data/HTMLFrameElement/location -JavaScript/data/WorkerContext/location -JavaScript/data/DOMWindow/locationbar -Objective-C/instm/NSLayoutManager/locationForGlyphAtIndex: -Objective-C/instm/NSMenuView/locationForSubmenu: -Objective-C/instm/NSMenu/locationForSubmenu: -Objective-C/instm/NSEvent/locationInWindow -Objective-C/intfm/CLLocationManagerDelegate/locationManager:didFailWithError: -Objective-C/intfm/CLLocationManagerDelegate/locationManager:didUpdateToLocation:fromLocation: -Objective-C/instm/NSView/locationOfPrintRect: -Objective-C/instm/CAGradientLayer/locations -Objective-C/instp/CAGradientLayer/locations -Objective-C/instm/CLLocationManager/locationServicesEnabled -Objective-C/clm/CLLocationManager/locationServicesEnabled -Objective-C/instp/CLLocationManager/locationServicesEnabled -Objective-C/intfm/NSLocking/lock -Objective-C/instm/NSPersistentStoreCoordinator/lock -C++/instm/IONetworkInterface/lock -Objective-C/clm/CATransaction/lock -C++/clm/IOKernelDebugger/lock -Objective-C/instm/NSManagedObjectContext/lock -Objective-C/instm/NSConditionLock/lockBeforeDate: -Objective-C/instm/NSRecursiveLock/lockBeforeDate: -Objective-C/instm/NSLock/lockBeforeDate: -Objective-C/intfm/QCPlugInInputImageSource/lockBufferRepresentationWithPixelFormat:colorSpace:forBounds: -Objective-C/instm/NSDistributedLock/lockDate -C++/instm/IOPacketQueue/lockDequeue -C++/instm/IOPacketQueue/lockDequeueAll -C++/instm/IOPacketQueue/lockEnqueue -C++/instm/IOPacketQueue/lockEnqueueWithDrop -C/func/-/lockf -C++/instm/IOPacketQueue/lockFlush -Objective-C/instm/NSImage/lockFocus -Objective-C/instm/NSView/lockFocus -Objective-C/instm/NSImage/lockFocusFlipped: -Objective-C/instm/NSView/lockFocusIfCanDraw -Objective-C/instm/NSView/lockFocusIfCanDrawInContext: -Objective-C/instm/NSImage/lockFocusOnRepresentation: -C++/instm/IOService/lockForArbitration -C++/instm/IOBlockStorageDriver/lockMedia -C++/instm/IOPacketQueue/lockPrepend -Objective-C/intfm/ApertureExportPlugIn/lockProgress -Objective-C/intfm/QCPlugInInputImageSource/lockTextureRepresentationWithColorSpace:forBounds: -Objective-C/instm/NSConditionLock/lockWhenCondition: -Objective-C/instm/NSConditionLock/lockWhenCondition:beforeDate: -Objective-C/clm/NSDistributedLock/lockWithPath: -JavaScript/instm/Application/log -C/func/-/log -JavaScript/instm/Console/log -C/func/-/log10 -C/func/-/log10f -C/func/-/log10l -C/func/-/log1p -C/func/-/log1pf -C/func/-/log1pl -C/func/-/log2 -C/func/-/log2f -C/func/-/log2l -C/func/-/logb -C/func/-/logbf -C/func/-/logbl -C/func/-/logf -C++/instm/IOSCSIProtocolInterface/LogicalUnitReset -Objective-C/instp/PSFeed/login -C/func/-/login -C/func/-/login_tty -C++/instm/IOFireWireSerialBusProtocolTransport/LoginCompletion -C/func/-/logl -Objective-C/intfm/QCPlugInContext/logMessage: -Objective-C/instp/PSFeed/logoURL -C/func/-/logout -C++/instm/IOFireWireSerialBusProtocolTransport/LogoutCompletion -C/func/-/logwtmp -Objective-C/instm/NSCharacterSet/longCharacterIsMember: -JavaScript/data/HTMLImageElement/longDesc -JavaScript/data/HTMLIFrameElement/longDesc -JavaScript/data/HTMLFrameElement/longDesc -Objective-C/instm/NSDateFormatter/longEraSymbols -JavaScript/data/Coordinates/longitude -C/func/-/longjmp -C/func/-/longjmperr -C/func/-/longjmperror -C/tdef/-/LongLBAModeParameterBlockDescriptor -JavaScript/data/TestObj/longLongAttr -Objective-C/instm/NSNumber/longLongValue -Objective-C/instm/NSString/longLongValue -C/func/-/longname -Objective-C/instm/NSNumber/longValue -JavaScript/instm/core/lookupNamespaceURI -JavaScript/instm/XPathNSResolver/lookupNamespaceURI -JavaScript/instm/core/lookupPrefix -JavaScript/data/HTMLMediaElement/loop -C++/data/IOWorkLoop/loopRestart -Objective-C/instm/NSSound/loops -Objective-C/instm/NSTextView/loosenKerning: -Objective-C/instm/NSString/lossyCString -JavaScript/data/HTMLMeterElement/low -JavaScript/clconst/WebGLRenderingContext/LOW_FLOAT -JavaScript/clconst/WebGLRenderingContext/LOW_INT -Objective-C/instm/NSTextView/lowerBaseline: -Objective-C/clm/NSCharacterSet/lowercaseLetterCharacterSet -Objective-C/instm/NSString/lowercaseString -Objective-C/instm/NSResponder/lowercaseWord: -JavaScript/data/HTMLImageElement/lowsrc -C/func/-/lrand48 -C/func/-/lrint -C/func/-/lrintf -C/func/-/lrintl -C/func/-/lround -C/func/-/lroundf -C/func/-/lroundl -C/tdef/-/LSAcceptanceFlags -C/tdef/-/LSApplicationParameters -C/func/-/LSCanRefAcceptItem -C/func/-/LSCanURLAcceptURL -C/func/-/LSCopyAllHandlersForURLScheme -C/func/-/LSCopyAllRoleHandlersForContentType -C/func/-/LSCopyApplicationForMIMEType -C/func/-/LSCopyApplicationURLsForURL -C/func/-/LSCopyDefaultHandlerForURLScheme -C/func/-/LSCopyDefaultRoleHandlerForContentType -C/func/-/LSCopyDisplayNameForRef -C/func/-/LSCopyDisplayNameForURL -C/func/-/LSCopyItemAttribute -C/func/-/LSCopyItemAttributes -C/func/-/LSCopyItemInfoForRef -C/func/-/LSCopyItemInfoForURL -C/func/-/LSCopyKindStringForMIMEType -C/func/-/LSCopyKindStringForRef -C/func/-/LSCopyKindStringForTypeInfo -C/func/-/LSCopyKindStringForURL -C/func/-/lsearch -C/func/-/lseek -C/func/-/LSFindApplicationForInfo -C/func/-/LSGetApplicationForInfo -C/func/-/LSGetApplicationForItem -C/func/-/LSGetApplicationForURL -C/func/-/LSGetExtensionInfo -C/func/-/LSGetHandlerOptionsForContentType -C/tdef/-/LSHandlerOptions -C/func/-/LSInit -C/tdef/-/LSInitializeFlags -C/tdef/-/LSItemInfoFlags -C/tdef/-/LSItemInfoRecord -C/tdef/-/LSKindID -C/tdef/-/LSLaunchFlags -C/tdef/-/LSLaunchFSRefSpec -C/tdef/-/LSLaunchURLSpec -C/tdef/-/LSMCategory -C/func/-/LSMMapAddCategory -C/func/-/LSMMapAddText -C/func/-/LSMMapAddTextWithWeight -C/func/-/LSMMapApplyClusters -C/func/-/LSMMapCompile -C/func/-/LSMMapCreate -C/func/-/LSMMapCreateClusters -C/func/-/LSMMapCreateFromURL -C/func/-/LSMMapGetCategoryCount -C/func/-/LSMMapGetProperties -C/func/-/LSMMapGetTypeID -C/tdef/-/LSMMapRef -C/func/-/LSMMapSetProperties -C/func/-/LSMMapSetStopWords -C/func/-/LSMMapStartTraining -C/func/-/LSMMapWriteToStream -C/func/-/LSMMapWriteToURL -C/func/-/LSMResultCopyToken -C/func/-/LSMResultCopyTokenCluster -C/func/-/LSMResultCopyWord -C/func/-/LSMResultCopyWordCluster -C/func/-/LSMResultCreate -C/func/-/LSMResultGetCategory -C/func/-/LSMResultGetCount -C/func/-/LSMResultGetScore -C/func/-/LSMResultGetTypeID -C/tdef/-/LSMResultRef -C/func/-/LSMTextAddToken -C/func/-/LSMTextAddWord -C/func/-/LSMTextAddWords -C/func/-/LSMTextCreate -C/func/-/LSMTextGetTypeID -C/tdef/-/LSMTextRef -C/func/-/LSOpenApplication -C/func/-/LSOpenCFURLRef -C/func/-/LSOpenFromRefSpec -C/func/-/LSOpenFromURLSpec -C/func/-/LSOpenFSRef -C/func/-/LSOpenItemsWithRole -C/func/-/LSOpenURLsWithRole -C/func/-/LSRegisterFSRef -C/func/-/LSRegisterURL -C/tdef/-/LSRequestedInfo -C/tdef/-/LSRolesMask -C/func/-/LSSetDefaultHandlerForURLScheme -C/func/-/LSSetDefaultRoleHandlerForContentType -C/func/-/LSSetExtensionHiddenForRef -C/func/-/LSSetExtensionHiddenForURL -C/func/-/LSSetHandlerOptionsForContentType -C/func/-/lstat -C/func/-/lstat64 -C/func/-/LSTerm -JavaScript/clconst/WebGLRenderingContext/LUMINANCE -JavaScript/clconst/WebGLRenderingContext/LUMINANCE_ALPHA -C++/instm/IOFireWireSerialBusProtocolTransport/LunResetComplete -C/func/-/lutimes -JavaScript/data/WebKitCSSMatrix/m11 -JavaScript/data/WebKitCSSMatrix/m12 -JavaScript/data/WebKitCSSMatrix/m13 -JavaScript/data/WebKitCSSMatrix/m14 -JavaScript/data/WebKitCSSMatrix/m21 -JavaScript/data/WebKitCSSMatrix/m22 -JavaScript/data/WebKitCSSMatrix/m23 -JavaScript/data/WebKitCSSMatrix/m24 -JavaScript/data/WebKitCSSMatrix/m31 -JavaScript/data/WebKitCSSMatrix/m32 -JavaScript/data/WebKitCSSMatrix/m33 -JavaScript/data/WebKitCSSMatrix/m34 -JavaScript/data/WebKitCSSMatrix/m41 -JavaScript/data/WebKitCSSMatrix/m42 -JavaScript/data/WebKitCSSMatrix/m43 -JavaScript/data/WebKitCSSMatrix/m44 -C/func/-/Mac::Errors -C/func/-/Mac::Errors5.10.0 -C/func/-/Mac::Errors5.8.9 -C/tag/-/mac_module_data_element -C/macro/-/MAC_NOWAIT -C/tag/-/mac_policy_conf -C/tdef/-/mac_policy_handle_t -C/tag/-/mac_policy_ops -C/func/-/mac_policy_register -C/func/-/mac_policy_unregister -C/tdef/-/mac_proc_check_run_cs_invalid_t -C/macro/-/MAC_WAITOK -C/tag/-/Mach -C/tag/-/mach_header -C/tag/-/mach_header_64 -Objective-C/instm/NSMachPort/machPort -C++/cl/-/MacIOATA -C/func/-/macro -C/func/-/madvise -Objective-C/clm/NSColor/magentaColor -Objective-C/instm/NSColor/magentaComponent -C/tdef/-/MagicCookieInfo -Objective-C/instm/NSEvent/magnification -Objective-C/instm/CAEmitterCell/magnificationFilter -Objective-C/instp/CAEmitterCell/magnificationFilter -Objective-C/instm/CALayer/magnificationFilter -Objective-C/instp/CALayer/magnificationFilter -Objective-C/instm/NSResponder/magnifyWithEvent: -Objective-C/instm/NSOperation/main -Objective-C/instm/NSThread/main -Objective-C/clm/NSBundle/mainBundle -Objective-C/instm/NSURLRequest/mainDocumentURL -Objective-C/instm/WebView/mainFrame -Objective-C/instm/WebView/mainFrameDocument -Objective-C/instm/WebView/mainFrameIcon -Objective-C/instm/WebView/mainFrameTitle -Objective-C/instm/WebView/mainFrameURL -Objective-C/instm/NSApplication/mainMenu -Objective-C/instm/NSPreferencePane/mainNibName -Objective-C/clm/NSOperationQueue/mainQueue -Objective-C/instm/WebDataSource/mainResource -Objective-C/instm/WebArchive/mainResource -Objective-C/clm/NSRunLoop/mainRunLoop -Objective-C/clm/NSScreen/mainScreen -Objective-C/instm/WebView/maintainsInactiveSelection -C++/tdef/IOWorkLoop/maintCommandEnum -Objective-C/clm/NSThread/mainThread -Objective-C/instm/NSPreferencePane/mainView -Objective-C/instm/NSPreferencePane/mainViewDidLoad -Objective-C/instm/NSApplication/mainWindow -Objective-C/instm/PDFDocument/majorVersion -Objective-C/instm/NSView/makeBackingLayer -Objective-C/instm/NSResponder/makeBaseWritingDirectionLeftToRight: -Objective-C/instm/NSResponder/makeBaseWritingDirectionNatural: -Objective-C/instm/NSResponder/makeBaseWritingDirectionRightToLeft: -Objective-C/instm/NSMatrix/makeCellAtRow:column: -C/func/-/makecontext -Objective-C/instm/NSOpenGLContext/makeCurrentContext -Objective-C/instm/NSDocumentController/makeDocumentForURL:withContentsOfURL:ofType:error: -Objective-C/instm/NSDocumentController/makeDocumentWithContentsOfFile:ofType: -Objective-C/instm/NSDocumentController/makeDocumentWithContentsOfURL:ofType: -Objective-C/instm/NSDocumentController/makeDocumentWithContentsOfURL:ofType:error: -C/func/-/MakeFilePreview -Objective-C/instm/NSWindow/makeFirstResponder: -C/func/-/MakeImageDescriptionForEffect -C/func/-/MakeImageDescriptionForPixMap -Objective-C/instm/NSWindow/makeKeyAndOrderFront: -Objective-C/instm/NSWindow/makeKeyWindow -Objective-C/instm/NSWindow/makeMainWindow -Objective-C/intfm/NSConnectionDelegate/makeNewConnection:sender: -Objective-C/instm/NSSegmentedCell/makeNextSegmentKey -Objective-C/instm/NSSet/makeObjectsPerformSelector: -Objective-C/instm/NSArray/makeObjectsPerformSelector: -Objective-C/instm/NSSet/makeObjectsPerformSelector:withObject: -Objective-C/instm/NSArray/makeObjectsPerformSelector:withObject: -C++/instm/IOUSBDevice/MakePipe -C++/clm/IORegistryEntry/makePlane -Objective-C/instm/NSSegmentedCell/makePreviousSegmentKey -Objective-C/instm/WebView/makeTextLarger: -Objective-C/instm/WebView/makeTextSmaller: -Objective-C/instm/WebView/makeTextStandardSize: -Objective-C/instm/NSResponder/makeTextWritingDirectionLeftToRight: -Objective-C/instm/NSResponder/makeTextWritingDirectionNatural: -Objective-C/instm/NSResponder/makeTextWritingDirectionRightToLeft: -C/func/-/MakeThumbnailFromPicture -C/func/-/MakeThumbnailFromPictureFile -C/func/-/MakeThumbnailFromPixMap -Objective-C/instm/NSDocumentController/makeUntitledDocumentOfType: -Objective-C/instm/NSDocumentController/makeUntitledDocumentOfType:error: -C++/instm/IOService/makeUsable -Objective-C/instm/DRFolder(VirtualFolders)/makeVirtual -C/func/-/MakeVoiceSpec -Objective-C/instm/NSDocument/makeWindowControllers -Objective-C/instm/NSApplication/makeWindowsPerform:inOrder: -C/func/-/malloc -C/func/-/malloc_create_zone -C/func/-/malloc_default_zone -C/func/-/malloc_destroy_zone -C/func/-/malloc_good_size -C/func/-/malloc_size -C/func/-/malloc_zone_calloc -C/func/-/malloc_zone_free -C/func/-/malloc_zone_from_ptr -C/func/-/malloc_zone_malloc -C/func/-/malloc_zone_memalign -C/func/-/malloc_zone_realloc -C/func/-/malloc_zone_valloc -Objective-C/clm/CBIdentityAuthority/managedIdentityAuthority -Objective-C/instm/NSEntityDescription/managedObjectClassName -Objective-C/instm/NSObjectController/managedObjectContext -Objective-C/instm/NSPersistentDocument/managedObjectContext -Objective-C/binding/NSDictionaryController/managedObjectContext -Objective-C/binding/NSObjectController/managedObjectContext -Objective-C/binding/NSArrayController/managedObjectContext -Objective-C/binding/NSPersistentDocument/managedObjectContext -Objective-C/binding/NSTreeController/managedObjectContext -Objective-C/instm/NSManagedObject/managedObjectContext -Objective-C/intfm/NSPersistentStoreCoordinatorSyncing/managedObjectContextsToMonitorWhenSyncingPersistentStoreCoordinator: -Objective-C/intfm/NSPersistentStoreCoordinatorSyncing/managedObjectContextsToReloadAfterSyncingPersistentStoreCoordinator: -Objective-C/instm/NSPersistentStoreCoordinator/managedObjectIDForURIRepresentation: -Objective-C/instm/NSPersistentDocument/managedObjectModel -Objective-C/instm/NSPersistentStoreCoordinator/managedObjectModel -Objective-C/instm/NSEntityDescription/managedObjectModel -Objective-C/instm/DRFSObject/mangledNameForFilesystem: -Objective-C/instm/DRFSObject/mangledNames -C++/instm/IOMemoryDescriptor/map -C/econst/-/mapChanged -C/econst/-/mapChangedBit -C/econst/-/mapCompact -C/econst/-/mapCompactBit -C++/instm/IOService/mapDeviceMemoryWithIndex -C++/instm/IOPCIDevice/mapDeviceMemoryWithRegister -C/func/-/MapMatrix -Objective-C/instm/NSMigrationManager/mappingModel -Objective-C/clm/NSMappingModel/mappingModelFromBundles:forSourceModel:destinationModel: -C++/tag/IODMACommand/MappingOptions -Objective-C/instm/NSEntityMapping/mappingType -C/econst/-/mapReadErr -C/econst/-/mapReadOnly -C/econst/-/mapReadOnlyBit -Objective-C/clm/NSMapTable/mapTableWithKeyOptions:valueOptions: -Objective-C/clm/NSMapTable/mapTableWithStrongToStrongObjects -Objective-C/clm/NSMapTable/mapTableWithStrongToWeakObjects -Objective-C/clm/NSMapTable/mapTableWithWeakToStrongObjects -Objective-C/clm/NSMapTable/mapTableWithWeakToWeakObjects -C/func/-/marg_free -C/func/-/marg_getRef -C/func/-/marg_getValue -C/tdef/-/marg_list -C/macro/-/marg_malloc -C/func/-/marg_setValue -JavaScript/data/HTMLFrameElement/marginHeight -JavaScript/data/HTMLIFrameElement/marginHeight -JavaScript/data/HTMLFrameElement/marginWidth -JavaScript/data/HTMLIFrameElement/marginWidth -Objective-C/intfm/IMKTextInput/markedRange -Objective-C/intfm/NSTextInput/markedRange -Objective-C/intfm/NSTextInputClient/markedRange -Objective-C/instm/NSTextView/markedTextAttributes -Objective-C/instm/NSTextList/markerForItemNumber: -Objective-C/instm/NSTextList/markerFormat -JavaScript/data/SVGMarkerElement/markerHeight -Objective-C/instm/NSRulerMarker/markerLocation -Objective-C/instm/NSRulerView/markers -JavaScript/data/SVGMarkerElement/markerUnits -JavaScript/data/SVGMarkerElement/markerWidth -Objective-C/instm/IMKInputController/markForStyle:atRange: -JavaScript/instm/Console/markTimeline -Objective-C/instm/DOMRange/markupString -Objective-C/instm/PDFAnnotationMarkup/markupType -Objective-C/instp/CALayer/mask -Objective-C/instm/CALayer/mask -JavaScript/data/SVGMaskElement/maskContentUnits -Objective-C/instp/CALayer/masksToBounds -Objective-C/instm/CALayer/masksToBounds -JavaScript/data/SVGMaskElement/maskUnits -C/func/-/MatchAlias -C/func/-/MatchAliasNoUI -Objective-C/instm/NSScriptClassDescription/matchesAppleEventCode: -Objective-C/instm/NSFileWrapper/matchesContentsOfURL: -Objective-C/instm/NSImage/matchesOnMultipleResolution -Objective-C/instm/ABSearchElement/matchesRecord: -Objective-C/instm/IOBluetoothSDPServiceRecord/matchesSearchArray: -Objective-C/instm/IOBluetoothSDPServiceRecord/matchesUUIDArray: -Objective-C/instm/NSPredicateEditorRowTemplate/matchForPredicate: -C/tdef/-/MatchImageProcPtr -Objective-C/instm/NSFontDescriptor/matchingFontDescriptorsWithMandatoryKeys: -Objective-C/instm/NSFontDescriptor/matchingFontDescriptorWithMandatoryKeys: -C++/instm/IOATADevice/matchLocation -C++/instm/IOService/matchLocation -JavaScript/instm/StyleMedia/matchMedium -C++/instm/IONetworkInterface/matchPropertyTable -C++/instm/IOFireWireAVCSubUnit/matchPropertyTable -C++/instm/IOFireWireAVCUnit/matchPropertyTable -C++/instm/IOATADevice/matchPropertyTable -C++/instm/IOHIDDevice/matchPropertyTable -C++/instm/IOHIDInterface/matchPropertyTable -C++/instm/IOService/matchPropertyTable -C/func/-/math -C/func/-/matherr -Objective-C/instm/NSFont/matrix -Objective-C/instm/NSFontDescriptor/matrix -JavaScript/data/SVGTransform/matrix -Objective-C/instm/NSBrowser/matrixClass -C/econst/-/matrixErr -C/econst/-/matrixFlagScale1x -C/econst/-/matrixFlagScale2x -Objective-C/instm/NSBrowser/matrixInColumn: -C/tag/-/MatrixRecord -C/tdef/-/MatrixRecordPtr -JavaScript/instm/SVGPoint/matrixTransform -JavaScript/data/HTMLMeterElement/max -JavaScript/data/HTMLInputElement/max -JavaScript/data/HTMLProgressElement/max -JavaScript/clconst/WebGLRenderingContext/MAX_COMBINED_TEXTURE_IMAGE_UNITS -JavaScript/clconst/WebGLRenderingContext/MAX_CUBE_MAP_TEXTURE_SIZE -JavaScript/clconst/WebGLRenderingContext/MAX_FRAGMENT_UNIFORM_VECTORS -C/macro/-/MAX_KCTL_NAME -C/macro/-/MAX_OID_LEN -JavaScript/clconst/WebGLRenderingContext/MAX_RENDERBUFFER_SIZE -JavaScript/clconst/WebGLRenderingContext/MAX_TEXTURE_IMAGE_UNITS -JavaScript/clconst/WebGLRenderingContext/MAX_TEXTURE_SIZE -JavaScript/clconst/WebGLRenderingContext/MAX_VARYING_VECTORS -JavaScript/clconst/WebGLRenderingContext/MAX_VERTEX_ATTRIBS -JavaScript/clconst/WebGLRenderingContext/MAX_VERTEX_TEXTURE_IMAGE_UNITS -JavaScript/clconst/WebGLRenderingContext/MAX_VERTEX_UNIFORM_VECTORS -JavaScript/clconst/WebGLRenderingContext/MAX_VIEWPORT_DIMS -Objective-C/instm/QCCompositionPickerView/maxAnimationFrameRate -C++/instm/IOATABusInfo/maxBlocksExtended -C++/instm/IOService/maxCapabilityForDomainState -C/func/-/MaxCmapsOfScreen -Objective-C/instm/NSOperationQueue/maxConcurrentOperationCount -Objective-C/instm/NSDrawer/maxContentSize -Objective-C/instm/NSRelationshipDescription/maxCount -Objective-C/instm/NSDatePicker/maxDate -Objective-C/instm/NSDatePickerCell/maxDate -Objective-C/instp/PSFeedSettings/maxEnclosureSize -Objective-C/instm/NSNumberFormatter/maximum -Objective-C/instm/NSFont/maximumAdvancement -Objective-C/clm/NSDecimalNumber/maximumDecimalNumber -Objective-C/instm/NSNumberFormatter/maximumFractionDigits -Objective-C/instm/NSNumberFormatter/maximumIntegerDigits -Objective-C/instm/PDFAnnotationTextWidget/maximumLength -Objective-C/instm/NSString/maximumLengthOfBytesUsingEncoding: -Objective-C/instm/NSParagraphStyle/maximumLineHeight -Objective-C/instm/PDFThumbnailView/maximumNumberOfColumns -Objective-C/instm/NSCalendar/maximumRangeOfUnit: -Objective-C/instm/NSDocumentController/maximumRecentDocumentCount -Objective-C/instm/NSSearchFieldCell/maximumRecents -Objective-C/instm/QTCaptureFileOutput/maximumRecordedDuration -Objective-C/instm/QTCaptureFileOutput/maximumRecordedFileSize -Objective-C/instm/NSNumberFormatter/maximumSignificantDigits -Objective-C/instm/QTCaptureFileOutput/maximumVideoSize -Objective-C/instm/NSCollectionView/maxItemSize -JavaScript/data/HTMLInputElement/maxLength -JavaScript/data/HTMLTextAreaElement/maxLength -Objective-C/instm/NSCollectionView/maxNumberOfColumns -Objective-C/instm/NSCollectionView/maxNumberOfRows -Objective-C/instm/NSSplitView/maxPossiblePositionOfDividerAtIndex: -Objective-C/instm/QCView/maxRenderingFrameRate -C++/data/IOMemoryCursor/maxSegmentSize -Objective-C/instm/NSToolbarItem/maxSize -Objective-C/instm/NSWindow/maxSize -Objective-C/instm/NSText/maxSize -C++/data/IOMemoryCursor/maxTransferSize -Objective-C/instm/NSStepper/maxValue -Objective-C/instm/NSSliderCell/maxValue -Objective-C/instm/NSStepperCell/maxValue -Objective-C/instm/NSSlider/maxValue -Objective-C/instm/NSLevelIndicator/maxValue -Objective-C/instm/NSProgressIndicator/maxValue -Objective-C/instm/IMAVSlider/maxValue -Objective-C/instm/NSLevelIndicatorCell/maxValue -Objective-C/binding/NSDatePickerCell/maxValue -Objective-C/binding/NSLevelIndicator/maxValue -Objective-C/binding/NSLevelIndicatorCell/maxValue -Objective-C/binding/NSDatePicker/maxValue -Objective-C/binding/NSStepperCell/maxValue -Objective-C/binding/NSProgressIndicator/maxValue -Objective-C/binding/NSSlider/maxValue -Objective-C/binding/NSSliderCell/maxValue -Objective-C/binding/NSStepper/maxValue -Objective-C/instm/NSBrowser/maxVisibleColumns -Objective-C/instm/NSTableColumn/maxWidth -Objective-C/binding/NSTableColumn/maxWidth -C/func/-/mblen -C/func/-/mblen_l -C/func/-/mbmb -C/func/-/mbr_check_membership -C/func/-/mbr_check_service_membership -C/func/-/mbr_gid_to_uuid -C/func/-/mbr_identifier_to_uuid -C/func/-/mbr_sid_to_uuid -C/func/-/mbr_uid_to_uuid -C/func/-/mbr_uuid_to_id -C/func/-/mbr_uuid_to_sid -C/func/-/mbrlen -C/func/-/mbrlen_l -C/func/-/mbrrune -C/func/-/mbrtowc -C/func/-/mbrtowc_l -C/func/-/mbrune -C/func/-/mbsinit -C/func/-/mbsinit_l -C/func/-/mbsnrtowcs -C/func/-/mbsnrtowcs_l -C/func/-/mbsrtowcs -C/func/-/mbsrtowcs_l -C/func/-/mbstowcs -C/func/-/mbstowcs_l -C/func/-/mbtowc -C/func/-/mbtowc_l -C/func/-/mbuf_adj -C/func/-/mbuf_adjustlen -C/func/-/mbuf_align_32 -C/func/-/mbuf_alloccluster -C/func/-/mbuf_allocpacket -C/func/-/mbuf_allocpacket_list -C/func/-/mbuf_attachcluster -C/econst/mbuf_flags_t/MBUF_BCAST -C/func/-/mbuf_clear_csum_performed -C/func/-/mbuf_clear_csum_requested -C/func/-/mbuf_clear_vlan_tag -C/func/-/mbuf_concatenate -C/func/-/mbuf_copy_pkthdr -C/func/-/mbuf_copyback -C/func/-/mbuf_copydata -C/func/-/mbuf_copym -C/econst/mbuf_csum_performed_flags_t/MBUF_CSUM_DID_DATA -C/econst/mbuf_csum_performed_flags_t/MBUF_CSUM_DID_IP -C/econst/mbuf_csum_performed_flags_t/MBUF_CSUM_IP_GOOD -C/tag/-/mbuf_csum_performed_flags_t -C/econst/mbuf_csum_performed_flags_t/MBUF_CSUM_PSEUDO_HDR -C/econst/mbuf_csum_request_flags_t/MBUF_CSUM_REQ_IP -C/econst/mbuf_csum_request_flags_t/MBUF_CSUM_REQ_TCP -C/econst/mbuf_csum_request_flags_t/MBUF_CSUM_REQ_UDP -C/tag/-/mbuf_csum_request_flags_t -C/func/-/mbuf_data -C/func/-/mbuf_data_to_physical -C/func/-/mbuf_datastart -C/econst/mbuf_how_t/MBUF_DONTWAIT -C/func/-/mbuf_dup -C/econst/mbuf_flags_t/MBUF_EOR -C/econst/mbuf_flags_t/MBUF_EXT -C/econst/mbuf_flags_t/MBUF_FIRSTFRAG -C/func/-/mbuf_flags -C/tag/-/mbuf_flags_t -C/econst/mbuf_flags_t/MBUF_FRAG -C/func/-/mbuf_free -C/func/-/mbuf_freecluster -C/func/-/mbuf_freem -C/func/-/mbuf_freem_list -C/func/-/mbuf_get -C/func/-/mbuf_get_csum_requested -C/func/-/mbuf_get_mhlen -C/func/-/mbuf_get_mlen -C/func/-/mbuf_get_tso_requested -C/func/-/mbuf_get_vlan_tag -C/func/-/mbuf_getcluster -C/func/-/mbuf_gethdr -C/func/-/mbuf_getpacket -C/tag/-/mbuf_how_t -C/func/-/mbuf_inbound_modified -C/func/-/mbuf_inet6_cksum -C/func/-/mbuf_inet_cksum -C/econst/mbuf_flags_t/MBUF_LASTFRAG -C/func/-/mbuf_leadingspace -C/func/-/mbuf_len -C/func/-/mbuf_maxlen -C/econst/mbuf_flags_t/MBUF_MCAST -C/func/-/mbuf_mclget -C/func/-/mbuf_mclhasreference -C/econst/mbuf_type_t/MBUF_MT_ATABLE -C/econst/mbuf_type_t/MBUF_MT_CONTROL -C/econst/mbuf_type_t/MBUF_MT_DATA -C/econst/mbuf_type_t/MBUF_MT_FREE -C/econst/mbuf_type_t/MBUF_MT_FTABLE -C/econst/mbuf_type_t/MBUF_MT_HEADER -C/econst/mbuf_type_t/MBUF_MT_HTABLE -C/econst/mbuf_type_t/MBUF_MT_IFADDR -C/econst/mbuf_type_t/MBUF_MT_OOBDATA -C/econst/mbuf_type_t/MBUF_MT_PCB -C/econst/mbuf_type_t/MBUF_MT_RIGHTS -C/econst/mbuf_type_t/MBUF_MT_RTABLE -C/econst/mbuf_type_t/MBUF_MT_SOCKET -C/econst/mbuf_type_t/MBUF_MT_SONAME -C/func/-/mbuf_next -C/func/-/mbuf_nextpkt -C/func/-/mbuf_outbound_finalize -C/econst/mbuf_flags_t/MBUF_PKTHDR -C/func/-/mbuf_pkthdr_adjustlen -C/func/-/mbuf_pkthdr_header -C/func/-/mbuf_pkthdr_len -C/func/-/mbuf_pkthdr_rcvif -C/func/-/mbuf_pkthdr_setheader -C/func/-/mbuf_pkthdr_setlen -C/func/-/mbuf_pkthdr_setrcvif -C/func/-/mbuf_prepend -C/econst/mbuf_flags_t/MBUF_PROMISC -C/func/-/mbuf_pulldown -C/func/-/mbuf_pullup -C/func/-/mbuf_set_csum_performed -C/func/-/mbuf_set_vlan_tag -C/func/-/mbuf_setdata -C/func/-/mbuf_setflags -C/func/-/mbuf_setflags_mask -C/func/-/mbuf_setlen -C/func/-/mbuf_setnext -C/func/-/mbuf_setnextpkt -C/func/-/mbuf_settype -C/func/-/mbuf_split -C/tag/-/mbuf_stat -C/func/-/mbuf_stats -C/func/-/mbuf_tag_allocate -C/func/-/mbuf_tag_find -C/func/-/mbuf_tag_free -C/func/-/mbuf_tag_id_find -C/func/-/mbuf_trailingspace -C/func/-/mbuf_type -C/tag/-/mbuf_type_t -C/econst/mbuf_how_t/MBUF_WAITOK -C/func/-/mcprint -C/func/-/MD2 -C/func/-/MD2_Final -C/func/-/MD2_Init -C/func/-/MD2_Update -C/func/-/MD4 -C/func/-/MD4_Final -C/func/-/MD4_Init -C/func/-/MD4_Update -C/func/-/MD5 -C/func/-/md5 -C/func/-/MD5_Final -C/func/-/MD5_Init -C/func/-/MD5_Update -C/func/-/mdc2 -C/func/-/MDC2 -C/func/-/MDC2_Final -C/func/-/MDC2_Init -C/func/-/MDC2_Update -C/func/-/MDItemCopyAttribute -C/func/-/MDItemCopyAttributeList -C/func/-/MDItemCopyAttributeNames -C/func/-/MDItemCopyAttributes -C/func/-/MDItemCreate -C/func/-/MDItemCreateWithURL -C/func/-/MDItemGetTypeID -C/tdef/-/MDItemRef -C/func/-/MDLineageCreate -C/func/-/MDLineageCreateBranchFromFile -C/func/-/MDLineageCreateFromFile -C/func/-/MDLineageRemoveFromFile -C/func/-/MDLineageSetOnFile -C/tdef/-/MDQueryBatchingParams -C/func/-/MDQueryCopyQueryString -C/func/-/MDQueryCopySortingAttributes -C/func/-/MDQueryCopyValueListAttributes -C/func/-/MDQueryCopyValuesOfAttribute -C/func/-/MDQueryCreate -C/tdef/-/MDQueryCreateResultFunction -C/func/-/MDQueryCreateSubset -C/tdef/-/MDQueryCreateValueFunction -C/func/-/MDQueryDisableUpdates -C/func/-/MDQueryEnableUpdates -C/func/-/MDQueryExecute -C/func/-/MDQueryGetAttributeValueOfResultAtIndex -C/func/-/MDQueryGetBatchingParameters -C/func/-/MDQueryGetCountOfResultsWithAttributeValue -C/func/-/MDQueryGetIndexOfResult -C/func/-/MDQueryGetResultAtIndex -C/func/-/MDQueryGetResultCount -C/func/-/MDQueryGetTypeID -C/func/-/MDQueryIsGatheringComplete -C/tdef/-/MDQueryOptionFlags -C/tdef/-/MDQueryRef -C/func/-/MDQuerySetBatchingParameters -C/func/-/MDQuerySetCreateResultFunction -C/func/-/MDQuerySetCreateValueFunction -C/func/-/MDQuerySetDispatchQueue -C/func/-/MDQuerySetMaxCount -C/func/-/MDQuerySetSearchScope -C/func/-/MDQuerySetSortComparator -C/func/-/MDQuerySetSortComparatorBlock -C/tdef/-/MDQuerySortComparatorFunction -C/func/-/MDQueryStop -C/func/-/MDSchemaCopyAllAttributes -C/func/-/MDSchemaCopyAttributesForContentType -C/func/-/MDSchemaCopyDisplayDescriptionForAttribute -C/func/-/MDSchemaCopyDisplayNameForAttribute -C/func/-/MDSchemaCopyMetaAttributesForAttribute -Objective-C/instm/ABAddressBook/me -Objective-C/instm/NSRulerView/measurementUnits -JavaScript/instm/CanvasRenderingContext2D/measureText -C/tdef/-/MechanismCreate -C/tdef/-/MechanismDeactivate -C/tdef/-/MechanismDestroy -C/tdef/-/MechanismInvoke -C/tdef/-/Media -Objective-C/instm/QTTrack/media -JavaScript/data/CSSImportRule/media -JavaScript/data/CSSVariablesRule/media -JavaScript/data/CSSMediaRule/media -JavaScript/data/HTMLStyleElement/media -JavaScript/data/HTMLLinkElement/media -JavaScript/data/HTMLSourceElement/media -JavaScript/data/StyleSheet/media -JavaScript/data/SVGStyleElement/media -JavaScript/clconst/MediaError/MEDIA_ERR_ABORTED -JavaScript/clconst/MediaError/MEDIA_ERR_DECODE -JavaScript/clconst/MediaError/MEDIA_ERR_NETWORK -JavaScript/clconst/MediaError/MEDIA_ERR_SRC_NOT_SUPPORTED -JavaScript/clconst/CSSRule/MEDIA_RULE -Objective-C/instm/QTMedia/mediaAttributes -C/func/-/MediaContainsDisplayOffsets -C/func/-/MediaDecodeTimeToSampleNum -C/func/-/MediaDisplayTimeToSampleNum -JavaScript/data/DOMWindow/MediaError -JavaScript/cl/-/MediaError -C/tdef/-/MediaHandler -C/tdef/-/MediaHandlerComponent -Objective-C/instm/DRDevice(StatusConvenience)/mediaIsAppendable -Objective-C/instm/DRDevice(StatusConvenience)/mediaIsBlank -Objective-C/instm/DRDevice(StatusConvenience)/mediaIsBusy -Objective-C/instm/DRDevice(StatusConvenience)/mediaIsErasable -Objective-C/instm/DRDevice(StatusConvenience)/mediaIsOverwritable -Objective-C/instm/DRDevice(StatusConvenience)/mediaIsPresent -Objective-C/instm/DRDevice(StatusConvenience)/mediaIsReserved -Objective-C/instm/DRDevice(StatusConvenience)/mediaIsTransitioning -JavaScript/data/DOMWindow/MediaList -JavaScript/cl/-/MediaList -C/tag/-/MediaRecord -C/econst/-/mediaSampleNotSync -Objective-C/instm/DRDevice(StatusConvenience)/mediaSpaceFree -Objective-C/instm/DRDevice(StatusConvenience)/mediaSpaceOverwritable -Objective-C/instm/DRDevice(StatusConvenience)/mediaSpaceUsed -Objective-C/instm/DRSetupPanel/mediaStateChanged: -C++/instm/IOBlockStorageDriver/mediaStateHasChanged -Objective-C/instm/WebView/mediaStyle -JavaScript/data/MediaList/mediaText -C/func/-/MediaTimeToSampleNum -Objective-C/instm/QTCaptureConnection/mediaType -Objective-C/instm/QTFormatDescription/mediaType -Objective-C/instm/QTCompressionOptions/mediaType -Objective-C/instm/DRDevice(StatusConvenience)/mediaType -Objective-C/clm/QTMedia/mediaWithQuickTimeMedia:error: -C++/clm/IONetworkMedium/medium -JavaScript/clconst/WebGLRenderingContext/MEDIUM_FLOAT -JavaScript/clconst/WebGLRenderingContext/MEDIUM_INT -JavaScript/data/SVGPreserveAspectRatio/meetOrSlice -C++/instm/OSOrderedSet/member -C++/instm/OSSet/member -Objective-C/instm/NSHashTable/member: -Objective-C/instm/NSSet/member: -Objective-C/instm/CBGroupIdentity/members -Objective-C/instm/ABGroup/members -C++/tag/IOFWCommand/MemberVariables -C/func/-/memccpy -C/func/-/memchr -C/func/-/memcmp -C/func/-/memcpy -C/econst/-/memFragErr -C/func/-/memmove -C/tag/-/Memory -C/func/-/memory -Objective-C/instm/NSURLCache/memoryCapacity -C/func/-/memset -C/func/-/memset_pattern -C/func/-/memset_pattern16 -C/func/-/memset_pattern4 -C/func/-/memset_pattern8 -Objective-C/instm/NSStatusItem/menu -Objective-C/instm/IMKInputController/menu -Objective-C/instm/NSPopUpButtonCell/menu -Objective-C/instm/NSPopUpButton/menu -Objective-C/instm/NSMenuView/menu -Objective-C/instm/NSMenuItem/menu -Objective-C/instm/NSPathControl/menu -C/func/-/menu -Objective-C/instm/NSResponder/menu -Objective-C/instm/NSCell/menu -Objective-C/intfm/NSMenuDelegate/menu:updateItem:atIndex:shouldCancel: -Objective-C/intfm/NSMenuDelegate/menu:willHighlightItem: -C/func/-/menu_attributes -C/func/-/menu_back -C/func/-/menu_cursor -C/func/-/menu_driver -C/func/-/menu_fore -C/func/-/menu_format -C/func/-/menu_grey -C/func/-/menu_hook -C/func/-/menu_items -C/func/-/menu_mark -C/func/-/menu_new -C/func/-/menu_opts -C/func/-/menu_opts_off -C/func/-/menu_opts_on -C/func/-/menu_pad -C/func/-/menu_pattern -C/func/-/menu_post -C/func/-/menu_requestname -C/func/-/menu_spacing -C/func/-/menu_userptr -C/func/-/menu_win -JavaScript/data/DOMWindow/menubar -Objective-C/clm/NSFont/menuBarFontOfSize: -Objective-C/clm/NSMenuView/menuBarHeight -Objective-C/instm/NSMenu/menuBarHeight -Objective-C/clm/NSMenu/menuBarVisible -Objective-C/clm/NSWindow/menuChanged: -Objective-C/instm/NSMenu/menuChangedMessagesEnabled -Objective-C/intfm/NSMenuDelegate/menuDidClose: -Objective-C/clm/NSFont/menuFontOfSize: -Objective-C/instm/NSView/menuForEvent: -Objective-C/instm/NSCell/menuForEvent:inRect:ofView: -Objective-C/instm/QTMovieView/menuForEventDelegate: -Objective-C/instm/NSToolbarItem/menuFormRepresentation -Objective-C/instm/NSSpellChecker/menuForResult:string:options:atLocation:inView: -Objective-C/instm/NSSegmentedControl/menuForSegment: -Objective-C/instm/NSSegmentedCell/menuForSegment: -C/tdef/-/MenuHandle -Objective-C/intfm/NSMenuDelegate/menuHasKeyEquivalent:forEvent:target:action: -Objective-C/instm/NSMenuItemCell/menuItem -Objective-C/instm/NSMenuView/menuItemCellForItemAtIndex: -Objective-C/intfm/NSMenuDelegate/menuNeedsUpdate: -C/func/-/MenuPopdown -C/func/-/MenuPopup -C/tdef/-/MenuRef -Objective-C/instm/NSMenu/menuRepresentation -Objective-C/instm/NSMenuItemCell/menuView -Objective-C/intfm/NSMenuDelegate/menuWillOpen: -Objective-C/clm/NSMenu/menuZone -C++/instm/OSDictionary/merge -C++/instm/OSArray/merge -C++/instm/OSSet/merge -Objective-C/instm/NSManagedObjectContext/mergeChangesFromContextDidSaveNotification: -Objective-C/clm/NSManagedObjectModel/mergedModelFromBundles: -Objective-C/clm/NSManagedObjectModel/mergedModelFromBundles:forStoreMetadata: -Objective-C/instm/NSManagedObjectContext/mergePolicy -C/func/-/mergesort -C/func/-/mergesort_b -Objective-C/instm/NSSavePanel/message -C++/instm/TestFailure/message -C++/instm/IOService/message -JavaScript/data/DOMCoreException/message -JavaScript/data/IDBDatabaseException/message -JavaScript/data/IDBErrorEvent/message -JavaScript/data/IDBDatabaseError/message -JavaScript/data/EventException/message -JavaScript/data/ErrorEvent/message -JavaScript/data/SQLError/message -JavaScript/data/RangeException/message -JavaScript/data/PositionError/message -JavaScript/data/SVGException/message -JavaScript/data/XPathException/message -JavaScript/data/XMLHttpRequestException/message -JavaScript/data/DOMWindow/MessageChannel -JavaScript/cl/-/MessageChannel -JavaScript/data/WorkerContext/MessageChannel -C++/instm/IOService/messageClient -C++/instm/IOService/messageClients -JavaScript/data/DOMWindow/MessageEvent -JavaScript/cl/-/MessageEvent -JavaScript/data/WorkerContext/MessageEvent -Objective-C/clm/NSFont/messageFontOfSize: -JavaScript/data/DOMWindow/MessagePort -JavaScript/cl/-/MessagePort -Objective-C/instm/NSAlert/messageText -C/func/-/meta -C++/instm/OSMetaClassBase/metaCast -Objective-C/instm/NSAtomicStore/metadata -Objective-C/instm/NSPersistentStore/metadata -Objective-C/instm/IBDocument/metadataForKey:ofObject: -Objective-C/instm/NSPersistentStoreCoordinator/metadataForPersistentStore: -Objective-C/clm/NSPersistentStoreCoordinator/metadataForPersistentStoreOfType:URL:error: -Objective-C/clm/NSPersistentStore/metadataForPersistentStoreWithURL:error: -Objective-C/clm/NSPersistentStoreCoordinator/metadataForPersistentStoreWithURL:error: -Objective-C/intfm/NSMetadataQueryDelegate/metadataQuery:replacementObjectForResultObject: -Objective-C/intfm/NSMetadataQueryDelegate/metadataQuery:replacementValueForAttribute:value: -JavaScript/data/KeyboardEvent/metaKey -JavaScript/data/MouseEvent/metaKey -JavaScript/data/TouchEvent/metaKey -JavaScript/data/WheelEvent/metaKey -C/tdef/-/Method -JavaScript/data/HTMLFormElement/method -JavaScript/data/SVGTextPathElement/method -C/func/-/method_copyArgumentType -C/func/-/method_copyReturnType -C/func/-/method_exchangeImplementations -C/func/-/method_getArgumentType -C/func/-/method_getImplementation -C/func/-/method_getName -C/func/-/method_getNumberOfArguments -C/func/-/method_getReturnType -C/func/-/method_getTypeEncoding -C/func/-/method_setImplementation -Objective-C/instm/NSObject/methodForSelector: -Objective-C/instm/NSMethodSignature/methodReturnLength -Objective-C/instm/NSMethodSignature/methodReturnType -Objective-C/instm/NSInvocation/methodSignature -Objective-C/instm/NSProxy/methodSignatureForSelector: -Objective-C/instm/NSObject/methodSignatureForSelector: -JavaScript/instm/TestObj/methodThatRequiresAllArgs -JavaScript/instm/TestObj/methodThatRequiresAllArgsAndThrows -JavaScript/instm/TestObj/methodWithException -JavaScript/instm/TestObj/methodWithNonOptionalArgAndOptionalArg -JavaScript/instm/TestObj/methodWithNonOptionalArgAndTwoOptionalArgs -JavaScript/instm/TestObj/methodWithOptionalArg -C/econst/-/mFulErr -C/func/-/mib_api -C/tag/-/MicrosecondsInFrame -C/tdef/-/MIDIChannelMessage -C/func/-/MIDIClientCreate -C/func/-/MIDIClientDispose -C/tdef/-/MIDIClientRef -C/tdef/-/MIDICompletionProc -C/tag/-/MIDIControlTransform -C/func/-/MIDIDestinationCreate -C/func/-/MIDIDeviceAddEntity -C/func/-/MIDIDeviceCreate -C/func/-/MIDIDeviceDispose -C/func/-/MIDIDeviceGetEntity -C/func/-/MIDIDeviceGetNumberOfEntities -C/func/-/MIDIDeviceListAddDevice -C/func/-/MIDIDeviceListDispose -C/func/-/MIDIDeviceListGetDevice -C/func/-/MIDIDeviceListGetNumberOfDevices -C/tdef/-/MIDIDeviceRef -C/func/-/MIDIDeviceRemoveEntity -C/func/-/MIDIDriverEnableMonitoring -C/cl/-/MIDIDriverInterface -C/tdef/-/MIDIDriverRef -C/func/-/MIDIEndpointDispose -C/func/-/MIDIEndpointGetEntity -C/func/-/MIDIEndpointGetRefCons -C/tdef/-/MIDIEndpointRef -C/func/-/MIDIEndpointSetRefCons -C/func/-/MIDIEntityAddOrRemoveEndpoints -C/func/-/MIDIEntityGetDestination -C/func/-/MIDIEntityGetDevice -C/func/-/MIDIEntityGetNumberOfDestinations -C/func/-/MIDIEntityGetNumberOfSources -C/func/-/MIDIEntityGetSource -C/tdef/-/MIDIEntityRef -C/func/-/MIDIExternalDeviceCreate -C/func/-/MIDIFlushOutput -C/func/-/MIDIGetDestination -C/func/-/MIDIGetDevice -C/func/-/MIDIGetDriverDeviceList -C/func/-/MIDIGetDriverIORunLoop -C/func/-/MIDIGetExternalDevice -C/func/-/MIDIGetNumberOfDestinations -C/func/-/MIDIGetNumberOfDevices -C/func/-/MIDIGetNumberOfExternalDevices -C/func/-/MIDIGetNumberOfSources -C/func/-/MIDIGetSerialPortDrivers -C/func/-/MIDIGetSerialPortOwner -C/func/-/MIDIGetSource -C/func/-/MIDIImportGetSettings -C/func/-/MIDIImportSetSettings -C/func/-/MIDIInputPortCreate -C/tdef/-/MIDIMetaEvent -C/tdef/-/MIDINoteMessage -C/tag/-/MIDINotification -C/tag/-/MIDINotificationMessageID -C/tdef/-/MIDINotifyProc -C/tag/-/MIDIObjectAddRemoveNotification -C/func/-/MIDIObjectFindByUniqueID -C/func/-/MIDIObjectGetDataProperty -C/func/-/MIDIObjectGetDictionaryProperty -C/func/-/MIDIObjectGetIntegerProperty -C/func/-/MIDIObjectGetProperties -C/func/-/MIDIObjectGetStringProperty -C/tag/-/MIDIObjectPropertyChangeNotification -C/tdef/-/MIDIObjectRef -C/func/-/MIDIObjectRemoveProperty -C/func/-/MIDIObjectSetDataProperty -C/func/-/MIDIObjectSetDictionaryProperty -C/func/-/MIDIObjectSetIntegerProperty -C/func/-/MIDIObjectSetStringProperty -C/tag/-/MIDIObjectType -C/func/-/MIDIOutputPortCreate -C/tag/-/MIDIPacket -C/tag/-/MIDIPacketList -C/func/-/MIDIPacketListAdd -C/func/-/MIDIPacketListInit -C/func/-/MIDIPacketNext -C/func/-/MIDIPortConnectSource -C/func/-/MIDIPortDisconnectSource -C/func/-/MIDIPortDispose -C/tdef/-/MIDIPortRef -C/tdef/-/MIDIRawData -C/tdef/-/MIDIReadProc -C/func/-/MIDIReceived -C/func/-/MIDIRestart -C/func/-/MIDISend -C/func/-/MIDISendSysex -C/func/-/MIDISetSerialPortOwner -C/func/-/MIDISetupAddDevice -C/func/-/MIDISetupAddExternalDevice -C/func/-/MIDISetupCreate -C/func/-/MIDISetupDispose -C/func/-/MIDISetupFromData -C/func/-/MIDISetupGetCurrent -C/func/-/MIDISetupInstall -C/func/-/MIDISetupRemoveDevice -C/func/-/MIDISetupRemoveExternalDevice -C/func/-/MIDISetupToData -C/func/-/MIDISourceCreate -C/tag/-/MIDISysexSendRequest -C/func/-/MIDIThruConnectionCreate -C/func/-/MIDIThruConnectionDispose -C/tag/-/MIDIThruConnectionEndpoint -C/func/-/MIDIThruConnectionFind -C/func/-/MIDIThruConnectionGetParams -C/tag/-/MIDIThruConnectionParams -C/func/-/MIDIThruConnectionParamsInitialize -C/macro/-/MIDIThruConnectionParamsSize -C/func/-/MIDIThruConnectionSetParams -C/tdef/-/MIDITimeStamp -C/tag/-/MIDITransform -C/tag/-/MIDITransformControlType -C/tag/-/MIDITransformType -C/tdef/-/MIDIUniqueID -C/tag/-/MIDIValueMap -Objective-C/instm/NSPersistentStoreCoordinator/migratePersistentStore:toURL:options:withType:error: -Objective-C/instm/NSMigrationManager/migrateStoreFromURL:type:options:withMappingModel:toDestinationURL:destinationType:destinationOptions:error: -Objective-C/clm/NSPersistentStore/migrationManagerClass -Objective-C/instm/NSMigrationManager/migrationProgress -Objective-C/instm/NSXMLDocument/MIMEType -Objective-C/instm/NSURLResponse/MIMEType -Objective-C/instm/WebResource/MIMEType -Objective-C/instm/QTDataReference/MIMEType -Objective-C/instp/PSEnclosure/MIMEType -Objective-C/instp/PSContent/MIMEType -Objective-C/instp/PSLink/MIMEType -JavaScript/data/DOMWindow/MimeType -JavaScript/cl/-/MimeType -JavaScript/data/DOMWindow/MimeTypeArray -JavaScript/cl/-/MimeTypeArray -JavaScript/data/Navigator/mimeTypes -Objective-C/clm/WebView/MIMETypesShownAsHTML -JavaScript/data/HTMLInputElement/min -JavaScript/data/HTMLMeterElement/min -C/func/-/MinCmapsOfScreen -Objective-C/instm/NSBrowser/minColumnWidth -Objective-C/instm/NSColorPicker/minContentSize -Objective-C/intfm/NSColorPickingDefault/minContentSize -Objective-C/instm/NSDrawer/minContentSize -C/func/-/mincore -Objective-C/instm/NSRelationshipDescription/minCount -Objective-C/instm/NSDatePicker/minDate -Objective-C/instm/NSDatePickerCell/minDate -Objective-C/clm/NSWindow/minFrameWidthWithTitle:styleMask: -C/func/-/minherit -Objective-C/instm/NSWindow/miniaturize: -Objective-C/instm/NSApplication/miniaturizeAll: -Objective-C/instm/CAEmitterCell/minificationFilter -Objective-C/instp/CAEmitterCell/minificationFilter -Objective-C/instp/CALayer/minificationFilter -Objective-C/instm/CALayer/minificationFilter -Objective-C/instm/CAEmitterCell/minificationFilterBias -Objective-C/instp/CAEmitterCell/minificationFilterBias -Objective-C/instm/CALayer/minificationFilterBias -Objective-C/instp/CALayer/minificationFilterBias -Objective-C/instm/NSNumberFormatter/minimum -Objective-C/instm/NSCalendar/minimumDaysInFirstWeek -Objective-C/clm/NSDecimalNumber/minimumDecimalNumber -Objective-C/instm/WebPreferences/minimumFontSize -Objective-C/instm/NSNumberFormatter/minimumFractionDigits -Objective-C/instm/NSNumberFormatter/minimumIntegerDigits -C++/data/IOAudioDevice/minimumInterval -Objective-C/instm/NSParagraphStyle/minimumLineHeight -Objective-C/instm/WebPreferences/minimumLogicalFontSize -Objective-C/instm/NSCalendar/minimumRangeOfUnit: -Objective-C/instm/NSNumberFormatter/minimumSignificantDigits -Objective-C/instm/NSTabView/minimumSize -Objective-C/instm/QTCaptureFileOutput/minimumVideoFrameInterval -Objective-C/instm/QTCaptureDecompressedVideoOutput/minimumVideoFrameInterval -Objective-C/instm/NSMenu/minimumWidth -Objective-C/instm/NSCollectionView/minItemSize -Objective-C/instm/NSWindow/miniwindowImage -Objective-C/instm/NSWindow/miniwindowTitle -Objective-C/instm/PDFDocument/minorVersion -C/func/-/minphys -Objective-C/instm/NSSplitView/minPossiblePositionOfDividerAtIndex: -Objective-C/instm/NSToolbarItem/minSize -Objective-C/instm/NSWindow/minSize -Objective-C/instm/NSText/minSize -Objective-C/instm/NSHashTable/minusHashTable: -Objective-C/instm/NSMutableSet/minusSet: -Objective-C/instm/NSNumberFormatter/minusSign -Objective-C/instm/NSDateComponents/minute -Objective-C/instm/DRMSF/minutes -Objective-C/instm/NSStepperCell/minValue -Objective-C/instm/NSSliderCell/minValue -Objective-C/instm/NSStepper/minValue -Objective-C/instm/NSSlider/minValue -Objective-C/instm/NSLevelIndicator/minValue -Objective-C/instm/NSProgressIndicator/minValue -Objective-C/instm/IMAVSlider/minValue -Objective-C/instm/NSLevelIndicatorCell/minValue -Objective-C/binding/NSDatePickerCell/minValue -Objective-C/binding/NSDatePicker/minValue -Objective-C/binding/NSLevelIndicator/minValue -Objective-C/binding/NSLevelIndicatorCell/minValue -Objective-C/binding/NSSlider/minValue -Objective-C/binding/NSStepperCell/minValue -Objective-C/binding/NSSliderCell/minValue -Objective-C/binding/NSProgressIndicator/minValue -Objective-C/binding/NSStepper/minValue -Objective-C/instm/NSTableColumn/minWidth -Objective-C/binding/NSTableColumn/minWidth -JavaScript/clconst/WebGLRenderingContext/MIRRORED_REPEAT -Objective-C/instm/IKPictureTaker/mirroring -C/func/-/mitem_current -C/func/-/mitem_name -C/func/-/mitem_new -C/func/-/mitem_opts -C/func/-/mitem_userptr -C/func/-/mitem_value -C/func/-/mitem_visible -Objective-C/instm/NSBezierPath/miterLimit -Objective-C/instm/CAShapeLayer/miterLimit -Objective-C/instp/CAShapeLayer/miterLimit -JavaScript/data/CanvasRenderingContext2D/miterLimit -Objective-C/instm/NSMenuItem/mixedStateImage -Objective-C/binding/NSMenuItem/mixedStateImage -Objective-C/binding/NSPopUpButtonCell/mixedStateImage -C/tag/-/MixerDistanceParams -C/tdef/-/MixerDistanceParams -C/func/-/mkdir -C/func/-/mkdtemp -C/func/-/mkfifo -C/func/-/mknod -C/func/-/mkstemp -C/func/-/mkstemps -C/func/-/mktemp -C/func/-/mktime -C/func/-/mlock -C/func/-/mmap -C/cl/-/MMCDeviceInterface -C/tag/-/MMCDeviceTrayState -C/func/-/mmul -C/func/-/mmulD -Objective-C/instm/NSMenuItem/mnemonic -Objective-C/instm/NSCell/mnemonic -Objective-C/instm/NSMenuItem/mnemonicLocation -Objective-C/instm/NSCell/mnemonicLocation -C/tdef/-/ModalFilterProc -C/tdef/-/ModalFilterUPP -C/tdef/-/ModalFilterYDProc -C/tdef/-/ModalFilterYDUPP -Objective-C/instm/NSApplication/modalWindow -Objective-C/instm/NSColorPanel/mode -Objective-C/instm/NSMatrix/mode -Objective-C/instp/IKDeviceBrowserView/mode -Objective-C/instm/IKDeviceBrowserView/mode -Objective-C/instp/IKCameraDeviceView/mode -Objective-C/instp/IKScannerDeviceView/mode -Objective-C/instm/IKScannerDeviceView/mode -Objective-C/instm/IKCameraDeviceView/mode -JavaScript/data/SVGFEBlendElement/mode -Objective-C/clm/NSManagedObjectModel/modelByMergingModels: -Objective-C/clm/NSManagedObjectModel/modelByMergingModels:forStoreMetadata: -C/econst/-/modeLiteral -Objective-C/instm/CALayer/modelLayer -Objective-C/instm/QTCaptureDevice/modelUniqueID -C/econst/-/modeNormal -C/tdef/-/ModePageFormatHeader -C/tdef/-/ModeParameterBlockDescriptor -C/econst/-/modePhonemes -Objective-C/intfm/IMKStateSetting/modes: -C/econst/-/modeText -C/func/-/modf -C/func/-/modff -C/func/-/modfl -C++/clm/OSMetaClass/modHasInstance -JavaScript/clconst/MutationEvent/MODIFICATION -Objective-C/instm/PDFAnnotation/modificationDate -Objective-C/instm/NSPredicateEditorRowTemplate/modifier -Objective-C/clm/NSEvent/modifierFlags -Objective-C/instm/NSEvent/modifierFlags -JavaScript/instm/DOMSelection/modify -Objective-C/instm/NSFontManager/modifyFont: -Objective-C/instm/NSFontManager/modifyFontViaPanel: -C++/instm/IOCatalogue/moduleHasLoaded -C/func/-/moncontrol -C/func/-/monstartup -Objective-C/instm/NSDateComponents/month -Objective-C/instp/CalRecurrenceRule/monthsOfTheYear -Objective-C/instm/CalRecurrenceRule/monthsOfTheYear -Objective-C/instm/NSDateFormatter/monthSymbols -Objective-C/instm/NSFont/mostCompatibleStringEncoding -C/func/-/mount -Objective-C/instm/NSWorkspace/mountedLocalVolumePaths -Objective-C/instm/NSWorkspace/mountedRemovableMedia -Objective-C/instm/NSFileManager/mountedVolumeURLsIncludingResourceValuesForKeys:options: -Objective-C/instm/NSWorkspace/mountNewRemovableMedia -Objective-C/instm/NSView/mouse:inRect: -C/func/-/mouse_trafo -JavaScript/clconst/Event/MOUSEDOWN -Objective-C/instm/NSMatrix/mouseDown: -Objective-C/instm/NSControl/mouseDown: -Objective-C/instm/NSResponder/mouseDown: -Objective-C/intfm/FxOnScreenControl/mouseDown:positionY:activePart:modifiers:forceUpdate:time: -Objective-C/instm/NSView/mouseDownCanMoveWindow -Objective-C/instm/NSMatrix/mouseDownFlags -Objective-C/instm/NSCell/mouseDownFlags -Objective-C/intfm/IMKMouseHandling/mouseDownOnCharacterIndex:coordinate:withModifier:continueTracking:client: -JavaScript/clconst/Event/MOUSEDRAG -Objective-C/instm/NSResponder/mouseDragged: -Objective-C/intfm/FxOnScreenControl/mouseDragged:positionY:activePart:modifiers:forceUpdate:time: -Objective-C/instm/NSButtonCell/mouseEntered: -Objective-C/instm/NSCursor/mouseEntered: -Objective-C/instm/NSResponder/mouseEntered: -Objective-C/instm/NSPathCell/mouseEntered:withFrame:inView: -JavaScript/data/DOMWindow/MouseEvent -JavaScript/cl/-/MouseEvent -Objective-C/clm/NSEvent/mouseEventWithType:location:modifierFlags:timestamp:windowNumber:context:eventNumber:clickCount:pressure: -Objective-C/instm/NSButtonCell/mouseExited: -Objective-C/instm/NSCursor/mouseExited: -Objective-C/instm/NSResponder/mouseExited: -Objective-C/instm/NSPathCell/mouseExited:withFrame:inView: -C/func/-/mouseinterval -Objective-C/clm/NSEvent/mouseLocation -Objective-C/instm/NSWindow/mouseLocationOutsideOfEventStream -C/func/-/mousemask -JavaScript/clconst/Event/MOUSEMOVE -Objective-C/instm/NSResponder/mouseMoved: -Objective-C/intfm/IMKMouseHandling/mouseMovedOnCharacterIndex:coordinate:withModifier:client: -JavaScript/clconst/Event/MOUSEOUT -JavaScript/clconst/Event/MOUSEOVER -JavaScript/clconst/Event/MOUSEUP -Objective-C/instm/NSResponder/mouseUp: -Objective-C/intfm/FxOnScreenControl/mouseUp:positionY:activePart:modifiers:forceUpdate:time: -Objective-C/instm/PDFAnnotation/mouseUpAction -Objective-C/intfm/IMKMouseHandling/mouseUpOnCharacterIndex:coordinate:withModifier:client: -C/func/-/move -JavaScript/instm/DataGridColumnList/move -Objective-C/instm/AMWorkflow/moveActionAtIndex:toIndex: -Objective-C/instm/NSResponder/moveBackward: -Objective-C/instm/NSResponder/moveBackwardAndModifySelection: -JavaScript/instm/DOMWindow/moveBy -Objective-C/instm/NSTableView/moveColumn:toColumn: -C/func/-/MoveDataBrowserSelectionAnchor -Objective-C/instm/NSResponder/moveDown: -Objective-C/instm/NSResponder/moveDownAndModifySelection: -Objective-C/instm/WebView/moveDragCaretToPoint: -Objective-C/instm/NSResponder/moveForward: -Objective-C/instm/NSResponder/moveForwardAndModifySelection: -Objective-C/instm/NSFileManager/moveItemAtPath:toPath:error: -Objective-C/instm/NSFileManager/moveItemAtURL:toURL:error: -Objective-C/instm/NSResponder/moveLeft: -Objective-C/instm/NSResponder/moveLeftAndModifySelection: -Objective-C/instm/NSTreeController/moveNode:toIndexPath: -Objective-C/instm/NSTreeController/moveNodes:toIndexPath: -Objective-C/instm/IBDocument/moveObject:toParent: -Objective-C/instm/NSResponder/moveParagraphBackwardAndModifySelection: -Objective-C/instm/NSResponder/moveParagraphForwardAndModifySelection: -Objective-C/instm/NSFileManager/movePath:toPath:handler: -Objective-C/instm/NSResponder/moveRight: -Objective-C/instm/NSResponder/moveRightAndModifySelection: -Objective-C/instm/NSRulerView/moveRulerlineFromLocation:toLocation: -JavaScript/instm/CanvasRenderingContext2D/moveTo -JavaScript/instm/DOMWindow/moveTo -C/macro/-/MOVETO_ENDTAG -C/macro/-/MOVETO_STARTTAG -Objective-C/instm/NSResponder/moveToBeginningOfDocument: -Objective-C/instm/NSResponder/moveToBeginningOfDocumentAndModifySelection: -Objective-C/instm/NSResponder/moveToBeginningOfLine: -Objective-C/instm/NSResponder/moveToBeginningOfLineAndModifySelection: -Objective-C/instm/NSResponder/moveToBeginningOfParagraph: -Objective-C/instm/NSResponder/moveToBeginningOfParagraphAndModifySelection: -Objective-C/instm/WebView/moveToBeginningOfSentence: -Objective-C/instm/WebView/moveToBeginningOfSentenceAndModifySelection: -Objective-C/instm/NSResponder/moveToEndOfDocument: -Objective-C/instm/NSResponder/moveToEndOfDocumentAndModifySelection: -Objective-C/instm/NSResponder/moveToEndOfLine: -Objective-C/instm/NSResponder/moveToEndOfLineAndModifySelection: -Objective-C/instm/NSResponder/moveToEndOfParagraph: -Objective-C/instm/NSResponder/moveToEndOfParagraphAndModifySelection: -Objective-C/instm/WebView/moveToEndOfSentence: -Objective-C/instm/WebView/moveToEndOfSentenceAndModifySelection: -Objective-C/instm/NSResponder/moveToLeftEndOfLine: -Objective-C/instm/NSResponder/moveToLeftEndOfLineAndModifySelection: -Objective-C/instm/NSBezierPath/moveToPoint: -Objective-C/instm/NSResponder/moveToRightEndOfLine: -Objective-C/instm/NSResponder/moveToRightEndOfLineAndModifySelection: -Objective-C/instm/NSResponder/moveUp: -Objective-C/instm/NSResponder/moveUpAndModifySelection: -JavaScript/instm/InspectorFrontendHost/moveWindowBy -Objective-C/instm/NSResponder/moveWordBackward: -Objective-C/instm/NSResponder/moveWordBackwardAndModifySelection: -Objective-C/instm/NSResponder/moveWordForward: -Objective-C/instm/NSResponder/moveWordForwardAndModifySelection: -Objective-C/instm/NSResponder/moveWordLeft: -Objective-C/instm/NSResponder/moveWordLeftAndModifySelection: -Objective-C/instm/NSResponder/moveWordRight: -Objective-C/instm/NSResponder/moveWordRightAndModifySelection: -C/tdef/-/Movie -Objective-C/instm/QTTrack/movie -Objective-C/instm/QTMovieLayer/movie -Objective-C/instm/QTMovieView/movie -Objective-C/clm/QTMovie/movie -Objective-C/binding/QTMovieView/movie -Objective-C/instm/NSObject/movie:linkToURL: -Objective-C/instm/NSObject/movie:shouldContinueOperation:withPhase:atPercent:withAttributes: -Objective-C/instm/QTMovie/movieAttributes -Objective-C/instm/QTMovieView/movieBounds -C/tdef/-/MovieController -Objective-C/instm/QTMovieView/movieControllerBounds -C/tdef/-/MovieDrawingCompleteProc -C/tdef/-/MovieDrawingCompleteUPP -C/tdef/-/MovieEditState -C/tag/-/MovieEditStateRecord -C/func/-/MovieExportAddDataSource -C/tdef/-/MovieExportComponent -C/func/-/MovieExportDisposeGetDataAndPropertiesProcs -C/func/-/MovieExportDoUserDialog -C/econst/-/movieExportDuration -C/func/-/MovieExportFromProceduresToDataRef -C/func/-/MovieExportGetAuxiliaryData -C/func/-/MovieExportGetCreatorType -C/tdef/-/MovieExportGetDataProc -C/tdef/-/MovieExportGetDataUPP -C/func/-/MovieExportGetFileNameExtension -C/tdef/-/MovieExportGetPropertyProc -C/tdef/-/MovieExportGetPropertyUPP -C/func/-/MovieExportGetSettingsAsAtomContainer -C/func/-/MovieExportGetShortFileTypeString -C/func/-/MovieExportGetSourceMediaType -C/econst/-/movieExportHeight -C/func/-/MovieExportNewGetDataAndPropertiesProcs -C/func/-/MovieExportSetGetMoviePropertyProc -C/func/-/MovieExportSetProgressProc -C/func/-/MovieExportSetSampleDescription -C/func/-/MovieExportSetSettingsFromAtomContainer -C/func/-/MovieExportToDataRef -C/func/-/MovieExportToFile -C/func/-/MovieExportToHandle -C/func/-/MovieExportValidate -C/econst/-/movieExportVideoFilter -C/econst/-/movieExportWidth -Objective-C/clm/QTMovie/movieFileTypes: -Objective-C/instm/QTMovie/movieFormatRepresentation -C/tdef/-/MovieImportComponent -C/func/-/MovieImportDataRef -C/func/-/MovieImportDoUserDialog -C/func/-/MovieImportDoUserDialogDataRef -C/func/-/MovieImportEstimateCompletionTime -C/func/-/MovieImportFile -C/func/-/MovieImportGetAuxiliaryDataType -C/func/-/MovieImportGetDestinationMediaType -C/func/-/MovieImportGetDontBlock -C/func/-/MovieImportGetFileType -C/func/-/MovieImportGetLoadState -C/func/-/MovieImportGetMaxLoadedTime -C/func/-/MovieImportGetMIMETypeList -C/func/-/MovieImportGetSampleDescription -C/func/-/MovieImportGetSettingsAsAtomContainer -C/func/-/MovieImportHandle -C/func/-/MovieImportIdle -C/econst/-/movieImportResultNeedIdles -C/func/-/MovieImportSetAuxiliaryData -C/func/-/MovieImportSetChunkSize -C/func/-/MovieImportSetDimensions -C/func/-/MovieImportSetDontBlock -C/func/-/MovieImportSetDuration -C/func/-/MovieImportSetFromScrap -C/func/-/MovieImportSetIdleManager -C/func/-/MovieImportSetMediaDataRef -C/func/-/MovieImportSetMediaFile -C/func/-/MovieImportSetNewMovieFlags -C/func/-/MovieImportSetOffsetAndLimit -C/func/-/MovieImportSetOffsetAndLimit64 -C/func/-/MovieImportSetProgressProc -C/func/-/MovieImportSetSampleDescription -C/func/-/MovieImportSetSampleDuration -C/func/-/MovieImportSetSettingsFromAtomContainer -C/func/-/MovieImportValidate -C/func/-/MovieImportValidateDataRef -Objective-C/clm/QTMovie/movieNamed:error: -C/tdef/-/MoviePrePrerollCompleteProc -C/tdef/-/MoviePrePrerollCompleteUPP -C/tdef/-/MoviePreviewCallOutProc -C/tdef/-/MoviePreviewCallOutUPP -C/econst/-/movieProgressClose -C/econst/-/movieProgressOpen -C/tdef/-/MovieProgressProc -C/econst/-/movieProgressUpdatePercent -C/tdef/-/MovieProgressUPP -C/tag/-/MovieRecord -C/tdef/-/MoviesErrorProc -C/tdef/-/MoviesErrorUPP -Objective-C/instm/QTMovie/movieShouldLoadData: -Objective-C/instm/NSObject/movieShouldTask: -Objective-C/clm/QTMovie/movieTypesWithOptions: -Objective-C/clm/QTMovie/movieUnfilteredFileTypes -Objective-C/clm/QTMovie/movieUnfilteredPasteboardTypes -Objective-C/clm/QTMovie/movieWithAttributes:error: -Objective-C/clm/QTMovie/movieWithData:error: -Objective-C/clm/QTMovie/movieWithDataReference:error: -Objective-C/clm/QTMovie/movieWithFile:error: -Objective-C/clm/QTMovie/movieWithPasteboard:error: -Objective-C/clm/QTMovie/movieWithQuickTimeMovie:disposeWhenDone:error: -Objective-C/instm/QTMovie/movieWithTimeRange:error: -Objective-C/clm/QTMovie/movieWithURL:error: -C/tdef/-/MPAddressSpaceID -C/tdef/-/MPAddressSpaceInfo -C/func/-/MPAllocate -C/func/-/MPAllocateAligned -C/func/-/MPAllocateTaskStorageIndex -C/tdef/-/MPAreaID -C/func/-/MPArmTimer -C/func/-/MPBlockClear -C/func/-/MPBlockCopy -C/macro/-/MPC_LOADTIME_BASE_POLICY -C/macro/-/MPC_LOADTIME_FLAG_LABELMBUFS -C/macro/-/MPC_LOADTIME_FLAG_NOTLATE -C/macro/-/MPC_LOADTIME_FLAG_UNLOADOK -C/macro/-/MPC_RUNTIME_FLAG_REGISTERED -C/func/-/MPCancelTimer -C/func/-/MPCauseNotification -C/tdef/-/MPCoherenceID -C/tdef/-/MPConsoleID -C/tdef/-/MPCpuID -C/func/-/MPCreateCriticalRegion -C/func/-/MPCreateEvent -C/func/-/MPCreateNotification -C/func/-/MPCreateQueue -C/func/-/MPCreateSemaphore -C/func/-/MPCreateTask -C/func/-/MPCreateTimer -C/tdef/-/MPCriticalRegionID -C/tdef/-/MPCriticalRegionInfo -C/func/-/MPCurrentTaskID -C/func/-/MPDataToCode -C/func/-/MPDeallocateTaskStorageIndex -C/tdef/-/MPDebuggerLevel -C/func/-/MPDelayUntil -C/func/-/MPDeleteCriticalRegion -C/func/-/MPDeleteEvent -C/func/-/MPDeleteNotification -C/func/-/MPDeleteQueue -C/func/-/MPDeleteSemaphore -C/func/-/MPDeleteTimer -C/func/-/MPDisposeTaskException -C/func/-/MPEnterCriticalRegion -C/tdef/-/MPEventFlags -C/tdef/-/MPEventID -C/tdef/-/MPEventInfo -C/tdef/-/MPExceptionKind -C/func/-/MPExit -C/func/-/MPExitCriticalRegion -C/func/-/MPExtractTaskState -C/func/-/MPFree -C/func/-/MPGetAllocatedBlockSize -C/func/-/MPGetNextCpuID -C/func/-/MPGetNextTaskID -C/func/-/MPGetTaskStorageValue -C/func/-/MPI -C/func/-/MPI_Abort -C/func/-/MPI_Accumulate -C/func/-/MPI_Add_error_class -C/func/-/MPI_Add_error_code -C/func/-/MPI_Add_error_string -C/func/-/MPI_Address -C/func/-/MPI_Allgather -C/func/-/MPI_Allgatherv -C/func/-/MPI_Alloc_mem -C/func/-/MPI_Allreduce -C/func/-/MPI_Alltoall -C/func/-/MPI_Alltoallv -C/func/-/MPI_Alltoallw -C/func/-/MPI_Attr_delete -C/func/-/MPI_Attr_get -C/func/-/MPI_Attr_put -C/func/-/MPI_Barrier -C/func/-/MPI_Bcast -C/func/-/MPI_Bsend -C/func/-/MPI_Bsend_init -C/func/-/MPI_Buffer_attach -C/func/-/MPI_Buffer_detach -C/func/-/MPI_Cancel -C/func/-/MPI_Cart_coords -C/func/-/MPI_Cart_create -C/func/-/MPI_Cart_get -C/func/-/MPI_Cart_map -C/func/-/MPI_Cart_rank -C/func/-/MPI_Cart_shift -C/func/-/MPI_Cart_sub -C/func/-/MPI_Cartdim_get -C/func/-/MPI_Close_port -C/func/-/MPI_Comm_accept -C/func/-/MPI_Comm_c2f -C/func/-/MPI_Comm_call_errhandler -C/func/-/MPI_Comm_compare -C/func/-/MPI_Comm_connect -C/func/-/MPI_Comm_create -C/func/-/MPI_Comm_create_errhandler -C/func/-/MPI_Comm_create_keyval -C/func/-/MPI_Comm_delete_attr -C/func/-/MPI_Comm_disconnect -C/func/-/MPI_Comm_dup -C/func/-/MPI_Comm_f2c -C/func/-/MPI_Comm_free -C/func/-/MPI_Comm_free_keyval -C/func/-/MPI_Comm_get_attr -C/func/-/MPI_Comm_get_errhandler -C/func/-/MPI_Comm_get_name -C/func/-/MPI_Comm_get_parent -C/func/-/MPI_Comm_group -C/func/-/MPI_Comm_join -C/func/-/MPI_Comm_rank -C/func/-/MPI_Comm_remote_group -C/func/-/MPI_Comm_remote_size -C/func/-/MPI_Comm_set_attr -C/func/-/MPI_Comm_set_errhandler -C/func/-/MPI_Comm_set_name -C/func/-/MPI_Comm_size -C/func/-/MPI_Comm_spawn -C/func/-/MPI_Comm_spawn_multiple -C/func/-/MPI_Comm_split -C/func/-/MPI_Comm_test_inter -C/func/-/MPI_Dims_create -C/func/-/MPI_Errhandler_create -C/func/-/MPI_Errhandler_free -C/func/-/MPI_Errhandler_get -C/func/-/MPI_Errhandler_set -C/func/-/MPI_Error_class -C/func/-/MPI_Error_string -C/func/-/MPI_Exscan -C/func/-/MPI_File_c2f -C/func/-/MPI_File_call_errhandler -C/func/-/MPI_File_close -C/func/-/MPI_File_create_errhandler -C/func/-/MPI_File_delete -C/func/-/MPI_File_f2c -C/func/-/MPI_File_get_amode -C/func/-/MPI_File_get_atomicity -C/func/-/MPI_File_get_byte_offset -C/func/-/MPI_File_get_errhandler -C/func/-/MPI_File_get_group -C/func/-/MPI_File_get_info -C/func/-/MPI_File_get_position -C/func/-/MPI_File_get_position_shared -C/func/-/MPI_File_get_size -C/func/-/MPI_File_get_type_extent -C/func/-/MPI_File_get_view -C/func/-/MPI_File_iread -C/func/-/MPI_File_iread_at -C/func/-/MPI_File_iread_shared -C/func/-/MPI_File_iwrite -C/func/-/MPI_File_iwrite_at -C/func/-/MPI_File_iwrite_shared -C/func/-/MPI_File_open -C/func/-/MPI_File_preallocate -C/func/-/MPI_File_read -C/func/-/MPI_File_read_all -C/func/-/MPI_File_read_all_begin -C/func/-/MPI_File_read_all_end -C/func/-/MPI_File_read_at -C/func/-/MPI_File_read_at_all -C/func/-/MPI_File_read_at_all_begin -C/func/-/MPI_File_read_at_all_end -C/func/-/MPI_File_read_ordered -C/func/-/MPI_File_read_ordered_begin -C/func/-/MPI_File_read_ordered_end -C/func/-/MPI_File_read_shared -C/func/-/MPI_File_seek -C/func/-/MPI_File_seek_shared -C/func/-/MPI_File_set_atomicity -C/func/-/MPI_File_set_errhandler -C/func/-/MPI_File_set_info -C/func/-/MPI_File_set_size -C/func/-/MPI_File_set_view -C/func/-/MPI_File_sync -C/func/-/MPI_File_write -C/func/-/MPI_File_write_all -C/func/-/MPI_File_write_all_begin -C/func/-/MPI_File_write_all_end -C/func/-/MPI_File_write_at -C/func/-/MPI_File_write_at_all -C/func/-/MPI_File_write_at_all_begin -C/func/-/MPI_File_write_at_all_end -C/func/-/MPI_File_write_ordered -C/func/-/MPI_File_write_ordered_begin -C/func/-/MPI_File_write_ordered_end -C/func/-/MPI_File_write_shared -C/func/-/MPI_Finalize -C/func/-/MPI_Finalized -C/func/-/MPI_Free_mem -C/func/-/MPI_GATHER -C/func/-/MPI_Gather -C/func/-/MPI_Gatherv -C/func/-/MPI_Get -C/func/-/MPI_Get_address -C/func/-/MPI_Get_count -C/func/-/MPI_Get_elements -C/func/-/MPI_Get_processor_name -C/func/-/MPI_Get_version -C/func/-/MPI_Graph_create -C/func/-/MPI_Graph_get -C/func/-/MPI_Graph_map -C/func/-/MPI_Graph_neighbors -C/func/-/MPI_Graph_neighbors_count -C/func/-/MPI_Graphdims_get -C/func/-/MPI_Grequest_complete -C/func/-/MPI_Grequest_start -C/func/-/MPI_Group_c2f -C/func/-/MPI_Group_compare -C/func/-/MPI_Group_difference -C/func/-/MPI_Group_excl -C/func/-/MPI_Group_f2c -C/func/-/MPI_Group_free -C/func/-/MPI_Group_incl -C/func/-/MPI_Group_intersection -C/func/-/MPI_Group_range_excl -C/func/-/MPI_Group_range_incl -C/func/-/MPI_Group_rank -C/func/-/MPI_Group_size -C/func/-/MPI_Group_translate_ranks -C/func/-/MPI_Group_union -C/func/-/MPI_Ibsend -C/func/-/MPI_Info_c2f -C/func/-/MPI_Info_create -C/func/-/MPI_Info_delete -C/func/-/MPI_Info_dup -C/func/-/MPI_Info_f2c -C/func/-/MPI_Info_free -C/func/-/MPI_Info_get -C/func/-/MPI_Info_get_nkeys -C/func/-/MPI_Info_get_nthkey -C/func/-/MPI_Info_get_valuelen -C/func/-/MPI_Info_set -C/func/-/MPI_Init -C/func/-/MPI_Init_thread -C/func/-/MPI_Initialized -C/func/-/MPI_Intercomm_create -C/func/-/MPI_Intercomm_merge -C/func/-/MPI_Iprobe -C/func/-/MPI_Irecv -C/func/-/MPI_Irsend -C/func/-/MPI_Is_thread_main -C/func/-/MPI_Isend -C/func/-/MPI_Issend -C/func/-/MPI_Keyval_create -C/func/-/MPI_Keyval_free -C/func/-/MPI_Lookup_name -C/func/-/MPI_Op_c2f -C/func/-/MPI_Op_create -C/func/-/MPI_Op_f2c -C/func/-/MPI_Op_free -C/func/-/MPI_Open_port -C/func/-/MPI_Pack -C/func/-/MPI_Pack_external -C/func/-/MPI_Pack_external_size -C/func/-/MPI_Pack_size -C/func/-/MPI_Pcontrol -C/func/-/MPI_Probe -C/func/-/MPI_Publish_name -C/func/-/MPI_Put -C/func/-/MPI_Query_thread -C/func/-/MPI_Recv -C/func/-/MPI_Recv_init -C/func/-/MPI_Reduce -C/func/-/MPI_Reduce_scatter -C/func/-/MPI_Register_datarep -C/func/-/MPI_Request_c2f -C/func/-/MPI_Request_f2c -C/func/-/MPI_Request_free -C/func/-/MPI_Request_get_status -C/func/-/MPI_Rsend -C/func/-/MPI_Rsend_init -C/func/-/MPI_Scan -C/func/-/MPI_Scatter -C/func/-/MPI_Scatterv -C/func/-/MPI_Send -C/func/-/MPI_Send_init -C/func/-/MPI_Sendrecv -C/func/-/MPI_Sendrecv_replace -C/func/-/MPI_Sizeof -C/func/-/MPI_Ssend -C/func/-/MPI_Ssend_init -C/func/-/MPI_Start -C/func/-/MPI_Startall -C/func/-/MPI_Status_c2f -C/func/-/MPI_Status_f2c -C/func/-/MPI_Status_set_cancelled -C/func/-/MPI_Status_set_elements -C/func/-/MPI_Test -C/func/-/MPI_Test_cancelled -C/func/-/MPI_Testall -C/func/-/MPI_Testany -C/func/-/MPI_Testsome -C/func/-/MPI_Topo_test -C/func/-/MPI_Type_c2f -C/func/-/MPI_Type_commit -C/func/-/MPI_Type_contiguous -C/func/-/MPI_Type_create_darray -C/func/-/MPI_Type_create_f90_complex -C/func/-/MPI_Type_create_f90_integer -C/func/-/MPI_Type_create_f90_real -C/func/-/MPI_Type_create_hindexed -C/func/-/MPI_Type_create_hvector -C/func/-/MPI_Type_create_indexed_block -C/func/-/MPI_Type_create_keyval -C/func/-/MPI_Type_create_resized -C/func/-/MPI_Type_create_struct -C/func/-/MPI_Type_create_subarray -C/func/-/MPI_Type_delete_attr -C/func/-/MPI_Type_dup -C/func/-/MPI_Type_extent -C/func/-/MPI_Type_f2c -C/func/-/MPI_Type_free -C/func/-/MPI_Type_free_keyval -C/func/-/MPI_Type_get_attr -C/func/-/MPI_Type_get_contents -C/func/-/MPI_Type_get_envelope -C/func/-/MPI_Type_get_extent -C/func/-/MPI_Type_get_name -C/func/-/MPI_Type_get_true_extent -C/func/-/MPI_Type_hindexed -C/func/-/MPI_Type_hvector -C/func/-/MPI_Type_indexed -C/func/-/MPI_Type_lb -C/func/-/MPI_Type_match_size -C/func/-/MPI_Type_set_attr -C/func/-/MPI_Type_set_name -C/func/-/MPI_Type_size -C/func/-/MPI_Type_struct -C/func/-/MPI_Type_ub -C/func/-/MPI_Type_vector -C/func/-/MPI_Unpack -C/func/-/MPI_Unpack_external -C/func/-/MPI_Unpublish_name -C/func/-/MPI_Wait -C/func/-/MPI_Waitall -C/func/-/MPI_Waitany -C/func/-/MPI_Waitsome -C/func/-/MPI_Win_c2f -C/func/-/MPI_Win_call_errhandler -C/func/-/MPI_Win_complete -C/func/-/MPI_Win_create -C/func/-/MPI_Win_create_errhandler -C/func/-/MPI_Win_create_keyval -C/func/-/MPI_Win_delete_attr -C/func/-/MPI_Win_f2c -C/func/-/MPI_Win_fence -C/func/-/MPI_Win_free -C/func/-/MPI_Win_free_keyval -C/func/-/MPI_Win_get_attr -C/func/-/MPI_Win_get_errhandler -C/func/-/MPI_Win_get_group -C/func/-/MPI_Win_get_name -C/func/-/MPI_Win_lock -C/func/-/MPI_Win_post -C/func/-/MPI_Win_set_attr -C/func/-/MPI_Win_set_errhandler -C/func/-/MPI_Win_set_name -C/func/-/MPI_Win_start -C/func/-/MPI_Win_test -C/func/-/MPI_Win_unlock -C/func/-/MPI_Win_wait -C/func/-/MPI_Wtick -C/func/-/MPI_Wtime -C/econst/-/MPLibrary_DevelopmentRevision -C/econst/-/MPLibrary_MajorVersion -C/econst/-/MPLibrary_MinorVersion -C/econst/-/MPLibrary_Release -C/func/-/MPModifyNotification -C/func/-/MPModifyNotificationParameters -C/tdef/-/MPNotificationID -C/tdef/-/MPNotificationInfo -C/func/-/MPNotifyQueue -C/tdef/-/mpo_audit_check_postselect_t -C/tdef/-/mpo_audit_check_preselect_t -C/tdef/-/mpo_bpfdesc_check_receive_t -C/tdef/-/mpo_bpfdesc_label_associate_t -C/tdef/-/mpo_bpfdesc_label_destroy_t -C/tdef/-/mpo_bpfdesc_label_init_t -C/tdef/-/mpo_cred_check_label_update_execve_t -C/tdef/-/mpo_cred_check_label_update_t -C/tdef/-/mpo_cred_check_visible_t -C/tdef/-/mpo_cred_label_associate_fork_t -C/tdef/-/mpo_cred_label_associate_kernel_t -C/tdef/-/mpo_cred_label_associate_t -C/tdef/-/mpo_cred_label_associate_user_t -C/tdef/-/mpo_cred_label_destroy_t -C/tdef/-/mpo_cred_label_externalize_audit_t -C/tdef/-/mpo_cred_label_externalize_t -C/tdef/-/mpo_cred_label_init_t -C/tdef/-/mpo_cred_label_internalize_t -C/tdef/-/mpo_cred_label_update_execve_t -C/tdef/-/mpo_cred_label_update_t -C/tdef/-/mpo_devfs_label_associate_device_t -C/tdef/-/mpo_devfs_label_associate_directory_t -C/tdef/-/mpo_devfs_label_copy_t -C/tdef/-/mpo_devfs_label_destroy_t -C/tdef/-/mpo_devfs_label_init_t -C/tdef/-/mpo_devfs_label_update_t -C/tdef/-/mpo_file_check_change_offset_t -C/tdef/-/mpo_file_check_create_t -C/tdef/-/mpo_file_check_dup_t -C/tdef/-/mpo_file_check_fcntl_t -C/tdef/-/mpo_file_check_get_offset_t -C/tdef/-/mpo_file_check_get_t -C/tdef/-/mpo_file_check_inherit_t -C/tdef/-/mpo_file_check_ioctl_t -C/tdef/-/mpo_file_check_lock_t -C/tdef/-/mpo_file_check_mmap_downgrade_t -C/tdef/-/mpo_file_check_mmap_t -C/tdef/-/mpo_file_check_receive_t -C/tdef/-/mpo_file_check_set_t -C/tdef/-/mpo_file_label_associate_t -C/tdef/-/mpo_file_label_destroy_t -C/tdef/-/mpo_file_label_init_t -C/tdef/-/mpo_ifnet_check_label_update_t -C/tdef/-/mpo_ifnet_check_transmit_t -C/tdef/-/mpo_ifnet_label_associate_t -C/tdef/-/mpo_ifnet_label_copy_t -C/tdef/-/mpo_ifnet_label_destroy_t -C/tdef/-/mpo_ifnet_label_externalize_t -C/tdef/-/mpo_ifnet_label_init_t -C/tdef/-/mpo_ifnet_label_internalize_t -C/tdef/-/mpo_ifnet_label_recycle_t -C/tdef/-/mpo_ifnet_label_update_t -C/tdef/-/mpo_inpcb_check_deliver_t -C/tdef/-/mpo_inpcb_label_associate_t -C/tdef/-/mpo_inpcb_label_destroy_t -C/tdef/-/mpo_inpcb_label_init_t -C/tdef/-/mpo_inpcb_label_recycle_t -C/tdef/-/mpo_inpcb_label_update_t -C/tdef/-/mpo_iokit_check_device_t -C/tdef/-/mpo_ipq_label_associate_t -C/tdef/-/mpo_ipq_label_compare_t -C/tdef/-/mpo_ipq_label_destroy_t -C/tdef/-/mpo_ipq_label_init_t -C/tdef/-/mpo_ipq_label_update_t -C/tdef/-/mpo_lctx_check_label_update_t -C/tdef/-/mpo_lctx_label_destroy_t -C/tdef/-/mpo_lctx_label_externalize_t -C/tdef/-/mpo_lctx_label_init_t -C/tdef/-/mpo_lctx_label_internalize_t -C/tdef/-/mpo_lctx_label_update_t -C/tdef/-/mpo_lctx_notify_create_t -C/tdef/-/mpo_lctx_notify_join_t -C/tdef/-/mpo_lctx_notify_leave_t -C/tdef/-/mpo_mbuf_label_associate_bpfdesc_t -C/tdef/-/mpo_mbuf_label_associate_ifnet_t -C/tdef/-/mpo_mbuf_label_associate_inpcb_t -C/tdef/-/mpo_mbuf_label_associate_ipq_t -C/tdef/-/mpo_mbuf_label_associate_linklayer_t -C/tdef/-/mpo_mbuf_label_associate_multicast_encap_t -C/tdef/-/mpo_mbuf_label_associate_netlayer_t -C/tdef/-/mpo_mbuf_label_associate_socket_t -C/tdef/-/mpo_mbuf_label_copy_t -C/tdef/-/mpo_mbuf_label_destroy_t -C/tdef/-/mpo_mbuf_label_init_t -C/tdef/-/mpo_mount_check_fsctl_t -C/tdef/-/mpo_mount_check_getattr_t -C/tdef/-/mpo_mount_check_label_update_t -C/tdef/-/mpo_mount_check_mount_t -C/tdef/-/mpo_mount_check_remount_t -C/tdef/-/mpo_mount_check_setattr_t -C/tdef/-/mpo_mount_check_stat_t -C/tdef/-/mpo_mount_check_umount_t -C/tdef/-/mpo_mount_label_associate_t -C/tdef/-/mpo_mount_label_destroy_t -C/tdef/-/mpo_mount_label_externalize_t -C/tdef/-/mpo_mount_label_init_t -C/tdef/-/mpo_mount_label_internalize_t -C/tdef/-/mpo_netinet_fragment_t -C/tdef/-/mpo_netinet_icmp_reply_t -C/tdef/-/mpo_netinet_tcp_reply_t -C/tdef/-/mpo_pipe_check_ioctl_t -C/tdef/-/mpo_pipe_check_kqfilter_t -C/tdef/-/mpo_pipe_check_label_update_t -C/tdef/-/mpo_pipe_check_read_t -C/tdef/-/mpo_pipe_check_select_t -C/tdef/-/mpo_pipe_check_stat_t -C/tdef/-/mpo_pipe_check_write_t -C/tdef/-/mpo_pipe_label_associate_t -C/tdef/-/mpo_pipe_label_copy_t -C/tdef/-/mpo_pipe_label_destroy_t -C/tdef/-/mpo_pipe_label_externalize_t -C/tdef/-/mpo_pipe_label_init_t -C/tdef/-/mpo_pipe_label_internalize_t -C/tdef/-/mpo_pipe_label_update_t -C/tdef/-/mpo_policy_destroy_t -C/tdef/-/mpo_policy_init_t -C/tdef/-/mpo_policy_initbsd_t -C/tdef/-/mpo_policy_syscall_t -C/tdef/-/mpo_port_check_copy_send_t -C/tdef/-/mpo_port_check_hold_receive_t -C/tdef/-/mpo_port_check_hold_send_once_t -C/tdef/-/mpo_port_check_hold_send_t -C/tdef/-/mpo_port_check_label_update_t -C/tdef/-/mpo_port_check_make_send_once_t -C/tdef/-/mpo_port_check_make_send_t -C/tdef/-/mpo_port_check_method_t -C/tdef/-/mpo_port_check_move_receive_t -C/tdef/-/mpo_port_check_move_send_once_t -C/tdef/-/mpo_port_check_move_send_t -C/tdef/-/mpo_port_check_receive_t -C/tdef/-/mpo_port_check_send_t -C/tdef/-/mpo_port_check_service_t -C/tdef/-/mpo_port_label_associate_kernel_t -C/tdef/-/mpo_port_label_associate_t -C/tdef/-/mpo_port_label_compute_t -C/tdef/-/mpo_port_label_copy_t -C/tdef/-/mpo_port_label_destroy_t -C/tdef/-/mpo_port_label_init_t -C/tdef/-/mpo_port_label_update_cred_t -C/tdef/-/mpo_port_label_update_kobject_t -C/tdef/-/mpo_posixsem_check_create_t -C/tdef/-/mpo_posixsem_check_open_t -C/tdef/-/mpo_posixsem_check_post_t -C/tdef/-/mpo_posixsem_check_unlink_t -C/tdef/-/mpo_posixsem_check_wait_t -C/tdef/-/mpo_posixsem_label_associate_t -C/tdef/-/mpo_posixsem_label_destroy_t -C/tdef/-/mpo_posixsem_label_init_t -C/tdef/-/mpo_posixshm_check_create_t -C/tdef/-/mpo_posixshm_check_mmap_t -C/tdef/-/mpo_posixshm_check_open_t -C/tdef/-/mpo_posixshm_check_stat_t -C/tdef/-/mpo_posixshm_check_truncate_t -C/tdef/-/mpo_posixshm_check_unlink_t -C/tdef/-/mpo_posixshm_label_associate_t -C/tdef/-/mpo_posixshm_label_destroy_t -C/tdef/-/mpo_posixshm_label_init_t -C/tdef/-/mpo_proc_check_debug_t -C/tdef/-/mpo_proc_check_fork_t -C/tdef/-/mpo_proc_check_get_task_name_t -C/tdef/-/mpo_proc_check_get_task_t -C/tdef/-/mpo_proc_check_getaudit_t -C/tdef/-/mpo_proc_check_getauid_t -C/tdef/-/mpo_proc_check_getlcid_t -C/tdef/-/mpo_proc_check_mprotect_t -C/tdef/-/mpo_proc_check_sched_t -C/tdef/-/mpo_proc_check_setaudit_t -C/tdef/-/mpo_proc_check_setauid_t -C/tdef/-/mpo_proc_check_setlcid_t -C/tdef/-/mpo_proc_check_signal_t -C/tdef/-/mpo_proc_check_wait_t -C/tdef/-/mpo_proc_label_destroy_t -C/tdef/-/mpo_proc_label_init_t -C/tdef/-/mpo_socket_check_accept_t -C/tdef/-/mpo_socket_check_accepted_t -C/tdef/-/mpo_socket_check_bind_t -C/tdef/-/mpo_socket_check_connect_t -C/tdef/-/mpo_socket_check_create_t -C/tdef/-/mpo_socket_check_deliver_t -C/tdef/-/mpo_socket_check_getsockopt_t -C/tdef/-/mpo_socket_check_kqfilter_t -C/tdef/-/mpo_socket_check_label_update_t -C/tdef/-/mpo_socket_check_listen_t -C/tdef/-/mpo_socket_check_receive_t -C/tdef/-/mpo_socket_check_received_t -C/tdef/-/mpo_socket_check_select_t -C/tdef/-/mpo_socket_check_send_t -C/tdef/-/mpo_socket_check_setsockopt_t -C/tdef/-/mpo_socket_check_stat_t -C/tdef/-/mpo_socket_label_associate_accept_t -C/tdef/-/mpo_socket_label_associate_t -C/tdef/-/mpo_socket_label_copy_t -C/tdef/-/mpo_socket_label_destroy_t -C/tdef/-/mpo_socket_label_externalize_t -C/tdef/-/mpo_socket_label_init_t -C/tdef/-/mpo_socket_label_internalize_t -C/tdef/-/mpo_socket_label_update_t -C/tdef/-/mpo_socketpeer_label_associate_mbuf_t -C/tdef/-/mpo_socketpeer_label_associate_socket_t -C/tdef/-/mpo_socketpeer_label_destroy_t -C/tdef/-/mpo_socketpeer_label_externalize_t -C/tdef/-/mpo_socketpeer_label_init_t -C/tdef/-/mpo_system_check_acct_t -C/tdef/-/mpo_system_check_audit_t -C/tdef/-/mpo_system_check_auditctl_t -C/tdef/-/mpo_system_check_auditon_t -C/tdef/-/mpo_system_check_host_priv_t -C/tdef/-/mpo_system_check_nfsd_t -C/tdef/-/mpo_system_check_reboot_t -C/tdef/-/mpo_system_check_settime_t -C/tdef/-/mpo_system_check_swapoff_t -C/tdef/-/mpo_system_check_swapon_t -C/tdef/-/mpo_system_check_sysctl_t -C/tdef/-/mpo_sysvmsg_label_associate_t -C/tdef/-/mpo_sysvmsg_label_destroy_t -C/tdef/-/mpo_sysvmsg_label_init_t -C/tdef/-/mpo_sysvmsg_label_recycle_t -C/tdef/-/mpo_sysvmsq_check_enqueue_t -C/tdef/-/mpo_sysvmsq_check_msgrcv_t -C/tdef/-/mpo_sysvmsq_check_msgrmid_t -C/tdef/-/mpo_sysvmsq_check_msqctl_t -C/tdef/-/mpo_sysvmsq_check_msqget_t -C/tdef/-/mpo_sysvmsq_check_msqrcv_t -C/tdef/-/mpo_sysvmsq_check_msqsnd_t -C/tdef/-/mpo_sysvmsq_label_associate_t -C/tdef/-/mpo_sysvmsq_label_destroy_t -C/tdef/-/mpo_sysvmsq_label_init_t -C/tdef/-/mpo_sysvmsq_label_recycle_t -C/tdef/-/mpo_sysvsem_check_semctl_t -C/tdef/-/mpo_sysvsem_check_semget_t -C/tdef/-/mpo_sysvsem_check_semop_t -C/tdef/-/mpo_sysvsem_label_associate_t -C/tdef/-/mpo_sysvsem_label_destroy_t -C/tdef/-/mpo_sysvsem_label_init_t -C/tdef/-/mpo_sysvsem_label_recycle_t -C/tdef/-/mpo_sysvshm_check_shmat_t -C/tdef/-/mpo_sysvshm_check_shmctl_t -C/tdef/-/mpo_sysvshm_check_shmdt_t -C/tdef/-/mpo_sysvshm_check_shmget_t -C/tdef/-/mpo_sysvshm_label_associate_t -C/tdef/-/mpo_sysvshm_label_destroy_t -C/tdef/-/mpo_sysvshm_label_init_t -C/tdef/-/mpo_sysvshm_label_recycle_t -C/tdef/-/mpo_task_label_associate_kernel_t -C/tdef/-/mpo_task_label_associate_t -C/tdef/-/mpo_task_label_copy_t -C/tdef/-/mpo_task_label_destroy_t -C/tdef/-/mpo_task_label_externalize_t -C/tdef/-/mpo_task_label_init_t -C/tdef/-/mpo_task_label_internalize_t -C/tdef/-/mpo_task_label_update_t -C/tdef/-/mpo_thread_userret_t -C/tdef/-/mpo_vnode_check_access_t -C/tdef/-/mpo_vnode_check_chdir_t -C/tdef/-/mpo_vnode_check_chroot_t -C/tdef/-/mpo_vnode_check_create_t -C/tdef/-/mpo_vnode_check_deleteextattr_t -C/tdef/-/mpo_vnode_check_exchangedata_t -C/tdef/-/mpo_vnode_check_exec_t -C/tdef/-/mpo_vnode_check_getattrlist_t -C/tdef/-/mpo_vnode_check_getextattr_t -C/tdef/-/mpo_vnode_check_ioctl_t -C/tdef/-/mpo_vnode_check_kqfilter_t -C/tdef/-/mpo_vnode_check_label_update_t -C/tdef/-/mpo_vnode_check_link_t -C/tdef/-/mpo_vnode_check_listextattr_t -C/tdef/-/mpo_vnode_check_lookup_t -C/tdef/-/mpo_vnode_check_open_t -C/tdef/-/mpo_vnode_check_read_t -C/tdef/-/mpo_vnode_check_readdir_t -C/tdef/-/mpo_vnode_check_readlink_t -C/tdef/-/mpo_vnode_check_rename_from_t -C/tdef/-/mpo_vnode_check_rename_to_t -C/tdef/-/mpo_vnode_check_revoke_t -C/tdef/-/mpo_vnode_check_select_t -C/tdef/-/mpo_vnode_check_setattrlist_t -C/tdef/-/mpo_vnode_check_setextattr_t -C/tdef/-/mpo_vnode_check_setflags_t -C/tdef/-/mpo_vnode_check_setmode_t -C/tdef/-/mpo_vnode_check_setowner_t -C/tdef/-/mpo_vnode_check_setutimes_t -C/tdef/-/mpo_vnode_check_signature_t -C/tdef/-/mpo_vnode_check_stat_t -C/tdef/-/mpo_vnode_check_truncate_t -C/tdef/-/mpo_vnode_check_uipc_bind_t -C/tdef/-/mpo_vnode_check_uipc_connect_t -C/tdef/-/mpo_vnode_check_unlink_t -C/tdef/-/mpo_vnode_check_write_t -C/tdef/-/mpo_vnode_label_associate_devfs_t -C/tdef/-/mpo_vnode_label_associate_extattr_t -C/tdef/-/mpo_vnode_label_associate_file_t -C/tdef/-/mpo_vnode_label_associate_pipe_t -C/tdef/-/mpo_vnode_label_associate_posixsem_t -C/tdef/-/mpo_vnode_label_associate_posixshm_t -C/tdef/-/mpo_vnode_label_associate_singlelabel_t -C/tdef/-/mpo_vnode_label_associate_socket_t -C/tdef/-/mpo_vnode_label_copy_t -C/tdef/-/mpo_vnode_label_destroy_t -C/tdef/-/mpo_vnode_label_externalize_audit_t -C/tdef/-/mpo_vnode_label_externalize_t -C/tdef/-/mpo_vnode_label_init_t -C/tdef/-/mpo_vnode_label_internalize_t -C/tdef/-/mpo_vnode_label_recycle_t -C/tdef/-/mpo_vnode_label_store_t -C/tdef/-/mpo_vnode_label_update_extattr_t -C/tdef/-/mpo_vnode_label_update_t -C/tdef/-/mpo_vnode_notify_create_t -C/func/-/mpool -C/func/-/mpool_close -C/func/-/mpool_filter -C/func/-/mpool_get -C/func/-/mpool_new -C/func/-/mpool_open -C/func/-/mpool_put -C/func/-/mpool_sync -C/tdef/-/MPOpaqueID -C/tdef/-/MPOpaqueIDClass -C/tdef/-/MPPageSizeClass -C/tdef/-/MPProcessID -C/func/-/MPProcessors -C/func/-/MPProcessorsScheduled -C/tdef/-/MPQueueID -C/tdef/-/MPQueueInfo -C/func/-/MPRegisterDebugger -C/func/-/MPRemoteCall -C/func/-/MPRemoteCallCFM -C/tdef/-/MPRemoteContext -C/tdef/-/MPRemoteProcedure -C/func/-/mprotect -C/tdef/-/MPSemaphoreCount -C/tdef/-/MPSemaphoreID -C/tdef/-/MPSemaphoreInfo -C/func/-/MPSetEvent -C/func/-/MPSetExceptionHandler -C/func/-/MPSetQueueReserve -C/func/-/MPSetTaskState -C/func/-/MPSetTaskStorageValue -C/func/-/MPSetTaskType -C/func/-/MPSetTaskWeight -C/func/-/MPSetTimerNotify -C/func/-/MPSignalSemaphore -C/tdef/-/MPTaskID -C/tdef/-/MPTaskInfo -C/tdef/-/MPTaskInfoVersion2 -C/func/-/MPTaskIsPreemptive -C/tdef/-/MPTaskOptions -C/tdef/-/MPTaskStateKind -C/tdef/-/MPTaskWeight -C/func/-/MPTerminateTask -C/func/-/MPThrowException -C/tdef/-/MPTimerID -C/func/-/MPUnregisterDebugger -C/func/-/MPWaitForEvent -C/func/-/MPWaitOnQueue -C/func/-/MPWaitOnSemaphore -C/econst/-/mpWorkFlagCopyWorkBlock -C/econst/-/mpWorkFlagDoCompletion -C/econst/-/mpWorkFlagDontBlock -C/econst/-/mpWorkFlagDoWork -C/econst/-/mpWorkFlagGetIsRunning -C/econst/-/mpWorkFlagGetProcessorCount -C/func/-/MPYield -C/func/-/mrand48 -Objective-C/clm/DRMSF/msf -Objective-C/instm/DRMSF/msfByAdding: -Objective-C/instm/DRMSF/msfBySubtracting: -Objective-C/clm/DRMSF/msfWithFrames: -Objective-C/clm/DRMSF/msfWithString: -Objective-C/instm/NSPortMessage/msgid -C/func/-/msync -C/func/-/mtrans -C/func/-/mtransD -C/func/-/mul -C/func/-/mul_add -C/func/-/multibyte -C/tdef/-/MultiDevParam -Objective-C/instm/NSConnection/multipleThreadsEnabled -Objective-C/instm/NSNumberFormatter/multiplier -JavaScript/instm/SVGMatrix/multiply -JavaScript/instm/WebKitCSSMatrix/multiply -C/func/-/munlock -C/func/-/munmap -C/tdef/-/MusicEventIterator -C/func/-/MusicEventIteratorDeleteEvent -C/func/-/MusicEventIteratorGetEventInfo -C/func/-/MusicEventIteratorHasCurrentEvent -C/func/-/MusicEventIteratorHasNextEvent -C/func/-/MusicEventIteratorHasPreviousEvent -C/func/-/MusicEventIteratorNextEvent -C/func/-/MusicEventIteratorPreviousEvent -C/func/-/MusicEventIteratorSeek -C/func/-/MusicEventIteratorSetEventInfo -C/func/-/MusicEventIteratorSetEventTime -C/tdef/-/MusicEventType -C/tdef/-/MusicEventUserData -C/func/-/MusicMediaGetIndexedTunePlayer -C/tdef/-/MusicPlayer -C/func/-/MusicPlayerGetBeatsForHostTime -C/func/-/MusicPlayerGetHostTimeForBeats -C/func/-/MusicPlayerGetPlayRateScalar -C/func/-/MusicPlayerGetSequence -C/func/-/MusicPlayerGetTime -C/func/-/MusicPlayerIsPlaying -C/func/-/MusicPlayerPreroll -C/func/-/MusicPlayerSetPlayRateScalar -C/func/-/MusicPlayerSetSequence -C/func/-/MusicPlayerSetTime -C/func/-/MusicPlayerStart -C/func/-/MusicPlayerStop -C/tdef/-/MusicSequence -C/func/-/MusicSequenceBarBeatTimeToBeats -C/func/-/MusicSequenceBeatsToBarBeatTime -C/func/-/MusicSequenceDisposeTrack -C/func/-/MusicSequenceFileCreate -C/func/-/MusicSequenceFileCreateData -C/tdef/-/MusicSequenceFileFlags -C/func/-/MusicSequenceFileLoad -C/func/-/MusicSequenceFileLoadData -C/tdef/-/MusicSequenceFileTypeID -C/func/-/MusicSequenceGetAUGraph -C/func/-/MusicSequenceGetBeatsForSeconds -C/func/-/MusicSequenceGetIndTrack -C/func/-/MusicSequenceGetInfoDictionary -C/func/-/MusicSequenceGetSecondsForBeats -C/func/-/MusicSequenceGetSequenceType -C/macro/-/MusicSequenceGetSMPTEResolution -C/func/-/MusicSequenceGetTempoTrack -C/func/-/MusicSequenceGetTrackCount -C/func/-/MusicSequenceGetTrackIndex -C/tdef/-/MusicSequenceLoadFlags -C/func/-/MusicSequenceNewTrack -C/func/-/MusicSequenceReverse -C/func/-/MusicSequenceSetAUGraph -C/func/-/MusicSequenceSetMIDIEndpoint -C/func/-/MusicSequenceSetSequenceType -C/macro/-/MusicSequenceSetSMPTEResolution -C/func/-/MusicSequenceSetUserCallback -C/tdef/-/MusicSequenceType -C/tdef/-/MusicSequenceUserCallback -C/tdef/-/MusicTimeStamp -C/tdef/-/MusicTrack -C/func/-/MusicTrackClear -C/func/-/MusicTrackCopyInsert -C/func/-/MusicTrackCut -C/func/-/MusicTrackGetDestMIDIEndpoint -C/func/-/MusicTrackGetDestNode -C/func/-/MusicTrackGetProperty -C/func/-/MusicTrackGetSequence -C/tdef/-/MusicTrackLoopInfo -C/func/-/MusicTrackMerge -C/func/-/MusicTrackMoveEvents -C/func/-/MusicTrackNewAUPresetEvent -C/func/-/MusicTrackNewExtendedControlEvent -C/func/-/MusicTrackNewExtendedNoteEvent -C/func/-/MusicTrackNewExtendedTempoEvent -C/func/-/MusicTrackNewMetaEvent -C/func/-/MusicTrackNewMIDIChannelEvent -C/func/-/MusicTrackNewMIDINoteEvent -C/func/-/MusicTrackNewMIDIRawDataEvent -C/func/-/MusicTrackNewParameterEvent -C/func/-/MusicTrackNewUserEvent -C/func/-/MusicTrackSetDestMIDIEndpoint -C/func/-/MusicTrackSetDestNode -C/func/-/MusicTrackSetProperty -Objective-C/instm/NSObject/mutableArrayValueForKey: -Objective-C/instm/NSObject/mutableArrayValueForKeyPath: -Objective-C/instm/NSMutableData/mutableBytes -Objective-C/instm/NSTreeNode/mutableChildNodes -Objective-C/instm/NSObject/mutableCopy -Objective-C/intfm/NSMutableCopying/mutableCopyWithZone: -Objective-C/clm/NSObject/mutableCopyWithZone: -Objective-C/instm/NSObject/mutableSetValueForKey: -Objective-C/instm/NSManagedObject/mutableSetValueForKey: -Objective-C/instm/NSObject/mutableSetValueForKeyPath: -Objective-C/instm/NSMutableAttributedString/mutableString -JavaScript/data/DOMWindow/MutationEvent -JavaScript/cl/-/MutationEvent -Objective-C/clm/IMAVButton/muteButton -Objective-C/instm/QTMovie/muted -JavaScript/data/HTMLMediaElement/muted -C/func/-/mvadd_wch -C/func/-/mvadd_wchnstr -C/func/-/mvadd_wchstr -C/func/-/mvaddch -C/func/-/mvaddchnstr -C/func/-/mvaddchstr -C/func/-/mvaddnstr -C/func/-/mvaddnwstr -C/func/-/mvaddstr -C/func/-/mvaddwstr -C/func/-/mvchgat -C/func/-/mvcur -C/func/-/mvdelch -C/func/-/mvderwin -C/func/-/mvget_wch -C/func/-/mvget_wstr -C/func/-/mvgetch -C/func/-/mvgetn_wstr -C/func/-/mvgetnstr -C/func/-/mvgetstr -C/func/-/mvhline -C/func/-/mvhline_set -C/func/-/mvin_wch -C/func/-/mvin_wchnstr -C/func/-/mvin_wchstr -C/func/-/mvinch -C/func/-/mvinchnstr -C/func/-/mvinchstr -C/func/-/mvinnstr -C/func/-/mvinnwstr -C/func/-/mvins_nwstr -C/func/-/mvins_wch -C/func/-/mvins_wstr -C/func/-/mvinsch -C/func/-/mvinsnstr -C/func/-/mvinsstr -C/func/-/mvinstr -C/func/-/mvinwstr -C/func/-/mvprintw -C/func/-/mvscanw -C/func/-/mvvline -C/func/-/mvvline_set -C/func/-/mvwadd_wch -C/func/-/mvwadd_wchnstr -C/func/-/mvwadd_wchstr -C/func/-/mvwaddch -C/func/-/mvwaddchnstr -C/func/-/mvwaddchstr -C/func/-/mvwaddnstr -C/func/-/mvwaddnwstr -C/func/-/mvwaddstr -C/func/-/mvwaddwstr -C/func/-/mvwchgat -C/func/-/mvwdelch -C/func/-/mvwget_wch -C/func/-/mvwget_wstr -C/func/-/mvwgetch -C/func/-/mvwgetn_wstr -C/func/-/mvwgetnstr -C/func/-/mvwgetstr -C/func/-/mvwhline -C/func/-/mvwhline_set -C/func/-/mvwin -C/func/-/mvwin_wch -C/func/-/mvwin_wchnstr -C/func/-/mvwin_wchstr -C/func/-/mvwinch -C/func/-/mvwinchnstr -C/func/-/mvwinchstr -C/func/-/mvwinnstr -C/func/-/mvwinnwstr -C/func/-/mvwins_nwstr -C/func/-/mvwins_wch -C/func/-/mvwins_wstr -C/func/-/mvwinsch -C/func/-/mvwinsnstr -C/func/-/mvwinsstr -C/func/-/mvwinstr -C/func/-/mvwinwstr -C/func/-/mvwprintw -C/func/-/mvwscanw -C/func/-/mvwvline -C/func/-/mvwvline_set -C++/clm/ATADeviceNub/MyATACallback -Objective-C/clm/IMService/myIdleTime -Objective-C/clm/IMService/myStatus -C++/clm/ATATimerEventSource/myTimeout -C/macro/-/N_KEV_VECTORS -Objective-C/instp/CIFilter/name -Objective-C/instm/CIFilter/name -Objective-C/instm/NSNameSpecifier/name -Objective-C/instm/AMAction/name -Objective-C/instm/CIKernel/name -Objective-C/instm/NSConditionLock/name -Objective-C/instm/NSRecursiveLock/name -Objective-C/instm/NSNotification/name -Objective-C/instm/NSColorList/name -Objective-C/instm/NSPrinter/name -Objective-C/instm/PDFActionNamed/name -Objective-C/instm/PDFAnnotationStamp/name -Objective-C/instm/NSLock/name -Objective-C/instm/NSCondition/name -JavaScript/instp/Application/name -Objective-C/instm/CAEmitterCell/name -Objective-C/instp/CAEmitterCell/name -Objective-C/instm/QTDataReference/name -Objective-C/instm/WebFrame/name -Objective-C/instm/NSNetService/name -Objective-C/instm/NSEntityMapping/name -Objective-C/instm/NSPropertyMapping/name -Objective-C/instm/NSPropertyDescription/name -Objective-C/instm/NSSound/name -Objective-C/instm/IMService/name -Objective-C/instm/NSTimeZone/name -C++/instm/TestInvocation/name -C++/instm/TestCase/name -C++/instm/TestSuite/name -C++/instm/Test/name -Objective-C/instp/PSAuthor/name -Objective-C/instm/NSException/name -Objective-C/instp/CWInterface/name -Objective-C/instm/XGConnection/name -Objective-C/instm/XGJob/name -Objective-C/instm/XGGrid/name -Objective-C/instm/NSXMLNode/name -Objective-C/instp/IOBluetoothDevice/name -Objective-C/instm/IOBluetoothHostController/name -Objective-C/instm/NSHTTPCookie/name -Objective-C/instm/NSPasteboard/name -Objective-C/instm/NSImage/name -Objective-C/instm/NSThread/name -Objective-C/instm/NSHost/name -Objective-C/instp/CAValueFunction/name -Objective-C/instm/CAValueFunction/name -Objective-C/instm/NSCache/name -Objective-C/instm/NSOperationQueue/name -Objective-C/instm/NSEntityDescription/name -Objective-C/instm/CALayer/name -Objective-C/instp/CALayer/name -JavaScript/data/DOMWindow/name -JavaScript/data/Attr/name -JavaScript/data/DOMCoreException/name -JavaScript/data/DocumentType/name -JavaScript/data/HTMLImageElement/name -JavaScript/data/HTMLTextAreaElement/name -JavaScript/data/HTMLIFrameElement/name -JavaScript/data/HTMLParamElement/name -JavaScript/data/File/name -JavaScript/data/HTMLEmbedElement/name -JavaScript/data/HTMLMapElement/name -JavaScript/data/HTMLSelectElement/name -JavaScript/data/HTMLAppletElement/name -JavaScript/data/HTMLFrameElement/name -JavaScript/data/HTMLFormElement/name -JavaScript/data/EventException/name -JavaScript/data/HTMLAnchorElement/name -JavaScript/data/HTMLButtonElement/name -JavaScript/data/HTMLMetaElement/name -JavaScript/data/HTMLObjectElement/name -JavaScript/data/HTMLInputElement/name -JavaScript/data/SVGException/name -JavaScript/data/Plugin/name -JavaScript/data/RangeException/name -JavaScript/data/SharedWorkerContext/name -JavaScript/data/WebKitCSSKeyframesRule/name -JavaScript/data/WebGLActiveInfo/name -JavaScript/data/XMLHttpRequestException/name -JavaScript/data/XPathException/name -JavaScript/instm/HTMLCollection/namedItem -JavaScript/instm/HTMLAllCollection/namedItem -JavaScript/instm/HTMLSelectElement/namedItem -JavaScript/instm/PluginArray/namedItem -JavaScript/instm/MimeTypeArray/namedItem -JavaScript/instm/Plugin/namedItem -JavaScript/data/DOMWindow/NamedNodeMap -JavaScript/cl/-/NamedNodeMap -Objective-C/instm/ABPeoplePickerView/nameDoubleAction -Objective-C/instp/ABPeoplePickerView/nameDoubleAction -Objective-C/instm/NSSavePanel/nameFieldLabel -Objective-C/instm/NSSavePanel/nameFieldStringValue -Objective-C/instm/IBDocument/nameForDocumentImage: -C++/clm/IONetworkMedium/nameForType -C++/clm/IOService/nameMatching -Objective-C/intfm/IKSlideshowDataSource/nameOfSlideshowItemAtIndex: -Objective-C/instp/IOBluetoothDevice/nameOrAddress -Objective-C/instm/NSHost/names -Objective-C/instm/NSBrowser/namesOfPromisedFilesDroppedAtDestination: -Objective-C/intfm/NSDraggingInfo/namesOfPromisedFilesDroppedAtDestination: -Objective-C/instm/NSObject/namesOfPromisedFilesDroppedAtDestination: -JavaScript/clconst/DOMCoreException/NAMESPACE_ERR -Objective-C/instm/NSXMLElement/namespaceForPrefix: -Objective-C/instm/NSXMLElement/namespaces -JavaScript/data/core/namespaceURI -Objective-C/clm/NSXMLNode/namespaceWithName:stringValue: -C/func/-/nan -C/func/-/nanf -C/func/-/nanl -C/func/-/nanosleep -C/func/-/napms -JavaScript/clconst/DataGridColumn/NATURAL_SORT -JavaScript/data/HTMLImageElement/naturalHeight -C++/macro/-/naturalOutputSegment -JavaScript/data/HTMLImageElement/naturalWidth -JavaScript/data/DOMWindow/navigator -JavaScript/cl/-/Navigator -JavaScript/data/WorkerContext/navigator -C/func/-/NCMBeginMatching -C/tdef/-/NCMConcatProfileSet -C/tdef/-/NCMConcatProfileSpec -C/tdef/-/NCMDeviceProfileInfo -C/func/-/NCMDrawMatchedPicture -C/func/-/NCMGetProfileLocation -C/func/-/NCMSetSystemProfile -C/func/-/NCMUnflattenProfile -C/func/-/NCMUseProfileComment -C/func/-/ncurses -C/func/-/NCWConcatColorWorld -C/func/-/NCWNewColorWorld -C/func/-/NCWNewLinkProfile -C/func/-/nd6_lookup_ipv6 -C/func/-/nearbyint -C/func/-/nearbyintf -C/func/-/nearbyintl -JavaScript/clconst/WebGLRenderingContext/NEAREST -JavaScript/clconst/WebGLRenderingContext/NEAREST_MIPMAP_LINEAR -JavaScript/clconst/WebGLRenderingContext/NEAREST_MIPMAP_NEAREST -C/func/-/NearestMacTextEncodings -JavaScript/data/SVGLocatable/nearestViewportElement -Objective-C/instm/NSMenuItemCell/needsDisplay -Objective-C/instm/NSView/needsDisplay -Objective-C/instm/CALayer/needsDisplay -Objective-C/clm/CALayer/needsDisplayForKey: -Objective-C/instp/CALayer/needsDisplayOnBoundsChange -Objective-C/instm/CALayer/needsDisplayOnBoundsChange -Objective-C/instm/CALayer/needsLayout -Objective-C/instm/NSView/needsPanelToBecomeKey -Objective-C/instm/NSMenuItemCell/needsSizing -Objective-C/instm/NSMenuView/needsSizing -Objective-C/instm/NSFileWrapper/needsToBeUpdatedFromPath: -Objective-C/instm/NSView/needsToDrawRect: -Objective-C/instm/NSNumberFormatter/negativeFormat -Objective-C/instm/NSNumberFormatter/negativeInfinitySymbol -Objective-C/instm/NSNumberFormatter/negativePrefix -Objective-C/instm/NSNumberFormatter/negativeSuffix -Objective-C/instm/NSRuleEditor/nestingMode -C/func/-/net_init_add -C/tdef/-/net_init_func_ptr -Objective-C/instm/XGConnection/netService -Objective-C/intfm/NSNetServiceDelegate/netService:didNotPublish: -Objective-C/intfm/NSNetServiceDelegate/netService:didNotResolve: -Objective-C/intfm/NSNetServiceDelegate/netService:didUpdateTXTRecordData: -Objective-C/intfm/NSNetServiceBrowserDelegate/netServiceBrowser:didFindDomain:moreComing: -Objective-C/intfm/NSNetServiceBrowserDelegate/netServiceBrowser:didFindService:moreComing: -Objective-C/intfm/NSNetServiceBrowserDelegate/netServiceBrowser:didNotSearch: -Objective-C/intfm/NSNetServiceBrowserDelegate/netServiceBrowser:didRemoveDomain:moreComing: -Objective-C/intfm/NSNetServiceBrowserDelegate/netServiceBrowser:didRemoveService:moreComing: -Objective-C/intfm/NSNetServiceBrowserDelegate/netServiceBrowserDidStopSearch: -Objective-C/intfm/NSNetServiceBrowserDelegate/netServiceBrowserWillSearch: -Objective-C/intfm/NSNetServiceDelegate/netServiceDidPublish: -Objective-C/intfm/NSNetServiceDelegate/netServiceDidResolveAddress: -Objective-C/intfm/NSNetServiceDelegate/netServiceDidStop: -Objective-C/intfm/NSNetServiceDelegate/netServiceWillPublish: -Objective-C/intfm/NSNetServiceDelegate/netServiceWillResolve: -C/func/-/netsnmp_add_list_data -C/func/-/netsnmp_agent -C/tdef/-/netsnmp_agent_request_info -C/func/-/netsnmp_baby_steps -C/tdef/-/netsnmp_baby_steps_access_methods -C/tdef/-/netsnmp_baby_steps_modes -C/func/-/netsnmp_bulk_to_next -C/func/-/netsnmp_cache_handler -C/tdef/-/netsnmp_column_info -C/func/-/netsnmp_compare_cstring -C/func/-/netsnmp_compare_mem -C/func/-/netsnmp_compare_netsnmp_index -C/func/-/netsnmp_container -C/func/-/netsnmp_Container_iterator -C/func/-/netsnmp_container_simple_free -C/func/-/netsnmp_container_table_container_extract -C/tdef/-/netsnmp_data_list -C/tdef/-/netsnmp_data_list_s -C/func/-/netsnmp_debug -C/func/-/netsnmp_ds_get_boolean -C/func/-/netsnmp_ds_get_int -C/func/-/netsnmp_ds_get_string -C/macro/-/NETSNMP_DS_LIBRARY_ID -C/func/-/netsnmp_ds_register_config -C/func/-/netsnmp_ds_register_premib -C/func/-/netsnmp_ds_set_boolean -C/func/-/netsnmp_ds_set_int -C/func/-/netsnmp_ds_set_string -C/func/-/netsnmp_ds_shutdown -C/func/-/netsnmp_example_scalar_int -C/macro/-/netsnmp_get_baby_steps_handler -C/func/-/netsnmp_get_multiplexer_handler -C/func/-/netsnmp_handler -C/tdef/-/netsnmp_handler_registration -C/func/-/netsnmp_instance -C/func/-/netsnmp_is_cache_valid -C/tdef/-/netsnmp_iterator_info -C/func/-/netsnmp_iterator_info_s -C/func/-/netsnmp_leaf -C/func/-/netsnmp_library -C/tdef/-/netsnmp_mib_handler -C/tdef/-/netsnmp_mib_handler_methods -C/func/-/netsnmp_mib_handler_methods -C/func/-/netsnmp_mib_utilities -C/func/-/netsnmp_mode_end_call -C/func/-/netsnmp_multiplexer -C/func/-/netsnmp_old_api -C/tdef/-/netsnmp_pdu -C/func/-/netsnmp_read_only -C/tdef/-/netsnmp_request_info -C/func/-/netsnmp_row_merge -C/func/-/netsnmp_scalar -C/func/-/netsnmp_scalar_group_group -C/func/-/netsnmp_serialize -C/tdef/-/netsnmp_session -C/func/-/netsnmp_set_mode_request_error -C/func/-/netsnmp_set_request_error -C/func/-/netsnmp_stash_cache -C/func/-/netsnmp_table -C/func/-/netsnmp_table_array -C/func/-/netsnmp_table_data -C/func/-/netsnmp_table_dataset -C/func/-/netsnmp_table_iterator -C/tdef/-/netsnmp_table_registration_info -C/tdef/-/netsnmp_table_request_info -C/func/-/netsnmp_utilities -C/tdef/-/netsnmp_variable_list -C/func/-/netsnmp_watcher -C/func/-/network -JavaScript/clconst/HTMLMediaElement/NETWORK_EMPTY -JavaScript/clconst/DOMCoreException/NETWORK_ERR -JavaScript/clconst/XMLHttpRequestException/NETWORK_ERR -JavaScript/clconst/HTMLMediaElement/NETWORK_IDLE -JavaScript/clconst/HTMLMediaElement/NETWORK_LOADED -JavaScript/clconst/HTMLMediaElement/NETWORK_LOADING -JavaScript/clconst/HTMLMediaElement/NETWORK_NO_SOURCE -C/tag/-/NetworkDataAccessTypes -C/tag/-/NetworkDataBufferTypes -C/tag/-/NetworkFeatureFlags -JavaScript/data/HTMLMediaElement/networkState -JavaScript/clconst/WebGLRenderingContext/NEVER -JavaScript/clconst/DataGridColumn/NEVER_SORTED -Objective-C/clm/NSObject/new -C/func/-/new_fieldtype -C/func/-/new_form -C/func/-/new_page -C/func/-/new_session_cb -C/func/-/NewAlias -C/func/-/NewAliasFilterUPP -C/func/-/NewAliasMinimal -C/func/-/NewAliasMinimalFromFullPath -C/func/-/NewAUGraph -Objective-C/instm/NSAtomicStore/newCacheNodeForManagedObject: -C/func/-/NewCDataHandlerUPP -Objective-C/instm/IKImageBrowserView/newCellForRepresentedItem: -C/func/-/NewCharDataHandlerUPP -C/func/-/NewCMBitmapCallBackUPP -C/func/-/NewCMConcatCallBackUPP -C/func/-/NewCMFlattenUPP -C/func/-/NewCMMIterateUPP -C/func/-/NewCMProfileAccessUPP -C/func/-/NewCMProfileFilterUPP -C/func/-/NewCMProfileIterateUPP -C/func/-/NewCommentHandlerUPP -C/func/-/NewComponentFunctionUPP -C/func/-/NewComponentMPWorkFunctionUPP -C/func/-/NewComponentRoutineUPP -C++/instm/IOHIDDevice/newCountryCodeNumber -C/func/-/NewDataBrowserAcceptDragUPP -C/func/-/NewDataBrowserAddDragItemUPP -C/func/-/NewDataBrowserDrawItemUPP -C/func/-/NewDataBrowserEditItemUPP -C/func/-/NewDataBrowserGetContextualMenuUPP -C/func/-/NewDataBrowserHitTestUPP -C/func/-/NewDataBrowserItemAcceptDragUPP -C/func/-/NewDataBrowserItemCompareUPP -C/func/-/NewDataBrowserItemDataUPP -C/func/-/NewDataBrowserItemDragRgnUPP -C/func/-/NewDataBrowserItemHelpContentUPP -C/func/-/NewDataBrowserItemNotificationUPP -C/func/-/NewDataBrowserItemNotificationWithItemUPP -C/func/-/NewDataBrowserItemReceiveDragUPP -C/func/-/NewDataBrowserItemUPP -C/func/-/NewDataBrowserPostProcessDragUPP -C/func/-/NewDataBrowserReceiveDragUPP -C/func/-/NewDataBrowserSelectContextualMenuUPP -C/func/-/NewDataBrowserTrackingUPP -C/func/-/NewDataHCompletionUPP -Objective-C/instm/NSDocumentController/newDocument: -C/func/-/NewEndDocumentHandlerUPP -C/func/-/NewEndElementHandlerUPP -C/func/-/NewFNSubscriptionUPP -C/func/-/NewFSVolumeEjectUPP -C/func/-/NewFSVolumeMountUPP -C/func/-/NewFSVolumeUnmountUPP -C/func/-/NewGestalt -C/func/-/NewGestaltValue -C/func/-/NewGetMissingComponentResourceUPP -C/func/-/NewImageCodecDrawBandCompleteUPP -C/func/-/NewImageCodecMPDrawBandUPP -C/func/-/NewImageCodecTimeTriggerUPP -C/func/-/NewImageGWorld -C/func/-/NewIOCompletionUPP -Objective-C/instm/NSCollectionView/newItemForRepresentedObject: -C/econst/-/newLineBit -Objective-C/clm/NSCharacterSet/newlineCharacterSet -C/econst/-/newLineCharMask -C/econst/-/newLineMask -C/func/-/newlocale -C++/instm/IOHIDDevice/newLocationIDNumber -C++/instm/IOHIDDevice/newManufacturerString -C++/instm/IONetworkController/newModelString -C/func/-/NewMovieEditState -C/func/-/NewMovieExportGetDataUPP -C/func/-/NewMovieExportGetPropertyUPP -C/func/-/NewMovieExportStageReachedCallbackUPP -C/func/-/NewMovieTrack -C/func/-/NewMusicEventIterator -C/func/-/NewMusicPlayer -C/func/-/NewMusicSequence -Objective-C/instm/NSObjectController/newObject -Objective-C/instm/NSDictionaryController/newObject -C/func/-/newpad -C/func/-/NewPMIdleUPP -C/func/-/NewPreprocessInstructionHandlerUPP -C++/instm/IOHIDDevice/newPrimaryUsageNumber -C++/instm/IOHIDDevice/newPrimaryUsagePageNumber -C++/instm/IOHIDDevice/newProductIDNumber -C++/instm/IOHIDDevice/newProductString -C/func/-/NewQTBandwidthNotificationUPP -C/func/-/NewQTTrackPropertyListenerUPP -Objective-C/instm/NSAtomicStore/newReferenceObjectForManagedObject: -C++/instm/IOHIDDevice/newReportDescriptor -C++/instm/IOHIDDevice/newReportIntervalNumber -C/func/-/NewResErrUPP -C++/instm/IONetworkController/newRevisionString -JavaScript/data/SVGZoomEvent/newScale -C/func/-/NewSCModalFilterUPP -C/func/-/NewSCModalHookUPP -Objective-C/instm/NSObject/newScriptingObjectOfClass:forValueForKey:withContentsValue:properties: -C/func/-/NewSelectorFunctionUPP -C++/instm/IOHIDDevice/newSerialNumber -C++/instm/IOHIDDevice/newSerialNumberString -C/func/-/NewSpeechChannel -C/func/-/NewSpeechDoneUPP -C/func/-/NewSpeechErrorUPP -C/func/-/NewSpeechPhonemeUPP -C/func/-/NewSpeechSyncUPP -C/func/-/NewSpeechTextDoneUPP -C/func/-/NewSpeechWordUPP -C/func/-/NewSRCallBackUPP -C/func/-/NewStartDocumentHandlerUPP -C/func/-/NewStartElementHandlerUPP -C++/instm/IOService/newTemperature -C/func/-/newterm -C/func/-/NewTrackEditState -C/func/-/NewTrackMedia -JavaScript/data/SVGZoomEvent/newTranslate -C++/instm/IOHIDDevice/newTransportString -C/func/-/NewUnicodeToTextFallbackUPP -C++/instm/IONetworkInterface/newUserClient -C++/instm/IOAudioEngine/newUserClient -C++/instm/IOAudioControl/newUserClient -C++/instm/IOHIDDevice/newUserClient -C++/instm/IOStream/newUserClient -C++/instm/IOService/newUserClient -JavaScript/data/StorageEvent/newValue -JavaScript/data/MutationEvent/newValue -JavaScript/instm/SVGAngle/newValueSpecifiedUnits -JavaScript/instm/SVGLength/newValueSpecifiedUnits -C/func/-/NewVdigIntUPP -C++/instm/IOHIDDevice/newVendorIDNumber -C++/instm/IOHIDDevice/newVendorIDSourceNumber -C++/instm/IONetworkController/newVendorString -C++/instm/IOHIDDevice/newVersionNumber -C/func/-/newwin -Objective-C/instm/CalCalendarItem/nextAlarmDate -Objective-C/instm/NSObject/nextAnchorForEntityName: -C/macro/-/NextAudioFileRegion -Objective-C/instm/NSTimeZone/nextDaylightSavingTimeTransition -Objective-C/instm/NSTimeZone/nextDaylightSavingTimeTransitionAfterDate: -JavaScript/data/Element/nextElementSibling -Objective-C/instm/NSWindow/nextEventMatchingMask: -Objective-C/instm/NSWindow/nextEventMatchingMask:untilDate:inMode:dequeue: -Objective-C/instm/NSApplication/nextEventMatchingMask:untilDate:inMode:dequeue: -Objective-C/instm/CARenderer/nextFrameTime -C++/instm/IOService/nextIdleTimeout -Objective-C/instm/NSView/nextKeyView -Objective-C/instm/NSXMLNode/nextNode -JavaScript/instm/NodeIterator/nextNode -JavaScript/instm/TreeWalker/nextNode -Objective-C/instm/NSEnumerator/nextObject -C/func/-/NextRequest -Objective-C/instm/NSResponder/nextResponder -Objective-C/instm/NSXMLNode/nextSibling -JavaScript/data/svg/nextSibling -JavaScript/data/core/nextSibling -JavaScript/instm/TreeWalker/nextSibling -Objective-C/instm/NSCell/nextState -Objective-C/instm/NSTextField/nextText -C/func/-/nexttowardf -Objective-C/instm/NSView/nextValidKeyView -C/func/-/nextwctype -C/func/-/nextwctype_l -Objective-C/instm/NSAttributedString/nextWordFromIndex:forward: -JavaScript/instm/InjectedScriptHost/nextWorkerId -C/func/-/nfsclnt -C/func/-/nfssvc -C/func/-/nftw -Objective-C/instm/NSViewController/nibBundle -Objective-C/instm/NSViewController/nibName -C/func/-/nice -JavaScript/clconst/WebGLRenderingContext/NICEST -C/macro/-/Nil -C/macro/-/nil -Objective-C/instm/NSNumberFormatter/nilSymbol -C/func/-/nl -C/func/-/nl_langinfo -C/func/-/nl_langinfo_l -C/tag/-/nlist -C/func/-/nlist -C/tag/-/nlist_64 -C/macro/-/NO -JavaScript/clconst/DOMCoreException/NO_DATA_ALLOWED_ERR -JavaScript/clconst/WebGLRenderingContext/NO_ERROR -JavaScript/clconst/DOMCoreException/NO_MODIFICATION_ALLOWED_ERR -JavaScript/clconst/FileError/NO_MODIFICATION_ALLOWED_ERR -C/econst/-/noCacheBit -C/econst/-/noCacheMask -C/func/-/nocbreak -JavaScript/data/DOMWindow/Node -JavaScript/clconst/Range/NODE_AFTER -JavaScript/clconst/Range/NODE_BEFORE -JavaScript/clconst/Range/NODE_BEFORE_AND_AFTER -JavaScript/clconst/Range/NODE_INSIDE -Objective-C/instm/ODNode/nodeDetailsForKeys:error: -JavaScript/data/DOMWindow/NodeFilter -JavaScript/cl/-/NodeFilter -C/tag/-/NodeFlags -JavaScript/instm/InjectedScriptHost/nodeForId -JavaScript/cl/-/NodeIterator -C/func/-/nodelay -JavaScript/data/DOMWindow/NodeList -JavaScript/cl/-/NodeList -Objective-C/instm/ODNode/nodeName -Objective-C/instp/ODNode/nodeName -JavaScript/data/core/nodeName -Objective-C/instm/ODSession/nodeNamesAndReturnError: -Objective-C/instm/NSXMLNode/nodesForXPath:error: -JavaScript/data/core/nodeType -JavaScript/data/core/nodeValue -Objective-C/clm/ODNode/nodeWithSession:name:error: -Objective-C/clm/ODNode/nodeWithSession:type:error: -C/econst/-/noDMAErr -C/econst/-/noDriveErr -C/func/-/noecho -C/econst/-/noErr -C/func/-/nofilter -JavaScript/data/HTMLAreaElement/noHref -Objective-C/instp/CWInterface/noise -Objective-C/instp/CWNetwork/noise -C/econst/-/noMacDskErr -C/econst/-/noMoreKeyColorsErr -JavaScript/clconst/IDBDatabaseException/NON_TRANSIENT_ERR -Objective-C/clm/NSCharacterSet/nonBaseCharacterSet -JavaScript/clconst/WebGLRenderingContext/NONE -C/func/-/nonl -Objective-C/instm/NSValue/nonretainedObjectValue -C/econst/-/noPasteboardPromiseKeeperErr -C/func/-/noqiflush -C/func/-/noraw -C/econst/-/noRecordOfApp -JavaScript/data/HTMLFrameElement/noResize -Objective-C/instm/NSResponder/noResponderFor: -C++/instm/IOFilterInterruptEventSource/normalInterruptOccurred -C++/instm/IOInterruptEventSource/normalInterruptOccurred -JavaScript/instm/core/normalize -Objective-C/instm/NSXMLElement/normalizeAdjacentTextNodesPreservingCDATA: -JavaScript/data/SVGAnimatedPathData/normalizedPathSegList -Objective-C/instp/NSTouch/normalizedPosition -Objective-C/instm/NSTouch/normalizedPosition -JavaScript/data/HTMLHRElement/noShade -C/econst/-/noSynthFound -JavaScript/clconst/IDBDatabaseException/NOT_ALLOWED_ERR -JavaScript/clconst/DOMCoreException/NOT_FOUND_ERR -JavaScript/clconst/IDBDatabaseException/NOT_FOUND_ERR -JavaScript/clconst/FileError/NOT_FOUND_ERR -JavaScript/clconst/FileError/NOT_READABLE_ERR -JavaScript/clconst/DOMCoreException/NOT_SUPPORTED_ERR -C/econst/-/notAFileErr -Objective-C/clm/NSDecimalNumber/notANumber -Objective-C/instm/NSNumberFormatter/notANumberSymbol -C/econst/-/notAppropriateForClassic -C/econst/-/notARemountErr -JavaScript/data/DOMWindow/Notation -JavaScript/cl/-/Notation -JavaScript/clconst/core/NOTATION_NODE -Objective-C/instm/NSXMLDTD/notationDeclarationForName: -C/tdef/-/notationDeclSAXFunc -Objective-C/instm/NSXMLDTDNode/notationName -JavaScript/data/Entity/notationName -JavaScript/data/DocumentType/notations -Objective-C/instm/NSPrinter/note -Objective-C/instm/NSWorkspace/noteFileSystemChanged -Objective-C/instm/NSWorkspace/noteFileSystemChanged: -Objective-C/instm/NSTableView/noteHeightOfRowsWithIndexesChanged: -Objective-C/instm/NSBrowser/noteHeightOfRowsWithIndexesChanged:inColumn: -Objective-C/instm/NSDocumentController/noteNewRecentDocument: -Objective-C/instm/NSDocumentController/noteNewRecentDocumentURL: -Objective-C/instm/NSComboBox/noteNumberOfItemsChanged -Objective-C/instm/NSComboBoxCell/noteNumberOfItemsChanged -Objective-C/instm/NSTableView/noteNumberOfRowsChanged -JavaScript/clconst/WebGLRenderingContext/NOTEQUAL -Objective-C/instp/CalCalendarItem/notes -Objective-C/instm/CalCalendarItem/notes -Objective-C/instm/CalCalendar/notes -Objective-C/instp/CalCalendar/notes -Objective-C/instm/NSWorkspace/noteUserDefaultsChanged -C/econst/-/notExactMatrixErr -C/econst/-/notExactSizeErr -JavaScript/cl/-/Notification -Objective-C/instm/NSMetadataQuery/notificationBatchingInterval -Objective-C/clm/IMService/notificationCenter -Objective-C/instm/NSWorkspace/notificationCenter -JavaScript/cl/-/NotificationCenter -Objective-C/clm/NSDistributedNotificationCenter/notificationCenterForType: -Objective-C/clm/NSNotification/notificationWithName:object: -Objective-C/clm/NSNotification/notificationWithName:object:userInfo: -Objective-C/instm/FxHostCapabilities/notifiesParameterChangedForGenerators -C/func/-/notify -C++/instm/IOFWLocalIsochPort/notify -C/func/-/notify_cancel -C/func/-/notify_check -C/func/-/notify_get_state -C/func/-/notify_post -C/func/-/notify_register_check -C/func/-/notify_register_dispatch -C/func/-/notify_register_file_descriptor -C/func/-/notify_register_mach_port -C/func/-/notify_register_signal -C/macro/-/NOTIFY_REUSE -C/func/-/notify_set_state -C/macro/-/NOTIFY_STATUS_FAILED -C/macro/-/NOTIFY_STATUS_INVALID_FILE -C/macro/-/NOTIFY_STATUS_INVALID_NAME -C/macro/-/NOTIFY_STATUS_INVALID_PORT -C/macro/-/NOTIFY_STATUS_INVALID_REQUEST -C/macro/-/NOTIFY_STATUS_INVALID_SIGNAL -C/macro/-/NOTIFY_STATUS_INVALID_TOKEN -C/macro/-/NOTIFY_STATUS_NOT_AUTHORIZED -C/macro/-/NOTIFY_STATUS_OK -C++/instm/IOSCSIParallelInterfaceController/NotifyClientsOfBusReset -C++/instm/IOSCSIParallelInterfaceController/NotifyClientsOfPortStatusChange -C++/instm/IOATADevice/notifyEvent -C/func/-/notimeout -C/econst/-/notPasteboardOwnerErr -C/econst/-/notPatCopy -C/econst/-/notPatOr -C/econst/-/notPatXor -Objective-C/clm/NSCompoundPredicate/notPredicateWithSubpredicate: -Objective-C/instm/NSLayoutManager/notShownAttributeForGlyphAtIndex: -C/econst/-/notSrcBic -C/econst/-/notSrcCopy -C/econst/-/notSrcOr -C/econst/-/notSrcXor -JavaScript/data/HTMLFormElement/noValidate -JavaScript/data/HTMLTableCellElement/noWrap -C/func/-/nrand48 -C/econst/-/NS_BigEndian -C/macro/-/NS_DURING -C/macro/-/NS_ENDHANDLER -C/func/-/ns_get16 -C/func/-/ns_get32 -C/macro/-/NS_HANDLER -C/econst/-/NS_LittleEndian -C/func/-/ns_put16 -C/func/-/ns_put32 -C/econst/-/NS_UnknownByteOrder -C/macro/-/NS_VALUERETURN -C/macro/-/NS_VOIDRETURN -C/data/-/NSAbortModalException -C/data/-/NSAbortPrintingException -C/econst/-/NSAboveBottom -C/econst/-/NSAboveTop -Objective-C/cat/-/NSAccessibility -C/func/-/NSAccessibilityActionDescription -C/data/-/NSAccessibilityAllowedValuesAttribute -C/data/-/NSAccessibilityApplicationActivatedNotification -C/data/-/NSAccessibilityApplicationDeactivatedNotification -C/data/-/NSAccessibilityApplicationHiddenNotification -C/data/-/NSAccessibilityApplicationRole -C/data/-/NSAccessibilityApplicationShownNotification -C/data/-/NSAccessibilityAscendingSortDirectionValue -C/data/-/NSAccessibilityAttachmentTextAttribute -C/data/-/NSAccessibilityAttributedStringForRangeParameterizedAttribute -C/data/-/NSAccessibilityBackgroundColorTextAttribute -C/data/-/NSAccessibilityBoundsForRangeParameterizedAttribute -C/data/-/NSAccessibilityBrowserRole -C/data/-/NSAccessibilityBusyIndicatorRole -C/data/-/NSAccessibilityButtonRole -C/data/-/NSAccessibilityCancelAction -C/data/-/NSAccessibilityCancelButtonAttribute -C/data/-/NSAccessibilityCellForColumnAndRowParameterizedAttribute -C/data/-/NSAccessibilityCellRole -C/data/-/NSAccessibilityCenterTabStopMarkerTypeValue -C/data/-/NSAccessibilityCentimetersUnitValue -C/data/-/NSAccessibilityCheckBoxRole -C/data/-/NSAccessibilityChildrenAttribute -C/data/-/NSAccessibilityClearButtonAttribute -C/data/-/NSAccessibilityCloseButtonAttribute -C/data/-/NSAccessibilityCloseButtonSubrole -C/data/-/NSAccessibilityColorWellRole -C/data/-/NSAccessibilityColumnCountAttribute -C/data/-/NSAccessibilityColumnHeaderUIElementsAttribute -C/data/-/NSAccessibilityColumnIndexRangeAttribute -C/data/-/NSAccessibilityColumnRole -C/data/-/NSAccessibilityColumnsAttribute -C/data/-/NSAccessibilityColumnTitlesAttribute -C/data/-/NSAccessibilityComboBoxRole -C/data/-/NSAccessibilityConfirmAction -C/data/-/NSAccessibilityContentListSubrole -C/data/-/NSAccessibilityContentsAttribute -C/data/-/NSAccessibilityCreatedNotification -C/data/-/NSAccessibilityCriticalValueAttribute -C/data/-/NSAccessibilityDecimalTabStopMarkerTypeValue -C/data/-/NSAccessibilityDecrementAction -C/data/-/NSAccessibilityDecrementArrowSubrole -C/data/-/NSAccessibilityDecrementButtonAttribute -C/data/-/NSAccessibilityDecrementPageSubrole -C/data/-/NSAccessibilityDefaultButtonAttribute -C/data/-/NSAccessibilityDefinitionListSubrole -C/data/-/NSAccessibilityDeleteAction -C/data/-/NSAccessibilityDescendingSortDirectionValue -C/data/-/NSAccessibilityDescriptionAttribute -C/data/-/NSAccessibilityDialogSubrole -C/data/-/NSAccessibilityDisclosedByRowAttribute -C/data/-/NSAccessibilityDisclosedRowsAttribute -C/data/-/NSAccessibilityDisclosingAttribute -C/data/-/NSAccessibilityDisclosureLevelAttribute -C/data/-/NSAccessibilityDisclosureTriangleRole -C/data/-/NSAccessibilityDocumentAttribute -C/data/-/NSAccessibilityDrawerCreatedNotification -C/data/-/NSAccessibilityDrawerRole -C/data/-/NSAccessibilityEditedAttribute -C/data/-/NSAccessibilityEnabledAttribute -C/data/-/NSAccessibilityErrorCodeExceptionInfo -C/data/-/NSAccessibilityException -C/data/-/NSAccessibilityExpandedAttribute -C/data/-/NSAccessibilityFilenameAttribute -C/data/-/NSAccessibilityFirstLineIndentMarkerTypeValue -C/data/-/NSAccessibilityFloatingWindowSubrole -C/data/-/NSAccessibilityFocusedAttribute -C/data/-/NSAccessibilityFocusedUIElementAttribute -C/data/-/NSAccessibilityFocusedUIElementChangedNotification -C/data/-/NSAccessibilityFocusedWindowAttribute -C/data/-/NSAccessibilityFocusedWindowChangedNotification -C/data/-/NSAccessibilityFontFamilyKey -C/data/-/NSAccessibilityFontNameKey -C/data/-/NSAccessibilityFontSizeKey -C/data/-/NSAccessibilityFontTextAttribute -C/data/-/NSAccessibilityForegroundColorTextAttribute -C/data/-/NSAccessibilityFrontmostAttribute -C/data/-/NSAccessibilityGridRole -C/data/-/NSAccessibilityGroupRole -C/data/-/NSAccessibilityGrowAreaAttribute -C/data/-/NSAccessibilityGrowAreaRole -C/data/-/NSAccessibilityHandleRole -C/data/-/NSAccessibilityHandlesAttribute -C/data/-/NSAccessibilityHeaderAttribute -C/data/-/NSAccessibilityHeadIndentMarkerTypeValue -C/data/-/NSAccessibilityHelpAttribute -C/data/-/NSAccessibilityHelpTagCreatedNotification -C/data/-/NSAccessibilityHelpTagRole -C/data/-/NSAccessibilityHiddenAttribute -C/data/-/NSAccessibilityHorizontalOrientationValue -C/data/-/NSAccessibilityHorizontalScrollBarAttribute -C/data/-/NSAccessibilityHorizontalUnitDescriptionAttribute -C/data/-/NSAccessibilityHorizontalUnitsAttribute -C/data/-/NSAccessibilityImageRole -C/data/-/NSAccessibilityInchesUnitValue -C/data/-/NSAccessibilityIncrementAction -C/data/-/NSAccessibilityIncrementArrowSubrole -C/data/-/NSAccessibilityIncrementButtonAttribute -C/data/-/NSAccessibilityIncrementorRole -C/data/-/NSAccessibilityIncrementPageSubrole -C/data/-/NSAccessibilityIndexAttribute -C/data/-/NSAccessibilityInsertionPointLineNumberAttribute -C/data/-/NSAccessibilityLabelUIElementsAttribute -C/data/-/NSAccessibilityLabelValueAttribute -C/data/-/NSAccessibilityLayoutAreaRole -C/data/-/NSAccessibilityLayoutItemRole -C/data/-/NSAccessibilityLayoutPointForScreenPointParameterizedAttribute -C/data/-/NSAccessibilityLayoutSizeForScreenSizeParameterizedAttribute -C/data/-/NSAccessibilityLeftTabStopMarkerTypeValue -C/data/-/NSAccessibilityLineForIndexParameterizedAttribute -C/data/-/NSAccessibilityLinkedUIElementsAttribute -C/data/-/NSAccessibilityLinkRole -C/data/-/NSAccessibilityLinkTextAttribute -C/data/-/NSAccessibilityListRole -C/data/-/NSAccessibilityMainAttribute -C/data/-/NSAccessibilityMainWindowAttribute -C/data/-/NSAccessibilityMainWindowChangedNotification -C/data/-/NSAccessibilityMarkerGroupUIElementAttribute -C/data/-/NSAccessibilityMarkerTypeAttribute -C/data/-/NSAccessibilityMarkerTypeDescriptionAttribute -C/data/-/NSAccessibilityMarkerUIElementsAttribute -C/data/-/NSAccessibilityMarkerValuesAttribute -C/data/-/NSAccessibilityMatteContentUIElementAttribute -C/data/-/NSAccessibilityMatteHoleAttribute -C/data/-/NSAccessibilityMatteRole -C/data/-/NSAccessibilityMaxValueAttribute -C/data/-/NSAccessibilityMenuBarAttribute -C/data/-/NSAccessibilityMenuBarRole -C/data/-/NSAccessibilityMenuButtonRole -C/data/-/NSAccessibilityMenuItemRole -C/data/-/NSAccessibilityMenuRole -C/data/-/NSAccessibilityMinimizeButtonAttribute -C/data/-/NSAccessibilityMinimizeButtonSubrole -C/data/-/NSAccessibilityMinimizedAttribute -C/data/-/NSAccessibilityMinValueAttribute -C/data/-/NSAccessibilityMisspelledTextAttribute -C/data/-/NSAccessibilityModalAttribute -C/data/-/NSAccessibilityMovedNotification -C/data/-/NSAccessibilityNextContentsAttribute -C/data/-/NSAccessibilityNumberOfCharactersAttribute -C/data/-/NSAccessibilityOrderedByRowAttribute -C/data/-/NSAccessibilityOrientationAttribute -C/data/-/NSAccessibilityOutlineRole -C/data/-/NSAccessibilityOutlineRowSubrole -C/data/-/NSAccessibilityOverflowButtonAttribute -C/data/-/NSAccessibilityParentAttribute -C/data/-/NSAccessibilityPicasUnitValue -C/data/-/NSAccessibilityPickAction -C/data/-/NSAccessibilityPlaceholderValueAttribute -C/data/-/NSAccessibilityPointsUnitValue -C/data/-/NSAccessibilityPopUpButtonRole -C/data/-/NSAccessibilityPositionAttribute -C/func/-/NSAccessibilityPostNotification -C/data/-/NSAccessibilityPressAction -C/data/-/NSAccessibilityPreviousContentsAttribute -C/data/-/NSAccessibilityProgressIndicatorRole -C/data/-/NSAccessibilityProxyAttribute -C/data/-/NSAccessibilityRadioButtonRole -C/data/-/NSAccessibilityRadioGroupRole -C/data/-/NSAccessibilityRaiseAction -C/func/-/NSAccessibilityRaiseBadArgumentException -C/data/-/NSAccessibilityRangeForIndexParameterizedAttribute -C/data/-/NSAccessibilityRangeForLineParameterizedAttribute -C/data/-/NSAccessibilityRangeForPositionParameterizedAttribute -C/data/-/NSAccessibilityRatingIndicatorSubrole -C/data/-/NSAccessibilityRelevanceIndicatorRole -C/data/-/NSAccessibilityResizedNotification -C/data/-/NSAccessibilityRightTabStopMarkerTypeValue -C/data/-/NSAccessibilityRoleAttribute -C/func/-/NSAccessibilityRoleDescription -C/data/-/NSAccessibilityRoleDescriptionAttribute -C/func/-/NSAccessibilityRoleDescriptionForUIElement -C/data/-/NSAccessibilityRowCollapsedNotification -C/data/-/NSAccessibilityRowCountAttribute -C/data/-/NSAccessibilityRowCountChangedNotification -C/data/-/NSAccessibilityRowExpandedNotification -C/data/-/NSAccessibilityRowHeaderUIElementsAttribute -C/data/-/NSAccessibilityRowIndexRangeAttribute -C/data/-/NSAccessibilityRowRole -C/data/-/NSAccessibilityRowsAttribute -C/data/-/NSAccessibilityRTFForRangeParameterizedAttribute -C/data/-/NSAccessibilityRulerMarkerRole -C/data/-/NSAccessibilityRulerRole -C/data/-/NSAccessibilityScreenPointForLayoutPointParameterizedAttribute -C/data/-/NSAccessibilityScreenSizeForLayoutSizeParameterizedAttribute -C/data/-/NSAccessibilityScrollAreaRole -C/data/-/NSAccessibilityScrollBarRole -C/data/-/NSAccessibilitySearchButtonAttribute -C/data/-/NSAccessibilitySearchFieldSubrole -C/data/-/NSAccessibilitySearchMenuAttribute -C/data/-/NSAccessibilitySecureTextFieldSubrole -C/data/-/NSAccessibilitySelectedAttribute -C/data/-/NSAccessibilitySelectedCellsAttribute -C/data/-/NSAccessibilitySelectedCellsChangedNotification -C/data/-/NSAccessibilitySelectedChildrenAttribute -C/data/-/NSAccessibilitySelectedChildrenChangedNotification -C/data/-/NSAccessibilitySelectedChildrenMovedNotification -C/data/-/NSAccessibilitySelectedColumnsAttribute -C/data/-/NSAccessibilitySelectedColumnsChangedNotification -C/data/-/NSAccessibilitySelectedRowsAttribute -C/data/-/NSAccessibilitySelectedRowsChangedNotification -C/data/-/NSAccessibilitySelectedTextAttribute -C/data/-/NSAccessibilitySelectedTextChangedNotification -C/data/-/NSAccessibilitySelectedTextRangeAttribute -C/data/-/NSAccessibilitySelectedTextRangesAttribute -C/data/-/NSAccessibilityServesAsTitleForUIElementsAttribute -C/data/-/NSAccessibilityShadowTextAttribute -C/data/-/NSAccessibilitySharedCharacterRangeAttribute -C/data/-/NSAccessibilitySharedTextUIElementsAttribute -C/data/-/NSAccessibilitySheetCreatedNotification -C/data/-/NSAccessibilitySheetRole -C/data/-/NSAccessibilityShowMenuAction -C/data/-/NSAccessibilityShownMenuAttribute -C/data/-/NSAccessibilitySizeAttribute -C/data/-/NSAccessibilitySliderRole -C/data/-/NSAccessibilitySortButtonRole -C/data/-/NSAccessibilitySortButtonSubrole -C/data/-/NSAccessibilitySortDirectionAttribute -C/data/-/NSAccessibilitySplitGroupRole -C/data/-/NSAccessibilitySplitterRole -C/data/-/NSAccessibilitySplittersAttribute -C/data/-/NSAccessibilityStandardWindowSubrole -C/data/-/NSAccessibilityStaticTextRole -C/data/-/NSAccessibilityStrikethroughColorTextAttribute -C/data/-/NSAccessibilityStrikethroughTextAttribute -C/data/-/NSAccessibilityStringForRangeParameterizedAttribute -C/data/-/NSAccessibilityStyleRangeForIndexParameterizedAttribute -C/data/-/NSAccessibilitySubroleAttribute -C/data/-/NSAccessibilitySuperscriptTextAttribute -C/data/-/NSAccessibilitySystemDialogSubrole -C/data/-/NSAccessibilitySystemFloatingWindowSubrole -C/data/-/NSAccessibilitySystemWideRole -C/data/-/NSAccessibilityTabGroupRole -C/data/-/NSAccessibilityTableRole -C/data/-/NSAccessibilityTableRowSubrole -C/data/-/NSAccessibilityTabsAttribute -C/data/-/NSAccessibilityTailIndentMarkerTypeValue -C/data/-/NSAccessibilityTextAreaRole -C/data/-/NSAccessibilityTextAttachmentSubrole -C/data/-/NSAccessibilityTextFieldRole -C/data/-/NSAccessibilityTextLinkSubrole -C/data/-/NSAccessibilityTimelineSubrole -C/data/-/NSAccessibilityTitleAttribute -C/data/-/NSAccessibilityTitleChangedNotification -C/data/-/NSAccessibilityTitleUIElementAttribute -C/data/-/NSAccessibilityToolbarButtonAttribute -C/data/-/NSAccessibilityToolbarButtonSubrole -C/data/-/NSAccessibilityToolbarRole -C/data/-/NSAccessibilityTopLevelUIElementAttribute -C/data/-/NSAccessibilityUIElementDestroyedNotification -C/data/-/NSAccessibilityUnderlineColorTextAttribute -C/data/-/NSAccessibilityUnderlineTextAttribute -C/func/-/NSAccessibilityUnignoredAncestor -C/func/-/NSAccessibilityUnignoredChildren -C/func/-/NSAccessibilityUnignoredChildrenForOnlyChild -C/func/-/NSAccessibilityUnignoredDescendant -C/data/-/NSAccessibilityUnitDescriptionAttribute -C/data/-/NSAccessibilityUnitsAttribute -C/data/-/NSAccessibilityUnitsChangedNotification -C/data/-/NSAccessibilityUnknownMarkerTypeValue -C/data/-/NSAccessibilityUnknownOrientationValue -C/data/-/NSAccessibilityUnknownRole -C/data/-/NSAccessibilityUnknownSortDirectionValue -C/data/-/NSAccessibilityUnknownSubrole -C/data/-/NSAccessibilityUnknownUnitValue -C/data/-/NSAccessibilityURLAttribute -C/data/-/NSAccessibilityValueAttribute -C/data/-/NSAccessibilityValueChangedNotification -C/data/-/NSAccessibilityValueDescriptionAttribute -C/data/-/NSAccessibilityValueIndicatorRole -C/data/-/NSAccessibilityVerticalOrientationValue -C/data/-/NSAccessibilityVerticalScrollBarAttribute -C/data/-/NSAccessibilityVerticalUnitDescriptionAttribute -C/data/-/NSAccessibilityVerticalUnitsAttribute -C/data/-/NSAccessibilityVisibleCellsAttribute -C/data/-/NSAccessibilityVisibleCharacterRangeAttribute -C/data/-/NSAccessibilityVisibleChildrenAttribute -C/data/-/NSAccessibilityVisibleColumnsAttribute -C/data/-/NSAccessibilityVisibleNameKey -C/data/-/NSAccessibilityVisibleRowsAttribute -C/data/-/NSAccessibilityWarningValueAttribute -C/data/-/NSAccessibilityWindowAttribute -C/data/-/NSAccessibilityWindowCreatedNotification -C/data/-/NSAccessibilityWindowDeminiaturizedNotification -C/data/-/NSAccessibilityWindowMiniaturizedNotification -C/data/-/NSAccessibilityWindowMovedNotification -C/data/-/NSAccessibilityWindowResizedNotification -C/data/-/NSAccessibilityWindowRole -C/data/-/NSAccessibilityWindowsAttribute -C/data/-/NSAccessibilityZoomButtonAttribute -C/data/-/NSAccessibilityZoomButtonSubrole -Objective-C/cl/-/NSActionCell -C/data/-/NSAddedPersistentStoresKey -C/econst/-/NSAddEntityMappingType -C/func/-/NSAddImage -C/func/-/NSAddLibrary -C/func/-/NSAddLibraryWithSearching -C/func/-/NSAddressOfSymbol -C/econst/-/NSAddTraitFontAction -C/econst/-/NSAdminApplicationDirectory -C/econst/-/NSAdobeCNS1CharacterCollection -C/econst/-/NSAdobeGB1CharacterCollection -C/econst/-/NSAdobeJapan1CharacterCollection -C/econst/-/NSAdobeJapan2CharacterCollection -C/econst/-/NSAdobeKorea1CharacterCollection -C/data/-/NSAffectedObjectsErrorKey -C/data/-/NSAffectedStoresErrorKey -Objective-C/cl/-/NSAffineTransform -Objective-C/cat/-/NSAffineTransform(NSAppKitAdditions) -C/tdef/-/NSAffineTransformStruct -C/data/-/NSAFMAscender -C/data/-/NSAFMCapHeight -C/data/-/NSAFMCharacterSet -C/data/-/NSAFMDescender -C/data/-/NSAFMEncodingScheme -C/data/-/NSAFMFamilyName -C/data/-/NSAFMFontName -C/data/-/NSAFMFormatVersion -C/data/-/NSAFMFullName -C/data/-/NSAFMItalicAngle -C/data/-/NSAFMMappingScheme -C/data/-/NSAFMNotice -C/data/-/NSAFMUnderlinePosition -C/data/-/NSAFMUnderlineThickness -C/data/-/NSAFMVersion -C/data/-/NSAFMWeight -C/data/-/NSAFMXHeight -C/econst/-/NSAggregateExpressionType -Objective-C/cl/-/NSAlert -C/econst/-/NSAlertAlternateReturn -C/econst/-/NSAlertDefaultReturn -Objective-C/intf/-/NSAlertDelegate -C/econst/-/NSAlertErrorReturn -C/econst/-/NSAlertFirstButtonReturn -C/econst/-/NSAlertOtherReturn -C/econst/-/NSAlertSecondButtonReturn -C/tdef/-/NSAlertStyle -C/econst/-/NSAlertThirdButtonReturn -C/data/-/NSAlignmentBinding -C/econst/-/NSAllApplicationsDirectory -C/econst/-/NSAllDomainsMask -C/func/-/NSAllHashTableObjects -C/econst/-/NSAllLibrariesDirectory -C/func/-/NSAllMapTableKeys -C/func/-/NSAllMapTableValues -C/func/-/NSAllocateCollectable -C/func/-/NSAllocateMemoryPages -C/func/-/NSAllocateObject -C/data/-/NSAllowsEditingMultipleValuesSelectionBindingOption -C/data/-/NSAllowsNullArgumentBindingOption -C/econst/-/NSAllPredicateModifier -C/data/-/NSAllRomanInputSourcesLocaleIdentifier -C/econst/-/NSAllScrollerParts -C/econst/-/NSAlphaFirstBitmapFormat -C/econst/-/NSAlphaNonpremultipliedBitmapFormat -C/econst/-/NSAlphaShiftKeyMask -C/data/-/NSAlternateImageBinding -C/econst/-/NSAlternateKeyMask -C/data/-/NSAlternateTitleBinding -C/data/-/NSAlwaysPresentsApplicationModalAlertsBindingOption -C/data/-/NSAMPMDesignation -C/econst/-/NSAnchoredSearch -C/econst/-/NSAndPredicateType -Objective-C/intf/-/NSAnimatablePropertyContainer -C/data/-/NSAnimateBinding -Objective-C/cl/-/NSAnimation -C/econst/-/NSAnimationBlocking -C/tdef/-/NSAnimationBlockingMode -Objective-C/cl/-/NSAnimationContext -C/tdef/-/NSAnimationCurve -C/data/-/NSAnimationDelayBinding -Objective-C/intf/-/NSAnimationDelegate -C/econst/-/NSAnimationEaseIn -C/econst/-/NSAnimationEaseInOut -C/econst/-/NSAnimationEaseOut -C/tdef/-/NSAnimationEffect -C/econst/-/NSAnimationEffectDisappearingItemDefault -C/econst/-/NSAnimationEffectPoof -C/econst/-/NSAnimationLinear -C/econst/-/NSAnimationNonblocking -C/econst/-/NSAnimationNonblockingThreaded -C/tdef/-/NSAnimationProgress -C/data/-/NSAnimationProgressMark -C/data/-/NSAnimationProgressMarkNotification -C/data/-/NSAnimationTriggerOrderIn -C/data/-/NSAnimationTriggerOrderOut -C/data/-/NSAntialiasThresholdChangedNotification -C/econst/-/NSAnyEventMask -C/econst/-/NSAnyPredicateModifier -C/econst/-/NSAnyType -C/data/-/NSApp -C/econst/-/NSAppKitDefined -C/econst/-/NSAppKitDefinedMask -C/data/-/NSAppKitIgnoredException -C/data/-/NSAppKitVersionNumber -C/macro/-/NSAppKitVersionNumber10_0 -C/macro/-/NSAppKitVersionNumber10_1 -C/macro/-/NSAppKitVersionNumber10_2 -C/macro/-/NSAppKitVersionNumber10_2_3 -C/macro/-/NSAppKitVersionNumber10_3 -C/macro/-/NSAppKitVersionNumber10_3_2 -C/macro/-/NSAppKitVersionNumber10_3_3 -C/macro/-/NSAppKitVersionNumber10_3_5 -C/macro/-/NSAppKitVersionNumber10_3_7 -C/macro/-/NSAppKitVersionNumber10_3_9 -C/macro/-/NSAppKitVersionNumber10_4 -C/macro/-/NSAppKitVersionNumber10_4_1 -C/macro/-/NSAppKitVersionNumber10_4_3 -C/macro/-/NSAppKitVersionNumber10_4_4 -C/macro/-/NSAppKitVersionNumber10_4_7 -C/macro/-/NSAppKitVersionNumber10_5 -C/macro/-/NSAppKitVersionNumber10_5_2 -C/macro/-/NSAppKitVersionNumber10_5_3 -C/macro/-/NSAppKitVersionNumberWithColumnResizingBrowser -C/macro/-/NSAppKitVersionNumberWithContinuousScrollingBrowser -C/macro/-/NSAppKitVersionNumberWithCursorSizeSupport -C/macro/-/NSAppKitVersionNumberWithCustomSheetPosition -C/macro/-/NSAppKitVersionNumberWithDeferredWindowDisplaySupport -C/macro/-/NSAppKitVersionNumberWithDirectionalTabs -C/macro/-/NSAppKitVersionNumberWithDockTilePlugInSupport -C/macro/-/NSAppKitVersionNumberWithPatternColorLeakFix -C/data/-/NSAppKitVirtualMemoryException -Objective-C/cl/-/NSAppleEventDescriptor -Objective-C/cl/-/NSAppleEventManager -C/tdef/-/NSAppleEventManagerSuspensionID -C/data/-/NSAppleEventManagerWillProcessFirstEventNotification -C/data/-/NSAppleEventTimeOutDefault -C/data/-/NSAppleEventTimeOutNone -Objective-C/cl/-/NSAppleScript -Objective-C/cat/-/NSAppleScript(AppKitAdditions) -C/data/-/NSAppleScriptErrorAppName -C/data/-/NSAppleScriptErrorBriefMessage -C/data/-/NSAppleScriptErrorMessage -C/data/-/NSAppleScriptErrorNumber -C/data/-/NSAppleScriptErrorRange -Objective-C/cl/-/NSApplication -C/econst/-/NSApplicationActivateAllWindows -C/econst/-/NSApplicationActivatedEventType -C/econst/-/NSApplicationActivateIgnoringOtherApps -C/tdef/-/NSApplicationActivationOptions -C/tdef/-/NSApplicationActivationPolicy -C/econst/-/NSApplicationActivationPolicyAccessory -C/econst/-/NSApplicationActivationPolicyProhibited -C/econst/-/NSApplicationActivationPolicyRegular -C/econst/-/NSApplicationDeactivatedEventType -C/econst/-/NSApplicationDefined -C/econst/-/NSApplicationDefinedMask -Objective-C/intf/-/NSApplicationDelegate -C/tdef/-/NSApplicationDelegateReply -C/econst/-/NSApplicationDelegateReplyCancel -C/econst/-/NSApplicationDelegateReplyFailure -C/econst/-/NSApplicationDelegateReplySuccess -C/data/-/NSApplicationDidBecomeActiveNotification -C/data/-/NSApplicationDidChangeScreenParametersNotification -C/data/-/NSApplicationDidFinishLaunchingNotification -C/data/-/NSApplicationDidHideNotification -C/data/-/NSApplicationDidResignActiveNotification -C/data/-/NSApplicationDidUnhideNotification -C/data/-/NSApplicationDidUpdateNotification -C/econst/-/NSApplicationDirectory -C/data/-/NSApplicationFileType -C/func/-/NSApplicationLoad -C/func/-/NSApplicationMain -C/econst/-/NSApplicationPresentationAutoHideDock -C/econst/-/NSApplicationPresentationAutoHideMenuBar -C/econst/-/NSApplicationPresentationDefault -C/econst/-/NSApplicationPresentationDisableAppleMenu -C/econst/-/NSApplicationPresentationDisableForceQuit -C/econst/-/NSApplicationPresentationDisableHideApplication -C/econst/-/NSApplicationPresentationDisableMenuBarTransparency -C/econst/-/NSApplicationPresentationDisableProcessSwitching -C/econst/-/NSApplicationPresentationDisableSessionTermination -C/econst/-/NSApplicationPresentationHideDock -C/econst/-/NSApplicationPresentationHideMenuBar -C/tdef/-/NSApplicationPresentationOptions -C/tdef/-/NSApplicationPrintReply -C/econst/-/NSApplicationSupportDirectory -C/tdef/-/NSApplicationTerminateReply -C/data/-/NSApplicationWillBecomeActiveNotification -C/data/-/NSApplicationWillFinishLaunchingNotification -C/data/-/NSApplicationWillHideNotification -C/data/-/NSApplicationWillResignActiveNotification -C/data/-/NSApplicationWillTerminateNotification -C/data/-/NSApplicationWillUnhideNotification -C/data/-/NSApplicationWillUpdateNotification -Objective-C/cl/-/NSArchiver -C/data/-/NSArgumentBinding -C/data/-/NSArgumentDomain -C/econst/-/NSArgumentEvaluationScriptError -C/econst/-/NSArgumentsWrongScriptError -Objective-C/cl/-/NSArray -Objective-C/cl/-/NSArrayController -C/econst/-/NSAscendingPageOrder -C/econst/-/NSASCIIStringEncoding -C/econst/-/NSAsciiWithDoubleByteEUCGlyphPacking -C/macro/-/NSAssert -C/macro/-/NSAssert1 -C/macro/-/NSAssert2 -C/macro/-/NSAssert3 -C/macro/-/NSAssert4 -C/macro/-/NSAssert5 -Objective-C/cl/-/NSAssertionHandler -C/macro/-/NSAssertionHandlerKey -C/econst/-/NSAtBottom -Objective-C/cl/-/NSAtomicStore -Objective-C/cl/-/NSAtomicStoreCacheNode -C/econst/-/NSAtomicWrite -Objective-C/cl/-/NSATSTypesetter -C/data/-/NSAttachmentAttributeName -C/econst/-/NSAttachmentCharacter -C/econst/-/NSAtTop -Objective-C/cl/-/NSAttributeDescription -Objective-C/cl/-/NSAttributedString -Objective-C/cat/-/NSAttributedString(AppKitAdditions) -C/data/-/NSAttributedStringBinding -C/econst/-/NSAttributedStringEnumerationLongestEffectiveRangeNotRequired -C/tdef/-/NSAttributedStringEnumerationOptions -C/econst/-/NSAttributedStringEnumerationReverse -C/tdef/-/NSAttributeType -C/data/-/NSAuthorDocumentAttribute -C/econst/-/NSAutoPagination -Objective-C/cl/-/NSAutoreleasePool -C/econst/-/NSAutosavedInformationDirectory -C/econst/-/NSAutosaveOperation -C/func/-/NSAvailableWindowDepths -C/data/-/NSAverageKeyValueOperator -C/econst/-/NSAWTEventType -C/data/-/NSBackgroundColorAttributeName -C/data/-/NSBackgroundColorDocumentAttribute -C/tdef/-/NSBackgroundStyle -C/econst/-/NSBackgroundStyleDark -C/econst/-/NSBackgroundStyleLight -C/econst/-/NSBackgroundStyleLowered -C/econst/-/NSBackgroundStyleRaised -C/econst/-/NSBackgroundTab -C/econst/-/NSBackingStoreBuffered -C/econst/-/NSBackingStoreNonretained -C/econst/-/NSBackingStoreRetained -C/tdef/-/NSBackingStoreType -C/econst/-/NSBackspaceCharacter -C/econst/-/NSBackTabCharacter -C/econst/-/NSBacktabTextMovement -C/econst/-/NSBackwardsSearch -C/data/-/NSBadBitmapParametersException -C/data/-/NSBadComparisonException -C/data/-/NSBadRTFColorTableException -C/data/-/NSBadRTFDirectiveException -C/data/-/NSBadRTFFontTableException -C/data/-/NSBadRTFStyleSheetException -C/data/-/NSBaselineOffsetAttributeName -C/data/-/NSBaseURLDocumentOption -C/func/-/NSBeep -C/func/-/NSBeginAlertSheet -C/func/-/NSBeginCriticalAlertSheet -C/econst/-/NSBeginFunctionKey -C/func/-/NSBeginInformationalAlertSheet -C/econst/-/NSBeginsWithComparison -C/econst/-/NSBeginsWithPredicateOperatorType -C/econst/-/NSBelowBottom -C/econst/-/NSBelowTop -C/func/-/NSBestDepth -C/econst/-/NSBetweenPredicateOperatorType -C/econst/-/NSBevelLineJoinStyle -C/econst/-/NSBezelBorder -C/tdef/-/NSBezelStyle -Objective-C/cl/-/NSBezierPath -C/tdef/-/NSBezierPathElement -C/econst/-/NSBinaryDataAttributeType -C/data/-/NSBinaryExternalRecordType -C/econst/-/NSBinarySearchingFirstEqual -C/econst/-/NSBinarySearchingInsertionIndex -C/econst/-/NSBinarySearchingLastEqual -C/tdef/-/NSBinarySearchingOptions -C/data/-/NSBinaryStoreType -C/tdef/-/NSBitmapFormat -C/tdef/-/NSBitmapImageFileType -Objective-C/cl/-/NSBitmapImageRep -C/func/-/NSBitsPerPixelFromDepth -C/func/-/NSBitsPerSampleFromDepth -C/data/-/NSBlack -C/econst/-/NSBlockExpressionType -Objective-C/cl/-/NSBlockOperation -C/econst/-/NSBlueControlTint -C/econst/-/NSBMPFileType -C/econst/-/NSBoldFontMask -C/econst/-/NSBooleanAttributeType -C/econst/-/NSBorderlessWindowMask -C/tdef/-/NSBorderType -C/data/-/NSBottomMarginDocumentAttribute -C/econst/-/NSBottomTabsBezelBorder -Objective-C/cl/-/NSBox -C/econst/-/NSBoxCustom -C/econst/-/NSBoxOldStyle -C/econst/-/NSBoxPrimary -C/econst/-/NSBoxSecondary -C/econst/-/NSBoxSeparator -C/tdef/-/NSBoxType -C/econst/-/NSBreakFunctionKey -Objective-C/cl/-/NSBrowser -C/econst/-/NSBrowserAutoColumnResizing -C/tdef/-/NSBrowserAuxiliaryOpaque -Objective-C/cl/-/NSBrowserCell -C/data/-/NSBrowserColumnConfigurationDidChangeNotification -C/tdef/-/NSBrowserColumnResizingType -Objective-C/intf/-/NSBrowserDelegate -C/econst/-/NSBrowserDropAbove -C/econst/-/NSBrowserDropOn -C/tdef/-/NSBrowserDropOperation -C/data/-/NSBrowserIllegalDelegateException -C/econst/-/NSBrowserNoColumnResizing -C/econst/-/NSBrowserUserColumnResizing -C/data/-/NSBuddhistCalendar -Objective-C/cl/-/NSBundle -Objective-C/cat/-/NSBundle(NSAppKitAdditions) -C/data/-/NSBundleDidLoadNotification -C/econst/-/NSBundleExecutableArchitectureI386 -C/econst/-/NSBundleExecutableArchitecturePPC -C/econst/-/NSBundleExecutableArchitecturePPC64 -C/econst/-/NSBundleExecutableArchitectureX86_64 -C/econst/-/NSButtLineCapStyle -Objective-C/cl/-/NSButton -Objective-C/cl/-/NSButtonCell -C/tdef/-/NSButtonType -Objective-C/cl/-/NSCache -Objective-C/intf/-/NSCacheDelegate -Objective-C/cl/-/NSCachedImageRep -Objective-C/cl/-/NSCachedURLResponse -C/econst/-/NSCachesDirectory -C/econst/-/NSCalculationDivideByZero -C/tdef/-/NSCalculationError -C/econst/-/NSCalculationLossOfPrecision -C/econst/-/NSCalculationNoError -C/econst/-/NSCalculationOverflow -C/econst/-/NSCalculationUnderflow -Objective-C/cl/-/NSCalendar -C/tdef/-/NSCalendarUnit -C/data/-/NSCalibratedBlackColorSpace -C/data/-/NSCalibratedRGBColorSpace -C/data/-/NSCalibratedWhiteColorSpace -C/econst/-/NSCancelButton -C/econst/-/NSCancelTextMovement -C/econst/-/NSCannotCreateScriptCommandError -C/econst/-/NSCarriageReturnCharacter -C/econst/-/NSCascadeDeleteRule -C/econst/-/NSCaseInsensitivePredicateOption -C/econst/-/NSCaseInsensitiveSearch -C/macro/-/NSCAssert -C/macro/-/NSCAssert1 -C/macro/-/NSCAssert2 -C/macro/-/NSCAssert3 -C/macro/-/NSCAssert4 -C/macro/-/NSCAssert5 -C/data/-/NSCategoryDocumentAttribute -Objective-C/cl/-/NSCell -C/econst/-/NSCellAllowsMixedState -C/tdef/-/NSCellAttribute -C/econst/-/NSCellChangesContents -C/econst/-/NSCellDisabled -C/econst/-/NSCellEditable -C/econst/-/NSCellHasImageHorizontal -C/econst/-/NSCellHasImageOnLeftOrBottom -C/econst/-/NSCellHasOverlappingImage -C/econst/-/NSCellHighlighted -C/econst/-/NSCellHitContentArea -C/econst/-/NSCellHitEditableTextArea -C/econst/-/NSCellHitNone -C/econst/-/NSCellHitTrackableArea -C/tdef/-/NSCellImagePosition -C/econst/-/NSCellIsBordered -C/econst/-/NSCellIsInsetButton -C/econst/-/NSCellLightsByBackground -C/econst/-/NSCellLightsByContents -C/econst/-/NSCellLightsByGray -C/econst/-/NSCellState -C/tdef/-/NSCellStateValue -C/tdef/-/NSCellType -C/econst/-/NSCenterTabStopType -C/econst/-/NSCenterTextAlignment -C/econst/-/NSChangeAutosaved -C/econst/-/NSChangeBackgroundCell -C/econst/-/NSChangeBackgroundCellMask -C/econst/-/NSChangeCleared -C/econst/-/NSChangeDone -C/econst/-/NSChangeGrayCell -C/econst/-/NSChangeGrayCellMask -C/econst/-/NSChangeReadOtherContents -C/econst/-/NSChangeRedone -Objective-C/intf/-/NSChangeSpelling -C/econst/-/NSChangeUndone -C/tdef/-/NSCharacterCollection -C/data/-/NSCharacterConversionException -C/data/-/NSCharacterEncodingDocumentAttribute -C/data/-/NSCharacterEncodingDocumentOption -Objective-C/cl/-/NSCharacterSet -C/data/-/NSCharacterShapeAttributeName -C/data/-/NSChineseCalendar -Objective-C/cl/-/NSCIImageRep -C/econst/-/NSCircularBezelStyle -C/econst/-/NSCircularSlider -Objective-C/cl/-/NSClassDescription -C/data/-/NSClassDescriptionNeededForClassNotification -C/func/-/NSClassFromString -C/econst/-/NSClearControlTint -C/econst/-/NSClearDisplayFunctionKey -C/econst/-/NSClearLineFunctionKey -C/econst/-/NSClipPagination -Objective-C/cl/-/NSClipView -C/econst/-/NSClockAndCalendarDatePickerStyle -Objective-C/cl/-/NSCloneCommand -C/econst/-/NSClosableWindowMask -Objective-C/cl/-/NSCloseCommand -C/econst/-/NSClosePathBezierPathElement -C/econst/-/NSCMYKColorSpaceModel -C/econst/-/NSCMYKModeColorPanel -C/data/-/NSCocoaErrorDomain -C/data/-/NSCocoaVersionDocumentAttribute -Objective-C/cl/-/NSCoder -Objective-C/cat/-/NSCoder(AppKitAdditions) -Objective-C/cat/-/NSCoder(QTKit_Additions) -Objective-C/intf/-/NSCoding -Objective-C/cl/-/NSCollectionView -Objective-C/intf/-/NSCollectionViewDelegate -C/econst/-/NSCollectionViewDropBefore -C/econst/-/NSCollectionViewDropOn -C/tdef/-/NSCollectionViewDropOperation -Objective-C/cl/-/NSCollectionViewItem -C/econst/-/NSCollectorDisabledOption -Objective-C/cl/-/NSColor -Objective-C/cl/-/NSColorList -C/tdef/-/NSColorListAuxiliaryOpaque -C/data/-/NSColorListDidChangeNotification -C/data/-/NSColorListIOException -C/econst/-/NSColorListModeColorPanel -C/data/-/NSColorListNotEditableException -Objective-C/cl/-/NSColorPanel -C/econst/-/NSColorPanelAllModesMask -C/econst/-/NSColorPanelCMYKModeMask -C/data/-/NSColorPanelColorDidChangeNotification -C/econst/-/NSColorPanelColorListModeMask -C/econst/-/NSColorPanelCrayonModeMask -C/econst/-/NSColorPanelCustomPaletteModeMask -C/econst/-/NSColorPanelGrayModeMask -C/econst/-/NSColorPanelHSBModeMask -C/tdef/-/NSColorPanelMode -C/econst/-/NSColorPanelRGBModeMask -C/econst/-/NSColorPanelWheelModeMask -C/data/-/NSColorPboardType -Objective-C/cl/-/NSColorPicker -Objective-C/intf/-/NSColorPickingCustom -Objective-C/intf/-/NSColorPickingDefault -C/tdef/-/NSColorRenderingIntent -C/econst/-/NSColorRenderingIntentAbsoluteColorimetric -C/econst/-/NSColorRenderingIntentDefault -C/econst/-/NSColorRenderingIntentPerceptual -C/econst/-/NSColorRenderingIntentRelativeColorimetric -C/econst/-/NSColorRenderingIntentSaturation -Objective-C/cl/-/NSColorSpace -C/func/-/NSColorSpaceFromDepth -C/tdef/-/NSColorSpaceModel -Objective-C/cl/-/NSColorWell -Objective-C/cl/-/NSComboBox -Objective-C/cl/-/NSComboBoxCell -Objective-C/intf/-/NSComboBoxCellDataSource -Objective-C/intf/-/NSComboBoxDataSource -Objective-C/intf/-/NSComboBoxDelegate -C/data/-/NSComboBoxSelectionDidChangeNotification -C/data/-/NSComboBoxSelectionIsChangingNotification -C/data/-/NSComboBoxWillDismissNotification -C/data/-/NSComboBoxWillPopUpNotification -C/econst/-/NSCommandKeyMask -C/data/-/NSCommentDocumentAttribute -C/data/-/NSCompanyDocumentAttribute -C/tag/-/NSComparator -C/func/-/NSCompareHashTables -C/func/-/NSCompareMapTables -Objective-C/cat/-/NSComparisonMethods -Objective-C/cl/-/NSComparisonPredicate -C/tdef/-/NSComparisonPredicateModifier -C/tdef/-/NSComparisonResult -C/econst/-/NSCompositeClear -C/econst/-/NSCompositeCopy -C/econst/-/NSCompositeDestinationAtop -C/econst/-/NSCompositeDestinationIn -C/econst/-/NSCompositeDestinationOut -C/econst/-/NSCompositeDestinationOver -C/econst/-/NSCompositeHighlight -C/econst/-/NSCompositePlusDarker -C/econst/-/NSCompositePlusLighter -C/econst/-/NSCompositeSourceAtop -C/econst/-/NSCompositeSourceIn -C/econst/-/NSCompositeSourceOut -C/econst/-/NSCompositeSourceOver -C/econst/-/NSCompositeXOR -C/tdef/-/NSCompositingOperation -Objective-C/cl/-/NSCompoundPredicate -C/tdef/-/NSCompoundPredicateType -C/econst/-/NSCompressedFontMask -C/econst/-/NSCondensedFontMask -Objective-C/cl/-/NSCondition -C/data/-/NSConditionallySetsEditableBindingOption -C/data/-/NSConditionallySetsEnabledBindingOption -C/data/-/NSConditionallySetsHiddenBindingOption -Objective-C/cl/-/NSConditionLock -Objective-C/cl/-/NSConnection -Objective-C/intf/-/NSConnectionDelegate -C/data/-/NSConnectionDidDieNotification -C/data/-/NSConnectionDidInitializeNotification -C/data/-/NSConnectionReplyMode -C/econst/-/NSConstantValueExpressionType -C/econst/-/NSContainerSpecifierError -C/econst/-/NSContainsComparison -C/econst/-/NSContainsPredicateOperatorType -C/func/-/NSContainsRect -C/data/-/NSContentArrayBinding -C/data/-/NSContentArrayForMultipleSelectionBinding -C/data/-/NSContentBinding -C/data/-/NSContentDictionaryBinding -C/data/-/NSContentHeightBinding -C/data/-/NSContentObjectBinding -C/data/-/NSContentObjectsBinding -C/data/-/NSContentPlacementTagBindingOption -C/econst/-/NSContentsCellMask -C/data/-/NSContentSetBinding -C/data/-/NSContentValuesBinding -C/data/-/NSContentWidthBinding -C/data/-/NSContextHelpModeDidActivateNotification -C/data/-/NSContextHelpModeDidDeactivateNotification -C/econst/-/NSContinuousCapacityLevelIndicatorStyle -C/data/-/NSContinuouslyUpdatesValueBindingOption -Objective-C/cl/-/NSControl -C/econst/-/NSControlGlyph -C/econst/-/NSControlKeyMask -Objective-C/cl/-/NSController -C/tdef/-/NSControlSize -C/data/-/NSControlTextDidBeginEditingNotification -C/data/-/NSControlTextDidChangeNotification -C/data/-/NSControlTextDidEndEditingNotification -Objective-C/intf/-/NSControlTextEditingDelegate -C/tdef/-/NSControlTint -C/data/-/NSControlTintDidChangeNotification -C/data/-/NSConvertedDocumentAttribute -C/func/-/NSConvertGlyphsToPackedGlyphs -C/func/-/NSConvertHostDoubleToSwapped -C/func/-/NSConvertHostFloatToSwapped -C/func/-/NSConvertSwappedDoubleToHost -C/func/-/NSConvertSwappedFloatToHost -C/func/-/NSCopyBits -C/econst/-/NSCopyEntityMappingType -C/func/-/NSCopyHashTableWithZone -Objective-C/intf/-/NSCopying -C/func/-/NSCopyMapTableWithZone -C/func/-/NSCopyMemoryPages -C/func/-/NSCopyObject -C/data/-/NSCopyrightDocumentAttribute -C/econst/-/NSCoreDataError -C/data/-/NSCoreDataVersionNumber -C/macro/-/NSCoreDataVersionNumber10_4 -C/macro/-/NSCoreDataVersionNumber10_4_3 -C/macro/-/NSCoreDataVersionNumber10_5 -C/macro/-/NSCoreDataVersionNumber10_5_3 -C/econst/-/NSCoreServiceDirectory -Objective-C/cl/-/NSCountCommand -Objective-C/cl/-/NSCountedSet -C/func/-/NSCountHashTable -C/data/-/NSCountKeyValueOperator -C/func/-/NSCountMapTable -C/func/-/NSCountWindows -C/func/-/NSCountWindowsForContext -C/macro/-/NSCParameterAssert -C/econst/-/NSCrayonModeColorPanel -Objective-C/cl/-/NSCreateCommand -C/func/-/NSCreateFileContentsPboardType -C/func/-/NSCreateFilenamePboardType -C/func/-/NSCreateHashTable -C/func/-/NSCreateHashTableWithZone -C/func/-/NSCreateMapTable -C/func/-/NSCreateMapTableWithZone -C/func/-/NSCreateObjectFileImageFromFile -C/func/-/NSCreateObjectFileImageFromMemory -C/data/-/NSCreatesSortDescriptorBindingOption -C/func/-/NSCreateZone -C/data/-/NSCreationTimeDocumentAttribute -C/econst/-/NSCriticalAlertStyle -C/econst/-/NSCriticalRequest -C/data/-/NSCriticalValueBinding -C/data/-/NSCurrencySymbol -C/data/-/NSCurrentLocaleDidChangeNotification -Objective-C/cl/-/NSCursor -C/data/-/NSCursorAttributeName -C/econst/-/NSCursorPointingDevice -C/econst/-/NSCursorUpdate -C/econst/-/NSCursorUpdateMask -C/econst/-/NSCurveToBezierPathElement -C/data/-/NSCustomColorSpace -C/econst/-/NSCustomEntityMappingType -Objective-C/cl/-/NSCustomImageRep -C/econst/-/NSCustomPaletteModeColorPanel -C/econst/-/NSCustomSelectorPredicateOperatorType -C/data/-/NSDarkGray -Objective-C/cl/-/NSData -C/data/-/NSDataBinding -C/econst/-/NSDataReadingMapped -C/tdef/-/NSDataReadingOptions -C/econst/-/NSDataReadingUncached -C/econst/-/NSDataSearchAnchored -C/econst/-/NSDataSearchBackwards -C/tdef/-/NSDataSearchOptions -C/econst/-/NSDataWritingAtomic -C/tdef/-/NSDataWritingOptions -Objective-C/cl/-/NSDate -C/econst/-/NSDateAttributeType -Objective-C/cl/-/NSDateComponents -C/data/-/NSDateFormatString -Objective-C/cl/-/NSDateFormatter -C/tdef/-/NSDateFormatterBehavior -C/econst/-/NSDateFormatterBehavior10_0 -C/econst/-/NSDateFormatterBehavior10_4 -C/econst/-/NSDateFormatterBehaviorDefault -C/econst/-/NSDateFormatterFullStyle -C/econst/-/NSDateFormatterLongStyle -C/econst/-/NSDateFormatterMediumStyle -C/econst/-/NSDateFormatterNoStyle -C/econst/-/NSDateFormatterShortStyle -C/tdef/-/NSDateFormatterStyle -Objective-C/cl/-/NSDatePicker -Objective-C/cl/-/NSDatePickerCell -Objective-C/intf/-/NSDatePickerCellDelegate -C/tdef/-/NSDatePickerElementFlags -C/tdef/-/NSDatePickerMode -C/tdef/-/NSDatePickerStyle -C/data/-/NSDateTimeOrdering -C/econst/-/NSDayCalendarUnit -C/func/-/NSDeallocateMemoryPages -C/func/-/NSDeallocateObject -C/tdef/-/NSDecimal -C/func/-/NSDecimalAdd -C/econst/-/NSDecimalAttributeType -C/func/-/NSDecimalCompact -C/func/-/NSDecimalCompare -C/func/-/NSDecimalCopy -C/data/-/NSDecimalDigits -C/func/-/NSDecimalDivide -C/func/-/NSDecimalIsNotANumber -C/macro/-/NSDecimalMaxSize -C/func/-/NSDecimalMultiply -C/func/-/NSDecimalMultiplyByPowerOf10 -C/func/-/NSDecimalNormalize -C/macro/-/NSDecimalNoScale -Objective-C/cl/-/NSDecimalNumber -Objective-C/intf/-/NSDecimalNumberBehaviors -C/data/-/NSDecimalNumberDivideByZeroException -C/data/-/NSDecimalNumberExactnessException -Objective-C/cl/-/NSDecimalNumberHandler -C/data/-/NSDecimalNumberOverflowException -C/data/-/NSDecimalNumberUnderflowException -C/func/-/NSDecimalPower -C/func/-/NSDecimalRound -C/data/-/NSDecimalSeparator -C/func/-/NSDecimalString -C/func/-/NSDecimalSubtract -C/econst/-/NSDecimalTabStopType -C/func/-/NSDecrementExtraRefCountWasZero -C/data/-/NSDefaultAttributesDocumentOption -C/econst/-/NSDefaultControlTint -C/func/-/NSDefaultMallocZone -C/data/-/NSDefaultRunLoopMode -C/data/-/NSDefaultTabIntervalDocumentAttribute -C/econst/-/NSDefaultTokenStyle -C/data/-/NSDefinitionPresentationTypeDictionaryApplication -C/data/-/NSDefinitionPresentationTypeKey -C/data/-/NSDefinitionPresentationTypeOverlay -C/econst/-/NSDeleteCharacter -C/econst/-/NSDeleteCharFunctionKey -Objective-C/cl/-/NSDeleteCommand -C/data/-/NSDeletedObjectsKey -C/econst/-/NSDeleteFunctionKey -C/econst/-/NSDeleteLineFunctionKey -C/tdef/-/NSDeleteRule -C/data/-/NSDeletesObjectsOnRemoveBindingsOption -C/econst/-/NSDemoApplicationDirectory -C/econst/-/NSDenyDeleteRule -C/econst/-/NSDescendingPageOrder -Objective-C/cl/-/NSDeserializer -C/econst/-/NSDesktopDirectory -C/data/-/NSDestinationInvalidException -C/func/-/NSDestroyObjectFileImage -C/data/-/NSDetailedErrorsKey -C/econst/-/NSDeveloperApplicationDirectory -C/econst/-/NSDeveloperDirectory -C/data/-/NSDeviceBitsPerSample -C/data/-/NSDeviceBlackColorSpace -C/data/-/NSDeviceCMYKColorSpace -C/data/-/NSDeviceColorSpaceName -C/econst/-/NSDeviceIndependentModifierFlagsMask -C/data/-/NSDeviceIsPrinter -C/data/-/NSDeviceIsScreen -C/econst/-/NSDeviceNColorSpaceModel -C/data/-/NSDeviceResolution -C/data/-/NSDeviceRGBColorSpace -C/data/-/NSDeviceSize -C/data/-/NSDeviceWhiteColorSpace -C/econst/-/NSDiacriticInsensitivePredicateOption -C/econst/-/NSDiacriticInsensitiveSearch -Objective-C/cl/-/NSDictionary -Objective-C/cl/-/NSDictionaryController -Objective-C/intf/-/NSDictionaryControllerKeyValuePair -C/econst/-/NSDictionaryResultType -C/data/-/NSDidBecomeSingleThreadedNotification -C/tdef/-/NSDirectoryEnumerationOptions -C/econst/-/NSDirectoryEnumerationSkipsHiddenFiles -C/econst/-/NSDirectoryEnumerationSkipsPackageDescendants -C/econst/-/NSDirectoryEnumerationSkipsSubdirectoryDescendants -Objective-C/cl/-/NSDirectoryEnumerator -C/data/-/NSDirectoryFileType -C/econst/-/NSDirectPredicateModifier -C/econst/-/NSDirectSelection -C/func/-/NSDisableScreenUpdates -Objective-C/intf/-/NSDiscardableContent -C/econst/-/NSDisclosureBezelStyle -C/econst/-/NSDiscreteCapacityLevelIndicatorStyle -C/data/-/NSDisplayNameBindingOption -C/data/-/NSDisplayPatternBindingOption -C/data/-/NSDisplayPatternTitleBinding -C/data/-/NSDisplayPatternValueBinding -C/econst/-/NSDisplayWindowRunLoopOrdering -Objective-C/cl/-/NSDistantObject -Objective-C/cl/-/NSDistantObjectRequest -C/data/-/NSDistinctUnionOfArraysKeyValueOperator -C/data/-/NSDistinctUnionOfObjectsKeyValueOperator -C/data/-/NSDistinctUnionOfSetsKeyValueOperator -Objective-C/cl/-/NSDistributedLock -Objective-C/cl/-/NSDistributedNotificationCenter -C/func/-/NSDivideRect -C/data/-/NSDocFormatTextDocumentType -Objective-C/cl/-/NSDockTile -Objective-C/intf/-/NSDockTilePlugIn -C/macro/-/NSDockWindowLevel -C/econst/-/NSDocModalWindowMask -Objective-C/cl/-/NSDocument -C/econst/-/NSDocumentationDirectory -C/tdef/-/NSDocumentChangeType -Objective-C/cl/-/NSDocumentController -C/econst/-/NSDocumentDirectory -C/data/-/NSDocumentEditedBinding -C/data/-/NSDocumentTypeDocumentAttribute -C/data/-/NSDocumentTypeDocumentOption -C/func/-/NSDottedFrameRect -C/econst/-/NSDoubleAttributeType -C/data/-/NSDoubleClickArgumentBinding -C/data/-/NSDoubleClickTargetBinding -C/econst/-/NSDoubleType -C/econst/-/NSDownArrowFunctionKey -C/econst/-/NSDownloadsDirectory -C/econst/-/NSDownTextMovement -Objective-C/cat/-/NSDraggingDestination -C/data/-/NSDraggingException -Objective-C/intf/-/NSDraggingInfo -Objective-C/cat/-/NSDraggingSource -C/tdef/-/NSDragOperation -C/macro/-/NSDragOperationAll -C/econst/-/NSDragOperationAll_Obsolete -C/econst/-/NSDragOperationCopy -C/econst/-/NSDragOperationDelete -C/econst/-/NSDragOperationEvery -C/econst/-/NSDragOperationGeneric -C/econst/-/NSDragOperationLink -C/econst/-/NSDragOperationMove -C/econst/-/NSDragOperationNone -C/econst/-/NSDragOperationPrivate -C/data/-/NSDragPboard -C/func/-/NSDrawBitmap -C/func/-/NSDrawButton -C/func/-/NSDrawColorTiledRects -C/func/-/NSDrawDarkBezel -Objective-C/cl/-/NSDrawer -C/econst/-/NSDrawerClosedState -C/econst/-/NSDrawerClosingState -Objective-C/intf/-/NSDrawerDelegate -C/data/-/NSDrawerDidCloseNotification -C/data/-/NSDrawerDidOpenNotification -C/econst/-/NSDrawerOpeningState -C/econst/-/NSDrawerOpenState -C/tdef/-/NSDrawerState -C/data/-/NSDrawerWillCloseNotification -C/data/-/NSDrawerWillOpenNotification -C/func/-/NSDrawGrayBezel -C/func/-/NSDrawGroove -C/func/-/NSDrawLightBezel -C/func/-/NSDrawNinePartImage -C/func/-/NSDrawThreePartImage -C/func/-/NSDrawTiledRects -C/func/-/NSDrawWhiteBezel -C/func/-/NSDrawWindowBackground -C/econst/-/nsDrvErr -C/data/-/NSEarlierTimeDesignations -C/macro/-/NSEC_PER_SEC -C/macro/-/NSEC_PER_USEC -C/data/-/NSEditableBinding -Objective-C/cat/-/NSEditor -C/data/-/NSEditorDocumentAttribute -Objective-C/cat/-/NSEditorRegistration -C/data/-/NSEnabledBinding -C/func/-/NSEnableScreenUpdates -C/econst/-/NSEndFunctionKey -C/func/-/NSEndHashTableEnumeration -C/func/-/NSEndMapTableEnumeration -C/econst/-/NSEndsWithComparison -C/econst/-/NSEndsWithPredicateOperatorType -C/econst/-/NSEnterCharacter -Objective-C/cl/-/NSEntityDescription -Objective-C/cl/-/NSEntityMapping -C/tdef/-/NSEntityMappingType -Objective-C/cl/-/NSEntityMigrationPolicy -C/econst/-/NSEntityMigrationPolicyError -C/data/-/NSEntityNameInPathKey -C/func/-/NSEnumerateHashTable -C/func/-/NSEnumerateMapTable -C/econst/-/NSEnumerationConcurrent -C/tdef/-/NSEnumerationOptions -C/econst/-/NSEnumerationReverse -Objective-C/cl/-/NSEnumerator -Objective-C/cl/-/NSEPSImageRep -C/func/-/NSEqualPoints -C/func/-/NSEqualRanges -C/func/-/NSEqualRects -C/func/-/NSEqualSizes -C/econst/-/NSEqualToComparison -C/econst/-/NSEqualToPredicateOperatorType -C/econst/-/NSEraCalendarUnit -C/econst/-/NSEraDatePickerElementFlag -C/func/-/NSEraseRect -C/econst/-/NSEraserPointingDevice -Objective-C/cl/-/NSError -C/data/-/NSErrorFailingURLStringKey -C/data/-/NSErrorMergePolicy -Objective-C/cat/-/NSErrorRecoveryAttempting -C/econst/-/NSEvaluatedObjectExpressionType -C/econst/-/NSEvenOddWindingRule -Objective-C/cl/-/NSEvent -C/econst/-/NSEventMaskBeginGesture -C/econst/-/NSEventMaskEndGesture -C/func/-/NSEventMaskFromType -C/econst/-/NSEventMaskGesture -C/econst/-/NSEventMaskMagnify -C/econst/-/NSEventMaskRotate -C/econst/-/NSEventMaskSwipe -C/data/-/NSEventTrackingRunLoopMode -C/tdef/-/NSEventType -C/econst/-/NSEventTypeBeginGesture -C/econst/-/NSEventTypeEndGesture -C/econst/-/NSEventTypeGesture -C/econst/-/NSEventTypeMagnify -C/econst/-/NSEventTypeRotate -C/econst/-/NSEventTypeSwipe -C/econst/-/NSEverySubelement -Objective-C/cl/-/NSException -Objective-C/cl/-/NSExceptionHandler -C/econst/-/NSExclude10_4ElementsIconCreationOption -C/data/-/NSExcludedElementsDocumentAttribute -C/data/-/NSExcludedKeysBinding -C/econst/-/NSExcludeQuickDrawElementsIconCreationOption -C/econst/-/NSExecutableArchitectureMismatchError -C/econst/-/NSExecutableErrorMaximum -C/econst/-/NSExecutableErrorMinimum -C/econst/-/NSExecutableLinkError -C/econst/-/NSExecutableLoadError -C/econst/-/NSExecutableNotLoadableError -C/econst/-/NSExecutableRuntimeMismatchError -C/econst/-/NSExecuteFunctionKey -Objective-C/cl/-/NSExistsCommand -C/econst/-/NSExpandedFontMask -C/data/-/NSExpansionAttributeName -Objective-C/cl/-/NSExpression -Objective-C/cl/-/NSExpressionDescription -C/tdef/-/NSExpressionType -C/data/-/NSExternalRecordExtensionOption -C/econst/-/NSExternalRecordImportError -C/data/-/NSExternalRecordsDirectoryOption -C/data/-/NSExternalRecordsFileFormatOption -C/func/-/NSExtraRefCount -C/econst/-/NSF10FunctionKey -C/econst/-/NSF11FunctionKey -C/econst/-/NSF12FunctionKey -C/econst/-/NSF13FunctionKey -C/econst/-/NSF14FunctionKey -C/econst/-/NSF15FunctionKey -C/econst/-/NSF16FunctionKey -C/econst/-/NSF17FunctionKey -C/econst/-/NSF18FunctionKey -C/econst/-/NSF19FunctionKey -C/econst/-/NSF1FunctionKey -C/econst/-/NSF20FunctionKey -C/econst/-/NSF21FunctionKey -C/econst/-/NSF22FunctionKey -C/econst/-/NSF23FunctionKey -C/econst/-/NSF24FunctionKey -C/econst/-/NSF25FunctionKey -C/econst/-/NSF26FunctionKey -C/econst/-/NSF27FunctionKey -C/econst/-/NSF28FunctionKey -C/econst/-/NSF29FunctionKey -C/econst/-/NSF2FunctionKey -C/econst/-/NSF30FunctionKey -C/econst/-/NSF31FunctionKey -C/econst/-/NSF32FunctionKey -C/econst/-/NSF33FunctionKey -C/econst/-/NSF34FunctionKey -C/econst/-/NSF35FunctionKey -C/econst/-/NSF3FunctionKey -C/econst/-/NSF4FunctionKey -C/econst/-/NSF5FunctionKey -C/econst/-/NSF6FunctionKey -C/econst/-/NSF7FunctionKey -C/econst/-/NSF8FunctionKey -C/econst/-/NSF9FunctionKey -C/data/-/NSFailedAuthenticationException -Objective-C/intf/-/NSFastEnumeration -C/tdef/-/NSFastEnumerationState -Objective-C/cl/-/NSFetchedPropertyDescription -Objective-C/cl/-/NSFetchRequest -Objective-C/cl/-/NSFetchRequestExpression -C/econst/-/NSFetchRequestExpressionType -C/tdef/-/NSFetchRequestResultType -C/data/-/NSFileAppendOnly -C/data/-/NSFileBusy -C/data/-/NSFileContentsPboardType -C/data/-/NSFileCreationDate -C/data/-/NSFileDeviceIdentifier -C/econst/-/NSFileErrorMaximum -C/econst/-/NSFileErrorMinimum -C/data/-/NSFileExtensionHidden -C/data/-/NSFileGroupOwnerAccountID -C/data/-/NSFileGroupOwnerAccountName -Objective-C/cl/-/NSFileHandle -C/data/-/NSFileHandleConnectionAcceptedNotification -C/data/-/NSFileHandleDataAvailableNotification -C/data/-/NSFileHandleNotificationDataItem -C/data/-/NSFileHandleNotificationFileHandleItem -C/data/-/NSFileHandleNotificationMonitorModes -C/data/-/NSFileHandleOperationException -C/data/-/NSFileHandleReadCompletionNotification -C/data/-/NSFileHandleReadToEndOfFileCompletionNotification -C/econst/-/NSFileHandlingPanelBrowser -C/econst/-/NSFileHandlingPanelCancelButton -C/econst/-/NSFileHandlingPanelDiskButton -C/econst/-/NSFileHandlingPanelDiskEjectButton -C/econst/-/NSFileHandlingPanelForm -C/econst/-/NSFileHandlingPanelHomeButton -C/econst/-/NSFileHandlingPanelImageButton -C/econst/-/NSFileHandlingPanelOKButton -C/econst/-/NSFileHandlingPanelTitleField -C/data/-/NSFileHFSCreatorCode -C/data/-/NSFileHFSTypeCode -C/data/-/NSFileImmutable -C/econst/-/NSFileLockingError -Objective-C/cl/-/NSFileManager -C/tdef/-/NSFileManagerItemReplacementOptions -C/econst/-/NSFileManagerItemReplacementUsingNewMetadataOnly -C/econst/-/NSFileManagerItemReplacementWithoutDeletingBackupItem -C/data/-/NSFileModificationDate -C/data/-/NSFilenamesPboardType -C/econst/-/NSFileNoSuchFileError -C/data/-/NSFileOwnerAccountID -C/data/-/NSFileOwnerAccountName -C/data/-/NSFilePathErrorKey -C/data/-/NSFilePosixPermissions -C/econst/-/NSFileReadCorruptFileError -C/econst/-/NSFileReadInapplicableStringEncodingError -C/econst/-/NSFileReadInvalidFileNameError -C/econst/-/NSFileReadNoPermissionError -C/econst/-/NSFileReadNoSuchFileError -C/econst/-/NSFileReadTooLargeError -C/econst/-/NSFileReadUnknownError -C/econst/-/NSFileReadUnknownStringEncodingError -C/econst/-/NSFileReadUnsupportedSchemeError -C/data/-/NSFileReferenceCount -C/data/-/NSFileSize -C/data/-/NSFilesPromisePboardType -C/data/-/NSFileSystemFileNumber -C/data/-/NSFilesystemFileType -C/data/-/NSFileSystemFreeNodes -C/data/-/NSFileSystemFreeSize -C/data/-/NSFileSystemNodes -C/data/-/NSFileSystemNumber -C/data/-/NSFileSystemSize -C/data/-/NSFileType -C/data/-/NSFileTypeBlockSpecial -C/data/-/NSFileTypeCharacterSpecial -C/data/-/NSFileTypeDirectory -C/data/-/NSFileTypeDocumentAttribute -C/data/-/NSFileTypeDocumentOption -C/func/-/NSFileTypeForHFSTypeCode -C/data/-/NSFileTypeRegular -C/data/-/NSFileTypeSocket -C/data/-/NSFileTypeSymbolicLink -C/data/-/NSFileTypeUnknown -Objective-C/cl/-/NSFileWrapper -C/econst/-/NSFileWrapperReadingImmediate -C/tdef/-/NSFileWrapperReadingOptions -C/econst/-/NSFileWrapperReadingWithoutMapping -C/econst/-/NSFileWrapperWritingAtomic -C/tdef/-/NSFileWrapperWritingOptions -C/econst/-/NSFileWrapperWritingWithNameUpdating -C/econst/-/NSFileWriteInapplicableStringEncodingError -C/econst/-/NSFileWriteInvalidFileNameError -C/econst/-/NSFileWriteNoPermissionError -C/econst/-/NSFileWriteOutOfSpaceError -C/econst/-/NSFileWriteUnknownError -C/econst/-/NSFileWriteUnsupportedSchemeError -C/econst/-/NSFileWriteVolumeReadOnlyError -C/data/-/NSFilterPredicateBinding -C/econst/-/NSFindFunctionKey -C/tdef/-/NSFindPanelAction -C/econst/-/NSFindPanelActionNext -C/econst/-/NSFindPanelActionPrevious -C/econst/-/NSFindPanelActionReplace -C/econst/-/NSFindPanelActionReplaceAll -C/econst/-/NSFindPanelActionReplaceAllInSelection -C/econst/-/NSFindPanelActionReplaceAndFind -C/econst/-/NSFindPanelActionSelectAll -C/econst/-/NSFindPanelActionSelectAllInSelection -C/econst/-/NSFindPanelActionSetFindString -C/econst/-/NSFindPanelActionShowFindPanel -C/data/-/NSFindPanelCaseInsensitiveSearch -C/data/-/NSFindPanelSearchOptionsPboardType -C/data/-/NSFindPanelSubstringMatch -C/tdef/-/NSFindPanelSubstringMatchType -C/econst/-/NSFindPanelSubstringMatchTypeContains -C/econst/-/NSFindPanelSubstringMatchTypeEndsWith -C/econst/-/NSFindPanelSubstringMatchTypeFullWord -C/econst/-/NSFindPanelSubstringMatchTypeStartsWith -C/data/-/NSFindPboard -C/econst/-/NSFitPagination -C/econst/-/NSFixedPitchFontMask -C/econst/-/NSFlagsChanged -C/econst/-/NSFlagsChangedMask -C/econst/-/NSFloatAttributeType -C/econst/-/NSFloatingPointSamplesBitmapFormat -C/macro/-/NSFloatingWindowLevel -C/econst/-/NSFloatType -C/econst/-/NSFocusRingAbove -C/econst/-/NSFocusRingBelow -C/econst/-/NSFocusRingOnly -C/tdef/-/NSFocusRingPlacement -C/tdef/-/NSFocusRingType -C/econst/-/NSFocusRingTypeDefault -C/econst/-/NSFocusRingTypeExterior -C/econst/-/NSFocusRingTypeNone -Objective-C/cl/-/NSFont -C/tdef/-/NSFontAction -C/econst/-/NSFontAntialiasedIntegerAdvancementsRenderingMode -C/econst/-/NSFontAntialiasedRenderingMode -C/data/-/NSFontAttributeName -C/data/-/NSFontBinding -C/data/-/NSFontBoldBinding -C/econst/-/NSFontBoldTrait -C/data/-/NSFontCascadeListAttribute -C/data/-/NSFontCharacterSetAttribute -C/econst/-/NSFontClarendonSerifsClass -C/econst/-/NSFontCollectionApplicationOnlyMask -C/data/-/NSFontColorAttribute -C/econst/-/NSFontCondensedTrait -C/econst/-/NSFontDefaultRenderingMode -Objective-C/cl/-/NSFontDescriptor -C/econst/-/NSFontExpandedTrait -C/data/-/NSFontFaceAttribute -C/data/-/NSFontFamilyAttribute -C/tdef/-/NSFontFamilyClass -C/econst/-/NSFontFamilyClassMask -C/data/-/NSFontFamilyNameBinding -C/data/-/NSFontFeatureSelectorIdentifierKey -C/data/-/NSFontFeatureSettingsAttribute -C/data/-/NSFontFeatureTypeIdentifierKey -C/data/-/NSFontFixedAdvanceAttribute -C/econst/-/NSFontFreeformSerifsClass -C/data/-/NSFontIdentityMatrix -C/econst/-/NSFontIntegerAdvancementsRenderingMode -C/data/-/NSFontItalicBinding -C/econst/-/NSFontItalicTrait -Objective-C/cl/-/NSFontManager -C/data/-/NSFontMatrixAttribute -C/econst/-/NSFontModernSerifsClass -C/econst/-/NSFontMonoSpaceTrait -C/data/-/NSFontNameAttribute -C/data/-/NSFontNameBinding -C/econst/-/NSFontOldStyleSerifsClass -C/econst/-/NSFontOrnamentalsClass -Objective-C/cl/-/NSFontPanel -C/econst/-/NSFontPanelAllEffectsModeMask -C/econst/-/NSFontPanelAllModesMask -C/econst/-/NSFontPanelCollectionModeMask -C/econst/-/NSFontPanelDocumentColorEffectModeMask -C/econst/-/NSFontPanelFaceModeMask -C/econst/-/NSFontPanelShadowEffectModeMask -C/econst/-/NSFontPanelSizeModeMask -C/econst/-/NSFontPanelStandardModesMask -C/econst/-/NSFontPanelStrikethroughEffectModeMask -C/econst/-/NSFontPanelTextColorEffectModeMask -C/econst/-/NSFontPanelUnderlineEffectModeMask -Objective-C/cat/-/NSFontPanelValidation -C/data/-/NSFontPboard -C/data/-/NSFontPboardType -C/tdef/-/NSFontRenderingMode -C/econst/-/NSFontSansSerifClass -C/econst/-/NSFontScriptsClass -C/data/-/NSFontSetChangedNotification -C/data/-/NSFontSizeAttribute -C/data/-/NSFontSizeBinding -C/econst/-/NSFontSlabSerifsClass -C/data/-/NSFontSlantTrait -C/econst/-/NSFontSymbolicClass -C/data/-/NSFontSymbolicTrait -C/tdef/-/NSFontSymbolicTraits -C/tdef/-/NSFontTraitMask -C/data/-/NSFontTraitsAttribute -C/econst/-/NSFontTransitionalSerifsClass -C/econst/-/NSFontUIOptimizedTrait -C/data/-/NSFontUnavailableException -C/econst/-/NSFontUnknownClass -C/data/-/NSFontVariationAttribute -C/data/-/NSFontVariationAxisDefaultValueKey -C/data/-/NSFontVariationAxisIdentifierKey -C/data/-/NSFontVariationAxisMaximumValueKey -C/data/-/NSFontVariationAxisMinimumValueKey -C/data/-/NSFontVariationAxisNameKey -C/econst/-/NSFontVerticalTrait -C/data/-/NSFontVisibleNameAttribute -C/data/-/NSFontWeightTrait -C/data/-/NSFontWidthTrait -C/econst/-/NSForcedOrderingSearch -C/data/-/NSForegroundColorAttributeName -Objective-C/cl/-/NSForm -Objective-C/cl/-/NSFormatter -C/econst/-/NSFormattingError -C/econst/-/NSFormattingErrorMaximum -C/econst/-/NSFormattingErrorMinimum -Objective-C/cl/-/NSFormCell -C/econst/-/NSFormFeedCharacter -C/data/-/NSFoundationVersionNumber -C/macro/-/NSFoundationVersionNumber10_0 -C/macro/-/NSFoundationVersionNumber10_1 -C/macro/-/NSFoundationVersionNumber10_1_1 -C/macro/-/NSFoundationVersionNumber10_1_2 -C/macro/-/NSFoundationVersionNumber10_1_3 -C/macro/-/NSFoundationVersionNumber10_1_4 -C/macro/-/NSFoundationVersionNumber10_2 -C/macro/-/NSFoundationVersionNumber10_2_1 -C/macro/-/NSFoundationVersionNumber10_2_2 -C/macro/-/NSFoundationVersionNumber10_2_3 -C/macro/-/NSFoundationVersionNumber10_2_4 -C/macro/-/NSFoundationVersionNumber10_2_5 -C/macro/-/NSFoundationVersionNumber10_2_6 -C/macro/-/NSFoundationVersionNumber10_2_7 -C/macro/-/NSFoundationVersionNumber10_2_8 -C/macro/-/NSFoundationVersionNumber10_3 -C/macro/-/NSFoundationVersionNumber10_3_1 -C/macro/-/NSFoundationVersionNumber10_3_2 -C/macro/-/NSFoundationVersionNumber10_3_3 -C/macro/-/NSFoundationVersionNumber10_3_4 -C/macro/-/NSFoundationVersionNumber10_3_5 -C/macro/-/NSFoundationVersionNumber10_3_6 -C/macro/-/NSFoundationVersionNumber10_3_7 -C/macro/-/NSFoundationVersionNumber10_3_8 -C/macro/-/NSFoundationVersionNumber10_3_9 -C/macro/-/NSFoundationVersionNumber10_4 -C/macro/-/NSFoundationVersionNumber10_4_1 -C/macro/-/NSFoundationVersionNumber10_4_10 -C/macro/-/NSFoundationVersionNumber10_4_11 -C/macro/-/NSFoundationVersionNumber10_4_2 -C/macro/-/NSFoundationVersionNumber10_4_3 -C/macro/-/NSFoundationVersionNumber10_4_4_Intel -C/macro/-/NSFoundationVersionNumber10_4_4_PowerPC -C/macro/-/NSFoundationVersionNumber10_4_5 -C/macro/-/NSFoundationVersionNumber10_4_6 -C/macro/-/NSFoundationVersionNumber10_4_7 -C/macro/-/NSFoundationVersionNumber10_4_8 -C/macro/-/NSFoundationVersionNumber10_4_9 -C/macro/-/NSFoundationVersionNumber10_5 -C/macro/-/NSFoundationVersionNumber10_5_1 -C/macro/-/NSFoundationVersionNumber10_5_2 -C/macro/-/NSFoundationVersionNumber10_5_3 -C/macro/-/NSFoundationVersionNumber10_5_4 -C/macro/-/NSFoundationVersionNumber10_5_5 -C/macro/-/NSFoundationVersionNumber10_5_6 -C/macro/-/NSFoundationVersionWithFileManagerResourceForkSupport -C/econst/-/NSFourByteGlyphPacking -C/econst/-/NSFPCurrentField -C/econst/-/NSFPPreviewButton -C/econst/-/NSFPPreviewField -C/econst/-/NSFPRevertButton -C/econst/-/NSFPSetButton -C/econst/-/NSFPSizeField -C/econst/-/NSFPSizeTitle -C/func/-/NSFrameRect -C/func/-/NSFrameRectWithWidth -C/func/-/NSFrameRectWithWidthUsingOperation -C/func/-/NSFreeHashTable -C/func/-/NSFreeMapTable -C/data/-/NSFTPPropertyActiveTransferModeKey -C/data/-/NSFTPPropertyFileOffsetKey -C/data/-/NSFTPPropertyFTPProxy -C/data/-/NSFTPPropertyUserLoginKey -C/data/-/NSFTPPropertyUserPasswordKey -C/data/-/NSFullScreenModeAllScreens -C/data/-/NSFullScreenModeApplicationPresentationOptions -C/data/-/NSFullScreenModeSetting -C/data/-/NSFullScreenModeWindowLevel -C/func/-/NSFullUserName -C/econst/-/NSFunctionExpressionType -C/econst/-/NSFunctionKeyMask -Objective-C/cl/-/NSGarbageCollector -C/data/-/NSGeneralPboard -C/data/-/NSGenericException -C/func/-/NSGetAlertPanel -Objective-C/cl/-/NSGetCommand -C/func/-/NSGetCriticalAlertPanel -C/func/-/NSGetFileType -C/func/-/NSGetFileTypes -C/func/-/NSGetInformationalAlertPanel -C/func/-/NSGetSizeAndAlignment -C/func/-/NSGetUncaughtExceptionHandler -C/func/-/NSGetWindowServerMemory -C/econst/-/NSGIFFileType -C/data/-/NSGlobalDomain -C/tdef/-/NSGlyph -C/econst/-/NSGlyphAbove -C/econst/-/NSGlyphAttributeBidiLevel -C/econst/-/NSGlyphAttributeElastic -C/econst/-/NSGlyphAttributeInscribe -C/econst/-/NSGlyphAttributeSoft -C/econst/-/NSGlyphBelow -Objective-C/cl/-/NSGlyphGenerator -Objective-C/cl/-/NSGlyphInfo -C/data/-/NSGlyphInfoAttributeName -C/econst/-/NSGlyphInscribeAbove -C/econst/-/NSGlyphInscribeBase -C/econst/-/NSGlyphInscribeBelow -C/econst/-/NSGlyphInscribeOverBelow -C/econst/-/NSGlyphInscribeOverstrike -C/tdef/-/NSGlyphInscription -C/tdef/-/NSGlyphRelation -Objective-C/intf/-/NSGlyphStorage -Objective-C/cl/-/NSGradient -C/econst/-/NSGradientConcaveStrong -C/econst/-/NSGradientConcaveWeak -C/econst/-/NSGradientConvexStrong -C/econst/-/NSGradientConvexWeak -C/tdef/-/NSGradientDrawingOptions -C/econst/-/NSGradientDrawsAfterEndingLocation -C/econst/-/NSGradientDrawsBeforeStartingLocation -C/econst/-/NSGradientNone -C/tdef/-/NSGradientType -C/data/-/NSGrammarCorrections -C/data/-/NSGrammarRange -C/data/-/NSGrammarUserDescription -Objective-C/cl/-/NSGraphicsContext -C/data/-/NSGraphicsContextDestinationAttributeName -C/data/-/NSGraphicsContextPDFFormat -C/data/-/NSGraphicsContextPSFormat -C/data/-/NSGraphicsContextRepresentationFormatAttributeName -C/econst/-/NSGraphiteControlTint -C/econst/-/NSGrayColorSpaceModel -C/econst/-/NSGrayModeColorPanel -C/econst/-/NSGreaterThanComparison -C/econst/-/NSGreaterThanOrEqualToComparison -C/econst/-/NSGreaterThanOrEqualToPredicateOperatorType -C/econst/-/NSGreaterThanPredicateOperatorType -C/data/-/NSGregorianCalendar -C/econst/-/NSGrooveBorder -C/econst/-/NSHandleOtherExceptionMask -C/data/-/NSHandlesContentAsCompoundValueBindingOption -C/econst/-/NSHandleTopLevelExceptionMask -C/econst/-/NSHandleUncaughtExceptionMask -C/econst/-/NSHandleUncaughtRuntimeErrorMask -C/econst/-/NSHandleUncaughtSystemExceptionMask -C/macro/-/NSHangOnEveryExceptionMask -C/econst/-/NSHangOnOtherExceptionMask -C/econst/-/NSHangOnTopLevelExceptionMask -C/econst/-/NSHangOnUncaughtExceptionMask -C/econst/-/NSHangOnUncaughtRuntimeErrorMask -C/econst/-/NSHangOnUncaughtSystemExceptionMask -C/tdef/-/NSHashEnumerator -C/func/-/NSHashGet -C/func/-/NSHashInsert -C/func/-/NSHashInsertIfAbsent -C/func/-/NSHashInsertKnownAbsent -C/func/-/NSHashRemove -Objective-C/cl/-/NSHashTable -C/tdef/-/NSHashTable -C/tdef/-/NSHashTableCallBacks -C/econst/-/NSHashTableCopyIn -C/econst/-/NSHashTableObjectPointerPersonality -C/tdef/-/NSHashTableOptions -C/tag/-/NSHashTableOptions -C/econst/-/NSHashTableStrongMemory -C/econst/-/NSHashTableZeroingWeakMemory -C/data/-/NSHeaderTitleBinding -C/econst/-/NSHeavierFontAction -C/data/-/NSHebrewCalendar -C/func/-/NSHeight -C/data/-/NSHelpAnchorErrorKey -C/econst/-/NSHelpButtonBezelStyle -C/econst/-/NSHelpFunctionKey -C/econst/-/NSHelpKeyMask -Objective-C/cl/-/NSHelpManager -C/func/-/NSHFSTypeCodeFromFileType -C/func/-/NSHFSTypeOfFile -C/data/-/NSHiddenBinding -C/econst/-/NSHighlightModeMatrix -C/func/-/NSHighlightRect -C/func/-/NSHomeDirectory -C/func/-/NSHomeDirectoryForUser -C/econst/-/NSHomeFunctionKey -C/econst/-/NSHorizontalRuler -Objective-C/cl/-/NSHost -C/func/-/NSHostByteOrder -C/econst/-/NSHourCalendarUnit -C/econst/-/NSHourMinuteDatePickerElementFlag -C/econst/-/NSHourMinuteSecondDatePickerElementFlag -C/data/-/NSHourNameDesignations -C/econst/-/NSHPUXOperatingSystem -C/econst/-/NSHSBModeColorPanel -C/data/-/NSHTMLPboardType -C/data/-/NSHTMLTextDocumentType -Objective-C/cl/-/NSHTTPCookie -C/tdef/-/NSHTTPCookieAcceptPolicy -C/econst/-/NSHTTPCookieAcceptPolicyAlways -C/econst/-/NSHTTPCookieAcceptPolicyNever -C/econst/-/NSHTTPCookieAcceptPolicyOnlyFromMainDocumentDomain -C/data/-/NSHTTPCookieComment -C/data/-/NSHTTPCookieCommentURL -C/data/-/NSHTTPCookieDiscard -C/data/-/NSHTTPCookieDomain -C/data/-/NSHTTPCookieExpires -C/data/-/NSHTTPCookieManagerAcceptPolicyChangedNotification -C/data/-/NSHTTPCookieManagerCookiesChangedNotification -C/data/-/NSHTTPCookieMaximumAge -C/data/-/NSHTTPCookieName -C/data/-/NSHTTPCookieOriginURL -C/data/-/NSHTTPCookiePath -C/data/-/NSHTTPCookiePort -C/data/-/NSHTTPCookieSecure -Objective-C/cl/-/NSHTTPCookieStorage -C/data/-/NSHTTPCookieValue -C/data/-/NSHTTPCookieVersion -C/data/-/NSHTTPPropertyErrorPageDataKey -C/data/-/NSHTTPPropertyHTTPProxy -C/data/-/NSHTTPPropertyRedirectionHeadersKey -C/data/-/NSHTTPPropertyServerHTTPVersionKey -C/data/-/NSHTTPPropertyStatusCodeKey -C/data/-/NSHTTPPropertyStatusReasonKey -Objective-C/cl/-/NSHTTPURLResponse -C/econst/-/NSHUDWindowMask -C/data/-/NSHyphenationFactorDocumentAttribute -C/data/-/NSIconSize -C/econst/-/NSIdentityMappingCharacterCollection -Objective-C/intf/-/NSIgnoreMisspelledWords -C/data/-/NSIgnorePersistentStoreVersioningOption -C/data/-/NSIllegalSelectorException -C/econst/-/NSIllegalTextMovement -Objective-C/cl/-/NSImage -C/econst/-/NSImageAbove -C/econst/-/NSImageAlignBottom -C/econst/-/NSImageAlignBottomLeft -C/econst/-/NSImageAlignBottomRight -C/econst/-/NSImageAlignCenter -C/econst/-/NSImageAlignLeft -C/tdef/-/NSImageAlignment -C/econst/-/NSImageAlignRight -C/econst/-/NSImageAlignTop -C/econst/-/NSImageAlignTopLeft -C/econst/-/NSImageAlignTopRight -C/econst/-/NSImageBelow -C/data/-/NSImageBinding -C/econst/-/NSImageCacheAlways -C/econst/-/NSImageCacheBySize -C/econst/-/NSImageCacheDefault -C/data/-/NSImageCacheException -C/tdef/-/NSImageCacheMode -C/econst/-/NSImageCacheNever -Objective-C/cl/-/NSImageCell -C/econst/-/NSImageCellType -C/data/-/NSImageColorSyncProfileData -C/data/-/NSImageCompressionFactor -C/data/-/NSImageCompressionMethod -C/data/-/NSImageCurrentFrame -C/data/-/NSImageCurrentFrameDuration -Objective-C/intf/-/NSImageDelegate -C/data/-/NSImageDitherTransparency -C/data/-/NSImageEXIFData -C/data/-/NSImageFallbackBackgroundColor -C/econst/-/NSImageFrameButton -C/data/-/NSImageFrameCount -C/econst/-/NSImageFrameGrayBezel -C/econst/-/NSImageFrameGroove -C/econst/-/NSImageFrameNone -C/econst/-/NSImageFramePhoto -C/tdef/-/NSImageFrameStyle -C/data/-/NSImageGamma -C/data/-/NSImageHintCTM -C/data/-/NSImageHintInterpolation -C/data/-/NSImageInterlaced -C/tdef/-/NSImageInterpolation -C/econst/-/NSImageInterpolationDefault -C/econst/-/NSImageInterpolationHigh -C/econst/-/NSImageInterpolationLow -C/econst/-/NSImageInterpolationMedium -C/econst/-/NSImageInterpolationNone -C/econst/-/NSImageLeft -C/tdef/-/NSImageLoadStatus -C/econst/-/NSImageLoadStatusCancelled -C/econst/-/NSImageLoadStatusCompleted -C/econst/-/NSImageLoadStatusInvalidData -C/econst/-/NSImageLoadStatusReadError -C/econst/-/NSImageLoadStatusUnexpectedEOF -C/data/-/NSImageLoopCount -C/data/-/NSImageNameActionTemplate -C/data/-/NSImageNameAddTemplate -C/data/-/NSImageNameAdvanced -C/data/-/NSImageNameApplicationIcon -C/data/-/NSImageNameBluetoothTemplate -C/data/-/NSImageNameBonjour -C/data/-/NSImageNameBookmarksTemplate -C/data/-/NSImageNameCaution -C/data/-/NSImageNameColorPanel -C/data/-/NSImageNameColumnViewTemplate -C/data/-/NSImageNameComputer -C/data/-/NSImageNameDotMac -C/data/-/NSImageNameEnterFullScreenTemplate -C/data/-/NSImageNameEveryone -C/data/-/NSImageNameExitFullScreenTemplate -C/data/-/NSImageNameFlowViewTemplate -C/data/-/NSImageNameFolder -C/data/-/NSImageNameFolderBurnable -C/data/-/NSImageNameFolderSmart -C/data/-/NSImageNameFollowLinkFreestandingTemplate -C/data/-/NSImageNameFontPanel -C/data/-/NSImageNameGoLeftTemplate -C/data/-/NSImageNameGoRightTemplate -C/data/-/NSImageNameHomeTemplate -C/data/-/NSImageNameIChatTheaterTemplate -C/data/-/NSImageNameIconViewTemplate -C/data/-/NSImageNameInfo -C/data/-/NSImageNameInvalidDataFreestandingTemplate -C/data/-/NSImageNameLeftFacingTriangleTemplate -C/data/-/NSImageNameListViewTemplate -C/data/-/NSImageNameLockLockedTemplate -C/data/-/NSImageNameLockUnlockedTemplate -C/data/-/NSImageNameMenuMixedStateTemplate -C/data/-/NSImageNameMenuOnStateTemplate -C/data/-/NSImageNameMobileMe -C/data/-/NSImageNameMultipleDocuments -C/data/-/NSImageNameNetwork -C/data/-/NSImageNamePathTemplate -C/data/-/NSImageNamePreferencesGeneral -C/data/-/NSImageNameQuickLookTemplate -C/data/-/NSImageNameRefreshFreestandingTemplate -C/data/-/NSImageNameRefreshTemplate -C/data/-/NSImageNameRemoveTemplate -C/data/-/NSImageNameRevealFreestandingTemplate -C/data/-/NSImageNameRightFacingTriangleTemplate -C/data/-/NSImageNameSlideshowTemplate -C/data/-/NSImageNameSmartBadgeTemplate -C/data/-/NSImageNameStatusAvailable -C/data/-/NSImageNameStatusNone -C/data/-/NSImageNameStatusPartiallyAvailable -C/data/-/NSImageNameStatusUnavailable -C/data/-/NSImageNameStopProgressFreestandingTemplate -C/data/-/NSImageNameStopProgressTemplate -C/data/-/NSImageNameTrashEmpty -C/data/-/NSImageNameTrashFull -C/data/-/NSImageNameUser -C/data/-/NSImageNameUserAccounts -C/data/-/NSImageNameUserGroup -C/data/-/NSImageNameUserGuest -C/econst/-/NSImageOnly -C/econst/-/NSImageOverlaps -C/data/-/NSImageProgressive -Objective-C/cl/-/NSImageRep -C/tdef/-/NSImageRepLoadStatus -C/econst/-/NSImageRepLoadStatusCompleted -C/econst/-/NSImageRepLoadStatusInvalidData -C/econst/-/NSImageRepLoadStatusReadingHeader -C/econst/-/NSImageRepLoadStatusUnexpectedEOF -C/econst/-/NSImageRepLoadStatusUnknownType -C/econst/-/NSImageRepLoadStatusWillNeedAllData -C/econst/-/NSImageRepMatchesDevice -C/macro/-/NSImageRepRegistryChangedNotification -C/data/-/NSImageRepRegistryDidChangeNotification -C/data/-/NSImageRGBColorTable -C/econst/-/NSImageRight -C/econst/-/NSImageScaleAxesIndependently -C/econst/-/NSImageScaleNone -C/econst/-/NSImageScaleProportionallyDown -C/econst/-/NSImageScaleProportionallyUpOrDown -C/tdef/-/NSImageScaling -Objective-C/cl/-/NSImageView -C/data/-/NSIncludedKeysBinding -C/data/-/NSInconsistentArchiveException -C/func/-/NSIncrementExtraRefCount -C/econst/-/NSIndexedColorSpaceModel -Objective-C/cl/-/NSIndexPath -Objective-C/cl/-/NSIndexSet -Objective-C/cl/-/NSIndexSpecifier -C/econst/-/NSIndexSubelement -C/data/-/NSIndianCalendar -C/data/-/NSInferMappingModelAutomaticallyOption -C/econst/-/NSInferredMappingModelError -C/econst/-/NSInformationalAlertStyle -C/econst/-/NSInformationalRequest -C/data/-/NSInitialKeyBinding -C/data/-/NSInitialValueBinding -C/data/-/NSInkTextPboardType -C/data/-/NSInMemoryStoreType -C/econst/-/NSInPredicateOperatorType -C/econst/-/NSInputMethodsDirectory -Objective-C/cl/-/NSInputStream -C/econst/-/NSInsertCharFunctionKey -C/data/-/NSInsertedObjectsKey -C/econst/-/NSInsertFunctionKey -C/tdef/-/NSInsertionPosition -C/econst/-/NSInsertLineFunctionKey -C/data/-/NSInsertsNullPlaceholderBindingOption -C/func/-/NSInsetRect -C/tdef/-/NSInteger -C/econst/-/NSInteger16AttributeType -C/econst/-/NSInteger32AttributeType -C/econst/-/NSInteger64AttributeType -C/data/-/NSIntegerHashCallBacks -C/data/-/NSIntegerMapKeyCallBacks -C/data/-/NSIntegerMapValueCallBacks -C/macro/-/NSIntegerMax -C/macro/-/NSIntegerMin -C/func/-/NSIntegralRect -C/tdef/-/NSInterfaceStyle -C/data/-/NSInterfaceStyleDefault -C/func/-/NSInterfaceStyleForKey -C/data/-/NSInternalInconsistencyException -C/econst/-/NSInternalScriptError -C/econst/-/NSInternalSpecifierError -C/data/-/NSInternationalCurrencyString -C/func/-/NSIntersectionRange -C/func/-/NSIntersectionRect -C/econst/-/NSIntersectSetExpressionType -C/func/-/NSIntersectsRect -C/data/-/NSIntHashCallBacks -C/data/-/NSIntMapKeyCallBacks -C/data/-/NSIntMapValueCallBacks -C/econst/-/NSIntType -C/data/-/NSInvalidArchiveOperationException -C/data/-/NSInvalidArgumentException -C/data/-/NSInvalidatedAllObjectsKey -C/data/-/NSInvalidatedObjectsKey -C/econst/-/NSInvalidIndexSpecifierError -C/data/-/NSInvalidReceivePortException -C/data/-/NSInvalidSendPortException -C/data/-/NSInvalidUnarchiveOperationException -Objective-C/cl/-/NSInvocation -Objective-C/cl/-/NSInvocationOperation -C/data/-/NSInvocationOperationCancelledException -C/data/-/NSInvocationOperationVoidResultException -C/data/-/NSInvokesSeparatelyWithArrayObjectsBindingOption -C/func/-/NSIsControllerMarker -C/func/-/NSIsEmptyRect -C/data/-/NSIsIndeterminateBinding -C/data/-/NSIslamicCalendar -C/data/-/NSIslamicCivilCalendar -C/data/-/NSIsNilTransformerName -C/data/-/NSIsNotNilTransformerName -C/econst/-/NSISO2022JPStringEncoding -C/data/-/NSISO8601Calendar -C/econst/-/NSISOLatin1StringEncoding -C/econst/-/NSISOLatin2StringEncoding -C/func/-/NSIsSymbolNameDefined -C/func/-/NSIsSymbolNameDefinedInImage -C/func/-/NSIsSymbolNameDefinedWithHint -C/econst/-/NSItalicFontMask -C/econst/-/NSItemReplacementDirectory -C/data/-/NSJapaneseCalendar -C/econst/-/NSJapaneseEUCGlyphPacking -C/econst/-/NSJapaneseEUCStringEncoding -C/func/-/NSJavaBundleCleanup -C/func/-/NSJavaBundleSetup -C/data/-/NSJavaClasses -C/func/-/NSJavaClassesForBundle -C/func/-/NSJavaClassesFromPath -C/data/-/NSJavaDidCreateVirtualMachineNotification -C/data/-/NSJavaDidSetupVirtualMachineNotification -C/data/-/NSJavaLibraryPath -C/func/-/NSJavaNeedsToLoadClasses -C/func/-/NSJavaNeedsVirtualMachine -C/func/-/NSJavaObjectNamedInPath -C/data/-/NSJavaOwnVirtualMachine -C/data/-/NSJavaPath -C/data/-/NSJavaPathSeparator -C/func/-/NSJavaProvidesClasses -C/data/-/NSJavaRoot -C/func/-/NSJavaSetup -C/func/-/NSJavaSetupVirtualMachine -C/data/-/NSJavaUserPath -C/data/-/NSJavaWillCreateVirtualMachineNotification -C/data/-/NSJavaWillSetupVirtualMachineNotification -C/econst/-/NSJPEG2000FileType -C/econst/-/NSJPEGFileType -C/econst/-/NSJustifiedTextAlignment -C/data/-/NSKernAttributeName -C/econst/-/NSKeyDown -C/econst/-/NSKeyDownMask -Objective-C/cl/-/NSKeyedArchiver -Objective-C/intf/-/NSKeyedArchiverDelegate -C/data/-/NSKeyedUnarchiveFromDataTransformerName -Objective-C/cl/-/NSKeyedUnarchiver -Objective-C/intf/-/NSKeyedUnarchiverDelegate -C/econst/-/NSKeyPathExpressionType -C/econst/-/NSKeySpecifierEvaluationScriptError -C/econst/-/NSKeyUp -C/econst/-/NSKeyUpMask -Objective-C/cat/-/NSKeyValueBindingCreation -C/tdef/-/NSKeyValueChange -C/data/-/NSKeyValueChangeIndexesKey -C/econst/-/NSKeyValueChangeInsertion -C/data/-/NSKeyValueChangeKindKey -C/data/-/NSKeyValueChangeNewKey -C/data/-/NSKeyValueChangeNotificationIsPriorKey -C/data/-/NSKeyValueChangeOldKey -C/econst/-/NSKeyValueChangeRemoval -C/econst/-/NSKeyValueChangeReplacement -C/econst/-/NSKeyValueChangeSetting -Objective-C/cat/-/NSKeyValueCoding -C/econst/-/NSKeyValueIntersectSetMutation -C/econst/-/NSKeyValueMinusSetMutation -Objective-C/cat/-/NSKeyValueObserving -C/econst/-/NSKeyValueObservingOptionInitial -C/econst/-/NSKeyValueObservingOptionNew -C/econst/-/NSKeyValueObservingOptionOld -C/econst/-/NSKeyValueObservingOptionPrior -C/tdef/-/NSKeyValueObservingOptions -C/tdef/-/NSKeyValueSetMutationKind -C/econst/-/NSKeyValueSetSetMutation -C/econst/-/NSKeyValueUnionSetMutation -C/econst/-/NSKeyValueValidationError -C/data/-/NSKeywordsDocumentAttribute -C/econst/-/NSLABColorSpaceModel -C/data/-/NSLabelBinding -C/econst/-/NSLandscapeOrientation -C/data/-/NSLaterTimeDesignations -Objective-C/cl/-/NSLayoutManager -Objective-C/intf/-/NSLayoutManagerDelegate -C/econst/-/NSLeftArrowFunctionKey -C/data/-/NSLeftMarginDocumentAttribute -C/econst/-/NSLeftMouseDown -C/econst/-/NSLeftMouseDownMask -C/econst/-/NSLeftMouseDragged -C/econst/-/NSLeftMouseDraggedMask -C/econst/-/NSLeftMouseUp -C/econst/-/NSLeftMouseUpMask -C/econst/-/NSLeftTabsBezelBorder -C/econst/-/NSLeftTabStopType -C/econst/-/NSLeftTextAlignment -C/econst/-/NSLeftTextMovement -C/econst/-/NSLessThanComparison -C/econst/-/NSLessThanOrEqualToComparison -C/econst/-/NSLessThanOrEqualToPredicateOperatorType -C/econst/-/NSLessThanPredicateOperatorType -Objective-C/cl/-/NSLevelIndicator -Objective-C/cl/-/NSLevelIndicatorCell -C/tdef/-/NSLevelIndicatorStyle -C/econst/-/NSLibraryDirectory -C/func/-/NSLibraryNameForModule -C/data/-/NSLigatureAttributeName -C/econst/-/NSLighterFontAction -C/data/-/NSLightGray -C/econst/-/NSLikePredicateOperatorType -C/econst/-/NSLinearSlider -C/econst/-/NSLineBorder -C/econst/-/NSLineBreakByCharWrapping -C/econst/-/NSLineBreakByClipping -C/econst/-/NSLineBreakByTruncatingHead -C/econst/-/NSLineBreakByTruncatingMiddle -C/econst/-/NSLineBreakByTruncatingTail -C/econst/-/NSLineBreakByWordWrapping -C/tdef/-/NSLineCapStyle -C/econst/-/NSLineDoesntMove -C/tdef/-/NSLineJoinStyle -C/tdef/-/NSLineMovementDirection -C/econst/-/NSLineMovesDown -C/econst/-/NSLineMovesLeft -C/econst/-/NSLineMovesRight -C/econst/-/NSLineMovesUp -C/econst/-/NSLineSeparatorCharacter -C/tdef/-/NSLineSweepDirection -C/econst/-/NSLineSweepDown -C/econst/-/NSLineSweepLeft -C/econst/-/NSLineSweepRight -C/econst/-/NSLineSweepUp -C/econst/-/NSLineToBezierPathElement -C/data/-/NSLinkAttributeName -C/func/-/NSLinkModule -C/econst/-/NSListModeMatrix -C/econst/-/NSLiteralSearch -C/data/-/NSLoadedClasses -C/econst/-/NSLocalDomainMask -Objective-C/cl/-/NSLocale -C/data/-/NSLocaleAlternateQuotationBeginDelimiterKey -C/data/-/NSLocaleAlternateQuotationEndDelimiterKey -C/data/-/NSLocaleCalendar -C/data/-/NSLocaleCollationIdentifier -C/data/-/NSLocaleCollatorIdentifier -C/data/-/NSLocaleCountryCode -C/data/-/NSLocaleCurrencyCode -C/data/-/NSLocaleCurrencySymbol -C/data/-/NSLocaleDecimalSeparator -C/data/-/NSLocaleExemplarCharacterSet -C/data/-/NSLocaleGroupingSeparator -C/data/-/NSLocaleIdentifier -C/data/-/NSLocaleLanguageCode -C/tdef/-/NSLocaleLanguageDirection -C/econst/-/NSLocaleLanguageDirectionBottomToTop -C/econst/-/NSLocaleLanguageDirectionLeftToRight -C/econst/-/NSLocaleLanguageDirectionRightToLeft -C/econst/-/NSLocaleLanguageDirectionTopToBottom -C/econst/-/NSLocaleLanguageDirectionUnknown -C/data/-/NSLocaleMeasurementSystem -C/data/-/NSLocaleQuotationBeginDelimiterKey -C/data/-/NSLocaleQuotationEndDelimiterKey -C/data/-/NSLocaleScriptCode -C/econst/-/NSLocaleSensitivePredicateOption -C/data/-/NSLocaleUsesMetricSystem -C/data/-/NSLocaleVariantCode -C/data/-/NSLocalizedDescriptionKey -C/data/-/NSLocalizedFailureReasonErrorKey -C/data/-/NSLocalizedKeyDictionaryBinding -C/data/-/NSLocalizedRecoveryOptionsErrorKey -C/data/-/NSLocalizedRecoverySuggestionErrorKey -C/macro/-/NSLocalizedString -C/macro/-/NSLocalizedStringFromTable -C/macro/-/NSLocalizedStringFromTableInBundle -C/macro/-/NSLocalizedStringWithDefaultValue -C/data/-/NSLocalNotificationCenterType -C/func/-/NSLocationInRange -Objective-C/cl/-/NSLock -Objective-C/intf/-/NSLocking -C/func/-/NSLog -C/macro/-/NSLogAndHandleEveryExceptionMask -Objective-C/cl/-/NSLogicalTest -C/econst/-/NSLogOtherExceptionMask -C/func/-/NSLogPageSize -C/econst/-/NSLogTopLevelExceptionMask -C/econst/-/NSLogUncaughtExceptionMask -C/econst/-/NSLogUncaughtRuntimeErrorMask -C/econst/-/NSLogUncaughtSystemExceptionMask -C/func/-/NSLogv -C/func/-/NSLookupAndBindSymbol -C/func/-/NSLookupAndBindSymbolWithHint -C/func/-/NSLookupSymbolInImage -C/func/-/NSLookupSymbolInModule -Objective-C/cl/-/NSMachBootstrapServer -C/data/-/NSMachErrorDomain -C/econst/-/NSMACHOperatingSystem -Objective-C/cl/-/NSMachPort -C/econst/-/NSMachPortDeallocateNone -C/econst/-/NSMachPortDeallocateReceiveRight -C/econst/-/NSMachPortDeallocateSendRight -Objective-C/intf/-/NSMachPortDelegate -C/econst/-/NSMacintoshInterfaceStyle -C/econst/-/NSMacOSRomanStringEncoding -C/data/-/NSMacSimpleTextDocumentType -C/macro/-/NSMainMenuWindowLevel -C/func/-/NSMakeCollectable -C/func/-/NSMakePoint -C/func/-/NSMakeRange -C/func/-/NSMakeRect -C/func/-/NSMakeSize -C/data/-/NSMallocException -Objective-C/cl/-/NSManagedObject -Objective-C/cl/-/NSManagedObjectContext -C/data/-/NSManagedObjectContextBinding -C/data/-/NSManagedObjectContextDidSaveNotification -C/econst/-/NSManagedObjectContextLockingError -C/data/-/NSManagedObjectContextObjectsDidChangeNotification -C/data/-/NSManagedObjectContextWillSaveNotification -C/econst/-/NSManagedObjectExternalRelationshipError -Objective-C/cl/-/NSManagedObjectID -C/econst/-/NSManagedObjectIDResultType -C/econst/-/NSManagedObjectMergeError -Objective-C/cl/-/NSManagedObjectModel -C/econst/-/NSManagedObjectReferentialIntegrityError -C/econst/-/NSManagedObjectResultType -C/econst/-/NSManagedObjectValidationError -C/data/-/NSManagerDocumentAttribute -C/tdef/-/NSMapEnumerator -C/func/-/NSMapGet -C/func/-/NSMapInsert -C/func/-/NSMapInsertIfAbsent -C/func/-/NSMapInsertKnownAbsent -C/func/-/NSMapMember -C/econst/-/NSMappedRead -Objective-C/cl/-/NSMappingModel -C/func/-/NSMapRemove -Objective-C/cl/-/NSMapTable -C/tdef/-/NSMapTable -C/econst/-/NSMapTableCopyIn -C/tdef/-/NSMapTableKeyCallBacks -C/econst/-/NSMapTableObjectPointerPersonality -C/tdef/-/NSMapTableOptions -C/tag/-/NSMapTableOptions -C/econst/-/NSMapTableStrongMemory -C/tdef/-/NSMapTableValueCallBacks -C/econst/-/NSMapTableZeroingWeakMemory -C/data/-/NSMarkedClauseSegmentAttributeName -C/econst/-/NSMatchesPredicateOperatorType -Objective-C/cl/-/NSMatrix -Objective-C/intf/-/NSMatrixDelegate -C/tdef/-/NSMatrixMode -C/data/-/NSMaximumKeyValueOperator -C/data/-/NSMaximumRecentsBinding -C/macro/-/NSMaximumStringLength -C/func/-/NSMaxRange -C/data/-/NSMaxValueBinding -C/data/-/NSMaxWidthBinding -C/func/-/NSMaxX -C/econst/-/NSMaxXEdge -C/func/-/NSMaxY -C/econst/-/NSMaxYEdge -Objective-C/cl/-/NSMenu -Objective-C/intf/-/NSMenuDelegate -C/data/-/NSMenuDidAddItemNotification -C/data/-/NSMenuDidBeginTrackingNotification -C/data/-/NSMenuDidChangeItemNotification -C/data/-/NSMenuDidEndTrackingNotification -C/data/-/NSMenuDidRemoveItemNotification -C/data/-/NSMenuDidSendActionNotification -C/econst/-/NSMenuFunctionKey -Objective-C/cl/-/NSMenuItem -Objective-C/cl/-/NSMenuItemCell -C/tdef/-/NSMenuProperties -C/econst/-/NSMenuPropertyItemAccessibilityDescription -C/econst/-/NSMenuPropertyItemAttributedTitle -C/econst/-/NSMenuPropertyItemEnabled -C/econst/-/NSMenuPropertyItemImage -C/econst/-/NSMenuPropertyItemKeyEquivalent -C/econst/-/NSMenuPropertyItemTitle -Objective-C/cat/-/NSMenuValidation -Objective-C/cl/-/NSMenuView -C/data/-/NSMenuWillSendActionNotification -C/data/-/NSMergeByPropertyObjectTrumpMergePolicy -C/data/-/NSMergeByPropertyStoreTrumpMergePolicy -Objective-C/cl/-/NSMessagePort -Objective-C/cl/-/NSMessagePortNameServer -Objective-C/cl/-/NSMetadataItem -Objective-C/cl/-/NSMetadataQuery -Objective-C/cl/-/NSMetadataQueryAttributeValueTuple -Objective-C/intf/-/NSMetadataQueryDelegate -C/data/-/NSMetadataQueryDidFinishGatheringNotification -C/data/-/NSMetadataQueryDidStartGatheringNotification -C/data/-/NSMetadataQueryDidUpdateNotification -C/data/-/NSMetadataQueryGatheringProgressNotification -C/data/-/NSMetadataQueryLocalComputerScope -C/data/-/NSMetadataQueryNetworkScope -C/data/-/NSMetadataQueryResultContentRelevanceAttribute -Objective-C/cl/-/NSMetadataQueryResultGroup -C/data/-/NSMetadataQueryUserHomeScope -Objective-C/cl/-/NSMethodSignature -Objective-C/cl/-/NSMiddleSpecifier -C/econst/-/NSMiddleSubelement -C/func/-/NSMidX -C/func/-/NSMidY -C/data/-/NSMigratePersistentStoresAutomaticallyOption -C/econst/-/NSMigrationCancelledError -C/data/-/NSMigrationDestinationObjectKey -C/data/-/NSMigrationEntityMappingKey -C/data/-/NSMigrationEntityPolicyKey -C/econst/-/NSMigrationError -Objective-C/cl/-/NSMigrationManager -C/econst/-/NSMigrationManagerDestinationStoreError -C/data/-/NSMigrationManagerKey -C/econst/-/NSMigrationManagerSourceStoreError -C/econst/-/NSMigrationMissingMappingModelError -C/econst/-/NSMigrationMissingSourceModelError -C/data/-/NSMigrationPropertyMappingKey -C/data/-/NSMigrationSourceObjectKey -C/econst/-/NSMiniaturizableWindowMask -C/econst/-/NSMiniControlSize -C/data/-/NSMinimumKeyValueOperator -C/econst/-/NSMinusSetExpressionType -C/econst/-/NSMinuteCalendarUnit -C/data/-/NSMinValueBinding -C/data/-/NSMinWidthBinding -C/func/-/NSMinX -C/econst/-/NSMinXEdge -C/func/-/NSMinY -C/econst/-/NSMinYEdge -C/econst/-/NSMiterLineJoinStyle -C/econst/-/NSMixedState -C/data/-/NSMixedStateImageBinding -C/data/-/NSModalPanelRunLoopMode -C/macro/-/NSModalPanelWindowLevel -C/tdef/-/NSModalSession -C/data/-/NSModelPathKey -C/econst/-/NSModeSwitchFunctionKey -C/data/-/NSModificationTimeDocumentAttribute -C/func/-/NSModuleForSymbol -C/econst/-/NSMomentaryChangeButton -C/econst/-/NSMomentaryLight -C/econst/-/NSMomentaryLightButton -C/econst/-/NSMomentaryPushButton -C/econst/-/NSMomentaryPushInButton -C/econst/-/NSMonthCalendarUnit -C/data/-/NSMonthNameArray -C/econst/-/NSMouseEntered -C/econst/-/NSMouseEnteredMask -C/econst/-/NSMouseEventSubtype -C/econst/-/NSMouseExited -C/econst/-/NSMouseExitedMask -C/func/-/NSMouseInRect -C/econst/-/NSMouseMoved -C/econst/-/NSMouseMovedMask -Objective-C/cl/-/NSMoveCommand -C/econst/-/NSMoveToBezierPathElement -C/econst/-/NSMoviesDirectory -C/tag/-/NSMultibyteGlyphPacking -C/tdef/-/NSMultibyteGlyphPacking -C/data/-/NSMultipleTextSelectionPboardType -C/data/-/NSMultipleValuesMarker -C/data/-/NSMultipleValuesPlaceholderBindingOption -C/econst/-/NSMusicDirectory -Objective-C/cl/-/NSMutableArray -Objective-C/cl/-/NSMutableAttributedString -Objective-C/cat/-/NSMutableAttributedString(AppKitAdditions) -Objective-C/cl/-/NSMutableCharacterSet -Objective-C/intf/-/NSMutableCopying -Objective-C/cl/-/NSMutableData -Objective-C/cl/-/NSMutableDictionary -Objective-C/cl/-/NSMutableIndexSet -Objective-C/cl/-/NSMutableParagraphStyle -Objective-C/cl/-/NSMutableSet -Objective-C/cl/-/NSMutableString -Objective-C/cl/-/NSMutableURLRequest -C/data/-/NSNamedColorSpace -C/func/-/NSNameOfModule -C/func/-/NSNameOfSymbol -Objective-C/cl/-/NSNameSpecifier -C/econst/-/NSNarrowFontMask -C/econst/-/NSNativeShortGlyphPacking -C/econst/-/NSNaturalTextAlignment -C/data/-/NSNegateBooleanTransformerName -C/data/-/NSNegativeCurrencyFormatString -Objective-C/cl/-/NSNetService -Objective-C/cl/-/NSNetServiceBrowser -Objective-C/intf/-/NSNetServiceBrowserDelegate -Objective-C/intf/-/NSNetServiceDelegate -C/econst/-/NSNetServiceNoAutoRename -C/tdef/-/NSNetServiceOptions -C/econst/-/NSNetServicesActivityInProgress -C/econst/-/NSNetServicesBadArgumentError -C/econst/-/NSNetServicesCancelledError -C/econst/-/NSNetServicesCollisionError -C/tdef/-/NSNetServicesError -C/data/-/NSNetServicesErrorCode -C/data/-/NSNetServicesErrorDomain -C/econst/-/NSNetServicesInvalidError -C/econst/-/NSNetServicesNotFoundError -C/econst/-/NSNetServicesTimeoutError -C/econst/-/NSNetServicesUnknownError -C/econst/-/NSNetworkDomainMask -C/econst/-/NSNewlineCharacter -C/data/-/NSNextDayDesignations -C/econst/-/NSNextFunctionKey -C/func/-/NSNextHashEnumeratorItem -C/func/-/NSNextMapEnumeratorPair -C/data/-/NSNextNextDayDesignations -C/econst/-/NSNextStepInterfaceStyle -C/econst/-/NSNEXTSTEPStringEncoding -Objective-C/cl/-/NSNib -Objective-C/cat/-/NSNibAwaking -Objective-C/cl/-/NSNibConnector -Objective-C/cl/-/NSNibControlConnector -C/data/-/NSNibLoadingException -Objective-C/cl/-/NSNibOutletConnector -C/data/-/NSNibOwner -C/data/-/NSNibTopLevelObjects -C/econst/-/NSNoActionDeleteRule -C/econst/-/NSNoBorder -C/econst/-/NSNoCellMask -C/econst/-/NSNoFontChangeAction -C/econst/-/NSNoImage -C/econst/-/NSNoInterfaceStyle -C/econst/-/NSNoModeColorPanel -C/econst/-/NSNonactivatingPanelMask -C/econst/-/NSNonLossyASCIIStringEncoding -C/data/-/NSNonOwnedPointerHashCallBacks -C/data/-/NSNonOwnedPointerMapKeyCallBacks -C/data/-/NSNonOwnedPointerMapValueCallBacks -C/data/-/NSNonOwnedPointerOrNullMapKeyCallBacks -C/data/-/NSNonRetainedObjectHashCallBacks -C/data/-/NSNonRetainedObjectMapKeyCallBacks -C/data/-/NSNonRetainedObjectMapValueCallBacks -C/econst/-/NSNonStandardCharacterSetFontMask -C/econst/-/NSNonZeroWindingRule -C/econst/-/NSNormalizedPredicateOption -C/macro/-/NSNormalWindowLevel -C/econst/-/NSNoScriptError -C/econst/-/NSNoScrollerParts -C/data/-/NSNoSelectionMarker -C/data/-/NSNoSelectionPlaceholderBindingOption -C/econst/-/NSNoSpecifierError -C/econst/-/NSNoSubelement -C/econst/-/NSNoTabsBezelBorder -C/econst/-/NSNoTabsLineBorder -C/econst/-/NSNoTabsNoBorder -C/macro/-/NSNotAnIntegerMapKey -C/macro/-/NSNotAnIntMapKey -C/macro/-/NSNotAPointerMapKey -C/data/-/NSNotApplicableMarker -C/data/-/NSNotApplicablePlaceholderBindingOption -C/econst/-/NSNotEqualToPredicateOperatorType -C/econst/-/NSNotFound -Objective-C/cl/-/NSNotification -Objective-C/cl/-/NSNotificationCenter -C/tdef/-/NSNotificationCoalescing -C/econst/-/NSNotificationCoalescingOnName -C/econst/-/NSNotificationCoalescingOnSender -C/econst/-/NSNotificationDeliverImmediately -C/econst/-/NSNotificationNoCoalescing -C/econst/-/NSNotificationPostToAllSessions -Objective-C/cl/-/NSNotificationQueue -C/tdef/-/NSNotificationSuspensionBehavior -C/econst/-/NSNotificationSuspensionBehaviorCoalesce -C/econst/-/NSNotificationSuspensionBehaviorDeliverImmediately -C/econst/-/NSNotificationSuspensionBehaviorDrop -C/econst/-/NSNotificationSuspensionBehaviorHold -C/econst/-/NSNoTitle -C/econst/-/NSNoTopLevelContainersSpecifierError -C/econst/-/NSNotPredicateType -C/econst/-/NSNoUnderlineStyle -Objective-C/cl/-/NSNull -C/econst/-/NSNullCellType -C/econst/-/NSNullGlyph -C/econst/-/NSNullifyDeleteRule -C/data/-/NSNullPlaceholderBindingOption -Objective-C/cl/-/NSNumber -Objective-C/cl/-/NSNumberFormatter -C/tdef/-/NSNumberFormatterBehavior -C/econst/-/NSNumberFormatterBehavior10_0 -C/econst/-/NSNumberFormatterBehavior10_4 -C/econst/-/NSNumberFormatterBehaviorDefault -C/econst/-/NSNumberFormatterCurrencyStyle -C/econst/-/NSNumberFormatterDecimalStyle -C/econst/-/NSNumberFormatterNoStyle -C/econst/-/NSNumberFormatterPadAfterPrefix -C/econst/-/NSNumberFormatterPadAfterSuffix -C/econst/-/NSNumberFormatterPadBeforePrefix -C/econst/-/NSNumberFormatterPadBeforeSuffix -C/tdef/-/NSNumberFormatterPadPosition -C/econst/-/NSNumberFormatterPercentStyle -C/econst/-/NSNumberFormatterRoundCeiling -C/econst/-/NSNumberFormatterRoundDown -C/econst/-/NSNumberFormatterRoundFloor -C/econst/-/NSNumberFormatterRoundHalfDown -C/econst/-/NSNumberFormatterRoundHalfEven -C/econst/-/NSNumberFormatterRoundHalfUp -C/tdef/-/NSNumberFormatterRoundingMode -C/econst/-/NSNumberFormatterRoundUp -C/econst/-/NSNumberFormatterScientificStyle -C/econst/-/NSNumberFormatterSpellOutStyle -C/tdef/-/NSNumberFormatterStyle -C/func/-/NSNumberOfColorComponents -C/econst/-/NSNumericPadKeyMask -C/econst/-/NSNumericSearch -Objective-C/intf/-/NSObjCTypeSerializationCallBack -Objective-C/intf/-/NSObject -Objective-C/cl/-/NSObject -Objective-C/cat/-/NSObject(DRBurnProgressPanelDelegateMethods) -Objective-C/cat/-/NSObject(DREraseProgressPanelDelegateMethods) -Objective-C/cat/-/NSObject(DRSetupPanelDelegate) -Objective-C/cat/-/NSObject(IBObjectIntegration) -Objective-C/cat/-/NSObject(IOBluetoothDeviceInquiryDelegate) -Objective-C/cat/-/NSObject(IOBluetoothHostControllerDelegate) -Objective-C/cat/-/NSObject(XGAuthenticatorDelegate) -Objective-C/cat/-/NSObject(XGConnectionDelegate) -Objective-C/cat/-/NSObject(XGFileDownloadDelegate) -Objective-C/cl/-/NSObjectController -C/econst/-/NSObjectFileImageAccess -C/econst/-/NSObjectFileImageArch -C/econst/-/NSObjectFileImageFailure -C/econst/-/NSObjectFileImageFormat -C/econst/-/NSObjectFileImageInappropriateFile -C/tdef/-/NSObjectFileImageReturnCode -C/econst/-/NSObjectFileImageSuccess -C/data/-/NSObjectHashCallBacks -C/econst/-/NSObjectIDAttributeType -C/data/-/NSObjectInaccessibleException -C/data/-/NSObjectMapKeyCallBacks -C/data/-/NSObjectMapValueCallBacks -C/data/-/NSObjectNotAvailableException -C/data/-/NSObjectURIKey -C/data/-/NSObliquenessAttributeName -C/data/-/NSObservedKeyPathKey -C/data/-/NSObservedObjectKey -C/data/-/NSOfficeOpenXMLTextDocumentType -C/func/-/NSOffsetRect -C/econst/-/NSOffState -C/data/-/NSOffStateImageBinding -C/econst/-/NSOKButton -C/data/-/NSOldStyleException -C/econst/-/NSOneByteGlyphPacking -C/econst/-/NSOnlyScrollerArrows -C/econst/-/NSOnOffButton -C/econst/-/NSOnState -C/data/-/NSOnStateImageBinding -C/data/-/NSOpenDocumentTextDocumentType -Objective-C/cl/-/NSOpenGLContext -C/tdef/-/NSOpenGLContextAuxiliary -C/tdef/-/NSOpenGLContextParameter -C/econst/-/NSOpenGLCPRasterizationEnable -C/econst/-/NSOpenGLCPStateValidation -C/econst/-/NSOpenGLCPSurfaceOpacity -C/econst/-/NSOpenGLCPSurfaceOrder -C/econst/-/NSOpenGLCPSwapInterval -C/econst/-/NSOpenGLCPSwapRectangle -C/econst/-/NSOpenGLCPSwapRectangleEnable -C/func/-/NSOpenGLGetOption -C/func/-/NSOpenGLGetVersion -C/tdef/-/NSOpenGLGlobalOption -C/econst/-/NSOpenGLGOClearFormatCache -C/econst/-/NSOpenGLGOFormatCacheSize -C/econst/-/NSOpenGLGOResetLibrary -C/econst/-/NSOpenGLGORetainRenderers -Objective-C/cl/-/NSOpenGLLayer -C/econst/-/NSOpenGLPFAAccelerated -C/econst/-/NSOpenGLPFAAcceleratedCompute -C/econst/-/NSOpenGLPFAAccumSize -C/econst/-/NSOpenGLPFAAllowOfflineRenderers -C/econst/-/NSOpenGLPFAAllRenderers -C/econst/-/NSOpenGLPFAAlphaSize -C/econst/-/NSOpenGLPFAAuxBuffers -C/econst/-/NSOpenGLPFAAuxDepthStencil -C/econst/-/NSOpenGLPFABackingStore -C/econst/-/NSOpenGLPFAClosestPolicy -C/econst/-/NSOpenGLPFAColorFloat -C/econst/-/NSOpenGLPFAColorSize -C/econst/-/NSOpenGLPFACompliant -C/econst/-/NSOpenGLPFADepthSize -C/econst/-/NSOpenGLPFADoubleBuffer -C/econst/-/NSOpenGLPFAFullScreen -C/econst/-/NSOpenGLPFAMaximumPolicy -C/econst/-/NSOpenGLPFAMinimumPolicy -C/econst/-/NSOpenGLPFAMPSafe -C/econst/-/NSOpenGLPFAMultisample -C/econst/-/NSOpenGLPFAMultiScreen -C/econst/-/NSOpenGLPFANoRecovery -C/econst/-/NSOpenGLPFAOffScreen -C/econst/-/NSOpenGLPFAPixelBuffer -C/econst/-/NSOpenGLPFARemotePixelBuffer -C/econst/-/NSOpenGLPFARendererID -C/econst/-/NSOpenGLPFARobust -C/econst/-/NSOpenGLPFASampleAlpha -C/econst/-/NSOpenGLPFASampleBuffers -C/econst/-/NSOpenGLPFASamples -C/econst/-/NSOpenGLPFAScreenMask -C/econst/-/NSOpenGLPFASingleRenderer -C/econst/-/NSOpenGLPFAStencilSize -C/econst/-/NSOpenGLPFAStereo -C/econst/-/NSOpenGLPFASupersample -C/econst/-/NSOpenGLPFAVirtualScreenCount -C/econst/-/NSOpenGLPFAWindow -Objective-C/cl/-/NSOpenGLPixelBuffer -Objective-C/cl/-/NSOpenGLPixelFormat -C/tdef/-/NSOpenGLPixelFormatAttribute -C/tdef/-/NSOpenGLPixelFormatAuxiliary -C/func/-/NSOpenGLSetOption -Objective-C/cl/-/NSOpenGLView -Objective-C/cl/-/NSOpenPanel -Objective-C/intf/-/NSOpenSavePanelDelegate -C/func/-/NSOpenStepRootDirectory -C/econst/-/NSOpenStepUnicodeReservedBase -Objective-C/cl/-/NSOperation -C/data/-/NSOperationNotSupportedForKeyException -C/econst/-/NSOperationNotSupportedForKeyScriptError -C/econst/-/NSOperationNotSupportedForKeySpecifierError -Objective-C/cl/-/NSOperationQueue -C/econst/-/NSOperationQueueDefaultMaxConcurrentOperationCount -C/tdef/-/NSOperationQueuePriority -C/econst/-/NSOperationQueuePriorityHigh -C/econst/-/NSOperationQueuePriorityLow -C/econst/-/NSOperationQueuePriorityNormal -C/econst/-/NSOperationQueuePriorityVeryHigh -C/econst/-/NSOperationQueuePriorityVeryLow -C/data/-/NSOptionsKey -C/econst/-/NSOrderedAscending -C/econst/-/NSOrderedDescending -C/econst/-/NSOrderedSame -C/econst/-/NSOrPredicateType -Objective-C/cl/-/NSOrthography -C/econst/-/NSOSF1OperatingSystem -C/data/-/NSOSStatusErrorDomain -C/econst/-/NSOtherMouseDown -C/econst/-/NSOtherMouseDownMask -C/econst/-/NSOtherMouseDragged -C/econst/-/NSOtherMouseDraggedMask -C/econst/-/NSOtherMouseUp -C/econst/-/NSOtherMouseUpMask -C/econst/-/NSOtherTextMovement -Objective-C/cl/-/NSOutlineView -C/data/-/NSOutlineViewColumnDidMoveNotification -C/data/-/NSOutlineViewColumnDidResizeNotification -Objective-C/intf/-/NSOutlineViewDataSource -Objective-C/intf/-/NSOutlineViewDelegate -C/econst/-/NSOutlineViewDropOnItemIndex -C/data/-/NSOutlineViewItemDidCollapseNotification -C/data/-/NSOutlineViewItemDidExpandNotification -C/data/-/NSOutlineViewItemWillCollapseNotification -C/data/-/NSOutlineViewItemWillExpandNotification -C/data/-/NSOutlineViewSelectionDidChangeNotification -C/data/-/NSOutlineViewSelectionIsChangingNotification -Objective-C/cl/-/NSOutputStream -C/data/-/NSOverwriteMergePolicy -C/data/-/NSOwnedObjectIdentityHashCallBacks -C/data/-/NSOwnedPointerHashCallBacks -C/data/-/NSOwnedPointerMapKeyCallBacks -C/data/-/NSOwnedPointerMapValueCallBacks -C/econst/-/NSPageDownFunctionKey -Objective-C/cl/-/NSPageLayout -C/func/-/NSPageSize -C/econst/-/NSPageUpFunctionKey -Objective-C/cl/-/NSPanel -C/data/-/NSPaperSizeDocumentAttribute -C/econst/-/NSParagraphSeparatorCharacter -Objective-C/cl/-/NSParagraphStyle -C/data/-/NSParagraphStyleAttributeName -C/macro/-/NSParameterAssert -C/data/-/NSParseErrorException -Objective-C/cl/-/NSPasteboard -C/data/-/NSPasteboardCommunicationException -Objective-C/cl/-/NSPasteboardItem -Objective-C/intf/-/NSPasteboardItemDataProvider -Objective-C/intf/-/NSPasteboardOwner -Objective-C/intf/-/NSPasteboardReading -C/econst/-/NSPasteboardReadingAsData -C/econst/-/NSPasteboardReadingAsKeyedArchive -C/econst/-/NSPasteboardReadingAsPropertyList -C/econst/-/NSPasteboardReadingAsString -C/tdef/-/NSPasteboardReadingOptions -C/data/-/NSPasteboardTypeColor -C/data/-/NSPasteboardTypeFindPanelSearchOptions -C/data/-/NSPasteboardTypeFont -C/data/-/NSPasteboardTypeHTML -C/data/-/NSPasteboardTypeMultipleTextSelection -C/data/-/NSPasteboardTypePDF -C/data/-/NSPasteboardTypePNG -C/data/-/NSPasteboardTypeRTF -C/data/-/NSPasteboardTypeRTFD -C/data/-/NSPasteboardTypeRuler -C/data/-/NSPasteboardTypeSound -C/data/-/NSPasteboardTypeString -C/data/-/NSPasteboardTypeTabularText -C/data/-/NSPasteboardTypeTIFF -C/data/-/NSPasteboardURLReadingContentsConformToTypesKey -C/data/-/NSPasteboardURLReadingFileURLsOnlyKey -Objective-C/intf/-/NSPasteboardWriting -C/tdef/-/NSPasteboardWritingOptions -C/econst/-/NSPasteboardWritingPromised -Objective-C/cl/-/NSPathCell -Objective-C/intf/-/NSPathCellDelegate -Objective-C/cl/-/NSPathComponentCell -Objective-C/cl/-/NSPathControl -Objective-C/intf/-/NSPathControlDelegate -C/tdef/-/NSPathStyle -C/econst/-/NSPathStyleNavigationBar -C/econst/-/NSPathStylePopUp -C/econst/-/NSPathStyleStandard -C/data/-/NSPatternColorSpace -C/econst/-/NSPatternColorSpaceModel -C/econst/-/NSPauseFunctionKey -Objective-C/cl/-/NSPDFImageRep -C/data/-/NSPDFPboardType -C/econst/-/NSPenLowerSideMask -C/econst/-/NSPenPointingDevice -C/econst/-/NSPenTipMask -C/econst/-/NSPenUpperSideMask -C/func/-/NSPerformService -C/econst/-/NSPeriodic -C/econst/-/NSPeriodicMask -C/data/-/NSPersianCalendar -Objective-C/cl/-/NSPersistentDocument -Objective-C/cl/-/NSPersistentStore -Objective-C/cl/-/NSPersistentStoreCoordinator -Objective-C/cat/-/NSPersistentStoreCoordinator(SyncServicesAdditions) -C/econst/-/NSPersistentStoreCoordinatorLockingError -C/data/-/NSPersistentStoreCoordinatorStoresDidChangeNotification -Objective-C/intf/-/NSPersistentStoreCoordinatorSyncing -C/data/-/NSPersistentStoreCoordinatorWillRemoveStoreNotification -C/econst/-/NSPersistentStoreIncompatibleSchemaError -C/econst/-/NSPersistentStoreIncompatibleVersionHashError -C/econst/-/NSPersistentStoreIncompleteSaveError -C/econst/-/NSPersistentStoreInvalidTypeError -C/econst/-/NSPersistentStoreOpenError -C/econst/-/NSPersistentStoreOperationError -C/data/-/NSPersistentStoreOSCompatibility -C/econst/-/NSPersistentStoreSaveError -C/econst/-/NSPersistentStoreTimeoutError -C/data/-/NSPersistentStoreTimeoutOption -C/econst/-/NSPersistentStoreTypeMismatchError -Objective-C/cl/-/NSPICTImageRep -C/data/-/NSPICTPboardType -C/econst/-/NSPicturesDirectory -Objective-C/cl/-/NSPipe -Objective-C/cat/-/NSPlaceholders -C/data/-/NSPlainFileType -C/data/-/NSPlainTextDocumentType -C/econst/-/NSPlainTextTokenStyle -C/func/-/NSPlanarFromDepth -C/econst/-/NSPNGFileType -C/tdef/-/NSPoint -C/tdef/-/NSPointArray -Objective-C/cl/-/NSPointerArray -Objective-C/cl/-/NSPointerFunctions -C/econst/-/NSPointerFunctionsCopyIn -C/econst/-/NSPointerFunctionsCStringPersonality -C/econst/-/NSPointerFunctionsIntegerPersonality -C/econst/-/NSPointerFunctionsMachVirtualMemory -C/econst/-/NSPointerFunctionsMallocMemory -C/econst/-/NSPointerFunctionsObjectPersonality -C/econst/-/NSPointerFunctionsObjectPointerPersonality -C/econst/-/NSPointerFunctionsOpaqueMemory -C/econst/-/NSPointerFunctionsOpaquePersonality -C/tdef/-/NSPointerFunctionsOptions -C/econst/-/NSPointerFunctionsStrongMemory -C/econst/-/NSPointerFunctionsStructPersonality -C/econst/-/NSPointerFunctionsZeroingWeakMemory -C/data/-/NSPointerToStructHashCallBacks -C/func/-/NSPointFromCGPoint -C/func/-/NSPointFromString -C/tdef/-/NSPointingDeviceType -C/func/-/NSPointInRect -C/tdef/-/NSPointPointer -C/func/-/NSPointToCGPoint -C/econst/-/NSPopUpArrowAtBottom -C/econst/-/NSPopUpArrowAtCenter -C/tdef/-/NSPopUpArrowPosition -Objective-C/cl/-/NSPopUpButton -Objective-C/cl/-/NSPopUpButtonCell -C/data/-/NSPopUpButtonCellWillPopUpNotification -C/data/-/NSPopUpButtonWillPopUpNotification -C/macro/-/NSPopUpMenuWindowLevel -C/econst/-/NSPopUpNoArrow -Objective-C/cl/-/NSPort -Objective-C/cl/-/NSPortCoder -Objective-C/intf/-/NSPortDelegate -C/data/-/NSPortDidBecomeInvalidNotification -Objective-C/cl/-/NSPortMessage -Objective-C/cl/-/NSPortNameServer -C/econst/-/NSPortraitOrientation -C/data/-/NSPortReceiveException -C/data/-/NSPortSendException -C/data/-/NSPortTimeoutException -C/econst/-/NSPositionAfter -Objective-C/cl/-/NSPositionalSpecifier -C/econst/-/NSPositionBefore -C/econst/-/NSPositionBeginning -C/econst/-/NSPositionEnd -C/econst/-/NSPositionReplace -C/data/-/NSPositiveCurrencyFormatString -C/econst/-/NSPositiveDoubleType -C/econst/-/NSPositiveFloatType -C/econst/-/NSPositiveIntType -C/data/-/NSPOSIXErrorDomain -C/econst/-/NSPostASAP -C/econst/-/NSPosterFontMask -C/tdef/-/NSPostingStyle -C/econst/-/NSPostNow -C/data/-/NSPostScriptPboardType -C/econst/-/NSPostWhenIdle -C/econst/-/NSPowerOffEventType -C/data/-/NSPPDIncludeNotFoundException -C/data/-/NSPPDIncludeStackOverflowException -C/data/-/NSPPDIncludeStackUnderflowException -C/data/-/NSPPDParseException -Objective-C/cl/-/NSPredicate -C/data/-/NSPredicateBinding -Objective-C/cl/-/NSPredicateEditor -Objective-C/cl/-/NSPredicateEditorRowTemplate -C/data/-/NSPredicateFormatBindingOption -C/tdef/-/NSPredicateOperatorType -Objective-C/cl/-/NSPreferencePane -C/data/-/NSPreferencePaneCancelUnselectNotification -C/data/-/NSPreferencePaneDoUnselectNotification -C/econst/-/NSPreferencePanesDirectory -C/data/-/NSPrefixSpacesDocumentAttribute -C/econst/-/NSPressedTab -C/econst/-/NSPrevFunctionKey -C/data/-/NSPrintAllPages -C/data/-/NSPrintAllPresetsJobStyleHint -C/data/-/NSPrintBottomMargin -C/data/-/NSPrintCancelJob -C/data/-/NSPrintCopies -C/data/-/NSPrintDetailedErrorReporting -Objective-C/cl/-/NSPrinter -C/econst/-/NSPrinterDescriptionDirectory -C/econst/-/NSPrinterTableError -C/econst/-/NSPrinterTableNotFound -C/econst/-/NSPrinterTableOK -C/tdef/-/NSPrinterTableStatus -C/data/-/NSPrintFaxCoverSheetName -C/data/-/NSPrintFaxHighResolution -C/data/-/NSPrintFaxJob -C/data/-/NSPrintFaxModem -C/data/-/NSPrintFaxNumber -C/data/-/NSPrintFaxReceiverNames -C/data/-/NSPrintFaxReceiverNumbers -C/data/-/NSPrintFaxReturnReceipt -C/data/-/NSPrintFaxSendTime -C/data/-/NSPrintFaxTrimPageEnds -C/data/-/NSPrintFaxUseCoverSheet -C/data/-/NSPrintFirstPage -C/data/-/NSPrintFormName -C/econst/-/NSPrintFunctionKey -C/data/-/NSPrintHeaderAndFooter -C/data/-/NSPrintHorizontallyCentered -C/data/-/NSPrintHorizontalPagination -Objective-C/cl/-/NSPrintInfo -C/econst/-/NSPrintingCancelled -C/data/-/NSPrintingCommunicationException -C/econst/-/NSPrintingFailure -C/tdef/-/NSPrintingOrientation -C/tdef/-/NSPrintingPageOrder -C/tdef/-/NSPrintingPaginationMode -C/econst/-/NSPrintingReplyLater -C/econst/-/NSPrintingSuccess -C/data/-/NSPrintJobDisposition -C/data/-/NSPrintJobFeatures -C/data/-/NSPrintJobSavingFileNameExtensionHidden -C/data/-/NSPrintJobSavingURL -C/data/-/NSPrintLastPage -C/data/-/NSPrintLeftMargin -C/data/-/NSPrintManualFeed -C/data/-/NSPrintMustCollate -C/data/-/NSPrintNoPresetsJobStyleHint -Objective-C/cl/-/NSPrintOperation -C/data/-/NSPrintOperationExistsException -C/data/-/NSPrintOrientation -C/data/-/NSPrintPackageException -C/data/-/NSPrintPagesAcross -C/data/-/NSPrintPagesDown -C/data/-/NSPrintPagesPerSheet -Objective-C/cl/-/NSPrintPanel -Objective-C/intf/-/NSPrintPanelAccessorizing -C/data/-/NSPrintPanelAccessorySummaryItemDescriptionKey -C/data/-/NSPrintPanelAccessorySummaryItemNameKey -C/tdef/-/NSPrintPanelOptions -C/econst/-/NSPrintPanelShowsCopies -C/econst/-/NSPrintPanelShowsOrientation -C/econst/-/NSPrintPanelShowsPageRange -C/econst/-/NSPrintPanelShowsPageSetupAccessory -C/econst/-/NSPrintPanelShowsPaperSize -C/econst/-/NSPrintPanelShowsPreview -C/econst/-/NSPrintPanelShowsPrintSelection -C/econst/-/NSPrintPanelShowsScaling -C/data/-/NSPrintPaperFeed -C/data/-/NSPrintPaperName -C/data/-/NSPrintPaperSize -C/data/-/NSPrintPhotoJobStyleHint -C/data/-/NSPrintPreviewJob -C/data/-/NSPrintPrinter -C/data/-/NSPrintPrinterName -C/data/-/NSPrintReversePageOrder -C/data/-/NSPrintRightMargin -C/data/-/NSPrintSaveJob -C/data/-/NSPrintSavePath -C/data/-/NSPrintScalingFactor -C/econst/-/NSPrintScreenFunctionKey -C/data/-/NSPrintSelectionOnly -C/data/-/NSPrintSpoolJob -C/data/-/NSPrintTime -C/data/-/NSPrintTopMargin -C/data/-/NSPrintVerticallyCentered -C/data/-/NSPrintVerticalPagination -C/data/-/NSPriorDayDesignations -Objective-C/cl/-/NSProcessInfo -Objective-C/cl/-/NSProgressIndicator -C/econst/-/NSProgressIndicatorBarStyle -C/econst/-/NSProgressIndicatorPreferredAquaThickness -C/econst/-/NSProgressIndicatorPreferredLargeThickness -C/econst/-/NSProgressIndicatorPreferredSmallThickness -C/econst/-/NSProgressIndicatorPreferredThickness -C/econst/-/NSProgressIndicatorSpinningStyle -C/tdef/-/NSProgressIndicatorStyle -C/tdef/-/NSProgressIndicatorThickness -Objective-C/cl/-/NSPropertyDescription -C/econst/-/NSPropertyListBinaryFormat_v1_0 -C/econst/-/NSPropertyListErrorMaximum -C/econst/-/NSPropertyListErrorMinimum -C/tdef/-/NSPropertyListFormat -C/econst/-/NSPropertyListImmutable -C/tdef/-/NSPropertyListMutabilityOptions -C/econst/-/NSPropertyListMutableContainers -C/econst/-/NSPropertyListMutableContainersAndLeaves -C/econst/-/NSPropertyListOpenStepFormat -C/econst/-/NSPropertyListReadCorruptError -C/tdef/-/NSPropertyListReadOptions -C/econst/-/NSPropertyListReadStreamError -C/econst/-/NSPropertyListReadUnknownVersionError -Objective-C/cl/-/NSPropertyListSerialization -C/tdef/-/NSPropertyListWriteOptions -C/econst/-/NSPropertyListWriteStreamError -C/econst/-/NSPropertyListXMLFormat_v1_0 -Objective-C/cl/-/NSPropertyMapping -Objective-C/cl/-/NSPropertySpecifier -C/econst/-/NSProprietaryStringEncoding -Objective-C/cl/-/NSProtocolChecker -C/func/-/NSProtocolFromString -Objective-C/cl/-/NSProxy -Objective-C/cl/-/NSPurgeableData -C/econst/-/NSPushInCell -C/econst/-/NSPushInCellMask -C/econst/-/NSPushOnPushOffButton -C/econst/-/NSQuarterCalendarUnit -Objective-C/cl/-/NSQuitCommand -C/econst/-/NSRadioButton -C/econst/-/NSRadioModeMatrix -C/data/-/NSRaisesForNotApplicableKeysBindingOption -Objective-C/cl/-/NSRandomSpecifier -C/econst/-/NSRandomSubelement -C/tdef/-/NSRange -C/econst/-/NSRangeDateMode -C/data/-/NSRangeException -C/func/-/NSRangeFromString -C/tdef/-/NSRangePointer -Objective-C/cl/-/NSRangeSpecifier -C/econst/-/NSRatingLevelIndicatorStyle -C/data/-/NSReadOnlyDocumentAttribute -C/data/-/NSReadOnlyPersistentStoreOption -C/func/-/NSReadPixel -C/func/-/NSReallocateCollectable -C/func/-/NSRealMemoryAvailable -C/econst/-/NSReceiverEvaluationScriptError -C/econst/-/NSReceiversCantHandleCommandScriptError -C/data/-/NSRecentSearchesBinding -C/econst/-/NSRecessedBezelStyle -C/data/-/NSRecoveryAttempterErrorKey -C/tdef/-/NSRect -C/tdef/-/NSRectArray -C/func/-/NSRectClip -C/func/-/NSRectClipList -C/tdef/-/NSRectEdge -C/func/-/NSRectFill -C/func/-/NSRectFillList -C/func/-/NSRectFillListUsingOperation -C/func/-/NSRectFillListWithColors -C/func/-/NSRectFillListWithColorsUsingOperation -C/func/-/NSRectFillListWithGrays -C/func/-/NSRectFillUsingOperation -C/func/-/NSRectFromCGRect -C/func/-/NSRectFromString -C/tdef/-/NSRectPointer -C/func/-/NSRectToCGRect -Objective-C/cl/-/NSRecursiveLock -C/func/-/NSRecycleZone -C/econst/-/NSRedoFunctionKey -C/data/-/NSRefreshedObjectsKey -C/func/-/NSRegisterServicesProvider -C/data/-/NSRegistrationDomain -C/econst/-/NSRegularControlSize -C/econst/-/NSRegularSquareBezelStyle -Objective-C/cl/-/NSRelationshipDescription -C/econst/-/NSRelativeAfter -C/econst/-/NSRelativeBefore -C/tdef/-/NSRelativePosition -Objective-C/cl/-/NSRelativeSpecifier -C/func/-/NSReleaseAlertPanel -C/econst/-/NSRelevancyLevelIndicatorStyle -C/data/-/NSRemovedPersistentStoresKey -C/econst/-/NSRemoveEntityMappingType -C/econst/-/NSRemoveTraitFontAction -C/data/-/NSRepresentedFilenameBinding -C/data/-/NSRepublicOfChinaCalendar -C/tdef/-/NSRequestUserAttentionType -C/econst/-/NSRequiredArgumentsMissingScriptError -C/econst/-/NSResetCursorRectsRunLoopOrdering -C/econst/-/NSResetFunctionKey -C/func/-/NSResetHashTable -C/func/-/NSResetMapTable -C/econst/-/NSResizableWindowMask -Objective-C/cl/-/NSResponder -C/econst/-/NSReturnTextMovement -C/econst/-/NSRGBColorSpaceModel -C/econst/-/NSRGBModeColorPanel -C/econst/-/NSRightArrowFunctionKey -C/data/-/NSRightMarginDocumentAttribute -C/econst/-/NSRightMouseDown -C/econst/-/NSRightMouseDownMask -C/econst/-/NSRightMouseDragged -C/econst/-/NSRightMouseDraggedMask -C/econst/-/NSRightMouseUp -C/econst/-/NSRightMouseUpMask -C/econst/-/NSRightTabsBezelBorder -C/econst/-/NSRightTabStopType -C/econst/-/NSRightTextAlignment -C/econst/-/NSRightTextMovement -C/data/-/NSRollbackMergePolicy -C/econst/-/NSRoundBankers -C/econst/-/NSRoundDown -C/func/-/NSRoundDownToMultipleOfPageSize -C/econst/-/NSRoundedBezelStyle -C/econst/-/NSRoundedDisclosureBezelStyle -C/econst/-/NSRoundedTokenStyle -C/tdef/-/NSRoundingMode -C/econst/-/NSRoundLineCapStyle -C/econst/-/NSRoundLineJoinStyle -C/econst/-/NSRoundPlain -C/econst/-/NSRoundRectBezelStyle -C/econst/-/NSRoundUp -C/func/-/NSRoundUpToMultipleOfPageSize -C/data/-/NSRowHeightBinding -C/data/-/NSRTFDPboardType -C/data/-/NSRTFDTextDocumentType -C/data/-/NSRTFPboardType -C/data/-/NSRTFPropertyStackOverflowException -C/data/-/NSRTFTextDocumentType -Objective-C/cl/-/NSRuleEditor -Objective-C/intf/-/NSRuleEditorDelegate -C/tdef/-/NSRuleEditorNestingMode -C/econst/-/NSRuleEditorNestingModeCompound -C/econst/-/NSRuleEditorNestingModeList -C/econst/-/NSRuleEditorNestingModeSimple -C/econst/-/NSRuleEditorNestingModeSingle -C/data/-/NSRuleEditorPredicateComparisonModifier -C/data/-/NSRuleEditorPredicateCompoundType -C/data/-/NSRuleEditorPredicateCustomSelector -C/data/-/NSRuleEditorPredicateLeftExpression -C/data/-/NSRuleEditorPredicateOperatorType -C/data/-/NSRuleEditorPredicateOptions -C/data/-/NSRuleEditorPredicateRightExpression -C/data/-/NSRuleEditorRowsDidChangeNotification -C/tdef/-/NSRuleEditorRowType -C/econst/-/NSRuleEditorRowTypeCompound -C/econst/-/NSRuleEditorRowTypeSimple -Objective-C/cl/-/NSRulerMarker -C/tdef/-/NSRulerOrientation -C/data/-/NSRulerPboard -C/data/-/NSRulerPboardType -Objective-C/cl/-/NSRulerView -C/econst/-/NSRunAbortedResponse -C/func/-/NSRunAlertPanel -C/econst/-/NSRunContinuesResponse -C/func/-/NSRunCriticalAlertPanel -C/func/-/NSRunInformationalAlertPanel -Objective-C/cl/-/NSRunLoop -C/data/-/NSRunLoopCommonModes -Objective-C/cl/-/NSRunningApplication -C/econst/-/NSRunStoppedResponse -C/econst/-/NSSaveAsOperation -C/econst/-/NSSaveOperation -C/tdef/-/NSSaveOperationType -C/tdef/-/NSSaveOptions -C/econst/-/NSSaveOptionsAsk -C/econst/-/NSSaveOptionsNo -C/econst/-/NSSaveOptionsYes -Objective-C/cl/-/NSSavePanel -C/tdef/-/NSSavePanelAuxiliaryOpaque -C/econst/-/NSSaveToOperation -C/econst/-/NSScaleNone -C/econst/-/NSScaleProportionally -C/econst/-/NSScaleToFit -C/econst/-/NSScannedOption -Objective-C/cl/-/NSScanner -Objective-C/cl/-/NSScreen -C/tdef/-/NSScreenAuxiliaryOpaque -C/econst/-/NSScreenChangedEventType -C/data/-/NSScreenColorSpaceDidChangeNotification -C/macro/-/NSScreenSaverWindowLevel -Objective-C/cl/-/NSScriptClassDescription -Objective-C/cl/-/NSScriptCoercionHandler -Objective-C/cl/-/NSScriptCommand -Objective-C/cl/-/NSScriptCommandDescription -Objective-C/cl/-/NSScriptExecutionContext -Objective-C/cat/-/NSScriptingComparisonMethods -Objective-C/cat/-/NSScriptKeyValueCoding -Objective-C/cl/-/NSScriptObjectSpecifier -Objective-C/cat/-/NSScriptObjectSpecifiers -Objective-C/cl/-/NSScriptSuiteRegistry -Objective-C/cl/-/NSScriptWhoseTest -C/tdef/-/NSScrollArrowPosition -Objective-C/cl/-/NSScroller -C/tdef/-/NSScrollerArrow -C/econst/-/NSScrollerArrowsDefaultSetting -C/econst/-/NSScrollerArrowsMaxEnd -C/econst/-/NSScrollerArrowsMinEnd -C/econst/-/NSScrollerArrowsNone -C/econst/-/NSScrollerDecrementArrow -C/econst/-/NSScrollerDecrementLine -C/econst/-/NSScrollerDecrementPage -C/econst/-/NSScrollerIncrementArrow -C/econst/-/NSScrollerIncrementLine -C/econst/-/NSScrollerIncrementPage -C/econst/-/NSScrollerKnob -C/econst/-/NSScrollerKnobSlot -C/econst/-/NSScrollerNoPart -C/tdef/-/NSScrollerPart -C/econst/-/NSScrollLockFunctionKey -Objective-C/cl/-/NSScrollView -C/econst/-/NSScrollWheel -C/econst/-/NSScrollWheelMask -Objective-C/cl/-/NSSearchField -Objective-C/cl/-/NSSearchFieldCell -C/macro/-/NSSearchFieldClearRecentsMenuItemTag -C/macro/-/NSSearchFieldNoRecentsMenuItemTag -C/macro/-/NSSearchFieldRecentsMenuItemTag -C/macro/-/NSSearchFieldRecentsTitleMenuItemTag -C/tdef/-/NSSearchPathDirectory -C/tdef/-/NSSearchPathDomainMask -C/func/-/NSSearchPathForDirectoriesInDomains -C/econst/-/NSSecondCalendarUnit -Objective-C/cl/-/NSSecureTextField -Objective-C/cl/-/NSSecureTextFieldCell -Objective-C/cl/-/NSSegmentedCell -Objective-C/cl/-/NSSegmentedControl -C/tdef/-/NSSegmentStyle -C/econst/-/NSSegmentStyleAutomatic -C/econst/-/NSSegmentStyleCapsule -C/econst/-/NSSegmentStyleRounded -C/econst/-/NSSegmentStyleRoundRect -C/econst/-/NSSegmentStyleSmallSquare -C/econst/-/NSSegmentStyleTexturedRounded -C/econst/-/NSSegmentStyleTexturedSquare -C/tdef/-/NSSegmentSwitchTracking -C/econst/-/NSSegmentSwitchTrackingMomentary -C/econst/-/NSSegmentSwitchTrackingSelectAny -C/econst/-/NSSegmentSwitchTrackingSelectOne -C/econst/-/NSSelectByCharacter -C/econst/-/NSSelectByParagraph -C/econst/-/NSSelectByWord -C/data/-/NSSelectedIdentifierBinding -C/data/-/NSSelectedIndexBinding -C/data/-/NSSelectedLabelBinding -C/data/-/NSSelectedObjectBinding -C/data/-/NSSelectedObjectsBinding -C/econst/-/NSSelectedTab -C/data/-/NSSelectedTagBinding -C/data/-/NSSelectedValueBinding -C/data/-/NSSelectedValuesBinding -C/econst/-/NSSelectFunctionKey -C/econst/-/NSSelectingNext -C/econst/-/NSSelectingPrevious -C/tdef/-/NSSelectionAffinity -C/econst/-/NSSelectionAffinityDownstream -C/econst/-/NSSelectionAffinityUpstream -C/tdef/-/NSSelectionDirection -C/tdef/-/NSSelectionGranularity -C/data/-/NSSelectionIndexesBinding -C/data/-/NSSelectionIndexPathsBinding -C/func/-/NSSelectorFromString -C/data/-/NSSelectorNameBindingOption -C/data/-/NSSelectsAllWhenSettingContentBindingOption -Objective-C/cl/-/NSSerializer -Objective-C/cl/-/NSServerNotificationCenter -C/econst/-/NSServiceApplicationLaunchFailedError -C/econst/-/NSServiceApplicationNotFoundError -C/econst/-/NSServiceErrorMaximum -C/econst/-/NSServiceErrorMinimum -C/econst/-/NSServiceInvalidPasteboardDataError -C/econst/-/NSServiceMalformedServiceDictionaryError -C/econst/-/NSServiceMiscellaneousError -C/econst/-/NSServiceRequestTimedOutError -Objective-C/cat/-/NSServicesRequests -Objective-C/cl/-/NSSet -Objective-C/cl/-/NSSetCommand -C/func/-/NSSetFocusRingStyle -C/func/-/NSSetShowsServicesMenuItem -C/func/-/NSSetUncaughtExceptionHandler -C/func/-/NSSetZoneName -Objective-C/cl/-/NSShadow -C/data/-/NSShadowAttributeName -C/econst/-/NSShadowlessSquareBezelStyle -C/econst/-/NSSharedPublicDirectory -C/data/-/NSShellCommandFileType -C/econst/-/NSShiftJISStringEncoding -C/econst/-/NSShiftKeyMask -C/data/-/NSShortDateFormatString -C/data/-/NSShortMonthNameArray -C/data/-/NSShortTimeDateFormatString -C/data/-/NSShortWeekDayNameArray -C/func/-/NSShouldRetainWithZone -C/func/-/NSShowAnimationEffect -C/econst/-/NSShowControlGlyphs -C/econst/-/NSShowInvisibleGlyphs -C/func/-/NSShowsServicesMenuItem -C/econst/-/NSSingleDateMode -C/econst/-/NSSingleUnderlineStyle -C/tdef/-/NSSize -C/tdef/-/NSSizeArray -C/econst/-/NSSizeDownFontAction -C/func/-/NSSizeFromCGSize -C/func/-/NSSizeFromString -C/tdef/-/NSSizePointer -C/func/-/NSSizeToCGSize -C/econst/-/NSSizeUpFontAction -Objective-C/cl/-/NSSlider -Objective-C/cl/-/NSSliderCell -C/tdef/-/NSSliderType -C/econst/-/NSSmallCapsFontMask -C/econst/-/NSSmallControlSize -C/econst/-/NSSmallSquareBezelStyle -C/econst/-/NSSnapshotEventMergePolicy -C/econst/-/NSSnapshotEventRefresh -C/econst/-/NSSnapshotEventRollback -C/tdef/-/NSSnapshotEventType -C/econst/-/NSSnapshotEventUndoDeletion -C/econst/-/NSSnapshotEventUndoInsertion -C/econst/-/NSSnapshotEventUndoUpdate -C/tdef/-/NSSocketNativeHandle -Objective-C/cl/-/NSSocketPort -Objective-C/cl/-/NSSocketPortNameServer -C/econst/-/NSSolarisOperatingSystem -C/econst/-/NSSortConcurrent -Objective-C/cl/-/NSSortDescriptor -C/data/-/NSSortDescriptorsBinding -C/tdef/-/NSSortOptions -C/econst/-/NSSortStable -Objective-C/cl/-/NSSound -Objective-C/intf/-/NSSoundDelegate -C/data/-/NSSoundPboardType -C/econst/-/NSSpecialPageOrder -Objective-C/cl/-/NSSpecifierTest -C/tdef/-/NSSpeechBoundary -C/data/-/NSSpeechCharacterModeProperty -C/data/-/NSSpeechCommandDelimiterProperty -C/data/-/NSSpeechCommandPrefix -C/data/-/NSSpeechCommandSuffix -C/data/-/NSSpeechCurrentVoiceProperty -C/data/-/NSSpeechDictionaryAbbreviations -C/data/-/NSSpeechDictionaryEntryPhonemes -C/data/-/NSSpeechDictionaryEntrySpelling -C/data/-/NSSpeechDictionaryLocaleIdentifier -C/data/-/NSSpeechDictionaryModificationDate -C/data/-/NSSpeechDictionaryPronunciations -C/data/-/NSSpeechErrorCount -C/data/-/NSSpeechErrorNewestCharacterOffset -C/data/-/NSSpeechErrorNewestCode -C/data/-/NSSpeechErrorOldestCharacterOffset -C/data/-/NSSpeechErrorOldestCode -C/data/-/NSSpeechErrorsProperty -C/econst/-/NSSpeechImmediateBoundary -C/data/-/NSSpeechInputModeProperty -C/data/-/NSSpeechModeLiteral -C/data/-/NSSpeechModeNormal -C/data/-/NSSpeechModePhoneme -C/data/-/NSSpeechModeText -C/data/-/NSSpeechNumberModeProperty -C/data/-/NSSpeechOutputToFileURLProperty -C/data/-/NSSpeechPhonemeInfoExample -C/data/-/NSSpeechPhonemeInfoHiliteEnd -C/data/-/NSSpeechPhonemeInfoHiliteStart -C/data/-/NSSpeechPhonemeInfoOpcode -C/data/-/NSSpeechPhonemeInfoSymbol -C/data/-/NSSpeechPhonemeSymbolsProperty -C/data/-/NSSpeechPitchBaseProperty -C/data/-/NSSpeechPitchModProperty -C/data/-/NSSpeechRateProperty -C/data/-/NSSpeechRecentSyncProperty -Objective-C/cl/-/NSSpeechRecognizer -Objective-C/intf/-/NSSpeechRecognizerDelegate -C/data/-/NSSpeechResetProperty -C/econst/-/NSSpeechSentenceBoundary -C/data/-/NSSpeechStatusNumberOfCharactersLeft -C/data/-/NSSpeechStatusOutputBusy -C/data/-/NSSpeechStatusOutputPaused -C/data/-/NSSpeechStatusPhonemeCode -C/data/-/NSSpeechStatusProperty -Objective-C/cl/-/NSSpeechSynthesizer -Objective-C/intf/-/NSSpeechSynthesizerDelegate -C/data/-/NSSpeechSynthesizerInfoIdentifier -C/data/-/NSSpeechSynthesizerInfoProperty -C/data/-/NSSpeechSynthesizerInfoVersion -C/data/-/NSSpeechVolumeProperty -C/econst/-/NSSpeechWordBoundary -Objective-C/cl/-/NSSpellChecker -C/data/-/NSSpellingStateAttributeName -C/econst/-/NSSpellingStateGrammarFlag -C/econst/-/NSSpellingStateSpellingFlag -Objective-C/cl/-/NSSpellServer -Objective-C/intf/-/NSSpellServerDelegate -Objective-C/cl/-/NSSplitView -Objective-C/intf/-/NSSplitViewDelegate -C/data/-/NSSplitViewDidResizeSubviewsNotification -C/tdef/-/NSSplitViewDividerStyle -C/econst/-/NSSplitViewDividerStylePaneSplitter -C/econst/-/NSSplitViewDividerStyleThick -C/econst/-/NSSplitViewDividerStyleThin -C/data/-/NSSplitViewWillResizeSubviewsNotification -C/data/-/NSSQLiteAnalyzeOption -C/econst/-/NSSQLiteError -C/data/-/NSSQLiteErrorDomain -C/data/-/NSSQLiteManualVacuumOption -C/data/-/NSSQLitePragmasOption -C/data/-/NSSQLiteStoreType -C/econst/-/NSSquareLineCapStyle -C/macro/-/NSSquareStatusItemLength -C/data/-/NSStackTraceKey -Objective-C/cl/-/NSStatusBar -Objective-C/cl/-/NSStatusItem -C/macro/-/NSStatusWindowLevel -Objective-C/cl/-/NSStepper -Objective-C/cl/-/NSStepperCell -C/econst/-/NSStopFunctionKey -C/data/-/NSStoreModelVersionHashesKey -C/data/-/NSStoreModelVersionIdentifiersKey -C/data/-/NSStorePathKey -C/data/-/NSStoreTypeKey -C/data/-/NSStoreUUIDInPathKey -C/data/-/NSStoreUUIDKey -Objective-C/cl/-/NSStream -C/data/-/NSStreamDataWrittenToMemoryStreamKey -Objective-C/intf/-/NSStreamDelegate -C/tdef/-/NSStreamEvent -C/econst/-/NSStreamEventEndEncountered -C/econst/-/NSStreamEventErrorOccurred -C/econst/-/NSStreamEventHasBytesAvailable -C/econst/-/NSStreamEventHasSpaceAvailable -C/econst/-/NSStreamEventNone -C/econst/-/NSStreamEventOpenCompleted -C/data/-/NSStreamFileCurrentOffsetKey -C/data/-/NSStreamSocketSecurityLevelKey -C/data/-/NSStreamSocketSecurityLevelNegotiatedSSL -C/data/-/NSStreamSocketSecurityLevelNone -C/data/-/NSStreamSocketSecurityLevelSSLv2 -C/data/-/NSStreamSocketSecurityLevelSSLv3 -C/data/-/NSStreamSocketSecurityLevelTLSv1 -C/data/-/NSStreamSocketSSLErrorDomain -C/data/-/NSStreamSOCKSErrorDomain -C/data/-/NSStreamSOCKSProxyConfigurationKey -C/data/-/NSStreamSOCKSProxyHostKey -C/data/-/NSStreamSOCKSProxyPasswordKey -C/data/-/NSStreamSOCKSProxyPortKey -C/data/-/NSStreamSOCKSProxyUserKey -C/data/-/NSStreamSOCKSProxyVersion4 -C/data/-/NSStreamSOCKSProxyVersion5 -C/data/-/NSStreamSOCKSProxyVersionKey -C/tdef/-/NSStreamStatus -C/econst/-/NSStreamStatusAtEnd -C/econst/-/NSStreamStatusClosed -C/econst/-/NSStreamStatusError -C/econst/-/NSStreamStatusNotOpen -C/econst/-/NSStreamStatusOpen -C/econst/-/NSStreamStatusOpening -C/econst/-/NSStreamStatusReading -C/econst/-/NSStreamStatusWriting -C/data/-/NSStrikethroughColorAttributeName -C/data/-/NSStrikethroughStyleAttributeName -Objective-C/cl/-/NSString -Objective-C/cat/-/NSString(AppKitAdditions) -C/econst/-/NSStringAttributeType -C/tdef/-/NSStringCompareOptions -C/econst/-/NSStringDrawingDisableScreenFontSubstitution -C/econst/-/NSStringDrawingOneShot -C/tdef/-/NSStringDrawingOptions -C/econst/-/NSStringDrawingTruncatesLastVisibleLine -C/econst/-/NSStringDrawingUsesDeviceMetrics -C/econst/-/NSStringDrawingUsesFontLeading -C/econst/-/NSStringDrawingUsesLineFragmentOrigin -C/tdef/-/NSStringEncoding -C/econst/-/NSStringEncodingConversionAllowLossy -C/econst/-/NSStringEncodingConversionExternalRepresentation -C/tdef/-/NSStringEncodingConversionOptions -C/data/-/NSStringEncodingErrorKey -C/econst/-/NSStringEnumerationByComposedCharacterSequences -C/econst/-/NSStringEnumerationByLines -C/econst/-/NSStringEnumerationByParagraphs -C/econst/-/NSStringEnumerationBySentences -C/econst/-/NSStringEnumerationByWords -C/econst/-/NSStringEnumerationLocalized -C/tdef/-/NSStringEnumerationOptions -C/econst/-/NSStringEnumerationReverse -C/econst/-/NSStringEnumerationSubstringNotRequired -C/func/-/NSStringFromClass -C/func/-/NSStringFromHashTable -C/func/-/NSStringFromMapTable -C/func/-/NSStringFromPoint -C/func/-/NSStringFromProtocol -C/func/-/NSStringFromRange -C/func/-/NSStringFromRect -C/func/-/NSStringFromSelector -C/func/-/NSStringFromSize -C/data/-/NSStringPboardType -C/data/-/NSStrokeColorAttributeName -C/data/-/NSStrokeWidthAttributeName -C/data/-/NSSubjectDocumentAttribute -C/macro/-/NSSubmenuWindowLevel -C/econst/-/NSSubqueryExpressionType -C/data/-/NSSumKeyValueOperator -C/econst/-/NSSunOSOperatingSystem -C/data/-/NSSuperscriptAttributeName -C/func/-/NSSwapBigDoubleToHost -C/func/-/NSSwapBigFloatToHost -C/func/-/NSSwapBigIntToHost -C/func/-/NSSwapBigLongLongToHost -C/func/-/NSSwapBigLongToHost -C/func/-/NSSwapBigShortToHost -C/func/-/NSSwapDouble -C/func/-/NSSwapFloat -C/func/-/NSSwapHostDoubleToBig -C/func/-/NSSwapHostDoubleToLittle -C/func/-/NSSwapHostFloatToBig -C/func/-/NSSwapHostFloatToLittle -C/func/-/NSSwapHostIntToBig -C/func/-/NSSwapHostIntToLittle -C/func/-/NSSwapHostLongLongToBig -C/func/-/NSSwapHostLongLongToLittle -C/func/-/NSSwapHostLongToBig -C/func/-/NSSwapHostLongToLittle -C/func/-/NSSwapHostShortToBig -C/func/-/NSSwapHostShortToLittle -C/func/-/NSSwapInt -C/func/-/NSSwapLittleDoubleToHost -C/func/-/NSSwapLittleFloatToHost -C/func/-/NSSwapLittleIntToHost -C/func/-/NSSwapLittleLongLongToHost -C/func/-/NSSwapLittleLongToHost -C/func/-/NSSwapLittleShortToHost -C/func/-/NSSwapLong -C/func/-/NSSwapLongLong -C/tdef/-/NSSwappedDouble -C/tdef/-/NSSwappedFloat -C/func/-/NSSwapShort -C/econst/-/NSSwitchButton -C/econst/-/NSSymbolStringEncoding -C/econst/-/NSSysReqFunctionKey -C/data/-/NSSystemClockDidChangeNotification -C/data/-/NSSystemColorsDidChangeNotification -C/econst/-/NSSystemDefined -C/econst/-/NSSystemDefinedMask -C/econst/-/NSSystemDomainMask -C/econst/-/NSSystemFunctionKey -C/data/-/NSSystemTimeZoneDidChangeNotification -C/econst/-/NSTabCharacter -C/data/-/NSTabColumnTerminatorsAttributeName -Objective-C/cl/-/NSTableColumn -C/econst/-/NSTableColumnAutoresizingMask -C/econst/-/NSTableColumnNoResizing -C/econst/-/NSTableColumnUserResizingMask -Objective-C/cl/-/NSTableHeaderCell -Objective-C/cl/-/NSTableHeaderView -C/econst/-/NSTabletPoint -C/econst/-/NSTabletPointEventSubtype -C/econst/-/NSTabletPointMask -C/econst/-/NSTabletProximity -C/econst/-/NSTabletProximityEventSubtype -C/econst/-/NSTabletProximityMask -Objective-C/cl/-/NSTableView -C/tdef/-/NSTableViewColumnAutoresizingStyle -C/data/-/NSTableViewColumnDidMoveNotification -C/data/-/NSTableViewColumnDidResizeNotification -Objective-C/intf/-/NSTableViewDataSource -Objective-C/intf/-/NSTableViewDelegate -C/tdef/-/NSTableViewDraggingDestinationFeedbackStyle -C/econst/-/NSTableViewDraggingDestinationFeedbackStyleNone -C/econst/-/NSTableViewDraggingDestinationFeedbackStyleRegular -C/econst/-/NSTableViewDraggingDestinationFeedbackStyleSourceList -C/econst/-/NSTableViewDropAbove -C/econst/-/NSTableViewDropOn -C/tdef/-/NSTableViewDropOperation -C/econst/-/NSTableViewFirstColumnOnlyAutoresizingStyle -C/econst/-/NSTableViewGridNone -C/econst/-/NSTableViewLastColumnOnlyAutoresizingStyle -C/econst/-/NSTableViewNoColumnAutoresizing -C/econst/-/NSTableViewReverseSequentialColumnAutoresizingStyle -C/data/-/NSTableViewSelectionDidChangeNotification -C/tdef/-/NSTableViewSelectionHighlightStyle -C/econst/-/NSTableViewSelectionHighlightStyleNone -C/econst/-/NSTableViewSelectionHighlightStyleRegular -C/econst/-/NSTableViewSelectionHighlightStyleSourceList -C/data/-/NSTableViewSelectionIsChangingNotification -C/econst/-/NSTableViewSequentialColumnAutoresizingStyle -C/econst/-/NSTableViewSolidHorizontalGridLineMask -C/econst/-/NSTableViewSolidVerticalGridLineMask -C/econst/-/NSTableViewUniformColumnAutoresizingStyle -C/tdef/-/NSTabState -C/econst/-/NSTabTextMovement -C/data/-/NSTabularTextPboardType -Objective-C/cl/-/NSTabView -Objective-C/intf/-/NSTabViewDelegate -Objective-C/cl/-/NSTabViewItem -C/tdef/-/NSTabViewItemAuxiliaryOpaque -C/tdef/-/NSTabViewType -C/data/-/NSTargetBinding -C/data/-/NSTargetObjectUserInfoKey -Objective-C/cl/-/NSTask -C/data/-/NSTaskDidTerminateNotification -C/tdef/-/NSTaskTerminationReason -C/econst/-/NSTaskTerminationReasonExit -C/econst/-/NSTaskTerminationReasonUncaughtSignal -C/func/-/NSTemporaryDirectory -C/econst/-/NSTerminateCancel -C/econst/-/NSTerminateLater -C/econst/-/NSTerminateNow -C/tdef/-/NSTestComparisonOperation -Objective-C/cl/-/NSText -C/tdef/-/NSTextAlignment -Objective-C/cl/-/NSTextAttachment -Objective-C/intf/-/NSTextAttachmentCell -Objective-C/cl/-/NSTextAttachmentCell -Objective-C/cl/-/NSTextBlock -C/econst/-/NSTextBlockAbsoluteValueType -C/econst/-/NSTextBlockBaselineAlignment -C/econst/-/NSTextBlockBorder -C/econst/-/NSTextBlockBottomAlignment -C/tdef/-/NSTextBlockDimension -C/econst/-/NSTextBlockHeight -C/tdef/-/NSTextBlockLayer -C/econst/-/NSTextBlockMargin -C/econst/-/NSTextBlockMaximumHeight -C/econst/-/NSTextBlockMaximumWidth -C/econst/-/NSTextBlockMiddleAlignment -C/econst/-/NSTextBlockMinimumHeight -C/econst/-/NSTextBlockMinimumWidth -C/econst/-/NSTextBlockPadding -C/econst/-/NSTextBlockPercentageValueType -C/econst/-/NSTextBlockTopAlignment -C/tdef/-/NSTextBlockValueType -C/tdef/-/NSTextBlockVerticalAlignment -C/econst/-/NSTextBlockWidth -C/econst/-/NSTextCellType -C/econst/-/NSTextCheckingAllCustomTypes -C/econst/-/NSTextCheckingAllSystemTypes -C/econst/-/NSTextCheckingAllTypes -C/data/-/NSTextCheckingCityKey -C/data/-/NSTextCheckingCountryKey -C/data/-/NSTextCheckingDocumentAuthorKey -C/data/-/NSTextCheckingDocumentTitleKey -C/data/-/NSTextCheckingDocumentURLKey -C/data/-/NSTextCheckingJobTitleKey -C/data/-/NSTextCheckingNameKey -C/data/-/NSTextCheckingOrganizationKey -C/data/-/NSTextCheckingOrthographyKey -C/data/-/NSTextCheckingPhoneKey -C/data/-/NSTextCheckingQuotesKey -C/data/-/NSTextCheckingReferenceDateKey -C/data/-/NSTextCheckingReferenceTimeZoneKey -C/data/-/NSTextCheckingReplacementsKey -Objective-C/cl/-/NSTextCheckingResult -C/data/-/NSTextCheckingStateKey -C/data/-/NSTextCheckingStreetKey -C/tdef/-/NSTextCheckingType -C/econst/-/NSTextCheckingTypeAddress -C/econst/-/NSTextCheckingTypeCorrection -C/econst/-/NSTextCheckingTypeDash -C/econst/-/NSTextCheckingTypeDate -C/econst/-/NSTextCheckingTypeGrammar -C/econst/-/NSTextCheckingTypeLink -C/econst/-/NSTextCheckingTypeOrthography -C/econst/-/NSTextCheckingTypeQuote -C/econst/-/NSTextCheckingTypeReplacement -C/tdef/-/NSTextCheckingTypes -C/econst/-/NSTextCheckingTypeSpelling -C/data/-/NSTextCheckingZIPKey -C/data/-/NSTextColorBinding -Objective-C/cl/-/NSTextContainer -Objective-C/intf/-/NSTextDelegate -C/data/-/NSTextDidBeginEditingNotification -C/data/-/NSTextDidChangeNotification -C/data/-/NSTextDidEndEditingNotification -C/data/-/NSTextEncodingNameDocumentAttribute -C/data/-/NSTextEncodingNameDocumentOption -Objective-C/cl/-/NSTextField -C/econst/-/NSTextFieldAndStepperDatePickerStyle -C/tdef/-/NSTextFieldBezelStyle -Objective-C/cl/-/NSTextFieldCell -C/econst/-/NSTextFieldDatePickerStyle -Objective-C/intf/-/NSTextFieldDelegate -C/econst/-/NSTextFieldRoundedBezel -C/econst/-/NSTextFieldSquareBezel -Objective-C/intf/-/NSTextInput -Objective-C/intf/-/NSTextInputClient -Objective-C/cl/-/NSTextInputContext -C/data/-/NSTextInputContextKeyboardSelectionDidChangeNotification -C/data/-/NSTextLineTooLongException -Objective-C/cl/-/NSTextList -C/econst/-/NSTextListPrependEnclosingMarker -C/data/-/NSTextNoSelectionException -C/data/-/NSTextReadException -C/econst/-/NSTextReadInapplicableDocumentTypeError -C/econst/-/NSTextReadWriteErrorMaximum -C/econst/-/NSTextReadWriteErrorMinimum -C/data/-/NSTextSizeMultiplierDocumentOption -Objective-C/cl/-/NSTextStorage -Objective-C/intf/-/NSTextStorageDelegate -C/data/-/NSTextStorageDidProcessEditingNotification -C/econst/-/NSTextStorageEditedAttributes -C/econst/-/NSTextStorageEditedCharacters -C/data/-/NSTextStorageWillProcessEditingNotification -Objective-C/cl/-/NSTextTab -Objective-C/cl/-/NSTextTable -C/econst/-/NSTextTableAutomaticLayoutAlgorithm -Objective-C/cl/-/NSTextTableBlock -C/econst/-/NSTextTableFixedLayoutAlgorithm -C/tdef/-/NSTextTableLayoutAlgorithm -C/tdef/-/NSTextTabType -C/econst/-/NSTexturedBackgroundWindowMask -C/econst/-/NSTexturedRoundedBezelStyle -C/econst/-/NSTexturedSquareBezelStyle -Objective-C/cl/-/NSTextView -Objective-C/intf/-/NSTextViewDelegate -C/data/-/NSTextViewDidChangeSelectionNotification -C/data/-/NSTextViewDidChangeTypingAttributesNotification -C/data/-/NSTextViewWillChangeNotifyingTextViewNotification -C/data/-/NSTextWriteException -C/econst/-/NSTextWriteInapplicableDocumentTypeError -C/econst/-/NSTextWritingDirectionEmbedding -C/econst/-/NSTextWritingDirectionOverride -C/econst/-/NSThickerSquareBezelStyle -C/econst/-/NSThickSquareBezelStyle -C/data/-/NSThisDayDesignations -C/data/-/NSThousandsSeparator -Objective-C/cl/-/NSThread -C/data/-/NSThreadWillExitNotification -C/econst/-/NSTickMarkAbove -C/econst/-/NSTickMarkBelow -C/econst/-/NSTickMarkLeft -C/tdef/-/NSTickMarkPosition -C/econst/-/NSTickMarkRight -C/tdef/-/NSTIFFCompression -C/econst/-/NSTIFFCompressionCCITTFAX3 -C/econst/-/NSTIFFCompressionCCITTFAX4 -C/econst/-/NSTIFFCompressionJPEG -C/econst/-/NSTIFFCompressionLZW -C/econst/-/NSTIFFCompressionNEXT -C/econst/-/NSTIFFCompressionNone -C/econst/-/NSTIFFCompressionOldJPEG -C/econst/-/NSTIFFCompressionPackBits -C/data/-/NSTIFFException -C/econst/-/NSTIFFFileType -C/data/-/NSTIFFPboardType -C/data/-/NSTimeDateFormatString -C/data/-/NSTimeFormatString -C/tdef/-/NSTimeInterval -C/macro/-/NSTimeIntervalSince1970 -C/data/-/NSTimeoutDocumentOption -Objective-C/cl/-/NSTimer -Objective-C/cl/-/NSTimeZone -C/econst/-/NSTimeZoneDatePickerElementFlag -C/tdef/-/NSTimeZoneNameStyle -C/econst/-/NSTimeZoneNameStyleDaylightSaving -C/econst/-/NSTimeZoneNameStyleGeneric -C/econst/-/NSTimeZoneNameStyleShortDaylightSaving -C/econst/-/NSTimeZoneNameStyleShortGeneric -C/econst/-/NSTimeZoneNameStyleShortStandard -C/econst/-/NSTimeZoneNameStyleStandard -C/data/-/NSTitleBinding -C/data/-/NSTitleDocumentAttribute -C/econst/-/NSTitledWindowMask -C/tdef/-/NSTitlePosition -C/econst/-/NSToggleButton -Objective-C/cl/-/NSTokenField -Objective-C/cl/-/NSTokenFieldCell -Objective-C/intf/-/NSTokenFieldCellDelegate -Objective-C/intf/-/NSTokenFieldDelegate -C/data/-/NSTokenSize -C/tdef/-/NSTokenStyle -Objective-C/cl/-/NSToolbar -C/data/-/NSToolbarCustomizeToolbarItemIdentifier -Objective-C/intf/-/NSToolbarDelegate -C/data/-/NSToolbarDidRemoveItemNotification -C/tdef/-/NSToolbarDisplayMode -C/econst/-/NSToolbarDisplayModeDefault -C/econst/-/NSToolbarDisplayModeIconAndLabel -C/econst/-/NSToolbarDisplayModeIconOnly -C/econst/-/NSToolbarDisplayModeLabelOnly -C/data/-/NSToolbarFlexibleSpaceItemIdentifier -Objective-C/cl/-/NSToolbarItem -Objective-C/cl/-/NSToolbarItemGroup -Objective-C/cat/-/NSToolbarItemValidation -C/econst/-/NSToolbarItemVisibilityPriorityHigh -C/econst/-/NSToolbarItemVisibilityPriorityLow -C/econst/-/NSToolbarItemVisibilityPriorityStandard -C/econst/-/NSToolbarItemVisibilityPriorityUser -C/data/-/NSToolbarPrintItemIdentifier -C/data/-/NSToolbarSeparatorItemIdentifier -C/data/-/NSToolbarShowColorsItemIdentifier -C/data/-/NSToolbarShowFontsItemIdentifier -C/tdef/-/NSToolbarSizeMode -C/econst/-/NSToolbarSizeModeDefault -C/econst/-/NSToolbarSizeModeRegular -C/econst/-/NSToolbarSizeModeSmall -C/data/-/NSToolbarSpaceItemIdentifier -C/data/-/NSToolbarWillAddItemNotification -C/data/-/NSToolTipAttributeName -C/data/-/NSToolTipBinding -Objective-C/cat/-/NSToolTipOwner -C/tdef/-/NSToolTipTag -C/data/-/NSTopMarginDocumentAttribute -C/econst/-/NSTopTabsBezelBorder -C/macro/-/NSTornOffMenuWindowLevel -Objective-C/cl/-/NSTouch -C/econst/-/NSTouchEventSubtype -C/tdef/-/NSTouchPhase -C/econst/-/NSTouchPhaseAny -C/econst/-/NSTouchPhaseBegan -C/econst/-/NSTouchPhaseCancelled -C/econst/-/NSTouchPhaseEnded -C/econst/-/NSTouchPhaseMoved -C/econst/-/NSTouchPhaseStationary -C/econst/-/NSTouchPhaseTouching -C/econst/-/NSTrackingActiveAlways -C/econst/-/NSTrackingActiveInActiveApp -C/econst/-/NSTrackingActiveInKeyWindow -C/econst/-/NSTrackingActiveWhenFirstResponder -Objective-C/cl/-/NSTrackingArea -C/tdef/-/NSTrackingAreaOptions -C/econst/-/NSTrackingAssumeInside -C/econst/-/NSTrackingCursorUpdate -C/econst/-/NSTrackingEnabledDuringMouseDrag -C/econst/-/NSTrackingInVisibleRect -C/econst/-/NSTrackingMouseEnteredAndExited -C/econst/-/NSTrackingMouseMoved -C/tdef/-/NSTrackingRectTag -C/econst/-/NSTrackModeMatrix -C/econst/-/NSTransformableAttributeType -C/econst/-/NSTransformEntityMappingType -C/data/-/NSTransparentBinding -Objective-C/cl/-/NSTreeController -Objective-C/cl/-/NSTreeNode -C/econst/-/NSTwoByteGlyphPacking -C/data/-/NSTypedStreamVersionException -Objective-C/cl/-/NSTypesetter -C/tdef/-/NSTypesetterBehavior -C/econst/-/NSTypesetterBehavior_10_2 -C/econst/-/NSTypesetterBehavior_10_2_WithCompatibility -C/econst/-/NSTypesetterBehavior_10_3 -C/econst/-/NSTypesetterBehavior_10_4 -C/econst/-/NSTypesetterContainerBreakAction -C/tdef/-/NSTypesetterControlCharacterAction -C/tdef/-/NSTypesetterGlyphInfo -C/econst/-/NSTypesetterHorizontalTabAction -C/econst/-/NSTypesetterLatestBehavior -C/econst/-/NSTypesetterLineBreakAction -C/econst/-/NSTypesetterOriginalBehavior -C/econst/-/NSTypesetterParagraphBreakAction -C/econst/-/NSTypesetterWhitespaceAction -C/econst/-/NSTypesetterZeroAdvancementAction -C/tdef/-/NSUInteger -C/macro/-/NSUIntegerMax -C/data/-/NSUnarchiveFromDataTransformerName -Objective-C/cl/-/NSUnarchiver -C/econst/-/NSUnboldFontMask -C/econst/-/NSUncachedRead -C/tdef/-/NSUncaughtExceptionHandler -C/data/-/NSUncaughtRuntimeErrorException -C/data/-/NSUncaughtSystemExceptionException -C/econst/-/NSUndefinedAttributeType -C/econst/-/NSUndefinedDateComponent -C/econst/-/NSUndefinedEntityMappingType -C/data/-/NSUndefinedKeyException -C/data/-/NSUnderlineByWordMask -C/data/-/NSUnderlineColorAttributeName -C/econst/-/NSUnderlinePatternDash -C/econst/-/NSUnderlinePatternDashDot -C/econst/-/NSUnderlinePatternDashDotDot -C/econst/-/NSUnderlinePatternDot -C/econst/-/NSUnderlinePatternSolid -C/data/-/NSUnderlineStyleAttributeName -C/econst/-/NSUnderlineStyleDouble -C/econst/-/NSUnderlineStyleNone -C/econst/-/NSUnderlineStyleSingle -C/econst/-/NSUnderlineStyleThick -C/data/-/NSUnderlyingErrorKey -C/econst/-/NSUndoCloseGroupingRunLoopOrdering -C/econst/-/NSUndoFunctionKey -Objective-C/cl/-/NSUndoManager -C/data/-/NSUndoManagerCheckpointNotification -C/data/-/NSUndoManagerDidOpenUndoGroupNotification -C/data/-/NSUndoManagerDidRedoChangeNotification -C/data/-/NSUndoManagerDidUndoChangeNotification -C/data/-/NSUndoManagerWillCloseUndoGroupNotification -C/data/-/NSUndoManagerWillRedoChangeNotification -C/data/-/NSUndoManagerWillUndoChangeNotification -C/econst/-/NSUnicodeStringEncoding -C/econst/-/NSUnifiedTitleAndToolbarWindowMask -C/data/-/NSUnionOfArraysKeyValueOperator -C/data/-/NSUnionOfObjectsKeyValueOperator -C/data/-/NSUnionOfSetsKeyValueOperator -C/func/-/NSUnionRange -C/func/-/NSUnionRect -C/econst/-/NSUnionSetExpressionType -Objective-C/cl/-/NSUniqueIDSpecifier -C/econst/-/NSUnitalicFontMask -C/econst/-/NSUnknownColorSpaceModel -C/econst/-/NSUnknownKeyScriptError -C/econst/-/NSUnknownKeySpecifierError -C/econst/-/NSUnknownPageOrder -C/econst/-/NSUnknownPointingDevice -C/data/-/NSUnknownUserInfoKey -C/func/-/NSUnLinkModule -C/func/-/NSUnregisterServicesProvider -C/econst/-/NSUnscaledWindowMask -C/econst/-/NSUnselectCancel -C/econst/-/NSUnselectLater -C/econst/-/NSUnselectNow -C/econst/-/NSUpArrowFunctionKey -C/data/-/NSUpdatedObjectsKey -C/func/-/NSUpdateDynamicServices -C/econst/-/NSUpdateWindowsRunLoopOrdering -C/econst/-/NSUpTextMovement -Objective-C/cl/-/NSURL -Objective-C/cat/-/NSURL(AppKitAdditions) -Objective-C/cl/-/NSURL_QLPreviewAdditions -C/data/-/NSURLAttributeModificationDateKey -Objective-C/cl/-/NSURLAuthenticationChallenge -Objective-C/intf/-/NSURLAuthenticationChallengeSender -C/data/-/NSURLAuthenticationMethodClientCertificate -C/data/-/NSURLAuthenticationMethodDefault -C/data/-/NSURLAuthenticationMethodHTMLForm -C/data/-/NSURLAuthenticationMethodHTTPBasic -C/data/-/NSURLAuthenticationMethodHTTPDigest -C/data/-/NSURLAuthenticationMethodNegotiate -C/data/-/NSURLAuthenticationMethodServerTrust -C/econst/-/NSURLBookmarkCreationMinimalBookmark -C/tdef/-/NSURLBookmarkCreationOptions -C/econst/-/NSURLBookmarkCreationPreferFileIDResolution -C/econst/-/NSURLBookmarkCreationSuitableForBookmarkFile -C/tdef/-/NSURLBookmarkResolutionOptions -C/econst/-/NSURLBookmarkResolutionWithoutMounting -C/econst/-/NSURLBookmarkResolutionWithoutUI -Objective-C/cl/-/NSURLCache -C/econst/-/NSURLCacheStorageAllowed -C/econst/-/NSURLCacheStorageAllowedInMemoryOnly -C/econst/-/NSURLCacheStorageNotAllowed -C/tdef/-/NSURLCacheStoragePolicy -Objective-C/cl/-/NSURLConnection -C/data/-/NSURLContentAccessDateKey -C/data/-/NSURLContentModificationDateKey -C/data/-/NSURLCreationDateKey -Objective-C/cl/-/NSURLCredential -C/tdef/-/NSURLCredentialPersistence -C/econst/-/NSURLCredentialPersistenceForSession -C/econst/-/NSURLCredentialPersistenceNone -C/econst/-/NSURLCredentialPersistencePermanent -Objective-C/cl/-/NSURLCredentialStorage -C/data/-/NSURLCredentialStorageChangedNotification -C/data/-/NSURLCustomIconKey -Objective-C/cl/-/NSURLDownload -C/data/-/NSURLEffectiveIconKey -C/econst/-/NSURLErrorBadServerResponse -C/econst/-/NSURLErrorBadURL -C/econst/-/NSURLErrorCancelled -C/econst/-/NSURLErrorCannotCloseFile -C/econst/-/NSURLErrorCannotConnectToHost -C/econst/-/NSURLErrorCannotCreateFile -C/econst/-/NSURLErrorCannotDecodeContentData -C/econst/-/NSURLErrorCannotDecodeRawData -C/econst/-/NSURLErrorCannotFindHost -C/econst/-/NSURLErrorCannotLoadFromNetwork -C/econst/-/NSURLErrorCannotMoveFile -C/econst/-/NSURLErrorCannotOpenFile -C/econst/-/NSURLErrorCannotParseResponse -C/econst/-/NSURLErrorCannotRemoveFile -C/econst/-/NSURLErrorCannotWriteToFile -C/econst/-/NSURLErrorClientCertificateRejected -C/econst/-/NSURLErrorClientCertificateRequired -C/econst/-/NSURLErrorDataLengthExceedsMaximum -C/econst/-/NSURLErrorDNSLookupFailed -C/data/-/NSURLErrorDomain -C/econst/-/NSURLErrorDownloadDecodingFailedMidStream -C/econst/-/NSURLErrorDownloadDecodingFailedToComplete -C/data/-/NSURLErrorFailingURLErrorKey -C/data/-/NSURLErrorFailingURLPeerTrustErrorKey -C/data/-/NSURLErrorFailingURLStringErrorKey -C/econst/-/NSURLErrorFileDoesNotExist -C/econst/-/NSURLErrorFileIsDirectory -C/econst/-/NSURLErrorHTTPTooManyRedirects -C/data/-/NSURLErrorKey -C/econst/-/NSURLErrorNetworkConnectionLost -C/econst/-/NSURLErrorNoPermissionsToReadFile -C/econst/-/NSURLErrorNotConnectedToInternet -C/econst/-/NSURLErrorRedirectToNonExistentLocation -C/econst/-/NSURLErrorResourceUnavailable -C/econst/-/NSURLErrorSecureConnectionFailed -C/econst/-/NSURLErrorServerCertificateHasBadDate -C/econst/-/NSURLErrorServerCertificateHasUnknownRoot -C/econst/-/NSURLErrorServerCertificateNotYetValid -C/econst/-/NSURLErrorServerCertificateUntrusted -C/econst/-/NSURLErrorTimedOut -C/econst/-/NSURLErrorUnknown -C/econst/-/NSURLErrorUnsupportedURL -C/econst/-/NSURLErrorUserAuthenticationRequired -C/econst/-/NSURLErrorUserCancelledAuthentication -C/econst/-/NSURLErrorZeroByteResource -C/data/-/NSURLFileAllocatedSizeKey -C/data/-/NSURLFileScheme -C/data/-/NSURLFileSizeKey -Objective-C/cl/-/NSURLHandle -Objective-C/intf/-/NSURLHandleClient -C/econst/-/NSURLHandleLoadFailed -C/econst/-/NSURLHandleLoadInProgress -C/econst/-/NSURLHandleLoadSucceeded -C/econst/-/NSURLHandleNotLoaded -C/tdef/-/NSURLHandleStatus -C/data/-/NSURLHasHiddenExtensionKey -C/data/-/NSURLIsAliasFileKey -C/data/-/NSURLIsDirectoryKey -C/data/-/NSURLIsHiddenKey -C/data/-/NSURLIsPackageKey -C/data/-/NSURLIsRegularFileKey -C/data/-/NSURLIsSymbolicLinkKey -C/data/-/NSURLIsSystemImmutableKey -C/data/-/NSURLIsUserImmutableKey -C/data/-/NSURLIsVolumeKey -C/data/-/NSURLLabelColorKey -C/data/-/NSURLLabelNumberKey -C/data/-/NSURLLinkCountKey -C/data/-/NSURLLocalizedLabelKey -C/data/-/NSURLLocalizedNameKey -C/data/-/NSURLLocalizedTypeDescriptionKey -C/data/-/NSURLNameKey -C/data/-/NSURLParentDirectoryURLKey -C/data/-/NSURLPboardType -Objective-C/cl/-/NSURLProtectionSpace -C/data/-/NSURLProtectionSpaceFTPProxy -C/data/-/NSURLProtectionSpaceHTTPProxy -C/data/-/NSURLProtectionSpaceHTTPSProxy -C/data/-/NSURLProtectionSpaceSOCKSProxy -Objective-C/cl/-/NSURLProtocol -Objective-C/intf/-/NSURLProtocolClient -Objective-C/cl/-/NSURLRequest -C/tdef/-/NSURLRequestCachePolicy -C/econst/-/NSURLRequestReloadIgnoringCacheData -C/econst/-/NSURLRequestReloadIgnoringLocalAndRemoteCacheData -C/econst/-/NSURLRequestReloadIgnoringLocalCacheData -C/econst/-/NSURLRequestReloadRevalidatingCacheData -C/econst/-/NSURLRequestReturnCacheDataDontLoad -C/econst/-/NSURLRequestReturnCacheDataElseLoad -C/econst/-/NSURLRequestUseProtocolCachePolicy -Objective-C/cl/-/NSURLResponse -C/macro/-/NSURLResponseUnknownLength -C/data/-/NSURLTypeIdentifierKey -C/data/-/NSURLVolumeAvailableCapacityKey -C/data/-/NSURLVolumeIsJournalingKey -C/data/-/NSURLVolumeLocalizedFormatDescriptionKey -C/data/-/NSURLVolumeResourceCountKey -C/data/-/NSURLVolumeSupportsCasePreservedNamesKey -C/data/-/NSURLVolumeSupportsCaseSensitiveNamesKey -C/data/-/NSURLVolumeSupportsHardLinksKey -C/data/-/NSURLVolumeSupportsJournalingKey -C/data/-/NSURLVolumeSupportsPersistentIDsKey -C/data/-/NSURLVolumeSupportsSparseFilesKey -C/data/-/NSURLVolumeSupportsSymbolicLinksKey -C/data/-/NSURLVolumeSupportsZeroRunsKey -C/data/-/NSURLVolumeTotalCapacityKey -C/data/-/NSURLVolumeURLKey -C/tdef/-/NSUsableScrollerParts -C/econst/-/NSUserCancelledError -Objective-C/cl/-/NSUserDefaults -Objective-C/cl/-/NSUserDefaultsController -C/data/-/NSUserDefaultsDidChangeNotification -C/econst/-/NSUserDirectory -C/econst/-/NSUserDomainMask -C/econst/-/NSUserFunctionKey -Objective-C/intf/-/NSUserInterfaceItemSearching -C/tdef/-/NSUserInterfaceLayoutDirection -C/econst/-/NSUserInterfaceLayoutDirectionLeftToRight -C/econst/-/NSUserInterfaceLayoutDirectionRightToLeft -Objective-C/intf/-/NSUserInterfaceValidations -C/func/-/NSUserName -C/econst/-/NSUTF16BigEndianStringEncoding -C/econst/-/NSUTF16LittleEndianStringEncoding -C/econst/-/NSUTF16StringEncoding -C/econst/-/NSUTF32BigEndianStringEncoding -C/econst/-/NSUTF32LittleEndianStringEncoding -C/econst/-/NSUTF32StringEncoding -C/econst/-/NSUTF8StringEncoding -C/econst/-/NSUtilityWindowMask -C/data/-/NSUUIDChangedPersistentStoresKey -Objective-C/intf/-/NSValidatedUserInterfaceItem -C/data/-/NSValidatesImmediatelyBindingOption -C/data/-/NSValidateXMLStoreOption -C/econst/-/NSValidationDateTooLateError -C/econst/-/NSValidationDateTooSoonError -C/econst/-/NSValidationErrorMaximum -C/econst/-/NSValidationErrorMinimum -C/econst/-/NSValidationInvalidDateError -C/data/-/NSValidationKeyErrorKey -C/econst/-/NSValidationMissingMandatoryPropertyError -C/econst/-/NSValidationMultipleErrorsError -C/econst/-/NSValidationNumberTooLargeError -C/econst/-/NSValidationNumberTooSmallError -C/data/-/NSValidationObjectErrorKey -C/data/-/NSValidationPredicateErrorKey -C/econst/-/NSValidationRelationshipDeniedDeleteError -C/econst/-/NSValidationRelationshipExceedsMaximumCountError -C/econst/-/NSValidationRelationshipLacksMinimumCountError -C/econst/-/NSValidationStringPatternMatchingError -C/econst/-/NSValidationStringTooLongError -C/econst/-/NSValidationStringTooShortError -C/data/-/NSValidationValueErrorKey -Objective-C/cl/-/NSValue -Objective-C/cat/-/NSValue(CAAdditions) -Objective-C/cat/-/NSValue(QTKitAdditions) -C/data/-/NSValueBinding -C/data/-/NSValuePathBinding -Objective-C/cl/-/NSValueTransformer -C/data/-/NSValueTransformerBindingOption -C/data/-/NSValueTransformerNameBindingOption -C/data/-/NSValueURLBinding -C/econst/-/NSVariableExpressionType -C/macro/-/NSVariableStatusItemLength -C/data/-/NSVCardPboardType -C/econst/-/nsvErr -C/func/-/NSVersionOfLinkTimeLibrary -C/func/-/NSVersionOfRunTimeLibrary -C/econst/-/NSVerticalRuler -C/econst/-/NSViaPanelFontAction -Objective-C/cl/-/NSView -Objective-C/cat/-/NSView(IBViewIntegration) -Objective-C/cl/-/NSViewAnimation -C/data/-/NSViewAnimationEffectKey -C/data/-/NSViewAnimationEndFrameKey -C/data/-/NSViewAnimationFadeInEffect -C/data/-/NSViewAnimationFadeOutEffect -C/data/-/NSViewAnimationStartFrameKey -C/data/-/NSViewAnimationTargetKey -C/data/-/NSViewBoundsDidChangeNotification -Objective-C/cl/-/NSViewController -C/data/-/NSViewDidUpdateTrackingAreasNotification -C/data/-/NSViewFocusDidChangeNotification -C/data/-/NSViewFrameDidChangeNotification -C/data/-/NSViewGlobalFrameDidChangeNotification -C/econst/-/NSViewHeightSizable -C/tdef/-/NSViewLayerContentsPlacement -C/econst/-/NSViewLayerContentsPlacementBottom -C/econst/-/NSViewLayerContentsPlacementBottomLeft -C/econst/-/NSViewLayerContentsPlacementBottomRight -C/econst/-/NSViewLayerContentsPlacementCenter -C/econst/-/NSViewLayerContentsPlacementLeft -C/econst/-/NSViewLayerContentsPlacementRight -C/econst/-/NSViewLayerContentsPlacementScaleAxesIndependently -C/econst/-/NSViewLayerContentsPlacementScaleProportionallyToFill -C/econst/-/NSViewLayerContentsPlacementScaleProportionallyToFit -C/econst/-/NSViewLayerContentsPlacementTop -C/econst/-/NSViewLayerContentsPlacementTopLeft -C/econst/-/NSViewLayerContentsPlacementTopRight -C/econst/-/NSViewLayerContentsRedrawBeforeViewResize -C/econst/-/NSViewLayerContentsRedrawDuringViewResize -C/econst/-/NSViewLayerContentsRedrawNever -C/econst/-/NSViewLayerContentsRedrawOnSetNeedsDisplay -C/tdef/-/NSViewLayerContentsRedrawPolicy -C/econst/-/NSViewMaxXMargin -C/econst/-/NSViewMaxYMargin -C/econst/-/NSViewMinXMargin -C/econst/-/NSViewMinYMargin -C/data/-/NSViewModeDocumentAttribute -C/econst/-/NSViewNotSizable -C/data/-/NSViewSizeDocumentAttribute -C/econst/-/NSViewWidthSizable -C/data/-/NSViewZoomDocumentAttribute -C/data/-/NSVisibleBinding -C/data/-/NSVoiceAge -C/data/-/NSVoiceDemoText -C/data/-/NSVoiceGender -C/data/-/NSVoiceGenderFemale -C/data/-/NSVoiceGenderMale -C/data/-/NSVoiceGenderNeuter -C/data/-/NSVoiceIdentifier -C/data/-/NSVoiceIndividuallySpokenCharacters -C/data/-/NSVoiceLanguage -C/data/-/NSVoiceLocaleIdentifier -C/data/-/NSVoiceName -C/data/-/NSVoiceSupportedCharacters -C/tdef/-/NSVolumeEnumerationOptions -C/econst/-/NSVolumeEnumerationProduceFileReferenceURLs -C/econst/-/NSVolumeEnumerationSkipHiddenVolumes -C/econst/-/NSWantsBidiLevels -C/econst/-/NSWarningAlertStyle -C/data/-/NSWarningValueBinding -C/data/-/NSWebArchiveTextDocumentType -C/data/-/NSWebPreferencesDocumentOption -C/data/-/NSWebResourceLoadDelegateDocumentOption -C/econst/-/NSWeekCalendarUnit -C/econst/-/NSWeekdayCalendarUnit -C/data/-/NSWeekDayNameArray -C/econst/-/NSWeekdayOrdinalCalendarUnit -C/econst/-/NSWheelModeColorPanel -C/data/-/NSWhite -Objective-C/cl/-/NSWhoseSpecifier -C/tdef/-/NSWhoseSubelementIdentifier -C/func/-/NSWidth -C/data/-/NSWidthBinding -C/econst/-/NSWidthInsensitiveSearch -C/data/-/NSWillBecomeMultiThreadedNotification -C/tdef/-/NSWindingRule -Objective-C/cl/-/NSWindow -C/econst/-/NSWindowAbove -C/tdef/-/NSWindowBackingLocation -C/econst/-/NSWindowBackingLocationDefault -C/econst/-/NSWindowBackingLocationMainMemory -C/econst/-/NSWindowBackingLocationVideoMemory -C/econst/-/NSWindowBelow -C/tdef/-/NSWindowButton -C/econst/-/NSWindowCloseButton -C/tdef/-/NSWindowCollectionBehavior -C/econst/-/NSWindowCollectionBehaviorCanJoinAllSpaces -C/econst/-/NSWindowCollectionBehaviorDefault -C/econst/-/NSWindowCollectionBehaviorIgnoresCycle -C/econst/-/NSWindowCollectionBehaviorManaged -C/econst/-/NSWindowCollectionBehaviorMoveToActiveSpace -C/econst/-/NSWindowCollectionBehaviorParticipatesInCycle -C/econst/-/NSWindowCollectionBehaviorStationary -C/econst/-/NSWindowCollectionBehaviorTransient -Objective-C/cl/-/NSWindowController -Objective-C/intf/-/NSWindowDelegate -C/tdef/-/NSWindowDepth -C/econst/-/NSWindowDepthOnehundredtwentyeightBitRGB -C/econst/-/NSWindowDepthSixtyfourBitRGB -C/econst/-/NSWindowDepthTwentyfourBitRGB -C/data/-/NSWindowDidBecomeKeyNotification -C/data/-/NSWindowDidBecomeMainNotification -C/data/-/NSWindowDidChangeScreenNotification -C/data/-/NSWindowDidChangeScreenProfileNotification -C/data/-/NSWindowDidDeminiaturizeNotification -C/data/-/NSWindowDidEndLiveResizeNotification -C/data/-/NSWindowDidEndSheetNotification -C/data/-/NSWindowDidExposeNotification -C/data/-/NSWindowDidMiniaturizeNotification -C/data/-/NSWindowDidMoveNotification -C/data/-/NSWindowDidResignKeyNotification -C/data/-/NSWindowDidResignMainNotification -C/data/-/NSWindowDidResizeNotification -C/data/-/NSWindowDidUpdateNotification -C/econst/-/NSWindowDocumentIconButton -C/econst/-/NSWindowExposedEventType -C/func/-/NSWindowList -C/func/-/NSWindowListForContext -C/econst/-/NSWindowMiniaturizeButton -C/econst/-/NSWindowMovedEventType -C/econst/-/NSWindowNumberListAllApplications -C/econst/-/NSWindowNumberListAllSpaces -C/tdef/-/NSWindowNumberListOptions -C/tdef/-/NSWindowOrderingMode -C/econst/-/NSWindowOut -C/econst/-/NSWindows95InterfaceStyle -C/econst/-/NSWindows95OperatingSystem -C/econst/-/NSWindowsCP1250StringEncoding -C/econst/-/NSWindowsCP1251StringEncoding -C/econst/-/NSWindowsCP1252StringEncoding -C/econst/-/NSWindowsCP1253StringEncoding -C/econst/-/NSWindowsCP1254StringEncoding -Objective-C/cat/-/NSWindowScripting -C/data/-/NSWindowServerCommunicationException -C/econst/-/NSWindowSharingNone -C/econst/-/NSWindowSharingReadOnly -C/econst/-/NSWindowSharingReadWrite -C/tdef/-/NSWindowSharingType -C/econst/-/NSWindowsNTOperatingSystem -C/econst/-/NSWindowToolbarButton -C/data/-/NSWindowWillBeginSheetNotification -C/data/-/NSWindowWillCloseNotification -C/data/-/NSWindowWillMiniaturizeNotification -C/data/-/NSWindowWillMoveNotification -C/data/-/NSWindowWillStartLiveResizeNotification -C/econst/-/NSWindowZoomButton -C/data/-/NSWordMLTextDocumentType -C/data/-/NSWordTablesReadException -C/data/-/NSWordTablesWriteException -Objective-C/cl/-/NSWorkspace -C/data/-/NSWorkspaceActiveSpaceDidChangeNotification -C/data/-/NSWorkspaceApplicationKey -C/data/-/NSWorkspaceCompressOperation -C/data/-/NSWorkspaceCopyOperation -C/data/-/NSWorkspaceDecompressOperation -C/data/-/NSWorkspaceDecryptOperation -C/data/-/NSWorkspaceDesktopImageAllowClippingKey -C/data/-/NSWorkspaceDesktopImageFillColorKey -C/data/-/NSWorkspaceDesktopImageScalingKey -C/data/-/NSWorkspaceDestroyOperation -C/data/-/NSWorkspaceDidActivateApplicationNotification -C/data/-/NSWorkspaceDidChangeFileLabelsNotification -C/data/-/NSWorkspaceDidDeactivateApplicationNotification -C/data/-/NSWorkspaceDidHideApplicationNotification -C/data/-/NSWorkspaceDidLaunchApplicationNotification -C/data/-/NSWorkspaceDidMountNotification -C/data/-/NSWorkspaceDidPerformFileOperationNotification -C/data/-/NSWorkspaceDidRenameVolumeNotification -C/data/-/NSWorkspaceDidTerminateApplicationNotification -C/data/-/NSWorkspaceDidUnhideApplicationNotification -C/data/-/NSWorkspaceDidUnmountNotification -C/data/-/NSWorkspaceDidWakeNotification -C/data/-/NSWorkspaceDuplicateOperation -C/data/-/NSWorkspaceEncryptOperation -C/tdef/-/NSWorkspaceIconCreationOptions -C/econst/-/NSWorkspaceLaunchAllowingClassicStartup -C/econst/-/NSWorkspaceLaunchAndHide -C/econst/-/NSWorkspaceLaunchAndHideOthers -C/econst/-/NSWorkspaceLaunchAndPrint -C/econst/-/NSWorkspaceLaunchAsync -C/data/-/NSWorkspaceLaunchConfigurationAppleEvent -C/data/-/NSWorkspaceLaunchConfigurationArchitecture -C/data/-/NSWorkspaceLaunchConfigurationArguments -C/data/-/NSWorkspaceLaunchConfigurationEnvironment -C/econst/-/NSWorkspaceLaunchDefault -C/econst/-/NSWorkspaceLaunchInhibitingBackgroundOnly -C/econst/-/NSWorkspaceLaunchNewInstance -C/tdef/-/NSWorkspaceLaunchOptions -C/econst/-/NSWorkspaceLaunchPreferringClassic -C/econst/-/NSWorkspaceLaunchWithoutActivation -C/econst/-/NSWorkspaceLaunchWithoutAddingToRecents -C/data/-/NSWorkspaceLinkOperation -C/data/-/NSWorkspaceMoveOperation -C/data/-/NSWorkspaceRecycleOperation -C/data/-/NSWorkspaceScreensDidSleepNotification -C/data/-/NSWorkspaceScreensDidWakeNotification -C/data/-/NSWorkspaceSessionDidBecomeActiveNotification -C/data/-/NSWorkspaceSessionDidResignActiveNotification -C/data/-/NSWorkspaceVolumeLocalizedNameKey -C/data/-/NSWorkspaceVolumeOldLocalizedNameKey -C/data/-/NSWorkspaceVolumeOldURLKey -C/data/-/NSWorkspaceVolumeURLKey -C/data/-/NSWorkspaceWillLaunchApplicationNotification -C/data/-/NSWorkspaceWillPowerOffNotification -C/data/-/NSWorkspaceWillSleepNotification -C/data/-/NSWorkspaceWillUnmountNotification -C/econst/-/NSWrapCalendarComponents -C/tdef/-/NSWritingDirection -C/data/-/NSWritingDirectionAttributeName -C/econst/-/NSWritingDirectionLeftToRight -C/econst/-/NSWritingDirectionNatural -C/econst/-/NSWritingDirectionRightToLeft -C/econst/-/NSXMLAttributeCDATAKind -C/econst/-/NSXMLAttributeDeclarationKind -C/econst/-/NSXMLAttributeEntitiesKind -C/econst/-/NSXMLAttributeEntityKind -C/econst/-/NSXMLAttributeEnumerationKind -C/econst/-/NSXMLAttributeIDKind -C/econst/-/NSXMLAttributeIDRefKind -C/econst/-/NSXMLAttributeIDRefsKind -C/econst/-/NSXMLAttributeKind -C/econst/-/NSXMLAttributeNMTokenKind -C/econst/-/NSXMLAttributeNMTokensKind -C/econst/-/NSXMLAttributeNotationKind -C/econst/-/NSXMLCommentKind -Objective-C/cl/-/NSXMLDocument -C/tdef/-/NSXMLDocumentContentKind -C/econst/-/NSXMLDocumentHTMLKind -C/econst/-/NSXMLDocumentIncludeContentTypeDeclaration -C/econst/-/NSXMLDocumentKind -C/econst/-/NSXMLDocumentTextKind -C/econst/-/NSXMLDocumentTidyHTML -C/econst/-/NSXMLDocumentTidyXML -C/econst/-/NSXMLDocumentValidate -C/econst/-/NSXMLDocumentXHTMLKind -C/econst/-/NSXMLDocumentXInclude -C/econst/-/NSXMLDocumentXMLKind -Objective-C/cl/-/NSXMLDTD -C/econst/-/NSXMLDTDKind -Objective-C/cl/-/NSXMLDTDNode -C/tdef/-/NSXMLDTDNodeKind -Objective-C/cl/-/NSXMLElement -C/econst/-/NSXMLElementDeclarationAnyKind -C/econst/-/NSXMLElementDeclarationElementKind -C/econst/-/NSXMLElementDeclarationEmptyKind -C/econst/-/NSXMLElementDeclarationKind -C/econst/-/NSXMLElementDeclarationMixedKind -C/econst/-/NSXMLElementDeclarationUndefinedKind -C/econst/-/NSXMLElementKind -C/econst/-/NSXMLEntityDeclarationKind -C/econst/-/NSXMLEntityGeneralKind -C/econst/-/NSXMLEntityParameterKind -C/econst/-/NSXMLEntityParsedKind -C/econst/-/NSXMLEntityPredefined -C/econst/-/NSXMLEntityUnparsedKind -C/data/-/NSXMLExternalRecordType -C/econst/-/NSXMLInvalidKind -C/econst/-/NSXMLNamespaceKind -Objective-C/cl/-/NSXMLNode -C/econst/-/NSXMLNodeCompactEmptyElement -C/econst/-/NSXMLNodeExpandEmptyElement -C/econst/-/NSXMLNodeIsCDATA -C/tdef/-/NSXMLNodeKind -C/econst/-/NSXMLNodeOptionsNone -C/econst/-/NSXMLNodePreserveAll -C/econst/-/NSXMLNodePreserveAttributeOrder -C/econst/-/NSXMLNodePreserveCDATA -C/econst/-/NSXMLNodePreserveCharacterReferences -C/econst/-/NSXMLNodePreserveDTD -C/econst/-/NSXMLNodePreserveEmptyElements -C/econst/-/NSXMLNodePreserveEntities -C/econst/-/NSXMLNodePreserveNamespaceOrder -C/econst/-/NSXMLNodePreservePrefixes -C/econst/-/NSXMLNodePreserveQuotes -C/econst/-/NSXMLNodePreserveWhitespace -C/econst/-/NSXMLNodePrettyPrint -C/econst/-/NSXMLNodeUseDoubleQuotes -C/econst/-/NSXMLNodeUseSingleQuotes -C/econst/-/NSXMLNotationDeclarationKind -Objective-C/cl/-/NSXMLParser -C/econst/-/NSXMLParserAttributeHasNoValueError -C/econst/-/NSXMLParserAttributeListNotFinishedError -C/econst/-/NSXMLParserAttributeListNotStartedError -C/econst/-/NSXMLParserAttributeNotFinishedError -C/econst/-/NSXMLParserAttributeNotStartedError -C/econst/-/NSXMLParserAttributeRedefinedError -C/econst/-/NSXMLParserCDATANotFinishedError -C/econst/-/NSXMLParserCharacterRefAtEOFError -C/econst/-/NSXMLParserCharacterRefInDTDError -C/econst/-/NSXMLParserCharacterRefInEpilogError -C/econst/-/NSXMLParserCharacterRefInPrologError -C/econst/-/NSXMLParserCommentContainsDoubleHyphenError -C/econst/-/NSXMLParserCommentNotFinishedError -C/econst/-/NSXMLParserConditionalSectionNotFinishedError -C/econst/-/NSXMLParserConditionalSectionNotStartedError -Objective-C/intf/-/NSXMLParserDelegate -C/econst/-/NSXMLParserDelegateAbortedParseError -C/econst/-/NSXMLParserDOCTYPEDeclNotFinishedError -C/econst/-/NSXMLParserDocumentStartError -C/econst/-/NSXMLParserElementContentDeclNotFinishedError -C/econst/-/NSXMLParserElementContentDeclNotStartedError -C/econst/-/NSXMLParserEmptyDocumentError -C/econst/-/NSXMLParserEncodingNotSupportedError -C/econst/-/NSXMLParserEntityBoundaryError -C/econst/-/NSXMLParserEntityIsExternalError -C/econst/-/NSXMLParserEntityIsParameterError -C/econst/-/NSXMLParserEntityNotFinishedError -C/econst/-/NSXMLParserEntityNotStartedError -C/econst/-/NSXMLParserEntityRefAtEOFError -C/econst/-/NSXMLParserEntityReferenceMissingSemiError -C/econst/-/NSXMLParserEntityReferenceWithoutNameError -C/econst/-/NSXMLParserEntityRefInDTDError -C/econst/-/NSXMLParserEntityRefInEpilogError -C/econst/-/NSXMLParserEntityRefInPrologError -C/econst/-/NSXMLParserEntityRefLoopError -C/econst/-/NSXMLParserEntityValueRequiredError -C/econst/-/NSXMLParserEqualExpectedError -C/tdef/-/NSXMLParserError -C/data/-/NSXMLParserErrorDomain -C/econst/-/NSXMLParserExternalStandaloneEntityError -C/econst/-/NSXMLParserExternalSubsetNotFinishedError -C/econst/-/NSXMLParserExtraContentError -C/econst/-/NSXMLParserGTRequiredError -C/econst/-/NSXMLParserInternalError -C/econst/-/NSXMLParserInvalidCharacterError -C/econst/-/NSXMLParserInvalidCharacterInEntityError -C/econst/-/NSXMLParserInvalidCharacterRefError -C/econst/-/NSXMLParserInvalidConditionalSectionError -C/econst/-/NSXMLParserInvalidDecimalCharacterRefError -C/econst/-/NSXMLParserInvalidEncodingError -C/econst/-/NSXMLParserInvalidEncodingNameError -C/econst/-/NSXMLParserInvalidHexCharacterRefError -C/econst/-/NSXMLParserInvalidURIError -C/econst/-/NSXMLParserLessThanSymbolInAttributeError -C/econst/-/NSXMLParserLiteralNotFinishedError -C/econst/-/NSXMLParserLiteralNotStartedError -C/econst/-/NSXMLParserLTRequiredError -C/econst/-/NSXMLParserLTSlashRequiredError -C/econst/-/NSXMLParserMisplacedCDATAEndStringError -C/econst/-/NSXMLParserMisplacedXMLDeclarationError -C/econst/-/NSXMLParserMixedContentDeclNotFinishedError -C/econst/-/NSXMLParserMixedContentDeclNotStartedError -C/econst/-/NSXMLParserNAMERequiredError -C/econst/-/NSXMLParserNamespaceDeclarationError -C/econst/-/NSXMLParserNMTOKENRequiredError -C/econst/-/NSXMLParserNoDTDError -C/econst/-/NSXMLParserNotationNotFinishedError -C/econst/-/NSXMLParserNotationNotStartedError -C/econst/-/NSXMLParserNotWellBalancedError -C/econst/-/NSXMLParserOutOfMemoryError -C/econst/-/NSXMLParserParsedEntityRefAtEOFError -C/econst/-/NSXMLParserParsedEntityRefInEpilogError -C/econst/-/NSXMLParserParsedEntityRefInInternalError -C/econst/-/NSXMLParserParsedEntityRefInInternalSubsetError -C/econst/-/NSXMLParserParsedEntityRefInPrologError -C/econst/-/NSXMLParserParsedEntityRefMissingSemiError -C/econst/-/NSXMLParserParsedEntityRefNoNameError -C/econst/-/NSXMLParserPCDATARequiredError -C/econst/-/NSXMLParserPrematureDocumentEndError -C/econst/-/NSXMLParserProcessingInstructionNotFinishedError -C/econst/-/NSXMLParserProcessingInstructionNotStartedError -C/econst/-/NSXMLParserPublicIdentifierRequiredError -C/econst/-/NSXMLParserSeparatorRequiredError -C/econst/-/NSXMLParserSpaceRequiredError -C/econst/-/NSXMLParserStandaloneValueError -C/econst/-/NSXMLParserStringNotClosedError -C/econst/-/NSXMLParserStringNotStartedError -C/econst/-/NSXMLParserTagNameMismatchError -C/econst/-/NSXMLParserUndeclaredEntityError -C/econst/-/NSXMLParserUnfinishedTagError -C/econst/-/NSXMLParserUnknownEncodingError -C/econst/-/NSXMLParserUnparsedEntityError -C/econst/-/NSXMLParserURIFragmentError -C/econst/-/NSXMLParserURIRequiredError -C/econst/-/NSXMLParserXMLDeclNotFinishedError -C/econst/-/NSXMLParserXMLDeclNotStartedError -C/econst/-/NSXMLProcessingInstructionKind -C/data/-/NSXMLStoreType -C/econst/-/NSXMLTextKind -C/econst/-/NSYearCalendarUnit -C/econst/-/NSYearMonthDatePickerElementFlag -C/econst/-/NSYearMonthDayDatePickerElementFlag -C/data/-/NSYearMonthWeekDesignations -C/data/-/NSZeroPoint -C/data/-/NSZeroRect -C/data/-/NSZeroSize -C/tdef/-/NSZone -C/func/-/NSZoneCalloc -C/func/-/NSZoneFree -C/func/-/NSZoneFromPointer -C/func/-/NSZoneMalloc -C/func/-/NSZoneName -C/func/-/NSZoneRealloc -Objective-C/instm/CalRecurrenceRule/nthWeekDaysOfTheMonth -Objective-C/instp/CalRecurrenceRule/nthWeekDaysOfTheMonth -C/func/-/ntoa -C/func/-/ntohl -C/func/-/ntohs -Objective-C/clm/NSNull/null -Objective-C/clm/NSAppleEventDescriptor/nullDescriptor -C++/clm/IOKernelDebugger/nullRxHandler -C++/clm/IOKernelDebugger/nullTxHandler -JavaScript/clconst/WebGLRenderingContext/NUM_COMPRESSED_TEXTURE_FORMATS -JavaScript/clconst/WebGLRenderingContext/NUM_SHADER_BINARY_FORMATS -Objective-C/instm/FxImage/numActiveChannels -C++/data/IOAudioEngine/numActiveUserClients -C/macro/-/NumAudioFileMarkersToNumBytes -JavaScript/clconst/XPathResult/NUMBER_TYPE -Objective-C/instm/NSNumberFormatter/numberFromString: -Objective-C/instm/NSMethodSignature/numberOfArguments -Objective-C/instm/IMAVManager/numberOfAudioChannels -C++/instm/OSNumber/numberOfBits -C++/instm/OSNumber/numberOfBytes -JavaScript/data/ScriptProfileNode/numberOfCalls -Objective-C/instm/PDFPage/numberOfCharacters -Objective-C/instm/PDFOutline/numberOfChildren -Objective-C/instm/NSColorSpace/numberOfColorComponents -Objective-C/instm/NSGradient/numberOfColorStops -Objective-C/instm/QCCompositionPickerView/numberOfColumns -Objective-C/instm/NSTextTable/numberOfColumns -Objective-C/instm/NSMatrix/numberOfColumns -Objective-C/instm/IKImageBrowserView/numberOfColumns -Objective-C/instm/NSTableView/numberOfColumns -Objective-C/instm/CIColor/numberOfComponents -Objective-C/instm/NSColor/numberOfComponents -Objective-C/instm/NSFont/numberOfGlyphs -Objective-C/instm/NSLayoutManager/numberOfGlyphs -Objective-C/instm/NSObject/numberOfGroupsInImageBrowser: -Objective-C/instm/NSAppleEventDescriptor/numberOfItems -Objective-C/instm/NSPopUpButton/numberOfItems -Objective-C/instm/NSPopUpButtonCell/numberOfItems -Objective-C/instm/NSComboBox/numberOfItems -Objective-C/instm/NSComboBoxCell/numberOfItems -Objective-C/instm/NSMenu/numberOfItems -JavaScript/data/SVGLengthList/numberOfItems -JavaScript/data/SVGNumberList/numberOfItems -JavaScript/data/SVGTransformList/numberOfItems -JavaScript/data/SVGPointList/numberOfItems -JavaScript/data/SVGStringList/numberOfItems -JavaScript/data/SVGPathSegList/numberOfItems -Objective-C/intfm/NSComboBoxDataSource/numberOfItemsInComboBox: -Objective-C/intfm/NSComboBoxCellDataSource/numberOfItemsInComboBoxCell: -Objective-C/instm/NSObject/numberOfItemsInImageBrowser: -Objective-C/intfm/NSMenuDelegate/numberOfItemsInMenu: -Objective-C/instm/NSLevelIndicator/numberOfMajorTickMarks -Objective-C/instm/NSLevelIndicatorCell/numberOfMajorTickMarks -Objective-C/instm/NSBitmapImageRep/numberOfPlanes -Objective-C/intfm/QLPreviewPanelDataSource/numberOfPreviewItemsInPreviewPanel -Objective-C/instm/QCCompositionPickerView/numberOfRows -Objective-C/instm/NSMatrix/numberOfRows -Objective-C/instm/IKImageBrowserView/numberOfRows -Objective-C/instm/NSRuleEditor/numberOfRows -Objective-C/instm/NSTableView/numberOfRows -Objective-C/intfm/NSTableViewDataSource/numberOfRowsInTableView: -Objective-C/instm/QTSampleBuffer/numberOfSamples -Objective-C/instm/NSTableView/numberOfSelectedColumns -Objective-C/instm/NSTableView/numberOfSelectedRows -Objective-C/intfm/IKSlideshowDataSource/numberOfSlideshowItems -Objective-C/instm/NSTabView/numberOfTabViewItems -Objective-C/instm/NSSliderCell/numberOfTickMarks -Objective-C/instm/NSSlider/numberOfTickMarks -Objective-C/instm/NSLevelIndicator/numberOfTickMarks -Objective-C/instm/NSLevelIndicatorCell/numberOfTickMarks -Objective-C/instm/NSOpenGLPixelFormat/numberOfVirtualScreens -Objective-C/instm/NSBrowser/numberOfVisibleColumns -Objective-C/instm/NSComboBox/numberOfVisibleItems -Objective-C/instm/NSComboBoxCell/numberOfVisibleItems -Objective-C/instm/NSNumberFormatter/numberStyle -JavaScript/data/XPathResult/numberValue -Objective-C/clm/NSNumber/numberWithBool: -Objective-C/clm/NSNumber/numberWithChar: -Objective-C/clm/NSNumber/numberWithDouble: -Objective-C/clm/NSNumber/numberWithFloat: -Objective-C/clm/NSNumber/numberWithInt: -Objective-C/clm/NSNumber/numberWithInteger: -Objective-C/clm/NSNumber/numberWithLong: -Objective-C/clm/NSNumber/numberWithLongLong: -Objective-C/clm/NSNumber/numberWithShort: -Objective-C/clm/NSNumber/numberWithUnsignedChar: -Objective-C/clm/NSNumber/numberWithUnsignedInt: -Objective-C/clm/NSNumber/numberWithUnsignedInteger: -Objective-C/clm/NSNumber/numberWithUnsignedLong: -Objective-C/clm/NSNumber/numberWithUnsignedLongLong: -Objective-C/clm/NSNumber/numberWithUnsignedShort: -C/macro/-/NumBytesToNumAudioFileMarkers -C++/data/IOAudioEngine/numErasesPerBuffer -JavaScript/data/SVGFETurbulenceElement/numOctaves -C++/data/IOAudioDevice/numRunningAudioEngines -C++/data/IOAudioEngine/numSampleFramesPerBuffer -C/func/-/NXCombineCpuSubtypes -C/func/-/NXFindBestFatArch -C/func/-/NXGetAllArchInfos -C/func/-/NXGetArchInfoFromCpuType -C/func/-/NXGetArchInfoFromName -C/func/-/NXGetLocalArchInfo -Objective-C/instm/OBEXSession/OBEXAbort:optionalHeadersLength:eventSelector:selectorTarget:refCon: -C/tdef/-/OBEXAbortCommandData -C/tag/-/OBEXAbortCommandData -C/tag/-/OBEXAbortCommandResponseData -C/tdef/-/OBEXAbortCommandResponseData -Objective-C/instm/OBEXSession/OBEXAbortResponse:optionalHeaders:optionalHeadersLength:eventSelector:selectorTarget:refCon: -C/func/-/OBEXAddApplicationParameterHeader -C/func/-/OBEXAddAuthorizationChallengeHeader -C/func/-/OBEXAddAuthorizationResponseHeader -C/func/-/OBEXAddBodyHeader -C/func/-/OBEXAddByteSequenceHeader -C/func/-/OBEXAddConnectionIDHeader -C/func/-/OBEXAddCountHeader -C/func/-/OBEXAddDescriptionHeader -C/func/-/OBEXAddHTTPHeader -C/func/-/OBEXAddLengthHeader -C/func/-/OBEXAddNameHeader -C/func/-/OBEXAddObjectClassHeader -C/func/-/OBEXAddTargetHeader -C/func/-/OBEXAddTime4ByteHeader -C/func/-/OBEXAddTimeISOHeader -C/func/-/OBEXAddTypeHeader -C/func/-/OBEXAddUserDefinedHeader -C/func/-/OBEXAddWhoHeader -Objective-C/instm/OBEXSession/OBEXConnect:maxPacketLength:optionalHeaders:optionalHeadersLength:eventSelector:selectorTarget:refCon: -C/tdef/-/OBEXConnectCommandData -C/tag/-/OBEXConnectCommandData -C/tdef/-/OBEXConnectCommandResponseData -C/tag/-/OBEXConnectCommandResponseData -C/tag/-/OBEXConnectFlagValues -Objective-C/instm/OBEXSession/OBEXConnectResponse:flags:maxPacketLength:optionalHeaders:optionalHeadersLength:eventSelector:selectorTarget:refCon: -C/func/-/OBEXCreateVCard -C/func/-/OBEXCreateVEvent -Objective-C/instm/OBEXSession/OBEXDisconnect:optionalHeadersLength:eventSelector:selectorTarget:refCon: -C/tdef/-/OBEXDisconnectCommandData -C/tag/-/OBEXDisconnectCommandData -C/tdef/-/OBEXDisconnectCommandResponseData -C/tag/-/OBEXDisconnectCommandResponseData -Objective-C/instm/OBEXSession/OBEXDisconnectResponse:optionalHeaders:optionalHeadersLength:eventSelector:selectorTarget:refCon: -C/tdef/-/OBEXError -C/tag/-/OBEXErrorCodes -C/tag/-/OBEXErrorData -C/tdef/-/OBEXErrorData -C/tdef/-/OBEXFileTransferServicesRef -Objective-C/instm/OBEXSession/OBEXGet:headers:headersLength:eventSelector:selectorTarget:refCon: -C/tdef/-/OBEXGetCommandData -C/tag/-/OBEXGetCommandData -C/tdef/-/OBEXGetCommandResponseData -C/tag/-/OBEXGetCommandResponseData -C/func/-/OBEXGetHeaders -Objective-C/instm/OBEXSession/OBEXGetResponse:optionalHeaders:optionalHeadersLength:eventSelector:selectorTarget:refCon: -C/tag/-/OBEXHeaderIdentifiers -C/func/-/OBEXHeadersToBytes -C/tag/-/OBEXNonceFlagValues -C/tag/-/OBEXOpCodeCommandValues -C/tag/-/OBEXOpCodeResponseValues -C/tag/-/OBEXOpCodeSessionValues -Objective-C/instm/OBEXSession/OBEXPut:headersData:headersDataLength:bodyData:bodyDataLength:eventSelector:selectorTarget:refCon: -C/tag/-/OBEXPutCommandData -C/tdef/-/OBEXPutCommandData -C/tdef/-/OBEXPutCommandResponseData -C/tag/-/OBEXPutCommandResponseData -C/tag/-/OBEXPutFlagValues -Objective-C/instm/OBEXSession/OBEXPutResponse:optionalHeaders:optionalHeadersLength:eventSelector:selectorTarget:refCon: -C/tag/-/OBEXRealmValues -Objective-C/cl/-/OBEXSession -C/func/-/OBEXSessionAbort -C/func/-/OBEXSessionAbortResponse -C/func/-/OBEXSessionConnect -C/func/-/OBEXSessionConnectResponse -C/func/-/OBEXSessionDelete -C/func/-/OBEXSessionDisconnect -C/func/-/OBEXSessionDisconnectResponse -C/tag/-/OBEXSessionEvent -C/tdef/-/OBEXSessionEvent -C/tag/-/OBEXSessionEventTypes -C/func/-/OBEXSessionGet -C/func/-/OBEXSessionGetAvailableCommandPayloadLength -C/func/-/OBEXSessionGetAvailableCommandResponsePayloadLength -C/func/-/OBEXSessionGetMaxPacketLength -C/func/-/OBEXSessionGetResponse -C/func/-/OBEXSessionHasOpenOBEXConnection -C/tag/-/OBEXSessionParameterTags -C/func/-/OBEXSessionPut -C/func/-/OBEXSessionPutResponse -C/func/-/OBEXSessionSetPath -C/func/-/OBEXSessionSetPathResponse -C/func/-/OBEXSessionSetServerCallback -Objective-C/instm/OBEXSession/OBEXSetPath:constants:optionalHeaders:optionalHeadersLength:eventSelector:selectorTarget:refCon: -C/tag/-/OBEXSetPathCommandData -C/tdef/-/OBEXSetPathCommandData -C/tag/-/OBEXSetPathCommandResponseData -C/tdef/-/OBEXSetPathCommandResponseData -Objective-C/instm/OBEXSession/OBEXSetPathResponse:optionalHeaders:optionalHeadersLength:eventSelector:selectorTarget:refCon: -Objective-C/tdef/OBEXSession/OBEXTransportEvent -Objective-C/tdef/OBEXSession/OBEXTransportEventType -C/tag/-/OBEXVersions -C/func/-/OBJ_cleanup -C/func/-/OBJ_cmp -C/func/-/OBJ_create -C/func/-/OBJ_dup -C/func/-/OBJ_ln2nid -C/func/-/OBJ_nid2ln -C/func/-/OBJ_nid2obj -C/func/-/OBJ_nid2sn -C/func/-/OBJ_obj2nid -C/func/-/OBJ_obj2txt -C/func/-/OBJ_sn2nid -C/func/-/OBJ_txt2nid -C/func/-/OBJ_txt2obj -C/func/-/objc_allocateClassPair -C/econst/-/OBJC_ASSOCIATION_ASSIGN -C/econst/-/OBJC_ASSOCIATION_COPY -C/econst/-/OBJC_ASSOCIATION_COPY_NONATOMIC -C/econst/-/OBJC_ASSOCIATION_RETAIN -C/econst/-/OBJC_ASSOCIATION_RETAIN_NONATOMIC -C/tdef/-/objc_AssociationPolicy -C/tag/-/objc_cache -C/func/-/objc_copyProtocolList -C/func/-/objc_duplicateClass -C/func/-/objc_getAssociatedObject -C/func/-/objc_getClass -C/func/-/objc_getClassList -C/func/-/objc_getFutureClass -C/func/-/objc_getMetaClass -C/func/-/objc_getProtocol -C/func/-/objc_getRequiredClass -C/func/-/objc_lookUpClass -C/tag/-/objc_method_list -C/func/-/objc_msgSend -C/func/-/objc_msgSend_fpret -C/func/-/objc_msgSend_stret -C/func/-/objc_msgSendSuper -C/func/-/objc_msgSendSuper_stret -C/tag/-/objc_object -C/tdef/-/objc_property_t -C/tag/-/objc_protocol_list -C/func/-/objc_registerClassPair -C/func/-/objc_removeAssociatedObjects -C/func/-/objc_setAssociatedObject -C/func/-/objc_setFutureClass -C/tag/-/objc_super -Objective-C/instm/NSDecimalNumber/objCType -Objective-C/instm/NSValue/objCType -Objective-C/instm/NSNumber/objCType -Objective-C/instm/NSNotification/object -JavaScript/data/HTMLAppletElement/object -C/func/-/object_copy -C/func/-/object_dispose -C/func/-/object_getClass -C/func/-/object_getClassName -C/func/-/object_getIndexedIvars -C/func/-/object_getInstanceVariable -C/func/-/object_getIvar -C/func/-/object_setClass -C/func/-/object_setInstanceVariable -C/func/-/object_setIvar -Objective-C/instm/NSArray/objectAtIndex: -Objective-C/instm/SBElementArray/objectAtLocation: -Objective-C/instm/NSScriptExecutionContext/objectBeingTested -Objective-C/instm/NSXMLDocument/objectByApplyingXSLT:arguments:error: -Objective-C/instm/NSXMLDocument/objectByApplyingXSLTAtURL:arguments:error: -Objective-C/instm/NSXMLDocument/objectByApplyingXSLTString:arguments:error: -Objective-C/instm/NSObjectController/objectClass -Objective-C/instm/IKFilterUIView/objectController -Objective-C/instm/NSController/objectDidBeginEditing: -Objective-C/instm/NSObject/objectDidBeginEditing: -Objective-C/instm/NSController/objectDidEndEditing: -Objective-C/instm/NSObject/objectDidEndEditing: -Objective-C/instm/NSHashTable/objectEnumerator -Objective-C/instm/NSCountedSet/objectEnumerator -Objective-C/instm/NSSet/objectEnumerator -Objective-C/instm/NSMapTable/objectEnumerator -Objective-C/instm/NSDictionary/objectEnumerator -Objective-C/instm/NSArray/objectEnumerator -Objective-C/instm/NSBundle/objectForInfoDictionaryKey: -Objective-C/instm/ISyncClient/objectForKey: -Objective-C/instm/NSDictionary/objectForKey: -Objective-C/instm/NSMapTable/objectForKey: -Objective-C/instm/NSLocale/objectForKey: -Objective-C/instm/NSFontDescriptor/objectForKey: -Objective-C/instm/NSUserDefaults/objectForKey: -Objective-C/instm/NSCache/objectForKey: -Objective-C/instm/DRCDTextBlock/objectForKey:ofTrack: -Objective-C/instm/NSSpeechSynthesizer/objectForProperty:error: -Objective-C/instm/NSObject/objectForWebScript -Objective-C/instm/NSAtomicStoreCacheNode/objectID -Objective-C/instm/NSManagedObject/objectID -Objective-C/instm/NSAtomicStore/objectIDForEntity:referenceObject: -Objective-C/instm/NSUserDefaults/objectIsForcedForKey: -Objective-C/instm/NSUserDefaults/objectIsForcedForKey:inDomain: -Objective-C/instm/NSManagedObjectContext/objectRegisteredForID: -Objective-C/instm/IBDocument/objects -Objective-C/instm/NSArray/objectsAtIndexes: -Objective-C/instm/NSScriptObjectSpecifier/objectsByEvaluatingSpecifier -Objective-C/instm/NSScriptObjectSpecifier/objectsByEvaluatingWithContainers: -Objective-C/instm/NSDictionary/objectsForKeys:notFoundMarker: -Objective-C/instm/NSXMLNode/objectsForXQuery:constants:error: -Objective-C/instm/NSXMLNode/objectsForXQuery:error: -Objective-C/instm/NSSet/objectsPassingTest: -Objective-C/instm/NSPositionalSpecifier/objectSpecifier -Objective-C/instm/NSDocument/objectSpecifier -Objective-C/instm/NSObject/objectSpecifier -Objective-C/clm/NSScriptObjectSpecifier/objectSpecifierWithDescriptor: -Objective-C/instm/NSSet/objectsWithOptions:passingTest: -Objective-C/instm/NSPopUpButtonCell/objectValue -Objective-C/instm/NSPopUpButton/objectValue -Objective-C/instm/NSControl/objectValue -Objective-C/instm/NSXMLNode/objectValue -Objective-C/instm/NSCell/objectValue -Objective-C/instm/NSComboBox/objectValueOfSelectedItem -Objective-C/instm/NSComboBoxCell/objectValueOfSelectedItem -Objective-C/instm/NSComboBox/objectValues -Objective-C/instm/NSComboBoxCell/objectValues -Objective-C/instm/SBElementArray/objectWithID: -Objective-C/instm/NSManagedObjectContext/objectWithID: -Objective-C/instm/SBElementArray/objectWithName: -Objective-C/instm/NSUnarchiver/objectZone -Objective-C/instm/NSCoder/objectZone -JavaScript/instm/TestObj/objMethod -JavaScript/instm/TestObj/objMethodWithArgs -C/tdef/-/ObjParam -Objective-C/instm/NSObject/observationInfo -Objective-C/instm/NSManagedObject/observationInfo -Objective-C/instm/NSObject/observeValueForKeyPath:ofObject:change:context: -JavaScript/clconst/DOMApplicationCache/OBSOLETE -Objective-C/instm/NSManagedObjectContext/obtainPermanentIDsForObjects:error: -Objective-C/instm/SFAuthorization/obtainWithRight:flags:error: -Objective-C/instm/SFAuthorization/obtainWithRights:flags:environment:authorizedRights:error: -Objective-C/instp/CalEvent/occurrence -Objective-C/instm/CalEvent/occurrence -Objective-C/instm/CalRecurrenceEnd/occurrenceCount -Objective-C/instp/CalRecurrenceEnd/occurrenceCount -C/tdef/-/ODAttributeType -C/tdef/-/ODAuthenticationType -C/func/-/ODContextGetTypeID -C/tdef/-/ODFrameworkErrors -C/tdef/-/ODMatchType -Objective-C/cl/-/ODNode -C/func/-/ODNodeCopyDetails -C/func/-/ODNodeCopyRecord -C/func/-/ODNodeCopySubnodeNames -C/func/-/ODNodeCopySupportedAttributes -C/func/-/ODNodeCopySupportedRecordTypes -C/func/-/ODNodeCopyUnreachableSubnodeNames -C/func/-/ODNodeCreateCopy -C/func/-/ODNodeCreateRecord -C/func/-/ODNodeCreateWithName -C/func/-/ODNodeCreateWithNodeType -C/func/-/ODNodeCustomCall -C/func/-/ODNodeGetName -C/func/-/ODNodeGetTypeID -C/func/-/ODNodeSetCredentials -C/func/-/ODNodeSetCredentialsExtended -C/func/-/ODNodeSetCredentialsUsingKerberosCache -C/tdef/-/ODNodeType -Objective-C/cl/-/ODQuery -C/tag/-/ODQueryCallback -C/func/-/ODQueryCopyResults -C/func/-/ODQueryCreateWithNode -C/func/-/ODQueryCreateWithNodeType -Objective-C/cat/-/ODQueryDelegate -C/func/-/ODQueryGetTypeID -C/func/-/ODQueryScheduleWithRunLoop -C/func/-/ODQuerySetCallback -C/func/-/ODQuerySetDispatchQueue -C/func/-/ODQuerySynchronize -C/func/-/ODQueryUnscheduleFromRunLoop -Objective-C/cl/-/ODRecord -C/func/-/ODRecordAddMember -C/func/-/ODRecordAddValue -C/func/-/ODRecordChangePassword -C/func/-/ODRecordContainsMember -C/func/-/ODRecordCopyDetails -C/func/-/ODRecordCopyPasswordPolicy -C/func/-/ODRecordCopyValues -C/func/-/ODRecordDelete -C/func/-/ODRecordGetRecordName -C/func/-/ODRecordGetRecordType -C/func/-/ODRecordGetTypeID -C/func/-/ODRecordRemoveMember -C/func/-/ODRecordRemoveValue -C/func/-/ODRecordSetNodeCredentials -C/func/-/ODRecordSetNodeCredentialsExtended -C/func/-/ODRecordSetNodeCredentialsUsingKerberosCache -C/func/-/ODRecordSetValue -C/func/-/ODRecordSynchronize -C/tdef/-/ODRecordType -C/func/-/ODRecordVerifyPassword -C/func/-/ODRecordVerifyPasswordExtended -Objective-C/cl/-/ODSession -C/func/-/ODSessionCopyNodeNames -C/func/-/ODSessionCreate -C/func/-/ODSessionGetTypeID -C/data/-/ODSessionProxyAddress -C/data/-/ODSessionProxyPassword -C/data/-/ODSessionProxyPort -C/data/-/ODSessionProxyUsername -JavaScript/data/DOMWindow/offscreenBuffering -Objective-C/instm/CAConstraint/offset -Objective-C/instp/CAConstraint/offset -JavaScript/data/SVGComponentTransferFunctionElement/offset -JavaScript/data/SVGStopElement/offset -JavaScript/data/Element/offsetHeight -Objective-C/instm/NSFileHandle/offsetInFile -JavaScript/data/Element/offsetLeft -JavaScript/data/Element/offsetParent -JavaScript/data/Element/offsetTop -JavaScript/data/Element/offsetWidth -JavaScript/data/MouseEvent/offsetX -JavaScript/data/WheelEvent/offsetX -JavaScript/data/MouseEvent/offsetY -JavaScript/data/WheelEvent/offsetY -Objective-C/instm/NSMenuItem/offStateImage -Objective-C/binding/NSMenuItem/offStateImage -Objective-C/binding/NSPopUpButtonCell/offStateImage -Objective-C/instm/NSSavePanel/ok: -Objective-C/instm/DRSetupPanel/ok: -JavaScript/data/StorageEvent/oldValue -JavaScript/data/Document/onabort -JavaScript/data/DOMWindow/onabort -JavaScript/data/FileReader/onabort -JavaScript/data/Element/onabort -JavaScript/data/svg/onabort -JavaScript/data/XMLHttpRequestUpload/onabort -JavaScript/data/XMLHttpRequest/onabort -JavaScript/data/Document/onbeforecopy -JavaScript/data/Element/onbeforecopy -JavaScript/data/svg/onbeforecopy -JavaScript/data/Document/onbeforecut -JavaScript/data/Element/onbeforecut -JavaScript/data/svg/onbeforecut -JavaScript/data/Document/onbeforepaste -JavaScript/data/Element/onbeforepaste -JavaScript/data/svg/onbeforepaste -JavaScript/data/DOMWindow/onbeforeunload -JavaScript/data/HTMLBodyElement/onbeforeunload -JavaScript/data/HTMLFrameSetElement/onbeforeunload -JavaScript/data/Document/onblur -JavaScript/data/DOMWindow/onblur -JavaScript/data/Element/onblur -JavaScript/data/HTMLFrameSetElement/onblur -JavaScript/data/HTMLBodyElement/onblur -JavaScript/data/svg/onblur -JavaScript/data/DOMApplicationCache/oncached -JavaScript/data/DOMWindow/oncanplay -JavaScript/data/DOMWindow/oncanplaythrough -JavaScript/data/DOMWindow/onchange -JavaScript/data/Document/onchange -JavaScript/data/Element/onchange -JavaScript/data/svg/onchange -JavaScript/data/DOMApplicationCache/onchecking -JavaScript/data/DOMWindow/onclick -JavaScript/data/Document/onclick -JavaScript/data/Element/onclick -JavaScript/data/svg/onclick -JavaScript/data/Notification/onclose -JavaScript/data/WebSocket/onclose -JavaScript/data/SharedWorkerContext/onconnect -JavaScript/data/Document/oncontextmenu -JavaScript/data/DOMWindow/oncontextmenu -JavaScript/data/Element/oncontextmenu -JavaScript/data/svg/oncontextmenu -JavaScript/data/Document/oncopy -JavaScript/data/Element/oncopy -JavaScript/data/svg/oncopy -JavaScript/data/Document/oncut -JavaScript/data/Element/oncut -JavaScript/data/svg/oncut -JavaScript/data/Document/ondblclick -JavaScript/data/DOMWindow/ondblclick -JavaScript/data/Element/ondblclick -JavaScript/data/svg/ondblclick -JavaScript/data/Notification/ondisplay -JavaScript/data/DOMApplicationCache/ondownloading -JavaScript/data/DOMWindow/ondrag -JavaScript/data/Document/ondrag -JavaScript/data/Element/ondrag -JavaScript/data/svg/ondrag -JavaScript/data/Document/ondragend -JavaScript/data/DOMWindow/ondragend -JavaScript/data/Element/ondragend -JavaScript/data/svg/ondragend -JavaScript/data/Document/ondragenter -JavaScript/data/DOMWindow/ondragenter -JavaScript/data/Element/ondragenter -JavaScript/data/svg/ondragenter -JavaScript/data/DOMWindow/ondragleave -JavaScript/data/Document/ondragleave -JavaScript/data/Element/ondragleave -JavaScript/data/svg/ondragleave -JavaScript/data/DOMWindow/ondragover -JavaScript/data/Document/ondragover -JavaScript/data/Element/ondragover -JavaScript/data/svg/ondragover -JavaScript/data/Document/ondragstart -JavaScript/data/DOMWindow/ondragstart -JavaScript/data/Element/ondragstart -JavaScript/data/svg/ondragstart -JavaScript/data/DOMWindow/ondrop -JavaScript/data/Document/ondrop -JavaScript/data/Element/ondrop -JavaScript/data/svg/ondrop -JavaScript/data/DOMWindow/ondurationchange -Objective-C/clm/NSDecimalNumber/one -JavaScript/clconst/WebGLRenderingContext/ONE -JavaScript/clconst/WebGLRenderingContext/ONE_MINUS_CONSTANT_ALPHA -JavaScript/clconst/WebGLRenderingContext/ONE_MINUS_CONSTANT_COLOR -JavaScript/clconst/WebGLRenderingContext/ONE_MINUS_DST_ALPHA -JavaScript/clconst/WebGLRenderingContext/ONE_MINUS_DST_COLOR -JavaScript/clconst/WebGLRenderingContext/ONE_MINUS_SRC_ALPHA -JavaScript/clconst/WebGLRenderingContext/ONE_MINUS_SRC_COLOR -JavaScript/data/DOMWindow/onemptied -JavaScript/data/DOMWindow/onended -JavaScript/data/DOMApplicationCache/onerror -JavaScript/data/Document/onerror -JavaScript/data/AbstractWorker/onerror -JavaScript/data/DOMWindow/onerror -JavaScript/data/HTMLFrameSetElement/onerror -JavaScript/data/EventSource/onerror -JavaScript/data/Element/onerror -JavaScript/data/IDBRequest/onerror -JavaScript/data/FileReader/onerror -JavaScript/data/HTMLBodyElement/onerror -JavaScript/data/svg/onerror -JavaScript/data/Notification/onerror -JavaScript/data/XMLHttpRequestUpload/onerror -JavaScript/data/WebSocket/onerror -JavaScript/data/WorkerContext/onerror -JavaScript/data/XMLHttpRequest/onerror -JavaScript/data/DOMWindow/onfocus -JavaScript/data/Document/onfocus -JavaScript/data/Element/onfocus -JavaScript/data/HTMLBodyElement/onfocus -JavaScript/data/HTMLFrameSetElement/onfocus -JavaScript/data/svg/onfocus -JavaScript/data/DOMWindow/onhashchange -JavaScript/data/HTMLFrameSetElement/onhashchange -JavaScript/data/HTMLBodyElement/onhashchange -JavaScript/data/Document/oninput -JavaScript/data/DOMWindow/oninput -JavaScript/data/Element/oninput -JavaScript/data/svg/oninput -JavaScript/data/DOMWindow/oninvalid -JavaScript/data/Document/oninvalid -JavaScript/data/Element/oninvalid -JavaScript/data/Document/onkeydown -JavaScript/data/DOMWindow/onkeydown -JavaScript/data/Element/onkeydown -JavaScript/data/svg/onkeydown -JavaScript/data/Document/onkeypress -JavaScript/data/DOMWindow/onkeypress -JavaScript/data/Element/onkeypress -JavaScript/data/svg/onkeypress -JavaScript/data/DOMWindow/onkeyup -JavaScript/data/Document/onkeyup -JavaScript/data/Element/onkeyup -JavaScript/data/svg/onkeyup -JavaScript/data/Navigator/onLine -JavaScript/data/WorkerNavigator/onLine -JavaScript/data/Document/onload -JavaScript/data/DOMWindow/onload -JavaScript/data/Element/onload -JavaScript/data/FileReader/onload -JavaScript/data/HTMLFrameSetElement/onload -JavaScript/data/HTMLBodyElement/onload -JavaScript/data/svg/onload -JavaScript/data/XMLHttpRequest/onload -JavaScript/data/XMLHttpRequestUpload/onload -JavaScript/data/DOMWindow/onloadeddata -JavaScript/data/DOMWindow/onloadedmetadata -JavaScript/data/FileReader/onloadend -JavaScript/data/DOMWindow/onloadstart -JavaScript/data/FileReader/onloadstart -JavaScript/data/XMLHttpRequestUpload/onloadstart -JavaScript/data/XMLHttpRequest/onloadstart -JavaScript/data/DedicatedWorkerContext/onmessage -JavaScript/data/DOMWindow/onmessage -JavaScript/data/HTMLFrameSetElement/onmessage -JavaScript/data/EventSource/onmessage -JavaScript/data/HTMLBodyElement/onmessage -JavaScript/data/MessagePort/onmessage -JavaScript/data/WebSocket/onmessage -JavaScript/data/Worker/onmessage -JavaScript/data/DOMWindow/onmousedown -JavaScript/data/Document/onmousedown -JavaScript/data/Element/onmousedown -JavaScript/data/svg/onmousedown -JavaScript/data/Document/onmousemove -JavaScript/data/DOMWindow/onmousemove -JavaScript/data/Element/onmousemove -JavaScript/data/svg/onmousemove -JavaScript/data/DOMWindow/onmouseout -JavaScript/data/Document/onmouseout -JavaScript/data/Element/onmouseout -JavaScript/data/svg/onmouseout -JavaScript/data/Document/onmouseover -JavaScript/data/DOMWindow/onmouseover -JavaScript/data/Element/onmouseover -JavaScript/data/svg/onmouseover -JavaScript/data/Document/onmouseup -JavaScript/data/DOMWindow/onmouseup -JavaScript/data/Element/onmouseup -JavaScript/data/svg/onmouseup -JavaScript/data/DOMWindow/onmousewheel -JavaScript/data/Document/onmousewheel -JavaScript/data/Element/onmousewheel -JavaScript/data/svg/onmousewheel -JavaScript/data/DOMApplicationCache/onnoupdate -JavaScript/data/DOMApplicationCache/onobsolete -JavaScript/data/DOMWindow/onoffline -JavaScript/data/HTMLFrameSetElement/onoffline -JavaScript/data/HTMLBodyElement/onoffline -JavaScript/data/DOMWindow/ononline -JavaScript/data/HTMLFrameSetElement/ononline -JavaScript/data/HTMLBodyElement/ononline -JavaScript/data/EventSource/onopen -JavaScript/data/WebSocket/onopen -JavaScript/data/DOMWindow/onorientationchange -JavaScript/data/HTMLFrameSetElement/onorientationchange -JavaScript/data/HTMLBodyElement/onorientationchange -JavaScript/data/DOMWindow/onpagehide -JavaScript/data/DOMWindow/onpageshow -JavaScript/data/Document/onpaste -JavaScript/data/Element/onpaste -JavaScript/data/svg/onpaste -JavaScript/data/DOMWindow/onpause -JavaScript/data/DOMWindow/onplay -JavaScript/data/DOMWindow/onplaying -JavaScript/data/DOMWindow/onpopstate -JavaScript/data/HTMLFrameSetElement/onpopstate -JavaScript/data/HTMLBodyElement/onpopstate -JavaScript/data/DOMApplicationCache/onprogress -JavaScript/data/DOMWindow/onprogress -JavaScript/data/FileReader/onprogress -JavaScript/data/XMLHttpRequest/onprogress -JavaScript/data/XMLHttpRequestUpload/onprogress -JavaScript/data/DOMWindow/onratechange -JavaScript/data/XMLHttpRequest/onreadystatechange -JavaScript/data/DOMWindow/onreset -JavaScript/data/Document/onreset -JavaScript/data/Element/onreset -JavaScript/data/svg/onreset -JavaScript/data/DOMWindow/onresize -JavaScript/data/HTMLBodyElement/onresize -JavaScript/data/HTMLFrameSetElement/onresize -JavaScript/data/svg/onresize -JavaScript/data/DOMWindow/onscroll -JavaScript/data/Document/onscroll -JavaScript/data/Element/onscroll -JavaScript/data/svg/onscroll -JavaScript/data/Document/onsearch -JavaScript/data/DOMWindow/onsearch -JavaScript/data/Element/onsearch -JavaScript/data/svg/onsearch -JavaScript/data/DOMWindow/onseeked -JavaScript/data/DOMWindow/onseeking -JavaScript/data/DOMWindow/onselect -JavaScript/data/Document/onselect -JavaScript/data/Element/onselect -JavaScript/data/svg/onselect -JavaScript/data/Document/onselectstart -JavaScript/data/Element/onselectstart -JavaScript/data/svg/onselectstart -JavaScript/data/DOMWindow/onstalled -Objective-C/instm/NSMenuItem/onStateImage -Objective-C/binding/NSMenuItem/onStateImage -Objective-C/binding/NSPopUpButtonCell/onStateImage -Objective-C/instm/PDFAnnotationButtonWidget/onStateValue -JavaScript/data/DOMWindow/onstorage -JavaScript/data/HTMLFrameSetElement/onstorage -JavaScript/data/HTMLBodyElement/onstorage -JavaScript/data/Document/onsubmit -JavaScript/data/DOMWindow/onsubmit -JavaScript/data/Element/onsubmit -JavaScript/data/svg/onsubmit -JavaScript/data/IDBRequest/onsuccess -JavaScript/data/DOMWindow/onsuspend -C++/instm/IOEventSource/onThread -C++/instm/IOWorkLoop/onThread -JavaScript/data/DOMWindow/ontimeupdate -JavaScript/data/Document/ontouchcancel -JavaScript/data/DOMWindow/ontouchcancel -JavaScript/data/Element/ontouchcancel -JavaScript/data/Document/ontouchend -JavaScript/data/DOMWindow/ontouchend -JavaScript/data/Element/ontouchend -JavaScript/data/Document/ontouchmove -JavaScript/data/DOMWindow/ontouchmove -JavaScript/data/Element/ontouchmove -JavaScript/data/Document/ontouchstart -JavaScript/data/DOMWindow/ontouchstart -JavaScript/data/Element/ontouchstart -JavaScript/data/DOMWindow/onunload -JavaScript/data/HTMLFrameSetElement/onunload -JavaScript/data/HTMLBodyElement/onunload -JavaScript/data/svg/onunload -JavaScript/data/DOMApplicationCache/onupdateready -JavaScript/data/DOMWindow/onvolumechange -JavaScript/data/DOMWindow/onwaiting -JavaScript/data/DOMWindow/onwebkitanimationend -JavaScript/data/DOMWindow/onwebkitanimationiteration -JavaScript/data/DOMWindow/onwebkitanimationstart -JavaScript/data/DOMWindow/onwebkittransitionend -Objective-C/instm/IKImageBrowserCell/opacity -Objective-C/instm/CALayer/opacity -Objective-C/instp/CALayer/opacity -Objective-C/instp/CALayer/opaque -C/tag/-/opaque_ipfilter -C/func/-/opaque_type -Objective-C/instm/NSView/opaqueAncestor -Objective-C/instm/NSDrawer/open -Objective-C/instm/NSStream/open -Objective-C/instm/XGConnection/open -C/func/-/Open -C/func/-/open -C++/instm/IOService/open -C++/instm/IOStorage/open -JavaScript/instm/DOMWindow/open -JavaScript/instm/IndexedDatabaseRequest/open -JavaScript/clconst/EventSource/OPEN -JavaScript/instm/HTMLDocument/open -JavaScript/instm/XMLHttpRequest/open -JavaScript/clconst/WebSocket/OPEN -Objective-C/instm/NSDrawer/open: -Objective-C/instm/QTCaptureDevice/open: -Objective-C/instm/DRSetupPanel/open: -C/func/-/OpenAComponent -C/func/-/OpenAComponentResFile -C/func/-/OpenADataHandler -C/func/-/OpenADefaultComponent -C/func/-/OpenComponent -C/func/-/OpenComponentResFile -Objective-C/instm/IOBluetoothDevice/openConnection -Objective-C/instm/IOBluetoothDevice/openConnection: -Objective-C/instm/IOBluetoothDevice/openConnection:withPageTimeout:authenticationRequired: -C/tag/-/OpenCPicParams -JavaScript/instm/DOMWindow/openDatabase -JavaScript/instm/WorkerContext/openDatabase -JavaScript/instm/WorkerContext/openDatabaseSync -C/func/-/OpenDataBrowserContainer -C/func/-/OpenDefaultComponent -C/func/-/opendev -Objective-C/instm/IOBluetoothRFCOMMAudioController/openDeviceConnection -C/func/-/opendir -Objective-C/instm/NSDocumentController/openDocument: -Objective-C/instm/NSDocumentController/openDocumentWithContentsOfFile:display: -Objective-C/instm/NSDocumentController/openDocumentWithContentsOfURL:display: -Objective-C/instm/NSDocumentController/openDocumentWithContentsOfURL:display:error: -Objective-C/instm/AMAction/opened -JavaScript/clconst/XMLHttpRequest/OPENED -JavaScript/data/DOMWindow/opener -Objective-C/instm/NSWorkspace/openFile: -Objective-C/instm/NSWorkspace/openFile:fromImage:at:inView: -Objective-C/instm/NSWorkspace/openFile:withApplication: -Objective-C/instm/NSWorkspace/openFile:withApplication:andDeactivate: -Objective-C/instm/QCView/openGLContext -Objective-C/instm/NSOpenGLView/openGLContext -Objective-C/instp/NSOpenGLLayer/openGLContext -Objective-C/instm/NSOpenGLLayer/openGLContext -Objective-C/instm/NSOpenGLLayer/openGLContextForPixelFormat: -Objective-C/instm/QCView/openGLPixelFormat -Objective-C/instm/NSOpenGLLayer/openGLPixelFormat -Objective-C/instp/NSOpenGLLayer/openGLPixelFormat -Objective-C/instm/NSOpenGLLayer/openGLPixelFormatForDisplayMask: -Objective-C/clm/NSCursor/openHandCursor -Objective-C/instm/NSHelpManager/openHelpAnchor:inBook: -Objective-C/instm/IOBluetoothDevice/openL2CAPChannel:findExisting:newChannel: -Objective-C/instm/IOBluetoothDevice/openL2CAPChannelAsync:withPSM:delegate: -Objective-C/instm/IOBluetoothDevice/openL2CAPChannelAsync:withPSM:withConfiguration:delegate: -Objective-C/instm/IOBluetoothDevice/openL2CAPChannelSync:withPSM:delegate: -Objective-C/instm/IOBluetoothDevice/openL2CAPChannelSync:withPSM:withConfiguration:delegate: -C/func/-/openlog -C/func/-/OpenMPI -Objective-C/instm/NSDrawer/openOnEdge: -C/func/-/openpam -C/func/-/openpam_borrow_cred -C/func/-/openpam_free_data -C/func/-/openpam_free_envlist -C/func/-/openpam_get_option -C/func/-/openpam_log -C/func/-/openpam_nullconv -C/func/-/openpam_readline -C/func/-/openpam_restore_cred -C/func/-/openpam_set_option -C/func/-/openpam_ttyconv -Objective-C/clm/NSOpenPanel/openPanel -C++/instm/IOUSBController/OpenPipe -C++/instm/IOUSBControllerV2/OpenPipe -C/func/-/openpty -Objective-C/instm/IOBluetoothRFCOMMAudioController/openRFCOMMChannel -Objective-C/instm/IOBluetoothDevice/openRFCOMMChannel:channel: -Objective-C/instm/IOBluetoothDevice/openRFCOMMChannelAsync:withChannelID:delegate: -Objective-C/instm/IOBluetoothDevice/openRFCOMMChannelSync:withChannelID:delegate: -C/func/-/OpenRFPerm -Objective-C/instm/IOBluetoothRFCOMMAudioController/openSCOConnection -C/func/-/OpenSSL_add_all_algorithms -C/func/-/OpenSSL_add_all_ciphers -C/func/-/OpenSSL_add_all_digests -C/func/-/OpenSSL_add_ssl_algorithms -C/func/-/OPENSSL_Applink -C/func/-/OPENSSL_config -C/func/-/OPENSSL_ia32cap -C/func/-/OPENSSL_ia32cap_loc -C/func/-/OPENSSL_load_builtin_modules -C/func/-/OPENSSL_no_config -C/func/-/OPENSSL_VERSION_NUMBER -Objective-C/instm/NSWorkspace/openTempFile: -Objective-C/instm/OBEXSession/openTransportConnection:selectorTarget:refCon: -Objective-C/instm/IOBluetoothOBEXSession/openTransportConnection:selectorTarget:refCon: -Objective-C/instm/DRDevice/openTray -Objective-C/instm/NSDocumentController/openUntitledDocumentAndDisplay:error: -Objective-C/instm/NSDocumentController/openUntitledDocumentOfType:display: -Objective-C/instm/NSWorkspace/openURL: -Objective-C/instm/NSWorkspace/openURLs:withAppBundleIdentifier:options:additionalEventParamDescriptor:launchIdentifiers: -Objective-C/instm/NSExpression/operand -Objective-C/instm/NSProcessInfo/operatingSystem -Objective-C/instm/NSProcessInfo/operatingSystemName -Objective-C/instm/NSProcessInfo/operatingSystemVersionString -Objective-C/instm/NSOperationQueue/operationCount -Objective-C/clm/NSCursor/operationNotAllowedCursor -Objective-C/instp/ODQuery/operationQueue -Objective-C/instm/ODQuery/operationQueue -Objective-C/instm/NSOperationQueue/operations -JavaScript/data/WebKitCSSTransformValue/operationType -JavaScript/data/SVGFEMorphologyElement/operator -JavaScript/data/SVGFECompositeElement/operator -C++/cl/-/operator__Ffit_finder -C++/clm/OSObject/operator_delete -C++/clm/OSObject/operator_new -C/func/-/operator_rebind -Objective-C/instm/NSPredicateEditorRowTemplate/operators -Objective-C/instp/CWInterface/opMode -JavaScript/data/HTMLMeterElement/optimum -JavaScript/data/DOMWindow/Option -Objective-C/clm/WebHistory/optionalSharedHistory -Objective-C/instm/NSObject/optionDescriptionsForBinding: -Objective-C/instm/NSPredicateEditorRowTemplate/options -Objective-C/instm/NSTextTab/options -Objective-C/instm/NSPersistentStore/options -Objective-C/instm/NSPrintPanel/options -Objective-C/instm/NSComparisonPredicate/options -Objective-C/instm/NSTrackingArea/options -JavaScript/data/HTMLDataListElement/options -JavaScript/data/HTMLSelectElement/options -C/econst/-/opWrErr -Objective-C/clm/NSColor/orangeColor -Objective-C/instm/NSWindow/orderBack: -JavaScript/clconst/XPathResult/ORDERED_NODE_ITERATOR_TYPE -JavaScript/clconst/XPathResult/ORDERED_NODE_SNAPSHOT_TYPE -Objective-C/instm/NSApplication/orderedDocuments -Objective-C/instm/NSWindow/orderedIndex -Objective-C/instm/WebHistory/orderedItemsLastVisitedOnDay: -Objective-C/instm/WebHistory/orderedLastVisitedDays -Objective-C/instm/NSApplication/orderedWindows -Objective-C/instm/NSWindow/orderFront: -Objective-C/instm/NSApplication/orderFrontCharacterPalette: -Objective-C/instm/NSApplication/orderFrontColorPanel: -Objective-C/instm/NSFontManager/orderFrontFontPanel: -Objective-C/instm/NSTextView/orderFrontLinkPanel: -Objective-C/instm/NSTextView/orderFrontListPanel: -Objective-C/instm/NSWindow/orderFrontRegardless -Objective-C/instm/NSTextView/orderFrontSpacingPanel: -Objective-C/instm/NSApplication/orderFrontStandardAboutPanel: -Objective-C/instm/NSApplication/orderFrontStandardAboutPanelWithOptions: -Objective-C/instm/NSFontManager/orderFrontStylesPanel: -Objective-C/instm/NSTextView/orderFrontSubstitutionsPanel: -Objective-C/instm/NSTextView/orderFrontTablePanel: -C++/instm/OSOrderedSet/orderObject -Objective-C/instm/NSWindow/orderOut: -Objective-C/instm/NSWindow/orderWindow:relativeTo: -Objective-C/instm/NSCalendar/ordinalityOfUnit:inUnit:forDate: -JavaScript/data/OverflowEvent/orient -JavaScript/data/SVGMarkerElement/orientAngle -Objective-C/instm/NSRulerView/orientation -Objective-C/instm/NSPrintInfo/orientation -JavaScript/data/DOMWindow/orientation -JavaScript/data/SVGMarkerElement/orientType -Objective-C/instm/FxImage/origin -JavaScript/data/MessageEvent/origin -Objective-C/instm/NSObject/originalString: -Objective-C/instm/WebHistoryItem/originalURLString -Objective-C/instm/NSRulerView/originOffset -Objective-C/clm/NSCompoundPredicate/orPredicateWithSubpredicates: -Objective-C/instp/NSTextCheckingResult/orthography -Objective-C/instm/NSTextCheckingResult/orthography -Objective-C/clm/NSTextCheckingResult/orthographyCheckingResultWithRange:orthography: -Objective-C/clm/NSOrthography/orthographyWithDominantScript:languageMap: -C/macro/-/OS_ATOMIC_QUEUE_INIT -C/macro/-/OS_SPINLOCK_INIT -C/func/-/OSAddAtomic -C/func/-/OSAddAtomic16 -C/func/-/OSAddAtomic64 -C/func/-/OSAddAtomic8 -C++/cl/-/OSArray -C/func/-/OSAtomicAdd32 -C/func/-/OSAtomicAdd32Barrier -C/func/-/OSAtomicAdd64 -C/func/-/OSAtomicAdd64Barrier -C/func/-/OSAtomicAnd32 -C/func/-/OSAtomicAnd32Barrier -C/func/-/OSAtomicAnd32Orig -C/func/-/OSAtomicAnd32OrigBarrier -C/func/-/OSAtomicCompareAndSwap32 -C/func/-/OSAtomicCompareAndSwap32Barrier -C/func/-/OSAtomicCompareAndSwap64 -C/func/-/OSAtomicCompareAndSwap64Barrier -C/func/-/OSAtomicCompareAndSwapInt -C/func/-/OSAtomicCompareAndSwapIntBarrier -C/func/-/OSAtomicCompareAndSwapLong -C/func/-/OSAtomicCompareAndSwapLongBarrier -C/func/-/OSAtomicCompareAndSwapPtr -C/func/-/OSAtomicCompareAndSwapPtrBarrier -C/func/-/OSAtomicDecrement32 -C/func/-/OSAtomicDecrement32Barrier -C/func/-/OSAtomicDecrement64 -C/func/-/OSAtomicDecrement64Barrier -C/func/-/OSAtomicDequeue -C/func/-/OSAtomicEnqueue -C/func/-/OSAtomicIncrement32 -C/func/-/OSAtomicIncrement32Barrier -C/func/-/OSAtomicIncrement64 -C/func/-/OSAtomicIncrement64Barrier -C/func/-/OSAtomicOr32 -C/func/-/OSAtomicOr32Barrier -C/func/-/OSAtomicOr32Orig -C/func/-/OSAtomicOr32OrigBarrier -C/func/-/OSAtomicTestAndClear -C/func/-/OSAtomicTestAndClearBarrier -C/func/-/OSAtomicTestAndSet -C/func/-/OSAtomicTestAndSetBarrier -C/func/-/OSAtomicXor32 -C/func/-/OSAtomicXor32Barrier -C/func/-/OSAtomicXor32Orig -C/func/-/OSAtomicXor32OrigBarrier -C/func/-/OSBitAndAtomic -C/func/-/OSBitAndAtomic16 -C/func/-/OSBitAndAtomic8 -C/func/-/OSBitOrAtomic -C/func/-/OSBitOrAtomic16 -C/func/-/OSBitOrAtomic8 -C/func/-/OSBitXorAtomic -C/func/-/OSBitXorAtomic16 -C/func/-/OSBitXorAtomic8 -C++/cl/-/OSBoolean -C++/macro/-/OSCheckTypeInst -C++/cl/-/OSCollection -C++/cl/-/OSCollectionIterator -C/func/-/OSCompareAndSwap -C/func/-/OSCompareAndSwap64 -C/func/-/OSCompareAndSwapPtr -C++/cl/-/OSData -C++/macro/-/OSDeclareAbstractStructors -C++/macro/-/OSDeclareDefaultStructors -C++/macro/-/OSDeclareFinalStructors -C/func/-/OSDecrementAtomic -C/func/-/OSDecrementAtomic16 -C/func/OSAtomic.h/OSDecrementAtomic64 -C/func/-/OSDecrementAtomic8 -C++/macro/-/OSDefineMetaClassAndAbstractStructors -C++/macro/-/OSDefineMetaClassAndFinalStructors -C++/macro/-/OSDefineMetaClassAndStructors -C/func/-/OSDequeueAtomic -C++/cl/-/OSDictionary -C++/macro/-/OSDynamicCast -C/func/-/OSEnqueueAtomic -C/tdef/-/OSErr -C/func/-/OSFree -C/func/-/OSHostByteOrder -C/func/-/OSIncrementAtomic -C/func/-/OSIncrementAtomic16 -C/func/OSAtomic.h/OSIncrementAtomic64 -C/func/-/OSIncrementAtomic8 -C++/cl/-/OSIterator -C/func/-/OSKernelStackRemaining -C/func/-/OSKextCancelRequest -C/func/-/OSKextGetCurrentIdentifier -C/func/-/OSKextGetCurrentLoadTag -C/func/-/OSKextGetCurrentVersionString -C/func/-/OSKextLoadKextWithIdentifier -C/tdef/-/OSKextLoadTag -C/func/-/OSKextReleaseKextWithLoadTag -C/func/-/OSKextRequestResource -C/tdef/-/OSKextRequestResourceCallback -C/tdef/-/OSKextRequestTag -C/func/-/OSKextRetainKextWithLoadTag -C/macro/-/OSKextSymbolIsResolved -C/func/-/OSMalloc -C/func/-/OSMalloc_noblock -C/func/-/OSMalloc_nowait -C/func/-/OSMalloc_Tagalloc -C/func/-/OSMalloc_Tagfree -C/tdef/-/OSMallocTag -C/tdef/-/OSMallocTag_t -C++/macro/-/OSMemberFunctionCast -C/func/-/OSMemoryBarrier -C++/cl/-/OSMetaClass -C++/instm/OSMetaClass/OSMetaClass -C++/cl/-/OSMetaClassBase -C++/macro/-/OSMetaClassDeclareReservedUnused -C++/instm/IOEthernetController/OSMetaClassDeclareReservedUsed -C++/macro/-/OSMetaClassDeclareReservedUsed -C++/macro/-/OSMetaClassDefineReservedUnused -C++/macro/-/OSMetaClassDefineReservedUsed -C/macro/-/OSMT_DEFAULT -C/macro/-/OSMT_PAGEABLE -C++/cl/-/OSNumber -C++/cl/-/OSObject -C++/cl/-/OSOrderedSet -C++/tdef/OSOrderedSet/OSOrderFunction -C/tdef/-/OSQueueHead -C/macro/-/OSReadBigInt -C/macro/-/OSReadBigInt16 -C/macro/-/OSReadBigInt32 -C/macro/-/OSReadBigInt64 -C/macro/-/OSReadLittleInt -C/macro/-/OSReadLittleInt16 -C/macro/-/OSReadLittleInt32 -C/macro/-/OSReadLittleInt64 -C/tdef/-/OSReturn -C++/macro/-/OSSafeRelease -C++/macro/-/OSSafeReleaseNULL -C++/cl/-/OSSerialize -C++/cl/-/OSSet -C/tdef/-/OSSpinLock -C/func/-/OSSpinLockLock -C/func/-/OSSpinLockTry -C/func/-/OSSpinLockUnlock -C/tdef/-/OSStatus -C++/cl/-/OSString -C/macro/-/OSSwapBigToHostConstInt16 -C/macro/-/OSSwapBigToHostConstInt32 -C/macro/-/OSSwapBigToHostConstInt64 -C/macro/-/OSSwapBigToHostInt -C/macro/-/OSSwapBigToHostInt16 -C/macro/-/OSSwapBigToHostInt32 -C/macro/-/OSSwapBigToHostInt64 -C/macro/-/OSSwapConstInt16 -C/macro/-/OSSwapConstInt32 -C/macro/-/OSSwapConstInt64 -C/macro/-/OSSwapHostToBigConstInt16 -C/macro/-/OSSwapHostToBigConstInt32 -C/macro/-/OSSwapHostToBigConstInt64 -C/macro/-/OSSwapHostToBigInt -C/macro/-/OSSwapHostToBigInt16 -C/macro/-/OSSwapHostToBigInt32 -C/macro/-/OSSwapHostToBigInt64 -C/macro/-/OSSwapHostToLittleConstInt16 -C/macro/-/OSSwapHostToLittleConstInt32 -C/macro/-/OSSwapHostToLittleConstInt64 -C/macro/-/OSSwapHostToLittleInt -C/macro/-/OSSwapHostToLittleInt16 -C/macro/-/OSSwapHostToLittleInt32 -C/macro/-/OSSwapHostToLittleInt64 -C/macro/-/OSSwapLittleToHostConstInt16 -C/macro/-/OSSwapLittleToHostConstInt32 -C/macro/-/OSSwapLittleToHostConstInt64 -C/macro/-/OSSwapLittleToHostInt -C/macro/-/OSSwapLittleToHostInt16 -C/macro/-/OSSwapLittleToHostInt32 -C/macro/-/OSSwapLittleToHostInt64 -C++/cl/-/OSSymbol -C/func/OSAtomic.h/OSSynchronizeIO -C/func/-/OSTestAndClear -C/func/-/OSTestAndSet -C++/macro/-/OSTypeAlloc -C++/macro/-/OSTypeID -C++/macro/-/OSTypeIDInst -C/func/-/OSUnserializeXML -C/macro/-/OSWriteBigInt -C/macro/-/OSWriteBigInt16 -C/macro/-/OSWriteBigInt32 -C/macro/-/OSWriteBigInt64 -C/macro/-/OSWriteLittleInt -C/macro/-/OSWriteLittleInt16 -C/macro/-/OSWriteLittleInt32 -C/macro/-/OSWriteLittleInt64 -Objective-C/clm/NSEvent/otherEventWithType:location:modifierFlags:timestamp:windowNumber:context:subtype:data1:data2: -Objective-C/instm/NSResponder/otherMouseDown: -Objective-C/instm/NSResponder/otherMouseDragged: -Objective-C/instm/NSResponder/otherMouseUp: -JavaScript/clconst/WebGLRenderingContext/OUT_OF_MEMORY -Objective-C/instm/XGActionMonitor/outcome -JavaScript/data/DOMWindow/outerHeight -JavaScript/data/HTMLElement/outerHTML -JavaScript/data/HTMLElement/outerText -JavaScript/data/DOMWindow/outerWidth -Objective-C/instm/NSTextView/outline: -Objective-C/instm/PDFDocument/outlineItemForSelection: -Objective-C/instm/PDFDocument/outlineRoot -Objective-C/instm/NSOutlineView/outlineTableColumn -Objective-C/intfm/NSOutlineViewDataSource/outlineView:acceptDrop:item:childIndex: -Objective-C/intfm/NSOutlineViewDataSource/outlineView:child:ofItem: -Objective-C/intfm/NSOutlineViewDelegate/outlineView:dataCellForTableColumn:item: -Objective-C/intfm/NSOutlineViewDelegate/outlineView:didClickTableColumn: -Objective-C/intfm/NSOutlineViewDelegate/outlineView:didDragTableColumn: -Objective-C/intfm/NSOutlineViewDelegate/outlineView:heightOfRowByItem: -Objective-C/intfm/NSOutlineViewDelegate/outlineView:isGroupItem: -Objective-C/intfm/NSOutlineViewDataSource/outlineView:isItemExpandable: -Objective-C/intfm/NSOutlineViewDataSource/outlineView:itemForPersistentObject: -Objective-C/intfm/NSOutlineViewDelegate/outlineView:mouseDownInHeaderOfTableColumn: -Objective-C/intfm/NSOutlineViewDataSource/outlineView:namesOfPromisedFilesDroppedAtDestination:forDraggedItems: -Objective-C/intfm/NSOutlineViewDelegate/outlineView:nextTypeSelectMatchFromItem:toItem:forString: -Objective-C/intfm/NSOutlineViewDataSource/outlineView:numberOfChildrenOfItem: -Objective-C/intfm/NSOutlineViewDataSource/outlineView:objectValueForTableColumn:byItem: -Objective-C/intfm/NSOutlineViewDataSource/outlineView:persistentObjectForItem: -Objective-C/intfm/NSOutlineViewDelegate/outlineView:selectionIndexesForProposedSelection: -Objective-C/intfm/NSOutlineViewDataSource/outlineView:setObjectValue:forTableColumn:byItem: -Objective-C/intfm/NSOutlineViewDelegate/outlineView:shouldCollapseItem: -Objective-C/intfm/NSOutlineViewDelegate/outlineView:shouldEditTableColumn:item: -Objective-C/intfm/NSOutlineViewDelegate/outlineView:shouldExpandItem: -Objective-C/intfm/NSOutlineViewDelegate/outlineView:shouldReorderColumn:toColumn: -Objective-C/intfm/NSOutlineViewDelegate/outlineView:shouldSelectItem: -Objective-C/intfm/NSOutlineViewDelegate/outlineView:shouldSelectTableColumn: -Objective-C/intfm/NSOutlineViewDelegate/outlineView:shouldShowCellExpansionForTableColumn:item: -Objective-C/intfm/NSOutlineViewDelegate/outlineView:shouldShowOutlineCellForItem: -Objective-C/intfm/NSOutlineViewDelegate/outlineView:shouldTrackCell:forTableColumn:item: -Objective-C/intfm/NSOutlineViewDelegate/outlineView:shouldTypeSelectForEvent:withCurrentSearchString: -Objective-C/intfm/NSOutlineViewDelegate/outlineView:sizeToFitWidthOfColumn: -Objective-C/intfm/NSOutlineViewDataSource/outlineView:sortDescriptorsDidChange: -Objective-C/intfm/NSOutlineViewDelegate/outlineView:toolTipForCell:rect:tableColumn:item:mouseLocation: -Objective-C/intfm/NSOutlineViewDelegate/outlineView:typeSelectStringForTableColumn:item: -Objective-C/intfm/NSOutlineViewDataSource/outlineView:validateDrop:proposedItem:proposedChildIndex: -Objective-C/intfm/NSOutlineViewDelegate/outlineView:willDisplayCell:forTableColumn:item: -Objective-C/intfm/NSOutlineViewDelegate/outlineView:willDisplayOutlineCell:forTableColumn:item: -Objective-C/intfm/NSOutlineViewDataSource/outlineView:writeItems:toPasteboard: -Objective-C/instm/NSObject/outlineViewColumnDidMove: -Objective-C/instm/NSObject/outlineViewColumnDidResize: -Objective-C/instm/NSObject/outlineViewItemDidCollapse: -Objective-C/instm/NSObject/outlineViewItemDidExpand: -Objective-C/instm/NSObject/outlineViewItemWillCollapse: -Objective-C/instm/NSObject/outlineViewItemWillExpand: -Objective-C/instm/NSObject/outlineViewSelectionDidChange: -Objective-C/instm/NSObject/outlineViewSelectionIsChanging: -Objective-C/intfm/FxTimingAPI/outPointOfTimelineForEffect: -Objective-C/instm/AMAction/output -C++/instm/IOBasicOutputQueue/output -C++/instm/IOGatedOutputQueue/output -Objective-C/instm/QTCaptureDecompressedAudioOutput/outputAudioSampleBuffer:fromConnection: -C++/clm/IODMACommand/OutputBig32 -C++/clm/IODMACommand/OutputBig64 -C/tag/-/OutputCommands -Objective-C/instm/QTCaptureAudioPreviewOutput/outputDeviceUniqueID -Objective-C/instm/AMShellScriptAction/outputFieldSeparator -Objective-C/instm/QTCaptureFileOutput/outputFileURL -Objective-C/instm/NSKeyedArchiver/outputFormat -C/tag/-/OutputHandlerReturnCodes -C++/clm/IODMACommand/OutputHost32 -C++/clm/IODMACommand/OutputHost64 -Objective-C/instm/IKPictureTaker/outputImage -Objective-C/intfm/QCPlugInContext/outputImageProviderFromBufferWithPixelFormat:pixelsWide:pixelsHigh:baseAddress:bytesPerRow:releaseCallback:releaseContext:colorSpace:shouldColorMatch: -Objective-C/intfm/QCPlugInContext/outputImageProviderFromTextureWithPixelFormat:pixelsWide:pixelsHigh:name:flipped:releaseCallback:releaseContext:colorSpace:shouldColorMatch: -Objective-C/instm/QCComposition/outputKeys -Objective-C/instm/CIFilter/outputKeys -Objective-C/intfm/QCCompositionRenderer/outputKeys -C++/clm/IODMACommand/OutputLittle32 -C++/clm/IODMACommand/OutputLittle64 -C++/instm/IONetworkController/outputPacket -C/tag/-/OutputPacketStatus -Objective-C/instm/QTCaptureSession/outputs -C++/clm/IODBDMAMemoryCursor/outputSegment -C++/clm/IOBigMemoryCursor/outputSegment -C++/clm/IONaturalMemoryCursor/outputSegment -C++/clm/IOLittleMemoryCursor/outputSegment -C++/macro/-/OutputSegmentFunc -C++/data/IOAudioEngine/outputStreams -Objective-C/clm/NSOutputStream/outputStreamToBuffer:capacity: -Objective-C/clm/NSOutputStream/outputStreamToFileAtPath:append: -Objective-C/clm/NSOutputStream/outputStreamToMemory -Objective-C/clm/NSOutputStream/outputStreamWithURL:append: -Objective-C/instm/QTCaptureVideoPreviewOutput/outputVideoFrame:withSampleBuffer:fromConnection: -Objective-C/instm/QTCaptureDecompressedVideoOutput/outputVideoFrame:withSampleBuffer:fromConnection: -C++/data/IOMemoryCursor/outSeg -JavaScript/data/DOMWindow/OverflowEvent -JavaScript/cl/-/OverflowEvent -C/func/-/overlay -C/func/-/OverlayApplicationDockTileImage -Objective-C/instm/IKImageView/overlayForType: -JavaScript/instm/TestObj/overloadedMethod -Objective-C/intfm/IMKTextInput/overrideKeyboardWithKeyboardNamed: -JavaScript/instm/XMLHttpRequest/overrideMimeType -Objective-C/instm/IKScannerDeviceView/overviewControlLabel -Objective-C/instp/IKScannerDeviceView/overviewControlLabel -C/func/-/overwrite -Objective-C/instm/NSWindowController/owner -Objective-C/instm/QTCaptureConnection/owner -Objective-C/instm/NSDockTile/owner -Objective-C/instm/NSTrackingArea/owner -C++/data/IOEventSource/owner -JavaScript/data/core/ownerDocument -JavaScript/data/Attr/ownerElement -JavaScript/data/StyleSheet/ownerNode -JavaScript/data/CSSStyleSheet/ownerRule -JavaScript/data/SVGElement/ownerSVGElement -JavaScript/clconst/WebGLRenderingContext/PACK_ALIGNMENT --/writerid/-/packagemaker_user_guide -Objective-C/instm/NSNumberFormatter/paddingCharacter -Objective-C/instm/NSNumberFormatter/paddingPosition -Objective-C/instm/PDFDestination/page -Objective-C/instm/PDFAnnotation/page -JavaScript/clconst/CSSRule/PAGE_RULE -Objective-C/instm/PDFDocument/pageAtIndex: -Objective-C/instm/WebBackForwardList/pageCacheSize -Objective-C/instm/PDFDocument/pageClass -Objective-C/instm/NSPDFImageRep/pageCount -Objective-C/instm/PDFDocument/pageCount -Objective-C/instm/NSResponder/pageDown: -Objective-C/instm/NSResponder/pageDownAndModifySelection: -Objective-C/instm/NSView/pageFooter -Objective-C/instm/NSObject/pageFormat -Objective-C/instm/PDFView/pageForPoint:nearest: -Objective-C/instm/NSView/pageHeader -Objective-C/instm/PDFActionRemoteGoTo/pageIndex -Objective-C/clm/NSPageLayout/pageLayout -Objective-C/instm/NSPrintOperation/pageOrder -Objective-C/instm/NSPrintOperation/pageRange -Objective-C/instm/PDFSelection/pages -Objective-C/instm/NSScrollView/pageScroll -Objective-C/instm/NSPrinter/pageSizeForPaper: -Objective-C/instm/WebDataSource/pageTitle -JavaScript/data/DOMWindow/PageTransitionEvent -JavaScript/cl/-/PageTransitionEvent -Objective-C/instm/NSResponder/pageUp: -Objective-C/instm/NSResponder/pageUpAndModifySelection: -JavaScript/data/UIEvent/pageX -JavaScript/data/Touch/pageX -JavaScript/data/DOMWindow/pageXOffset -JavaScript/data/Touch/pageY -JavaScript/data/UIEvent/pageY -JavaScript/data/DOMWindow/pageYOffset -JavaScript/data/SVGPaint/paintType -C/func/-/pair_content -C/func/-/PAIR_NUMBER -Objective-C/clm/IOBluetoothDevice/pairedDevices -Objective-C/clm/IOBluetoothPairingController/pairingController -Objective-C/clm/IOBluetoothDevicePair/pairWithDevice: -Objective-C/clm/NSFont/paletteFontOfSize: -Objective-C/instm/NSToolbarItem/paletteLabel -C/func/-/pam -C/func/-/pam_acct_mgmt -C/func/-/pam_authenticate -C/func/-/pam_chauthtok -C/func/-/pam_close_session -C/func/-/pam_conv -C/func/-/pam_end -C/func/-/pam_error -C/func/-/pam_get_authtok -C/func/-/pam_get_data -C/func/-/pam_get_item -C/func/-/pam_get_user -C/func/-/pam_getenv -C/func/-/pam_getenvlist -C/func/-/pam_info -C/func/-/pam_open_session -C/func/-/pam_prompt -C/func/-/pam_putenv -C/func/-/pam_set_data -C/func/-/pam_set_item -C/func/-/pam_setcred -C/func/-/pam_setenv -C/func/-/pam_sm_acct_mgmt -C/func/-/pam_sm_authenticate -C/func/-/pam_sm_chauthtok -C/func/-/pam_sm_close_session -C/func/-/pam_sm_open_session -C/func/-/pam_sm_setcred -C/func/-/pam_start -C/func/-/pam_strerror -C/func/-/pam_verror -C/func/-/pam_vinfo -C/func/-/pam_vprompt -C/func/-/panel -Objective-C/instm/NSObject/panel:compareFilename:with:caseSensitive: -Objective-C/intfm/NSOpenSavePanelDelegate/panel:didChangeToDirectoryURL: -Objective-C/instm/NSObject/panel:directoryDidChange: -Objective-C/instm/NSObject/panel:isValidFilename: -Objective-C/intfm/NSOpenSavePanelDelegate/panel:shouldEnableURL: -Objective-C/instm/NSObject/panel:shouldShowFilename: -Objective-C/intfm/NSOpenSavePanelDelegate/panel:userEnteredFilename:confirmed: -Objective-C/intfm/NSOpenSavePanelDelegate/panel:validateURL:error: -Objective-C/intfm/NSOpenSavePanelDelegate/panel:willExpand: -Objective-C/instm/NSFontPanel/panelConvertFont: -Objective-C/instm/NSObject/panelKind -Objective-C/instm/NSObject/panelName -Objective-C/intfm/NSOpenSavePanelDelegate/panelSelectionDidChange: -Objective-C/instm/IMKCandidates/panelType -Objective-C/instm/NSObject/panelView -Objective-C/instm/NSObject/panelViewDidResize -Objective-C/instm/NSPrintInfo/paperName -Objective-C/instm/NSPrintInfo/paperSize -Objective-C/instm/NSTypesetter/paragraphCharacterRange -Objective-C/instm/NSATSTypesetter/paragraphGlyphRange -Objective-C/instm/NSTypesetter/paragraphGlyphRange -Objective-C/instm/NSString/paragraphRangeForRange: -Objective-C/instm/NSTextStorage/paragraphs -Objective-C/instm/NSTypesetter/paragraphSeparatorCharacterRange -Objective-C/instm/NSATSTypesetter/paragraphSeparatorGlyphRange -Objective-C/instm/NSTypesetter/paragraphSeparatorGlyphRange -Objective-C/instm/NSParagraphStyle/paragraphSpacing -Objective-C/instm/NSATSTypesetter/paragraphSpacingAfterGlyphAtIndex:withProposedLineFragmentRect: -Objective-C/instm/NSTypesetter/paragraphSpacingAfterGlyphAtIndex:withProposedLineFragmentRect: -Objective-C/instm/NSParagraphStyle/paragraphSpacingBefore -Objective-C/instm/NSATSTypesetter/paragraphSpacingBeforeGlyphAtIndex:withProposedLineFragmentRect: -Objective-C/instm/NSTypesetter/paragraphSpacingBeforeGlyphAtIndex:withProposedLineFragmentRect: -C/tdef/-/ParamBlockRec -Objective-C/instm/NSAppleEventDescriptor/paramDescriptorForKeyword: -C/econst/-/paramErr -Objective-C/intfm/FxBaseEffect/parameterChanged: -Objective-C/instm/FxHostCapabilities/parameterChangedUsableForAllParameters -C/tdef/-/ParameterEvent -Objective-C/instm/AMBundleAction/parameters -Objective-C/instm/XGActionMonitor/parameters -Objective-C/instm/NSURL/parameterString -Objective-C/instm/AMAction/parametersUpdated -C/tdef/-/paramValue -Objective-C/instm/PDFOutline/parent -Objective-C/instm/DRFSObject/parent -Objective-C/instm/NSXMLNode/parent -JavaScript/data/DOMWindow/parent -C/func/-/parentCurrentPowerFlags -JavaScript/data/core/parentElement -Objective-C/instm/NSOutlineView/parentForItem: -Objective-C/instm/NSBrowser/parentForItemsInColumn: -Objective-C/instm/WebFrame/parentFrame -Objective-C/instm/ABGroup/parentGroups -Objective-C/instm/ABPerson/parentGroups -Objective-C/instm/PDFAnnotationButtonWidget/parentID -Objective-C/instm/NSMenuItem/parentItem -C/func/-/parentKnowsState -Objective-C/instm/NSTreeNode/parentNode -JavaScript/data/svg/parentNode -JavaScript/data/core/parentNode -JavaScript/instm/TreeWalker/parentNode -Objective-C/instm/IBDocument/parentOfObject: -Objective-C/instm/NSRuleEditor/parentRowForRow: -JavaScript/data/CSSRule/parentRule -JavaScript/data/CSSStyleDeclaration/parentRule -JavaScript/data/CSSVariablesDeclaration/parentRule -JavaScript/data/CSSRule/parentStyleSheet -JavaScript/data/StyleSheet/parentStyleSheet -Objective-C/instm/NSDrawer/parentWindow -Objective-C/instm/NSWindow/parentWindow -Objective-C/instm/NSXMLParser/parse -JavaScript/instm/DOMParser/parseFromString -Objective-C/intfm/NSXMLParserDelegate/parser:didEndElement:namespaceURI:qualifiedName: -Objective-C/intfm/NSXMLParserDelegate/parser:didEndMappingPrefix: -Objective-C/intfm/NSXMLParserDelegate/parser:didStartElement:namespaceURI:qualifiedName:attributes: -Objective-C/intfm/NSXMLParserDelegate/parser:didStartMappingPrefix:toURI: -Objective-C/intfm/NSXMLParserDelegate/parser:foundAttributeDeclarationWithName:forElement:type:defaultValue: -Objective-C/intfm/NSXMLParserDelegate/parser:foundCDATA: -Objective-C/intfm/NSXMLParserDelegate/parser:foundCharacters: -Objective-C/intfm/NSXMLParserDelegate/parser:foundComment: -Objective-C/intfm/NSXMLParserDelegate/parser:foundElementDeclarationWithName:model: -Objective-C/intfm/NSXMLParserDelegate/parser:foundExternalEntityDeclarationWithName:publicID:systemID: -Objective-C/intfm/NSXMLParserDelegate/parser:foundIgnorableWhitespace: -Objective-C/intfm/NSXMLParserDelegate/parser:foundInternalEntityDeclarationWithName:value: -Objective-C/intfm/NSXMLParserDelegate/parser:foundNotationDeclarationWithName:publicID:systemID: -Objective-C/intfm/NSXMLParserDelegate/parser:foundProcessingInstructionWithTarget:data: -Objective-C/intfm/NSXMLParserDelegate/parser:foundUnparsedEntityDeclarationWithName:publicID:systemID:notationName: -Objective-C/intfm/NSXMLParserDelegate/parser:parseErrorOccurred: -Objective-C/intfm/NSXMLParserDelegate/parser:resolveExternalEntityName:systemID: -Objective-C/intfm/NSXMLParserDelegate/parser:validationErrorOccurred: -Objective-C/intfm/NSXMLParserDelegate/parserDidEndDocument: -Objective-C/intfm/NSXMLParserDelegate/parserDidStartDocument: -Objective-C/instm/NSXMLParser/parserError -Objective-C/instp/CWWirelessProfile/passphrase -Objective-C/instm/NSURLCredential/password -Objective-C/instp/CW8021XProfile/password -Objective-C/instm/NSURL/password -Objective-C/instm/ODRecord/passwordPolicyAndReturnError: -Objective-C/instm/QTMovieView/paste: -Objective-C/instm/WebView/paste: -Objective-C/instm/NSText/paste: -Objective-C/instm/NSTextView/pasteAsPlainText: -Objective-C/instm/WebView/pasteAsPlainText: -Objective-C/instm/NSTextView/pasteAsRichText: -Objective-C/instm/WebView/pasteAsRichText: -Objective-C/intfm/NSPasteboardItemDataProvider/pasteboard:item:provideDataForType: -Objective-C/instm/NSObject/pasteboard:provideDataForType: -Objective-C/clm/NSPasteboard/pasteboardByFilteringData:ofType: -Objective-C/clm/NSPasteboard/pasteboardByFilteringFile: -Objective-C/clm/NSPasteboard/pasteboardByFilteringTypesInPasteboard: -Objective-C/instm/NSObject/pasteboardChangedOwner: -C/func/-/PasteboardClear -C/func/-/PasteboardCopyItemFlavorData -C/func/-/PasteboardCopyItemFlavors -C/func/-/PasteboardCopyName -C/func/-/PasteboardCopyPasteLocation -C/func/-/PasteboardCreate -Objective-C/intfm/NSPasteboardItemDataProvider/pasteboardFinishedWithDataProvider: -C/tdef/-/PasteboardFlavorFlags -C/func/-/PasteboardGetItemCount -C/func/-/PasteboardGetItemFlavorFlags -C/func/-/PasteboardGetItemIdentifier -C/tdef/-/PasteboardItemID -Objective-C/instm/NSPasteboard/pasteboardItems -Objective-C/instm/IBPlugin/pasteboardObjectsForDraggedLibraryView: -C/tdef/-/PasteboardPromiseKeeperProcPtr -Objective-C/intfm/NSPasteboardWriting/pasteboardPropertyListForType: -C/func/-/PasteboardPutItemFlavor -C/tdef/-/PasteboardRef -C/func/-/PasteboardResolvePromises -C/func/-/PasteboardSetPasteLocation -C/func/-/PasteboardSetPromiseKeeper -C/tdef/-/PasteboardSyncFlags -C/func/-/PasteboardSynchronize -Objective-C/instm/WebView/pasteboardTypesForElement: -Objective-C/instm/WebView/pasteboardTypesForSelection -Objective-C/clm/NSPasteboard/pasteboardWithName: -Objective-C/clm/NSPasteboard/pasteboardWithUniqueName -Objective-C/instm/WebView/pasteFont: -Objective-C/instm/NSText/pasteFont: -C/func/-/PasteHandleIntoMovie -C/func/-/PasteMovieSelection -Objective-C/instm/NSText/pasteRuler: -C/econst/-/patBic -Objective-C/binding/QCView/patch -C/econst/-/patCopy -Objective-C/instm/NSBrowser/path -Objective-C/instm/XGFile/path -Objective-C/instm/NSHTTPCookie/path -Objective-C/instm/CAShapeLayer/path -Objective-C/instp/CAShapeLayer/path -Objective-C/binding/AMPathPopUpButton/path -Objective-C/instm/NSURL/path -Objective-C/instm/CAKeyframeAnimation/path -Objective-C/instp/CAKeyframeAnimation/path -Objective-C/intfm/NSPathCellDelegate/pathCell:willDisplayOpenPanel: -Objective-C/intfm/NSPathCellDelegate/pathCell:willPopUpMenu: -Objective-C/instm/NSPathCell/pathComponentCellAtPoint:withFrame:inView: -Objective-C/clm/NSPathCell/pathComponentCellClass -Objective-C/instm/NSPathCell/pathComponentCells -Objective-C/instm/NSPathControl/pathComponentCells -Objective-C/instm/NSString/pathComponents -Objective-C/instm/NSURL/pathComponents -C/func/-/pathconf -Objective-C/instm/NSFileManager/pathContentOfSymbolicLinkAtPath: -Objective-C/intfm/NSPathControlDelegate/pathControl:acceptDrop: -Objective-C/intfm/NSPathControlDelegate/pathControl:shouldDragPathComponentCell:withPasteboard: -Objective-C/intfm/NSPathControlDelegate/pathControl:validateDrop: -Objective-C/intfm/NSPathControlDelegate/pathControl:willDisplayOpenPanel: -Objective-C/intfm/NSPathControlDelegate/pathControl:willPopUpMenu: -Objective-C/instm/NSString/pathExtension -Objective-C/instm/NSURL/pathExtension -Objective-C/instm/NSBundle/pathForAuxiliaryExecutable: -Objective-C/instm/NSBundle/pathForImageResource: -Objective-C/instm/NSBundle/pathForResource:ofType: -Objective-C/clm/NSBundle/pathForResource:ofType:inDirectory: -Objective-C/instm/NSBundle/pathForResource:ofType:inDirectory: -Objective-C/instm/NSBundle/pathForResource:ofType:inDirectory:forLocalization: -Objective-C/instm/NSBundle/pathForSoundResource: -JavaScript/data/SVGPathElement/pathLength -JavaScript/data/HTMLAnchorElement/pathname -JavaScript/data/HTMLAreaElement/pathname -JavaScript/data/window/pathname -JavaScript/data/WorkerLocation/pathname -Objective-C/intfm/ApertureEditManager/pathOfEditableFileForVersion: -Objective-C/instm/PDFAnnotationInk/paths -JavaScript/clconst/SVGPathSeg/PATHSEG_ARC_ABS -JavaScript/clconst/SVGPathSeg/PATHSEG_ARC_REL -JavaScript/clconst/SVGPathSeg/PATHSEG_CLOSEPATH -JavaScript/clconst/SVGPathSeg/PATHSEG_CURVETO_CUBIC_ABS -JavaScript/clconst/SVGPathSeg/PATHSEG_CURVETO_CUBIC_REL -JavaScript/clconst/SVGPathSeg/PATHSEG_CURVETO_CUBIC_SMOOTH_ABS -JavaScript/clconst/SVGPathSeg/PATHSEG_CURVETO_CUBIC_SMOOTH_REL -JavaScript/clconst/SVGPathSeg/PATHSEG_CURVETO_QUADRATIC_ABS -JavaScript/clconst/SVGPathSeg/PATHSEG_CURVETO_QUADRATIC_REL -JavaScript/clconst/SVGPathSeg/PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS -JavaScript/clconst/SVGPathSeg/PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL -JavaScript/clconst/SVGPathSeg/PATHSEG_LINETO_ABS -JavaScript/clconst/SVGPathSeg/PATHSEG_LINETO_HORIZONTAL_ABS -JavaScript/clconst/SVGPathSeg/PATHSEG_LINETO_HORIZONTAL_REL -JavaScript/clconst/SVGPathSeg/PATHSEG_LINETO_REL -JavaScript/clconst/SVGPathSeg/PATHSEG_LINETO_VERTICAL_ABS -JavaScript/clconst/SVGPathSeg/PATHSEG_LINETO_VERTICAL_REL -JavaScript/clconst/SVGPathSeg/PATHSEG_MOVETO_ABS -JavaScript/clconst/SVGPathSeg/PATHSEG_MOVETO_REL -JavaScript/clconst/SVGPathSeg/PATHSEG_UNKNOWN -JavaScript/data/SVGAnimatedPathData/pathSegList -JavaScript/data/SVGPathSeg/pathSegType -JavaScript/data/SVGPathSeg/pathSegTypeAsLetter -Objective-C/instm/NSBrowser/pathSeparator -Objective-C/instm/NSBundle/pathsForResourcesOfType:inDirectory: -Objective-C/clm/NSBundle/pathsForResourcesOfType:inDirectory: -Objective-C/instm/NSBundle/pathsForResourcesOfType:inDirectory:forLocalization: -Objective-C/instm/NSArray/pathsMatchingExtensions: -Objective-C/instm/NSPathCell/pathStyle -Objective-C/instm/NSPathControl/pathStyle -Objective-C/instm/NSBrowser/pathToColumn: -Objective-C/clm/NSString/pathWithComponents: -C/econst/-/patOr -JavaScript/data/HTMLInputElement/pattern -JavaScript/data/SVGPatternElement/patternContentUnits -Objective-C/instm/NSColor/patternImage -JavaScript/data/ValidityState/patternMismatch -Objective-C/instm/NSGraphicsContext/patternPhase -JavaScript/data/SVGPatternElement/patternTransform -JavaScript/data/SVGPatternElement/patternUnits -C/econst/-/patXor -Objective-C/instm/NSSound/pause -C/func/-/pause -JavaScript/instm/HTMLMediaElement/pause -Objective-C/instm/QTMovieView/pause: -JavaScript/instm/SVGSVGElement/pauseAnimations -JavaScript/data/HTMLMediaElement/paused -JavaScript/instm/InspectorBackend/pauseInDebugger -Objective-C/instm/QTCaptureFileOutput/pauseRecording -Objective-C/instm/QCView/pauseRendering -Objective-C/instm/NSSpeechSynthesizer/pauseSpeakingAtBoundary: -C/func/-/PauseSpeechAt -C/func/-/PBAllocateAsync -C/func/-/PBAllocateForkAsync -C/func/-/PBAllocateForkSync -C/func/-/PBAllocateSync -C/func/-/PBAllocContigAsync -C/func/-/PBAllocContigSync -C/func/-/PBCatalogSearchAsync -C/func/-/PBCatalogSearchSync -C/func/-/PBCatMoveAsync -C/func/-/PBCatMoveSync -C/func/-/PBCatSearchAsync -C/func/-/PBCatSearchSync -C/func/-/PBCloseAsync -C/func/-/PBCloseForkAsync -C/func/-/PBCloseForkSync -C/func/-/PBCloseIteratorAsync -C/func/-/PBCloseIteratorSync -C/func/-/PBCloseSync -C/func/-/PBCompareFSRefsAsync -C/func/-/PBCompareFSRefsSync -C/func/-/PBCreateDirectoryUnicodeAsync -C/func/-/PBCreateDirectoryUnicodeSync -C/func/-/PBCreateFileIDRefAsync -C/func/-/PBCreateFileIDRefSync -C/func/-/PBCreateFileUnicodeAsync -C/func/-/PBCreateFileUnicodeSync -C/func/-/PBCreateForkAsync -C/func/-/PBCreateForkSync -C/func/-/PBDeleteFileIDRefAsync -C/func/-/PBDeleteFileIDRefSync -C/func/-/PBDeleteForkAsync -C/func/-/PBDeleteForkSync -C/func/-/PBDeleteObjectAsync -C/func/-/PBDeleteObjectSync -C/func/-/PBDirCreateAsync -C/func/-/PBDirCreateSync -C/func/-/PBDTAddAPPLAsync -C/func/-/PBDTAddAPPLSync -C/func/-/PBDTAddIconAsync -C/func/-/PBDTAddIconSync -C/func/-/PBDTCloseDown -C/func/-/PBDTDeleteAsync -C/func/-/PBDTDeleteSync -C/func/-/PBDTFlushAsync -C/func/-/PBDTFlushSync -C/func/-/PBDTGetAPPLAsync -C/func/-/PBDTGetAPPLSync -C/func/-/PBDTGetCommentAsync -C/func/-/PBDTGetCommentSync -C/func/-/PBDTGetIconAsync -C/func/-/PBDTGetIconInfoAsync -C/func/-/PBDTGetIconInfoSync -C/func/-/PBDTGetIconSync -C/func/-/PBDTGetInfoAsync -C/func/-/PBDTGetInfoSync -C/func/-/PBDTGetPath -C/func/-/PBDTOpenInform -C/func/-/PBDTRemoveAPPLAsync -C/func/-/PBDTRemoveAPPLSync -C/func/-/PBDTRemoveCommentAsync -C/func/-/PBDTRemoveCommentSync -C/func/-/PBDTResetAsync -C/func/-/PBDTResetSync -C/func/-/PBDTSetCommentAsync -C/func/-/PBDTSetCommentSync -C/func/-/PBExchangeFilesAsync -C/func/-/PBExchangeFilesSync -C/func/-/PBExchangeObjectsAsync -C/func/-/PBExchangeObjectsSync -C/func/-/PBFlushFileAsync -C/func/-/PBFlushFileSync -C/func/-/PBFlushForkAsync -C/func/-/PBFlushForkSync -C/func/-/PBFlushVolAsync -C/func/-/PBFlushVolSync -C/func/-/PBFlushVolumeAsync -C/func/-/PBFlushVolumeSync -C/func/-/PBFSCopyFileAsync -C/func/-/PBFSCopyFileSync -C/func/-/PBGetCatalogInfoAsync -C/func/-/PBGetCatalogInfoBulkAsync -C/func/-/PBGetCatalogInfoBulkSync -C/func/-/PBGetCatalogInfoSync -C/func/-/PBGetCatInfoAsync -C/func/-/PBGetCatInfoSync -C/func/-/PBGetEOFAsync -C/func/-/PBGetEOFSync -C/func/-/PBGetFCBInfoAsync -C/func/-/PBGetFCBInfoSync -C/func/-/PBGetForeignPrivsAsync -C/func/-/PBGetForeignPrivsSync -C/func/-/PBGetForkCBInfoAsync -C/func/-/PBGetForkCBInfoSync -C/func/-/PBGetForkPositionAsync -C/func/-/PBGetForkPositionSync -C/func/-/PBGetForkSizeAsync -C/func/-/PBGetForkSizeSync -C/func/-/PBGetFPosAsync -C/func/-/PBGetFPosSync -C/func/-/PBGetUGEntryAsync -C/func/-/PBGetUGEntrySync -C/func/-/PBGetVolMountInfo -C/func/-/PBGetVolMountInfoSize -C/func/-/PBGetVolumeInfoAsync -C/func/-/PBGetVolumeInfoSync -C/func/-/PBGetXCatInfoAsync -C/func/-/PBGetXCatInfoSync -C/func/-/PBHCopyFileAsync -C/func/-/PBHCopyFileSync -C/func/-/PBHCreateAsync -C/func/-/PBHCreateSync -C/func/-/PBHDeleteAsync -C/func/-/PBHDeleteSync -C/func/-/PBHGetDirAccessAsync -C/func/-/PBHGetDirAccessSync -C/func/-/PBHGetFInfoAsync -C/func/-/PBHGetFInfoSync -C/func/-/PBHGetLogInInfoAsync -C/func/-/PBHGetLogInInfoSync -C/func/-/PBHGetVInfoAsync -C/func/-/PBHGetVInfoSync -C/func/-/PBHGetVolAsync -C/func/-/PBHGetVolParmsAsync -C/func/-/PBHGetVolParmsSync -C/func/-/PBHGetVolSync -C/func/-/PBHMapIDAsync -C/func/-/PBHMapIDSync -C/func/-/PBHMapNameAsync -C/func/-/PBHMapNameSync -C/func/-/PBHMoveRenameAsync -C/func/-/PBHMoveRenameSync -C/func/-/PBHOpenAsync -C/func/-/PBHOpenDenyAsync -C/func/-/PBHOpenDenySync -C/func/-/PBHOpenDFAsync -C/func/-/PBHOpenDFSync -C/func/-/PBHOpenRFAsync -C/func/-/PBHOpenRFDenyAsync -C/func/-/PBHOpenRFDenySync -C/func/-/PBHOpenRFSync -C/func/-/PBHOpenSync -C/func/-/PBHRenameAsync -C/func/-/PBHRenameSync -C/func/-/PBHRstFLockAsync -C/func/-/PBHRstFLockSync -C/func/-/PBHSetDirAccessAsync -C/func/-/PBHSetDirAccessSync -C/func/-/PBHSetFInfoAsync -C/func/-/PBHSetFInfoSync -C/func/-/PBHSetFLockAsync -C/func/-/PBHSetFLockSync -C/func/-/PBHSetVolAsync -C/func/-/PBHSetVolSync -C/func/-/PBIterateForksAsync -C/func/-/PBIterateForksSync -C/func/-/PBLockRangeAsync -C/func/-/PBLockRangeSync -C/func/-/PBMakeFSRefAsync -C/func/-/PBMakeFSRefSync -C/func/-/PBMakeFSRefUnicodeAsync -C/func/-/PBMakeFSRefUnicodeSync -C/func/-/PBMakeFSSpecAsync -C/func/-/PBMakeFSSpecSync -C/func/-/PBMoveObjectAsync -C/func/-/PBMoveObjectSync -C/func/-/PBOpenForkAsync -C/func/-/PBOpenForkSync -C/func/-/PBOpenIteratorAsync -C/func/-/PBOpenIteratorSync -C/func/-/PBReadAsync -C/func/-/PBReadForkAsync -C/func/-/PBReadForkSync -C/func/-/PBReadSync -C/func/-/PBRenameUnicodeAsync -C/func/-/PBRenameUnicodeSync -C/func/-/PBResolveFileIDRefAsync -C/func/-/PBResolveFileIDRefSync -C/func/-/PBSetCatalogInfoAsync -C/func/-/PBSetCatalogInfoSync -C/func/-/PBSetCatInfoAsync -C/func/-/PBSetCatInfoSync -C/func/-/PBSetEOFAsync -C/func/-/PBSetEOFSync -C/func/-/PBSetForeignPrivsAsync -C/func/-/PBSetForeignPrivsSync -C/func/-/PBSetForkPositionAsync -C/func/-/PBSetForkPositionSync -C/func/-/PBSetForkSizeAsync -C/func/-/PBSetForkSizeSync -C/func/-/PBSetFPosAsync -C/func/-/PBSetFPosSync -C/func/-/PBSetVInfoAsync -C/func/-/PBSetVInfoSync -C/func/-/PBSetVolumeInfoAsync -C/func/-/PBSetVolumeInfoSync -C/func/-/PBShareAsync -C/func/-/PBShareSync -C/func/-/PBUnlockRangeAsync -C/func/-/PBUnlockRangeSync -C/func/-/PBUnmountVol -C/func/-/PBUnshareAsync -C/func/-/PBUnshareSync -C/func/-/PBVolumeMount -C/func/-/PBWaitIOComplete -C/func/-/PBWriteAsync -C/func/-/PBWriteForkAsync -C/func/-/PBWriteForkSync -C/func/-/PBWriteSync -C/func/-/PBXGetVolInfoAsync -C/func/-/PBXGetVolInfoSync -C/func/-/PBXLockRangeAsync -C/func/-/PBXLockRangeSync -C/func/-/PBXUnlockRangeAsync -C/func/-/PBXUnlockRangeSync -C/func/-/pcap -C/func/-/pcap_activate -C/func/-/pcap_breakloop -C/func/-/pcap_can_set_rfmon -C/func/-/pcap_close -C/func/-/pcap_compile -C/func/-/pcap_create -C/func/-/pcap_datalink -C/func/-/pcap_datalink_name_to_val -C/func/-/pcap_datalink_val_to_description -C/func/-/pcap_datalink_val_to_name -C/func/-/pcap_dispatch -C/func/-/pcap_dump -C/func/-/pcap_dump_close -C/func/-/pcap_dump_file -C/func/-/pcap_dump_flush -C/func/-/pcap_dump_fopen -C/func/-/pcap_dump_ftell -C/func/-/pcap_dump_open -C/func/-/pcap_file -C/func/-/pcap_fileno -C/func/-/pcap_findalldevs -C/func/-/pcap_fopen_offline -C/func/-/pcap_free_datalinks -C/func/-/pcap_freealldevs -C/func/-/pcap_freecode -C/func/-/pcap_get_selectable_fd -C/func/-/pcap_geterr -C/func/-/pcap_getnonblock -C/func/-/pcap_inject -C/func/-/pcap_is_swapped -C/func/-/pcap_lib_version -C/func/-/pcap_list_datalinks -C/func/-/pcap_lookupdev -C/func/-/pcap_lookupnet -C/func/-/pcap_loop -C/func/-/pcap_major_version -C/func/-/pcap_minor_version -C/func/-/pcap_next -C/func/-/pcap_next_ex -C/func/-/pcap_offline_filter -C/func/-/pcap_open_dead -C/func/-/pcap_open_live -C/func/-/pcap_open_offline -C/func/-/pcap_perror -C/func/-/pcap_sendpacket -C/func/-/pcap_set_buffer_size -C/func/-/pcap_set_datalink -C/func/-/pcap_set_promisc -C/func/-/pcap_set_rfmon -C/func/-/pcap_set_snaplen -C/func/-/pcap_set_timeout -C/func/-/pcap_setdirection -C/func/-/pcap_setfilter -C/func/-/pcap_setnonblock -C/func/-/pcap_snapshot -C/func/-/pcap_stats -C/func/-/pcap_statustostr -C/func/-/pcap_strerror -C/func/-/pclose -C/econst/-/pdActionCompactSample -C/econst/-/pdActionConvertSettingsToText -C/econst/-/pdActionConvertSettingsToXML -C/econst/-/pdActionConvertSettingsToXMLWithComments -C/econst/-/pdActionConvertXMLToSettings -C/econst/-/pdActionCustomDisposeControl -C/econst/-/pdActionCustomDoEditCommand -C/econst/-/pdActionCustomGetEnableValue -C/econst/-/pdActionCustomGetValue -C/econst/-/pdActionCustomHandleEvent -C/econst/-/pdActionCustomNewControl -C/econst/-/pdActionCustomPositionControl -C/econst/-/pdActionCustomSetEditCallout -C/econst/-/pdActionCustomSetEditMenu -C/econst/-/pdActionCustomSetFocus -C/econst/-/pdActionCustomSetPreviewPicture -C/econst/-/pdActionCustomSetSampleTime -C/econst/-/pdActionCustomShowHideControl -C/econst/-/pdActionDoEditCommand -C/econst/-/pdActionFetchPreview -C/econst/-/pdActionGetDialogSettings -C/econst/-/pdActionGetNextSample -C/econst/-/pdActionGetPreviousSample -C/econst/-/pdActionGetSubPanelMenuValue -C/econst/-/pdActionModelessCallback -C/econst/-/pdActionRunInEventLoop -C/econst/-/pdActionSetDialogSettings -C/econst/-/pdActionSetEditCallout -C/econst/-/pdActionSetPropertyComponent -C/econst/-/pdActionSetSampleTime -Objective-C/cat/-/PDEPanel -Objective-C/instm/NSObject/PDEPanelsForType:withHostInfo: -Objective-C/cat/-/PDEPlugIn -Objective-C/cat/-/PDEPlugInCallbackProtocol -Objective-C/cl/-/PDFAction -Objective-C/cl/-/PDFActionGoTo -Objective-C/cl/-/PDFActionNamed -Objective-C/cl/-/PDFActionRemoteGoTo -Objective-C/cl/-/PDFActionResetForm -Objective-C/cl/-/PDFActionURL -Objective-C/cl/-/PDFAnnotation -Objective-C/cl/-/PDFAnnotationButtonWidget -Objective-C/cl/-/PDFAnnotationChoiceWidget -Objective-C/cl/-/PDFAnnotationCircle -Objective-C/cl/-/PDFAnnotationFreeText -Objective-C/cl/-/PDFAnnotationInk -Objective-C/cl/-/PDFAnnotationLine -Objective-C/cl/-/PDFAnnotationLink -Objective-C/cl/-/PDFAnnotationMarkup -Objective-C/cl/-/PDFAnnotationPopup -Objective-C/cl/-/PDFAnnotationSquare -Objective-C/cl/-/PDFAnnotationStamp -Objective-C/cl/-/PDFAnnotationText -Objective-C/cl/-/PDFAnnotationTextWidget -Objective-C/cl/-/PDFBorder -Objective-C/cl/-/PDFDestination -Objective-C/cl/-/PDFDocument -C/data/-/PDFDocumentAuthorAttribute -C/data/-/PDFDocumentCreationDateAttribute -C/data/-/PDFDocumentCreatorAttribute -C/data/-/PDFDocumentDidBeginFindNotification -C/data/-/PDFDocumentDidBeginPageFindNotification -C/data/-/PDFDocumentDidBeginPageWriteNotification -C/data/-/PDFDocumentDidBeginWriteNotification -C/data/-/PDFDocumentDidEndFindNotification -C/data/-/PDFDocumentDidEndPageFindNotification -C/data/-/PDFDocumentDidEndPageWriteNotification -C/data/-/PDFDocumentDidEndWriteNotification -C/data/-/PDFDocumentDidFindMatchNotification -C/data/-/PDFDocumentDidUnlockNotification -C/data/-/PDFDocumentKeywordsAttribute -C/data/-/PDFDocumentModificationDateAttribute -C/data/-/PDFDocumentProducerAttribute -C/data/-/PDFDocumentSubjectAttribute -C/data/-/PDFDocumentTitleAttribute -Objective-C/clm/NSPrintOperation/PDFOperationWithView:insideRect:toData: -Objective-C/clm/NSPrintOperation/PDFOperationWithView:insideRect:toData:printInfo: -Objective-C/clm/NSPrintOperation/PDFOperationWithView:insideRect:toPath:printInfo: -Objective-C/cl/-/PDFOutline -Objective-C/cl/-/PDFPage -C/tdef/-/PDFPrintScalingMode -Objective-C/instm/NSPDFImageRep/PDFRepresentation -Objective-C/cl/-/PDFSelection -Objective-C/cl/-/PDFThumbnailView -Objective-C/instm/PDFThumbnailView/PDFView -Objective-C/cl/-/PDFView -C/data/-/PDFViewAnnotationHitNotification -C/data/-/PDFViewAnnotationWillHitNotification -C/data/-/PDFViewChangedHistoryNotification -C/data/-/PDFViewCopyPermissionNotification -C/data/-/PDFViewDisplayBoxChangedNotification -C/data/-/PDFViewDisplayModeChangedNotification -C/data/-/PDFViewDocumentChangedNotification -Objective-C/instm/NSObject/PDFViewOpenPDF:forRemoteGoToAction: -C/data/-/PDFViewPageChangedNotification -Objective-C/instm/NSObject/PDFViewPerformFind: -Objective-C/instm/NSObject/PDFViewPerformGoToPage: -Objective-C/instm/NSObject/PDFViewPerformPrint: -Objective-C/instm/NSObject/PDFViewPrintJobTitle: -C/data/-/PDFViewPrintPermissionNotification -C/data/-/PDFViewScaleChangedNotification -C/data/-/PDFViewSelectionChangedNotification -Objective-C/instm/NSObject/PDFViewWillChangeScaleFactor:toScale: -Objective-C/instm/NSObject/PDFViewWillClickOnLink:withURL: -C/tdef/-/PDFWidgetControlType -C/econst/-/pdOptionsEditCurrentEffectOnly -C/econst/-/pdOptionsHidePreview -C/econst/-/pdOptionsModalDialogBox -C/func/-/pecho_wchar -C/func/-/pechochar -C++/instm/IOSharedDataQueue/peek -C++/instm/IOPacketQueue/peek -C/func/-/pem -C/func/-/pem_passwd_cb -C/func/-/PEM_read_bio_DHparams -C/func/-/PEM_read_bio_DSA_PUBKEY -C/func/-/PEM_read_bio_DSAparams -C/func/-/PEM_read_bio_DSAPrivateKey -C/func/-/PEM_read_bio_NETSCAPE_CERT_SEQUENCE -C/func/-/PEM_read_bio_PKCS7 -C/func/-/PEM_read_bio_PrivateKey -C/func/-/PEM_read_bio_PUBKEY -C/func/-/PEM_read_bio_RSA_PUBKEY -C/func/-/PEM_read_bio_RSAPrivateKey -C/func/-/PEM_read_bio_RSAPublicKey -C/func/-/PEM_read_bio_X509 -C/func/-/PEM_read_bio_X509_AUX -C/func/-/PEM_read_bio_X509_CRL -C/func/-/PEM_read_bio_X509_REQ -C/func/-/PEM_read_DHparams -C/func/-/PEM_read_DSA_PUBKEY -C/func/-/PEM_read_DSAparams -C/func/-/PEM_read_DSAPrivateKey -C/func/-/PEM_read_NETSCAPE_CERT_SEQUENCE -C/func/-/PEM_read_PKCS7 -C/func/-/PEM_read_PrivateKey -C/func/-/PEM_read_PUBKEY -C/func/-/PEM_read_RSA_PUBKEY -C/func/-/PEM_read_RSAPrivateKey -C/func/-/PEM_read_RSAPublicKey -C/func/-/PEM_read_X509 -C/func/-/PEM_read_X509_AUX -C/func/-/PEM_read_X509_CRL -C/func/-/PEM_read_X509_REQ -C/func/-/PEM_write_bio_DHparams -C/func/-/PEM_write_bio_DSA_PUBKEY -C/func/-/PEM_write_bio_DSAparams -C/func/-/PEM_write_bio_DSAPrivateKey -C/func/-/PEM_write_bio_NETSCAPE_CERT_SEQUENCE -C/func/-/PEM_write_bio_PKCS7 -C/func/-/PEM_write_bio_PKCS8PrivateKey -C/func/-/PEM_write_bio_PKCS8PrivateKey_nid -C/func/-/PEM_write_bio_PrivateKey -C/func/-/PEM_write_bio_PUBKEY -C/func/-/PEM_write_bio_RSA_PUBKEY -C/func/-/PEM_write_bio_RSAPrivateKey -C/func/-/PEM_write_bio_RSAPublicKey -C/func/-/PEM_write_bio_X509 -C/func/-/PEM_write_bio_X509_AUX -C/func/-/PEM_write_bio_X509_CRL -C/func/-/PEM_write_bio_X509_REQ -C/func/-/PEM_write_bio_X509_REQ_NEW -C/func/-/PEM_write_DHparams -C/func/-/PEM_write_DSA_PUBKEY -C/func/-/PEM_write_DSAparams -C/func/-/PEM_write_DSAPrivateKey -C/func/-/PEM_write_NETSCAPE_CERT_SEQUENCE -C/func/-/PEM_write_PKCS7 -C/func/-/PEM_write_PKCS8PrivateKey -C/func/-/PEM_write_PKCS8PrivateKey_nid -C/func/-/PEM_write_PrivateKey -C/func/-/PEM_write_PUBKEY -C/func/-/PEM_write_RSA_PUBKEY -C/func/-/PEM_write_RSAPrivateKey -C/func/-/PEM_write_RSAPublicKey -C/func/-/PEM_write_X509 -C/func/-/PEM_write_X509_AUX -C/func/-/PEM_write_X509_CRL -C/func/-/PEM_write_X509_REQ -C/func/-/PEM_write_X509_REQ_NEW -C++/data/IOAudioDevice/pendingPowerState -Objective-C/instm/ABAddressBook/people -Objective-C/instm/IMService/peopleWithScreenName: -Objective-C/instm/XGJob/percentDone -Objective-C/instm/NSNumberFormatter/percentSymbol -C/tdef/-/perf_monitor_methods_t -C/func/-/perf_monitor_register -C/tdef/-/perf_monitor_t -C/func/-/perf_monitor_unregister -C/tdef/-/perfmon_disable_counters_method_t -C/tdef/-/perfmon_enable_counters_method_t -C/tdef/-/perfmon_supports_context_switch_method_t -Objective-C/instm/XGActionMonitor/performAction -Objective-C/instm/PDFView/performAction: -Objective-C/instm/XGResource/performAction:withParameters: -Objective-C/intfm/NSUserInterfaceItemSearching/performActionForItem: -Objective-C/instm/NSMenu/performActionForItemAtIndex: -Objective-C/instm/NSObject/performActionForPerson:identifier: -Objective-C/instm/NSMenuView/performActionWithHighlightingForItemAtIndex: -C++/instm/IOAudioEngine/performAudioEngineStart -C++/instm/IOAudioEngine/performAudioEngineStop -Objective-C/instm/NSButtonCell/performClick: -Objective-C/instm/NSControl/performClick: -Objective-C/instm/NSCell/performClick: -Objective-C/instm/NSTableView/performClickOnCellAtColumn:row: -Objective-C/instm/NSPopUpButtonCell/performClickWithFrame:inView: -Objective-C/instm/NSWindow/performClose: -C++/instm/IONetworkInterface/performCommand -C++/instm/IOEthernetInterface/performCommand -Objective-C/instm/NSEntityMigrationPolicy/performCustomValidationForEntityMapping:manager:error: -Objective-C/instm/NSScriptCommand/performDefaultImplementation -Objective-C/instm/XGJob/performDeleteAction -Objective-C/instm/NSObject/performDragOperation: -C++/instm/IOAudioEngine/performErase -Objective-C/instm/NSWorkspace/performFileOperation:source:destination:files:tag: -Objective-C/instm/NSTextView/performFindPanelAction: -Objective-C/instm/WebView/performFindPanelAction: -C++/instm/IOAudioEngine/performFlush -Objective-C/clm/ScreenSaverView/performGammaFade -Objective-C/instm/XGJob/performGetOutputFilesAction -Objective-C/instm/XGJob/performGetOutputStreamsAction -Objective-C/instm/XGJob/performGetSpecificationAction -Objective-C/instm/NSButton/performKeyEquivalent: -Objective-C/instm/NSMatrix/performKeyEquivalent: -Objective-C/instm/NSResponder/performKeyEquivalent: -Objective-C/instm/NSView/performKeyEquivalent: -Objective-C/instm/NSMenu/performKeyEquivalent: -Objective-C/instm/NSWindow/performMiniaturize: -Objective-C/instm/NSView/performMnemonic: -Objective-C/instm/NSResponder/performMnemonic: -C++/instm/IOMemoryDescriptor/performOperation -C++/instm/IOAudioDevice/performPowerStateChange -Objective-C/instm/XGJob/performRestartAction -Objective-C/instm/XGJob/performResumeAction -Objective-C/instm/IOBluetoothDevice/performSDPQuery: -Objective-C/intfm/NSObject/performSelector: -Objective-C/instm/NSObject/performSelector:onThread:withObject:waitUntilDone: -Objective-C/instm/NSObject/performSelector:onThread:withObject:waitUntilDone:modes: -Objective-C/instm/NSRunLoop/performSelector:target:argument:order:modes: -Objective-C/intfm/NSObject/performSelector:withObject: -Objective-C/instm/NSObject/performSelector:withObject:afterDelay: -Objective-C/instm/NSObject/performSelector:withObject:afterDelay:inModes: -Objective-C/intfm/NSObject/performSelector:withObject:withObject: -Objective-C/instm/NSObject/performSelectorInBackground:withObject: -Objective-C/instm/NSObject/performSelectorOnMainThread:withObject:waitUntilDone: -Objective-C/instm/NSObject/performSelectorOnMainThread:withObject:waitUntilDone:modes: -Objective-C/instm/XGJob/performStopAction -Objective-C/instm/XGController/performSubmitJobActionWithJobSpecification:gridIdentifier: -Objective-C/instm/XGJob/performSuspendAction -C++/instm/IOAudioControl/performValueChange -Objective-C/instm/NSWindow/performZoom: -C/func/-/PeriodicTask -C/econst/-/permErr -Objective-C/instm/NSNumberFormatter/perMillSymbol -JavaScript/clconst/PositionError/PERMISSION_DENIED -Objective-C/instm/SFAuthorization/permitWithRight:flags: -Objective-C/instm/SFAuthorization/permitWithRights:flags:environment:authorizedRights: -C/func/-/perror -JavaScript/data/PageTransitionEvent/persisted -Objective-C/instm/NSURLCredential/persistence -Objective-C/instm/NSUserDefaults/persistentDomainForName: -Objective-C/instm/NSUserDefaults/persistentDomainNames -Objective-C/instm/CBIdentity/persistentReference -Objective-C/instm/NSManagedObjectID/persistentStore -Objective-C/instm/NSPersistentStore/persistentStoreCoordinator -Objective-C/instm/NSManagedObjectContext/persistentStoreCoordinator -Objective-C/intfm/NSPersistentStoreCoordinatorSyncing/persistentStoreCoordinator:didApplyChange:toManagedObject:inSyncSession: -Objective-C/intfm/NSPersistentStoreCoordinatorSyncing/persistentStoreCoordinator:didCancelSyncSession:error: -Objective-C/intfm/NSPersistentStoreCoordinatorSyncing/persistentStoreCoordinator:didCommitChanges:inSyncSession: -Objective-C/intfm/NSPersistentStoreCoordinatorSyncing/persistentStoreCoordinator:didFinishSyncSession: -Objective-C/intfm/NSPersistentStoreCoordinatorSyncing/persistentStoreCoordinator:didPullChangesInSyncSession: -Objective-C/intfm/NSPersistentStoreCoordinatorSyncing/persistentStoreCoordinator:didPushChangesInSyncSession: -Objective-C/intfm/NSPersistentStoreCoordinatorSyncing/persistentStoreCoordinator:willApplyChange:toManagedObject:inSyncSession: -Objective-C/intfm/NSPersistentStoreCoordinatorSyncing/persistentStoreCoordinator:willDeleteRecordWithIdentifier:inSyncSession: -Objective-C/intfm/NSPersistentStoreCoordinatorSyncing/persistentStoreCoordinator:willPullChangesInSyncSession: -Objective-C/intfm/NSPersistentStoreCoordinatorSyncing/persistentStoreCoordinator:willPushChangesInSyncSession: -Objective-C/intfm/NSPersistentStoreCoordinatorSyncing/persistentStoreCoordinator:willPushRecord:forManagedObject:inSyncSession: -Objective-C/intfm/NSPersistentStoreCoordinatorSyncing/persistentStoreCoordinatorShouldStartSyncing: -Objective-C/instm/NSPersistentStoreCoordinator/persistentStoreForURL: -Objective-C/instm/NSPersistentStoreCoordinator/persistentStores -Objective-C/instm/NSPersistentDocument/persistentStoreTypeForFileType: -JavaScript/data/DOMWindow/personalbar -Objective-C/instp/NSTouch/phase -Objective-C/instm/NSTouch/phase -C/tdef/-/PhonemeDescriptor -C/tdef/-/PhonemeInfo -Objective-C/instm/NSSpeechSynthesizer/phonemesFromText: -Objective-C/instp/CWNetwork/phyMode -Objective-C/instp/CWInterface/phyMode -Objective-C/instm/NSProcessInfo/physicalMemory -C++/tag/IOMemoryCursor/PhysicalSegment -C/func/-/physio -C/tdef/-/PicHandle -Objective-C/instm/NSPrintPanel/pickedAllPages: -Objective-C/instm/NSPrintPanel/pickedButton: -Objective-C/instm/NSPrintPanel/pickedLayoutList: -C/tdef/-/PicPtr -Objective-C/instm/NSPICTImageRep/PICTRepresentation -Objective-C/clm/IKPictureTaker/pictureTaker -Objective-C/instm/XGAuthenticator/piggyback -Objective-C/instm/ISyncSession/ping -Objective-C/clm/NSPipe/pipe -C/func/-/pipe -C/tdef/-/Pixel_8 -C/tdef/-/Pixel_8888 -C/tdef/-/Pixel_F -C/tdef/-/Pixel_FFFF -Objective-C/instm/FxImage/pixelAspect -Objective-C/instm/NSOpenGLContext/pixelBuffer -Objective-C/instm/QTCaptureVideoPreviewOutput/pixelBufferAttributes -Objective-C/instm/QTCaptureDecompressedVideoOutput/pixelBufferAttributes -Objective-C/instm/NSOpenGLContext/pixelBufferCubeMapFace -Objective-C/instm/NSOpenGLContext/pixelBufferMipMapLevel -JavaScript/data/Screen/pixelDepth -Objective-C/instm/NSOpenGLView/pixelFormat -Objective-C/instm/FxImage/pixelFormat -Objective-C/instm/NSOpenGLPixelBuffer/pixelsHigh -Objective-C/instm/NSImageRep/pixelsHigh -JavaScript/instm/WebGLRenderingContext/pixelStorei -Objective-C/instm/NSOpenGLPixelBuffer/pixelsWide -Objective-C/instm/NSImageRep/pixelsWide -JavaScript/data/SVGSVGElement/pixelUnitToMillimeterX -JavaScript/data/SVGSVGElement/pixelUnitToMillimeterY -C/tag/-/PixMap -C/tdef/-/PixMapHandle -C/tdef/-/PixMapPtr -C/func/-/PKCS12_create -C/func/-/PKCS12_parse -C/func/-/PKCS7_decrypt -C/func/-/PKCS7_encrypt -C/func/-/PKCS7_sign -C/func/-/PKCS7_verify -JavaScript/data/HTMLTextAreaElement/placeholder -JavaScript/data/HTMLInputElement/placeholder -Objective-C/instm/NSFormCell/placeholderAttributedString -Objective-C/instm/NSPathCell/placeholderAttributedString -Objective-C/instm/NSTextFieldCell/placeholderAttributedString -Objective-C/instm/NSFormCell/placeholderString -Objective-C/instm/NSPathCell/placeholderString -Objective-C/instm/NSTextFieldCell/placeholderString -Objective-C/instp/PSContent/plainTextString -C/func/-/PlanesOfScreen -JavaScript/instm/InspectorFrontendHost/platform -JavaScript/data/Navigator/platform -JavaScript/data/WorkerNavigator/platform -C/econst/-/platform68k -C/econst/-/platformAIXppc -C/econst/-/platformIA32NativeEntryPoint -C/econst/-/platformInterpreted -C/econst/-/platformIRIXmips -C/econst/-/platformLinuxintel -C/econst/-/platformLinuxppc -C/econst/-/platformMacOSx86 -C/econst/-/platformNeXT68k -C/econst/-/platformNeXTIntel -C/econst/-/platformNeXTppc -C/econst/-/platformNeXTsparc -C/econst/-/platformPowerPC -C/econst/-/platformPowerPCNativeEntryPoint -C/econst/-/platformSunOSintel -C/econst/-/platformSunOSsparc -C/econst/-/platformWin32 -Objective-C/instm/NSSound/play -Objective-C/instm/QTMovie/play -JavaScript/instm/HTMLMediaElement/play -Objective-C/instm/QCView/play: -Objective-C/instm/QTMovieView/play: -Objective-C/instm/NSSound/playbackDeviceIdentifier -JavaScript/data/HTMLMediaElement/playbackRate -JavaScript/data/HTMLMediaElement/played -Objective-C/clm/IMAVButton/playPauseButton -C/econst/-/pleaseCacheBit -C/econst/-/pleaseCacheMask -Objective-C/instm/QCPlugInViewController/plugIn -JavaScript/data/DOMWindow/Plugin -JavaScript/cl/-/Plugin -JavaScript/data/DOMWindow/PluginArray -JavaScript/cl/-/PluginArray -C/tdef/-/PluginDestroy -Objective-C/clm/QCPlugIn/plugInKeys -JavaScript/data/HTMLDocument/plugins -JavaScript/data/Navigator/plugins -Objective-C/intfcm/WebPlugInViewFactory/plugInViewWithArguments: -Objective-C/instm/NSNumberFormatter/plusSign -C++/instm/IOService/PM_Clamp_Timer_Expired -C++/instm/IOService/PM_idle_timer_expiration -C/func/-/pmap_getmaps -C/func/-/pmap_getport -C/func/-/pmap_rmtcall -C/func/-/pmap_set -C/func/-/pmap_unset -C/func/-/PMBegin -C/func/-/pmc_accessible_from_core -C/func/-/pmc_config_set_interrupt_threshold -C/tdef/-/pmc_config_set_interrupt_threshold_handler_method_t -C/tdef/-/pmc_config_set_interrupt_threshold_method_t -C/func/-/pmc_config_set_value -C/tdef/-/pmc_config_set_value_method_t -C/func/-/pmc_create_config -C/tdef/-/pmc_create_config_method_t -C/tdef/-/pmc_disable_method_t -C/tdef/-/pmc_enable_method_t -C/func/-/pmc_find_by_name -C/func/-/pmc_free_config -C/tdef/-/pmc_free_config_method_t -C/func/-/pmc_free_pmc_list -C/func/-/pmc_get_accessible_core_list -C/tdef/-/pmc_get_accessible_cores_method_t -C/tdef/-/pmc_get_count_method_t -C/tdef/-/pmc_get_monitor_method_t -C/func/-/pmc_get_name -C/tdef/-/pmc_get_name_method_t -C/func/-/pmc_get_pmc_list -C/tdef/-/pmc_interrupt_method_t -C/tdef/-/pmc_is_accessible_from_logical_core_method_t -C/tdef/-/pmc_methods -C/tdef/-/pmc_methods_t -C/func/-/pmc_register -C/tag/-/pmc_reservation -C/func/-/pmc_reservation_free -C/func/-/pmc_reservation_read -C/func/-/pmc_reservation_start -C/func/-/pmc_reservation_stop -C/func/-/pmc_reservation_write -C/func/-/pmc_reserve -C/func/-/pmc_reserve_task -C/func/-/pmc_reserve_thread -C/tdef/-/pmc_set_config_method_t -C/tdef/-/pmc_set_count_method_t -C/tdef/-/pmc_t -C/func/-/pmc_unregister -C/func/-/PMCGImageCreateWithEPSDataProvider -C/tdef/-/PMColorMode -C/tdef/-/PMConstraintType -C/func/-/PMConvertOldPrintRecord -C/func/-/PMCopyAvailablePPDs -C/func/-/PMCopyLocalizedPPD -C/func/-/PMCopyPageFormat -C/func/-/PMCopyPPDData -C/func/-/PMCopyPrintSettings -C/func/-/PMCreateGenericPrinter -C/func/-/PMCreatePageFormat -C/func/-/PMCreatePageFormatWithPMPaper -C/func/-/PMCreatePrintSettings -C/func/-/PMCreateSession -C/tdef/-/PMDataFormat -C/func/-/PMDefaultPageFormat -C/func/-/PMDefaultPrintSettings -C/tdef/-/PMDestinationType -C/tdef/-/PMDialog -C/func/-/PMDisableColorSync -C/func/-/PMDisposePageFormat -C/func/-/PMDisposePrintSettings -C/tdef/-/PMDuplexMode -C/func/-/PMEnableColorSync -C/func/-/PMEnd -C/func/-/PMError -C/func/-/PMFlattenPageFormat -C/func/-/PMFlattenPageFormatToCFData -C/func/-/PMFlattenPageFormatToURL -C/func/-/PMFlattenPrintSettings -C/func/-/PMFlattenPrintSettingsToCFData -C/func/-/PMFlattenPrintSettingsToURL -C/func/-/PMGeneral -C/func/-/PMGetAdjustedPageRect -C/func/-/PMGetAdjustedPaperRect -C/func/-/PMGetCollate -C/func/-/PMGetColorMode -C/func/-/PMGetCopies -C/func/-/PMGetDestination -C/func/-/PMGetDriverCreator -C/func/-/PMGetDriverReleaseInfo -C/func/-/PMGetDuplex -C/func/-/PMGetFirstPage -C/func/-/PMGetGrafPtr -C/func/-/PMGetIndexedPrinterResolution -C/func/-/PMGetJobName -C/func/-/PMGetJobNameCFString -C/func/-/PMGetLanguageInfo -C/func/-/PMGetLastPage -C/func/-/PMGetOrientation -C/func/-/PMGetPageFormatExtendedData -C/func/-/PMGetPageFormatPaper -C/func/-/PMGetPageRange -C/func/-/PMGetPhysicalPageSize -C/func/-/PMGetPhysicalPaperSize -C/func/-/PMGetPrinterResolution -C/func/-/PMGetPrinterResolutionCount -C/func/-/PMGetPrintSettingsExtendedData -C/func/-/PMGetResolution -C/func/-/PMGetScale -C/func/-/PMGetUnadjustedPageRect -C/func/-/PMGetUnadjustedPaperRect -C/tdef/-/PMIdleProcPtr -C/tdef/-/PMIdleUPP -C++/instm/IOService/PMinit -C/func/-/PMIsPostScriptDriver -C/tag/-/PMLanguageInfo -C/func/-/PMMakeOldPrintRecord -C/func/-/PMNewPageFormat -C/func/-/PMNewPrintSettings -C/tdef/-/PMObject -C/tdef/-/PMOrientation -C/tdef/-/PMPageFormat -Objective-C/instm/NSPrintInfo/PMPageFormat -C/func/-/PMPageFormatCreateDataRepresentation -C/func/-/PMPageFormatCreateWithDataRepresentation -C/func/-/PMPageFormatGetPrinterID -C/econst/-/PMPageScalingHorizontalKey -C/tdef/-/PMPaper -C/func/-/PMPaperCreate -C/func/-/PMPaperCreateCustom -C/func/-/PMPaperCreateLocalizedName -C/func/-/PMPaperGetHeight -C/func/-/PMPaperGetID -C/func/-/PMPaperGetMargins -C/func/-/PMPaperGetName -C/func/-/PMPaperGetPPDPaperName -C/func/-/PMPaperGetPrinterID -C/func/-/PMPaperGetWidth -C/func/-/PMPaperIsCustom -C/tdef/-/PMPaperMargins -C/func/-/PMPostScriptBegin -C/func/-/PMPostScriptData -C/func/-/PMPostScriptEnd -C/func/-/PMPostScriptFile -C/func/-/PMPostScriptHandle -C/tdef/-/PMPPDDomain -C/tdef/-/PMPreset -C/func/-/PMPresetCopyName -C/func/-/PMPresetCreatePrintSettings -C/func/-/PMPresetGetAttributes -C/tdef/-/PMPrintContext -C/tdef/-/PMPrinter -Objective-C/instm/NSObject/PMPrinter -C/func/-/PMPrinterCopyDescriptionURL -C/func/-/PMPrinterCopyDeviceURI -C/func/-/PMPrinterCopyHostName -C/func/-/PMPrinterCopyPresets -C/func/-/PMPrinterCreateFromPrinterID -C/func/-/PMPrinterGetCommInfo -C/func/-/PMPrinterGetDescriptionURL -C/func/-/PMPrinterGetDeviceURI -C/func/-/PMPrinterGetDriverCreator -C/func/-/PMPrinterGetDriverReleaseInfo -C/func/-/PMPrinterGetID -C/func/-/PMPrinterGetIndexedPrinterResolution -C/func/-/PMPrinterGetLanguageInfo -C/func/-/PMPrinterGetLocation -C/func/-/PMPrinterGetMakeAndModelName -C/func/-/PMPrinterGetMimeTypes -C/func/-/PMPrinterGetName -C/func/-/PMPrinterGetOutputResolution -C/func/-/PMPrinterGetPaperList -C/func/-/PMPrinterGetPrinterResolution -C/func/-/PMPrinterGetPrinterResolutionCount -C/func/-/PMPrinterGetState -C/func/-/PMPrinterIsDefault -C/func/-/PMPrinterIsFavorite -C/func/-/PMPrinterIsPostScriptCapable -C/func/-/PMPrinterIsPostScriptPrinter -C/func/-/PMPrinterIsRemote -C/func/-/PMPrinterPrintWithFile -C/func/-/PMPrinterPrintWithProvider -C/func/-/PMPrinterSetDefault -C/func/-/PMPrinterSetOutputResolution -C/tdef/-/PMPrinterState -C/func/-/PMPrinterWritePostScriptToURL -C/tdef/-/PMPrintingPhaseType -C/tdef/-/PMPrintSession -Objective-C/instm/NSPrintInfo/PMPrintSession -C/tdef/-/PMPrintSettings -Objective-C/instm/NSPrintInfo/PMPrintSettings -C/func/-/PMPrintSettingsCopyAsDictionary -C/func/-/PMPrintSettingsCopyKeys -C/func/-/PMPrintSettingsCreateDataRepresentation -C/func/-/PMPrintSettingsCreateWithDataRepresentation -C/func/-/PMPrintSettingsGetJobName -C/func/-/PMPrintSettingsGetValue -C/func/-/PMPrintSettingsSetJobName -C/func/-/PMPrintSettingsSetValue -C/func/-/PMPrintSettingsToOptions -C/func/-/PMPrintSettingsToOptionsWithPrinterAndPageFormat -C/tdef/-/PMQualityMode -C/tag/-/PMRect -C/tdef/-/PMRectList -C/func/-/PMRelease -C/tag/-/PMResolution -C/func/-/PMRetain -C/tdef/-/PMServer -C/func/-/PMServerCreatePrinterList -C/func/-/PMServerLaunchPrinterBrowser -C/func/-/PMSessionBeginCGDocumentNoDialog -C/func/-/PMSessionBeginDocumentNoDialog -C/func/-/PMSessionBeginPageNoDialog -C/func/-/PMSessionConvertOldPrintRecord -C/func/-/PMSessionCopyDestinationFormat -C/func/-/PMSessionCopyDestinationLocation -C/func/-/PMSessionCopyOutputFormatList -C/func/-/PMSessionCreatePageFormatList -C/func/-/PMSessionCreatePrinterList -C/func/-/PMSessionDefaultPageFormat -C/func/-/PMSessionDefaultPrintSettings -C/func/-/PMSessionDisableColorSync -C/func/-/PMSessionEnableColorSync -C/func/-/PMSessionEndDocumentNoDialog -C/func/-/PMSessionEndPageNoDialog -C/func/-/PMSessionError -C/func/-/PMSessionGeneral -C/func/-/PMSessionGetCGGraphicsContext -C/func/-/PMSessionGetCurrentPrinter -C/func/-/PMSessionGetDataFromSession -C/func/-/PMSessionGetDestinationType -C/func/-/PMSessionGetDocumentFormatGeneration -C/func/-/PMSessionGetDocumentFormatSupported -C/func/-/PMSessionGetGraphicsContext -C/func/-/PMSessionIsDocumentFormatSupported -C/func/-/PMSessionMakeOldPrintRecord -C/func/-/PMSessionPostScriptBegin -C/func/-/PMSessionPostScriptData -C/func/-/PMSessionPostScriptEnd -C/func/-/PMSessionPostScriptFile -C/func/-/PMSessionPostScriptHandle -C/func/-/PMSessionSetCurrentPMPrinter -C/func/-/PMSessionSetCurrentPrinter -C/func/-/PMSessionSetDataInSession -C/func/-/PMSessionSetDestination -C/func/-/PMSessionSetDocumentFormatGeneration -C/func/-/PMSessionSetError -C/func/-/PMSessionSetIdleProc -C/func/-/PMSessionSetPSInjectionData -C/func/-/PMSessionValidatePageFormat -C/func/-/PMSessionValidatePrintSettings -C/func/-/PMSetAdjustedPageRect -C/func/-/PMSetCollate -C/func/-/PMSetColorMode -C/func/-/PMSetCopies -C/func/-/PMSetDuplex -C/func/-/PMSetError -C/func/-/PMSetFirstPage -C/func/-/PMSetIdleProc -C/func/-/PMSetJobName -C/func/-/PMSetJobNameCFString -C/func/-/PMSetLastPage -C/func/-/PMSetOrientation -C/func/-/PMSetPageFormatExtendedData -C/func/-/PMSetPageRange -C/func/-/PMSetPhysicalPaperSize -C/func/-/PMSetPrintSettingsExtendedData -C/func/-/PMSetProfile -C/func/-/PMSetResolution -C/func/-/PMSetScale -C/func/-/PMSetUnadjustedPaperRect -C++/instm/IOService/PMstop -Objective-C/instm/NSDateFormatter/PMSymbol -C/tdef/-/PMTag -C/func/-/PMTemplateCreate -C/func/-/PMTemplateCreateXML -C/func/-/PMTemplateDelete -C/func/-/PMTemplateGetBooleanDefaultValue -C/func/-/PMTemplateGetCFArrayConstraintValue -C/func/-/PMTemplateGetCFDataDefaultValue -C/func/-/PMTemplateGetCFDefaultValue -C/func/-/PMTemplateGetCFRangeConstraintValue -C/func/-/PMTemplateGetConstraintType -C/func/-/PMTemplateGetDoubleDefaultValue -C/func/-/PMTemplateGetDoubleListConstraintValue -C/func/-/PMTemplateGetDoubleRangeConstraintValue -C/func/-/PMTemplateGetDoubleRangeDefaultValue -C/func/-/PMTemplateGetDoubleRangesConstraintValue -C/func/-/PMTemplateGetListTicketConstraintValue -C/func/-/PMTemplateGetPMRectDefaultValue -C/func/-/PMTemplateGetPMRectListConstraintValue -C/func/-/PMTemplateGetPMTicketDefaultValue -C/func/-/PMTemplateGetSInt32DefaultValue -C/func/-/PMTemplateGetSInt32ListConstraintValue -C/func/-/PMTemplateGetSInt32RangeConstraintValue -C/func/-/PMTemplateGetSInt32RangeDefaultValue -C/func/-/PMTemplateGetSInt32RangesConstraintValue -C/func/-/PMTemplateGetValueType -C/func/-/PMTemplateIsLocked -C/func/-/PMTemplateLoadFromXML -C/func/-/PMTemplateMakeEntry -C/func/-/PMTemplateMakeFullEntry -C/func/-/PMTemplateMergeTemplates -C/tdef/-/PMTemplateRef -C/func/-/PMTemplateRemoveEntry -C/func/-/PMTemplateSetBooleanDefaultValue -C/func/-/PMTemplateSetCFArrayConstraintValue -C/func/-/PMTemplateSetCFDataDefaultValue -C/func/-/PMTemplateSetCFDefaultValue -C/func/-/PMTemplateSetCFRangeConstraint -C/func/-/PMTemplateSetDoubleDefaultValue -C/func/-/PMTemplateSetDoubleListConstraint -C/func/-/PMTemplateSetDoubleRangeConstraint -C/func/-/PMTemplateSetDoubleRangeDefaultValue -C/func/-/PMTemplateSetDoubleRangesConstraint -C/func/-/PMTemplateSetPMRectDefaultValue -C/func/-/PMTemplateSetPMRectListConstraint -C/func/-/PMTemplateSetPMTicketDefaultValue -C/func/-/PMTemplateSetPMTicketListConstraint -C/func/-/PMTemplateSetSInt32DefaultValue -C/func/-/PMTemplateSetSInt32ListConstraint -C/func/-/PMTemplateSetSInt32RangeConstraint -C/func/-/PMTemplateSetSInt32RangeDefaultValue -C/func/-/PMTemplateSetSInt32RangesConstraint -C/func/-/PMTemplateValidateItem -C/func/-/PMTicketConfirmTicket -C/func/-/PMTicketContainsItem -C/func/-/PMTicketContainsTicket -C/func/-/PMTicketCopy -C/func/-/PMTicketCopyItem -C/func/-/PMTicketCreate -C/func/-/PMTicketCreateTemplate -C/func/-/PMTicketDeleteItem -C/tdef/-/PMTicketErrors -C/func/-/PMTicketFillFromArray -C/func/-/PMTicketGetAllocator -C/func/-/PMTicketGetAPIVersion -C/func/-/PMTicketGetBoolean -C/func/-/PMTicketGetBytes -C/func/-/PMTicketGetCFArray -C/func/-/PMTicketGetCFBoolean -C/func/-/PMTicketGetCFData -C/func/-/PMTicketGetCFDate -C/func/-/PMTicketGetCFDictionary -C/func/-/PMTicketGetCFNumber -C/func/-/PMTicketGetCFString -C/func/-/PMTicketGetCString -C/func/-/PMTicketGetDouble -C/func/-/PMTicketGetEnumType -C/func/-/PMTicketGetIndexPMResolution -C/func/-/PMTicketGetItem -C/func/-/PMTicketGetLockedState -C/func/-/PMTicketGetMetaItem -C/func/-/PMTicketGetPMRect -C/func/-/PMTicketGetPMResolution -C/func/-/PMTicketGetPPDDict -C/func/-/PMTicketGetPString -C/func/-/PMTicketGetRetainCount -C/func/-/PMTicketGetSInt32 -C/func/-/PMTicketGetTicket -C/func/-/PMTicketGetType -C/func/-/PMTicketGetUInt32 -C/func/-/PMTicketIsItemLocked -C/tag/-/PMTicketItemStruct -C/tdef/-/PMTicketItemType -C/func/-/PMTicketLockItem -C/func/-/PMTicketReadXMLFromFile -C/tdef/-/PMTicketRef -C/func/-/PMTicketRelease -C/func/-/PMTicketReleaseAndClear -C/func/-/PMTicketReleaseItem -C/func/-/PMTicketRemoveTicket -C/func/-/PMTicketRetain -C/func/-/PMTicketSetBoolean -C/func/-/PMTicketSetBytes -C/func/-/PMTicketSetCFArray -C/func/-/PMTicketSetCFBoolean -C/func/-/PMTicketSetCFData -C/func/-/PMTicketSetCFDate -C/func/-/PMTicketSetCFDictionary -C/func/-/PMTicketSetCFNumber -C/func/-/PMTicketSetCFString -C/func/-/PMTicketSetCString -C/func/-/PMTicketSetCStringArray -C/func/-/PMTicketSetDouble -C/func/-/PMTicketSetDoubleArray -C/func/-/PMTicketSetItem -C/func/-/PMTicketSetMetaItem -C/func/-/PMTicketSetPMRect -C/func/-/PMTicketSetPMRectArray -C/func/-/PMTicketSetPMResolution -C/func/-/PMTicketSetPMResolutionArray -C/func/-/PMTicketSetPString -C/func/-/PMTicketSetSInt32 -C/func/-/PMTicketSetSInt32Array -C/func/-/PMTicketSetTemplate -C/func/-/PMTicketSetTicket -C/func/-/PMTicketSetUInt32 -C/func/-/PMTicketSetUInt32Array -C/func/-/PMTicketToXML -C/tdef/-/PMTicketType -C/func/-/PMTicketUnlockItem -C/func/-/PMTicketValidate -C/func/-/PMTicketWriteXML -C/func/-/PMTicketWriteXMLToFile -C/func/-/PMUnflattenPageFormat -C/func/-/PMUnflattenPageFormatWithCFData -C/func/-/PMUnflattenPageFormatWithURL -C/func/-/PMUnflattenPrintSettings -C/func/-/PMUnflattenPrintSettingsWithCFData -C/func/-/PMUnflattenPrintSettingsWithURL -C/func/-/PMValidatePageFormat -C/func/-/PMValidatePrintSettings -C/tdef/-/PMValueType -C/func/-/PMWorkflowCopyItems -C/func/-/PMWorkflowSubmitPDFWithOptions -C/func/-/PMWorkflowSubmitPDFWithSettings -C/func/-/PMXMLToTicket -C/func/-/png_64bit_product -C/func/-/png_access_version_number -C/func/-/png_build_gamma_table -C/func/-/png_build_grayscale_palette -C/func/-/png_calculate_crc -C/func/-/png_check_cHRM_fixed -C/func/-/png_check_chunk_name -C/func/-/png_check_IHDR -C/func/-/png_check_keyword -C/func/-/png_check_sig -C/func/-/png_chunk_error -C/func/-/png_chunk_warning -C/func/-/png_combine_row -C/func/-/png_convert_from_struct_tm -C/func/-/png_convert_from_time_t -C/func/-/png_convert_to_rfc1123 -C/func/-/png_correct_palette -C/func/-/png_crc_error -C/func/-/png_crc_finish -C/func/-/png_crc_read -C/func/-/png_create_info_struct -C/func/-/png_create_read_struct -C/func/-/png_create_read_struct_2 -C/func/-/png_create_struct -C/func/-/png_create_struct_2 -C/func/-/png_create_write_struct -C/func/-/png_create_write_struct_2 -C/func/-/png_debug -C/func/-/png_debug1 -C/func/-/png_debug2 -C/func/-/png_decompress_chunk -C/func/-/png_destroy_info_struct -C/func/-/png_destroy_read_struct -C/func/-/png_destroy_write_struct -C/func/-/png_error -C/func/-/png_free -C/func/-/png_free_chunk_list -C/func/-/png_free_data -C/func/-/png_free_default -C/func/-/png_get_bit_depth -C/func/-/png_get_bKGD -C/func/-/png_get_channels -C/func/-/png_get_cHRM -C/func/-/png_get_cHRM_fixed -C/func/-/png_get_color_type -C/func/-/png_get_compression_type -C/func/-/png_get_copyright -C/func/-/png_get_error_ptr -C/func/-/png_get_filter_type -C/func/-/png_get_gAMA -C/func/-/png_get_gAMA_fixed -C/func/-/png_get_header_ver -C/func/-/png_get_header_version -C/func/-/png_get_hIST -C/func/-/png_get_iCCP -C/tdef/-/pnotComponent -C/func/-/pnoutrefresh -C/tag/-/Point -Objective-C/instm/PDFDestination/point -Objective-C/instm/PDFActionRemoteGoTo/point -Objective-C/clm/NSPointerArray/pointerArrayWithOptions: -Objective-C/clm/NSPointerArray/pointerArrayWithPointerFunctions: -Objective-C/clm/NSPointerArray/pointerArrayWithStrongObjects -Objective-C/clm/NSPointerArray/pointerArrayWithWeakObjects -Objective-C/instm/NSPointerArray/pointerAtIndex: -JavaScript/data/NodeIterator/pointerBeforeReferenceNode -Objective-C/instm/NSHashTable/pointerFunctions -Objective-C/instm/NSPointerArray/pointerFunctions -Objective-C/clm/NSPointerFunctions/pointerFunctionsWithOptions: -Objective-C/instm/NSValue/pointerValue -Objective-C/instm/NSEvent/pointingDeviceID -Objective-C/instm/NSEvent/pointingDeviceSerialNumber -Objective-C/instm/NSEvent/pointingDeviceType -Objective-C/clm/NSCursor/pointingHandCursor -JavaScript/data/SVGAnimatedPoints/points -JavaScript/clconst/WebGLRenderingContext/POINTS -JavaScript/data/SVGFESpotLightElement/pointsAtX -JavaScript/data/SVGFESpotLightElement/pointsAtY -JavaScript/data/SVGFESpotLightElement/pointsAtZ -Objective-C/instm/NSFont/pointSize -Objective-C/instm/NSFontDescriptor/pointSize -Objective-C/instm/NSValue/pointValue -Objective-C/instm/SFCertificateView/policies -Objective-C/instm/SFCertificatePanel/policies -Objective-C/instm/SFChooseIdentityPanel/policies -Objective-C/instm/WebView/policyDelegate -C/func/-/poll -C++/instm/IOBlockStorageDriver/pollMedia -JavaScript/clconst/WebGLRenderingContext/POLYGON_OFFSET_FACTOR -JavaScript/clconst/WebGLRenderingContext/POLYGON_OFFSET_FILL -JavaScript/clconst/WebGLRenderingContext/POLYGON_OFFSET_UNITS -JavaScript/instm/WebGLRenderingContext/polygonOffset -Objective-C/clm/NSCursor/pop -Objective-C/instm/NSCursor/pop -C/func/-/popen -JavaScript/cl/-/PopStateEvent -Objective-C/instm/PDFAnnotation/popup -Objective-C/clm/NSMenu/popUpContextMenu:withEvent:forView: -Objective-C/clm/NSMenu/popUpContextMenu:withEvent:forView:withFont: -Objective-C/instm/NSMenu/popUpMenuPositioningItem:atLocation:inView: -Objective-C/instm/IKPictureTaker/popUpRecentsMenuForView:withDelegate:didEndSelector:contextInfo: -Objective-C/instm/NSStatusItem/popUpStatusItemMenu: -Objective-C/instm/NSNetService/port -Objective-C/instm/NSURLProtectionSpace/port -Objective-C/instm/NSURL/port -Objective-C/clm/NSPort/port -JavaScript/data/HTMLAreaElement/port -JavaScript/data/HTMLAnchorElement/port -JavaScript/data/SharedWorker/port -JavaScript/instm/InspectorFrontendHost/port -JavaScript/data/window/port -JavaScript/data/WorkerLocation/port -JavaScript/data/MessageChannel/port1 -JavaScript/data/MessageChannel/port2 -Objective-C/clm/NSPortCoder/portCoderWithReceivePort:sendPort:components: -Objective-C/instm/NSMachBootstrapServer/portForName: -Objective-C/instm/NSPortNameServer/portForName: -Objective-C/instm/NSMessagePortNameServer/portForName: -Objective-C/instm/NSSocketPortNameServer/portForName: -Objective-C/instm/NSMachBootstrapServer/portForName:host: -Objective-C/instm/NSMessagePortNameServer/portForName:host: -Objective-C/instm/NSPortNameServer/portForName:host: -Objective-C/instm/NSSocketPortNameServer/portForName:host: -Objective-C/instm/NSSocketPortNameServer/portForName:host:nameServerPortNumber: -C/tag/-/PortIndicatorSelectors -Objective-C/instm/NSHTTPCookie/portList -Objective-C/instm/XGConnection/portnumber -JavaScript/data/MessageEvent/ports -Objective-C/clm/NSMachPort/portWithMachPort: -Objective-C/clm/NSMachPort/portWithMachPort:options: -C/func/-/pos_form_cursor -C/func/-/pos_menu_cursor -Objective-C/clm/NSObject/poseAsClass: -C/econst/-/posErr -Objective-C/instm/NSPositionalSpecifier/position -Objective-C/instp/CALayer/position -Objective-C/instm/CALayer/position -JavaScript/data/HTMLProgressElement/position -JavaScript/data/XMLHttpRequestProgressEvent/position -JavaScript/clconst/PositionError/POSITION_UNAVAILABLE -JavaScript/cl/-/PositionError -Objective-C/instm/NSFont/positionOfGlyph:forCharacter:struckOverRect: -Objective-C/instm/NSFont/positionOfGlyph:precededByGlyph:isNominal: -Objective-C/instm/NSFont/positionOfGlyph:struckOverGlyph:metricsExist: -Objective-C/instm/NSFont/positionOfGlyph:struckOverRect:metricsExist: -Objective-C/instm/NSFont/positionOfGlyph:withRelation:toBaseGlyph:totalAdvancement:metricsExist: -Objective-C/instm/NSFont/positionsForCompositeSequence:numberOfGlyphs:pointArray: -Objective-C/instm/NSNumberFormatter/positiveFormat -Objective-C/instm/NSNumberFormatter/positiveInfinitySymbol -Objective-C/instm/NSNumberFormatter/positivePrefix -Objective-C/instm/NSNumberFormatter/positiveSuffix -C/func/-/posix2time -C/func/-/posix_madvise -C/func/-/posix_memalign -C/func/-/posix_openpt -C/func/-/posix_spawn -C/func/-/posix_spawn_file_actions_addclose -C/func/-/posix_spawn_file_actions_adddup2 -C/func/-/posix_spawn_file_actions_addopen -C/func/-/posix_spawn_file_actions_destroy -C/func/-/posix_spawn_file_actions_init -C/func/-/posix_spawnattr_destroy -C/func/-/posix_spawnattr_getbinpref_np -C/func/-/posix_spawnattr_getflags -C/func/-/posix_spawnattr_getpgroup -C/func/-/posix_spawnattr_getsigdefault -C/func/-/posix_spawnattr_getsigmask -C/func/-/posix_spawnattr_init -C/func/-/posix_spawnattr_setbinpref_np -C/func/-/posix_spawnattr_setexceptionports_np -C/func/-/posix_spawnattr_setflags -C/func/-/posix_spawnattr_setpgroup -C/func/-/posix_spawnattr_setsigdefault -C/func/-/posix_spawnattr_setsigmask -C/func/-/posix_spawnattr_setspecialport_np -C/func/-/posix_spawnp -Objective-C/instm/CBGroupIdentity/posixGID -Objective-C/instm/CBIdentity/posixName -Objective-C/instm/CBUserIdentity/posixUID -C/func/-/post_form -C/func/-/post_menu -C++/instm/IOHIDDevice/postElementValues -JavaScript/data/HTMLVideoElement/poster -Objective-C/instm/QTMovie/posterImage -Objective-C/instm/NSWindow/postEvent:atStart: -Objective-C/instm/NSApplication/postEvent:atStart: -JavaScript/instm/DedicatedWorkerContext/postMessage -JavaScript/instm/DOMWindow/postMessage -JavaScript/instm/MessagePort/postMessage -JavaScript/instm/Worker/postMessage -C++/clm/OSMetaClass/postModLoad -Objective-C/instm/NSServerNotificationCenter/postNotification: -Objective-C/instm/NSNotificationCenter/postNotification: -Objective-C/instm/NSDistributedNotificationCenter/postNotificationName:object: -Objective-C/instm/NSServerNotificationCenter/postNotificationName:object: -Objective-C/instm/NSNotificationCenter/postNotificationName:object: -Objective-C/instm/NSDistributedNotificationCenter/postNotificationName:object:userInfo: -Objective-C/instm/NSServerNotificationCenter/postNotificationName:object:userInfo: -Objective-C/instm/NSNotificationCenter/postNotificationName:object:userInfo: -Objective-C/instm/NSDistributedNotificationCenter/postNotificationName:object:userInfo:deliverImmediately: -Objective-C/instm/NSDistributedNotificationCenter/postNotificationName:object:userInfo:options: -Objective-C/instm/IKCameraDeviceView/postProcessApplication -Objective-C/instm/IKScannerDeviceView/postProcessApplication -Objective-C/instp/IKScannerDeviceView/postProcessApplication -Objective-C/instp/IKCameraDeviceView/postProcessApplication -Objective-C/instm/NSView/postsBoundsChangedNotifications -Objective-C/instm/NSFontDescriptor/postscriptName -Objective-C/instm/NSView/postsFrameChangedNotifications -C/func/-/pow -Objective-C/instp/CWInterface/power -C++/instm/IOService/powerChangeDone -C++/instm/IOService/powerOverrideOffPriv -C++/instm/IOService/powerOverrideOnPriv -Objective-C/instp/CWInterface/powerSave -C/func/IOPMPowerSource.h/powerSource -C++/instm/IONetworkInterface/powerStateDidChangeTo -C++/instm/IOKernelDebugger/powerStateDidChangeTo -C++/instm/IOService/powerStateDidChangeTo -C++/instm/IOService/powerStateForDomainState -C++/instm/IONetworkInterface/powerStateWillChangeTo -C++/instm/IOKernelDebugger/powerStateWillChangeTo -C++/instm/IOService/powerStateWillChangeTo -C/tag/-/PowerSwitching -C/func/-/powf -C/func/-/powl -Objective-C/instm/NSObject/ppdFile -Objective-C/instm/NSObject/PPDOptionKeyValueDidChange:ppdChoice: -C/func/-/pread -C/tag/-/prebound_dylib_command -Objective-C/instm/NSString/precomposedStringWithCanonicalMapping -Objective-C/instm/NSString/precomposedStringWithCompatibilityMapping -Objective-C/clm/NSXMLDTD/predefinedEntityDeclarationForName: -Objective-C/clm/NSXMLNode/predefinedNamespaceForPrefix: -Objective-C/instm/NSMetadataQuery/predicate -Objective-C/instm/NSExpression/predicate -Objective-C/instm/NSRuleEditor/predicate -Objective-C/binding/NSSearchField/predicate -Objective-C/instm/NSFetchRequest/predicate -Objective-C/instm/NSPredicate/predicateFormat -Objective-C/instm/NSRuleEditor/predicateForRow: -Objective-C/instm/NSComparisonPredicate/predicateOperatorType -Objective-C/clm/NSPredicate/predicateWithBlock: -Objective-C/clm/NSPredicate/predicateWithFormat: -Objective-C/clm/NSPredicate/predicateWithFormat:argumentArray: -Objective-C/clm/NSPredicate/predicateWithFormat:arguments: -Objective-C/clm/NSComparisonPredicate/predicateWithLeftExpression:rightExpression:customSelector: -Objective-C/clm/NSComparisonPredicate/predicateWithLeftExpression:rightExpression:modifier:type:options: -Objective-C/instm/NSPredicateEditorRowTemplate/predicateWithSubpredicates: -Objective-C/instm/NSPredicate/predicateWithSubstitutionVariables: -Objective-C/clm/NSPredicate/predicateWithValue: -Objective-C/instm/WebView/preferences -Objective-C/instm/WebView/preferencesIdentifier -Objective-C/instm/IBPlugin/preferencesView -Objective-C/instm/NSWindow/preferredBackingLocation -Objective-C/instm/NSPopUpButtonCell/preferredEdge -Objective-C/instm/NSPopUpButton/preferredEdge -Objective-C/instm/NSDrawer/preferredEdge -Objective-C/instm/NSFileWrapper/preferredFilename -Objective-C/instm/NSWorkspace/preferredFilenameExtensionForType: -Objective-C/clm/NSFont/preferredFontNames -Objective-C/instm/CALayer/preferredFrameSize -Objective-C/clm/NSLocale/preferredLanguages -Objective-C/instm/NSBundle/preferredLocalizations -Objective-C/clm/NSBundle/preferredLocalizationsFromArray: -Objective-C/clm/NSBundle/preferredLocalizationsFromArray:forPreferences: -Objective-C/instp/CWConfiguration/preferredNetworks -Objective-C/instm/NSTextView/preferredPasteboardTypeFromArray:restrictedToTypesFromArray: -Objective-C/instm/NSObject/preferredSizeOfLayer: -JavaScript/data/Document/preferredStylesheetSet -Objective-C/instm/NSObject/preferredSyncModeForEntityName: -Objective-C/instm/NSBrowser/prefersAllColumnUserResizing -Objective-C/instm/NSImage/prefersColorMatch -Objective-C/clm/NSSliderCell/prefersTrackingUntilMouseUp -Objective-C/clm/NSCell/prefersTrackingUntilMouseUp -Objective-C/instm/NSXMLNode/prefix -JavaScript/data/core/prefix -Objective-C/clm/NSXMLNode/prefixForName: -Objective-C/instm/NSBundle/preflightAndReturnError: -C/func/-/prefresh -Objective-C/instm/DRTrack(PropertyConvenience)/preGap -JavaScript/data/HTMLMediaElement/preload -C++/clm/OSMetaClass/preModLoad -JavaScript/data/WebGLContextAttributes/premultipliedAlpha -C++/instm/IONetworkController/prepare -C++/instm/IODMACommand/prepare -C++/instm/IOInterleavedMemoryDescriptor/prepare -C++/instm/IOMultiMemoryDescriptor/prepare -C++/instm/IOMemoryDescriptor/prepare -C++/instm/IOFWPhysicalAddressSpace/prepare -Objective-C/instm/NSObjectController/prepareContent -Objective-C/instm/NSTableView/preparedCellAtColumn:row: -Objective-C/intfm/DRFileDataProduction/prepareFileForBurn: -Objective-C/intfm/DRFileDataProduction/prepareFileForVerification: -Objective-C/instm/NSManagedObject/prepareForDeletion -Objective-C/instm/NSObject/prepareForDragOperation: -Objective-C/instm/NSEPSImageRep/prepareGState -Objective-C/instm/NSOpenGLView/prepareOpenGL -Objective-C/instm/NSDocument/preparePageLayout: -C++/instm/IOBlockStorageDriver/prepareRequest -Objective-C/instm/NSDocument/prepareSavePanel: -Objective-C/instm/ISyncSession/prepareToPullChangesForEntityNames:beforeDate: -Objective-C/instm/ISyncSession/prepareToPullChangesInBackgroundForEntityNames:target:selector: -Objective-C/intfm/DRTrackDataProduction/prepareTrack:forBurn:toMedia: -Objective-C/intfm/DRTrackDataProduction/prepareTrackForVerification: -Objective-C/instm/NSUndoManager/prepareWithInvocationTarget: -C++/instm/IODMACommand/prepareWithSpecification -C++/instm/IOPacketQueue/prepend -Objective-C/instm/NSAffineTransform/prependTransform: -Objective-C/instm/CALayer/presentationLayer -Objective-C/instm/NSApplication/presentationOptions -Objective-C/instm/QTSampleBuffer/presentationTime -Objective-C/instm/NSDocument/presentError: -Objective-C/instm/NSDocumentController/presentError: -Objective-C/instm/NSResponder/presentError: -Objective-C/instm/NSDocument/presentError:modalForWindow:delegate:didPresentSelector:contextInfo: -Objective-C/instm/NSDocumentController/presentError:modalForWindow:delegate:didPresentSelector:contextInfo: -Objective-C/instm/NSResponder/presentError:modalForWindow:delegate:didPresentSelector:contextInfo: -JavaScript/data/SVGFEImageElement/preserveAspectRatio -JavaScript/data/SVGFitToViewBox/preserveAspectRatio -JavaScript/data/SVGImageElement/preserveAspectRatio -JavaScript/data/SVGViewSpec/preserveAspectRatioString -Objective-C/instm/QTCaptureView/preservesAspectRatio -Objective-C/instm/QTMovieView/preservesAspectRatio -Objective-C/binding/QTMovieView/preservesAspectRatio -Objective-C/instm/NSWindow/preservesContentDuringLiveResize -Objective-C/instm/NSView/preservesContentDuringLiveResize -Objective-C/instp/CAReplicatorLayer/preservesDepth -Objective-C/instp/CAEmitterLayer/preservesDepth -Objective-C/instm/CAEmitterLayer/preservesDepth -Objective-C/instm/CAReplicatorLayer/preservesDepth -Objective-C/instm/NSTreeController/preservesSelection -Objective-C/instm/NSArrayController/preservesSelection -Objective-C/clm/NSEvent/pressedMouseButtons -Objective-C/instm/NSEvent/pressure -JavaScript/instm/Event/preventDefault -C/data/-/preventIdleSleepFlag -Objective-C/instm/NSWindow/preventsApplicationTerminationWhenModal -C/data/-/preventSystemSleepFlag -Objective-C/instm/NSApplication/preventWindowOrdering -Objective-C/instm/QTCaptureView/previewBounds -C/func/-/PreviewEvent -Objective-C/intfm/QLPreviewItem/previewItemDisplayState -Objective-C/intfp/QLPreviewItem/previewItemDisplayState -Objective-C/intfp/QLPreviewItem/previewItemTitle -Objective-C/intfm/QLPreviewItem/previewItemTitle -Objective-C/intfp/QLPreviewItem/previewItemURL -Objective-C/intfm/QLPreviewItem/previewItemURL -C/func/-/PreviewMakePreview -C/func/-/PreviewMakePreviewReference -Objective-C/intfm/QLPreviewPanelDelegate/previewPanel:handleEvent: -Objective-C/intfm/QLPreviewPanelDataSource/previewPanel:previewItemAtIndex: -Objective-C/intfm/QLPreviewPanelDelegate/previewPanel:sourceFrameOnScreenForPreviewItem: -Objective-C/intfm/QLPreviewPanelDelegate/previewPanel:transitionImageForPreviewItem:contentRect: -C/func/-/PreviewShowData -JavaScript/data/Element/previousElementSibling -Objective-C/instm/NSURLAuthenticationChallenge/previousFailureCount -Objective-C/instm/NSView/previousKeyView -C++/instm/OSSerialize/previouslySerialized -Objective-C/instm/NSXMLNode/previousNode -JavaScript/instm/NodeIterator/previousNode -JavaScript/instm/TreeWalker/previousNode -JavaScript/data/SVGZoomEvent/previousScale -Objective-C/instm/NSXMLNode/previousSibling -JavaScript/data/svg/previousSibling -JavaScript/data/core/previousSibling -JavaScript/instm/TreeWalker/previousSibling -Objective-C/instm/NSTextField/previousText -JavaScript/data/SVGZoomEvent/previousTranslate -Objective-C/instm/NSView/previousValidKeyView -JavaScript/data/MutationEvent/prevValue -JavaScript/data/DataGridColumn/primary -JavaScript/data/HTMLDataGridColElement/primary -JavaScript/data/DataGridColumnList/primaryColumn -Objective-C/instm/ABMultiValue/primaryIdentifier -JavaScript/data/CSSPrimitiveValue/primitiveType -JavaScript/data/SVGFilterElement/primitiveUnits -Objective-C/instm/NSManagedObject/primitiveValueForKey: -Objective-C/instm/NSBundle/principalClass -JavaScript/instm/DOMWindow/print -Objective-C/instm/NSWindow/print: -Objective-C/instm/NSView/print: -C/func/-/print_description -C/func/-/print_mib -C/func/-/print_objid -C/func/-/print_value -C/func/-/print_variable -Objective-C/instm/NSDocument/printDocument: -Objective-C/instm/WebFrameView/printDocumentView -Objective-C/instm/NSDocument/printDocumentWithSettings:showPrintPanel:delegate:didPrintSelector:contextInfo: -Objective-C/instm/NSPrintInfo/printer -Objective-C/instm/NSFont/printerFont -Objective-C/instm/NSObject/printerInfoTicket -Objective-C/clm/NSPrinter/printerNames -Objective-C/clm/NSPrinter/printerTypes -Objective-C/clm/NSPrinter/printerWithName: -Objective-C/clm/NSPrinter/printerWithName:domain:includeUnavailable: -Objective-C/clm/NSPrinter/printerWithType: -C/func/-/printf -C/func/-/printf_l -Objective-C/instm/NSPageLayout/printInfo -Objective-C/instm/NSPrintOperation/printInfo -Objective-C/instm/NSDocument/printInfo -Objective-C/instm/NSPrintPanel/printInfo -Objective-C/clm/NSTypesetter/printingAdjustmentInLayoutManager:forNominallySpacedGlyphRange:packedGlyphs:count: -Objective-C/instm/NSView/printJobTitle -Objective-C/instm/WebFrameView/printOperationWithPrintInfo: -Objective-C/instm/NSDocument/printOperationWithSettings:error: -Objective-C/clm/NSPrintOperation/printOperationWithView: -Objective-C/clm/NSPrintOperation/printOperationWithView:printInfo: -Objective-C/instm/NSPrintOperation/printPanel -Objective-C/clm/NSPrintPanel/printPanel -Objective-C/instm/NSObject/printSession -Objective-C/instm/NSPrintInfo/printSettings -Objective-C/instm/NSObject/printSettings -Objective-C/instm/NSDocument/printShowingPrintPanel: -C/func/-/printw -Objective-C/instm/PDFView/printWithInfo:autoRotate: -Objective-C/instm/PDFView/printWithInfo:autoRotate:pageScaling: -Objective-C/instp/CalTask/priority -Objective-C/instm/CalTask/priority -Objective-C/instm/WebPreferences/privateBrowsingEnabled -Objective-C/clm/XGController(XGControllerCreation)/privateController -Objective-C/instm/NSBundle/privateFrameworksPath -Objective-C/instm/NSBundle/privateFrameworksURL -C++/instm/IOService/probe -C/func/-/proc_pgrpid -C/func/-/proc_selfpgrpid -C/tdef/-/ProcessApplicationTransformState -C++/instm/ATADeviceNub/processCallback -Objective-C/instm/NSTextStorage/processEditing -Objective-C/instm/NSProcessInfo/processIdentifier -Objective-C/instm/NSTask/processIdentifier -Objective-C/instm/NSRunningApplication/processIdentifier -Objective-C/instp/NSRunningApplication/processIdentifier -Objective-C/clm/NSProcessInfo/processInfo -C/tdef/-/ProcessInfoExtendedRec -C/tdef/-/ProcessInfoRec -C/func/-/ProcessInformationCopyDictionary -JavaScript/clconst/core/PROCESSING_INSTRUCTION_NODE -JavaScript/data/DOMWindow/ProcessingInstruction -JavaScript/cl/-/ProcessingInstruction -C/tdef/-/processingInstructionSAXFunc -Objective-C/clm/NSXMLNode/processingInstructionWithName:stringValue: -Objective-C/instm/NSProcessInfo/processName -Objective-C/instm/NSProcessInfo/processorCount -C++/instm/IOSCSIParallelInterfaceController/ProcessParallelTask -Objective-C/instm/NSManagedObjectContext/processPendingChanges -C/func/-/ProcessRequest -C/tdef/-/ProcessSerialNumber -C/econst/-/procNotFound -Objective-C/intfm/DRTrackDataProduction/produceDataForTrack:intoBuffer:length:atAddress:blockSize:ioFlags: -Objective-C/intfm/DRFileDataProduction/produceFile:fork:intoBuffer:length:atAddress:blockSize: -Objective-C/intfm/DRTrackDataProduction/producePreGapForTrack:intoBuffer:length:atAddress:blockSize:ioFlags: -C++/data/IOInterruptEventSource/producerCount -JavaScript/data/Navigator/product -JavaScript/data/Navigator/productSub -C/func/-/profil -Objective-C/clm/CWWirelessProfile/profile -Objective-C/clm/CW8021XProfile/profile -JavaScript/instm/Console/profile -JavaScript/data/HTMLHeadElement/profile -JavaScript/instm/Console/profileEnd -JavaScript/data/Console/profiles -Objective-C/clm/XGAuthenticator/profileURI -Objective-C/intfm/ApertureExportPlugIn/progress -JavaScript/data/HTMLDataGridCellElement/progress -JavaScript/data/DOMWindow/ProgressEvent -JavaScript/cl/-/ProgressEvent -Objective-C/instm/NSAnimation/progressMarks -C/econst/-/progressOpAddMovieSelection -C/econst/-/progressOpCopy -C/econst/-/progressOpCut -C/econst/-/progressOpFlatten -C/econst/-/progressOpImportMovie -C/econst/-/progressOpInsertMovieSegment -C/econst/-/progressOpInsertTrackSegment -C/econst/-/progressOpLoadMediaIntoRam -C/econst/-/progressOpLoadMovieIntoRam -C/econst/-/progressOpLoadTrackIntoRam -C/econst/-/progressOpPaste -Objective-C/clm/DRBurnProgressPanel/progressPanel -Objective-C/clm/DREraseProgressPanel/progressPanel -Objective-C/instm/NSSavePanel/prompt -JavaScript/instm/DOMWindow/prompt -JavaScript/data/HTMLIsIndexElement/prompt -C/func/-/prop_get -Objective-C/instm/NSManagedObjectContext/propagatesDeletesAtEndOfEvent -Objective-C/intfm/FxBaseEffect/properties -Objective-C/instm/ABPeoplePickerView/properties -Objective-C/instm/DRBurn/properties -Objective-C/instm/DRCDTextBlock/properties -Objective-C/instm/DRErase/properties -Objective-C/instm/DRTrack/properties -Objective-C/instm/NSHTTPCookie/properties -Objective-C/clm/ABGroup/properties -Objective-C/clm/ABPerson/properties -Objective-C/instm/NSEntityDescription/properties -Objective-C/instm/NSEntityDescription/propertiesByName -Objective-C/instm/DRFSObject/propertiesForFilesystem:mergeWithOtherFilesystems: -Objective-C/intfm/ApertureExportManager/propertiesForImageAtIndex: -Objective-C/instm/NSFetchRequest/propertiesToFetch -Objective-C/instm/NSMenu/propertiesToUpdate -Objective-C/intfm/ApertureExportManager/propertiesWithoutThumbnailForImageAtIndex: -Objective-C/intfm/ApertureEditManager/propertiesWithoutThumbnailForVersion: -C/func/-/property_getAttributes -C/func/-/property_getName -Objective-C/instm/NSAtomicStoreCacheNode/propertyCache -Objective-C/instm/NSURLHandle/propertyForKey: -Objective-C/instm/NSStream/propertyForKey: -Objective-C/instm/NSURL/propertyForKey: -Objective-C/instm/DRFSObject/propertyForKey:inFilesystem:mergeWithOtherFilesystems: -Objective-C/clm/NSURLProtocol/propertyForKey:inRequest: -Objective-C/instm/NSURLHandle/propertyForKeyIfAvailable: -Objective-C/instm/NSString/propertyList -Objective-C/clm/NSPropertyListSerialization/propertyList:isValidForFormat: -Objective-C/instm/NSPasteboardItem/propertyListForType: -Objective-C/instm/NSPasteboard/propertyListForType: -Objective-C/clm/NSPropertyListSerialization/propertyListFromData:mutabilityOption:format:errorDescription: -Objective-C/intfm/QCCompositionRenderer/propertyListFromInputValues -Objective-C/instm/NSString/propertyListFromStringsFileFormat -Objective-C/clm/NSPropertyListSerialization/propertyListWithData:options:format:error: -Objective-C/clm/NSPropertyListSerialization/propertyListWithStream:options:format:error: -C++/clm/IOService/propertyMatching -JavaScript/data/WebKitTransitionEvent/propertyName -Objective-C/instm/ABMultiValue/propertyType -Objective-C/instm/SBObject/propertyWithClass:code: -Objective-C/instm/SBObject/propertyWithCode: -Objective-C/instm/NSURLAuthenticationChallenge/proposedCredential -C++/instm/IOAudioDevice/protectedCompletePowerStateChange -C++/instm/IOAudioDevice/protectedSetPowerState -Objective-C/instm/NSURLAuthenticationChallenge/protectionSpace -C/func/-/proto_inject -C/func/-/proto_input -C/tdef/-/proto_media_detached -C/tdef/-/proto_media_event -C/tdef/-/proto_media_input -C/tdef/-/proto_media_input_v2 -C/tdef/-/proto_media_ioctl -C/tdef/-/proto_media_preout -C/tdef/-/proto_media_resolve_multi -C/tdef/-/proto_media_send_arp -C/tdef/-/proto_plumb_handler -C/func/-/proto_register_plumber -C/tdef/-/proto_unplumb_handler -C/func/-/proto_unregister_plumber -Objective-C/instm/NSProtocolChecker/protocol -Objective-C/instm/NSSocketPort/protocol -Objective-C/instm/NSURLProtectionSpace/protocol -JavaScript/data/HTMLAreaElement/protocol -JavaScript/data/HTMLAnchorElement/protocol -JavaScript/data/window/protocol -JavaScript/data/WorkerLocation/protocol -C/func/-/protocol_conformsToProtocol -C/func/-/protocol_copyMethodDescriptionList -C/func/-/protocol_copyPropertyList -C/func/-/protocol_copyProtocolList -C/tdef/-/protocol_family_t -C/func/-/protocol_getMethodDescription -C/func/-/protocol_getName -C/func/-/protocol_getProperty -C/func/-/protocol_isEqual -Objective-C/clm/NSProtocolChecker/protocolCheckerWithTarget:protocol: -C/econst/-/protocolErr -Objective-C/instm/NSSocketPort/protocolFamily -C/func/-/ProtocolRevision -Objective-C/instm/QCComposition/protocols -Objective-C/instm/NSNetService/protocolSpecificInformation -C/func/-/ProtocolVersion -Objective-C/instm/NSMatrix/prototype -C++/instm/IOATADevice/provideBusInfo -C++/instm/IOATADevice/provideConfig -Objective-C/instm/NSObject/provideImageData:bytesPerRow:origin:size:userInfo: -Objective-C/instm/NSColorPicker/provideNewButtonImage -Objective-C/intfm/NSColorPickingDefault/provideNewButtonImage -Objective-C/intfm/NSColorPickingCustom/provideNewView: -C++/data/IOInterruptEventSource/provider -Objective-C/intfm/IKFilterCustomUIProvider/provideViewForUIConfiguration:excludedKeys: -Objective-C/instm/WebFrame/provisionalDataSource -Objective-C/instm/NSURLProtectionSpace/proxyType -Objective-C/clm/NSDistantObject/proxyWithLocal:connection: -Objective-C/clm/NSDistantObject/proxyWithTarget:connection: -Objective-C/cl/-/PSAuthor -Objective-C/cl/-/PSClient -Objective-C/cl/-/PSContent -C/func/-/pselect -Objective-C/cl/-/PSEnclosure -Objective-C/cl/-/PSEntry -Objective-C/cl/-/PSFeed -C/tdef/-/PSFeedFormat -Objective-C/cl/-/PSFeedSettings -C/macro/-/PSFeedSettingsAllTypes -C/macro/-/PSFeedSettingsIntervalDefault -C/macro/-/PSFeedSettingsIntervalNever -C/macro/-/PSFeedSettingsUnlimitedSize -C/func/-/psignal -C/tdef/-/PSInjectionPlacement -C/tdef/-/PSInjectionSection -C/tdef/-/PSInjectionSubsection -Objective-C/cl/-/PSLink -C/tdef/-/PSLinkKind -C/func/-/psort -C/func/-/psort_b -C/func/-/psort_r -C/func/-/pthread -C/func/-/pthread_atfork -C/func/-/pthread_attr -C/func/-/pthread_attr_destroy -C/func/-/pthread_attr_getdetachstate -C/func/-/pthread_attr_getinheritsched -C/func/-/pthread_attr_getschedparam -C/func/-/pthread_attr_getschedpolicy -C/func/-/pthread_attr_getscope -C/func/-/pthread_attr_getstackaddr -C/func/-/pthread_attr_getstacksize -C/func/-/pthread_attr_init -C/func/-/pthread_attr_setdetachstate -C/func/-/pthread_attr_setinheritsched -C/func/-/pthread_attr_setschedparam -C/func/-/pthread_attr_setschedpolicy -C/func/-/pthread_attr_setscope -C/func/-/pthread_attr_setstackaddr -C/func/-/pthread_attr_setstacksize -C/func/-/pthread_cancel -C/func/-/pthread_cleanup_pop -C/func/-/pthread_cleanup_push -C/func/-/pthread_cond_broadcast -C/func/-/pthread_cond_destroy -C/func/-/pthread_cond_init -C/func/-/pthread_cond_signal -C/func/-/pthread_cond_timedwait -C/func/-/pthread_cond_wait -C/func/-/pthread_condattr -C/func/-/pthread_condattr_destroy -C/func/-/pthread_condattr_init -C/func/-/pthread_create -C/func/-/pthread_detach -C/func/-/pthread_equal -C/func/-/pthread_exit -C/func/-/pthread_getschedparam -C/func/-/pthread_getspecific -C/func/-/pthread_join -C/func/-/pthread_key_create -C/func/-/pthread_key_delete -C/func/-/pthread_kill -C/func/-/pthread_mutex_destroy -C/func/-/pthread_mutex_init -C/func/-/pthread_mutex_lock -C/func/-/pthread_mutex_trylock -C/func/-/pthread_mutex_unlock -C/func/-/pthread_mutexattr -C/func/-/pthread_mutexattr_destroy -C/func/-/pthread_mutexattr_getprioceiling -C/func/-/pthread_mutexattr_getprotocol -C/func/-/pthread_mutexattr_gettype -C/func/-/pthread_mutexattr_init -C/func/-/pthread_mutexattr_setprioceiling -C/func/-/pthread_mutexattr_setprotocol -C/func/-/pthread_mutexattr_settype -C/func/-/pthread_once -C/func/-/pthread_rwlock_destroy -C/func/-/pthread_rwlock_init -C/func/-/pthread_rwlock_rdlock -C/func/-/pthread_rwlock_tryrdlock -C/func/-/pthread_rwlock_trywrlock -C/func/-/pthread_rwlock_unlock -C/func/-/pthread_rwlock_wrlock -C/func/-/pthread_rwlockattr_destroy -C/func/-/pthread_rwlockattr_getpshared -C/func/-/pthread_rwlockattr_init -C/func/-/pthread_rwlockattr_setpshared -C/func/-/pthread_self -C/func/-/pthread_setcancelstate -C/func/-/pthread_setcanceltype -C/func/-/pthread_setschedparam -C/func/-/pthread_setspecific -C/func/-/pthread_setugid_np -C/func/-/pthread_sigmask -C/func/-/pthread_testcancel -C/func/-/PtInDSequenceData -C/func/-/PtInMovie -C/func/-/PtInTrack -C/func/-/ptrace -C/func/-/ptsname -Objective-C/instm/NSXMLDTD/publicID -Objective-C/instm/NSXMLDTDNode/publicID -Objective-C/instm/NSXMLParser/publicID -JavaScript/data/DocumentType/publicId -JavaScript/data/Entity/publicId -JavaScript/data/Notation/publicId -Objective-C/instm/NSNetService/publish -C++/instm/IOFireWireAVCTargetSpace/publishAVCUnitDirectory -C++/instm/ATADeviceNub/publishBusProperties -C++/instm/IONetworkController/publishMediumDictionary -C++/instm/IONetworkController/publishProperties -C++/instm/IOEthernetController/publishProperties -C++/instm/ATADeviceNub/publishProperties -C++/instm/IOHIDDevice/publishProperties -C++/clm/IOService/publishResource -C++/instm/ATADeviceNub/publishVendorProperties -Objective-C/instm/NSNetService/publishWithOptions: -Objective-C/instm/NSPopUpButton/pullsDown -Objective-C/instm/NSPopUpButtonCell/pullsDown -Objective-C/clm/NSCharacterSet/punctuationCharacterSet -Objective-C/clm/NSColor/purpleColor -Objective-C/instm/NSCursor/push -Objective-C/instm/ISyncSession/pushChange: -Objective-C/instm/ISyncSession/pushChangesFromRecord:withIdentifier: -JavaScript/instm/InjectedScriptHost/pushNodeByPathToFrontend -JavaScript/instm/InjectedScriptHost/pushNodePathToFrontend -JavaScript/instm/window/pushState -C/func/-/putc -C/func/-/putc_unlocked -Objective-C/instm/NSMatrix/putCell:atRow:column: -C/func/-/putchar -C/func/-/putchar_unlocked -C/func/-/putenv -JavaScript/instm/CanvasRenderingContext2D/putImageData -C/func/-/PutMovieIntoTypedHandle -C/func/-/putp -C/func/-/puts -C/func/-/pututxline -C/func/-/putw -C/func/-/putwc -C/func/-/putwc_l -C/func/-/putwchar -C/func/-/putwchar_l -C/func/-/putwin -C/func/-/pwcache -C/func/-/pwrite -Objective-C/cl/-/QCComposition -C/data/-/QCCompositionAttributeBuiltInKey -C/data/-/QCCompositionAttributeCategoryKey -C/data/-/QCCompositionAttributeCopyrightKey -C/data/-/QCCompositionAttributeDescriptionKey -C/data/-/QCCompositionAttributeHasConsumersKey -C/data/-/QCCompositionAttributeNameKey -C/data/-/QCCompositionAttributeTimeDependentKey -C/data/-/QCCompositionCategoryDistortion -C/data/-/QCCompositionCategoryStylize -C/data/-/QCCompositionCategoryUtility -C/data/-/QCCompositionInputAudioPeakKey -C/data/-/QCCompositionInputAudioSpectrumKey -C/data/-/QCCompositionInputDestinationImageKey -C/data/-/QCCompositionInputImageKey -C/data/-/QCCompositionInputPaceKey -C/data/-/QCCompositionInputPreviewModeKey -C/data/-/QCCompositionInputPrimaryColorKey -C/data/-/QCCompositionInputRSSArticleDurationKey -C/data/-/QCCompositionInputRSSFeedURLKey -C/data/-/QCCompositionInputScreenImageKey -C/data/-/QCCompositionInputSecondaryColorKey -C/data/-/QCCompositionInputSourceImageKey -C/data/-/QCCompositionInputTrackInfoKey -C/data/-/QCCompositionInputTrackPositionKey -C/data/-/QCCompositionInputTrackSignalKey -C/data/-/QCCompositionInputXKey -C/data/-/QCCompositionInputYKey -Objective-C/cl/-/QCCompositionLayer -C/data/-/QCCompositionOutputImageKey -C/data/-/QCCompositionOutputWebPageURLKey -Objective-C/cl/-/QCCompositionParameterView -Objective-C/cat/-/QCCompositionParameterViewDelegate -Objective-C/cl/-/QCCompositionPickerPanel -C/data/-/QCCompositionPickerPanelDidSelectCompositionNotification -Objective-C/cl/-/QCCompositionPickerView -Objective-C/cat/-/QCCompositionPickerViewDelegate -C/data/-/QCCompositionPickerViewDidSelectCompositionNotification -C/data/-/QCCompositionProtocolGraphicAnimation -C/data/-/QCCompositionProtocolGraphicTransition -C/data/-/QCCompositionProtocolImageFilter -C/data/-/QCCompositionProtocolImageTransition -C/data/-/QCCompositionProtocolMusicVisualizer -C/data/-/QCCompositionProtocolRSSVisualizer -C/data/-/QCCompositionProtocolScreenSaver -Objective-C/intf/-/QCCompositionRenderer -Objective-C/cl/-/QCCompositionRepository -C/data/-/QCCompositionRepositoryDidUpdateNotification -Objective-C/cl/-/QCPlugIn -C/data/-/QCPlugInAttributeDescriptionKey -C/data/-/QCPlugInAttributeNameKey -Objective-C/intf/-/QCPlugInContext -C/data/-/QCPlugInExecutionArgumentEventKey -C/data/-/QCPlugInExecutionArgumentMouseLocationKey -C/tdef/-/QCPlugInExecutionMode -Objective-C/intf/-/QCPlugInInputImageSource -Objective-C/intf/-/QCPlugInOutputImageProvider -C/data/-/QCPlugInPixelFormatARGB8 -C/data/-/QCPlugInPixelFormatBGRA8 -C/data/-/QCPlugInPixelFormatI8 -C/data/-/QCPlugInPixelFormatIf -C/data/-/QCPlugInPixelFormatRGBAf -C/tdef/-/QCPlugInTimeMode -Objective-C/cl/-/QCPlugInViewController -C/data/-/QCPortAttributeDefaultValueKey -C/data/-/QCPortAttributeMaximumValueKey -C/data/-/QCPortAttributeMenuItemsKey -C/data/-/QCPortAttributeMinimumValueKey -C/data/-/QCPortAttributeNameKey -C/data/-/QCPortAttributeTypeKey -C/data/-/QCPortTypeBoolean -C/data/-/QCPortTypeColor -C/data/-/QCPortTypeImage -C/data/-/QCPortTypeIndex -C/data/-/QCPortTypeNumber -C/data/-/QCPortTypeString -C/data/-/QCPortTypeStructure -Objective-C/cl/-/QCRenderer -C/data/-/QCRendererEventKey -C/data/-/QCRendererMouseLocationKey -Objective-C/cl/-/QCView -C/data/-/QCViewDidStartRenderingNotification -C/data/-/QCViewDidStopRenderingNotification -C/tag/-/QHdr -C/tdef/-/QHdrPtr -C/func/-/qiflush -C/func/-/QLength -Objective-C/intf/-/QLPreviewItem -Objective-C/cl/-/QLPreviewPanel -Objective-C/intf/-/QLPreviewPanelController -Objective-C/intf/-/QLPreviewPanelDataSource -Objective-C/intf/-/QLPreviewPanelDelegate -C/func/-/QLPreviewRequestCopyContentUTI -C/func/-/QLPreviewRequestCopyOptions -C/func/-/QLPreviewRequestCopyURL -C/func/-/QLPreviewRequestCreateContext -C/func/-/QLPreviewRequestCreatePDFContext -C/func/-/QLPreviewRequestFlushContext -C/func/-/QLPreviewRequestGetGeneratorBundle -C/func/-/QLPreviewRequestGetTypeID -C/func/-/QLPreviewRequestIsCancelled -C/tdef/-/QLPreviewRequestRef -C/func/-/QLPreviewRequestSetDataRepresentation -C/func/-/QLThumbnailImageCreate -C/func/-/QLThumbnailRequestCopyContentUTI -C/func/-/QLThumbnailRequestCopyOptions -C/func/-/QLThumbnailRequestCopyURL -C/func/-/QLThumbnailRequestCreateContext -C/func/-/QLThumbnailRequestFlushContext -C/func/-/QLThumbnailRequestGetGeneratorBundle -C/func/-/QLThumbnailRequestGetMaximumSize -C/func/-/QLThumbnailRequestGetTypeID -C/func/-/QLThumbnailRequestIsCancelled -C/tdef/-/QLThumbnailRequestRef -C/func/-/QLThumbnailRequestSetImage -C/func/-/QLThumbnailRequestSetImageWithData -C/data/-/QQCPlugInAttributeCopyrightKey -C/func/-/qsort -C/func/-/qsort_b -C/func/-/qsort_r -C/data/-/QTAddImageCodecQuality -C/data/-/QTAddImageCodecType -C/func/-/QTAddMoviePropertyListener -C/func/-/QTAddTrackPropertyListener -C/tdef/-/QTAtom -C/tdef/-/QTAtomContainer -C/tdef/-/QTAtomID -C/tdef/-/QTBandwidthNotificationProc -C/tdef/-/QTBandwidthNotificationUPP -C/tdef/-/QTBandwidthReference -C/func/-/QTBandwidthRelease -C/func/-/QTBandwidthRequest -C/func/-/QTBandwidthRequestForTimeBase -C/tdef/-/QTCallBack -C/tdef/-/QTCallBackProc -C/tdef/-/QTCallBackUPP -Objective-C/cl/-/QTCaptureAudioPreviewOutput -Objective-C/cl/-/QTCaptureConnection -C/data/-/QTCaptureConnectionAttributeDidChangeNotification -C/data/-/QTCaptureConnectionAttributeWillChangeNotification -C/data/-/QTCaptureConnectionAudioAveragePowerLevelsAttribute -C/data/-/QTCaptureConnectionAudioMasterVolumeAttribute -C/data/-/QTCaptureConnectionAudioPeakHoldLevelsAttribute -C/data/-/QTCaptureConnectionAudioVolumesAttribute -C/data/-/QTCaptureConnectionChangedAttributeKey -C/data/-/QTCaptureConnectionEnabledAudioChannelsAttribute -C/data/-/QTCaptureConnectionFormatDescriptionDidChangeNotification -C/data/-/QTCaptureConnectionFormatDescriptionWillChangeNotification -Objective-C/cl/-/QTCaptureDecompressedAudioOutput -Objective-C/cl/-/QTCaptureDecompressedVideoOutput -Objective-C/cl/-/QTCaptureDevice -C/data/-/QTCaptureDeviceAttributeDidChangeNotification -C/data/-/QTCaptureDeviceAttributeWillChangeNotification -C/data/-/QTCaptureDeviceAvailableInputSourcesAttribute -C/data/-/QTCaptureDeviceAVCTransportControlsAttribute -C/econst/-/QTCaptureDeviceAVCTransportControlsFastestForwardSpeed -C/econst/-/QTCaptureDeviceAVCTransportControlsFastestReverseSpeed -C/econst/-/QTCaptureDeviceAVCTransportControlsFastForwardSpeed -C/econst/-/QTCaptureDeviceAVCTransportControlsFastReverseSpeed -C/econst/-/QTCaptureDeviceAVCTransportControlsNormalForwardSpeed -C/econst/-/QTCaptureDeviceAVCTransportControlsNormalReverseSpeed -C/data/-/QTCaptureDeviceAVCTransportControlsPlaybackModeKey -C/econst/-/QTCaptureDeviceAVCTransportControlsSlowestForwardSpeed -C/econst/-/QTCaptureDeviceAVCTransportControlsSlowestReverseSpeed -C/econst/-/QTCaptureDeviceAVCTransportControlsSlowForwardSpeed -C/econst/-/QTCaptureDeviceAVCTransportControlsSlowReverseSpeed -C/data/-/QTCaptureDeviceAVCTransportControlsSpeed -C/data/-/QTCaptureDeviceAVCTransportControlsSpeedKey -C/econst/-/QTCaptureDeviceAVCTransportControlsStoppedSpeed -C/econst/-/QTCaptureDeviceAVCTransportControlsVeryFastForwardSpeed -C/econst/-/QTCaptureDeviceAVCTransportControlsVeryFastReverseSpeed -C/econst/-/QTCaptureDeviceAVCTransportControlsVerySlowForwardSpeed -C/econst/-/QTCaptureDeviceAVCTransportControlsVerySlowReverseSpeed -C/data/-/QTCaptureDeviceChangedAttributeKey -C/data/-/QTCaptureDeviceFormatDescriptionsDidChangeNotification -C/data/-/QTCaptureDeviceFormatDescriptionsWillChangeNotification -Objective-C/cl/-/QTCaptureDeviceInput -C/data/-/QTCaptureDeviceInputSourceIdentifierAttribute -C/data/-/QTCaptureDeviceInputSourceIdentifierKey -C/data/-/QTCaptureDeviceInputSourceLocalizedDisplayNameKey -C/data/-/QTCaptureDeviceLegacySequenceGrabberAttribute -C/data/-/QTCaptureDeviceLinkedDevicesAttribute -C/data/-/QTCaptureDeviceSuspendedAttribute -C/data/-/QTCaptureDeviceWasConnectedNotification -C/data/-/QTCaptureDeviceWasDisconnectedNotification -Objective-C/cl/-/QTCaptureFileOutput -C/tdef/-/QTCaptureFileOutputBufferDestination -C/econst/-/QTCaptureFileOutputBufferDestinationNewFile -C/econst/-/QTCaptureFileOutputBufferDestinationOldFile -Objective-C/cl/-/QTCaptureInput -Objective-C/cl/-/QTCaptureLayer -Objective-C/cl/-/QTCaptureMovieFileOutput -Objective-C/cl/-/QTCaptureOutput -Objective-C/cl/-/QTCaptureSession -C/data/-/QTCaptureSessionErrorKey -C/data/-/QTCaptureSessionRuntimeErrorNotification -Objective-C/cl/-/QTCaptureVideoPreviewOutput -Objective-C/cl/-/QTCaptureView -Objective-C/cl/-/QTCompressionOptions -C/data/-/QTCompressionOptions120SizeH264Video -C/data/-/QTCompressionOptions120SizeMPEG4Video -C/data/-/QTCompressionOptions240SizeH264Video -C/data/-/QTCompressionOptions240SizeMPEG4Video -C/data/-/QTCompressionOptionsHighQualityAACAudio -C/data/-/QTCompressionOptionsLosslessALACAudio -C/data/-/QTCompressionOptionsLosslessAnimationVideo -C/data/-/QTCompressionOptionsLosslessAppleIntermediateVideo -C/data/-/QTCompressionOptionsSD480SizeH264Video -C/data/-/QTCompressionOptionsSD480SizeMPEG4Video -C/data/-/QTCompressionOptionsVoiceQualityAACAudio -C/func/-/QTCopyMediaMetaData -C/func/-/QTCopyMovieMetaData -C/func/-/QTCopyTrackMetaData -Objective-C/cl/-/QTDataReference -C/data/-/QTDataReferenceTypeFile -C/data/-/QTDataReferenceTypeHandle -C/data/-/QTDataReferenceTypePointer -C/data/-/QTDataReferenceTypeResource -C/data/-/QTDataReferenceTypeURL -C/func/-/QTEqualTimeRanges -C/data/-/QTErrorCaptureInputKey -C/data/-/QTErrorCaptureOutputKey -C/econst/-/QTErrorDeviceAlreadyUsedbyAnotherSession -C/econst/-/QTErrorDeviceExcludedByAnotherDevice -C/econst/-/QTErrorDeviceInUseByAnotherApplication -C/data/-/QTErrorDeviceKey -C/econst/-/QTErrorDeviceNotConnected -C/econst/-/QTErrorDeviceWasDisconnected -C/econst/-/QTErrorDiskFull -C/data/-/QTErrorExcludingDeviceKey -C/data/-/QTErrorFileSizeKey -C/econst/-/QTErrorIncompatibleInput -C/econst/-/QTErrorIncompatibleOutput -C/econst/-/QTErrorMaximumDurationReached -C/econst/-/QTErrorMaximumFileSizeReached -C/econst/-/QTErrorMaximumNumberOfSamplesForFileFormatReached -C/econst/-/QTErrorMediaChanged -C/econst/-/QTErrorMediaDiscontinuity -C/econst/-/QTErrorNoDataCaptured -C/data/-/QTErrorRecordingSuccesfullyFinishedKey -C/econst/-/QTErrorSessionConfigurationChanged -C/data/-/QTErrorTimeKey -C/econst/-/QTErrorUnknown -C/tag/-/QTEventRecord -C/tdef/-/QTEventRecordPtr -Objective-C/cl/-/QTFormatDescription -C/data/-/QTFormatDescriptionAudioChannelLayoutAttribute -C/data/-/QTFormatDescriptionAudioMagicCookieAttribute -C/data/-/QTFormatDescriptionAudioStreamBasicDescriptionAttribute -C/data/-/QTFormatDescriptionVideoCleanApertureDisplaySizeAttribute -C/data/-/QTFormatDescriptionVideoEncodedPixelsSizeAttribute -C/data/-/QTFormatDescriptionVideoProductionApertureDisplaySizeAttribute -C/func/-/QTGetFileNameExtension -C/func/-/QTGetMIMETypeInfo -C/func/-/QTGetMovieProperty -C/func/-/QTGetMoviePropertyInfo -C/func/-/QTGetPixelFormatDepthForImageDescription -C/func/-/QTGetPixelSize -C/func/-/QTGetPixMapHandleGammaLevel -C/func/-/QTGetPixMapHandleRequestedGammaLevel -C/func/-/QTGetPixMapHandleRowBytes -C/func/-/QTGetPixMapPtrGammaLevel -C/func/-/QTGetPixMapPtrRequestedGammaLevel -C/func/-/QTGetPixMapPtrRowBytes -C/func/-/QTGetTimeInterval -C/func/-/QTGetTimeRecord -C/func/-/QTGetTrackProperty -C/func/-/QTGetTrackPropertyInfo -C/econst/-/QTIncludeAggressiveTypes -C/econst/-/QTIncludeAllTypes -C/econst/-/QTIncludeCommonTypes -C/econst/-/QTIncludeStillImageTypes -C/econst/-/QTIncludeTranslatableTypes -C/func/-/QTIntersectionTimeRange -C/data/-/QTKitErrorDomain -C/func/-/QTMakeTime -C/func/-/QTMakeTimeRange -C/func/-/QTMakeTimeScaled -C/func/-/QTMakeTimeWithTimeInterval -C/func/-/QTMakeTimeWithTimeRecord -Objective-C/cl/-/QTMedia -C/data/-/QTMediaCharacteristicAudio -C/data/-/QTMediaCharacteristicCanSendVideo -C/data/-/QTMediaCharacteristicCanStep -C/data/-/QTMediaCharacteristicHasNoDuration -C/data/-/QTMediaCharacteristicHasSkinData -C/data/-/QTMediaCharacteristicHasVideoFrameRate -C/data/-/QTMediaCharacteristicNonLinear -C/data/-/QTMediaCharacteristicProvidesActions -C/data/-/QTMediaCharacteristicProvidesKeyFocus -C/data/-/QTMediaCharacteristicVisual -C/data/-/QTMediaCreationTimeAttribute -C/data/-/QTMediaDurationAttribute -C/data/-/QTMediaModificationTimeAttribute -C/data/-/QTMediaQualityAttribute -C/data/-/QTMediaSampleCountAttribute -C/data/-/QTMediaTimeScaleAttribute -C/data/-/QTMediaType3D -C/data/-/QTMediaTypeAttribute -C/data/-/QTMediaTypeBase -C/data/-/QTMediaTypeClosedCaption -C/data/-/QTMediaTypeFlash -C/data/-/QTMediaTypeHint -C/data/-/QTMediaTypeMovie -C/data/-/QTMediaTypeMPEG -C/data/-/QTMediaTypeMusic -C/data/-/QTMediaTypeMuxed -C/data/-/QTMediaTypeQTVR -C/data/-/QTMediaTypeQuartzComposer -C/data/-/QTMediaTypeSkin -C/data/-/QTMediaTypeSound -C/data/-/QTMediaTypeSprite -C/data/-/QTMediaTypeStream -C/data/-/QTMediaTypeSubtitle -C/data/-/QTMediaTypeText -C/data/-/QTMediaTypeTimeCode -C/data/-/QTMediaTypeTween -C/data/-/QTMediaTypeVideo -C/func/-/QTMetaDataAddItem -C/func/-/QTMetaDataGetItemProperty -C/func/-/QTMetaDataGetItemPropertyInfo -C/func/-/QTMetaDataGetItemValue -C/func/-/QTMetaDataGetNextItem -C/func/-/QTMetaDataGetProperty -C/func/-/QTMetaDataGetPropertyInfo -C/func/-/QTMetaDataRelease -C/func/-/QTMetaDataRemoveItem -C/func/-/QTMetaDataRemoveItemsWithKey -C/func/-/QTMetaDataRetain -C/func/-/QTMetaDataSetItem -C/func/-/QTMetaDataSetItemProperty -C/func/-/QTMetaDataSetProperty -C/func/-/QTMLCreateMutex -C/func/-/QTMLDestroyMutex -C/econst/-/qtmlDllEntryNotFoundErr -C/econst/-/qtmlDllLoadErr -C/func/-/QTMLGrabMutex -C/tdef/-/QTMLMutex -C/func/-/QTMLReturnMutex -C/func/-/QTMLTryGrabMutex -C/func/-/QTMLYieldCPU -C/func/-/QTMLYieldCPUTime -Objective-C/cl/-/QTMovie -C/data/-/QTMovieActiveSegmentAttribute -C/data/-/QTMovieApertureModeAttribute -C/data/-/QTMovieApertureModeClassic -C/data/-/QTMovieApertureModeClean -C/data/-/QTMovieApertureModeDidChangeNotification -C/data/-/QTMovieApertureModeEncodedPixels -C/data/-/QTMovieApertureModeProduction -C/data/-/QTMovieAskUnresolvedDataRefsAttribute -C/data/-/QTMovieAutoAlternatesAttribute -C/data/-/QTMovieChapterDidChangeNotification -C/data/-/QTMovieChapterListDidChangeNotification -C/data/-/QTMovieChapterName -C/data/-/QTMovieChapterStartTime -C/data/-/QTMovieChapterTargetTrackAttribute -C/data/-/QTMovieCloseWindowRequestNotification -C/data/-/QTMovieCopyrightAttribute -C/data/-/QTMovieCreationTimeAttribute -C/data/-/QTMovieCurrentSizeAttribute -C/data/-/QTMovieCurrentTimeAttribute -C/data/-/QTMovieDataAttribute -C/data/-/QTMovieDataReferenceAttribute -C/data/-/QTMovieDataSizeAttribute -C/data/-/QTMovieDelegateAttribute -C/data/-/QTMovieDidEndNotification -C/data/-/QTMovieDisplayNameAttribute -C/data/-/QTMovieDontInteractWithUserAttribute -C/data/-/QTMovieDurationAttribute -C/data/-/QTMovieEditabilityDidChangeNotification -C/data/-/QTMovieEditableAttribute -C/data/-/QTMovieEditedNotification -C/data/-/QTMovieEnterFullScreenRequestNotification -C/data/-/QTMovieExitFullScreenRequestNotification -C/data/-/QTMovieExport -C/data/-/QTMovieExportManufacturer -C/data/-/QTMovieExportSettings -C/data/-/QTMovieExportType -C/data/-/QTMovieFileNameAttribute -C/data/-/QTMovieFileOffsetAttribute -C/tdef/-/QTMovieFileTypeOptions -C/data/-/QTMovieFlatten -C/data/-/QTMovieFrameImageDeinterlaceFields -C/data/-/QTMovieFrameImageHighQuality -C/data/-/QTMovieFrameImageOpenGLContext -C/data/-/QTMovieFrameImagePixelFormat -C/data/-/QTMovieFrameImageRepresentationsType -C/data/-/QTMovieFrameImageSessionMode -C/data/-/QTMovieFrameImageSingleField -C/data/-/QTMovieFrameImageSize -C/data/-/QTMovieFrameImageType -C/data/-/QTMovieFrameImageTypeCGImageRef -C/data/-/QTMovieFrameImageTypeCIImage -C/data/-/QTMovieFrameImageTypeCVOpenGLTextureRef -C/data/-/QTMovieFrameImageTypeCVPixelBufferRef -C/data/-/QTMovieFrameImageTypeNSImage -C/data/-/QTMovieHasApertureModeDimensionsAttribute -C/data/-/QTMovieHasAudioAttribute -C/data/-/QTMovieHasDurationAttribute -C/data/-/QTMovieHasVideoAttribute -C/data/-/QTMovieIsActiveAttribute -C/data/-/QTMovieIsInteractiveAttribute -C/data/-/QTMovieIsLinearAttribute -C/data/-/QTMovieIsSteppableAttribute -Objective-C/cl/-/QTMovieLayer -C/tdef/-/QTMovieLoadState -C/data/-/QTMovieLoadStateAttribute -C/econst/-/QTMovieLoadStateComplete -C/data/-/QTMovieLoadStateDidChangeNotification -C/econst/-/QTMovieLoadStateError -C/data/-/QTMovieLoadStateErrorAttribute -C/econst/-/QTMovieLoadStateLoaded -C/econst/-/QTMovieLoadStateLoading -C/econst/-/QTMovieLoadStatePlayable -C/econst/-/QTMovieLoadStatePlaythroughOK -C/data/-/QTMovieLoopModeDidChangeNotification -C/data/-/QTMovieLoopsAttribute -C/data/-/QTMovieLoopsBackAndForthAttribute -C/data/-/QTMovieMessageNotificationParameter -C/data/-/QTMovieMessageStringPostedNotification -C/data/-/QTMovieModificationTimeAttribute -C/data/-/QTMovieMutedAttribute -C/data/-/QTMovieNaturalSizeAttribute -C/data/-/QTMovieNaturalSizeDidChangeNotification -C/data/-/QTMovieOpenAsyncOKAttribute -C/data/-/QTMovieOpenAsyncRequiredAttribute -C/data/-/QTMovieOpenForPlaybackAttribute -C/data/-/QTMoviePasteboardAttribute -C/data/-/QTMoviePasteboardType -C/data/-/QTMoviePlaysAllFramesAttribute -C/data/-/QTMoviePlaysSelectionOnlyAttribute -C/data/-/QTMoviePosterTimeAttribute -C/data/-/QTMoviePreferredMutedAttribute -C/data/-/QTMoviePreferredRateAttribute -C/data/-/QTMoviePreferredVolumeAttribute -C/data/-/QTMoviePreviewModeAttribute -C/data/-/QTMoviePreviewRangeAttribute -C/data/-/QTMovieRateAttribute -C/data/-/QTMovieRateChangesPreservePitchAttribute -C/data/-/QTMovieRateDidChangeNotification -C/data/-/QTMovieRateDidChangeNotificationParameter -C/data/-/QTMovieResolveDataRefsAttribute -C/data/-/QTMovieSelectionAttribute -C/data/-/QTMovieSelectionDidChangeNotification -C/data/-/QTMovieSizeDidChangeNotification -C/data/-/QTMovieStatusCodeNotificationParameter -C/data/-/QTMovieStatusFlagsNotificationParameter -C/data/-/QTMovieStatusStringNotificationParameter -C/data/-/QTMovieStatusStringPostedNotification -C/data/-/QTMovieTargetIDNotificationParameter -C/data/-/QTMovieTargetNameNotificationParameter -C/data/-/QTMovieTimeDidChangeNotification -C/data/-/QTMovieTimeScaleAttribute -C/data/-/QTMovieUneditableException -C/data/-/QTMovieURLAttribute -Objective-C/cl/-/QTMovieView -C/data/-/QTMovieViewControllerVisibleBinding -C/data/-/QTMovieViewFillColorBinding -C/data/-/QTMovieViewMovieBinding -C/data/-/QTMovieViewPreservesAspectRatioBinding -C/data/-/QTMovieVolumeAttribute -C/data/-/QTMovieVolumeDidChangeNotification -C/func/-/QTNewGWorld -C/func/-/QTNewGWorldFromPtr -C/tdef/-/QTNextTaskNeededSoonerCallbackProc -C/tdef/-/QTNextTaskNeededSoonerCallbackUPP -C/func/-/QTOSTypeForString -C/econst/-/qtParamErr -C/tdef/-/QTParameterDialog -C/tdef/-/QTParameterDialogOptions -C/tdef/-/QTParameterValidationOptions -C/func/-/QTPhotoDefineHuffmanTable -C/func/-/QTPhotoDefineQuantizationTable -C/func/-/QTPhotoSetRestartInterval -C/func/-/QTPhotoSetSampling -C/func/-/QTRemoveMoviePropertyListener -C/func/-/QTRemoveTrackPropertyListener -Objective-C/cl/-/QTSampleBuffer -C/data/-/QTSampleBufferDateRecordedAttribute -C/data/-/QTSampleBufferExplicitSceneChange -C/data/-/QTSampleBufferHostTimeAttribute -C/data/-/QTSampleBufferSceneChangeTypeAttribute -C/data/-/QTSampleBufferSMPTETimeAttribute -C/data/-/QTSampleBufferTimeStampDiscontinuitySceneChange -C/func/-/QTSampleTableAddSampleDescription -C/func/-/QTSampleTableAddSampleReferences -C/func/-/QTSampleTableCopySampleDescription -C/func/-/QTSampleTableCreateMutable -C/func/-/QTSampleTableCreateMutableCopy -C/func/-/QTSampleTableGetDataOffset -C/func/-/QTSampleTableGetDataSizePerSample -C/func/-/QTSampleTableGetDecodeDuration -C/func/-/QTSampleTableGetDisplayOffset -C/func/-/QTSampleTableGetNextAttributeChange -C/func/-/QTSampleTableGetNumberOfSamples -C/func/-/QTSampleTableGetProperty -C/func/-/QTSampleTableGetPropertyInfo -C/func/-/QTSampleTableGetSampleDescriptionID -C/func/-/QTSampleTableGetSampleFlags -C/func/-/QTSampleTableGetTimeScale -C/func/-/QTSampleTableGetTypeID -C/func/-/QTSampleTableRelease -C/func/-/QTSampleTableReplaceRange -C/func/-/QTSampleTableRetain -C/func/-/QTSampleTableSetProperty -C/func/-/QTSampleTableSetTimeScale -C/tdef/-/QTScheduledBandwidthPtr -C/tag/-/QTScheduledBandwidthRecord -C/tdef/-/QTScheduledBandwidthReference -C/func/-/QTScheduledBandwidthRelease -C/func/-/QTScheduledBandwidthRequest -C/func/-/QTSetMovieProperty -C/func/-/QTSetPixMapHandleGammaLevel -C/func/-/QTSetPixMapHandleRequestedGammaLevel -C/func/-/QTSetPixMapHandleRowBytes -C/func/-/QTSetPixMapPtrGammaLevel -C/func/-/QTSetPixMapPtrRequestedGammaLevel -C/func/-/QTSetPixMapPtrRowBytes -C/func/-/QTSetTrackProperty -C/func/-/QTSMPTETimeCompare -C/func/-/QTStringForOSType -C/func/-/QTStringFromSMPTETime -C/func/-/QTStringFromTime -C/func/-/QTStringFromTimeRange -C/tag/-/QTTime -C/func/-/QTTimeCompare -C/func/-/QTTimeDecrement -C/func/-/QTTimeFromString -C/func/-/QTTimeIncrement -C/func/-/QTTimeInTimeRange -C/tdef/-/QTTimeRange -C/func/-/QTTimeRangeEnd -C/func/-/QTTimeRangeFromString -Objective-C/instm/NSValue/QTTimeRangeValue -Objective-C/instm/NSValue/QTTimeValue -Objective-C/cl/-/QTTrack -C/data/-/QTTrackBoundsAttribute -C/data/-/QTTrackCreationTimeAttribute -C/data/-/QTTrackDimensionsAttribute -C/data/-/QTTrackDisplayNameAttribute -C/data/-/QTTrackEnabledAttribute -C/data/-/QTTrackFormatSummaryAttribute -C/data/-/QTTrackHasApertureModeDimensionsAttribute -C/data/-/QTTrackIDAttribute -C/data/-/QTTrackIsChapterTrackAttribute -C/data/-/QTTrackLayerAttribute -C/data/-/QTTrackMediaTypeAttribute -C/data/-/QTTrackModificationTimeAttribute -C/data/-/QTTrackRangeAttribute -C/data/-/QTTrackTimeScaleAttribute -C/data/-/QTTrackUsageInMovieAttribute -C/data/-/QTTrackUsageInPosterAttribute -C/data/-/QTTrackUsageInPreviewAttribute -C/data/-/QTTrackVolumeAttribute -C/func/-/QTUnionTimeRange -C/func/-/QTUpdateGWorld -C/func/-/QTVideoOutputBaseSetEchoPort -C/func/-/QTVideoOutputBegin -C/tdef/-/QTVideoOutputComponent -C/func/-/QTVideoOutputCopyIndAudioOutputDeviceUID -C/func/-/QTVideoOutputCustomConfigureDisplay -C/func/-/QTVideoOutputEnd -C/func/-/QTVideoOutputGetClientName -C/func/-/QTVideoOutputGetClock -C/func/-/QTVideoOutputGetCurrentClientName -C/func/-/QTVideoOutputGetDisplayMode -C/func/-/QTVideoOutputGetDisplayModeList -C/func/-/QTVideoOutputGetGWorld -C/func/-/QTVideoOutputGetGWorldParameters -C/func/-/QTVideoOutputGetIndImageDecompressor -C/func/-/QTVideoOutputGetIndSoundOutput -C/func/-/QTVideoOutputRestoreState -C/func/-/QTVideoOutputSaveState -C/func/-/QTVideoOutputSetClientName -C/func/-/QTVideoOutputSetDisplayMode -C/func/-/QTVideoOutputSetEchoPort -JavaScript/instm/CanvasRenderingContext2D/quadraticCurveTo -Objective-C/instm/PDFAnnotationMarkup/quadrilateralPoints -C/func/-/QuadToQuadMatrix -Objective-C/instm/NSDateComponents/quarter -Objective-C/instm/NSDateFormatter/quarterSymbols -Objective-C/instm/NSURL/query -Objective-C/instm/NSObject/query:foundResults:error: -JavaScript/instm/Document/queryCommandEnabled -JavaScript/instm/Document/queryCommandIndeterm -JavaScript/instm/Document/queryCommandState -JavaScript/instm/Document/queryCommandSupported -JavaScript/instm/Document/queryCommandValue -C/func/-/querylocale -JavaScript/instm/DocumentFragment/querySelector -JavaScript/instm/Document/querySelector -JavaScript/instm/Element/querySelector -JavaScript/instm/Document/querySelectorAll -JavaScript/instm/DocumentFragment/querySelectorAll -JavaScript/instm/Element/querySelectorAll -C/func/-/QueryUnicodeMappings -Objective-C/clm/ODQuery/queryWithNode:forRecordTypes:attribute:matchType:queryValues:returnAttributes:maximumResults:error: -C/func/-/queue -C++/data/IOATABusCommand/queueChain -Objective-C/instm/NSOperation/queuePriority -Objective-C/instm/QTMedia/quickTimeMedia -Objective-C/instm/QTMovie/quickTimeMovie -Objective-C/instm/QTMovie/quickTimeMovieController -Objective-C/instm/QTFormatDescription/quickTimeSampleDescription -Objective-C/instm/QTTrack/quickTimeTrack -JavaScript/clconst/DOMCoreException/QUOTA_EXCEEDED_ERR -C/func/-/quotactl -Objective-C/clm/NSTextCheckingResult/quoteCheckingResultWithRange:replacementString: -C/func/-/qw -JavaScript/data/SVGCircleElement/r -JavaScript/data/SVGRadialGradientElement/r -JavaScript/data/SVGPathSegArcRel/r1 -JavaScript/data/SVGPathSegArcAbs/r1 -JavaScript/data/SVGPathSegArcRel/r2 -JavaScript/data/SVGPathSegArcAbs/r2 -JavaScript/data/SVGFEMorphologyElement/radiusX -JavaScript/data/SVGFEMorphologyElement/radiusY -C/func/-/radixsort -Objective-C/instm/NSException/raise -C/func/-/raise -Objective-C/clm/NSException/raise:format: -Objective-C/clm/NSException/raise:format:arguments: -Objective-C/instm/NSTextView/raiseBaseline: -C/func/-/rand -C/func/-/rand48 -C/func/-/RAND_add -C/func/-/RAND_bytes -C/func/-/RAND_cleanup -C/func/-/RAND_egd -C/func/-/RAND_egd_bytes -C/func/-/RAND_event -C/func/-/RAND_file_name -C/func/-/RAND_get_rand_method -C/func/-/RAND_load_file -C/func/-/RAND_pseudo_bytes -C/func/-/RAND_query_egd_bytes -C/func/-/rand_r -C/func/-/RAND_screen -C/func/-/RAND_seed -C/func/-/RAND_set_rand_engine -C/func/-/RAND_set_rand_method -C/func/-/RAND_SSLeay -C/func/-/RAND_status -C/func/-/RAND_write_file -C/func/-/random -Objective-C/instp/NSTextCheckingResult/range -Objective-C/instm/NSTextCheckingResult/range -JavaScript/data/DOMWindow/Range -JavaScript/cl/-/Range -Objective-C/instm/NSScriptExecutionContext/rangeContainerObject -JavaScript/data/DOMSelection/rangeCount -JavaScript/data/DOMWindow/RangeException -JavaScript/cl/-/RangeException -Objective-C/instm/NSTextView/rangeForUserCharacterAttributeChange -Objective-C/instm/NSTextView/rangeForUserCompletion -Objective-C/instm/NSTextView/rangeForUserParagraphAttributeChange -Objective-C/instm/NSTextView/rangeForUserTextChange -Objective-C/instm/NSString/rangeOfCharacterFromSet: -Objective-C/instm/NSString/rangeOfCharacterFromSet:options: -Objective-C/instm/NSString/rangeOfCharacterFromSet:options:range: -Objective-C/instm/NSString/rangeOfComposedCharacterSequenceAtIndex: -Objective-C/instm/NSString/rangeOfComposedCharacterSequencesForRange: -Objective-C/instm/NSData/rangeOfData:options:range: -Objective-C/instm/NSLayoutManager/rangeOfNominallySpacedGlyphsContainingIndex: -Objective-C/instm/NSString/rangeOfString: -Objective-C/instm/NSString/rangeOfString:options: -Objective-C/instm/NSString/rangeOfString:options:range: -Objective-C/instm/NSString/rangeOfString:options:range:locale: -Objective-C/instm/NSAttributedString/rangeOfTextBlock:atIndex: -Objective-C/instm/NSAttributedString/rangeOfTextList:atIndex: -Objective-C/instm/NSAttributedString/rangeOfTextTable:atIndex: -Objective-C/instm/NSCalendar/rangeOfUnit:inUnit:forDate: -Objective-C/instm/NSCalendar/rangeOfUnit:startDate:interval:forDate: -JavaScript/data/ValidityState/rangeOverflow -Objective-C/instm/NSTextView/rangesForUserCharacterAttributeChange -Objective-C/instm/NSTextView/rangesForUserParagraphAttributeChange -Objective-C/instm/NSTextView/rangesForUserTextChange -JavaScript/data/ValidityState/rangeUnderflow -Objective-C/instm/NSValue/rangeValue -C/tag/-/ranlib -Objective-C/instm/NSSpeechSynthesizer/rate -Objective-C/instm/QTMovie/rate -C/func/-/raw -C/func/-/rc4 -C/func/-/RC4 -C/func/-/RC4_set_key -C/func/-/rcmd -C/func/-/rcmd_af -C/func/-/rcmdsh -C/econst/-/rdVerify -C/econst/-/rdVerifyBit -C/econst/-/rdVerifyMask -Objective-C/instp/PSEntry/read -C/func/-/read -C++/instm/IOBlockStorageDriver/read -C++/instm/IOFilterScheme/read -C++/instm/IOCDMedia/read -C++/instm/IONetworkData/read -C++/instm/IOMedia/read -C++/instm/IOStorage/read -C++/instm/IOUSBPipe/Read -C++/instm/IOUSBController/Read -C++/instm/IOPartitionScheme/read -Objective-C/instm/NSInputStream/read:maxLength: -C/func/-/read_all_mibs -C/func/-/read_config -C/func/-/read_config_print_usage -C/func/-/read_configs -C/func/-/read_mib -C/func/-/read_module -C/func/-/read_module_node -C/func/-/read_objid -C/func/-/read_premib_configs -Objective-C/instm/NSTextView/readablePasteboardTypes -Objective-C/clm/NSDocument/readableTypes -Objective-C/intfcm/NSPasteboardReading/readableTypesForPasteboard: -JavaScript/instm/FileReader/readAsBinaryString -JavaScript/instm/FileReader/readAsDataURL -JavaScript/instm/FileReader/readAsText -C++/instm/IODMACommand/readBytes -C++/instm/IOMemoryDescriptor/readBytes -C++/instm/IONetworkData/readBytes -C++/instm/IOCDMedia/readCD -Objective-C/instm/NSFileHandle/readDataOfLength: -Objective-C/instm/NSFileHandle/readDataToEndOfFile -C++/instm/IOFramebuffer/readDDCClock -C++/instm/IOFramebuffer/readDDCData -C/func/-/readdir -C/func/-/readdir_r -C++/instm/IODVDMedia/readDiscInfo -C++/instm/IOBDMedia/readDiscInfo -C++/instm/IOCDMedia/readDiscInfo -C++/instm/IOBDBlockStorageDevice/readDiscStructure -Objective-C/instm/NSPasteboard/readFileContentsType:toFile: -Objective-C/instm/NSPasteboard/readFileWrapper -Objective-C/instm/NSDocument/readFromData:ofType:error: -Objective-C/instm/NSMutableAttributedString/readFromData:options:documentAttributes: -Objective-C/instm/NSMutableAttributedString/readFromData:options:documentAttributes:error: -Objective-C/instm/NSDocument/readFromFile:ofType: -Objective-C/instm/NSDocument/readFromFileWrapper:ofType:error: -Objective-C/instm/NSDocument/readFromURL:ofType: -Objective-C/instm/NSPersistentDocument/readFromURL:ofType:error: -Objective-C/instm/NSDocument/readFromURL:ofType:error: -Objective-C/instm/NSMutableAttributedString/readFromURL:options:documentAttributes: -Objective-C/instm/NSMutableAttributedString/readFromURL:options:documentAttributes:error: -Objective-C/instm/NSFileWrapper/readFromURL:options:error: -Objective-C/instm/NSFileHandle/readInBackgroundAndNotify -Objective-C/instm/NSFileHandle/readInBackgroundAndNotifyForModes: -Objective-C/intfcm/NSPasteboardReading/readingOptionsForType:pasteboard: -C++/instm/IOFireWirePCRSpace/readInputMasterPlug -C++/instm/IOFireWirePCRSpace/readInputPlug -C++/instm/IOCDMedia/readISRC -C/func/-/readlink -Objective-C/instm/IOBluetoothHostController/readLinkQualityForDevice: -Objective-C/instm/NSObject(IOBluetoothHostControllerDelegate)/readLinkQualityForDeviceComplete:device:info:error: -C++/instm/IOCDMedia/readMCN -C++/instm/IONetworkUserClient/readNetworkData -Objective-C/instm/NSPasteboard/readObjectsForClasses:options: -JavaScript/data/HTMLTextAreaElement/readOnly -JavaScript/data/HTMLInputElement/readOnly -JavaScript/data/TestObj/readOnlyIntAttr -JavaScript/data/TestObj/readOnlyStringAttr -JavaScript/data/TestObj/readOnlyTestObjAttr -C++/instm/IOFireWirePCRSpace/readOutputMasterPlug -C++/instm/IOFireWirePCRSpace/readOutputPlug -C/func/-/ReadPartialResource -C/func/-/readpassphrase -JavaScript/instm/WebGLRenderingContext/readPixels -Objective-C/instm/NSPageLayout/readPrintInfo -Objective-C/instm/IOBluetoothHostController/readRSSIForDevice: -Objective-C/instm/NSObject(IOBluetoothHostControllerDelegate)/readRSSIForDeviceComplete:device:info:error: -Objective-C/instm/NSText/readRTFDFromFile: -C++/instm/IODVDMedia/readRZoneInfo -Objective-C/instm/NSTextView/readSelectionFromPasteboard: -Objective-C/instm/NSObject/readSelectionFromPasteboard: -Objective-C/instm/NSTextView/readSelectionFromPasteboard:type: -C++/instm/IOBDMedia/readStructure -C++/instm/IODVDMedia/readStructure -C++/instm/IODVDBlockStorageDriver/readStructure -C++/instm/IOCDMedia/readTOC -Objective-C/instm/NSFileHandle/readToEndOfFileInBackgroundAndNotify -Objective-C/instm/NSFileHandle/readToEndOfFileInBackgroundAndNotifyForModes: -C++/instm/IOCDMedia/readTrackInfo -C++/instm/IOBDMedia/readTrackInfo -JavaScript/instm/DatabaseSync/readTransaction -JavaScript/instm/Database/readTransaction -C/func/-/readv -C++/instm/IOUSBControllerV2/ReadV2 -C/data/-/readyFlag -JavaScript/data/Document/readyState -JavaScript/data/EventSource/readyState -JavaScript/data/HTMLMediaElement/readyState -JavaScript/data/IDBRequest/readyState -JavaScript/data/FileReader/readyState -JavaScript/data/XMLHttpRequest/readyState -JavaScript/data/WebSocket/readyState -C/func/-/realloc -C/func/-/reallocf -Objective-C/instm/NSURLProtectionSpace/realm -C/func/-/realpath -Objective-C/instm/NSTreeController/rearrangeObjects -Objective-C/instm/NSArrayController/rearrangeObjects -Objective-C/instm/NSException/reason -C/func/-/reboot -Objective-C/instm/NSImage/recache -Objective-C/instm/NSWindow/recalculateKeyViewLoop -C++/instm/IOStreamBuffer/receiveClientReference -Objective-C/instm/XGAuthenticator/receiveData: -Objective-C/intfm/WebDocumentRepresentation/receivedData:withDataSource: -Objective-C/intfm/WebDocumentRepresentation/receivedError:withDataSource: -C++/instm/IONetworkController/receivePacket -Objective-C/instm/NSPortMessage/receivePort -Objective-C/instm/NSConnection/receivePort -Objective-C/instm/NSScriptCommand/receiversSpecifier -Objective-C/instm/NSURLProtectionSpace/receivesCredentialSecurely -Objective-C/instm/IOBluetoothDevice/recentAccessDate -Objective-C/clm/IOBluetoothDevice/recentDevices: -Objective-C/instm/NSDocumentController/recentDocumentURLs -Objective-C/instm/NSSearchField/recentsAutosaveName -Objective-C/instm/NSSearchFieldCell/recentsAutosaveName -Objective-C/instm/NSSearchField/recentSearches -Objective-C/instm/NSSearchFieldCell/recentSearches -Objective-C/binding/NSSearchField/recentSearches -Objective-C/instm/CIContext/reclaimResources -C/func/-/recno -Objective-C/intfm/IMKStateSetting/recognizedEvents: -Objective-C/instm/ISyncChange/record -Objective-C/instm/ABAddressBook/recordClassFromUniqueId: -Objective-C/clm/NSAppleEventDescriptor/recordDescriptor -Objective-C/instm/ODRecord/recordDetailsForAttributes:error: -Objective-C/instm/QTCaptureFileOutput/recordedDuration -Objective-C/instm/QTCaptureFileOutput/recordedFileSize -Objective-C/instm/ABAddressBook/recordForUniqueId: -Objective-C/instm/ISyncChange/recordIdentifier -Objective-C/instm/ISyncRecordSnapshot/recordIdentifierForReference:isModified: -C++/instm/IOBlockStorageDriver/recordMediaParameters -Objective-C/instp/ODRecord/recordName -Objective-C/instm/ODRecord/recordName -Objective-C/instm/ISyncRecordSnapshot/recordReferenceForRecordWithIdentifier: -Objective-C/instm/NSObject/recordsForEntityName:moreComing:error: -Objective-C/instm/ABAddressBook/recordsMatchingSearchElement: -C++/instm/IOCatalogue/recordStartupExtensions -Objective-C/instm/ISyncRecordSnapshot/recordsWithIdentifiers: -Objective-C/instm/ISyncRecordSnapshot/recordsWithMatchingAttributes: -Objective-C/instm/QTCaptureFileOutput/recordToOutputFileURL: -Objective-C/instm/QTCaptureFileOutput/recordToOutputFileURL:bufferDestination: -Objective-C/instp/ODRecord/recordType -Objective-C/instm/ODRecord/recordType -Objective-C/instm/ODNode/recordWithRecordType:name:attributes:error: -JavaScript/clconst/IDBDatabaseException/RECOVERABLE_ERR -Objective-C/instm/NSError/recoveryAttempter -C/tag/-/Rect -Objective-C/instm/NSCachedImageRep/rect -Objective-C/instm/NSTrackingArea/rect -JavaScript/instm/CanvasRenderingContext2D/rect -JavaScript/data/DOMWindow/Rect -JavaScript/cl/-/Rect -Objective-C/instm/NSLayoutManager/rectArrayForCharacterRange:withinSelectedCharacterRange:inTextContainer:rectCount: -Objective-C/instm/NSLayoutManager/rectArrayForGlyphRange:withinSelectedGlyphRange:inTextContainer:rectCount: -Objective-C/instm/NSTextTable/rectForBlock:layoutAtPoint:inRect:textContainer:characterRange: -Objective-C/instm/NSPrinter/rectForKey:inTable: -Objective-C/instm/NSTextBlock/rectForLayoutAtPoint:inRect:textContainer:characterRange: -Objective-C/instm/NSView/rectForPage: -Objective-C/instm/NSScroller/rectForPart: -C/func/-/RectMatrix -Objective-C/instm/IKImageBrowserView/rectOfColumn: -Objective-C/instm/NSTableView/rectOfColumn: -Objective-C/instm/NSMenuView/rectOfItemAtIndex: -Objective-C/instm/NSPathCell/rectOfPathComponentCell:withFrame:inView: -Objective-C/instm/IKImageBrowserView/rectOfRow: -Objective-C/instm/NSTableView/rectOfRow: -Objective-C/instm/NSSlider/rectOfTickMarkAtIndex: -Objective-C/instm/NSSliderCell/rectOfTickMarkAtIndex: -Objective-C/instm/NSLevelIndicator/rectOfTickMarkAtIndex: -Objective-C/instm/NSLevelIndicatorCell/rectOfTickMarkAtIndex: -Objective-C/instm/NSView/rectPreservedDuringLiveResize -C/tdef/-/RectPtr -Objective-C/instm/NSValue/rectValue -Objective-C/instp/CalRecurrenceRule/recurrenceEnd -Objective-C/instm/CalRecurrenceRule/recurrenceEnd -Objective-C/clm/CalRecurrenceEnd/recurrenceEndWithEndDate: -Objective-C/clm/CalRecurrenceEnd/recurrenceEndWithOccurrenceCount: -Objective-C/instp/CalRecurrenceRule/recurrenceInterval -Objective-C/instm/CalRecurrenceRule/recurrenceInterval -Objective-C/instm/CalEvent/recurrenceRule -Objective-C/instp/CalEvent/recurrenceRule -Objective-C/instm/CalRecurrenceRule/recurrenceType -Objective-C/instp/CalRecurrenceRule/recurrenceType -C/func/-/recv -C/func/-/RECVBUF -C/func/-/recvfrom -C/func/-/recvmsg -Objective-C/instm/NSWorkspace/recycleURLs:completionHandler: -Objective-C/instm/CIColor/red -JavaScript/data/RGBColor/red -JavaScript/clconst/WebGLRenderingContext/RED_BITS -Objective-C/clm/NSColor/redColor -Objective-C/instm/NSColor/redComponent -C++/instm/IOMemoryMap/redirect -Objective-C/instp/PSFeed/redirectedURL -Objective-C/instm/NSUndoManager/redo -Objective-C/instm/NSManagedObjectContext/redo -Objective-C/instm/NSUndoManager/redoActionName -Objective-C/instm/NSUndoManager/redoMenuItemTitle -Objective-C/instm/NSUndoManager/redoMenuTitleForUndoActionName: -Objective-C/instm/CAEmitterCell/redRange -Objective-C/instp/CAEmitterCell/redRange -C/func/-/redrawwin -Objective-C/instp/CAEmitterCell/redSpeed -Objective-C/instm/CAEmitterCell/redSpeed -C++/instm/IOUSBDevice/ReEnumerateDevice -C++/data/IOATACommand/refCon -C++/data/IOEventSource/refcon -C/tdef/-/refCon -C++/data/IOATACommand/refCon2 -Objective-C/instm/QTDataReference/referenceData -Objective-C/instm/QTDataReference/referenceFile -JavaScript/data/NodeIterator/referenceNode -Objective-C/instm/NSAtomicStore/referenceObjectForObjectID: -C/tdef/-/referenceSAXFunc -Objective-C/instm/QTDataReference/referenceURL -JavaScript/data/Document/referrer -Objective-C/instm/NSScrollView/reflectScrolledClipView: -Objective-C/instm/NSView/reflectScrolledClipView: -Objective-C/instm/IBInspector/refresh -C/func/-/refresh -JavaScript/instm/PluginArray/refresh -Objective-C/instm/PSFeed/refresh: -Objective-C/instm/QLPreviewPanel/refreshCurrentPreviewItem -Objective-C/instp/PSFeedSettings/refreshesInBackground -Objective-C/instp/PSFeed/refreshing -Objective-C/instp/PSFeedSettings/refreshInterval -Objective-C/instm/NSManagedObjectContext/refreshObject:mergeChanges: -Objective-C/instm/NSControl/refusesFirstResponder -Objective-C/instm/NSCell/refusesFirstResponder -JavaScript/data/SVGMarkerElement/refX -JavaScript/data/SVGMarkerElement/refY -C/func/-/regcomp -C/func/-/regerror -C/func/-/regex -C/func/-/regexec -C/func/-/regfree -C/func/-/register_app_config_handler -C/func/-/register_app_premib_handler -C/func/-/register_config_handler -C/func/-/register_mib_handlers -C/func/-/register_premib_handler -Objective-C/instm/NSHelpManager/registerBooksInBundle: -Objective-C/clm/NSURLProtocol/registerClass: -Objective-C/instm/NSScriptSuiteRegistry/registerClassDescription: -Objective-C/clm/NSClassDescription/registerClassDescription:forClass: -Objective-C/instm/ISyncManager/registerClientWithIdentifier:descriptionFilePath: -Objective-C/instm/NSScriptCoercionHandler/registerCoercer:selector:toConvertFromClass:toClass: -Objective-C/instm/NSScriptSuiteRegistry/registerCommandDescription: -C/func/-/RegisterComponent -C/econst/-/registerComponentAfterExisting -C/econst/-/registerComponentAliasesOnly -C/func/-/RegisterComponentFile -C/func/-/RegisterComponentFileEntries -C/func/-/RegisterComponentFileRef -C/func/-/RegisterComponentFileRefEntries -C/econst/-/registerComponentGlobal -C/econst/-/registerComponentNoDuplicates -C/func/-/RegisterComponentResource -C/func/-/RegisterComponentResourceFile -JavaScript/instm/Navigator/registerContentHandler -Objective-C/instm/NSUserDefaults/registerDefaults: -C/tdef/-/RegisteredComponentInstanceRecord -C/tdef/-/RegisteredComponentRecord -Objective-C/instm/NSView/registeredDraggedTypes -Objective-C/clm/NSImageRep/registeredImageRepClasses -Objective-C/instm/NSManagedObjectContext/registeredObjects -Objective-C/clm/NSPersistentStoreCoordinator/registeredStoreTypes -C++/instm/IOHIDDevice/registerElement -Objective-C/instm/CIFilterGenerator/registerFilterName: -Objective-C/clm/CIFilter/registerFilterName:constructor:classAttributes: -Objective-C/instm/IOBluetoothRFCOMMChannel/registerForChannelCloseNotification:selector: -Objective-C/instm/IOBluetoothL2CAPChannel/registerForChannelCloseNotification:selector: -Objective-C/clm/IOBluetoothL2CAPChannel/registerForChannelOpenNotifications:selector: -Objective-C/clm/IOBluetoothRFCOMMChannel/registerForChannelOpenNotifications:selector: -Objective-C/clm/IOBluetoothRFCOMMChannel/registerForChannelOpenNotifications:selector:withChannelID:direction: -Objective-C/clm/IOBluetoothL2CAPChannel/registerForChannelOpenNotifications:selector:withPSM:direction: -Objective-C/clm/IOBluetoothDevice/registerForConnectNotifications:selector: -Objective-C/instm/IOBluetoothDevice/registerForDisconnectNotification:selector: -Objective-C/instm/NSWindow/registerForDraggedTypes: -Objective-C/instm/NSView/registerForDraggedTypes: -C++/instm/IOFramebuffer/registerForInterruptType -Objective-C/clm/NSTextView/registerForServices -C++/clm/IOKernelDebugger/registerHandler -Objective-C/clm/NSImageRep/registerImageRepClass: -Objective-C/instm/IOBluetoothRFCOMMChannel/registerIncomingDataListener:refCon: -Objective-C/instm/IOBluetoothL2CAPChannel/registerIncomingDataListener:refCon: -Objective-C/instm/IOBluetoothRFCOMMChannel/registerIncomingEventListener:refCon: -C++/instm/IOService/registerInterestedDriver -C++/instm/IOService/registerInterrupt -Objective-C/instm/NSSpellServer/registerLanguage:byVendor: -Objective-C/instm/NSConnection/registerName: -Objective-C/instm/NSConnection/registerName:withNameServer: -C++/instm/IONetworkInterface/registerOutputHandler -Objective-C/clm/QCPlugIn/registerPlugInClass: -C/func/-/registerPMSettingController -Objective-C/instm/NSMachBootstrapServer/registerPort:name: -Objective-C/instm/NSSocketPortNameServer/registerPort:name: -Objective-C/instm/NSPortNameServer/registerPort:name: -Objective-C/instm/NSSocketPortNameServer/registerPort:name:nameServerPortNumber: -C++/instm/IOService/registerPowerDriver -JavaScript/instm/Navigator/registerProtocolHandler -Objective-C/instm/ISyncManager/registerSchemaWithBundlePath: -C++/instm/IOAudioEngine/registerService -C++/instm/IOService/registerService -Objective-C/instm/NSApplication/registerServicesMenuSendTypes:returnTypes: -Objective-C/clm/NSPersistentStoreCoordinator/registerStoreClass:forStoreType: -Objective-C/instm/NSUndoManager/registerUndoWithTarget:selector:object: -Objective-C/clm/NSRulerView/registerUnitWithName:abbreviation:unitToPointsConversionFactor:stepUpCycle:stepDownCycle: -Objective-C/clm/NSURLHandle/registerURLHandleClass: -Objective-C/clm/WebView/registerURLSchemeAsLocal: -Objective-C/instm/NSApplication/registerUserInterfaceItemSearchHandler: -Objective-C/clm/WebView/registerViewClass:representationClass:forMIMEType: -C++/instm/IONetworkController/registerWithPolicyMaker -C++/clm/IOService/registryEntryIDMatching -C/func/-/regsterrpc -Objective-C/instm/NSFileWrapper/regularFileContents -C++/instm/IOBlockStorageDriver/rejectMedia -JavaScript/data/HTMLAnchorElement/rel -JavaScript/data/HTMLLinkElement/rel -JavaScript/data/MutationEvent/relatedNode -JavaScript/data/MouseEvent/relatedTarget -Objective-C/instp/PSLink/relations -Objective-C/instm/NSFetchRequest/relationshipKeyPathsForPrefetching -Objective-C/instm/NSEntityMapping/relationshipMappings -Objective-C/instm/NSEntityDescription/relationshipsByName -Objective-C/instm/NSEntityDescription/relationshipsWithDestinationEntity: -Objective-C/instm/NSBezierPath/relativeCurveToPoint:controlPoint1:controlPoint2: -Objective-C/instm/NSBezierPath/relativeLineToPoint: -Objective-C/instm/NSBezierPath/relativeMoveToPoint: -Objective-C/instm/NSURL/relativePath -Objective-C/instm/NSRelativeSpecifier/relativePosition -Objective-C/instm/NSURL/relativeString -Objective-C/instp/CalAlarm/relativeTrigger -Objective-C/instm/CalAlarm/relativeTrigger -Objective-C/instm/NSAutoreleasePool/release -Objective-C/intfm/NSObject/release -C++/instm/IOFireWireSBP2ORB/release -C++/instm/OSObject/release -C++/instm/OSMetaClassBase/release -C++/instm/OSMetaClass/release -C++/instm/IOAGPDevice/releaseAGPMemory -C++/clm/IOUserClient/releaseAsyncReference64 -Objective-C/instm/CAOpenGLLayer/releaseCGLContext: -Objective-C/instm/CAOpenGLLayer/releaseCGLPixelFormat: -C++/instm/IOFireWireSBP2ORB/releaseCommandBuffers -C++/instm/IONetworkController/releaseDebuggerLock -C++/instm/IOUSBController/ReleaseDeviceZero -JavaScript/instm/DOMWindow/releaseEvents -JavaScript/instm/HTMLDocument/releaseEvents -Objective-C/instm/DRDevice/releaseExclusiveAccess -C++/instm/IONetworkController/releaseFreePackets -Objective-C/instm/NSPasteboard/releaseGlobally -Objective-C/instm/NSView/releaseGState -Objective-C/instm/DRDevice/releaseMediaReservation -C++/clm/IOUserClient/releaseNotificationPort -Objective-C/intfm/QCPlugInOutputImageProvider/releaseRenderedTexture:forCGLContext: -C/func/-/ReleaseResource -JavaScript/instm/WebGLRenderingContext/releaseShaderCompiler -JavaScript/instm/InspectorBackend/releaseWrapperObjectGroup -Objective-C/instp/NSPointerFunctions/relinquishFunction -Objective-C/instm/NSPointerFunctions/relinquishFunction -Objective-C/instm/WebFrame/reload -JavaScript/instm/window/reload -Objective-C/instm/WebView/reload: -Objective-C/instm/NSBrowser/reloadColumn: -Objective-C/instm/NSRuleEditor/reloadCriteria -Objective-C/instm/NSComboBox/reloadData -Objective-C/instm/NSComboBoxCell/reloadData -Objective-C/instm/IKSlideshow/reloadData -Objective-C/instm/QLPreviewPanel/reloadData -Objective-C/instm/IKImageEditPanel/reloadData -Objective-C/instm/IKImageBrowserView/reloadData -Objective-C/instm/NSTableView/reloadData -Objective-C/instm/NSTableView/reloadDataForRowIndexes:columnIndexes: -Objective-C/instm/NSBrowser/reloadDataForRowIndexes:inColumn: -Objective-C/instm/NSFontPanel/reloadDefaultFontFamilies -Objective-C/instm/WebFrame/reloadFromOrigin -Objective-C/instm/WebView/reloadFromOrigin: -Objective-C/instm/NSOutlineView/reloadItem: -Objective-C/instm/NSOutlineView/reloadItem:reloadChildren: -JavaScript/instm/InspectorBackend/reloadPage -Objective-C/instm/NSRuleEditor/reloadPredicate -Objective-C/instm/IKSlideshow/reloadSlideshowItemAtIndex: -C/tag/-/relocation_info -C/func/-/remainder -C/func/-/remainderf -C/func/-/remainderl -Objective-C/instm/AMShellScriptAction/remapLineEndings -Objective-C/instp/CWConfiguration/rememberedNetworks -Objective-C/instm/IOBluetoothDevice/remoteNameRequest: -Objective-C/instm/IOBluetoothDevice/remoteNameRequest:withPageTimeout: -Objective-C/instm/NSConnection/remoteObjects -JavaScript/clconst/MutationEvent/REMOVAL -C/func/-/remove -C++/instm/IONotifier/remove -JavaScript/instm/DataGridColumnList/remove -JavaScript/instm/HTMLSelectElement/remove -JavaScript/instm/HTMLOptionsCollection/remove -Objective-C/instm/NSTreeController/remove: -Objective-C/instm/NSObjectController/remove: -Objective-C/instm/NSArrayController/remove: -C/func/-/remove_session_cb -Objective-C/instm/NSPageLayout/removeAccessoryController: -Objective-C/instm/NSPrintPanel/removeAccessoryController: -Objective-C/instm/AMWorkflow/removeAction: -Objective-C/instm/CalCalendarItem/removeAlarm: -Objective-C/instm/CalCalendarItem/removeAlarms: -Objective-C/instm/NSUndoManager/removeAllActions -Objective-C/instm/NSUndoManager/removeAllActionsWithTarget: -Objective-C/instm/CALayer/removeAllAnimations -C++/instm/IOStream/removeAllBuffers -Objective-C/instm/NSURLCache/removeAllCachedResponses -Objective-C/instm/IMAVControlBar/removeAllControls -Objective-C/instm/NSMutableIndexSet/removeAllIndexes -Objective-C/instm/NSPopUpButtonCell/removeAllItems -Objective-C/instm/NSPopUpButton/removeAllItems -Objective-C/instm/WebHistory/removeAllItems -Objective-C/instm/NSComboBox/removeAllItems -Objective-C/instm/NSComboBoxCell/removeAllItems -Objective-C/instm/NSMenu/removeAllItems -Objective-C/instm/NSHashTable/removeAllObjects -Objective-C/instm/NSMutableSet/removeAllObjects -Objective-C/instm/NSMapTable/removeAllObjects -Objective-C/instm/NSMutableDictionary/removeAllObjects -Objective-C/instm/NSMutableArray/removeAllObjects -Objective-C/instm/NSCache/removeAllObjects -Objective-C/instm/NSBezierPath/removeAllPoints -JavaScript/instm/DOMSelection/removeAllRanges -JavaScript/instm/InspectorBackend/removeAllScriptsToEvaluateOnLoad -C++/instm/IOAudioDevice/removeAllTimerEvents -Objective-C/instm/NSView/removeAllToolTips -C++/instm/IOFWAddressSpace/removeAllTrustedNodes -Objective-C/instm/CALayer/removeAnimationForKey: -Objective-C/instm/PDFPage/removeAnnotation: -Objective-C/instm/QTTrack/removeApertureModeDimensions -Objective-C/instm/QTMovie/removeApertureModeDimensions -JavaScript/instm/Element/removeAttribute -JavaScript/instm/InspectorBackend/removeAttribute -Objective-C/instm/NSMutableAttributedString/removeAttribute:range: -Objective-C/instm/NSXMLElement/removeAttributeForName: -JavaScript/instm/Element/removeAttributeNode -JavaScript/instm/Element/removeAttributeNS -Objective-C/instm/PDFAnnotationInk/removeBezierPath: -JavaScript/instm/InspectorBackend/removeBreakpoint -C++/instm/IOStream/removeBuffer -Objective-C/instm/NSURLCache/removeCachedResponseForRequest: -Objective-C/instm/CalCalendarStore/removeCalendar:error: -Objective-C/instm/QTMovie/removeChapters -Objective-C/instm/NSMutableCharacterSet/removeCharactersInRange: -Objective-C/instm/NSMutableCharacterSet/removeCharactersInString: -JavaScript/instm/core/removeChild -Objective-C/instm/DRFolder(VirtualFolders)/removeChild: -Objective-C/instm/NSXMLDocument/removeChildAtIndex: -Objective-C/instm/NSXMLDTD/removeChildAtIndex: -Objective-C/instm/NSXMLElement/removeChildAtIndex: -Objective-C/instm/NSWindow/removeChildWindow: -Objective-C/instm/NSURLHandle/removeClient: -Objective-C/instm/NSFontManager/removeCollection: -Objective-C/instm/NSColorList/removeColorWithKey: -Objective-C/instm/NSMatrix/removeColumn: -Objective-C/instm/NSPort/removeConnection:fromRunLoop:forMode: -Objective-C/instm/NSHelpManager/removeContextHelpForObject: -Objective-C/instm/IMAVControlBar/removeControl: -Objective-C/instm/NSURLCredentialStorage/removeCredential:forProtectionSpace: -Objective-C/instm/NSView/removeCursorRect:cursor: -C/func/-/RemoveDataBrowserItems -C/func/-/RemoveDataBrowserTableViewColumn -Objective-C/instm/NSOperation/removeDependency: -Objective-C/instm/NSAppleEventDescriptor/removeDescriptorAtIndex: -Objective-C/instm/NSAppleEventDescriptor/removeDescriptorWithKeyword: -Objective-C/instm/NSDocumentController/removeDocument: -JavaScript/instm/InspectorBackend/removeDOMStorageItem -Objective-C/instm/CAAnimation/removedOnCompletion -Objective-C/instp/CAAnimation/removedOnCompletion -Objective-C/instm/WebView/removeDragCaret -C++/instm/IOCatalogue/removeDrivers -Objective-C/instm/NSForm/removeEntryAtIndex: -Objective-C/instm/CalCalendarStore/removeEvent:span:error: -Objective-C/instm/NSAppleEventManager/removeEventHandlerForEventClass:andEventID: -JavaScript/instm/AbstractWorker/removeEventListener -JavaScript/instm/DOMWindow/removeEventListener -JavaScript/instm/DOMApplicationCache/removeEventListener -JavaScript/instm/EventTarget/removeEventListener -JavaScript/instm/IDBRequest/removeEventListener -JavaScript/instm/EventSource/removeEventListener -JavaScript/instm/core/removeEventListener -JavaScript/instm/svg/removeEventListener -JavaScript/instm/MessagePort/removeEventListener -JavaScript/instm/Notification/removeEventListener -JavaScript/instm/TestObj/removeEventListener -JavaScript/instm/WorkerContext/removeEventListener -JavaScript/instm/XMLHttpRequestUpload/removeEventListener -JavaScript/instm/WebSocket/removeEventListener -JavaScript/instm/XMLHttpRequest/removeEventListener -C++/instm/IOWorkLoop/removeEventSource -Objective-C/instm/CIFilterGenerator/removeExportedKey: -Objective-C/instm/PSClient/removeFeed: -Objective-C/instm/NSColorList/removeFile -C/func/-/removefile -C/func/-/removefile_cancel -C/func/-/removefile_state_alloc -C/func/-/removefile_state_free -C/func/-/removefile_state_get -C/func/-/removefile_state_set -Objective-C/instm/NSFileManager/removeFileAtPath:handler: -Objective-C/instm/NSFileWrapper/removeFileWrapper: -Objective-C/instm/NSFontManager/removeFontDescriptor:fromCollection: -Objective-C/instm/NSFontManager/removeFontTrait: -Objective-C/clm/NSWindow/removeFrameUsingName: -Objective-C/instm/IOBluetoothDevice/removeFromFavorites -Objective-C/instm/PDFOutline/removeFromParent -C++/instm/IOFWCommand/removeFromQ -C/func/-/RemoveFromRunLoop -Objective-C/instm/NSStream/removeFromRunLoop:forMode: -Objective-C/instm/NSNetServiceBrowser/removeFromRunLoop:forMode: -Objective-C/instm/NSNetService/removeFromRunLoop:forMode: -Objective-C/instm/ODQuery/removeFromRunLoop:forMode: -Objective-C/instm/NSPort/removeFromRunLoop:forMode: -Objective-C/instm/NSMachPort/removeFromRunLoop:forMode: -Objective-C/instm/CALayer/removeFromSuperlayer -Objective-C/instm/NSView/removeFromSuperview -Objective-C/instm/NSView/removeFromSuperviewWithoutNeedingDisplay -C++/instm/IOSCSIParallelInterfaceController/RemoveHBAProperty -C/func/-/RemoveImageDescriptionExtension -Objective-C/instm/NSMutableIndexSet/removeIndex: -Objective-C/instm/NSMutableIndexSet/removeIndexes: -Objective-C/instm/NSMutableIndexSet/removeIndexesInRange: -Objective-C/instm/QTCaptureSession/removeInput: -Objective-C/instm/QCPlugIn/removeInputPortForKey: -JavaScript/instm/Storage/removeItem -JavaScript/instm/SVGNumberList/removeItem -JavaScript/instm/SVGLengthList/removeItem -JavaScript/instm/SVGTransformList/removeItem -JavaScript/instm/SVGPointList/removeItem -JavaScript/instm/SVGPathSegList/removeItem -JavaScript/instm/SVGStringList/removeItem -Objective-C/instm/NSMenu/removeItem: -Objective-C/instm/NSPopUpButton/removeItemAtIndex: -Objective-C/instm/NSPopUpButtonCell/removeItemAtIndex: -Objective-C/instm/NSComboBox/removeItemAtIndex: -Objective-C/instm/NSComboBoxCell/removeItemAtIndex: -Objective-C/instm/NSToolbar/removeItemAtIndex: -Objective-C/instm/NSMenu/removeItemAtIndex: -Objective-C/instm/NSFileManager/removeItemAtPath:error: -Objective-C/instm/NSFileManager/removeItemAtURL:error: -Objective-C/instm/WebHistory/removeItems: -Objective-C/instm/NSComboBox/removeItemWithObjectValue: -Objective-C/instm/NSComboBoxCell/removeItemWithObjectValue: -Objective-C/instm/NSPopUpButton/removeItemWithTitle: -Objective-C/instm/NSPopUpButtonCell/removeItemWithTitle: -C++/instm/IOCatalogue/removeKernelLinker -Objective-C/instm/NSMutableArray/removeLastObject -Objective-C/instm/NSTextStorage/removeLayoutManager: -C++/instm/IOUserClient/removeMappingForDescriptor -Objective-C/instm/NSRulerView/removeMarker: -C++/clm/IONetworkMedium/removeMedium -Objective-C/instm/ABGroup/removeMember: -Objective-C/instm/ODRecord/removeMemberRecord:error: -Objective-C/clm/NSEvent/removeMonitor: -JavaScript/instm/NamedNodeMap/removeNamedItem -JavaScript/instm/NamedNodeMap/removeNamedItemNS -Objective-C/instm/NSXMLElement/removeNamespaceForPrefix: -C++/instm/IONetworkInterface/removeNetworkData -JavaScript/instm/InspectorBackend/removeNode -C++/instm/OSArray/removeObject -C++/instm/OSDictionary/removeObject -C++/instm/OSSet/removeObject -C++/instm/OSOrderedSet/removeObject -Objective-C/instm/NSMutableSet/removeObject: -Objective-C/instm/NSHashTable/removeObject: -Objective-C/instm/NSObjectController/removeObject: -Objective-C/instm/IBDocument/removeObject: -Objective-C/instm/NSCountedSet/removeObject: -Objective-C/instm/NSArrayController/removeObject: -Objective-C/instm/NSMutableArray/removeObject: -Objective-C/instm/NSMutableArray/removeObject:inRange: -Objective-C/instm/NSArrayController/removeObjectAtArrangedObjectIndex: -Objective-C/instm/NSTreeController/removeObjectAtArrangedObjectIndexPath: -Objective-C/instm/NSMutableArray/removeObjectAtIndex: -Objective-C/instm/NSMapTable/removeObjectForKey: -Objective-C/instm/NSUserDefaults/removeObjectForKey: -Objective-C/instm/NSMutableDictionary/removeObjectForKey: -Objective-C/instm/NSCache/removeObjectForKey: -Objective-C/instm/NSMutableArray/removeObjectIdenticalTo: -Objective-C/instm/NSMutableArray/removeObjectIdenticalTo:inRange: -Objective-C/instm/NSArrayController/removeObjects: -Objective-C/instm/NSArrayController/removeObjectsAtArrangedObjectIndexes: -Objective-C/instm/NSTreeController/removeObjectsAtArrangedObjectIndexPaths: -Objective-C/instm/NSMutableArray/removeObjectsAtIndexes: -Objective-C/instm/NSMutableDictionary/removeObjectsForKeys: -Objective-C/instm/NSMutableArray/removeObjectsFromIndices:numIndices: -Objective-C/instm/NSMutableArray/removeObjectsInArray: -Objective-C/instm/NSMutableArray/removeObjectsInRange: -C++/instm/TestRun/removeObserver -Objective-C/instm/NSServerNotificationCenter/removeObserver: -Objective-C/instm/NSNotificationCenter/removeObserver: -Objective-C/instm/NSSet/removeObserver:forKeyPath: -Objective-C/instm/NSObject/removeObserver:forKeyPath: -Objective-C/instm/NSArray/removeObserver:forKeyPath: -Objective-C/instm/NSArray/removeObserver:fromObjectsAtIndexes:forKeyPath: -Objective-C/instm/NSDistributedNotificationCenter/removeObserver:name:object: -Objective-C/instm/DRNotificationCenter/removeObserver:name:object: -Objective-C/instm/NSServerNotificationCenter/removeObserver:name:object: -Objective-C/instm/NSNotificationCenter/removeObserver:name:object: -Objective-C/instm/QTCaptureSession/removeOutput: -Objective-C/instm/QCPlugIn/removeOutputPortForKey: -Objective-C/instm/PDFDocument/removePageAtIndex: -Objective-C/instm/NSAppleEventDescriptor/removeParamDescriptorWithKeyword: -JavaScript/instm/XSLTProcessor/removeParameter -Objective-C/instm/NSUserDefaults/removePersistentDomainForName: -Objective-C/instm/NSPersistentStoreCoordinator/removePersistentStore:error: -C++/instm/IOCatalogue/removePersonalities -Objective-C/instm/NSPointerArray/removePointerAtIndex: -Objective-C/instm/NSRunLoop/removePort:forMode: -Objective-C/instm/NSSocketPortNameServer/removePortForName: -Objective-C/instm/NSPortNameServer/removePortForName: -C++/instm/IOService/removePowerChild -Objective-C/instm/NSAnimation/removeProgressMark: -Objective-C/clm/ABPerson/removeProperties: -Objective-C/clm/ABGroup/removeProperties: -C++/instm/IORegistryEntry/removeProperty -JavaScript/instm/CSSStyleDeclaration/removeProperty -Objective-C/instm/ABPeoplePickerView/removeProperty: -Objective-C/clm/NSURLProtocol/removePropertyForKey:inRequest: -Objective-C/instm/ABAddressBook/removeRecord: -Objective-C/instm/NSImage/removeRepresentation: -Objective-C/instm/ISyncManager/removeRequestMode: -Objective-C/instm/NSConnection/removeRequestMode: -C/func/-/RemoveResource -Objective-C/instm/NSMatrix/removeRow: -Objective-C/instm/NSRuleEditor/removeRowAtIndex: -Objective-C/instm/NSRuleEditor/removeRowsAtIndexes:includeSubrows: -JavaScript/instm/CSSStyleSheet/removeRule -Objective-C/instm/NSConnection/removeRunLoop: -Objective-C/clm/NSBrowser/removeSavedColumnsWithAutosaveName: -Objective-C/instm/NSArrayController/removeSelectedObjects: -Objective-C/instm/NSArrayController/removeSelectionIndexes: -Objective-C/instm/NSTreeController/removeSelectionIndexPaths: -Objective-C/instm/NSStatusBar/removeStatusItem: -Objective-C/instm/ABGroup/removeSubgroup: -Objective-C/instm/NSUserDefaults/removeSuiteNamed: -Objective-C/instm/NSTableView/removeTableColumn: -Objective-C/instm/NSMutableParagraphStyle/removeTabStop: -Objective-C/instm/NSTabView/removeTabViewItem: -C++/instm/IOSCSIParallelInterfaceController/RemoveTargetProperty -Objective-C/instm/CalCalendarStore/removeTask:error: -Objective-C/instm/NSLayoutManager/removeTemporaryAttribute:forCharacterRange: -C++/instm/TestSuite/removeTest -Objective-C/instm/NSLayoutManager/removeTextContainerAtIndex: -C++/instm/IOAudioEngine/removeTimer -C++/instm/IOAudioDevice/removeTimerEvent -Objective-C/instm/NSView/removeToolTip: -Objective-C/instm/QTMovie/removeTrack: -Objective-C/instm/NSView/removeTrackingArea: -Objective-C/instm/NSView/removeTrackingRect: -C++/instm/IOFWAddressSpace/removeTrustedNode -C++/instm/IOAudioControl/removeUserClient -C++/clm/IOAudioControl/removeUserClientAction -Objective-C/instm/ODRecord/removeValue:fromAttribute:error: -Objective-C/instm/ABMutableMultiValue/removeValueAndLabelAtIndex: -Objective-C/instm/NSObject/removeValueAtIndex:fromPropertyWithKey: -Objective-C/instm/ABRecord/removeValueForProperty: -Objective-C/instm/ODRecord/removeValuesForAttribute:error: -JavaScript/instm/CSSVariablesDeclaration/removeVariable -Objective-C/instm/NSUserDefaults/removeVolatileDomainForName: -Objective-C/instm/WebScriptObject/removeWebScriptKey: -Objective-C/instm/NSDocument/removeWindowController: -Objective-C/instm/NSApplication/removeWindowsItem: -C/func/-/removexattr -C/func/-/remque -C/func/-/remquo -C/func/-/remquof -C/func/-/remquol -C/func/-/rename -Objective-C/instm/NSPropertyDescription/renamingIdentifier -Objective-C/instm/NSEntityDescription/renamingIdentifier -Objective-C/instm/CARenderer/render -Objective-C/instm/CIContext/render:toBitmap:rowBytes:bounds:format:colorSpace: -Objective-C/instm/QCRenderer/renderAtTime:arguments: -Objective-C/instm/QCView/renderAtTime:arguments: -JavaScript/clconst/WebGLRenderingContext/RENDERBUFFER -JavaScript/clconst/WebGLRenderingContext/RENDERBUFFER_ALPHA_SIZE -JavaScript/clconst/WebGLRenderingContext/RENDERBUFFER_BINDING -JavaScript/clconst/WebGLRenderingContext/RENDERBUFFER_BLUE_SIZE -JavaScript/clconst/WebGLRenderingContext/RENDERBUFFER_DEPTH_SIZE -JavaScript/clconst/WebGLRenderingContext/RENDERBUFFER_GREEN_SIZE -JavaScript/clconst/WebGLRenderingContext/RENDERBUFFER_HEIGHT -JavaScript/clconst/WebGLRenderingContext/RENDERBUFFER_INTERNAL_FORMAT -JavaScript/clconst/WebGLRenderingContext/RENDERBUFFER_RED_SIZE -JavaScript/clconst/WebGLRenderingContext/RENDERBUFFER_STENCIL_SIZE -JavaScript/clconst/WebGLRenderingContext/RENDERBUFFER_WIDTH -JavaScript/instm/WebGLRenderingContext/renderbufferStorage -JavaScript/clconst/WebGLRenderingContext/RENDERER -Objective-C/clm/CARenderer/rendererWithCGLContext:options: -Objective-C/instm/CALayer/renderInContext: -JavaScript/clconst/SVGRenderingIntent/RENDERING_INTENT_ABSOLUTE_COLORIMETRIC -JavaScript/clconst/SVGRenderingIntent/RENDERING_INTENT_AUTO -JavaScript/clconst/SVGRenderingIntent/RENDERING_INTENT_PERCEPTUAL -JavaScript/clconst/SVGRenderingIntent/RENDERING_INTENT_RELATIVE_COLORIMETRIC -JavaScript/clconst/SVGRenderingIntent/RENDERING_INTENT_SATURATION -JavaScript/clconst/SVGRenderingIntent/RENDERING_INTENT_UNKNOWN -Objective-C/instm/NSFont/renderingMode -Objective-C/instm/NSObject/renderIntoOpenGLBuffer:onScreen:forTime: -Objective-C/instm/NSObject/renderIntoPixelBuffer:forTime: -Objective-C/instm/CAEmitterLayer/renderMode -Objective-C/instp/CAEmitterLayer/renderMode -Objective-C/intfm/FxGenerator/renderOutput:withInfo: -Objective-C/intfm/FxFilter/renderOutput:withInput:withInfo: -Objective-C/intfm/FxTransition/renderOutput:withInputA:withInputB:withTimeFraction:withInfo: -Objective-C/intfm/QCPlugInOutputImageProvider/renderToBuffer:withBytesPerRow:pixelFormat:forBounds: -Objective-C/intfm/QCPlugInOutputImageProvider/renderWithCGLContext:forBounds: -Objective-C/instm/NSView/renewGState -Objective-C/instm/NSMatrix/renewRows:columns: -Objective-C/instm/NSDocumentController/reopenDocumentForURL:withContentsOfURL:error: -JavaScript/clconst/WebGLRenderingContext/REPEAT -Objective-C/intfp/CAMediaTiming/repeatCount -Objective-C/intfm/CAMediaTiming/repeatCount -Objective-C/intfm/CAMediaTiming/repeatDuration -Objective-C/intfp/CAMediaTiming/repeatDuration -JavaScript/instm/window/replace -JavaScript/clconst/WebGLRenderingContext/REPLACE -Objective-C/instm/QTMovieView/replace: -Objective-C/instm/NSMutableData/replaceBytesInRange:withBytes: -Objective-C/instm/NSMutableData/replaceBytesInRange:withBytes:length: -Objective-C/instm/NSMutableAttributedString/replaceCharactersInRange:withAttributedString: -Objective-C/instm/NSText/replaceCharactersInRange:withRTF: -Objective-C/instm/NSText/replaceCharactersInRange:withRTFD: -Objective-C/instm/NSMutableString/replaceCharactersInRange:withString: -Objective-C/instm/NSText/replaceCharactersInRange:withString: -Objective-C/instm/NSMutableAttributedString/replaceCharactersInRange:withString: -JavaScript/instm/core/replaceChild -Objective-C/instm/NSXMLDocument/replaceChildAtIndex:withNode: -Objective-C/instm/NSXMLElement/replaceChildAtIndex:withNode: -Objective-C/instm/NSXMLDTD/replaceChildAtIndex:withNode: -JavaScript/instm/CharacterData/replaceData -C/func/-/ReplaceDSequenceImageDescription -C/func/-/ReplaceGestalt -C/func/-/ReplaceGestaltValue -Objective-C/instm/NSLayoutManager/replaceGlyphAtIndex:withGlyph: -JavaScript/instm/SVGNumberList/replaceItem -JavaScript/instm/SVGLengthList/replaceItem -JavaScript/instm/SVGTransformList/replaceItem -JavaScript/instm/SVGPointList/replaceItem -JavaScript/instm/SVGPathSegList/replaceItem -JavaScript/instm/SVGStringList/replaceItem -Objective-C/instm/NSFileManager/replaceItemAtURL:withItemAtURL:backupItemName:options:resultingItemURL:error: -Objective-C/instm/ABMutableMultiValue/replaceLabelAtIndex:withLabel: -Objective-C/instm/NSTextContainer/replaceLayoutManager: -Objective-C/clm/NSTextCheckingResult/replacementCheckingResultWithRange:replacementString: -Objective-C/clm/NSXMLDocument/replacementClassForClass: -Objective-C/instm/NSObject/replacementObjectForArchiver: -Objective-C/instm/NSObject/replacementObjectForCoder: -Objective-C/instm/NSObject/replacementObjectForKeyedArchiver: -Objective-C/instm/NSObject/replacementObjectForPortCoder: -Objective-C/instm/IMKInputController/replacementRange -Objective-C/instp/NSTextCheckingResult/replacementString -Objective-C/instm/NSTextCheckingResult/replacementString -C++/instm/OSArray/replaceObject -Objective-C/instm/NSArchiver/replaceObject:withObject: -Objective-C/instm/NSUnarchiver/replaceObject:withObject: -Objective-C/instm/NSNibConnector/replaceObject:withObject: -Objective-C/instm/NSMutableArray/replaceObjectAtIndex:withObject: -Objective-C/instm/NSMutableArray/replaceObjectsAtIndexes:withObjects: -Objective-C/instm/NSMutableArray/replaceObjectsInRange:withObjectsFromArray: -Objective-C/instm/NSMutableArray/replaceObjectsInRange:withObjectsFromArray:range: -Objective-C/instm/NSMutableString/replaceOccurrencesOfString:withString:options:range: -C++/instm/IONetworkController/replaceOrCopyPacket -C++/instm/IONetworkController/replacePacket -Objective-C/instm/NSPointerArray/replacePointerAtIndex:withPointer: -Objective-C/instm/WebView/replaceSelectionWithArchive: -Objective-C/instm/WebView/replaceSelectionWithMarkupString: -Objective-C/instm/WebView/replaceSelectionWithNode: -Objective-C/instm/QTMovie/replaceSelectionWithSelectionFromMovie: -Objective-C/instm/WebView/replaceSelectionWithText: -JavaScript/instm/window/replaceState -Objective-C/instm/CALayer/replaceSublayer:with: -Objective-C/instm/NSView/replaceSubview:with: -Objective-C/instm/NSTextView/replaceTextContainer: -Objective-C/instm/NSLayoutManager/replaceTextStorage: -Objective-C/instm/NSObject/replaceValueAtIndex:inPropertyWithKey:withValue: -Objective-C/instm/ABMutableMultiValue/replaceValueAtIndex:withValue: -JavaScript/instm/Text/replaceWholeText -Objective-C/instm/NSAppleEventManager/replyAppleEventForSuspensionID: -Objective-C/instm/IOBluetoothDevicePair/replyPINCode:PINCode: -Objective-C/instm/NSConnection/replyTimeout -Objective-C/instm/NSApplication/replyToApplicationShouldTerminate: -Objective-C/instm/NSApplication/replyToOpenOrPrint: -Objective-C/instm/NSPreferencePane/replyToShouldUnselect: -Objective-C/instm/IOBluetoothDevicePair/replyUserConfirmation: -Objective-C/instm/NSDistantObjectRequest/replyWithException: -C/tdef/-/REPORT_LUNS_LOGICAL_UNIT_ADDRESSING -C/tdef/-/REPORT_LUNS_PERIPHERAL_DEVICE_ADDRESSING -C++/instm/IOBlockStorageDevice/reportBlockSize -JavaScript/instm/InjectedScriptHost/reportDidDispatchOnInjectedScript -C++/instm/IOBlockStorageDevice/reportEjectability -Objective-C/instm/NSApplication/reportException: -C++/instm/IOSCSIParallelInterfaceController/ReportHBAConstraints -C++/instm/IOSCSIParallelInterfaceController/ReportHBAHighestLogicalUnitNumber -C++/instm/IOSCSIParallelInterfaceController/ReportHBASpecificDeviceDataSize -C++/instm/IOSCSIParallelInterfaceController/ReportHBASpecificTaskDataSize -C++/instm/IOSCSIParallelInterfaceController/ReportHighestSupportedDeviceID -C++/instm/IOSCSIParallelInterfaceController/ReportInitiatorIdentifier -C++/instm/IODVDBlockStorageDriver/reportKey -C++/instm/IOBDMedia/reportKey -C++/instm/IODVDMedia/reportKey -C++/instm/IOBlockStorageDevice/reportLockability -C++/instm/IOSCSIParallelInterfaceController/ReportMaximumTaskCount -C++/instm/IOBlockStorageDevice/reportMaxValidBlock -C++/instm/IOBlockStorageDevice/reportMediaState -C++/clm/OSMetaClass/reportModInstances -C++/instm/IOBlockStorageDevice/reportPollRequirements -C++/instm/IOBlockStorageDevice/reportRemovability -C++/instm/IOBlockStorageDevice/reportWriteProtection -Objective-C/instm/WebDataSource/representation -Objective-C/clm/NSBitmapImageRep/representationOfImageRepsInArray:usingType:properties: -Objective-C/instm/NSImage/representations -Objective-C/instm/NSBitmapImageRep/representationUsingType:properties: -Objective-C/instm/NSWindow/representedFilename -Objective-C/binding/NSWindow/representedFilename -Objective-C/binding/NSPanel/representedFilename -Objective-C/instm/IKImageBrowserCell/representedItem -Objective-C/instm/NSTreeNode/representedObject -Objective-C/instm/NSRulerMarker/representedObject -Objective-C/instm/NSViewController/representedObject -Objective-C/instm/NSCollectionViewItem/representedObject -Objective-C/instm/NSMenuItem/representedObject -Objective-C/instm/NSCell/representedObject -Objective-C/instm/NSWindow/representedURL -Objective-C/instm/NSURLProtocol/request -Objective-C/instm/WebDataSource/request -Objective-C/instm/NSURLDownload/request -C/func/-/request_init -C/func/-/request_set -JavaScript/instm/InspectorFrontendHost/requestAttachWindow -Objective-C/instm/IOBluetoothDevice/requestAuthentication -Objective-C/instm/NSSpellChecker/requestCheckingOfString:range:types:options:inSpellDocumentWithTag:completionHandler: -JavaScript/instm/InspectorFrontendHost/requestDetachWindow -Objective-C/instm/DRBurn(PropertyConvenienceMethods)/requestedBurnSpeed -Objective-C/instm/NSFetchRequestExpression/requestExpression -C++/instm/IOUSBDevice/RequestExtraPower -C/data/-/requestFlag -Objective-C/clm/NSHTTPCookie/requestHeaderFieldsWithCookies: -C++/instm/IOBlockStorageDevice/requestIdle -C++/instm/IOBlockStorageDriver/requestIdle -C/func/-/RequestInterrupt -Objective-C/clm/NSURLProtocol/requestIsCacheEquivalent:toRequest: -Objective-C/instm/ISyncManager/requestModes -Objective-C/instm/NSConnection/requestModes -JavaScript/instm/NotificationCenter/requestPermission -C++/instm/IOService/requestPowerDomainState -C++/instm/IOService/requestProbe -C++/instm/IOUSBHubDevice/RequestProvidedPower -Objective-C/instm/IOBluetoothL2CAPChannel/requestRemoteMTU: -C++/instm/IOService/requestTerminate -Objective-C/instm/NSConnection/requestTimeout -Objective-C/instm/NSApplication/requestUserAttention: -Objective-C/clm/NSURLRequest/requestWithURL: -Objective-C/clm/NSURLRequest/requestWithURL:cachePolicy:timeoutInterval: -Objective-C/instp/CWConfiguration/requireAdminForIBSSCreation -Objective-C/instp/CWConfiguration/requireAdminForNetworkChange -Objective-C/instp/CWConfiguration/requireAdminForPowerChange -JavaScript/data/HTMLTextAreaElement/required -JavaScript/data/HTMLInputElement/required -JavaScript/data/SVGTests/requiredExtensions -JavaScript/data/SVGTests/requiredFeatures -Objective-C/instm/NSSavePanel/requiredFileType -Objective-C/instm/IBPlugin/requiredFrameworks -Objective-C/instm/NSRulerView/requiredThickness -C/func/-/res_init -C/func/-/res_mkquery -C/func/-/res_query -C/func/-/res_search -C/func/-/res_send -C/tdef/-/ResamplingFilter -C/econst/-/resAttrErr -C/tdef/-/ResAttributes -C/econst/-/resChanged -C/econst/-/resChangedBit -C/func/-/ResError -C/tdef/-/ResErrProcPtr -C/tdef/-/ResErrUPP -C++/data/IODMACommand/reserved -C++/data/IOCommandPool/reserved -C++/data/IOFireWireAVCSubUnit/reserved -C++/data/IOExtendedLBA/reserved -C++/data/IOEventSource/reserved -C++/data/IOFireWireBusAux/reserved -C++/data/IOATAController/reserved -C++/data/IOBufferMemoryDescriptor/reserved -C/data/-/reserved -C++/data/IOATABusCommand/reserved -C++/data/IOFireWireAVCTargetSpace/reserved -C++/data/ATADeviceNub/reserved -C++/data/IOConfigDirectory/reserved -C++/data/IOAGPDevice/reserved -C++/data/IOFireWireAVCAsynchronousCommand/reserved -C++/data/IOCommandGate/reserved -C++/data/IOATABusInfo/reserved -C++/data/IOATADevConfig/reserved -C++/data/IOATADevice/reserved -C++/data/IOFilterInterruptEventSource/reserved -C++/data/ATATimerEventSource/reserved -C++/data/IOFireWireIRMAllocation/reserved -C++/data/IOFWIsochChannel/reserved -C++/data/IOMbufMemoryCursor/reserved -C++/data/IOFireWirePCRSpace/reserved -C++/data/IOFramebuffer/reserved -C++/data/IOFireWireLocalNodeAux/reserved -C++/data/IOFireWireControllerAux/reserved -C++/data/IOFireWireNubAux/reserved -C++/data/IOMemoryDescriptor/reserved -C++/data/IOFWAsyncStreamListener/reserved -C++/data/IOFireWireDeviceAux/reserved -C++/data/IOFWBusCommand/reserved -C++/data/IOFireWireNub/reserved -C++/data/IOInterruptEventSource/reserved -C++/data/IOFWAddressSpaceAux/reserved -C++/data/IOLocalConfigDirectory/reserved -C++/data/IOFireWireController/reserved -C++/data/IOFWDelayCommand/reserved -C++/data/IOFireWirePowerManager/reserved -C++/data/IOFireWireDevice/reserved -C++/data/IOFWPhysicalAddressSpaceAux/reserved -C++/data/IOFireWireUnitAux/reserved -C++/data/IOFireWireUnit/reserved -C++/data/IOFWPseudoAddressSpace/reserved -C++/data/IOPCIATA/reserved -C++/data/IOTimerEventSource/reserved -C++/data/IORemoteConfigDirectory/reserved -C++/data/IORegistryEntry/reserved -C++/data/IOService/reserved -C++/data/IOUserClient/reserved -C++/data/IOPCI2PCIBridge/reserved -C++/data/IOPCIDevice/reserved -C++/data/IOWorkLoop/reserved -C++/data/MacIOATA/reserved -C++/instm/IONetworkController/reserveDebuggerLock -Objective-C/instm/NSPort/reservedSpaceLength -Objective-C/instm/NSRulerView/reservedThicknessForAccessoryView -Objective-C/instm/NSRulerView/reservedThicknessForMarkers -Objective-C/instm/AMAction/reset -Objective-C/instm/NSBrowserCell/reset -Objective-C/instm/NSMigrationManager/reset -C++/instm/IOCatalogue/reset -C++/instm/IONetworkData/reset -C++/instm/IOUSBPipe/Reset -C++/instm/IORegistryIterator/reset -C++/instm/OSIterator/reset -C++/instm/OSCollectionIterator/reset -Objective-C/instm/NSManagedObjectContext/reset -JavaScript/instm/HTMLFormElement/reset -JavaScript/instm/XSLTProcessor/reset -C/func/-/reset_prog_mode -C/func/-/reset_shell_mode -Objective-C/instm/NSMutableData/resetBytesInRange: -Objective-C/instm/NSSearchFieldCell/resetCancelButtonCell -Objective-C/instm/NSCell/resetCursorRect:inView: -Objective-C/instm/NSMatrix/resetCursorRects -Objective-C/instm/NSWindow/resetCursorRects -Objective-C/instm/NSView/resetCursorRects -Objective-C/instm/QCCompositionPickerView/resetDefaultInputValues -C++/instm/IOUSBDevice/ResetDevice -JavaScript/instm/Channel/resetLastError -C++/instm/IOUSBController/ResetPipe -Objective-C/instm/NSSearchFieldCell/resetSearchButtonCell -Objective-C/clm/NSUserDefaults/resetStandardUserDefaults -C++/instm/IOAudioEngine/resetStatusBuffer -Objective-C/clm/NSTimeZone/resetSystemTimeZone -C/func/-/ResetTextToUnicodeInfo -C/func/-/resetty -C/func/-/ResetUnicodeToTextInfo -C/func/-/ResetUnicodeToTextRunInfo -JavaScript/instm/Document/resetWMLPageState -C/tdef/-/ResFileAttributes -C/tdef/-/ResFileRefNum -C/econst/-/resFNotFound -Objective-C/instm/NSOpenGLView/reshape -C/tdef/-/ResID -Objective-C/instm/NSTextView/resignFirstResponder -Objective-C/instm/NSResponder/resignFirstResponder -Objective-C/instm/NSWindow/resignKeyWindow -Objective-C/instm/NSWindow/resignMainWindow -C/func/-/resize_term -JavaScript/instm/DOMWindow/resizeBy -Objective-C/instm/NSTableHeaderView/resizedColumn -Objective-C/clm/NSCursor/resizeDownCursor -Objective-C/instm/NSWindow/resizeFlags -Objective-C/instm/NSWindow/resizeIncrements -Objective-C/clm/NSCursor/resizeLeftCursor -Objective-C/clm/NSCursor/resizeLeftRightCursor -Objective-C/clm/NSCursor/resizeRightCursor -Objective-C/instm/CALayer/resizeSublayersWithOldSize: -Objective-C/instm/NSView/resizeSubviewsWithOldSize: -C/func/-/resizeterm -JavaScript/instm/DOMWindow/resizeTo -Objective-C/clm/NSCursor/resizeUpCursor -Objective-C/clm/NSCursor/resizeUpDownCursor -Objective-C/instm/CALayer/resizeWithOldSuperlayerSize: -Objective-C/instm/NSView/resizeWithOldSuperviewSize: -Objective-C/instm/NSTableColumn/resizingMask -C/econst/-/resLocked -C/econst/-/resLockedBit -C/econst/-/resNotFound -Objective-C/instm/NSNetService/resolve -C/func/-/ResolveAlias -C/func/-/ResolveAliasFile -C/func/-/ResolveAliasFileWithMountFlags -C/func/-/ResolveAliasFileWithMountFlagsNoUI -C/func/-/ResolveAliasWithMountFlags -Objective-C/clm/NSObject/resolveClassMethod: -C/func/-/ResolveComponentAlias -C/func/-/ResolveDefaultTextEncoding -Objective-C/instm/NSCreateCommand/resolvedKeyDictionary -C/tdef/-/resolveEntitySAXFunc -Objective-C/clm/NSObject/resolveInstanceMethod: -Objective-C/instm/NSXMLElement/resolveNamespaceForName: -Objective-C/instm/NSXMLElement/resolvePrefixForNamespaceURI: -C/func/-/resolver -Objective-C/instm/NSOpenPanel/resolvesAliases -Objective-C/instm/NSNetService/resolveWithTimeout: -Objective-C/instm/XGActionMonitor/resource -Objective-C/instm/NSURLHandle/resourceData -Objective-C/instm/NSURL/resourceDataUsingCache: -C/tdef/-/ResourceEndianFilterPtr -C/econst/-/resourceInMemory -Objective-C/instm/WebView/resourceLoadDelegate -C++/clm/IOService/resourceMatching -Objective-C/instm/NSBundle/resourcePath -C/tdef/-/ResourceSpec -Objective-C/instm/NSURL/resourceSpecifier -Objective-C/instm/NSBundle/resourceURL -Objective-C/instm/NSURL/resourceValuesForKeys:error: -Objective-C/clm/NSURL/resourceValuesForKeys:fromBookmarkData: -Objective-C/clm/NSProxy/respondsToSelector: -Objective-C/intfm/NSObject/respondsToSelector: -Objective-C/instm/NSCachedURLResponse/response -Objective-C/instm/WebDataSource/response -JavaScript/data/XMLHttpRequest/responseText -JavaScript/data/XMLHttpRequest/responseXML -C/econst/-/resPreload -C/econst/-/resPreloadBit -C/econst/-/resProtected -C/econst/-/resProtectedBit -C/econst/-/resPurgeable -C/econst/-/resPurgeableBit -C/econst/-/resSysHeap -C/econst/-/resSysHeapBit -C/econst/-/resSysRefBit -C/func/-/restartterm -Objective-C/instm/IOBluetoothOBEXSession/restartTransmission -JavaScript/instm/CanvasRenderingContext2D/restore -C/func/-/RestoreApplicationDockTileImage -Objective-C/instm/NSWindow/restoreCachedImage -Objective-C/clm/NSGraphicsContext/restoreGraphicsState -Objective-C/instm/NSGraphicsContext/restoreGraphicsState -Objective-C/instm/NSObject/restoreValuesAndReturnError: -C/tdef/-/ResType -Objective-C/instm/NSInvocationOperation/result -JavaScript/data/IDBRequest/result -JavaScript/data/IDBSuccessEvent/result -JavaScript/data/FileReader/result -JavaScript/data/SVGFilterPrimitiveStandardAttributes/result -Objective-C/instm/NSMetadataQueryResultGroup/resultAtIndex: -Objective-C/instm/NSMetadataQuery/resultAtIndex: -Objective-C/instm/NSMetadataQueryResultGroup/resultCount -Objective-C/instm/NSMetadataQuery/resultCount -Objective-C/instm/NSMetadataQueryResultGroup/results -Objective-C/instm/NSMetadataQuery/results -Objective-C/instm/XGActionMonitor/results -Objective-C/instm/ODQuery/resultsAllowingPartial:error: -Objective-C/instp/NSTextCheckingResult/resultType -Objective-C/instm/NSTextCheckingResult/resultType -Objective-C/instm/NSFetchRequest/resultType -JavaScript/data/XPathResult/resultType -Objective-C/instm/NSSound/resume -Objective-C/instm/NSTask/resume -Objective-C/instm/NSURLDownload/resumeData -JavaScript/instm/InspectorBackend/resumeDebugger -Objective-C/instm/NSScriptCommand/resumeExecutionWithResult: -Objective-C/instm/QTCaptureFileOutput/resumeRecording -Objective-C/instm/QCView/resumeRendering -C++/instm/IOSCSIParallelInterfaceController/ResumeServices -Objective-C/instm/NSAppleEventManager/resumeWithSuspensionID: -Objective-C/instm/NSAutoreleasePool/retain -Objective-C/intfm/NSObject/retain -C++/instm/OSMetaClass/retain -C++/instm/OSMetaClassBase/retain -C++/instm/OSObject/retain -Objective-C/instm/NSInvocation/retainArguments -Objective-C/intfm/NSObject/retainCount -Objective-C/instm/NSManagedObjectContext/retainsRegisteredObjects -C/econst/-/retryComponentRegistrationErr -C++/instm/IOCommandPool/returnCommand -C++/instm/IOUSBDevice/ReturnExtraPower -Objective-C/instm/NSAppleEventDescriptor/returnID -Objective-C/instm/NSFetchRequest/returnsDistinctResults -Objective-C/instm/NSFetchRequest/returnsObjectsAsFaults -Objective-C/instm/NSScriptCommandDescription/returnType -JavaScript/data/Event/returnValue -Objective-C/instm/NSBrowser/reusesColumns -JavaScript/data/HTMLAnchorElement/rev -JavaScript/data/HTMLLinkElement/rev -C/func/-/RevealDataBrowserItem -Objective-C/instm/NSSortDescriptor/reversedSortDescriptor -Objective-C/instm/NSArray/reverseObjectEnumerator -Objective-C/instm/NSValueTransformer/reverseTransformedValue: -Objective-C/instm/NSUserDefaultsController/revert: -Objective-C/instm/NSDocument/revertDocumentToSaved: -C/func/-/RevertTextEncodingToScriptInfo -Objective-C/instm/NSPersistentDocument/revertToContentsOfURL:ofType:error: -Objective-C/instm/NSDocument/revertToContentsOfURL:ofType:error: -Objective-C/instm/NSUserDefaultsController/revertToInitialValues: -Objective-C/instm/NSDocument/revertToSavedFromFile:ofType: -Objective-C/instm/NSDocument/revertToSavedFromURL:ofType: -Objective-C/instm/NSDocumentController/reviewUnsavedDocumentsWithAlertTitle:cancellable:delegate:didReviewAllSelector:contextInfo: -C/data/IOFireWireIsochChannelInterface/revision -C/data/IOFireWireLocalUnitDirectoryInterface/revision -C/data/IOFireWireReadQuadletCommandInterface/revision -C/data/IOFireWireConfigDirectoryInterface/revision -C/data/IOFireWireIsochPortInterface/revision -C/data/IOFireWireDeviceInterface/revision -C/data/IOFireWireLocalIsochPortInterface/revision -C/data/IOFireWireNuDCLPoolInterface/revision -C/data/IOFireWireRemoteIsochPortInterface/revision -C/data/IOFireWireAsyncStreamCommandInterface/revision -C/data/IOFireWirePHYCommandInterface/revision -C/data/IOFWAsyncStreamListenerInterface/revision -C/data/IOFireWireWriteCommandInterface/revision -C/data/IOFireWireCommandInterface/revision -C/data/IOFireWirePhysicalAddressSpaceInterface/revision -C/data/IOFireWireWriteQuadletCommandInterface/revision -C/data/IOFireWireLibPHYPacketListenerInterface/revision -C/data/IOFireWirePseudoAddressSpaceInterface/revision -C/data/IOFireWireCompareSwapCommandInterface/revision -C/data/IOFireWireDCLCommandPoolInterface/revision -C/data/IOFireWireLibVectorCommandInterface/revision -C/data/IOFireWireReadCommandInterface/revision -C/data/IOFireWireCompareSwapCommandInterface_v3/revision -C/data/SCSITaskDeviceInterface/revision -C/data/SCSITaskInterface/revision -C/data/MMCDeviceInterface/revision -C/func/-/revoke -C/func/-/rewind -C/func/-/rewinddir -C/econst/-/rfNumErr -JavaScript/clconst/WebGLRenderingContext/RGB -JavaScript/clconst/WebGLRenderingContext/RGB565 -JavaScript/clconst/WebGLRenderingContext/RGB5_A1 -JavaScript/clconst/WebGLRenderingContext/RGBA -JavaScript/clconst/WebGLRenderingContext/RGBA4 -C/tag/-/RGBColor -JavaScript/data/DOMWindow/RGBColor -JavaScript/data/SVGColor/rgbColor -JavaScript/cl/-/RGBColor -C/tdef/-/RgnHandle -C/tdef/-/RgnPtr -Objective-C/instm/NSAppleScript/richTextSource -JavaScript/data/ClientRect/right -JavaScript/data/Rect/right -Objective-C/instm/NSExpression/rightExpression -Objective-C/instm/NSComparisonPredicate/rightExpression -Objective-C/instm/NSPredicateEditorRowTemplate/rightExpressionAttributeType -Objective-C/instm/NSPredicateEditorRowTemplate/rightExpressions -Objective-C/instm/NSPrintInfo/rightMargin -Objective-C/instm/NSResponder/rightMouseDown: -Objective-C/instm/NSView/rightMouseDown: -Objective-C/instm/NSResponder/rightMouseDragged: -Objective-C/instm/NSResponder/rightMouseUp: -Objective-C/instp/PSEntry/rights -Objective-C/instp/PSFeed/rights -C/func/-/rindex -C/func/-/rint -C/func/-/rintf -C/func/-/rintl -C/func/-/rinttol -C/func/-/ripemd -C/func/-/RIPEMD160 -C/func/-/RIPEMD160_Final -C/func/-/RIPEMD160_Init -C/func/-/RIPEMD160_Update -C/func/-/ripoffline -C/func/-/rmdir -C/econst/-/rmvResFailed -Objective-C/instm/NSManagedObjectContext/rollback -JavaScript/data/NodeIterator/root -JavaScript/data/TreeWalker/root -Objective-C/instm/NSXMLNode/rootDocument -Objective-C/instm/NSXMLDocument/rootElement -JavaScript/data/SVGDocument/rootElement -Objective-C/intfm/NSBrowserDelegate/rootItemForBrowser: -Objective-C/instm/NSConnection/rootObject -Objective-C/instm/NSConnection/rootProxy -Objective-C/clm/NSConnection/rootProxyForConnectionWithRegisteredName:host: -Objective-C/clm/NSConnection/rootProxyForConnectionWithRegisteredName:host:usingNameServer: -C/func/-/RootWindow -C/func/-/RootWindowOfScreen -C/func/-/Rotate -JavaScript/instm/CanvasRenderingContext2D/rotate -JavaScript/instm/SVGMatrix/rotate -JavaScript/data/SVGTextPositioningElement/rotate -JavaScript/instm/WebKitCSSMatrix/rotate -JavaScript/instm/WebKitCSSMatrix/rotateAxisAngle -Objective-C/instm/NSView/rotateByAngle: -Objective-C/instm/NSAffineTransform/rotateByDegrees: -Objective-C/instm/NSAffineTransform/rotateByRadians: -JavaScript/instm/SVGMatrix/rotateFromVector -Objective-C/instm/IKImageView/rotateImageLeft: -Objective-C/instm/IKImageView/rotateImageRight: -Objective-C/instm/IKCameraDeviceView/rotateLeft: -C/func/-/RotateMatrix -Objective-C/instm/IKCameraDeviceView/rotateRight: -Objective-C/instm/NSResponder/rotateWithEvent: -Objective-C/instm/PDFPage/rotation -Objective-C/instm/PDFAnnotationTextWidget/rotation -Objective-C/instm/NSEvent/rotation -Objective-C/instm/IKImageView/rotationAngle -Objective-C/instp/IKImageView/rotationAngle -Objective-C/instp/CAKeyframeAnimation/rotationMode -Objective-C/instm/CAKeyframeAnimation/rotationMode -C/func/-/round -C/func/-/roundf -Objective-C/instm/NSNumberFormatter/roundingBehavior -Objective-C/instm/NSNumberFormatter/roundingIncrement -Objective-C/intfm/NSDecimalNumberBehaviors/roundingMode -Objective-C/instm/NSNumberFormatter/roundingMode -C/func/-/roundl -C/func/-/roundtol -C/tag/-/routines_command -C/tag/-/routines_command_64 -Objective-C/instm/NSTableView/rowAtPoint: -Objective-C/instm/FxBitmap/rowBytes -Objective-C/instm/NSRuleEditor/rowClass -Objective-C/instm/NSRuleEditor/rowForDisplayValue: -Objective-C/instm/NSOutlineView/rowForItem: -Objective-C/instm/NSBrowser/rowHeight -Objective-C/instm/NSRuleEditor/rowHeight -Objective-C/instm/NSTableView/rowHeight -Objective-C/binding/NSTableView/rowHeight -Objective-C/binding/NSOutlineView/rowHeight -JavaScript/data/HTMLTableRowElement/rowIndex -Objective-C/instm/IKImageBrowserView/rowIndexesInRect: -Objective-C/binding/NSPredicateEditor/rows -JavaScript/data/HTMLTableElement/rows -JavaScript/data/HTMLTextAreaElement/rows -JavaScript/data/HTMLFrameSetElement/rows -JavaScript/data/HTMLTableSectionElement/rows -JavaScript/data/SQLResultSet/rows -JavaScript/data/SQLResultSet/rowsAffected -Objective-C/instm/NSTableView/rowsInRect: -Objective-C/instm/PDFView/rowSizeForPage: -Objective-C/instm/NSTextTableBlock/rowSpan -JavaScript/data/HTMLTableCellElement/rowSpan -Objective-C/instm/NSPredicateEditor/rowTemplates -Objective-C/instm/NSRuleEditor/rowTypeForRow: -Objective-C/instm/NSRuleEditor/rowTypeKeyPath -C/func/-/rpc -C/func/-/rpc_createerr -C/func/-/rresvport -C/func/-/rresvport_af -C/func/-/rsa -C/func/-/RSA_blinding_off -C/func/-/RSA_blinding_on -C/func/-/RSA_check_key -C/func/-/RSA_flags -C/func/-/RSA_free -C/func/-/RSA_generate_key -C/func/-/RSA_get_default_method -C/func/-/RSA_get_ex_data -C/func/-/RSA_get_ex_new_index -C/func/-/RSA_get_method -C/func/-/RSA_new -C/func/-/RSA_new_method -C/func/-/RSA_null_method -C/func/-/RSA_padding_add_none -C/func/-/RSA_padding_add_PKCS1_OAEP -C/func/-/RSA_padding_add_PKCS1_type_1 -C/func/-/RSA_padding_add_PKCS1_type_2 -C/func/-/RSA_padding_add_SSLv23 -C/func/-/RSA_padding_check_none -C/func/-/RSA_padding_check_PKCS1_OAEP -C/func/-/RSA_padding_check_PKCS1_type_1 -C/func/-/RSA_padding_check_PKCS1_type_2 -C/func/-/RSA_padding_check_SSLv23 -C/func/-/RSA_PKCS1_SSLeay -C/func/-/RSA_print -C/func/-/RSA_print_fp -C/func/-/RSA_private_decrypt -C/func/-/RSA_private_encrypt -C/func/-/RSA_public_decrypt -C/func/-/RSA_public_encrypt -C/func/-/RSA_set_default_method -C/func/-/RSA_set_ex_data -C/func/-/RSA_set_method -C/func/-/RSA_sign -C/func/-/RSA_sign_ASN1_OCTET_STRING -C/func/-/RSA_size -C/func/-/RSA_verify -C/func/-/RSA_verify_ASN1_OCTET_STRING -C/tdef/-/RsrcChainLocationenum -Objective-C/instp/CWInterface/rssi -Objective-C/instp/CWNetwork/rssi -Objective-C/instm/NSAttributedString/RTFDFileWrapperFromRange:documentAttributes: -Objective-C/instm/NSText/RTFDFromRange: -Objective-C/instm/NSAttributedString/RTFDFromRange:documentAttributes: -Objective-C/instm/NSText/RTFFromRange: -Objective-C/instm/NSAttributedString/RTFFromRange:documentAttributes: -Objective-C/intfm/NSRuleEditorDelegate/ruleEditor:child:forCriterion:withRowType: -Objective-C/intfm/NSRuleEditorDelegate/ruleEditor:displayValueForCriterion:inRow: -Objective-C/intfm/NSRuleEditorDelegate/ruleEditor:numberOfChildrenForCriterion:withRowType: -Objective-C/intfm/NSRuleEditorDelegate/ruleEditor:predicatePartsForCriterion:withDisplayValue:inRow: -Objective-C/intfm/NSRuleEditorDelegate/ruleEditorRowsDidChange: -Objective-C/instm/NSRulerMarker/ruler -Objective-C/instm/NSLayoutManager/rulerAccessoryViewForTextView:paragraphStyle:ruler:enabled: -Objective-C/instm/NSAttributedString/rulerAttributesInRange: -Objective-C/instm/NSLayoutManager/rulerMarkersForTextView:paragraphStyle:ruler: -Objective-C/instm/NSScrollView/rulersVisible -Objective-C/instm/NSView/rulerView:didAddMarker: -Objective-C/instm/NSTextView/rulerView:didAddMarker: -Objective-C/instm/NSView/rulerView:didMoveMarker: -Objective-C/instm/NSTextView/rulerView:didMoveMarker: -Objective-C/instm/NSView/rulerView:didRemoveMarker: -Objective-C/instm/NSTextView/rulerView:didRemoveMarker: -Objective-C/instm/NSView/rulerView:handleMouseDown: -Objective-C/instm/NSTextView/rulerView:handleMouseDown: -Objective-C/instm/NSView/rulerView:shouldAddMarker: -Objective-C/instm/NSTextView/rulerView:shouldAddMarker: -Objective-C/instm/NSView/rulerView:shouldMoveMarker: -Objective-C/instm/NSTextView/rulerView:shouldMoveMarker: -Objective-C/instm/NSView/rulerView:shouldRemoveMarker: -Objective-C/instm/NSTextView/rulerView:shouldRemoveMarker: -Objective-C/instm/NSView/rulerView:willAddMarker:atLocation: -Objective-C/instm/NSTextView/rulerView:willAddMarker:atLocation: -Objective-C/instm/NSView/rulerView:willMoveMarker:toLocation: -Objective-C/instm/NSTextView/rulerView:willMoveMarker:toLocation: -Objective-C/instm/NSView/rulerView:willSetClientView: -Objective-C/clm/NSScrollView/rulerViewClass -JavaScript/data/CSSStyleSheet/rules -JavaScript/data/HTMLTableElement/rules -Objective-C/instm/NSRulerView/ruleThickness -Objective-C/instm/NSSpellServer/run -C++/instm/Test/run -C++/instm/TestCase/run -C++/instm/TestSuite/run -Objective-C/instm/NSRunLoop/run -Objective-C/instm/NSApplication/run -Objective-C/instm/AMWorkflowController/run: -C++/instm/IOCommandGate/runAction -C++/instm/IOWorkLoop/runAction -Objective-C/intfm/CAAction/runActionForKey:object:arguments: -Objective-C/instm/AMAction/runAsynchronouslyWithInput: -C++/instm/IOCommandGate/runCommand -C++/instm/TestRun/runCount -Objective-C/instm/NSToolbar/runCustomizationPalette: -C/func/-/rune -C++/data/IOAudioEngine/runEraseHead -C++/instm/IOWorkLoop/runEventSources -Objective-C/instm/NSConnection/runInNewThread -Objective-C/instm/NSUndoManager/runLoopModes -Objective-C/instm/NSAnimation/runLoopModesForAnimating -Objective-C/instm/NSPageLayout/runModal -Objective-C/instm/CBIdentityPicker/runModal -Objective-C/instm/NSSavePanel/runModal -Objective-C/instm/NSAlert/runModal -Objective-C/instm/NSPrintPanel/runModal -Objective-C/instm/IOBluetoothObjectPushUIController/runModal -Objective-C/instm/IOBluetoothPairingController/runModal -Objective-C/instm/IOBluetoothDeviceSelectorController/runModal -Objective-C/instm/IOBluetoothServiceBrowserController/runModal -Objective-C/instm/IKPictureTaker/runModal -Objective-C/instm/SFCertificatePanel/runModalForCertificates:showGroup: -Objective-C/instm/SFKeychainSavePanel/runModalForDirectory:file: -Objective-C/instm/NSSavePanel/runModalForDirectory:file: -Objective-C/instm/NSOpenPanel/runModalForDirectory:file:types: -Objective-C/instm/SFChooseIdentityPanel/runModalForIdentities:message: -Objective-C/instm/SFKeychainSettingsPanel/runModalForSettings:keychain: -Objective-C/instm/SFCertificateTrustPanel/runModalForTrust:message: -Objective-C/instm/NSOpenPanel/runModalForTypes: -Objective-C/instm/NSApplication/runModalForWindow: -Objective-C/instm/CBIdentityPicker/runModalForWindow:modalDelegate:didEndSelector:contextInfo: -Objective-C/instm/NSApplication/runModalForWindow:relativeToWindow: -Objective-C/instm/ABIdentityPicker/runModalIdentityPicker -Objective-C/instm/NSDocumentController/runModalOpenPanel:forTypes: -Objective-C/instm/NSDocument/runModalPageLayoutWithPrintInfo: -Objective-C/instm/NSDocument/runModalPageLayoutWithPrintInfo:delegate:didRunSelector:contextInfo: -Objective-C/instm/NSDocument/runModalPrintOperation:delegate:didRunSelector:contextInfo: -Objective-C/instm/NSDocument/runModalSavePanelForSaveOperation:delegate:didSaveSelector:contextInfo: -Objective-C/instm/NSApplication/runModalSession: -Objective-C/instm/IKFilterBrowserPanel/runModalWithOptions: -Objective-C/instm/NSPageLayout/runModalWithPrintInfo: -Objective-C/instm/NSPrintPanel/runModalWithPrintInfo: -Objective-C/instm/NSRunLoop/runMode:beforeDate: -Objective-C/instm/NSWorkspace/runningApplications -Objective-C/clm/NSRunningApplication/runningApplicationsWithBundleIdentifier: -Objective-C/clm/NSRunningApplication/runningApplicationWithProcessIdentifier: -Objective-C/instm/NSPrintOperation/runOperation -Objective-C/instm/NSPrintOperation/runOperationModalForWindow:delegate:didRunSelector:contextInfo: -Objective-C/instm/NSDocument/runPageLayout: -Objective-C/instm/NSApplication/runPageLayout: -Objective-C/instm/IOBluetoothObjectPushUIController/runPanel -Objective-C/instm/IOBluetoothDeviceSelectorController/runPanelWithAttributes: -Objective-C/instm/IOBluetoothPairingController/runPanelWithAttributes: -C++/instm/IORegistryEntry/runPropertyAction -Objective-C/instm/DRSetupPanel/runSetupPanel -Objective-C/instm/IKSlideshow/runSlideshowWithDataSource:inMode:options: -Objective-C/instm/NSWindow/runToolbarCustomizationPalette: -Objective-C/instm/NSRunLoop/runUntilDate: -Objective-C/instm/AMAction/runWithInput:fromAction:error: -Objective-C/clm/AMWorkflow/runWorkflowAtURL:withInput:error: -C/func/-/ruserok -JavaScript/data/SVGEllipseElement/rx -JavaScript/data/SVGRectElement/rx -JavaScript/data/SVGEllipseElement/ry -JavaScript/data/SVGRectElement/ry -C/tdef/-/sAddAttribute -C/tdef/-/sAddAttributeValue -C++/clm/OSMetaClassBase/safeMetaCast -C/econst/-/sameFileErr -C/func/-/SameProcess -JavaScript/clconst/WebGLRenderingContext/SAMPLE_ALPHA_TO_COVERAGE -JavaScript/clconst/WebGLRenderingContext/SAMPLE_BUFFERS -JavaScript/clconst/WebGLRenderingContext/SAMPLE_COVERAGE -JavaScript/clconst/WebGLRenderingContext/SAMPLE_COVERAGE_INVERT -JavaScript/clconst/WebGLRenderingContext/SAMPLE_COVERAGE_VALUE -Objective-C/instm/QTSampleBuffer/sampleBufferAttributes -JavaScript/instm/WebGLRenderingContext/sampleCoverage -C/tdef/-/SampleDescriptionHandle -C/tdef/-/SampleDescriptionPtr -C/func/-/SampleNumToMediaDecodeTime -C/func/-/SampleNumToMediaDisplayTime -C/func/-/SampleNumToMediaTime -JavaScript/clconst/WebGLRenderingContext/SAMPLER_2D -JavaScript/clconst/WebGLRenderingContext/SAMPLER_CUBE -C++/data/IOAudioEngine/sampleRate -C/tdef/-/SampleReference64Ptr -C/tag/-/SampleReference64Record -C/tdef/-/SampleReferencePtr -C/tag/-/SampleReferenceRecord -Objective-C/clm/CISampler/samplerWithImage: -Objective-C/clm/CISampler/samplerWithImage:keysAndValues: -Objective-C/clm/CISampler/samplerWithImage:options: -JavaScript/clconst/WebGLRenderingContext/SAMPLES -Objective-C/instm/NSBitmapImageRep/samplesPerPixel -Objective-C/instm/QTSampleBuffer/sampleUseCount -JavaScript/data/HTMLIFrameElement/sandbox -C/func/-/sandbox_free_error -C/func/-/sandbox_init -Objective-C/instm/WebPreferences/sansSerifFontFamily -C/func/-/sasl -C/func/-/sasl_authorize_t -C/func/-/sasl_auxprop -C/func/-/sasl_auxprop_getctx -C/func/-/sasl_auxprop_request -C/func/-/sasl_callbacks -C/func/-/sasl_canon_user_t -C/func/-/sasl_chalprompt_t -C/func/-/sasl_checkapop -C/func/-/sasl_checkpass -C/func/-/sasl_client_init -C/func/-/sasl_client_new -C/func/-/sasl_client_start -C/func/-/sasl_client_step -C/func/-/sasl_decode -C/func/-/sasl_dispose -C/func/-/sasl_done -C/func/-/sasl_encode -C/func/-/sasl_encodev -C/func/-/sasl_errdetail -C/func/-/sasl_errors -C/func/-/sasl_errsring -C/func/-/sasl_errstring -C/func/-/sasl_getopt_t -C/func/-/sasl_getpath_t -C/func/-/sasl_getprop -C/func/-/sasl_getrealm_t -C/func/-/sasl_getsecret_t -C/func/-/sasl_getsimple_t -C/func/-/sasl_global_listmech -C/func/-/sasl_idle -C/func/-/sasl_listmech -C/func/-/sasl_log_t -C/func/-/sasl_server_init -C/func/-/sasl_server_new -C/func/-/sasl_server_start -C/func/-/sasl_server_step -C/func/-/sasl_server_userdb_checkpass_t -C/func/-/sasl_server_userdb_setpass_t -C/func/-/sasl_setpass -C/func/-/sasl_setprop -C/func/-/sasl_user_exists -C/func/-/sasl_verifyfile_t -C/func/-/SASUM -Objective-C/instm/NSColor/saturationComponent -Objective-C/instm/ABAddressBook/save -JavaScript/instm/CanvasRenderingContext2D/save -Objective-C/instm/NSUserDefaultsController/save: -Objective-C/instm/NSAtomicStore/save: -Objective-C/instm/NSManagedObjectContext/save: -Objective-C/instm/NSDocumentController/saveAllDocuments: -Objective-C/instm/ABAddressBook/saveAndReturnError: -Objective-C/instm/CalCalendarStore/saveCalendar:error: -Objective-C/instm/NSDocument/saveDocument: -Objective-C/instm/NSDocument/saveDocumentAs: -Objective-C/instm/NSDocument/saveDocumentTo: -Objective-C/instm/NSDocument/saveDocumentWithDelegate:didSaveSelector:contextInfo: -Objective-C/instm/CalCalendarStore/saveEvent:span:error: -Objective-C/instm/NSWindow/saveFrameUsingName: -JavaScript/instm/InspectorBackend/saveFrontendSettings -Objective-C/instm/NSGraphicsContext/saveGraphicsState -Objective-C/clm/NSGraphicsContext/saveGraphicsState -Objective-C/instm/NSQuitCommand/saveOptions -Objective-C/instm/NSCloseCommand/saveOptions -Objective-C/instm/NSObject/saveOptions:shouldShowUTType: -Objective-C/clm/NSSavePanel/savePanel -Objective-C/instm/CalCalendarStore/saveTask:error: -Objective-C/instm/NSDocument/saveToFile:saveOperation:delegate:didSaveSelector:contextInfo: -Objective-C/instm/WebHistory/saveToURL:error: -Objective-C/instm/NSDocument/saveToURL:ofType:forSaveOperation:delegate:didSaveSelector:contextInfo: -Objective-C/instm/NSDocument/saveToURL:ofType:forSaveOperation:error: -Objective-C/instm/SFCertificateView/saveTrustSettings -C/func/-/savetty -Objective-C/instm/NSObject/saveValuesAndReturnError: -C/macro/-/SAXON_NAMESPACE -C/func/-/SAXPY -Objective-C/cl/-/SBApplication -Objective-C/intf/-/SBApplicationDelegate -C/tdef/-/SBCModePageCaching -C/tdef/-/SBCModePageFlexibleDisk -C/tdef/-/SBCModePageFormatDevice -C/tdef/-/SBCModePageRigidDiskGeometry -Objective-C/cl/-/SBElementArray -Objective-C/cl/-/SBObject -C++/tdef/IOFireWireSerialBusProtocolTransport/SBP2ClientOrbData -C++/instm/IOFireWireSerialBusProtocolTransport/SBP2LoginAccessor -C/func/-/sbrk -C/func/-/scalb -C/func/-/scalbn -C/func/-/scalbnf -C/func/-/scalbnl -Objective-C/instm/CAConstraint/scale -Objective-C/instm/CAEmitterCell/scale -Objective-C/instp/CAEmitterLayer/scale -Objective-C/instp/CAEmitterCell/scale -Objective-C/instm/CAEmitterLayer/scale -Objective-C/instp/CAConstraint/scale -Objective-C/intfm/NSDecimalNumberBehaviors/scale -JavaScript/instm/CanvasRenderingContext2D/scale -JavaScript/instm/SVGMatrix/scale -JavaScript/data/SVGFEDisplacementMapElement/scale -JavaScript/instm/WebKitCSSMatrix/scale -C/func/-/scale_form -C/func/-/scale_menu -Objective-C/instm/NSAffineTransform/scaleBy: -Objective-C/instm/PDFView/scaleFactor -C/func/-/ScaleMatrix -C/func/-/ScaleMovieSegment -JavaScript/instm/SVGMatrix/scaleNonUniform -Objective-C/instm/CAEmitterCell/scaleRange -Objective-C/instp/CAEmitterCell/scaleRange -Objective-C/instm/QTTrack/scaleSegment:newDuration: -Objective-C/instm/QTMovie/scaleSegment:newDuration: -Objective-C/instp/CAEmitterCell/scaleSpeed -Objective-C/instm/CAEmitterCell/scaleSpeed -Objective-C/instm/NSImage/scalesWhenResized -C/func/-/ScaleTrackSegment -Objective-C/instm/NSView/scaleUnitSquareToSize: -Objective-C/instm/NSAffineTransform/scaleXBy:yBy: -Objective-C/instm/NSPrintInfo/scalingFactor -Objective-C/instm/NSScanner/scanCharactersFromSet:intoString: -Objective-C/instp/IKScannerDeviceView/scanControlLabel -Objective-C/instm/IKScannerDeviceView/scanControlLabel -Objective-C/instm/NSScanner/scanDecimal: -C/func/-/scandir -C/func/-/scandir_b -Objective-C/instm/NSScanner/scanDouble: -C/func/-/scanf -C/func/-/scanf_l -Objective-C/instm/NSScanner/scanFloat: -Objective-C/instm/CWInterface/scanForNetworksWithParameters:error: -Objective-C/instm/NSScanner/scanHexDouble: -Objective-C/instm/NSScanner/scanHexFloat: -Objective-C/instm/NSScanner/scanHexInt: -Objective-C/instm/NSScanner/scanHexLongLong: -Objective-C/instm/NSScanner/scanInt: -Objective-C/instm/NSScanner/scanInteger: -Objective-C/instm/NSScanner/scanLocation -Objective-C/instm/NSScanner/scanLongLong: -Objective-C/instp/IKScannerDeviceView/scannerDevice -Objective-C/instm/IKScannerDeviceView/scannerDevice -Objective-C/intfm/IKScannerDeviceViewDelegate/scannerDeviceView:didEncounterError: -Objective-C/intfm/IKScannerDeviceViewDelegate/scannerDeviceView:didScanToURL:fileData:error: -Objective-C/clm/NSScanner/scannerWithString: -Objective-C/instm/NSScanner/scanString:intoString: -Objective-C/instm/NSScanner/scanUpToCharactersFromSet:intoString: -Objective-C/instm/NSScanner/scanUpToString:intoString: -C/func/-/scanw -C/func/-/SCAsyncIdle -C/tag/-/scattered_relocation_info -C/func/-/SCAudioInvokeLegacyCodecOptionsDialog -C/econst/-/scAvailableCompressionListType -C/func/-/SCBondInterfaceCopyAll -C/func/-/SCBondInterfaceCopyAvailableMemberInterfaces -C/func/-/SCBondInterfaceCopyStatus -C/func/-/SCBondInterfaceCreate -C/func/-/SCBondInterfaceGetMemberInterfaces -C/func/-/SCBondInterfaceGetOptions -C/tdef/-/SCBondInterfaceRef -C/func/-/SCBondInterfaceRemove -C/func/-/SCBondInterfaceSetLocalizedDisplayName -C/func/-/SCBondInterfaceSetMemberInterfaces -C/func/-/SCBondInterfaceSetOptions -C/func/-/SCBondStatusGetInterfaceStatus -C/func/-/SCBondStatusGetMemberInterfaces -C/func/-/SCBondStatusGetTypeID -C/tdef/-/SCBondStatusRef -C/econst/-/scCodecManufacturerType -C/econst/-/scCodecSettingsType -C/func/-/SCCompressImage -C/func/-/SCCompressPicture -C/func/-/SCCompressPictureFile -C/func/-/SCCompressSequenceBegin -C/func/-/SCCompressSequenceEnd -C/func/-/SCCompressSequenceFrame -C/func/-/SCCompressSequenceFrameAsync -C/func/-/SCCopyCompressionSessionOptions -C/func/-/SCCopyLastError -C/econst/-/scDataRateSettingsType -C/func/-/SCDefaultPictFileSettings -C/func/-/SCDefaultPictHandleSettings -C/func/-/SCDefaultPixMapSettings -C/func/-/SCDynamicStoreAddTemporaryValue -C/func/-/SCDynamicStoreAddValue -C/tag/-/SCDynamicStoreCallBack -C/tdef/-/SCDynamicStoreContext -C/func/-/SCDynamicStoreCopyComputerName -C/func/-/SCDynamicStoreCopyConsoleUser -C/func/-/SCDynamicStoreCopyDHCPInfo -C/func/-/SCDynamicStoreCopyKeyList -C/func/-/SCDynamicStoreCopyLocalHostName -C/func/-/SCDynamicStoreCopyLocation -C/func/-/SCDynamicStoreCopyMultiple -C/func/-/SCDynamicStoreCopyNotifiedKeys -C/func/-/SCDynamicStoreCopyProxies -C/func/-/SCDynamicStoreCopyValue -C/func/-/SCDynamicStoreCreate -C/func/-/SCDynamicStoreCreateRunLoopSource -C/func/-/SCDynamicStoreCreateWithOptions -C/func/-/SCDynamicStoreGetTypeID -C/func/-/SCDynamicStoreKeyCreate -C/func/-/SCDynamicStoreKeyCreateComputerName -C/func/-/SCDynamicStoreKeyCreateConsoleUser -C/func/-/SCDynamicStoreKeyCreateHostNames -C/func/-/SCDynamicStoreKeyCreateLocation -C/func/-/SCDynamicStoreKeyCreateNetworkGlobalEntity -C/func/-/SCDynamicStoreKeyCreateNetworkInterface -C/func/-/SCDynamicStoreKeyCreateNetworkInterfaceEntity -C/func/-/SCDynamicStoreKeyCreateNetworkServiceEntity -C/func/-/SCDynamicStoreKeyCreateProxies -C/func/-/SCDynamicStoreNotifyValue -C/tdef/-/SCDynamicStoreRef -C/func/-/SCDynamicStoreRemoveValue -C/func/-/SCDynamicStoreSetDispatchQueue -C/func/-/SCDynamicStoreSetMultiple -C/func/-/SCDynamicStoreSetNotificationKeys -C/func/-/SCDynamicStoreSetValue -C/func/-/SCError -C/func/-/SCErrorString -C/econst/-/scForceKeyValueType -C/func/-/SCGetBestDeviceRect -C/func/-/SCGetCompressFlags -C/econst/-/scGetCompression -C/func/-/SCGetCompressionExtended -C/func/-/SCGetInfo -C/func/-/SCGetSettingsAsAtomContainer -C/func/-/SCGetSettingsAsText -C/tag/-/ScheduledAudioFileRegion -Objective-C/clm/NSTimer/scheduledTimerWithTimeInterval:invocation:repeats: -Objective-C/clm/NSTimer/scheduledTimerWithTimeInterval:target:selector:userInfo:repeats: -Objective-C/instm/NSNetService/scheduleInRunLoop:forMode: -Objective-C/instm/NSStream/scheduleInRunLoop:forMode: -Objective-C/instm/NSNetServiceBrowser/scheduleInRunLoop:forMode: -Objective-C/instm/ODQuery/scheduleInRunLoop:forMode: -Objective-C/instm/NSURLConnection/scheduleInRunLoop:forMode: -Objective-C/instm/NSPort/scheduleInRunLoop:forMode: -Objective-C/instm/NSMachPort/scheduleInRunLoop:forMode: -C++/instm/IOGatedOutputQueue/scheduleServiceThread -C++/instm/IOOutputQueue/scheduleServiceThread -Objective-C/instm/NSObject/schemaBundleURLs -Objective-C/instm/NSURL/scheme -JavaScript/data/HTMLMetaElement/scheme -JavaScript/instm/WebGLRenderingContext/scissor -JavaScript/clconst/WebGLRenderingContext/SCISSOR_BOX -JavaScript/clconst/WebGLRenderingContext/SCISSOR_TEST -C/tdef/-/sCloseAttributeList -C/tdef/-/sCloseAttributeValueList -C/tdef/-/sCloseDirNode -C/tdef/-/sCloseRecord -C/tdef/-/SCModalFilterProc -C/tdef/-/SCModalFilterUPP -C/tdef/-/SCModalHookProc -C/tdef/-/SCModalHookUPP -C/func/-/SCNetworkCheckReachabilityByAddress -C/func/-/SCNetworkCheckReachabilityByName -C/tag/-/SCNetworkConnectionCallBack -C/tdef/-/SCNetworkConnectionContext -C/func/-/SCNetworkConnectionCopyExtendedStatus -C/func/-/SCNetworkConnectionCopyServiceID -C/func/-/SCNetworkConnectionCopyStatistics -C/func/-/SCNetworkConnectionCopyUserOptions -C/func/-/SCNetworkConnectionCopyUserPreferences -C/func/-/SCNetworkConnectionCreateWithServiceID -C/tdef/-/SCNetworkConnectionFlags -C/func/-/SCNetworkConnectionGetStatus -C/func/-/SCNetworkConnectionGetTypeID -C/tdef/-/SCNetworkConnectionPPPStatus -C/tdef/-/SCNetworkConnectionRef -C/func/-/SCNetworkConnectionScheduleWithRunLoop -C/func/-/SCNetworkConnectionSetDispatchQueue -C/func/-/SCNetworkConnectionStart -C/tdef/-/SCNetworkConnectionStatus -C/func/-/SCNetworkConnectionStop -C/func/-/SCNetworkConnectionUnscheduleFromRunLoop -C/func/-/SCNetworkInterfaceCopyAll -C/func/-/SCNetworkInterfaceCopyMediaOptions -C/func/-/SCNetworkInterfaceCopyMediaSubTypeOptions -C/func/-/SCNetworkInterfaceCopyMediaSubTypes -C/func/-/SCNetworkInterfaceCopyMTU -C/func/-/SCNetworkInterfaceCreateWithInterface -C/func/-/SCNetworkInterfaceForceConfigurationRefresh -C/func/-/SCNetworkInterfaceGetBSDName -C/func/-/SCNetworkInterfaceGetConfiguration -C/func/-/SCNetworkInterfaceGetExtendedConfiguration -C/func/-/SCNetworkInterfaceGetHardwareAddressString -C/func/-/SCNetworkInterfaceGetInterface -C/func/-/SCNetworkInterfaceGetInterfaceType -C/func/-/SCNetworkInterfaceGetLocalizedDisplayName -C/func/-/SCNetworkInterfaceGetSupportedInterfaceTypes -C/func/-/SCNetworkInterfaceGetSupportedProtocolTypes -C/func/-/SCNetworkInterfaceGetTypeID -C/tdef/-/SCNetworkInterfaceRef -C/func/-/SCNetworkInterfaceRefreshConfiguration -C/func/-/SCNetworkInterfaceSetConfiguration -C/func/-/SCNetworkInterfaceSetExtendedConfiguration -C/func/-/SCNetworkInterfaceSetMediaOptions -C/func/-/SCNetworkInterfaceSetMTU -C/func/-/SCNetworkProtocolGetConfiguration -C/func/-/SCNetworkProtocolGetEnabled -C/func/-/SCNetworkProtocolGetProtocolType -C/func/-/SCNetworkProtocolGetTypeID -C/tdef/-/SCNetworkProtocolRef -C/func/-/SCNetworkProtocolSetConfiguration -C/func/-/SCNetworkProtocolSetEnabled -C/tdef/-/SCNetworkReachabilityContext -C/func/-/SCNetworkReachabilityCreateWithAddress -C/func/-/SCNetworkReachabilityCreateWithAddressPair -C/func/-/SCNetworkReachabilityCreateWithName -C/tdef/-/SCNetworkReachabilityFlags -C/func/-/SCNetworkReachabilityGetFlags -C/func/-/SCNetworkReachabilityGetTypeID -C/tdef/-/SCNetworkReachabilityRef -C/func/-/SCNetworkReachabilityScheduleWithRunLoop -C/func/-/SCNetworkReachabilitySetCallback -C/func/-/SCNetworkReachabilitySetDispatchQueue -C/func/-/SCNetworkReachabilityUnscheduleFromRunLoop -C/func/-/SCNetworkServiceAddProtocolType -C/func/-/SCNetworkServiceCopy -C/func/-/SCNetworkServiceCopyAll -C/func/-/SCNetworkServiceCopyProtocol -C/func/-/SCNetworkServiceCopyProtocols -C/func/-/SCNetworkServiceCreate -C/func/-/SCNetworkServiceEstablishDefaultConfiguration -C/func/-/SCNetworkServiceGetEnabled -C/func/-/SCNetworkServiceGetInterface -C/func/-/SCNetworkServiceGetName -C/func/-/SCNetworkServiceGetServiceID -C/func/-/SCNetworkServiceGetTypeID -C/tdef/-/SCNetworkServiceRef -C/func/-/SCNetworkServiceRemove -C/func/-/SCNetworkServiceRemoveProtocolType -C/func/-/SCNetworkServiceSetEnabled -C/func/-/SCNetworkServiceSetName -C/func/-/SCNetworkSetAddService -C/func/-/SCNetworkSetContainsInterface -C/func/-/SCNetworkSetCopy -C/func/-/SCNetworkSetCopyAll -C/func/-/SCNetworkSetCopyCurrent -C/func/-/SCNetworkSetCopyServices -C/func/-/SCNetworkSetCreate -C/func/-/SCNetworkSetGetName -C/func/-/SCNetworkSetGetServiceOrder -C/func/-/SCNetworkSetGetSetID -C/func/-/SCNetworkSetGetTypeID -C/tdef/-/SCNetworkSetRef -C/func/-/SCNetworkSetRemove -C/func/-/SCNetworkSetRemoveService -C/func/-/SCNetworkSetSetCurrent -C/func/-/SCNetworkSetSetName -C/func/-/SCNetworkSetSetServiceOrder -C/func/-/SCNewGWorld -JavaScript/data/HTMLTableCellElement/scope -JavaScript/data/JavaScriptCallFrame/scopeChain -JavaScript/instm/JavaScriptCallFrame/scopeType -C/func/-/SCOPY -C/tag/-/SCParams -C/func/-/SCPositionDialog -C/func/-/SCPositionRect -C/func/-/SCPreferencesAddValue -C/func/-/SCPreferencesApplyChanges -C/tag/-/SCPreferencesCallBack -C/func/-/SCPreferencesCommitChanges -C/tdef/-/SCPreferencesContext -C/func/-/SCPreferencesCopyKeyList -C/func/-/SCPreferencesCreate -C/func/-/SCPreferencesCreateWithAuthorization -C/func/-/SCPreferencesGetSignature -C/func/-/SCPreferencesGetTypeID -C/func/-/SCPreferencesGetValue -C/func/-/SCPreferencesLock -C/tdef/-/SCPreferencesNotification -C/func/-/SCPreferencesPathCreateUniqueChild -C/func/-/SCPreferencesPathGetLink -C/func/-/SCPreferencesPathGetValue -C/func/-/SCPreferencesPathRemoveValue -C/func/-/SCPreferencesPathSetLink -C/func/-/SCPreferencesPathSetValue -C/tdef/-/SCPreferencesRef -C/func/-/SCPreferencesRemoveValue -C/func/-/SCPreferencesScheduleWithRunLoop -C/func/-/SCPreferencesSetCallback -C/func/-/SCPreferencesSetComputerName -C/func/-/SCPreferencesSetDispatchQueue -C/func/-/SCPreferencesSetLocalHostName -C/func/-/SCPreferencesSetValue -C/func/-/SCPreferencesSynchronize -C/func/-/SCPreferencesUnlock -C/func/-/SCPreferencesUnscheduleFromRunLoop -C/func/-/scr_dump -C/func/-/scr_init -C/func/-/scr_restore -C/func/-/scr_set -C/tdef/-/sCreateRecord -Objective-C/instm/NSWindow/screen -JavaScript/data/DOMWindow/screen -JavaScript/cl/-/Screen -C/func/-/ScreenCount -Objective-C/instm/NSFont/screenFont -Objective-C/instm/NSFont/screenFontWithRenderingMode: -JavaScript/data/DOMWindow/screenLeft -Objective-C/instm/IMService/screenNamesForPerson: -C/func/-/ScreenNumberOfCCC -C/func/-/ScreenOfDisplay -JavaScript/data/SVGSVGElement/screenPixelToMillimeterX -JavaScript/data/SVGSVGElement/screenPixelToMillimeterY -Objective-C/clm/NSScreen/screens -Objective-C/cl/-/ScreenSaverDefaults -Objective-C/cl/-/ScreenSaverView -JavaScript/data/DOMWindow/screenTop -C/func/-/ScreenWhitePointOfCCC -JavaScript/data/DOMWindow/screenX -JavaScript/data/MouseEvent/screenX -JavaScript/data/Touch/screenX -JavaScript/data/WheelEvent/screenX -JavaScript/data/DOMWindow/screenY -JavaScript/data/MouseEvent/screenY -JavaScript/data/Touch/screenY -JavaScript/data/WheelEvent/screenY -C/func/-/SCRequestImageSettings -C/func/-/SCRequestSequenceSettings -Objective-C/instm/AMAppleScriptAction/script -C/tdef/-/ScriptCode -C/tdef/-/ScriptCodeRun -Objective-C/instm/NSScriptCommand/scriptErrorExpectedTypeDescriptor -Objective-C/instm/NSScriptCommand/scriptErrorNumber -Objective-C/instm/NSScriptCommand/scriptErrorOffendingObjectDescriptor -Objective-C/instm/NSScriptCommand/scriptErrorString -Objective-C/instm/NSObject/scriptingBeginsWith: -Objective-C/instm/NSObject/scriptingContains: -Objective-C/instm/NSObject/scriptingEndsWith: -Objective-C/instm/NSObject/scriptingIsEqualTo: -Objective-C/instm/NSObject/scriptingIsGreaterThan: -Objective-C/instm/NSObject/scriptingIsGreaterThanOrEqualTo: -Objective-C/instm/NSObject/scriptingIsLessThan: -Objective-C/instm/NSObject/scriptingIsLessThanOrEqualTo: -Objective-C/instm/NSObject/scriptingProperties -Objective-C/instm/NSObject/scriptingValueForSpecifier: -JavaScript/cl/-/ScriptProfile -JavaScript/cl/-/ScriptProfileNode -JavaScript/data/HTMLDocument/scripts -JavaScript/data/TestObj/scriptStringAttr -C/func/-/scrl -C/func/-/scroll -JavaScript/instm/DOMWindow/scroll -Objective-C/clm/NSColor/scrollBarColor -JavaScript/data/DOMWindow/scrollbars -JavaScript/instm/DOMWindow/scrollBy -JavaScript/instm/Element/scrollByLines -JavaScript/instm/Element/scrollByPages -Objective-C/instm/NSMatrix/scrollCellToVisibleAtRow:column: -Objective-C/instm/NSView/scrollClipView:toPoint: -Objective-C/instm/NSBrowser/scrollColumnsLeftBy: -Objective-C/instm/NSBrowser/scrollColumnsRightBy: -Objective-C/instm/NSBrowser/scrollColumnToVisible: -Objective-C/instm/NSTableView/scrollColumnToVisible: -Objective-C/clm/NSScroller/scrollerWidth -Objective-C/clm/NSScroller/scrollerWidthForControlSize: -JavaScript/data/Element/scrollHeight -Objective-C/instm/IKImageBrowserView/scrollIndexToVisible: -JavaScript/data/HTMLFrameElement/scrolling -JavaScript/data/HTMLIFrameElement/scrolling -JavaScript/instm/Element/scrollIntoView -JavaScript/instm/Element/scrollIntoViewIfNeeded -Objective-C/instm/NSComboBox/scrollItemAtIndexToTop: -Objective-C/instm/NSComboBoxCell/scrollItemAtIndexToTop: -Objective-C/instm/NSComboBox/scrollItemAtIndexToVisible: -Objective-C/instm/NSComboBoxCell/scrollItemAtIndexToVisible: -JavaScript/data/Element/scrollLeft -Objective-C/instm/NSResponder/scrollLineDown: -Objective-C/instm/NSResponder/scrollLineUp: -Objective-C/instp/CAScrollLayer/scrollMode -Objective-C/instm/CAScrollLayer/scrollMode -C/func/-/scrollok -Objective-C/instm/NSResponder/scrollPageDown: -Objective-C/instm/NSResponder/scrollPageUp: -Objective-C/instm/NSView/scrollPoint: -Objective-C/instm/CALayer/scrollPoint: -Objective-C/instm/NSText/scrollRangeToVisible: -Objective-C/instm/NSView/scrollRect:by: -Objective-C/instm/NSView/scrollRectToVisible: -Objective-C/instm/CALayer/scrollRectToVisible: -Objective-C/instm/NSTableView/scrollRowToVisible: -Objective-C/instm/NSBrowser/scrollRowToVisible:inColumn: -Objective-C/instm/NSScrollView/scrollsDynamically -Objective-C/instm/PDFView/scrollSelectionToVisible: -JavaScript/instm/DOMWindow/scrollTo -Objective-C/instm/NSResponder/scrollToBeginningOfDocument: -Objective-C/instm/NSResponder/scrollToEndOfDocument: -JavaScript/data/Element/scrollTop -Objective-C/instm/CAScrollLayer/scrollToPoint: -Objective-C/instm/NSClipView/scrollToPoint: -Objective-C/instm/IKImageView/scrollToPoint: -Objective-C/instm/CAScrollLayer/scrollToRect: -Objective-C/instm/IKImageView/scrollToRect: -Objective-C/instm/NSBrowser/scrollViaScroller: -Objective-C/instm/NSRulerView/scrollView -Objective-C/instm/NSScrollView/scrollWheel: -Objective-C/instm/NSResponder/scrollWheel: -JavaScript/data/Element/scrollWidth -JavaScript/data/DOMWindow/scrollX -JavaScript/data/DOMWindow/scrollY -C/func/-/SCSetCompressFlags -C/func/-/SCSetInfo -C/func/-/SCSetSettingsFromAtomContainer -C/func/-/SCSetTestImagePictFile -C/func/-/SCSetTestImagePictHandle -C/func/-/SCSetTestImagePixMap -C/econst/-/scShowMotionSettings -C/tdef/-/SCSI_Capacity_Data -C/tdef/-/SCSI_Capacity_Data_Long -C/tdef/-/SCSI_Sense_Data -C/tdef/-/SCSICmd_INQUIRY_Page00_Header -C/tdef/-/SCSICmd_INQUIRY_Page80_Header -C/tdef/-/SCSICmd_INQUIRY_Page83_Header -C/tdef/-/SCSICmd_INQUIRY_Page83_Header_SPC_16 -C/tdef/-/SCSICmd_INQUIRY_Page83_Identification_Descriptor -C/tdef/-/SCSICmd_INQUIRY_Page89_Data -C/tdef/-/SCSICmd_INQUIRY_StandardData -C/tdef/-/SCSICmd_INQUIRY_StandardDataAll -C/tag/-/SCSICmd_REPORT_LUNS_Header -C/tdef/-/SCSICmd_REPORT_LUNS_LUN_ENTRY -C/tdef/-/SCSICmdField10Bit -C/tdef/-/SCSICmdField11Bit -C/tdef/-/SCSICmdField12Bit -C/tdef/-/SCSICmdField13Bit -C/tdef/-/SCSICmdField14Bit -C/tdef/-/SCSICmdField15Bit -C/tdef/-/SCSICmdField17Bit -C/tdef/-/SCSICmdField18Bit -C/tdef/-/SCSICmdField19Bit -C/tdef/-/SCSICmdField1Bit -C/tdef/-/SCSICmdField1Byte -C/tdef/-/SCSICmdField20Bit -C/tdef/-/SCSICmdField21Bit -C/tdef/-/SCSICmdField22Bit -C/tdef/-/SCSICmdField23Bit -C/tdef/-/SCSICmdField25Bit -C/tdef/-/SCSICmdField26Bit -C/tdef/-/SCSICmdField27Bit -C/tdef/-/SCSICmdField28Bit -C/tdef/-/SCSICmdField29Bit -C/tdef/-/SCSICmdField2Bit -C/tdef/-/SCSICmdField2Byte -C/tdef/-/SCSICmdField30Bit -C/tdef/-/SCSICmdField31Bit -C/tdef/-/SCSICmdField33Bit -C/tdef/-/SCSICmdField34Bit -C/tdef/-/SCSICmdField35Bit -C/tdef/-/SCSICmdField36Bit -C/tdef/-/SCSICmdField37Bit -C/tdef/-/SCSICmdField38Bit -C/tdef/-/SCSICmdField39Bit -C/tdef/-/SCSICmdField3Bit -C/tdef/-/SCSICmdField3Byte -C/tdef/-/SCSICmdField41Bit -C/tdef/-/SCSICmdField42Bit -C/tdef/-/SCSICmdField43Bit -C/tdef/-/SCSICmdField44Bit -C/tdef/-/SCSICmdField45Bit -C/tdef/-/SCSICmdField46Bit -C/tdef/-/SCSICmdField47Bit -C/tdef/-/SCSICmdField49Bit -C/tdef/-/SCSICmdField4Bit -C/tdef/-/SCSICmdField4Byte -C/tdef/-/SCSICmdField50Bit -C/tdef/-/SCSICmdField51Bit -C/tdef/-/SCSICmdField52Bit -C/tdef/-/SCSICmdField53Bit -C/tdef/-/SCSICmdField54Bit -C/tdef/-/SCSICmdField55Bit -C/tdef/-/SCSICmdField57Bit -C/tdef/-/SCSICmdField58Bit -C/tdef/-/SCSICmdField59Bit -C/tdef/-/SCSICmdField5Bit -C/tdef/-/SCSICmdField5Byte -C/tdef/-/SCSICmdField60Bit -C/tdef/-/SCSICmdField61Bit -C/tdef/-/SCSICmdField62Bit -C/tdef/-/SCSICmdField63Bit -C/tdef/-/SCSICmdField6Bit -C/tdef/-/SCSICmdField6Byte -C/tdef/-/SCSICmdField7Bit -C/tdef/-/SCSICmdField7Byte -C/tdef/-/SCSICmdField8Byte -C/tdef/-/SCSICmdField9Bit -C/tdef/-/SCSIDeviceIdentifier -C/tdef/-/SCSIInitiatorIdentifier -C/tdef/-/SCSILogicalUnitNumber -C/tdef/-/SCSIPortStatus -C/tdef/-/SCSIProtocolFeature -C/tdef/-/SCSIProtocolPowerState -C/tdef/-/SCSIServiceResponse -C/tdef/-/SCSITaggedTaskIdentifier -C/tdef/-/SCSITargetIdentifier -C/tdef/-/SCSITaskAttribute -C/tdef/-/SCSITaskCallbackFunction -C/tdef/-/SCSITaskCompletion -C/cl/-/SCSITaskDeviceInterface -C/tdef/-/SCSITaskIdentifier -C/cl/-/SCSITaskInterface -C/tdef/-/SCSITaskMode -C/tdef/-/SCSITaskState -C/tdef/-/SCSITaskStatus -C/econst/-/scSoundChannelCountType -C/econst/-/scSoundCompressionType -C/econst/-/scSoundInputSampleRateType -C/econst/-/scSoundSampleRateChangeOK -C/econst/-/scSoundSampleRateType -C/econst/-/scSoundSampleSizeType -C/econst/-/scSoundVBRCompressionOK -C/econst/-/scSpatialSettingsType -C/econst/-/scTemporalSettingsType -C/econst/-/scVideoAllowFrameReorderingType -C/func/-/SCVLANInterfaceCopyAll -C/func/-/SCVLANInterfaceCopyAvailablePhysicalInterfaces -C/func/-/SCVLANInterfaceCreate -C/func/-/SCVLANInterfaceGetOptions -C/func/-/SCVLANInterfaceGetPhysicalInterface -C/func/-/SCVLANInterfaceGetTag -C/tdef/-/SCVLANInterfaceRef -C/func/-/SCVLANInterfaceRemove -C/func/-/SCVLANInterfaceSetLocalizedDisplayName -C/func/-/SCVLANInterfaceSetOptions -C/func/-/SCVLANInterfaceSetPhysicalInterfaceAndTag -C/econst/-/scWindowOptionsType -C/tdef/-/sDeleteRecord -C/tdef/-/sDoAttrValueSearch -C/tdef/-/sDoAttrValueSearchWithData -C/tdef/-/sDoDirNodeAuth -C/tdef/-/sDoMultiAttrValueSearch -C/tdef/-/sDoMultiAttrValueSearchWithData -C/tdef/-/sDoPlugInCustomCall -C/func/-/SDOT -JavaScript/data/HTMLAreaElement/search -JavaScript/data/HTMLAnchorElement/search -JavaScript/data/window/search -JavaScript/data/WorkerLocation/search -Objective-C/instm/NSSearchFieldCell/searchButtonCell -Objective-C/instm/NSSearchFieldCell/searchButtonRectForBounds: -Objective-C/clm/ABSearchElement/searchElementForConjunction:children: -Objective-C/clm/ABGroup/searchElementForProperty:label:key:value:comparison: -Objective-C/clm/ABPerson/searchElementForProperty:label:key:value:comparison: -Objective-C/intfm/WebDocumentSearching/searchFor:direction:caseSensitive:wrap: -Objective-C/instm/WebView/searchFor:direction:caseSensitive:wrap: -Objective-C/instm/NSNetServiceBrowser/searchForAllDomains -Objective-C/instm/NSNetServiceBrowser/searchForBrowsableDomains -Objective-C/intfm/NSUserInterfaceItemSearching/searchForItemsWithSearchString:resultLimit:matchedItemHandler: -Objective-C/instm/NSNetServiceBrowser/searchForRegistrationDomains -Objective-C/instm/NSNetServiceBrowser/searchForServicesOfType:inDomain: -C/func/-/searchfs -Objective-C/instm/NSSearchFieldCell/searchMenuTemplate -Objective-C/instm/NSMetadataQuery/searchScopes -Objective-C/instm/NSApplication/searchString:inUserInterfaceItemString:searchRange:foundRange: -Objective-C/instm/NSSearchFieldCell/searchTextRectForBounds: -C/macro/-/SEC_KEY_IMPORT_EXPORT_PARAMS_VERSION -C/macro/-/SEC_KEYCHAIN_SETTINGS_VERS1 -C/func/-/SecAccessCopyACLList -C/func/-/SecAccessCopySelectedACLList -C/func/-/SecAccessCreate -C/func/-/SecAccessCreateFromOwnerAndACL -C/func/-/SecAccessGetOwnerAndACL -C/func/-/SecAccessGetTypeID -C/tdef/-/SecAccessRef -C/func/-/SecACLCopySimpleContents -C/func/-/SecACLCreateFromSimpleContents -C/func/-/SecACLGetAuthorizations -C/func/-/SecACLGetTypeID -C/tdef/-/SecACLRef -C/func/-/SecACLRemove -C/func/-/SecACLSetAuthorizations -C/func/-/SecACLSetSimpleContents -C/tdef/-/SecAFPServerSignature -C/tdef/-/SecAuthenticationType -C/func/-/SecCertificateAddToKeychain -C/func/-/SecCertificateCopyCommonName -C/func/-/SecCertificateCopyData -C/func/-/SecCertificateCopyEmailAddresses -C/func/-/SecCertificateCopyPreference -C/func/-/SecCertificateCopyPublicKey -C/func/-/SecCertificateCopySubjectSummary -C/func/-/SecCertificateCreateFromData -C/func/-/SecCertificateCreateWithData -C/func/-/SecCertificateGetAlgorithmID -C/func/-/SecCertificateGetCLHandle -C/func/-/SecCertificateGetData -C/func/-/SecCertificateGetIssuer -C/func/-/SecCertificateGetItem -C/func/-/SecCertificateGetSubject -C/func/-/SecCertificateGetType -C/func/-/SecCertificateGetTypeID -C/tdef/-/SecCertificateRef -C/func/-/SecCertificateSetPreference -C/func/-/SecCodeCheckValidity -C/func/-/SecCodeCheckValidityWithErrors -C/func/-/SecCodeCopyDesignatedRequirement -C/func/-/SecCodeCopyGuestWithAttributes -C/func/-/SecCodeCopyHost -C/func/-/SecCodeCopyPath -C/func/-/SecCodeCopySelf -C/func/-/SecCodeCopySigningInformation -C/func/-/SecCodeCopyStaticCode -C/func/-/SecCodeGetTypeID -C/func/-/SecCodeMapMemory -C/tag/-/SecCodeRef -C/tdef/-/SecCodeSignatureFlags -C/tdef/-/SecCodeStatus -C/func/-/SecCopyErrorMessageString -C/tdef/-/SecCredentialType -C/tdef/-/SecCSFlags -C/tdef/-/SecExternalFormat -C/tdef/-/SecExternalItemType -C/tdef/-/SecGuestRef -C/func/-/SecHostCreateGuest -C/func/-/SecHostRemoveGuest -C/func/-/SecHostSelectedGuest -C/func/-/SecHostSelectGuest -C/func/-/SecHostSetGuestStatus -C/func/-/SecHostSetHostingPort -C/func/-/SecIdentityCopyCertificate -C/func/-/SecIdentityCopyPreference -C/func/-/SecIdentityCopyPrivateKey -C/func/-/SecIdentityCopySystemIdentity -C/func/-/SecIdentityCreateWithCertificate -C/func/-/SecIdentityGetTypeID -C/tdef/-/SecIdentityRef -C/func/-/SecIdentitySearchCopyNext -C/func/-/SecIdentitySearchCreate -C/func/-/SecIdentitySearchGetTypeID -C/tdef/-/SecIdentitySearchRef -C/func/-/SecIdentitySetPreference -C/func/-/SecIdentitySetSystemIdentity -C/func/-/SecItemAdd -C/tdef/-/SecItemAttr -C/tdef/-/SecItemClass -C/func/-/SecItemCopyMatching -C/func/-/SecItemDelete -C/tdef/-/SecItemImportExportFlags -C/func/-/SecItemUpdate -C/func/-/SecKeychainAddCallback -C/func/-/SecKeychainAddGenericPassword -C/func/-/SecKeychainAddInternetPassword -C/tag/-/SecKeychainAttribute -C/tdef/-/SecKeychainAttribute -C/tdef/-/SecKeychainAttributeInfo -C/tag/-/SecKeychainAttributeInfo -C/func/-/SecKeychainAttributeInfoForItemID -C/tag/-/SecKeychainAttributeList -C/tdef/-/SecKeychainAttributeList -C/tdef/-/SecKeychainAttrType -C/tdef/-/SecKeychainCallback -C/tag/-/SecKeychainCallbackInfo -C/tdef/-/SecKeychainCallbackInfo -C/func/-/SecKeychainCopyAccess -C/func/-/SecKeychainCopyDefault -C/func/-/SecKeychainCopyDomainDefault -C/func/-/SecKeychainCopyDomainSearchList -C/func/-/SecKeychainCopySearchList -C/func/-/SecKeychainCopySettings -C/func/-/SecKeychainCreate -C/func/-/SecKeychainDelete -C/tdef/-/SecKeychainEvent -C/tdef/-/SecKeychainEventMask -C/func/-/SecKeychainFindGenericPassword -C/func/-/SecKeychainFindInternetPassword -C/func/-/SecKeychainFreeAttributeInfo -C/func/-/SecKeychainGetCSPHandle -C/func/-/SecKeychainGetDLDBHandle -C/func/-/SecKeychainGetPath -C/func/-/SecKeychainGetPreferenceDomain -C/func/-/SecKeychainGetStatus -C/func/-/SecKeychainGetTypeID -C/func/-/SecKeychainGetUserInteractionAllowed -C/func/-/SecKeychainGetVersion -C/func/-/SecKeychainItemCopyAccess -C/func/-/SecKeychainItemCopyAttributesAndData -C/func/-/SecKeychainItemCopyContent -C/func/-/SecKeychainItemCopyFromPersistentReference -C/func/-/SecKeychainItemCopyKeychain -C/func/-/SecKeychainItemCreateCopy -C/func/-/SecKeychainItemCreateFromContent -C/func/-/SecKeychainItemCreatePersistentReference -C/func/-/SecKeychainItemDelete -C/func/-/SecKeychainItemExport -C/func/-/SecKeychainItemFreeAttributesAndData -C/func/-/SecKeychainItemFreeContent -C/func/-/SecKeychainItemGetDLDBHandle -C/func/-/SecKeychainItemGetTypeID -C/func/-/SecKeychainItemGetUniqueRecordID -C/func/-/SecKeychainItemImport -C/func/-/SecKeychainItemModifyAttributesAndData -C/func/-/SecKeychainItemModifyContent -C/tdef/-/SecKeychainItemRef -C/func/-/SecKeychainItemSetAccess -C/func/-/SecKeychainLock -C/func/-/SecKeychainLockAll -C/func/-/SecKeychainOpen -C/tdef/-/SecKeychainRef -C/func/-/SecKeychainRemoveCallback -C/func/-/SecKeychainSearchCopyNext -C/func/-/SecKeychainSearchCreateFromAttributes -C/func/-/SecKeychainSearchGetTypeID -C/tdef/-/SecKeychainSearchRef -C/func/-/SecKeychainSetAccess -C/func/-/SecKeychainSetDefault -C/func/-/SecKeychainSetDomainDefault -C/func/-/SecKeychainSetDomainSearchList -C/func/-/SecKeychainSetPreferenceDomain -C/func/-/SecKeychainSetSearchList -C/func/-/SecKeychainSetSettings -C/tag/-/SecKeychainSettings -C/tdef/-/SecKeychainSettings -C/func/-/SecKeychainSetUserInteractionAllowed -C/tdef/-/SecKeychainStatus -C/func/-/SecKeychainUnlock -C/func/-/SecKeyCreatePair -C/func/-/SecKeyGenerate -C/func/-/SecKeyGetBlockSize -C/func/-/SecKeyGetCredentials -C/func/-/SecKeyGetCSPHandle -C/func/-/SecKeyGetCSSMKey -C/func/-/SecKeyGetTypeID -C/tdef/-/SecKeyImportExportFlags -C/tdef/-/SecKeyImportExportParameters -C/tdef/-/SecKeyRef -Objective-C/instm/NSDateComponents/second -Objective-C/instm/NSNumberFormatter/secondaryGroupingSize -Objective-C/clm/NSColor/secondarySelectedControlColor -Objective-C/instm/DRMSF/seconds -Objective-C/instm/NSTimeZone/secondsFromGMT -Objective-C/instm/NSTimeZone/secondsFromGMTForDate: -C/tdef/-/SecPadding -C/func/-/SecPKCS12Import -C/func/-/SecPolicyCreateBasicX509 -C/func/-/SecPolicyCreateSSL -C/func/-/SecPolicyGetOID -C/func/-/SecPolicyGetTPHandle -C/func/-/SecPolicyGetTypeID -C/func/-/SecPolicyGetValue -C/tdef/-/SecPolicyRef -C/func/-/SecPolicySearchCopyNext -C/func/-/SecPolicySearchCreate -C/func/-/SecPolicySearchGetTypeID -C/tdef/-/SecPolicySearchRef -C/func/-/SecPolicySetValue -C/tdef/-/SecPreferencesDomain -C/tdef/-/SecProtocolType -C/tdef/-/SecPublicKeyHash -C/func/-/SecRequirementCopyData -C/func/-/SecRequirementCopyString -C/func/-/SecRequirementCreateWithData -C/func/-/SecRequirementCreateWithString -C/func/-/SecRequirementCreateWithStringAndErrors -C/func/-/SecRequirementGetTypeID -C/tdef/-/SecRequirementRef -C/tdef/-/SecRequirementType -C/func/-/SecStaticCodeCheckValidity -C/func/-/SecStaticCodeCheckValidityWithErrors -C/func/-/SecStaticCodeCreateWithPath -C/func/-/SecStaticCodeGetTypeID -C/tdef/-/SecStaticCodeRef -C/tag/-/section -C/tag/-/section_64 -JavaScript/data/HTMLTableRowElement/sectionRowIndex -Objective-C/instm/DRMSF/sectors -C/func/-/SecTrustCopyAnchorCertificates -C/func/-/SecTrustCopyCustomAnchorCertificates -C/func/-/SecTrustCopyPolicies -C/func/-/SecTrustCreateWithCertificates -C/func/-/SecTrustedApplicationCopyData -C/func/-/SecTrustedApplicationCreateFromPath -C/func/-/SecTrustedApplicationGetTypeID -C/tdef/-/SecTrustedApplicationRef -C/func/-/SecTrustedApplicationSetData -C/func/-/SecTrustEvaluate -C/func/-/SecTrustGetCSSMAnchorCertificates -C/func/-/SecTrustGetCssmResult -C/func/-/SecTrustGetCssmResultCode -C/func/-/SecTrustGetResult -C/func/-/SecTrustGetTPHandle -C/func/-/SecTrustGetTypeID -C/func/-/SecTrustGetUserTrust -C/func/-/SecTrustGetVerifyTime -C/tdef/-/SecTrustRef -C/tdef/-/SecTrustResultType -C/func/-/SecTrustSetAnchorCertificates -C/func/-/SecTrustSetAnchorCertificatesOnly -C/func/-/SecTrustSetKeychains -C/func/-/SecTrustSetParameters -C/func/-/SecTrustSetPolicies -C/func/-/SecTrustSettingsCopyCertificates -C/func/-/SecTrustSettingsCopyModificationDate -C/func/-/SecTrustSettingsCopyTrustSettings -C/func/-/SecTrustSettingsCreateExternalRepresentation -C/tdef/-/SecTrustSettingsDomain -C/func/-/SecTrustSettingsImportExternalRepresentation -C/tdef/-/SecTrustSettingsKeyUsage -C/func/-/SecTrustSettingsRemoveTrustSettings -C/tdef/-/SecTrustSettingsResult -C/func/-/SecTrustSettingsSetTrustSettings -C/func/-/SecTrustSetUserTrust -C/func/-/SecTrustSetVerifyDate -C/tdef/-/SecTrustUserSetting -JavaScript/clconst/DOMCoreException/SECURITY_ERR -JavaScript/clconst/FileError/SECURITY_ERR -Objective-C/instp/CWNetwork/securityMode -Objective-C/instp/CWInterface/securityMode -Objective-C/instp/CWWirelessProfile/securityMode -Objective-C/instm/CAEmitterLayer/seed -Objective-C/instp/CAEmitterLayer/seed -JavaScript/data/SVGFETurbulenceElement/seed -C/func/-/seed48 -JavaScript/data/HTMLMediaElement/seekable -C/func/-/seekdir -JavaScript/data/HTMLMediaElement/seeking -Objective-C/instm/NSFileHandle/seekToEndOfFile -Objective-C/instm/NSFileHandle/seekToFileOffset: -C++/tag/IODMACommand/Segment32 -C++/tag/IODMACommand/Segment64 -C/tag/-/segment_command -C/tag/-/segment_command_64 -Objective-C/instm/NSSegmentedControl/segmentCount -Objective-C/instm/NSSegmentedCell/segmentCount -C++/tdef/IODMACommand/SegmentFunction -C++/tdef/IOMemoryCursor/SegmentFunction -Objective-C/instm/NSSegmentedControl/segmentStyle -Objective-C/instm/NSSegmentedCell/segmentStyle -C/tdef/-/SEL -C/func/-/sel_getName -C/func/-/sel_getUid -C/func/-/sel_isEqual -C/func/-/sel_registerName -C/func/-/select -JavaScript/instm/HTMLTextAreaElement/select -JavaScript/instm/HTMLInputElement/select -JavaScript/clconst/Event/SELECT -Objective-C/intfm/WebDocumentText/selectAll -Objective-C/instm/PDFView/selectAll: -Objective-C/instm/NSMatrix/selectAll: -Objective-C/instm/NSBrowser/selectAll: -Objective-C/instm/NSTableView/selectAll: -Objective-C/instm/QTMovieView/selectAll: -Objective-C/instm/NSResponder/selectAll: -Objective-C/instm/NSText/selectAll: -JavaScript/instm/DOMSelection/selectAllChildren -Objective-C/instm/NSControl/selectCell: -Objective-C/instm/NSMatrix/selectCellAtRow:column: -Objective-C/instm/NSMatrix/selectCellWithTag: -Objective-C/instm/NSTableView/selectColumn:byExtendingSelection: -Objective-C/instm/NSTableView/selectColumnIndexes:byExtendingSelection: -C++/instm/IOATADevice/selectConfig -JavaScript/instm/InjectedScriptHost/selectDatabase -JavaScript/instm/InjectedScriptHost/selectDOMStorage -JavaScript/data/HTMLOptionElement/selected -JavaScript/data/HTMLDataGridRowElement/selected -Objective-C/intfm/WebDocumentText/selectedAttributedString -Objective-C/instm/NSMatrix/selectedCell -Objective-C/instm/NSBrowser/selectedCell -Objective-C/instm/NSControl/selectedCell -Objective-C/instm/NSBrowser/selectedCellInColumn: -Objective-C/instm/NSMatrix/selectedCells -Objective-C/instm/NSBrowser/selectedCells -Objective-C/instm/NSMatrix/selectedColumn -Objective-C/instm/NSBrowser/selectedColumn -Objective-C/instm/NSTableView/selectedColumn -Objective-C/instm/NSTableView/selectedColumnEnumerator -Objective-C/instm/NSTableView/selectedColumnIndexes -Objective-C/instm/QCCompositionPickerView/selectedComposition -Objective-C/clm/NSColor/selectedControlColor -Objective-C/clm/NSColor/selectedControlTextColor -Objective-C/instm/IKDeviceBrowserView/selectedDevice -Objective-C/instp/IKDeviceBrowserView/selectedDevice -Objective-C/instm/WebView/selectedDOMRange -Objective-C/intfm/ApertureExportManager/selectedExportPresetDictionary -Objective-C/instm/NSFontManager/selectedFont -Objective-C/instm/WebView/selectedFrame -Objective-C/instp/ABPeoplePickerView/selectedGroups -Objective-C/instm/ABPeoplePickerView/selectedGroups -Objective-C/binding/NSTabView/selectedIdentifier -Objective-C/instm/ABPeoplePickerView/selectedIdentifiersForPerson: -Objective-C/binding/AMPathPopUpButton/selectedIndex -Objective-C/binding/NSMatrix/selectedIndex -Objective-C/binding/NSTabView/selectedIndex -Objective-C/binding/NSSegmentedControl/selectedIndex -Objective-C/binding/NSPopUpButton/selectedIndex -Objective-C/binding/NSSegmentedCell/selectedIndex -Objective-C/binding/NSPopUpButtonCell/selectedIndex -JavaScript/data/HTMLSelectElement/selectedIndex -JavaScript/data/HTMLOptionsCollection/selectedIndex -Objective-C/instm/IKCameraDeviceView/selectedIndexes -Objective-C/instm/NSPopUpButton/selectedItem -Objective-C/instm/NSPopUpButtonCell/selectedItem -Objective-C/instm/NSToolbar/selectedItemIdentifier -Objective-C/instm/NSTextInputContext/selectedKeyboardInputSource -Objective-C/instp/NSTextInputContext/selectedKeyboardInputSource -Objective-C/clm/NSColor/selectedKnobColor -Objective-C/binding/NSSegmentedCell/selectedLabel -Objective-C/binding/NSTabView/selectedLabel -Objective-C/binding/NSSegmentedControl/selectedLabel -Objective-C/clm/NSColor/selectedMenuItemColor -Objective-C/clm/NSColor/selectedMenuItemTextColor -Objective-C/instm/NSTreeController/selectedNodes -Objective-C/binding/AMPathPopUpButton/selectedObject -Objective-C/binding/NSMatrix/selectedObject -Objective-C/binding/NSPopUpButtonCell/selectedObject -Objective-C/binding/NSPopUpButton/selectedObject -Objective-C/instm/NSTreeController/selectedObjects -Objective-C/instm/NSObjectController/selectedObjects -Objective-C/instm/NSArrayController/selectedObjects -JavaScript/data/HTMLInputElement/selectedOption -Objective-C/instm/PDFThumbnailView/selectedPages -Objective-C/intfm/IMKTextInput/selectedRange -Objective-C/intfm/NSTextInput/selectedRange -Objective-C/intfm/NSTextInputClient/selectedRange -Objective-C/instm/NSText/selectedRange -Objective-C/instm/NSTextView/selectedRanges -Objective-C/instp/ABPeoplePickerView/selectedRecords -Objective-C/instm/ABPeoplePickerView/selectedRecords -Objective-C/instm/NSMatrix/selectedRow -Objective-C/instm/NSTableView/selectedRow -Objective-C/instm/NSTableView/selectedRowEnumerator -Objective-C/instm/NSBrowser/selectedRowInColumn: -Objective-C/instm/NSRuleEditor/selectedRowIndexes -Objective-C/instm/NSTableView/selectedRowIndexes -Objective-C/instm/NSBrowser/selectedRowIndexesInColumn: -Objective-C/instm/NSSegmentedCell/selectedSegment -Objective-C/instm/NSSegmentedControl/selectedSegment -Objective-C/intfm/WebDocumentText/selectedString -JavaScript/data/Document/selectedStylesheetSet -Objective-C/instm/NSTabView/selectedTabViewItem -Objective-C/instm/NSControl/selectedTag -Objective-C/binding/NSMatrix/selectedTag -Objective-C/binding/AMPathPopUpButton/selectedTag -Objective-C/binding/NSPopUpButtonCell/selectedTag -Objective-C/binding/NSPopUpButton/selectedTag -Objective-C/binding/NSSegmentedControl/selectedTag -Objective-C/binding/NSSegmentedCell/selectedTag -Objective-C/instm/NSTextView/selectedTextAttributes -Objective-C/clm/NSColor/selectedTextBackgroundColor -Objective-C/clm/NSColor/selectedTextColor -Objective-C/binding/AMPathPopUpButton/selectedValue -Objective-C/binding/NSMatrix/selectedValue -Objective-C/binding/NSPopUpButtonCell/selectedValue -Objective-C/binding/NSPopUpButton/selectedValue -Objective-C/instm/ABPeoplePickerView/selectedValues -Objective-C/intfm/ApertureEditManager/selectedVersionIds -Objective-C/instm/NSWorkspace/selectFile:inFileViewerRootedAtPath: -Objective-C/instm/NSTabView/selectFirstTabViewItem: -Objective-C/instm/ABPeoplePickerView/selectGroup:byExtendingSelection: -Objective-C/instm/ABPeoplePickerView/selectIdentifier:forPerson:byExtendingSelection: -Objective-C/instm/ABPeoplePickerView/selectInAddressBook: -Objective-C/instm/IKCameraDeviceView/selectIndexes:byExtendingSelection: -Objective-C/intfm/IMKTextInput/selectInputMode: -Objective-C/instm/NSObjectController/selection -Objective-C/instm/NSTextView/selectionAffinity -Objective-C/instm/WebView/selectionAffinity -Objective-C/instm/QTMovie/selectionDuration -Objective-C/instm/QTMovie/selectionEnd -JavaScript/data/HTMLInputElement/selectionEnd -JavaScript/data/HTMLTextAreaElement/selectionEnd -Objective-C/instm/PDFDocument/selectionForEntireDocument -Objective-C/instm/PDFPage/selectionForLineAtPoint: -Objective-C/instm/PDFPage/selectionForRange: -Objective-C/instm/PDFPage/selectionForRect: -Objective-C/instm/PDFPage/selectionForWordAtPoint: -Objective-C/instm/IKImageBrowserCell/selectionFrame -Objective-C/instm/PDFDocument/selectionFromPage:atCharacterIndex:toPage:atCharacterIndex: -Objective-C/instm/PDFDocument/selectionFromPage:atPoint:toPage:atPoint: -Objective-C/instm/PDFPage/selectionFromPoint:toPoint: -Objective-C/instm/NSTextView/selectionGranularity -Objective-C/instm/NSTableView/selectionHighlightStyle -Objective-C/instm/NSArrayController/selectionIndex -Objective-C/instm/IKImageBrowserView/selectionIndexes -Objective-C/instm/NSCollectionView/selectionIndexes -Objective-C/instm/NSArrayController/selectionIndexes -Objective-C/binding/NSCollectionView/selectionIndexes -Objective-C/binding/NSDictionaryController/selectionIndexes -Objective-C/binding/NSArrayController/selectionIndexes -Objective-C/binding/NSTableView/selectionIndexes -Objective-C/instm/NSTreeController/selectionIndexPath -Objective-C/instm/NSBrowser/selectionIndexPath -Objective-C/instm/NSTreeController/selectionIndexPaths -Objective-C/instm/NSBrowser/selectionIndexPaths -Objective-C/binding/NSBrowser/selectionIndexPaths -Objective-C/binding/NSOutlineView/selectionIndexPaths -Objective-C/binding/NSTreeController/selectionIndexPaths -Objective-C/instm/IMKCandidates/selectionKeys -Objective-C/instm/IMKCandidates/selectionKeysKeylayout -Objective-C/instm/IMKInputController/selectionRange -Objective-C/instm/NSTextView/selectionRangeForProposedRange:granularity: -Objective-C/instm/PDFSelection/selectionsByLine -Objective-C/intfm/NSOutlineViewDelegate/selectionShouldChangeInOutlineView: -Objective-C/intfm/NSTableViewDelegate/selectionShouldChangeInTableView: -Objective-C/instm/QTMovie/selectionStart -JavaScript/data/HTMLInputElement/selectionStart -JavaScript/data/HTMLTextAreaElement/selectionStart -Objective-C/instm/NSPopUpButtonCell/selectItem: -Objective-C/instm/NSPopUpButton/selectItem: -Objective-C/instm/NSPopUpButtonCell/selectItemAtIndex: -Objective-C/instm/NSPopUpButton/selectItemAtIndex: -Objective-C/instm/NSComboBox/selectItemAtIndex: -Objective-C/instm/NSComboBoxCell/selectItemAtIndex: -Objective-C/instm/NSComboBox/selectItemWithObjectValue: -Objective-C/instm/NSComboBoxCell/selectItemWithObjectValue: -Objective-C/instm/NSPopUpButtonCell/selectItemWithTag: -Objective-C/instm/NSPopUpButton/selectItemWithTag: -Objective-C/instm/NSPopUpButtonCell/selectItemWithTitle: -Objective-C/instm/NSPopUpButton/selectItemWithTitle: -Objective-C/instm/NSWindow/selectKeyViewFollowingView: -Objective-C/instm/NSWindow/selectKeyViewPrecedingView: -Objective-C/instm/NSTabView/selectLastTabViewItem: -Objective-C/instm/NSResponder/selectLine: -C++/instm/IONetworkController/selectMedium -C++/instm/IONetworkController/selectMediumWithName -C/func/-/SelectMovieAlternates -Objective-C/instm/NSArrayController/selectNext: -Objective-C/instm/NSWindow/selectNextKeyView: -Objective-C/instm/NSTabView/selectNextTabViewItem: -JavaScript/instm/Range/selectNode -JavaScript/instm/Range/selectNodeContents -Objective-C/instm/QTMovieView/selectNone: -Objective-C/instm/NSInvocation/selector -Objective-C/instm/NSSortDescriptor/selector -Objective-C/instm/NSScriptClassDescription/selectorForCommand: -C/tdef/-/SelectorFunctionProcPtr -C/tdef/-/SelectorFunctionUPP -JavaScript/data/CSSStyleRule/selectorText -JavaScript/data/CSSPageRule/selectorText -Objective-C/instm/NSResponder/selectParagraph: -Objective-C/instm/NSArrayController/selectPrevious: -Objective-C/instm/NSWindow/selectPreviousKeyView: -Objective-C/instm/NSTabView/selectPreviousTabViewItem: -Objective-C/instm/ABPeoplePickerView/selectRecord:byExtendingSelection: -Objective-C/instm/NSTableView/selectRow:byExtendingSelection: -Objective-C/instm/NSBrowser/selectRow:inColumn: -Objective-C/instm/NSRuleEditor/selectRowIndexes:byExtendingSelection: -Objective-C/instm/NSTableView/selectRowIndexes:byExtendingSelection: -Objective-C/instm/NSBrowser/selectRowIndexes:inColumn: -Objective-C/instm/NSSegmentedCell/selectSegmentWithTag: -Objective-C/instm/NSSegmentedControl/selectSegmentWithTag: -Objective-C/instm/WebView/selectSentence: -Objective-C/instm/NSTreeController/selectsInsertedObjects -Objective-C/instm/NSArrayController/selectsInsertedObjects -JavaScript/instm/SVGTextContentElement/selectSubString -Objective-C/instm/NSTabView/selectTabViewItem: -Objective-C/instm/NSTabView/selectTabViewItemAtIndex: -Objective-C/instm/NSTabView/selectTabViewItemWithIdentifier: -Objective-C/instm/NSSavePanel/selectText: -Objective-C/instm/NSMatrix/selectText: -Objective-C/instm/NSTextField/selectText: -Objective-C/instm/NSForm/selectTextAtIndex: -Objective-C/instm/NSMatrix/selectTextAtRow:column: -Objective-C/instm/NSResponder/selectToMark: -Objective-C/instm/NSCell/selectWithFrame:inView:editor:delegate:start:length: -Objective-C/instm/NSResponder/selectWord: -Objective-C/intfm/NSObject/self -Objective-C/instm/NSManagedObject/self -JavaScript/data/DOMWindow/self -JavaScript/data/WorkerContext/self -JavaScript/data/ScriptProfileNode/selfTime -C/func/-/sem_close -C/func/-/sem_open -C/func/-/sem_post -C/func/-/sem_trywait -C/func/-/sem_unlink -C/func/-/sem_wait -C/func/-/semctl -C/func/-/semget -C/func/-/semop -C/func/-/send -JavaScript/instm/XMLHttpRequest/send -JavaScript/instm/WebSocket/send -C/func/-/send_easy_trap -C/func/-/send_trap_vars -C/func/-/send_v2trap -Objective-C/instm/NSFontManager/sendAction -Objective-C/instm/NSMatrix/sendAction -Objective-C/instm/NSBrowser/sendAction -Objective-C/instm/NSControl/sendAction:to: -Objective-C/instm/NSMatrix/sendAction:to:forAllCells: -Objective-C/instm/NSApplication/sendAction:to:from: -Objective-C/instm/NSStatusItem/sendActionOn: -Objective-C/instm/NSControl/sendActionOn: -Objective-C/instm/NSCell/sendActionOn: -JavaScript/instm/Channel/sendATCommand -Objective-C/instm/NSPortMessage/sendBeforeDate: -Objective-C/instm/NSPort/sendBeforeDate:components:from:reserved: -Objective-C/instm/NSPort/sendBeforeDate:msgid:components:from:reserved: -Objective-C/instm/IOBluetoothOBEXSession/sendBufferTroughChannel -Objective-C/instm/PSClient/sendChangesSinceDate: -C++/instm/IOStreamBuffer/sendClientReference -Objective-C/instm/XGAuthenticator/sendData: -C++/instm/IODataQueue/sendDataAvailableNotification -Objective-C/instm/OBEXSession/sendDataToTransport:dataLength: -Objective-C/instm/IOBluetoothOBEXSession/sendDataToTransport:dataLength: -Objective-C/instm/NSMatrix/sendDoubleAction -Objective-C/instm/NSURLAuthenticationChallenge/sender -Objective-C/instm/NSWindow/sendEvent: -Objective-C/instm/NSApplication/sendEvent: -Objective-C/instm/SBObject/sendEvent:id:parameters: -C/func/-/sendfile -C/func/-/SendForceFeedbackCommand -C/func/-/SendInputNotification -C/func/-/SendInputSyncNotification -C++/instm/IOBDMedia/sendKey -C++/instm/IODVDMedia/sendKey -C++/instm/IODVDBlockStorageDriver/sendKey -Objective-C/instm/IOBluetoothDevice/sendL2CAPEchoRequest:length: -Objective-C/instm/SBApplication/sendMode -C/func/-/sendmsg -C++/instm/IOStream/sendOutputNotification -C++/instm/IONetworkController/sendPacket -Objective-C/instm/NSPortMessage/sendPort -Objective-C/instm/NSConnection/sendPort -Objective-C/instm/IOBluetoothRFCOMMChannel/sendRemoteLineStatus: -Objective-C/instm/IOBluetoothRFCOMMAudioController/sendRFCOMMData:length: -Objective-C/instm/NSBrowser/sendsActionOnArrowKeys -Objective-C/instm/NSCell/sendsActionOnEndEditing -C++/instm/IOFireWireSerialBusProtocolTransport/SendSCSICommand -Objective-C/instm/NSSearchFieldCell/sendsSearchStringImmediately -Objective-C/instm/NSSearchFieldCell/sendsWholeSearchString -Objective-C/clm/NSURLConnection/sendSynchronousRequest:returningResponse:error: -C/func/-/sendto -C++/instm/IOAudioControl/sendValueChangeNotification -Objective-C/instm/NSBrowser/separatesColumns -JavaScript/data/Counter/separator -Objective-C/clm/NSMenuItem/separatorItem -JavaScript/clconst/IDBDatabaseException/SERIAL_ERR -C++/instm/IONetworkMedium/serialize -C++/instm/IOCatalogue/serialize -C++/instm/IONetworkData/serialize -C++/instm/OSDictionary/serialize -C++/instm/OSData/serialize -C++/instm/OSMetaClassBase/serialize -C++/instm/OSNumber/serialize -C++/instm/OSArray/serialize -C++/instm/OSBoolean/serialize -C++/instm/OSObject/serialize -C++/instm/OSSet/serialize -C++/instm/OSString/serialize -Objective-C/instm/NSFileWrapper/serializedRepresentation -JavaScript/instm/TestObj/serializedValue -Objective-C/instm/QCPlugIn/serializedValueForKey: -Objective-C/intfm/NSObjCTypeSerializationCallBack/serializeObjectAt:ofObjCType:intoData: -C++/instm/IORegistryEntry/serializeProperties -Objective-C/clm/NSSerializer/serializePropertyList: -Objective-C/clm/NSSerializer/serializePropertyList:intoData: -JavaScript/instm/XMLSerializer/serializeToString -Objective-C/instm/WebPreferences/serifFontFamily -Objective-C/instm/IMKInputController/server -Objective-C/instm/OBEXSession/serverHandleIncomingData: -Objective-C/instm/NSURLProtectionSpace/serverTrust -C/func/-/ServerVendor -C++/instm/IOBasicOutputQueue/service -C++/instm/IOOutputQueue/service -C++/tag/IOBasicOutputQueue/ServiceAsync -Objective-C/clm/IOBluetoothServiceBrowserController/serviceBrowserController: -Objective-C/clm/NSConnection/serviceConnectionWithName:rootObject: -Objective-C/clm/NSConnection/serviceConnectionWithName:rootObject:usingNameServer: -Objective-C/instm/NSServerNotificationCenter/serviceHost -C++/clm/IOService/serviceMatching -Objective-C/instm/NSMachBootstrapServer/servicePortWithName: -Objective-C/instm/XGGSSAuthenticator/servicePrincipal -Objective-C/instm/NSApplication/servicesMenu -Objective-C/instm/NSApplication/servicesProvider -C++/instm/IOBasicOutputQueue/serviceThread -C++/instm/IOOutputQueue/serviceThread -Objective-C/clm/IMService/serviceWithName: -Objective-C/instm/ISyncSessionDriver/session -Objective-C/instm/QTCaptureLayer/session -Objective-C/instm/NSObject/sessionBeginTimeout -Objective-C/instm/NSObject/sessionDriver:didNegotiateAndReturnError: -Objective-C/instm/NSObject/sessionDriver:didPullAndReturnError: -Objective-C/instm/NSObject/sessionDriver:didPushAndReturnError: -Objective-C/instm/NSObject/sessionDriver:didReceiveSyncAlertAndReturnError: -Objective-C/instm/NSObject/sessionDriver:didRegisterClientAndReturnError: -Objective-C/instm/NSObject/sessionDriver:willFinishSessionAndReturnError: -Objective-C/instm/NSObject/sessionDriver:willNegotiateAndReturnError: -Objective-C/instm/NSObject/sessionDriver:willPullAndReturnError: -Objective-C/instm/NSObject/sessionDriver:willPushAndReturnError: -Objective-C/instm/NSObject/sessionDriverDidCancelSession: -Objective-C/instm/NSObject/sessionDriverDidFinishSession: -Objective-C/instm/NSObject/sessionDriverWillCancelSession: -Objective-C/clm/ISyncSessionDriver/sessionDriverWithDataSource: -Objective-C/instm/NSObject/sessionPullChangesTimeout -JavaScript/data/DOMWindow/sessionStorage -Objective-C/clm/ODSession/sessionWithOptions:error: -Objective-C/instm/NSFont/set -Objective-C/instm/NSAffineTransform/set -Objective-C/instm/NSBrowserCell/set -Objective-C/instm/NSColor/set -Objective-C/instm/NSShadow/set -Objective-C/instm/NSCursor/set -Objective-C/clm/NSSet/set -JavaScript/instm/FloatArray/set -JavaScript/instm/Int8Array/set -JavaScript/instm/Int32Array/set -JavaScript/instm/Int16Array/set -JavaScript/instm/Uint8Array/set -JavaScript/instm/Uint32Array/set -JavaScript/instm/Uint16Array/set -C/func/-/set_current_field -C/func/-/set_curterm -C/func/-/set_fieldtype_arg -C/func/-/set_fieldtype_choice -C/func/-/set_form_opts -C/func/-/set_form_page -C/func/-/set_form_sub -C/func/-/set_form_userptr -C/func/-/set_form_win -C/func/-/set_menu_back -C/func/-/set_menu_fore -C/func/-/set_menu_format -C/func/-/set_menu_grey -C/func/-/set_menu_items -C/func/-/set_menu_mark -C/func/-/set_menu_opts -C/func/-/set_menu_pad -C/func/-/set_menu_pattern -C/func/-/set_menu_spacing -C/func/-/set_menu_sub -C/func/-/set_menu_userptr -C/func/-/set_menu_win -C/func/-/set_new_page -C/func/-/set_term -Objective-C/clm/NSTimeZone/setAbbreviationDictionary: -Objective-C/instm/CalAlarm/setAbsoluteTrigger: -Objective-C/instm/NSEntityDescription/setAbstract: -C/func/-/setac -Objective-C/instm/NSBrowser/setAcceptsArrowKeys: -Objective-C/instm/NSTextInputContext/setAcceptsGlyphInfo: -Objective-C/instm/NSTextView/setAcceptsGlyphInfo: -Objective-C/instm/NSWindow/setAcceptsMouseMovedEvents: -Objective-C/instm/NSView/setAcceptsTouchEvents: -Objective-C/instm/NSImage/setAccessibilityDescription: -Objective-C/instm/NSRulerView/setAccessoryView: -Objective-C/instm/NSPageLayout/setAccessoryView: -Objective-C/instm/NSColorPanel/setAccessoryView: -Objective-C/instm/NSPrintOperation/setAccessoryView: -Objective-C/instm/NSSavePanel/setAccessoryView: -Objective-C/instm/NSAlert/setAccessoryView: -Objective-C/instm/NSSpellChecker/setAccessoryView: -Objective-C/instm/NSPrintPanel/setAccessoryView: -Objective-C/instm/NSFontPanel/setAccessoryView: -Objective-C/instm/ABPeoplePickerView/setAccessoryView: -C++/instm/IONetworkData/setAccessTypes -Objective-C/instm/NSPointerFunctions/setAcquireFunction: -C++/instm/IOEventSource/setAction -Objective-C/instm/NSToolbarItem/setAction: -Objective-C/instm/NSActionCell/setAction: -Objective-C/instm/NSColorPanel/setAction: -Objective-C/instm/NSStatusItem/setAction: -Objective-C/instm/NSFontManager/setAction: -Objective-C/instm/PDFOutline/setAction: -Objective-C/instm/CalAlarm/setAction: -Objective-C/instm/IMAVControl/setAction: -Objective-C/instm/NSMenuItem/setAction: -Objective-C/instm/NSControl/setAction: -Objective-C/instm/NSCell/setAction: -Objective-C/instm/NSUndoManager/setActionName: -Objective-C/instm/CALayer/setActions: -Objective-C/instm/NSApplication/setActivationPolicy: -C++/instm/IOATABusCommand/setActualTransfer -Objective-C/instm/CAPropertyAnimation/setAdditive: -Objective-C/instm/CalAttendee/setAddress: -Objective-C/instm/NSFetchRequest/setAffectedStores: -Objective-C/instm/CALayer/setAffineTransform: -C++/instm/IOService/setAggressiveness -Objective-C/instm/CalCalendarItem/setAlarms: -Objective-C/instm/NSAlert/setAlertStyle: -C/func/-/SetAliasUserType -C/func/-/SetAliasUserTypeWithPtr -Objective-C/instm/NSActionCell/setAlignment: -Objective-C/instm/PDFAnnotationFreeText/setAlignment: -Objective-C/instm/PDFAnnotationTextWidget/setAlignment: -Objective-C/instm/NSMutableParagraphStyle/setAlignment: -Objective-C/instm/NSControl/setAlignment: -Objective-C/instm/NSText/setAlignment: -Objective-C/instm/NSCell/setAlignment: -Objective-C/instm/NSMutableAttributedString/setAlignment:range: -Objective-C/instm/NSTextView/setAlignment:range: -Objective-C/instm/CATextLayer/setAlignmentMode: -Objective-C/instm/NSImage/setAlignmentRect: -Objective-C/instm/NSMutableURLRequest/setAllHTTPHeaderFields: -Objective-C/instm/NSSavePanel/setAllowedFileTypes: -Objective-C/instm/NSTextInputContext/setAllowedInputSourceLocales: -Objective-C/instm/NSTextView/setAllowedInputSourceLocales: -Objective-C/instm/NSTextFieldCell/setAllowedInputSourceLocales: -Objective-C/instm/NSPathCell/setAllowedTypes: -Objective-C/instm/WebPreferences/setAllowsAnimatedImageLooping: -Objective-C/instm/WebPreferences/setAllowsAnimatedImages: -Objective-C/instm/NSBrowser/setAllowsBranchSelection: -Objective-C/instm/NSTableView/setAllowsColumnReordering: -Objective-C/instm/NSTableView/setAllowsColumnResizing: -Objective-C/instm/NSTableView/setAllowsColumnSelection: -Objective-C/instm/NSWindow/setAllowsConcurrentViewDrawing: -Objective-C/instm/NSMenu/setAllowsContextMenuPlugIns: -Objective-C/instm/NSImageView/setAllowsCutCopyPaste: -Objective-C/instm/NSTextView/setAllowsDocumentBackgroundColorChange: -Objective-C/instm/PDFView/setAllowsDragging: -Objective-C/instm/PDFThumbnailView/setAllowsDragging: -Objective-C/instm/IKImageBrowserView/setAllowsDroppingOnItems: -Objective-C/instm/NSTextField/setAllowsEditingTextAttributes: -Objective-C/instm/NSCell/setAllowsEditingTextAttributes: -Objective-C/instm/QCCompositionPickerView/setAllowsEmptySelection: -Objective-C/instm/NSMatrix/setAllowsEmptySelection: -Objective-C/instm/NSBrowser/setAllowsEmptySelection: -Objective-C/instm/IKImageBrowserView/setAllowsEmptySelection: -Objective-C/instm/NSTableView/setAllowsEmptySelection: -Objective-C/instm/NSNumberFormatter/setAllowsFloats: -Objective-C/instm/ABPeoplePickerView/setAllowsGroupSelection: -Objective-C/instm/NSTextView/setAllowsImageEditing: -Objective-C/instm/NSButton/setAllowsMixedState: -Objective-C/instm/NSCell/setAllowsMixedState: -Objective-C/instm/ABIdentityPicker/setAllowsMultipleSelection: -Objective-C/instm/CBIdentityPicker/setAllowsMultipleSelection: -Objective-C/instm/PDFThumbnailView/setAllowsMultipleSelection: -Objective-C/instm/NSOpenPanel/setAllowsMultipleSelection: -Objective-C/instm/NSBrowser/setAllowsMultipleSelection: -Objective-C/instm/ABPeoplePickerView/setAllowsMultipleSelection: -Objective-C/instm/IKImageBrowserView/setAllowsMultipleSelection: -Objective-C/instm/NSCollectionView/setAllowsMultipleSelection: -Objective-C/instm/NSTableView/setAllowsMultipleSelection: -Objective-C/instm/NSLayoutManager/setAllowsNonContiguousLayout: -Objective-C/instm/NSSavePanel/setAllowsOtherFileTypes: -Objective-C/instm/IKImageBrowserView/setAllowsReordering: -Objective-C/instm/WebFrameView/setAllowsScrolling: -Objective-C/instm/NSSlider/setAllowsTickMarkValuesOnly: -Objective-C/instm/NSSliderCell/setAllowsTickMarkValuesOnly: -Objective-C/instm/NSWindow/setAllowsToolTipsWhenApplicationIsInactive: -Objective-C/instm/NSTabView/setAllowsTruncatedLabels: -Objective-C/instm/NSBrowser/setAllowsTypeSelect: -Objective-C/instm/NSTableView/setAllowsTypeSelect: -Objective-C/instm/NSTextView/setAllowsUndo: -Objective-C/instm/NSCell/setAllowsUndo: -Objective-C/instm/NSToolbar/setAllowsUserCustomization: -JavaScript/instm/CanvasRenderingContext2D/setAlpha -Objective-C/instm/NSImageRep/setAlpha: -Objective-C/instm/CAEmitterCell/setAlphaRange: -Objective-C/instm/CAEmitterCell/setAlphaSpeed: -Objective-C/instm/NSWindow/setAlphaValue: -Objective-C/instm/NSView/setAlphaValue: -Objective-C/instm/NSMenuItem/setAlternate: -Objective-C/instm/SFCertificatePanel/setAlternateButtonTitle: -Objective-C/instm/SFChooseIdentityPanel/setAlternateButtonTitle: -Objective-C/instm/NSStatusItem/setAlternateImage: -Objective-C/instm/NSBrowserCell/setAlternateImage: -Objective-C/instm/NSButton/setAlternateImage: -Objective-C/instm/NSButtonCell/setAlternateImage: -C++/instm/IOUSBInterface/SetAlternateInterface -Objective-C/instm/NSButtonCell/setAlternateMnemonicLocation: -Objective-C/instm/NSButton/setAlternateTitle: -Objective-C/instm/WebHistoryItem/setAlternateTitle: -Objective-C/instm/NSButtonCell/setAlternateTitle: -Objective-C/instm/NSButtonCell/setAlternateTitleWithMnemonic: -Objective-C/instm/NSPopUpButtonCell/setAltersStateOfSelectedItem: -Objective-C/instm/NSSlider/setAltIncrementValue: -Objective-C/instm/NSSliderCell/setAltIncrementValue: -Objective-C/instm/NSNumberFormatter/setAlwaysShowsDecimalSeparator: -Objective-C/instm/NSTreeController/setAlwaysUsesMultipleValuesMarker: -Objective-C/instm/NSArrayController/setAlwaysUsesMultipleValuesMarker: -Objective-C/instm/NSDateFormatter/setAMSymbol: -Objective-C/instm/CALayer/setAnchorPoint: -Objective-C/instm/CALayer/setAnchorPointZ: -Objective-C/instm/NSImageView/setAnimates: -Objective-C/instm/IKImageBrowserView/setAnimates: -Objective-C/instm/NSAnimation/setAnimationBlockingMode: -Objective-C/instm/NSAnimation/setAnimationCurve: -Objective-C/instm/NSProgressIndicator/setAnimationDelay: -Objective-C/clm/CATransaction/setAnimationDuration: -Objective-C/instm/CAAnimationGroup/setAnimations: -Objective-C/intfm/NSAnimatablePropertyContainer/setAnimations: -Objective-C/instm/ScreenSaverView/setAnimationTimeInterval: -Objective-C/clm/CATransaction/setAnimationTimingFunction: -C++/instm/IOFramebuffer/setApertureEnable -Objective-C/instm/QTTrack/setApertureModeDimensions:forMode: -Objective-C/instm/DRBurn(PropertyConvenienceMethods)/setAppendable: -C/func/-/SetApplicationDockTileImage -C/func/-/SetApplicationDockTileMenu -Objective-C/instm/NSApplication/setApplicationIconImage: -Objective-C/instm/WebView/setApplicationNameForUserAgent: -Objective-C/instm/NSUserDefaultsController/setAppliesImmediately: -Objective-C/instm/NSInvocation/setArgument:atIndex: -Objective-C/instm/NSScriptCommand/setArguments: -Objective-C/instm/NSTask/setArguments: -Objective-C/instm/NSMutableArray/setArray: -Objective-C/instm/NSPopUpButtonCell/setArrowPosition: -Objective-C/instm/NSScroller/setArrowsPosition: -C++/instm/IOFWPseudoAddressSpaceAux/setARxReqIntCompleteHandler -C++/instm/IOFWPseudoAddressSpace/setARxReqIntCompleteHandler -Objective-C/instm/FxTexture/setAsActiveTexture -Objective-C/instm/NSWindow/setAspectRatio: -Objective-C/instm/NSBezierPath/setAssociatedPoints:atIndex: -Objective-C/instm/CAOpenGLLayer/setAsynchronous: -JavaScript/instm/InspectorFrontendHost/setAttachedWindowHeight -Objective-C/intfm/NSTextAttachmentCell/setAttachment: -Objective-C/instm/NSTextAttachment/setAttachmentCell: -Objective-C/instm/NSATSTypesetter/setAttachmentSize:forGlyphRange: -Objective-C/instm/NSLayoutManager/setAttachmentSize:forGlyphRange: -Objective-C/instm/NSTypesetter/setAttachmentSize:forGlyphRange: -C++/instm/IOFramebuffer/setAttribute -JavaScript/instm/Element/setAttribute -JavaScript/instm/InspectorBackend/setAttribute -Objective-C/instm/QTCaptureConnection/setAttribute:forKey: -Objective-C/instm/QTCaptureDevice/setAttribute:forKey: -Objective-C/instm/QTTrack/setAttribute:forKey: -Objective-C/instm/QTMedia/setAttribute:forKey: -Objective-C/instm/QTMovie/setAttribute:forKey: -Objective-C/instm/NSButton/setAttributedAlternateTitle: -Objective-C/instm/NSButtonCell/setAttributedAlternateTitle: -Objective-C/instm/NSAppleEventDescriptor/setAttributeDescriptor:forKeyword: -Objective-C/instm/NSATSTypesetter/setAttributedString: -Objective-C/instm/NSTypesetter/setAttributedString: -Objective-C/instm/NSMutableAttributedString/setAttributedString: -Objective-C/instm/NSNumberFormatter/setAttributedStringForNil: -Objective-C/instm/NSNumberFormatter/setAttributedStringForNotANumber: -Objective-C/instm/NSNumberFormatter/setAttributedStringForZero: -Objective-C/instm/NSControl/setAttributedStringValue: -Objective-C/instm/NSCell/setAttributedStringValue: -Objective-C/instm/NSFormCell/setAttributedTitle: -Objective-C/instm/NSButton/setAttributedTitle: -Objective-C/instm/NSStatusItem/setAttributedTitle: -Objective-C/instm/NSButtonCell/setAttributedTitle: -Objective-C/instm/NSMenuItem/setAttributedTitle: -C++/instm/IOFramebuffer/setAttributeForConnection -Objective-C/instm/NSEntityMapping/setAttributeMappings: -JavaScript/instm/Element/setAttributeNode -JavaScript/instm/Element/setAttributeNodeNS -JavaScript/instm/Element/setAttributeNS -Objective-C/instm/NSTextStorage/setAttributeRuns: -Objective-C/instm/NSXMLElement/setAttributes: -Objective-C/instm/IMKCandidates/setAttributes: -Objective-C/instm/NSOpenGLPixelFormat/setAttributes: -Objective-C/instm/CIFilterGenerator/setAttributes:forExportedKey: -Objective-C/instm/NSFileManager/setAttributes:ofItemAtPath:error: -Objective-C/instm/NSMutableAttributedString/setAttributes:range: -Objective-C/instm/NSXMLElement/setAttributesAsDictionary: -Objective-C/instm/NSAttributeDescription/setAttributeType: -Objective-C/instm/NSAttributeDescription/setAttributeValueClassName: -C/func/-/setattrlist -C/func/-/setauclass -C/macro/-/SetAudioUnitParameterDisplayType -C/func/-/setaudit -C/func/-/setaudit_addr -C/func/-/setauevent -C/func/-/setauid -Objective-C/instm/XGConnection/setAuthenticator: -Objective-C/instm/SFAuthorizationView/setAuthorizationRights: -Objective-C/instm/NSWindow/setAutodisplay: -Objective-C/instm/NSPopUpButtonCell/setAutoenablesItems: -Objective-C/instm/NSPopUpButton/setAutoenablesItems: -Objective-C/instm/NSMenu/setAutoenablesItems: -Objective-C/instm/NSBrowser/setAutohidesScroller: -Objective-C/instm/NSScrollView/setAutohidesScrollers: -Objective-C/instm/IKImageView/setAutohidesScrollers: -Objective-C/instm/QTCaptureDecompressedVideoOutput/setAutomaticallyDropsLateVideoFrames: -Objective-C/instm/NSSpellChecker/setAutomaticallyIdentifiesLanguages: -Objective-C/instm/NSObjectController/setAutomaticallyPreparesContent: -Objective-C/instm/NSArrayController/setAutomaticallyPreparesContent: -Objective-C/instm/NSArrayController/setAutomaticallyRearrangesObjects: -Objective-C/instm/NSTextView/setAutomaticDashSubstitutionEnabled: -Objective-C/instm/NSTextView/setAutomaticDataDetectionEnabled: -Objective-C/instm/NSTextView/setAutomaticLinkDetectionEnabled: -Objective-C/instm/NSTextView/setAutomaticQuoteSubstitutionEnabled: -Objective-C/instm/NSTextView/setAutomaticSpellingCorrectionEnabled: -Objective-C/instm/NSTextView/setAutomaticTextReplacementEnabled: -Objective-C/instm/IKSlideshow/setAutoPlayDelay: -Objective-C/instm/NSWindow/setAutorecalculatesContentBorderThickness:forEdge: -Objective-C/instm/NSWindow/setAutorecalculatesKeyViewLoop: -Objective-C/instm/NSStepper/setAutorepeat: -Objective-C/instm/NSStepperCell/setAutorepeat: -Objective-C/instm/IKImageView/setAutoresizes: -Objective-C/instm/NSTableView/setAutoresizesAllColumnsToFit: -Objective-C/instm/NSOutlineView/setAutoresizesOutlineColumn: -Objective-C/instm/NSView/setAutoresizesSubviews: -Objective-C/instm/NSView/setAutoresizingMask: -Objective-C/instm/CALayer/setAutoresizingMask: -Objective-C/intfm/CAMediaTiming/setAutoreverses: -Objective-C/instm/NSDocument/setAutosavedContentsFileURL: -Objective-C/instm/NSOutlineView/setAutosaveExpandedItems: -Objective-C/instm/ABPeoplePickerView/setAutosaveName: -Objective-C/instm/NSSplitView/setAutosaveName: -Objective-C/instm/NSTableView/setAutosaveName: -Objective-C/instm/WebPreferences/setAutosaves: -Objective-C/instm/NSToolbar/setAutosavesConfiguration: -Objective-C/instm/NSTableView/setAutosaveTableColumns: -Objective-C/instm/NSDocumentController/setAutosavingDelay: -Objective-C/instm/PDFView/setAutoScales: -Objective-C/instm/NSMatrix/setAutoscroll: -C++/instm/IOSCSIParallelInterfaceController/SetAutoSenseData -Objective-C/instm/NSMatrix/setAutosizesCells: -Objective-C/instm/QCView/setAutostartsRendering: -C/func/-/SetAutoTrackAlternatesEnabled -Objective-C/instm/SFAuthorizationView/setAutoupdate: -Objective-C/instm/SFAuthorizationView/setAutoupdate:interval: -Objective-C/instm/NSToolbarItem/setAutovalidates: -C/func/-/setauuser -C++/instm/IOFireWirePCRSpace/setAVCTargetSpacePointer -Objective-C/instm/NSTreeController/setAvoidsEmptySelection: -Objective-C/instm/NSArrayController/setAvoidsEmptySelection: -C/func/-/setAwaitingAck -Objective-C/instm/QTMovieView/setBackButtonVisible: -Objective-C/instm/NSScrollView/setBackgroundColor: -Objective-C/instm/NSClipView/setBackgroundColor: -Objective-C/instm/QCCompositionPickerView/setBackgroundColor: -Objective-C/instm/QCCompositionParameterView/setBackgroundColor: -Objective-C/instm/PDFThumbnailView/setBackgroundColor: -Objective-C/instm/PDFAnnotationButtonWidget/setBackgroundColor: -Objective-C/instm/PDFView/setBackgroundColor: -Objective-C/instm/PDFAnnotationTextWidget/setBackgroundColor: -Objective-C/instm/PDFAnnotationChoiceWidget/setBackgroundColor: -Objective-C/instm/NSDatePicker/setBackgroundColor: -Objective-C/instm/NSMatrix/setBackgroundColor: -Objective-C/instm/NSDatePickerCell/setBackgroundColor: -Objective-C/instm/NSButtonCell/setBackgroundColor: -Objective-C/instm/NSTextBlock/setBackgroundColor: -Objective-C/instm/NSPathCell/setBackgroundColor: -Objective-C/instm/NSBrowser/setBackgroundColor: -Objective-C/instm/NSTextField/setBackgroundColor: -Objective-C/instm/NSTextView/setBackgroundColor: -Objective-C/instm/NSImage/setBackgroundColor: -Objective-C/instm/NSPathControl/setBackgroundColor: -Objective-C/instm/NSWindow/setBackgroundColor: -Objective-C/instm/NSTableView/setBackgroundColor: -Objective-C/instm/NSText/setBackgroundColor: -Objective-C/instm/NSTextFieldCell/setBackgroundColor: -Objective-C/instm/CALayer/setBackgroundColor: -Objective-C/instm/IKImageView/setBackgroundColor: -Objective-C/instm/NSCollectionView/setBackgroundColors: -Objective-C/instm/NSView/setBackgroundFilters: -Objective-C/instm/CALayer/setBackgroundFilters: -Objective-C/instm/IKImageBrowserView/setBackgroundLayer: -Objective-C/instm/NSLayoutManager/setBackgroundLayoutEnabled: -Objective-C/instm/NSCell/setBackgroundStyle: -Objective-C/instm/NSWindow/setBackingType: -Objective-C/instm/NSDockTile/setBadgeLabel: -JavaScript/instm/DOMSelection/setBaseAndExtent -Objective-C/instm/DRFSObject/setBaseName: -Objective-C/instm/NSRelativeSpecifier/setBaseSpecifier: -Objective-C/instm/NSMutableParagraphStyle/setBaseWritingDirection: -Objective-C/instm/NSControl/setBaseWritingDirection: -Objective-C/instm/NSText/setBaseWritingDirection: -Objective-C/instm/NSCell/setBaseWritingDirection: -Objective-C/instm/NSMutableAttributedString/setBaseWritingDirection:range: -Objective-C/instm/NSTextView/setBaseWritingDirection:range: -Objective-C/instm/NSPanel/setBecomesKeyOnlyIfNeeded: -Objective-C/intfm/CAMediaTiming/setBeginTime: -Objective-C/instm/NSForm/setBezeled: -Objective-C/instm/NSActionCell/setBezeled: -Objective-C/instm/NSProgressIndicator/setBezeled: -Objective-C/instm/NSDatePicker/setBezeled: -Objective-C/instm/NSTextField/setBezeled: -Objective-C/instm/NSCell/setBezeled: -Objective-C/instm/NSButton/setBezelStyle: -Objective-C/instm/NSButtonCell/setBezelStyle: -Objective-C/instm/NSTextField/setBezelStyle: -Objective-C/instm/NSTextFieldCell/setBezelStyle: -Objective-C/instm/NSATSTypesetter/setBidiLevels:forGlyphRange: -Objective-C/instm/NSTypesetter/setBidiLevels:forGlyphRange: -Objective-C/instm/NSATSTypesetter/setBidiProcessingEnabled: -Objective-C/instm/NSTypesetter/setBidiProcessingEnabled: -Objective-C/instm/CAEmitterLayer/setBirthRate: -Objective-C/instm/CAEmitterCell/setBirthRate: -Objective-C/instm/NSImageRep/setBitsPerSample: -C/func/-/SetBLASParamErrorProc -Objective-C/instm/NSSpeechRecognizer/setBlocksOtherRecognizers: -Objective-C/instm/CAEmitterCell/setBlueRange: -Objective-C/instm/CAEmitterCell/setBlueSpeed: -Objective-C/instm/NSUserDefaults/setBool:forKey: -Objective-C/intfm/FxParameterSettingAPI/setBoolValue:toParm:atTime: -Objective-C/instm/PDFAnnotation/setBorder: -Objective-C/instm/NSBox/setBorderColor: -Objective-C/instm/NSTextBlock/setBorderColor: -Objective-C/instm/CALayer/setBorderColor: -Objective-C/instm/NSTextBlock/setBorderColor:forEdge: -Objective-C/instm/NSForm/setBordered: -Objective-C/instm/NSActionCell/setBordered: -Objective-C/instm/NSColorWell/setBordered: -Objective-C/instm/NSButton/setBordered: -Objective-C/instm/NSDatePicker/setBordered: -Objective-C/instm/NSTextField/setBordered: -Objective-C/instm/NSCell/setBordered: -Objective-C/instm/NSScrollView/setBorderType: -Objective-C/instm/NSBox/setBorderType: -Objective-C/instm/NSBox/setBorderWidth: -Objective-C/instm/CALayer/setBorderWidth: -Objective-C/instm/NSPrintInfo/setBottomMargin: -Objective-C/instm/PDFAnnotation/setBounds: -Objective-C/instm/CARenderer/setBounds: -Objective-C/instm/NSView/setBounds: -Objective-C/instm/CALayer/setBounds: -Objective-C/instm/PDFPage/setBounds:forBox: -Objective-C/instm/NSView/setBoundsOrigin: -Objective-C/instm/NSLayoutManager/setBoundsRect:forTextBlock:glyphRange: -Objective-C/instm/NSView/setBoundsRotation: -Objective-C/instm/NSView/setBoundsSize: -Objective-C/instm/NSBox/setBoxType: -JavaScript/instm/InspectorBackend/setBreakpoint -C/func/-/setbuf -C/func/-/setbuffer -C++/instm/IOATACommand/setBuffer -C++/instm/IOFireWireSBP2ORB/setBufferConstraints -C++/instm/IOStreamBuffer/setBufferID -C++/instm/IOPCIDevice/setBusMasterEnable -Objective-C/instm/SFAuthorizationPluginView/setButton:enabled: -Objective-C/instm/NSComboBox/setButtonBordered: -Objective-C/instm/NSComboBoxCell/setButtonBordered: -Objective-C/instm/NSButton/setButtonType: -Objective-C/instm/NSButtonCell/setButtonType: -Objective-C/instm/NSSet/setByAddingObject: -Objective-C/instm/NSSet/setByAddingObjectsFromArray: -Objective-C/instm/NSSet/setByAddingObjectsFromSet: -C++/instm/IOATACommand/setByteCount -Objective-C/instm/FxImage/setBytes: -Objective-C/instm/CABasicAnimation/setByValue: -Objective-C/instm/NSImage/setCacheDepthMatchesImageDepth: -Objective-C/instm/NSImage/setCachedSeparately: -Objective-C/instm/NSImage/setCacheMode: -Objective-C/instm/WebPreferences/setCacheModel: -Objective-C/instm/NSMutableURLRequest/setCachePolicy: -Objective-C/instm/NSBezierPath/setCachesBezierPath: -Objective-C/instm/CAKeyframeAnimation/setCalculationMode: -Objective-C/instm/CalCalendarItem/setCalendar: -Objective-C/instm/NSDatePicker/setCalendar: -Objective-C/instm/NSDateFormatter/setCalendar: -Objective-C/instm/NSDatePickerCell/setCalendar: -C++/instm/IOATACommand/setCallbackPtr -Objective-C/instm/IKCameraDeviceView/setCameraDevice: -Objective-C/instm/NSWindow/setCanBecomeVisibleWithoutLogin: -Objective-C/instm/NSWindow/setCanBeVisibleOnAllSpaces: -Objective-C/instm/NSSearchFieldCell/setCancelButtonCell: -Objective-C/instm/NSOpenPanel/setCanChooseDirectories: -Objective-C/instm/NSOpenPanel/setCanChooseFiles: -Objective-C/instm/IKImageBrowserView/setCanControlQuickLookPanel: -Objective-C/instm/NSSavePanel/setCanCreateDirectories: -Objective-C/instm/NSView/setCanDrawConcurrently: -Objective-C/instm/NSWindow/setCanHide: -Objective-C/instm/NSRuleEditor/setCanRemoveAllRows: -Objective-C/instm/DRBurnSetupPanel/setCanSelectAppendableMedia: -Objective-C/instm/NSSavePanel/setCanSelectHiddenExtension: -Objective-C/instm/DRBurnSetupPanel/setCanSelectTestBurn: -Objective-C/instm/NSPrintOperation/setCanSpawnSeparateThread: -C++/instm/IOBasicOutputQueue/setCapacity -C++/instm/IOOutputQueue/setCapacity -C++/instm/IOPacketQueue/setCapacity -Objective-C/instm/WebBackForwardList/setCapacity: -C++/instm/OSArray/setCapacityIncrement -C++/instm/OSCollection/setCapacityIncrement -C++/instm/OSDictionary/setCapacityIncrement -C++/instm/OSData/setCapacityIncrement -C++/instm/OSOrderedSet/setCapacityIncrement -C++/instm/OSSet/setCapacityIncrement -Objective-C/instm/PDFAnnotationButtonWidget/setCaption: -Objective-C/instm/QTCaptureView/setCaptureSession: -Objective-C/instm/NSScanner/setCaseSensitive: -C/func/-/setcchar -Objective-C/instm/NSControl/setCell: -Objective-C/instm/NSCell/setCellAttribute:to: -Objective-C/instm/NSMatrix/setCellBackgroundColor: -Objective-C/instm/NSMatrix/setCellClass: -Objective-C/clm/NSControl/setCellClass: -Objective-C/instm/NSBrowser/setCellClass: -Objective-C/instm/NSBrowser/setCellPrototype: -Objective-C/instm/NSMatrix/setCellSize: -Objective-C/instm/IKImageBrowserView/setCellSize: -Objective-C/instm/IKImageBrowserView/setCellsStyleMask: -Objective-C/instm/SFCertificateView/setCertificate: -Objective-C/instm/CWInterface/setChannel:error: -C++/instm/IOAudioControl/setChannelID -Objective-C/instm/NSSound/setChannelMapping: -C++/instm/IOAudioControl/setChannelName -C++/instm/OSString/setChar -Objective-C/instm/NSXMLDocument/setCharacterEncoding: -Objective-C/instm/NSLayoutManager/setCharacterIndex:forGlyphAtIndex: -Objective-C/instm/NSTextStorage/setCharacters: -Objective-C/instm/NSScanner/setCharactersToBeSkipped: -C++/instm/IONetworkController/setChecksumResult -C/func/-/setChildHasRequestedPower -Objective-C/instm/NSXMLDTD/setChildren: -Objective-C/instm/NSXMLDocument/setChildren: -Objective-C/instm/NSXMLElement/setChildren: -Objective-C/instm/NSTreeController/setChildrenKeyPath: -Objective-C/instm/NSScriptObjectSpecifier/setChildSpecifier: -Objective-C/instm/PDFAnnotationChoiceWidget/setChoices: -Objective-C/instm/NSKeyedUnarchiver/setClass:forClassName: -Objective-C/clm/NSKeyedUnarchiver/setClass:forClassName: -Objective-C/instm/CIFilterGenerator/setClassAttributes: -Objective-C/instm/NSKeyedArchiver/setClassName:forClass: -Objective-C/clm/NSKeyedArchiver/setClassName:forClass: -Objective-C/instm/IOBluetoothHostController/setClassOfDevice:forTimeInterval: -Objective-C/instm/NSArrayController/setClearsFilterPredicateOnInsertion: -Objective-C/instm/NSTextInputContext/setClient: -Objective-C/instm/ISyncSession/setClientInfo:forRecordWithIdentifier: -Objective-C/instm/NSRulerView/setClientView: -Objective-C/instm/NSBezierPath/setClip -C++/instm/IOAudioEngine/setClockDomain -C++/instm/IOAudioEngine/setClockIsStable -C++/instm/IOFramebuffer/setCLUTWithEntries -Objective-C/instm/NSTextTable/setCollapsesBorders: -Objective-C/instm/NSWindow/setCollectionBehavior: -JavaScript/instm/SVGColor/setColor -Objective-C/instm/NSColorPanel/setColor: -Objective-C/instm/NSColorWell/setColor: -Objective-C/instm/PDFAnnotation/setColor: -Objective-C/instm/PDFSelection/setColor: -Objective-C/instm/CalCalendar/setColor: -Objective-C/intfm/NSColorPickingCustom/setColor: -Objective-C/instm/CAEmitterCell/setColor: -Objective-C/instm/NSTabViewItem/setColor: -Objective-C/instm/NSBitmapImageRep/setColor:atX:y: -Objective-C/instm/NSColorList/setColor:forKey: -Objective-C/instm/NSGraphicsContext/setColorRenderingIntent: -Objective-C/instm/CAGradientLayer/setColors: -Objective-C/instm/NSWindow/setColorSpace: -Objective-C/instm/NSImageRep/setColorSpaceName: -Objective-C/instm/NSTableView/setColumnAutoresizingStyle: -Objective-C/instm/NSBrowser/setColumnResizingType: -Objective-C/instm/NSBrowser/setColumnsAutosaveName: -Objective-C/instm/ABPeoplePickerView/setColumnTitle:forProperty: -C++/instm/IOATACommand/setCommand -C++/instm/IOExtendedLBA/setCommand -C++/instm/IOFireWireSBP2ORB/setCommandBlock -C++/instm/IOFireWireSerialBusProtocolTransport/SetCommandBuffers -C++/instm/IOFireWireSBP2ORB/setCommandBuffers -C++/instm/IOFireWireSBP2ORB/setCommandBuffersAsRanges -C++/instm/IOFireWireSBP2ORB/setCommandBuffersAsRanges64 -C++/instm/IOFireWireSBP2ORB/setCommandFlags -C++/instm/IOFireWireSBP2ORB/setCommandGeneration -C++/instm/IOATABusCommand/setCommandInUse -Objective-C/instm/NSSpeechRecognizer/setCommands: -C++/instm/IOFireWireSBP2ORB/setCommandTimeout -Objective-C/instm/CalAttendee/setCommonName: -Objective-C/instm/CalTask/setCompletedDate: -Objective-C/instm/NSComboBox/setCompletes: -Objective-C/instm/NSComboBoxCell/setCompletes: -Objective-C/instm/DRBurn(PropertyConvenienceMethods)/setCompletionAction: -Objective-C/instm/NSOperation/setCompletionBlock: -Objective-C/clm/CATransaction/setCompletionBlock: -Objective-C/instm/NSTokenField/setCompletionDelay: -Objective-C/instm/NSTokenFieldCell/setCompletionDelay: -C/func/-/SetComponentInstanceError -C/func/-/SetComponentInstanceStorage -C/func/-/SetComponentRefcon -JavaScript/instm/CanvasRenderingContext2D/setCompositeOperation -Objective-C/instm/NSView/setCompositingFilter: -Objective-C/instm/CALayer/setCompositingFilter: -Objective-C/instm/NSGraphicsContext/setCompositingOperation: -Objective-C/instm/QCCompositionPickerView/setCompositionAspectRatio: -Objective-C/instm/QCCompositionParameterView/setCompositionRenderer: -Objective-C/instm/QCCompositionPickerView/setCompositionsFromRepositoryWithProtocol:andAttributes: -C/func/-/SetCompressedPixMapInfo -Objective-C/instm/NSBitmapImageRep/setCompression:factor: -Objective-C/instm/QTCaptureFileOutput/setCompressionOptions:forConnection: -C++/instm/IOPCIDevice/setConfigBits -C++/instm/IOUSBDevice/SetConfiguration -C++/instm/IOUSBCompositeDriver/SetConfiguration -C++/instm/IOAudioDevice/setConfigurationApplicationBundle -Objective-C/instm/NSToolbar/setConfigurationFromDictionary: -Objective-C/instm/QTCaptureConnection/setConnectionAttributes: -Objective-C/instm/NSTextView/setConstrainedFrameSize: -Objective-C/instm/IKImageBrowserView/setConstrainsToOriginalSize: -Objective-C/instm/CALayer/setConstraints: -Objective-C/instm/NSScriptObjectSpecifier/setContainerClassDescription: -Objective-C/instm/NSScriptObjectSpecifier/setContainerIsObjectBeingTested: -Objective-C/instm/NSScriptObjectSpecifier/setContainerIsRangeContainerObject: -Objective-C/instm/NSTextContainer/setContainerSize: -Objective-C/instm/NSScriptObjectSpecifier/setContainerSpecifier: -Objective-C/instm/NSTreeController/setContent: -Objective-C/instm/NSObjectController/setContent: -Objective-C/instm/NSCollectionView/setContent: -Objective-C/instm/NSWindow/setContentAspectRatio: -Objective-C/instm/NSWindow/setContentBorderThickness:forEdge: -Objective-C/instm/NSView/setContentFilters: -Objective-C/instm/NSWindow/setContentMaxSize: -Objective-C/instm/NSWindow/setContentMinSize: -Objective-C/instm/NSWindow/setContentResizeIncrements: -Objective-C/instm/IKImageBrowserView/setContentResizingMask: -Objective-C/instm/PDFAnnotation/setContents: -Objective-C/instm/CAEmitterCell/setContents: -Objective-C/instm/CALayer/setContents: -Objective-C/instm/CALayer/setContentsCenter: -Objective-C/instm/CALayer/setContentsGravity: -Objective-C/instm/NSDrawer/setContentSize: -Objective-C/instm/NSWindow/setContentSize: -Objective-C/instm/CAEmitterCell/setContentsRect: -Objective-C/instm/CALayer/setContentsRect: -Objective-C/instm/NSScrollView/setContentView: -Objective-C/instm/NSBox/setContentView: -Objective-C/instm/NSDrawer/setContentView: -Objective-C/instm/NSDockTile/setContentView: -Objective-C/instm/NSWindow/setContentView: -Objective-C/instm/NSBox/setContentViewMargins: -Objective-C/instm/NSTextBlock/setContentWidth:type: -C/func/-/setcontext -Objective-C/instm/NSHelpManager/setContextHelp:forObject: -Objective-C/clm/NSHelpManager/setContextHelpModeActive: -Objective-C/instm/NSMenu/setContextMenuRepresentation: -C/func/-/SetContextValue -Objective-C/instm/NSColorPanel/setContinuous: -Objective-C/instm/NSControl/setContinuous: -Objective-C/instm/NSCell/setContinuous: -Objective-C/instm/NSTextView/setContinuousSpellCheckingEnabled: -Objective-C/instm/WebView/setContinuousSpellCheckingEnabled: -C++/instm/IOStreamBuffer/setControlBuffer -C++/instm/IOAudioControl/setControlID -C++/instm/IOSCSIParallelInterfaceController/SetControllerTaskIdentifier -Objective-C/instm/QTMovieView/setControllerVisible: -Objective-C/instm/NSScroller/setControlSize: -Objective-C/instm/NSProgressIndicator/setControlSize: -Objective-C/instm/NSPathCell/setControlSize: -Objective-C/instm/NSTabView/setControlSize: -Objective-C/instm/NSCell/setControlSize: -Objective-C/instm/NSScroller/setControlTint: -Objective-C/instm/NSProgressIndicator/setControlTint: -Objective-C/instm/NSTabView/setControlTint: -Objective-C/instm/NSCell/setControlTint: -Objective-C/instm/PDFAnnotationButtonWidget/setControlType: -Objective-C/instm/NSActionCell/setControlView: -Objective-C/instm/NSCell/setControlView: -Objective-C/instm/NSHTTPCookieStorage/setCookie: -Objective-C/instm/NSHTTPCookieStorage/setCookieAcceptPolicy: -Objective-C/instm/NSHTTPCookieStorage/setCookies:forURL:mainDocumentURL: -Objective-C/instm/NSClipView/setCopiesOnScroll: -Objective-C/instm/NSBox/setCornerRadius: -Objective-C/instm/CALayer/setCornerRadius: -Objective-C/instm/NSTableView/setCornerView: -Objective-C/instm/NSPointerArray/setCount: -Objective-C/instm/NSTreeController/setCountKeyPath: -Objective-C/instm/NSCache/setCountLimit: -Objective-C/instm/CLLocation/setCourse: -Objective-C/instm/NSURLCredentialStorage/setCredential:forProtectionSpace: -Objective-C/instm/ODNode/setCredentialsUsingKerberosCache:error: -Objective-C/instm/ODNode/setCredentialsWithRecordType:authenticationType:authenticationItems:continueItems:context:error: -Objective-C/instm/ODNode/setCredentialsWithRecordType:recordName:password:error: -Objective-C/instm/NSRuleEditor/setCriteria:andDisplayValues:forRowAtIndex: -Objective-C/instm/NSRuleEditor/setCriteriaKeyPath: -Objective-C/instm/NSLevelIndicator/setCriticalValue: -Objective-C/instm/NSLevelIndicatorCell/setCriticalValue: -C/func/-/SetCSequenceDataRateParams -C/func/-/SetCSequenceFlushProc -C/func/-/SetCSequenceFrameNumber -C/func/-/SetCSequenceKeyFrameRate -C/func/-/SetCSequencePreferredPacketSize -C/func/-/SetCSequencePrev -C/func/-/SetCSequenceQuality -Objective-C/instm/CAPropertyAnimation/setCumulative: -Objective-C/instm/NSNumberFormatter/setCurrencyCode: -Objective-C/instm/NSNumberFormatter/setCurrencyDecimalSeparator: -Objective-C/instm/NSNumberFormatter/setCurrencyGroupingSeparator: -Objective-C/instm/NSNumberFormatter/setCurrencySymbol: -Objective-C/instm/NSAppleEventManager/setCurrentAppleEventAndReplyEventWithSuspensionID: -Objective-C/clm/NSGraphicsContext/setCurrentContext: -Objective-C/instm/QLPreviewPanel/setCurrentController: -Objective-C/instm/NSTask/setCurrentDirectoryPath: -Objective-C/clm/NSPrintOperation/setCurrentOperation: -Objective-C/instm/NSPDFImageRep/setCurrentPage: -Objective-C/instm/QLPreviewPanel/setCurrentPreviewItem: -Objective-C/instm/QLPreviewPanel/setCurrentPreviewItemIndex: -Objective-C/instm/NSAnimation/setCurrentProgress: -Objective-C/instm/PDFView/setCurrentSelection: -Objective-C/instm/PDFView/setCurrentSelection:animate: -JavaScript/instm/SVGSVGElement/setCurrentTime -Objective-C/instm/NSSound/setCurrentTime: -Objective-C/instm/QTMovie/setCurrentTime: -Objective-C/instm/IKImageView/setCurrentToolMode: -Objective-C/instm/NSOpenGLContext/setCurrentVirtualScreen: -Objective-C/instm/WebPreferences/setCursiveFontFamily: -Objective-C/instm/PDFView/setCursorForAreaOfInterest: -C++/instm/IOFramebuffer/setCursorImage -C++/instm/IOFramebuffer/setCursorState -Objective-C/instm/QTMovieView/setCustomButtonVisible: -Objective-C/intfm/FxParameterSettingAPI/setCustomParameterValue:toParm: -Objective-C/instm/WebView/setCustomTextEncodingName: -Objective-C/instm/WebView/setCustomUserAgent: -JavaScript/instm/HTMLFieldSetElement/setCustomValidity -JavaScript/instm/HTMLInputElement/setCustomValidity -JavaScript/instm/HTMLTextAreaElement/setCustomValidity -JavaScript/instm/HTMLSelectElement/setCustomValidity -JavaScript/instm/HTMLButtonElement/setCustomValidity -Objective-C/intfm/AUCustomViewPersistentData/setCustomViewPersistentData: -C++/instm/IOATACommand/setCylHi -C++/instm/IOATACommand/setCylLo -Objective-C/instm/PDFBorder/setDashPattern: -JavaScript/instm/Clipboard/setData -Objective-C/instm/NSMutableData/setData: -Objective-C/instm/FxTexture/setData: -Objective-C/instm/NSPasteboardItem/setData:forType: -Objective-C/instm/NSPasteboard/setData:forType: -C/func/-/SetDataBrowserActiveItems -C/func/-/SetDataBrowserCallbacks -C/func/-/SetDataBrowserColumnViewDisplayType -C/func/-/SetDataBrowserColumnViewPath -C/func/-/SetDataBrowserCustomCallbacks -C/func/-/SetDataBrowserEditItem -C/func/-/SetDataBrowserEditText -C/func/-/SetDataBrowserHasScrollBars -C/func/-/SetDataBrowserItemDataBooleanValue -C/func/-/SetDataBrowserItemDataButtonValue -C/func/-/SetDataBrowserItemDataDateTime -C/func/-/SetDataBrowserItemDataDrawState -C/func/-/SetDataBrowserItemDataIcon -C/func/-/SetDataBrowserItemDataIconTransform -C/func/-/SetDataBrowserItemDataItemID -C/func/-/SetDataBrowserItemDataLongDateTime -C/func/-/SetDataBrowserItemDataMaximum -C/func/-/SetDataBrowserItemDataMenuRef -C/func/-/SetDataBrowserItemDataMinimum -C/func/-/SetDataBrowserItemDataRGBColor -C/func/-/SetDataBrowserItemDataText -C/func/-/SetDataBrowserItemDataValue -C/func/-/SetDataBrowserListViewDisclosureColumn -C/func/-/SetDataBrowserListViewHeaderBtnHeight -C/func/-/SetDataBrowserListViewHeaderDesc -C/func/-/SetDataBrowserListViewUsePlainBackground -C/func/-/SetDataBrowserPropertyFlags -C/func/-/SetDataBrowserScrollBarInset -C/func/-/SetDataBrowserScrollPosition -C/func/-/SetDataBrowserSelectedItems -C/func/-/SetDataBrowserSelectionFlags -C/func/-/SetDataBrowserSortOrder -C/func/-/SetDataBrowserSortProperty -C/func/-/SetDataBrowserTableViewColumnPosition -C/func/-/SetDataBrowserTableViewColumnWidth -C/func/-/SetDataBrowserTableViewGeometry -C/func/-/SetDataBrowserTableViewHiliteStyle -C/func/-/SetDataBrowserTableViewItemRow -C/func/-/SetDataBrowserTableViewItemRowHeight -C/func/-/SetDataBrowserTableViewNamedColumnWidth -C/func/-/SetDataBrowserTableViewRowHeight -C/func/-/SetDataBrowserTarget -C/func/-/SetDataBrowserUserState -C/func/-/SetDataBrowserViewStyle -C++/instm/IOStreamBuffer/setDataBuffer -Objective-C/instm/NSTableColumn/setDataCell: -Objective-C/instm/NSPasteboardItem/setDataProvider:forTypes: -Objective-C/instm/FxBitmap/setDataPtr: -Objective-C/instm/QTDataReference/setDataRef: -Objective-C/instm/QTDataReference/setDataRefType: -Objective-C/instm/NSImage/setDataRetained: -Objective-C/instm/NSComboBox/setDataSource: -Objective-C/instm/NSComboBoxCell/setDataSource: -Objective-C/instm/QLPreviewPanel/setDataSource: -Objective-C/instm/IKImageBrowserView/setDataSource: -Objective-C/instm/IKImageEditPanel/setDataSource: -Objective-C/instm/NSTableView/setDataSource: -Objective-C/intfm/WebDocumentRepresentation/setDataSource: -Objective-C/intfm/WebDocumentView/setDataSource: -Objective-C/instm/NSOutlineView/setDataSource: -Objective-C/instm/NSDateFormatter/setDateFormat: -Objective-C/instm/NSDatePicker/setDatePickerElements: -Objective-C/instm/NSDatePickerCell/setDatePickerElements: -Objective-C/instm/NSDatePicker/setDatePickerMode: -Objective-C/instm/NSDatePickerCell/setDatePickerMode: -Objective-C/instm/NSDatePicker/setDatePickerStyle: -Objective-C/instm/NSDatePickerCell/setDatePickerStyle: -Objective-C/instm/CalCalendarItem/setDateStamp: -Objective-C/instm/NSDateFormatter/setDateStyle: -Objective-C/instm/NSDatePicker/setDateValue: -Objective-C/instm/NSDatePickerCell/setDateValue: -Objective-C/instm/NSDateComponents/setDay: -Objective-C/instm/CalNthWeekDay/setDayOfTheWeek: -C++/instm/IOFramebuffer/setDDCClock -C++/instm/IOFramebuffer/setDDCData -Objective-C/instm/NSNumberFormatter/setDecimalSeparator: -Objective-C/instm/NSLayoutManager/setDefaultAttachmentScaling: -Objective-C/clm/NSDecimalNumber/setDefaultBehavior: -Objective-C/instm/NSWindow/setDefaultButtonCell: -Objective-C/instm/SFCertificatePanel/setDefaultButtonTitle: -Objective-C/instm/NSPrintPanel/setDefaultButtonTitle: -Objective-C/instm/DRBurnSetupPanel/setDefaultButtonTitle: -Objective-C/instm/SFChooseIdentityPanel/setDefaultButtonTitle: -Objective-C/instm/NSBrowser/setDefaultColumnWidth: -C/func/-/SetDefaultComponent -Objective-C/instm/NSURLCredentialStorage/setDefaultCredential:forProtectionSpace: -Objective-C/instm/NSDateFormatter/setDefaultDate: -Objective-C/instm/WebPreferences/setDefaultFixedFontSize: -Objective-C/clm/NSBezierPath/setDefaultFlatness: -Objective-C/instm/WebPreferences/setDefaultFontSize: -Objective-C/clm/NSDateFormatter/setDefaultFormatterBehavior: -Objective-C/clm/NSNumberFormatter/setDefaultFormatterBehavior: -Objective-C/clm/NSBezierPath/setDefaultLineCapStyle: -Objective-C/clm/NSBezierPath/setDefaultLineJoinStyle: -Objective-C/clm/NSBezierPath/setDefaultLineWidth: -Objective-C/clm/NSBezierPath/setDefaultMiterLimit: -Objective-C/instm/NSSocketPortNameServer/setDefaultNameServerPortNumber: -Objective-C/instm/NSTextView/setDefaultParagraphStyle: -Objective-C/clm/NSObject/setDefaultPlaceholder:forMarker:withBinding: -Objective-C/clm/NSPrintInfo/setDefaultPrinter: -Objective-C/instm/CIFilter/setDefaults -Objective-C/instm/NSMutableParagraphStyle/setDefaultTabInterval: -Objective-C/instm/WebPreferences/setDefaultTextEncodingName: -Objective-C/clm/NSTimeZone/setDefaultTimeZone: -Objective-C/instm/NSAttributeDescription/setDefaultValue: -Objective-C/instm/QCCompositionPickerView/setDefaultValue:forInputKey: -Objective-C/clm/NSBezierPath/setDefaultWindingRule: -Objective-C/instm/AMWorkflowController/setDelegate: -Objective-C/instm/SFAuthorizationView/setDelegate: -Objective-C/instm/QCCompositionParameterView/setDelegate: -Objective-C/instm/QCCompositionPickerView/setDelegate: -Objective-C/instm/NSExceptionHandler/setDelegate: -Objective-C/instm/SBApplication/setDelegate: -Objective-C/instm/NSFontManager/setDelegate: -Objective-C/instm/IMKInputController/setDelegate: -Objective-C/instm/CAAnimation/setDelegate: -Objective-C/instm/PDFView/setDelegate: -Objective-C/instm/PDFDocument/setDelegate: -Objective-C/instm/NSDatePicker/setDelegate: -Objective-C/instm/QTCaptureDecompressedAudioOutput/setDelegate: -Objective-C/instm/ISyncSessionDriver/setDelegate: -Objective-C/instm/NSSavePanel/setDelegate: -Objective-C/instm/NSLayoutManager/setDelegate: -Objective-C/instm/NSComboBox/setDelegate: -Objective-C/instm/NSDatePickerCell/setDelegate: -Objective-C/instm/NSMatrix/setDelegate: -Objective-C/instm/NSAlert/setDelegate: -Objective-C/instm/NSAnimation/setDelegate: -Objective-C/instm/QTCaptureFileOutput/setDelegate: -Objective-C/instm/NSDrawer/setDelegate: -Objective-C/instm/QTCaptureVideoPreviewOutput/setDelegate: -Objective-C/instm/QTCaptureView/setDelegate: -Objective-C/instm/NSNetService/setDelegate: -Objective-C/instm/NSSpellServer/setDelegate: -Objective-C/instm/NSTokenField/setDelegate: -Objective-C/instm/NSStream/setDelegate: -Objective-C/instm/NSMetadataQuery/setDelegate: -Objective-C/instm/NSTokenFieldCell/setDelegate: -Objective-C/instm/NSTextStorage/setDelegate: -Objective-C/instm/NSSpeechRecognizer/setDelegate: -Objective-C/instm/NSSpeechSynthesizer/setDelegate: -Objective-C/instm/NSNetServiceBrowser/setDelegate: -Objective-C/instm/NSBrowser/setDelegate: -Objective-C/instm/ODQuery/setDelegate: -Objective-C/instm/NSPathCell/setDelegate: -Objective-C/instm/NSSound/setDelegate: -Objective-C/instm/QLPreviewPanel/setDelegate: -Objective-C/instm/NSTextField/setDelegate: -Objective-C/instm/NSTabView/setDelegate: -Objective-C/instm/XGAuthenticator/setDelegate: -Objective-C/instm/NSServerNotificationCenter/setDelegate: -Objective-C/instm/XGConnection/setDelegate: -Objective-C/instm/IKImageBrowserView/setDelegate: -Objective-C/instm/NSRuleEditor/setDelegate: -Objective-C/instm/NSConnection/setDelegate: -Objective-C/instm/NSToolbar/setDelegate: -Objective-C/instm/NSCollectionView/setDelegate: -Objective-C/instm/IOBluetoothL2CAPChannel/setDelegate: -Objective-C/instm/IOBluetoothDeviceInquiry/setDelegate: -Objective-C/instm/IOBluetoothHostController/setDelegate: -Objective-C/instm/IOBluetoothRFCOMMChannel/setDelegate: -Objective-C/instm/OBEXFileTransferServices/setDelegate: -Objective-C/instm/IOBluetoothDevicePair/setDelegate: -Objective-C/instm/NSTextView/setDelegate: -Objective-C/instm/NSSplitView/setDelegate: -Objective-C/instm/NSImage/setDelegate: -Objective-C/instm/NSPathControl/setDelegate: -Objective-C/instm/NSWindow/setDelegate: -Objective-C/instm/QTCaptureDecompressedVideoOutput/setDelegate: -Objective-C/instm/NSTableView/setDelegate: -Objective-C/instm/QTMovie/setDelegate: -Objective-C/instm/QTMovieView/setDelegate: -Objective-C/instm/IKSaveOptions/setDelegate: -Objective-C/instm/IKDeviceBrowserView/setDelegate: -Objective-C/instm/IKScannerDeviceView/setDelegate: -Objective-C/instm/NSOutlineView/setDelegate: -Objective-C/instm/IKCameraDeviceView/setDelegate: -Objective-C/instm/NSApplication/setDelegate: -Objective-C/instm/NSMenu/setDelegate: -Objective-C/instm/NSText/setDelegate: -Objective-C/instm/CLLocationManager/setDelegate: -Objective-C/instm/NSKeyedArchiver/setDelegate: -Objective-C/instm/NSCache/setDelegate: -Objective-C/instm/NSKeyedUnarchiver/setDelegate: -Objective-C/instm/NSPort/setDelegate: -Objective-C/instm/NSMachPort/setDelegate: -Objective-C/instm/NSXMLParser/setDelegate: -Objective-C/instm/NSFileManager/setDelegate: -Objective-C/instm/IKImageView/setDelegate: -Objective-C/instm/CALayer/setDelegate: -Objective-C/instm/IOBluetoothL2CAPChannel/setDelegate:withConfiguration: -Objective-C/instm/NSRelationshipDescription/setDeleteRule: -Objective-C/instm/NSURLDownload/setDeletesFileUponFailure: -Objective-C/instm/FxImage/setDepth: -Objective-C/instm/NSWindow/setDepthLimit: -Objective-C/instm/DRBurnProgressPanel/setDescription: -Objective-C/instm/DREraseProgressPanel/setDescription: -Objective-C/instm/NSPointerFunctions/setDescriptionFunction: -Objective-C/instm/IOBluetoothPairingController/setDescriptionText: -Objective-C/instm/IOBluetoothDeviceSelectorController/setDescriptionText: -Objective-C/instm/IOBluetoothServiceBrowserController/setDescriptionText: -Objective-C/instm/NSAppleEventDescriptor/setDescriptor:forKeyword: -Objective-C/instm/CLLocationManager/setDesiredAccuracy: -C/func/-/setDesiredDomainState -Objective-C/instm/NSWorkspace/setDesktopImageURL:forScreen:options:error: -Objective-C/instm/PDFAnnotationLink/setDestination: -Objective-C/instm/NSNibConnector/setDestination: -Objective-C/instm/PDFActionGoTo/setDestination: -Objective-C/instm/PDFOutline/setDestination: -Objective-C/instm/NSURLDownload/setDestination:allowOverwrite: -Objective-C/instm/XGFileDownload/setDestination:allowOverwrite: -Objective-C/instm/NSRelationshipDescription/setDestinationEntity: -Objective-C/instm/NSEntityMapping/setDestinationEntityName: -Objective-C/instm/NSEntityMapping/setDestinationEntityVersionHash: -C++/instm/IOFramebuffer/setDetailedTimings -C++/instm/IOExtendedLBA/setDevice -Objective-C/instm/IOBluetoothDevicePair/setDevice: -C++/instm/IOATACommand/setDevice_Head -Objective-C/instm/QTCaptureDevice/setDeviceAttributes: -C++/instm/IOAudioDevice/setDeviceCanBeDefault -C++/instm/IOService/setDeviceMemory -C++/instm/IOAudioDevice/setDeviceName -C++/instm/IOAudioDevice/setDeviceShortName -Objective-C/instm/NSMutableDictionary/setDictionary: -Objective-C/instm/NSSavePanel/setDirectory: -Objective-C/instm/NSSavePanel/setDirectoryURL: -Objective-C/instm/NSScriptCommand/setDirectParameter: -Objective-C/clm/CATransaction/setDisableActions: -Objective-C/instm/NSURLCache/setDiskCapacity: -Objective-C/instm/IMKCandidates/setDismissesAutomatically: -Objective-C/instm/PDFView/setDisplayBox: -Objective-C/instm/SFCertificateView/setDisplayDetails: -Objective-C/instm/NSSpeechRecognizer/setDisplayedCommandsTitle: -Objective-C/instm/ABPeoplePickerView/setDisplayedProperty: -Objective-C/instm/NSProgressIndicator/setDisplayedWhenStopped: -C++/instm/IOFramebuffer/setDisplayMode -Objective-C/instm/PDFView/setDisplayMode: -Objective-C/instm/NSToolbar/setDisplayMode: -Objective-C/instm/ISyncClient/setDisplayName: -Objective-C/instm/PDFPage/setDisplaysAnnotations: -Objective-C/instm/PDFView/setDisplaysAsBook: -Objective-C/instm/IKCameraDeviceView/setDisplaysDownloadsDirectoryControl: -Objective-C/instm/IKScannerDeviceView/setDisplaysDownloadsDirectoryControl: -Objective-C/instm/NSTextView/setDisplaysLinkToolTips: -Objective-C/instm/IKDeviceBrowserView/setDisplaysLocalCameras: -Objective-C/instm/IKDeviceBrowserView/setDisplaysLocalScanners: -Objective-C/instm/IKDeviceBrowserView/setDisplaysNetworkCameras: -Objective-C/instm/IKDeviceBrowserView/setDisplaysNetworkScanners: -Objective-C/instm/PDFView/setDisplaysPageBreaks: -Objective-C/instm/IKCameraDeviceView/setDisplaysPostProcessApplicationControl: -Objective-C/instm/IKScannerDeviceView/setDisplaysPostProcessApplicationControl: -Objective-C/instm/QLPreviewPanel/setDisplayState: -Objective-C/instm/NSWindow/setDisplaysWhenScreenProfileChanges: -Objective-C/instm/SFCertificateView/setDisplayTrust: -Objective-C/instm/NSRuleEditor/setDisplayValuesKeyPath: -Objective-C/instm/CLLocationManager/setDistanceFilter: -Objective-C/instm/ABGroup/setDistributionIdentifier:forProperty:person: -Objective-C/instm/NSSplitView/setDividerStyle: -C++/instm/IOFWPhysicalAddressSpace/setDMACommand -C++/instm/IOATADevConfig/setDMACycleTime -C++/instm/IOATADevConfig/setDMAMode -C++/instm/IOATABusInfo/setDMAModes -C++/instm/IOATABusInfo/setDMAQueued -Objective-C/intfm/NSDockTilePlugIn/setDockTile: -Objective-C/instm/NSWindowController/setDocument: -Objective-C/instm/PDFView/setDocument: -Objective-C/instm/PDFDocument/setDocumentAttributes: -Objective-C/instm/NSXMLDocument/setDocumentContentKind: -Objective-C/instm/NSScrollView/setDocumentCursor: -Objective-C/instm/NSClipView/setDocumentCursor: -Objective-C/instm/NSWindowController/setDocumentEdited: -Objective-C/instm/NSWindow/setDocumentEdited: -C/tdef/-/setDocumentLocatorSAXFunc -Objective-C/instm/IKScannerDeviceView/setDocumentName: -Objective-C/instm/NSScrollView/setDocumentView: -Objective-C/instm/NSClipView/setDocumentView: -Objective-C/instm/NSDateFormatter/setDoesRelativeDateFormatting: -C/func/-/setdomainname -JavaScript/instm/InspectorBackend/setDOMStorageItem -Objective-C/instm/NSUserDefaults/setDouble:forKey: -Objective-C/instm/NSStatusItem/setDoubleAction: -Objective-C/instm/NSMatrix/setDoubleAction: -Objective-C/instm/NSBrowser/setDoubleAction: -Objective-C/instm/NSPathCell/setDoubleAction: -Objective-C/instm/NSPathControl/setDoubleAction: -Objective-C/instm/NSTableView/setDoubleAction: -Objective-C/instm/IKImageView/setDoubleClickOpensImageEditPanel: -Objective-C/instm/CALayer/setDoubleSided: -Objective-C/instm/NSProgressIndicator/setDoubleValue: -Objective-C/instm/IMAVControl/setDoubleValue: -Objective-C/instm/NSControl/setDoubleValue: -Objective-C/instm/NSCell/setDoubleValue: -Objective-C/instm/IKCameraDeviceView/setDownloadAllControlLabel: -Objective-C/instm/WebView/setDownloadDelegate: -Objective-C/instm/IKScannerDeviceView/setDownloadsDirectory: -Objective-C/instm/IKCameraDeviceView/setDownloadsDirectory: -Objective-C/instm/IKCameraDeviceView/setDownloadSelectedControlLabel: -Objective-C/instm/IKImageBrowserView/setDraggingDestinationDelegate: -Objective-C/instm/NSTableView/setDraggingDestinationFeedbackStyle: -Objective-C/instm/NSBrowser/setDraggingSourceOperationMask:forLocal: -Objective-C/instm/NSCollectionView/setDraggingSourceOperationMask:forLocal: -Objective-C/instm/NSPathControl/setDraggingSourceOperationMask:forLocal: -Objective-C/instm/NSTableView/setDraggingSourceOperationMask:forLocal: -JavaScript/instm/Clipboard/setDragImage -Objective-C/instm/NSClipView/setDrawsBackground: -Objective-C/instm/NSScrollView/setDrawsBackground: -Objective-C/instm/QCCompositionPickerView/setDrawsBackground: -Objective-C/instm/QCCompositionParameterView/setDrawsBackground: -Objective-C/instm/NSDatePicker/setDrawsBackground: -Objective-C/instm/NSDatePickerCell/setDrawsBackground: -Objective-C/instm/NSMatrix/setDrawsBackground: -Objective-C/instm/NSTextField/setDrawsBackground: -Objective-C/instm/NSTabView/setDrawsBackground: -Objective-C/instm/NSTextView/setDrawsBackground: -Objective-C/instm/WebView/setDrawsBackground: -Objective-C/instm/NSTextFieldCell/setDrawsBackground: -Objective-C/instm/NSText/setDrawsBackground: -Objective-C/instm/NSMatrix/setDrawsCellBackground: -Objective-C/instm/NSTableView/setDrawsGrid: -Objective-C/instm/NSLayoutManager/setDrawsOutsideLineFragment:forGlyphAtIndex: -Objective-C/instm/NSATSTypesetter/setDrawsOutsideLineFragment:forGlyphRange: -Objective-C/instm/NSTypesetter/setDrawsOutsideLineFragment:forGlyphRange: -Objective-C/instm/IKImageBrowserView/setDropIndex:dropOperation: -Objective-C/instm/NSOutlineView/setDropItem:dropChildIndex: -Objective-C/instm/NSTableView/setDropRow:dropOperation: -C/func/-/SetDSequenceAccuracy -C/func/-/SetDSequenceDataProc -C/func/-/SetDSequenceFlags -C/func/-/SetDSequenceMask -C/func/-/SetDSequenceMatrix -C/func/-/SetDSequenceMatte -C/func/-/SetDSequenceNonScheduledDisplayDirection -C/func/-/SetDSequenceNonScheduledDisplayTime -C/func/-/SetDSequenceSrcRect -C/func/-/SetDSequenceTimeCode -C/func/-/SetDSequenceTransferMode -Objective-C/instm/NSXMLDocument/setDTD: -Objective-C/instm/NSXMLDTDNode/setDTDKind: -Objective-C/instm/CalTask/setDueDate: -Objective-C/instm/NSAnimationContext/setDuration: -Objective-C/instm/NSAnimation/setDuration: -Objective-C/intfm/CAMediaTiming/setDuration: -Objective-C/instm/NSWindow/setDynamicDepthLimit: -Objective-C/instm/NSSecureTextFieldCell/setEchosBullets: -Objective-C/instm/CALayer/setEdgeAntialiasingMask: -Objective-C/instm/NSImageView/setEditable: -Objective-C/instm/AMWorkflowView/setEditable: -Objective-C/instm/NSTableColumn/setEditable: -Objective-C/instm/NSObjectController/setEditable: -Objective-C/instm/NSTextField/setEditable: -Objective-C/instm/NSRuleEditor/setEditable: -Objective-C/instm/NSTextView/setEditable: -Objective-C/instm/QTMovieView/setEditable: -Objective-C/instm/WebView/setEditable: -Objective-C/instm/NSCell/setEditable: -Objective-C/instm/NSText/setEditable: -Objective-C/instm/IKImageView/setEditable: -Objective-C/instm/SFCertificateView/setEditableTrust: -Objective-C/instm/WebView/setEditingDelegate: -C/func/-/setegid -Objective-C/instm/CalAlarm/setEmailAddress: -Objective-C/instm/CAEmitterCell/setEmissionLatitude: -Objective-C/instm/CAEmitterCell/setEmissionLongitude: -Objective-C/instm/CAEmitterCell/setEmissionRange: -Objective-C/instm/CAEmitterLayer/setEmitterCells: -Objective-C/instm/CAEmitterCell/setEmitterCells: -Objective-C/instm/CAEmitterLayer/setEmitterDepth: -Objective-C/instm/CAEmitterLayer/setEmitterMode: -Objective-C/instm/CAEmitterLayer/setEmitterPosition: -Objective-C/instm/CAEmitterLayer/setEmitterShape: -Objective-C/instm/CAEmitterLayer/setEmitterSize: -Objective-C/instm/CAEmitterLayer/setEmitterZPosition: -Objective-C/instm/CIFilter/setEnabled: -Objective-C/instm/SFAuthorizationView/setEnabled: -Objective-C/instm/NSToolbarItem/setEnabled: -Objective-C/instm/NSActionCell/setEnabled: -Objective-C/instm/NSFontManager/setEnabled: -Objective-C/instm/NSStatusItem/setEnabled: -Objective-C/instm/CAEmitterCell/setEnabled: -Objective-C/instm/QTCaptureConnection/setEnabled: -Objective-C/instm/IMAVControl/setEnabled: -Objective-C/instm/QTTrack/setEnabled: -Objective-C/instm/NSMenuItem/setEnabled: -Objective-C/instm/NSControl/setEnabled: -Objective-C/instm/NSFontPanel/setEnabled: -Objective-C/instm/SFAuthorizationPluginView/setEnabled: -Objective-C/instm/NSCell/setEnabled: -Objective-C/instm/ISyncClient/setEnabled:forEntityNames: -Objective-C/instm/NSSegmentedCell/setEnabled:forSegment: -Objective-C/instm/NSSegmentedControl/setEnabled:forSegment: -Objective-C/instm/NSTextView/setEnabledTextCheckingTypes: -JavaScript/instm/Range/setEnd -JavaScript/instm/Range/setEndAfter -JavaScript/instm/Range/setEndBefore -Objective-C/instm/CalRecurrenceEnd/setEndDate: -Objective-C/instm/CalEvent/setEndDate: -Objective-C/instm/PDFAnnotationLine/setEndLineStyle: -Objective-C/instm/PDFAnnotationLine/setEndPoint: -Objective-C/instm/CAGradientLayer/setEndPoint: -Objective-C/instm/CATransition/setEndProgress: -Objective-C/instm/NSRangeSpecifier/setEndSpecifier: -Objective-C/instm/NSWhoseSpecifier/setEndSubelementIdentifier: -Objective-C/instm/NSWhoseSpecifier/setEndSubelementIndex: -Objective-C/instm/NSManagedObjectModel/setEntities: -Objective-C/instm/NSManagedObjectModel/setEntities:forConfiguration: -Objective-C/instm/NSFetchRequest/setEntity: -Objective-C/instm/NSMappingModel/setEntityMappings: -Objective-C/instm/NSEntityMapping/setEntityMigrationPolicyClassName: -Objective-C/instm/NSObjectController/setEntityName: -Objective-C/instm/NSCell/setEntryType: -Objective-C/instm/NSForm/setEntryWidth: -C/func/-/setenv -Objective-C/instm/NSTask/setEnvironment: -C/func/-/SetEOF -Objective-C/instm/NSDateComponents/setEra: -Objective-C/instm/QCView/setEraseColor: -Objective-C/instm/DRErase(PropertyConvenienceMethods)/setEraseType: -Objective-C/instm/NSDateFormatter/setEraSymbols: -C/func/-/seteuid -Objective-C/instm/NSScriptObjectSpecifier/setEvaluationErrorNumber: -Objective-C/instm/OBEXSession/setEventCallback: -Objective-C/instm/QCView/setEventForwardingMask: -Objective-C/instm/NSAppleEventManager/setEventHandler:andSelector:forEventClass:andEventID: -Objective-C/instm/OBEXSession/setEventRefCon: -Objective-C/instm/OBEXSession/setEventSelector:target:refCon: -Objective-C/instm/NSCache/setEvictsObjectsWithDiscardedContent: -Objective-C/instm/WebScriptObject/setException: -Objective-C/instm/NSExceptionHandler/setExceptionHandlingMask: -Objective-C/instm/NSExceptionHandler/setExceptionHangingMask: -Objective-C/instm/NSWindow/setExcludedFromWindowsMenu: -Objective-C/instm/NSDictionaryController/setExcludedKeys: -C++/instm/IOFWAddressSpace/setExclusive -Objective-C/instm/DRFSObject/setExplicitFilesystemMask: -Objective-C/instm/NSNumberFormatter/setExponentSymbol: -Objective-C/instm/NSExpressionDescription/setExpression: -Objective-C/instm/NSExpressionDescription/setExpressionResultType: -C++/instm/IOATABusInfo/setExtendedLBA -C++/instm/IOExtendedLBA/setExtendedLBA -Objective-C/instm/NSSavePanel/setExtensionHidden: -C++/instm/IONetworkInterface/setExtraFlags -Objective-C/instm/NSLayoutManager/setExtraLineFragmentRect:usedRect:textContainer: -C/func/-/SetFallbackUnicodeToText -C/func/-/SetFallbackUnicodeToTextRun -C++/instm/IOAudioDevice/setFamilyManagePower -Objective-C/instm/WebPreferences/setFantasyFontFamily: -C++/instm/IOATACommand/setFeatures -C++/instm/IOExtendedLBA/setFeatures16 -Objective-C/instm/NSFetchRequest/setFetchBatchSize: -Objective-C/instm/NSFetchRequest/setFetchLimit: -Objective-C/instm/NSFetchRequest/setFetchOffset: -Objective-C/instm/NSObjectController/setFetchPredicate: -Objective-C/instm/NSFetchedPropertyDescription/setFetchRequest: -Objective-C/instm/NSManagedObjectModel/setFetchRequestTemplate:forName: -Objective-C/instm/FxImage/setField: -Objective-C/instm/NSTextView/setFieldEditor: -Objective-C/instm/NSText/setFieldEditor: -Objective-C/instm/PDFAnnotationTextWidget/setFieldName: -Objective-C/instm/PDFAnnotationChoiceWidget/setFieldName: -Objective-C/instm/PDFAnnotationButtonWidget/setFieldName: -Objective-C/instm/FxImage/setFieldOrder: -Objective-C/instm/PDFActionResetForm/setFields: -Objective-C/instm/PDFActionResetForm/setFieldsIncludedAreCleared: -Objective-C/instm/NSFileWrapper/setFileAttributes: -Objective-C/instm/NSDocument/setFileModificationDate: -Objective-C/instm/NSDocument/setFileName: -Objective-C/instm/NSFileWrapper/setFilename: -Objective-C/instm/NSDocument/setFileType: -Objective-C/instm/NSDocument/setFileURL: -Objective-C/instm/NSTextAttachment/setFileWrapper: -Objective-C/instm/NSColor/setFill -JavaScript/instm/CanvasRenderingContext2D/setFillColor -Objective-C/instm/NSBox/setFillColor: -Objective-C/instm/QTCaptureView/setFillColor: -Objective-C/instm/QTMovieView/setFillColor: -Objective-C/instm/CAShapeLayer/setFillColor: -Objective-C/intfm/CAMediaTiming/setFillMode: -Objective-C/instm/CAShapeLayer/setFillRule: -Objective-C/instm/CATransition/setFilter: -Objective-C/instm/NSArrayController/setFilterPredicate: -JavaScript/instm/SVGFilterElement/setFilterRes -Objective-C/instm/ISyncClient/setFilters: -Objective-C/instm/CALayer/setFilters: -Objective-C/instm/NSTimer/setFireDate: -Objective-C/instm/NSPreferencePane/setFirstKeyView: -Objective-C/instm/NSMutableParagraphStyle/setFirstLineHeadIndent: -C++/instm/OSOrderedSet/setFirstObject -Objective-C/instm/NSCalendar/setFirstWeekday: -Objective-C/instm/WebPreferences/setFixedFontFamily: -C++/instm/IONetworkInterface/setFlags -C++/instm/IOATACommand/setFlags -C++/instm/IOFWAsyncStreamListener/setFlags -Objective-C/instm/SFAuthorizationView/setFlags: -Objective-C/instm/NSBezierPath/setFlatness: -Objective-C/instm/NSImage/setFlipped: -Objective-C/instm/NSUserDefaults/setFloat:forKey: -Objective-C/instm/NSPanel/setFloatingPanel: -Objective-C/instm/NSActionCell/setFloatingPointFormat:left:right: -Objective-C/instm/NSControl/setFloatingPointFormat:left:right: -Objective-C/instm/NSCell/setFloatingPointFormat:left:right: -JavaScript/instm/CSSPrimitiveValue/setFloatValue -Objective-C/instm/IMAVControl/setFloatValue: -Objective-C/instm/NSControl/setFloatValue: -Objective-C/instm/NSCell/setFloatValue: -Objective-C/instm/NSScroller/setFloatValue:knobProportion: -Objective-C/intfm/FxParameterSettingAPI/setFloatValue:toParm:atTime: -Objective-C/instm/NSTableView/setFocusedColumn: -Objective-C/instm/NSView/setFocusRingType: -Objective-C/instm/NSCell/setFocusRingType: -Objective-C/instm/NSGraphicsContext/setFocusStack: -Objective-C/instm/NSActionCell/setFont: -Objective-C/instm/PDFAnnotationTextWidget/setFont: -Objective-C/instm/PDFAnnotationButtonWidget/setFont: -Objective-C/instm/PDFAnnotationChoiceWidget/setFont: -Objective-C/instm/PDFAnnotationFreeText/setFont: -Objective-C/instm/NSMenuView/setFont: -Objective-C/instm/NSButtonCell/setFont: -Objective-C/instm/NSTextStorage/setFont: -Objective-C/instm/NSControl/setFont: -Objective-C/instm/NSTabView/setFont: -Objective-C/instm/NSText/setFont: -Objective-C/instm/NSMenu/setFont: -Objective-C/instm/NSCell/setFont: -Objective-C/instm/CATextLayer/setFont: -Objective-C/instm/NSText/setFont:range: -Objective-C/instm/PDFAnnotationFreeText/setFontColor: -Objective-C/instm/PDFAnnotationChoiceWidget/setFontColor: -Objective-C/instm/PDFAnnotationButtonWidget/setFontColor: -Objective-C/instm/PDFAnnotationTextWidget/setFontColor: -Objective-C/clm/NSFontManager/setFontManagerFactory: -Objective-C/instm/NSFontManager/setFontMenu: -Objective-C/clm/NSFontManager/setFontPanelFactory: -Objective-C/instm/CATextLayer/setFontSize: -Objective-C/instm/NSTextStorage/setForegroundColor: -Objective-C/instm/CATextLayer/setForegroundColor: -Objective-C/instm/IKImageBrowserView/setForegroundLayer: -Objective-C/instm/DRMSFFormatter/setFormat: -Objective-C/instm/NSNumberFormatter/setFormat: -Objective-C/instm/ISyncClient/setFormatsRelationships: -Objective-C/instm/NSControl/setFormatter: -Objective-C/instm/NSCell/setFormatter: -Objective-C/instm/NSDateFormatter/setFormatterBehavior: -Objective-C/instm/NSNumberFormatter/setFormatterBehavior: -Objective-C/instm/NSRuleEditor/setFormattingDictionary: -Objective-C/instm/NSRuleEditor/setFormattingStringsFilename: -Objective-C/instm/NSNumberFormatter/setFormatWidth: -C/func/-/SetFPos -C++/instm/IORangeAllocator/setFragmentCapacityIncrement -Objective-C/instm/NSView/setFrame: -Objective-C/instm/CALayer/setFrame: -Objective-C/instm/NSWindow/setFrame:display: -Objective-C/instm/NSWindow/setFrame:display:animate: -Objective-C/instm/NSWindow/setFrameAutosaveName: -Objective-C/instm/NSView/setFrameCenterRotation: -Objective-C/instm/NSBox/setFrameFromContentFrame: -Objective-C/instm/NSWindow/setFrameFromString: -Objective-C/instm/WebView/setFrameLoadDelegate: -Objective-C/instm/NSWindow/setFrameOrigin: -Objective-C/instm/NSView/setFrameOrigin: -Objective-C/instm/NSAnimation/setFrameRate: -Objective-C/instm/NSView/setFrameRotation: -Objective-C/instm/NSForm/setFrameSize: -Objective-C/instm/NSView/setFrameSize: -Objective-C/instm/NSWindow/setFrameTopLeftPoint: -Objective-C/instm/NSWindow/setFrameUsingName: -Objective-C/instm/NSWindow/setFrameUsingName:force: -Objective-C/instm/CABasicAnimation/setFromValue: -C/func/-/SetFrontProcess -C/func/-/SetFrontProcessWithOptions -C/func/-/setfsent -Objective-C/instm/NSOpenGLContext/setFullScreen -C++/instm/IOFramebuffer/setGammaTable -Objective-C/instm/IOBluetoothHandsFreeGateway/setGatewaySupportedFeatures: -Objective-C/instm/NSDateFormatter/setGeneratesCalendarDates: -Objective-C/instm/NSNumberFormatter/setGeneratesDecimalNumbers: -Objective-C/instm/CALayer/setGeometryFlipped: -C/func/-/SetGestaltValue -C/func/-/setgid -Objective-C/instm/NSLayoutManager/setGlyphGenerator: -Objective-C/instm/NSButtonCell/setGradientType: -Objective-C/instm/NSTextView/setGrammarCheckingEnabled: -Objective-C/clm/NSGraphicsContext/setGraphicsState: -Objective-C/instm/PDFView/setGreekingThreshold: -Objective-C/instm/CAEmitterCell/setGreenRange: -Objective-C/instm/CAEmitterCell/setGreenSpeed: -Objective-C/instm/NSDateFormatter/setGregorianStartDate: -C/func/-/setgrent -Objective-C/instm/NSTableView/setGridColor: -Objective-C/instm/NSTableView/setGridStyleMask: -Objective-C/instm/ABPeoplePickerView/setGroupDoubleAction: -C/func/-/setgroupent -Objective-C/instm/NSMetadataQuery/setGroupingAttributes: -Objective-C/instm/NSNumberFormatter/setGroupingSeparator: -Objective-C/instm/NSNumberFormatter/setGroupingSize: -Objective-C/instm/WebView/setGroupName: -C/func/-/setgroups -Objective-C/instm/NSUndoManager/setGroupsByEvent: -Objective-C/instm/ISyncSessionDriver/setHandlesSyncAlerts: -Objective-C/instm/NSATSTypesetter/setHardInvalidation:forGlyphRange: -Objective-C/instm/NSTypesetter/setHardInvalidation:forGlyphRange: -C++/instm/IOEthernetController/setHardwareAddress -C++/instm/IONetworkController/setHardwareAddress -Objective-C/instm/IKScannerDeviceView/setHasDisplayModeAdvanced: -Objective-C/instm/IKCameraDeviceView/setHasDisplayModeIcon: -Objective-C/instm/IKScannerDeviceView/setHasDisplayModeSimple: -Objective-C/instm/IKCameraDeviceView/setHasDisplayModeTable: -Objective-C/instm/NSPointerFunctions/setHashFunction: -Objective-C/instm/NSScrollView/setHasHorizontalRuler: -Objective-C/instm/NSScrollView/setHasHorizontalScroller: -Objective-C/instm/NSBrowser/setHasHorizontalScroller: -Objective-C/instm/IKImageView/setHasHorizontalScroller: -Objective-C/instm/NSWindow/setHasShadow: -Objective-C/instm/NSNumberFormatter/setHasThousandSeparators: -Objective-C/instm/NSPersistentDocument/setHasUndoManager: -Objective-C/instm/NSDocument/setHasUndoManager: -Objective-C/instm/NSScrollView/setHasVerticalRuler: -Objective-C/instm/NSScrollView/setHasVerticalScroller: -Objective-C/instm/NSComboBox/setHasVerticalScroller: -Objective-C/instm/NSComboBoxCell/setHasVerticalScroller: -Objective-C/instm/IKImageView/setHasVerticalScroller: -C++/instm/IOSCSIParallelInterfaceController/SetHBAProperty -C++/instm/IOFWCommand/setHead -Objective-C/instm/NSTableColumn/setHeaderCell: -Objective-C/instm/NSMutableParagraphStyle/setHeaderLevel: -Objective-C/instm/NSTableColumn/setHeaderToolTip: -Objective-C/instm/NSTableView/setHeaderView: -Objective-C/instm/NSMutableParagraphStyle/setHeadIndent: -Objective-C/instm/FxImage/setHeight: -Objective-C/instm/NSTextContainer/setHeightTracksTextView: -Objective-C/instm/SFCertificatePanel/setHelpAnchor: -Objective-C/instm/NSAlert/setHelpAnchor: -Objective-C/instm/NSPrintPanel/setHelpAnchor: -Objective-C/instm/SFChooseIdentityPanel/setHelpAnchor: -Objective-C/instm/NSApplication/setHelpMenu: -Objective-C/instm/NSTableColumn/setHidden: -Objective-C/instm/NSMenuItem/setHidden: -Objective-C/instm/NSView/setHidden: -Objective-C/instm/CALayer/setHidden: -Objective-C/clm/NSCursor/setHiddenUntilMouseMoves: -Objective-C/instm/NSTextTable/setHidesEmptyCells: -Objective-C/instm/NSWindow/setHidesOnDeactivate: -Objective-C/instm/PDFAnnotationLink/setHighlighted: -Objective-C/instm/PDFAnnotationButtonWidget/setHighlighted: -Objective-C/instm/NSCell/setHighlighted: -Objective-C/instm/NSMenuView/setHighlightedItemIndex: -Objective-C/instm/PDFView/setHighlightedSelections: -Objective-C/instm/NSTableView/setHighlightedTableColumn: -Objective-C/instm/NSStatusItem/setHighlightMode: -Objective-C/instm/NSButtonCell/setHighlightsBy: -C/func/-/SetHintValue -Objective-C/intfm/FxOptionalParameterSettingAPI/setHistogramBlackIn:BlackOut:WhiteIn:WhiteOut:Gamma:forChannel:fromParm:atTime: -Objective-C/instm/WebHistory/setHistoryAgeInDaysLimit: -Objective-C/instm/WebHistory/setHistoryItemLimit: -Objective-C/instm/NSMenuView/setHorizontal: -Objective-C/instm/PDFBorder/setHorizontalCornerRadius: -Objective-C/instm/NSMenuView/setHorizontalEdgePadding: -Objective-C/instm/NSScrollView/setHorizontalLineScroll: -Objective-C/instm/NSPrintInfo/setHorizontallyCentered: -Objective-C/instm/NSText/setHorizontallyResizable: -Objective-C/instm/NSScrollView/setHorizontalPageScroll: -Objective-C/instm/NSPrintInfo/setHorizontalPagination: -Objective-C/instm/NSScrollView/setHorizontalRulerView: -Objective-C/instm/NSScrollView/setHorizontalScroller: -Objective-C/clm/NSHost/setHostCacheEnabled: -C/func/-/sethostent -C/func/-/sethostid -C/func/-/sethostname -Objective-C/instm/WebView/setHostWindow: -Objective-C/instm/QTMovieView/setHotSpotButtonVisible: -Objective-C/instm/NSDateComponents/setHour: -Objective-C/instm/NSMutableURLRequest/setHTTPBody: -Objective-C/instm/NSMutableURLRequest/setHTTPBodyStream: -Objective-C/instm/NSMutableURLRequest/setHTTPMethod: -Objective-C/instm/NSMutableURLRequest/setHTTPShouldHandleCookies: -C++/instm/IOUSBController/SetHubAddress -C++/instm/IOUSBDevice/SetHubParent -Objective-C/instm/NSMutableParagraphStyle/setHyphenationFactor: -Objective-C/instm/NSATSTypesetter/setHyphenationFactor: -Objective-C/instm/NSLayoutManager/setHyphenationFactor: -Objective-C/instm/NSTypesetter/setHyphenationFactor: -Objective-C/instm/NSAlert/setIcon: -Objective-C/instm/NSWorkspace/setIcon:forFile:options: -Objective-C/instm/IOBluetoothObjectPushUIController/setIconImage: -Objective-C/instm/IKCameraDeviceView/setIconSize: -Objective-C/instm/PDFAnnotationText/setIconType: -Objective-C/instm/NSTableColumn/setIdentifier: -Objective-C/instm/NSPersistentStore/setIdentifier: -Objective-C/instm/NSTabViewItem/setIdentifier: -C/func/-/SetIdentityMatrix -C++/instm/IOAudioDevice/setIdleAudioSleepTime -C++/instm/IOService/setIdleTimerPeriod -Objective-C/instm/QTMovie/setIdling: -Objective-C/instm/NSSpellChecker/setIgnoredWords:inSpellDocumentWithTag: -Objective-C/clm/NSColor/setIgnoresAlpha: -Objective-C/instm/NSWindow/setIgnoresMouseEvents: -Objective-C/instm/NSControl/setIgnoresMultiClick: -Objective-C/instm/NSSlider/setImage: -Objective-C/instm/NSRulerMarker/setImage: -Objective-C/instm/NSToolbarItem/setImage: -Objective-C/instm/NSPathComponentCell/setImage: -Objective-C/instm/CIImageAccumulator/setImage: -Objective-C/instm/NSImageView/setImage: -Objective-C/instm/NSActionCell/setImage: -Objective-C/instm/NSButton/setImage: -Objective-C/instm/NSStatusItem/setImage: -Objective-C/instm/NSBrowserCell/setImage: -Objective-C/instm/NSPopUpButton/setImage: -Objective-C/instm/NSPopUpButtonCell/setImage: -Objective-C/instm/NSMenuItem/setImage: -Objective-C/instm/NSLevelIndicatorCell/setImage: -Objective-C/instm/NSCell/setImage: -Objective-C/instm/CIImageAccumulator/setImage:dirtyRect: -Objective-C/instm/NSSegmentedControl/setImage:forSegment: -Objective-C/instm/NSSegmentedCell/setImage:forSegment: -Objective-C/intfm/IKImageEditPanelDataSource/setImage:imageProperties: -Objective-C/instm/IKImageView/setImage:imageProperties: -Objective-C/instm/NSImageView/setImageAlignment: -Objective-C/instm/NSImageCell/setImageAlignment: -Objective-C/instm/IKImageView/setImageCorrection: -Objective-C/instm/ABPerson/setImageData: -C/func/-/SetImageDescriptionCTable -Objective-C/instm/NSButtonCell/setImageDimsWhenDisabled: -Objective-C/instm/NSImageView/setImageFrameStyle: -Objective-C/instm/NSImageCell/setImageFrameStyle: -Objective-C/instm/NSGraphicsContext/setImageInterpolation: -Objective-C/instm/NSRulerMarker/setImageOrigin: -Objective-C/instm/ISyncClient/setImagePath: -Objective-C/instm/NSButton/setImagePosition: -Objective-C/instm/NSButtonCell/setImagePosition: -Objective-C/instm/NSImageView/setImageScaling: -Objective-C/instm/NSButtonCell/setImageScaling: -Objective-C/instm/NSImageCell/setImageScaling: -Objective-C/instm/NSSegmentedCell/setImageScaling:forSegment: -Objective-C/instm/NSSegmentedControl/setImageScaling:forSegment: -Objective-C/instm/FxImage/setImageType: -Objective-C/instm/IKImageView/setImageWithURL: -Objective-C/instm/IKImageView/setImageZoomFactor:centerPoint: -Objective-C/instm/NSTextField/setImportsGraphics: -Objective-C/instm/NSTextView/setImportsGraphics: -Objective-C/instm/NSText/setImportsGraphics: -Objective-C/instm/NSCell/setImportsGraphics: -Objective-C/instm/NSDictionaryController/setIncludedKeys: -Objective-C/instm/NSFetchRequest/setIncludesPendingChanges: -Objective-C/instm/NSFetchRequest/setIncludesPropertyValues: -Objective-C/instm/NSFetchRequest/setIncludesSubentities: -Objective-C/instm/NSFont/setInContext: -Objective-C/instm/NSStepper/setIncrement: -Objective-C/instm/NSStepperCell/setIncrement: -Objective-C/instm/NSMenuItem/setIndentationLevel: -Objective-C/instm/NSOutlineView/setIndentationMarkerFollowsCell: -Objective-C/instm/NSOutlineView/setIndentationPerLevel: -Objective-C/instm/NSConnection/setIndependentConversationQueueing: -Objective-C/instm/NSProgressIndicator/setIndeterminate: -Objective-C/instm/NSIndexSpecifier/setIndex: -Objective-C/instm/NSPropertyDescription/setIndexed: -Objective-C/instm/NSPropertyDescription/setIndexedBySpotlight: -Objective-C/instm/NSTableView/setIndicatorImage:inTableColumn: -C/tdef/-/SetIndImageProfileProcPtr -Objective-C/instm/NSAlert/setInformativeText: -Objective-C/instm/QLPreviewPanel/setInFullScreenMode: -Objective-C/instm/NSTabViewItem/setInitialFirstResponder: -Objective-C/instm/NSWindow/setInitialFirstResponder: -Objective-C/instm/NSDictionaryController/setInitialKey: -Objective-C/instm/NSPreferencePane/setInitialKeyView: -Objective-C/instm/NSDictionaryController/setInitialValue: -Objective-C/instm/NSUserDefaultsController/setInitialValues: -JavaScript/instm/InspectorBackend/setInjectedScriptSource -Objective-C/instm/AMWorkflow/setInput: -Objective-C/instm/IKPictureTaker/setInputImage: -C++/instm/IOStream/setInputPort -C++/instm/IOAudioEngine/setInputSampleOffset -Objective-C/intfm/QCCompositionRenderer/setInputValuesWithPropertyList: -Objective-C/instm/IOBluetoothDeviceInquiry/setInquiryLength: -Objective-C/instm/NSPositionalSpecifier/setInsertionClassDescription: -Objective-C/instm/NSTextView/setInsertionPointColor: -Objective-C/instm/CAReplicatorLayer/setInstanceAlphaOffset: -Objective-C/instm/CAReplicatorLayer/setInstanceBlueOffset: -Objective-C/instm/CAReplicatorLayer/setInstanceColor: -Objective-C/instm/CAReplicatorLayer/setInstanceCount: -Objective-C/instm/CAReplicatorLayer/setInstanceDelay: -Objective-C/instm/CAReplicatorLayer/setInstanceGreenOffset: -Objective-C/instm/CAReplicatorLayer/setInstanceRedOffset: -Objective-C/instm/CAReplicatorLayer/setInstanceTransform: -Objective-C/intfm/NSGlyphStorage/setIntAttribute:value:forGlyphAtIndex: -Objective-C/instm/NSLayoutManager/setIntAttribute:value:forGlyphAtIndex: -Objective-C/instm/NSUserDefaults/setInteger:forKey: -Objective-C/instm/IMAVControl/setIntegerValue: -Objective-C/instm/NSControl/setIntegerValue: -Objective-C/instm/NSCell/setIntegerValue: -Objective-C/instm/NSMatrix/setIntercellSpacing: -Objective-C/instm/NSComboBox/setIntercellSpacing: -Objective-C/instm/NSComboBoxCell/setIntercellSpacing: -Objective-C/instm/IKImageBrowserView/setIntercellSpacing: -Objective-C/instm/NSTableView/setIntercellSpacing: -C++/instm/IONetworkInterface/setInterfaceState -Objective-C/instm/NSResponder/setInterfaceStyle: -C++/instm/IONetworkInterface/setInterfaceType -Objective-C/instm/PDFAnnotationCircle/setInteriorColor: -Objective-C/instm/PDFAnnotationSquare/setInteriorColor: -Objective-C/instm/PDFAnnotationLine/setInteriorColor: -Objective-C/instm/NSForm/setInterlineSpacing: -Objective-C/instm/NSNumberFormatter/setInternationalCurrencySymbol: -C++/instm/IOFramebuffer/setInterruptState -JavaScript/instm/DOMWindow/setInterval -JavaScript/instm/WorkerContext/setInterval -Objective-C/instm/IMAVControl/setIntValue: -Objective-C/instm/NSControl/setIntValue: -Objective-C/instm/NSCell/setIntValue: -Objective-C/intfm/FxParameterSettingAPI/setIntValue:toParm:atTime: -C/func/-/setinvalidrune -Objective-C/instm/NSRelationshipDescription/setInverseRelationship: -C++/instm/IOPCIDevice/setIOEnable -C/func/-/setiopolicy_np -Objective-C/instm/CalEvent/setIsAllDay: -Objective-C/instm/CalTask/setIsCompleted: -Objective-C/instm/CalCalendar/setIsEditable: -Objective-C/instm/NSPointerFunctions/setIsEqualFunction: -Objective-C/instm/PDFAnnotationChoiceWidget/setIsListChoice: -Objective-C/instm/NSWindow/setIsMiniaturized: -Objective-C/instm/PDFAnnotationPopup/setIsOpen: -Objective-C/instm/PDFOutline/setIsOpen: -Objective-C/instm/NSSplitView/setIsPaneSplitter: -Objective-C/instm/FxImage/setIsPremultiplied: -Objective-C/instm/NSWindow/setIsVisible: -Objective-C/instm/NSWindow/setIsZoomed: -JavaScript/instm/Storage/setItem -Objective-C/instm/NSComboBox/setItemHeight: -Objective-C/instm/NSComboBoxCell/setItemHeight: -Objective-C/instm/NSCollectionView/setItemPrototype: -C/func/-/setitimer -Objective-C/instm/WebPreferences/setJavaEnabled: -Objective-C/instm/WebPreferences/setJavaScriptCanOpenWindowsAutomatically: -Objective-C/instm/WebPreferences/setJavaScriptEnabled: -C/func/-/setjmp -Objective-C/instm/NSPrintInfo/setJobDisposition: -Objective-C/instm/XGController/setJobsPredicateString: -Objective-C/instm/NSPrintOperation/setJobStyleHint: -Objective-C/instm/NSPrintPanel/setJobStyleHint: -Objective-C/instm/NSPrintOperation/setJobTitle: -C/func/-/setkey -Objective-C/instm/NSScriptObjectSpecifier/setKey: -Objective-C/instm/NSObject/setKey: -Objective-C/instm/NSView/setKeyboardFocusRingNeedsDisplayInRect: -Objective-C/instm/NSTextInputContext/setKeyboardInputSources: -Objective-C/instm/NSMatrix/setKeyCell: -Objective-C/instm/NSButton/setKeyEquivalent: -Objective-C/instm/NSButtonCell/setKeyEquivalent: -Objective-C/instm/NSMenuItem/setKeyEquivalent: -Objective-C/instm/NSButtonCell/setKeyEquivalentFont: -Objective-C/instm/NSButtonCell/setKeyEquivalentFont:size: -Objective-C/instm/NSButton/setKeyEquivalentModifierMask: -Objective-C/instm/NSButtonCell/setKeyEquivalentModifierMask: -Objective-C/instm/NSMenuItem/setKeyEquivalentModifierMask: -Objective-C/instm/CAPropertyAnimation/setKeyPath: -Objective-C/clm/NSObject/setKeys:triggerChangeNotificationsForDependentKey: -Objective-C/instm/CAKeyframeAnimation/setKeyTimes: -Objective-C/instm/NSScroller/setKnobProportion: -Objective-C/instm/NSSlider/setKnobThickness: -Objective-C/instm/NSSliderCell/setKnobThickness: -Objective-C/instm/NSToolbarItem/setLabel: -Objective-C/instm/NSNibConnector/setLabel: -Objective-C/instm/PDFOutline/setLabel: -Objective-C/instm/NSTabViewItem/setLabel: -Objective-C/instm/NSSegmentedCell/setLabel:forSegment: -Objective-C/instm/NSSegmentedControl/setLabel:forSegment: -Objective-C/instm/PDFThumbnailView/setLabelFont: -Objective-C/instm/NSSpellChecker/setLanguage: -Objective-C/instm/NSBrowser/setLastColumn: -Objective-C/instm/NSDocument/setLastComponentOfFileName: -Objective-C/instm/NSPreferencePane/setLastKeyView: -C++/instm/OSOrderedSet/setLastObject -Objective-C/instm/SBApplication/setLaunchFlags: -Objective-C/instm/NSTask/setLaunchPath: -Objective-C/instm/CARenderer/setLayer: -Objective-C/instm/NSView/setLayer: -Objective-C/instm/NSView/setLayerContentsPlacement: -Objective-C/instm/NSView/setLayerContentsRedrawPolicy: -Objective-C/instm/NSTextTable/setLayoutAlgorithm: -Objective-C/instm/NSTextContainer/setLayoutManager: -Objective-C/instm/CALayer/setLayoutManager: -Objective-C/instm/NSLayoutManager/setLayoutRect:forTextBlock:glyphRange: -C++/instm/IOATACommand/setLBA28 -C++/instm/IOExtendedLBA/setLBAHigh16 -C++/instm/IOExtendedLBA/setLBALow16 -C++/instm/IOExtendedLBA/setLBAMid16 -C/func/-/setlcid -Objective-C/instm/NSDrawer/setLeadingOffset: -Objective-C/instm/NSBrowserCell/setLeaf: -Objective-C/instm/NSTreeController/setLeafKeyPath: -Objective-C/instm/NSPrintInfo/setLeftMargin: -Objective-C/instm/NSMutableData/setLength: -Objective-C/instm/NSStatusItem/setLength: -Objective-C/instm/NSDateFormatter/setLenient: -Objective-C/instm/NSNumberFormatter/setLenient: -Objective-C/instm/NSWindow/setLevel: -Objective-C/instm/NSLevelIndicatorCell/setLevelIndicatorStyle: -Objective-C/instm/CATiledLayer/setLevelsOfDetail: -Objective-C/instm/CATiledLayer/setLevelsOfDetailBias: -Objective-C/instm/NSUndoManager/setLevelsOfUndo: -Objective-C/instm/CAEmitterCell/setLifetime: -Objective-C/instm/CAEmitterLayer/setLifetime: -Objective-C/instm/CAEmitterCell/setLifetimeRange: -C++/instm/IOAudioLevelControl/setLinearScale -Objective-C/instm/NSMutableParagraphStyle/setLineBreakMode: -Objective-C/instm/NSCell/setLineBreakMode: -C/func/-/setlinebuf -JavaScript/instm/CanvasRenderingContext2D/setLineCap -Objective-C/instm/CAShapeLayer/setLineCap: -Objective-C/instm/NSBezierPath/setLineCapStyle: -Objective-C/instm/NSBezierPath/setLineDash:count:phase: -Objective-C/instm/CAShapeLayer/setLineDashPattern: -Objective-C/instm/CAShapeLayer/setLineDashPhase: -Objective-C/instm/NSTextContainer/setLineFragmentPadding: -Objective-C/instm/NSATSTypesetter/setLineFragmentPadding: -Objective-C/instm/NSTypesetter/setLineFragmentPadding: -Objective-C/instm/NSLayoutManager/setLineFragmentRect:forGlyphRange:usedRect: -Objective-C/instm/NSATSTypesetter/setLineFragmentRect:forGlyphRange:usedRect:baselineOffset: -Objective-C/instm/NSTypesetter/setLineFragmentRect:forGlyphRange:usedRect:baselineOffset: -Objective-C/instm/NSMutableParagraphStyle/setLineHeightMultiple: -JavaScript/instm/CanvasRenderingContext2D/setLineJoin -Objective-C/instm/CAShapeLayer/setLineJoin: -Objective-C/instm/NSBezierPath/setLineJoinStyle: -Objective-C/instm/NSScrollView/setLineScroll: -Objective-C/instm/NSMutableParagraphStyle/setLineSpacing: -JavaScript/instm/CanvasRenderingContext2D/setLineWidth -Objective-C/instm/PDFBorder/setLineWidth: -Objective-C/instm/NSBezierPath/setLineWidth: -Objective-C/instm/CAShapeLayer/setLineWidth: -C++/instm/IONetworkController/setLinkStatus -Objective-C/instm/NSTextView/setLinkTextAttributes: -C++/instm/IOFWAsyncStreamListener/setListenerHandler -Objective-C/instm/NSSpeechRecognizer/setListensInForegroundOnly: -Objective-C/instm/NSBrowserCell/setLoaded: -Objective-C/instm/WebPreferences/setLoadsImagesAutomatically: -C/func/-/setlocale -Objective-C/instm/NSDatePicker/setLocale: -Objective-C/instm/NSDateFormatter/setLocale: -Objective-C/instm/NSDatePickerCell/setLocale: -Objective-C/instm/NSCalendar/setLocale: -Objective-C/instm/NSScanner/setLocale: -Objective-C/instm/NSNumberFormatter/setLocale: -Objective-C/instm/NSManagedObjectModel/setLocalizationDictionary: -Objective-C/instm/NSObject/setLocalizedKey: -Objective-C/instm/NSDictionaryController/setLocalizedKeyDictionary: -Objective-C/instm/NSDictionaryController/setLocalizedKeyTable: -Objective-C/instm/NSNumberFormatter/setLocalizesFormat: -C++/instm/IORegistryEntry/setLocation -Objective-C/instm/CalEvent/setLocation: -Objective-C/instm/NSLayoutManager/setLocation:forStartOfGlyphRange: -Objective-C/instm/NSATSTypesetter/setLocation:withAdvancements:forStartOfGlyphRange: -Objective-C/instm/NSTypesetter/setLocation:withAdvancements:forStartOfGlyphRange: -Objective-C/instm/CAGradientLayer/setLocations: -Objective-C/instm/NSLayoutManager/setLocations:startingGlyphIndexes:count:forGlyphRange: -Objective-C/instm/CLLocationManager/setLocationServicesEnabled: -C/func/-/setlogin -C/func/-/setlogmask -Objective-C/instm/NSDateFormatter/setLongEraSymbols: -Objective-C/instm/NSSound/setLoops: -Objective-C/instm/CAEmitterCell/setMagnificationFilter: -Objective-C/instm/CALayer/setMagnificationFilter: -Objective-C/instm/NSMutableURLRequest/setMainDocumentURL: -Objective-C/instm/WebView/setMainFrameURL: -Objective-C/instm/NSApplication/setMainMenu: -Objective-C/instm/WebView/setMaintainsBackForwardList: -Objective-C/instm/NSPreferencePane/setMainView: -Objective-C/instm/NSEntityDescription/setManagedObjectClassName: -Objective-C/instm/NSObjectController/setManagedObjectContext: -Objective-C/instm/NSPersistentDocument/setManagedObjectContext: -C++/instm/IOAudioDevice/setManufacturerName -C++/instm/IOMemoryDescriptor/setMapping -Objective-C/instm/NSEntityMapping/setMappingType: -Objective-C/instm/NSResponder/setMark: -Objective-C/intfm/NSTextInput/setMarkedText:selectedRange: -Objective-C/intfm/NSTextInputClient/setMarkedText:selectedRange:replacementRange: -Objective-C/intfm/IMKTextInput/setMarkedText:selectionRange:replacementRange: -Objective-C/instm/NSTextView/setMarkedTextAttributes: -Objective-C/instm/NSRulerMarker/setMarkerLocation: -Objective-C/instm/NSRulerView/setMarkers: -Objective-C/instm/PDFAnnotationMarkup/setMarkupType: -Objective-C/instm/CALayer/setMask: -Objective-C/instm/CALayer/setMasksToBounds: -Objective-C/instm/NSImage/setMatchesOnMultipleResolution: -JavaScript/instm/SVGTransform/setMatrix -Objective-C/instm/NSBrowser/setMatrixClass: -JavaScript/instm/WebKitCSSMatrix/setMatrixValue -Objective-C/instm/QCCompositionPickerView/setMaxAnimationFrameRate: -C++/instm/IOATABusInfo/setMaxBlocksExtended -Objective-C/instm/NSOperationQueue/setMaxConcurrentOperationCount: -Objective-C/instm/NSDrawer/setMaxContentSize: -Objective-C/instm/NSRelationshipDescription/setMaxCount: -Objective-C/instm/NSDatePicker/setMaxDate: -Objective-C/instm/NSDatePickerCell/setMaxDate: -C++/instm/IOAudioLevelControl/setMaxDB -Objective-C/instm/NSNumberFormatter/setMaximum: -Objective-C/instm/NSNumberFormatter/setMaximumFractionDigits: -Objective-C/instm/NSNumberFormatter/setMaximumIntegerDigits: -Objective-C/instm/PDFAnnotationTextWidget/setMaximumLength: -Objective-C/instm/NSMutableParagraphStyle/setMaximumLineHeight: -Objective-C/instm/PDFThumbnailView/setMaximumNumberOfColumns: -Objective-C/instm/NSSearchFieldCell/setMaximumRecents: -Objective-C/instm/QTCaptureFileOutput/setMaximumRecordedDuration: -Objective-C/instm/QTCaptureFileOutput/setMaximumRecordedFileSize: -Objective-C/instm/NSNumberFormatter/setMaximumSignificantDigits: -Objective-C/instm/QTCaptureFileOutput/setMaximumVideoSize: -Objective-C/instm/NSCollectionView/setMaxItemSize: -Objective-C/instm/NSCollectionView/setMaxNumberOfColumns: -Objective-C/instm/NSCollectionView/setMaxNumberOfRows: -C++/instm/IOFWAsyncCommand/setMaxPacket -C++/instm/IONetworkController/setMaxPacketSize -C++/instm/IOFireWireSBP2ORB/setMaxPayloadSize -Objective-C/instm/QCView/setMaxRenderingFrameRate: -Objective-C/instm/NSToolbarItem/setMaxSize: -Objective-C/instm/NSWindow/setMaxSize: -Objective-C/instm/NSText/setMaxSize: -C++/instm/IOFireWireDevice/setMaxSpeed -C++/instm/IONetworkInterface/setMaxTransferUnit -C++/instm/IOAudioLevelControl/setMaxValue -Objective-C/instm/NSStepperCell/setMaxValue: -Objective-C/instm/NSSlider/setMaxValue: -Objective-C/instm/NSSliderCell/setMaxValue: -Objective-C/instm/NSStepper/setMaxValue: -Objective-C/instm/NSLevelIndicator/setMaxValue: -Objective-C/instm/NSProgressIndicator/setMaxValue: -Objective-C/instm/IMAVSlider/setMaxValue: -Objective-C/instm/NSLevelIndicatorCell/setMaxValue: -Objective-C/instm/NSBrowser/setMaxVisibleColumns: -Objective-C/instm/NSTableColumn/setMaxWidth: -Objective-C/instm/ABAddressBook/setMe: -Objective-C/instm/NSRulerView/setMeasurementUnits: -C++/instm/IONetworkInterface/setMediaAddressLength -Objective-C/instm/QTMedia/setMediaAttributes: -C/func/-/SetMediaDataHandler -C/func/-/SetMediaDefaultDataRefIndex -C/func/-/SetMediaHandler -C++/instm/IONetworkInterface/setMediaHeaderLength -C/func/-/SetMediaInputMap -C/func/-/SetMediaLanguage -C/func/-/SetMediaPreferredChunkSize -C/func/-/SetMediaQuality -C/func/-/SetMediaSampleDescription -C/func/-/SetMediaShadowSync -Objective-C/instm/WebView/setMediaStyle: -C/func/-/SetMediaTimeScale -Objective-C/instm/NSURLCache/setMemoryCapacity: -C++/instm/IODMACommand/setMemoryDescriptor -C++/instm/IOInterleavedMemoryDescriptor/setMemoryDescriptor -C++/instm/IOFWPhysicalAddressSpace/setMemoryDescriptor -C++/instm/IOPCIDevice/setMemoryEnable -Objective-C/instm/NSStatusItem/setMenu: -Objective-C/instm/NSPopUpButtonCell/setMenu: -Objective-C/instm/NSPopUpButton/setMenu: -Objective-C/instm/NSMenuView/setMenu: -Objective-C/instm/NSMenuItem/setMenu: -Objective-C/instm/NSPathControl/setMenu: -Objective-C/instm/NSResponder/setMenu: -Objective-C/instm/NSCell/setMenu: -Objective-C/instm/NSSegmentedCell/setMenu:forSegment: -Objective-C/instm/NSSegmentedControl/setMenu:forSegment: -Objective-C/clm/NSMenu/setMenuBarVisible: -Objective-C/instm/NSMenu/setMenuChangedMessagesEnabled: -Objective-C/instm/NSToolbarItem/setMenuFormRepresentation: -Objective-C/instm/NSMenuItemCell/setMenuItem: -Objective-C/instm/NSMenuView/setMenuItemCell:forItemAtIndex: -Objective-C/instm/NSMenu/setMenuRepresentation: -Objective-C/instm/NSMenuItemCell/setMenuView: -Objective-C/clm/NSMenu/setMenuZone: -Objective-C/instm/NSManagedObjectContext/setMergePolicy: -Objective-C/instm/NSSavePanel/setMessage: -Objective-C/instm/NSAlert/setMessageText: -Objective-C/instm/NSAtomicStore/setMetadata: -Objective-C/instm/NSPersistentStore/setMetadata: -Objective-C/instm/IBDocument/setMetadata:forKey:ofObject: -Objective-C/instm/NSPersistentStoreCoordinator/setMetadata:forPersistentStore: -Objective-C/clm/NSPersistentStoreCoordinator/setMetadata:forPersistentStoreOfType:URL:error: -Objective-C/clm/NSPersistentStore/setMetadata:forPersistentStoreWithURL:error: -Objective-C/instm/NSXMLDocument/setMIMEType: -Objective-C/clm/WebView/setMIMETypesShownAsHTML: -Objective-C/instm/NSBrowser/setMinColumnWidth: -Objective-C/instm/NSDrawer/setMinContentSize: -Objective-C/instm/NSRelationshipDescription/setMinCount: -Objective-C/instm/NSDatePicker/setMinDate: -Objective-C/instm/NSDatePickerCell/setMinDate: -C++/instm/IOAudioLevelControl/setMinDB -Objective-C/instm/CAEmitterCell/setMinificationFilter: -Objective-C/instm/CALayer/setMinificationFilter: -Objective-C/instm/CAEmitterCell/setMinificationFilterBias: -Objective-C/instm/CALayer/setMinificationFilterBias: -Objective-C/instm/NSNumberFormatter/setMinimum: -Objective-C/instm/NSCalendar/setMinimumDaysInFirstWeek: -Objective-C/instm/WebPreferences/setMinimumFontSize: -Objective-C/instm/NSNumberFormatter/setMinimumFractionDigits: -Objective-C/instm/NSNumberFormatter/setMinimumIntegerDigits: -Objective-C/instm/NSMutableParagraphStyle/setMinimumLineHeight: -Objective-C/instm/WebPreferences/setMinimumLogicalFontSize: -Objective-C/instm/NSNumberFormatter/setMinimumSignificantDigits: -Objective-C/instm/QTCaptureFileOutput/setMinimumVideoFrameInterval: -Objective-C/instm/QTCaptureDecompressedVideoOutput/setMinimumVideoFrameInterval: -Objective-C/instm/NSMenu/setMinimumWidth: -Objective-C/instm/NSCollectionView/setMinItemSize: -Objective-C/instm/NSWindow/setMiniwindowImage: -Objective-C/instm/NSWindow/setMiniwindowTitle: -Objective-C/instm/NSToolbarItem/setMinSize: -Objective-C/instm/NSWindow/setMinSize: -Objective-C/instm/NSText/setMinSize: -Objective-C/instm/NSNumberFormatter/setMinusSign: -Objective-C/instm/NSDateComponents/setMinute: -C++/instm/IOAudioLevelControl/setMinValue -Objective-C/instm/NSStepper/setMinValue: -Objective-C/instm/NSStepperCell/setMinValue: -Objective-C/instm/NSSlider/setMinValue: -Objective-C/instm/NSSliderCell/setMinValue: -Objective-C/instm/NSLevelIndicator/setMinValue: -Objective-C/instm/NSProgressIndicator/setMinValue: -Objective-C/instm/IMAVSlider/setMinValue: -Objective-C/instm/NSLevelIndicatorCell/setMinValue: -Objective-C/instm/NSTableColumn/setMinWidth: -Objective-C/instm/IKPictureTaker/setMirroring: -JavaScript/instm/CanvasRenderingContext2D/setMiterLimit -Objective-C/instm/NSBezierPath/setMiterLimit: -Objective-C/instm/CAShapeLayer/setMiterLimit: -C++/instm/IOAudioEngine/setMixClipOverhead -Objective-C/instm/NSMenuItem/setMixedStateImage: -Objective-C/instm/NSMenuItem/setMnemonicLocation: -Objective-C/instm/NSCell/setMnemonicLocation: -C/func/-/SetMode -C/func/-/setmode -C/func/-/SetMode() -Objective-C/instm/NSColorPanel/setMode: -Objective-C/instm/NSColorPicker/setMode: -Objective-C/intfm/NSColorPickingDefault/setMode: -Objective-C/instm/NSMatrix/setMode: -Objective-C/instm/IKScannerDeviceView/setMode: -Objective-C/instm/IKCameraDeviceView/setMode: -Objective-C/instm/IKDeviceBrowserView/setMode: -Objective-C/instm/PDFAnnotation/setModificationDate: -Objective-C/instm/NSDateComponents/setMonth: -Objective-C/instm/NSDateFormatter/setMonthSymbols: -Objective-C/clm/NSEvent/setMouseCoalescingEnabled: -Objective-C/instm/PDFAnnotation/setMouseUpAction: -Objective-C/instm/NSRulerMarker/setMovable: -Objective-C/instm/NSWindow/setMovable: -Objective-C/instm/NSWindow/setMovableByWindowBackground: -Objective-C/instm/QTMovieLayer/setMovie: -Objective-C/instm/QTMovieView/setMovie: -Objective-C/instm/QTMovie/setMovieAttributes: -Objective-C/instm/NSPortMessage/setMsgid: -C++/instm/IOEthernetController/setMulticastList -C++/instm/IOEthernetController/setMulticastMode -Objective-C/instm/NSNumberFormatter/setMultiplier: -Objective-C/instm/QTMovie/setMuted: -C++/instm/IORegistryEntry/setName -Objective-C/instm/CIFilter/setName: -Objective-C/instm/NSNameSpecifier/setName: -Objective-C/instm/NSConditionLock/setName: -Objective-C/instm/NSRecursiveLock/setName: -Objective-C/instm/PDFActionNamed/setName: -Objective-C/instm/PDFAnnotationStamp/setName: -Objective-C/instm/NSLock/setName: -Objective-C/instm/NSCondition/setName: -Objective-C/instm/CAEmitterCell/setName: -Objective-C/instm/NSPropertyMapping/setName: -Objective-C/instm/NSEntityMapping/setName: -Objective-C/instm/NSPropertyDescription/setName: -Objective-C/instm/NSSound/setName: -Objective-C/instm/NSXMLNode/setName: -Objective-C/instm/NSImage/setName: -Objective-C/instm/NSThread/setName: -Objective-C/instm/NSOperationQueue/setName: -Objective-C/instm/NSCache/setName: -Objective-C/instm/NSEntityDescription/setName: -Objective-C/instm/CALayer/setName: -JavaScript/instm/NamedNodeMap/setNamedItem -JavaScript/instm/NamedNodeMap/setNamedItemNS -Objective-C/instm/ABPeoplePickerView/setNameDoubleAction: -Objective-C/instm/NSSavePanel/setNameFieldLabel: -Objective-C/instm/NSSavePanel/setNameFieldStringValue: -Objective-C/instm/NSXMLElement/setNamespaces: -Objective-C/instm/NSControl/setNeedsDisplay -Objective-C/instm/CALayer/setNeedsDisplay -Objective-C/instm/NSMenuItemCell/setNeedsDisplay: -Objective-C/instm/NSView/setNeedsDisplay: -Objective-C/instm/NSMenuView/setNeedsDisplayForItemAtIndex: -Objective-C/instm/NSView/setNeedsDisplayInRect: -Objective-C/instm/CALayer/setNeedsDisplayInRect: -Objective-C/instm/NSTextView/setNeedsDisplayInRect:avoidAdditionalLayout: -Objective-C/instm/CALayer/setNeedsDisplayOnBoundsChange: -Objective-C/instm/CALayer/setNeedsLayout -Objective-C/intfm/WebDocumentView/setNeedsLayout: -Objective-C/instm/NSMenuItemCell/setNeedsSizing: -Objective-C/instm/NSMenuView/setNeedsSizing: -Objective-C/instm/NSNumberFormatter/setNegativeFormat: -Objective-C/instm/NSNumberFormatter/setNegativeInfinitySymbol: -Objective-C/instm/NSNumberFormatter/setNegativePrefix: -Objective-C/instm/NSNumberFormatter/setNegativeSuffix: -Objective-C/instm/NSRuleEditor/setNestingMode: -C/func/-/setnetent -C/func/-/setnetgrent -C++/instm/IOEventSource/setNext -Objective-C/instm/NSView/setNextKeyView: -Objective-C/instm/NSResponder/setNextResponder: -Objective-C/instm/NSButton/setNextState -Objective-C/instm/NSCell/setNextState -Objective-C/instm/NSTextField/setNextText: -Objective-C/instm/NSNumberFormatter/setNilSymbol: -Objective-C/instm/NSObject/setNilValueForKey: -Objective-C/instm/ODRecord/setNodeCredentials:password:error: -Objective-C/instm/ODRecord/setNodeCredentialsUsingKerberosCache:error: -Objective-C/instm/ODRecord/setNodeCredentialsWithRecordType:authenticationType:authenticationItems:continueItems:context:error: -C++/instm/IOFireWireDevice/setNodeFlags -Objective-C/instm/NSNumberFormatter/setNotANumberSymbol: -Objective-C/instm/NSXMLDTDNode/setNotationName: -Objective-C/instm/CalCalendarItem/setNotes: -Objective-C/instm/CalCalendar/setNotes: -Objective-C/instm/NSMetadataQuery/setNotificationBatchingInterval: -C++/instm/IODataQueue/setNotificationPort -C++/instm/IONetworkData/setNotificationTarget -Objective-C/instm/NSLayoutManager/setNotShownAttribute:forGlyphAtIndex: -Objective-C/instm/NSATSTypesetter/setNotShownAttribute:forGlyphRange: -Objective-C/instm/NSTypesetter/setNotShownAttribute:forGlyphRange: -Objective-C/instm/FxImage/setNumActiveChannels: -Objective-C/instm/IMAVManager/setNumberOfAudioChannels: -Objective-C/instm/QCCompositionPickerView/setNumberOfColumns: -Objective-C/instm/NSTextTable/setNumberOfColumns: -Objective-C/instm/NSLevelIndicator/setNumberOfMajorTickMarks: -Objective-C/instm/NSLevelIndicatorCell/setNumberOfMajorTickMarks: -Objective-C/instm/QCCompositionPickerView/setNumberOfRows: -Objective-C/instm/NSSliderCell/setNumberOfTickMarks: -Objective-C/instm/NSSlider/setNumberOfTickMarks: -Objective-C/instm/NSLevelIndicator/setNumberOfTickMarks: -Objective-C/instm/NSLevelIndicatorCell/setNumberOfTickMarks: -Objective-C/instm/NSComboBox/setNumberOfVisibleItems: -Objective-C/instm/NSComboBoxCell/setNumberOfVisibleItems: -Objective-C/instm/NSNumberFormatter/setNumberStyle: -Objective-C/instm/IOBluetoothOBEXSession/setOBEXSessionOpenConnectionCallback:refCon: -C++/instm/OSDictionary/setObject -C++/instm/OSArray/setObject -C++/instm/OSOrderedSet/setObject -C++/instm/OSSet/setObject -Objective-C/instm/ISyncClient/setObject:forKey: -Objective-C/instm/NSMapTable/setObject:forKey: -Objective-C/instm/NSUserDefaults/setObject:forKey: -Objective-C/instm/NSMutableDictionary/setObject:forKey: -Objective-C/instm/NSCache/setObject:forKey: -Objective-C/instm/NSCache/setObject:forKey:cost: -Objective-C/instm/DRCDTextBlock/setObject:forKey:ofTrack: -Objective-C/instm/NSSpeechSynthesizer/setObject:forProperty:error: -Objective-C/instm/NSScriptExecutionContext/setObjectBeingTested: -Objective-C/instm/NSObjectController/setObjectClass: -Objective-C/instm/NSActionCell/setObjectValue: -Objective-C/instm/NSPopUpButtonCell/setObjectValue: -Objective-C/instm/NSPopUpButton/setObjectValue: -Objective-C/instm/NSControl/setObjectValue: -Objective-C/instm/NSPathCell/setObjectValue: -Objective-C/instm/NSXMLNode/setObjectValue: -Objective-C/instm/NSCell/setObjectValue: -Objective-C/instm/NSUnarchiver/setObjectZone: -Objective-C/instm/NSCoder/setObjectZone: -Objective-C/instm/NSObject/setObservationInfo: -Objective-C/instm/NSManagedObject/setObservationInfo: -Objective-C/instm/CalRecurrenceEnd/setOccurrenceCount: -Objective-C/instm/NSOpenGLContext/setOffScreen:width:height:rowbytes: -Objective-C/instm/NSMenuItem/setOffStateImage: -Objective-C/instm/NSWindow/setOneShot: -Objective-C/instm/NSCursor/setOnMouseEntered: -Objective-C/instm/NSCursor/setOnMouseExited: -Objective-C/instm/NSMenuItem/setOnStateImage: -Objective-C/instm/PDFAnnotationButtonWidget/setOnStateValue: -Objective-C/instm/CALayer/setOpacity: -Objective-C/instm/NSImageRep/setOpaque: -Objective-C/instm/NSWindow/setOpaque: -Objective-C/instm/CALayer/setOpaque: -C++/instm/IOATACommand/setOpcode -Objective-C/instm/NSOpenGLView/setOpenGLContext: -Objective-C/instm/NSOpenGLLayer/setOpenGLContext: -Objective-C/instm/NSOpenGLLayer/setOpenGLPixelFormat: -Objective-C/instm/IOBluetoothOBEXSession/setOpenTransportConnectionAsyncSelector:target:refCon: -Objective-C/instm/ODQuery/setOperationQueue: -Objective-C/instm/NSPropertyDescription/setOptional: -Objective-C/clm/WebHistory/setOptionalSharedHistory: -C++/instm/OSArray/setOptions -C++/instm/OSCollection/setOptions -C++/instm/OSDictionary/setOptions -C++/instm/OSSet/setOptions -C++/instm/OSOrderedSet/setOptions -Objective-C/instm/NSPrintPanel/setOptions: -Objective-C/instm/IOBluetoothDeviceSelectorController/setOptions: -Objective-C/instm/IOBluetoothPairingController/setOptions: -Objective-C/instm/IOBluetoothServiceBrowserController/setOptions: -Objective-C/instm/NSWindow/setOrderedIndex: -Objective-C/instm/NSRulerView/setOrientation: -Objective-C/instm/NSPrintInfo/setOrientation: -JavaScript/instm/SVGMarkerElement/setOrientToAngle -JavaScript/instm/SVGMarkerElement/setOrientToAuto -Objective-C/instm/FxImage/setOrigin: -Objective-C/instm/NSRulerView/setOriginOffset: -Objective-C/instm/PDFDocument/setOutlineRoot: -Objective-C/instm/NSOutlineView/setOutlineTableColumn: -C/func/-/SetOutputCallback -Objective-C/instm/QTCaptureAudioPreviewOutput/setOutputDeviceUniqueID: -Objective-C/instm/NSKeyedArchiver/setOutputFormat: -C++/instm/IOStream/setOutputPort -C++/instm/IOAudioEngine/setOutputSampleOffset -C++/instm/IOATABusInfo/setOverlapped -Objective-C/instm/IKImageView/setOverlay:forType: -Objective-C/instm/IKScannerDeviceView/setOverviewControlLabel: -C++/instm/IOATACommand/setPacketCommand -C++/instm/IOATADevConfig/setPacketConfig -Objective-C/instm/NSNumberFormatter/setPaddingCharacter: -Objective-C/instm/NSNumberFormatter/setPaddingPosition: -Objective-C/instm/WebBackForwardList/setPageCacheSize: -Objective-C/instm/PDFActionRemoteGoTo/setPageIndex: -Objective-C/instm/NSPrintOperation/setPageOrder: -Objective-C/instm/NSScrollView/setPageScroll: -JavaScript/instm/SVGPaint/setPaint -Objective-C/instm/NSToolbarItem/setPaletteLabel: -Objective-C/instm/NSFontPanel/setPanelFont:isMultiple: -Objective-C/instm/IMKCandidates/setPanelType: -Objective-C/instm/NSPrintInfo/setPaperName: -Objective-C/instm/NSPrintInfo/setPaperSize: -Objective-C/instm/NSATSTypesetter/setParagraphGlyphRange:separatorGlyphRange: -Objective-C/instm/NSTypesetter/setParagraphGlyphRange:separatorGlyphRange: -Objective-C/instm/NSTextStorage/setParagraphs: -Objective-C/instm/NSMutableParagraphStyle/setParagraphSpacing: -Objective-C/instm/NSMutableParagraphStyle/setParagraphSpacingBefore: -Objective-C/instm/NSMutableParagraphStyle/setParagraphStyle: -Objective-C/instm/NSAppleEventDescriptor/setParamDescriptor:forKeyword: -JavaScript/instm/XSLTProcessor/setParameter -Objective-C/intfm/FxParameterSettingAPI/setParameterFlags:toParm: -Objective-C/instm/AMBundleAction/setParameters: -C/func/-/setParentCurrentPowerFlags -C/func/-/setParentKnowsState -Objective-C/instm/NSDrawer/setParentWindow: -Objective-C/instm/NSWindow/setParentWindow: -Objective-C/instm/NSNumberFormatter/setPartialStringValidationEnabled: -C/func/-/setpassent -Objective-C/instm/SFKeychainSavePanel/setPassword: -Objective-C/instm/PSFeed/setPassword: -Objective-C/instm/XGTwoWayRandomAuthenticator/setPassword: -Objective-C/instm/NSBrowser/setPath: -Objective-C/instm/CAShapeLayer/setPath: -Objective-C/instm/CAKeyframeAnimation/setPath: -Objective-C/instm/NSPathCell/setPathComponentCells: -Objective-C/instm/NSPathControl/setPathComponentCells: -Objective-C/instm/NSBrowser/setPathSeparator: -Objective-C/instm/NSPathCell/setPathStyle: -Objective-C/instm/NSPathControl/setPathStyle: -Objective-C/instm/NSGraphicsContext/setPatternPhase: -JavaScript/instm/InspectorBackend/setPauseOnExceptionsState -Objective-C/instm/PDFThumbnailView/setPDFView: -Objective-C/instm/NSNumberFormatter/setPercentSymbol: -Objective-C/instm/NSButton/setPeriodicDelay:interval: -Objective-C/instm/NSButtonCell/setPeriodicDelay:interval: -Objective-C/instm/NSNumberFormatter/setPerMillSymbol: -Objective-C/instm/NSUserDefaults/setPersistentDomain:forName: -Objective-C/instm/NSManagedObjectContext/setPersistentStoreCoordinator: -C/func/-/setpgid -C/func/-/setpgrp -Objective-C/clm/NSColorPanel/setPickerMask: -Objective-C/clm/NSColorPanel/setPickerMode: -C++/instm/IOATADevConfig/setPIOCycleTime -C++/instm/IOATADevConfig/setPIOMode -C++/instm/IOATABusInfo/setPIOModes -C++/instm/IOUSBPipe/SetPipePolicy -Objective-C/instm/NSBitmapImageRep/setPixel:atX:y: -Objective-C/instm/FxImage/setPixelAspect: -Objective-C/instm/NSOpenGLContext/setPixelBuffer:cubeMapFace:mipMapLevel:currentVirtualScreen: -Objective-C/instm/QTCaptureVideoPreviewOutput/setPixelBufferAttributes: -Objective-C/instm/QTCaptureDecompressedVideoOutput/setPixelBufferAttributes: -Objective-C/instm/NSOpenGLView/setPixelFormat: -Objective-C/instm/FxImage/setPixelFormat: -Objective-C/instm/NSImageRep/setPixelsHigh: -Objective-C/instm/NSImageRep/setPixelsWide: -Objective-C/instm/NSFormCell/setPlaceholderAttributedString: -Objective-C/instm/NSPathCell/setPlaceholderAttributedString: -Objective-C/instm/NSTextFieldCell/setPlaceholderAttributedString: -Objective-C/instm/NSFormCell/setPlaceholderString: -Objective-C/instm/NSPathCell/setPlaceholderString: -Objective-C/instm/NSTextFieldCell/setPlaceholderString: -Objective-C/instm/NSSound/setPlaybackDeviceIdentifier: -Objective-C/instm/WebPreferences/setPlugInsEnabled: -C/func/-/SetPluginState -Objective-C/instm/NSNumberFormatter/setPlusSign: -Objective-C/instm/NSDateFormatter/setPMSymbol: -Objective-C/instm/PDFActionRemoteGoTo/setPoint: -Objective-C/instm/SFCertificatePanel/setPolicies: -Objective-C/instm/SFCertificateView/setPolicies: -Objective-C/instm/SFChooseIdentityPanel/setPolicies: -Objective-C/instm/WebView/setPolicyDelegate: -Objective-C/instm/PDFAnnotation/setPopup: -C++/instm/IOATACommand/setPosition -JavaScript/instm/DOMSelection/setPosition -Objective-C/instm/CALayer/setPosition: -Objective-C/instm/NSSplitView/setPosition:ofDividerAtIndex: -Objective-C/instm/NSNumberFormatter/setPositiveFormat: -Objective-C/instm/NSNumberFormatter/setPositiveInfinitySymbol: -Objective-C/instm/NSNumberFormatter/setPositivePrefix: -Objective-C/instm/NSNumberFormatter/setPositiveSuffix: -Objective-C/instm/IKScannerDeviceView/setPostProcessApplication: -Objective-C/instm/IKCameraDeviceView/setPostProcessApplication: -Objective-C/instm/NSView/setPostsBoundsChangedNotifications: -Objective-C/instm/NSView/setPostsFrameChangedNotifications: -Objective-C/instm/CWInterface/setPower:error: -C++/instm/IOService/setPowerParent -C++/instm/IOAudioDevice/setPowerState -C++/instm/IOService/setPowerState -C++/instm/IOSCSIProtocolInterface/setPowerState -C++/clm/IOAudioDevice/setPowerStateAction -Objective-C/instm/NSPredicateEditorRowTemplate/setPredicate: -Objective-C/instm/NSMetadataQuery/setPredicate: -Objective-C/instm/NSFetchRequest/setPredicate: -Objective-C/instm/WebView/setPreferences: -Objective-C/instm/WebView/setPreferencesIdentifier: -Objective-C/instm/NSWindow/setPreferredBackingLocation: -Objective-C/instm/NSPopUpButton/setPreferredEdge: -Objective-C/instm/NSPopUpButtonCell/setPreferredEdge: -Objective-C/instm/NSDrawer/setPreferredEdge: -Objective-C/instm/NSFileWrapper/setPreferredFilename: -Objective-C/clm/NSFont/setPreferredFontNames: -Objective-C/instm/NSBrowser/setPrefersAllColumnUserResizing: -Objective-C/instm/NSImage/setPrefersColorMatch: -Objective-C/instm/DRTrack(PropertyConvenience)/setPreGap: -Objective-C/instm/NSApplication/setPresentationOptions: -Objective-C/instm/QTCaptureView/setPreservesAspectRatio: -Objective-C/instm/QTMovieView/setPreservesAspectRatio: -Objective-C/instm/NSWindow/setPreservesContentDuringLiveResize: -Objective-C/instm/CAEmitterLayer/setPreservesDepth: -Objective-C/instm/CAReplicatorLayer/setPreservesDepth: -Objective-C/instm/NSTreeController/setPreservesSelection: -Objective-C/instm/NSArrayController/setPreservesSelection: -C/func/-/setPreventIdleSleepFlag -Objective-C/instm/NSWindow/setPreventsApplicationTerminationWhenModal: -C/func/-/setPreventSystemSleepFlag -Objective-C/intfm/QLPreviewItem/setPreviewItemDisplayState: -Objective-C/intfm/QLPreviewItem/setPreviewItemTitle: -Objective-C/intfm/QLPreviewItem/setPreviewItemURL: -Objective-C/instm/IKFilterBrowserView/setPreviewState: -Objective-C/instm/NSTextField/setPreviousText: -Objective-C/instm/ABMutableMultiValue/setPrimaryIdentifier: -Objective-C/instm/NSManagedObject/setPrimitiveValue:forKey: -Objective-C/instm/NSPrintInfo/setPrinter: -Objective-C/instm/NSPrintOperation/setPrintInfo: -Objective-C/instm/NSDocument/setPrintInfo: -Objective-C/instm/NSPrintOperation/setPrintPanel: -C/func/-/setpriority -Objective-C/instm/CalTask/setPriority: -Objective-C/instm/WebPreferences/setPrivateBrowsingEnabled: -Objective-C/instm/NSProcessInfo/setProcessName: -C/func/-/setprogname -Objective-C/instm/NSAnimation/setProgressMarks: -C++/instm/IOEthernetController/setPromiscuousMode -Objective-C/instm/NSSavePanel/setPrompt: -Objective-C/instm/IOBluetoothDeviceSelectorController/setPrompt: -Objective-C/instm/IOBluetoothPairingController/setPrompt: -Objective-C/instm/IOBluetoothServiceBrowserController/setPrompt: -Objective-C/instm/NSManagedObjectContext/setPropagatesDeletesAtEndOfEvent: -C++/instm/IONetworkUserClient/setProperties -C++/instm/IONetworkInterface/setProperties -C++/instm/IOEthernetInterface/setProperties -C++/instm/IOAudioControl/setProperties -C++/instm/IORegistryEntry/setProperties -Objective-C/instm/DRBurn/setProperties: -Objective-C/instm/DRCDTextBlock/setProperties: -Objective-C/instm/DRErase/setProperties: -Objective-C/instm/DRTrack/setProperties: -Objective-C/instm/NSEntityDescription/setProperties: -Objective-C/instm/DRFSObject/setProperties:inFilesystem: -Objective-C/instm/NSFetchRequest/setPropertiesToFetch: -C/func/-/SetProperty -C++/instm/IORegistryEntry/setProperty -JavaScript/instm/CSSStyleDeclaration/setProperty -Objective-C/instm/NSStream/setProperty:forKey: -Objective-C/instm/NSURL/setProperty:forKey: -Objective-C/instm/DRFSObject/setProperty:forKey:inFilesystem: -Objective-C/clm/NSURLProtocol/setProperty:forKey:inRequest: -Objective-C/instm/NSBitmapImageRep/setProperty:withValue: -Objective-C/instm/NSAtomicStoreCacheNode/setPropertyCache: -Objective-C/instm/NSPasteboardItem/setPropertyList:forType: -Objective-C/instm/NSPasteboard/setPropertyList:forType: -C++/instm/IORegistryEntry/setPropertyTable -Objective-C/instm/NSDistantObject/setProtocolForProxy: -Objective-C/instm/NSNetService/setProtocolSpecificInformation: -C/func/-/setprotoent -Objective-C/instm/NSMatrix/setPrototype: -Objective-C/instm/NSXMLDTDNode/setPublicID: -Objective-C/instm/NSXMLDTD/setPublicID: -Objective-C/instm/NSPopUpButton/setPullsDown: -Objective-C/instm/NSPopUpButtonCell/setPullsDown: -C++/instm/IOMemoryDescriptor/setPurgeable -C/func/-/setpwent -C/func/-/setpwfile -Objective-C/instm/PDFAnnotationMarkup/setQuadrilateralPoints: -Objective-C/instm/NSDateComponents/setQuarter: -Objective-C/instm/NSDateFormatter/setQuarterSymbols: -Objective-C/instm/NSOperation/setQueuePriority: -JavaScript/instm/SVGFEMorphologyElement/setRadius -Objective-C/instm/NSScriptExecutionContext/setRangeContainerObject: -Objective-C/instm/NSSpeechSynthesizer/setRate: -Objective-C/instm/QTMovie/setRate: -Objective-C/instm/NSPersistentStore/setReadOnly: -C++/instm/IOAudioControl/setReadOnlyFlag -C/func/-/setReadyFlag -C++/instm/IOSCSIParallelInterfaceController/SetRealizedDataTransferCount -Objective-C/instm/NSDeleteCommand/setReceiversSpecifier: -Objective-C/instm/NSMoveCommand/setReceiversSpecifier: -Objective-C/instm/NSSetCommand/setReceiversSpecifier: -Objective-C/instm/NSCloneCommand/setReceiversSpecifier: -Objective-C/instm/NSScriptCommand/setReceiversSpecifier: -Objective-C/instm/NSSearchField/setRecentsAutosaveName: -Objective-C/instm/NSSearchFieldCell/setRecentsAutosaveName: -Objective-C/instm/NSSearchField/setRecentSearches: -Objective-C/instm/NSSearchFieldCell/setRecentSearches: -Objective-C/instm/CalEvent/setRecurrenceRule: -Objective-C/instm/CAEmitterCell/setRedRange: -Objective-C/instm/CAEmitterCell/setRedSpeed: -Objective-C/intfm/FxParameterSettingAPI/setRedValue:GreenValue:BlueValue:AlphaValue:toParm:atTime: -Objective-C/intfm/FxParameterSettingAPI/setRedValue:GreenValue:BlueValue:toParm:atTime: -C++/instm/IOFireWireSBP2ORB/setRefCon -C++/instm/IOFireWireSBP2ORB/setRefCon64 -Objective-C/instm/NSControl/setRefusesFirstResponder: -Objective-C/instm/NSCell/setRefusesFirstResponder: -C/func/-/setregid -C++/instm/IOATACommand/setRegMask -Objective-C/instm/NSFetchRequest/setRelationshipKeyPathsForPrefetching: -Objective-C/instm/NSEntityMapping/setRelationshipMappings: -Objective-C/instm/NSRelativeSpecifier/setRelativePosition: -Objective-C/instm/CalAlarm/setRelativeTrigger: -Objective-C/instm/NSWindow/setReleasedWhenClosed: -Objective-C/instm/NSPointerFunctions/setRelinquishFunction: -Objective-C/instm/NSRulerMarker/setRemovable: -Objective-C/instm/CAAnimation/setRemovedOnCompletion: -Objective-C/instm/NSPropertyDescription/setRenamingIdentifier: -Objective-C/instm/NSEntityDescription/setRenamingIdentifier: -Objective-C/instm/CAEmitterLayer/setRenderMode: -Objective-C/intfm/CAMediaTiming/setRepeatCount: -Objective-C/intfm/CAMediaTiming/setRepeatDuration: -Objective-C/instm/NSConnection/setReplyTimeout: -C++/instm/IOHIDDevice/setReport -Objective-C/instm/NSHashTable/setRepresentation -Objective-C/instm/NSWindow/setRepresentedFilename: -Objective-C/instm/NSRulerMarker/setRepresentedObject: -Objective-C/instm/NSViewController/setRepresentedObject: -Objective-C/instm/NSCollectionViewItem/setRepresentedObject: -Objective-C/instm/NSMenuItem/setRepresentedObject: -Objective-C/instm/NSCell/setRepresentedObject: -Objective-C/instm/NSWindow/setRepresentedURL: -Objective-C/instm/DRBurn(PropertyConvenienceMethods)/setRequestedBurnSpeed: -JavaScript/instm/XMLHttpRequest/setRequestHeader -Objective-C/instm/NSConnection/setRequestTimeout: -Objective-C/instm/NSSavePanel/setRequiredFileType: -C/func/-/SetResAttrs -Objective-C/instm/NSRulerView/setReservedThicknessForAccessoryView: -Objective-C/instm/NSRulerView/setReservedThicknessForMarkers: -C/func/-/SetResFileAttrs -C/func/-/SetResInfo -Objective-C/instm/NSTableColumn/setResizable: -Objective-C/instm/NSWindow/setResizeIncrements: -Objective-C/instm/NSTableColumn/setResizingMask: -C/func/-/SetResLoad -Objective-C/instm/NSOpenPanel/setResolvesAliases: -Objective-C/instm/NSURL/setResourceData: -Objective-C/instm/WebView/setResourceLoadDelegate: -C/func/-/SetResourceSize -Objective-C/instm/NSURL/setResourceValue:forKey:error: -Objective-C/instm/NSURL/setResourceValues:error: -C/func/-/SetResPurge -C/func/-/SetResult -C++/instm/IOATABusCommand/setResult -Objective-C/instm/NSFetchRequest/setResultType: -Objective-C/instm/NSManagedObjectContext/setRetainsRegisteredObjects: -Objective-C/instm/NSFetchRequest/setReturnsDistinctResults: -Objective-C/instm/NSFetchRequest/setReturnsObjectsAsFaults: -Objective-C/instm/NSInvocation/setReturnValue: -C/func/-/setreuid -Objective-C/instm/NSBrowser/setReusesColumns: -Objective-C/instm/IOBluetoothRFCOMMAudioController/setRFCOMMChannel: -JavaScript/instm/SVGColor/setRGBColor -JavaScript/instm/SVGColor/setRGBColorICCColor -C/func/-/setrgid -Objective-C/instm/NSTextView/setRichText: -Objective-C/instm/NSText/setRichText: -Objective-C/instm/NSPrintInfo/setRightMargin: -C/func/-/setrlimit -Objective-C/instm/CIKernel/setROISelector: -Objective-C/instm/NSXMLDocument/setRootElement: -C++/instm/IOUSBController/SetRootHubDescriptor -C++/instm/IOUSBController/SetRootHubFeature -C++/instm/IOUSBController/SetRootHubPortFeature -Objective-C/instm/NSConnection/setRootObject: -JavaScript/instm/SVGTransform/setRotate -Objective-C/instm/PDFAnnotationTextWidget/setRotation: -Objective-C/instm/PDFPage/setRotation: -Objective-C/instm/IKImageView/setRotationAngle: -Objective-C/instm/IKImageView/setRotationAngle:centerPoint: -Objective-C/instm/CAKeyframeAnimation/setRotationMode: -Objective-C/instm/NSNumberFormatter/setRoundingBehavior: -Objective-C/instm/NSNumberFormatter/setRoundingIncrement: -Objective-C/instm/NSNumberFormatter/setRoundingMode: -Objective-C/instm/FxBitmap/setRowBytes: -Objective-C/instm/NSRuleEditor/setRowClass: -Objective-C/instm/NSBrowser/setRowHeight: -Objective-C/instm/NSRuleEditor/setRowHeight: -Objective-C/instm/NSTableView/setRowHeight: -Objective-C/instm/NSPredicateEditor/setRowTemplates: -Objective-C/instm/NSRuleEditor/setRowTypeKeyPath: -C/func/-/setrpcent -C/func/-/setruid -Objective-C/instm/NSScrollView/setRulersVisible: -Objective-C/clm/NSScrollView/setRulerViewClass: -Objective-C/instm/NSTextView/setRulerVisible: -JavaScript/instm/InspectorBackend/setRuleSelector -Objective-C/instm/NSRulerView/setRuleThickness: -C/func/-/setrunelocale -C++/instm/IOAudioEngine/setRunEraseHead -Objective-C/instm/NSUndoManager/setRunLoopModes: -C++/instm/IOAudioEngine/setSampleLatency -C++/instm/IOAudioEngine/setSampleRate -Objective-C/instm/WebPreferences/setSansSerifFontFamily: -JavaScript/instm/SVGTransform/setScale -Objective-C/instm/CAEmitterLayer/setScale: -Objective-C/instm/CAEmitterCell/setScale: -Objective-C/instm/PDFView/setScaleFactor: -Objective-C/instm/CAEmitterCell/setScaleRange: -Objective-C/instm/CAEmitterCell/setScaleSpeed: -Objective-C/instm/NSImage/setScalesWhenResized: -Objective-C/instm/NSPrintInfo/setScalingFactor: -Objective-C/instm/IKScannerDeviceView/setScanControlLabel: -Objective-C/instm/NSScanner/setScanLocation: -Objective-C/instm/IKScannerDeviceView/setScannerDevice: -Objective-C/instm/AMAppleScriptAction/setScript: -Objective-C/instm/NSScriptCommand/setScriptErrorExpectedTypeDescriptor: -Objective-C/instm/NSScriptCommand/setScriptErrorNumber: -Objective-C/instm/NSScriptCommand/setScriptErrorOffendingObjectDescriptor: -Objective-C/instm/NSScriptCommand/setScriptErrorString: -Objective-C/instm/NSObject/setScriptingProperties: -Objective-C/instm/NSMatrix/setScrollable: -Objective-C/instm/NSCell/setScrollable: -Objective-C/instm/CAScrollLayer/setScrollMode: -Objective-C/instm/NSScrollView/setScrollsDynamically: -Objective-C/instm/NSRulerView/setScrollView: -C/func/-/setscrreg -C++/instm/IOSCSIParallelInterfaceController/SetSCSIParallelFeatureNegotiationResult -Objective-C/instm/IOBluetoothDeviceSelectorController/setSearchAttributes: -Objective-C/instm/IOBluetoothPairingController/setSearchAttributes: -Objective-C/instm/IOBluetoothServiceBrowserController/setSearchAttributes: -Objective-C/instm/NSSearchFieldCell/setSearchButtonCell: -Objective-C/instm/IOBluetoothDeviceInquiry/setSearchCriteria:majorDeviceClass:minorDeviceClass: -Objective-C/instm/NSSearchFieldCell/setSearchMenuTemplate: -Objective-C/instm/NSMetadataQuery/setSearchScopes: -Objective-C/instm/NSDateComponents/setSecond: -Objective-C/instm/NSNumberFormatter/setSecondaryGroupingSize: -C++/instm/IOATACommand/setSectorCount -C++/instm/IOExtendedLBA/setSectorCount16 -C++/instm/IOATACommand/setSectorNumber -Objective-C/instm/CAEmitterLayer/setSeed: -Objective-C/instm/NSSegmentedCell/setSegmentCount: -Objective-C/instm/NSSegmentedControl/setSegmentCount: -Objective-C/instm/NSSegmentedControl/setSegmentStyle: -Objective-C/instm/NSSegmentedCell/setSegmentStyle: -Objective-C/instm/NSTextField/setSelectable: -Objective-C/instm/NSCollectionView/setSelectable: -Objective-C/instm/NSTextView/setSelectable: -Objective-C/instm/NSText/setSelectable: -Objective-C/instm/NSCell/setSelectable: -Objective-C/instm/NSCollectionViewItem/setSelected: -Objective-C/instm/NSSegmentedCell/setSelected:forSegment: -Objective-C/instm/NSSegmentedControl/setSelected:forSegment: -Objective-C/instm/NSFontManager/setSelectedAttributes:isMultiple: -Objective-C/instm/QCCompositionPickerView/setSelectedComposition: -Objective-C/instm/WebView/setSelectedDOMRange:affinity: -Objective-C/instm/NSFontManager/setSelectedFont:isMultiple: -Objective-C/instm/ABPeoplePickerView/setSelectedGroups: -Objective-C/instm/NSToolbar/setSelectedItemIdentifier: -Objective-C/instm/NSTextInputContext/setSelectedKeyboardInputSource: -C++/instm/IONetworkController/setSelectedMedium -Objective-C/instm/NSArrayController/setSelectedObjects: -Objective-C/instm/NSTextView/setSelectedRange: -Objective-C/instm/NSText/setSelectedRange: -Objective-C/instm/NSTextView/setSelectedRange:affinity:stillSelecting: -Objective-C/instm/NSTextView/setSelectedRanges: -Objective-C/instm/NSTextView/setSelectedRanges:affinity:stillSelecting: -Objective-C/instm/ABPeoplePickerView/setSelectedRecords: -Objective-C/instm/NSSegmentedCell/setSelectedSegment: -Objective-C/instm/NSSegmentedControl/setSelectedSegment: -Objective-C/instm/NSTextView/setSelectedTextAttributes: -Objective-C/instm/QTMovie/setSelection: -Objective-C/instm/NSMatrix/setSelectionByRect: -Objective-C/instm/NSMatrix/setSelectionFrom:to:anchor:highlight: -Objective-C/instm/NSTextView/setSelectionGranularity: -Objective-C/instm/NSTableView/setSelectionHighlightStyle: -Objective-C/instm/NSArrayController/setSelectionIndex: -Objective-C/instm/NSCollectionView/setSelectionIndexes: -Objective-C/instm/NSArrayController/setSelectionIndexes: -Objective-C/instm/IKImageBrowserView/setSelectionIndexes:byExtendingSelection: -Objective-C/instm/NSTreeController/setSelectionIndexPath: -Objective-C/instm/NSBrowser/setSelectionIndexPath: -Objective-C/instm/NSTreeController/setSelectionIndexPaths: -Objective-C/instm/NSBrowser/setSelectionIndexPaths: -Objective-C/instm/IMKCandidates/setSelectionKeys: -Objective-C/instm/IMKCandidates/setSelectionKeysKeylayout: -Objective-C/instm/NSPrintInfo/setSelectionOnly: -JavaScript/instm/HTMLInputElement/setSelectionRange -JavaScript/instm/HTMLTextAreaElement/setSelectionRange -Objective-C/instm/NSInvocation/setSelector: -Objective-C/instm/NSTreeController/setSelectsInsertedObjects: -Objective-C/instm/NSArrayController/setSelectsInsertedObjects: -Objective-C/instm/SBApplication/setSendMode: -Objective-C/instm/NSBrowser/setSendsActionOnArrowKeys: -Objective-C/instm/NSCell/setSendsActionOnEndEditing: -Objective-C/instm/NSSearchFieldCell/setSendsSearchStringImmediately: -Objective-C/instm/NSSearchFieldCell/setSendsWholeSearchString: -Objective-C/instm/NSBrowser/setSeparatesColumns: -C/func/-/SetSequenceProgressProc -Objective-C/instm/QCPlugIn/setSerializedValue:forKey: -Objective-C/instm/IOBluetoothRFCOMMChannel/setSerialParameters:dataBits:parity:stopBits: -Objective-C/instm/WebPreferences/setSerifFontFamily: -C/func/-/setservent -Objective-C/instm/XGGSSAuthenticator/setServicePrincipal: -Objective-C/instm/NSApplication/setServicesMenu: -Objective-C/instm/NSApplication/setServicesProvider: -Objective-C/instm/QTCaptureLayer/setSession: -Objective-C/instm/NSMutableSet/setSet: -JavaScript/instm/CanvasRenderingContext2D/setShadow -Objective-C/instm/NSView/setShadow: -Objective-C/instm/NSShadow/setShadowBlurRadius: -Objective-C/instm/NSShadow/setShadowColor: -Objective-C/instm/CALayer/setShadowColor: -Objective-C/instm/NSShadow/setShadowOffset: -Objective-C/instm/CALayer/setShadowOffset: -Objective-C/instm/CALayer/setShadowOpacity: -Objective-C/instm/CALayer/setShadowRadius: -Objective-C/clm/NSPrintInfo/setSharedPrintInfo: -Objective-C/clm/NSScriptSuiteRegistry/setSharedScriptSuiteRegistry: -Objective-C/clm/NSURLCache/setSharedURLCache: -Objective-C/instm/NSWindow/setSharingType: -Objective-C/instm/NSDateFormatter/setShortMonthSymbols: -Objective-C/instm/NSDateFormatter/setShortQuarterSymbols: -Objective-C/instm/NSDateFormatter/setShortStandaloneMonthSymbols: -Objective-C/instm/NSDateFormatter/setShortStandaloneQuarterSymbols: -Objective-C/instm/NSDateFormatter/setShortStandaloneWeekdaySymbols: -Objective-C/instm/NSDateFormatter/setShortWeekdaySymbols: -Objective-C/instm/PDFView/setShouldAntiAlias: -Objective-C/instm/NSGraphicsContext/setShouldAntialias: -Objective-C/instm/NSWindowController/setShouldCascadeWindows: -Objective-C/instm/NSWindowController/setShouldCloseDocument: -Objective-C/instm/WebView/setShouldCloseWithWindow: -Objective-C/instm/NSDocumentController/setShouldCreateUI: -Objective-C/instm/PDFAnnotation/setShouldDisplay: -Objective-C/instm/PDFAnnotation/setShouldPrint: -Objective-C/instm/WebPreferences/setShouldPrintBackgrounds: -Objective-C/instm/NSXMLParser/setShouldProcessNamespaces: -Objective-C/instm/ISyncClient/setShouldReplaceClientRecords:forEntityNames: -Objective-C/instm/NSXMLParser/setShouldReportNamespacePrefixes: -Objective-C/instm/NSXMLParser/setShouldResolveExternalEntities: -Objective-C/instm/ISyncClient/setShouldSynchronize:withClientsOfType: -Objective-C/instm/WebView/setShouldUpdateWhileOffscreen: -Objective-C/instm/NSPrintOperation/setShowPanels: -Objective-C/instm/NSColorPanel/setShowsAlpha: -Objective-C/instm/NSDockTile/setShowsApplicationBadge: -Objective-C/instm/NSToolbar/setShowsBaselineSeparator: -Objective-C/instm/NSButton/setShowsBorderOnlyWhileMouseInside: -Objective-C/instm/NSButtonCell/setShowsBorderOnlyWhileMouseInside: -Objective-C/instm/QCCompositionPickerView/setShowsCompositionNames: -Objective-C/instm/NSLayoutManager/setShowsControlCharacters: -Objective-C/instm/AUGenericView/setShowsExpertParameters: -Objective-C/instm/NSCell/setShowsFirstResponder: -Objective-C/instm/SFCertificatePanel/setShowsHelp: -Objective-C/instm/NSAlert/setShowsHelp: -Objective-C/instm/SFChooseIdentityPanel/setShowsHelp: -Objective-C/instm/NSSavePanel/setShowsHiddenFiles: -Objective-C/instm/NSLayoutManager/setShowsInvisibleCharacters: -Objective-C/instm/NSPrintOperation/setShowsPrintPanel: -Objective-C/instm/NSPrintOperation/setShowsProgressPanel: -Objective-C/instm/NSWindow/setShowsResizeIndicator: -Objective-C/instm/QTMovieView/setShowsResizeIndicator: -Objective-C/instm/NSButtonCell/setShowsStateBy: -Objective-C/instm/NSMenu/setShowsStateColumn: -Objective-C/instm/NSAlert/setShowsSuppressionButton: -Objective-C/instm/NSWindow/setShowsToolbarButton: -C/func/-/setsid -Objective-C/instm/NSImageRep/setSize: -Objective-C/instm/NSImage/setSize: -Objective-C/instm/NSPointerFunctions/setSizeFunction: -Objective-C/instm/NSToolbar/setSizeMode: -JavaScript/instm/SVGTransform/setSkewX -JavaScript/instm/SVGTransform/setSkewY -Objective-C/instm/NSSliderCell/setSliderType: -Objective-C/instm/NSTextView/setSmartInsertDeleteEnabled: -Objective-C/instm/WebView/setSmartInsertDeleteEnabled: -C++/instm/IOATABusInfo/setSocketType -C/func/-/setsockopt -Objective-C/instm/NSTableColumn/setSortDescriptorPrototype: -Objective-C/instm/NSTreeController/setSortDescriptors: -Objective-C/instm/NSMetadataQuery/setSortDescriptors: -Objective-C/instm/NSArrayController/setSortDescriptors: -Objective-C/instm/NSTableView/setSortDescriptors: -Objective-C/instm/NSFetchRequest/setSortDescriptors: -Objective-C/instm/NSButton/setSound: -Objective-C/instm/CalAlarm/setSound: -Objective-C/instm/NSButtonCell/setSound: -Objective-C/instm/NSNibConnector/setSource: -Objective-C/instm/NSEntityMapping/setSourceEntityName: -Objective-C/instm/NSEntityMapping/setSourceEntityVersionHash: -Objective-C/instm/NSEntityMapping/setSourceExpression: -Objective-C/instm/DRFSObject/setSpecificName:forFilesystem: -Objective-C/instm/DRFSObject/setSpecificNames: -C/func/-/SetSpeechInfo -C/func/-/SetSpeechPitch -C/func/-/SetSpeechProperty -C/func/-/SetSpeechRate -C++/instm/IOBDMedia/setSpeed -C++/instm/IODVDMedia/setSpeed -C++/instm/IOCDMedia/setSpeed -Objective-C/intfm/CAMediaTiming/setSpeed: -Objective-C/instm/CLLocation/setSpeed: -Objective-C/instm/NSTextView/setSpellingState:range: -Objective-C/instm/CAEmitterCell/setSpin: -Objective-C/instm/CAEmitterLayer/setSpin: -Objective-C/instm/CAEmitterCell/setSpinRange: -Objective-C/instm/NSThread/setStackSize: -Objective-C/instm/NSManagedObjectContext/setStalenessInterval: -Objective-C/instm/NSXMLDocument/setStandalone: -Objective-C/instm/NSDateFormatter/setStandaloneMonthSymbols: -Objective-C/instm/NSDateFormatter/setStandaloneQuarterSymbols: -Objective-C/instm/NSDateFormatter/setStandaloneWeekdaySymbols: -Objective-C/instm/NSTask/setStandardError: -Objective-C/instm/WebPreferences/setStandardFontFamily: -Objective-C/instm/NSTask/setStandardInput: -Objective-C/instm/NSTask/setStandardOutput: -JavaScript/instm/Range/setStart -JavaScript/instm/Range/setStartAfter -JavaScript/instm/Range/setStartBefore -Objective-C/instm/CalEvent/setStartDate: -Objective-C/instm/NSTextList/setStartingItemNumber: -Objective-C/instm/PDFAnnotationLine/setStartLineStyle: -Objective-C/instm/PDFAnnotationLine/setStartPoint: -Objective-C/instm/CAGradientLayer/setStartPoint: -Objective-C/instm/CATransition/setStartProgress: -Objective-C/instm/NSRangeSpecifier/setStartSpecifier: -Objective-C/instm/NSWhoseSpecifier/setStartSubelementIdentifier: -Objective-C/instm/NSWhoseSpecifier/setStartSubelementIndex: -C++/instm/IOFramebuffer/setStartupDisplayMode -C/func/-/setstate -C++/instm/IOAudioEngine/setState -Objective-C/instm/NSButton/setState: -Objective-C/instm/PDFAnnotationButtonWidget/setState: -Objective-C/instm/IMAVButton/setState: -Objective-C/instm/NSMenuItem/setState: -Objective-C/instm/NSCell/setState: -Objective-C/instm/NSMatrix/setState:atRow:column: -Objective-C/instm/CalAttendee/setStatus: -JavaScript/instm/SVGFEGaussianBlurElement/setStdDeviation -Objective-C/instm/QTMovieView/setStepButtonsVisible: -Objective-C/instm/NSPropertyDescription/setStoredInExternalRecord: -Objective-C/instm/NSPersistentStoreCoordinator/setStoresFastSyncDetailsAtURL:forPersistentStore: -C++/instm/IOStream/setStreamMode -Objective-C/instm/SFAuthorizationView/setString: -Objective-C/instm/NSMutableString/setString: -Objective-C/instm/NSText/setString: -Objective-C/instm/CATextLayer/setString: -Objective-C/instm/NSPasteboardItem/setString:forType: -Objective-C/instm/NSPasteboard/setString:forType: -Objective-C/intfm/FxParameterSettingAPI_v2/setStringParameterValue:toParm: -JavaScript/instm/CSSPrimitiveValue/setStringValue -Objective-C/instm/PDFAnnotationChoiceWidget/setStringValue: -Objective-C/instm/PDFAnnotationTextWidget/setStringValue: -Objective-C/instm/NSControl/setStringValue: -Objective-C/instm/NSXMLNode/setStringValue: -Objective-C/instm/NSCell/setStringValue: -Objective-C/instm/NSXMLNode/setStringValue:resolvingEntities: -Objective-C/instm/NSColor/setStroke -JavaScript/instm/CanvasRenderingContext2D/setStrokeColor -Objective-C/instm/CAShapeLayer/setStrokeColor: -Objective-C/instm/PDFBorder/setStyle: -Objective-C/instm/NSProgressIndicator/setStyle: -Objective-C/instm/CAEmitterCell/setStyle: -Objective-C/instm/CALayer/setStyle: -Objective-C/instm/NSWindow/setStyleMask: -JavaScript/instm/InspectorBackend/setStyleProperty -JavaScript/instm/InspectorBackend/setStyleText -Objective-C/instm/NSEntityDescription/setSubentities: -Objective-C/instm/NSToolbarItemGroup/setSubitems: -Objective-C/instm/CALayer/setSublayers: -Objective-C/instm/CALayer/setSublayerTransform: -Objective-C/instm/NSMenuItem/setSubmenu: -Objective-C/instm/NSMenu/setSubmenu:forItem: -Objective-C/instm/NSRuleEditor/setSubrowsKeyPath: -Objective-C/instm/NSSpellChecker/setSubstitutionsPanelAccessoryViewController: -C++/instm/IOAudioControl/setSubType -Objective-C/instm/CATransition/setSubtype: -Objective-C/instm/NSView/setSubviews: -Objective-C/instm/NSMenu/setSupermenu: -Objective-C/instm/IOBluetoothDevice/setSupervisionTimeout: -Objective-C/instm/IKImageView/setSupportsDragAndDrop: -Objective-C/instm/NSDistributedNotificationCenter/setSuspended: -Objective-C/instm/NSOperationQueue/setSuspended: -Objective-C/instm/ISyncClient/setSyncAlertHandler:selector: -Objective-C/instm/ISyncClient/setSyncAlertToolPath: -Objective-C/instm/NSXMLDTDNode/setSystemID: -Objective-C/instm/NSXMLDTD/setSystemID: -C/func/-/SetSystemUIMode -C/func/-/setsyx -Objective-C/instm/NSMatrix/setTabKeyTraversesCells: -Objective-C/instm/NSTableHeaderView/setTableView: -Objective-C/instm/NSTableColumn/setTableView: -Objective-C/instm/WebPreferences/setTabsToLinks: -Objective-C/instm/NSMutableParagraphStyle/setTabStops: -Objective-C/instm/NSTabView/setTabViewType: -C++/instm/IOMemoryDescriptor/setTag -Objective-C/instm/NSToolbarItem/setTag: -Objective-C/instm/NSActionCell/setTag: -Objective-C/instm/IMAVControl/setTag: -Objective-C/instm/NSMenuItem/setTag: -Objective-C/instm/NSControl/setTag: -Objective-C/instm/NSCell/setTag: -Objective-C/instm/NSSegmentedCell/setTag:forSegment: -Objective-C/instm/NSMutableParagraphStyle/setTailIndent: -Objective-C/instm/NSBrowser/setTakesTitleFromPreviousColumn: -Objective-C/instm/NSToolbarItem/setTarget: -Objective-C/instm/NSActionCell/setTarget: -Objective-C/instm/NSColorPanel/setTarget: -Objective-C/instm/NSFontManager/setTarget: -Objective-C/instm/NSStatusItem/setTarget: -Objective-C/instm/FxTexture/setTarget: -Objective-C/instm/IMAVControl/setTarget: -Objective-C/instm/NSMenuItem/setTarget: -Objective-C/instm/NSControl/setTarget: -Objective-C/instm/NSInvocation/setTarget: -Objective-C/instm/ABPeoplePickerView/setTarget: -Objective-C/instm/NSCell/setTarget: -C++/instm/IOSCSIParallelInterfaceController/SetTargetProperty -Objective-C/instm/NSMenu/setTearOffMenuRepresentation: -Objective-C/instm/NSImage/setTemplate: -Objective-C/instm/NSLayoutManager/setTemporaryAttributes:forCharacterRange: -JavaScript/data/Document/setter -C/func/-/setterm -Objective-C/instm/NSWhoseSpecifier/setTest: -Objective-C/instm/NSForm/setTextAlignment: -Objective-C/instm/NSNumberFormatter/setTextAttributesForNegativeInfinity: -Objective-C/instm/NSNumberFormatter/setTextAttributesForNegativeValues: -Objective-C/instm/NSNumberFormatter/setTextAttributesForNil: -Objective-C/instm/NSNumberFormatter/setTextAttributesForNotANumber: -Objective-C/instm/NSNumberFormatter/setTextAttributesForPositiveInfinity: -Objective-C/instm/NSNumberFormatter/setTextAttributesForPositiveValues: -Objective-C/instm/NSNumberFormatter/setTextAttributesForZero: -Objective-C/instm/NSForm/setTextBaseWritingDirection: -Objective-C/instm/NSMutableParagraphStyle/setTextBlocks: -Objective-C/instm/NSDatePicker/setTextColor: -Objective-C/instm/NSDatePickerCell/setTextColor: -Objective-C/instm/NSTextField/setTextColor: -Objective-C/instm/NSTextFieldCell/setTextColor: -Objective-C/instm/NSText/setTextColor: -Objective-C/instm/NSText/setTextColor:range: -Objective-C/instm/NSTextView/setTextContainer: -Objective-C/instm/NSLayoutManager/setTextContainer:forGlyphRange: -Objective-C/instm/NSTextView/setTextContainerInset: -Objective-C/instm/NSForm/setTextFont: -Objective-C/instm/NSMutableParagraphStyle/setTextLists: -JavaScript/instm/InspectorBackend/setTextNodeValue -Objective-C/instm/WebView/setTextSizeMultiplier: -Objective-C/instm/NSLayoutManager/setTextStorage: -Objective-C/instm/FxTexture/setTextureCoords:right:bottom:top: -Objective-C/instm/FxTexture/setTextureId: -Objective-C/instm/NSOpenGLContext/setTextureImageToPixelBuffer:colorBuffer: -Objective-C/instm/NSTextContainer/setTextView: -Objective-C/instm/NSNumberFormatter/setThousandSeparator: -Objective-C/instm/NSOperation/setThreadPriority: -Objective-C/instm/NSThread/setThreadPriority: -Objective-C/clm/NSThread/setThreadPriority: -Objective-C/instm/PDFThumbnailView/setThumbnailSize: -Objective-C/instm/NSSlider/setTickMarkPosition: -Objective-C/instm/NSSliderCell/setTickMarkPosition: -Objective-C/instm/NSLevelIndicator/setTickMarkPosition: -Objective-C/instm/NSLevelIndicatorCell/setTickMarkPosition: -Objective-C/instm/NSMutableParagraphStyle/setTighteningFactorForTruncation: -Objective-C/instm/CATiledLayer/setTileSize: -Objective-C/instm/NSDatePicker/setTimeInterval: -Objective-C/instm/NSDatePickerCell/setTimeInterval: -C/func/-/settimeofday -Objective-C/intfm/CAMediaTiming/setTimeOffset: -C++/instm/IOTimerEventSource/setTimeout -JavaScript/instm/DOMWindow/setTimeout -JavaScript/instm/WorkerContext/setTimeout -Objective-C/instm/SBApplication/setTimeout: -C++/instm/IOSCSIParallelInterfaceController/SetTimeoutForTask -C++/instm/ATATimerEventSource/setTimeoutFunc -C++/instm/IOTimerEventSource/setTimeoutFunc -Objective-C/instm/NSMutableURLRequest/setTimeoutInterval: -C++/instm/IOATACommand/setTimeoutMS -C++/instm/IOTimerEventSource/setTimeoutMS -C++/instm/IOTimerEventSource/setTimeoutTicks -C++/instm/IOTimerEventSource/setTimeoutUS -Objective-C/instm/NSDateFormatter/setTimeStyle: -Objective-C/instm/NSDatePicker/setTimeZone: -Objective-C/instm/NSDateFormatter/setTimeZone: -Objective-C/instm/NSDatePickerCell/setTimeZone: -Objective-C/instm/NSCalendar/setTimeZone: -Objective-C/instm/CAAnimation/setTimingFunction: -Objective-C/instm/CAKeyframeAnimation/setTimingFunctions: -Objective-C/instp/PSClient/settings -Objective-C/instp/PSFeed/settings -Objective-C/intfm/ApertureExportPlugIn/settingsView -Objective-C/instm/CalCalendarItem/setTitle: -Objective-C/instm/NSSliderCell/setTitle: -Objective-C/instm/NSSlider/setTitle: -Objective-C/instm/NSFormCell/setTitle: -Objective-C/instm/NSStatusItem/setTitle: -Objective-C/instm/NSButton/setTitle: -Objective-C/instm/NSViewController/setTitle: -Objective-C/instm/CBIdentityPicker/setTitle: -Objective-C/instm/NSPopUpButton/setTitle: -Objective-C/instm/NSPopUpButtonCell/setTitle: -Objective-C/instm/NSBox/setTitle: -Objective-C/instm/CalCalendar/setTitle: -Objective-C/instm/NSSavePanel/setTitle: -Objective-C/instm/NSButtonCell/setTitle: -Objective-C/instm/NSMenuItem/setTitle: -Objective-C/instm/IOBluetoothDeviceSelectorController/setTitle: -Objective-C/instm/IOBluetoothObjectPushUIController/setTitle: -Objective-C/instm/IOBluetoothPairingController/setTitle: -Objective-C/instm/IOBluetoothServiceBrowserController/setTitle: -Objective-C/instm/NSWindow/setTitle: -Objective-C/instm/NSMenu/setTitle: -Objective-C/instm/NSCell/setTitle: -Objective-C/instm/NSBrowser/setTitle:ofColumn: -Objective-C/instm/NSFormCell/setTitleAlignment: -Objective-C/instm/NSForm/setTitleAlignment: -Objective-C/instm/NSForm/setTitleBaseWritingDirection: -Objective-C/instm/NSFormCell/setTitleBaseWritingDirection: -Objective-C/instm/NSSliderCell/setTitleCell: -Objective-C/instm/NSSlider/setTitleCell: -Objective-C/instm/NSSlider/setTitleColor: -Objective-C/instm/NSSliderCell/setTitleColor: -Objective-C/instm/NSBrowser/setTitled: -Objective-C/instm/NSFormCell/setTitleFont: -Objective-C/instm/NSSliderCell/setTitleFont: -Objective-C/instm/NSSlider/setTitleFont: -Objective-C/instm/NSForm/setTitleFont: -Objective-C/instm/NSBox/setTitleFont: -Objective-C/instm/NSBox/setTitlePosition: -Objective-C/instm/NSFormCell/setTitleWidth: -Objective-C/instm/NSFormCell/setTitleWithMnemonic: -Objective-C/instm/NSButton/setTitleWithMnemonic: -Objective-C/instm/NSBox/setTitleWithMnemonic: -Objective-C/instm/NSButtonCell/setTitleWithMnemonic: -Objective-C/instm/NSMenuItem/setTitleWithMnemonic: -Objective-C/instm/NSTextField/setTitleWithMnemonic: -Objective-C/instm/NSCell/setTitleWithMnemonic: -Objective-C/instm/NSWindow/setTitleWithRepresentedFilename: -Objective-C/instm/SBObject/setTo: -Objective-C/instm/NSTokenFieldCell/setTokenizingCharacterSet: -Objective-C/instm/NSTokenField/setTokenizingCharacterSet: -Objective-C/instm/NSTokenFieldCell/setTokenStyle: -Objective-C/instm/NSTokenField/setTokenStyle: -Objective-C/instm/NSWindow/setToolbar: -Objective-C/instm/NSToolbarItem/setToolTip: -Objective-C/instm/NSStatusItem/setToolTip: -Objective-C/instm/NSTabViewItem/setToolTip: -Objective-C/instm/NSMenuItem/setToolTip: -Objective-C/instm/NSView/setToolTip: -Objective-C/instm/NSMatrix/setToolTip:forCell: -Objective-C/instm/NSSegmentedCell/setToolTip:forSegment: -Objective-C/instm/NSScriptExecutionContext/setTopLevelObject: -Objective-C/instm/NSPrintInfo/setTopMargin: -Objective-C/instm/NSCache/setTotalCostLimit: -Objective-C/instm/CABasicAnimation/setToValue: -C/func/-/SetTrackAlternate -Objective-C/instm/QTTrack/setTrackAttributes: -Objective-C/instm/DRCDTextBlock/setTrackDictionaries: -C/func/-/SetTrackDimensions -C/func/-/SetTrackEnabled -Objective-C/instm/NSSegmentedCell/setTrackingMode: -C/func/-/SetTrackLayer -C/func/-/SetTrackMatrix -C/func/-/SetTrackOffset -C/func/-/SetTrackReference -C/func/-/SetTrackSoundLocalizationSettings -C/func/-/SetTrackUsage -C/func/-/SetTrackVolume -Objective-C/instm/NSDrawer/setTrailingOffset: -C++/instm/IOATACommand/setTransferChunkSize -Objective-C/instm/IKCameraDeviceView/setTransferMode: -Objective-C/instm/IKScannerDeviceView/setTransferMode: -JavaScript/instm/CanvasRenderingContext2D/setTransform -Objective-C/instm/CALayer/setTransform: -Objective-C/instm/NSAffineTransform/setTransformStruct: -Objective-C/instm/NSPropertyDescription/setTransient: -JavaScript/instm/SVGTransform/setTranslate -Objective-C/instm/QTMovieView/setTranslateButtonVisible: -Objective-C/instm/NSButton/setTransparent: -Objective-C/instm/NSBox/setTransparent: -Objective-C/instm/NSButtonCell/setTransparent: -Objective-C/instm/NSSavePanel/setTreatsFilePackagesAsDirectories: -Objective-C/instm/NSCell/setTruncatesLastVisibleLine: -Objective-C/instm/CATextLayer/setTruncationMode: -C/func/-/setttyent -Objective-C/instm/NSDateFormatter/setTwoDigitStartDate: -Objective-C/instm/NSNetService/setTXTRecordData: -C++/instm/IOAudioControl/setType -Objective-C/instm/CATransition/setType: -Objective-C/instm/CalCalendar/setType: -Objective-C/instm/CAGradientLayer/setType: -Objective-C/instm/NSCell/setType: -Objective-C/instm/NSLayoutManager/setTypesetter: -Objective-C/instm/NSATSTypesetter/setTypesetterBehavior: -Objective-C/instm/NSLayoutManager/setTypesetterBehavior: -Objective-C/instm/NSTypesetter/setTypesetterBehavior: -Objective-C/instm/NSTextView/setTypingAttributes: -Objective-C/instm/WebView/setTypingStyle: -C/func/-/setuid -Objective-C/instm/CalCalendarItem/setUid: -Objective-C/instm/CalCalendar/setUid: -Objective-C/instm/WebView/setUIDelegate: -C++/instm/IOATADevConfig/setUltraMode -C++/instm/IOATABusInfo/setUltraModes -Objective-C/instm/NSPersistentDocument/setUndoManager: -Objective-C/instm/NSDocument/setUndoManager: -Objective-C/instm/NSManagedObjectContext/setUndoManager: -Objective-C/instm/NSUniqueIDSpecifier/setUniqueID: -C++/instm/IOATACommand/setUnit -C++/instm/IONetworkInterface/setUnitNumber -C++/instm/IOATABusInfo/setUnits -C++/instm/Test/setUp -C++/instm/TestSuite/setUp -C++/instm/TestCase/setUp -Objective-C/instm/IOBluetoothDeviceInquiry/setUpdateNewDeviceNames: -Objective-C/instm/NSCell/setUpFieldEditorAttributes: -Objective-C/instm/NSTextFieldCell/setUpFieldEditorAttributes: -Objective-C/instm/DRSetupPanel/setupForDisplay -Objective-C/instm/NSView/setUpGState -Objective-C/clm/DREraseSetupPanel/setupPanel -Objective-C/clm/DRBurnSetupPanel/setupPanel -Objective-C/instm/NSObject(DRSetupPanelDelegate)/setupPanel:determineBestDeviceOfA:orB: -Objective-C/instm/NSObject(DRSetupPanelDelegate)/setupPanel:deviceContainsSuitableMedia:promptString: -Objective-C/instm/NSObject(DRSetupPanelDelegate)/setupPanel:deviceCouldBeTarget: -Objective-C/instm/NSObject(DRSetupPanelDelegate)/setupPanelDeviceSelectionChanged: -Objective-C/instm/NSObject(DRSetupPanelDelegate)/setupPanelShouldHandleMediaReservations: -Objective-C/instm/NSPrintInfo/setUpPrintOperationDefaultValues -C/func/-/setupterm -JavaScript/instm/SVGPaint/setUri -Objective-C/instm/NSXMLDocument/setURI: -Objective-C/instm/NSXMLNode/setURI: -Objective-C/instm/CalCalendarItem/setUrl: -Objective-C/instm/PDFAnnotationLink/setURL: -Objective-C/instm/NSMutableURLRequest/setURL: -Objective-C/instm/NSPathComponentCell/setURL: -Objective-C/instm/PDFActionURL/setURL: -Objective-C/instm/PDFActionRemoteGoTo/setURL: -Objective-C/instm/CalAlarm/setUrl: -Objective-C/instm/NSPersistentStore/setURL: -Objective-C/instm/NSPathCell/setURL: -Objective-C/instm/NSPathControl/setURL: -Objective-C/instm/NSUserDefaults/setURL:forKey: -Objective-C/instm/NSPersistentStoreCoordinator/setURL:forPersistentStore: -C++/instm/IOAudioControl/setUsage -C++/instm/IOSCSIProtocolInterface/SetUserClientExclusivityState -Objective-C/intfm/ApertureEditManager/setUserDefaultsValue:forKey: -Objective-C/clm/NSFont/setUserFixedPitchFont: -Objective-C/clm/NSFont/setUserFont: -Objective-C/instm/NSMigrationManager/setUserInfo: -Objective-C/instm/NSEntityMapping/setUserInfo: -Objective-C/instm/NSPropertyMapping/setUserInfo: -Objective-C/instm/NSPropertyDescription/setUserInfo: -Objective-C/instm/NSEntityDescription/setUserInfo: -Objective-C/instm/NSCell/setUserInterfaceLayoutDirection: -Objective-C/instm/PDFAnnotation/setUserName: -Objective-C/instm/XGTwoWayRandomAuthenticator/setUsername: -C/func/-/setusershell -Objective-C/instm/WebPreferences/setUserStyleSheetEnabled: -Objective-C/instm/WebPreferences/setUserStyleSheetLocation: -Objective-C/instm/NSTableView/setUsesAlternatingRowBackgroundColors: -Objective-C/instm/NSComboBox/setUsesDataSource: -Objective-C/instm/NSComboBoxCell/setUsesDataSource: -Objective-C/instm/CalRecurrenceEnd/setUsesEndDate: -Objective-C/instm/NSImage/setUsesEPSOnResolutionMismatch: -Objective-C/instm/NSSpeechSynthesizer/setUsesFeedbackWindow: -Objective-C/instm/NSTextView/setUsesFindPanel: -Objective-C/instm/NSATSTypesetter/setUsesFontLeading: -Objective-C/instm/NSLayoutManager/setUsesFontLeading: -Objective-C/instm/NSTypesetter/setUsesFontLeading: -Objective-C/instm/NSTextView/setUsesFontPanel: -Objective-C/instm/NSText/setUsesFontPanel: -Objective-C/instm/NSNumberFormatter/setUsesGroupingSeparator: -Objective-C/instm/NSPopUpButtonCell/setUsesItemFromMenu: -Objective-C/instm/NSObjectController/setUsesLazyFetching: -Objective-C/instm/WebPreferences/setUsesPageCache: -Objective-C/instm/NSTextView/setUsesRuler: -Objective-C/instm/NSLayoutManager/setUsesScreenFonts: -Objective-C/instm/NSNumberFormatter/setUsesSignificantDigits: -Objective-C/instm/NSCell/setUsesSingleLineMode: -Objective-C/instm/NSPointerFunctions/setUsesStrongWriteBarrier: -Objective-C/instm/NSProgressIndicator/setUsesThreadedAnimation: -Objective-C/clm/NSMenuItem/setUsesUserKeyEquivalents: -Objective-C/instm/NSPointerFunctions/setUsesWeakReadAndWriteBarriers: -C/func/-/setutxent -Objective-C/instm/NSMatrix/setValidateSize: -Objective-C/instm/NSPropertyDescription/setValidationPredicates:withValidationWarnings: -C++/instm/IOFireWireSerialBusProtocolTransport/SetValidAutoSenseData -C++/instm/IOAudioControl/setValue -C++/instm/OSNumber/setValue -Objective-C/instm/NSObject/setValue: -Objective-C/instm/ODRecord/setValue:forAttribute:error: -Objective-C/instm/NSMutableURLRequest/setValue:forHTTPHeaderField: -Objective-C/intfm/QCCompositionRenderer/setValue:forInputKey: -Objective-C/instm/NSAtomicStoreCacheNode/setValue:forKey: -Objective-C/instm/NSSet/setValue:forKey: -Objective-C/instm/NSObject/setValue:forKey: -Objective-C/clm/CATransaction/setValue:forKey: -Objective-C/instm/NSArray/setValue:forKey: -Objective-C/instm/NSMutableDictionary/setValue:forKey: -Objective-C/instm/NSManagedObject/setValue:forKey: -Objective-C/instm/NSObject/setValue:forKeyPath: -Objective-C/instm/QCPlugIn/setValue:forOutputKey: -Objective-C/instm/ABRecord/setValue:forProperty: -Objective-C/intfm/IMKStateSetting/setValue:forTag:client: -Objective-C/instm/NSObject/setValue:forUndefinedKey: -Objective-C/instm/AMWorkflow/setValue:forVariableWithName: -Objective-C/instm/NSTextBlock/setValue:type:forDimension: -C++/clm/IOAudioControl/setValueAction -Objective-C/instm/NSPropertyMapping/setValueExpression: -JavaScript/instm/HTMLInputElement/setValueForUser -Objective-C/instm/CAPropertyAnimation/setValueFunction: -Objective-C/instm/NSMetadataQuery/setValueListAttributes: -Objective-C/instm/CAKeyframeAnimation/setValues: -Objective-C/instm/NSOpenGLContext/setValues:forParameter: -Objective-C/instm/ABPeoplePickerView/setValueSelectionBehavior: -Objective-C/instm/NSObject/setValuesForKeysWithDictionary: -Objective-C/clm/NSValueTransformer/setValueTransformer:forName: -Objective-C/instm/NSAttributeDescription/setValueTransformerName: -Objective-C/instm/NSStepper/setValueWraps: -Objective-C/instm/NSStepperCell/setValueWraps: -JavaScript/instm/CSSVariablesDeclaration/setVariable -C/func/-/setvbuf -Objective-C/instm/CAEmitterLayer/setVelocity: -Objective-C/instm/CAEmitterCell/setVelocity: -Objective-C/instm/CAEmitterCell/setVelocityRange: -Objective-C/instm/DRBurnProgressPanel/setVerboseProgressStatus: -Objective-C/instm/DRBurn(PropertyConvenienceMethods)/setVerifyDisc: -Objective-C/instm/NSXMLDocument/setVersion: -Objective-C/clm/NSObject/setVersion: -Objective-C/instm/NSPropertyDescription/setVersionHashModifier: -Objective-C/instm/NSEntityDescription/setVersionHashModifier: -Objective-C/instm/NSManagedObjectModel/setVersionIdentifiers: -Objective-C/instm/NSSplitView/setVertical: -Objective-C/instm/NSTextBlock/setVerticalAlignment: -Objective-C/instm/PDFBorder/setVerticalCornerRadius: -Objective-C/instm/NSScrollView/setVerticalLineScroll: -Objective-C/instm/NSPrintInfo/setVerticallyCentered: -Objective-C/instm/NSText/setVerticallyResizable: -Objective-C/instm/NSTableView/setVerticalMotionCanBeginDrag: -Objective-C/instm/NSScrollView/setVerticalPageScroll: -Objective-C/instm/NSPrintInfo/setVerticalPagination: -Objective-C/instm/NSScrollView/setVerticalRulerView: -Objective-C/instm/NSScrollView/setVerticalScroller: -Objective-C/instm/NSDateFormatter/setVeryShortMonthSymbols: -Objective-C/instm/NSDateFormatter/setVeryShortStandaloneMonthSymbols: -Objective-C/instm/NSDateFormatter/setVeryShortStandaloneWeekdaySymbols: -Objective-C/instm/NSDateFormatter/setVeryShortWeekdaySymbols: -Objective-C/instm/IMAVManager/setVideoDataSource: -Objective-C/instm/IMAVManager/setVideoOptimizationOptions: -Objective-C/instm/QTCaptureView/setVideoPreviewConnection: -Objective-C/instm/NSToolbarItem/setView: -Objective-C/instm/NSStatusItem/setView: -Objective-C/instm/NSViewController/setView: -Objective-C/instm/NSCollectionViewItem/setView: -Objective-C/instm/NSOpenGLLayer/setView: -Objective-C/instm/NSTabViewItem/setView: -Objective-C/instm/NSMenuItem/setView: -Objective-C/instm/NSOpenGLContext/setView: -Objective-C/instm/NSViewAnimation/setViewAnimations: -Objective-C/instm/NSWindow/setViewsNeedDisplay: -Objective-C/instm/NSToolbarItem/setVisibilityPriority: -Objective-C/instm/NSToolbar/setVisible: -Objective-C/instm/QTMovie/setVisualContext: -Objective-C/instm/QTCaptureVideoPreviewOutput/setVisualContext:forConnection: -C++/instm/IOEthernetController/setVlanTag -Objective-C/instm/NSSpeechSynthesizer/setVoice: -Objective-C/instm/NSUserDefaults/setVolatileDomain:forName: -Objective-C/instm/QTCaptureAudioPreviewOutput/setVolume: -Objective-C/instm/NSSpeechSynthesizer/setVolume: -Objective-C/instm/QTTrack/setVolume: -Objective-C/instm/NSSound/setVolume: -Objective-C/instm/QTMovie/setVolume: -Objective-C/instm/QTMovieView/setVolumeButtonVisible: -C++/instm/IOEthernetController/setWakeOnMagicPacket -Objective-C/instm/NSView/setWantsLayer: -Objective-C/instm/NSTextFieldCell/setWantsNotificationForMarkedText: -Objective-C/instm/NSView/setWantsRestingTouches: -Objective-C/instm/NSLevelIndicator/setWarningValue: -Objective-C/instm/NSLevelIndicatorCell/setWarningValue: -Objective-C/instm/WebScriptObject/setWebScriptValueAtIndex:value: -Objective-C/instm/NSDateComponents/setWeek: -Objective-C/instm/NSDateComponents/setWeekday: -Objective-C/instm/NSDateComponents/setWeekdayOrdinal: -Objective-C/instm/NSDateFormatter/setWeekdaySymbols: -Objective-C/instm/CalNthWeekDay/setWeekNumber: -Objective-C/instm/NSTableColumn/setWidth: -Objective-C/instm/FxImage/setWidth: -Objective-C/instm/FxImage/setWidth:andHeight: -Objective-C/instm/NSSegmentedCell/setWidth:forSegment: -Objective-C/instm/NSSegmentedControl/setWidth:forSegment: -Objective-C/instm/NSBrowser/setWidth:ofColumn: -Objective-C/instm/NSTextBlock/setWidth:type:forLayer: -Objective-C/instm/NSTextBlock/setWidth:type:forLayer:edge: -Objective-C/instm/NSTextContainer/setWidthTracksTextView: -Objective-C/instm/NSBezierPath/setWindingRule: -Objective-C/instm/NSWindowController/setWindow: -Objective-C/instm/NSDocument/setWindow: -Objective-C/instm/NSWindow/setWindowController: -Objective-C/instm/NSWindowController/setWindowFrameAutosaveName: -Objective-C/instm/NSMenuView/setWindowFrameForAttachingToRect:onScreen:preferredEdge:popUpSelectedItem: -Objective-C/instm/PDFAnnotationText/setWindowIsOpen: -Objective-C/instm/NSApplication/setWindowsMenu: -Objective-C/instm/NSApplication/setWindowsNeedUpdate: -Objective-C/clm/NSSet/setWithArray: -Objective-C/clm/NSMutableSet/setWithCapacity: -Objective-C/clm/NSSet/setWithObject: -Objective-C/clm/NSSet/setWithObjects: -Objective-C/clm/NSSet/setWithObjects:count: -Objective-C/clm/NSSet/setWithSet: -Objective-C/instm/NSSpellChecker/setWordFieldStringValue: -Objective-C/instm/NSTextStorage/setWords: -Objective-C/instm/AMWorkflowController/setWorkflow: -Objective-C/instm/AMWorkflowView/setWorkflowController: -Objective-C/instm/AMWorkflowController/setWorkflowView: -C++/instm/IOEventSource/setWorkLoop -Objective-C/instm/NSPanel/setWorksWhenModal: -Objective-C/instm/CATextLayer/setWrapped: -Objective-C/instm/NSCell/setWraps: -C++/instm/IOBlockStorageDevice/setWriteCacheState -Objective-C/instm/CAEmitterCell/setXAcceleration: -C/func/-/setxattr -Objective-C/intfm/FxParameterSettingAPI/setXValue:YValue:toParm:atTime: -Objective-C/instm/CAEmitterCell/setYAcceleration: -Objective-C/instm/NSDateComponents/setYear: -Objective-C/instm/CAEmitterCell/setZAcceleration: -Objective-C/instm/NSNumberFormatter/setZeroSymbol: -Objective-C/instm/QTMovieView/setZoomButtonsVisible: -Objective-C/instm/IKImageView/setZoomFactor: -Objective-C/instm/IKImageBrowserView/setZoomValue: -Objective-C/instm/CALayer/setZPosition: -C/tdef/-/sf_accept_func -C/tdef/-/sf_attach_func -C/tdef/-/sf_bind_func -C/tdef/-/sf_connect_in_func -C/tdef/-/sf_connect_out_func -C/tdef/-/sf_data_in_func -C/tdef/-/sf_data_out_func -C/tdef/-/sf_detach_func -C/tdef/-/sf_getoption_func -C/tdef/-/sf_getpeername_func -C/tdef/-/sf_getsockname_func -C/tdef/-/sf_ioctl_func -C/tdef/-/sf_listen_func -C/tdef/-/sf_notify_func -C/tdef/-/sf_setoption_func -C/tdef/-/sf_unregistered_func -Objective-C/cl/-/SFAuthorization -Objective-C/cl/-/SFAuthorizationPluginView -C/data/-/SFAuthorizationPluginViewUserNameKey -C/data/-/SFAuthorizationPluginViewUserShortNameKey -C/econst/-/SFAuthorizationStartupState -Objective-C/cl/-/SFAuthorizationView -C/econst/-/SFAuthorizationViewInProgressState -C/econst/-/SFAuthorizationViewLockedState -C/tdef/-/SFAuthorizationViewState -C/econst/-/SFAuthorizationViewUnlockedState -C/tdef/-/SFButtonType -C/econst/-/SFButtonTypeBack -C/econst/-/SFButtonTypeCancel -C/econst/-/SFButtonTypeLogin -C/econst/-/SFButtonTypeOK -Objective-C/cl/-/SFCertificatePanel -Objective-C/cl/-/SFCertificateTrustPanel -Objective-C/cl/-/SFCertificateView -Objective-C/cl/-/SFChooseIdentityPanel -Objective-C/cl/-/SFKeychainSavePanel -Objective-C/cl/-/SFKeychainSettingsPanel -C/func/-/sflt_attach -C/tag/-/sflt_data_flag_t -C/func/-/sflt_detach -C/tag/-/sflt_event_t -C/econst/sflt_flags/SFLT_EXTENDED -C/tag/-/sflt_filter -C/tag/-/sflt_flags -C/econst/sflt_flags/SFLT_GLOBAL -C/tdef/-/sflt_handle -C/econst/sflt_flags/SFLT_PROG -C/func/-/sflt_register -C/func/-/sflt_unregister -C/tdef/-/sFlushRecord -C/tdef/-/SFViewType -C/econst/-/SFViewTypeCredentials -C/econst/-/SFViewTypeIdentityAndCredentials -C/func/-/SGEMM -C/func/-/SGEMV -C/tdef/-/sGetAttributeEntry -C/tdef/-/sGetAttributeValue -C/tdef/-/sGetDirNodeInfo -C++/clm/IOSCSIProtocolInterface/sGetPowerTransistionInProgress -C/tdef/-/sGetRecAttribInfo -C/tdef/-/sGetRecordAttributeValueByID -C/tdef/-/sGetRecordAttributeValueByIndex -C/tdef/-/sGetRecordAttributeValueByValue -C/tdef/-/sGetRecordEntry -C/tdef/-/sGetRecordList -C/tdef/-/sGetRecRefInfo -C/func/-/sgetrune -C++/clm/IOSCSIProtocolInterface/sGetUserClientExclusivityState -C/func/-/sha -C/func/-/SHA1 -C/func/-/SHA1_Final -C/func/-/SHA1_Init -C/func/-/SHA1_Update -JavaScript/clconst/WebGLRenderingContext/SHADER_BINARY_FORMATS -JavaScript/clconst/WebGLRenderingContext/SHADER_COMPILER -JavaScript/clconst/WebGLRenderingContext/SHADER_SOURCE_LENGTH -JavaScript/clconst/WebGLRenderingContext/SHADER_TYPE -JavaScript/instm/WebGLRenderingContext/shaderSource -JavaScript/clconst/WebGLRenderingContext/SHADING_LANGUAGE_VERSION -Objective-C/instm/NSView/shadow -JavaScript/data/CanvasRenderingContext2D/shadowBlur -Objective-C/instm/NSShadow/shadowBlurRadius -Objective-C/clm/NSColor/shadowColor -Objective-C/instm/NSShadow/shadowColor -Objective-C/instp/CALayer/shadowColor -Objective-C/instm/CALayer/shadowColor -JavaScript/data/CanvasRenderingContext2D/shadowColor -Objective-C/instm/NSShadow/shadowOffset -Objective-C/instm/CALayer/shadowOffset -Objective-C/instp/CALayer/shadowOffset -JavaScript/data/CanvasRenderingContext2D/shadowOffsetX -JavaScript/data/CanvasRenderingContext2D/shadowOffsetY -Objective-C/instp/CALayer/shadowOpacity -Objective-C/instm/CALayer/shadowOpacity -Objective-C/instm/CALayer/shadowRadius -Objective-C/instp/CALayer/shadowRadius -Objective-C/instm/NSColor/shadowWithLevel: -C++/clm/IOSCSIProtocolInterface/sHandleCheckPowerState -C++/clm/IOSCSIProtocolInterface/sHandleSetPowerState -JavaScript/data/HTMLAnchorElement/shape -JavaScript/data/HTMLAreaElement/shape -Objective-C/clm/CIFilterShape/shapeWithRect: -Objective-C/clm/ABAddressBook/sharedAddressBook -Objective-C/clm/NSAppleEventManager/sharedAppleEventManager -Objective-C/clm/NSApplication/sharedApplication -Objective-C/clm/IMAVManager/sharedAVManager -Objective-C/clm/SFCertificatePanel/sharedCertificatePanel -Objective-C/clm/SFCertificateTrustPanel/sharedCertificateTrustPanel -Objective-C/clm/SFChooseIdentityPanel/sharedChooseIdentityPanel -Objective-C/clm/NSScriptCoercionHandler/sharedCoercionHandler -Objective-C/clm/NSColorPanel/sharedColorPanel -Objective-C/clm/NSColorPanel/sharedColorPanelExists -Objective-C/clm/QCCompositionPickerPanel/sharedCompositionPickerPanel -Objective-C/clm/QCCompositionRepository/sharedCompositionRepository -Objective-C/clm/NSURLCredentialStorage/sharedCredentialStorage -Objective-C/clm/NSDocumentController/sharedDocumentController -Objective-C/clm/NSFontManager/sharedFontManager -Objective-C/clm/NSFontPanel/sharedFontPanel -Objective-C/clm/NSFontPanel/sharedFontPanelExists -Objective-C/instm/NSBundle/sharedFrameworksPath -Objective-C/instm/NSBundle/sharedFrameworksURL -Objective-C/clm/NSGlyphGenerator/sharedGlyphGenerator -Objective-C/clm/NSHelpManager/sharedHelpManager -Objective-C/clm/NSHTTPCookieStorage/sharedHTTPCookieStorage -Objective-C/clm/IKImageEditPanel/sharedImageEditPanel -Objective-C/clm/IBInspector/sharedInstance -Objective-C/clm/IBPlugin/sharedInstance -Objective-C/clm/NSMachBootstrapServer/sharedInstance -Objective-C/clm/NSMessagePortNameServer/sharedInstance -Objective-C/clm/NSSocketPortNameServer/sharedInstance -Objective-C/clm/SFKeychainSavePanel/sharedKeychainSavePanel -Objective-C/clm/SFKeychainSettingsPanel/sharedKeychainSettingsPanel -Objective-C/clm/ISyncManager/sharedManager -Objective-C/clm/QLPreviewPanel/sharedPreviewPanel -Objective-C/clm/QLPreviewPanel/sharedPreviewPanelExists -Objective-C/clm/NSPrintInfo/sharedPrintInfo -Objective-C/clm/NSScriptExecutionContext/sharedScriptExecutionContext -Objective-C/clm/NSScriptSuiteRegistry/sharedScriptSuiteRegistry -Objective-C/clm/IKSlideshow/sharedSlideshow -Objective-C/clm/NSSpellChecker/sharedSpellChecker -Objective-C/clm/NSSpellChecker/sharedSpellCheckerExists -Objective-C/instm/NSBundle/sharedSupportPath -Objective-C/instm/NSBundle/sharedSupportURL -Objective-C/clm/NSTypesetter/sharedSystemTypesetter -Objective-C/clm/NSTypesetter/sharedSystemTypesetterForBehavior: -Objective-C/clm/NSATSTypesetter/sharedTypesetter -Objective-C/clm/NSURLCache/sharedURLCache -Objective-C/clm/NSUserDefaultsController/sharedUserDefaultsController -JavaScript/data/DOMWindow/SharedWorker -JavaScript/cl/-/SharedWorker -JavaScript/cl/-/SharedWorkerContext -Objective-C/clm/NSWorkspace/sharedWorkspace -Objective-C/instm/NSWindow/sharingType -C/tdef/-/sHeader -JavaScript/data/HTMLStyleElement/sheet -JavaScript/data/HTMLLinkElement/sheet -JavaScript/data/ProcessingInstruction/sheet -Objective-C/instm/NSMutableIndexSet/shiftIndexesStartingAtIndex:by: -JavaScript/data/KeyboardEvent/shiftKey -JavaScript/data/MouseEvent/shiftKey -JavaScript/data/TouchEvent/shiftKey -JavaScript/data/WheelEvent/shiftKey -C/func/-/shm_open -C/func/-/shm_unlink -C/func/-/shmat -C/func/-/shmctl -C/func/-/shmdt -C/func/-/shmget -JavaScript/clconst/WebGLRenderingContext/SHORT -Objective-C/instm/NSDateFormatter/shortMonthSymbols -Objective-C/instm/NSDateFormatter/shortQuarterSymbols -Objective-C/instm/NSDateFormatter/shortStandaloneMonthSymbols -Objective-C/instm/NSDateFormatter/shortStandaloneQuarterSymbols -Objective-C/instm/NSDateFormatter/shortStandaloneWeekdaySymbols -Objective-C/instm/NSNumber/shortValue -Objective-C/instm/NSDateFormatter/shortWeekdaySymbols -Objective-C/instm/PDFView/shouldAntiAlias -Objective-C/instm/NSGraphicsContext/shouldAntialias -Objective-C/intfm/ISyncFiltering/shouldApplyRecord:withRecordIdentifier: -Objective-C/instm/CAAnimation/shouldArchiveValueForKey: -Objective-C/instm/CAEmitterCell/shouldArchiveValueForKey: -Objective-C/instm/CALayer/shouldArchiveValueForKey: -Objective-C/intfm/ApertureExportManager/shouldBeginExport -Objective-C/instm/NSResponder/shouldBeTreatedAsInkEvent: -Objective-C/instm/NSATSTypesetter/shouldBreakLineByHyphenatingBeforeCharacterAtIndex: -Objective-C/instm/NSTypesetter/shouldBreakLineByHyphenatingBeforeCharacterAtIndex: -Objective-C/instm/NSATSTypesetter/shouldBreakLineByWordBeforeCharacterAtIndex: -Objective-C/instm/NSTypesetter/shouldBreakLineByWordBeforeCharacterAtIndex: -Objective-C/intfm/ApertureExportManager/shouldCancelExport -Objective-C/instm/NSWindowController/shouldCascadeWindows -Objective-C/instm/NSDocument/shouldChangePrintInfo: -Objective-C/instm/NSTextView/shouldChangeTextInRange:replacementString: -Objective-C/instm/NSTextView/shouldChangeTextInRanges:replacementStrings: -Objective-C/instm/NSWindowController/shouldCloseDocument -Objective-C/instm/NSDocument/shouldCloseWindowController: -Objective-C/instm/NSDocument/shouldCloseWindowController:delegate:shouldCloseSelector:contextInfo: -Objective-C/instm/WebView/shouldCloseWithWindow -Objective-C/instm/NSOutlineView/shouldCollapseAutoExpandedItemsForDeposited: -Objective-C/intfm/QCPlugInOutputImageProvider/shouldColorMatch -Objective-C/intfm/QCPlugInInputImageSource/shouldColorMatch -Objective-C/instm/NSDocumentController/shouldCreateUI -Objective-C/instm/NSView/shouldDelayWindowOrderingForEvent: -Objective-C/instm/PDFAnnotation/shouldDisplay -Objective-C/instm/NSView/shouldDrawColor -Objective-C/instm/NSTextView/shouldDrawInsertionPoint -Objective-C/instm/NSObject/shouldEnableActionForPerson:identifier: -Objective-C/intfm/ApertureExportManager/shouldFinishExport -Objective-C/instm/NSTableView/shouldFocusCell:atColumn:row: -Objective-C/instm/NSObject/shouldHide -Objective-C/instm/PDFAnnotation/shouldPrint -Objective-C/instm/WebPreferences/shouldPrintBackgrounds -Objective-C/instm/NSXMLParser/shouldProcessNamespaces -Objective-C/instm/ISyncSession/shouldPullChangesForEntityName: -Objective-C/instm/ISyncSession/shouldPushAllRecordsForEntityName: -Objective-C/instm/ISyncSession/shouldPushChangesForEntityName: -Objective-C/instm/ISyncSession/shouldReplaceAllRecordsOnClientForEntityName: -Objective-C/instm/ISyncClient/shouldReplaceClientRecordsForEntityName: -Objective-C/instm/NSXMLParser/shouldReportNamespacePrefixes -Objective-C/instm/NSXMLParser/shouldResolveExternalEntities -Objective-C/instm/NSDocument/shouldRunSavePanelWithAccessoryView -Objective-C/instm/ISyncClient/shouldSynchronizeWithClientsOfType: -Objective-C/instm/NSPreferencePane/shouldUnselect -Objective-C/instm/WebView/shouldUpdateWhileOffscreen -JavaScript/instm/Notification/show -Objective-C/instm/IMKCandidates/show: -JavaScript/clconst/NodeFilter/SHOW_ALL -JavaScript/clconst/NodeFilter/SHOW_ATTRIBUTE -JavaScript/clconst/NodeFilter/SHOW_CDATA_SECTION -JavaScript/clconst/NodeFilter/SHOW_COMMENT -JavaScript/clconst/NodeFilter/SHOW_DOCUMENT -JavaScript/clconst/NodeFilter/SHOW_DOCUMENT_FRAGMENT -JavaScript/clconst/NodeFilter/SHOW_DOCUMENT_TYPE -JavaScript/clconst/NodeFilter/SHOW_ELEMENT -JavaScript/clconst/NodeFilter/SHOW_ENTITY -JavaScript/clconst/NodeFilter/SHOW_ENTITY_REFERENCE -JavaScript/clconst/NodeFilter/SHOW_NOTATION -JavaScript/clconst/NodeFilter/SHOW_PROCESSING_INSTRUCTION -JavaScript/clconst/NodeFilter/SHOW_TEXT -Objective-C/intfm/NSUserInterfaceItemSearching/showAllHelpTopicsForSearchString: -Objective-C/instm/IMKCandidates/showAnnotation: -Objective-C/instm/NSLayoutManager/showAttachmentCell:inRect:characterIndex: -Objective-C/instm/NSResponder/showContextHelp: -Objective-C/instm/NSHelpManager/showContextHelpForObject:locationHint: -JavaScript/instm/InspectorFrontendHost/showContextMenu -Objective-C/instm/NSView/showDefinitionForAttributedString:atPoint: -Objective-C/instm/NSView/showDefinitionForAttributedString:range:options:baselineOriginProvider: -Objective-C/instm/NSTextView/showFindIndicatorForRange: -Objective-C/instm/WebView/showGuessPanel: -Objective-C/instm/NSText/showGuessPanel: -Objective-C/instm/NSApplication/showHelp: -C/func/-/ShowHideProcess -JavaScript/instm/DOMWindow/showModalDialog -Objective-C/instm/NSLayoutManager/showPackedGlyphs:length:glyphRange:atPoint:font:color:printingAdjustment: -Objective-C/instm/NSPrintOperation/showPanels -Objective-C/intfm/IMKStateSetting/showPreferences: -Objective-C/instm/NSColorPanel/showsAlpha -Objective-C/instm/NSDockTile/showsApplicationBadge -Objective-C/instm/NSToolbar/showsBaselineSeparator -Objective-C/instm/NSButton/showsBorderOnlyWhileMouseInside -Objective-C/instm/NSButtonCell/showsBorderOnlyWhileMouseInside -Objective-C/instm/QCCompositionPickerView/showsCompositionNames -Objective-C/instm/NSLayoutManager/showsControlCharacters -Objective-C/instm/NSWorkspace/showSearchResultsForQueryString: -Objective-C/instm/AUGenericView/showsExpertParameters -Objective-C/instm/NSCell/showsFirstResponder -Objective-C/instm/SFCertificatePanel/showsHelp -Objective-C/instm/NSAlert/showsHelp -Objective-C/instm/SFChooseIdentityPanel/showsHelp -Objective-C/instm/NSSavePanel/showsHiddenFiles -Objective-C/instm/NSLayoutManager/showsInvisibleCharacters -Objective-C/instm/NSPrintOperation/showsPrintPanel -Objective-C/instm/NSPrintOperation/showsProgressPanel -Objective-C/instm/NSWindow/showsResizeIndicator -Objective-C/instm/NSButtonCell/showsStateBy -Objective-C/instm/NSMenu/showsStateColumn -Objective-C/instm/NSAlert/showsSuppressionButton -Objective-C/instm/NSWindow/showsToolbarButton -Objective-C/instm/NSWindowController/showWindow: -Objective-C/instm/NSDocument/showWindows -C/func/-/Shutdown -C/func/-/shutdown -C/func/-/shutdown_mib -C/func/-/sigaction -C/func/-/sigaddset -C/func/-/sigaltstack -C/func/-/sigblock -C/func/-/sigdelset -C/func/-/sigemptyset -C/func/-/sigfillset -C/func/-/siginterrupt -C/func/-/sigismember -C/func/-/siglongjmp -C/func/-/sigmask -Objective-C/instm/NSCondition/signal -C/func/-/signal -C++/instm/IOFilterInterruptEventSource/signalInterrupt -C++/instm/IOSCSIParallelInterfaceController/SignalInterrupt -Objective-C/instp/PSClient/signature -Objective-C/clm/NSMethodSignature/signatureWithObjCTypes: -C/func/-/signbit -C/func/-/sigpause -C/func/-/sigpending -C/func/-/sigprocmask -C/func/-/sigsetjmp -C/func/-/sigsetmask -C/func/-/sigsetops -C/func/-/sigstack -C/func/-/sigsuspend -C/func/-/sigvec -C/func/-/sigwait -C++/clm/IOFWPseudoAddressSpace/simpleRead -C++/clm/IOFWPseudoAddressSpace/simpleReader -C++/clm/IOFWPseudoAddressSpace/simpleReadFixed -C++/clm/IOFWPseudoAddressSpace/simpleRW -C++/clm/IOFWPseudoAddressSpace/simpleRWFixed -C++/clm/IOFWPseudoAddressSpace/simpleWriter -C/func/-/sin -C/func/-/sinf -JavaScript/data/XPathResult/singleNodeValue -C/func/-/sinh -C/func/-/sinhf -C/func/-/sinhl -C/func/-/sinl -C/tdef/-/SInt32List -C/macro/-/SIOCGKEVFILT -C/macro/-/SIOCGKEVID -C/macro/-/SIOCGKEVVENDOR -C/macro/-/SIOCSKEVFILT -C/tdef/-/Size -Objective-C/instm/FxImage/size -Objective-C/instm/NSDockTile/size -Objective-C/instm/NSImageRep/size -Objective-C/instm/NSImage/size -Objective-C/instm/NSMenu/size -Objective-C/instm/NSAttributedString/size -JavaScript/data/Blob/size -JavaScript/data/HTMLFontElement/size -JavaScript/data/HTMLBaseFontElement/size -JavaScript/data/HTMLSelectElement/size -JavaScript/data/HTMLHRElement/size -JavaScript/data/HTMLInputElement/size -JavaScript/data/WebGLActiveInfo/size -Objective-C/instm/NSPrinter/sizeForKey:inTable: -Objective-C/clm/NSPrintInfo/sizeForPaperName: -Objective-C/instm/NSPointerFunctions/sizeFunction -Objective-C/instp/NSPointerFunctions/sizeFunction -JavaScript/instm/WebGLRenderingContext/sizeInBytes -Objective-C/instm/NSTableView/sizeLastColumnToFit -Objective-C/instm/NSToolbar/sizeMode -Objective-C/instm/NSTabViewItem/sizeOfLabel: -C/tdef/-/SizeResourceRec -Objective-C/instm/NSMatrix/sizeToCells -Objective-C/instm/NSTableColumn/sizeToFit -Objective-C/instm/NSProgressIndicator/sizeToFit -Objective-C/instm/NSBox/sizeToFit -Objective-C/instm/NSMenuView/sizeToFit -Objective-C/instm/NSControl/sizeToFit -Objective-C/instm/NSTableView/sizeToFit -Objective-C/instm/NSText/sizeToFit -Objective-C/instm/NSMenu/sizeToFit -Objective-C/instm/NSValue/sizeValue -Objective-C/instm/NSString/sizeWithAttributes: -C/func/-/SKDocumentCopyURL -C/func/-/SKDocumentCreate -C/func/-/SKDocumentCreateWithURL -C/func/-/SKDocumentGetName -C/func/-/SKDocumentGetParent -C/func/-/SKDocumentGetSchemeName -C/func/-/SKDocumentGetTypeID -C/tdef/-/SKDocumentID -C/tdef/-/SKDocumentIndexState -C/tdef/-/SKDocumentRef -C/func/-/SkewMatrix -JavaScript/instm/SVGMatrix/skewX -JavaScript/instm/SVGMatrix/skewY -C/func/-/SKIndexAddDocument -C/func/-/SKIndexAddDocumentWithText -C/func/-/SKIndexClose -C/func/-/SKIndexCompact -C/func/-/SKIndexCopyDocumentForDocumentID -C/func/-/SKIndexCopyDocumentIDArrayForTermID -C/func/-/SKIndexCopyDocumentProperties -C/func/-/SKIndexCopyDocumentRefsForDocumentIDs -C/func/-/SKIndexCopyDocumentURLsForDocumentIDs -C/func/-/SKIndexCopyInfoForDocumentIDs -C/func/-/SKIndexCopyTermIDArrayForDocumentID -C/func/-/SKIndexCopyTermStringForTermID -C/func/-/SKIndexCreateWithMutableData -C/func/-/SKIndexCreateWithURL -C/func/-/SKIndexDocumentIteratorCopyNext -C/func/-/SKIndexDocumentIteratorCreate -C/func/-/SKIndexDocumentIteratorGetTypeID -C/tdef/-/SKIndexDocumentIteratorRef -C/func/-/SKIndexFlush -C/func/-/SKIndexGetAnalysisProperties -C/func/-/SKIndexGetDocumentCount -C/func/-/SKIndexGetDocumentID -C/func/-/SKIndexGetDocumentState -C/func/-/SKIndexGetDocumentTermCount -C/func/-/SKIndexGetDocumentTermFrequency -C/func/-/SKIndexGetIndexType -C/func/-/SKIndexGetMaximumBytesBeforeFlush -C/func/-/SKIndexGetMaximumDocumentID -C/func/-/SKIndexGetMaximumTermID -C/func/-/SKIndexGetTermDocumentCount -C/func/-/SKIndexGetTermIDForTermString -C/func/-/SKIndexGetTypeID -C/func/-/SKIndexMoveDocument -C/func/-/SKIndexOpenWithData -C/func/-/SKIndexOpenWithMutableData -C/func/-/SKIndexOpenWithURL -C/tdef/-/SKIndexRef -C/func/-/SKIndexRemoveDocument -C/func/-/SKIndexRenameDocument -C/func/-/SKIndexSetDocumentProperties -C/func/-/SKIndexSetMaximumBytesBeforeFlush -C/tdef/-/SKIndexType -C/macro/-/SKIP_EOL -Objective-C/instm/NSDirectoryEnumerator/skipDescendants -Objective-C/instm/NSDirectoryEnumerator/skipDescendents -C/func/-/SKLoadDefaultExtractorPlugIns -C/func/-/SKSearchCancel -C/func/-/SKSearchCreate -C/func/-/SKSearchFindMatches -C/func/-/SKSearchGetTypeID -C/func/-/SKSearchGroupCopyIndexes -C/func/-/SKSearchGroupCreate -C/func/-/SKSearchGroupGetTypeID -C/tdef/-/SKSearchGroupRef -C/tdef/-/SKSearchOptions -C/tdef/-/SKSearchRef -C/func/-/SKSearchResultsCopyMatchingTerms -C/func/-/SKSearchResultsCreateWithDocuments -C/func/-/SKSearchResultsCreateWithQuery -C/tdef/-/SKSearchResultsFilterCallBack -C/func/-/SKSearchResultsGetCount -C/func/-/SKSearchResultsGetInfoInRange -C/func/-/SKSearchResultsGetTypeID -C/tdef/-/SKSearchResultsRef -C/tdef/-/SKSearchType -C/func/-/SKSummaryCopyParagraphAtIndex -C/func/-/SKSummaryCopyParagraphSummaryString -C/func/-/SKSummaryCopySentenceAtIndex -C/func/-/SKSummaryCopySentenceSummaryString -C/func/-/SKSummaryCreateWithString -C/func/-/SKSummaryGetParagraphCount -C/func/-/SKSummaryGetParagraphSummaryInfo -C/func/-/SKSummaryGetSentenceCount -C/func/-/SKSummaryGetSentenceSummaryInfo -C/func/-/SKSummaryGetTypeID -C/tdef/-/SKSummaryRef -C/func/-/sl_add -C/func/-/sl_find -C/func/-/sl_free -C/func/-/sl_init -JavaScript/instm/Channel/sleep -C/func/-/sleep -Objective-C/clm/NSThread/sleepForTimeInterval: -Objective-C/clm/NSThread/sleepUntilDate: -JavaScript/instm/ArrayBufferView/slice -JavaScript/instm/Blob/slice -Objective-C/intfm/NSDraggingInfo/slideDraggedImageTo: -Objective-C/instm/NSWorkspace/slideImage:from:to: -Objective-C/instm/NSSliderCell/sliderType -Objective-C/intfm/IKSlideshowDataSource/slideshowDidChangeCurrentIndex: -Objective-C/intfm/IKSlideshowDataSource/slideshowDidStop -Objective-C/intfm/IKSlideshowDataSource/slideshowItemAtIndex: -Objective-C/intfm/IKSlideshowDataSource/slideshowWillStart -C/func/-/SLIST_EMPTY -C/func/-/SLIST_ENTRY -C/func/-/SLIST_FIRST -C/func/-/SLIST_FOREACH -C/func/-/SLIST_FOREACH_SAFE -C/func/-/SLIST_HEAD -C/func/-/SLIST_HEAD_INITIALIZER -C/func/-/SLIST_INIT -C/func/-/SLIST_INSERT_AFTER -C/func/-/SLIST_INSERT_HEAD -C/func/-/SLIST_NEXT -C/func/-/SLIST_REMOVE -C/func/-/SLIST_REMOVE_HEAD -C/func/-/slk_attr -C/func/-/slk_attr_off -C/func/-/slk_attr_on -C/func/-/slk_attr_set -C/func/-/slk_attroff -C/func/-/slk_attron -C/func/-/slk_attrset -C/func/-/slk_clear -C/func/-/slk_color -C/func/-/slk_init -C/func/-/slk_label -C/func/-/slk_noutrefresh -C/func/-/slk_refresh -C/func/-/slk_restore -C/func/-/slk_set -C/func/-/slk_touch -JavaScript/data/SVGComponentTransferFunctionElement/slope -C/tdef/-/SlotDevParam -Objective-C/instm/NSString/smallestEncoding -Objective-C/clm/NSFont/smallSystemFontSize -Objective-C/instm/NSTextView/smartDeleteRangeForProposedRange: -Objective-C/instm/NSTextView/smartInsertAfterStringForString:replacingRange: -Objective-C/instm/NSTextView/smartInsertBeforeStringForString:replacingRange: -Objective-C/instm/NSTextView/smartInsertDeleteEnabled -Objective-C/instm/WebView/smartInsertDeleteEnabled -Objective-C/instm/NSTextView/smartInsertForString:replacingRange:beforeString:afterString: -C/econst/-/smCentralEuroRoman -C/func/-/SMCopyAllJobDictionaries -C/func/-/SMIME_read_PKCS7 -C/func/-/SMIME_write_PKCS7 -C/func/-/SMJobBless -C/func/-/SMJobCopyDictionary -C/func/-/SMJobRemove -C/func/-/SMJobSubmit -C/tag/-/SMPTE -C/tdef/-/SMPTEFlags -C/tdef/-/SMPTEFrameReference -C/tag/-/SMPTETime -C/tdef/-/SMPTETime -Objective-C/instm/NSValue/SMPTETimeValue -C/tdef/-/SMPTEWipeType -C/econst/-/smRSymbol -C/econst/-/smSimpChinese -C/econst/-/smTradChinese -C/func/-/sMultMatMat_16x16 -C/func/-/sMultMatMat_32x32 -C/func/-/sMultMatMat_4x4 -C/func/-/sMultMatMat_8x8 -C/func/-/sMultMatVec_16x16 -C/func/-/sMultMatVec_32x32 -C/func/-/sMultMatVec_4x4 -C/func/-/sMultMatVec_8x8 -C/func/-/sMultVecMat_16x16 -C/func/-/sMultVecMat_32x32 -C/func/-/sMultVecMat_4x4 -C/func/-/sMultVecMat_8x8 -Objective-C/instm/QCView/snapshotImage -Objective-C/instm/QCRenderer/snapshotImage -JavaScript/instm/XPathResult/snapshotItem -JavaScript/data/XPathResult/snapshotLength -Objective-C/instm/ISyncSession/snapshotOfRecordsInTruth -Objective-C/instm/ISyncManager/snapshotOfRecordsInTruthWithEntityNames:usingIdentifiersForClient: -C/func/-/snmp_agent_api -C/func/-/snmp_alarm -C/func/-/snmp_alarm_register -C/func/-/snmp_alarm_register_hr -C/func/-/snmp_alarm_unregister -C/func/-/snmp_api -C/func/-/snmp_api_errstring -C/func/-/snmp_close -C/func/-/snmp_enable_stderrlog -C/func/-/snmp_error -C/macro/-/SNMP_FREE -C/func/-/snmp_free_pdu -C/macro/-/SNMP_MALLOC_STRUCT -C/macro/-/SNMP_MALLOC_TYPEDEF -C/macro/-/SNMP_MAX -C/macro/-/SNMP_MIN -C/func/-/snmp_open -C/func/-/snmp_perror -C/func/-/snmp_read -C/func/-/snmp_select_info -C/func/-/snmp_send -C/func/-/snmp_sess_api -C/func/-/snmp_sess_async_send -C/func/-/snmp_sess_close -C/func/-/snmp_sess_error -C/func/-/snmp_sess_init -C/func/-/snmp_sess_open -C/func/-/snmp_sess_perror -C/func/-/snmp_sess_read -C/func/-/snmp_sess_select_info -C/func/-/snmp_sess_send -C/func/-/snmp_sess_session -C/func/-/snmp_sess_timeout -C/tag/-/snmp_session -C/func/-/snmp_set_mib_warnings -C/func/-/snmp_set_save_descriptions -C/func/-/snmp_shutdown -C/macro/-/SNMP_SWIPE_MEM -C/func/-/snmp_timeout -C/func/-/snmp_trap_api -C/macro/-/SNMP_ZERO -C/func/-/snprint_objid -C/func/-/snprint_value -C/func/-/snprint_variable -C/func/-/snprintf -C/func/-/snprintf_l -C/func/-/SNRM2 -C/econst/-/soCharacterMode -C/func/-/sock_accept -C/func/-/sock_bind -C/func/-/sock_close -C/func/-/sock_connect -C/econst/sflt_data_flag_t/sock_data_filt_flag_oob -C/econst/sflt_data_flag_t/sock_data_filt_flag_record -C/econst/sflt_event_t/sock_evt_bound -C/econst/sflt_event_t/sock_evt_cantrecvmore -C/econst/sflt_event_t/sock_evt_cantsendmore -C/econst/sflt_event_t/sock_evt_closing -C/econst/sflt_event_t/sock_evt_connected -C/econst/sflt_event_t/sock_evt_disconnected -C/econst/sflt_event_t/sock_evt_flush_read -C/econst/sflt_event_t/sock_evt_shutdown -C/func/-/sock_getpeername -C/func/-/sock_getsockname -C/func/-/sock_getsockopt -C/func/-/sock_gettype -C/func/-/sock_inject_data_in -C/func/-/sock_inject_data_out -C/func/-/sock_ioctl -C/func/-/sock_isconnected -C/func/-/sock_isnonblocking -C/func/-/sock_listen -C/func/-/sock_receive -C/func/-/sock_receivembuf -C/func/-/sock_send -C/func/-/sock_sendmbuf -C/func/-/sock_setpriv -C/func/-/sock_setsockopt -C/func/-/sock_shutdown -C/func/-/sock_socket -C/tdef/-/sock_upcall -C/tag/-/sockaddr_ctl -C/func/-/sockatmark -Objective-C/instm/NSSocketPort/socket -C/func/-/socket -C/func/-/socketpair -Objective-C/instm/NSSocketPort/socketType -C/func/-/sockopt_copyin -C/func/-/sockopt_copyout -C/func/-/sockopt_direction -C/func/-/sockopt_level -C/func/-/sockopt_name -C/func/-/sockopt_valsize -C/econst/-/soCommandDelimiter -C/econst/-/soCurrentA5 -C/econst/-/soCurrentVoice -C/econst/-/soErrorCallBack -C/econst/-/soErrors -C/econst/-/soInputMode -JavaScript/clconst/DataGridColumn/SOMETIMES_SORTED -C/econst/-/soNumberMode -C/econst/-/soOutputToAudioDevice -C/econst/-/soOutputToExtAudioFile -C/econst/-/soOutputToFileWithCFURL -C/tdef/-/sOpenDirNode -C/tdef/-/sOpenRecord -C/econst/-/soPhonemeCallBack -C/econst/-/soPhonemeOptions -C/econst/-/soPhonemeSymbols -C/econst/-/soPitchBase -C/econst/-/soPitchMod -C/econst/-/soRate -JavaScript/clconst/DataGridColumn/SORC_DESCENDING -C/econst/-/soRecentSync -C/econst/-/soRefCon -C/econst/-/soReset -JavaScript/clconst/DataGridColumn/SORT_ASCENDING -JavaScript/data/DataGridColumn/sortable -JavaScript/data/HTMLDataGridColElement/sortable -JavaScript/data/DataGridColumnList/sortColumn -C/func/-/SortDataBrowserContainer -Objective-C/instm/NSTableColumn/sortDescriptorPrototype -Objective-C/instm/NSTreeController/sortDescriptors -Objective-C/instm/NSMetadataQuery/sortDescriptors -Objective-C/instm/NSArrayController/sortDescriptors -Objective-C/instm/NSTableView/sortDescriptors -Objective-C/binding/NSDictionaryController/sortDescriptors -Objective-C/binding/NSArrayController/sortDescriptors -Objective-C/binding/NSTreeController/sortDescriptors -Objective-C/binding/NSOutlineView/sortDescriptors -Objective-C/binding/NSTableView/sortDescriptors -Objective-C/instm/NSFetchRequest/sortDescriptors -Objective-C/clm/NSSortDescriptor/sortDescriptorWithKey:ascending: -Objective-C/clm/NSSortDescriptor/sortDescriptorWithKey:ascending:comparator: -Objective-C/clm/NSSortDescriptor/sortDescriptorWithKey:ascending:selector: -JavaScript/data/DataGridColumn/sortDirection -JavaScript/data/HTMLDataGridColElement/sortDirection -Objective-C/instm/NSArray/sortedArrayHint -Objective-C/instm/NSArray/sortedArrayUsingComparator: -Objective-C/instm/NSSet/sortedArrayUsingDescriptors: -Objective-C/instm/NSArray/sortedArrayUsingDescriptors: -Objective-C/instm/NSArray/sortedArrayUsingFunction:context: -Objective-C/instm/NSArray/sortedArrayUsingFunction:context:hint: -Objective-C/instm/NSArray/sortedArrayUsingSelector: -Objective-C/instm/NSArray/sortedArrayWithOptions:usingComparator: -Objective-C/clm/QCPlugIn/sortedPropertyPortKeys -Objective-C/instm/NSTableHeaderCell/sortIndicatorRectForBounds: -Objective-C/instm/NSView/sortSubviewsUsingFunction:context: -Objective-C/instm/NSMutableArray/sortUsingComparator: -Objective-C/instm/NSMutableArray/sortUsingDescriptors: -Objective-C/instm/NSMatrix/sortUsingFunction:context: -Objective-C/instm/NSMutableArray/sortUsingFunction:context: -Objective-C/instm/NSMatrix/sortUsingSelector: -Objective-C/instm/NSMutableArray/sortUsingSelector: -Objective-C/instm/NSMutableArray/sortWithOptions:usingComparator: -Objective-C/instm/NSTreeNode/sortWithSortDescriptors:recursively: -C/econst/-/soSoundOutput -C/econst/-/soSpeechDoneCallBack -C/econst/-/soStatus -C/econst/-/soSyncCallBack -C/econst/-/soSynthExtension -C/econst/-/soSynthType -C/econst/-/soTextDoneCallBack -Objective-C/instm/NSButton/sound -Objective-C/instp/CalAlarm/sound -Objective-C/instm/CalAlarm/sound -Objective-C/instm/NSButtonCell/sound -Objective-C/intfm/NSSoundDelegate/sound:didFinishPlaying: -C/tdef/-/SoundDescriptionHandle -C/tdef/-/SoundDescriptionPtr -C/econst/-/SoundMediaType -Objective-C/clm/NSSound/soundNamed: -Objective-C/clm/NSSound/soundUnfilteredFileTypes -Objective-C/clm/NSSound/soundUnfilteredPasteboardTypes -Objective-C/clm/NSSound/soundUnfilteredTypes -Objective-C/instm/NSAppleScript/source -Objective-C/instm/NSNibConnector/source -JavaScript/data/IDBEvent/source -JavaScript/data/MessageEvent/source -Objective-C/instm/CAConstraint/sourceAttribute -Objective-C/instp/CAConstraint/sourceAttribute -Objective-C/instm/NSMigrationManager/sourceContext -Objective-C/instm/NSMigrationManager/sourceEntityForEntityMapping: -Objective-C/instm/NSEntityMapping/sourceEntityName -Objective-C/instm/NSEntityMapping/sourceEntityVersionHash -Objective-C/instm/NSEntityMapping/sourceExpression -JavaScript/data/JavaScriptCallFrame/sourceID -Objective-C/instm/ISyncRecordSnapshot/sourceIdentifiersForRelationshipName:withTargetIdentifier: -Objective-C/instm/NSMigrationManager/sourceInstancesForEntityMappingNamed:destinationInstances: -Objective-C/instm/NSMigrationManager/sourceModel -Objective-C/instp/CAConstraint/sourceName -Objective-C/instm/CAConstraint/sourceName -Objective-C/instm/DRFSObject/sourcePath -C/econst/-/soVoiceDescription -C/econst/-/soVoiceFile -C/econst/-/soVolume -C/econst/-/soWordCallBack -JavaScript/data/SVGTextPathElement/spacing -JavaScript/data/HTMLTableColElement/span -C/tdef/-/SPCModePagePowerCondition -C/tdef/-/SPCModeParameterHeader10 -C/tdef/-/SPCModeParameterHeader6 -C/func/-/SpeakBuffer -C/func/-/SpeakCFString -C/func/-/SpeakString -C/func/-/SpeakText -Objective-C/instm/DRFSObject/specificNameForFilesystem: -Objective-C/instm/DRFSObject/specificNames -JavaScript/data/Attr/specified -JavaScript/data/SVGFESpecularLightingElement/specularConstant -JavaScript/data/SVGFESpotLightElement/specularExponent -JavaScript/data/SVGFESpecularLightingElement/specularExponent -C/func/-/SpeechBusy -C/func/-/SpeechBusySystemWide -C/tdef/-/SpeechChannel -C/tdef/-/SpeechChannelRecord -C/tdef/-/SpeechDoneProcPtr -C/tdef/-/SpeechDoneUPP -C/tdef/-/SpeechErrorCFProcPtr -C/tdef/-/SpeechErrorInfo -C/tdef/-/SpeechErrorProcPtr -C/tdef/-/SpeechErrorUPP -C/func/-/SpeechManagerVersion -C/tdef/-/SpeechPhonemeProcPtr -C/tdef/-/SpeechPhonemeUPP -Objective-C/intfm/NSSpeechRecognizerDelegate/speechRecognizer:didRecognizeCommand: -C/tdef/-/SpeechStatusInfo -C/tdef/-/SpeechSyncProcPtr -C/tdef/-/SpeechSyncUPP -C/func/-/SpeechSynthesisRegisterModuleURL -C/func/-/SpeechSynthesisUnregisterModuleURL -Objective-C/intfm/NSSpeechSynthesizerDelegate/speechSynthesizer:didEncounterErrorAtIndex:ofString:message: -Objective-C/intfm/NSSpeechSynthesizerDelegate/speechSynthesizer:didEncounterSyncMessage: -Objective-C/intfm/NSSpeechSynthesizerDelegate/speechSynthesizer:didFinishSpeaking: -Objective-C/intfm/NSSpeechSynthesizerDelegate/speechSynthesizer:willSpeakPhoneme: -Objective-C/intfm/NSSpeechSynthesizerDelegate/speechSynthesizer:willSpeakWord:ofString: -C/tdef/-/SpeechTextDoneProcPtr -C/tdef/-/SpeechTextDoneUPP -C/tdef/-/SpeechVersionInfo -C/tdef/-/SpeechWordCFProcPtr -C/tdef/-/SpeechWordProcPtr -C/tdef/-/SpeechWordUPP -C/tdef/-/SpeechXtndData -Objective-C/intfp/CAMediaTiming/speed -Objective-C/intfm/CAMediaTiming/speed -Objective-C/instm/CLLocation/speed -Objective-C/instp/CLLocation/speed -JavaScript/data/Coordinates/speed -Objective-C/instm/NSTextView/spellCheckerDocumentTag -Objective-C/instm/WebView/spellCheckerDocumentTag -Objective-C/clm/NSTextCheckingResult/spellCheckingResultWithRange: -Objective-C/instm/NSSpellChecker/spellingPanel -Objective-C/intfm/NSSpellServerDelegate/spellServer:checkGrammarInString:language:details: -Objective-C/intfm/NSSpellServerDelegate/spellServer:checkString:offset:types:options:orthography:wordCount: -Objective-C/intfm/NSSpellServerDelegate/spellServer:didForgetWord:inLanguage: -Objective-C/intfm/NSSpellServerDelegate/spellServer:didLearnWord:inLanguage: -Objective-C/intfm/NSSpellServerDelegate/spellServer:findMisspelledWordInString:language:wordCount:countOnly: -Objective-C/intfm/NSSpellServerDelegate/spellServer:suggestCompletionsForPartialWordRange:inString:language: -Objective-C/intfm/NSSpellServerDelegate/spellServer:suggestGuessesForWord:inLanguage: -Objective-C/instp/CAEmitterLayer/spin -Objective-C/instp/CAEmitterCell/spin -Objective-C/instm/CAEmitterCell/spin -Objective-C/instm/CAEmitterLayer/spin -C/func/-/spinlock -Objective-C/instp/CAEmitterCell/spinRange -Objective-C/instm/CAEmitterCell/spinRange -JavaScript/instm/Text/splitText -C++/instm/IOBDMedia/splitTrack -C++/instm/IOBDBlockStorageDriver/splitTrack -C++/instm/IOBDBlockStorageDevice/splitTrack -Objective-C/intfm/NSSplitViewDelegate/splitView:additionalEffectiveRectOfDividerAtIndex: -Objective-C/intfm/NSSplitViewDelegate/splitView:canCollapseSubview: -Objective-C/intfm/NSSplitViewDelegate/splitView:constrainMaxCoordinate:ofSubviewAt: -Objective-C/intfm/NSSplitViewDelegate/splitView:constrainMinCoordinate:ofSubviewAt: -Objective-C/intfm/NSSplitViewDelegate/splitView:constrainSplitPosition:ofSubviewAt: -Objective-C/intfm/NSSplitViewDelegate/splitView:effectiveRect:forDrawnRect:ofDividerAtIndex: -Objective-C/intfm/NSSplitViewDelegate/splitView:resizeSubviewsWithOldSize: -Objective-C/intfm/NSSplitViewDelegate/splitView:shouldAdjustSizeOfSubview: -Objective-C/intfm/NSSplitViewDelegate/splitView:shouldCollapseSubview:forDoubleClickOnDividerAtIndex: -Objective-C/intfm/NSSplitViewDelegate/splitView:shouldHideDividerAtIndex: -Objective-C/intfm/NSSplitViewDelegate/splitViewDidResizeSubviews: -Objective-C/intfm/NSSplitViewDelegate/splitViewWillResizeSubviews: -C++/clm/IOSCSIProtocolInterface/sPowerManagement -JavaScript/data/SVGGradientElement/spreadMethod -C/func/-/sprint_realloc_objid -C/func/-/sprint_realloc_value -C/func/-/sprint_realloc_variable -C/func/-/sprintf -C/func/-/sprintf_l -C/func/-/sputrune -JavaScript/cl/-/SQLError -JavaScript/cl/-/SQLResultSet -JavaScript/cl/-/SQLResultSetRowList -JavaScript/cl/-/SQLStatementCallback -JavaScript/cl/-/SQLStatementErrorCallback -JavaScript/cl/-/SQLTransaction -JavaScript/cl/-/SQLTransactionCallback -JavaScript/cl/-/SQLTransactionErrorCallback -JavaScript/cl/-/SQLTransactionSync -JavaScript/cl/-/SQLTransactionSyncCallback -C/func/-/sqr -C/func/-/sqrt -C/func/-/sqrtf -C/func/-/sqrtl -C/func/-/SRAddLanguageObject -C/func/-/SRAddText -C/func/-/sradixsort -C/func/-/srand -C/func/-/srand48 -C/func/-/sranddev -C/func/-/srandom -C/func/-/srandomdev -JavaScript/data/HTMLSourceElement/src -JavaScript/data/HTMLScriptElement/src -JavaScript/data/HTMLEmbedElement/src -JavaScript/data/HTMLFrameElement/src -JavaScript/data/HTMLMediaElement/src -JavaScript/data/HTMLInputElement/src -JavaScript/data/HTMLImageElement/src -JavaScript/data/HTMLIFrameElement/src -JavaScript/clconst/WebGLRenderingContext/SRC_ALPHA -JavaScript/clconst/WebGLRenderingContext/SRC_ALPHA_SATURATE -JavaScript/clconst/WebGLRenderingContext/SRC_COLOR -C/tdef/-/SRCallBackParam -C/tdef/-/SRCallBackProcPtr -C/tdef/-/SRCallBackStruct -C/tdef/-/SRCallBackUPP -C/func/-/SRCancelRecognition -C/econst/-/srcBic -C/econst/-/srcCopy -JavaScript/data/Event/srcElement -C/func/-/SRChangeLanguageObject -C/func/-/SRCloseRecognitionSystem -C/func/-/SRContinueRecognition -C/econst/-/srcOr -C/func/-/SRCountItems -C/econst/-/srcXor -C/func/-/SRDrawRecognizedText -C/func/-/SRDrawText -C/tdef/-/sReleaseContinueData -C/tdef/-/sRemoveAttribute -C/tdef/-/sRemoveAttributeValue -C/func/-/SREmptyLanguageObject -Objective-C/clm/NSColorSpace/sRGBColorSpace -C/func/-/SRGetIndexedItem -C/func/-/SRGetLanguageModel -C/func/-/SRGetProperty -C/func/-/SRGetReference -C/func/-/SRIdle -C/tdef/-/SRLanguageModel -C/tdef/-/SRLanguageObject -C/func/-/SRNewLanguageModel -C/func/-/SRNewLanguageObjectFromDataFile -C/func/-/SRNewLanguageObjectFromHandle -C/func/-/SRNewPath -C/func/-/SRNewPhrase -C/func/-/SRNewRecognizer -C/func/-/SRNewWord -C/func/-/SROpenRecognitionSystem -C/func/-/SROT -C/tdef/-/SRPath -C/tdef/-/SRPhrase -C/func/-/SRProcessBegin -C/func/-/SRProcessEnd -C/func/-/SRPutLanguageObjectIntoDataFile -C/func/-/SRPutLanguageObjectIntoHandle -C/tdef/-/SRRecognitionResult -C/tdef/-/SRRecognitionSystem -C/tdef/-/SRRecognizer -C/tdef/-/SRRejectionLevel -C/func/-/SRReleaseObject -C/func/-/SRRemoveIndexedItem -C/func/-/SRRemoveLanguageObject -C/func/-/SRSetIndexedItem -C/func/-/SRSetLanguageModel -C/func/-/SRSetProperty -C/func/-/SRSpeakAndDrawText -C/func/-/SRSpeakText -C/func/-/SRSpeechBusy -C/tdef/-/SRSpeechObject -C/tdef/-/SRSpeechSource -C/tdef/-/SRSpeedSetting -C/func/-/SRStartListening -C/func/-/SRStopListening -C/func/-/SRStopSpeech -C/tdef/-/SRWord -C/func/-/SSCAL -C/func/-/sscanf -C/func/-/sscanf_l -C/func/-/SSCenteredRectInRect -C/tdef/-/sSetAttributeValue -C/tdef/-/sSetAttributeValues -C/tdef/-/sSetRecordName -C/tdef/-/sSetRecordType -C++/clm/IOSCSIProtocolInterface/sSetUserClientExclusivityState -Objective-C/instp/CWNetwork/ssid -Objective-C/instp/CWWirelessProfile/ssid -Objective-C/instp/CW8021XProfile/ssid -Objective-C/instp/CWInterface/ssid -C/func/-/ssl -C/func/-/SSL_accept -C/func/-/SSL_add_client_CA -C/func/-/SSL_add_session -C/func/-/SSL_alert_desc_string -C/func/-/SSL_alert_desc_string_long -C/func/-/SSL_alert_type_string -C/func/-/SSL_alert_type_string_long -C/func/-/SSL_callback_ctrl -C/func/-/SSL_check_private_key -C/func/-/SSL_CIPHER_description -C/func/-/SSL_CIPHER_get_bits -C/func/-/SSL_CIPHER_get_name -C/func/-/SSL_CIPHER_get_version -C/func/-/SSL_clear -C/func/-/SSL_COMP_add_compression_method -C/func/-/SSL_connect -C/func/-/SSL_ctrl -C/func/-/SSL_CTX_add_client_CA -C/func/-/SSL_CTX_add_extra_chain_cert -C/func/-/SSL_CTX_add_session -C/func/-/SSL_CTX_callback_ctrl -C/func/-/SSL_CTX_check_private_key -C/func/-/SSL_CTX_ctrl -C/func/-/SSL_CTX_flush_sessions -C/func/-/SSL_CTX_free -C/func/-/SSL_CTX_get_cert_store -C/func/-/SSL_CTX_get_client_CA_list -C/func/-/SSL_CTX_get_client_cert_cb -C/func/-/SSL_CTX_get_ex_data -C/func/-/SSL_CTX_get_ex_new_index -C/func/-/SSL_CTX_get_info_callback -C/func/-/SSL_CTX_get_max_cert_list -C/func/-/SSL_CTX_get_mode -C/func/-/SSL_CTX_get_options -C/func/-/SSL_CTX_get_quiet_shutdown -C/func/-/SSL_CTX_get_session_cache_mode -C/func/-/SSL_CTX_get_timeout -C/func/-/SSL_CTX_get_verify_callback -C/func/-/SSL_CTX_get_verify_depth -C/func/-/SSL_CTX_get_verify_mode -C/func/-/SSL_CTX_load_verify_locations -C/func/-/SSL_CTX_need_tmp_rsa -C/func/-/SSL_CTX_new -C/func/-/SSL_CTX_remove_session -C/func/-/SSL_CTX_sess_accept -C/func/-/SSL_CTX_sess_accept_good -C/func/-/SSL_CTX_sess_accept_renegotiate -C/func/-/SSL_CTX_sess_cache_full -C/func/-/SSL_CTX_sess_cb_hits -C/func/-/SSL_CTX_sess_connect -C/func/-/SSL_CTX_sess_connect_good -C/func/-/SSL_CTX_sess_connect_renegotiate -C/func/-/SSL_CTX_sess_get_cache_size -C/func/-/SSL_CTX_sess_get_get_cb -C/func/-/SSL_CTX_sess_get_new_cb -C/func/-/SSL_CTX_sess_get_remove_cb -C/func/-/SSL_CTX_sess_hits -C/func/-/SSL_CTX_sess_misses -C/func/-/SSL_CTX_sess_number -C/func/-/SSL_CTX_sess_set_cache_size -C/func/-/SSL_CTX_sess_set_get_cb -C/func/-/SSL_CTX_sess_set_new_cb -C/func/-/SSL_CTX_sess_set_remove_cb -C/func/-/SSL_CTX_sess_timeouts -C/func/-/SSL_CTX_sessions -C/func/-/SSL_CTX_set_cert_store -C/func/-/SSL_CTX_set_cert_verify_callback -C/func/-/SSL_CTX_set_cipher_list -C/func/-/SSL_CTX_set_client_CA_list -C/func/-/SSL_CTX_set_client_cert_cb -C/func/-/SSL_CTX_set_default_passwd_cb -C/func/-/SSL_CTX_set_default_passwd_cb_userdata -C/func/-/SSL_CTX_set_ex_data -C/func/-/SSL_CTX_set_generate_session_id -C/func/-/SSL_CTX_set_info_callback -C/func/-/SSL_CTX_set_max_cert_list -C/func/-/SSL_CTX_set_mode -C/func/-/SSL_CTX_set_msg_callback -C/func/-/SSL_CTX_set_msg_callback_arg -C/func/-/SSL_CTX_set_options -C/func/-/SSL_CTX_set_quiet_shutdown -C/func/-/SSL_CTX_set_session_cache_mode -C/func/-/SSL_CTX_set_session_id_context -C/func/-/SSL_CTX_set_ssl_version -C/func/-/SSL_CTX_set_timeout -C/func/-/SSL_CTX_set_tmp_dh -C/func/-/SSL_CTX_set_tmp_dh_callback -C/func/-/SSL_CTX_set_tmp_rsa -C/func/-/SSL_CTX_set_tmp_rsa_callback -C/func/-/SSL_CTX_set_verify -C/func/-/SSL_CTX_set_verify_depth -C/func/-/SSL_CTX_use_certificate -C/func/-/SSL_CTX_use_certificate_ASN1 -C/func/-/SSL_CTX_use_certificate_chain_file -C/func/-/SSL_CTX_use_certificate_file -C/func/-/SSL_CTX_use_PrivateKey -C/func/-/SSL_CTX_use_PrivateKey_ASN1 -C/func/-/SSL_CTX_use_PrivateKey_file -C/func/-/SSL_CTX_use_RSAPrivateKey -C/func/-/SSL_CTX_use_RSAPrivateKey_ASN1 -C/func/-/SSL_CTX_use_RSAPrivateKey_file -C/econst/-/SSL_DH_anon_EXPORT_WITH_DES40_CBC_SHA -C/econst/-/SSL_DH_anon_EXPORT_WITH_RC4_40_MD5 -C/econst/-/SSL_DH_RSA_EXPORT_WITH_DES40_CBC_SHA -C/econst/-/SSL_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA -C/econst/-/SSL_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA -C/func/-/SSL_do_handshake -C/func/-/SSL_flush_sessions -C/func/-/SSL_free -C/func/-/SSL_get0_session -C/func/-/SSL_get1_session -C/func/-/SSL_get_accept_state -C/func/-/SSL_get_cipher -C/func/-/SSL_get_cipher_bits -C/func/-/SSL_get_cipher_list -C/func/-/SSL_get_cipher_name -C/func/-/SSL_get_cipher_version -C/func/-/SSL_get_ciphers -C/func/-/SSL_get_client_CA_list -C/func/-/SSL_get_current_cipher -C/func/-/SSL_get_default_timeout -C/func/-/SSL_get_error -C/func/-/SSL_get_ex_data -C/func/-/SSL_get_ex_data_X509_STORE_CTX_idx -C/func/-/SSL_get_ex_new_index -C/func/-/SSL_get_fd -C/func/-/SSL_get_info_callback -C/func/-/SSL_get_max_cert_list -C/func/-/SSL_get_mode -C/func/-/SSL_get_msg_callback_arg -C/func/-/SSL_get_options -C/func/-/SSL_get_peer_cert_chain -C/func/-/SSL_get_peer_certificate -C/func/-/SSL_get_quiet_shutdown -C/func/-/SSL_get_rbio -C/func/-/SSL_get_rfd -C/func/-/SSL_get_session -C/func/-/SSL_get_shutdown -C/func/-/SSL_get_SSL_CTX -C/func/-/SSL_get_ssl_method -C/func/-/SSL_get_time -C/func/-/SSL_get_timeout -C/func/-/SSL_get_verify_callback -C/func/-/SSL_get_verify_depth -C/func/-/SSL_get_verify_mode -C/func/-/SSL_get_verify_result -C/func/-/SSL_get_version -C/func/-/SSL_get_wbio -C/func/-/SSL_get_wfd -C/func/-/SSL_has_matching_session_id -C/func/-/SSL_library_init -C/func/-/SSL_load_client_CA_file -C/func/-/SSL_load_error_strings -C/func/-/SSL_need_tmp_rsa -C/func/-/SSL_new -C/func/-/SSL_pending -C/func/-/SSL_read -C/func/-/SSL_remove_session -C/econst/-/SSL_RSA_EXPORT_WITH_DES40_CBC_SHA -C/econst/-/SSL_RSA_EXPORT_WITH_RC2_CBC_40_MD5 -C/econst/-/SSL_RSA_EXPORT_WITH_RC4_40_MD5 -C/econst/-/SSL_RSA_WITH_3DES_EDE_CBC_MD5 -C/econst/-/SSL_RSA_WITH_DES_CBC_MD5 -C/econst/-/SSL_RSA_WITH_IDEA_CBC_MD5 -C/econst/-/SSL_RSA_WITH_RC2_CBC_MD5 -C/func/-/SSL_rstate_string -C/func/-/SSL_rstate_string_long -C/func/-/SSL_SESSION_free -C/func/-/SSL_SESSION_get_ex_data -C/func/-/SSL_SESSION_get_ex_new_index -C/func/-/SSL_SESSION_get_time -C/func/-/SSL_SESSION_get_timeout -C/func/-/SSL_session_reused -C/func/-/SSL_SESSION_set_ex_data -C/func/-/SSL_SESSION_set_time -C/func/-/SSL_SESSION_set_timeout -C/func/-/SSL_set_accept_state -C/func/-/SSL_set_bio -C/func/-/SSL_set_cipher_list -C/func/-/SSL_set_client_CA_list -C/func/-/SSL_set_connect_state -C/func/-/SSL_set_ex_data -C/func/-/SSL_set_fd -C/func/-/SSL_set_generate_session_id -C/func/-/SSL_set_info_callback -C/func/-/SSL_set_max_cert_list -C/func/-/SSL_set_mode -C/func/-/SSL_set_msg_callback -C/func/-/SSL_set_msg_callback_arg -C/func/-/SSL_set_options -C/func/-/SSL_set_quiet_shutdown -C/func/-/SSL_set_rfd -C/func/-/SSL_set_session -C/func/-/SSL_set_session_id_context -C/func/-/SSL_set_shutdown -C/func/-/SSL_set_ssl_method -C/func/-/SSL_set_time -C/func/-/SSL_set_timeout -C/func/-/SSL_set_tmp_dh -C/func/-/SSL_set_tmp_dh_callback -C/func/-/SSL_set_tmp_rsa -C/func/-/SSL_set_tmp_rsa_callback -C/func/-/SSL_set_verify -C/func/-/SSL_set_verify_depth -C/func/-/SSL_set_verify_result -C/func/-/SSL_set_wfd -C/func/-/SSL_shutdown -C/func/-/SSL_state_string -C/func/-/SSL_state_string_long -C/func/-/SSL_use_certificate -C/func/-/SSL_use_certificate_ASN1 -C/func/-/SSL_use_certificate_file -C/func/-/SSL_use_PrivateKey -C/func/-/SSL_use_PrivateKey_ASN1 -C/func/-/SSL_use_PrivateKey_file -C/func/-/SSL_use_RSAPrivateKey -C/func/-/SSL_use_RSAPrivateKey_ASN1 -C/func/-/SSL_use_RSAPrivateKey_file -C/func/-/SSL_want -C/func/-/SSL_want_nothing -C/func/-/SSL_want_read -C/func/-/SSL_want_write -C/func/-/SSL_want_x509_lookup -C/func/-/SSL_write -C/func/-/SSLAddDistinguishedName -C/tdef/-/SSLAuthenticate -C/tdef/-/SSLCipherSuite -C/tdef/-/SSLClientCertificateState -C/func/-/SSLClose -C/tdef/-/SSLConnectionRef -C/tdef/-/SSLContextRef -C/func/-/SSLDisposeContext -C/func/-/SSLeay -C/func/-/SSLeay_add_ssl_algorithms -C/func/-/SSLeay_version -C/func/-/SSLGetAllowsAnyRoot -C/func/-/SSLGetAllowsExpiredCerts -C/func/-/SSLGetAllowsExpiredRoots -C/func/-/SSLGetBufferedReadSize -C/func/-/SSLGetClientCertificateState -C/func/-/SSLGetConnection -C/func/-/SSLGetDiffieHellmanParams -C/func/-/SSLGetEnableCertVerify -C/func/-/SSLGetEnabledCiphers -C/func/-/SSLGetNegotiatedCipher -C/func/-/SSLGetNegotiatedProtocolVersion -C/func/-/SSLGetNumberEnabledCiphers -C/func/-/SSLGetNumberSupportedCiphers -C/func/-/SSLGetPeerCertificates -C/func/-/SSLGetPeerDomainName -C/func/-/SSLGetPeerDomainNameLength -C/func/-/SSLGetPeerID -C/func/-/SSLGetProtocolVersion -C/func/-/SSLGetProtocolVersionEnabled -C/func/-/SSLGetRsaBlinding -C/func/-/SSLGetSessionState -C/func/-/SSLGetSupportedCiphers -C/func/-/SSLGetTrustedRoots -C/func/-/SSLHandshake -C/func/-/SSLNewContext -C/tdef/-/SSLProtocol -C/func/-/SSLRead -C/tdef/-/SSLReadFunc -C/tdef/-/SSLSessionState -C/func/-/SSLSetAllowsAnyRoot -C/func/-/SSLSetAllowsExpiredCerts -C/func/-/SSLSetAllowsExpiredRoots -C/func/-/SSLSetCertificate -C/func/-/SSLSetClientSideAuthenticate -C/func/-/SSLSetConnection -C/func/-/SSLSetDiffieHellmanParams -C/func/-/SSLSetEnableCertVerify -C/func/-/SSLSetEnabledCiphers -C/func/-/SSLSetEncryptionCertificate -C/func/-/SSLSetIOFuncs -C/func/-/SSLSetPeerDomainName -C/func/-/SSLSetPeerID -C/func/-/SSLSetProtocolVersion -C/func/-/SSLSetProtocolVersionEnabled -C/func/-/SSLSetRsaBlinding -C/func/-/SSLSetTrustedRoots -C/func/-/SSLWrite -C/tdef/-/SSLWriteFunc -C/func/-/SSRandomFloatBetween -C/func/-/SSRandomIntBetween -C/func/-/SSRandomPointForSizeWithinRect -C/func/-/SSWAP -C/func/-/STACK_OF -C/func/-/STACKOF -Objective-C/instm/NSThread/stackSize -C/func/-/STAILQ_CONCAT -C/func/-/STAILQ_EMPTY -C/func/-/STAILQ_ENTRY -C/func/-/STAILQ_FIRST -C/func/-/STAILQ_FOREACH -C/func/-/STAILQ_FOREACH_SAFE -C/func/-/STAILQ_HEAD -C/func/-/STAILQ_HEAD_INITIALIZER -C/func/-/STAILQ_INIT -C/func/-/STAILQ_INSERT_AFTER -C/func/-/STAILQ_INSERT_HEAD -C/func/-/STAILQ_INSERT_TAIL -C/func/-/STAILQ_LAST -C/func/-/STAILQ_NEXT -C/func/-/STAILQ_REMOVE -C/func/-/STAILQ_REMOVE_HEAD -Objective-C/instm/NSManagedObjectContext/stalenessInterval -Objective-C/instm/NSDateFormatter/standaloneMonthSymbols -Objective-C/instm/NSDateFormatter/standaloneQuarterSymbols -Objective-C/instm/NSDateFormatter/standaloneWeekdaySymbols -Objective-C/instm/NSTask/standardError -Objective-C/instm/WebPreferences/standardFontFamily -Objective-C/instm/NSTask/standardInput -Objective-C/instm/NSURL/standardizedURL -Objective-C/instm/NSTask/standardOutput -C/tag/-/StandardPacketFilters -Objective-C/clm/WebPreferences/standardPreferences -Objective-C/clm/NSUserDefaults/standardUserDefaults -Objective-C/instm/NSWindow/standardWindowButton: -Objective-C/clm/NSWindow/standardWindowButton:forStyleMask: -JavaScript/data/HTMLObjectElement/standby -C/func/-/standend -C/func/-/standout -Objective-C/instm/NSOperation/start -Objective-C/instm/IMAVManager/start -Objective-C/instm/DRErase/start -Objective-C/instm/IOBluetoothDevicePair/start -Objective-C/instm/IOBluetoothDeviceInquiry/start -C++/instm/IONetworkController/start -Objective-C/instm/NSThread/start -Objective-C/instm/NSURLConnection/start -C++/instm/IOAudioEngine/start -C++/instm/IOAudioPort/start -C++/instm/IOBasicOutputQueue/start -C++/instm/IOAudioControl/start -C++/instm/IOAudioDevice/start -C++/instm/IOHIDDevice/start -C++/instm/IOFireWireSerialBusProtocolTransport/start -C++/instm/IOOutputQueue/start -C++/instm/IOHIDInterface/start -C++/instm/IOService/start -C++/instm/IOSCSIProtocolInterface/start -JavaScript/data/HTMLOListElement/start -JavaScript/instm/HTMLMarqueeElement/start -JavaScript/instm/MessagePort/start -JavaScript/instm/TimeRanges/start -Objective-C/instm/QCView/start: -C/func/-/start_color -C++/instm/IOService/start_PM_idle_timer -JavaScript/clconst/Range/START_TO_END -JavaScript/clconst/Range/START_TO_START -Objective-C/intfm/FxCustomParameterActionAPI/startAction: -Objective-C/instm/ScreenSaverView/startAnimation -Objective-C/instm/NSAnimation/startAnimation -Objective-C/instm/QCCompositionPickerView/startAnimation: -Objective-C/instm/NSProgressIndicator/startAnimation: -Objective-C/instm/ISyncSessionDriver/startAsynchronousSync: -JavaScript/instm/Channel/startAT -C++/instm/IOAudioEngine/startAudioEngine -JavaScript/data/Range/startContainer -C++/instm/IOSCSIParallelInterfaceController/StartController -Objective-C/instm/CalEvent/startDate -Objective-C/instp/CalEvent/startDate -C/tdef/-/startDocumentSAXFunc -C++/instm/TestRun/startedTest -C++/instm/TestRun/startedTestSuite -C/func/-/StartEffect -C/tdef/-/startElementNsSAX2Func -C/tdef/-/startElementSAXFunc -C++/instm/IOHIDDevice/startEventDelivery -Objective-C/instm/QCPlugIn/startExecution: -Objective-C/instm/NSTextTableBlock/startingColumn -Objective-C/instm/NSTextList/startingItemNumber -Objective-C/instm/NSTextTableBlock/startingRow -Objective-C/instm/PDFAnnotationLine/startLineStyle -Objective-C/instm/NSSpeechRecognizer/startListening -Objective-C/instm/NSURLProtocol/startLoading -C++/instm/IOCatalogue/startMatching -Objective-C/instm/NSNetService/startMonitoring -JavaScript/data/Range/startOffset -JavaScript/data/SVGTextPathElement/startOffset -Objective-C/intfm/FxParameterCreationAPI/startParameterSubGroup:parmId:parmFlags: -Objective-C/clm/NSEvent/startPeriodicEventsAfterDelay:withPeriod: -Objective-C/instm/PDFAnnotationLine/startPoint -Objective-C/instm/CAGradientLayer/startPoint -Objective-C/instp/CAGradientLayer/startPoint -JavaScript/instm/InspectorBackend/startProfiling -Objective-C/instm/CATransition/startProgress -Objective-C/instp/CATransition/startProgress -Objective-C/instm/NSMetadataQuery/startQuery -Objective-C/instm/QCView/startRendering -Objective-C/instm/QTCaptureSession/startRunning -Objective-C/instm/NSTextView/startSpeaking: -Objective-C/instm/WebView/startSpeaking: -Objective-C/instm/NSSpeechSynthesizer/startSpeakingString: -Objective-C/instm/NSSpeechSynthesizer/startSpeakingString:toURL: -Objective-C/instm/NSRangeSpecifier/startSpecifier -C/func/-/StartStream -C++/instm/IOStream/startStream -C/func/-/StartStream() -Objective-C/instm/NSWhoseSpecifier/startSubelementIdentifier -Objective-C/instm/NSWhoseSpecifier/startSubelementIndex -JavaScript/data/HTMLMediaElement/startTime -Objective-C/intfm/FxTimingAPI/startTimeForEffect: -JavaScript/instm/InspectorBackend/startTimelineProfiler -Objective-C/instm/QTMovie/startTimeOfChapter: -Objective-C/intfm/FxTimingAPI/startTimeOfImageParm:forEffect: -Objective-C/intfm/FxTimingAPI/startTimeOfInputAToTransition: -Objective-C/intfm/FxTimingAPI/startTimeOfInputBToTransition: -Objective-C/intfm/FxTimingAPI/startTimeOfInputToFilter: -Objective-C/instm/NSCell/startTrackingAt:inView: -Objective-C/instm/CLLocationManager/startUpdatingLocation -Objective-C/instm/NSAnimation/startWhenAnimation:reachesProgress: -C/func/-/stat -C/func/-/stat64 -Objective-C/instm/NSButton/state -Objective-C/instm/PDFAnnotationButtonWidget/state -Objective-C/instm/NSDrawer/state -Objective-C/instm/IMAVManager/state -Objective-C/instm/IMAVButton/state -Objective-C/instm/NSMenuItem/state -Objective-C/instm/XGAuthenticator/state -Objective-C/instm/XGResource/state -Objective-C/instm/XGConnection/state -C++/data/IOATABusCommand/state -C++/data/IOAudioEngine/state -Objective-C/instm/NSCell/state -JavaScript/data/PopStateEvent/state -Objective-C/instm/NSMenuView/stateImageOffset -Objective-C/instm/NSMenuItemCell/stateImageRectForBounds: -Objective-C/instm/NSMenuItemCell/stateImageWidth -Objective-C/instm/NSMenuView/stateImageWidth -C/data/-/stateKnown -C/func/-/statfs -C/func/-/statfs64 -JavaScript/clconst/WebGLRenderingContext/STATIC_DRAW -C/func/-/static_pointer_cast -Objective-C/instm/NSConnection/statistics -C++/tag/IOBlockStorageDriver/Statistics -Objective-C/instm/CalAttendee/status -Objective-C/instp/CalAttendee/status -C/tag/-/Status -Objective-C/instm/NSURLHandle/status -Objective-C/instm/IMService/status -Objective-C/instm/DRBurn/status -Objective-C/instm/DRErase/status -Objective-C/instm/DRDevice/status -C++/data/IOAudioEngine/status -JavaScript/data/DOMApplicationCache/status -JavaScript/data/DOMWindow/status -JavaScript/data/XMLHttpRequest/status -Objective-C/instm/NSStatusItem/statusBar -JavaScript/data/DOMWindow/statusbar -Objective-C/instm/NSHTTPURLResponse/statusCode -Objective-C/instm/NSPrinter/statusForTable: -Objective-C/instm/NSStatusBar/statusItemWithLength: -C++/instm/IOFireWireSerialBusProtocolTransport/StatusNotify -JavaScript/data/XMLHttpRequest/statusText -C/func/-/statvfs -C/func/-/stdarg -JavaScript/data/SVGFEGaussianBlurElement/stdDeviationX -JavaScript/data/SVGFEGaussianBlurElement/stdDeviationY -C/tag/-/StdFBShmem_t -C/func/-/stdio -C/func/-/StdPix -JavaScript/data/WebGLContextAttributes/stencil -JavaScript/clconst/WebGLRenderingContext/STENCIL_ATTACHMENT -JavaScript/clconst/WebGLRenderingContext/STENCIL_BACK_FAIL -JavaScript/clconst/WebGLRenderingContext/STENCIL_BACK_FUNC -JavaScript/clconst/WebGLRenderingContext/STENCIL_BACK_PASS_DEPTH_FAIL -JavaScript/clconst/WebGLRenderingContext/STENCIL_BACK_PASS_DEPTH_PASS -JavaScript/clconst/WebGLRenderingContext/STENCIL_BACK_REF -JavaScript/clconst/WebGLRenderingContext/STENCIL_BACK_VALUE_MASK -JavaScript/clconst/WebGLRenderingContext/STENCIL_BACK_WRITEMASK -JavaScript/clconst/WebGLRenderingContext/STENCIL_BITS -JavaScript/clconst/WebGLRenderingContext/STENCIL_BUFFER_BIT -JavaScript/clconst/WebGLRenderingContext/STENCIL_CLEAR_VALUE -JavaScript/clconst/WebGLRenderingContext/STENCIL_FAIL -JavaScript/clconst/WebGLRenderingContext/STENCIL_FUNC -JavaScript/clconst/WebGLRenderingContext/STENCIL_INDEX -JavaScript/clconst/WebGLRenderingContext/STENCIL_INDEX8 -JavaScript/clconst/WebGLRenderingContext/STENCIL_PASS_DEPTH_FAIL -JavaScript/clconst/WebGLRenderingContext/STENCIL_PASS_DEPTH_PASS -JavaScript/clconst/WebGLRenderingContext/STENCIL_REF -JavaScript/clconst/WebGLRenderingContext/STENCIL_TEST -JavaScript/clconst/WebGLRenderingContext/STENCIL_VALUE_MASK -JavaScript/clconst/WebGLRenderingContext/STENCIL_WRITEMASK -JavaScript/instm/WebGLRenderingContext/stencilFunc -JavaScript/instm/WebGLRenderingContext/stencilFuncSeparate -JavaScript/instm/WebGLRenderingContext/stencilMask -JavaScript/instm/WebGLRenderingContext/stencilMaskSeparate -JavaScript/instm/WebGLRenderingContext/stencilOp -JavaScript/instm/WebGLRenderingContext/stencilOpSeparate -JavaScript/data/HTMLInputElement/step -Objective-C/instm/QTMovie/stepBackward -Objective-C/instm/QTMovieView/stepBackward: -JavaScript/instm/HTMLInputElement/stepDown -Objective-C/instm/QTMovie/stepForward -Objective-C/instm/QTMovieView/stepForward: -JavaScript/instm/InspectorBackend/stepIntoStatementInDebugger -JavaScript/data/ValidityState/stepMismatch -JavaScript/instm/InspectorBackend/stepOutOfFunctionInDebugger -JavaScript/instm/InspectorBackend/stepOverStatementInDebugger -JavaScript/instm/HTMLInputElement/stepUp -JavaScript/data/SVGFETurbulenceElement/stitchTiles -Objective-C/instm/AMAction/stop -Objective-C/instm/NSNetService/stop -Objective-C/instm/NSNetServiceBrowser/stop -Objective-C/instm/IMAVManager/stop -Objective-C/instm/NSSound/stop -Objective-C/instm/IOBluetoothObjectPushUIController/stop -Objective-C/instm/IOBluetoothDeviceInquiry/stop -C++/instm/IONetworkController/stop -Objective-C/instm/QTMovie/stop -C++/instm/IOAudioEngine/stop -C++/instm/IOAudioDevice/stop -C++/instm/IOAudioPort/stop -C++/instm/IOAudioControl/stop -C++/instm/IOBasicOutputQueue/stop -C++/instm/IOOutputQueue/stop -C++/instm/IOHIDDevice/stop -C++/instm/IOService/stop -JavaScript/instm/DOMWindow/stop -JavaScript/instm/HTMLMarqueeElement/stop -Objective-C/instm/AMWorkflowController/stop: -Objective-C/instm/QCView/stop: -Objective-C/instm/NSApplication/stop: -Objective-C/instm/ScreenSaverView/stopAnimation -Objective-C/instm/NSAnimation/stopAnimation -Objective-C/instm/QCCompositionPickerView/stopAnimation: -Objective-C/instm/NSProgressIndicator/stopAnimation: -JavaScript/instm/Channel/stopAT -C++/instm/IOAudioEngine/stopAudioEngine -Objective-C/instm/DRBurnProgressPanel/stopBurn: -C++/instm/IOSCSIParallelInterfaceController/StopController -C/func/-/StopEffect -C++/instm/IOHIDDevice/stopEventDelivery -Objective-C/instm/QCPlugIn/stopExecution: -JavaScript/instm/Event/stopImmediatePropagation -Objective-C/instm/NSSpeechRecognizer/stopListening -Objective-C/instm/NSURLProtocol/stopLoading -Objective-C/instm/WebFrame/stopLoading -Objective-C/instm/WebView/stopLoading: -Objective-C/instm/NSApplication/stopModal -Objective-C/instm/NSApplication/stopModalWithCode: -Objective-C/instm/NSNetService/stopMonitoring -C++/instm/TestRun/stoppedTest -C++/instm/TestRun/stoppedTestSuite -Objective-C/clm/NSEvent/stopPeriodicEvents -JavaScript/instm/InspectorBackend/stopProfiling -JavaScript/instm/Event/stopPropagation -Objective-C/instm/NSMetadataQuery/stopQuery -Objective-C/instm/QCView/stopRendering -Objective-C/instm/QTCaptureSession/stopRunning -Objective-C/instm/IKSlideshow/stopSlideshow: -Objective-C/instm/NSSpeechSynthesizer/stopSpeaking -Objective-C/instm/NSTextView/stopSpeaking: -Objective-C/instm/WebView/stopSpeaking: -Objective-C/instm/NSSpeechSynthesizer/stopSpeakingAtBoundary: -C/func/-/StopSpeech -C/func/-/StopSpeechAt -C/func/-/StopStream -C++/instm/IOStream/stopStream -C/func/-/StopStream() -JavaScript/instm/InspectorBackend/stopTimelineProfiler -Objective-C/instm/NSCell/stopTracking:at:inView:mouseIsUp: -Objective-C/instm/CLLocationManager/stopUpdatingLocation -Objective-C/instm/NSAnimation/stopWhenAnimation:reachesProgress: -JavaScript/data/DOMWindow/Storage -JavaScript/cl/-/Storage -JavaScript/data/StorageEvent/storageArea -JavaScript/data/DOMWindow/StorageEvent -JavaScript/cl/-/StorageEvent -Objective-C/instm/NSCachedURLResponse/storagePolicy -Objective-C/instm/NSURLCache/storeCachedResponse:forRequest: -Objective-C/instm/NSObject/storedValueForKey: -JavaScript/instm/InspectorBackend/storeLastActivePanel -C/func/-/stpcpy -C/tdef/-/Str255 -C/func/-/strcasecmp -C/func/-/strcasecmp_l -C/func/-/strcasestr -C/func/-/strcasestr_l -C/func/-/strcat -C/func/-/strchr -C/func/-/strcmp -C/func/-/strcoll -C/func/-/strcoll_l -C/func/-/strcpy -C/func/-/strcspn -C/func/-/strdup -Objective-C/intfm/NSStreamDelegate/stream:handleEvent: -JavaScript/clconst/WebGLRenderingContext/STREAM_DRAW -Objective-C/instm/NSStream/streamError -Objective-C/instm/NSStream/streamStatus -C/func/-/strerror -C/func/-/strerror_r -C/func/-/strfmon -C/func/-/strfmon_l -C/func/-/strftime -C/func/-/strftime_l -Objective-C/instm/NSLayoutManager/strikethroughGlyphRange:strikethroughType:lineFragmentRect:lineFragmentGlyphRange:containerOrigin: -Objective-C/instm/PDFSelection/string -Objective-C/instm/PDFDocument/string -Objective-C/instm/PDFPage/string -Objective-C/intfm/WebDocumentText/string -C/func/-/string -Objective-C/instm/NSScanner/string -Objective-C/instm/NSText/string -Objective-C/clm/NSString/string -Objective-C/instm/NSAttributedString/string -Objective-C/instm/CATextLayer/string -Objective-C/instp/CATextLayer/string -JavaScript/clconst/XPathResult/STRING_TYPE -Objective-C/instm/NSUserDefaults/stringArrayForKey: -JavaScript/data/TestObj/stringAttr -Objective-C/instm/NSString/stringByAbbreviatingWithTildeInPath -Objective-C/instm/NSString/stringByAddingPercentEscapesUsingEncoding: -Objective-C/instm/NSString/stringByAppendingFormat: -Objective-C/instm/NSString/stringByAppendingPathComponent: -Objective-C/instm/NSString/stringByAppendingPathExtension: -Objective-C/instm/NSString/stringByAppendingString: -Objective-C/instm/NSString/stringByDeletingLastPathComponent -Objective-C/instm/NSString/stringByDeletingPathExtension -Objective-C/instm/WebView/stringByEvaluatingJavaScriptFromString: -Objective-C/instm/NSString/stringByExpandingTildeInPath -Objective-C/instm/NSString/stringByFoldingWithOptions:locale: -Objective-C/instm/NSString/stringByPaddingToLength:withString:startingAtIndex: -Objective-C/instm/NSString/stringByReplacingCharactersInRange:withString: -Objective-C/instm/NSString/stringByReplacingOccurrencesOfString:withString: -Objective-C/instm/NSString/stringByReplacingOccurrencesOfString:withString:options:range: -Objective-C/instm/NSString/stringByReplacingPercentEscapesUsingEncoding: -Objective-C/instm/NSString/stringByResolvingSymlinksInPath -Objective-C/instm/NSString/stringByStandardizingPath -Objective-C/instm/NSString/stringByTrimmingCharactersInSet: -Objective-C/instm/NSUserDefaults/stringForKey: -Objective-C/instm/NSPrinter/stringForKey:inTable: -Objective-C/instm/NSFormatter/stringForObjectValue: -Objective-C/instm/NSPasteboardItem/stringForType: -Objective-C/instm/NSPasteboard/stringForType: -Objective-C/instm/NSDateFormatter/stringFromDate: -Objective-C/instm/NSNumberFormatter/stringFromNumber: -C++/instm/IOService/stringFromReturn -C/func/-/stringlist -Objective-C/instm/NSPrinter/stringListForKey:inTable: -C/tdef/-/StringPtr -Objective-C/instm/CIColor/stringRepresentation -Objective-C/instm/CIVector/stringRepresentation -Objective-C/instm/WebScriptObject/stringRepresentation -Objective-C/instm/NSString/stringsByAppendingPaths: -Objective-C/instm/NSActionCell/stringValue -Objective-C/instm/NSAppleEventDescriptor/stringValue -Objective-C/instm/PDFAnnotationTextWidget/stringValue -Objective-C/instm/PDFAnnotationChoiceWidget/stringValue -Objective-C/instm/NSNumber/stringValue -Objective-C/instm/NSControl/stringValue -Objective-C/instm/NSXMLNode/stringValue -Objective-C/instm/NSCell/stringValue -JavaScript/data/XPathResult/stringValue -Objective-C/clm/NSMutableString/stringWithCapacity: -Objective-C/clm/NSString/stringWithCharacters:length: -Objective-C/clm/NSString/stringWithContentsOfFile: -Objective-C/clm/NSString/stringWithContentsOfFile:encoding:error: -Objective-C/clm/NSString/stringWithContentsOfFile:usedEncoding:error: -Objective-C/clm/NSString/stringWithContentsOfURL: -Objective-C/clm/NSString/stringWithContentsOfURL:encoding:error: -Objective-C/clm/NSString/stringWithContentsOfURL:usedEncoding:error: -Objective-C/clm/NSString/stringWithCString: -Objective-C/clm/NSString/stringWithCString:encoding: -Objective-C/clm/NSString/stringWithCString:length: -Objective-C/instm/NSFileManager/stringWithFileSystemRepresentation:length: -Objective-C/clm/NSString/stringWithFormat: -Objective-C/instm/NSWindow/stringWithSavedFrame -Objective-C/clm/NSString/stringWithString: -Objective-C/clm/NSString/stringWithUTF8String: -C/func/-/strlcat -C/func/-/strlcpy -C/func/-/strlen -C/func/-/strmode -C/func/-/strncasecmp -C/func/-/strncasecmp_l -C/func/-/strncat -C/func/-/strncmp -C/func/-/strncpy -C/func/-/strnstr -Objective-C/instm/NSBezierPath/stroke -JavaScript/instm/CanvasRenderingContext2D/stroke -Objective-C/instm/CAShapeLayer/strokeColor -Objective-C/instp/CAShapeLayer/strokeColor -Objective-C/clm/NSBezierPath/strokeLineFromPoint:toPoint: -JavaScript/instm/CanvasRenderingContext2D/strokeRect -Objective-C/clm/NSBezierPath/strokeRect: -JavaScript/data/CanvasRenderingContext2D/strokeStyle -JavaScript/instm/CanvasRenderingContext2D/strokeText -C/func/-/strpbrk -C/func/-/strptime -C/func/-/strptime_l -C/func/-/strrchr -C/func/-/strsep -C/func/-/strsignal -C/func/-/strspn -C/func/-/strstr -C/func/-/strtod -C/func/-/strtod_l -C/func/-/strtof -C/func/-/strtof_l -C/func/-/strtofflags -C/func/-/strtoimax -C/func/-/strtoimax_l -C/func/-/strtok -C/func/-/strtok_r -C/func/-/strtol -C/func/-/strtol_l -C/func/-/strtold -C/func/-/strtold_l -C/func/-/strtoll -C/func/-/strtoll_l -C/func/-/strtoq -C/func/-/strtoq_l -C/func/-/strtoul -C/func/-/strtoul_l -C/func/-/strtoull -C/func/-/strtoull_l -C/func/-/strtoumax -C/func/-/strtoumax_l -C/func/-/strtouq -C/func/-/strtouq_l -C/func/-/strunvis -C/func/-/strunvisx -C/func/-/strxfrm -C/func/-/strxfrm_l -Objective-C/instm/PDFBorder/style -Objective-C/instm/NSProgressIndicator/style -Objective-C/instm/CAEmitterCell/style -Objective-C/instp/CAEmitterCell/style -Objective-C/instp/CALayer/style -Objective-C/instm/CALayer/style -JavaScript/data/Attr/style -JavaScript/data/CSSFontFaceRule/style -JavaScript/data/CSSStyleRule/style -JavaScript/data/CSSPageRule/style -JavaScript/data/Element/style -JavaScript/data/WebKitCSSKeyframeRule/style -JavaScript/data/SVGStylable/style -JavaScript/clconst/CSSRule/STYLE_RULE -Objective-C/instm/WebView/styleDeclarationWithText: -Objective-C/instm/NSWindow/styleMask -JavaScript/data/AbstractView/styleMedia -JavaScript/data/DOMWindow/styleMedia -JavaScript/cl/-/StyleMedia -JavaScript/data/CSSImportRule/styleSheet -JavaScript/data/DOMWindow/StyleSheet -JavaScript/cl/-/StyleSheet -JavaScript/data/DOMWindow/StyleSheetList -JavaScript/cl/-/StyleSheetList -JavaScript/data/Document/styleSheets -C/tag/-/sub_client_command -C/tag/-/sub_framework_command -C/tag/-/sub_library_command -C/tag/-/sub_umbrella_command -Objective-C/instm/NSArray/subarrayWithRange: -Objective-C/instm/NSData/subdataWithRange: -Objective-C/instm/NSEntityDescription/subentities -Objective-C/instm/NSEntityDescription/subentitiesByName -Objective-C/instm/WebArchive/subframeArchives -Objective-C/instm/NSMetadataQueryResultGroup/subgroups -Objective-C/instm/ABGroup/subgroups -Objective-C/instm/NSToolbarItemGroup/subitems -Objective-C/instp/CALayer/sublayers -Objective-C/instm/CALayer/sublayers -Objective-C/instm/CALayer/sublayerTransform -Objective-C/instp/CALayer/sublayerTransform -Objective-C/instm/NSMenuItem/submenu -Objective-C/instm/NSMenu/submenuAction: -JavaScript/instm/HTMLFormElement/submit -Objective-C/instm/ODNode/subnodeNamesAndReturnError: -C/econst/-/subOver -C/func/-/subpad -Objective-C/instm/NSFileManager/subpathsAtPath: -Objective-C/instm/NSFileManager/subpathsOfDirectoryAtPath:error: -C/econst/-/subPin -JavaScript/clconst/WebGLRenderingContext/SUBPIXEL_BITS -Objective-C/instm/NSCompoundPredicate/subpredicates -Objective-C/instm/WebDataSource/subresourceForURL: -Objective-C/instm/WebDataSource/subresources -Objective-C/instm/WebArchive/subresources -Objective-C/instm/NSRuleEditor/subrowIndexesForRow: -Objective-C/instm/NSRuleEditor/subrowsKeyPath -Objective-C/instm/NSText/subscript: -Objective-C/instm/NSMutableAttributedString/subscriptRange: -Objective-C/instm/NSATSTypesetter/substituteFontForFont: -Objective-C/instm/NSLayoutManager/substituteFontForFont: -Objective-C/instm/NSTypesetter/substituteFontForFont: -Objective-C/instm/NSATSTypesetter/substituteGlyphsInRange:withGlyphs: -Objective-C/instm/NSTypesetter/substituteGlyphsInRange:withGlyphs: -Objective-C/instm/NSSpellChecker/substitutionsPanel -Objective-C/instm/NSSpellChecker/substitutionsPanelAccessoryViewController -JavaScript/instm/CharacterData/substringData -Objective-C/instm/NSString/substringFromIndex: -Objective-C/instm/NSString/substringToIndex: -Objective-C/instm/NSString/substringWithRange: -Objective-C/instp/PSFeed/subtitle -Objective-C/instm/IKImageBrowserCell/subtitleFrame -Objective-C/instp/CATransition/subtype -Objective-C/instm/CATransition/subtype -Objective-C/instm/NSEvent/subtype -Objective-C/instm/NSView/subviews -C/func/-/subwin -JavaScript/data/MimeType/suffixes -Objective-C/instm/NSURLResponse/suggestedFilename -Objective-C/instm/NSScriptSuiteRegistry/suiteForAppleEventCode: -Objective-C/instm/NSScriptClassDescription/suiteName -Objective-C/instm/NSScriptCommandDescription/suiteName -Objective-C/instm/NSScriptSuiteRegistry/suiteNames -Objective-C/instp/PSEntry/summary -JavaScript/data/HTMLTableElement/summary -Objective-C/instm/NSObject/summaryInfo -Objective-C/intfm/NSObject/superclass -Objective-C/clm/NSObject/superclass -Objective-C/instm/NSScriptClassDescription/superclassDescription -Objective-C/instm/NSEntityDescription/superentity -Objective-C/instm/CALayer/superlayer -Objective-C/instp/CALayer/superlayer -Objective-C/instm/NSMenu/supermenu -Objective-C/instm/NSText/superscript: -Objective-C/instm/NSMutableAttributedString/superscriptRange: -Objective-C/instm/NSView/superview -Objective-C/instm/ODNode/supportedAttributesForRecordType:error: -Objective-C/intfm/QCPlugInOutputImageProvider/supportedBufferPixelFormats -Objective-C/instp/CWInterface/supportedChannels -Objective-C/intfm/ISyncFiltering/supportedEntityNames -Objective-C/instm/ISyncClient/supportedEntityNames -Objective-C/clm/CWInterface/supportedInterfaces -Objective-C/instp/CWInterface/supportedPHYModes -Objective-C/instm/NSObject/supportedPPDOptionKeys -Objective-C/instm/ODNode/supportedRecordTypesAndReturnError: -Objective-C/intfm/QCPlugInOutputImageProvider/supportedRenderedTexturePixelFormats -Objective-C/instm/NSScreen/supportedWindowDepths -Objective-C/instp/CWInterface/supportsAES_CCM -Objective-C/instm/NSScriptClassDescription/supportsCommand: -Objective-C/instm/FxHostCapabilities/supportsDisabledParameters -C++/instm/IOATABusInfo/supportsDMA -C++/instm/IOATABusInfo/supportsDMAQueued -Objective-C/instp/IKImageView/supportsDragAndDrop -Objective-C/instm/IKImageView/supportsDragAndDrop -C++/instm/IOATABusInfo/supportsExtendedLBA -Objective-C/instm/FxHostCapabilities/supportsGroupParameters -Objective-C/instm/FxHostCapabilities/supportsHiddenParameters -Objective-C/instp/CWInterface/supportsHostAP -Objective-C/instp/CWInterface/supportsIBSS -Objective-C/intfm/NSColorPickingCustom/supportsMode: -Objective-C/instp/CWInterface/supportsMonitorMode -Objective-C/clm/IBInspector/supportsMultipleObjectInspection -C++/instm/IOATABusInfo/supportsOverlapped -Objective-C/instp/CWInterface/supportsPMGT -Objective-C/instp/CWInterface/supportsShortGI20MHz -Objective-C/instp/CWInterface/supportsShortGI40MHz -Objective-C/instm/FxHostCapabilities/supportsTemporalBitmaps -Objective-C/intfm/WebDocumentText/supportsTextEncoding -Objective-C/instm/WebView/supportsTextEncoding -Objective-C/instp/CWInterface/supportsTKIP -Objective-C/instp/CWInterface/supportsTSN -Objective-C/intfm/IMKTextInput/supportsUnicode -Objective-C/instp/CWInterface/supportsWEP -Objective-C/instp/CWInterface/supportsWME -Objective-C/instp/CWInterface/supportsWoW -Objective-C/instp/CWInterface/supportsWPA -Objective-C/instp/CWInterface/supportsWPA2 -Objective-C/instm/NSAlert/suppressionButton -JavaScript/data/SVGFEDiffuseLightingElement/surfaceScale -JavaScript/data/SVGFESpecularLightingElement/surfaceScale -JavaScript/instm/Range/surroundContents -Objective-C/instm/NSTask/suspend -Objective-C/instm/NSAppleEventManager/suspendCurrentAppleEvent -C++/instm/IOUSBDevice/SuspendDevice -Objective-C/instm/NSDistributedNotificationCenter/suspended -Objective-C/instm/NSScriptCommand/suspendExecution -C++/instm/IOUSBHIDDriver/SuspendPort -JavaScript/instm/SVGSVGElement/suspendRedraw -C++/instm/IOSCSIParallelInterfaceController/SuspendServices -C/func/-/SuspendStream -C++/instm/IOStream/suspendStream -C/func/-/SuspendStream() -C/func/-/svc_destroy -C/func/-/svc_fds -C/func/-/svc_fdset -C/func/-/svc_getargs -C/func/-/svc_getcaller -C/func/-/svc_getreg -C/func/-/svc_getregset -C/func/-/svc_register -C/func/-/svc_run -C/func/-/svc_sendreply -C/func/-/svc_unregister -C/func/-/svcerr_auth -C/func/-/svcerr_decode -C/func/-/svcerr_noproc -C/func/-/svcerr_noprog -C/func/-/svcerr_progvers -C/func/-/svcerr_systemerr -C/func/-/svcerr_weakauth -C/func/-/svcfd_create -C/func/-/svcraw_create -C/func/-/svctcp_create -C/func/-/svcudp_bufcreate -JavaScript/clconst/SVGAngle/SVG_ANGLETYPE_DEG -JavaScript/clconst/SVGAngle/SVG_ANGLETYPE_GRAD -JavaScript/clconst/SVGAngle/SVG_ANGLETYPE_RAD -JavaScript/clconst/SVGAngle/SVG_ANGLETYPE_UNKNOWN -JavaScript/clconst/SVGAngle/SVG_ANGLETYPE_UNSPECIFIED -JavaScript/clconst/SVGFEDisplacementMapElement/SVG_CHANNEL_A -JavaScript/clconst/SVGFEDisplacementMapElement/SVG_CHANNEL_B -JavaScript/clconst/SVGFEDisplacementMapElement/SVG_CHANNEL_G -JavaScript/clconst/SVGFEDisplacementMapElement/SVG_CHANNEL_R -JavaScript/clconst/SVGFEDisplacementMapElement/SVG_CHANNEL_UNKNOWN -JavaScript/clconst/SVGColor/SVG_COLORTYPE_CURRENTCOLOR -JavaScript/clconst/SVGColor/SVG_COLORTYPE_RGBCOLOR -JavaScript/clconst/SVGColor/SVG_COLORTYPE_RGBCOLOR_ICCCOLOR -JavaScript/clconst/SVGColor/SVG_COLORTYPE_UNKNOWN -JavaScript/clconst/SVGFEBlendElement/SVG_FEBLEND_MODE_DARKEN -JavaScript/clconst/SVGFEBlendElement/SVG_FEBLEND_MODE_LIGHTEN -JavaScript/clconst/SVGFEBlendElement/SVG_FEBLEND_MODE_MULTIPLY -JavaScript/clconst/SVGFEBlendElement/SVG_FEBLEND_MODE_NORMAL -JavaScript/clconst/SVGFEBlendElement/SVG_FEBLEND_MODE_SCREEN -JavaScript/clconst/SVGFEBlendElement/SVG_FEBLEND_MODE_UNKNOWN -JavaScript/clconst/SVGFEColorMatrixElement/SVG_FECOLORMATRIX_TYPE_HUEROTATE -JavaScript/clconst/SVGFEColorMatrixElement/SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA -JavaScript/clconst/SVGFEColorMatrixElement/SVG_FECOLORMATRIX_TYPE_MATRIX -JavaScript/clconst/SVGFEColorMatrixElement/SVG_FECOLORMATRIX_TYPE_SATURATE -JavaScript/clconst/SVGFEColorMatrixElement/SVG_FECOLORMATRIX_TYPE_UNKNOWN -JavaScript/clconst/SVGComponentTransferFunctionElement/SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE -JavaScript/clconst/SVGComponentTransferFunctionElement/SVG_FECOMPONENTTRANSFER_TYPE_GAMMA -JavaScript/clconst/SVGComponentTransferFunctionElement/SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY -JavaScript/clconst/SVGComponentTransferFunctionElement/SVG_FECOMPONENTTRANSFER_TYPE_LINEAR -JavaScript/clconst/SVGComponentTransferFunctionElement/SVG_FECOMPONENTTRANSFER_TYPE_TABLE -JavaScript/clconst/SVGComponentTransferFunctionElement/SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN -JavaScript/clconst/SVGFECompositeElement/SVG_FECOMPOSITE_OPERATOR_ARITHMETIC -JavaScript/clconst/SVGFECompositeElement/SVG_FECOMPOSITE_OPERATOR_ATOP -JavaScript/clconst/SVGFECompositeElement/SVG_FECOMPOSITE_OPERATOR_IN -JavaScript/clconst/SVGFECompositeElement/SVG_FECOMPOSITE_OPERATOR_OUT -JavaScript/clconst/SVGFECompositeElement/SVG_FECOMPOSITE_OPERATOR_OVER -JavaScript/clconst/SVGFECompositeElement/SVG_FECOMPOSITE_OPERATOR_UNKNOWN -JavaScript/clconst/SVGFECompositeElement/SVG_FECOMPOSITE_OPERATOR_XOR -JavaScript/clconst/SVGException/SVG_INVALID_VALUE_ERR -JavaScript/clconst/SVGLength/SVG_LENGTHTYPE_CM -JavaScript/clconst/SVGLength/SVG_LENGTHTYPE_EMS -JavaScript/clconst/SVGLength/SVG_LENGTHTYPE_EXS -JavaScript/clconst/SVGLength/SVG_LENGTHTYPE_IN -JavaScript/clconst/SVGLength/SVG_LENGTHTYPE_MM -JavaScript/clconst/SVGLength/SVG_LENGTHTYPE_NUMBER -JavaScript/clconst/SVGLength/SVG_LENGTHTYPE_PC -JavaScript/clconst/SVGLength/SVG_LENGTHTYPE_PERCENTAGE -JavaScript/clconst/SVGLength/SVG_LENGTHTYPE_PT -JavaScript/clconst/SVGLength/SVG_LENGTHTYPE_PX -JavaScript/clconst/SVGLength/SVG_LENGTHTYPE_UNKNOWN -JavaScript/clconst/SVGMarkerElement/SVG_MARKER_ORIENT_ANGLE -JavaScript/clconst/SVGMarkerElement/SVG_MARKER_ORIENT_AUTO -JavaScript/clconst/SVGMarkerElement/SVG_MARKER_ORIENT_UNKNOWN -JavaScript/clconst/SVGMarkerElement/SVG_MARKERUNITS_STROKEWIDTH -JavaScript/clconst/SVGMarkerElement/SVG_MARKERUNITS_UNKNOWN -JavaScript/clconst/SVGMarkerElement/SVG_MARKERUNITS_USERSPACEONUSE -JavaScript/clconst/SVGException/SVG_MATRIX_NOT_INVERTABLE -JavaScript/clconst/SVGPreserveAspectRatio/SVG_MEETORSLICE_MEET -JavaScript/clconst/SVGPreserveAspectRatio/SVG_MEETORSLICE_SLICE -JavaScript/clconst/SVGPreserveAspectRatio/SVG_MEETORSLICE_UNKNOWN -JavaScript/clconst/SVGFEMorphologyElement/SVG_MORPHOLOGY_OPERATOR_DILATE -JavaScript/clconst/SVGFEMorphologyElement/SVG_MORPHOLOGY_OPERATOR_ERODE -JavaScript/clconst/SVGFEMorphologyElement/SVG_MORPHOLOGY_OPERATOR_UNKNOWN -JavaScript/clconst/SVGPaint/SVG_PAINTTYPE_CURRENTCOLOR -JavaScript/clconst/SVGPaint/SVG_PAINTTYPE_NONE -JavaScript/clconst/SVGPaint/SVG_PAINTTYPE_RGBCOLOR -JavaScript/clconst/SVGPaint/SVG_PAINTTYPE_RGBCOLOR_ICCCOLOR -JavaScript/clconst/SVGPaint/SVG_PAINTTYPE_UNKNOWN -JavaScript/clconst/SVGPaint/SVG_PAINTTYPE_URI -JavaScript/clconst/SVGPaint/SVG_PAINTTYPE_URI_CURRENTCOLOR -JavaScript/clconst/SVGPaint/SVG_PAINTTYPE_URI_NONE -JavaScript/clconst/SVGPaint/SVG_PAINTTYPE_URI_RGBCOLOR -JavaScript/clconst/SVGPaint/SVG_PAINTTYPE_URI_RGBCOLOR_ICCCOLOR -JavaScript/clconst/SVGPreserveAspectRatio/SVG_PRESERVEASPECTRATIO_NONE -JavaScript/clconst/SVGPreserveAspectRatio/SVG_PRESERVEASPECTRATIO_UNKNOWN -JavaScript/clconst/SVGPreserveAspectRatio/SVG_PRESERVEASPECTRATIO_XMAXYMAX -JavaScript/clconst/SVGPreserveAspectRatio/SVG_PRESERVEASPECTRATIO_XMAXYMID -JavaScript/clconst/SVGPreserveAspectRatio/SVG_PRESERVEASPECTRATIO_XMAXYMIN -JavaScript/clconst/SVGPreserveAspectRatio/SVG_PRESERVEASPECTRATIO_XMIDYMAX -JavaScript/clconst/SVGPreserveAspectRatio/SVG_PRESERVEASPECTRATIO_XMIDYMID -JavaScript/clconst/SVGPreserveAspectRatio/SVG_PRESERVEASPECTRATIO_XMIDYMIN -JavaScript/clconst/SVGPreserveAspectRatio/SVG_PRESERVEASPECTRATIO_XMINYMAX -JavaScript/clconst/SVGPreserveAspectRatio/SVG_PRESERVEASPECTRATIO_XMINYMID -JavaScript/clconst/SVGPreserveAspectRatio/SVG_PRESERVEASPECTRATIO_XMINYMIN -JavaScript/clconst/SVGGradientElement/SVG_SPREADMETHOD_PAD -JavaScript/clconst/SVGGradientElement/SVG_SPREADMETHOD_REFLECT -JavaScript/clconst/SVGGradientElement/SVG_SPREADMETHOD_REPEAT -JavaScript/clconst/SVGGradientElement/SVG_SPREADMETHOD_UNKNOWN -JavaScript/clconst/SVGFETurbulenceElement/SVG_STITCHTYPE_NOSTITCH -JavaScript/clconst/SVGFETurbulenceElement/SVG_STITCHTYPE_STITCH -JavaScript/clconst/SVGFETurbulenceElement/SVG_STITCHTYPE_UNKNOWN -JavaScript/clconst/SVGTransform/SVG_TRANSFORM_MATRIX -JavaScript/clconst/SVGTransform/SVG_TRANSFORM_ROTATE -JavaScript/clconst/SVGTransform/SVG_TRANSFORM_SCALE -JavaScript/clconst/SVGTransform/SVG_TRANSFORM_SKEWX -JavaScript/clconst/SVGTransform/SVG_TRANSFORM_SKEWY -JavaScript/clconst/SVGTransform/SVG_TRANSFORM_TRANSLATE -JavaScript/clconst/SVGTransform/SVG_TRANSFORM_UNKNOWN -JavaScript/clconst/SVGFETurbulenceElement/SVG_TURBULENCE_TYPE_FRACTALNOISE -JavaScript/clconst/SVGFETurbulenceElement/SVG_TURBULENCE_TYPE_TURBULENCE -JavaScript/clconst/SVGFETurbulenceElement/SVG_TURBULENCE_TYPE_UNKNOWN -JavaScript/clconst/SVGUnitTypes/SVG_UNIT_TYPE_OBJECTBOUNDINGBOX -JavaScript/clconst/SVGUnitTypes/SVG_UNIT_TYPE_UNKNOWN -JavaScript/clconst/SVGUnitTypes/SVG_UNIT_TYPE_USERSPACEONUSE -JavaScript/clconst/SVGException/SVG_WRONG_TYPE_ERR -JavaScript/clconst/SVGZoomAndPan/SVG_ZOOMANDPAN_DISABLE -JavaScript/clconst/SVGZoomAndPan/SVG_ZOOMANDPAN_MAGNIFY -JavaScript/clconst/SVGZoomAndPan/SVG_ZOOMANDPAN_UNKNOWN -JavaScript/data/DOMWindow/SVGAElement -JavaScript/cl/-/SVGAElement -JavaScript/data/DOMWindow/SVGAltGlyphElement -JavaScript/cl/-/SVGAltGlyphElement -JavaScript/data/DOMWindow/SVGAngle -JavaScript/cl/-/SVGAngle -JavaScript/data/DOMWindow/SVGAnimateColorElement -JavaScript/cl/-/SVGAnimateColorElement -JavaScript/data/DOMWindow/SVGAnimatedAngle -JavaScript/cl/-/SVGAnimatedAngle -JavaScript/data/DOMWindow/SVGAnimatedBoolean -JavaScript/cl/-/SVGAnimatedBoolean -JavaScript/data/DOMWindow/SVGAnimatedEnumeration -JavaScript/cl/-/SVGAnimatedEnumeration -JavaScript/data/DOMWindow/SVGAnimatedInteger -JavaScript/cl/-/SVGAnimatedInteger -JavaScript/data/DOMWindow/SVGAnimatedLength -JavaScript/cl/-/SVGAnimatedLength -JavaScript/data/DOMWindow/SVGAnimatedLengthList -JavaScript/cl/-/SVGAnimatedLengthList -JavaScript/data/DOMWindow/SVGAnimatedNumber -JavaScript/cl/-/SVGAnimatedNumber -JavaScript/data/DOMWindow/SVGAnimatedNumberList -JavaScript/cl/-/SVGAnimatedNumberList -JavaScript/cl/-/SVGAnimatedPathData -JavaScript/cl/-/SVGAnimatedPoints -JavaScript/data/DOMWindow/SVGAnimatedPreserveAspectRatio -JavaScript/cl/-/SVGAnimatedPreserveAspectRatio -JavaScript/data/DOMWindow/SVGAnimatedRect -JavaScript/cl/-/SVGAnimatedRect -JavaScript/data/DOMWindow/SVGAnimatedString -JavaScript/cl/-/SVGAnimatedString -JavaScript/data/DOMWindow/SVGAnimatedTransformList -JavaScript/cl/-/SVGAnimatedTransformList -JavaScript/data/DOMWindow/SVGAnimateElement -JavaScript/cl/-/SVGAnimateElement -JavaScript/data/DOMWindow/SVGAnimateTransformElement -JavaScript/cl/-/SVGAnimateTransformElement -JavaScript/cl/-/SVGAnimationElement -JavaScript/data/DOMWindow/SVGCircleElement -JavaScript/cl/-/SVGCircleElement -JavaScript/data/DOMWindow/SVGClipPathElement -JavaScript/cl/-/SVGClipPathElement -JavaScript/data/DOMWindow/SVGColor -JavaScript/cl/-/SVGColor -JavaScript/data/DOMWindow/SVGComponentTransferFunctionElement -JavaScript/cl/-/SVGComponentTransferFunctionElement -JavaScript/data/DOMWindow/SVGCursorElement -JavaScript/cl/-/SVGCursorElement -JavaScript/data/DOMWindow/SVGDefsElement -JavaScript/cl/-/SVGDefsElement -JavaScript/data/DOMWindow/SVGDescElement -JavaScript/cl/-/SVGDescElement -JavaScript/data/DOMWindow/SVGDocument -JavaScript/cl/-/SVGDocument -JavaScript/data/DOMWindow/SVGElement -JavaScript/cl/-/SVGElement -JavaScript/data/DOMWindow/SVGElementInstance -JavaScript/data/DOMWindow/SVGElementInstanceList -JavaScript/cl/-/SVGElementInstanceList -JavaScript/data/DOMWindow/SVGEllipseElement -JavaScript/cl/-/SVGEllipseElement -JavaScript/data/DOMWindow/SVGException -JavaScript/cl/-/SVGException -JavaScript/cl/-/SVGExternalResourcesRequired -JavaScript/data/DOMWindow/SVGFEBlendElement -JavaScript/cl/-/SVGFEBlendElement -JavaScript/data/DOMWindow/SVGFEColorMatrixElement -JavaScript/cl/-/SVGFEColorMatrixElement -JavaScript/data/DOMWindow/SVGFEComponentTransferElement -JavaScript/cl/-/SVGFEComponentTransferElement -JavaScript/data/DOMWindow/SVGFECompositeElement -JavaScript/cl/-/SVGFECompositeElement -JavaScript/data/DOMWindow/SVGFEDiffuseLightingElement -JavaScript/cl/-/SVGFEDiffuseLightingElement -JavaScript/data/DOMWindow/SVGFEDisplacementMapElement -JavaScript/cl/-/SVGFEDisplacementMapElement -JavaScript/data/DOMWindow/SVGFEDistantLightElement -JavaScript/cl/-/SVGFEDistantLightElement -JavaScript/data/DOMWindow/SVGFEFloodElement -JavaScript/cl/-/SVGFEFloodElement -JavaScript/data/DOMWindow/SVGFEFuncAElement -JavaScript/cl/-/SVGFEFuncAElement -JavaScript/data/DOMWindow/SVGFEFuncBElement -JavaScript/cl/-/SVGFEFuncBElement -JavaScript/data/DOMWindow/SVGFEFuncGElement -JavaScript/cl/-/SVGFEFuncGElement -JavaScript/data/DOMWindow/SVGFEFuncRElement -JavaScript/cl/-/SVGFEFuncRElement -JavaScript/data/DOMWindow/SVGFEGaussianBlurElement -JavaScript/cl/-/SVGFEGaussianBlurElement -JavaScript/data/DOMWindow/SVGFEImageElement -JavaScript/cl/-/SVGFEImageElement -JavaScript/data/DOMWindow/SVGFEMergeElement -JavaScript/cl/-/SVGFEMergeElement -JavaScript/data/DOMWindow/SVGFEMergeNodeElement -JavaScript/cl/-/SVGFEMergeNodeElement -JavaScript/data/DOMWindow/SVGFEMorphologyElement -JavaScript/cl/-/SVGFEMorphologyElement -JavaScript/data/DOMWindow/SVGFEOffsetElement -JavaScript/cl/-/SVGFEOffsetElement -JavaScript/data/DOMWindow/SVGFEPointLightElement -JavaScript/cl/-/SVGFEPointLightElement -JavaScript/data/DOMWindow/SVGFESpecularLightingElement -JavaScript/cl/-/SVGFESpecularLightingElement -JavaScript/data/DOMWindow/SVGFESpotLightElement -JavaScript/cl/-/SVGFESpotLightElement -JavaScript/data/DOMWindow/SVGFETileElement -JavaScript/cl/-/SVGFETileElement -JavaScript/data/DOMWindow/SVGFETurbulenceElement -JavaScript/cl/-/SVGFETurbulenceElement -JavaScript/data/DOMWindow/SVGFilterElement -JavaScript/cl/-/SVGFilterElement -JavaScript/cl/-/SVGFilterPrimitiveStandardAttributes -JavaScript/cl/-/SVGFitToViewBox -JavaScript/data/DOMWindow/SVGFontElement -JavaScript/cl/-/SVGFontElement -JavaScript/data/DOMWindow/SVGFontFaceElement -JavaScript/cl/-/SVGFontFaceElement -JavaScript/data/DOMWindow/SVGFontFaceFormatElement -JavaScript/cl/-/SVGFontFaceFormatElement -JavaScript/data/DOMWindow/SVGFontFaceNameElement -JavaScript/cl/-/SVGFontFaceNameElement -JavaScript/data/DOMWindow/SVGFontFaceSrcElement -JavaScript/cl/-/SVGFontFaceSrcElement -JavaScript/data/DOMWindow/SVGFontFaceUriElement -JavaScript/cl/-/SVGFontFaceUriElement -JavaScript/data/DOMWindow/SVGForeignObjectElement -JavaScript/cl/-/SVGForeignObjectElement -JavaScript/data/DOMWindow/SVGGElement -JavaScript/cl/-/SVGGElement -JavaScript/data/DOMWindow/SVGGlyphElement -JavaScript/cl/-/SVGGlyphElement -JavaScript/data/DOMWindow/SVGGradientElement -JavaScript/cl/-/SVGGradientElement -JavaScript/data/DOMWindow/SVGHKernElement -JavaScript/cl/-/SVGHKernElement -JavaScript/data/DOMWindow/SVGImageElement -JavaScript/cl/-/SVGImageElement -JavaScript/cl/-/SVGLangSpace -JavaScript/data/DOMWindow/SVGLength -JavaScript/cl/-/SVGLength -JavaScript/data/DOMWindow/SVGLengthList -JavaScript/cl/-/SVGLengthList -JavaScript/data/DOMWindow/SVGLinearGradientElement -JavaScript/cl/-/SVGLinearGradientElement -JavaScript/data/DOMWindow/SVGLineElement -JavaScript/cl/-/SVGLineElement -JavaScript/cl/-/SVGLocatable -JavaScript/data/DOMWindow/SVGMarkerElement -JavaScript/cl/-/SVGMarkerElement -JavaScript/data/DOMWindow/SVGMaskElement -JavaScript/cl/-/SVGMaskElement -JavaScript/data/DOMWindow/SVGMatrix -JavaScript/cl/-/SVGMatrix -JavaScript/data/DOMWindow/SVGMetadataElement -JavaScript/cl/-/SVGMetadataElement -JavaScript/data/DOMWindow/SVGMissingGlyphElement -JavaScript/cl/-/SVGMissingGlyphElement -JavaScript/data/DOMWindow/SVGNumber -JavaScript/cl/-/SVGNumber -JavaScript/data/DOMWindow/SVGNumberList -JavaScript/cl/-/SVGNumberList -JavaScript/data/DOMWindow/SVGPaint -JavaScript/cl/-/SVGPaint -JavaScript/data/DOMWindow/SVGPathElement -JavaScript/cl/-/SVGPathElement -JavaScript/data/DOMWindow/SVGPathSeg -JavaScript/cl/-/SVGPathSeg -JavaScript/data/DOMWindow/SVGPathSegArcAbs -JavaScript/cl/-/SVGPathSegArcAbs -JavaScript/data/DOMWindow/SVGPathSegArcRel -JavaScript/cl/-/SVGPathSegArcRel -JavaScript/data/DOMWindow/SVGPathSegClosePath -JavaScript/cl/-/SVGPathSegClosePath -JavaScript/data/DOMWindow/SVGPathSegCurvetoCubicAbs -JavaScript/cl/-/SVGPathSegCurvetoCubicAbs -JavaScript/data/DOMWindow/SVGPathSegCurvetoCubicRel -JavaScript/cl/-/SVGPathSegCurvetoCubicRel -JavaScript/data/DOMWindow/SVGPathSegCurvetoCubicSmoothAbs -JavaScript/cl/-/SVGPathSegCurvetoCubicSmoothAbs -JavaScript/data/DOMWindow/SVGPathSegCurvetoCubicSmoothRel -JavaScript/cl/-/SVGPathSegCurvetoCubicSmoothRel -JavaScript/data/DOMWindow/SVGPathSegCurvetoQuadraticAbs -JavaScript/cl/-/SVGPathSegCurvetoQuadraticAbs -JavaScript/data/DOMWindow/SVGPathSegCurvetoQuadraticRel -JavaScript/cl/-/SVGPathSegCurvetoQuadraticRel -JavaScript/data/DOMWindow/SVGPathSegCurvetoQuadraticSmoothAbs -JavaScript/cl/-/SVGPathSegCurvetoQuadraticSmoothAbs -JavaScript/data/DOMWindow/SVGPathSegCurvetoQuadraticSmoothRel -JavaScript/cl/-/SVGPathSegCurvetoQuadraticSmoothRel -JavaScript/data/DOMWindow/SVGPathSegLinetoAbs -JavaScript/cl/-/SVGPathSegLinetoAbs -JavaScript/data/DOMWindow/SVGPathSegLinetoHorizontalAbs -JavaScript/cl/-/SVGPathSegLinetoHorizontalAbs -JavaScript/data/DOMWindow/SVGPathSegLinetoHorizontalRel -JavaScript/cl/-/SVGPathSegLinetoHorizontalRel -JavaScript/data/DOMWindow/SVGPathSegLinetoRel -JavaScript/cl/-/SVGPathSegLinetoRel -JavaScript/data/DOMWindow/SVGPathSegLinetoVerticalAbs -JavaScript/cl/-/SVGPathSegLinetoVerticalAbs -JavaScript/data/DOMWindow/SVGPathSegLinetoVerticalRel -JavaScript/cl/-/SVGPathSegLinetoVerticalRel -JavaScript/data/DOMWindow/SVGPathSegList -JavaScript/cl/-/SVGPathSegList -JavaScript/data/DOMWindow/SVGPathSegMovetoAbs -JavaScript/cl/-/SVGPathSegMovetoAbs -JavaScript/data/DOMWindow/SVGPathSegMovetoRel -JavaScript/cl/-/SVGPathSegMovetoRel -JavaScript/data/DOMWindow/SVGPatternElement -JavaScript/cl/-/SVGPatternElement -JavaScript/data/DOMWindow/SVGPoint -JavaScript/cl/-/SVGPoint -JavaScript/data/DOMWindow/SVGPointList -JavaScript/cl/-/SVGPointList -JavaScript/data/DOMWindow/SVGPolygonElement -JavaScript/cl/-/SVGPolygonElement -JavaScript/data/DOMWindow/SVGPolylineElement -JavaScript/cl/-/SVGPolylineElement -JavaScript/data/DOMWindow/SVGPreserveAspectRatio -JavaScript/cl/-/SVGPreserveAspectRatio -JavaScript/data/DOMWindow/SVGRadialGradientElement -JavaScript/cl/-/SVGRadialGradientElement -JavaScript/data/DOMWindow/SVGRect -JavaScript/cl/-/SVGRect -JavaScript/data/DOMWindow/SVGRectElement -JavaScript/cl/-/SVGRectElement -JavaScript/data/DOMWindow/SVGRenderingIntent -JavaScript/cl/-/SVGRenderingIntent -JavaScript/data/DOMWindow/SVGScriptElement -JavaScript/cl/-/SVGScriptElement -JavaScript/data/DOMWindow/SVGSetElement -JavaScript/cl/-/SVGSetElement -JavaScript/data/DOMWindow/SVGStopElement -JavaScript/cl/-/SVGStopElement -JavaScript/data/DOMWindow/SVGStringList -JavaScript/cl/-/SVGStringList -JavaScript/cl/-/SVGStylable -JavaScript/data/DOMWindow/SVGStyleElement -JavaScript/cl/-/SVGStyleElement -JavaScript/data/DOMWindow/SVGSVGElement -JavaScript/cl/-/SVGSVGElement -JavaScript/data/DOMWindow/SVGSwitchElement -JavaScript/cl/-/SVGSwitchElement -JavaScript/data/DOMWindow/SVGSymbolElement -JavaScript/cl/-/SVGSymbolElement -JavaScript/cl/-/SVGTests -JavaScript/data/DOMWindow/SVGTextContentElement -JavaScript/cl/-/SVGTextContentElement -JavaScript/data/DOMWindow/SVGTextElement -JavaScript/cl/-/SVGTextElement -JavaScript/data/DOMWindow/SVGTextPathElement -JavaScript/cl/-/SVGTextPathElement -JavaScript/data/DOMWindow/SVGTextPositioningElement -JavaScript/cl/-/SVGTextPositioningElement -JavaScript/data/DOMWindow/SVGTitleElement -JavaScript/cl/-/SVGTitleElement -JavaScript/data/DOMWindow/SVGTransform -JavaScript/cl/-/SVGTransform -JavaScript/cl/-/SVGTransformable -JavaScript/data/DOMWindow/SVGTransformList -JavaScript/cl/-/SVGTransformList -JavaScript/data/DOMWindow/SVGTRefElement -JavaScript/cl/-/SVGTRefElement -JavaScript/data/DOMWindow/SVGTSpanElement -JavaScript/cl/-/SVGTSpanElement -JavaScript/data/DOMWindow/SVGUnitTypes -JavaScript/cl/-/SVGUnitTypes -JavaScript/cl/-/SVGURIReference -JavaScript/data/DOMWindow/SVGUseElement -JavaScript/cl/-/SVGUseElement -JavaScript/data/DOMWindow/SVGViewElement -JavaScript/cl/-/SVGViewElement -JavaScript/cl/-/SVGViewSpec -JavaScript/data/DOMWindow/SVGVKernElement -JavaScript/cl/-/SVGVKernElement -JavaScript/cl/-/SVGZoomAndPan -JavaScript/data/DOMWindow/SVGZoomEvent -JavaScript/cl/-/SVGZoomEvent -C/func/-/swab -C++/instm/ATADeviceNub/swapBytes16 -JavaScript/instm/DOMApplicationCache/swapCache -C/func/-/swapcontext -Objective-C/instm/NSResponder/swapWithMark: -JavaScript/data/SVGPathSegArcAbs/sweepFlag -JavaScript/data/SVGPathSegArcRel/sweepFlag -Objective-C/instm/NSResponder/swipeWithEvent: -C/func/-/swprintf -C/func/-/swprintf_l -C/func/-/swscanf -C/func/-/swscanf_l -Objective-C/clm/NSCharacterSet/symbolCharacterSet -Objective-C/instm/NSFileWrapper/symbolicLinkDestination -Objective-C/instm/NSFileWrapper/symbolicLinkDestinationURL -Objective-C/instm/NSFontDescriptor/symbolicTraits -C/func/-/symlink -Objective-C/clm/DRFile(VirtualLinks)/symLinkPointingTo:inFilesystem: -C/tag/-/symtab_command -Objective-C/instm/ISyncSessionDriver/sync -C/func/-/sync -Objective-C/instm/ISyncClient/syncAlertToolPath -Objective-C/instm/ISyncManager/syncDisabledReason -C++/data/IOATABusCommand/syncer -Objective-C/instm/ODQuery/synchronize -Objective-C/instm/NSUserDefaults/synchronize -C++/instm/IODMACommand/synchronize -C++/instm/IOFWPhysicalAddressSpace/synchronize -Objective-C/instm/ODRecord/synchronizeAndReturnError: -C++/instm/IOBlockStorageDriver/synchronizeCache -C++/instm/IOFilterScheme/synchronizeCache -C++/instm/IOMedia/synchronizeCache -C++/instm/IOStorage/synchronizeCache -C++/instm/IOPartitionScheme/synchronizeCache -Objective-C/instm/NSFileHandle/synchronizeFile -C++/tag/IODMACommand/SynchronizeOptions -Objective-C/instm/NSPopUpButtonCell/synchronizeTitleAndSelectedItem -Objective-C/instm/NSPopUpButton/synchronizeTitleAndSelectedItem -Objective-C/instm/NSWindowController/synchronizeWindowTitleWithDocumentName -C/func/-/syncok -Objective-C/instm/NSPersistentStoreCoordinator/syncWithClient:inBackground:handler:error: -JavaScript/clconst/DOMCoreException/SYNTAX_ERR -C/econst/-/synthNotReady -C/econst/-/synthOpenFailed -C/func/-/sys_cache_control -C/func/-/sys_dcache_flush -C/func/-/sys_errlist -C/func/-/sys_icache_invalidate -C/func/-/sys_nerr -C/func/-/sys_siglist -C/func/-/sys_signame -C/func/-/syscall -C/func/-/sysconf -C/func/-/sysctl -C/func/-/sysctlbyname -C/func/-/sysctlnametomib -C/func/-/sysexits -C/func/-/syslog -C/func/-/system -Objective-C/clm/NSPortNameServer/systemDefaultPortNameServer -Objective-C/clm/NSFont/systemFontOfSize: -Objective-C/clm/NSFont/systemFontSize -Objective-C/clm/NSFont/systemFontSizeForControlSize: -Objective-C/instm/NSXMLDTDNode/systemID -Objective-C/instm/NSXMLDTD/systemID -Objective-C/instm/NSXMLParser/systemID -JavaScript/data/DocumentType/systemId -JavaScript/data/Entity/systemId -JavaScript/data/Notation/systemId -JavaScript/data/SVGTests/systemLanguage -Objective-C/clm/NSLocale/systemLocale -C/func/-/systemPowerEventOccurred -C/tdef/-/SystemSoundID -Objective-C/clm/NSStatusBar/systemStatusBar -Objective-C/instm/NSEvent/systemTabletID -Objective-C/clm/NSTimeZone/systemTimeZone -C/tdef/-/SystemUIMode -C/tdef/-/SystemUIOptions -Objective-C/instm/NSProcessInfo/systemUptime -Objective-C/instm/NSUnarchiver/systemVersion -Objective-C/instm/NSCoder/systemVersion -C++/instm/IOService/systemWake -C++/instm/IONetworkController/systemWillShutdown -C++/instm/IOService/systemWillShutdown -JavaScript/data/HTMLElement/tabIndex -Objective-C/instm/NSMatrix/tabKeyTraversesCells -Objective-C/instm/NSTextTableBlock/table -C/macro/-/TABLE_HANDLER_NAME -Objective-C/instm/NSTableView/tableColumns -Objective-C/instm/NSTableView/tableColumnWithIdentifier: -Objective-C/instm/NSEvent/tabletID -Objective-C/instm/NSResponder/tabletPoint: -Objective-C/instm/NSResponder/tabletProximity: -JavaScript/data/SVGComponentTransferFunctionElement/tableValues -Objective-C/instm/NSTableHeaderView/tableView -Objective-C/instm/NSTableColumn/tableView -Objective-C/intfm/NSTableViewDataSource/tableView:acceptDrop:row:dropOperation: -Objective-C/intfm/NSTableViewDelegate/tableView:dataCellForTableColumn:row: -Objective-C/intfm/NSTableViewDelegate/tableView:didClickTableColumn: -Objective-C/intfm/NSTableViewDelegate/tableView:didDragTableColumn: -Objective-C/intfm/NSTableViewDelegate/tableView:heightOfRow: -Objective-C/intfm/NSTableViewDelegate/tableView:isGroupRow: -Objective-C/intfm/NSTableViewDelegate/tableView:mouseDownInHeaderOfTableColumn: -Objective-C/intfm/NSTableViewDataSource/tableView:namesOfPromisedFilesDroppedAtDestination:forDraggedRowsWithIndexes: -Objective-C/intfm/NSTableViewDelegate/tableView:nextTypeSelectMatchFromRow:toRow:forString: -Objective-C/intfm/NSTableViewDataSource/tableView:objectValueForTableColumn:row: -Objective-C/intfm/NSTableViewDelegate/tableView:selectionIndexesForProposedSelection: -Objective-C/intfm/NSTableViewDataSource/tableView:setObjectValue:forTableColumn:row: -Objective-C/intfm/NSTableViewDelegate/tableView:shouldEditTableColumn:row: -Objective-C/intfm/NSTableViewDelegate/tableView:shouldReorderColumn:toColumn: -Objective-C/intfm/NSTableViewDelegate/tableView:shouldSelectRow: -Objective-C/intfm/NSTableViewDelegate/tableView:shouldSelectTableColumn: -Objective-C/intfm/NSTableViewDelegate/tableView:shouldShowCellExpansionForTableColumn:row: -Objective-C/intfm/NSTableViewDelegate/tableView:shouldTrackCell:forTableColumn:row: -Objective-C/intfm/NSTableViewDelegate/tableView:shouldTypeSelectForEvent:withCurrentSearchString: -Objective-C/intfm/NSTableViewDelegate/tableView:sizeToFitWidthOfColumn: -Objective-C/intfm/NSTableViewDataSource/tableView:sortDescriptorsDidChange: -Objective-C/intfm/NSTableViewDelegate/tableView:toolTipForCell:rect:tableColumn:row:mouseLocation: -Objective-C/intfm/NSTableViewDelegate/tableView:typeSelectStringForTableColumn:row: -Objective-C/intfm/NSTableViewDataSource/tableView:validateDrop:proposedRow:proposedDropOperation: -Objective-C/intfm/NSTableViewDelegate/tableView:willDisplayCell:forTableColumn:row: -Objective-C/instm/NSObject/tableView:writeRows:toPasteboard: -Objective-C/intfm/NSTableViewDataSource/tableView:writeRowsWithIndexes:toPasteboard: -Objective-C/intfm/NSTableViewDelegate/tableViewColumnDidMove: -Objective-C/intfm/NSTableViewDelegate/tableViewColumnDidResize: -Objective-C/intfm/NSTableViewDelegate/tableViewSelectionDidChange: -Objective-C/intfm/NSTableViewDelegate/tableViewSelectionIsChanging: -Objective-C/instm/NSTabViewItem/tabState -Objective-C/instm/WebPreferences/tabsToLinks -Objective-C/instm/NSParagraphStyle/tabStops -Objective-C/instm/NSTextTab/tabStopType -Objective-C/instm/NSTabViewItem/tabView -Objective-C/intfm/NSTabViewDelegate/tabView:didSelectTabViewItem: -Objective-C/intfm/NSTabViewDelegate/tabView:shouldSelectTabViewItem: -Objective-C/intfm/NSTabViewDelegate/tabView:willSelectTabViewItem: -Objective-C/intfm/NSTabViewDelegate/tabViewDidChangeNumberOfTabViewItems: -Objective-C/instm/NSTabView/tabViewItemAtIndex: -Objective-C/instm/NSTabView/tabViewItemAtPoint: -Objective-C/instm/NSTabView/tabViewItems -Objective-C/instm/NSTabView/tabViewType -Objective-C/instm/NSToolbarItem/tag -Objective-C/intfm/NSValidatedUserInterfaceItem/tag -Objective-C/instm/NSActionCell/tag -Objective-C/instm/NSMenuItemCell/tag -Objective-C/instm/IMAVControl/tag -Objective-C/instm/NSMenuItem/tag -Objective-C/instm/NSControl/tag -Objective-C/instm/NSView/tag -Objective-C/instm/NSCell/tag -Objective-C/instm/NSSegmentedCell/tagForSegment: -C++/instm/OSMetaClass/taggedRelease -C++/instm/OSObject/taggedRelease -C++/instm/OSMetaClassBase/taggedRelease -C++/instm/OSBoolean/taggedRelease -C++/instm/OSSymbol/taggedRelease -C++/instm/OSMetaClassBase/taggedRetain -C++/instm/OSBoolean/taggedRetain -C++/instm/OSMetaClass/taggedRetain -C++/instm/OSObject/taggedRetain -JavaScript/data/Element/tagName -JavaScript/instm/HTMLAllCollection/tags -Objective-C/instm/NSParagraphStyle/tailIndent -C/func/-/TAILQ_CONCAT -C/func/-/TAILQ_EMPTY -C/func/-/TAILQ_ENTRY -C/func/-/TAILQ_FIRST -C/func/-/TAILQ_FOREACH -C/func/-/TAILQ_FOREACH_REVERSE -C/func/-/TAILQ_FOREACH_REVERSE_SAFE -C/func/-/TAILQ_FOREACH_SAFE -C/func/-/TAILQ_HEAD -C/func/-/TAILQ_HEAD_INITIALIZER -C/func/-/TAILQ_INIT -C/func/-/TAILQ_INSERT_AFTER -C/func/-/TAILQ_INSERT_BEFORE -C/func/-/TAILQ_INSERT_HEAD -C/func/-/TAILQ_INSERT_TAIL -C/func/-/TAILQ_LAST -C/func/-/TAILQ_NEXT -C/func/-/TAILQ_PREV -C/func/-/TAILQ_REMOVE -Objective-C/instm/PDFView/takeBackgroundColorFrom: -Objective-C/instm/NSColorWell/takeColorFrom: -Objective-C/instm/NSControl/takeDoubleValueFrom: -Objective-C/instm/NSCell/takeDoubleValueFrom: -Objective-C/instm/NSControl/takeFloatValueFrom: -Objective-C/instm/NSCell/takeFloatValueFrom: -Objective-C/instm/NSControl/takeIntegerValueFrom: -Objective-C/instm/NSCell/takeIntegerValueFrom: -Objective-C/instm/NSControl/takeIntValueFrom: -Objective-C/instm/NSCell/takeIntValueFrom: -Objective-C/instm/NSControl/takeObjectValueFrom: -Objective-C/instm/NSCell/takeObjectValueFrom: -Objective-C/instm/PDFView/takePasswordFrom: -Objective-C/instm/NSTabView/takeSelectedTabViewItemFromSender: -Objective-C/instm/NSBrowser/takesTitleFromPreviousColumn -Objective-C/instm/NSObject/takeStoredValue:forKey: -Objective-C/instm/WebView/takeStringURLFrom: -Objective-C/instm/NSControl/takeStringValueFrom: -Objective-C/instm/NSCell/takeStringValueFrom: -Objective-C/instm/NSObject/takeValue:forKey: -Objective-C/instm/NSObject/takeValue:forKeyPath: -Objective-C/instm/NSObject/takeValuesFromDictionary: -C/func/-/tan -C/func/-/tanf -Objective-C/instm/NSEvent/tangentialPressure -C/func/-/tanh -C/func/-/tanhf -C/func/-/tanhl -C/func/-/tanl -Objective-C/instm/NSProtocolChecker/target -Objective-C/instm/NSToolbarItem/target -Objective-C/instm/NSActionCell/target -Objective-C/instm/NSStatusItem/target -Objective-C/instm/NSFontManager/target -Objective-C/instm/FxTexture/target -Objective-C/instm/IMAVControl/target -Objective-C/instm/NSMenuItem/target -Objective-C/instm/NSControl/target -Objective-C/instm/NSInvocation/target -Objective-C/instm/ABPeoplePickerView/target -Objective-C/instp/ABPeoplePickerView/target -Objective-C/binding/NSButtonCell/target -Objective-C/binding/NSButton/target -Objective-C/instm/NSCell/target -JavaScript/data/Event/target -JavaScript/data/HTMLAreaElement/target -JavaScript/data/HTMLFormElement/target -JavaScript/data/HTMLBaseElement/target -JavaScript/data/HTMLAnchorElement/target -JavaScript/data/HTMLLinkElement/target -JavaScript/data/SVGAElement/target -JavaScript/data/ProcessingInstruction/target -JavaScript/data/Touch/target -JavaScript/data/SVGAnimationElement/targetElement -Objective-C/instm/NSApplication/targetForAction: -Objective-C/instm/NSApplication/targetForAction:to:from: -Objective-C/instm/ISyncRecordSnapshot/targetIdentifiersForRelationshipName:withSourceIdentifier: -C++/instm/IOSCSIProtocolInterface/TargetReset -JavaScript/data/TouchEvent/targetTouches -Objective-C/clm/CalTask/task -Objective-C/instm/XGJob/taskCount -Objective-C/instm/XGFile/taskIdentifier -Objective-C/clm/CalCalendarStore/taskPredicateWithCalendars: -Objective-C/clm/CalCalendarStore/taskPredicateWithTasksCompletedSince:calendars: -Objective-C/clm/CalCalendarStore/taskPredicateWithUncompletedTasks: -Objective-C/clm/CalCalendarStore/taskPredicateWithUncompletedTasksDueBefore:calendars: -C/tdef/-/TaskProc -C/tdef/-/TaskStorageIndex -C/tdef/-/TaskStorageValue -Objective-C/instm/CalCalendarStore/tasksWithPredicate: -Objective-C/instm/CalCalendarStore/taskWithUID: -C/tdef/-/tAttributeEntry -C/tdef/-/tAttributeEntryPtr -C/tdef/-/tAttributeListRef -C/tdef/-/tAttributeValueEntry -C/tdef/-/tAttributeValueEntryPtr -C/tdef/-/tAttributeValueListRef -JavaScript/data/HTMLTableElement/tBodies -C/tdef/-/tBuffer -C/econst/-/tc24HourMax -C/func/-/tcdrain -C/econst/-/tcDropFrame -C/func/-/tcflow -C/func/-/tcflush -C/func/-/TCFrameNumberToTimeCode -C/func/-/tcgetattr -C/func/-/TCGetCurrentTimeCode -C/func/-/TCGetDisplayOptions -C/func/-/tcgetpgrp -C/func/-/tcgetsid -C/func/-/TCGetSourceRef -C/func/-/TCGetTimeCodeAtTime -C/func/-/TCGetTimeCodeFlags -C/func/-/Tcl_Access -C/func/-/Tcl_AddErrorInfo -C/func/-/Tcl_AddObjErrorInfo -C/func/-/Tcl_AlertNotifier -C/func/-/Tcl_Alloc -C/func/-/Tcl_AllocStatBuf -C/func/-/Tcl_AllowExceptions -C/func/-/Tcl_AppendAllObjTypes -C/func/-/Tcl_AppendElement -C/func/-/Tcl_AppendExportList -C/func/-/Tcl_AppendFormatToObj -C/func/-/Tcl_AppendLimitedToObj -C/func/-/Tcl_AppendObjToErrorInfo -C/func/-/Tcl_AppendObjToObj -C/func/-/Tcl_AppendPrintfToObj -C/func/-/Tcl_AppendResult -C/func/-/Tcl_AppendResultVA -C/func/-/Tcl_AppendStringsToObj -C/func/-/Tcl_AppendStringsToObjVA -C/func/-/Tcl_AppendToObj -C/func/-/Tcl_AppendUnicodeToObj -C/func/-/Tcl_AppInit -C/func/-/Tcl_AsyncCreate -C/func/-/Tcl_AsyncDelete -C/func/-/Tcl_AsyncInvoke -C/func/-/Tcl_AsyncMark -C/func/-/Tcl_AsyncReady -C/func/-/Tcl_AttemptAlloc -C/func/-/Tcl_AttemptRealloc -C/func/-/Tcl_AttemptSetObjLength -C/func/-/Tcl_BackgroundError -C/func/-/Tcl_Backslash -C/func/-/Tcl_BadChannelOption -C/func/-/Tcl_CallWhenDeleted -C/func/-/Tcl_CancelIdleCall -C/func/-/Tcl_ChannelBlockModeProc -C/func/-/Tcl_ChannelBuffered -C/func/-/Tcl_ChannelClose2Proc -C/func/-/Tcl_ChannelCloseProc -C/func/-/Tcl_ChannelFlushProc -C/func/-/Tcl_ChannelGetHandleProc -C/func/-/Tcl_ChannelGetOptionProc -C/func/-/Tcl_ChannelHandlerProc -C/func/-/Tcl_ChannelInputProc -C/func/-/Tcl_ChannelName -C/func/-/Tcl_ChannelOutputProc -C/func/-/Tcl_ChannelSeekProc -C/func/-/Tcl_ChannelSetOptionProc -C/func/-/Tcl_ChannelThreadActionProc -C/func/-/Tcl_ChannelTruncateProc -C/func/-/Tcl_ChannelVersion -C/func/-/Tcl_ChannelWatchProc -C/func/-/Tcl_ChannelWideSeekProc -C/func/-/Tcl_Chdir -C/func/-/Tcl_ClearChannelHandlers -C/func/-/Tcl_Close -C/func/-/Tcl_CommandComplete -C/func/-/Tcl_CommandTraceInfo -C/func/-/Tcl_Concat -C/func/-/Tcl_ConcatObj -C/func/-/Tcl_ConditionFinalize -C/func/-/Tcl_ConditionNotify -C/func/-/Tcl_ConditionWait -C/func/-/Tcl_ConvertCountedElement -C/func/-/Tcl_ConvertElement -C/func/-/Tcl_ConvertToType -C/func/-/Tcl_CreateAlias -C/func/-/Tcl_CreateAliasObj -C/func/-/Tcl_CreateChannel -C/func/-/Tcl_CreateChannelHandler -C/func/-/Tcl_CreateCloseHandler -C/func/-/Tcl_CreateCommand -C/func/-/Tcl_CreateEncoding -C/func/-/Tcl_CreateEnsemble -C/func/-/Tcl_CreateEventSource -C/func/-/Tcl_CreateExitHandler -C/func/-/Tcl_CreateFileHandler -C/func/-/Tcl_CreateHashEntry -C/func/-/Tcl_CreateInterp -C/func/-/Tcl_CreateMathFunc -C/func/-/Tcl_CreateNamespace -C/func/-/Tcl_CreateObjCommand -C/func/-/Tcl_CreateObjTrace -C/func/-/Tcl_CreateSlave -C/func/-/Tcl_CreateThread -C/func/-/Tcl_CreateThreadExitHandler -C/func/-/Tcl_CreateTimerHandler -C/func/-/Tcl_CreateTrace -C/func/-/Tcl_CutChannel -C/func/-/Tcl_DecrRefCount -C/func/-/Tcl_DeleteAssocData -C/func/-/Tcl_DeleteChannelHandler -C/func/-/Tcl_DeleteCloseHandler -C/func/-/Tcl_DeleteCommand -C/func/-/Tcl_DeleteCommandFromToken -C/func/-/Tcl_DeleteEvents -C/func/-/Tcl_DeleteEventSource -C/func/-/Tcl_DeleteExitHandler -C/func/-/Tcl_DeleteFileHandler -C/func/-/Tcl_DeleteHashEntry -C/func/-/Tcl_DeleteHashTable -C/func/-/Tcl_DeleteInterp -C/func/-/Tcl_DeleteNamespace -C/func/-/Tcl_DeleteThreadExitHandler -C/func/-/Tcl_DeleteTimerHandler -C/func/-/Tcl_DeleteTrace -C/func/-/Tcl_DetachChannel -C/func/-/Tcl_DetachPids -C/func/-/Tcl_DictObjDone -C/func/-/Tcl_DictObjFirst -C/func/-/Tcl_DictObjGet -C/func/-/Tcl_DictObjNext -C/func/-/Tcl_DictObjPut -C/func/-/Tcl_DictObjPutKeyList -C/func/-/Tcl_DictObjRemove -C/func/-/Tcl_DictObjRemoveKeyList -C/func/-/Tcl_DictObjSize -C/func/-/Tcl_DiscardInterpState -C/func/-/Tcl_DiscardResult -C/func/-/Tcl_DontCallWhenDeleted -C/func/-/Tcl_DoOneEvent -C/func/-/Tcl_DoWhenIdle -C/func/-/Tcl_DStringAppend -C/func/-/Tcl_DStringAppendElement -C/func/-/Tcl_DStringEndSublist -C/func/-/Tcl_DStringFree -C/func/-/Tcl_DStringGetResult -C/func/-/Tcl_DStringInit -C/func/-/Tcl_DStringLength -C/func/-/Tcl_DStringResult -C/func/-/Tcl_DStringSetLength -C/func/-/Tcl_DStringStartSublist -C/func/-/Tcl_DStringTrunc -C/func/-/Tcl_DStringValue -C/func/-/Tcl_DumpActiveMemory -C/func/-/Tcl_DuplicateObj -C/func/-/Tcl_Eof -C/func/-/Tcl_ErrnoId -C/func/-/Tcl_ErrnoMsg -C/func/-/Tcl_Eval -C/func/-/Tcl_EvalEx -C/func/-/Tcl_EvalFile -C/func/-/Tcl_EvalObjEx -C/func/-/Tcl_EvalObjv -C/func/-/Tcl_EvalTokens -C/func/-/Tcl_EvalTokensStandard -C/func/-/Tcl_EventuallyFree -C/func/-/Tcl_Exit -C/func/-/Tcl_ExitThread -C/func/-/Tcl_Export -C/func/-/Tcl_ExposeCommand -C/func/-/Tcl_ExprBoolean -C/func/-/Tcl_ExprBooleanObj -C/func/-/Tcl_ExprDouble -C/func/-/Tcl_ExprDoubleObj -C/func/-/Tcl_ExprLong -C/func/-/Tcl_ExprLongObj -C/func/-/Tcl_ExprObj -C/func/-/Tcl_ExprString -C/func/-/Tcl_ExternalToUtf -C/func/-/Tcl_ExternalToUtfDString -C/func/-/Tcl_Finalize -C/func/-/Tcl_FinalizeNotifier -C/func/-/Tcl_FinalizeThread -C/func/-/Tcl_FindCommand -C/func/-/Tcl_FindEnsemble -C/func/-/Tcl_FindExecutable -C/func/-/Tcl_FindHashEntry -C/func/-/Tcl_FindNamespace -C/func/-/Tcl_FirstHashEntry -C/func/-/Tcl_Flush -C/func/-/Tcl_ForgetImport -C/func/-/Tcl_Format -C/func/-/Tcl_Free -C/func/-/Tcl_FreeEncoding -C/func/-/Tcl_FreeParse -C/func/-/Tcl_FreeResult -C/func/-/Tcl_FSAccess -C/func/-/Tcl_FSChdir -C/func/-/Tcl_FSConvertToPathType -C/func/-/Tcl_FSCopyDirectory -C/func/-/Tcl_FSCopyFile -C/func/-/Tcl_FSCreateDirectory -C/func/-/Tcl_FSData -C/func/-/Tcl_FSDeleteFile -C/func/-/Tcl_FSEqualPaths -C/func/-/Tcl_FSEvalFile -C/func/-/Tcl_FSEvalFileEx -C/func/-/Tcl_FSFileAttrsGet -C/func/-/Tcl_FSFileAttrsSet -C/func/-/Tcl_FSFileAttrStrings -C/func/-/Tcl_FSFileSystemInfo -C/func/-/Tcl_FSGetCwd -C/func/-/Tcl_FSGetFileSystemForPath -C/func/-/Tcl_FSGetInternalRep -C/func/-/Tcl_FSGetNativePath -C/func/-/Tcl_FSGetNormalizedPath -C/func/-/Tcl_FSGetPathType -C/func/-/Tcl_FSGetTranslatedPath -C/func/-/Tcl_FSGetTranslatedStringPath -C/func/-/Tcl_FSJoinPath -C/func/-/Tcl_FSJoinToPath -C/func/-/Tcl_FSLink -C/func/-/Tcl_FSListVolumes -C/func/-/Tcl_FSLoadFile -C/func/-/Tcl_FSLstat -C/func/-/Tcl_FSMatchInDirectory -C/func/-/Tcl_FSMountsChanged -C/func/-/Tcl_FSNewNativePath -C/func/-/Tcl_FSOpenFileChannel -C/func/-/Tcl_FSPathSeparator -C/func/-/Tcl_FSRegister -C/func/-/Tcl_FSRemoveDirectory -C/func/-/Tcl_FSRenameFile -C/func/-/Tcl_FSSplitPath -C/func/-/Tcl_FSStat -C/func/-/Tcl_FSUnregister -C/func/-/Tcl_FSUtime -C/func/-/Tcl_GetAlias -C/func/-/Tcl_GetAliasObj -C/func/-/Tcl_GetAssocData -C/func/-/Tcl_GetBignumFromObj -C/func/-/Tcl_GetBoolean -C/func/-/Tcl_GetBooleanFromObj -C/func/-/Tcl_GetByteArrayFromObj -C/func/-/Tcl_GetChannel -C/func/-/Tcl_GetChannelBufferSize -C/func/-/Tcl_GetChannelError -C/func/-/Tcl_GetChannelErrorInterp -C/func/-/Tcl_GetChannelHandle -C/func/-/Tcl_GetChannelInstanceData -C/func/-/Tcl_GetChannelMode -C/func/-/Tcl_GetChannelName -C/func/-/Tcl_GetChannelNames -C/func/-/Tcl_GetChannelNamesEx -C/func/-/Tcl_GetChannelOption -C/func/-/Tcl_GetChannelThread -C/func/-/Tcl_GetChannelType -C/func/-/Tcl_GetCharLength -C/func/-/Tcl_GetCommandFromObj -C/func/-/Tcl_GetCommandFullName -C/func/-/Tcl_GetCommandInfo -C/func/-/Tcl_GetCommandInfoFromToken -C/func/-/Tcl_GetCommandName -C/func/-/Tcl_GetCurrentNamespace -C/func/-/Tcl_GetCurrentThread -C/func/-/Tcl_GetCwd -C/func/-/Tcl_GetDefaultEncodingDir -C/func/-/Tcl_GetDouble -C/func/-/Tcl_GetDoubleFromObj -C/func/-/Tcl_GetEncoding -C/func/-/Tcl_GetEncodingFromObj -C/func/-/Tcl_GetEncodingName -C/func/-/Tcl_GetEncodingNameFromEnvironment -C/func/-/Tcl_GetEncodingNames -C/func/-/Tcl_GetEncodingSearchPath -C/func/-/Tcl_GetEnsembleFlags -C/func/-/Tcl_GetEnsembleMappingDict -C/func/-/Tcl_GetEnsembleNamespace -C/func/-/Tcl_GetEnsembleSubcommandList -C/func/-/Tcl_GetEnsembleUnknownHandler -C/func/-/Tcl_GetErrno -C/func/-/Tcl_GetGlobalNamespace -C/func/-/Tcl_GetHashKey -C/func/-/Tcl_GetHashValue -C/func/-/Tcl_GetHostName -C/func/-/Tcl_GetIndexFromObj -C/func/-/Tcl_GetIndexFromObjStruct -C/func/-/Tcl_GetInt -C/func/-/Tcl_GetInterpPath -C/func/-/Tcl_GetIntFromObj -C/func/-/Tcl_GetLongFromObj -C/func/-/Tcl_GetMaster -C/func/-/Tcl_GetMathFuncInfo -C/func/-/Tcl_GetNameOfExecutable -C/func/-/Tcl_GetNamespaceUnknownHandler -C/func/-/Tcl_GetObjResult -C/func/-/Tcl_GetObjType -C/func/-/Tcl_GetOpenFile -C/func/-/Tcl_GetPathType -C/func/-/Tcl_GetRange -C/func/-/Tcl_GetRegExpFromObj -C/func/-/Tcl_GetReturnOptions -C/func/-/Tcl_Gets -C/func/-/Tcl_GetServiceMode -C/func/-/Tcl_GetSlave -C/func/-/Tcl_GetsObj -C/func/-/Tcl_GetStackedChannel -C/func/-/Tcl_GetStdChannel -C/func/-/Tcl_GetString -C/func/-/Tcl_GetStringFromObj -C/func/-/Tcl_GetStringResult -C/func/-/Tcl_GetThreadData -C/func/-/Tcl_GetTime -C/func/-/Tcl_GetTopChannel -C/func/-/Tcl_GetUniChar -C/func/-/Tcl_GetUnicode -C/func/-/Tcl_GetUnicodeFromObj -C/func/-/Tcl_GetVar -C/func/-/Tcl_GetVar2 -C/func/-/Tcl_GetVar2Ex -C/func/-/Tcl_GetVersion -C/func/-/Tcl_GetWideIntFromObj -C/func/-/Tcl_GlobalEval -C/func/-/Tcl_GlobalEvalObj -C/func/-/Tcl_HashStats -C/func/-/Tcl_HideCommand -C/func/-/Tcl_Import -C/func/-/Tcl_IncrRefCount -C/func/-/Tcl_Init -C/func/-/Tcl_InitBignumFromDouble -C/func/-/Tcl_InitCustomHashTable -C/func/-/Tcl_InitHashTable -C/func/-/Tcl_InitMemory -C/func/-/Tcl_InitNotifier -C/func/-/Tcl_InitObjHashTable -C/func/-/Tcl_InitStubs -C/func/-/Tcl_InputBlocked -C/func/-/Tcl_InputBuffered -C/func/-/Tcl_Interp -C/func/-/Tcl_InterpDeleted -C/func/-/Tcl_InvalidateStringRep -C/func/-/Tcl_IsChannelExisting -C/func/-/Tcl_IsChannelRegistered -C/func/-/Tcl_IsChannelShared -C/func/-/Tcl_IsEnsemble -C/func/-/Tcl_IsSafe -C/func/-/Tcl_IsShared -C/func/-/Tcl_IsStandardChannel -C/func/-/Tcl_JoinPath -C/func/-/Tcl_JoinThread -C/func/-/Tcl_LimitAddHandler -C/func/-/Tcl_LimitCheck -C/func/-/Tcl_LimitExceeded -C/func/-/Tcl_LimitGetCommands -C/func/-/Tcl_LimitGetGranularity -C/func/-/Tcl_LimitGetTime -C/func/-/Tcl_LimitReady -C/func/-/Tcl_LimitRemoveHandler -C/func/-/Tcl_LimitSetCommands -C/func/-/Tcl_LimitSetGranularity -C/func/-/Tcl_LimitSetTime -C/func/-/Tcl_LimitTypeEnabled -C/func/-/Tcl_LimitTypeExceeded -C/func/-/Tcl_LimitTypeReset -C/func/-/Tcl_LimitTypeSet -C/func/-/Tcl_LinkVar -C/func/-/Tcl_ListMathFuncs -C/func/-/Tcl_ListObjAppendElement -C/func/-/Tcl_ListObjAppendList -C/func/-/Tcl_ListObjGetElements -C/func/-/Tcl_ListObjIndex -C/func/-/Tcl_ListObjLength -C/func/-/Tcl_ListObjReplace -C/func/-/Tcl_LogCommandInfo -C/func/-/Tcl_Main -C/func/-/Tcl_MakeFileChannel -C/func/-/Tcl_MakeSafe -C/func/-/Tcl_MakeTcpClientChannel -C/func/-/TCL_MEM_DEBUG -C/func/-/Tcl_Merge -C/func/-/Tcl_MutexFinalize -C/func/-/Tcl_MutexLock -C/func/-/Tcl_MutexUnlock -C/func/-/Tcl_NewBignumObj -C/func/-/Tcl_NewBooleanObj -C/func/-/Tcl_NewByteArrayObj -C/func/-/Tcl_NewDictObj -C/func/-/Tcl_NewDoubleObj -C/func/-/Tcl_NewIntObj -C/func/-/Tcl_NewListObj -C/func/-/Tcl_NewLongObj -C/func/-/Tcl_NewObj -C/func/-/Tcl_NewStringObj -C/func/-/Tcl_NewUnicodeObj -C/func/-/Tcl_NewWideIntObj -C/func/-/Tcl_NextHashEntry -C/func/-/Tcl_NotifyChannel -C/func/-/Tcl_NumUtfChars -C/func/-/Tcl_ObjGetVar2 -C/func/-/Tcl_ObjPrintf -C/func/-/Tcl_ObjSetVar2 -C/func/-/Tcl_OpenCommandChannel -C/func/-/Tcl_OpenFileChannel -C/func/-/Tcl_OpenTcpClient -C/func/-/Tcl_OpenTcpServer -C/func/-/Tcl_OutputBuffered -C/func/-/Tcl_Panic -C/func/-/Tcl_PanicVA -C/func/-/Tcl_ParseBraces -C/func/-/Tcl_ParseCommand -C/func/-/Tcl_ParseExpr -C/func/-/Tcl_ParseQuotedString -C/func/-/Tcl_ParseVar -C/func/-/Tcl_ParseVarName -C/func/-/Tcl_PkgPresent -C/func/-/Tcl_PkgPresentEx -C/func/-/Tcl_PkgProvide -C/func/-/Tcl_PkgProvideEx -C/func/-/Tcl_PkgRequire -C/func/-/Tcl_PkgRequireEx -C/func/-/Tcl_PkgRequireProc -C/func/-/Tcl_PosixError -C/func/-/Tcl_Preserve -C/func/-/Tcl_PrintDouble -C/func/-/Tcl_PutEnv -C/func/-/Tcl_QueryTimeProc -C/func/-/Tcl_QueueEvent -C/func/-/Tcl_Read -C/func/-/Tcl_ReadChars -C/func/-/Tcl_ReadRaw -C/func/-/Tcl_Realloc -C/func/-/Tcl_ReapDetachedProcs -C/func/-/Tcl_RecordAndEval -C/func/-/Tcl_RecordAndEvalObj -C/func/-/Tcl_RegExpCompile -C/func/-/Tcl_RegExpExec -C/func/-/Tcl_RegExpExecObj -C/func/-/Tcl_RegExpGetInfo -C/func/-/Tcl_RegExpMatch -C/func/-/Tcl_RegExpMatchObj -C/func/-/Tcl_RegExpRange -C/func/-/Tcl_RegisterChannel -C/func/-/Tcl_RegisterConfig -C/func/-/Tcl_RegisterObjType -C/func/-/Tcl_Release -C/func/-/Tcl_ResetResult -C/func/-/Tcl_RestoreInterpState -C/func/-/Tcl_RestoreResult -C/func/-/Tcl_SaveInterpState -C/func/-/Tcl_SaveResult -C/func/-/Tcl_ScanCountedElement -C/func/-/Tcl_ScanElement -C/func/-/Tcl_Seek -C/func/-/Tcl_ServiceAll -C/func/-/Tcl_ServiceEvent -C/func/-/Tcl_ServiceModeHook -C/func/-/Tcl_SetAssocData -C/func/-/Tcl_SetBignumObj -C/func/-/Tcl_SetBooleanObj -C/func/-/Tcl_SetByteArrayLength -C/func/-/Tcl_SetByteArrayObj -C/func/-/Tcl_SetChannelBufferSize -C/func/-/Tcl_SetChannelError -C/func/-/Tcl_SetChannelErrorInterp -C/func/-/Tcl_SetChannelOption -C/func/-/Tcl_SetCommandInfo -C/func/-/Tcl_SetCommandInfoFromToken -C/func/-/Tcl_SetDefaultEncodingDir -C/func/-/Tcl_SetDoubleObj -C/func/-/Tcl_SetEncodingSearchPath -C/func/-/Tcl_SetEnsembleFlags -C/func/-/Tcl_SetEnsembleMappingDict -C/func/-/Tcl_SetEnsembleSubcommandList -C/func/-/Tcl_SetEnsembleUnknownHandler -C/func/-/Tcl_SetErrno -C/func/-/Tcl_SetErrorCode -C/func/-/Tcl_SetErrorCodeVA -C/func/-/Tcl_SetExitProc -C/func/-/Tcl_SetHashValue -C/func/-/Tcl_SetIntObj -C/func/-/Tcl_SetListObj -C/func/-/Tcl_SetLongObj -C/func/-/Tcl_SetMainLoop -C/func/-/Tcl_SetMaxBlockTime -C/func/-/Tcl_SetNamespaceUnknownHandler -C/func/-/Tcl_SetNotifier -C/func/-/Tcl_SetObjErrorCode -C/func/-/Tcl_SetObjLength -C/func/-/Tcl_SetObjResult -C/func/-/Tcl_SetPanicProc -C/func/-/Tcl_SetRecursionLimit -C/func/-/Tcl_SetResult -C/func/-/Tcl_SetReturnOptions -C/func/-/Tcl_SetServiceMode -C/func/-/Tcl_SetStdChannel -C/func/-/Tcl_SetStringObj -C/func/-/Tcl_SetSystemEncoding -C/func/-/Tcl_SetTimeProc -C/func/-/Tcl_SetTimer -C/func/-/Tcl_SetUnicodeObj -C/func/-/Tcl_SetVar -C/func/-/Tcl_SetVar2 -C/func/-/Tcl_SetVar2Ex -C/func/-/Tcl_SetWideIntObj -C/func/-/Tcl_SignalId -C/func/-/Tcl_SignalMsg -C/func/-/Tcl_Sleep -C/func/-/Tcl_SourceRCFile -C/func/-/Tcl_SpliceChannel -C/func/-/Tcl_SplitList -C/func/-/Tcl_SplitPath -C/func/-/Tcl_StackChannel -C/func/-/Tcl_StandardChannels -C/func/-/Tcl_Stat -C/func/-/Tcl_StaticPackage -C/func/-/Tcl_StringCaseMatch -C/func/-/Tcl_StringMatch -C/func/-/Tcl_SubstObj -C/func/-/Tcl_TakeBignumFromObj -C/func/-/Tcl_Tell -C/func/-/Tcl_ThreadAlert -C/func/-/Tcl_ThreadQueueEvent -C/func/-/Tcl_TraceCommand -C/func/-/Tcl_TraceVar -C/func/-/Tcl_TraceVar2 -C/func/-/Tcl_TranslateFileName -C/func/-/Tcl_TruncateChannel -C/func/-/Tcl_Ungets -C/func/-/Tcl_UniChar -C/func/-/Tcl_UniCharAtIndex -C/func/-/Tcl_UniCharCaseMatch -C/func/-/Tcl_UniCharIsAlnum -C/func/-/Tcl_UniCharIsAlpha -C/func/-/Tcl_UniCharIsControl -C/func/-/Tcl_UniCharIsDigit -C/func/-/Tcl_UniCharIsGraph -C/func/-/Tcl_UniCharIsLower -C/func/-/Tcl_UniCharIsPrint -C/func/-/Tcl_UniCharIsPunct -C/func/-/Tcl_UniCharIsSpace -C/func/-/Tcl_UniCharIsUpper -C/func/-/Tcl_UniCharIsWordChar -C/func/-/Tcl_UniCharLen -C/func/-/Tcl_UniCharNcasecmp -C/func/-/Tcl_UniCharNcmp -C/func/-/Tcl_UniCharToLower -C/func/-/Tcl_UniCharToTitle -C/func/-/Tcl_UniCharToUpper -C/func/-/Tcl_UniCharToUtf -C/func/-/Tcl_UniCharToUtfDString -C/func/-/Tcl_UnlinkVar -C/func/-/Tcl_UnregisterChannel -C/func/-/Tcl_UnsetVar -C/func/-/Tcl_UnsetVar2 -C/func/-/Tcl_UnstackChannel -C/func/-/Tcl_UntraceCommand -C/func/-/Tcl_UntraceVar -C/func/-/Tcl_UntraceVar2 -C/func/-/Tcl_UpdateLinkedVar -C/func/-/Tcl_UpVar -C/func/-/Tcl_UpVar2 -C/func/-/Tcl_UtfAtIndex -C/func/-/Tcl_UtfBackslash -C/func/-/Tcl_UtfCharComplete -C/func/-/Tcl_UtfFindFirst -C/func/-/Tcl_UtfFindLast -C/func/-/Tcl_UtfNcasecmp -C/func/-/Tcl_UtfNcmp -C/func/-/Tcl_UtfNext -C/func/-/Tcl_UtfPrev -C/func/-/Tcl_UtfToExternal -C/func/-/Tcl_UtfToExternalDString -C/func/-/Tcl_UtfToLower -C/func/-/Tcl_UtfToTitle -C/func/-/Tcl_UtfToUniChar -C/func/-/Tcl_UtfToUniCharDString -C/func/-/Tcl_UtfToUpper -C/func/-/Tcl_ValidateAllMemory -C/func/-/Tcl_VarEval -C/func/-/Tcl_VarEvalVA -C/func/-/Tcl_VarTraceInfo -C/func/-/Tcl_VarTraceInfo2 -C/func/-/Tcl_WaitForEvent -C/func/-/Tcl_WaitPid -C/func/-/Tcl_WinTCharToUtf -C/func/-/Tcl_WinUtfToTChar -C/func/-/Tcl_Write -C/func/-/Tcl_WriteChars -C/func/-/Tcl_WriteObj -C/func/-/Tcl_WriteRaw -C/func/-/Tcl_WrongNumArgs -C/econst/-/tcNegTimesOK -C/tdef/-/tContextData -C/func/-/tcsendbreak -C/func/-/tcsetattr -C/func/-/TCSetDisplayOptions -C/func/-/tcsetpgrp -C/func/-/TCSetSourceRef -C/func/-/TCSetTimeCodeFlags -C/tag/-/TCTextOptions -C/tdef/-/TCTextOptionsPtr -C/func/-/TCTimeCodeToFrameNumber -C/func/-/TCTimeCodeToString -C/tdef/-/tDataBuffer -C/tdef/-/tDataBufferPtr -C/tdef/-/tDataList -C/tdef/-/tDataListPtr -C/tdef/-/tDataNode -C/tdef/-/tDataNodePtr -C/func/-/tdelete -C/tdef/-/tDirNodeReference -C/tdef/-/tDirPatternMatch -C/tdef/-/tDirReference -C/tdef/-/tDirStatus -C++/instm/TestCase/tearDown -C++/instm/Test/tearDown -C++/instm/TestSuite/tearDown -Objective-C/instm/NSMenu/tearOffMenuRepresentation -C/tdef/-/TECBufferContextRec -C/func/-/TECClearConverterContextInfo -C/func/-/TECClearSnifferContextInfo -C/tdef/-/TECConversionInfo -C/tdef/-/TECConverterContextRec -C/func/-/TECConvertText -C/func/-/TECConvertTextToMultipleEncodings -C/func/-/TECCountAvailableSniffers -C/func/-/TECCountAvailableTextEncodings -C/func/-/TECCountDestinationTextEncodings -C/func/-/TECCountDirectTextEncodingConversions -C/func/-/TECCountMailTextEncodings -C/func/-/TECCountSubTextEncodings -C/func/-/TECCountWebTextEncodings -C/func/-/TECCreateConverter -C/func/-/TECCreateConverterFromPath -C/func/-/TECCreateOneToManyConverter -C/func/-/TECCreateSniffer -C/func/-/TECDisposeConverter -C/func/-/TECDisposeSniffer -C/func/-/TECFlushMultipleEncodings -C/func/-/TECFlushText -C/func/-/TECGetAvailableSniffers -C/func/-/TECGetAvailableTextEncodings -C/func/-/TECGetDestinationTextEncodings -C/func/-/TECGetDirectTextEncodingConversions -C/func/-/TECGetEncodingList -C/func/-/TECGetInfo -C/func/-/TECGetMailTextEncodings -C/func/-/TECGetSubTextEncodings -C/func/-/TECGetTextEncodingFromInternetName -C/func/-/TECGetTextEncodingInternetName -C/func/-/TECGetWebTextEncodings -C/tdef/-/TECInfo -C/tdef/-/TECObjectRef -C/tdef/-/TECPluginClearContextInfoPtr -C/tdef/-/TECPluginClearSnifferContextInfoPtr -C/tdef/-/TECPluginConvertTextEncodingPtr -C/tdef/-/TECPluginDispatchTable -C/tdef/-/TECPluginDisposeEncodingConverterPtr -C/tdef/-/TECPluginDisposeEncodingSnifferPtr -C/tdef/-/TECPluginFlushConversionPtr -C/tdef/-/TECPluginGetCountAvailableSniffersPtr -C/tdef/-/TECPluginGetCountAvailableTextEncodingPairsPtr -C/tdef/-/TECPluginGetCountAvailableTextEncodingsPtr -C/tdef/-/TECPluginGetCountDestinationTextEncodingsPtr -C/tdef/-/TECPluginGetCountMailEncodingsPtr -C/tdef/-/TECPluginGetCountSubTextEncodingsPtr -C/tdef/-/TECPluginGetCountWebEncodingsPtr -C/tdef/-/TECPluginGetPluginDispatchTablePtr -C/tdef/-/TECPluginGetTextEncodingFromInternetNamePtr -C/tdef/-/TECPluginGetTextEncodingInternetNamePtr -C/tdef/-/TECPluginNewEncodingConverterPtr -C/tdef/-/TECPluginNewEncodingSnifferPtr -C/tdef/-/TECPluginSig -C/tdef/-/TECPluginSignature -C/tdef/-/TECPluginSniffTextEncodingPtr -C/tdef/-/TECPluginStateRec -C/tdef/-/TECPluginVersion -C/tdef/-/TECSnifferContextRec -C/tdef/-/TECSnifferObjectRef -C/func/-/TECSniffTextEncoding -C/func/-/telldir -C++/instm/IOService/temperatureCriticalForZone -Objective-C/clm/NSPredicateEditorRowTemplate/templatesWithAttributeKeyPaths:inEntityDescription: -Objective-C/instm/NSPredicateEditorRowTemplate/templateViews -C/func/-/tempnam -Objective-C/instm/NSLayoutManager/temporaryAttribute:atCharacterIndex:effectiveRange: -Objective-C/instm/NSLayoutManager/temporaryAttribute:atCharacterIndex:longestEffectiveRange:inRange: -Objective-C/instm/NSLayoutManager/temporaryAttributesAtCharacterIndex:effectiveRange: -Objective-C/instm/NSLayoutManager/temporaryAttributesAtCharacterIndex:longestEffectiveRange:inRange: -C++/instm/IOService/temporaryPowerClampOn -C/func/-/term_attrs -C/func/-/termattrs -C/func/-/termcap -Objective-C/instm/NSTask/terminate -Objective-C/instm/NSRunningApplication/terminate -C++/instm/IOService/terminate -JavaScript/instm/Worker/terminate -Objective-C/instm/NSApplication/terminate: -C++/instm/IOService/terminateClient -C++/instm/IOSCSIParallelInterfaceController/TerminateController -Objective-C/instp/NSRunningApplication/terminated -C++/instm/IOCatalogue/terminateDrivers -C++/instm/IOCatalogue/terminateDriversForModule -Objective-C/instm/NSTask/terminationReason -Objective-C/instm/NSTask/terminationStatus -C/func/-/termname -Objective-C/instm/NSWhoseSpecifier/test -C++/instm/Test/Test -C++/cl/-/Test -C/macro/-/TEST_INVOCATION -C/macro/-/TestAudioFormatNativeEndian -Objective-C/instm/DRBurnSetupPanel/testBurn: -JavaScript/cl/-/TestCallback -C++/cl/-/TestCase -C++/instm/TestCase/TestCase -C++/instm/TestObserver/testDidFail -C++/instm/TestLog/testDidFail -C++/instm/TestObserver/testDidStart -C++/instm/TestLog/testDidStart -C++/instm/TestObserver/testDidStop -C++/instm/TestLog/testDidStop -C++/cl/-/TestFailure -C++/instm/TestFailure/TestFailure -JavaScript/cl/-/TestInterface -C++/instm/TestInvocation/TestInvocation -C++/cl/-/TestInvocation -C++/cl/-/TestLog -C++/instm/TestLog/TestLog -JavaScript/cl/-/TestObj -JavaScript/data/TestObj/testObjAttr -C++/cl/-/TestObserver -C++/instm/TestObserver/TestObserver -Objective-C/instm/NSScroller/testPart: -Objective-C/instm/DRTrack/testProductionSpeedForInterval: -Objective-C/instm/DRTrack/testProductionSpeedForLength: -C++/instm/TestRun/TestRun -C++/cl/-/TestRun -C++/instm/TestSuite/tests -C++/cl/-/TestSuite -C++/instm/TestSuite/TestSuite -C++/instm/TestLog/testSuiteDidStart -C++/instm/TestObserver/testSuiteDidStart -C++/instm/TestObserver/testSuiteDidStop -C++/instm/TestLog/testSuiteDidStop -C++/instm/TestSuite/testWithName -JavaScript/instm/WebGLRenderingContext/texImage2D -JavaScript/instm/WebGLRenderingContext/texParameterf -JavaScript/instm/WebGLRenderingContext/texParameteri -JavaScript/instm/WebGLRenderingContext/texSubImage2D -C++/instm/OSSerialize/text -JavaScript/data/HTMLAnchorElement/text -JavaScript/data/HTMLBodyElement/text -JavaScript/data/HTMLTitleElement/text -JavaScript/data/DOMWindow/Text -JavaScript/data/HTMLScriptElement/text -JavaScript/data/HTMLOptionElement/text -JavaScript/data/Range/text -JavaScript/cl/-/Text -JavaScript/clconst/core/TEXT_NODE -JavaScript/data/CanvasRenderingContext2D/textAlign -Objective-C/instm/NSNumberFormatter/textAttributesForNegativeInfinity -Objective-C/instm/NSNumberFormatter/textAttributesForNegativeValues -Objective-C/instm/NSNumberFormatter/textAttributesForNil -Objective-C/instm/NSNumberFormatter/textAttributesForNotANumber -Objective-C/instm/NSNumberFormatter/textAttributesForPositiveInfinity -Objective-C/instm/NSNumberFormatter/textAttributesForPositiveValues -Objective-C/instm/NSNumberFormatter/textAttributesForZero -Objective-C/clm/NSColor/textBackgroundColor -JavaScript/data/CanvasRenderingContext2D/textBaseline -Objective-C/instm/NSParagraphStyle/textBlocks -C/tdef/-/TextBreakLocatorRef -Objective-C/instm/NSDatePicker/textColor -Objective-C/clm/NSColor/textColor -Objective-C/instm/NSDatePickerCell/textColor -Objective-C/instm/NSTextField/textColor -Objective-C/binding/NSDatePicker/textColor -Objective-C/binding/NSComboBoxCell/textColor -Objective-C/binding/NSDatePickerCell/textColor -Objective-C/binding/NSComboBox/textColor -Objective-C/binding/NSTextField/textColor -Objective-C/binding/NSSearchField/textColor -Objective-C/instm/NSText/textColor -Objective-C/binding/NSTokenField/textColor -Objective-C/binding/NSSecureTextFieldCell/textColor -Objective-C/binding/NSTextView/textColor -Objective-C/binding/NSTableColumn/textColor -Objective-C/instm/NSTextFieldCell/textColor -Objective-C/binding/NSTextFieldCell/textColor -Objective-C/binding/NSSecureTextField/textColor -Objective-C/binding/NSTokenFieldCell/textColor -Objective-C/instm/NSTextView/textContainer -Objective-C/instm/NSLayoutManager/textContainerChangedGeometry: -Objective-C/instm/NSLayoutManager/textContainerChangedTextView: -Objective-C/instm/NSLayoutManager/textContainerForGlyphAtIndex:effectiveRange: -Objective-C/instm/NSLayoutManager/textContainerForGlyphAtIndex:effectiveRange:withoutAdditionalLayout: -Objective-C/instm/NSTextView/textContainerInset -Objective-C/instm/NSTextView/textContainerOrigin -Objective-C/instm/NSLayoutManager/textContainers -Objective-C/instm/NSTypesetter/textContainers -JavaScript/data/core/textContent -Objective-C/instm/NSMatrix/textDidBeginEditing: -Objective-C/intfm/NSTextDelegate/textDidBeginEditing: -Objective-C/instm/NSTextField/textDidBeginEditing: -Objective-C/instm/NSTableView/textDidBeginEditing: -Objective-C/instm/NSMatrix/textDidChange: -Objective-C/intfm/NSTextDelegate/textDidChange: -Objective-C/instm/NSTextField/textDidChange: -Objective-C/instm/NSTableView/textDidChange: -Objective-C/instm/NSMatrix/textDidEndEditing: -Objective-C/intfm/NSTextDelegate/textDidEndEditing: -Objective-C/instm/NSTextField/textDidEndEditing: -Objective-C/instm/NSTableView/textDidEndEditing: -C/tag/-/TextDisplayData -C/tdef/-/TextEncoding -C/tdef/-/TextEncodingBase -C/tdef/-/TextEncodingFormat -Objective-C/instm/NSURLResponse/textEncodingName -Objective-C/instm/WebResource/textEncodingName -Objective-C/instm/WebDataSource/textEncodingName -C/tdef/-/TextEncodingNameSelector -C/tdef/-/TextEncodingRun -C/tdef/-/TextEncodingVariant -JavaScript/data/DOMWindow/TextEvent -JavaScript/cl/-/TextEvent -C/tdef/-/TextExportComponent -C/func/-/TextExportGetDisplayData -C/func/-/TextExportGetSettings -C/func/-/TextExportGetTimeFraction -C/func/-/TextExportSetSettings -C/func/-/TextExportSetTimeFraction -Objective-C/clm/NSAttributedString/textFileTypes -JavaScript/data/HTMLTextAreaElement/textLength -JavaScript/data/SVGTextContentElement/textLength -Objective-C/instm/NSParagraphStyle/textLists -C/tdef/-/TextMediaProc -C/econst/-/TextMediaType -C/tdef/-/TextMediaUPP -JavaScript/data/DOMWindow/TextMetrics -JavaScript/cl/-/TextMetrics -Objective-C/clm/NSAttributedString/textPasteboardTypes -JavaScript/clconst/SVGTextPathElement/TEXTPATH_METHODTYPE_ALIGN -JavaScript/clconst/SVGTextPathElement/TEXTPATH_METHODTYPE_STRETCH -JavaScript/clconst/SVGTextPathElement/TEXTPATH_METHODTYPE_UNKNOWN -JavaScript/clconst/SVGTextPathElement/TEXTPATH_SPACINGTYPE_AUTO -JavaScript/clconst/SVGTextPathElement/TEXTPATH_SPACINGTYPE_EXACT -JavaScript/clconst/SVGTextPathElement/TEXTPATH_SPACINGTYPE_UNKNOWN -Objective-C/instm/NSMatrix/textShouldBeginEditing: -Objective-C/intfm/NSTextDelegate/textShouldBeginEditing: -Objective-C/instm/NSTextField/textShouldBeginEditing: -Objective-C/instm/NSTableView/textShouldBeginEditing: -Objective-C/instm/NSMatrix/textShouldEndEditing: -Objective-C/intfm/NSTextDelegate/textShouldEndEditing: -Objective-C/instm/NSTextField/textShouldEndEditing: -Objective-C/instm/NSTableView/textShouldEndEditing: -Objective-C/instm/WebView/textSizeMultiplier -Objective-C/instm/NSLayoutManager/textStorage -Objective-C/instm/NSTextView/textStorage -Objective-C/instm/NSLayoutManager/textStorage:edited:range:changeInLength:invalidatedRange: -Objective-C/intfm/NSTextStorageDelegate/textStorageDidProcessEditing: -Objective-C/intfm/NSTextStorageDelegate/textStorageWillProcessEditing: -Objective-C/instm/NSATSTypesetter/textTabForGlyphLocation:writingDirection:maxLocation: -Objective-C/instm/NSTypesetter/textTabForGlyphLocation:writingDirection:maxLocation: -C/func/-/TextToPhonemes -C/tdef/-/TextToUnicodeInfo -Objective-C/instm/NSFont/textTransform -Objective-C/clm/NSAttributedString/textTypes -Objective-C/clm/NSAttributedString/textUnfilteredFileTypes -Objective-C/clm/NSAttributedString/textUnfilteredPasteboardTypes -Objective-C/clm/NSAttributedString/textUnfilteredTypes -JavaScript/clconst/WebGLRenderingContext/TEXTURE -JavaScript/clconst/WebGLRenderingContext/TEXTURE0 -JavaScript/clconst/WebGLRenderingContext/TEXTURE1 -JavaScript/clconst/WebGLRenderingContext/TEXTURE10 -JavaScript/clconst/WebGLRenderingContext/TEXTURE11 -JavaScript/clconst/WebGLRenderingContext/TEXTURE12 -JavaScript/clconst/WebGLRenderingContext/TEXTURE13 -JavaScript/clconst/WebGLRenderingContext/TEXTURE14 -JavaScript/clconst/WebGLRenderingContext/TEXTURE15 -JavaScript/clconst/WebGLRenderingContext/TEXTURE16 -JavaScript/clconst/WebGLRenderingContext/TEXTURE17 -JavaScript/clconst/WebGLRenderingContext/TEXTURE18 -JavaScript/clconst/WebGLRenderingContext/TEXTURE19 -JavaScript/clconst/WebGLRenderingContext/TEXTURE2 -JavaScript/clconst/WebGLRenderingContext/TEXTURE20 -JavaScript/clconst/WebGLRenderingContext/TEXTURE21 -JavaScript/clconst/WebGLRenderingContext/TEXTURE22 -JavaScript/clconst/WebGLRenderingContext/TEXTURE23 -JavaScript/clconst/WebGLRenderingContext/TEXTURE24 -JavaScript/clconst/WebGLRenderingContext/TEXTURE25 -JavaScript/clconst/WebGLRenderingContext/TEXTURE26 -JavaScript/clconst/WebGLRenderingContext/TEXTURE27 -JavaScript/clconst/WebGLRenderingContext/TEXTURE28 -JavaScript/clconst/WebGLRenderingContext/TEXTURE29 -JavaScript/clconst/WebGLRenderingContext/TEXTURE3 -JavaScript/clconst/WebGLRenderingContext/TEXTURE30 -JavaScript/clconst/WebGLRenderingContext/TEXTURE31 -JavaScript/clconst/WebGLRenderingContext/TEXTURE4 -JavaScript/clconst/WebGLRenderingContext/TEXTURE5 -JavaScript/clconst/WebGLRenderingContext/TEXTURE6 -JavaScript/clconst/WebGLRenderingContext/TEXTURE7 -JavaScript/clconst/WebGLRenderingContext/TEXTURE8 -JavaScript/clconst/WebGLRenderingContext/TEXTURE9 -JavaScript/clconst/WebGLRenderingContext/TEXTURE_2D -JavaScript/clconst/WebGLRenderingContext/TEXTURE_BINDING_2D -JavaScript/clconst/WebGLRenderingContext/TEXTURE_BINDING_CUBE_MAP -JavaScript/clconst/WebGLRenderingContext/TEXTURE_CUBE_MAP -JavaScript/clconst/WebGLRenderingContext/TEXTURE_CUBE_MAP_NEGATIVE_X -JavaScript/clconst/WebGLRenderingContext/TEXTURE_CUBE_MAP_NEGATIVE_Y -JavaScript/clconst/WebGLRenderingContext/TEXTURE_CUBE_MAP_NEGATIVE_Z -JavaScript/clconst/WebGLRenderingContext/TEXTURE_CUBE_MAP_POSITIVE_X -JavaScript/clconst/WebGLRenderingContext/TEXTURE_CUBE_MAP_POSITIVE_Y -JavaScript/clconst/WebGLRenderingContext/TEXTURE_CUBE_MAP_POSITIVE_Z -JavaScript/clconst/WebGLRenderingContext/TEXTURE_MAG_FILTER -JavaScript/clconst/WebGLRenderingContext/TEXTURE_MIN_FILTER -JavaScript/clconst/WebGLRenderingContext/TEXTURE_WRAP_S -JavaScript/clconst/WebGLRenderingContext/TEXTURE_WRAP_T -Objective-C/intfm/QCPlugInInputImageSource/textureColorSpace -Objective-C/intfm/QCPlugInInputImageSource/textureFlipped -Objective-C/instm/FxTexture/textureId -Objective-C/instm/NSOpenGLPixelBuffer/textureInternalFormat -Objective-C/intfm/QCPlugInInputImageSource/textureMatrix -Objective-C/instm/NSOpenGLPixelBuffer/textureMaxMipMapLevel -Objective-C/intfm/QCPlugInInputImageSource/textureName -Objective-C/intfm/QCPlugInInputImageSource/texturePixelsHigh -Objective-C/intfm/QCPlugInInputImageSource/texturePixelsWide -Objective-C/intfm/QCPlugInInputImageSource/textureTarget -Objective-C/instm/NSOpenGLPixelBuffer/textureTarget -Objective-C/instm/NSTextContainer/textView -Objective-C/intfm/NSTextViewDelegate/textView:clickedOnCell:inRect: -Objective-C/intfm/NSTextViewDelegate/textView:clickedOnCell:inRect:atIndex: -Objective-C/intfm/NSTextViewDelegate/textView:clickedOnLink: -Objective-C/intfm/NSTextViewDelegate/textView:clickedOnLink:atIndex: -Objective-C/intfm/NSTextViewDelegate/textView:completions:forPartialWordRange:indexOfSelectedItem: -Objective-C/intfm/NSTextViewDelegate/textView:didCheckTextInRange:types:options:results:orthography:wordCount: -Objective-C/intfm/NSTextViewDelegate/textView:doCommandBySelector: -Objective-C/intfm/NSTextViewDelegate/textView:doubleClickedOnCell:inRect: -Objective-C/intfm/NSTextViewDelegate/textView:doubleClickedOnCell:inRect:atIndex: -Objective-C/intfm/NSTextViewDelegate/textView:draggedCell:inRect:event: -Objective-C/intfm/NSTextViewDelegate/textView:draggedCell:inRect:event:atIndex: -Objective-C/intfm/NSTextViewDelegate/textView:menu:forEvent:atIndex: -Objective-C/intfm/NSTextViewDelegate/textView:shouldChangeTextInRange:replacementString: -Objective-C/intfm/NSTextViewDelegate/textView:shouldChangeTextInRanges:replacementStrings: -Objective-C/intfm/NSTextViewDelegate/textView:shouldChangeTypingAttributes:toAttributes: -Objective-C/intfm/NSTextViewDelegate/textView:shouldSetSpellingState:range: -Objective-C/intfm/NSTextViewDelegate/textView:willChangeSelectionFromCharacterRange:toCharacterRange: -Objective-C/intfm/NSTextViewDelegate/textView:willChangeSelectionFromCharacterRanges:toCharacterRanges: -Objective-C/intfm/NSTextViewDelegate/textView:willCheckTextInRange:options:types: -Objective-C/intfm/NSTextViewDelegate/textView:willDisplayToolTip:forCharacterAtIndex: -Objective-C/intfm/NSTextViewDelegate/textView:writablePasteboardTypesForCell:atIndex: -Objective-C/intfm/NSTextViewDelegate/textView:writeCell:atIndex:toPasteboard:type: -Objective-C/intfm/NSTextViewDelegate/textViewDidChangeSelection: -Objective-C/intfm/NSTextViewDelegate/textViewDidChangeTypingAttributes: -Objective-C/instm/NSLayoutManager/textViewForBeginningOfSelection -Objective-C/clm/NSXMLNode/textWithStringValue: -C/func/-/tfind -JavaScript/data/HTMLTableElement/tFoot -C/func/-/tgamma -C/func/-/tgammaf -C/func/-/tgammal -C/func/-/tgetent -C/func/-/tgetflag -C/func/-/tgetnum -C/func/-/tgetstr -C/func/-/tgoto -JavaScript/data/HTMLTableElement/tHead -Objective-C/instm/NSStatusBar/thickness -Objective-C/instm/NSRulerMarker/thicknessRequiredInRuler -JavaScript/data/JavaScriptCallFrame/thisObject -Objective-C/instm/NSNumberFormatter/thousandSeparator -C/tag/-/thread_command -Objective-C/instm/NSThread/threadDictionary -C++/instm/IOWorkLoop/threadMain -C++/clm/IOWorkLoop/threadMainContinuation -Objective-C/instm/NSOperation/threadPriority -Objective-C/instm/NSThread/threadPriority -Objective-C/clm/NSThread/threadPriority -C/func/-/threads -Objective-C/clm/WebScriptObject/throwException: -Objective-C/intfm/ApertureExportManager/thumbnailForImageAtIndex:size: -Objective-C/intfm/ApertureEditManager/thumbnailForVersion:size: -Objective-C/instm/PDFThumbnailView/thumbnailSize -Objective-C/intfm/IKImageEditPanelDataSource/thumbnailWithMaximumSize: -C++/instm/IOSCSIProtocolInterface/TicklePowerManager -Objective-C/instm/NSSlider/tickMarkPosition -Objective-C/instm/NSSliderCell/tickMarkPosition -Objective-C/instm/NSLevelIndicator/tickMarkPosition -Objective-C/instm/NSLevelIndicatorCell/tickMarkPosition -Objective-C/instm/NSSlider/tickMarkValueAtIndex: -Objective-C/instm/NSSliderCell/tickMarkValueAtIndex: -Objective-C/instm/NSLevelIndicator/tickMarkValueAtIndex: -Objective-C/instm/NSLevelIndicatorCell/tickMarkValueAtIndex: -C/func/-/tidyAccessWarningCount -C/func/-/tidyAttrGetHREF -C/func/-/tidyAttrGetId -C/tdef/-/TidyAttrId -C/func/-/tidyBufAlloc -C/func/-/tidyBufAppend -C/func/-/tidyBufAttach -C/func/-/tidyBufCheckAlloc -C/func/-/tidyBufClear -C/func/-/tidyBufDetach -C/func/-/tidyBufEndOfInput -C/func/-/tidyBufFree -C/func/-/tidyBufGetByte -C/func/-/tidyBufInit -C/func/-/tidyBufPopByte -C/func/-/tidyBufPutByte -C/func/-/tidyBufUngetByte -C/func/-/tidyCleanAndRepair -C/tdef/-/TidyConfigCategory -C/func/-/tidyConfigErrorCount -C/func/-/tidyCreate -C/func/-/tidyDetectedGenericXml -C/func/-/tidyDetectedHtmlVersion -C/func/-/tidyDetectedXhtml -C/tdef/-/TidyDoctypeModes -C/tdef/-/TidyDupAttrModes -C/tdef/-/TidyEOFFunc -C/func/-/tidyErrorCount -C/func/-/tidyErrorSummary -C/tdef/-/TidyFree -C/func/-/tidyGeneralInfo -C/func/-/tidyGetAppData -C/func/-/tidyGetByte -C/tdef/-/TidyGetByteFunc -C/func/-/tidyGetNextOption -C/func/-/tidyGetOption -C/func/-/tidyGetOptionByName -C/func/-/tidyGetOptionList -C/func/-/tidyGetRoot -C/func/-/tidyInitSink -C/func/-/tidyInitSource -C/func/-/tidyIsEOF -C/tdef/-/TidyLineEnding -C/func/-/tidyLoadConfig -C/func/-/tidyLoadConfigEnc -C/tdef/-/TidyMalloc -C/func/-/tidyNodeGetType -C/tdef/-/TidyNodeType -C/tdef/-/TidyOptCallback -C/func/-/tidyOptCopyConfig -C/func/-/tidyOptDiffThanDefault -C/func/-/tidyOptDiffThanSnapshot -C/func/-/tidyOptGetBool -C/func/-/tidyOptGetCategory -C/func/-/tidyOptGetCurrPick -C/func/-/tidyOptGetDeclTagList -C/func/-/tidyOptGetDefault -C/func/-/tidyOptGetDefaultBool -C/func/-/tidyOptGetDefaultInt -C/func/-/tidyOptGetEncName -C/func/-/tidyOptGetId -C/func/-/tidyOptGetIdForName -C/func/-/tidyOptGetInt -C/func/-/tidyOptGetName -C/func/-/tidyOptGetNextDeclTag -C/func/-/tidyOptGetNextPick -C/func/-/tidyOptGetPickList -C/func/-/tidyOptGetType -C/func/-/tidyOptGetValue -C/tdef/-/TidyOptionId -C/tdef/-/TidyOptionType -C/func/-/tidyOptIsReadOnly -C/func/-/tidyOptParseValue -C/func/-/tidyOptResetAllToDefault -C/func/-/tidyOptResetToDefault -C/func/-/tidyOptResetToSnapshot -C/func/-/tidyOptSaveFile -C/func/-/tidyOptSaveSink -C/func/-/tidyOptSetBool -C/func/-/tidyOptSetInt -C/func/-/tidyOptSetValue -C/func/-/tidyOptSnapshot -C/tdef/-/TidyPanic -C/func/-/tidyParseBuffer -C/func/-/tidyParseFile -C/func/-/tidyParseSource -C/func/-/tidyParseStdin -C/func/-/tidyParseString -C/func/-/tidyPutByte -C/tdef/-/TidyPutByteFunc -C/tdef/-/TidyRealloc -C/func/-/tidyReleaseDate -C/tdef/-/TidyReportFilter -C/tdef/-/TidyReportLevel -C/func/-/tidyRunDiagnostics -C/func/-/tidySaveBuffer -C/func/-/tidySaveFile -C/func/-/tidySaveSink -C/func/-/tidySaveStdout -C/func/-/tidySaveString -C/func/-/tidySetAppData -C/func/-/tidySetCharEncoding -C/func/-/tidySetErrorBuffer -C/func/-/tidySetErrorFile -C/func/-/tidySetErrorSink -C/func/-/tidySetFreeCall -C/func/-/tidySetInCharEncoding -C/func/-/tidySetMallocCall -C/func/-/tidySetOutCharEncoding -C/func/-/tidySetPanicCall -C/func/-/tidySetReallocCall -C/func/-/tidySetReportFilter -C/func/-/tidyStatus -C/tdef/-/TidyTagId -C/tdef/-/TidyTriState -C/func/-/tidyUngetByte -C/tdef/-/TidyUngetByteFunc -C/func/-/tidyWarningCount -Objective-C/instm/NSImage/TIFFRepresentation -Objective-C/instm/NSBitmapImageRep/TIFFRepresentation -Objective-C/clm/NSBitmapImageRep/TIFFRepresentationOfImageRepsInArray: -Objective-C/clm/NSBitmapImageRep/TIFFRepresentationOfImageRepsInArray:usingCompression:factor: -Objective-C/instm/NSImage/TIFFRepresentationUsingCompression:factor: -Objective-C/instm/NSBitmapImageRep/TIFFRepresentationUsingCompression:factor: -C/func/-/tigetflag -C/func/-/tigetnum -C/func/-/tigetstr -Objective-C/instm/NSParagraphStyle/tighteningFactorForTruncation -Objective-C/instm/NSTextView/tightenKerning: -Objective-C/instm/NSScrollView/tile -Objective-C/instm/NSBrowser/tile -Objective-C/instm/NSTableView/tile -Objective-C/instm/CATiledLayer/tileSize -Objective-C/instp/CATiledLayer/tileSize -Objective-C/instm/NSEvent/tilt -C/func/-/time -JavaScript/instm/Console/time -C/func/-/time2posix -C/tdef/-/TimeBase -Objective-C/instm/FxHostCapabilities/timeBase -C/tag/-/TimeBaseRecord -C/tag/-/TimeCodeDef -C/tdef/-/TimeCodeDescriptionHandle -C/tdef/-/TimeCodeDescriptionPtr -C/tag/-/TimeCodeRecord -JavaScript/instm/Console/timeEnd -C/func/-/timegm -Objective-C/instm/NSDatePicker/timeInterval -Objective-C/instm/NSDatePickerCell/timeInterval -Objective-C/instm/NSTimer/timeInterval -Objective-C/instm/NSDate/timeIntervalSince1970 -Objective-C/instm/NSDate/timeIntervalSinceDate: -Objective-C/instm/NSDate/timeIntervalSinceNow -Objective-C/clm/NSDate/timeIntervalSinceReferenceDate -Objective-C/instm/NSDate/timeIntervalSinceReferenceDate -Objective-C/intfm/FxTimingAPI/timelineFpsDenominatorForEffect: -Objective-C/intfm/FxTimingAPI/timelineFpsNumeratorForEffect: -Objective-C/intfm/FxTimingAPI/timelineTimeFromImageTime:forParmId:forEffect: -Objective-C/intfm/FxTimingAPI/timelineTimeFromInputATime:forTransition: -Objective-C/intfm/FxTimingAPI/timelineTimeFromInputBTime:forTransition: -Objective-C/intfm/FxTimingAPI/timelineTimeFromInputTime:forFilter: -C/func/-/timelocal -Objective-C/clm/QCPlugIn/timeMode -Objective-C/intfm/CAMediaTiming/timeOffset -Objective-C/intfp/CAMediaTiming/timeOffset -Objective-C/instm/SBApplication/timeout -C/func/-/timeout -C++/clm/IOTimerEventSource/timeout -JavaScript/clconst/PositionError/TIMEOUT -JavaScript/clconst/IDBDatabaseException/TIMEOUT_ERR -Objective-C/instm/NSURLRequest/timeoutInterval -JavaScript/cl/-/TimeRanges -C++/clm/IOAudioEngine/timerCallback -C/tag/-/TimeRecord -C++/tdef/IOAudioDevice/TimerEvent -C++/data/IOAudioDevice/timerEventSource -C++/clm/IOTimerEventSource/timerEventSource -C++/instm/IOAudioEngine/timerFired -C++/clm/IOAudioDevice/timerFired -Objective-C/clm/NSTimer/timerWithTimeInterval:invocation:repeats: -Objective-C/clm/NSTimer/timerWithTimeInterval:target:selector:userInfo:repeats: -C/func/-/times -C/tdef/-/TimeScale -Objective-C/clm/IMAVSlider/timeSlider -Objective-C/instm/NSEvent/timestamp -Objective-C/instp/CLLocation/timestamp -Objective-C/instm/CLLocation/timestamp -JavaScript/data/Event/timeStamp -Objective-C/instm/NSDateFormatter/timeStyle -C/tdef/-/TimeValue -C/tdef/-/TimeValue64 -Objective-C/instm/NSDatePicker/timeZone -Objective-C/instm/NSDateFormatter/timeZone -Objective-C/instm/NSDatePickerCell/timeZone -Objective-C/instm/NSTextCheckingResult/timeZone -Objective-C/instm/NSCalendar/timeZone -Objective-C/instp/NSTextCheckingResult/timeZone -C/func/-/timezone -Objective-C/clm/NSTimeZone/timeZoneDataVersion -Objective-C/clm/NSTimeZone/timeZoneForSecondsFromGMT: -Objective-C/clm/NSTimeZone/timeZoneWithAbbreviation: -Objective-C/clm/NSTimeZone/timeZoneWithName: -Objective-C/clm/NSTimeZone/timeZoneWithName:data: -Objective-C/instm/CAAnimation/timingFunction -Objective-C/instp/CAAnimation/timingFunction -Objective-C/instm/CAKeyframeAnimation/timingFunctions -Objective-C/instp/CAKeyframeAnimation/timingFunctions -C/func/-/TISCopyCurrentASCIICapableKeyboardInputSource -C/func/-/TISCopyCurrentASCIICapableKeyboardLayoutInputSource -C/func/-/TISCopyCurrentKeyboardInputSource -C/func/-/TISCopyCurrentKeyboardLayoutInputSource -C/func/-/TISCopyInputMethodKeyboardLayoutOverride -C/func/-/TISCopyInputSourceForLanguage -C/func/-/TISCreateASCIICapableInputSourceList -C/func/-/TISCreateInputSourceList -C/func/-/TISDeselectInputSource -C/func/-/TISDisableInputSource -C/func/-/TISEnableInputSource -C/func/-/TISGetInputSourceProperty -C/func/-/TISInputSourceGetTypeID -C/tdef/-/TISInputSourceRef -C/func/-/TISRegisterInputSource -C/func/-/TISSelectInputSource -C/func/-/TISSetInputMethodKeyboardLayoutOverride -Objective-C/instp/CalCalendarItem/title -Objective-C/instm/CalCalendarItem/title -C/econst/-/title -Objective-C/instm/NSSlider/title -Objective-C/instm/NSFormCell/title -Objective-C/instm/NSSliderCell/title -Objective-C/instm/NSViewController/title -Objective-C/instm/NSButton/title -Objective-C/instm/NSStatusItem/title -Objective-C/instm/CBIdentityPicker/title -Objective-C/instm/WebHistoryItem/title -Objective-C/instm/NSBox/title -Objective-C/instm/NSSavePanel/title -Objective-C/instp/CalCalendar/title -Objective-C/instm/CalCalendar/title -Objective-C/instm/NSButtonCell/title -Objective-C/instm/NSMenuItem/title -Objective-C/instp/PSEntry/title -Objective-C/instp/PSFeed/title -Objective-C/instp/PSLink/title -Objective-C/instm/NSWindow/title -Objective-C/intfm/WebDocumentRepresentation/title -Objective-C/binding/NSButton/title -Objective-C/binding/NSBox/title -Objective-C/binding/NSMenuItem/title -Objective-C/binding/NSButtonCell/title -Objective-C/binding/NSPanel/title -Objective-C/instm/NSCell/title -Objective-C/instm/NSMenu/title -Objective-C/binding/NSWindow/title -JavaScript/data/Document/title -JavaScript/data/HTMLElement/title -JavaScript/data/ScriptProfile/title -JavaScript/data/StyleSheet/title -JavaScript/data/SVGStyleElement/title -Objective-C/instm/NSFormCell/titleAlignment -Objective-C/clm/NSFont/titleBarFontOfSize: -Objective-C/instm/NSFormCell/titleBaseWritingDirection -Objective-C/instm/NSSlider/titleCell -Objective-C/instm/NSSliderCell/titleCell -Objective-C/instm/NSBox/titleCell -Objective-C/instm/NSSlider/titleColor -Objective-C/instm/NSSliderCell/titleColor -Objective-C/instm/NSSlider/titleFont -Objective-C/instm/NSSliderCell/titleFont -Objective-C/instm/NSFormCell/titleFont -Objective-C/instm/NSBox/titleFont -Objective-C/instp/PSEntry/titleForDisplay -Objective-C/instm/NSObject/titleForPerson:identifier: -Objective-C/instm/IKImageBrowserCell/titleFrame -Objective-C/instm/NSBrowser/titleFrameOfColumn: -Objective-C/instm/NSBrowser/titleHeight -Objective-C/instm/NSBrowser/titleOfColumn: -Objective-C/instm/NSPopUpButtonCell/titleOfSelectedItem -Objective-C/instm/NSPopUpButton/titleOfSelectedItem -Objective-C/instm/NSBox/titlePosition -Objective-C/instm/NSBox/titleRect -Objective-C/instm/NSMenuItemCell/titleRectForBounds: -Objective-C/instm/NSCell/titleRectForBounds: -Objective-C/instm/NSFormCell/titleWidth -Objective-C/instm/NSMenuItemCell/titleWidth -Objective-C/instm/NSFormCell/titleWidth: -C/func/-/Tk_3DBorderColor -C/func/-/Tk_3DBorderGC -C/func/-/Tk_3DHorizontalBevel -C/func/-/Tk_3DVerticalBevel -C/func/-/Tk_AddOption -C/func/-/Tk_Alloc3DBorderFromObj -C/func/-/Tk_AllocBitmapFromObj -C/func/-/Tk_AllocColorFromObj -C/func/-/Tk_AllocCursorFromObj -C/func/-/Tk_AllocFontFromObj -C/func/-/Tk_AttachHWND -C/func/-/Tk_Attributes -C/func/-/Tk_BindEvent -C/func/-/Tk_CanvasDrawableCoords -C/func/-/Tk_CanvasEventuallyRedraw -C/func/-/Tk_CanvasGetCoord -C/func/-/Tk_CanvasGetTextInfo -C/func/-/Tk_CanvasPsBitmap -C/func/-/Tk_CanvasPsColor -C/func/-/Tk_CanvasPsFont -C/func/-/Tk_CanvasPsPath -C/func/-/Tk_CanvasPsStipple -C/func/-/Tk_CanvasPsY -C/func/-/Tk_CanvasSetStippleOrigin -C/func/-/Tk_CanvasTagsOption -C/func/-/Tk_CanvasTextInfo -C/func/-/Tk_CanvasTkwin -C/func/-/Tk_CanvasWindowCoords -C/func/-/Tk_Changes -C/func/-/Tk_ChangeWindowAttributes -C/func/-/Tk_CharBbox -C/func/-/Tk_Class -C/func/-/Tk_ClearSelection -C/func/-/Tk_ClipboardAppend -C/func/-/Tk_ClipboardClear -C/func/-/Tk_CollapseMotionEvents -C/func/-/Tk_Colormap -C/func/-/Tk_ComputeTextLayout -C/func/-/Tk_ConfigureInfo -C/func/-/Tk_ConfigureValue -C/func/-/Tk_ConfigureWidget -C/func/-/Tk_ConfigureWindow -C/func/-/Tk_CoordsToWindow -C/func/-/Tk_CreateBinding -C/func/-/Tk_CreateBindingTable -C/func/-/Tk_CreateClientMessageHandler -C/func/-/Tk_CreateErrorHandler -C/func/-/Tk_CreateEventHandler -C/func/-/Tk_CreateGenericHandler -C/func/-/Tk_CreateImageType -C/func/-/Tk_CreateItemType -C/func/-/Tk_CreateOptionTable -C/func/-/Tk_CreatePhotoImageFormat -C/func/-/Tk_CreateSelHandler -C/func/-/Tk_CreateWindow -C/func/-/Tk_CreateWindowFromPath -C/func/-/Tk_DefineBitmap -C/func/-/Tk_DefineCursor -C/func/-/Tk_DeleteAllBindings -C/func/-/Tk_DeleteBinding -C/func/-/Tk_DeleteBindingTable -C/func/-/Tk_DeleteClientMessageHandler -C/func/-/Tk_DeleteErrorHandler -C/func/-/Tk_DeleteEventHandler -C/func/-/Tk_DeleteGenericHandler -C/func/-/Tk_DeleteImage -C/func/-/Tk_DeleteOptionTable -C/func/-/Tk_DeleteSelHandler -C/func/-/Tk_Depth -C/func/-/Tk_DestroyWindow -C/func/-/Tk_Display -C/func/-/Tk_DisplayName -C/func/-/Tk_DistanceToTextLayout -C/func/-/Tk_Draw3DPolygon -C/func/-/Tk_Draw3DRectangle -C/func/-/Tk_DrawChars -C/func/-/Tk_DrawFocusHighlight -C/func/-/Tk_DrawTextLayout -C/func/-/Tk_Fill3DPolygon -C/func/-/Tk_Fill3DRectangle -C/func/-/Tk_FindPhoto -C/func/-/Tk_FontId -C/func/-/Tk_Free3DBorder -C/func/-/Tk_Free3DBorderFromObj -C/func/-/Tk_FreeBitmap -C/func/-/Tk_FreeBitmapFromObj -C/func/-/Tk_FreeColor -C/func/-/Tk_FreeColorFromObj -C/func/-/Tk_FreeColormap -C/func/-/Tk_FreeConfigOptions -C/func/-/Tk_FreeCursor -C/func/-/Tk_FreeCursorFromObj -C/func/-/Tk_FreeFont -C/func/-/Tk_FreeFontFromObj -C/func/-/Tk_FreeGC -C/func/-/Tk_FreeImage -C/func/-/Tk_FreeOptions -C/func/-/Tk_FreePixmap -C/func/-/Tk_FreeSavedOptions -C/func/-/Tk_FreeTextLayout -C/func/-/Tk_FreeXId -C/func/-/Tk_GCForColor -C/func/-/Tk_GeometryRequest -C/func/-/Tk_Get3DBorder -C/func/-/Tk_Get3DBorderFromObj -C/func/-/Tk_GetAllBindings -C/func/-/Tk_GetAnchor -C/func/-/Tk_GetAnchorFromObj -C/func/-/Tk_GetAtomName -C/func/-/Tk_GetBinding -C/func/-/Tk_GetBitmap -C/func/-/Tk_GetBitmapFromObj -C/func/-/Tk_GetCapStyle -C/func/-/Tk_GetColor -C/func/-/Tk_GetColorByValue -C/func/-/Tk_GetColorFromObj -C/func/-/Tk_GetColormap -C/func/-/Tk_GetCursor -C/func/-/Tk_GetCursorFromData -C/func/-/Tk_GetCursorFromObj -C/func/-/Tk_GetDash -C/func/-/Tk_GetFont -C/func/-/Tk_GetFontFromObj -C/func/-/Tk_GetFontMetrics -C/func/-/Tk_GetGC -C/func/-/Tk_GetHINSTANCE -C/func/-/Tk_GetHWND -C/func/-/Tk_GetImage -C/func/-/Tk_GetImageMasterData -C/func/-/Tk_GetItemTypes -C/func/-/Tk_GetJoinStyle -C/func/-/Tk_GetJustify -C/func/-/Tk_GetJustifyFromObj -C/func/-/Tk_GetMMFromObj -C/func/-/Tk_GetNumMainWindows -C/func/-/Tk_GetOption -C/func/-/Tk_GetOptionInfo -C/func/-/Tk_GetOptionValue -C/func/-/Tk_GetPixels -C/func/-/Tk_GetPixelsFromObj -C/func/-/Tk_GetPixmap -C/func/-/Tk_GetRelief -C/func/-/Tk_GetReliefFromObj -C/func/-/Tk_GetRootCoords -C/func/-/Tk_GetScreenMM -C/func/-/Tk_GetScrollInfo -C/func/-/Tk_GetScrollInfoObj -C/func/-/Tk_GetSelection -C/func/-/Tk_GetUid -C/func/-/Tk_GetUserInactiveTime -C/func/-/Tk_GetVisual -C/func/-/Tk_GetVRootGeometry -C/func/-/Tk_Grab -C/func/-/Tk_HandleEvent -C/func/-/Tk_Height -C/func/-/Tk_HWNDToWindow -C/func/-/Tk_IdToWindow -C/func/-/Tk_ImageChanged -C/func/-/Tk_Init -C/func/-/Tk_InitConsoleChannels -C/func/-/Tk_InitImageArgs -C/func/-/Tk_InitOptions -C/func/-/Tk_InitStubs -C/func/-/Tk_InternalBorderBottom -C/func/-/Tk_InternalBorderLeft -C/func/-/Tk_InternalBorderRight -C/func/-/Tk_InternalBorderTop -C/func/-/Tk_InternAtom -C/func/-/Tk_Interp -C/func/-/Tk_IntersectTextLayout -C/func/-/Tk_IsContainer -C/func/-/Tk_IsEmbedded -C/func/-/Tk_IsMapped -C/func/-/Tk_IsTopLevel -C/func/-/Tk_Main -C/func/-/Tk_MainLoop -C/func/-/Tk_MaintainGeometry -C/func/-/Tk_MainWindow -C/func/-/Tk_MakeWindowExist -C/func/-/Tk_ManageGeometry -C/func/-/Tk_MapWindow -C/func/-/Tk_MeasureChars -C/func/-/Tk_MinReqHeight -C/func/-/Tk_MinReqWidth -C/func/-/Tk_MoveResizeWindow -C/func/-/Tk_MoveToplevelWindow -C/func/-/Tk_MoveWindow -C/func/-/Tk_Name -C/func/-/Tk_NameOf3DBorder -C/func/-/Tk_NameOfAnchor -C/func/-/Tk_NameOfBitmap -C/func/-/Tk_NameOfCapStyle -C/func/-/Tk_NameOfColor -C/func/-/Tk_NameOfCursor -C/func/-/Tk_NameOfFont -C/func/-/Tk_NameOfImage -C/func/-/Tk_NameOfJoinStyle -C/func/-/Tk_NameOfJustify -C/func/-/Tk_NameOfRelief -C/func/-/Tk_NameToWindow -C/func/-/Tk_Offset -C/func/-/Tk_OwnSelection -C/func/-/Tk_Parent -C/func/-/Tk_ParseArgv -C/func/-/Tk_PathName -C/func/-/Tk_PhotoBlank -C/func/-/Tk_PhotoExpand -C/func/-/Tk_PhotoGetImage -C/func/-/Tk_PhotoGetSize -C/func/-/Tk_PhotoPutBlock -C/func/-/Tk_PhotoPutZoomedBlock -C/func/-/Tk_PhotoSetSize -C/func/-/Tk_PointToChar -C/func/-/Tk_PostscriptFontName -C/func/-/Tk_PreserveColormap -C/func/-/Tk_QueueWindowEvent -C/func/-/Tk_RedrawImage -C/func/-/Tk_ReqHeight -C/func/-/Tk_ReqWidth -C/func/-/Tk_ResetUserInactiveTime -C/func/-/Tk_ResizeWindow -C/func/-/Tk_RestackWindow -C/func/-/Tk_RestoreSavedOptions -C/func/-/Tk_RestrictEvents -C/func/-/Tk_SafeInit -C/func/-/Tk_Screen -C/func/-/Tk_ScreenNumber -C/func/-/Tk_SetAppName -C/func/-/Tk_SetBackgroundFromBorder -C/func/-/Tk_SetCaretPos -C/func/-/Tk_SetClass -C/func/-/Tk_SetClassProcs -C/func/-/Tk_SetGrid -C/func/-/Tk_SetInternalBorder -C/func/-/Tk_SetInternalBorderEx -C/func/-/Tk_SetMinimumRequestSize -C/func/-/Tk_SetOptions -C/func/-/Tk_SetWindowBackground -C/func/-/Tk_SetWindowBackgroundPixmap -C/func/-/Tk_SetWindowBorder -C/func/-/Tk_SetWindowBorderPixmap -C/func/-/Tk_SetWindowBorderWidth -C/func/-/Tk_SetWindowColormap -C/func/-/Tk_SetWindowVisual -C/func/-/Tk_SizeOfBitmap -C/func/-/Tk_SizeOfImage -C/func/-/Tk_StrictMotif -C/func/-/Tk_TextLayoutToPostscript -C/func/-/Tk_TextWidth -C/func/-/Tk_Uid -C/func/-/Tk_UndefineCursor -C/func/-/Tk_UnderlineChars -C/func/-/Tk_UnderlineTextLayout -C/func/-/Tk_Ungrab -C/func/-/Tk_UnmaintainGeometry -C/func/-/Tk_UnmapWindow -C/func/-/Tk_UnsetGrid -C/func/-/Tk_Visual -C/func/-/Tk_Width -C/func/-/Tk_WindowId -C/func/-/Tk_X -C/func/-/Tk_Y -C/econst/-/tmfoErr -C/func/-/tmp_dh_callback -C/func/-/tmp_rsa_callback -C/func/-/tmpfile -C/func/-/tmpnam -C/econst/-/tmwdoErr -C/func/-/toascii -C/func/-/toascii_l -JavaScript/instm/HTMLCanvasElement/toDataURL -JavaScript/data/MouseEvent/toElement -Objective-C/instm/NSDrawer/toggle: -Objective-C/instm/NSTextView/toggleAutomaticDashSubstitution: -Objective-C/instm/NSTextView/toggleAutomaticDataDetection: -Objective-C/instm/NSTextView/toggleAutomaticLinkDetection: -Objective-C/instm/NSTextView/toggleAutomaticQuoteSubstitution: -Objective-C/instm/NSTextView/toggleAutomaticSpellingCorrection: -Objective-C/instm/NSTextView/toggleAutomaticTextReplacement: -Objective-C/instm/NSTextView/toggleBaseWritingDirection: -Objective-C/instm/NSTextView/toggleContinuousSpellChecking: -Objective-C/instm/WebView/toggleContinuousSpellChecking: -Objective-C/instm/NSTextView/toggleGrammarChecking: -Objective-C/instm/NSText/toggleRuler: -Objective-C/instm/NSTextView/toggleSmartInsertDelete: -Objective-C/instm/WebView/toggleSmartInsertDelete: -JavaScript/instm/InspectorBackend/toggleStyleEnabled -Objective-C/instm/NSWindow/toggleToolbarShown: -Objective-C/instm/NSTextView/toggleTraditionalCharacterShape: -C/func/-/tok_end -C/func/-/tok_init -C/func/-/tok_line -C/func/-/tok_reset -C/func/-/tok_str -Objective-C/intfm/NSTokenFieldDelegate/tokenField:completionsForSubstring:indexOfToken:indexOfSelectedItem: -Objective-C/intfm/NSTokenFieldDelegate/tokenField:displayStringForRepresentedObject: -Objective-C/intfm/NSTokenFieldDelegate/tokenField:editingStringForRepresentedObject: -Objective-C/intfm/NSTokenFieldDelegate/tokenField:hasMenuForRepresentedObject: -Objective-C/intfm/NSTokenFieldDelegate/tokenField:menuForRepresentedObject: -Objective-C/intfm/NSTokenFieldDelegate/tokenField:readFromPasteboard: -Objective-C/intfm/NSTokenFieldDelegate/tokenField:representedObjectForEditingString: -Objective-C/intfm/NSTokenFieldDelegate/tokenField:shouldAddObjects:atIndex: -Objective-C/intfm/NSTokenFieldDelegate/tokenField:styleForRepresentedObject: -Objective-C/intfm/NSTokenFieldDelegate/tokenField:writeRepresentedObjects:toPasteboard: -Objective-C/intfm/NSTokenFieldCellDelegate/tokenFieldCell:completionsForSubstring:indexOfToken:indexOfSelectedItem: -Objective-C/intfm/NSTokenFieldCellDelegate/tokenFieldCell:displayStringForRepresentedObject: -Objective-C/intfm/NSTokenFieldCellDelegate/tokenFieldCell:editingStringForRepresentedObject: -Objective-C/intfm/NSTokenFieldCellDelegate/tokenFieldCell:hasMenuForRepresentedObject: -Objective-C/intfm/NSTokenFieldCellDelegate/tokenFieldCell:menuForRepresentedObject: -Objective-C/intfm/NSTokenFieldCellDelegate/tokenFieldCell:readFromPasteboard: -Objective-C/intfm/NSTokenFieldCellDelegate/tokenFieldCell:representedObjectForEditingString: -Objective-C/intfm/NSTokenFieldCellDelegate/tokenFieldCell:shouldAddObjects:atIndex: -Objective-C/intfm/NSTokenFieldCellDelegate/tokenFieldCell:styleForRepresentedObject: -Objective-C/intfm/NSTokenFieldCellDelegate/tokenFieldCell:writeRepresentedObjects:toPasteboard: -Objective-C/instm/NSTokenFieldCell/tokenizingCharacterSet -Objective-C/instm/NSTokenField/tokenizingCharacterSet -Objective-C/instm/NSTokenFieldCell/tokenStyle -Objective-C/instm/NSTokenField/tokenStyle -C/func/-/tolower -C/func/-/tolower_l -Objective-C/instm/NSClassDescription/toManyRelationshipKeys -Objective-C/instm/NSObject/toManyRelationshipKeys -C/tag/-/ToneDescription -Objective-C/instm/NSToolbarItem/toolbar -Objective-C/instm/NSWindow/toolbar -JavaScript/data/DOMWindow/toolbar -Objective-C/intfm/NSToolbarDelegate/toolbar:itemForItemIdentifier:willBeInsertedIntoToolbar: -Objective-C/intfm/NSToolbarDelegate/toolbarAllowedItemIdentifiers: -Objective-C/intfm/NSToolbarDelegate/toolbarDefaultItemIdentifiers: -Objective-C/intfm/NSToolbarDelegate/toolbarDidRemoveItem: -Objective-C/intfm/NSToolbarDelegate/toolbarSelectableItemIdentifiers: -Objective-C/intfm/NSToolbarDelegate/toolbarWillAddItem: -JavaScript/data/ValidityState/tooLong -Objective-C/instm/NSToolbarItem/toolTip -Objective-C/instm/NSStatusItem/toolTip -Objective-C/instm/PDFAnnotation/toolTip -Objective-C/instm/NSMenuItem/toolTip -Objective-C/instm/NSTabViewItem/toolTip -Objective-C/instm/NSView/toolTip -Objective-C/binding/NSComboBox/toolTip -Objective-C/binding/NSForm/toolTip -Objective-C/binding/NSBrowser/toolTip -Objective-C/binding/NSImageView/toolTip -Objective-C/binding/NSMatrix/toolTip -Objective-C/binding/NSButton/toolTip -Objective-C/binding/NSBox/toolTip -Objective-C/binding/NSDatePicker/toolTip -Objective-C/binding/AMPathPopUpButton/toolTip -Objective-C/binding/NSCollectionView/toolTip -Objective-C/binding/NSMovieView/toolTip -Objective-C/binding/NSColorWell/toolTip -Objective-C/binding/NSLevelIndicator/toolTip -Objective-C/binding/NSTokenField/toolTip -Objective-C/binding/NSPredicateEditor/toolTip -Objective-C/binding/NSSegmentedControl/toolTip -Objective-C/binding/QCView/toolTip -Objective-C/binding/NSPathControl/toolTip -Objective-C/binding/NSPopUpButton/toolTip -Objective-C/binding/NSTextView/toolTip -Objective-C/binding/NSTabView/toolTip -Objective-C/binding/NSScrollView/toolTip -Objective-C/binding/NSSecureTextField/toolTip -Objective-C/binding/NSSplitView/toolTip -Objective-C/binding/NSSlider/toolTip -Objective-C/binding/NSView/toolTip -Objective-C/binding/QTMovieView/toolTip -Objective-C/binding/NSStepper/toolTip -Objective-C/binding/NSTextField/toolTip -Objective-C/binding/NSOutlineView/toolTip -Objective-C/binding/NSSearchField/toolTip -Objective-C/binding/PDFThumbnailView/toolTip -Objective-C/binding/NSTableView/toolTip -Objective-C/binding/NSProgressIndicator/toolTip -Objective-C/instm/NSMatrix/toolTipForCell: -Objective-C/instm/NSSegmentedCell/toolTipForSegment: -Objective-C/clm/NSFont/toolTipsFontOfSize: -Objective-C/instm/NSClassDescription/toOneRelationshipKeys -Objective-C/instm/NSObject/toOneRelationshipKeys -JavaScript/data/ClientRect/top -JavaScript/data/DOMWindow/top -JavaScript/data/Rect/top -Objective-C/instm/NSScriptExecutionContext/topLevelObject -Objective-C/instm/IBDocument/topLevelObjects -Objective-C/instm/NSPrintInfo/topMargin -JavaScript/instm/DOMSelection/toString -JavaScript/instm/DOMCoreException/toString -JavaScript/instm/DOMWindow/toString -JavaScript/instm/HTMLAnchorElement/toString -JavaScript/instm/EventException/toString -JavaScript/instm/Range/toString -JavaScript/instm/RangeException/toString -JavaScript/instm/SVGException/toString -JavaScript/instm/window/toString -JavaScript/instm/WebKitCSSMatrix/toString -JavaScript/instm/WorkerLocation/toString -JavaScript/instm/XMLHttpRequestException/toString -JavaScript/instm/XPathException/toString -JavaScript/data/ProgressEvent/total -Objective-C/instm/NSCache/totalCostLimit -JavaScript/data/XMLHttpRequestProgressEvent/totalSize -JavaScript/data/ScriptProfileNode/totalTime -JavaScript/cl/-/Touch -JavaScript/data/TouchEvent/touches -Objective-C/instm/NSResponder/touchesBeganWithEvent: -Objective-C/instm/NSResponder/touchesCancelledWithEvent: -Objective-C/instm/NSResponder/touchesEndedWithEvent: -Objective-C/instm/NSEvent/touchesMatchingPhase:inView: -Objective-C/instm/NSResponder/touchesMovedWithEvent: -JavaScript/data/DOMWindow/TouchEvent -JavaScript/cl/-/TouchEvent -C/func/-/touchline -JavaScript/cl/-/TouchList -C/func/-/touchwin -C/func/-/toupper -C/func/-/toupper_l -Objective-C/instp/CABasicAnimation/toValue -Objective-C/instm/CABasicAnimation/toValue -C/func/-/towctrans -C/func/-/towctrans_l -C/func/-/towlower -C/func/-/towlower_l -C/func/-/towupper -C/func/-/towupper_l -C/func/-/tparm -C/func/-/tputs -C/func/-/trace -JavaScript/instm/Console/trace -C/tdef/-/Track -Objective-C/instm/QTMedia/track -Objective-C/instm/QTTrack/trackAttributes -Objective-C/instm/DRCDTextBlock/trackDictionaries -C/tdef/-/TrackEditState -C/tag/-/TrackEditStateRecord -Objective-C/clm/DRTrack(AudioContentCreation)/trackForAudioFile: -Objective-C/clm/DRTrack(AudioContentCreation)/trackForAudioOfLength:producer: -Objective-C/clm/DRTrack(DataContentCreation)/trackForRootFolder: -Objective-C/instm/NSEvent/trackingArea -Objective-C/instm/NSView/trackingAreas -Objective-C/instm/NSSegmentedCell/trackingMode -Objective-C/instm/NSEvent/trackingNumber -Objective-C/instm/NSScroller/trackKnob: -Objective-C/instm/NSRulerView/trackMarker:withMouseEvent: -Objective-C/instm/NSRulerMarker/trackMouse:adding: -Objective-C/intfm/NSTextAttachmentCell/trackMouse:inRect:ofView:atCharacterIndex:untilMouseUp: -Objective-C/intfm/NSTextAttachmentCell/trackMouse:inRect:ofView:untilMouseUp: -Objective-C/instm/NSCell/trackMouse:inRect:ofView:untilMouseUp: -C/tag/-/TrackRecord -Objective-C/instm/NSSliderCell/trackRect -Objective-C/instm/QTMovie/tracks -Objective-C/instm/NSScroller/trackScrollButtons: -Objective-C/instm/QTMovie/tracksOfMediaType: -C/func/-/TrackTimeToMediaDisplayTime -C/func/-/TrackTimeToMediaTime -C/tdef/-/TrackTransferProc -C/tdef/-/TrackTransferUPP -Objective-C/instm/NSMenuView/trackWithEvent: -Objective-C/clm/QTTrack/trackWithQuickTimeTrack:error: -Objective-C/instm/NSDrawer/trailingOffset -Objective-C/instm/NSFontManager/traitsOfFont: -JavaScript/instm/DatabaseSync/transaction -JavaScript/instm/Database/transaction -Objective-C/instm/NSAppleEventDescriptor/transactionID -Objective-C/instm/IKScannerDeviceView/transferMode -Objective-C/instp/IKScannerDeviceView/transferMode -Objective-C/instm/IKCameraDeviceView/transferMode -Objective-C/instp/IKCameraDeviceView/transferMode -Objective-C/clm/NSAffineTransform/transform -Objective-C/instp/CALayer/transform -Objective-C/instm/CALayer/transform -JavaScript/instm/CanvasRenderingContext2D/transform -JavaScript/data/SVGTransformable/transform -JavaScript/data/SVGViewSpec/transform -Objective-C/instm/NSAffineTransform/transformBezierPath: -Objective-C/instm/CIFilterShape/transformBy:interior: -Objective-C/instm/PDFPage/transformContextForBox: -Objective-C/instm/NSValueTransformer/transformedValue: -Objective-C/clm/NSValueTransformer/transformedValueClass -C/func/-/TransformFixedPoints -C/func/-/TransformFixedRect -Objective-C/instm/NSAffineTransform/transformPoint: -C/func/-/TransformPoints -C/func/-/TransformProcessType -C/func/-/TransformRect -C/func/-/TransformRgn -Objective-C/instm/NSAffineTransform/transformSize: -JavaScript/data/SVGViewSpec/transformString -Objective-C/instm/NSAffineTransform/transformStruct -JavaScript/instm/XSLTProcessor/transformToDocument -JavaScript/instm/XSLTProcessor/transformToFragment -Objective-C/instm/NSBezierPath/transformUsingAffineTransform: -JavaScript/clconst/IDBDatabaseException/TRANSIENT_ERR -JavaScript/instm/CanvasRenderingContext2D/translate -JavaScript/instm/SVGMatrix/translate -JavaScript/instm/WebKitCSSMatrix/translate -C/func/-/TranslateMatrix -Objective-C/instm/NSView/translateOriginToPoint: -Objective-C/instm/NSView/translateRectsNeedingDisplayInRect:by: -Objective-C/instm/NSAffineTransform/translateXBy:yBy: -C/econst/-/transparent -Objective-C/binding/NSBox/transparent -Objective-C/instm/NSResponder/transpose: -Objective-C/instm/NSResponder/transposeWords: -Objective-C/instm/DRDevice(StatusConvenience)/trayIsOpen -Objective-C/instm/NSSavePanel/treatsFilePackagesAsDirectories -C/tdef/-/tRecordEntry -C/tdef/-/tRecordEntryPtr -C/tdef/-/tRecordReference -Objective-C/clm/NSTreeNode/treeNodeWithRepresentedObject: -JavaScript/cl/-/TreeWalker -JavaScript/clconst/WebGLRenderingContext/TRIANGLE_FAN -JavaScript/clconst/WebGLRenderingContext/TRIANGLE_STRIP -JavaScript/clconst/WebGLRenderingContext/TRIANGLES -Objective-C/instm/CalAlarm/triggerDateRelativeTo: -Objective-C/instm/QTMovieView/trim: -C/func/-/TrimImage -JavaScript/clconst/WebGLRenderingContext/TRUE -C/func/-/trunc -C/func/-/truncate -Objective-C/instm/NSFileHandle/truncateFileAtOffset: -C/func/-/TruncateForTextToUnicode -C/func/-/TruncateForUnicodeToText -Objective-C/instm/NSCell/truncatesLastVisibleLine -Objective-C/instp/CATextLayer/truncationMode -Objective-C/instm/CATextLayer/truncationMode -C/func/-/truncf -C/func/-/truncl -Objective-C/instm/NSConditionLock/tryLock -Objective-C/instm/NSDistributedLock/tryLock -Objective-C/instm/NSRecursiveLock/tryLock -Objective-C/instm/NSLock/tryLock -Objective-C/instm/NSPersistentStoreCoordinator/tryLock -Objective-C/instm/NSManagedObjectContext/tryLock -Objective-C/instm/NSConditionLock/tryLockWhenCondition: -Objective-C/instm/NSWindow/tryToPerform:with: -Objective-C/instm/NSResponder/tryToPerform:with: -Objective-C/instm/NSApplication/tryToPerform:with: -C/func/-/tsearch -C/func/-/Ttk_AddPadding -C/func/-/Ttk_AnchorBox -C/func/-/Ttk_BoxContains -C/func/-/Ttk_CreateTheme -C/func/-/Ttk_ExpandBox -C/func/-/Ttk_GetBorderFromObj -C/func/-/Ttk_GetCurrentTheme -C/func/-/Ttk_GetDefaultTheme -C/func/-/Ttk_GetPaddingFromObj -C/func/-/Ttk_GetStickyFromObj -C/func/-/Ttk_GetTheme -C/func/-/Ttk_MakeBox -C/func/-/Ttk_MakePadding -C/func/-/Ttk_PackBox -C/func/-/Ttk_PadBox -C/func/-/Ttk_PlaceBox -C/func/-/Ttk_RelievePadding -C/func/-/Ttk_StickBox -C/func/-/Ttk_UniformPadding -C/func/-/ttyname -C/func/-/ttyslot -Objective-C/instm/NSTextView/turnOffKerning: -Objective-C/instm/NSTextView/turnOffLigatures: -C++/instm/IOFWAsyncStreamListener/TurnOffNotification -C++/instm/IOFWAsyncStreamListener/TurnOnNotification -C/func/-/twalk -C/tdef/-/TweenerComponent -C/func/-/TweenerDoTween -C/func/-/TweenerInitialize -C/func/-/TweenerReset -C/tag/-/TweenRecord -Objective-C/instm/NSDateFormatter/twoDigitStartDate -C/tag/-/twolevel_hint -C/tag/-/twolevel_hints_command -Objective-C/instp/CWInterface/txPower -Objective-C/instp/CWInterface/txRate -C/func/-/TXTRecordContainsKey -C/func/-/TXTRecordCreate -Objective-C/instm/NSNetService/TXTRecordData -C/func/-/TXTRecordDeallocate -C/func/-/TXTRecordGetBytesPtr -C/func/-/TXTRecordGetCount -C/func/-/TXTRecordGetItemAtIndex -C/func/-/TXTRecordGetLength -C/func/-/TXTRecordGetValuePtr -C/tdef/-/TXTRecordRef -C/func/-/TXTRecordRemoveValue -C/func/-/TXTRecordSetValue -Objective-C/instm/NSPrinter/type -Objective-C/instm/PDFAction/type -Objective-C/instm/PDFAnnotation/type -Objective-C/instp/CATransition/type -Objective-C/instm/CATransition/type -Objective-C/instm/ISyncChange/type -Objective-C/instp/CalCalendar/type -Objective-C/instm/CalCalendar/type -Objective-C/instp/CAGradientLayer/type -Objective-C/instm/CAGradientLayer/type -Objective-C/instm/NSPersistentStore/type -Objective-C/instm/NSNetService/type -Objective-C/instm/XGFile/type -Objective-C/instm/NSEvent/type -Objective-C/instm/NSCell/type -JavaScript/data/CSSRule/type -JavaScript/data/DOMSelection/type -JavaScript/data/DataGridColumn/type -JavaScript/data/HTMLScriptElement/type -JavaScript/data/HTMLStyleElement/type -JavaScript/data/HTMLAnchorElement/type -JavaScript/data/HTMLSourceElement/type -JavaScript/data/HTMLLIElement/type -JavaScript/data/HTMLUListElement/type -JavaScript/data/HTMLSelectElement/type -JavaScript/data/HTMLEmbedElement/type -JavaScript/data/HTMLButtonElement/type -JavaScript/data/HTMLObjectElement/type -JavaScript/data/HTMLTextAreaElement/type -JavaScript/data/HTMLInputElement/type -JavaScript/data/HTMLDataGridColElement/type -JavaScript/data/HTMLParamElement/type -JavaScript/data/Event/type -JavaScript/data/HTMLLinkElement/type -JavaScript/data/File/type -JavaScript/data/HTMLOListElement/type -JavaScript/data/MimeType/type -JavaScript/data/StyleMedia/type -JavaScript/data/JavaScriptCallFrame/type -JavaScript/data/SVGComponentTransferFunctionElement/type -JavaScript/data/StyleSheet/type -JavaScript/data/SVGFEColorMatrixElement/type -JavaScript/data/SVGFETurbulenceElement/type -JavaScript/data/SVGTransform/type -JavaScript/data/SVGScriptElement/type -JavaScript/data/WebGLActiveInfo/type -JavaScript/data/SVGStyleElement/type -Objective-C/instm/NSWorkspace/type:conformsToType: -JavaScript/clconst/XPathException/TYPE_ERR -JavaScript/clconst/DOMCoreException/TYPE_MISMATCH_ERR -C/func/-/typeahead -Objective-C/instm/NSAppleEventDescriptor/typeCodeValue -Objective-C/instm/NSScriptCommandDescription/typeForArgumentWithName: -Objective-C/instm/NSDocumentController/typeForContentsOfURL:error: -Objective-C/instm/NSScriptClassDescription/typeForKey: -Objective-C/instm/NSDocumentController/typeFromFileExtension: -JavaScript/data/ValidityState/typeMismatch -Objective-C/instm/NSWorkspace/typeOfFile:error: -Objective-C/clm/ABPerson/typeOfProperty: -Objective-C/clm/ABGroup/typeOfProperty: -Objective-C/instm/NSPasteboardItem/types -Objective-C/instm/NSPasteboard/types -JavaScript/data/Clipboard/types -Objective-C/instm/NSLayoutManager/typesetter -Objective-C/instm/NSATSTypesetter/typesetterBehavior -Objective-C/instm/NSLayoutManager/typesetterBehavior -Objective-C/instm/NSTypesetter/typesetterBehavior -Objective-C/clm/NSPasteboard/typesFilterableTo: -C/econst/-/typeSRRecognizer -C/econst/-/typeSRSpeechResult -Objective-C/instm/NSTextView/typingAttributes -Objective-C/instm/WebView/typingStyle -C/func/-/tzset -C/func/-/tzsetwall -C/func/-/ualarm -C/func/-/UAZoomChangeFocus -C/tdef/-/UAZoomChangeFocusType -C/func/-/UAZoomEnabled -C/tdef/-/UCCharPropertyType -C/tdef/-/UCCharPropertyValue -C/tdef/-/UCCollateOptions -C/tdef/-/UCCollationValue -C/func/-/UCCompareCollationKeys -C/func/-/UCCompareText -C/func/-/UCCompareTextDefault -C/func/-/UCCompareTextNoLocale -C/func/-/UCCreateCollator -C/func/-/UCCreateTextBreakLocator -C/func/-/UCDisposeCollator -C/func/-/UCDisposeTextBreakLocator -C/func/-/UCFindTextBreak -C/func/-/UCGetCharProperty -C/func/-/UCGetCollationKey -C++/cl/-/UCInfo -C/tdef/-/UCKeyboardLayout -C/tdef/-/UCKeyboardTypeHeader -C/tdef/-/UCKeyCharSeq -C/tdef/-/UCKeyLayoutFeatureInfo -C/tdef/-/UCKeyModifiersToTableNum -C/tdef/-/UCKeyOutput -C/tdef/-/UCKeySequenceDataIndex -C/tdef/-/UCKeyStateEntryRange -C/tdef/-/UCKeyStateEntryTerminal -C/tdef/-/UCKeyStateRecord -C/tdef/-/UCKeyStateRecordsIndex -C/tdef/-/UCKeyStateTerminators -C/tdef/-/UCKeyToCharTableIndex -C/func/-/UCKeyTranslate -C/func/-/ucontext -C/tdef/-/UCTextBreakOptions -C/tdef/-/UCTextBreakType -C/func/-/ui -C/func/-/UI_add_error_string -C/func/-/UI_add_info_string -C/func/-/UI_add_input_boolean -C/func/-/UI_add_input_string -C/func/-/UI_add_user_data -C/func/-/UI_add_verify_string -C/func/-/ui_compat -C/func/-/UI_construct_prompt -C/func/-/UI_ctrl -C/func/-/UI_dup_error_string -C/func/-/UI_dup_info_string -C/func/-/UI_dup_input_boolean -C/func/-/UI_dup_input_string -C/func/-/UI_dup_verify_string -C/func/-/UI_free -C/func/-/UI_get0_result -C/func/-/UI_get0_user_data -C/func/-/UI_get_default_method -C/func/-/UI_get_method -C/func/-/UI_new -C/func/-/UI_new_method -C/func/-/UI_OpenSSL -C/func/-/UI_process -C/func/-/UI_set_default_method -C/func/-/UI_set_method -Objective-C/instm/CalCalendarItem/uid -Objective-C/instp/CalCalendarItem/uid -Objective-C/instp/CalCalendar/uid -Objective-C/instm/CalCalendar/uid -JavaScript/data/ScriptProfile/uid -Objective-C/instm/WebView/UIDelegate -JavaScript/data/DOMWindow/UIEvent -JavaScript/cl/-/UIEvent -C++/instm/IOUSBController/UIMAbortEndpoint -C++/instm/IOUSBController/UIMClearEndpointStall -C++/instm/IOUSBControllerV2/UIMCreateBulkEndpoint -C++/instm/IOUSBController/UIMCreateBulkEndpoint -C++/instm/IOUSBController/UIMCreateBulkTransfer -C++/instm/IOUSBControllerV2/UIMCreateControlEndpoint -C++/instm/IOUSBController/UIMCreateControlEndpoint -C++/instm/IOUSBController/UIMCreateControlTransfer -C++/instm/IOUSBControllerV2/UIMCreateInterruptEndpoint -C++/instm/IOUSBController/UIMCreateInterruptEndpoint -C++/instm/IOUSBController/UIMCreateInterruptTransfer -C++/instm/IOUSBController/UIMCreateIsochEndpoint -C++/instm/IOUSBControllerV2/UIMCreateIsochEndpoint -C++/instm/IOUSBController/UIMCreateIsochTransfer -C++/instm/IOUSBController/UIMDeleteEndpoint -C++/instm/IOUSBController/UIMFinalize -C++/instm/IOUSBController/UIMInitialize -C++/instm/IOUSBController/UIMRootHubStatusChange -JavaScript/data/DOMWindow/Uint16Array -JavaScript/cl/-/Uint16Array -JavaScript/data/DOMWindow/Uint32Array -JavaScript/cl/-/Uint32Array -JavaScript/data/DOMWindow/Uint8Array -JavaScript/cl/-/Uint8Array -C/func/-/ulimit -C/func/-/umask -Objective-C/instm/NSObject/unableToSetNilForKey: -C/func/-/uname -Objective-C/clm/NSUnarchiver/unarchiveObjectWithData: -Objective-C/clm/NSKeyedUnarchiver/unarchiveObjectWithData: -Objective-C/clm/NSUnarchiver/unarchiveObjectWithFile: -Objective-C/clm/NSKeyedUnarchiver/unarchiveObjectWithFile: -Objective-C/intfm/NSKeyedUnarchiverDelegate/unarchiver:cannotDecodeObjectOfClassName:originalClasses: -Objective-C/intfm/NSKeyedUnarchiverDelegate/unarchiver:didDecodeObject: -Objective-C/intfm/NSKeyedUnarchiverDelegate/unarchiver:willReplaceObject:withObject: -Objective-C/intfm/NSKeyedUnarchiverDelegate/unarchiverDidFinish: -Objective-C/intfm/NSKeyedUnarchiverDelegate/unarchiverWillFinish: -Objective-C/instm/NSObject/unbind: -Objective-C/intfm/QCPlugInInputImageSource/unbindTextureRepresentationFromCGLContext:textureUnit: -JavaScript/clconst/DOMApplicationCache/UNCACHED -C/func/-/UncaptureComponent -C/func/-/unctrl -Objective-C/clm/WebUndefined/undefined -C/func/-/undelete -Objective-C/instm/NSText/underline: -Objective-C/instm/NSLayoutManager/underlineGlyphRange:underlineType:lineFragmentRect:lineFragmentGlyphRange:containerOrigin: -Objective-C/instm/NSFont/underlinePosition -Objective-C/instm/NSFont/underlineThickness -Objective-C/instm/NSUndoManager/undo -Objective-C/instm/NSManagedObjectContext/undo -Objective-C/instm/NSUndoManager/undoActionName -Objective-C/instm/NSDocument/undoManager -Objective-C/instm/WebView/undoManager -Objective-C/instm/NSResponder/undoManager -Objective-C/instm/NSManagedObjectContext/undoManager -Objective-C/intfm/NSTextViewDelegate/undoManagerForTextView: -Objective-C/instm/NSObject/undoManagerForWebView: -Objective-C/instm/NSUndoManager/undoMenuItemTitle -Objective-C/instm/NSUndoManager/undoMenuTitleForUndoActionName: -Objective-C/instm/NSUndoManager/undoNestedGroup -C/tdef/-/UnembedImageProcPtr -C/func/-/unget_wch -C/func/-/ungetc -C/func/-/ungetch -C/func/-/ungetmouse -C/func/-/ungetwc -C/func/-/ungetwc_l -Objective-C/clm/NSCursor/unhide -Objective-C/instm/NSRunningApplication/unhide -Objective-C/instm/NSApplication/unhide: -Objective-C/instm/NSApplication/unhideAllApplications: -Objective-C/instm/NSApplication/unhideWithoutActivation -C/tdef/-/unichar -C/tdef/-/UniCharArrayOffset -C/tdef/-/UnicodeMapping -C/tdef/-/UnicodeMapVersion -C/tdef/-/UnicodeToTextFallbackProcPtr -C/tdef/-/UnicodeToTextFallbackUPP -C/tdef/-/UnicodeToTextInfo -C/tdef/-/UnicodeToTextRunInfo -JavaScript/instm/WebGLRenderingContext/uniform1f -JavaScript/instm/WebGLRenderingContext/uniform1fv -JavaScript/instm/WebGLRenderingContext/uniform1i -JavaScript/instm/WebGLRenderingContext/uniform1iv -JavaScript/instm/WebGLRenderingContext/uniform2f -JavaScript/instm/WebGLRenderingContext/uniform2fv -JavaScript/instm/WebGLRenderingContext/uniform2i -JavaScript/instm/WebGLRenderingContext/uniform2iv -JavaScript/instm/WebGLRenderingContext/uniform3f -JavaScript/instm/WebGLRenderingContext/uniform3fv -JavaScript/instm/WebGLRenderingContext/uniform3i -JavaScript/instm/WebGLRenderingContext/uniform3iv -JavaScript/instm/WebGLRenderingContext/uniform4f -JavaScript/instm/WebGLRenderingContext/uniform4fv -JavaScript/instm/WebGLRenderingContext/uniform4i -JavaScript/instm/WebGLRenderingContext/uniform4iv -JavaScript/instm/WebGLRenderingContext/uniformMatrix2fv -JavaScript/instm/WebGLRenderingContext/uniformMatrix3fv -JavaScript/instm/WebGLRenderingContext/uniformMatrix4fv -Objective-C/instm/NSHashTable/unionHashTable: -Objective-C/instm/NSMutableSet/unionSet: -Objective-C/instm/CIFilterShape/unionWith: -Objective-C/instm/CIFilterShape/unionWithRect: -C/func/-/Unique1ID -Objective-C/instm/NSUniqueIDSpecifier/uniqueID -C/func/-/UniqueID -Objective-C/instm/QTCaptureDevice/uniqueID -Objective-C/instm/ABRecord/uniqueId -Objective-C/instm/NSEvent/uniqueID -Objective-C/clm/NSSpellChecker/uniqueSpellDocumentTag -JavaScript/data/SVGLength/unitType -JavaScript/data/SVGAngle/unitType -JavaScript/clconst/IDBDatabaseException/UNKNOWN_ERR -JavaScript/clconst/CSSRule/UNKNOWN_RULE -Objective-C/instm/NSSpellChecker/unlearnWord: -C/func/-/unlink -Objective-C/instm/NSBundle/unload -Objective-C/instm/QCView/unloadComposition -C++/instm/IOCatalogue/unloadModule -Objective-C/instm/NSDistributedLock/unlock -Objective-C/intfm/NSLocking/unlock -Objective-C/instm/NSPersistentStoreCoordinator/unlock -C++/instm/IONetworkInterface/unlock -Objective-C/clm/CATransaction/unlock -C++/clm/IOKernelDebugger/unlock -Objective-C/instm/NSManagedObjectContext/unlock -Objective-C/intfm/QCPlugInInputImageSource/unlockBufferRepresentation -Objective-C/instm/NSImage/unlockFocus -Objective-C/instm/NSView/unlockFocus -C++/instm/IOService/unlockForArbitration -Objective-C/intfm/ApertureExportPlugIn/unlockProgress -C/func/-/unlockpt -Objective-C/intfm/QCPlugInInputImageSource/unlockTextureRepresentation -Objective-C/instm/NSConditionLock/unlockWithCondition: -Objective-C/instm/PDFDocument/unlockWithPassword: -C++/instm/IOMemoryMap/unmap -Objective-C/intfm/NSTextInput/unmarkText -Objective-C/intfm/NSTextInputClient/unmarkText -C/func/-/unmount -Objective-C/instm/NSWorkspace/unmountAndEjectDeviceAtPath: -Objective-C/instm/NSWorkspace/unmountAndEjectDeviceAtURL:error: -C/func/-/UnmountVol -JavaScript/clconst/XPathResult/UNORDERED_NODE_ITERATOR_TYPE -JavaScript/clconst/XPathResult/UNORDERED_NODE_SNAPSHOT_TYPE -JavaScript/clconst/WebGLRenderingContext/UNPACK_ALIGNMENT -C/tdef/-/unparsedEntityDeclSAXFunc -JavaScript/instm/SVGSVGElement/unpauseAnimations -C/func/-/unpost_form -C/func/-/unpost_menu -Objective-C/instm/ODNode/unreachableSubnodeNamesAndReturnError: -Objective-C/instm/WebDataSource/unreachableURL -Objective-C/instp/PSFeed/unreadCount -Objective-C/instm/IOBluetoothUserNotification/unregister -C/func/-/unregister_app_config_handler -C/func/-/unregister_config_handler -Objective-C/clm/NSURLProtocol/unregisterClass: -Objective-C/instm/ISyncManager/unregisterClient: -C/func/-/UnregisterComponent -Objective-C/instm/NSWindow/unregisterDraggedTypes -Objective-C/instm/NSView/unregisterDraggedTypes -Objective-C/clm/NSImageRep/unregisterImageRepClass: -C++/instm/IOFramebuffer/unregisterInterrupt -C++/instm/IOService/unregisterInterrupt -Objective-C/instm/ISyncManager/unregisterSchemaWithName: -Objective-C/instm/NSApplication/unregisterUserInterfaceItemSearchHandler: -C/econst/-/unresolvedComponentDLLErr -Objective-C/instm/NSURLConnection/unscheduleFromRunLoop:forMode: -Objective-C/instm/NSText/unscript: -Objective-C/instm/NSMutableAttributedString/unscriptRange: -JavaScript/clconst/XMLHttpRequest/UNSENT -C/func/-/unsetenv -C++/instm/OSNumber/unsigned16BitValue -C++/instm/OSNumber/unsigned32BitValue -C++/instm/OSNumber/unsigned64BitValue -C++/instm/OSNumber/unsigned8BitValue -JavaScript/clconst/WebGLRenderingContext/UNSIGNED_BYTE -JavaScript/clconst/WebGLRenderingContext/UNSIGNED_INT -JavaScript/clconst/WebGLRenderingContext/UNSIGNED_SHORT -JavaScript/clconst/WebGLRenderingContext/UNSIGNED_SHORT_4_4_4_4 -JavaScript/clconst/WebGLRenderingContext/UNSIGNED_SHORT_5_5_5_1 -JavaScript/clconst/WebGLRenderingContext/UNSIGNED_SHORT_5_6_5 -Objective-C/instm/NSNumber/unsignedCharValue -C/func/-/UnsignedFixMulDiv -Objective-C/instm/NSNumber/unsignedIntegerValue -Objective-C/instm/NSNumber/unsignedIntValue -JavaScript/data/TestObj/unsignedLongLongAttr -Objective-C/instm/NSNumber/unsignedLongLongValue -Objective-C/instm/NSNumber/unsignedLongValue -Objective-C/instm/NSNumber/unsignedShortValue -C++/instm/IOFireWireSerialBusProtocolTransport/UnsolicitedStatusNotify -JavaScript/clconst/EventException/UNSPECIFIED_EVENT_TYPE_ERR -JavaScript/instm/SVGSVGElement/unsuspendRedraw -JavaScript/instm/SVGSVGElement/unsuspendRedrawAll -C/func/-/untouchwin -C/func/-/unvis -Objective-C/instm/NSOpenGLView/update -Objective-C/instm/NSMenuView/update -Objective-C/instm/NSOpenGLContext/update -Objective-C/instm/NSWindow/update -C++/instm/IOConfigDirectory/update -C++/instm/IOLocalConfigDirectory/update -C++/instm/IORemoteConfigDirectory/update -Objective-C/instm/NSMenu/update -JavaScript/instm/DOMApplicationCache/update -C/func/-/UpdateAlias -Objective-C/instm/NSMutableAttributedString/updateAttachmentsFromPath: -C++/instm/IOFireWireAVCUnit/updateAVCCommandTimeout -C++/instm/IOFireWireAVCNub/updateAVCCommandTimeout -C++/instm/IOFireWireAVCSubUnit/updateAVCCommandTimeout -Objective-C/instm/CARenderer/updateBounds -Objective-C/instm/NSAtomicStore/updateCacheNode:fromManagedObject: -Objective-C/instm/IMKCandidates/updateCandidates -Objective-C/instm/NSControl/updateCell: -Objective-C/instm/NSControl/updateCellInside: -Objective-C/instm/NSDocument/updateChangeCount: -Objective-C/instm/IMKInputController/updateComposition -Objective-C/instm/QLPreviewPanel/updateController -C/func/-/UpdateDataBrowserItems -Objective-C/instm/NSManagedObjectContext/updatedObjects -Objective-C/instm/NSTextView/updateDragTypeRegistration -C++/instm/IOHIDDevice/updateElementValues -Objective-C/instm/NSTextView/updateFontPanel -Objective-C/instm/NSFileWrapper/updateFromPath: -Objective-C/instm/NSPrintInfo/updateFromPMPageFormat -Objective-C/instm/NSPrintInfo/updateFromPMPrintSettings -Objective-C/instm/NSPrintPanel/updateFromPrintInfo -Objective-C/instm/NSPreferencePane/updateHelpMenuWithArray: -C++/instm/IOFireWirePCRSpace/updateInputMasterPlug -C++/instm/IOFireWirePCRSpace/updateInputPlug -Objective-C/instm/NSTextView/updateInsertionPointStateAndRestartTimer: -Objective-C/instm/QTMovie/updateMovieFile -Objective-C/instm/IOBluetoothDeviceInquiry/updateNewDeviceNames -C++/instm/IOFireWirePCRSpace/updateOutputMasterPlug -C++/instm/IOFireWirePCRSpace/updateOutputPlug -Objective-C/instm/NSSpellChecker/updatePanels -Objective-C/instm/AMAction/updateParameters -Objective-C/intfm/FxProgressAPI/updateProgress: -JavaScript/clconst/DOMApplicationCache/UPDATEREADY -C/func/-/UpdateResFile -Objective-C/instm/NSTextView/updateRuler -Objective-C/instm/NSBrowser/updateScroller -Objective-C/instm/NSSpellChecker/updateSpellingPanelWithGrammarString:detail: -Objective-C/instm/NSSpellChecker/updateSpellingPanelWithMisspelledWord: -C/func/-/updateStatus -Objective-C/instm/SFAuthorizationView/updateStatus: -Objective-C/instm/NSView/updateTrackingAreas -C++/instm/IOAudioControl/updateValue -Objective-C/instm/SFAuthorizationPluginView/updateView -Objective-C/instm/NSApplication/updateWindows -Objective-C/instm/NSApplication/updateWindowsItem: -C/func/-/UpgradeScriptInfoToTextEncoding -JavaScript/data/XMLHttpRequest/upload -Objective-C/clm/NSCharacterSet/uppercaseLetterCharacterSet -Objective-C/instm/NSString/uppercaseString -Objective-C/instm/NSResponder/uppercaseWord: -Objective-C/instm/FxHostCapabilities/upscalesFields -Objective-C/instm/NSXMLDocument/URI -Objective-C/instm/NSXMLNode/URI -JavaScript/data/SVGPaint/uri -Objective-C/instm/NSManagedObjectID/URIRepresentation -Objective-C/instp/CalCalendarItem/url -Objective-C/instm/CalCalendarItem/url -Objective-C/instm/PDFAnnotationLink/URL -Objective-C/instm/NSPathComponentCell/URL -Objective-C/instm/NSURLRequest/URL -Objective-C/instm/PDFActionURL/URL -Objective-C/instm/PDFActionRemoteGoTo/URL -Objective-C/instm/NSURLResponse/URL -Objective-C/instm/WebResource/URL -Objective-C/instm/CalAlarm/url -Objective-C/instm/NSSavePanel/URL -Objective-C/instp/CalAlarm/url -Objective-C/instm/NSPersistentStore/URL -Objective-C/instm/NSPathCell/URL -Objective-C/instp/NSTextCheckingResult/URL -Objective-C/instm/NSTextCheckingResult/URL -Objective-C/instp/PSEnclosure/URL -Objective-C/instp/PSAuthor/URL -Objective-C/instp/PSFeed/URL -Objective-C/instp/PSLink/URL -Objective-C/instm/NSPathControl/URL -JavaScript/data/Document/URL -JavaScript/data/BeforeLoadEvent/url -JavaScript/data/EventSource/URL -JavaScript/data/StorageEvent/url -JavaScript/data/ScriptProfileNode/url -JavaScript/data/WebSocket/URL -JavaScript/clconst/DOMCoreException/URL_MISMATCH_ERR -Objective-C/instm/NSAttributedString/URLAtIndex:effectiveRange: -Objective-C/instm/NSURL/URLByAppendingPathComponent: -Objective-C/instm/NSURL/URLByAppendingPathExtension: -Objective-C/instm/NSURL/URLByDeletingLastPathComponent -Objective-C/instm/NSURL/URLByDeletingPathExtension -Objective-C/clm/NSURL/URLByResolvingBookmarkData:options:relativeToURL:bookmarkDataIsStale:error: -Objective-C/instm/NSURL/URLByResolvingSymlinksInPath -Objective-C/instm/NSURL/URLByStandardizingPath -Objective-C/instm/NSWorkspace/URLForApplicationToOpenURL: -Objective-C/instm/NSWorkspace/URLForApplicationWithBundleIdentifier: -Objective-C/instm/NSBundle/URLForAuxiliaryExecutable: -Objective-C/instm/NSFileManager/URLForDirectory:inDomain:appropriateForURL:create:error: -Objective-C/instm/NSBundle/URLForImageResource: -Objective-C/instm/NSUserDefaults/URLForKey: -Objective-C/instm/NSPersistentStoreCoordinator/URLForPersistentStore: -Objective-C/instm/NSBundle/URLForResource:withExtension: -Objective-C/instm/NSBundle/URLForResource:withExtension:subdirectory: -Objective-C/clm/NSBundle/URLForResource:withExtension:subdirectory:inBundleWithURL: -Objective-C/instm/NSBundle/URLForResource:withExtension:subdirectory:localization: -Objective-C/clm/NSURL/URLFromPasteboard: -Objective-C/clm/WebView/URLFromPasteboard: -Objective-C/intfm/NSURLHandleClient/URLHandle:resourceDataDidBecomeAvailable: -Objective-C/intfm/NSURLHandleClient/URLHandle:resourceDidFailLoadingWithReason: -Objective-C/clm/NSURLHandle/URLHandleClassForURL: -Objective-C/intfm/NSURLHandleClient/URLHandleResourceDidBeginLoading: -Objective-C/intfm/NSURLHandleClient/URLHandleResourceDidCancelLoading: -Objective-C/intfm/NSURLHandleClient/URLHandleResourceDidFinishLoading: -Objective-C/instm/NSURL/URLHandleUsingCache: -Objective-C/intfm/NSURLProtocolClient/URLProtocol:cachedResponseIsValid: -Objective-C/intfm/NSURLProtocolClient/URLProtocol:didCancelAuthenticationChallenge: -Objective-C/intfm/NSURLProtocolClient/URLProtocol:didFailWithError: -Objective-C/intfm/NSURLProtocolClient/URLProtocol:didLoadData: -Objective-C/intfm/NSURLProtocolClient/URLProtocol:didReceiveAuthenticationChallenge: -Objective-C/intfm/NSURLProtocolClient/URLProtocol:didReceiveResponse:cacheStoragePolicy: -Objective-C/intfm/NSURLProtocolClient/URLProtocol:wasRedirectedToRequest:redirectResponse: -Objective-C/intfm/NSURLProtocolClient/URLProtocolDidFinishLoading: -Objective-C/instm/NSOpenPanel/URLs -Objective-C/instm/NSFileManager/URLsForDirectory:inDomains: -Objective-C/instm/NSBundle/URLsForResourcesWithExtension:subdirectory: -Objective-C/clm/NSBundle/URLsForResourcesWithExtension:subdirectory:inBundleWithURL: -Objective-C/instm/NSBundle/URLsForResourcesWithExtension:subdirectory:localization: -Objective-C/instm/NSDocumentController/URLsFromRunningOpenPanel -Objective-C/instm/WebHistoryItem/URLString -Objective-C/clm/WebView/URLTitleFromPasteboard: -Objective-C/instm/IMAVManager/URLToShare -Objective-C/instm/DOMDocument/URLWithAttributeString: -Objective-C/clm/NSURL/URLWithString: -Objective-C/clm/NSURL/URLWithString:relativeToURL: -Objective-C/instm/NSScroller/usableParts -C/tdef/-/USBDeviceInformationBits -C/tag/-/USBDeviceSpeed -C/tdef/-/USBLowLatencyBufferType -C/macro/-/USBmakebmRequestType -C/tdef/-/USBPowerRequestTypes -C/tdef/-/USBReEnumerateOptions -C/tdef/-/USBStatus -C/macro/-/USBToHostWord -Objective-C/intfm/WebPolicyDecisionListener/use -C/func/-/use_default_colors -C/func/-/use_env -C/func/-/use_extended_names -C/func/-/use_legacy_coding -C/func/-/use_screen -C/func/-/use_window -Objective-C/instm/NSTextView/useAllLigatures: -C/macro/-/USEC_PER_SEC -Objective-C/intfm/NSURLAuthenticationChallengeSender/useCredential:forAuthenticationChallenge: -JavaScript/data/SVGSVGElement/useCurrentView -C/func/-/UseDictionary -Objective-C/instm/NSLayoutManager/usedRectForTextContainer: -Objective-C/clm/NSFont/useFont: -C/func/-/uselocale -JavaScript/data/HTMLImageElement/useMap -JavaScript/data/HTMLObjectElement/useMap -JavaScript/data/HTMLInputElement/useMap -C/func/-/UseMovieEditState -Objective-C/instm/NSWindow/useOptimizedDrawing: -JavaScript/instm/WebGLRenderingContext/useProgram -Objective-C/instm/NSURLCredential/user -C/tag/-/User -Objective-C/instm/NSURL/user -Objective-C/instp/CWWirelessProfile/user8021XProfile -JavaScript/data/Navigator/userAgent -JavaScript/data/WorkerNavigator/userAgent -Objective-C/instm/WebView/userAgentForURL: -C++/data/IOAudioEngine/userClients -C++/data/IOAudioControl/userClients -C/tdef/-/UserData -Objective-C/instm/NSEvent/userData -C/tag/-/UserDataRecord -Objective-C/instm/NSWorkspace/userDefaultsChanged -Objective-C/intfm/ApertureEditManager/userDefaultsObjectForKey: -Objective-C/instp/CW8021XProfile/userDefinedName -C/func/-/UseResFile -Objective-C/clm/NSFont/userFixedPitchFontOfSize: -Objective-C/clm/NSFont/userFontOfSize: -Objective-C/intfm/FxProgressAPI/userHasCancelled -Objective-C/clm/CBUserIdentity/userIdentityWithPosixUID:authority: -Objective-C/intfm/QCPlugInContext/userInfo -Objective-C/instm/NSNotification/userInfo -Objective-C/intfm/QCCompositionRenderer/userInfo -Objective-C/instm/NSCachedURLResponse/userInfo -Objective-C/instm/NSEntityMapping/userInfo -Objective-C/instm/NSPropertyMapping/userInfo -Objective-C/instm/NSMigrationManager/userInfo -Objective-C/instm/NSPropertyDescription/userInfo -Objective-C/instm/NSException/userInfo -Objective-C/instm/NSTimer/userInfo -Objective-C/instm/NSError/userInfo -Objective-C/instm/NSTrackingArea/userInfo -Objective-C/instm/NSEntityDescription/userInfo -Objective-C/instm/NSApplication/userInterfaceLayoutDirection -Objective-C/instm/NSCell/userInterfaceLayoutDirection -Objective-C/instm/NSMenuItem/userKeyEquivalent -Objective-C/instm/PDFAnnotation/userName -Objective-C/instp/CW8021XProfile/username -Objective-C/instm/XGTwoWayRandomAuthenticator/username -Objective-C/instm/NSSpellChecker/userPreferredLanguages -Objective-C/instm/NSSpellChecker/userQuotesArrayForLanguage: -Objective-C/instm/NSSpellChecker/userReplacementsDictionary -Objective-C/instm/IKSaveOptions/userSelection -Objective-C/instp/IKSaveOptions/userSelection -Objective-C/instm/NSScreen/userSpaceScaleFactor -Objective-C/instm/NSWindow/userSpaceScaleFactor -Objective-C/instm/WebPreferences/userStyleSheetEnabled -Objective-C/instm/WebPreferences/userStyleSheetLocation -Objective-C/instm/NSTableView/usesAlternatingRowBackgroundColors -Objective-C/instm/NSComboBox/usesDataSource -Objective-C/instm/NSComboBoxCell/usesDataSource -Objective-C/instm/CalRecurrenceEnd/usesEndDate -Objective-C/instp/CalRecurrenceEnd/usesEndDate -Objective-C/instm/NSImage/usesEPSOnResolutionMismatch -Objective-C/instm/NSSpeechSynthesizer/usesFeedbackWindow -Objective-C/instm/NSTextView/usesFindPanel -Objective-C/instm/NSATSTypesetter/usesFontLeading -Objective-C/instm/NSLayoutManager/usesFontLeading -Objective-C/instm/NSTypesetter/usesFontLeading -Objective-C/instm/NSTextView/usesFontPanel -Objective-C/instm/NSText/usesFontPanel -Objective-C/instm/NSNumberFormatter/usesGroupingSeparator -Objective-C/instm/NSPopUpButtonCell/usesItemFromMenu -Objective-C/instm/NSObjectController/usesLazyFetching -Objective-C/instm/WebPreferences/usesPageCache -C/func/-/UseSpeechDictionary -Objective-C/instm/NSTextView/usesRuler -Objective-C/instm/NSLayoutManager/usesScreenFonts -Objective-C/instm/NSNumberFormatter/usesSignificantDigits -Objective-C/instm/NSCell/usesSingleLineMode -Objective-C/instm/NSPointerFunctions/usesStrongWriteBarrier -Objective-C/instp/NSPointerFunctions/usesStrongWriteBarrier -Objective-C/instm/NSTextView/useStandardKerning: -Objective-C/instm/NSTextView/useStandardLigatures: -Objective-C/instm/NSProgressIndicator/usesThreadedAnimation -Objective-C/clm/NSObject/useStoredAccessor -Objective-C/clm/NSMenuItem/usesUserKeyEquivalents -Objective-C/instm/NSPointerFunctions/usesWeakReadAndWriteBarriers -Objective-C/instp/NSPointerFunctions/usesWeakReadAndWriteBarriers -C/func/-/UseTrackEditState -C/func/-/usleep -C/func/-/UTCreateStringForOSType -Objective-C/instm/NSString/UTF8String -C/func/-/UTGetOSTypeFromString -C/func/-/utime -C/func/-/utimes -C/func/-/utmpxname -C/func/-/UTTypeConformsTo -C/func/-/UTTypeCopyDeclaration -C/func/-/UTTypeCopyDeclaringBundleURL -C/func/-/UTTypeCopyDescription -C/func/-/UTTypeCopyPreferredTagWithClass -C/func/-/UTTypeCreateAllIdentifiersForTag -C/func/-/UTTypeCreatePreferredIdentifierForTag -C/func/-/UTTypeEqual -C/func/-/uuid -Objective-C/clm/IOBluetoothSDPUUID/uuid16: -Objective-C/clm/IOBluetoothSDPUUID/uuid32: -C/func/-/uuid_clear -C/tag/-/uuid_command -C/func/-/uuid_compare -C/func/-/uuid_copy -C/func/-/uuid_generate -C/func/-/uuid_generate_random -C/func/-/uuid_generate_time -C/func/-/uuid_is_null -C/func/-/uuid_parse -C/func/-/uuid_unparse -C/func/-/uuid_unparse_lower -C/func/-/uuid_unparse_upper -Objective-C/instm/CBIdentity/UUIDString -Objective-C/clm/IOBluetoothSDPUUID/uuidWithBytes:length: -Objective-C/clm/IOBluetoothSDPUUID/uuidWithData: -C/func/-/vA1024Shift -C/func/-/vA128Shift -C/func/-/vA256Shift -C/func/-/vA512Shift -C/func/-/vA64Shift -C/func/-/vA64Shift2 -C/func/-/va_arg -C/func/-/va_copy -C/func/-/va_end -C/func/-/va_start -C/func/-/vacosf -C/func/-/vacoshf -C/func/-/vadd -C/func/-/vaddD -JavaScript/data/ValidityState/valid -Objective-C/instm/NSToolbarItem/validate -C/func/-/Validate -JavaScript/clconst/WebGLRenderingContext/VALIDATE_STATUS -Objective-C/instm/NSXMLDocument/validateAndReturnError: -C++/instm/IOFramebuffer/validateDetailedTiming -Objective-C/instm/NSControl/validateEditing -Objective-C/instm/NSManagedObject/validateForDelete: -Objective-C/instm/NSManagedObject/validateForInsert: -Objective-C/instm/NSManagedObject/validateForUpdate: -C/tdef/-/ValidateImageProcPtr -Objective-C/instm/NSDocument/validateMenuItem: -Objective-C/instm/NSObject/validateMenuItem: -C++/instm/IOBlockStorageDriver/validateNewMedia -JavaScript/instm/WebGLRenderingContext/validateProgram -C/tdef/-/ValidateSpaceProcPtr -Objective-C/instm/NSObject/validateToolbarItem: -Objective-C/instm/NSObjectController/validateUserInterfaceItem: -Objective-C/instm/NSDocument/validateUserInterfaceItem: -Objective-C/instm/NSDocumentController/validateUserInterfaceItem: -Objective-C/intfm/NSUserInterfaceValidations/validateUserInterfaceItem: -C++/instm/IOAudioControl/validateValue -Objective-C/instm/NSObject/validateValue:forKey:error: -Objective-C/instm/NSManagedObject/validateValue:forKey:error: -Objective-C/instm/NSObject/validateValue:forKeyPath:error: -Objective-C/instm/NSSavePanel/validateVisibleColumns -Objective-C/instm/NSBrowser/validateVisibleColumns -Objective-C/instm/NSToolbar/validateVisibleItems -JavaScript/clconst/DOMCoreException/VALIDATION_ERR -JavaScript/data/HTMLInputElement/validationMessage -JavaScript/data/HTMLSelectElement/validationMessage -JavaScript/data/HTMLButtonElement/validationMessage -JavaScript/data/HTMLFieldSetElement/validationMessage -JavaScript/data/HTMLTextAreaElement/validationMessage -Objective-C/instm/NSPropertyDescription/validationPredicates -Objective-C/instm/NSPropertyDescription/validationWarnings -Objective-C/intfm/IMKTextInput/validAttributesForMarkedText -Objective-C/intfm/NSTextInput/validAttributesForMarkedText -Objective-C/intfm/NSTextInputClient/validAttributesForMarkedText -C/econst/-/validInstancesExist -JavaScript/data/HTMLSelectElement/validity -JavaScript/data/HTMLInputElement/validity -JavaScript/data/HTMLTextAreaElement/validity -JavaScript/data/HTMLFieldSetElement/validity -JavaScript/data/HTMLButtonElement/validity -JavaScript/cl/-/ValidityState -Objective-C/instm/NSObject/validModesForFontPanel: -Objective-C/instm/NSTextView/validRequestorForSendType:returnType: -Objective-C/instm/NSWindow/validRequestorForSendType:returnType: -Objective-C/instm/NSResponder/validRequestorForSendType:returnType: -Objective-C/instm/NSApplication/validRequestorForSendType:returnType: -JavaScript/data/HTMLTableRowElement/vAlign -JavaScript/data/HTMLTableColElement/vAlign -JavaScript/data/HTMLTableCellElement/vAlign -JavaScript/data/HTMLTableSectionElement/vAlign -C/func/-/valloc -Objective-C/instm/NSMetadataQueryResultGroup/value -Objective-C/instm/NSMetadataQueryAttributeValueTuple/value -Objective-C/instm/NSHTTPCookie/value -Objective-C/instm/NSObject/value -Objective-C/binding/NSButtonCell/value -Objective-C/binding/NSFormCell/value -Objective-C/binding/NSLevelIndicator/value -Objective-C/binding/NSComboBoxCell/value -Objective-C/binding/NSColorWell/value -Objective-C/binding/NSDatePicker/value -Objective-C/binding/NSBrowser/value -Objective-C/binding/NSButton/value -Objective-C/binding/NSMovieView/value -Objective-C/binding/NSMenuItem/value -Objective-C/binding/NSDatePickerCell/value -Objective-C/binding/NSComboBox/value -Objective-C/binding/NSImageCell/value -Objective-C/binding/NSImageView/value -Objective-C/binding/NSLevelIndicatorCell/value -Objective-C/binding/NSPathControl/value -Objective-C/binding/NSTextView/value -Objective-C/binding/NSTokenFieldCell/value -Objective-C/binding/NSSecureTextField/value -Objective-C/binding/NSTableColumn/value -Objective-C/binding/NSTextField/value -Objective-C/binding/NSPathCell/value -Objective-C/binding/NSStepper/value -Objective-C/binding/NSSecureTextFieldCell/value -Objective-C/binding/NSSliderCell/value -Objective-C/binding/NSTokenField/value -Objective-C/binding/NSPredicateEditor/value -Objective-C/binding/NSSlider/value -Objective-C/binding/NSStepperCell/value -Objective-C/binding/NSTextFieldCell/value -Objective-C/binding/NSProgressIndicator/value -Objective-C/binding/NSSearchField/value -JavaScript/data/Attr/value -JavaScript/data/HTMLProgressElement/value -JavaScript/data/HTMLInputElement/value -JavaScript/data/HTMLButtonElement/value -JavaScript/data/HTMLMeterElement/value -JavaScript/data/HTMLSelectElement/value -JavaScript/data/HTMLParamElement/value -JavaScript/data/HTMLLIElement/value -JavaScript/data/HTMLOptionElement/value -JavaScript/data/HTMLTextAreaElement/value -JavaScript/data/SVGLength/value -JavaScript/data/SVGNumber/value -JavaScript/data/SVGAngle/value -Objective-C/clm/NSValue/value:withObjCType: -JavaScript/data/HTMLInputElement/valueAsDate -JavaScript/data/HTMLInputElement/valueAsNumber -JavaScript/data/SVGAngle/valueAsString -JavaScript/data/SVGLength/valueAsString -Objective-C/instm/CIVector/valueAtIndex: -Objective-C/instm/ABMultiValue/valueAtIndex: -Objective-C/instm/NSObject/valueAtIndex:inPropertyWithKey: -Objective-C/instm/NSObject/valueClassForBinding: -Objective-C/instm/NSPropertyMapping/valueExpression -Objective-C/instm/NSMetadataItem/valueForAttribute: -Objective-C/instm/NSTextBlock/valueForDimension: -Objective-C/instm/NSURLRequest/valueForHTTPHeaderField: -Objective-C/instm/ABMultiValue/valueForIdentifier: -Objective-C/instm/QCPlugIn/valueForInputKey: -Objective-C/intfm/QCCompositionRenderer/valueForInputKey: -Objective-C/instm/NSAtomicStoreCacheNode/valueForKey: -Objective-C/instm/NSSet/valueForKey: -Objective-C/instm/NSDictionary/valueForKey: -Objective-C/instm/NSObject/valueForKey: -Objective-C/clm/CATransaction/valueForKey: -Objective-C/instm/NSArray/valueForKey: -Objective-C/instm/NSManagedObject/valueForKey: -Objective-C/instm/NSObject/valueForKeyPath: -Objective-C/intfm/QCCompositionRenderer/valueForOutputKey: -Objective-C/intfm/QCCompositionRenderer/valueForOutputKey:ofType: -Objective-C/instm/ABRecord/valueForProperty: -Objective-C/instm/NSBitmapImageRep/valueForProperty: -Objective-C/intfm/IMKStateSetting/valueForTag:client: -Objective-C/instm/NSObject/valueForUndefinedKey: -Objective-C/instm/AMWorkflow/valueForVariableWithName: -Objective-C/instp/CAPropertyAnimation/valueFunction -Objective-C/instm/CAPropertyAnimation/valueFunction -JavaScript/data/SVGAngle/valueInSpecifiedUnits -JavaScript/data/SVGLength/valueInSpecifiedUnits -Objective-C/instm/NSMetadataQuery/valueListAttributes -Objective-C/instm/NSMetadataQuery/valueLists -JavaScript/data/ValidityState/valueMissing -JavaScript/instm/window/valueOf -Objective-C/instm/NSMetadataQuery/valueOfAttribute:forResultAtIndex: -Objective-C/binding/NSImageCell/valuePath -Objective-C/binding/NSImageView/valuePath -Objective-C/binding/NSMovieView/valuePath -Objective-C/binding/NSTextView/valuePath -Objective-C/instm/NSMapTable/valuePointerFunctions -Objective-C/instm/NSUserDefaultsController/values -Objective-C/instp/CAKeyframeAnimation/values -Objective-C/instm/CAKeyframeAnimation/values -JavaScript/data/SVGFEColorMatrixElement/values -Objective-C/instp/ABPeoplePickerView/valueSelectionBehavior -Objective-C/instm/ABPeoplePickerView/valueSelectionBehavior -Objective-C/instm/ODRecord/valuesForAttribute:error: -Objective-C/instm/NSMetadataItem/valuesForAttributes: -Objective-C/instm/NSObject/valuesForKeys: -Objective-C/clm/NSValueTransformer/valueTransformerForName: -Objective-C/instm/NSAttributeDescription/valueTransformerName -Objective-C/clm/NSValueTransformer/valueTransformerNames -JavaScript/data/HTMLParamElement/valueType -Objective-C/instm/NSTextBlock/valueTypeForDimension: -Objective-C/binding/NSMovieView/valueURL -Objective-C/binding/NSImageView/valueURL -Objective-C/binding/NSImageCell/valueURL -Objective-C/binding/NSTextView/valueURL -Objective-C/clm/NSValue/valueWithBytes:objCType: -Objective-C/clm/NSValue/valueWithCATransform3D: -Objective-C/instm/NSObject/valueWithName:inPropertyWithKey: -Objective-C/clm/NSValue/valueWithNonretainedObject: -Objective-C/clm/NSValue/valueWithPoint: -Objective-C/clm/NSValue/valueWithPointer: -Objective-C/clm/NSValue/valueWithQTTime: -Objective-C/clm/NSValue/valueWithQTTimeRange: -Objective-C/clm/NSValue/valueWithRange: -Objective-C/clm/NSValue/valueWithRect: -Objective-C/clm/NSValue/valueWithSize: -Objective-C/clm/NSValue/valueWithSMPTETime: -Objective-C/instm/NSObject/valueWithUniqueID:inPropertyWithKey: -Objective-C/instm/NSStepper/valueWraps -Objective-C/instm/NSStepperCell/valueWraps -C/func/-/vam -C/func/-/vamD -Objective-C/instm/NSExpression/variable -C/tag/-/variable_list -JavaScript/data/CSSVariablesRule/variables -JavaScript/clconst/CSSRule/VARIABLES_RULE -Objective-C/intfm/FxBaseEffect/variesOverTime -C/func/-/vasinf -C/func/-/vasinhf -C/func/-/vasprintf -C/func/-/vasprintf_l -C/func/-/vatan2f -C/func/-/vatanf -C/func/-/vatanhf -C/tdef/-/vBool32 -Objective-C/instm/ABPerson/vCardRepresentation -C/tdef/-/VCB -C/func/-/vceilf -C/func/-/vclassifyf -C/func/-/vcopysignf -C/func/-/vcosf -C/func/-/vcoshf -C/func/-/vcount -C/func/-/VDAddKeyColor -C/func/-/VDCaptureStateChanging -C/func/-/VDClearClipRgn -C/func/-/VDCompressDone -C/tdef/-/VDCompressionListHandle -C/tdef/-/VDCompressionListPtr -C/func/-/VDCompressOneFrameAsync -C/func/-/VDDone -C/tag/-/VDGammaRecord -C/tdef/-/VDGamRecPtr -C/func/-/VDGetActiveSrcRect -C/func/-/VDGetBlackLevelValue -C/func/-/VDGetBrightness -C/func/-/VDGetClipState -C/func/-/VDGetCLUTInUse -C/func/-/VDGetCompressionTime -C/func/-/VDGetCompressionTypes -C/func/-/VDGetContrast -C/func/-/VDGetCurrentFlags -C/func/-/VDGetDataRate -C/func/-/VDGetDeviceNameAndFlags -C/func/-/VDGetDigitizerInfo -C/func/-/VDGetDigitizerRect -C/func/-/VDGetDMADepths -C/func/-/VDGetFieldPreference -C/func/-/VDGetHue -C/func/-/VDGetImageDescription -C/func/-/VDGetInput -C/func/-/VDGetInputColorSpaceMode -C/func/-/VDGetInputFormat -C/func/-/VDGetInputGammaRecord -C/func/-/VDGetInputGammaValue -C/func/-/VDGetInputName -C/func/-/VDGetKeyColor -C/func/-/VDGetKeyColorRange -C/func/-/VDGetMaskandValue -C/func/-/VDGetMaskPixMap -C/func/-/VDGetMaxAuxBuffer -C/func/-/VDGetMaxSrcRect -C/func/-/VDGetNextKeyColor -C/func/-/VDGetNumberOfInputs -C/func/-/VDGetPlayThruDestination -C/func/-/VDGetPLLFilterType -C/func/-/VDGetPreferredImageDimensions -C/func/-/VDGetPreferredTimeScale -C/func/-/VDGetSaturation -C/func/-/VDGetSharpness -C/func/-/VDGetSoundInputDriver -C/func/-/VDGetSoundInputSource -C/func/-/VDGetTimeCode -C/func/-/VDGetUniqueIDs -C/func/-/VDGetVBlankRect -C/func/-/VDGetVideoDefaults -C/func/-/VDGetWhiteLevelValue -C/func/-/VDGrabOneFrame -C/func/-/VDGrabOneFrameAsync -C/tdef/-/VdigBufferRecListHandle -C/tdef/-/VdigBufferRecListPtr -C/tdef/-/VdigIntProc -C/tdef/-/VdigIntUPP -C/func/-/VDIIDCGetCSRData -C/func/-/VDIIDCGetDefaultFeatures -C/func/-/VDIIDCGetFeatures -C/func/-/VDIIDCGetFeaturesForSpecifier -C/func/-/VDIIDCSetCSRData -C/func/-/VDIIDCSetFeatures -C/func/-/vdivf -C/func/-/VDPreflightDestination -C/func/-/VDPreflightGlobalRect -C/func/-/VDReleaseAsyncBuffers -C/func/-/VDReleaseCompressBuffer -C/func/-/VDResetCompressSequence -C/func/-/VDSelectUniqueIDs -C/func/-/VDSetBlackLevelValue -C/func/-/VDSetBrightness -C/func/-/VDSetClipRgn -C/func/-/VDSetClipState -C/func/-/VDSetCompression -C/func/-/VDSetCompressionOnOff -C/func/-/VDSetContrast -C/func/-/VDSetDataRate -C/func/-/VDSetDestinationPort -C/func/-/VDSetDigitizerRect -C/func/-/VDSetDigitizerUserInterrupt -C/func/-/VDSetFieldPreference -C/func/-/VDSetFrameRate -C/func/-/VDSetHue -C/func/-/VDSetInput -C/func/-/VDSetInputColorSpaceMode -C/func/-/VDSetInputGammaRecord -C/func/-/VDSetInputGammaValue -C/func/-/VDSetInputStandard -C/func/-/VDSetKeyColor -C/func/-/VDSetKeyColorRange -C/func/-/VDSetMasterBlendLevel -C/func/-/VDSetPlayThruDestination -C/func/-/VDSetPlayThruGlobalRect -C/func/-/VDSetPlayThruOnOff -C/func/-/VDSetPLLFilterType -C/func/-/VDSetPreferredImageDimensions -C/func/-/VDSetPreferredPacketSize -C/func/-/VDSetSaturation -C/func/-/VDSetSharpness -C/func/-/VDSetTimeBase -C/func/-/VDSetupBuffers -C/func/-/VDSetWhiteLevelValue -C/func/-/vDSP_blkman_window -C/func/-/vDSP_blkman_windowD -C/func/-/vDSP_conv -C/func/-/vDSP_convD -C/func/-/vDSP_create_fftsetup -C/func/-/vDSP_create_fftsetupD -C/func/-/vDSP_ctoz -C/func/-/vDSP_ctozD -C/func/-/vDSP_deq22 -C/func/-/vDSP_deq22D -C/func/-/vDSP_desamp -C/func/-/vDSP_desampD -C/func/-/vDSP_destroy_fftsetup -C/func/-/vDSP_destroy_fftsetupD -C/func/-/vDSP_DFT_zrop -C/func/-/vDSP_dotpr -C/func/-/vDSP_dotprD -C/func/-/vDSP_f3x3 -C/func/-/vDSP_f3x3D -C/func/-/vDSP_f5x5 -C/func/-/vDSP_f5x5D -C/func/-/vDSP_fft2d_zip -C/func/-/vDSP_fft2d_zipD -C/func/-/vDSP_fft2d_zipt -C/func/-/vDSP_fft2d_ziptD -C/func/-/vDSP_fft2d_zop -C/func/-/vDSP_fft2d_zopD -C/func/-/vDSP_fft2d_zopt -C/func/-/vDSP_fft2d_zoptD -C/func/-/vDSP_fft2d_zrip -C/func/-/vDSP_fft2d_zripD -C/func/-/vDSP_fft2d_zript -C/func/-/vDSP_fft2d_zriptD -C/func/-/vDSP_fft2d_zrop -C/func/-/vDSP_fft2d_zropD -C/func/-/vDSP_fft2d_zropt -C/func/-/vDSP_fft2d_zroptD -C/func/-/vDSP_fft3_zop -C/func/-/vDSP_fft3_zopD -C/func/-/vDSP_fft5_zop -C/func/-/vDSP_fft5_zopD -C/func/-/vDSP_fft_zip -C/func/-/vDSP_fft_zipD -C/func/-/vDSP_fft_zipt -C/func/-/vDSP_fft_ziptD -C/func/-/vDSP_fft_zop -C/func/-/vDSP_fft_zopD -C/func/-/vDSP_fft_zopt -C/func/-/vDSP_fft_zoptD -C/func/-/vDSP_fft_zrip -C/func/-/vDSP_fft_zripD -C/func/-/vDSP_fft_zript -C/func/-/vDSP_fft_zriptD -C/func/-/vDSP_fft_zrop -C/func/-/vDSP_fft_zropD -C/func/-/vDSP_fft_zropt -C/func/-/vDSP_fft_zroptD -C/func/-/vDSP_fftm_zip -C/func/-/vDSP_fftm_zipD -C/func/-/vDSP_fftm_zipt -C/func/-/vDSP_fftm_ziptD -C/func/-/vDSP_fftm_zop -C/func/-/vDSP_fftm_zopD -C/func/-/vDSP_fftm_zopt -C/func/-/vDSP_fftm_zoptD -C/func/-/vDSP_fftm_zrip -C/func/-/vDSP_fftm_zripD -C/func/-/vDSP_fftm_zript -C/func/-/vDSP_fftm_zriptD -C/func/-/vDSP_fftm_zrop -C/func/-/vDSP_fftm_zropD -C/func/-/vDSP_fftm_zropt -C/func/-/vDSP_fftm_zroptD -C/econst/-/vDSP_HALF_WINDOW -C/func/-/vDSP_hamm_window -C/func/-/vDSP_hamm_windowD -C/econst/-/vDSP_HANN_DENORM -C/econst/-/vDSP_HANN_NORM -C/func/-/vDSP_hann_window -C/func/-/vDSP_hann_windowD -C/func/-/vDSP_imgfir -C/func/-/vDSP_imgfirD -C/tdef/-/vDSP_Length -C/func/-/vDSP_maxmgv -C/func/-/vDSP_maxmgvD -C/func/-/vDSP_maxmgvi -C/func/-/vDSP_maxmgviD -C/func/-/vDSP_maxv -C/func/-/vDSP_maxvD -C/func/-/vDSP_maxvi -C/func/-/vDSP_maxviD -C/func/-/vDSP_meamgv -C/func/-/vDSP_meamgvD -C/func/-/vDSP_meanv -C/func/-/vDSP_meanvD -C/func/-/vDSP_measqv -C/func/-/vDSP_measqvD -C/func/-/vDSP_minmgv -C/func/-/vDSP_minmgvD -C/func/-/vDSP_minmgvi -C/func/-/vDSP_minmgviD -C/func/-/vDSP_minv -C/func/-/vDSP_minvD -C/func/-/vDSP_minvi -C/func/-/vDSP_minviD -C/func/-/vDSP_mmov -C/func/-/vDSP_mmovD -C/func/-/vDSP_mmul -C/func/-/vDSP_mmulD -C/func/-/vDSP_mtrans -C/func/-/vDSP_mtransD -C/func/-/vDSP_mvessq -C/func/-/vDSP_mvessqD -C/func/-/vDSP_nzcros -C/func/-/vDSP_nzcrosD -C/func/-/vDSP_polar -C/func/-/vDSP_polarD -C/func/-/vDSP_rect -C/func/-/vDSP_rectD -C/func/-/vDSP_rmsqv -C/func/-/vDSP_rmsqvD -C/tdef/-/vDSP_Stride -C/func/-/vDSP_svdiv -C/func/-/vDSP_svdivD -C/func/-/vDSP_sve -C/func/-/vDSP_sveD -C/func/-/vDSP_svemg -C/func/-/vDSP_svemgD -C/func/-/vDSP_svesq -C/func/-/vDSP_svesqD -C/func/-/vDSP_svs -C/func/-/vDSP_svsD -C/func/-/vDSP_vaam -C/func/-/vDSP_vaamD -C/func/-/vDSP_vabs -C/func/-/vDSP_vabsD -C/func/-/vDSP_vabsi -C/func/-/vDSP_vadd -C/func/-/vDSP_vaddD -C/func/-/vDSP_vam -C/func/-/vDSP_vamD -C/func/-/vDSP_vasbm -C/func/-/vDSP_vasbmD -C/func/-/vDSP_vasm -C/func/-/vDSP_vasmD -C/func/-/vDSP_vavlin -C/func/-/vDSP_vavlinD -C/func/-/vDSP_vclip -C/func/-/vDSP_vclipc -C/func/-/vDSP_vclipcD -C/func/-/vDSP_vclipD -C/func/-/vDSP_vclr -C/func/-/vDSP_vclrD -C/func/-/vDSP_vcmprs -C/func/-/vDSP_vcmprsD -C/func/-/vDSP_vdbcon -C/func/-/vDSP_vdbconD -C/func/-/vDSP_vdist -C/func/-/vDSP_vdistD -C/func/-/vDSP_vdiv -C/func/-/vDSP_vdivD -C/func/-/vDSP_vdivi -C/func/-/vDSP_vdpsp -C/func/-/vDSP_venvlp -C/func/-/vDSP_venvlpD -C/func/-/vDSP_veqvi -C/macro/-/vDSP_Version0 -C/macro/-/vDSP_Version1 -C/func/-/vDSP_vfill -C/func/-/vDSP_vfillD -C/func/-/vDSP_vfilli -C/func/-/vDSP_vfix16 -C/func/-/vDSP_vfix16D -C/func/-/vDSP_vfix32 -C/func/-/vDSP_vfix32D -C/func/-/vDSP_vfix8 -C/func/-/vDSP_vfix8D -C/func/-/vDSP_vfixr16 -C/func/-/vDSP_vfixr16D -C/func/-/vDSP_vfixr32 -C/func/-/vDSP_vfixr32D -C/func/-/vDSP_vfixr8 -C/func/-/vDSP_vfixr8D -C/func/-/vDSP_vfixru16 -C/func/-/vDSP_vfixru16D -C/func/-/vDSP_vfixru32 -C/func/-/vDSP_vfixru32D -C/func/-/vDSP_vfixru8 -C/func/-/vDSP_vfixru8D -C/func/-/vDSP_vfixu16 -C/func/-/vDSP_vfixu16D -C/func/-/vDSP_vfixu32 -C/func/-/vDSP_vfixu32D -C/func/-/vDSP_vfixu8 -C/func/-/vDSP_vfixu8D -C/func/-/vDSP_vflt16 -C/func/-/vDSP_vflt16D -C/func/-/vDSP_vflt32 -C/func/-/vDSP_vflt32D -C/func/-/vDSP_vflt8 -C/func/-/vDSP_vflt8D -C/func/-/vDSP_vfltu16 -C/func/-/vDSP_vfltu16D -C/func/-/vDSP_vfltu32 -C/func/-/vDSP_vfltu32D -C/func/-/vDSP_vfltu8 -C/func/-/vDSP_vfltu8D -C/func/-/vDSP_vfrac -C/func/-/vDSP_vfracD -C/func/-/vDSP_vgathr -C/func/-/vDSP_vgathra -C/func/-/vDSP_vgathraD -C/func/-/vDSP_vgathrD -C/func/-/vDSP_vgen -C/func/-/vDSP_vgenD -C/func/-/vDSP_vgenp -C/func/-/vDSP_vgenpD -C/func/-/vDSP_viclip -C/func/-/vDSP_viclipD -C/func/-/vDSP_vindex -C/func/-/vDSP_vindexD -C/func/-/vDSP_vintb -C/func/-/vDSP_vintbD -C/func/-/vDSP_vlim -C/func/-/vDSP_vlimD -C/func/-/vDSP_vlint -C/func/-/vDSP_vlintD -C/func/-/vDSP_vma -C/func/-/vDSP_vmaD -C/func/-/vDSP_vmax -C/func/-/vDSP_vmaxD -C/func/-/vDSP_vmaxmg -C/func/-/vDSP_vmaxmgD -C/func/-/vDSP_vmin -C/func/-/vDSP_vminD -C/func/-/vDSP_vminmg -C/func/-/vDSP_vminmgD -C/func/-/vDSP_vmma -C/func/-/vDSP_vmmaD -C/func/-/vDSP_vmmsb -C/func/-/vDSP_vmmsbD -C/func/-/vDSP_vmsa -C/func/-/vDSP_vmsaD -C/func/-/vDSP_vmsb -C/func/-/vDSP_vmsbD -C/func/-/vDSP_vmul -C/func/-/vDSP_vmulD -C/func/-/vDSP_vnabs -C/func/-/vDSP_vnabsD -C/func/-/vDSP_vneg -C/func/-/vDSP_vnegD -C/func/-/vDSP_vpoly -C/func/-/vDSP_vpolyD -C/func/-/vDSP_vpythg -C/func/-/vDSP_vpythgD -C/func/-/vDSP_vqint -C/func/-/vDSP_vqintD -C/func/-/vDSP_vramp -C/func/-/vDSP_vrampD -C/func/-/vDSP_vrsum -C/func/-/vDSP_vrsumD -C/func/-/vDSP_vrvrs -C/func/-/vDSP_vrvrsD -C/func/-/vDSP_vsadd -C/func/-/vDSP_vsaddD -C/func/-/vDSP_vsaddi -C/func/-/vDSP_vsbm -C/func/-/vDSP_vsbmD -C/func/-/vDSP_vsbsbm -C/func/-/vDSP_vsbsbmD -C/func/-/vDSP_vsbsm -C/func/-/vDSP_vsbsmD -C/func/-/vDSP_vsdiv -C/func/-/vDSP_vsdivD -C/func/-/vDSP_vsdivi -C/func/-/vDSP_vsimps -C/func/-/vDSP_vsimpsD -C/func/-/vDSP_vsma -C/func/-/vDSP_vsmaD -C/func/-/vDSP_vsmsa -C/func/-/vDSP_vsmsaD -C/func/-/vDSP_vsmsb -C/func/-/vDSP_vsmsbD -C/func/-/vDSP_vsmul -C/func/-/vDSP_vsmulD -C/func/-/vDSP_vsort -C/func/-/vDSP_vsortD -C/func/-/vDSP_vsorti -C/func/-/vDSP_vsortiD -C/func/-/vDSP_vspdp -C/func/-/vDSP_vsq -C/func/-/vDSP_vsqD -C/func/-/vDSP_vssq -C/func/-/vDSP_vssqD -C/func/-/vDSP_vsub -C/func/-/vDSP_vsubD -C/func/-/vDSP_vswap -C/func/-/vDSP_vswapD -C/func/-/vDSP_vswsum -C/func/-/vDSP_vswsumD -C/func/-/vDSP_vtabi -C/func/-/vDSP_vtabiD -C/func/-/vDSP_vthr -C/func/-/vDSP_vthrD -C/func/-/vDSP_vthres -C/func/-/vDSP_vthresD -C/func/-/vDSP_vthrsc -C/func/-/vDSP_vthrscD -C/func/-/vDSP_vtmerg -C/func/-/vDSP_vtmergD -C/func/-/vDSP_vtrapz -C/func/-/vDSP_vtrapzD -C/func/-/vDSP_wiener -C/func/-/vDSP_wienerD -C/func/-/vDSP_zaspec -C/func/-/vDSP_zaspecD -C/func/-/vDSP_zcoher -C/func/-/vDSP_zcoherD -C/func/-/vDSP_zconv -C/func/-/vDSP_zconvD -C/func/-/vDSP_zcspec -C/func/-/vDSP_zcspecD -C/func/-/vDSP_zdotpr -C/func/-/vDSP_zdotprD -C/func/-/vDSP_zidotpr -C/func/-/vDSP_zidotprD -C/func/-/vDSP_zmma -C/func/-/vDSP_zmmaD -C/func/-/vDSP_zmms -C/func/-/vDSP_zmmsD -C/func/-/vDSP_zmmul -C/func/-/vDSP_zmmulD -C/func/-/vDSP_zmsm -C/func/-/vDSP_zmsmD -C/func/-/vDSP_zrdesamp -C/func/-/vDSP_zrdesampD -C/func/-/vDSP_zrdotpr -C/func/-/vDSP_zrdotprD -C/func/-/vDSP_zrvadd -C/func/-/vDSP_zrvaddD -C/func/-/vDSP_zrvdiv -C/func/-/vDSP_zrvdivD -C/func/-/vDSP_zrvmul -C/func/-/vDSP_zrvmulD -C/func/-/vDSP_zrvsub -C/func/-/vDSP_zrvsubD -C/func/-/vDSP_ztoc -C/func/-/vDSP_ztocD -C/func/-/vDSP_ztrans -C/func/-/vDSP_ztransD -C/func/-/vDSP_zvabs -C/func/-/vDSP_zvabsD -C/func/-/vDSP_zvadd -C/func/-/vDSP_zvaddD -C/func/-/vDSP_zvcma -C/func/-/vDSP_zvcmaD -C/func/-/vDSP_zvcmul -C/func/-/vDSP_zvcmulD -C/func/-/vDSP_zvconj -C/func/-/vDSP_zvconjD -C/func/-/vDSP_zvdiv -C/func/-/vDSP_zvdivD -C/func/-/vDSP_zvfill -C/func/-/vDSP_zvfillD -C/func/-/vDSP_zvmags -C/func/-/vDSP_zvmagsD -C/func/-/vDSP_zvmgsa -C/func/-/vDSP_zvmgsaD -C/func/-/vDSP_zvmov -C/func/-/vDSP_zvmovD -C/func/-/vDSP_zvmul -C/func/-/vDSP_zvmulD -C/func/-/vDSP_zvneg -C/func/-/vDSP_zvnegD -C/func/-/vDSP_zvphas -C/func/-/vDSP_zvphasD -C/func/-/vDSP_zvsma -C/func/-/vDSP_zvsmaD -C/func/-/vDSP_zvsub -C/func/-/vDSP_zvsubD -C/func/-/vDSP_zvzsml -C/func/-/vDSP_zvzsmlD -C/econst/-/vdTypeAlpha -C/econst/-/vdTypeBasic -C/econst/-/vdTypeMask -C/func/-/VDUseSafeBuffers -C/func/-/VDUseThisCLUT -Objective-C/clm/CIVector/vectorWithString: -Objective-C/clm/CIVector/vectorWithValues:count: -Objective-C/clm/CIVector/vectorWithX: -Objective-C/clm/CIVector/vectorWithX:Y: -Objective-C/clm/CIVector/vectorWithX:Y:Z: -Objective-C/clm/CIVector/vectorWithX:Y:Z:W: -Objective-C/instp/CAEmitterCell/velocity -Objective-C/instm/CAEmitterCell/velocity -Objective-C/instp/CAEmitterLayer/velocity -Objective-C/instm/CAEmitterLayer/velocity -Objective-C/instp/CAEmitterCell/velocityRange -Objective-C/instm/CAEmitterCell/velocityRange -JavaScript/data/Navigator/vendor -JavaScript/clconst/WebGLRenderingContext/VENDOR -Objective-C/instm/NSEvent/vendorDefined -Objective-C/instm/NSEvent/vendorID -Objective-C/instm/NSEvent/vendorPointingDeviceType -C/func/-/VendorRelease -JavaScript/data/Navigator/vendorSub -Objective-C/instm/DRBurnProgressPanel/verboseProgressStatus -C/econst/-/verChina -C/econst/-/verFarEastGeneric -C/econst/-/verGreece -C/econst/-/verGreecePoly -C/func/-/verify_callback -Objective-C/instm/DRBurnSetupPanel/verifyBurn: -Objective-C/intfm/DRTrackDataProduction/verifyDataForTrack:inBuffer:length:atAddress:blockSize:ioFlags: -Objective-C/instm/DRBurn(PropertyConvenienceMethods)/verifyDisc -Objective-C/instm/ODRecord/verifyExtendedWithAuthenticationType:authenticationItems:continueItems:context:error: -Objective-C/instm/ODRecord/verifyPassword:error: -Objective-C/intfm/DRTrackDataProduction/verifyPreGapForTrack:inBuffer:length:atAddress:blockSize:ioFlags: -C/econst/-/verInternational -C/econst/-/verIreland -C/econst/-/verIrishGaelicScript -C/econst/-/verMultilingual -C/func/-/verr -C/func/-/verrc -C/func/-/verrx -C/econst/-/verScriptGeneric -Objective-C/instm/NSXMLDocument/version -JavaScript/instp/Application/version -Objective-C/instm/NSHTTPCookie/version -C/tdef/-/version -C/data/IOFireWireReadQuadletCommandInterface/version -C/data/IOFireWireCompareSwapCommandInterface_v3/version -C/data/IOFireWireConfigDirectoryInterface/version -C/data/IOFireWireLocalUnitDirectoryInterface/version -C/data/IOFireWireIsochPortInterface/version -C/data/IOFireWireWriteQuadletCommandInterface/version -C/data/IOFireWireDeviceInterface/version -C/data/IOFireWireLocalIsochPortInterface/version -C/data/IOFireWireLibVectorCommandInterface/version -C/data/IOFireWireNuDCLPoolInterface/version -C/data/IOFireWireRemoteIsochPortInterface/version -C/data/IOFireWirePHYCommandInterface/version -C/data/IOFWAsyncStreamListenerInterface/version -C/data/IOFireWireWriteCommandInterface/version -C/data/IOFireWireCommandInterface/version -C/data/IOFireWirePhysicalAddressSpaceInterface/version -C/data/IOFireWireLibPHYPacketListenerInterface/version -C/data/IOFireWirePseudoAddressSpaceInterface/version -C/data/IOFireWireDCLCommandPoolInterface/version -C/data/IOFireWireReadCommandInterface/version -C/data/IOFireWireCompareSwapCommandInterface/version -C/data/IOFireWireAsyncStreamCommandInterface/version -C/data/IOFireWireIsochChannelInterface/version -C/data/MMCDeviceInterface/version -C/data/SCSITaskDeviceInterface/version -C/data/SCSITaskInterface/version -Objective-C/clm/NSObject/version -JavaScript/data/Database/version -JavaScript/data/DatabaseSync/version -JavaScript/data/HTMLHtmlElement/version -JavaScript/clconst/WebGLRenderingContext/VERSION -Objective-C/intfm/FxVersioningAPI/versionAtCreation -Objective-C/instm/NSCoder/versionForClassName: -Objective-C/instm/NSAttributeDescription/versionHash -Objective-C/instm/NSRelationshipDescription/versionHash -Objective-C/instm/NSPropertyDescription/versionHash -Objective-C/instm/NSEntityDescription/versionHash -Objective-C/instm/NSPropertyDescription/versionHashModifier -Objective-C/instm/NSEntityDescription/versionHashModifier -Objective-C/instm/NSManagedObjectModel/versionIdentifiers -C/econst/-/verSpain -C/econst/-/verSpLatinAmerica -C/econst/-/verTaiwan -JavaScript/clconst/WebGLRenderingContext/VERTEX_ATTRIB_ARRAY_BUFFER_BINDING -JavaScript/clconst/WebGLRenderingContext/VERTEX_ATTRIB_ARRAY_ENABLED -JavaScript/clconst/WebGLRenderingContext/VERTEX_ATTRIB_ARRAY_NORMALIZED -JavaScript/clconst/WebGLRenderingContext/VERTEX_ATTRIB_ARRAY_POINTER -JavaScript/clconst/WebGLRenderingContext/VERTEX_ATTRIB_ARRAY_SIZE -JavaScript/clconst/WebGLRenderingContext/VERTEX_ATTRIB_ARRAY_STRIDE -JavaScript/clconst/WebGLRenderingContext/VERTEX_ATTRIB_ARRAY_TYPE -JavaScript/clconst/WebGLRenderingContext/VERTEX_SHADER -JavaScript/instm/WebGLRenderingContext/vertexAttrib1f -JavaScript/instm/WebGLRenderingContext/vertexAttrib1fv -JavaScript/instm/WebGLRenderingContext/vertexAttrib2f -JavaScript/instm/WebGLRenderingContext/vertexAttrib2fv -JavaScript/instm/WebGLRenderingContext/vertexAttrib3f -JavaScript/instm/WebGLRenderingContext/vertexAttrib3fv -JavaScript/instm/WebGLRenderingContext/vertexAttrib4f -JavaScript/instm/WebGLRenderingContext/vertexAttrib4fv -JavaScript/instm/WebGLRenderingContext/vertexAttribPointer -JavaScript/clconst/OverflowEvent/VERTICAL -Objective-C/instp/CLLocation/verticalAccuracy -Objective-C/instm/CLLocation/verticalAccuracy -Objective-C/instm/NSTextBlock/verticalAlignment -Objective-C/instm/PDFBorder/verticalCornerRadius -Objective-C/instm/NSScrollView/verticalLineScroll -Objective-C/instm/NSTableView/verticalMotionCanBeginDrag -JavaScript/data/OverflowEvent/verticalOverflow -Objective-C/instm/NSScrollView/verticalPageScroll -Objective-C/instm/NSPrintInfo/verticalPagination -Objective-C/instm/NSScrollView/verticalRulerView -Objective-C/instm/NSScrollView/verticalScroller -Objective-C/instm/NSDateFormatter/veryShortMonthSymbols -Objective-C/instm/NSDateFormatter/veryShortStandaloneMonthSymbols -Objective-C/instm/NSDateFormatter/veryShortStandaloneWeekdaySymbols -Objective-C/instm/NSDateFormatter/veryShortWeekdaySymbols -C/func/-/vexpf -C/func/-/vexpm1f -C/func/-/vfabf -C/tdef/-/vFloat -C/func/-/vfloorf -C/func/-/vflush -C/func/-/vfmodf -C/func/-/vfork -C/func/-/vfprintf -C/func/-/vfprintf_l -C/func/-/vfs_64bitready -C/func/-/vfs_addname -C/func/-/vfs_authcache_ttl -C/func/-/vfs_authopaque -C/func/-/vfs_authopaqueaccess -C/func/-/vfs_busy -C/func/-/vfs_clearauthcache_ttl -C/func/-/vfs_clearauthopaque -C/func/-/vfs_clearauthopaqueaccess -C/func/-/vfs_clearextendedsecurity -C/func/-/vfs_clearflags -C/func/-/vfs_context_create -C/func/-/vfs_context_current -C/func/-/vfs_context_is64bit -C/func/-/vfs_context_issignal -C/func/-/vfs_context_pid -C/func/-/vfs_context_proc -C/func/-/vfs_context_rele -C/func/-/vfs_context_suser -C/func/-/vfs_context_ucred -C/func/-/vfs_devblocksize -C/func/-/vfs_event_init -C/func/-/vfs_event_signal -C/func/-/vfs_fhtovp -C/func/-/vfs_flags -C/func/-/vfs_fsadd -C/func/-/vfs_fsprivate -C/func/-/vfs_fsremove -C/func/-/vfs_getattr -C/func/-/vfs_getnewfsid -C/func/-/vfs_getvfs -C/func/-/vfs_init -C/func/-/vfs_init_io_attributes -C/func/-/vfs_ioattr -C/func/-/vfs_isforce -C/func/-/vfs_isrdonly -C/func/-/vfs_isrdwr -C/func/-/vfs_isreload -C/func/-/vfs_issynchronous -C/func/-/vfs_isunmount -C/func/-/vfs_isupdate -C/func/-/vfs_iswriteupgrade -C/func/-/vfs_iterate -C/func/-/vfs_maxsymlen -C/func/-/vfs_mount -C/func/-/vfs_mountedon -C/func/-/vfs_name -C/func/-/vfs_quotactl -C/func/-/vfs_removename -C/func/-/vfs_root -C/func/-/vfs_rootvnode -C/func/-/vfs_setattr -C/func/-/vfs_setauthcache_ttl -C/func/-/vfs_setauthopaque -C/func/-/vfs_setauthopaqueaccess -C/func/-/vfs_setextendedsecurity -C/func/-/vfs_setflags -C/func/-/vfs_setfsprivate -C/func/-/vfs_setioattr -C/func/-/vfs_setlocklocal -C/func/-/vfs_setmaxsymlen -C/func/-/vfs_start -C/func/-/vfs_statfs -C/func/-/vfs_sync -C/func/-/vfs_sysctl -C/func/-/vfs_typenum -C/func/-/vfs_unbusy -C/func/-/vfs_unmount -C/func/-/vfs_unmountbyfsid -C/func/-/vfs_update_vfsstat -C/func/-/vfs_vget -C/func/-/vfs_vptofh -C/func/-/vfscanf -C/func/-/vfscanf_l -C/func/-/vfwprintf -C/func/-/vfwprintf_l -C/func/-/vfwscanf -C/func/-/vfwscanf_l -C/func/-/vid_attr -C/func/-/vid_puts -C/func/-/vidattr -Objective-C/instm/IMAVManager/videoDataSource -C/tdef/-/VideoDigitizerComponent -C/tdef/-/VideoDigitizerError -JavaScript/data/HTMLVideoElement/videoHeight -Objective-C/instm/IMAVManager/videoOptimizationOptions -Objective-C/instm/QTCaptureView/videoPreviewConnection -JavaScript/data/HTMLVideoElement/videoWidth -C/func/-/vidputs -Objective-C/instm/IBInspector/view -Objective-C/instm/NSToolbarItem/view -Objective-C/instm/AMBundleAction/view -Objective-C/instm/NSViewController/view -Objective-C/instm/NSStatusItem/view -Objective-C/instm/NSPrintOperation/view -Objective-C/instm/NSCollectionViewItem/view -Objective-C/instm/NSTabViewItem/view -Objective-C/instm/NSMenuItem/view -Objective-C/instm/NSOpenGLLayer/view -Objective-C/instp/NSOpenGLLayer/view -Objective-C/instm/NSOpenGLContext/view -JavaScript/data/UIEvent/view -Objective-C/instm/NSObject/view:stringForToolTip:point:userData: -Objective-C/instm/NSObject/view:willDisplayImage: -Objective-C/instm/NSViewAnimation/viewAnimations -Objective-C/instm/NSClipView/viewBoundsChanged: -JavaScript/data/SVGFitToViewBox/viewBox -JavaScript/data/SVGViewSpec/viewBoxString -Objective-C/instm/NSView/viewDidEndLiveResize -Objective-C/instm/NSView/viewDidHide -Objective-C/intfm/WebDocumentView/viewDidMoveToHostWindow -Objective-C/instm/NSView/viewDidMoveToSuperview -Objective-C/instm/NSRuleEditor/viewDidMoveToWindow -Objective-C/instm/NSView/viewDidMoveToWindow -Objective-C/instm/NSView/viewDidUnhide -Objective-C/instm/SFAuthorizationPluginView/viewForType: -Objective-C/instm/CIFilter/viewForUIConfiguration:excludedKeys: -Objective-C/instm/NSClipView/viewFrameChanged: -Objective-C/instm/IBInspector/viewNibName -JavaScript/data/SVGSVGElement/viewport -JavaScript/clconst/WebGLRenderingContext/VIEWPORT -JavaScript/instm/WebGLRenderingContext/viewport -JavaScript/data/SVGElement/viewportElement -Objective-C/instm/NSColorPicker/viewSizeChanged: -Objective-C/intfm/NSColorPickingDefault/viewSizeChanged: -Objective-C/instm/NSWindow/viewsNeedDisplay -JavaScript/data/SVGViewElement/viewTarget -JavaScript/data/SVGViewSpec/viewTarget -JavaScript/data/SVGViewSpec/viewTargetString -Objective-C/instm/NSView/viewWillDraw -Objective-C/intfm/WebDocumentView/viewWillMoveToHostWindow: -Objective-C/instm/NSView/viewWillMoveToSuperview: -Objective-C/instm/NSView/viewWillMoveToWindow: -Objective-C/instm/NSView/viewWillStartLiveResize -Objective-C/clm/IKFilterUIView/viewWithFrame:filter: -Objective-C/instm/NSView/viewWithTag: -C/tdef/-/vImage_AffineTransform -C/tdef/-/vImage_Buffer -C/tdef/-/vImage_Error -C/tdef/-/vImage_Flags -C/func/-/vImageAffineWarp_ARGB8888 -C/func/-/vImageAffineWarp_ARGBFFFF -C/func/-/vImageAffineWarp_Planar8 -C/func/-/vImageAffineWarp_PlanarF -C/func/-/vImageAlphaBlend_ARGB8888 -C/func/-/vImageAlphaBlend_ARGBFFFF -C/func/-/vImageAlphaBlend_NonpremultipliedToPremultiplied_ARGB8888 -C/func/-/vImageAlphaBlend_NonpremultipliedToPremultiplied_ARGBFFFF -C/func/-/vImageAlphaBlend_NonpremultipliedToPremultiplied_Planar8 -C/func/-/vImageAlphaBlend_NonpremultipliedToPremultiplied_PlanarF -C/func/-/vImageAlphaBlend_Planar8 -C/func/-/vImageAlphaBlend_PlanarF -C/func/-/vImageBoxConvolve_ARGB8888 -C/func/-/vImageBoxConvolve_Planar8 -C/func/-/vImageBufferFill_ARGB8888 -C/func/-/vImageBufferFill_ARGBFFFF -C/func/-/vImageClip_PlanarF -C/func/-/vImageClipToAlpha_ARGB8888 -C/func/-/vImageClipToAlpha_ARGBFFFF -C/func/-/vImageClipToAlpha_Planar8 -C/func/-/vImageClipToAlpha_PlanarF -C/func/-/vImageContrastStretch_ARGB8888 -C/func/-/vImageContrastStretch_ARGBFFFF -C/func/-/vImageContrastStretch_Planar8 -C/func/-/vImageContrastStretch_PlanarF -C/func/-/vImageConvert_16SToF -C/func/-/vImageConvert_16UToF -C/func/-/vImageConvert_16UToPlanar8 -C/func/-/vImageConvert_ARGB1555toARGB8888 -C/func/-/vImageConvert_ARGB1555toPlanar8 -C/func/-/vImageConvert_ARGB8888toARGB1555 -C/func/-/vImageConvert_ARGB8888toPlanar8 -C/func/-/vImageConvert_ARGB8888toRGB565 -C/func/-/vImageConvert_ARGB8888toRGB888 -C/func/-/vImageConvert_ARGBFFFFtoPlanarF -C/func/-/vImageConvert_ChunkyToPlanar8 -C/func/-/vImageConvert_ChunkyToPlanarF -C/func/-/vImageConvert_FTo16S -C/func/-/vImageConvert_FTo16U -C/func/-/vImageConvert_Planar16FtoPlanarF -C/func/-/vImageConvert_Planar8To16U -C/func/-/vImageConvert_Planar8toARGB1555 -C/func/-/vImageConvert_Planar8toARGB8888 -C/func/-/vImageConvert_Planar8toPlanarF -C/func/-/vImageConvert_Planar8toRGB565 -C/func/-/vImageConvert_Planar8toRGB888 -C/func/-/vImageConvert_PlanarFtoARGBFFFF -C/func/-/vImageConvert_PlanarFtoPlanar16F -C/func/-/vImageConvert_PlanarFtoPlanar8 -C/func/-/vImageConvert_PlanarFtoRGBFFF -C/func/-/vImageConvert_PlanarToChunky8 -C/func/-/vImageConvert_PlanarToChunkyF -C/func/-/vImageConvert_RGB565toARGB8888 -C/func/-/vImageConvert_RGB565toPlanar8 -C/func/-/vImageConvert_RGB888toARGB8888 -C/func/-/vImageConvert_RGB888toPlanar8 -C/func/-/vImageConvert_RGBFFFtoPlanarF -C/func/-/vImageConvolve_ARGB8888 -C/func/-/vImageConvolve_ARGBFFFF -C/func/-/vImageConvolve_Planar8 -C/func/-/vImageConvolve_PlanarF -C/func/-/vImageConvolveMultiKernel_ARGB8888 -C/func/-/vImageConvolveMultiKernel_ARGBFFFF -C/func/-/vImageConvolveWithBias_ARGB8888 -C/func/-/vImageConvolveWithBias_ARGBFFFF -C/func/-/vImageConvolveWithBias_Planar8 -C/func/-/vImageConvolveWithBias_PlanarF -C/func/-/vImageCreateGammaFunction -C/func/-/vImageDestroyGammaFunction -C/func/-/vImageDestroyResamplingFilter -C/func/-/vImageDilate_ARGB8888 -C/func/-/vImageDilate_ARGBFFFF -C/func/-/vImageDilate_Planar8 -C/func/-/vImageDilate_PlanarF -C/func/-/vImageEndsInContrastStretch_ARGB8888 -C/func/-/vImageEndsInContrastStretch_ARGBFFFF -C/func/-/vImageEndsInContrastStretch_Planar8 -C/func/-/vImageEndsInContrastStretch_PlanarF -C/func/-/vImageEqualization_ARGB8888 -C/func/-/vImageEqualization_ARGBFFFF -C/func/-/vImageEqualization_Planar8 -C/func/-/vImageEqualization_PlanarF -C/func/-/vImageErode_ARGB8888 -C/func/-/vImageErode_ARGBFFFF -C/func/-/vImageErode_Planar8 -C/func/-/vImageErode_PlanarF -C/func/-/vImageFlatten_ARGB8888ToRGB888 -C/func/-/vImageFlatten_ARGBFFFFToRGBFFF -C/func/-/vImageGamma_Planar8toPlanarF -C/func/-/vImageGamma_PlanarF -C/func/-/vImageGamma_PlanarFtoPlanar8 -C/func/-/vImageGetMinimumGeometryTempBufferSize -C/func/-/vImageGetMinimumTempBufferSizeForConvolution -C/func/-/vImageGetMinimumTempBufferSizeForHistogram -C/func/-/vImageGetMinimumTempBufferSizeForMinMax -C/func/-/vImageGetResamplingFilterSize -C/func/-/vImageHistogramCalculation_ARGB8888 -C/func/-/vImageHistogramCalculation_ARGBFFFF -C/func/-/vImageHistogramCalculation_Planar8 -C/func/-/vImageHistogramCalculation_PlanarF -C/func/-/vImageHistogramSpecification_ARGB8888 -C/func/-/vImageHistogramSpecification_ARGBFFFF -C/func/-/vImageHistogramSpecification_Planar8 -C/func/-/vImageHistogramSpecification_PlanarF -C/func/-/vImageHorizontalReflect_ARGB8888 -C/func/-/vImageHorizontalReflect_ARGBFFFF -C/func/-/vImageHorizontalReflect_Planar8 -C/func/-/vImageHorizontalReflect_PlanarF -C/func/-/vImageHorizontalShear_ARGB8888 -C/func/-/vImageHorizontalShear_ARGBFFFF -C/func/-/vImageHorizontalShear_Planar8 -C/func/-/vImageHorizontalShear_PlanarF -C/func/-/vImageInterpolatedLookupTable_PlanarF -C/func/-/vImageLookupTable_Planar8toPlanarF -C/func/-/vImageLookupTable_PlanarFtoPlanar8 -C/func/-/vImageMatrixMultiply_ARGB8888 -C/func/-/vImageMatrixMultiply_ARGBFFFF -C/func/-/vImageMatrixMultiply_Planar8 -C/func/-/vImageMatrixMultiply_PlanarF -C/func/-/vImageMax_ARGB8888 -C/func/-/vImageMax_ARGBFFFF -C/func/-/vImageMax_Planar8 -C/func/-/vImageMax_PlanarF -C/func/-/vImageMin_ARGB8888 -C/func/-/vImageMin_ARGBFFFF -C/func/-/vImageMin_Planar8 -C/func/-/vImageMin_PlanarF -C/func/-/vImageNewResamplingFilter -C/func/-/vImageNewResamplingFilterForFunctionUsingBuffer -C/func/-/vImageOverwriteChannels_ARGB8888 -C/func/-/vImageOverwriteChannels_ARGBFFFF -C/func/-/vImageOverwriteChannelsWithPixel_ARGB8888 -C/func/-/vImageOverwriteChannelsWithPixel_ARGBFFFF -C/func/-/vImageOverwriteChannelsWithScalar_ARGB8888 -C/func/-/vImageOverwriteChannelsWithScalar_ARGBFFFF -C/func/-/vImageOverwriteChannelsWithScalar_Planar8 -C/func/-/vImageOverwriteChannelsWithScalar_PlanarF -C/func/-/vImagePermuteChannels_ARGB8888 -C/func/-/vImagePermuteChannels_ARGBFFFF -C/func/-/vImagePiecewisePolynomial_Planar8toPlanarF -C/func/-/vImagePiecewisePolynomial_PlanarF -C/func/-/vImagePiecewisePolynomial_PlanarFtoPlanar8 -C/func/-/vImagePiecewiseRational_PlanarF -C/tdef/-/vImagePixelCount -C/func/-/vImagePNGDecompressionFilter -C/func/-/vImagePremultipliedAlphaBlend_ARGB8888 -C/func/-/vImagePremultipliedAlphaBlend_ARGBFFFF -C/func/-/vImagePremultipliedAlphaBlend_Planar8 -C/func/-/vImagePremultipliedAlphaBlend_PlanarF -C/func/-/vImagePremultipliedConstAlphaBlend_ARGB8888 -C/func/-/vImagePremultipliedConstAlphaBlend_ARGBFFFF -C/func/-/vImagePremultipliedConstAlphaBlend_Planar8 -C/func/-/vImagePremultipliedConstAlphaBlend_PlanarF -C/func/-/vImagePremultiplyData_ARGB8888 -C/func/-/vImagePremultiplyData_ARGBFFFF -C/func/-/vImagePremultiplyData_Planar8 -C/func/-/vImagePremultiplyData_PlanarF -C/func/-/vImagePremultiplyData_RGBA8888 -C/func/-/vImagePremultiplyData_RGBAFFFF -C/func/-/vImageRichardsonLucyDeConvolve_ARGB8888 -C/func/-/vImageRichardsonLucyDeConvolve_ARGBFFFF -C/func/-/vImageRichardsonLucyDeConvolve_Planar8 -C/func/-/vImageRichardsonLucyDeConvolve_PlanarF -C/func/-/vImageRotate90_ARGB8888 -C/func/-/vImageRotate90_ARGBFFFF -C/func/-/vImageRotate90_Planar8 -C/func/-/vImageRotate90_PlanarF -C/func/-/vImageRotate_ARGB8888 -C/func/-/vImageRotate_ARGBFFFF -C/func/-/vImageRotate_Planar8 -C/func/-/vImageRotate_PlanarF -C/func/-/vImageScale_ARGB8888 -C/func/-/vImageScale_ARGBFFFF -C/func/-/vImageScale_Planar8 -C/func/-/vImageScale_PlanarF -C/func/-/vImageSelectChannels_ARGB8888 -C/func/-/vImageSelectChannels_ARGBFFFF -C/func/-/vImageTableLookUp_ARGB8888 -C/func/-/vImageTableLookUp_Planar8 -C/func/-/vImageTentConvolve_ARGB8888 -C/func/-/vImageTentConvolve_Planar8 -C/func/-/vImageUnpremultiplyData_ARGB8888 -C/func/-/vImageUnpremultiplyData_ARGBFFFF -C/func/-/vImageUnpremultiplyData_Planar8 -C/func/-/vImageUnpremultiplyData_PlanarF -C/func/-/vImageUnpremultiplyData_RGBA8888 -C/func/-/vImageUnpremultiplyData_RGBAFFFF -C/func/-/vImageVerticalReflect_ARGB8888 -C/func/-/vImageVerticalReflect_ARGBFFFF -C/func/-/vImageVerticalReflect_Planar8 -C/func/-/vImageVerticalReflect_PlanarF -C/func/-/vImageVerticalShear_ARGB8888 -C/func/-/vImageVerticalShear_ARGBFFFF -C/func/-/vImageVerticalShear_Planar8 -C/func/-/vImageVerticalShear_PlanarF -C/func/-/vintf -C/func/-/vipowf -Objective-C/clm/DRFile(VirtualFiles)/virtualFileWithName:data: -Objective-C/clm/DRFile(VirtualFiles)/virtualFileWithName:dataProducer: -Objective-C/clm/DRFolder(VirtualFolders)/virtualFolderWithName: -C/func/-/vis -C/func/-/vIsamax -C/func/-/vIsamin -Objective-C/instm/NSToolbarItem/visibilityPriority -Objective-C/binding/NSDrawer/visible -Objective-C/binding/NSPanel/visible -Objective-C/binding/NSWindow/visible -JavaScript/data/BarInfo/visible -JavaScript/data/ScriptProfileNode/visible -Objective-C/instm/NSScreen/visibleFrame -Objective-C/instm/IKImageBrowserView/visibleItemIndexes -Objective-C/instm/NSToolbar/visibleItems -Objective-C/instm/PDFView/visiblePages -Objective-C/instm/NSView/visibleRect -Objective-C/instp/CALayer/visibleRect -Objective-C/instm/CALayer/visibleRect -C/func/-/vIsmax -C/func/-/vIsmin -Objective-C/instm/QTMovie/visualContext -Objective-C/instm/QTCaptureVideoPreviewOutput/visualContextForConnection: -C/func/-/VisualOfCCC -C/func/-/vL1024Rotate -C/func/-/vL128Rotate -C/func/-/vL256Rotate -C/func/-/vL512Rotate -C/func/-/vL64Rotate -C/func/-/vL64Rotate2 -C/econst/-/vLckdErr -C/func/-/vline -C/func/-/vline_set -JavaScript/data/HTMLBodyElement/vLink -JavaScript/data/HTMLDocument/vlinkColor -C/func/-/vLL1024Shift -C/func/-/vLL128Shift -C/func/-/vLL256Shift -C/func/-/vLL512Shift -C/func/-/vLL64Shift -C/func/-/vLL64Shift2 -C/func/-/vlog10f -C/func/-/vlog1pf -C/func/-/vlogbf -C/func/-/vlogf -C/func/-/vLR1024Shift -C/func/-/vLR128Shift -C/func/-/vLR256Shift -C/func/-/vLR512Shift -C/func/-/vLR64Shift -C/func/-/vLR64Shift2 -C/func/-/vmul -C/func/-/vmulD -C/func/-/vMultMatMat_16x16 -C/func/-/vMultMatMat_32x32 -C/func/-/vMultMatMat_4x4 -C/func/-/vMultMatMat_8x8 -C/func/-/vMultMatVec_16x16 -C/func/-/vMultMatVec_32x32 -C/func/-/vMultMatVec_4x4 -C/func/-/vMultMatVec_8x8 -C/func/-/vMultVecMat_16x16 -C/func/-/vMultVecMat_32x32 -C/func/-/vMultVecMat_4x4 -C/func/-/vMultVecMat_8x8 -C/func/-/vn_bwrite -C/func/-/vn_default_error -C/func/-/vn_getpath -C/func/-/vn_path_package_check -C/func/-/vn_rdwr -C/func/-/vn_revoke -C/func/-/vnextafterf -C/func/-/vnintf -C/func/-/vnode_addfsref -C/func/-/vnode_authattr -C/func/-/vnode_authattr_new -C/func/-/vnode_authorize -C/func/-/vnode_clearfsnode -C/func/-/vnode_clearmountedon -C/func/-/vnode_clearnocache -C/func/-/vnode_clearnoreadahead -C/func/-/vnode_close -C/func/-/vnode_create -C/func/-/vnode_fsnode -C/func/-/vnode_get -C/func/-/vnode_getattr -C/func/-/vnode_getname -C/func/-/vnode_getparent -C/func/-/vnode_getwithref -C/func/-/vnode_getwithvid -C/func/-/vnode_hascleanblks -C/func/-/vnode_hasdirtyblks -C/func/-/vnode_isblk -C/func/-/vnode_ischr -C/func/-/vnode_isdir -C/func/-/vnode_isfifo -C/func/-/vnode_isinuse -C/func/-/vnode_islnk -C/func/-/vnode_ismount -C/func/-/vnode_ismountedon -C/func/-/vnode_isnamedstream -C/func/-/vnode_isnocache -C/func/-/vnode_isnoreadahead -C/func/-/vnode_israge -C/func/-/vnode_isrecycled -C/func/-/vnode_isreg -C/func/-/vnode_isswap -C/func/-/vnode_issystem -C/func/-/vnode_isvroot -C/func/-/vnode_iterate -C/func/-/vnode_lookup -C/func/-/vnode_mount -C/func/-/vnode_mountedhere -C/func/-/vnode_open -C/func/-/vnode_put -C/func/-/vnode_putname -C/func/-/vnode_recycle -C/func/-/vnode_ref -C/func/-/vnode_rele -C/func/-/vnode_removefsref -C/func/-/vnode_setattr -C/func/-/vnode_setmountedon -C/func/-/vnode_setmultipath -C/func/-/vnode_setnocache -C/func/-/vnode_setnoreadahead -C/func/-/vnode_settag -C/func/-/vnode_specrdev -C/func/-/vnode_startwrite -C/func/-/vnode_tag -C/func/-/vnode_uncache_credentials -C/func/-/vnode_update_identity -C/func/-/vnode_vfs64bitready -C/func/-/vnode_vfsisrdonly -C/func/-/vnode_vfsmaxsymlen -C/func/-/vnode_vfsname -C/func/-/vnode_vfstypenum -C/func/-/vnode_vid -C/func/-/vnode_vtype -C/func/-/vnode_waitforwrites -C/func/-/vnode_writedone -C/func/-/VNOP_BWRITE -C/func/-/VNOP_FSYNC -C/func/-/VNOP_GETXATTR -C/func/-/VNOP_IOCTL -C/func/-/VNOP_READ -C/func/-/VNOP_SETXATTR -C/func/-/VNOP_STRATEGY -C/func/-/VNOP_WRITE -Objective-C/instm/NSSpeechSynthesizer/voice -C/tdef/-/VoiceDescription -C/tdef/-/VoiceFileInfo -C/econst/-/voiceNotFound -C/tdef/-/VoiceSpec -C/tdef/-/void -JavaScript/cl/-/VoidCallback -JavaScript/instm/TestObj/voidMethod -JavaScript/instm/TestObj/voidMethodWithArgs -Objective-C/instm/NSUserDefaults/volatileDomainForName: -Objective-C/instm/NSUserDefaults/volatileDomainNames -C/econst/-/volGoneErr -C/econst/-/volMountChangedBit -C/econst/-/volMountChangedMask -C/econst/-/volMountExtendedFlagsBit -C/econst/-/volMountExtendedFlagsMask -C/econst/-/volMountFSReservedMask -C/tdef/-/VolMountInfoHeader -C/econst/-/volMountInteractBit -C/econst/-/volMountInteractMask -C/econst/-/volMountNoLoginMsgFlagBit -C/econst/-/volMountNoLoginMsgFlagMask -C/econst/-/volMountSysReservedMask -C/econst/-/volOffLinErr -C/econst/-/volOnLinErr -Objective-C/instm/QTCaptureAudioPreviewOutput/volume -Objective-C/instm/NSSpeechSynthesizer/volume -Objective-C/instm/QTTrack/volume -Objective-C/instm/NSSound/volume -Objective-C/instm/QTMovie/volume -JavaScript/data/HTMLMediaElement/volume -C/tdef/-/VolumeMountInfoHeader -C/tdef/-/VolumeParam -C/tdef/-/VolumeType -C/econst/-/volVMBusyErr -C/func/-/vpowf -C/func/-/vprintf -C/func/-/vprintf_l -C/func/-/vR1024Rotate -C/func/-/vR128Rotate -C/func/-/vR256Rotate -C/func/-/vR512Rotate -C/func/-/vR64Rotate -C/func/-/vR64Rotate2 -C/func/-/vrecf -C/func/-/vremainderf -C/func/-/vremquof -C/func/-/vrsqrtf -C/tag/-/vS1024 -C/tdef/-/vS1024 -C/func/-/vS1024Add -C/func/-/vS1024AddS -C/func/-/vS1024Divide -C/func/-/vS1024HalfMultiply -C/func/-/vS1024Mod -C/func/-/vS1024Neg -C/func/-/vS1024Sub -C/func/-/vS1024SubS -C/tdef/-/vS128 -C/tag/-/vS128 -C/func/-/vS128Add -C/func/-/vS128AddS -C/func/-/vS128Divide -C/func/-/vS128FullMultiply -C/func/-/vS128HalfMultiply -C/func/-/vS128Neg -C/func/-/vS128Sub -C/func/-/vS128SubS -C/func/-/vS16Divide -C/func/-/vS16HalfMultiply -C/tag/-/vS256 -C/tdef/-/vS256 -C/func/-/vS256Add -C/func/-/vS256AddS -C/func/-/vS256Divide -C/func/-/vS256FullMultiply -C/func/-/vS256HalfMultiply -C/func/-/vS256Mod -C/func/-/vS256Neg -C/func/-/vS256Sub -C/func/-/vS256SubS -C/func/-/vS32Divide -C/func/-/vS32FullMulEven -C/func/-/vS32FullMulOdd -C/func/-/vS32HalfMultiply -C/tag/-/vS512 -C/tdef/-/vS512 -C/func/-/vS512Add -C/func/-/vS512AddS -C/func/-/vS512Divide -C/func/-/vS512FullMultiply -C/func/-/vS512HalfMultiply -C/func/-/vS512Mod -C/func/-/vS512Neg -C/func/-/vS512Sub -C/func/-/vS512SubS -C/func/-/vS64Add -C/func/-/vS64AddS -C/func/-/vS64Divide -C/func/-/vS64FullMulEven -C/func/-/vS64FullMulOdd -C/func/-/vS64HalfMultiply -C/func/-/vS64Neg -C/func/-/vS64Sub -C/func/-/vS64SubS -C/func/-/vS8Divide -C/func/-/vS8HalfMultiply -C/func/-/vSasum -C/func/-/vSaxpy -C/func/-/vscalbf -C/func/-/vscanf -C/func/-/vscanf_l -C/func/-/vScopy -C/func/-/vSdot -C/func/-/vSgeadd -C/func/-/vSgemm -C/func/-/vSgemtx -C/func/-/vSgemul -C/func/-/vSgemv -C/func/-/vSgemx -C/func/-/vSgesub -C/func/-/vSgetmi -C/func/-/vSgetmo -C/func/-/vSgevv -C/func/-/vsignbitf -C/func/-/vsincosf -C/func/-/vsinf -C/func/-/vsinhf -C/tdef/-/vSInt16 -C/tdef/-/vSInt32 -C/tdef/-/vSInt8 -C/func/-/vsmul -C/func/-/vsmulD -C/func/-/vSnaxpy -C/func/-/vSndot -C/func/-/vSnorm2 -C/func/-/vsnprintf -C/func/-/vsnprintf_l -C/func/-/vSnrm2 -JavaScript/data/HTMLImageElement/vspace -JavaScript/data/HTMLAppletElement/vspace -JavaScript/data/HTMLObjectElement/vspace -C/func/-/vsprintf -C/func/-/vsprintf_l -C/func/-/vsq -C/func/-/vsqD -C/func/-/vsqrtf -C/func/-/vSrot -C/func/-/vSscal -C/func/-/vsscanf -C/func/-/vsscanf_l -C/func/-/vssq -C/func/-/vssqD -C/func/-/vSsum -C/func/-/vSswap -C/func/-/vsub -C/func/-/vsubD -C/func/-/vswprintf -C/func/-/vswprintf_l -C/func/-/vswscanf -C/func/-/vswscanf_l -C/func/-/vSyax -C/func/-/vsyslog -C/func/-/vSzaxpy -C/func/-/vtablelookup -C/func/-/vtanf -C/func/-/vtanhf -C/tdef/-/vU1024 -C/tag/-/vU1024 -C/func/-/vU1024Add -C/func/-/vU1024AddS -C/func/-/vU1024Divide -C/func/-/vU1024HalfMultiply -C/func/-/vU1024Mod -C/func/-/vU1024Neg -C/func/-/vU1024Sub -C/func/-/vU1024SubS -C/tag/-/vU128 -C/tdef/-/vU128 -C/func/-/vU128Add -C/func/-/vU128AddS -C/func/-/vU128Divide -C/func/-/vU128FullMultiply -C/func/-/vU128HalfMultiply -C/func/-/vU128Neg -C/func/-/vU128Sub -C/func/-/vU128SubS -C/func/-/vU16Divide -C/func/-/vU16HalfMultiply -C/tdef/-/vU256 -C/tag/-/vU256 -C/func/-/vU256Add -C/func/-/vU256AddS -C/func/-/vU256Divide -C/func/-/vU256FullMultiply -C/func/-/vU256HalfMultiply -C/func/-/vU256Mod -C/func/-/vU256Neg -C/func/-/vU256Sub -C/func/-/vU256SubS -C/func/-/vU32Divide -C/func/-/vU32FullMulEven -C/func/-/vU32FullMulOdd -C/func/-/vU32HalfMultiply -C/tdef/-/vU512 -C/tag/-/vU512 -C/func/-/vU512Add -C/func/-/vU512AddS -C/func/-/vU512Divide -C/func/-/vU512FullMultiply -C/func/-/vU512HalfMultiply -C/func/-/vU512Mod -C/func/-/vU512Neg -C/func/-/vU512Sub -C/func/-/vU512SubS -C/func/-/vU64Add -C/func/-/vU64AddS -C/func/-/vU64Divide -C/func/-/vU64FullMulEven -C/func/-/vU64FullMulOdd -C/func/-/vU64HalfMultiply -C/func/-/vU64Neg -C/func/-/vU64Sub -C/func/-/vU64SubS -C/func/-/vU8Divide -C/func/-/vU8HalfMultiply -C/tdef/-/vUInt16 -C/tdef/-/vUInt32 -C/tdef/-/vUInt8 -C/func/-/vvacos -C/func/-/vvacosf -C/func/-/vvacosh -C/func/-/vvacoshf -C/func/-/vvasin -C/func/-/vvasinf -C/func/-/vvasinh -C/func/-/vvasinhf -C/func/-/vvatan -C/func/-/vvatan2 -C/func/-/vvatan2f -C/func/-/vvatanf -C/func/-/vvatanh -C/func/-/vvatanhf -C/func/-/vvceil -C/func/-/vvceilf -C/func/-/vvcopysignf -C/func/-/vvcos -C/func/-/vvcosf -C/func/-/vvcosh -C/func/-/vvcoshf -C/func/-/vvcosisin -C/func/-/vvcosisinf -C/func/-/vvdiv -C/func/-/vvdivf -C/func/-/vvexp -C/func/-/vvexpf -C/func/-/vvexpm1f -C/func/-/vvfabf -C/func/-/vvfloor -C/func/-/vvfloorf -C/func/-/vvfmodf -C/func/-/vvint -C/func/-/vvintf -C/func/-/vvlog -C/func/-/vvlog10 -C/func/-/vvlog10f -C/func/-/vvlog1pf -C/func/-/vvlogbf -C/func/-/vvlogf -C/func/-/vvnextafterf -C/func/-/vvnint -C/func/-/vvnintf -C/func/-/vvpow -C/func/-/vvpowf -C/func/-/vvrec -C/func/-/vvrecf -C/func/-/vvremainderf -C/func/-/vvrsqrt -C/func/-/vvrsqrtf -C/func/-/vvsin -C/func/-/vvsincos -C/func/-/vvsincosf -C/func/-/vvsinf -C/func/-/vvsinh -C/func/-/vvsinhf -C/func/-/vvsqrt -C/func/-/vvsqrtf -C/func/-/vvtan -C/func/-/vvtanf -C/func/-/vvtanh -C/func/-/vvtanhf -C/func/-/vw_printw -C/func/-/vw_scanw -C/func/-/vwarn -C/func/-/vwarnc -C/func/-/vwarnx -C/func/-/vwprintf -C/func/-/vwprintf_l -C/func/-/vwprintw -C/func/-/vwscanf -C/func/-/vwscanf_l -C/func/-/vwscanw -Objective-C/instm/CIVector/W -C/func/-/wadd_wch -C/func/-/wadd_wchnstr -C/func/-/wadd_wchstr -C/func/-/waddch -C/func/-/waddchnstr -C/func/-/waddchstr -C/func/-/waddnstr -C/func/-/waddnwstr -C/func/-/waddstr -C/func/-/waddwstr -Objective-C/instm/NSCondition/wait -C/func/-/wait -C/func/-/wait3 -C/func/-/wait4 -Objective-C/instm/NSFileHandle/waitForDataInBackgroundAndNotify -Objective-C/instm/NSFileHandle/waitForDataInBackgroundAndNotifyForModes: -C++/clm/IOService/waitForMatchingService -C++/instm/IOAudioDevice/waitForPendingPowerStateChange -C++/clm/IOService/waitForService -C/func/-/waitpid -C++/instm/IOService/waitQuiet -Objective-C/instm/NSOperationQueue/waitUntilAllOperationsAreFinished -Objective-C/instm/NSCondition/waitUntilDate: -Objective-C/instm/NSTask/waitUntilExit -Objective-C/instm/NSOperation/waitUntilFinished -C++/instm/ATATimerEventSource/wakeAtTime -C++/instm/IOTimerEventSource/wakeAtTime -C++/instm/IOTimerEventSource/wakeAtTimeMS -C++/instm/IOTimerEventSource/wakeAtTimeTicks -C++/instm/IOTimerEventSource/wakeAtTimeUS -C/func/-/WakeUpProcess -Objective-C/instm/NSView/wantsDefaultClipping -Objective-C/intfm/ApertureExportPlugIn/wantsDestinationPathPrompt -Objective-C/intfm/ApertureExportPlugIn/wantsFileNamingControls -Objective-C/instm/NSView/wantsLayer -Objective-C/instm/NSCell/wantsNotificationForMarkedText -Objective-C/instm/NSObject/wantsPeriodicDraggingUpdates -Objective-C/instm/NSView/wantsRestingTouches -Objective-C/intfm/NSTextAttachmentCell/wantsToTrackMouse -Objective-C/intfm/NSTextAttachmentCell/wantsToTrackMouseForEvent:inRect:ofView:atCharacterIndex: -C/func/-/warn -JavaScript/instm/Console/warn -C/func/-/warnc -C/tdef/-/warningSAXFunc -Objective-C/instm/NSLevelIndicator/warningValue -Objective-C/instm/NSLevelIndicatorCell/warningValue -Objective-C/binding/NSLevelIndicatorCell/warningValue -Objective-C/binding/NSLevelIndicator/warningValue -C/func/-/warnx -C/func/-/wattr_get -C/func/-/wattr_off -C/func/-/wattr_on -C/func/-/wattr_set -C/func/-/wattroff -C/func/-/wattron -C/func/-/wattrset -C/func/-/wbkgd -C/func/-/wbkgdset -C/func/-/wbkgrnd -C/func/-/wbkgrndset -C/func/-/wborder -C/func/-/wborder_set -C/func/-/wchgat -C/func/-/wclear -C/func/-/wclrtobot -C/func/-/wclrtoeol -C/func/-/wcolor_set -C/func/-/wcrtomb -C/func/-/wcrtomb_l -C/func/-/wcscat -C/func/-/wcschr -C/func/-/wcscmp -C/func/-/wcscoll -C/func/-/wcscoll_l -C/func/-/wcscpy -C/func/-/wcscspn -C/func/-/wcsftime -C/func/-/wcsftime_l -C/func/-/wcslcat -C/func/-/wcslcpy -C/func/-/wcslen -C/func/-/wcsncat -C/func/-/wcsncmp -C/func/-/wcsncpy -C/func/-/wcsnrtombs -C/func/-/wcsnrtombs_l -C/func/-/wcspbrk -C/func/-/wcsrchr -C/func/-/wcsrtombs -C/func/-/wcsrtombs_l -C/func/-/wcsspn -C/func/-/wcsstr -C/func/-/wcstod -C/func/-/wcstod_l -C/func/-/wcstof -C/func/-/wcstof_l -C/func/-/wcstoimax -C/func/-/wcstoimax_l -C/func/-/wcstok -C/func/-/wcstol -C/func/-/wcstol_l -C/func/-/wcstold -C/func/-/wcstold_l -C/func/-/wcstoll -C/func/-/wcstoll_l -C/func/-/wcstombs -C/func/-/wcstombs_l -C/func/-/wcstoul -C/func/-/wcstoul_l -C/func/-/wcstoull -C/func/-/wcstoull_l -C/func/-/wcstoumax -C/func/-/wcstoumax_l -C/func/-/wcswidth -C/func/-/wcswidth_l -C/func/-/wcsxfrm -C/func/-/wcsxfrm_l -C/func/-/wctob -C/func/-/wctob_l -C/func/-/wctomb -C/func/-/wctomb_l -C/func/-/wctrans -C/func/-/wctrans_l -C/func/-/wctype -C/func/-/wctype_l -C/func/-/wcursyncup -C/func/-/wcwidth -C/func/-/wcwidth_l -C/func/-/wdelch -C/func/-/wdeleteln -C/tdef/-/WDParam -C/tdef/-/WDPBRec -C++/clm/IODMACommand/weakWithSpecification -C/data/-/WebActionButtonKey -C/data/-/WebActionElementKey -C/data/-/WebActionModifierFlagsKey -C/data/-/WebActionNavigationTypeKey -C/data/-/WebActionOriginalURLKey -Objective-C/instm/WebDataSource/webArchive -Objective-C/instm/DOMNode/webArchive -Objective-C/cl/-/WebArchive -Objective-C/instm/DOMRange/webArchive -C/data/-/WebArchivePboardType -Objective-C/cl/-/WebBackForwardList -C/tdef/-/WebCacheModel -C/econst/-/WebCacheModelDocumentBrowser -C/econst/-/WebCacheModelDocumentViewer -C/econst/-/WebCacheModelPrimaryWebBrowser -C/func/-/WebConvertNSImageToCGImageRef -Objective-C/cl/-/WebDataSource -Objective-C/intf/-/WebDocumentRepresentation -Objective-C/intf/-/WebDocumentSearching -Objective-C/intf/-/WebDocumentText -Objective-C/intf/-/WebDocumentView -Objective-C/cl/-/WebDownload -C/tdef/-/WebDragDestinationAction -C/econst/-/WebDragDestinationActionAny -C/econst/-/WebDragDestinationActionDHTML -C/econst/-/WebDragDestinationActionEdit -C/econst/-/WebDragDestinationActionLoad -C/econst/-/WebDragDestinationActionNone -C/tdef/-/WebDragSourceAction -C/econst/-/WebDragSourceActionAny -C/econst/-/WebDragSourceActionDHTML -C/econst/-/WebDragSourceActionImage -C/econst/-/WebDragSourceActionLink -C/econst/-/WebDragSourceActionNone -C/econst/-/WebDragSourceActionSelection -Objective-C/cat/-/WebEditingDelegate -C/data/-/WebElementDOMNodeKey -C/data/-/WebElementFrameKey -C/data/-/WebElementImageAltStringKey -C/data/-/WebElementImageKey -C/data/-/WebElementImageRectKey -C/data/-/WebElementImageURLKey -C/data/-/WebElementIsSelectedKey -C/data/-/WebElementLinkLabelKey -C/data/-/WebElementLinkTargetFrameKey -C/data/-/WebElementLinkTitleKey -C/data/-/WebElementLinkURLKey -Objective-C/instm/WebDataSource/webFrame -Objective-C/instm/WebFrameView/webFrame -Objective-C/cl/-/WebFrame -Objective-C/instm/DOMDocument/webFrame -Objective-C/instm/NSObject/webFrame -Objective-C/cat/-/WebFrameLoadDelegate -Objective-C/cl/-/WebFrameView -JavaScript/cl/-/WebGLActiveInfo -JavaScript/data/DOMWindow/WebGLArrayBuffer -JavaScript/cl/-/WebGLBuffer -JavaScript/data/DOMWindow/WebGLByteArray -JavaScript/cl/-/WebGLContextAttributes -JavaScript/data/DOMWindow/WebGLFloatArray -JavaScript/cl/-/WebGLFramebuffer -JavaScript/data/DOMWindow/WebGLIntArray -JavaScript/cl/-/WebGLProgram -JavaScript/cl/-/WebGLRenderbuffer -JavaScript/data/DOMWindow/WebGLRenderingContext -JavaScript/cl/-/WebGLRenderingContext -JavaScript/cl/-/WebGLShader -JavaScript/data/DOMWindow/WebGLShortArray -JavaScript/cl/-/WebGLTexture -JavaScript/cl/-/WebGLUniformLocation -JavaScript/data/DOMWindow/WebGLUnsignedByteArray -JavaScript/data/DOMWindow/WebGLUnsignedIntArray -JavaScript/data/DOMWindow/WebGLUnsignedShortArray -Objective-C/cl/-/WebHistory -C/data/-/WebHistoryAllItemsRemovedNotification -Objective-C/cl/-/WebHistoryItem -C/data/-/WebHistoryItemChangedNotification -C/data/-/WebHistoryItemsAddedNotification -C/data/-/WebHistoryItemsKey -C/data/-/WebHistoryItemsRemovedNotification -C/data/-/WebHistoryLoadedNotification -C/data/-/WebHistorySavedNotification -C/func/-/WebInitForCarbon -Objective-C/cat/-/WebJavaPlugIn -C/tdef/-/WebJNIReturnType -C/econst/-/WebJNIReturnTypeBoolean -C/econst/-/WebJNIReturnTypeByte -C/econst/-/WebJNIReturnTypeChar -C/econst/-/WebJNIReturnTypeDouble -C/econst/-/WebJNIReturnTypeFloat -C/econst/-/WebJNIReturnTypeInt -C/econst/-/WebJNIReturnTypeInvalid -C/econst/-/WebJNIReturnTypeLong -C/econst/-/WebJNIReturnTypeObject -C/econst/-/WebJNIReturnTypeShort -C/econst/-/WebJNIReturnTypeVoid -JavaScript/clconst/CSSRule/WEBKIT_KEYFRAME_RULE -JavaScript/clconst/CSSRule/WEBKIT_KEYFRAMES_RULE -JavaScript/data/DOMWindow/WebKitAnimationEvent -JavaScript/cl/-/WebKitAnimationEvent -JavaScript/data/HTMLMediaElement/webkitClosedCaptionsVisible -JavaScript/instm/DOMWindow/webkitConvertPointFromNodeToPage -JavaScript/instm/DOMWindow/webkitConvertPointFromPageToNode -JavaScript/data/DOMWindow/WebKitCSSKeyframeRule -JavaScript/cl/-/WebKitCSSKeyframeRule -JavaScript/data/DOMWindow/WebKitCSSKeyframesRule -JavaScript/cl/-/WebKitCSSKeyframesRule -JavaScript/data/DOMWindow/WebKitCSSMatrix -JavaScript/cl/-/WebKitCSSMatrix -JavaScript/data/DOMWindow/WebKitCSSTransformValue -JavaScript/cl/-/WebKitCSSTransformValue -JavaScript/data/HTMLVideoElement/webkitDisplayingFullscreen -JavaScript/instm/HTMLVideoElement/webkitEnterFullscreen -C/econst/-/WebKitErrorCannotFindPlugIn -C/econst/-/WebKitErrorCannotLoadPlugIn -C/econst/-/WebKitErrorCannotShowMIMEType -C/econst/-/WebKitErrorCannotShowURL -C/data/-/WebKitErrorDomain -C/econst/-/WebKitErrorFrameLoadInterruptedByPolicyChange -C/econst/-/WebKitErrorJavaUnavailable -C/data/-/WebKitErrorMIMETypeKey -C/data/-/WebKitErrorPlugInNameKey -C/data/-/WebKitErrorPlugInPageURLStringKey -JavaScript/instm/HTMLVideoElement/webkitExitFullscreen -JavaScript/data/HTMLMediaElement/webkitHasClosedCaptions -JavaScript/instm/Element/webkitMatchesSelector -JavaScript/data/DOMWindow/webkitNotifications -JavaScript/data/WorkerContext/webkitNotifications -JavaScript/data/DOMWindow/WebKitPoint -JavaScript/cl/-/WebKitPoint -JavaScript/data/HTMLMediaElement/webkitPreservesPitch -JavaScript/data/HTMLVideoElement/webkitSupportsFullscreen -JavaScript/data/DOMWindow/WebKitTransitionEvent -JavaScript/cl/-/WebKitTransitionEvent -C/econst/-/WebMenuItemPDFActualSize -C/econst/-/WebMenuItemPDFAutoSize -C/econst/-/WebMenuItemPDFContinuous -C/econst/-/WebMenuItemPDFFacingPages -C/econst/-/WebMenuItemPDFNextPage -C/econst/-/WebMenuItemPDFPreviousPage -C/econst/-/WebMenuItemPDFSinglePage -C/econst/-/WebMenuItemPDFZoomIn -C/econst/-/WebMenuItemPDFZoomOut -C/econst/-/WebMenuItemTagCopy -C/econst/-/WebMenuItemTagCopyImageToClipboard -C/econst/-/WebMenuItemTagCopyLinkToClipboard -C/econst/-/WebMenuItemTagCut -C/econst/-/WebMenuItemTagDownloadImageToDisk -C/econst/-/WebMenuItemTagDownloadLinkToDisk -C/econst/-/WebMenuItemTagGoBack -C/econst/-/WebMenuItemTagGoForward -C/econst/-/WebMenuItemTagIgnoreSpelling -C/econst/-/WebMenuItemTagLearnSpelling -C/econst/-/WebMenuItemTagLookUpInDictionary -C/econst/-/WebMenuItemTagNoGuessesFound -C/econst/-/WebMenuItemTagOpenFrameInNewWindow -C/econst/-/WebMenuItemTagOpenImageInNewWindow -C/econst/-/WebMenuItemTagOpenLinkInNewWindow -C/econst/-/WebMenuItemTagOpenWithDefaultApplication -C/econst/-/WebMenuItemTagOther -C/econst/-/WebMenuItemTagPaste -C/econst/-/WebMenuItemTagReload -C/econst/-/WebMenuItemTagSearchInSpotlight -C/econst/-/WebMenuItemTagSearchWeb -C/econst/-/WebMenuItemTagSpellingGuess -C/econst/-/WebMenuItemTagStop -C/tdef/-/WebNavigationType -C/econst/-/WebNavigationTypeBackForward -C/econst/-/WebNavigationTypeFormResubmitted -C/econst/-/WebNavigationTypeFormSubmitted -C/econst/-/WebNavigationTypeLinkClicked -C/econst/-/WebNavigationTypeOther -C/econst/-/WebNavigationTypeReload -Objective-C/intf/-/WebOpenPanelResultListener -Objective-C/cat/-/WebPlugIn -C/data/-/WebPlugInAttributesKey -C/data/-/WebPlugInBaseURLKey -Objective-C/instm/NSObject/webPlugInCallJava:isStatic:returnType:method:arguments:callingURL:exceptionDescription: -Objective-C/cat/-/WebPlugInContainer -C/data/-/WebPlugInContainerKey -Objective-C/instm/NSObject/webPlugInContainerLoadRequest:inFrame: -Objective-C/instm/NSObject/webPlugInContainerSelectionColor -Objective-C/instm/NSObject/webPlugInContainerShowStatus: -C/data/-/WebPlugInContainingElementKey -Objective-C/instm/NSObject/webPlugInDestroy -Objective-C/instm/NSObject/webPlugInGetApplet -Objective-C/instm/NSObject/webPlugInInitialize -Objective-C/instm/NSObject/webPlugInMainResourceDidFailWithError: -Objective-C/instm/NSObject/webPlugInMainResourceDidFinishLoading -Objective-C/instm/NSObject/webPlugInMainResourceDidReceiveData: -Objective-C/instm/NSObject/webPlugInMainResourceDidReceiveResponse: -Objective-C/instm/NSObject/webPlugInSetIsSelected: -C/data/-/WebPlugInShouldLoadMainResourceKey -Objective-C/instm/NSObject/webPlugInStart -Objective-C/instm/NSObject/webPlugInStop -Objective-C/intf/-/WebPlugInViewFactory -Objective-C/intf/-/WebPolicyDecisionListener -Objective-C/cat/-/WebPolicyDelegate -Objective-C/cl/-/WebPreferences -C/data/-/WebPreferencesChangedNotification -Objective-C/cl/-/WebResource -Objective-C/cat/-/WebResourceLoadDelegate -Objective-C/cat/-/WebScripting -Objective-C/clm/NSObject/webScriptNameForKey: -Objective-C/clm/NSObject/webScriptNameForSelector: -Objective-C/cl/-/WebScriptObject -Objective-C/instm/WebScriptObject/webScriptValueAtIndex: -JavaScript/data/DOMWindow/WebSocket -JavaScript/cl/-/WebSocket -JavaScript/data/WorkerContext/WebSocket -Objective-C/cat/-/WebUIDelegate -Objective-C/cl/-/WebUndefined -Objective-C/instm/WebFrame/webView -Objective-C/cl/-/WebView -Objective-C/instm/NSObject/webView:contextMenuItemsForElement:defaultMenuItems: -Objective-C/instm/NSObject/webView:createWebViewModalDialogWithRequest: -Objective-C/instm/NSObject/webView:createWebViewWithRequest: -Objective-C/instm/NSObject/webView:decidePolicyForMIMEType:request:frame:decisionListener: -Objective-C/instm/NSObject/webView:decidePolicyForNavigationAction:request:frame:decisionListener: -Objective-C/instm/NSObject/webView:decidePolicyForNewWindowAction:request:newFrameName:decisionListener: -Objective-C/instm/NSObject/webView:didCancelClientRedirectForFrame: -Objective-C/instm/NSObject/webView:didChangeLocationWithinPageForFrame: -Objective-C/instm/NSObject/webView:didClearWindowObject:forFrame: -Objective-C/instm/NSObject/webView:didCommitLoadForFrame: -Objective-C/instm/NSObject/webView:didFailLoadWithError:forFrame: -Objective-C/instm/NSObject/webView:didFailProvisionalLoadWithError:forFrame: -Objective-C/instm/NSObject/webView:didFinishLoadForFrame: -Objective-C/instm/NSObject/webView:didReceiveIcon:forFrame: -Objective-C/instm/NSObject/webView:didReceiveServerRedirectForProvisionalLoadForFrame: -Objective-C/instm/NSObject/webView:didReceiveTitle:forFrame: -Objective-C/instm/NSObject/webView:didStartProvisionalLoadForFrame: -Objective-C/instm/NSObject/webView:doCommandBySelector: -Objective-C/instm/NSObject/webView:dragDestinationActionMaskForDraggingInfo: -Objective-C/instm/NSObject/webView:dragSourceActionMaskForPoint: -Objective-C/instm/NSObject/webView:drawFooterInRect: -Objective-C/instm/NSObject/webView:drawHeaderInRect: -Objective-C/instm/NSObject/webView:identifierForInitialRequest:fromDataSource: -Objective-C/instm/NSObject/webView:makeFirstResponder: -Objective-C/instm/NSObject/webView:mouseDidMoveOverElement:modifierFlags: -Objective-C/instm/NSObject/webView:plugInFailedWithError:dataSource: -Objective-C/instm/NSObject/webView:printFrameView: -Objective-C/instm/NSObject/webView:resource:didCancelAuthenticationChallenge:fromDataSource: -Objective-C/instm/NSObject/webView:resource:didFailLoadingWithError:fromDataSource: -Objective-C/instm/NSObject/webView:resource:didFinishLoadingFromDataSource: -Objective-C/instm/NSObject/webView:resource:didReceiveAuthenticationChallenge:fromDataSource: -Objective-C/instm/NSObject/webView:resource:didReceiveContentLength:fromDataSource: -Objective-C/instm/NSObject/webView:resource:didReceiveResponse:fromDataSource: -Objective-C/instm/NSObject/webView:resource:willSendRequest:redirectResponse:fromDataSource: -Objective-C/instm/NSObject/webView:runBeforeUnloadConfirmPanelWithMessage:initiatedByFrame: -Objective-C/instm/NSObject/webView:runJavaScriptAlertPanelWithMessage: -Objective-C/instm/NSObject/webView:runJavaScriptAlertPanelWithMessage:initiatedByFrame: -Objective-C/instm/NSObject/webView:runJavaScriptConfirmPanelWithMessage: -Objective-C/instm/NSObject/webView:runJavaScriptConfirmPanelWithMessage:initiatedByFrame: -Objective-C/instm/NSObject/webView:runJavaScriptTextInputPanelWithPrompt:defaultText: -Objective-C/instm/NSObject/webView:runJavaScriptTextInputPanelWithPrompt:defaultText:initiatedByFrame: -Objective-C/instm/NSObject/webView:runOpenPanelForFileButtonWithResultListener: -Objective-C/instm/NSObject/webView:runOpenPanelForFileButtonWithResultListener:allowMultipleFiles: -Objective-C/instm/NSObject/webView:setContentRect: -Objective-C/instm/NSObject/webView:setFrame: -Objective-C/instm/NSObject/webView:setResizable: -Objective-C/instm/NSObject/webView:setStatusBarVisible: -Objective-C/instm/NSObject/webView:setStatusText: -Objective-C/instm/NSObject/webView:setToolbarsVisible: -Objective-C/instm/NSObject/webView:shouldApplyStyle:toElementsInDOMRange: -Objective-C/instm/NSObject/webView:shouldBeginEditingInDOMRange: -Objective-C/instm/NSObject/webView:shouldChangeSelectedDOMRange:toDOMRange:affinity:stillSelecting: -Objective-C/instm/NSObject/webView:shouldChangeTypingStyle:toStyle: -Objective-C/instm/NSObject/webView:shouldDeleteDOMRange: -Objective-C/instm/NSObject/webView:shouldEndEditingInDOMRange: -Objective-C/instm/NSObject/webView:shouldInsertNode:replacingDOMRange:givenAction: -Objective-C/instm/NSObject/webView:shouldInsertText:replacingDOMRange:givenAction: -Objective-C/instm/NSObject/webView:shouldPerformAction:fromSender: -Objective-C/instm/NSObject/webView:unableToImplementPolicyWithError:frame: -Objective-C/instm/NSObject/webView:validateUserInterfaceItem:defaultValidation: -Objective-C/instm/NSObject/webView:willCloseFrame: -Objective-C/instm/NSObject/webView:willPerformClientRedirectToURL:delay:fireDate:forFrame: -Objective-C/instm/NSObject/webView:willPerformDragDestinationAction:forDraggingInfo: -Objective-C/instm/NSObject/webView:willPerformDragSourceAction:fromPoint:withPasteboard: -Objective-C/instm/NSObject/webView:windowScriptObjectAvailable: -Objective-C/instm/NSObject/webViewAreToolbarsVisible: -Objective-C/instm/NSObject/webViewClose: -Objective-C/instm/NSObject/webViewContentRect: -Objective-C/instm/NSObject/webViewDidBeginEditing: -C/data/-/WebViewDidBeginEditingNotification -Objective-C/instm/NSObject/webViewDidChange: -C/data/-/WebViewDidChangeNotification -Objective-C/instm/NSObject/webViewDidChangeSelection: -C/data/-/WebViewDidChangeSelectionNotification -Objective-C/instm/NSObject/webViewDidChangeTypingStyle: -C/data/-/WebViewDidChangeTypingStyleNotification -Objective-C/instm/NSObject/webViewDidEndEditing: -C/data/-/WebViewDidEndEditingNotification -Objective-C/instm/NSObject/webViewFirstResponder: -Objective-C/instm/NSObject/webViewFocus: -Objective-C/instm/NSObject/webViewFooterHeight: -Objective-C/instm/NSObject/webViewFrame: -Objective-C/instm/NSObject/webViewHeaderHeight: -C/tdef/-/WebViewInsertAction -C/econst/-/WebViewInsertActionDropped -C/econst/-/WebViewInsertActionPasted -C/econst/-/WebViewInsertActionTyped -Objective-C/instm/NSObject/webViewIsResizable: -Objective-C/instm/NSObject/webViewIsStatusBarVisible: -C/data/-/WebViewProgressEstimateChangedNotification -C/data/-/WebViewProgressFinishedNotification -C/data/-/WebViewProgressStartedNotification -Objective-C/instm/NSObject/webViewRunModal: -Objective-C/instm/NSObject/webViewShow: -Objective-C/instm/NSObject/webViewStatusText: -Objective-C/instm/NSObject/webViewUnfocus: -C/func/-/wecho_wchar -C/func/-/wechochar -Objective-C/instm/NSDateComponents/week -Objective-C/instm/NSDateComponents/weekday -Objective-C/instm/NSDateComponents/weekdayOrdinal -Objective-C/instm/NSDateFormatter/weekdaySymbols -Objective-C/instm/CalNthWeekDay/weekNumber -Objective-C/instp/CalNthWeekDay/weekNumber -Objective-C/instm/NSFontManager/weightOfFont: -C/func/-/wenclose -C/func/-/werase -C/func/-/wget_wch -C/func/-/wget_wstr -C/func/-/wgetbkgrnd -C/func/-/wgetch -C/func/-/wgetn_wstr -C/func/-/wgetnstr -C/func/-/wgetparent -C/func/-/wgetscrreg -C/func/-/wgetstr -JavaScript/data/NodeIterator/whatToShow -JavaScript/data/TreeWalker/whatToShow -JavaScript/data/WheelEvent/wheelDelta -JavaScript/data/WheelEvent/wheelDeltaX -JavaScript/data/WheelEvent/wheelDeltaY -JavaScript/data/DOMWindow/WheelEvent -JavaScript/cl/-/WheelEvent -JavaScript/data/UIEvent/which -C/func/-/while -Objective-C/clm/NSColor/whiteColor -Objective-C/instm/NSColor/whiteComponent -C/func/-/WhitePixel -C/func/-/WhitePixelOfScreen -Objective-C/clm/NSCharacterSet/whitespaceAndNewlineCharacterSet -Objective-C/clm/NSCharacterSet/whitespaceCharacterSet -C/func/-/whline -C/func/-/whline_set -JavaScript/data/Text/wholeText -C/tag/-/wide -Objective-C/instm/NSTableColumn/width -Objective-C/instm/FxImage/width -Objective-C/binding/NSTableColumn/width -JavaScript/data/ClientRect/width -JavaScript/data/ImageData/width -JavaScript/data/HTMLFrameElement/width -JavaScript/data/HTMLPreElement/width -JavaScript/data/HTMLCanvasElement/width -JavaScript/data/HTMLTableColElement/width -JavaScript/data/HTMLTableElement/width -JavaScript/data/HTMLObjectElement/width -JavaScript/data/HTMLAppletElement/width -JavaScript/data/HTMLTableCellElement/width -JavaScript/data/HTMLHRElement/width -JavaScript/data/HTMLVideoElement/width -JavaScript/data/HTMLEmbedElement/width -JavaScript/data/HTMLImageElement/width -JavaScript/data/HTMLIFrameElement/width -JavaScript/data/HTMLDocument/width -JavaScript/data/SVGImageElement/width -JavaScript/data/SVGFilterElement/width -JavaScript/data/SVGFilterPrimitiveStandardAttributes/width -JavaScript/data/Screen/width -JavaScript/data/SVGForeignObjectElement/width -JavaScript/data/SVGMaskElement/width -JavaScript/data/SVGRectElement/width -JavaScript/data/SVGRect/width -JavaScript/data/SVGSVGElement/width -JavaScript/data/TextMetrics/width -JavaScript/data/SVGUseElement/width -JavaScript/data/SVGPatternElement/width -Objective-C/instm/NSView/widthAdjustLimit -Objective-C/instm/NSTextBlock/widthForLayer:edge: -Objective-C/instm/NSSegmentedCell/widthForSegment: -Objective-C/instm/NSSegmentedControl/widthForSegment: -C/func/-/WidthMMOfScreen -Objective-C/instm/NSBrowser/widthOfColumn: -C/func/-/WidthOfScreen -Objective-C/instm/NSFont/widthOfString: -Objective-C/instm/NSTextContainer/widthTracksTextView -Objective-C/instm/NSTextBlock/widthValueTypeForLayer:edge: -Objective-C/instm/NSManagedObject/willAccessValueForKey: -Objective-C/instm/SFAuthorizationPluginView/willActivateWithUser: -Objective-C/intfm/ApertureExportPlugIn/willBeActivated -Objective-C/intfm/ApertureExportPlugIn/willBeDeactivated -Objective-C/instm/NSObject/willChange:valuesAtIndexes:forKey: -Objective-C/instm/NSObject/willChangePPDOptionKeyValue:ppdChoice: -Objective-C/instm/NSObject/willChangeValueForKey: -Objective-C/instm/NSManagedObject/willChangeValueForKey: -Objective-C/instm/NSObject/willChangeValueForKey:withSetMutation:usingObjects: -Objective-C/instm/NSManagedObject/willChangeValueForKey:withSetMutation:usingObjects: -Objective-C/instm/AMAction/willFinishRunning -Objective-C/instm/NSDocument/willPresentError: -Objective-C/instm/NSDocumentController/willPresentError: -Objective-C/instm/NSResponder/willPresentError: -Objective-C/instm/NSAtomicStore/willRemoveCacheNodes: -Objective-C/instm/NSPersistentStore/willRemoveFromPersistentStoreCoordinator: -Objective-C/instm/NSView/willRemoveSubview: -Objective-C/instm/NSManagedObject/willSave -Objective-C/instm/NSPreferencePane/willSelect -Objective-C/instm/NSATSTypesetter/willSetLineFragmentRect:forGlyphRange:usedRect:baselineOffset: -Objective-C/instm/NSTypesetter/willSetLineFragmentRect:forGlyphRange:usedRect:baselineOffset: -Objective-C/instm/NSObject/willShow -C++/instm/IOSCSIProtocolInterface/willTerminate -C++/instm/IOService/willTerminate -Objective-C/instm/NSManagedObject/willTurnIntoFault -Objective-C/instm/IBPlugin/willUnload -Objective-C/instm/NSPreferencePane/willUnselect -JavaScript/data/HTMLFieldSetElement/willValidate -JavaScript/data/HTMLObjectElement/willValidate -JavaScript/data/HTMLButtonElement/willValidate -JavaScript/data/HTMLSelectElement/willValidate -JavaScript/data/HTMLTextAreaElement/willValidate -JavaScript/data/HTMLInputElement/willValidate -C/func/-/win_wch -C/func/-/win_wchnstr -C/func/-/win_wchstr -C/func/-/winch -C/func/-/winchnstr -C/func/-/winchstr -Objective-C/instm/NSBezierPath/windingRule -Objective-C/instm/NSWindowController/window -Objective-C/instm/NSCachedImageRep/window -Objective-C/intfm/ApertureExportManager/window -Objective-C/instm/NSAlert/window -Objective-C/instm/NSView/window -Objective-C/instm/NSEvent/window -JavaScript/data/DOMWindow/window -Objective-C/intfm/NSWindowDelegate/window:shouldDragDocumentWithEvent:from:withPasteboard: -Objective-C/intfm/NSWindowDelegate/window:shouldPopUpDocumentPathMenu: -Objective-C/intfm/NSWindowDelegate/window:willPositionSheet:usingRect: -Objective-C/clm/NSColor/windowBackgroundColor -Objective-C/instm/NSWindow/windowController -Objective-C/instm/NSDocument/windowControllerDidLoadNib: -Objective-C/instm/NSDocument/windowControllers -Objective-C/instm/NSDocument/windowControllerWillLoadNib: -Objective-C/intfm/NSWindowDelegate/windowDidBecomeKey: -Objective-C/intfm/NSWindowDelegate/windowDidBecomeMain: -Objective-C/intfm/NSWindowDelegate/windowDidChangeScreen: -Objective-C/intfm/NSWindowDelegate/windowDidChangeScreenProfile: -Objective-C/intfm/NSWindowDelegate/windowDidDeminiaturize: -Objective-C/intfm/NSWindowDelegate/windowDidEndLiveResize: -Objective-C/intfm/NSWindowDelegate/windowDidEndSheet: -Objective-C/intfm/NSWindowDelegate/windowDidExpose: -Objective-C/instm/NSWindowController/windowDidLoad -Objective-C/intfm/NSWindowDelegate/windowDidMiniaturize: -Objective-C/intfm/NSWindowDelegate/windowDidMove: -Objective-C/intfm/NSWindowDelegate/windowDidResignKey: -Objective-C/intfm/NSWindowDelegate/windowDidResignMain: -Objective-C/intfm/NSWindowDelegate/windowDidResize: -Objective-C/intfm/NSWindowDelegate/windowDidUpdate: -Objective-C/instm/NSDocument/windowForSheet -Objective-C/instm/NSWindowController/windowFrameAutosaveName -Objective-C/clm/NSColor/windowFrameColor -Objective-C/clm/NSColor/windowFrameTextColor -Objective-C/instm/PDFAnnotationText/windowIsOpen -Objective-C/intfm/IMKTextInput/windowLevel -Objective-C/intfm/NSTextInputClient/windowLevel -Objective-C/instm/NSWindowController/windowNibName -Objective-C/instm/NSDocument/windowNibName -Objective-C/instm/NSWindowController/windowNibPath -Objective-C/instm/NSWindow/windowNumber -Objective-C/instm/NSEvent/windowNumber -Objective-C/clm/NSWindow/windowNumberAtPoint:belowWindowWithWindowNumber: -Objective-C/clm/NSWindow/windowNumbersWithOptions: -Objective-C/instm/WebFrame/windowObject -C/tdef/-/WindowPtr -C/tdef/-/WindowRef -Objective-C/instm/NSWindow/windowRef -Objective-C/instm/NSApplication/windows -Objective-C/instm/WebView/windowScriptObject -Objective-C/intfm/NSWindowDelegate/windowShouldClose: -Objective-C/intfm/NSWindowDelegate/windowShouldZoom:toFrame: -Objective-C/clm/NSLocale/windowsLocaleCodeFromLocaleIdentifier: -Objective-C/instm/NSApplication/windowsMenu -Objective-C/instm/NSWindowController/windowTitleForDocumentDisplayName: -Objective-C/intfm/NSWindowDelegate/windowWillBeginSheet: -Objective-C/intfm/NSWindowDelegate/windowWillClose: -Objective-C/instm/NSWindowController/windowWillLoad -Objective-C/intfm/NSWindowDelegate/windowWillMiniaturize: -Objective-C/intfm/NSWindowDelegate/windowWillMove: -Objective-C/intfm/NSWindowDelegate/windowWillResize:toSize: -Objective-C/intfm/NSWindowDelegate/windowWillReturnFieldEditor:toObject: -Objective-C/intfm/NSWindowDelegate/windowWillReturnUndoManager: -Objective-C/intfm/NSWindowDelegate/windowWillStartLiveResize: -Objective-C/intfm/NSWindowDelegate/windowWillUseStandardFrame:defaultFrame: -Objective-C/instm/NSApplication/windowWithWindowNumber: -C/func/-/winnstr -C/func/-/winnwstr -C/func/-/wins_nwstr -C/func/-/wins_wch -C/func/-/wins_wstr -C/func/-/winsch -C/func/-/winsdelln -C/func/-/winsertln -C/func/-/winsnstr -C/func/-/winsstr -C/func/-/winstr -C/func/-/winwstr -Objective-C/instp/CWNetwork/wirelessProfile -JavaScript/clconst/JavaScriptCallFrame/WITH_SCOPE -C/macro/-/WITH_TRIO -C++/clm/IOMemoryDescriptor/withAddress -Objective-C/clm/IOBluetoothDevice/withAddress: -C++/clm/IOMemoryDescriptor/withAddressRange -C++/clm/IOMemoryDescriptor/withAddressRanges -C++/clm/OSArray/withArray -C++/clm/OSSet/withArray -C++/clm/IOAudioPort/withAttributes -C++/clm/IOAudioControl/withAttributes -C++/clm/OSBoolean/withBoolean -C++/clm/IOStream/withBuffers -C++/clm/OSData/withBytes -C++/clm/OSData/withBytesNoCopy -C++/clm/IODataQueue/withCapacity -C++/clm/IOInterleavedMemoryDescriptor/withCapacity -C++/clm/IOPacketQueue/withCapacity -C++/clm/IOSharedDataQueue/withCapacity -C++/clm/OSDictionary/withCapacity -C++/clm/OSArray/withCapacity -C++/clm/OSData/withCapacity -C++/clm/OSSet/withCapacity -C++/clm/OSOrderedSet/withCapacity -C++/clm/OSSerialize/withCapacity -C++/clm/OSCollectionIterator/withCollection -JavaScript/data/XMLHttpRequest/withCredentials -C++/clm/OSSymbol/withCString -C++/clm/OSString/withCString -C++/clm/OSString/withCStringNoCopy -C++/clm/OSSymbol/withCStringNoCopy -C++/clm/OSData/withData -C++/clm/IOMultiMemoryDescriptor/withDescriptors -Objective-C/clm/IOBluetoothOBEXSession/withDevice:channelID: -Objective-C/clm/IOBluetoothDevice/withDeviceRef: -Objective-C/clm/IOBluetoothDeviceSelectorController/withDeviceSelectorControllerRef: -C++/clm/OSDictionary/withDictionary -JavaScript/instm/TestObj/withDynamicFrame -JavaScript/instm/TestObj/withDynamicFrameAndArg -JavaScript/instm/TestObj/withDynamicFrameAndOptionalArg -JavaScript/instm/TestObj/withDynamicFrameAndUserGesture -JavaScript/instm/TestObj/withDynamicFrameAndUserGestureASAD -Objective-C/clm/IOBluetoothSDPDataElement/withElementValue: -C++/clm/IODataQueue/withEntries -C++/clm/IOSharedDataQueue/withEntries -C++/clm/IONetworkData/withExternalBuffer -Objective-C/clm/IOBluetoothSDPServiceAttribute/withID:attributeElement: -Objective-C/clm/IOBluetoothSDPServiceAttribute/withID:attributeElementValue: -Objective-C/clm/IOBluetoothOBEXSession/withIncomingRFCOMMChannel:eventSelector:selectorTarget:refCon: -C++/clm/IONetworkData/withInternalBuffer -Objective-C/clm/IOBluetoothL2CAPChannel/withL2CAPChannelRef: -C++/clm/IOStreamBuffer/withMemoryDescriptors -C++/clm/IONetworkData/withNoBuffer -C++/clm/OSNumber/withNumber -Objective-C/clm/IOBluetoothRFCOMMChannel/withObjectID: -Objective-C/clm/IOBluetoothL2CAPChannel/withObjectID: -C++/clm/OSArray/withObjects -C++/clm/OSDictionary/withObjects -C++/clm/OSSet/withObjects -C++/clm/IOMemoryDescriptor/withOptions -C/macro/-/WITHOUT_TRIO -Objective-C/clm/IOBluetoothPairingController/withPairingControllerRef: -C++/clm/IOMemoryDescriptor/withPersistentMemoryDescriptor -C++/clm/IOMemoryDescriptor/withPhysicalAddress -C++/clm/IODeviceMemory/withRange -C++/clm/IORangeAllocator/withRange -Objective-C/clm/IOBluetoothRFCOMMChannel/withRFCOMMChannelRef: -JavaScript/instm/TestObj/withScriptStateObj -JavaScript/instm/TestObj/withScriptStateObjException -JavaScript/instm/TestObj/withScriptStateVoid -JavaScript/instm/TestObj/withScriptStateVoidException -Objective-C/clm/IOBluetoothSDPDataElement/withSDPDataElementRef: -Objective-C/clm/IOBluetoothOBEXSession/withSDPServiceRecord: -Objective-C/clm/IOBluetoothSDPServiceRecord/withSDPServiceRecordRef: -Objective-C/clm/IOBluetoothSDPUUID/withSDPUUIDRef: -Objective-C/clm/IOBluetoothServiceBrowserController/withServiceBrowserControllerRef: -Objective-C/clm/IOBluetoothSDPServiceRecord/withServiceDictionary:device: -C++/clm/OSSet/withSet -C++/clm/IODMACommand/withSpecification -C++/clm/IOLittleMemoryCursor/withSpecification -C++/clm/IOMbufBigMemoryCursor/withSpecification -C++/clm/IOMbufNaturalMemoryCursor/withSpecification -C++/clm/IONaturalMemoryCursor/withSpecification -C++/clm/IOBigMemoryCursor/withSpecification -C++/clm/IOMbufLittleMemoryCursor/withSpecification -C++/clm/IODBDMAMemoryCursor/withSpecification -C++/clm/IOMemoryCursor/withSpecification -C++/clm/IOMbufDBDMAMemoryCursor/withSpecification -C++/clm/OSSymbol/withString -C++/clm/OSString/withString -C++/clm/IODeviceMemory/withSubRange -C++/clm/IOSubMemoryDescriptor/withSubRange -C++/clm/IOBasicOutputQueue/withTarget -C++/clm/IOGatedOutputQueue/withTarget -Objective-C/clm/IOBluetoothSDPDataElement/withType:sizeDescriptor:size:value: -C++/clm/IOCommandPool/withWorkLoop -C/func/-/wmemchr -C/func/-/wmemcmp -C/func/-/wmemcpy -C/func/-/wmemmove -C/func/-/wmemset -C/func/-/wmouse_trafo -C/func/-/wmove -C/func/-/wnoutrefresh -C/func/-/wordexp -C/func/-/wordfree -Objective-C/instm/NSTextStorage/words -JavaScript/data/DOMWindow/Worker -JavaScript/cl/-/Worker -JavaScript/cl/-/WorkerContext -JavaScript/cl/-/WorkerLocation -JavaScript/data/WorkerContext/WorkerLocation -JavaScript/cl/-/WorkerNavigator -Objective-C/instm/AMWorkflowController/workflow -Objective-C/instm/AMWorkflowView/workflowController -Objective-C/instm/NSObject/workflowController:didError: -Objective-C/instm/NSObject/workflowController:didRunAction: -Objective-C/instm/NSObject/workflowController:willRunAction: -Objective-C/instm/NSObject/workflowControllerDidRun: -Objective-C/instm/NSObject/workflowControllerDidStop: -Objective-C/instm/NSObject/workflowControllerWillRun: -Objective-C/instm/NSObject/workflowControllerWillStop: -Objective-C/instm/AMWorkflowController/workflowView -C++/data/IOAudioDevice/workLoop -C++/data/IOEventSource/workLoop -C++/data/IOAudioControl/workLoop -C++/data/IOAudioEngine/workLoop -C++/clm/IOWorkLoop/workLoop -C++/clm/IOWorkLoop/workLoopWithOptions -Objective-C/instm/NSPanel/worksWhenModal -Objective-C/instm/NSFontPanel/worksWhenModal -Objective-C/instm/NSWindow/worksWhenModal -C++/data/IOWorkLoop/workThread -C++/data/IOWorkLoop/workToDo -C++/data/IOWorkLoop/workToDoLock -C/econst/-/wPrErr -C/func/-/wprintf -C/func/-/wprintf_l -C/func/-/wprintw -JavaScript/data/HTMLPreElement/wrap -Objective-C/instp/CATextLayer/wrapped -Objective-C/instm/NSCell/wraps -C/func/-/wredrawln -C/func/-/wrefresh -C/func/-/wresize -C/econst/-/wrgVolTypErr -Objective-C/instm/NSTextView/writablePasteboardTypes -Objective-C/clm/NSDocument/writableTypes -Objective-C/intfm/NSPasteboardWriting/writableTypesForPasteboard: -Objective-C/instm/NSDocument/writableTypesForSaveOperation: -C/func/-/write -C++/instm/IOFilterScheme/write -C++/instm/IOBlockStorageDriver/write -C++/instm/IONetworkData/write -C++/instm/IOMedia/write -C++/instm/IOUSBPipe/Write -C++/instm/IOPartitionScheme/write -C++/instm/IOUSBController/Write -C++/instm/IOStorage/write -JavaScript/instm/HTMLDocument/write -Objective-C/instm/IOBluetoothL2CAPChannel/write:length: -Objective-C/instm/IOBluetoothRFCOMMChannel/write:length:sleep: -Objective-C/instm/NSOutputStream/write:maxLength: -Objective-C/instm/IOBluetoothRFCOMMChannel/writeAsync:length:refcon: -Objective-C/instm/IOBluetoothL2CAPChannel/writeAsync:length:refcon: -Objective-C/clm/NSURL/writeBookmarkData:toURL:options:error: -C++/instm/IODMACommand/writeBytes -C++/instm/IONetworkData/writeBytes -C++/instm/IOMemoryDescriptor/writeBytes -Objective-C/instm/NSURLHandle/writeData: -Objective-C/instm/NSFileHandle/writeData: -Objective-C/instm/WebView/writeElement:withPasteboardTypes:toPasteboard: -Objective-C/instm/NSView/writeEPSInsideRect:toPasteboard: -Objective-C/instm/NSPasteboard/writeFileContents: -Objective-C/instm/NSPasteboard/writeFileWrapper: -Objective-C/instm/DRBurn/writeLayout: -JavaScript/instm/HTMLDocument/writeln -C++/instm/IONetworkUserClient/writeNetworkData -Objective-C/instm/NSPasteboard/writeObjects: -C/func/-/WritePartialResource -Objective-C/instm/NSView/writePDFInsideRect:toPasteboard: -Objective-C/instm/NSPageLayout/writePrintInfo -Objective-C/instm/NSURLHandle/writeProperty:forKey: -Objective-C/clm/NSPropertyListSerialization/writePropertyList:toStream:format:options:error: -C/func/-/WriteResource -Objective-C/instm/NSText/writeRTFDToFile:atomically: -Objective-C/instm/NSDocument/writeSafelyToURL:ofType:forSaveOperation:error: -Objective-C/instm/DRDevice(InfoConvenience)/writesCD -Objective-C/instm/DRDevice(InfoConvenience)/writesDVD -Objective-C/instm/NSTextView/writeSelectionToPasteboard:type: -Objective-C/instm/NSTextView/writeSelectionToPasteboard:types: -Objective-C/instm/NSObject/writeSelectionToPasteboard:types: -Objective-C/instm/WebView/writeSelectionWithPasteboardTypes:toPasteboard: -Objective-C/instm/IOBluetoothRFCOMMChannel/writeSimple:length:sleep:bytesSent: -Objective-C/instm/IOBluetoothL2CAPChannel/writeSync:length: -Objective-C/instm/IOBluetoothRFCOMMChannel/writeSync:length: -Objective-C/instm/AMAction/writeToDictionary: -Objective-C/instm/NSColorList/writeToFile: -Objective-C/instm/PDFDocument/writeToFile: -Objective-C/instm/NSDictionary/writeToFile:atomically: -Objective-C/instm/NSArray/writeToFile:atomically: -Objective-C/instm/NSString/writeToFile:atomically: -Objective-C/instm/NSData/writeToFile:atomically: -Objective-C/instm/NSString/writeToFile:atomically:encoding:error: -Objective-C/instm/NSFileWrapper/writeToFile:atomically:updateFilenames: -Objective-C/instm/NSDocument/writeToFile:ofType: -Objective-C/instm/NSDocument/writeToFile:ofType:originalFile:saveOperation: -Objective-C/instm/NSData/writeToFile:options:error: -Objective-C/instm/QTMovie/writeToFile:withAttributes: -Objective-C/instm/QTMovie/writeToFile:withAttributes:error: -Objective-C/instm/PDFDocument/writeToFile:withOptions: -Objective-C/instm/NSURL/writeToPasteboard: -Objective-C/instm/NSColor/writeToPasteboard: -Objective-C/instm/NSSound/writeToPasteboard: -Objective-C/instm/PDFDocument/writeToURL: -Objective-C/instm/CIFilterGenerator/writeToURL:atomically: -Objective-C/instm/NSDictionary/writeToURL:atomically: -Objective-C/instm/NSArray/writeToURL:atomically: -Objective-C/instm/NSString/writeToURL:atomically: -Objective-C/instm/NSData/writeToURL:atomically: -Objective-C/instm/NSString/writeToURL:atomically:encoding:error: -Objective-C/instm/AMWorkflow/writeToURL:error: -Objective-C/instm/NSDocument/writeToURL:ofType: -Objective-C/instm/NSDocument/writeToURL:ofType:error: -Objective-C/instm/NSPersistentDocument/writeToURL:ofType:forSaveOperation:originalContentsURL:error: -Objective-C/instm/NSDocument/writeToURL:ofType:forSaveOperation:originalContentsURL:error: -Objective-C/instm/NSData/writeToURL:options:error: -Objective-C/instm/NSFileWrapper/writeToURL:options:originalContentsURL:error: -Objective-C/instm/PDFDocument/writeToURL:withOptions: -C/func/-/writev -Objective-C/instm/NSDocument/writeWithBackupToFile:ofType:saveOperation: -Objective-C/intfm/NSPasteboardWriting/writingOptionsForType:pasteboard: -C/econst/-/writingPastEnd -JavaScript/clconst/DOMCoreException/WRONG_DOCUMENT_ERR -C/econst/-/wrongApplicationPlatform -C/econst/-/wrPermErr -C/func/-/wscanf -C/func/-/wscanf_l -C/func/-/wscanw -C/tdef/-/WSClientContext -C/tdef/-/WSClientContextCopyDescriptionCallBackProcPtr -C/tdef/-/WSClientContextReleaseCallBackProcPtr -C/tdef/-/WSClientContextRetainCallBackProcPtr -C/func/-/wscrl -C/func/-/wsetscrreg -C/func/-/WSGetCFTypeIDFromWSTypeID -C/func/-/WSGetWSTypeIDFromCFType -C/func/-/WSMethodInvocationAddDeserializationOverride -C/func/-/WSMethodInvocationAddSerializationOverride -C/tdef/-/WSMethodInvocationCallBackProcPtr -C/func/-/WSMethodInvocationCopyParameters -C/func/-/WSMethodInvocationCopyProperty -C/func/-/WSMethodInvocationCopySerialization -C/func/-/WSMethodInvocationCreate -C/func/-/WSMethodInvocationCreateFromSerialization -C/tdef/-/WSMethodInvocationDeserializationProcPtr -C/func/-/WSMethodInvocationGetTypeID -C/func/-/WSMethodInvocationInvoke -C/tdef/-/WSMethodInvocationRef -C/func/-/WSMethodInvocationScheduleWithRunLoop -C/tdef/-/WSMethodInvocationSerializationProcPtr -C/func/-/WSMethodInvocationSetCallBack -C/func/-/WSMethodInvocationSetParameters -C/func/-/WSMethodInvocationSetProperty -C/func/-/WSMethodInvocationUnscheduleFromRunLoop -C/func/-/WSMethodResultIsFault -C/func/-/WSProtocolHandlerCopyFaultDocument -C/func/-/WSProtocolHandlerCopyProperty -C/func/-/WSProtocolHandlerCopyReplyDictionary -C/func/-/WSProtocolHandlerCopyReplyDocument -C/func/-/WSProtocolHandlerCopyRequestDictionary -C/func/-/WSProtocolHandlerCopyRequestDocument -C/func/-/WSProtocolHandlerCreate -C/tdef/-/WSProtocolHandlerDeserializationProcPtr -C/func/-/WSProtocolHandlerGetTypeID -C/tdef/-/WSProtocolHandlerRef -C/tdef/-/WSProtocolHandlerSerializationProcPtr -C/func/-/WSProtocolHandlerSetDeserializationOverride -C/func/-/WSProtocolHandlerSetProperty -C/func/-/WSProtocolHandlerSetSerializationOverride -C/func/-/wstandend -C/func/-/wstandout -C/tdef/-/WSTypeID -C/func/-/wsyncdown -C/func/-/wsyncup -C/func/-/wtimeout -C/func/-/wtouchln -C/func/-/wunctrl -C/func/-/wvline -C/func/-/wvline_set -C++/cl/-/wxExtHelpController -Objective-C/instm/CIVector/X -JavaScript/data/HTMLImageElement/x -JavaScript/data/SVGForeignObjectElement/x -JavaScript/data/SVGFEPointLightElement/x -JavaScript/data/SVGFilterPrimitiveStandardAttributes/x -JavaScript/data/SVGCursorElement/x -JavaScript/data/SVGFESpotLightElement/x -JavaScript/data/SVGImageElement/x -JavaScript/data/MouseEvent/x -JavaScript/data/SVGMaskElement/x -JavaScript/data/SVGFilterElement/x -JavaScript/data/SVGPathSegCurvetoCubicRel/x -JavaScript/data/SVGPathSegArcAbs/x -JavaScript/data/SVGPathSegLinetoAbs/x -JavaScript/data/SVGPatternElement/x -JavaScript/data/SVGPathSegLinetoHorizontalRel/x -JavaScript/data/SVGPathSegMovetoAbs/x -JavaScript/data/SVGRectElement/x -JavaScript/data/SVGPathSegCurvetoCubicSmoothAbs/x -JavaScript/data/SVGPathSegCurvetoQuadraticSmoothRel/x -JavaScript/data/SVGPathSegCurvetoCubicAbs/x -JavaScript/data/SVGPathSegCurvetoCubicSmoothRel/x -JavaScript/data/SVGPathSegArcRel/x -JavaScript/data/SVGPathSegCurvetoQuadraticAbs/x -JavaScript/data/SVGTextPositioningElement/x -JavaScript/data/SVGRect/x -JavaScript/data/SVGPathSegMovetoRel/x -JavaScript/data/SVGPathSegCurvetoQuadraticRel/x -JavaScript/data/SVGSVGElement/x -JavaScript/data/SVGUseElement/x -JavaScript/data/SVGPathSegLinetoRel/x -JavaScript/data/SVGPathSegCurvetoQuadraticSmoothAbs/x -JavaScript/data/SVGPathSegLinetoHorizontalAbs/x -JavaScript/data/SVGPoint/x -JavaScript/data/WebKitPoint/x -JavaScript/data/WheelEvent/x -JavaScript/data/SVGLinearGradientElement/x1 -JavaScript/data/SVGLineElement/x1 -JavaScript/data/SVGPathSegCurvetoQuadraticRel/x1 -JavaScript/data/SVGPathSegCurvetoCubicRel/x1 -JavaScript/data/SVGPathSegCurvetoCubicAbs/x1 -JavaScript/data/SVGPathSegCurvetoQuadraticAbs/x1 -JavaScript/data/SVGLinearGradientElement/x2 -JavaScript/data/SVGLineElement/x2 -JavaScript/data/SVGPathSegCurvetoCubicRel/x2 -JavaScript/data/SVGPathSegCurvetoCubicSmoothAbs/x2 -JavaScript/data/SVGPathSegCurvetoCubicSmoothRel/x2 -JavaScript/data/SVGPathSegCurvetoCubicAbs/x2 -C/func/-/x509 -C/func/-/X509_free -C/func/-/X509_NAME_add_entry -C/func/-/X509_NAME_add_entry_by_NID -C/func/-/X509_NAME_add_entry_by_OBJ -C/func/-/X509_NAME_add_entry_by_txt -C/func/-/X509_NAME_delete_entry -C/func/-/X509_NAME_entry_count -C/func/-/X509_NAME_ENTRY_create_by_NID -C/func/-/X509_NAME_ENTRY_create_by_OBJ -C/func/-/X509_NAME_ENTRY_create_by_txt -C/func/-/X509_NAME_ENTRY_get_data -C/func/-/X509_NAME_ENTRY_get_object -C/func/-/X509_NAME_ENTRY_set_data -C/func/-/X509_NAME_ENTRY_set_object -C/func/-/X509_NAME_get_entry -C/func/-/X509_NAME_get_index_by_NID -C/func/-/X509_NAME_get_index_by_OBJ -C/func/-/X509_NAME_get_text_by_NID -C/func/-/X509_NAME_get_text_by_OBJ -C/func/-/X509_NAME_oneline -C/func/-/X509_NAME_print -C/func/-/X509_NAME_print_ex -C/func/-/X509_NAME_print_ex_fp -C/func/-/X509_new -Objective-C/instm/CAEmitterCell/xAcceleration -Objective-C/instp/CAEmitterCell/xAcceleration -C/func/-/XActivateScreenSaver -C/func/-/XAddConnectionWatch -C/func/-/XAddHost -C/func/-/XAddHosts -C/func/-/XAddPixel -C/func/-/XAddToSaveSet -C/func/-/XAllocClassHint -C/func/-/XAllocColor -C/func/-/XAllocColorCells -C/func/-/XAllocColorPlanes -C/func/-/XAllocIconSize -C/func/-/XAllocNamedColor -C/func/-/XAllocSizeHints -C/func/-/XAllocStandardColormap -C/func/-/XAllocWMHints -C/func/-/XAllowDeviceEvents -C/func/-/XAllowEvents -C/func/-/XAnyEvent -C/func/-/XArc -C/func/-/Xau -C/func/-/XauDisposeAuth -C/func/-/XauFileName -C/func/-/XauGetAuthByAddr -C/func/-/XauGetBestAuthByAddr -C/func/-/XauLockAuth -C/func/-/XauReadAuth -C/func/-/XAutoRepeatOff -C/func/-/XAutoRepeatOn -C/func/-/XauUnlockAuth -C/func/-/XauWriteAuth -C/func/-/Xaw -C/func/-/XBaseFontNameListOfFontSet -C/func/-/XBell -C/func/-/XButtonEvent -C/func/-/XChangeActivePointerGrab -C/func/-/XChangeDeviceControl -C/func/-/XChangeDeviceDontPropagateList -C/func/-/XChangeDeviceKeyMapping -C/func/-/XChangeDeviceProperty -C/func/-/XChangeFeedbackControl -C/func/-/XChangeGC -C/func/-/XChangeKeyboardControl -C/func/-/XChangeKeyboardDevice -C/func/-/XChangeKeyboardMapping -C/func/-/XChangePointerControl -C/func/-/XChangePointerDevice -C/func/-/XChangeProperty -C/func/-/XChangeSaveSet -C/func/-/XChangeWindowAttributes -JavaScript/data/SVGFEDisplacementMapElement/xChannelSelector -C/func/-/XChar2b -C/func/-/XCharStruct -C/func/-/XCheckIfEvent -C/func/-/XCheckMaskEvent -C/func/-/XCheckTypedEvent -C/func/-/XCheckTypedWindowEvent -C/func/-/XCheckWindowEvent -C/tdef/-/XCInfoPBRec -C/func/-/XCirculateEvent -C/func/-/XCirculateRequestEvent -C/func/-/XCirculateSubwindows -C/func/-/XCirculateSubwindowsDown -C/func/-/XCirculateSubwindowsUp -C/func/-/XClassHint -C/func/-/XClearArea -C/func/-/XClearWindow -C/func/-/XClientMessageEvent -C/func/-/XClipBox -C/func/-/XCloseDevice -C/func/-/XCloseDisplay -C/func/-/XCloseIM -C/func/-/XCloseOM -C/func/-/XcmsAllocColor -C/func/-/XcmsAllocNamedColor -C/func/-/XcmsCCCOfColormap -C/func/-/XcmsCIELab -C/func/-/XcmsCIELabQueryMaxC -C/func/-/XcmsCIELabQueryMaxL -C/func/-/XcmsCIELabQueryMaxLC -C/func/-/XcmsCIELabQueryMinL -C/func/-/XcmsCIELuv -C/func/-/XcmsCIELuvQueryMaxC -C/func/-/XcmsCIELuvQueryMaxL -C/func/-/XcmsCIELuvQueryMaxLC -C/func/-/XcmsCIELuvQueryMinL -C/func/-/XcmsCIEuvY -C/func/-/XcmsCIExyY -C/func/-/XcmsCIEXYZ -C/func/-/XcmsColor -C/func/-/XcmsConvertColors -C/func/-/XcmsCreateCCC -C/func/-/XcmsDefaultCCC -C/func/-/XcmsFreeCCC -C/func/-/XcmsLookupColor -C/func/-/XcmsPad -C/func/-/XcmsQueryBlack -C/func/-/XcmsQueryBlue -C/func/-/XcmsQueryColor -C/func/-/XcmsQueryColors -C/func/-/XcmsQueryGreen -C/func/-/XcmsQueryRed -C/func/-/XcmsQueryWhite -C/func/-/XcmsRGB -C/func/-/XcmsRGBi -C/func/-/XcmsSetCCCOfColormap -C/func/-/XcmsSetWhiteAdjustProc -C/func/-/XcmsSetWhitePoint -C/func/-/XcmsStoreColor -C/func/-/XcmsStoreColors -C/func/-/XcmsTekHVC -C/func/-/XcmsTekHVCQueryMaxC -C/func/-/XcmsTekHVCQueryMaxV -C/func/-/XcmsTekHVCQueryMaxVC -C/func/-/XcmsTekHVCQueryMaxVSamples -C/func/-/XcmsTekHVCQueryMinV --/writerid/-/xcode_research_assistant --/writerid/-/xcode_user_guide_build_configurations_editing --/writerid/-/xcode_user_guide_build_phases --/writerid/-/xcode_user_guide_build_rules --/writerid/-/xcode_user_guide_build_settings_editing --/writerid/-/xcode_user_guide_command_line_arguments_and_environment_variables_setting --/writerid/-/xcode_user_guide_copy_files_build_phase --/writerid/-/xcode_user_guide_design_colors_and_fonts --/writerid/-/xcode_user_guide_design_filtering_and_hiding --/writerid/-/xcode_user_guide_design_indexing_and_tracking --/writerid/-/xcode_user_guide_design_info_window --/writerid/-/xcode_user_guide_documentation_window_appearance_controlling --/writerid/-/xcode_user_guide_executable_debugging_configuring --/writerid/-/xcode_user_guide_executable_environment_settings_editing --/writerid/-/xcode_user_guide_file_compiler_flags --/writerid/-/xcode_user_guide_file_info --/writerid/-/xcode_user_guide_organizer --/writerid/-/xcode_user_guide_plist_entries --/writerid/-/xcode_user_guide_project_attributes --/writerid/-/xcode_user_guide_project_comments --/writerid/-/xcode_user_guide_refactoring --/writerid/-/xcode_user_guide_regions_customizing_for --/writerid/-/xcode_user_guide_run_script_build_phase --/writerid/-/xcode_user_guide_setting_doc_preferences --/writerid/-/xcode_user_guide_shared_libraries_viewing --/writerid/-/xcode_user_guide_smart_groups --/writerid/-/xcode_user_guide_target_files --/writerid/-/xcode_user_guide_target_info --/writerid/-/xcode_workspace_open_file_by_name_or_symbol -C/func/-/XColor -C/func/-/XColormapEvent -C/func/-/Xcomposite -C/func/-/XConfigureEvent -C/func/-/XConfigureRequestEvent -C/func/-/XConfigureWindow -C/func/-/XContextDependentDrawing -C/func/-/XContextualDrawing -C/func/-/XConvertCase -C/func/-/XConvertSelection -C/func/-/XCopyArea -C/func/-/XCopyColormapAndFree -C/func/-/XCopyGC -C/func/-/XCopyPlane -C/func/-/XCreateBitmapFromData -C/func/-/XCreateColormap -C/func/-/XCreateFontCursor -C/func/-/XCreateFontSet -C/func/-/XCreateGC -C/func/-/XCreateGlyphCursor -C/func/-/XCreateIC -C/func/-/XCreateImage -C/func/-/XCreateOC -C/func/-/XCreatePixmap -C/func/-/XCreatePixmapCursor -C/func/-/XCreatePixmapFromBitmapData -C/func/-/XCreateRegion -C/func/-/XCreateSimpleWindow -C/func/-/XCreateWindow -C/func/-/XCreateWindowEvent -C/func/-/XCrossingEvent -C/func/-/XcupGetReservedColormapEntries -C/func/-/XcupQueryVersion -C/func/-/XcupStoreColors -C/func/-/Xcursor -C/func/-/XcursorCursorsCreate -C/func/-/XcursorCursorsDestroy -C/func/-/XcursorFilenameLoad -C/func/-/XcursorFilenameLoadAllImages -C/func/-/XcursorFilenameLoadCursor -C/func/-/XcursorFilenameLoadImage -C/func/-/XcursorFilenameLoadImages -C/func/-/XcursorFilenameSave -C/func/-/XcursorFilenameSaveImages -C/func/-/XcursorGetDefaultSize -C/func/-/XcursorGetTheme -C/func/-/XcursorImageCreate -C/func/-/XcursorImageDestroy -C/func/-/XcursorImagesCreate -C/func/-/XcursorImagesDestroy -C/func/-/XcursorLibraryLoadCursor -C/func/-/XcursorLibraryLoadCursors -C/func/-/XcursorLibraryLoadImage -C/func/-/XcursorLibraryLoadImages -C/func/-/XcursorSetDefaultSize -C/func/-/XcursorSetTheme -C/func/-/XcursorShapeLoadCursor -C/func/-/XcursorShapeLoadCursors -C/func/-/XcursorShapeLoadImage -C/func/-/XcursorShapeLoadImages -C/func/-/XcursorSupportsARGB -C/func/-/XcursorXcFileLoad -C/func/-/XcursorXcFileLoadAllImages -C/func/-/XcursorXcFileLoadImage -C/func/-/XcursorXcFileLoadImages -C/func/-/XcursorXcFileSave -C/func/-/XdbeAllocateBackBufferName -C/func/-/XdbeBeginIdiom -C/func/-/XdbeDeallocateBackBufferName -C/func/-/XdbeEndIdiom -C/func/-/XdbeFreeVisualInfo -C/func/-/XdbeGetBackBufferAttributes -C/func/-/XdbeGetVisualInfo -C/func/-/XdbeQueryExtension -C/func/-/XdbeSwapBuffers -C/func/-/XDefaultString -C/func/-/XDefineCursor -C/func/-/XDeleteContext -C/func/-/XDeleteDeviceProperty -C/func/-/XDeleteModifiermapEntry -C/func/-/XDeleteProperty -C/func/-/XDestroyIC -C/func/-/XDestroyImage -C/func/-/XDestroyOC -C/func/-/XDestroyRegion -C/func/-/XDestroySubwindows -C/func/-/XDestroyWindow -C/func/-/XDestroyWindowEvent -C/func/-/XDeviceBell -C/func/-/XDeviceTimeCoord -C/func/-/XDirectionalDependentDrawing -C/func/-/XDisableAccessControl -C/func/-/XDisplayKeycodes -C/func/-/XDisplayMotionBufferSize -C/func/-/XDisplayName -C/func/-/XDisplayOfIM -C/func/-/XDisplayOfOM -C/func/-/xdr -C/func/-/xdr_accepted_reply -C/func/-/xdr_array -C/func/-/xdr_authunix_parms -C/func/-/xdr_bool -C/func/-/xdr_bytes -C/func/-/xdr_callhdr -C/func/-/xdr_callmsg -C/func/-/xdr_char -C/func/-/xdr_destroy -C/func/-/xdr_double -C/func/-/xdr_enum -C/func/-/xdr_float -C/func/-/xdr_free -C/func/-/xdr_getpos -C/func/-/xdr_inline -C/func/-/xdr_int -C/func/-/xdr_long -C/func/-/xdr_opaque -C/func/-/xdr_opaque_auth -C/func/-/xdr_pmap -C/func/-/xdr_pmaplist -C/func/-/xdr_pointer -C/func/-/xdr_reference -C/func/-/xdr_rejected_reply -C/func/-/xdr_replymsg -C/func/-/xdr_setpos -C/func/-/xdr_short -C/func/-/xdr_string -C/func/-/xdr_u_char -C/func/-/xdr_u_long -C/func/-/xdr_u_short -C/func/-/xdr_union -C/func/-/xdr_vector -C/func/-/xdr_void -C/func/-/xdr_wrapstring -C/func/-/XDrawArc -C/func/-/XDrawArcs -C/func/-/XDrawImageString -C/func/-/XDrawImageString16 -C/func/-/XDrawLine -C/func/-/XDrawLines -C/func/-/XDrawPoint -C/func/-/XDrawPoints -C/func/-/XDrawRectangle -C/func/-/XDrawRectangles -C/func/-/XDrawSegments -C/func/-/XDrawString -C/func/-/XDrawString16 -C/func/-/XDrawText -C/func/-/XDrawText16 -C/func/-/xdrmem_create -C/func/-/xdrrec_create -C/func/-/xdrrec_endofrecord -C/func/-/xdrrec_eof -C/func/-/xdrrec_skiprecord -C/func/-/xdrstdio_create -C/func/-/XEmptyRegion -C/func/-/XEnableAccessControl -C/func/-/XEqualRegion -C/func/-/XErrorEvent -C/func/-/XEvent -C/func/-/XEventsQueued -C/func/-/Xevi -C/func/-/Xevie -C/func/-/XevieEnd -C/func/-/XevieQueryVersion -C/func/-/XevieSelectInput -C/func/-/XevieSendEvent -C/func/-/XevieStart -C/func/-/XeviGetVisualInfo -C/func/-/XeviQueryExtension -C/func/-/XeviQueryVersion -C/func/-/XExposeEvent -C/func/-/XExtendedMaxRequestSize -C/func/-/XExtentsOfFontSet -C/func/-/XF86Misc -C/func/-/XF86MiscGetKbdSettings -C/func/-/XF86MiscGetMouseSettings -C/func/-/XF86MiscGetSaver -C/func/-/XF86MiscQueryExtension -C/func/-/XF86MiscQueryVersion -C/func/-/XF86MiscSetKbdSettings -C/func/-/XF86MiscSetMouseSettings -C/func/-/XF86MiscSetSaver -C/func/-/XF86VidModeDeleteModeLine -C/func/-/XF86VidModeGetAllModeLines -C/func/-/XF86VidModeGetDotClocks -C/func/-/XF86VidModeGetGamma -C/func/-/XF86VidModeGetGammaRamp -C/func/-/XF86VidModeGetGammaRampSize -C/func/-/XF86VidModeGetModeLine -C/func/-/XF86VidModeGetMonitor -C/func/-/XF86VidModeGetPermissions -C/func/-/XF86VidModeGetViewPort -C/func/-/XF86VidModeLockModeSwitch -C/func/-/XF86VidModeModModeLine -C/func/-/XF86VidModeQueryExtension -C/func/-/XF86VidModeQueryVersion -C/func/-/XF86VidModeSetClientVersion -C/func/-/XF86VidModeSetGamma -C/func/-/XF86VidModeSetGammaRamp -C/func/-/XF86VidModeSetViewPort -C/func/-/XF86VidModeSwitchMode -C/func/-/XF86VidModeSwitchToMode -C/func/-/XF86VidModeValidateModeLine -C/func/-/XF86VM -C/func/-/XFetchBuffer -C/func/-/XFetchBytes -C/func/-/XFetchName -C/func/-/XFillArc -C/func/-/XFillArcs -C/func/-/XFillPolygon -C/func/-/XFillRectangle -C/func/-/XFillRectangles -C/func/-/XFilterEvent -C/func/-/XFindContext -C/func/-/Xfixes -C/func/-/XFlush -C/func/-/XFocusChangeEvent -C/func/-/Xfontcache -C/func/-/XFontProp -C/func/-/XFontSetExtents -C/func/-/XFontsOfFontSet -C/func/-/XFontStruct -C/func/-/XForceScreenSaver -C/func/-/XFree -C/func/-/XFreeColormap -C/func/-/XFreeColors -C/func/-/XFreeCursor -C/func/-/XFreeDeviceList -C/func/-/XFreeExtensionList -C/func/-/XFreeFont -C/func/-/XFreeFontInfo -C/func/-/XFreeFontNames -C/func/-/XFreeFontPath -C/func/-/XFreeFontSet -C/func/-/XFreeGC -C/func/-/XFreeModifierMap -C/func/-/XFreePixmap -C/func/-/XFreeStringList -C/func/-/Xft -Objective-C/cl/-/XGActionMonitor -C/tdef/-/XGActionMonitorOutcome -C/data/-/XGActionMonitorResultsOutputFilesKey -C/data/-/XGActionMonitorResultsOutputStreamsKey -Objective-C/cl/-/XGAuthenticator -C/tdef/-/XGAuthenticatorState -Objective-C/cl/-/XGConnection -C/data/-/XGConnectionKeyIsClosed -C/data/-/XGConnectionKeyIsOpened -C/data/-/XGConnectionKeyState -C/tdef/-/XGConnectionState -C/func/-/XGContextFromGC -Objective-C/cl/-/XGController -Objective-C/cat/-/XGController(XGControllerCreation) -C/data/-/XGControllerWillDeallocNotification -C/func/-/XGCValues -C/func/-/XGetAtomName -C/func/-/XGetAtomNames -C/func/-/XGetClassHint -C/func/-/XGetCommand -C/func/-/XGetDeviceButtonMapping -C/func/-/XGetDeviceControl -C/func/-/XGetDeviceDontPropagateList -C/func/-/XGetDeviceFocus -C/func/-/XGetDeviceKeyMapping -C/func/-/XGetDeviceModifierMapping -C/func/-/XGetDeviceMotionEvents -C/func/-/XGetDeviceProperty -C/func/-/XGetErrorDatabaseText -C/func/-/XGetErrorText -C/func/-/XGetExtensionVersion -C/func/-/XGetFeedbackControl -C/func/-/XGetFontPath -C/func/-/XGetFontProperty -C/func/-/XGetGCValues -C/func/-/XGetGeometry -C/func/-/XGetIconName -C/func/-/XGetIconSizes -C/func/-/XGetICValues -C/func/-/XGetImage -C/func/-/XGetIMValues -C/func/-/XGetInputFocus -C/func/-/XGetKeyboardControl -C/func/-/XGetKeyboardMapping -C/func/-/XGetModifierMapping -C/func/-/XGetMotionEvents -C/func/-/XGetOCValues -C/func/-/XGetOMValues -C/func/-/XGetPixel -C/func/-/XGetPointerControl -C/func/-/XGetPointerMapping -C/func/-/XGetRGBColormaps -C/func/-/XGetScreenSaver -C/func/-/XGetSelectedExtensionEvents -C/func/-/XGetSelectionOwner -C/func/-/XGetSubImage -C/func/-/XGetTextProperty -C/func/-/XGetTransientForHint -C/func/-/XGetVisualInfo -C/func/-/XGetWindowAttributes -C/func/-/XGetWindowProperty -C/func/-/XGetWMClientMachine -C/func/-/XGetWMColormapWindows -C/func/-/XGetWMHints -C/func/-/XGetWMIconName -C/func/-/XGetWMName -C/func/-/XGetWMNormalHints -C/func/-/XGetWMProtocols -C/func/-/XGetWMSizeHints -C/func/-/XGetXCBConnection -Objective-C/cl/-/XGFile -Objective-C/cl/-/XGFileDownload -C/data/-/XGFileStandardErrorPath -C/data/-/XGFileStandardOutputPath -C/tdef/-/XGFileType -Objective-C/cl/-/XGGrid -Objective-C/cl/-/XGGSSAuthenticator -Objective-C/cl/-/XGJob -C/func/-/XGrabButton -C/func/-/XGrabDevice -C/func/-/XGrabDeviceButton -C/func/-/XGrabDeviceKey -C/func/-/XGrabKey -C/func/-/XGrabKeyboard -C/func/-/XGrabPointer -C/func/-/XGrabServer -C/func/-/XGraphicsExposeEvent -C/func/-/XGravityEvent -Objective-C/cl/-/XGResource -C/tdef/-/XGResourceAction -C/tdef/-/XGResourceState -Objective-C/cl/-/XGTwoWayRandomAuthenticator -Objective-C/instm/NSFont/xHeight -C/func/-/XHostAddress -C/func/-/XIconifyWindow -C/func/-/XIconSize -C/func/-/XIfEvent -C/func/-/XIMOfIC -C/macro/-/XINCLUDE_FALLBACK -C/macro/-/XINCLUDE_HREF -C/macro/-/XINCLUDE_NODE -C/macro/-/XINCLUDE_NS -C/macro/-/XINCLUDE_OLD_NS -C/macro/-/XINCLUDE_PARSE -C/macro/-/XINCLUDE_PARSE_ENCODING -C/macro/-/XINCLUDE_PARSE_TEXT -C/macro/-/XINCLUDE_PARSE_XML -C/macro/-/XINCLUDE_PARSE_XPOINTER -C/func/-/Xinerama -C/func/-/XineramaIsActive -C/func/-/XineramaQueryExtension -C/func/-/XineramaQueryScreens -C/func/-/XineramaQueryVersion -C/func/-/XInitImage -C/func/-/XInitThreads -C/func/-/XInsertModifiermapEntry -C/func/-/XInstallColormap -C/func/-/XInternalConnectionNumbers -C/func/-/XInternAtom -C/func/-/XInternAtoms -C/func/-/XIntersectRegion -C/tdef/-/XIOParam -C/func/-/XkbActionCtrls -C/func/-/XkbAddDeviceLedInfo -C/func/-/XkbAddGeomColor -C/func/-/XkbAddGeomDoodad -C/func/-/XkbAddGeomKey -C/func/-/XkbAddGeomKeyAlias -C/func/-/XkbAddGeomOutline -C/func/-/XkbAddGeomOverlay -C/func/-/XkbAddGeomOverlayKey -C/func/-/XkbAddGeomOverlayRow -C/func/-/XkbAddGeomProperty -C/func/-/XkbAddGeomRow -C/func/-/XkbAddGeomSection -C/func/-/XkbAddGeomShape -C/func/-/XkbAddSymInterpret -C/func/-/XkbAllocClientMap -C/func/-/XkbAllocCompatMap -C/func/-/XkbAllocControls -C/func/-/XkbAllocDeviceInfo -C/func/-/XkbAllocDeviceLedInfo -C/func/-/XkbAllocGeomColors -C/func/-/XkbAllocGeomDoodads -C/func/-/XkbAllocGeometry -C/func/-/XkbAllocGeomKeyAliases -C/func/-/XkbAllocGeomKeys -C/func/-/XkbAllocGeomOutlines -C/func/-/XkbAllocGeomOverlayKey -C/func/-/XkbAllocGeomOverlayKeys -C/func/-/XkbAllocGeomOverlayRows -C/func/-/XkbAllocGeomOverlays -C/func/-/XkbAllocGeomPoints -C/func/-/XkbAllocGeomProps -C/func/-/XkbAllocGeomRows -C/func/-/XkbAllocGeomSectionDoodads -C/func/-/XkbAllocGeomSections -C/func/-/XkbAllocGeomShapes -C/func/-/XkbAllocIndicatorMaps -C/func/-/XkbAllocKeyboard -C/func/-/XkbAllocNames -C/func/-/XkbAllocServerMap -C/func/-/XkbApplyCompatMapToKey -C/func/-/XkbBell -C/func/-/XkbBellEvent -C/func/-/XkbChangeControls -C/func/-/XkbChangeDeviceInfo -C/func/-/XkbChangeEnabledControls -C/func/-/XkbChangeIndicators -C/func/-/XkbChangeMap -C/func/-/XkbChangeNames -C/func/-/XkbChangeTypesOfKey -C/func/-/XkbComputeRowBounds -C/func/-/XkbComputeSectionBounds -C/func/-/XkbComputeShapeBounds -C/func/-/XkbComputeShapeTop -C/func/-/XkbCopyKeyType -C/func/-/XkbCopyKeyTypes -C/func/-/XkbDeviceBell -C/func/-/XkbDeviceBellEvent -C/func/-/XkbFindOverlayForKey -C/func/-/XkbForceBell -C/func/-/XkbForceDeviceBell -C/func/-/XkbFreeClientMap -C/func/-/XkbFreeCompatMap -C/func/-/XkbFreeComponentList -C/func/-/XkbFreeControls -C/func/-/XkbFreeDeviceInfo -C/func/-/XkbFreeGeomColors -C/func/-/XkbFreeGeomDoodads -C/func/-/XkbFreeGeometry -C/func/-/XkbFreeGeomKeyAliases -C/func/-/XkbFreeGeomKeys -C/func/-/XkbFreeGeomOutlines -C/func/-/XkbFreeGeomOverlayKeys -C/func/-/XkbFreeGeomOverlayRows -C/func/-/XkbFreeGeomOverlays -C/func/-/XkbFreeGeomPoints -C/func/-/XkbFreeGeomProperties -C/func/-/XkbFreeGeomRows -C/func/-/XkbFreeGeomSections -C/func/-/XkbFreeGeomShapes -C/func/-/XkbFreeIndicatorMaps -C/func/-/XkbFreeKeyboard -C/func/-/XkbFreeNames -C/func/-/XkbFreeServerMap -C/func/-/XkbGetAccessXTimeout -C/func/-/XkbGetAutoRepeatRate -C/func/-/XkbGetAutoResetControls -C/func/-/XkbGetBounceKeysDelay -C/func/-/XkbGetCompatMap -C/func/-/XkbGetControls -C/func/-/XkbGetControlsChanges -C/func/-/XkbGetDetectableAutorepeat -C/func/-/XkbGetDeviceButtonActions -C/func/-/XkbGetDeviceInfo -C/func/-/XkbGetDeviceInfoChanges -C/func/-/XkbGetDeviceLedInfo -C/func/-/XkbGetGeometry -C/func/-/XkbGetIndicatorChanges -C/func/-/XkbGetIndicatorMap -C/func/-/XkbGetIndicatorState -C/func/-/XkbGetKeyActions -C/func/-/XkbGetKeyBehaviors -C/func/-/XkbGetKeyboard -C/func/-/XkbGetKeyboardByName -C/func/-/XkbGetKeyExplicitComponents -C/func/-/XkbGetKeyModifierMap -C/func/-/XkbGetKeySyms -C/func/-/XkbGetKeyTypes -C/func/-/XkbGetKeyVirtualModMap -C/func/-/XkbGetMap -C/func/-/XkbGetNameChanges -C/func/-/XkbGetNamedGeometry -C/func/-/XkbGetNamedIndicator -C/func/-/XkbGetNames -C/func/-/XkbGetSlowKeysDelay -C/func/-/XkbGetState -C/func/-/XkbGetStickyKeysOptions -C/func/-/XkbGetUpdatedMap -C/func/-/XkbGetVirtualMods -C/func/-/XkbGetXlibControls -C/func/-/XkbIgnoreExtension -C/func/-/XkbInitCanonicalKeyTypes -C/func/-/XkbKeyAction -C/func/-/XkbKeyActionEntry -C/func/-/XkbKeyActionsPtr -C/func/-/XkbKeycodeToKeysym -C/func/-/XkbKeyGroupInfo -C/func/-/XkbKeyGroupsWidth -C/func/-/XkbKeyGroupWidth -C/func/-/XkbKeyHasActions -C/func/-/XkbKeyNumActions -C/func/-/XkbKeyNumGroups -C/func/-/XkbKeyNumSyms -C/func/-/XkbKeySymEntry -C/func/-/XkbKeySymsOffset -C/func/-/XkbKeySymsPtr -C/func/-/XkbKeysymToModifiers -C/func/-/XkbKeyType -C/func/-/XkbKeyTypeIndex -C/func/-/XkbKeyTypesForCoreSymbols -C/func/-/XkbLatchGroup -C/func/-/XkbLatchModifiers -C/func/-/XkbLibraryVersion -C/func/-/XkbListComponents -C/func/-/XkbLockGroup -C/func/-/XkbLockModifiers -C/func/-/XkbLookupKeyBinding -C/func/-/XkbLookupKeySym -C/func/-/XkbModActionVMods -C/func/-/XkbNoteControlsChanges -C/func/-/XkbNoteDeviceChanges -C/func/-/XkbNoteIndicatorChanges -C/func/-/XkbNoteNameChanges -C/func/-/XkbOpenDisplay -C/func/-/XkbOutOfRangeGroupInfo -C/func/-/XkbOutOfRangeGroupNumber -C/func/-/XkbPtrActionX -C/func/-/XkbPtrActionY -C/func/-/XkbQueryExtension -C/func/-/XkbRefreshKeyboardMapping -C/func/-/XkbResizeDeviceButtonActions -C/func/-/XkbResizeKeyActions -C/func/-/XkbResizeKeySyms -C/func/-/XkbResizeKeyType -C/func/-/XkbSAActionSetCtrls -C/func/-/XkbSAGroup -C/func/-/XkbSAPtrDfltValue -C/func/-/XkbSARedirectSetVMods -C/func/-/XkbSARedirectSetVModsMask -C/func/-/XkbSARedirectVMods -C/func/-/XkbSARedirectVModsMask -C/func/-/XkbSAScreen -C/func/-/XkbSASetGroup -C/func/-/XkbSASetPtrDfltValue -C/func/-/XkbSASetScreen -C/func/-/XkbSelectEventDetails -C/func/-/XkbSelectEvents -C/func/-/XkbSetAccessXTimeout -C/func/-/XkbSetAutoRepeatRate -C/func/-/XkbSetAutoResetControls -C/func/-/XkbSetBounceKeysDelay -C/func/-/XkbSetCompatMap -C/func/-/XkbSetControls -C/func/-/XkbSetDebuggingFlags -C/func/-/XkbSetDetectableAutorepeat -C/func/-/XkbSetDeviceButtonActions -C/func/-/XkbSetDeviceInfo -C/func/-/XkbSetIgnoreLockMods -C/func/-/XkbSetIndicatorMap -C/func/-/XkbSetMap -C/func/-/XkbSetModActionVMods -C/func/-/XkbSetNamedIndicator -C/func/-/XkbSetNames -C/func/-/XkbSetPtrActionX -C/func/-/XkbSetPtrActionY -C/func/-/XkbSetServerInternalMods -C/func/-/XkbSetXlibControls -C/func/-/XkbTranslateKeyCode -C/func/-/XkbTranslateKeySym -C/func/-/XkbUpdateMapFromCore -C/func/-/XkbVirtualModsToReal -C/func/-/XKeyboardControl -C/func/-/XKeycodeToKeysym -C/func/-/XKeyEvent -C/func/-/XKeymapEvent -C/func/-/XKeysymToKeycode -C/func/-/XKeysymToString -C/func/-/XKillClient -C/tdef/-/xlinkExtendedLinkFunk -C/tdef/-/xlinkExtendedLinkSetFunk -C/tdef/-/xlinkHandler -C/tdef/-/xlinkHRef -C/tdef/-/xlinkNodeDetectFunc -C/tdef/-/xlinkSimpleLinkFunk -C/func/-/XListDepths -C/func/-/XListDeviceProperties -C/func/-/XListExtensions -C/func/-/XListFonts -C/func/-/XListFontsWithInfo -C/func/-/XListHosts -C/func/-/XListInputDevices -C/func/-/XListInstalledColormaps -C/func/-/XListPixmapFormats -C/func/-/XListProperties -C/func/-/XLoadFont -C/func/-/XLoadQueryFont -C/func/-/xlocale -C/func/-/XLocaleOfFontSet -C/func/-/XLocaleOfIM -C/func/-/XLocaleOfOM -C/func/-/XLockDisplay -C/func/-/XLookupColor -C/func/-/XLookupKeysym -C/func/-/XLookupString -C/func/-/XLowerWindow -C/func/-/XMapEvent -C/func/-/XMappingEvent -C/func/-/XMapRaised -C/func/-/XMapRequestEvent -C/func/-/XMapSubwindows -C/func/-/XMapWindow -C/func/-/XMaskEvent -C/func/-/XMatchVisualInfo -C/func/-/XMaxRequestSize -C/func/-/XmbDrawImageString -C/func/-/XmbDrawString -C/func/-/XmbDrawText -C/func/-/XmbLookupString -C/func/-/XmbResetIC -C/func/-/XmbSetWMProperties -C/func/-/XmbTextEscapement -C/func/-/XmbTextExtents -C/func/-/XmbTextListToTextProperty -C/func/-/XmbTextPerCharExtents -C/func/-/XmbTextPropertyToTextList -C/func/-/Xmbuf -C/func/-/XmbufChangeBufferAttributes -C/func/-/XmbufChangeWindowAttributes -C/func/-/XmbufCreateBuffers -C/func/-/XmbufCreateStereoWindow -C/func/-/XmbufDestroyBuffers -C/func/-/XmbufDisplayBuffers -C/func/-/XmbufGetBufferAttributes -C/func/-/XmbufGetScreenInfo -C/func/-/XmbufGetVersion -C/func/-/XmbufGetWindowAttributes -C/func/-/XmbufQueryExtension -C/macro/-/XML_CATALOG_PI -C/macro/-/XML_CATALOGS_NAMESPACE -C/macro/-/XML_COMPLETE_ATTRS -C/macro/-/XML_CTXT_FINISH_DTD_0 -C/macro/-/XML_CTXT_FINISH_DTD_1 -C/macro/-/XML_DEFAULT_VERSION -C/macro/-/XML_DETECT_IDS -C/macro/-/XML_GET_CONTENT -C/macro/-/XML_GET_LINE -C/macro/-/XML_LOCAL_NAMESPACE -C/macro/-/XML_MAX_NAMELEN -C/macro/-/XML_SAX2_MAGIC -C/macro/-/XML_SCHEMAS_ANY_LAX -C/macro/-/XML_SCHEMAS_ANY_SKIP -C/macro/-/XML_SCHEMAS_ANY_STRICT -C/macro/-/XML_SCHEMAS_ANYATTR_LAX -C/macro/-/XML_SCHEMAS_ANYATTR_SKIP -C/macro/-/XML_SCHEMAS_ANYATTR_STRICT -C/macro/-/XML_SCHEMAS_ATTR_FIXED -C/macro/-/XML_SCHEMAS_ATTR_GLOBAL -C/macro/-/XML_SCHEMAS_ATTR_INTERNAL_RESOLVED -C/macro/-/XML_SCHEMAS_ATTR_NSDEFAULT -C/macro/-/XML_SCHEMAS_ATTR_USE_OPTIONAL -C/macro/-/XML_SCHEMAS_ATTR_USE_PROHIBITED -C/macro/-/XML_SCHEMAS_ATTR_USE_REQUIRED -C/macro/-/XML_SCHEMAS_ATTRGROUP_GLOBAL -C/macro/-/XML_SCHEMAS_ATTRGROUP_MARKED -C/macro/-/XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED -C/macro/-/XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION -C/macro/-/XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION -C/macro/-/XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION -C/macro/-/XML_SCHEMAS_ELEM_ABSTRACT -C/macro/-/XML_SCHEMAS_ELEM_BLOCK_ABSENT -C/macro/-/XML_SCHEMAS_ELEM_BLOCK_EXTENSION -C/macro/-/XML_SCHEMAS_ELEM_BLOCK_RESTRICTION -C/macro/-/XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION -C/macro/-/XML_SCHEMAS_ELEM_CIRCULAR -C/macro/-/XML_SCHEMAS_ELEM_DEFAULT -C/macro/-/XML_SCHEMAS_ELEM_FINAL_ABSENT -C/macro/-/XML_SCHEMAS_ELEM_FINAL_EXTENSION -C/macro/-/XML_SCHEMAS_ELEM_FINAL_RESTRICTION -C/macro/-/XML_SCHEMAS_ELEM_FIXED -C/macro/-/XML_SCHEMAS_ELEM_GLOBAL -C/macro/-/XML_SCHEMAS_ELEM_INTERNAL_RESOLVED -C/macro/-/XML_SCHEMAS_ELEM_NILLABLE -C/macro/-/XML_SCHEMAS_ELEM_NSDEFAULT -C/macro/-/XML_SCHEMAS_ELEM_REF -C/macro/-/XML_SCHEMAS_ELEM_TOPLEVEL -C/macro/-/XML_SCHEMAS_FINAL_DEFAULT_EXTENSION -C/macro/-/XML_SCHEMAS_FINAL_DEFAULT_LIST -C/macro/-/XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION -C/macro/-/XML_SCHEMAS_FINAL_DEFAULT_UNION -C/macro/-/XML_SCHEMAS_INCLUDING_CONVERT_NS -C/macro/-/XML_SCHEMAS_QUALIF_ATTR -C/macro/-/XML_SCHEMAS_QUALIF_ELEM -C/macro/-/XML_SCHEMAS_TYPE_ABSTRACT -C/macro/-/XML_SCHEMAS_TYPE_BLOCK_DEFAULT -C/macro/-/XML_SCHEMAS_TYPE_BLOCK_EXTENSION -C/macro/-/XML_SCHEMAS_TYPE_BLOCK_RESTRICTION -C/macro/-/XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE -C/macro/-/XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION -C/macro/-/XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION -C/macro/-/XML_SCHEMAS_TYPE_FINAL_DEFAULT -C/macro/-/XML_SCHEMAS_TYPE_FINAL_EXTENSION -C/macro/-/XML_SCHEMAS_TYPE_FINAL_LIST -C/macro/-/XML_SCHEMAS_TYPE_FINAL_RESTRICTION -C/macro/-/XML_SCHEMAS_TYPE_FINAL_UNION -C/macro/-/XML_SCHEMAS_TYPE_GLOBAL -C/macro/-/XML_SCHEMAS_TYPE_MARKED -C/macro/-/XML_SCHEMAS_TYPE_MIXED -C/macro/-/XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD -C/macro/-/XML_SCHEMAS_TYPE_VARIETY_ABSENT -C/macro/-/XML_SCHEMAS_TYPE_VARIETY_ATOMIC -C/macro/-/XML_SCHEMAS_TYPE_VARIETY_LIST -C/macro/-/XML_SCHEMAS_TYPE_VARIETY_UNION -C/macro/-/XML_SCHEMAS_WILDCARD_COMPLETE -C/macro/-/XML_SKIP_IDS -C/macro/-/XML_SUBSTITUTE_BOTH -C/macro/-/XML_SUBSTITUTE_NONE -C/macro/-/XML_SUBSTITUTE_PEREF -C/macro/-/XML_SUBSTITUTE_REF -C/macro/-/XML_XML_ID -C/macro/-/XML_XML_NAMESPACE -C/tdef/-/xmlAttr -C/tdef/-/xmlAttribute -C/tdef/-/xmlAttributeDefault -C/tdef/-/xmlAttributeType -C/tdef/-/xmlAutomata -C/tdef/-/xmlAutomataState -JavaScript/data/SVGElement/xmlbase -C/tdef/-/xmlBuffer -C/tdef/-/xmlBufferAllocationScheme -C/tdef/-/xmlC14NIsVisibleCallback -C/macro/-/XMLCALL -C/tdef/-/XMLCALL -C/tdef/-/xmlChar -C/tdef/-/xmlCharEncodingInputFunc -C/tdef/-/xmlCharEncodingOutputFunc -Objective-C/instm/NSXMLDocument/XMLData -Objective-C/instm/NSXMLDocument/XMLDataWithOptions: -C/tdef/-/XMLDoc -C/tdef/-/xmlDoc -C/tag/-/XMLDocRecord -JavaScript/data/DOMWindow/XMLDocument -C/tdef/-/xmlDtd -C/tdef/-/xmlElement -C/tdef/-/xmlElementContent -C/tdef/-/xmlElementContentOccur -C/tdef/-/xmlElementContentType -C/tdef/-/xmlElementTypeVal -JavaScript/data/Document/xmlEncoding -C/tdef/-/xmlEntityReferenceFunc -C/tdef/-/xmlEnumeration -C/tdef/-/xmlError -C/tdef/-/xmlErrorDomain -C/tdef/-/xmlErrorLevel -C/tdef/-/xmlExternalEntityLoader -C/func/-/xmlFileMatch -C/tdef/-/xmlGenericErrorFunc -C/tdef/-/xmlHashCopier -C/tdef/-/xmlHashDeallocator -C/tdef/-/xmlHashScanner -C/tdef/-/xmlHashScannerFull -JavaScript/data/DOMWindow/XMLHttpRequest -JavaScript/data/WorkerContext/XMLHttpRequest -JavaScript/cl/-/XMLHttpRequest -JavaScript/data/DOMWindow/XMLHttpRequestException -JavaScript/cl/-/XMLHttpRequestException -JavaScript/cl/-/XMLHttpRequestProgressEvent -JavaScript/data/DOMWindow/XMLHttpRequestUpload -JavaScript/cl/-/XMLHttpRequestUpload -C/tdef/-/xmlID -C/tdef/-/xmlInputCloseCallback -C/tdef/-/xmlInputMatchCallback -C/tdef/-/xmlInputOpenCallback -C/tdef/-/xmlInputReadCallback -C/macro/-/xmlIsBaseChar_ch -C/macro/-/xmlIsBaseCharQ -C/macro/-/xmlIsBlank_ch -C/macro/-/xmlIsBlankQ -C/macro/-/xmlIsChar_ch -C/macro/-/xmlIsCharQ -C/macro/-/xmlIsCombiningQ -C/macro/-/xmlIsDigit_ch -C/macro/-/xmlIsDigitQ -C/macro/-/xmlIsExtender_ch -C/macro/-/xmlIsExtenderQ -C/macro/-/xmlIsIdeographicQ -C/macro/-/xmlIsPubidChar_ch -C/macro/-/xmlIsPubidCharQ -JavaScript/data/SVGLangSpace/xmllang -C/tdef/-/xmlListDataCompare -C/tdef/-/xmlListDeallocator -C/tdef/-/xmlListWalker -C/macro/-/xmlMalloc -C/macro/-/xmlMallocAtomic -C/macro/-/xmlMemStrdup -C/tdef/-/xmlNode -C/tdef/-/xmlNotation -C/tdef/-/xmlNs -C/tdef/-/xmlOutputCloseCallback -C/tdef/-/xmlOutputMatchCallback -C/tdef/-/xmlOutputOpenCallback -C/tdef/-/xmlOutputWriteCallback -C/func/-/XMLParseAddAttribute -C/func/-/XMLParseAddAttributeAndValue -C/func/-/XMLParseAddAttributeValueKind -C/func/-/XMLParseAddElement -C/func/-/XMLParseAddMultipleAttributes -C/func/-/XMLParseAddMultipleAttributesAndValues -C/func/-/XMLParseAddNameSpace -C/func/-/XMLParseDataRef -C/func/-/XMLParseDisposeXMLDoc -C/func/-/XMLParseFile -C/func/-/XMLParseGetDetailedParseError -C/tdef/-/xmlParserErrors -C/tdef/-/xmlParserInputDeallocate -C/tdef/-/xmlParserInputState -C/data/-/xmlParserMaxDepth -C/tdef/-/xmlParserMode -C/tdef/-/xmlParserNodeInfo -C/tdef/-/xmlParserOption -C/tdef/-/xmlParserProperties -C/tdef/-/xmlParserSeverities -C/func/-/XMLParseSetCDataHandler -C/func/-/XMLParseSetCharDataHandler -C/func/-/XMLParseSetCommentHandler -C/func/-/XMLParseSetEndDocumentHandler -C/func/-/XMLParseSetEndElementHandler -C/func/-/XMLParseSetEventParseRefCon -C/func/-/XMLParseSetOffsetAndLimit -C/func/-/XMLParseSetPreprocessInstructionHandler -C/func/-/XMLParseSetStartDocumentHandler -C/func/-/XMLParseSetStartElementHandler -C/tdef/-/xmlPattern -C/data/-/XMLPUBFUN -C/macro/-/XMLPUBFUN -C/macro/-/XMLPUBVAR -C/tdef/-/xmlReaderTypes -C/macro/-/xmlRealloc -C/tdef/-/xmlRef -C/tdef/-/xmlRegExecCtxt -C/tdef/-/xmlRegexp -C/tdef/-/xmlRelaxNGValidityErrorFunc -Objective-C/instp/PSEntry/XMLRepresentation -Objective-C/instm/PSFeed/XMLRepresentation -Objective-C/instm/PSFeed/XMLRepresentationWithEntries: -C/tdef/-/xmlSchema -C/tdef/-/xmlSchemaAnnot -C/tdef/-/xmlSchemaAttribute -C/tdef/-/xmlSchemaAttributeGroup -C/tdef/-/xmlSchemaAttributeLink -C/tdef/-/xmlSchemaFacetLink -C/tdef/-/xmlSchemaNotation -C/tdef/-/xmlSchemaTypeLink -C/tdef/-/xmlSchemaValidError -C/tdef/-/xmlSchemaValidityErrorFunc -C/tdef/-/xmlSchemaValidOption -C/tdef/-/xmlSchemaWildcard -C/tdef/-/xmlSchemaWildcardNs -JavaScript/data/DOMWindow/XMLSerializer -JavaScript/cl/-/XMLSerializer -C/tdef/-/xmlShellCmd -C/tdef/-/xmlShellCtxt -C/tdef/-/xmlShellReadlineFunc -JavaScript/data/SVGLangSpace/xmlspace -JavaScript/data/Document/xmlStandalone -Objective-C/instm/NSXMLNode/XMLString -C/data/-/xmlStringText -Objective-C/instm/NSXMLNode/XMLStringWithOptions: -C/tdef/-/xmlStructuredErrorFunc -C/tdef/-/xmlTextReader -C/tdef/-/xmlTextReaderMode -C/tdef/-/xmlTextReaderPtr -C/macro/-/xmlTextWriterWriteDocType -C/macro/-/xmlTextWriterWriteProcessingInstruction -C/tdef/-/xmlURI -C/tdef/-/xmlValidityErrorFunc -C/tdef/-/xmlValidityWarningFunc -JavaScript/data/Document/xmlVersion -C/tdef/-/xmlXPathAxisFunc -C/macro/-/xmlXPathCheckError -C/tdef/-/xmlXPathConvertFunc -C/macro/-/xmlXPathEmptyNodeSet -C/tdef/-/xmlXPathError -C/tdef/-/xmlXPathEvalFunc -C/tdef/-/xmlXPathFuncLookupFunc -C/tdef/-/xmlXPathFunction -C/macro/-/xmlXPathGetContextNode -C/macro/-/xmlXPathGetDocument -C/macro/-/xmlXPathGetError -C/data/-/xmlXPathNAN -C/macro/-/xmlXPathNodeSetGetLength -C/macro/-/xmlXPathNodeSetIsEmpty -C/macro/-/xmlXPathNodeSetItem -C/macro/-/xmlXPathReturnBoolean -C/macro/-/xmlXPathReturnEmptyNodeSet -C/macro/-/xmlXPathReturnEmptyString -C/macro/-/xmlXPathReturnExternal -C/macro/-/xmlXPathReturnFalse -C/macro/-/xmlXPathReturnNodeSet -C/macro/-/xmlXPathReturnNumber -C/macro/-/xmlXPathReturnString -C/macro/-/xmlXPathReturnTrue -C/macro/-/xmlXPathSetArityError -C/macro/-/xmlXPathSetError -C/macro/-/xmlXPathSetTypeError -C/macro/-/xmlXPathStackIsExternal -C/macro/-/xmlXPathStackIsNodeSet -C/tdef/-/xmlXPathVariableLookupFunc -C/func/-/XModifierKeymap -C/func/-/XMotionEvent -C/func/-/XMoveResizeWindow -C/func/-/XMoveWindow -C/func/-/XNewModifiermap -C/func/-/XNextEvent -C/func/-/XNoExposeEvent -C/func/-/XNoOp -C/func/-/XOffsetRegion -C/func/-/XOMOfOC -C/func/-/XOpenDevice -C/func/-/XOpenDisplay -C/func/-/XOpenIM -C/func/-/XOpenOM -C/macro/-/XP_ERROR -C/macro/-/XP_ERROR0 -C/func/-/XParseColor -C/func/-/XParseGeometry -Objective-C/instm/NSXMLNode/XPath -JavaScript/data/DOMWindow/XPathEvaluator -JavaScript/cl/-/XPathEvaluator -JavaScript/data/DOMWindow/XPathException -JavaScript/cl/-/XPathException -JavaScript/cl/-/XPathExpression -JavaScript/cl/-/XPathNSResolver -JavaScript/data/DOMWindow/XPathResult -JavaScript/cl/-/XPathResult -C/func/-/XpCancelDoc -C/func/-/XpCancelJob -C/func/-/XpCancelPage -C/func/-/XpCreateContext -C/func/-/XpDestroyContext -C/func/-/XPeekEvent -C/func/-/XPeekIfEvent -C/func/-/XpEndDoc -C/func/-/XPending -C/func/-/XpEndJob -C/func/-/XpEndPage -C/func/-/XpFreePrinterList -C/func/-/XpGetAttributes -C/func/-/XpGetContext -C/func/-/XpGetDocumentData -C/func/-/XpGetImageResolution -C/func/-/XpGetLocaleHinter -C/func/-/XpGetOneAttribute -C/func/-/XpGetPageDimensions -C/func/-/XpGetPdmStartParams -C/func/-/XpGetPrinterList -C/func/-/XpGetScreenOfContext -C/func/-/XpInputSelected -C/func/-/XPixmapFormatValues -C/func/-/XPoint -C/func/-/XPointInRegion -C/func/-/XPolygonRegion -C/func/-/XpPutDocumentData -C/func/-/XpQueryExtension -C/func/-/XpQueryScreens -C/func/-/XpQueryVersion -C/func/-/XpRehashPrinterList -C/func/-/XProcessInternalConnection -C/func/-/XPropertyEvent -C/func/-/xprt_register -C/func/-/xprt_unregister -C/func/-/XpSelectInput -C/func/-/XpSetAttributes -C/func/-/XpSetContext -C/func/-/XpSetImageResolution -C/func/-/XpSetLocaleHinter -C/func/-/XpStartDoc -C/func/-/XpStartJob -C/func/-/XpStartPage -C/func/-/XPutBackEvent -C/func/-/XPutImage -C/func/-/XPutPixel -C/func/-/XQueryBestCursor -C/func/-/XQueryBestSize -C/func/-/XQueryBestStipple -C/func/-/XQueryBestTile -C/func/-/XQueryColor -C/func/-/XQueryColors -C/func/-/XQueryDeviceState -C/func/-/XQueryExtension -C/func/-/XQueryFont -C/func/-/XQueryKeymap -C/func/-/XQueryPointer -C/func/-/XQueryTextExtents -C/func/-/XQueryTextExtents16 -C/func/-/XQueryTree -C/func/-/XRaiseWindow -C/func/-/Xrandr -C/func/-/XReadBitmapFile -C/func/-/XReadBitmapFileData -C/func/-/XRebindKeysym -C/func/-/XRecolorCursor -C/func/-/XReconfigureWMWindow -C/func/-/XRectangle -C/func/-/XRectInRegion -C/func/-/XRefreshKeyboardMapping -C/func/-/XRegisterIMInstantiateCallback -C/func/-/XRemoveConnectionWatch -C/func/-/XRemoveFromSaveSet -C/func/-/XRemoveHost -C/func/-/XRemoveHosts -C/func/-/XReparentEvent -C/func/-/XReparentWindow -C/func/-/XRes -C/func/-/XResetScreenSaver -C/func/-/XResizeRequestEvent -C/func/-/XResizeWindow -C/func/-/XResourceManagerString -C/func/-/XResQueryClientPixmapBytes -C/func/-/XResQueryClientResources -C/func/-/XResQueryClients -C/func/-/XResQueryExtension -C/func/-/XResQueryVersion -C/func/-/XRestackWindows -C/func/-/XrmCombineDatabase -C/func/-/XrmCombineFileDatabase -C/func/-/XrmDestroyDatabase -C/func/-/XrmEnumerateDatabase -C/func/-/XrmGetDatabase -C/func/-/XrmGetFileDatabase -C/func/-/XrmGetResource -C/func/-/XrmGetStringDatabase -C/func/-/XrmInitialize -C/func/-/XrmLocaleOfDatabase -C/func/-/XrmMergeDatabases -C/func/-/XrmOptionDescRec -C/func/-/XrmOptionKind -C/func/-/XrmParseCommand -C/func/-/XrmPermStringToQuark -C/func/-/XrmPutFileDatabase -C/func/-/XrmPutLineResource -C/func/-/XrmPutResource -C/func/-/XrmPutStringResource -C/func/-/XrmQGetResource -C/func/-/XrmQGetSearchList -C/func/-/XrmQGetSearchResource -C/func/-/XrmQPutResource -C/func/-/XrmQPutStringResource -C/func/-/XrmQuarkToString -C/func/-/XrmSetDatabase -C/func/-/XrmStringToBindingQuarkList -C/func/-/XrmStringToQuark -C/func/-/XrmStringToQuarkList -C/func/-/XrmUniqueQuark -C/func/-/XrmValue -C/func/-/XRotateBuffers -C/func/-/XRotateWindowProperties --/writerid/-/xrpt_Adding_And_Configuring_Instruments --/writerid/-/xrpt_Adding_and_Removing_Instruments --/writerid/-/xrpt_Creating_Custom_Instruments -C/func/-/XRRConfigCurrentConfiguration -C/func/-/XRRConfigCurrentRate -C/func/-/XRRConfigRates -C/func/-/XRRConfigRotations -C/func/-/XRRConfigSizes -C/func/-/XRRConfigTimes -C/func/-/XRRFreeScreenConfigInfo -C/func/-/XRRGetScreenInfo -C/func/-/XRRQueryExtension -C/func/-/XRRQueryVersion -C/func/-/XRRRootToScreen -C/func/-/XRRSelectInput -C/func/-/XRRSetScreenConfig -C/func/-/XRRSetScreenConfigAndRate -C/func/-/XSaveContext -C/func/-/XScreenNumberOfScreen -C/func/-/XScreenResourceString -C/func/-/XScreenSaverRegister -C/func/-/XSegment -C/func/-/XSelectExtensionEvent -C/func/-/XSelectInput -C/func/-/XSelectionClearEvent -C/func/-/XSelectionEvent -C/func/-/XSelectionRequestEvent -C/func/-/XSendEvent -C/func/-/XSendExtensionEvent -C/func/-/XSetAccessControl -C/func/-/XSetAfterFunction -C/func/-/XSetArcMode -C/func/-/XSetBackground -C/func/-/XSetClassHint -C/func/-/XSetClipMask -C/func/-/XSetClipOrigin -C/func/-/XSetClipRectangles -C/func/-/XSetCloseDownMode -C/func/-/XSetCommand -C/func/-/XSetDashes -C/func/-/XSetDeviceButtonMapping -C/func/-/XSetDeviceFocus -C/func/-/XSetDeviceMode -C/func/-/XSetDeviceModifierMapping -C/func/-/XSetDeviceValuators -C/func/-/XSetErrorHandler -C/func/-/XSetEventQueueOwner -C/func/-/XSetFillRule -C/func/-/XSetFillStyle -C/func/-/XSetFont -C/func/-/XSetFontPath -C/func/-/XSetForeground -C/func/-/XSetFunction -C/func/-/XSetGraphicsExposure -C/func/-/XSetICFocus -C/func/-/XSetIconName -C/func/-/XSetIconSizes -C/func/-/XSetICValues -C/func/-/XSetIMValues -C/func/-/XSetInputFocus -C/func/-/XSetIOErrorHandler -C/func/-/XSetLineAttributes -C/func/-/XSetLocaleModifiers -C/func/-/XSetModifierMapping -C/func/-/XSetOCValues -C/func/-/XSetOMValues -C/func/-/XSetPlaneMask -C/func/-/XSetPointerMapping -C/func/-/XSetRegion -C/func/-/XSetRGBColormaps -C/func/-/XSetScreenSaver -C/func/-/XSetSelectionOwner -C/func/-/XSetState -C/func/-/XSetStipple -C/func/-/XSetSubwindowMode -C/func/-/XSetTextProperty -C/func/-/XSetTile -C/func/-/XSetTransientForHint -C/func/-/XSetTSOrigin -C/func/-/XSetWindowAttributes -C/func/-/XSetWindowBackground -C/func/-/XSetWindowBackgroundPixmap -C/func/-/XSetWindowBorder -C/func/-/XSetWindowBorderPixmap -C/func/-/XSetWindowBorderWidth -C/func/-/XSetWindowColormap -C/func/-/XSetWMClientMachine -C/func/-/XSetWMColormapWindows -C/func/-/XSetWMHints -C/func/-/XSetWMIconName -C/func/-/XSetWMName -C/func/-/XSetWMNormalHints -C/func/-/XSetWMProperties -C/func/-/XSetWMProtocols -C/func/-/XSetWMSizeHints -C/func/-/XShape -C/func/-/XShapeCombineMask -C/func/-/XShapeCombineRectangles -C/func/-/XShapeCombineRegion -C/func/-/XShapeCombineShape -C/func/-/XShapeGetRectangles -C/func/-/XShapeInputSelected -C/func/-/XShapeOffsetShape -C/func/-/XShapeQueryExtension -C/func/-/XShapeQueryExtents -C/func/-/XShapeQueryVersion -C/func/-/XShapeSelectInput -C/func/-/XShm -C/func/-/XShmAttach -C/func/-/XShmCreateImage -C/func/-/XShmCreatePixmap -C/func/-/XShmDetach -C/func/-/XShmGetEventBase -C/func/-/XShmGetImage -C/func/-/XShmPixmapFormat -C/func/-/XShmPutImage -C/func/-/XShmQueryExtension -C/func/-/XShmQueryVersion -C/func/-/XShrinkRegion -C/func/-/XSizeHints -C/macro/-/XSLT_DEFAULT_URL -C/macro/-/XSLT_DEFAULT_VENDOR -C/macro/-/XSLT_DEFAULT_VERSION -C/macro/-/XSLT_GET_IMPORT_INT -C/macro/-/XSLT_GET_IMPORT_PTR -C/macro/-/XSLT_LIBXSLT_NAMESPACE -C/macro/-/XSLT_MAX_SORT -C/macro/-/XSLT_NAMESPACE -C/macro/-/XSLT_NORM_SAXON_NAMESPACE -C/macro/-/XSLT_PARSE_OPTIONS -C/macro/-/XSLT_PAT_NO_PRIORITY -C/macro/-/XSLT_REGISTER_FUNCTION_LOOKUP -C/macro/-/XSLT_REGISTER_VARIABLE_LOOKUP -C/macro/-/XSLT_RUNTIME_EXTRA -C/macro/-/XSLT_RUNTIME_EXTRA_FREE -C/macro/-/XSLT_RUNTIME_EXTRA_LST -C/macro/-/XSLT_SAXON_NAMESPACE -C/macro/-/XSLT_STRANGE -C/macro/-/XSLT_TIMESTAMP_TICS_PER_SEC -C/macro/-/XSLT_TODO -C/macro/-/XSLT_TRACE -C/macro/-/XSLT_XALAN_NAMESPACE -C/macro/-/XSLT_XT_NAMESPACE -C/macro/-/XSLTCALL -C/tdef/-/xsltDecimalFormat -C/tdef/-/xsltDocLoaderFunc -C/tdef/-/xsltDocument -C/tdef/-/xsltElemPreComp -C/tdef/-/xsltElemPreCompDeallocator -C/data/-/xsltEngineVersion -C/tdef/-/xsltExtInitFunction -C/tdef/-/xsltExtShutdownFunction -C/tdef/-/xsltFormatNumberInfo -C/data/-/xsltLibxmlVersion -C/data/-/xsltLibxsltVersion -C/tdef/-/xsltLoadType -C/data/-/xsltMaxDepth -C/tdef/-/xsltNumberData -JavaScript/data/DOMWindow/XSLTProcessor -JavaScript/cl/-/XSLTProcessor -C/data/-/XSLTPUBFUN -C/macro/-/XSLTPUBFUN -C/macro/-/XSLTPUBVAR -C/tdef/-/xsltRuntimeExtra -C/tdef/-/xsltSecurityCheck -C/tdef/-/xsltSecurityOption -C/tdef/-/xsltSecurityPrefs -C/tdef/-/xsltSortFunc -C/tdef/-/xsltStyleExtInitFunction -C/tdef/-/xsltStyleExtShutdownFunction -C/tdef/-/xsltStylePreComp -C/tdef/-/xsltTemplate -C/tdef/-/xsltTransformFunction -C/func/-/Xss -C/func/-/XStandardColormap -C/func/-/XStoreBuffer -C/func/-/XStoreBytes -C/func/-/XStoreColor -C/func/-/XStoreColors -C/func/-/XStoreName -C/func/-/XStoreNamedColor -C/func/-/XStringListToTextProperty -C/func/-/XStringToKeysym -C/func/-/XSubImage -C/func/-/XSubtractRegion -C/func/-/XSupportsLocale -C/func/-/XSync -C/func/-/XSynchronize -C/func/-/XtAddActions -C/func/-/XtAddCallback -C/func/-/XtAddCallbacks -C/func/-/XtAddConverter -C/func/-/XtAddEventHandler -C/func/-/XtAddExposureToRegion -C/func/-/XtAddGrab -C/func/-/XtAddInput -C/func/-/XtAddRawEventHandler -C/func/-/XtAddTimeOut -C/func/-/XtAddWorkProc -C/func/-/XtAllocateGC -C/func/-/XtAppAddActionHook -C/func/-/XtAppAddActions -C/func/-/XtAppAddBlockHook -C/func/-/XtAppAddConverter -C/func/-/XtAppAddInput -C/func/-/XtAppAddSignal -C/func/-/XtAppAddTimeOut -C/func/-/XtAppAddWorkProc -C/func/-/XtAppCreateShell -C/func/-/XtAppError -C/func/-/XtAppErrorMsg -C/func/-/XtAppGetErrorDatabase -C/func/-/XtAppGetErrorDatabaseText -C/func/-/XtAppGetExitFlag -C/func/-/XtAppGetSelectionTimeout -C/func/-/XtAppInitialize -C/func/-/XtAppLock -C/func/-/XtAppMainLoop -C/func/-/XtAppNextEvent -C/func/-/XtAppPeekEvent -C/func/-/XtAppPending -C/func/-/XtAppProcessEvent -C/func/-/XtAppReleaseCacheRefs -C/func/-/XtAppSetErrorHandler -C/func/-/XtAppSetErrorMsgHandler -C/func/-/XtAppSetExitFlag -C/func/-/XtAppSetFallbackResources -C/func/-/XtAppSetSelectionTimeout -C/func/-/XtAppSetTypeConverter -C/func/-/XtAppSetWarningHandler -C/func/-/XtAppSetWarningMsgHandler -C/func/-/XtAppUnlock -C/func/-/XtAppWarning -C/func/-/XtAppWarningMsg -C/func/-/XtAugmentTranslations -C/func/-/XtBuildEventMask -C/func/-/XtCallAcceptFocus -C/func/-/XtCallActionProc -C/func/-/XtCallbackExclusive -C/func/-/XtCallbackNone -C/func/-/XtCallbackNonexclusive -C/func/-/XtCallbackPopdown -C/func/-/XtCallCallbackList -C/func/-/XtCallCallbacks -C/func/-/XtCallConverter -C/func/-/XtCalloc -C/func/-/XtCancelSelectionRequest -C/func/-/XtChangeManagedSet -C/func/-/XtCheckSubclass -C/func/-/XtClass -C/func/-/XtCloseDisplay -C/func/-/XtConfigureWidget -C/func/-/XtConvert -C/func/-/XtConvertAndStore -C/func/-/XtConvertCase -C/func/-/XtCreateApplicationContext -C/func/-/XtCreateApplicationShell -C/func/-/XtCreateManagedWidget -C/func/-/XtCreatePopupShell -C/func/-/XtCreateSelectionRequest -C/func/-/XtCreateWidget -C/func/-/XtCreateWindow -C/func/-/XtDatabase -C/func/-/XtDestroyApplicationContext -C/func/-/XtDestroyWidget -C/func/-/XtDirectConvert -C/func/-/XtDisownSelection -C/func/-/XtDispatchEvent -C/func/-/XtDispatchEventToWidget -C/func/-/XtDisplay -C/func/-/XtDisplayInitialize -C/func/-/XtDisplayOfObject -C/func/-/XtDisplayStringConversionWarning -C/func/-/XtDisplayToApplicationContext -C/func/-/XtError -C/func/-/XtErrorMsg -C/func/-/XTestCompareCurrentCursorWithWindow -C/func/-/XTestCompareCursorWithWindow -C/func/-/XTestDiscard -C/func/-/XTestFakeButtonEvent -C/func/-/XTestFakeKeyEvent -C/func/-/XTestFakeMotionEvent -C/func/-/XTestFakeRelativeMotionEvent -C/func/-/XTestGrabControl -C/func/-/XTestQueryExtension -C/func/-/XTestSetGContextOfGC -C/func/-/XTestSetVisualIDOfVisual -C/func/-/XTextExtents -C/func/-/XTextExtents16 -C/func/-/XTextItem -C/func/-/XTextItem16 -C/func/-/XTextProperty -C/func/-/XTextPropertyToStringList -C/func/-/XTextWidth -C/func/-/XTextWidth16 -C/func/-/XtFindFile -C/func/-/XtFree -C/func/-/XtGetActionKeysym -C/func/-/XtGetActionList -C/func/-/XtGetApplicationNameAndClass -C/func/-/XtGetApplicationResources -C/func/-/XtGetClassExtension -C/func/-/XtGetConstraintResourceList -C/func/-/XtGetDisplays -C/func/-/XtGetErrorDatabase -C/func/-/XtGetErrorDatabaseText -C/func/-/XtGetGC -C/func/-/XtGetKeyboardFocusWidget -C/func/-/XtGetKeysymTable -C/func/-/XtGetMultiClickTime -C/func/-/XtGetResourceList -C/func/-/XtGetSelectionParameters -C/func/-/XtGetSelectionRequest -C/func/-/XtGetSelectionTimeout -C/func/-/XtGetSelectionValue -C/func/-/XtGetSelectionValueIncremental -C/func/-/XtGetSelectionValues -C/func/-/XtGetSelectionValuesIncremental -C/func/-/XtGetSubresources -C/func/-/XtGetSubvalues -C/func/-/XtGetValues -C/func/-/XtGrabButton -C/func/-/XtGrabKey -C/func/-/XtGrabKeyboard -C/func/-/XtGrabPointer -C/func/-/XtHasCallbacks -C/func/-/XtHooksOfDisplay -C/func/-/XTimeCoord -C/func/-/XtInitialize -C/func/-/XtInitializeWidgetClass -C/func/-/XtInsertEventHandler -C/func/-/XtInsertEventTypeHandler -C/func/-/XtInsertRawEventHandler -C/func/-/XtInstallAccelerators -C/func/-/XtInstallAllAccelerators -C/func/-/XtIsApplicationShell -C/func/-/XtIsComposite -C/func/-/XtIsConstraint -C/func/-/XtIsManaged -C/func/-/XtIsObject -C/func/-/XtIsOverrideShell -C/func/-/XtIsRealized -C/func/-/XtIsRectObj -C/func/-/XtIsSensitive -C/func/-/XtIsSessionShell -C/func/-/XtIsShell -C/func/-/XtIsSubclass -C/func/-/XtIsTopLevelShell -C/func/-/XtIsTransientShell -C/func/-/XtIsVendorShell -C/func/-/XtIsWidget -C/func/-/XtIsWMShell -C/func/-/XtKeysymToKeycodeList -C/func/-/XtLastEventProcessed -C/func/-/XtLastTimestampProcessed -C/func/-/XtMainLoop -C/func/-/XtMakeGeometryRequest -C/func/-/XtMakeResizeRequest -C/func/-/XtMalloc -C/func/-/XtManageChild -C/func/-/XtManageChildren -C/func/-/XtMapWidget -C/func/-/XtMergeArgLists -C/func/-/XtMoveWidget -C/func/-/XtName -C/func/-/XtNameToWidget -C/func/-/XtNew -C/func/-/XtNewString -C/func/-/XtNextEvent -C/func/-/XtNoticeSignal -C/func/-/XtNumber -C/func/-/XtOffset -C/func/-/XtOffsetOf -C/func/-/XtOpenApplication -C/func/-/XtOpenDisplay -C/func/-/XtOverrideTranslations -C/func/-/XtOwnSelection -C/func/-/XtOwnSelectionIncremental -C/func/-/XtParent -C/func/-/XtParseAcceleratorTable -C/func/-/XtParseTranslationTable -C/func/-/XtPeekEvent -C/func/-/XtPending -C/func/-/XtPopdown -C/func/-/XtPopup -C/func/-/XtPopupSpringLoaded -C/func/-/XtProcessEvent -C/func/-/XtProcessLock -C/func/-/XtProcessUnlock -C/func/-/XtQueryGeometry -C/func/-/XTranslateCoordinates -C/func/-/XtRealizeWidget -C/func/-/XtRealloc -C/func/-/XtRegisterCaseConverter -C/func/-/XtRegisterDrawable -C/func/-/XtRegisterExtensionSelector -C/func/-/XtRegisterGrabAction -C/func/-/XtReleaseGC -C/func/-/XtReleasePropertyAtom -C/func/-/XtRemoveActionHook -C/func/-/XtRemoveAllCallbacks -C/func/-/XtRemoveBlockHook -C/func/-/XtRemoveCallback -C/func/-/XtRemoveCallbacks -C/func/-/XtRemoveEventHandler -C/func/-/XtRemoveEventTypeHandler -C/func/-/XtRemoveGrab -C/func/-/XtRemoveInput -C/func/-/XtRemoveRawEventHandler -C/func/-/XtRemoveSignal -C/func/-/XtRemoveTimeOut -C/func/-/XtRemoveWorkProc -C/func/-/XtReservePropertyAtom -C/func/-/XtResizeWidget -C/func/-/XtResolvePathname -C/func/-/XtScreen -C/func/-/XtScreenDatabase -C/func/-/XtScreenOfObject -C/func/-/XtSendSelectionRequest -C/func/-/XtSessionGetToken -C/func/-/XtSessionReturnToken -C/func/-/XtSetArg -C/func/-/XtSetErrorHandler -C/func/-/XtSetErrorMsgHandler -C/func/-/XtSetEventDispatcher -C/func/-/XtSetKeyboardFocus -C/func/-/XtSetKeyTranslator -C/func/-/XtSetLanguageProc -C/func/-/XtSetMappedWhenManaged -C/func/-/XtSetMultiClickTime -C/func/-/XtSetSelectionParameters -C/func/-/XtSetSelectionTimeout -C/func/-/XtSetSensitive -C/func/-/XtSetSubvalues -C/func/-/XtSetTypeConverter -C/func/-/XtSetValues -C/func/-/XtSetWarningHandler -C/func/-/XtSetWarningMsgHandler -C/func/-/XtSetWMColormapWindows -C/func/-/XtStringConversionWarning -C/func/-/XtSuperclass -C/func/-/XtToolkitInitialize -C/func/-/XtToolkitThreadInitialize -C/func/-/XtTranslateCoords -C/func/-/XtTranslateKeycode -C/func/-/XtUngrabButton -C/func/-/XtUngrabKey -C/func/-/XtUngrabKeyboard -C/func/-/XtUngrabPointer -C/func/-/XtUninstallTranslations -C/func/-/XtUnmanageChild -C/func/-/XtUnmanageChildren -C/func/-/XtUnmapWidget -C/func/-/XtUnrealizeWidget -C/func/-/XtUnregisterDrawable -C/func/-/XtVaAppCreateShell -C/func/-/XtVaAppInitialize -C/func/-/XtVaCreateArgsList -C/func/-/XtVaCreateManagedWidget -C/func/-/XtVaCreatePopupShell -C/func/-/XtVaCreateWidget -C/func/-/XtVaGetApplicationResources -C/func/-/XtVaGetSubresources -C/func/-/XtVaGetSubvalues -C/func/-/XtVaGetValues -C/func/-/XtVaOpenApplication -C/func/-/XtVaSetSubvalues -C/func/-/XtVaSetValues -C/func/-/XtWarning -C/func/-/XtWarningMsg -C/func/-/XtWidgetToApplicationContext -C/func/-/XtWindow -C/func/-/XtWindowOfObject -C/func/-/XtWindowToWidget -C/func/-/XUndefineCursor -C/func/-/XUngrabButton -C/func/-/XUngrabDevice -C/func/-/XUngrabDeviceButton -C/func/-/XUngrabDeviceKey -C/func/-/XUngrabKey -C/func/-/XUngrabKeyboard -C/func/-/XUngrabPointer -C/func/-/XUngrabServer -C/func/-/XUninstallColormap -C/func/-/XUnionRectWithRegion -C/func/-/XUnionRegion -C/func/-/XUniqueContext -C/func/-/XUnloadFont -C/func/-/XUnlockDisplay -C/func/-/XUnmapEvent -C/func/-/XUnmapSubwindows -C/func/-/XUnmapWindow -C/func/-/XUnregisterIMInstantiateCallback -C/func/-/XUnsetICFocus -C/func/-/Xutf8DrawImageString -C/func/-/Xutf8DrawString -C/func/-/Xutf8DrawText -C/func/-/Xutf8LookupString -C/func/-/Xutf8ResetIC -C/func/-/Xutf8SetWMProperties -C/func/-/Xutf8TextEscapement -C/func/-/Xutf8TextExtents -C/func/-/Xutf8TextListToTextProperty -C/func/-/Xutf8TextPerCharExtents -C/func/-/Xutf8TextPropertyToTextList -C/func/-/Xv -C/func/-/XVaCreateNestedList -C/func/-/XvFreeAdaptorInfo -C/func/-/XvFreeEncodingInfo -C/func/-/XvGetPortAttribute -C/func/-/XvGetStill -C/func/-/XvGetVideo -C/func/-/XvGrabPort -C/func/-/XVisibilityEvent -C/func/-/XVisualIDFromVisual -C/func/-/XVisualInfo -C/tdef/-/XVolumeParam -C/func/-/XvPortNotify -C/func/-/XvPutStill -C/func/-/XvPutVideo -C/func/-/XvQueryAdaptors -C/func/-/XvQueryBestSize -C/func/-/XvQueryEncodings -C/func/-/XvQueryExtension -C/func/-/XvSelectPortNotify -C/func/-/XvSelectVideoNotify -C/func/-/XvSetPortAttribute -C/func/-/XvStopVideo -C/func/-/XvUngrabPort -C/func/-/XvVideoNotify -C/func/-/XWarpPointer -C/func/-/XwcDrawImageString -C/func/-/XwcDrawString -C/func/-/XwcDrawText -C/func/-/XwcFreeStringList -C/func/-/XwcLookupString -C/func/-/XwcResetIC -C/func/-/XwcTextEscapement -C/func/-/XwcTextExtents -C/func/-/XwcTextListToTextProperty -C/func/-/XwcTextPerCharExtents -C/func/-/XwcTextPropertyToTextList -C/func/-/XWindowAttributes -C/func/-/XWindowChanges -C/func/-/XWindowEvent -C/func/-/XWithdrawWindow -C/func/-/XWMGeometry -C/func/-/XWMHints -C/func/-/XWriteBitmapFile -C/func/-/XXorRegion -Objective-C/instm/CIVector/Y -JavaScript/data/HTMLImageElement/y -JavaScript/data/MouseEvent/y -JavaScript/data/SVGForeignObjectElement/y -JavaScript/data/SVGFESpotLightElement/y -JavaScript/data/SVGMaskElement/y -JavaScript/data/SVGFEPointLightElement/y -JavaScript/data/SVGFilterElement/y -JavaScript/data/SVGImageElement/y -JavaScript/data/SVGCursorElement/y -JavaScript/data/SVGFilterPrimitiveStandardAttributes/y -JavaScript/data/SVGPathSegLinetoRel/y -JavaScript/data/SVGPathSegCurvetoCubicSmoothRel/y -JavaScript/data/SVGTextPositioningElement/y -JavaScript/data/SVGPathSegCurvetoQuadraticSmoothAbs/y -JavaScript/data/SVGRect/y -JavaScript/data/SVGPathSegCurvetoQuadraticAbs/y -JavaScript/data/SVGSVGElement/y -JavaScript/data/SVGPathSegMovetoAbs/y -JavaScript/data/SVGPathSegCurvetoCubicAbs/y -JavaScript/data/SVGPathSegCurvetoQuadraticRel/y -JavaScript/data/SVGPathSegMovetoRel/y -JavaScript/data/SVGPathSegArcAbs/y -JavaScript/data/SVGPathSegLinetoAbs/y -JavaScript/data/SVGPathSegLinetoVerticalAbs/y -JavaScript/data/SVGPathSegCurvetoCubicRel/y -JavaScript/data/SVGPoint/y -JavaScript/data/SVGPatternElement/y -JavaScript/data/SVGRectElement/y -JavaScript/data/SVGPathSegCurvetoQuadraticSmoothRel/y -JavaScript/data/SVGPathSegArcRel/y -JavaScript/data/SVGUseElement/y -JavaScript/data/SVGPathSegCurvetoCubicSmoothAbs/y -JavaScript/data/SVGPathSegLinetoVerticalRel/y -JavaScript/data/WheelEvent/y -JavaScript/data/WebKitPoint/y -C/func/-/y0 -C/func/-/y1 -JavaScript/data/SVGLineElement/y1 -JavaScript/data/SVGLinearGradientElement/y1 -JavaScript/data/SVGPathSegCurvetoCubicAbs/y1 -JavaScript/data/SVGPathSegCurvetoQuadraticRel/y1 -JavaScript/data/SVGPathSegCurvetoQuadraticAbs/y1 -JavaScript/data/SVGPathSegCurvetoCubicRel/y1 -JavaScript/data/SVGLineElement/y2 -JavaScript/data/SVGLinearGradientElement/y2 -JavaScript/data/SVGPathSegCurvetoCubicRel/y2 -JavaScript/data/SVGPathSegCurvetoCubicSmoothAbs/y2 -JavaScript/data/SVGPathSegCurvetoCubicSmoothRel/y2 -JavaScript/data/SVGPathSegCurvetoCubicAbs/y2 -Objective-C/instm/CAEmitterCell/yAcceleration -Objective-C/instp/CAEmitterCell/yAcceleration -Objective-C/instm/NSResponder/yank: -JavaScript/data/SVGFEDisplacementMapElement/yChannelSelector -Objective-C/instm/NSDateComponents/year -Objective-C/clm/NSColor/yellowColor -Objective-C/instm/NSColor/yellowComponent -C/macro/-/YES -C/func/-/yn -C++/instm/IOService/youAreRoot -C/func/-/yp_all -C/func/-/yp_bind -C/func/-/yp_first -C/func/-/yp_get_default_domain -C/func/-/yp_master -C/func/-/yp_match -C/func/-/yp_next -C/func/-/yp_order -C/func/-/yp_unbind -C/func/-/ypclnt -C/func/-/yperr_string -C/func/-/ypprot_err -Objective-C/instm/CIVector/Z -JavaScript/data/SVGFEPointLightElement/z -JavaScript/data/SVGFESpotLightElement/z -Objective-C/instp/CAEmitterCell/zAcceleration -Objective-C/instm/CAEmitterCell/zAcceleration -C/func/-/zconv -C/func/-/zconvD -C/func/-/zdotpr -C/func/-/zdotprD -Objective-C/clm/NSDecimalNumber/zero -JavaScript/clconst/WebGLRenderingContext/ZERO -C++/instm/IOATACommand/zeroCommand -C++/instm/IOATABusCommand/zeroCommand -C++/instm/IOExtendedLBA/zeroData -C++/instm/IOATABusInfo/zeroData -Objective-C/instm/NSNumberFormatter/zeroSymbol -C/func/-/zidotpr -C/func/-/zidotprD -C/func/-/zlib -C/func/-/zmma -C/func/-/zmmaD -C/func/-/zmms -C/func/-/zmmsD -C/func/-/zmmul -C/func/-/zmmulD -C/func/-/zmsm -C/func/-/zmsmD -Objective-C/instm/NSGarbageCollector/zone -Objective-C/intfm/NSObject/zone -Objective-C/instm/NSWindow/zoom: -JavaScript/data/SVGZoomAndPan/zoomAndPan -Objective-C/instp/IKImageView/zoomFactor -Objective-C/instm/IKImageView/zoomFactor -Objective-C/instm/IKImageView/zoomImageToActualSize: -Objective-C/instm/IKImageView/zoomImageToFit: -Objective-C/instm/IKImageView/zoomImageToRect: -Objective-C/instm/PDFView/zoomIn: -Objective-C/instm/IKImageView/zoomIn: -Objective-C/instm/PDFView/zoomOut: -Objective-C/instm/IKImageView/zoomOut: -JavaScript/data/SVGZoomEvent/zoomRectScreen -Objective-C/instm/IKImageBrowserView/zoomValue -C/func/-/zopen -Objective-C/instp/CALayer/zPosition -Objective-C/instm/CALayer/zPosition -C/func/-/zrdotpr -C/func/-/zrdotprD -C/func/-/zrvadd -C/func/-/zrvaddD -C/func/-/zrvmul -C/func/-/zrvmulD -C/func/-/zrvsub -C/func/-/zrvsubD -C/func/-/ztoc -C/func/-/ztocD -C/func/-/zvadd -C/func/-/zvaddD -C/func/-/zvcma -C/func/-/zvcmaD -C/func/-/zvmul -C/func/-/zvmulD -C/func/-/zvsub -C/func/-/zvsubD -C++/instm/Test/~Test -C++/instm/TestCase/~TestCase -C++/instm/TestFailure/~TestFailure -C++/instm/TestInvocation/~TestInvocation -C++/instm/TestLog/~TestLog -C++/instm/TestObserver/~TestObserver -C++/instm/TestRun/~TestRun -C++/instm/TestSuite/~TestSuite diff --git a/extras/imported/rails-mode/.yas-setup.el b/extras/imported/rails-mode/.yas-setup.el deleted file mode 100644 index c4205ce..0000000 --- a/extras/imported/rails-mode/.yas-setup.el +++ /dev/null @@ -1,1304 +0,0 @@ -;; .yas-setup.el for rails-mode -(defvar yas-rails-root-cache nil) - -(defun yas-rails-online-doc () - (interactive) - (browse-url (format "http://apidock.com/rails/search/quick?query=%s" (read-from-minibuffer "Word: " (thing-at-point 'word))))) - -(if (require 'rhtml-mode nil t) - (add-to-list 'auto-mode-alist '("\\.erb$" . rhtml-mode)) - (add-to-list 'auto-mode-alist '("\\.erb$" . yas-rails-erb-mode))) - - -(define-derived-mode yas-rails-erb-mode - nxml-mode "eRB" - "Embedded Ruby Mode, very thin layer over `nxml-mode'." - (add-to-list (make-local-variable 'yas-extra-modes) 'html-mode) - (rng-set-vacuous-schema) - (message "hey erb mode")) - -(defvar yas-rails-erb-font-lock-keywords - '(("\\(<%=\\)\\(.*+\\)\\(%>\\)" - (1 font-lock-function-name-face) - (2 font-lock-string-face) - (3 font-lock-function-name-face)) - ("\\(<%\\)\\(.*+\\)\\(%>\\)" - (1 font-lock-variable-name-face) - (2 font-lock-string-face) - (3 font-lock-variable-name-face))) - "(Crummy) font lock highlighting for ERB constructs.." - ) -(font-lock-add-keywords 'yas-rails-erb-mode yas-rails-erb-font-lock-keywords) - -;; stolen from rinari-mode's rinari-root -(defun yas-rails-root (&optional dir) - (or dir (setq dir default-directory)) - (or (and (featurep 'rinari) (rinari-root dir)) - yas-rails-root-cache - (if (file-exists-p (expand-file-name - "environment.rb" (expand-file-name "config" dir))) - (set (make-local-variable 'yas-rails-root-cache) dir) - (let ((new-dir (expand-file-name (file-name-as-directory "..") dir))) - ;; regexp to match windows roots, tramp roots, or regular posix roots - (unless (string-match "\\(^[[:alpha:]]:/$\\|^/[^\/]+:\\|^/$\\)" dir) - (yas-rails-root new-dir)))))) - -(defun yas-rails-find-alternate-file () - (if (featurep 'rinari) - (cond ((yas-rails-view-p) - (rinari-find-model)) - ((yas-rails-model-p) - (rinari-find-controller)) - ((yas-rails-controller-p) - (rinari-find-view)) - (t - (message "oops, have to improve `yas-rails-find-alternate-file'"))) - (yas-unimplemented))) - -;; stolen from rinari-mode's rinari-extract-partial -(defun yas-rails-extract-partial (begin end partial-name) - (interactive "r\nsName your partial: ") - (let* ((path (buffer-file-name)) ending) - (if (string-match "view" path) - (let ((ending (and (string-match ".+?\\(\\.[^/]*\\)$" path) - (match-string 1 path))) - (partial-name - (replace-regexp-in-string "[[:space:]]+" "_" partial-name))) - (kill-region begin end) - (if (string-match "\\(.+\\)/\\(.+\\)" partial-name) - (let ((default-directory (expand-file-name (match-string 1 partial-name) - (expand-file-name "..")))) - (find-file (concat "_" (match-string 2 partial-name) ending))) - (find-file (concat "_" partial-name ending))) - (yank) (pop-to-buffer nil) - (insert (concat "<%= render :partial => '" partial-name "' %>\n"))) - (message "not in a view")))) -;;; -;;; The TextMate "intelligent" migration snippet -;; -(defvar yas-rails-intelligent-migration-snippet-bits - '((:rename_column . ((:up . "rename_column :${1:table_name}, :${2:column_name}, :${3:new_column_name}$0") - (:down . "rename_column :$1, :$3, :$2" ))) - - (:rename_column_continue . ((:up . "rename_column :${1:table_name}, :${2:column_name}, :${3:new_column_name}\nmncc$0") - (:down . "rename_column :$1, :$3, :$2" ))) - - (:rename_table . ((:up . "rename_table :${1:old_table_name}, :${2:new_table_name}$0") - (:down . "rename_table :$2, :$1" ))) - - (:rename_table_continue . ((:up . "rename_table :${1:old_table_name}, :${2:new_table_name}\nmntc$0") - (:down . "rename_table :$2, :$1" ))) - - (:add_remove_column . ((:up . "add_column :${1:table_name}, :${2:column_name}, :${3:string}$0") - (:down . "remove_column :$1, :$2" ))) - - (:add_remove_column_continue . ((:up . "add_column :${1:table_name}, :${2:column_name}, :${3:string}\nmarcc$0") - (:down . "remove_column :$1, :$2" ))) - - (:remove_add_column . ((:up . "remove_column :${1:table_name}, :${2:column_name}$0") - (:down . "add_column :$1, :$2, :$3{string}" ))) - - (:create_drop_table . ((:up . "create_table :${1:table_name}, :force . true do |t|\nt.$0\nt.timestamps\nend") - (:down . "drop_table :$1" ))) - - (:change_change_table . ((:up . "change_table :${1:table_name} do |t|\nt.$0\nend") - (:down . "change_table :$1 do |t|\nend" ))) - - (:add_remove_index . ((:up . "add_index :${1:table_name}, :${2:column_name}$0") - (:down . "remove_index :$1, :$2" ))) - - (:add_remove_unique_index . ((:up . "add_index :${1:table_name}, ${2:[:${3:column_name}${4:, :${5:column_name}}]}, :unique . true$0") - (:down . "remove_index :$1, :column . $2" ))) - - (:add_remove_named_index . ((:up . "add_index :${1:table_name}, [:${2:column_name}${3:, :${4:column_name}}], :name . \"${5:index_name}\"${6:, :unique . true}$0") - (:down . "remove_index :$1, :name . :$5" ))))) - - -(defun yas-rails-intelligent-migration-snippet (type) - (let* ((start (point)) - (end (save-excursion - (search-forward-regexp "^\s*def\sself\.down" nil 'noerror))) - (up (cdr (assoc :up (cdr (assoc type yas-rails-intelligent-migration-snippet-bits))))) - (down (cdr (assoc :down (cdr (assoc type yas-rails-intelligent-migration-snippet-bits))))) - (snippet - (and up down start end (concat up - (buffer-substring-no-properties start end) - "\n" down)))) - (when snippet - (delete-region start end) - (yas-expand-snippet snippet)))) - -(yas-define-condition-cache - yas-rails-intelligent-migration-snippet-condition-p - "Non-nil if an \"intelligent\" migration snippet should be expanded" - (and (yas-rails-migration-p) - (not (yas-rails-in-create-table-p)) - (not (yas-rails-in-change-table-p)) - (yas-rails-in-ruby-block-like "self\.up"))) - -(defun yas-rails-in-ruby-block-like (regexp) - (save-excursion - (ruby-accurate-end-of-block) - (ruby-backward-sexp) - (search-forward-regexp regexp (line-end-position) t))) - -;;; conditions -(yas-define-condition-cache - yas-rails-in-create-table-p - "Non-nil if point is inside a 'create_table' method call." - (yas-rails-in-ruby-block-like "create_table")) - -(yas-define-condition-cache - yas-rails-in-change-table-p - "Non-nil if point is inside a 'change_table' method call." - (yas-rails-in-ruby-block-like "change_table")) - -(yas-define-condition-cache - yas-rails-model-p - "Non-nil if the current buffer is a rails model." - (and (yas-rails-root) - (string-match "app/models/$" default-directory))) - -(yas-define-condition-cache - yas-rails-view-p - "Non-nil if the current buffer is a rails view." - (and (yas-rails-root) - (string-match "app/views/" default-directory))) - -(yas-define-condition-cache - yas-rails-helper-p - "Non-nil if the current buffer is a rails helper." - (and (yas-rails-root) - (string-match "app/helpers/" default-directory))) - -(yas-define-condition-cache - yas-rails-controller-p -"Non-nil if the current buffer is a rails controller." - (and (yas-rails-root) - (string-match "app/controllers/$" default-directory))) - -(yas-define-condition-cache - yas-rails-migration-p - "Non-nil if the current buffer is a rails migration." - (and (yas-rails-root) - (string-match "db/migrate/" default-directory))) - -(defun yas-rails-activate-maybe () - (when (and yas-minor-mode - (yas-rails-root)) - (add-to-list (make-local-variable 'yas-extra-modes) 'rails-mode))) - -(defadvice cd (after yas-rails-on-cd-activate activate) - "Add `rails-mode' to `yas-extra-modes' so that rails snippets -are recognized. Stolen from `rinari-mode' more or`' less." - (setq yas-rails-root-cache nil) - (yas-rails-activate-maybe)) - -(add-hook 'yas-minor-mode-hook 'yas-rails-activate-maybe) -;; Substitutions for: content -;; -;; # as in Macros/Remove 3A Add Column.yasnippet -;; 809BCA42-5C49-4B08-B3C4-BB773036C086 =yyas> (yas-unknown) -;; -;; # as in Macros/Add 3A Remove Named Index.yasnippet -;; A7F692C1-778A-48B8-945E-573568BA0403 =yyas> (yas-unknown) -;; -;; # as in Commands/Go To Unit Test.yasnippet -;; BDBB15A4-2824-4BEC-93A5-7475F9C46A39 =yyas> (if (featurep 'rinari) (rinari-find-test) (yas-unimplemented 'rinari)) -;; -;; # as in Commands/Go To File on This Line.yasnippet -;; 09BB96F2-75FD-48A7-8314-B5B56B09B477 =yyas> (ffap) -;; -;; # as in Commands/Test Uncommitted.yasnippet -;; 212C3047-D9B1-11DC-94E9-00112475D960 =yyas> (yas-unknown) -;; -;; # as in Commands/Redo Last Migration.yasnippet -;; CFDA9F62-D071-4E0F-AD10-66AE0729FFCF =yyas> (yas-rails-compile "rake") -;; -;; # as in Commands/Documentation for Word.yasnippet -;; 32F30207-D827-46D9-889A-451C35269D52 =yyas> (yas-rails-online-doc) -;; -;; # as in Commands/Autocomplete Foreign Key Fixture Reference.yasnippet -;; 0BCF0EE2-35EE-4959-A771-E74D55271D5A =yyas> (yas-unknown) -;; -;; # as in Commands/Autocomplete Foreign Key Fixture Reference (habtm).yasnippet -;; 275C0B86-F735-49B6-8A22-218A8F4CC2E0 =yyas> (yas-unknown) -;; -;; # as in Macros/Change Change Table.yasnippet -;; 20FC02C5-32A3-4F20-B163-FF75C9FDFABF =yyas> (yas-rails-intelligent-migration-snippet :change_change_table) -;; -;; # as in Commands/Rake Migrate.yasnippet -;; 985F56D4-82ED-4C45-8250-2ECCFC71957E =yyas> (yas-unknown) -;; -;; # as in Commands/DB Schema Import.yasnippet -;; 6DEF923E-2347-46EC-AFBE-183D08E63DC1 =yyas> (yas-unknown) -;; -;; # as in Commands/Load Fixtures (Test DB).yasnippet -;; F758BFD1-00CA-4742-BE71-032580080F5C =yyas> (yas-unknown) -;; -;; # as in Commands/Generate Quick Migration.yasnippet -;; D696FA2C-785A-4B73-A2F6-F750904DD7C2 =yyas> (yas-unknown) -;; -;; # as in Macros/Remove 3A Add Timestamps.yasnippet -;; E885A3E8-8020-4AC3-A25E-510B26F114B2 =yyas> (yas-unknown) -;; -;; # as in Macros/Add 3A Remove Several Columns (marcc).yasnippet -;; 27A6C58A-896B-4956-BA81-D671A2EF9C7D =yyas> (yas-rails-intelligent-migration-snippet :add_remove_column_continue) -;; -;; # as in Macros/Add 3A Remove Column.yasnippet -;; 18C76913-061C-4D65-866D-67AA3724AFEF =yyas> (yas-rails-intelligent-migration-snippet :add_remove_column) -;; -;; # as in Commands/Go To View.yasnippet -;; EE862691-A624-4797-90CF-EDD39EFB2D8E =yyas> (if (featurep 'rinari) (rinari-find-view) (yas-unimplemented 'rinari)) -;; -;; # as in Commands/Test Plugins.yasnippet -;; 0D966168-D9B1-11DC-94E9-00112475D960 =yyas> (yas-unknown) -;; -;; # as in Macros/Change Column.yasnippet -;; 42DE1441-D1B7-4998-BAF9-16B1EC7E210C =yyas> (yas-unknown) -;; -;; # as in Commands/Make Selection in to Partial.yasnippet -;; 1DD8A214-1C97-45BA-ADEE-8F888DDE8570 =yyas> (call-interactively 'yas-rails-extract-partial) -;; -;; # as in Commands/Go To Functional Test.yasnippet -;; DFE393BE-0764-49FE-B464-6350A50921E6 =yyas> (if (featurep 'rinari) (rinari-find-test) (yas-unimplemented 'rinari)) -;; -;; # as in Commands/Test Recent.yasnippet -;; 190401C2-D9B1-11DC-94E9-00112475D960 =yyas> (yas-unknown) -;; -;; # as in Commands/Test All.yasnippet -;; DC549A45-D9B0-11DC-94E9-00112475D960 =yyas> (yas-unknown) -;; -;; # as in Macros/Rename Column.yasnippet -;; AC50762C-DE40-4EB9-9A22-2F6AF2EA4EA3 =yyas> (yas-unknown) -;; -;; # as in Macros/Create 3A Drop Table.yasnippet -;; 25F8F5D8-2BD1-45D8-8B2A-9F2EA4F73AA2 =yyas> (yas-unknown) -;; -;; # as in Macros/Add 3A Remove Unique Index.yasnippet -;; 33057A79-677B-4DFB-99D4-1492778BDDC6 =yyas> (yas-unknown) -;; -;; # as in Macros/Add 3A Remove Timestamps.yasnippet -;; 221969A1-A5EA-4A8E-8817-C74EBED63901 =yyas> (yas-unknown) -;; -;; # as in Commands/Go To Helper.yasnippet -;; 51C9C27A-D931-49F9-B6D8-C0E7ABEC992D =yyas> (if (featurep 'rinari) (rinari-find-helper) (yas-unimplemented 'rinari)) -;; -;; # as in Commands/DB Schema Dump.yasnippet -;; 310C901C-EF32-4E88-938A-804ABBF8C428 =yyas> (yas-unknown) -;; -;; # as in Commands/Test Functionals.yasnippet -;; F4EA552D-D9B0-11DC-94E9-00112475D960 =yyas> (yas-unknown) -;; -;; # as in Commands/Migrate to Previous Version.yasnippet -;; 9A1AE6BA-8350-4AB7-B5BD-969A7E64CF29 =yyas> (yas-unknown) -;; -;; # as in Commands/Go To Model.yasnippet -;; C7151BF3-7068-4344-9B09-86F3BF4A9C63 =yyas> (if (featurep 'rinari) (rinari-find-model) (yas-unimplemented 'rinari)) -;; -;; # as in Macros/Drop 3A Create Table.yasnippet -;; A2135370-67A1-488D-B43C-B4F221127C2F =yyas> (yas-unknown) -;; -;; # as in Macros/Change Column Default.yasnippet -;; A219EBB8-004A-4012-B5B2-232C9A5C94F8 =yyas> (yas-unknown) -;; -;; # as in Macros/Add 3A Remove Index.yasnippet -;; 95F83E1D-5B03-424F-8BEC-8AF66C8939BC =yyas> (yas-unknown) -;; -;; # as in Commands/Load Fixtures.yasnippet -;; 5EEA0C71-B34B-4408-953B-F47AAD343CCC =yyas> (yas-unknown) -;; - -;; -;; # as in Commands/Clone Development DB to Test DB.yasnippet -;; 6F2AB859-46E3-4FF5-A9A7-E9A813AB5DE1 =yyas> (yas-unknown) -;; -;; # as in Macros/Rename 3A Rename Several Columns.yasnippet -;; F03162DE-9DB6-417B-9DD7-52D9F11EA736 =yyas> (yas-unknown) -;; -;; # as in Commands/Go To Stylesheet.yasnippet -;; B207BBD4-D6AA-41E9-9530-27210F2D7B66 =yyas> (if (featurep 'rinari) (rinari-find-stylesheet) (yas-unimplemented 'rinari)) -;; -;; # as in Commands/Go To Javascript.yasnippet -;; B078346F-61D8-4E75-9427-80720FBC67F7 =yyas> (if (featurep 'rinari) (rinari-find-javascript) (yas-unimplemented 'rinari)) -;; -;; # as in Commands/Rake Migrate to Version.yasnippet -;; 07C696F8-79F5-4E0B-9EE9-03B693A54ABB =yyas> (yas-unknown) -;; -;; # as in Commands/Go To Alternate File.yasnippet -;; 9453F0B3-B946-445F-BDB0-B01DE70732FC =yyas> (yas-rails-find-alternate-file) -;; -;; # as in Commands/View demo help.yasnippet -;; 964436B8-E578-11DC-8177-00112475D960 =yyas> (yas-unknown) -;; -;; # as in Commands/Go to Fixture.yasnippet -;; 638D94A4-BDFC-4FE9-8909-9934F3FD2899 =yyas> (if (featurep 'rinari) (rinari-find-fixture) (yas-unimplemented 'rinari)) -;; -;; # as in Macros/Rename Table.yasnippet -;; FD8CC811-2AD3-480F-B975-DF959DC96C67 =yyas> (yas-unknown) -;; -;; # as in Macros/Rename 3A Rename Several Columns (mncc).yasnippet -;; 04A86178-71B1-430A-A06D-DFF7C9A338B5 =yyas> (yas-unknown) -;; -;; # as in Commands/Generate.yasnippet -;; 4904EDC7-5ED3-4132-AAB2-C2AD87C97EFE =yyas> (yas-unknown) -;; -;; # as in Commands/Test Integration.yasnippet -;; 04A30A4D-D9B1-11DC-94E9-00112475D960 =yyas> (yas-unknown) -;; -;; # as in Commands/Show DB Schema.yasnippet -;; 1970AE74-3949-40B3-B263-727AA3FF167A =yyas> (yas-unknown) -;; -;; # as in Macros/Add 3A Remove Several Columns.yasnippet -;; 7BC860E6-7561-4E6E-983B-507D7A6F6228 =yyas> (yas-unknown) -;; -;; # as in Commands/Install Bundled Plugin.yasnippet -;; 46ECE243-0448-4A64-A223-27CC21E7704D =yyas> (yas-unknown) -;; -;; # as in Commands/Go To File.yasnippet -;; 0CCC8443-40F3-4BAB-9440-D737562B5F45 =yyas> (if (featurep 'rinari) (rinari-find-file-in-project) (yas-unimplemented 'rinari)) -;; -;; # as in Commands/Test Units.yasnippet -;; 2C60CBA1-D9B1-11DC-94E9-00112475D960 =yyas> (yas-unknown) -;; -;; # as in Snippets/returning do 7Cvariable7C E280A6 end.yasnippet -;; ${2/(^(?\s*[a-z_][a-zA-Z0-9_]*\s*)(,\g)*,?\s*$)|.*/(?1: |)/} =yyas> ${2:$(and (yas-text) " |")} -;; ${2/(^(?\s*[a-z_][a-zA-Z0-9_]*\s*)(,\g)*,?\s*$)|.*/(?1:|)/} =yyas> ${2:$(and (yas-text) "|")} -;; -;; # as in Snippets/form_for label.yasnippet -;; ${1/[[:alpha:]]+|(_)/(?1: :\u$0)/g} =yyas> ${1:$(capitalize (replace-regexp-in-string "_" " " yas-text))} -;; -;; # as in Snippets/has_one (ho).yasnippet -;; ${1/[[:alpha:]]+|(_)/(?1::\u$0)/g} =yyas> ${1:$(replace-regexp-in-string "_" "" (capitalize yas-text))} -;; -;; # as in Snippets/Create sweeper class.yasnippet -;; ${1/./\l$0/} =yyas> ${1:$(and (yas-text) (concat (downcase (substring yas-text 0 1)) (substring yas-text 1)))} -;; -;; # as in Snippets/image_submit_tag.yasnippet -;; ${1/^(\w+)(\.\w*)?$/$1/} =yyas> ${1:$(file-name-sans-extension yas-text)} -;; -;; # as in Snippets/respond_to (html).yasnippet -;; $TM_SELECTED_TEXT =yyas> `yas-selected-text` -;; -;; # as in Snippets/find_in_batches.yasnippet -;; ${TM_CURRENT_WORD/(\w+)\./\L$1/g} =yyas> `(downcase (replace-regexp-in-string "\\..*$" "" (current-word)))` -;; - -;; Substitutions for: condition - -;; text.html.ruby, source.ruby.rails.embedded.html, meta.rails.helper, meta.rails.unit_test, source.js, source.css, source.yaml, meta.rails.controller, meta.rails.functional_test, text.haml =yyas> t -;; text.html.ruby, source.ruby.rails.embedded.html, meta.rails.helper, meta.rails.functional_test, source.js, source.css, source.yaml, meta.rails.model, meta.rails.unit_test, text.haml =yyas> t -;; text.html.ruby, source.ruby.rails.embedded.html, meta.rails.controller, meta.rails.model, meta.rails.unit_test, meta.rails.functional_test, text.haml =yyas> t -;; meta.rails.controller, meta.rails.helper, meta.rails.model, meta.rails.unit_test, meta.rails.functional_test =yyas> t -;; text.html.ruby, source.ruby.rails.embedded.html, meta.rails.controller, meta.rails.helper, text.haml =yyas> t -;; meta.rails.controller, meta.rails.helper, meta.rails.model, meta.rails.functional_test, source.yaml =yyas> t -;; meta.rails.controller, meta.rails.mailer, source.js, source.css =yyas> t -;; meta.rails.controller, meta.rails.helper, meta.rails.model, source.yaml, meta.rails.unit_test =yyas> t -;; meta.rails.migration - meta.rails.migration.create_table - meta.rails.migration.change_table =yyas> (yas-rails-intelligent-migration-snippet-condition-p) -;; meta.rails.migration.create_table, meta.rails.migration.change_table =yyas> (or (yas-rails-in-create-table-p) (yas-rails-in-change-table-p)) -;; meta.rails.controller, meta.rails.mailer, source.js, source.css =yyas> (yas-unknown) -;; meta.rails.migration.create_table =yyas> (yas-rails-create-table-p) -;; meta.rails.functional_test =yyas> (yas-rails-functional-test-p) -;; text.html.ruby, text.haml =yyas> (yas-rails-view-p) -;; meta.rails.controller =yyas> (yas-rails-controller-p) -;; meta.rails.routes =yyas> (yas-rails-routes-p) -;; text.html.ruby =yyas> (yas-unknown) -;; -;; -;; AC385ABF-96CD-4FCB-80AD-BF37D6EE79D2 =yyas> (and (member major-mode '(nxml-mode html-mode rhtml-mode)) (yas-rails-view-p)) - - -;; Substitutions for: binding -;; -;; # as in Snippets/rails session.yasnippet -;; ^j =yyas> C-c M-j -;; -;; # as in Commands/Autocomplete Foreign Key Fixture Reference (habtm).yasnippet -;; ~$ =yyas> (yas-unknown) -;; -;; # as in Commands/Go To View.yasnippet -;; ~$@ =yyas> [M-S-s-down] -;; -;; # as in Commands/Generate Quick Migration.yasnippet -;; ^M =yyas> (yas-unknown) -;; -;; # as in Commands/Go To File on This Line.yasnippet -;; ~@ =yyas> (yas-unknown) -;; -;; # as in Commands/Show DB Schema.yasnippet -;; ^@S =yyas> C-c M-s -;; -;; # as in Snippets/rails params.yasnippet -;; ^p =yyas> C-c M-p -;; -;; # as in Commands/Go To File.yasnippet -;; 0CCC8443-40F3-4BAB-9440-D737562B5F45 =yyas> [M-s-up] -;; # as in Commands/Go To Alternate File.yasnippet -;; 9453F0B3-B946-445F-BDB0-B01DE70732FC =yyas> [M-s-down] -;; -;; # as in Commands/Autocomplete Foreign Key Fixture Reference.yasnippet -;; ~ =yyas> (yas-unknown) -;; -;; # as in Commands/Test Units.yasnippet -;; ^\ =yyas> C-c M-\ -;; -;; # as in Commands/Rake Migrate.yasnippet -;; ^| =yyas> C-c M-| -;; -;; # as in Snippets/respond_to (html).yasnippet -;; @H =yyas> s-h -;; -;; # as in Commands/Make Selection in to Partial.yasnippet -;; ^H =yyas> C-c M-m -;; -;; # as in Commands/View demo help.yasnippet -;; ^h =yyas> C-c M-h -;; -;; -;; -;; --**-- -;; Automatically generated code, do not edit this part -;; -;; Translated menu -;; -(yas-define-menu 'rails-mode - '(;; Ignoring Set RVM… - (yas-ignore-item "88047A77-B889-4F47-892D-4C3EBA98D968") - - (yas-submenu "Go To" - (;; Alternate File - (yas-item "0CCC8443-40F3-4BAB-9440-D737562B5F45") - ;; File on Current Line - (yas-item "09BB96F2-75FD-48A7-8314-B5B56B09B477") - (yas-separator) - ;; Go to Model - (yas-item "C7151BF3-7068-4344-9B09-86F3BF4A9C63") - ;; Go to Controller - (yas-item "9453F0B3-B946-445F-BDB0-B01DE70732FC") - ;; Go to View - (yas-item "EE862691-A624-4797-90CF-EDD39EFB2D8E") - ;; Go to Functional Test - (yas-item "DFE393BE-0764-49FE-B464-6350A50921E6") - ;; Go to Helper - (yas-item "51C9C27A-D931-49F9-B6D8-C0E7ABEC992D") - ;; Go to Javascript - (yas-item "B078346F-61D8-4E75-9427-80720FBC67F7") - ;; Go to Stylesheet - (yas-item "B207BBD4-D6AA-41E9-9530-27210F2D7B66") - ;; Go to Unit Test - (yas-item "BDBB15A4-2824-4BEC-93A5-7475F9C46A39") - ;; Go to Fixture - (yas-item "638D94A4-BDFC-4FE9-8909-9934F3FD2899"))) - (yas-submenu "Run Tests" - (;; Ignoring Test All - (yas-ignore-item "DC549A45-D9B0-11DC-94E9-00112475D960") - ;; Ignoring Test Functionals - (yas-ignore-item "F4EA552D-D9B0-11DC-94E9-00112475D960") - ;; Ignoring Test Integration - (yas-ignore-item "04A30A4D-D9B1-11DC-94E9-00112475D960") - ;; Ignoring Test Plugins - (yas-ignore-item "0D966168-D9B1-11DC-94E9-00112475D960") - ;; Ignoring Test Recent - (yas-ignore-item "190401C2-D9B1-11DC-94E9-00112475D960") - ;; Ignoring Test Uncommitted - (yas-ignore-item "212C3047-D9B1-11DC-94E9-00112475D960") - ;; Ignoring Test Units - (yas-ignore-item "2C60CBA1-D9B1-11DC-94E9-00112475D960"))) - - ;; Ignoring Call Generate Script - (yas-ignore-item "4904EDC7-5ED3-4132-AAB2-C2AD87C97EFE") - (yas-submenu "Database" - (;; Ignoring Migrate to Current - (yas-ignore-item "985F56D4-82ED-4C45-8250-2ECCFC71957E") - ;; Ignoring Migrate to Version ... - (yas-ignore-item "07C696F8-79F5-4E0B-9EE9-03B693A54ABB") - ;; Ignoring Migrate to Previous Version - (yas-ignore-item "9A1AE6BA-8350-4AB7-B5BD-969A7E64CF29") - ;; Redo Last Migration - (yas-item "CFDA9F62-D071-4E0F-AD10-66AE0729FFCF") - (yas-separator) - ;; Ignoring Load Fixtures (Development DB) - (yas-ignore-item "5EEA0C71-B34B-4408-953B-F47AAD343CCC") - ;; Ignoring Load Fixtures (Test DB) - (yas-ignore-item "F758BFD1-00CA-4742-BE71-032580080F5C") - - ;; Ignoring Load schema.rb to DB - (yas-ignore-item "6DEF923E-2347-46EC-AFBE-183D08E63DC1") - ;; Ignoring Dump DB to schema.rb - (yas-ignore-item "310C901C-EF32-4E88-938A-804ABBF8C428") - ;; Ignoring Clone Development DB to Test DB - (yas-ignore-item "6F2AB859-46E3-4FF5-A9A7-E9A813AB5DE1"))) - - ;; params[…] - (yas-item "AC8EDA3E-875B-11D9-897C-000393CBCE2E") - ;; session[…] - (yas-item "7B02ABF8-8763-11D9-897C-000393CBCE2E") - (yas-submenu "Logger" - (;; logger.debug - (yas-item "D975E5C1-42C2-40F1-8960-0DA533B18113") - ;; logger.info - (yas-item "36E2A3EE-E9CC-4B7F-A4CF-AFAF970B8699") - ;; logger.warn - (yas-item "38D5CA05-E219-4399-A244-609AF40B1D0B") - ;; logger.error - (yas-item "7053B86A-9B81-4154-AB3C-61B8035C5D33") - ;; logger.fatal - (yas-item "35E95C81-22F7-4C40-8297-ED21086DDA81") - ;; Rails.logger.debug - (yas-item "7B15B396-1F41-4529-9253-32761E94448C"))) - (yas-separator) - (yas-submenu "Models" - (;; Ignoring Show DB Schema for Current Class - (yas-ignore-item "1970AE74-3949-40B3-B263-727AA3FF167A") - - (yas-submenu "Callbacks" - (;; before_validation - (yas-item "A1776279-5396-4FE9-9218-8BF2C88C5271") - ;; after_validation - (yas-item "44FBD811-70A9-462B-AC56-F975ADAD62AF") - ;; before_save - (yas-item "523BE8A6-0845-493D-A9B6-532F73D21950") - ;; after_save - (yas-item "4D1787E3-1583-4CF3-8D99-CC45D7C35EED") - ;; before_create - (yas-item "D64D8863-DCB6-4397-B5B0-073E0AE04167") - ;; after_create - (yas-item "279D1981-B055-4693-B9AF-5B571A62A6AE") - ;; before_destroy - (yas-item "3F4B502B-5F68-4687-88E9-6EF3BDF9677D") - ;; after_update - (yas-item "0C9EA1A1-66C5-4E1C-9C30-E1FFE8EC6EAE") - ;; before_update - (yas-item "1C20EEBE-B4BA-48C8-9B33-7B5BB00D958C") - ;; after_destroy - (yas-item "A2F3E8C1-4216-4890-8491-2F8C7534ED03"))) - (yas-submenu "Associations" - (;; belongs_to - (yas-item "B8F08BD7-6160-482C-8A3D-CBC6BD2079A4") - ;; has_and_belongs_to_many - (yas-item "2AC3AC1F-743B-4A33-863C-C37885073806") - ;; has_one - (yas-item "BD2E4045-54E6-450E-B31B-5E1865CFFBC9") - ;; has_many - (yas-item "F396B7BD-8255-48B1-904A-06E7D7CC2741") - ;; has_many :dependent => :destroy - (yas-item "3E3AF538-171B-4108-AB92-827AD7E24C77") - ;; has_many (through) - (yas-item "9D58B6C9-BA52-48B3-B639-D5CB894AF810") - (yas-separator) - ;; accepts_nested_attributes_for - (yas-item "D414D70D-BD2D-4C15-BDA6-1AAEABF7791F"))) - (yas-submenu "Scopes" - (;; scope - (yas-item "8F87F3C7-8ABB-4778-9786-64CF95E99160") - ;; scope lambda - (yas-item "5D01527E-48FA-4A3D-A10B-A383C8AE3942") - ;; scope with extension - (yas-item "CEA1D76C-DEB0-4ADB-840D-220E569D5B8F") - (yas-separator) - ;; default_scope - (yas-item "83B80B60-6143-4465-B064-0DA25DDDCAA7"))) - (yas-submenu "Finders" - (;; find(id) - (yas-item "59CD3A41-8164-4FB4-B462-D7ACE86BCDBF") - ;; find(:all) - (yas-item "A017AB39-A875-40DC-8ACF-7E3551057CA0") - ;; find(:first) - (yas-item "FE430ECD-5D40-4D95-A73B-F064C73992DE") - ;; find(:last) - (yas-item "8B515110-41D3-11DD-AE16-0800200C9A66") - ;; find_each - (yas-item "B105C480-FB21-4511-9AD0-D5B4FED3BA21") - ;; find_in_batches - (yas-item "B660FC85-F69A-43BC-A72A-748CBEA0AA9A") - (yas-separator) - ;; scoped_by - (yas-item "7CC002AE-83BA-4294-B87D-DE9790839D97"))) - (yas-submenu "Validations" - (;; validates_acceptance_of - (yas-item "89198999-7E6D-4D97-A20E-45263E1CA993") - ;; validates_acceptance_of if - (yas-item "A2477223-AD5A-4723-8052-943CE9BA634D") - ;; validates_associated - (yas-item "47944705-F605-4ED4-B4C0-9E823EE25138") - ;; validates_associated if - (yas-item "85E9264C-5414-4FA0-AC07-F305A798ED46") - ;; validates_confirmation_of - (yas-item "B5893618-D07C-48F1-8867-736D0AAFF0E7") - ;; validates_confirmation_of if - (yas-item "1354726C-DA64-4CA6-A099-26626A865D8D") - ;; validates_exclusion_of - (yas-item "4CC98A56-B60B-4A89-80E0-400C5314A050") - ;; validates_exclusion_of if - (yas-item "869AB0B7-12DD-440A-905A-BFB1E0E16E1C") - ;; validates_inclusion_of - (yas-item "4611F02E-E9BF-11DC-8518-00112475D960") - ;; validates_inclusion_of if - (yas-item "47FF50AF-E9BF-11DC-8518-00112475D960") - ;; validates_format_of - (yas-item "EB47FBA1-AFB3-42F9-94A4-552D3175C17A") - ;; validates_format_of if - (yas-item "14BF0586-F2E8-4AB3-BB4B-E49099384403") - ;; validates_length_of - (yas-item "5CE8838A-BF2C-497E-B87A-E90C3BC482E0") - ;; validates_length_of if - (yas-item "EC511A43-D3B7-11DC-BA49-00112475D960") - ;; validates_numericality_of - (yas-item "B21BA16D-7C04-4912-8488-425CDCC332A8") - ;; validates_numericality_of if - (yas-item "CF506019-E964-4172-A3DA-475AE3B65558") - ;; validates_presence_of - (yas-item "5DAC28A7-33C8-4DA7-9E85-56618D6BEC9F") - ;; validates_presence_of if - (yas-item "F5CBBE16-F5CC-4EDA-8BC6-30281BD7D854") - ;; validates_uniqueness_of - (yas-item "F8316545-9AE4-4C7F-87ED-A2C00E6637FA") - ;; validates_uniqueness_of if - (yas-item "43680344-0818-42BF-95B4-58CD2D76545B"))) - ;; alias_attribute - (yas-item "5694BA8B-64EC-4B1B-A00D-6366D28500C5"))) - (yas-submenu "Controllers" - (;; Create controller class - (yas-item "4B3F798E-E3B6-48C8-8C2F-CB8631011638") - ;; Create resources controller class - (yas-item "F90BFB23-5706-484B-8108-B376A988C0A0") - ;; layout - (yas-item "CCF4C4A1-28EF-499D-AD81-4A4FD2FEF5B6") - ;; before_filter - (yas-item "B782A467-2C4D-48EB-AF39-518AFED4C056") - ;; flash[…] - (yas-item "D864896E-8763-11D9-897C-000393CBCE2E") - (yas-submenu "respond_to" - (;; respond_to - (yas-item "B41D3164-EA53-4DDC-850E-27B82B24061F") - ;; respond_with - (yas-item "DDE1BA27-6259-4F87-A840-6A6E92C8594A") - ;; format (respond_with) - (yas-item "32AB6C81-2C22-45E0-B5FE-23CD3E420E70"))) - (yas-submenu "redirect_to" - (;; redirect_to (path) - (yas-item "A909C4C3-8EFE-4E39-9D96-BA8F0ABE6085") - ;; redirect_to (path plural) - (yas-item "AFE06B67-CE98-42A6-93D1-8EC8E3B9F83C") - ;; redirect_to (nested path) - (yas-item "9D7228B3-A6ED-4598-B096-032B3600864F") - ;; redirect_to (nested path plural) - (yas-item "EF527A27-D1D4-4FD8-BD23-71397881C29A") - ;; redirect_to (action) - (yas-item "F2F3167C-73B9-11D9-B752-000D932CD5BA") - ;; redirect_to (action, id) - (yas-item "2233B484-73BA-11D9-B752-000D932CD5BA") - ;; redirect_to (controller) - (yas-item "053490FE-73BA-11D9-B752-000D932CD5BA") - ;; redirect_to (controller, action) - (yas-item "0C137FBF-73BA-11D9-B752-000D932CD5BA") - ;; redirect_to (controller, action, id) - (yas-item "18D3C1C3-73BA-11D9-B752-000D932CD5BA") - ;; redirect_to :back - (yas-item "BC194AE7-FA60-4E65-9503-6920D1666A29"))) - (yas-submenu "render" - (;; render (action) - (yas-item "7B03D38B-7580-41AC-BC2B-3766AB074A43") - ;; render (action, layout) - (yas-item "053F1D6A-B413-43FF-B697-E3120FD0489F") - ;; render (file) - (yas-item "7D43B0EA-2C3C-499B-9346-A8E48CBF29CD") - ;; render (file, use_full_path) - (yas-item "2A8FBE48-E196-4019-AE76-BF3ED4B54F47") - ;; render (inline) - (yas-item "64E93A71-6E62-48D9-9694-123080AE6723") - ;; render (inline, locals) - (yas-item "1E5DE984-510C-4992-8AD5-C5FA6D7F2A88") - ;; render (inline, type) - (yas-item "A8AF8B90-94E8-42E1-8057-DDBA57809F6A") - ;; render (layout) - (yas-item "3F83272F-62D5-4BCB-BAA3-806083078829") - ;; render (nothing) - (yas-item "AC8A995F-0034-433C-905D-E5C1F29D6EFF") - ;; render (nothing, status) - (yas-item "724A68C1-A727-46FF-AF59-288E26B09629") - ;; render (partial) - (yas-item "498168A5-5AF8-4F59-8A2D-B517FAB98CDB") - ;; render (partial, collection) - (yas-item "046FB1B6-9C65-4702-91EC-4AA9878CD949") - ;; render (partial, locals) - (yas-item "6F41AFFD-B3A7-42D0-8A84-D6086C118D92") - ;; render (partial, object) - (yas-item "BFAAC8DA-A043-4684-967B-B3E5DAE08C62") - ;; render (partial, status) - (yas-item "CBB06A4E-3A82-45F3-91AA-259F02314B9D") - ;; render (text) - (yas-item "67C5082F-5011-434A-8EAA-6B8D3600935F") - ;; render (text, layout) - (yas-item "A3B09AFE-40B5-4623-8B85-E9F369ECE22D") - ;; render (text, layout => true) - (yas-item "97C0992D-715F-4322-A3E0-DD4D2B7E2FC2") - ;; render (text, status) - (yas-item "4F636977-F7A6-4BF5-B09B-7F087683C3B9") - ;; render (update) - (yas-item "ECB10C0B-E8B7-4606-ABF5-4A2A26E5AB1A"))) - (yas-submenu "REST methods" - (;; def create - resource - (yas-item "54F61419-001F-4B71-83AC-8DC633694AF0"))) - (yas-submenu "Caching" - (;; caches_action - (yas-item "017634C2-FC55-41BA-B551-82436809D71B"))) - (yas-separator) - ;; verify — render - (yas-item "9ECBF20C-003E-41D9-A881-4BAC0656F9DC") - ;; verify — redirect - (yas-item "7BBD3F57-57A5-4CD0-8E79-B931021FC110"))) - (yas-submenu "View Templates" - (;; Create Partial From Selection - (yas-item "1DD8A214-1C97-45BA-ADEE-8F888DDE8570") - (yas-separator) - ;; form_for - (yas-item "7D99041D-C3B7-4940-AE64-6B1758CDB47C") - ;; form_for with errors - (yas-item "15BDD7B6-5C15-4684-93C7-A05E3D2221AC") - (yas-submenu "form_for f. drop-down list" - (;; f.label (ffl) - (yas-item "402C251E-595B-4A58-8EB9-41989040F280") - ;; f.text_field (fftf) - (yas-item "CC1BCD1C-2479-4335-B511-17B880316A75") - ;; f.text_area (ffta) - (yas-item "06498926-F84D-466C-8736-B8A0AC586A94") - ;; f.check_box (ffcb) - (yas-item "F579F9E7-E072-4BCC-BFF9-C8C5BAE7FFA5") - ;; f.radio_button (ffrb) - (yas-item "A95358D2-C68A-4894-8C36-062C9F45848A") - ;; f.password_field (ffpf) - (yas-item "42289456-C8D1-498C-AE30-5206544B349F") - ;; f.hidden_field (ffhf) - (yas-item "5DBA8F72-DD6C-4CBF-83FD-76301E159BA9") - ;; f.file_field (ffff) - (yas-item "79BC2303-3D9D-4E21-AF85-73B388B7B56D") - ;; f.submit (ffs) - (yas-item "C315EC5D-A7F3-49CB-9795-21B78BB42FF4") - ;; f.fields_for (nff) - (yas-item "BBE5B6F2-A8F2-4714-9186-4FCD21A5B432"))) - (yas-submenu "form_for helpers" - (;; form_for label - (yas-item "B31822D9-2048-4D16-B2AF-00E0B4E5C368") - ;; form_for text_field - (yas-item "F46EE8EE-239C-46D7-980B-3F861B7D9111") - ;; form_for text_area - (yas-item "4C898FA8-D09C-4B28-BE42-14BB4EA4E2B1") - ;; form_for check_box - (yas-item "F0DB6886-4FFE-45BA-907F-44326AD8142D") - ;; form_for radio_button - (yas-item "D4282CE1-4171-4B13-9220-3F2718BC2505") - ;; form_for password_field - (yas-item "3379FB35-C664-4255-96C6-6E4B91F12759") - ;; form_for hidden_field - (yas-item "99FEFD9B-5A07-46E3-950D-5C474E42B695") - ;; form_for file_field - (yas-item "C8BA285D-E12E-4AB8-A941-514C963E8226") - ;; form_for submit - (yas-item "3000E569-4E19-4566-B08E-A3FFFAAC9075") - ;; form_for fields_for - (yas-item "16645C58-C7C8-4E72-923F-3B44932F946D"))) - ;; fields_for - (yas-item "7C7FC66A-D566-40D3-B9DA-FCEA4EFF98C6") - (yas-separator) - ;; form_tag - (yas-item "F0F6DACA-6A0B-11D9-BDC2-000D932CD5BA") - ;; submit_tag - (yas-item "D0E29200-E910-11DC-A399-00112475D960") - ;; image_submit_tag - (yas-item "9FB9848E-EA5A-11DC-9DE5-00112475D960") - ;; image_tag - (yas-item "4EA6FBD1-CDEA-4DF6-9F70-A1EDA35AC3D7") - (yas-submenu "link_to" - (;; link_to (path) - (yas-item "326B57A7-B4A9-447B-A3D2-0EA74158E1E1") - ;; link_to (path plural) - (yas-item "6BA737F0-63D1-4D82-9381-4331E18B12C5") - ;; link_to (nested path) - (yas-item "750DEEF9-18A0-40FC-8E54-574CE5EE5565") - ;; link_to (nested path plural) - (yas-item "866AAD87-E458-4F2D-9E7C-3CE73EFC047B") - ;; link_to (action) - (yas-item "9E2B42FE-7BC8-11D9-906A-000D932CD5BA") - ;; link_to (action, id) - (yas-item "B4F952F4-7BC8-11D9-906A-000D932CD5BA") - ;; link_to (controller) - (yas-item "74590E16-7BCB-11D9-906A-000D932CD5BA") - ;; link_to (controller, action) - (yas-item "C11C0BF5-7BC8-11D9-906A-000D932CD5BA") - ;; link_to (controller, action, id) - (yas-item "D21BE958-7BC8-11D9-906A-000D932CD5BA") - ;; link_to model - (yas-item "E5E08AA0-4EDD-4583-BF07-5D6C49E98410") - ;; link_to_function - (yas-item "F5983CAF-0655-45FA-A385-9E9A8C28425C"))) - ;; if (ERB) - (yas-item "1ED49D4D-D4A0-4CF0-8ED2-DCE70854B839") - ;; else (ERB) - (yas-item "B9889C00-FC9D-4956-81BF-600145F06976") - ;; end (ERB) - (yas-item "AC385ABF-96CD-4FCB-80AD-BF37D6EE79D2") - (yas-separator) - ;; map(&:sym_proc) - (yas-item "EC605540-C431-4FD0-AD91-D913118DACA7") - (yas-separator) - ;; content_for - (yas-item "9038B99B-4810-4C0B-B547-F72F2AD5CAFC") - ;; for loop in rhtml - (yas-item "F7744F07-306C-4951-AB5A-3D69BA5516B7"))) - (yas-submenu "Layouts" - (;; javascript_include_tag - (yas-item "FEF49C86-9386-405E-A191-684D1C963E3A") - ;; stylesheet_link_tag - (yas-item "980C7667-9D60-49FF-AF74-A7B19B379F45"))) - (yas-submenu "RJS" - (;; page.replace (id, partial) - (yas-item "273E5E76-8D13-4476-9C38-8AF87432CB96") - ;; page.hide (*ids) - (yas-item "390A447F-0FA3-4F01-A10C-4F35675E0A43") - ;; page.replace_html (id, partial) - (yas-item "8B914165-9C66-4FA3-9AD6-1DA41B25F8F1") - ;; page.insert_html (position, id, partial) - (yas-item "62BEA590-F4EF-4001-B661-764EDFB92811") - ;; page.visual_effect (effect, id) - (yas-item "CFDC27A3-58CF-4198-8F93-36360978F0D0") - ;; page.show (*ids) - (yas-item "5ACBF49D-B5A5-495C-89D8-18AA740D9D02") - ;; page.toggle (*ids) - (yas-item "028DA0A4-B310-4BEF-8643-2A22993C21C7"))) - (yas-submenu "Migrations" - (;; Ignoring Quick Migration - (yas-ignore-item "D696FA2C-785A-4B73-A2F6-F750904DD7C2") - - (yas-submenu "Columns" - (;; Add / Remove Column - (yas-item "18C76913-061C-4D65-866D-67AA3724AFEF") - ;; Ignoring Add / Remove Several Columns - (yas-ignore-item "7BC860E6-7561-4E6E-983B-507D7A6F6228") - ;; Add / Remove Several Columns (marcc) - (yas-item "27A6C58A-896B-4956-BA81-D671A2EF9C7D") - ;; Ignoring Add / Remove Timestamps - (yas-ignore-item "221969A1-A5EA-4A8E-8817-C74EBED63901") - ;; Ignoring Change Column - (yas-ignore-item "42DE1441-D1B7-4998-BAF9-16B1EC7E210C") - ;; Ignoring Change Column Default - (yas-ignore-item "A219EBB8-004A-4012-B5B2-232C9A5C94F8") - ;; Ignoring Rename / Rename Column - (yas-ignore-item "AC50762C-DE40-4EB9-9A22-2F6AF2EA4EA3") - ;; Ignoring Rename / Rename Several Columns - (yas-ignore-item "F03162DE-9DB6-417B-9DD7-52D9F11EA736") - ;; Ignoring Rename / Rename Several Columns (mncc) - (yas-ignore-item "04A86178-71B1-430A-A06D-DFF7C9A338B5") - ;; Remove / Add Column - (yas-item "16A705EB-10DC-42B5-9FF2-377E206421DC") - ;; Ignoring Remove / Add Timestamps - (yas-ignore-item "E885A3E8-8020-4AC3-A25E-510B26F114B2"))) - (yas-submenu "Tables" - (;; Ignoring Create / Drop Table - (yas-ignore-item "25F8F5D8-2BD1-45D8-8B2A-9F2EA4F73AA2") - ;; Ignoring Rename / Rename Table - (yas-ignore-item "FD8CC811-2AD3-480F-B975-DF959DC96C67") - ;; Drop / Create Table - (yas-item "20375601-B13F-4314-B8E4-362706566636") - ;; Change / Change Table - (yas-item "20FC02C5-32A3-4F20-B163-FF75C9FDFABF") - (yas-separator) - (yas-submenu "Create columns t. drop-down list" - (;; t.string (tcs) - (yas-item "B757F7E5-E4BD-11DC-A11A-00112475D960") - ;; t.text (tct) - (yas-item "FFE7B820-E4BD-11DC-A11A-00112475D960") - ;; t.integer (tci) - (yas-item "0E63B7D5-E4BE-11DC-A11A-00112475D960") - ;; t.float (tcf) - (yas-item "1BDC463A-E4BE-11DC-A11A-00112475D960") - ;; t.decimal (tcd) - (yas-item "26C09807-E4BE-11DC-A11A-00112475D960") - ;; t.datetime (tcdt) - (yas-item "3458B140-E4BE-11DC-A11A-00112475D960") - ;; t.timestamp (tcts) - (yas-item "49643690-E4BE-11DC-A11A-00112475D960") - ;; t.time (tcti) - (yas-item "537BDD48-E4BE-11DC-A11A-00112475D960") - ;; t.date (tcda) - (yas-item "61CF5B32-E4BE-11DC-A11A-00112475D960") - ;; t.boolean (tcb) - (yas-item "6BE6F315-E4BE-11DC-A11A-00112475D960") - ;; t.binary (tcbi) - (yas-item "7CE57C6C-E4BE-11DC-A11A-00112475D960") - ;; t.timestamps (tctss) - (yas-item "950B0BF2-E4BE-11DC-A11A-00112475D960") - ;; t.lock_version (tcl) - (yas-item "A677FFD4-E4BE-11DC-A11A-00112475D960") - ;; t.references (tcr) - (yas-item "B6D9225C-E4BE-11DC-A11A-00112475D960"))) - (yas-submenu "Create columns helpers" - (;; Table column string - (yas-item "377BF814-D52D-11DC-BD8E-00112475D960") - ;; Table column text - (yas-item "6A9D4C30-D52D-11DC-BD8E-00112475D960") - ;; Table column integer - (yas-item "729D559E-D52D-11DC-BD8E-00112475D960") - ;; Table column float - (yas-item "8AF989C4-D52E-11DC-BD8E-00112475D960") - ;; Table column decimal - (yas-item "93A16768-D52E-11DC-BD8E-00112475D960") - ;; Table column datetime - (yas-item "D6CBCA96-D52F-11DC-BD8E-00112475D960") - ;; Table column timestamp - (yas-item "4600CE20-D532-11DC-BD8E-00112475D960") - ;; Table column time - (yas-item "4F5DDD37-D532-11DC-BD8E-00112475D960") - ;; Table column date - (yas-item "56276686-D532-11DC-BD8E-00112475D960") - ;; Table column boolean - (yas-item "967093B4-D532-11DC-BD8E-00112475D960") - ;; Table column binary - (yas-item "5E9B8B0E-D532-11DC-BD8E-00112475D960") - ;; Table column timestamps - (yas-item "E0C8FDC4-D532-11DC-BD8E-00112475D960") - ;; Table column lock_version - (yas-item "FC2523C1-D532-11DC-BD8E-00112475D960") - ;; Table column(s) references - (yas-item "EDA6568B-D533-11DC-BD8E-00112475D960"))) - ;; Create Column in Table - (yas-item "7592CA99-75D7-48B6-9133-00B9F148FF43") - ;; Create Several Columns in Table - (yas-item "67FD2F8F-5F25-45F2-A451-2F39977A9EDE") - (yas-submenu "Change columns t. drop-down list" - (;; t.change (tch) - (yas-item "19761681-17E6-4DF1-8C08-73C337D29481") - ;; t.rename (tre) - (yas-item "9D4E30E2-4A61-4941-B9F3-BEE97552747A"))) - (yas-submenu "Change columns helpers" - (;; Table column(s) change - (yas-item "57A9D5BC-DD0F-422B-B857-53F30B5D763A") - ;; Table column(s) rename - (yas-item "DF30226E-1111-448A-B669-7CA34EE83909"))))) - (yas-submenu "Indexes" - (;; Ignoring Add / Remove Index - (yas-ignore-item "95F83E1D-5B03-424F-8BEC-8AF66C8939BC") - ;; Ignoring Add / Remove Named Index - (yas-ignore-item "A7F692C1-778A-48B8-945E-573568BA0403") - ;; Ignoring Add / Remove Unique Index - (yas-ignore-item "33057A79-677B-4DFB-99D4-1492778BDDC6"))))) - (yas-submenu "Gemfile" - (;; gem - (yas-item "5C773E3D-436E-4A28-8399-859CE41E504F") - ;; gem :git - (yas-item "675DD92F-42F1-4B55-B56A-5D4ABC1375C4"))) - (yas-submenu "Routes" - (;; Ignoring Autocomplete Routes - (yas-ignore-item "0742F232-38ED-4C52-AD68-1858F0F2C601") - - ;; match - (yas-item "856B8A7A-86FA-4424-B4D9-3D57D5C3E590") - ;; resources - (yas-item "92E54811-6041-4BF8-B808-918B8C11F1D9") - ;; member routes - (yas-item "7C2F96AF-7F07-4B71-A41C-812294ECA6EE") - ;; collection routes - (yas-item "0ECA205B-6766-43B7-8B7C-A17956E1213E") - (yas-separator) - ;; get :on => :collection - (yas-item "4B0DBED3-3A95-4BE4-B61B-9CDFB8B8C07A") - ;; get :on => :member - (yas-item "D696088D-DDCD-4F58-9C8A-E2D99B5F345B") - (yas-separator) - ;; map.named_route - (yas-item "91C543BF-7BD8-4E3A-B493-AE572C5472A0") - ;; map.resources - (yas-item "0FF86C46-0E01-4D03-8232-72CA5BD55706") - ;; map.resource - (yas-item "2183A9A9-17ED-4A4F-ABB6-668EDDD3A6E4") - ;; map.with_options - (yas-item "BD4B90F7-2187-4E75-BFFB-77BE67CB8DAE") - ;; map.catch_all - (yas-item "F3606586-F905-4A91-92CA-82319239221D"))) - (yas-submenu "ActiveSupport" - (;; cattr_accessor - (yas-item "F57522B2-9F5F-4DF9-AE46-9478AF019C63") - ;; mattr_accessor - (yas-item "B25B7560-FACB-4A9E-A226-B71C796BD1F3") - ;; returning do |variable| … end - (yas-item "D2783155-23F3-4B90-A317-5BD139471193"))) - (yas-separator) - (yas-submenu "Tests" - (;; test do..end - (yas-item "6ECA11FE-E8C1-4EC0-93F3-B4472752E60D") - ;; setup do..end - (yas-item "0A25B963-AF76-472D-BA68-07F88A64A10B") - (yas-submenu "Fixtures" - (;; <%= Fixtures.identify(:symbol) %> - (yas-item "9671EB7A-89D6-4C23-914F-88CBEE0D177A") - (yas-separator) - ;; Ignoring Autocomplete Foreign Key Fixture Reference - (yas-ignore-item "0BCF0EE2-35EE-4959-A771-E74D55271D5A") - ;; Ignoring Autocomplete Foreign Key Fixture Reference (habtm) - (yas-ignore-item "275C0B86-F735-49B6-8A22-218A8F4CC2E0"))) - (yas-submenu "Unit Tests" - (;; assert_difference - (yas-item "30BEA6FB-301C-4460-93EC-FA3404688962") - ;; assert_no_difference - (yas-item "5C6F4462-70E6-40B4-B3F2-F371656E7784") - (yas-separator))) - (yas-submenu "Functional Tests" - (;; Create functional test class - (yas-item "F60D0630-CBF5-4283-9D20-FA46C787A88D") - ;; def test_should_get_action - (yas-item "1C491A76-751F-44EF-8DFB-0A585C7EEFF6") - ;; def test_should_post_action - (yas-item "8B9CD068-4338-4039-AA06-D839A6C7A9FF") - (yas-separator) - ;; assert_response - (yas-item "2BD82DCB-1F19-4C8F-BC70-C0BBB06A2138") - ;; assert_redirected_to - (yas-item "CD60F800-850D-47CF-BE32-3DE665DD5C68") - ;; assert_redirected_to (path) - (yas-item "D33EDCE7-F8AF-48D4-AA7A-852BBF03E31D") - ;; assert_redirected_to (path plural) - (yas-item "0249637E-0720-46DA-A8FD-E176A2CC458B") - ;; assert_redirected_to (nested path) - (yas-item "97021C0D-EB65-4046-B688-01F09B3B1615") - ;; assert_redirected_to (nested path plural) - (yas-item "4C92C020-7337-4D6E-91EE-7ABF2BFC7F41") - (yas-separator) - ;; assert_select - (yas-item "DBE14FE8-B415-4DBC-A316-F8DA63FE9FD7") - (yas-separator) - ;; assert_rjs - (yas-item "E0F281EC-5311-41F8-ADD9-2E2D059DA651") - (yas-separator) - ;; assert(var = assigns(:var)) - (yas-item "FE9C4B4E-860D-49F0-AAF7-5582B98F5F54"))) - (yas-submenu "Ajax Tests" - (;; xhr post - (yas-item "62C3838B-0790-4FC2-8425-F273A57F5D33") - ;; xhr get - (yas-item "78FCF992-D01B-404F-BC54-5EE7B91F999A") - ;; xhr delete - (yas-item "F1BE0C3D-7203-43E9-BEFB-D1A99CDD31C1") - ;; xhr put - (yas-item "C12C98A5-74E5-4E70-9ADB-8783455D6539"))))) - (yas-separator) - ;; Ignoring View demo help - (yas-ignore-item "964436B8-E578-11DC-8177-00112475D960") - ;; Documentation for Word - (yas-item "32F30207-D827-46D9-889A-451C35269D52") - ;; Ignoring Jump to Method Definition - (yas-ignore-item "AECD46CF-9031-4059-B386-262DBABD97B1") - ;; Ignoring List columns of a model - (yas-ignore-item "CF489B31-5DD2-4B83-B503-AD3ECF7BDEB7") - ;; Create sweeper class - (yas-item "FF022038-CA5D-4045-909E-BF509343A5C7")) - '("A2135370-67A1-488D-B43C-B4F221127C2F" - "809BCA42-5C49-4B08-B3C4-BB773036C086" - "275C0B86-F735-49B6-8A22-218A8F4CC2E0" - "0BCF0EE2-35EE-4959-A771-E74D55271D5A" - "0742F232-38ED-4C52-AD68-1858F0F2C601" - "6F2AB859-46E3-4FF5-A9A7-E9A813AB5DE1" - "D696FA2C-785A-4B73-A2F6-F750904DD7C2" - "AECD46CF-9031-4059-B386-262DBABD97B1" - "CF489B31-5DD2-4B83-B503-AD3ECF7BDEB7" - "F758BFD1-00CA-4742-BE71-032580080F5C" - "5EEA0C71-B34B-4408-953B-F47AAD343CCC" - "9A1AE6BA-8350-4AB7-B5BD-969A7E64CF29" - "07C696F8-79F5-4E0B-9EE9-03B693A54ABB" - "88047A77-B889-4F47-892D-4C3EBA98D968" - "1970AE74-3949-40B3-B263-727AA3FF167A" - "DC549A45-D9B0-11DC-94E9-00112475D960" - "F4EA552D-D9B0-11DC-94E9-00112475D960" - "04A30A4D-D9B1-11DC-94E9-00112475D960" - "0D966168-D9B1-11DC-94E9-00112475D960" - "190401C2-D9B1-11DC-94E9-00112475D960" - "212C3047-D9B1-11DC-94E9-00112475D960" - "2C60CBA1-D9B1-11DC-94E9-00112475D960" - "964436B8-E578-11DC-8177-00112475D960" - "310C901C-EF32-4E88-938A-804ABBF8C428" - "6DEF923E-2347-46EC-AFBE-183D08E63DC1" - "4904EDC7-5ED3-4132-AAB2-C2AD87C97EFE" - "985F56D4-82ED-4C45-8250-2ECCFC71957E" - "95F83E1D-5B03-424F-8BEC-8AF66C8939BC" - "A7F692C1-778A-48B8-945E-573568BA0403" - "7BC860E6-7561-4E6E-983B-507D7A6F6228" - "221969A1-A5EA-4A8E-8817-C74EBED63901" - "33057A79-677B-4DFB-99D4-1492778BDDC6" - "A219EBB8-004A-4012-B5B2-232C9A5C94F8" - "42DE1441-D1B7-4998-BAF9-16B1EC7E210C" - "25F8F5D8-2BD1-45D8-8B2A-9F2EA4F73AA2" - "A2135370-67A1-488D-B43C-B4F221127C2F" - "809BCA42-5C49-4B08-B3C4-BB773036C086" - "E885A3E8-8020-4AC3-A25E-510B26F114B2" - "04A86178-71B1-430A-A06D-DFF7C9A338B5" - "F03162DE-9DB6-417B-9DD7-52D9F11EA736" - "AC50762C-DE40-4EB9-9A22-2F6AF2EA4EA3" - "FD8CC811-2AD3-480F-B975-DF959DC96C67")) - -;; Unknown substitutions -;; -;; Substitutions for: content -;; -;; # as in Snippets/find_in_batches.yasnippet -;; `(downcase (replace-regexp-in-string "\..*$" "" (current-word)))` =yyas> (yas-unknown) -;; -;; # as in Commands/Autocomplete Foreign Key Fixture Reference (habtm).yasnippet -;; 275C0B86-F735-49B6-8A22-218A8F4CC2E0 =yyas> (yas-unknown) -;; -;; # as in Commands/Autocomplete Foreign Key Fixture Reference.yasnippet -;; 0BCF0EE2-35EE-4959-A771-E74D55271D5A =yyas> (yas-unknown) -;; -;; # as in Commands/Autocomplete Routes.yasnippet -;; 0742F232-38ED-4C52-AD68-1858F0F2C601 =yyas> (yas-unknown) -;; -;; # as in Commands/Clone Development DB to Test DB.yasnippet -;; 6F2AB859-46E3-4FF5-A9A7-E9A813AB5DE1 =yyas> (yas-unknown) -;; -;; # as in Commands/Generate Quick Migration.yasnippet -;; D696FA2C-785A-4B73-A2F6-F750904DD7C2 =yyas> (yas-unknown) -;; -;; # as in Commands/Jump to Method Definition.yasnippet -;; AECD46CF-9031-4059-B386-262DBABD97B1 =yyas> (yas-unknown) -;; -;; # as in Commands/List columns of a model.yasnippet -;; CF489B31-5DD2-4B83-B503-AD3ECF7BDEB7 =yyas> (yas-unknown) -;; -;; # as in Commands/Load Fixtures (Test DB).yasnippet -;; F758BFD1-00CA-4742-BE71-032580080F5C =yyas> (yas-unknown) -;; -;; # as in Commands/Load Fixtures.yasnippet -;; 5EEA0C71-B34B-4408-953B-F47AAD343CCC =yyas> (yas-unknown) -;; -;; # as in Commands/Migrate to Previous Version.yasnippet -;; 9A1AE6BA-8350-4AB7-B5BD-969A7E64CF29 =yyas> (yas-unknown) -;; -;; # as in Commands/Rake Migrate to Version.yasnippet -;; 07C696F8-79F5-4E0B-9EE9-03B693A54ABB =yyas> (yas-unknown) -;; -;; # as in Commands/Set RVM.yasnippet -;; 88047A77-B889-4F47-892D-4C3EBA98D968 =yyas> (yas-unknown) -;; -;; # as in Commands/Show DB Schema.yasnippet -;; 1970AE74-3949-40B3-B263-727AA3FF167A =yyas> (yas-unknown) -;; -;; # as in Commands/Test All.yasnippet -;; DC549A45-D9B0-11DC-94E9-00112475D960 =yyas> (yas-unknown) -;; -;; # as in Commands/Test Functionals.yasnippet -;; F4EA552D-D9B0-11DC-94E9-00112475D960 =yyas> (yas-unknown) -;; -;; # as in Commands/Test Integration.yasnippet -;; 04A30A4D-D9B1-11DC-94E9-00112475D960 =yyas> (yas-unknown) -;; -;; # as in Commands/Test Plugins.yasnippet -;; 0D966168-D9B1-11DC-94E9-00112475D960 =yyas> (yas-unknown) -;; -;; # as in Commands/Test Recent.yasnippet -;; 190401C2-D9B1-11DC-94E9-00112475D960 =yyas> (yas-unknown) -;; -;; # as in Commands/Test Uncommitted.yasnippet -;; 212C3047-D9B1-11DC-94E9-00112475D960 =yyas> (yas-unknown) -;; -;; # as in Commands/Test Units.yasnippet -;; 2C60CBA1-D9B1-11DC-94E9-00112475D960 =yyas> (yas-unknown) -;; -;; # as in Commands/View demo help.yasnippet -;; 964436B8-E578-11DC-8177-00112475D960 =yyas> (yas-unknown) -;; -;; # as in Commands/DB Schema Dump.yasnippet -;; 310C901C-EF32-4E88-938A-804ABBF8C428 =yyas> (yas-unknown) -;; -;; # as in Commands/DB Schema Import.yasnippet -;; 6DEF923E-2347-46EC-AFBE-183D08E63DC1 =yyas> (yas-unknown) -;; -;; # as in Commands/Generate.yasnippet -;; 4904EDC7-5ED3-4132-AAB2-C2AD87C97EFE =yyas> (yas-unknown) -;; -;; # as in Commands/Rake Migrate.yasnippet -;; 985F56D4-82ED-4C45-8250-2ECCFC71957E =yyas> (yas-unknown) -;; -;; # as in Macros/Add 3A Remove Index.yasnippet -;; 95F83E1D-5B03-424F-8BEC-8AF66C8939BC =yyas> (yas-unknown) -;; -;; # as in Macros/Add 3A Remove Named Index.yasnippet -;; A7F692C1-778A-48B8-945E-573568BA0403 =yyas> (yas-unknown) -;; -;; # as in Macros/Add 3A Remove Several Columns.yasnippet -;; 7BC860E6-7561-4E6E-983B-507D7A6F6228 =yyas> (yas-unknown) -;; -;; # as in Macros/Add 3A Remove Timestamps.yasnippet -;; 221969A1-A5EA-4A8E-8817-C74EBED63901 =yyas> (yas-unknown) -;; -;; # as in Macros/Add 3A Remove Unique Index.yasnippet -;; 33057A79-677B-4DFB-99D4-1492778BDDC6 =yyas> (yas-unknown) -;; -;; # as in Macros/Change Column Default.yasnippet -;; A219EBB8-004A-4012-B5B2-232C9A5C94F8 =yyas> (yas-unknown) -;; -;; # as in Macros/Change Column.yasnippet -;; 42DE1441-D1B7-4998-BAF9-16B1EC7E210C =yyas> (yas-unknown) -;; -;; # as in Macros/Create 3A Drop Table.yasnippet -;; 25F8F5D8-2BD1-45D8-8B2A-9F2EA4F73AA2 =yyas> (yas-unknown) -;; -;; # as in Macros/Drop 3A Create Table.yasnippet -;; A2135370-67A1-488D-B43C-B4F221127C2F =yyas> (yas-unknown) -;; -;; # as in Macros/Remove 3A Add Column.yasnippet -;; 809BCA42-5C49-4B08-B3C4-BB773036C086 =yyas> (yas-unknown) -;; -;; # as in Macros/Remove 3A Add Timestamps.yasnippet -;; E885A3E8-8020-4AC3-A25E-510B26F114B2 =yyas> (yas-unknown) -;; -;; # as in Macros/Rename 3A Rename Several Columns (mncc).yasnippet -;; 04A86178-71B1-430A-A06D-DFF7C9A338B5 =yyas> (yas-unknown) -;; -;; # as in Macros/Rename 3A Rename Several Columns.yasnippet -;; F03162DE-9DB6-417B-9DD7-52D9F11EA736 =yyas> (yas-unknown) -;; -;; # as in Macros/Rename Column.yasnippet -;; AC50762C-DE40-4EB9-9A22-2F6AF2EA4EA3 =yyas> (yas-unknown) -;; -;; # as in Macros/Rename Table.yasnippet -;; FD8CC811-2AD3-480F-B975-DF959DC96C67 =yyas> (yas-unknown) -;; -;; - -;; Substitutions for: condition -;; -;; # as in Snippets/verify - redirect (verify).yasnippet -;; =yyas> (yas-unknown) -;; -;; # as in Snippets/t_rename (tre).yasnippet -;; meta.rails.migration.change_table =yyas> (yas-unknown) -;; -;; # as in Snippets/has_one (ho).yasnippet -;; meta.rails.model =yyas> (yas-unknown) -;; -;; # as in Snippets/if (ERB).yasnippet -;; text.html.ruby =yyas> (yas-unknown) -;; -;; - -;; Substitutions for: binding -;; -;; # as in Commands/Autocomplete Foreign Key Fixture Reference (habtm).yasnippet -;; ~$ =yyas> (yas-unknown) -;; -;; # as in Commands/Autocomplete Foreign Key Fixture Reference.yasnippet -;; ~ =yyas> (yas-unknown) -;; -;; # as in Commands/Generate Quick Migration.yasnippet -;; ^M =yyas> (yas-unknown) -;; -;; # as in Commands/Jump to Method Definition.yasnippet -;; ^f =yyas> (yas-unknown) -;; -;; # as in Commands/List columns of a model.yasnippet -;; ~ =yyas> (yas-unknown) -;; -;; # as in Commands/Go To File on This Line.yasnippet -;; ~@ =yyas> (yas-unknown) -;; -;; - -;; .yas-setup.el for rails-mode ends here diff --git a/extras/imported/ruby-mode/.yas-setup.el b/extras/imported/ruby-mode/.yas-setup.el deleted file mode 100644 index 1351ac6..0000000 --- a/extras/imported/ruby-mode/.yas-setup.el +++ /dev/null @@ -1,1032 +0,0 @@ -;; .yas-setup.el for ruby-mode -;; -*- coding: utf-8 -*- -;; -(defvar yas-ruby-snippet-open-paren " " - "The open parenthesis used in ruby-mode snippets. Normally blank but could be (") -(defvar yas-ruby-snippet-close-paren " " - "The close parenthesis used in ruby-mode snippets. Normally blank but could be )") -(defvar yas-ruby-shebang-args " -wKU" - "Arguments for the ruby shebang line.") - -(defun yas-ruby-infer-class-name () - "Infer the class name from the buffer. Thanks to hitesh " - (if buffer-file-name - (let ((fn (capitalize (file-name-nondirectory - (file-name-sans-extension - (buffer-file-name)))))) - (cond - ((string-match "_" fn) (replace-match "" nil nil fn)) - (t fn))) - "SomeClass")) - -(defun yas-ruby-chomp (x) - "Chomp string X, return nil if X became empty" - (let ((len (length x)) - (start 0) - (end (1- (length x)))) - (unless (zerop len) - (while (and (< start len) - (memq (aref x start) - '(? ?\t ?\n))) - (setq start (1+ start))) - (while (and (> end start) - (memq (aref x end) - '(? ?\t ?\n))) - (setq end (1- end))) - (unless (<= end start) - (substring x start (1+ end)))))) - -(defvar yas-ruby-block-start-regexp "\\(^\\|[\s\t\n^]\\)\\(do\\)[\s\t\n]\\(|.*|\\)?") - -(defun yas-ruby-toggle-single-multi-line-block () - "Toggle \"do .. end\" blocks into \"{ .. }\" blocks back and forth." - ;; - ;; TODO: Some code to be refactored here. - ;; - ;; FIXME: correctly detect statements in { .. } block, split-string(";") is no good - ;; - (interactive) - (let* ((do-block-bounds (save-excursion - (when (or (save-excursion (beginning-of-line) - (looking-at yas-ruby-block-start-regexp)) - (save-excursion (ruby-beginning-of-block) - (looking-at yas-ruby-block-start-regexp))) - (cons (match-beginning 1) - (progn (goto-char (match-beginning 1)) - (ruby-end-of-block) (point)))))) - (brace-block-bounds (condition-case nil - (let ((syntax-info (syntax-ppss))) - (if (fourth syntax-info) - (goto-char (ninth syntax-info))) - (while (progn (up-list -1) (not (eq (char-after) ?{)))) - (cons (point) - (progn (forward-sexp) (point)))) - (error nil))) - (block-region) - (statements)) - (if (and do-block-bounds brace-block-bounds) - (if (< (car do-block-bounds) (car brace-block-bounds)) - (setq do-block-bounds nil) - (setq brace-block-bounds nil))) - (cond (do-block-bounds - (goto-char (car do-block-bounds)) - (setq block-region (buffer-substring-no-properties (+ 2 (car do-block-bounds)) (cdr do-block-bounds))) - (delete-region (car do-block-bounds) (+ 3 (cdr do-block-bounds))) - (insert "{") - (when (string-match "\\(|.*|\\).*" block-region) - (insert " " (match-string 1 block-region)) - (setq block-region (substring block-region (match-end 1)))) - (setq statements (remove nil (mapcar #'yas-ruby-chomp - (split-string block-region "\n")))) - (mapc #'(lambda (string) - (insert " " string) - (if (member (aref string (1- (length string))) '(?; - ?|)) - (insert " ") - (insert ";"))) - statements) - (when statements (delete-backward-char 1)) - (save-excursion - (insert " }"))) - (brace-block-bounds - ;; (message "found a brace block") - (goto-char (car brace-block-bounds)) - (setq block-region (buffer-substring (1+ (car brace-block-bounds)) (1- (cdr brace-block-bounds)))) - (delete-region (car brace-block-bounds) (cdr brace-block-bounds)) - (insert "do") - (when (string-match "\\(|.*|\\).*" block-region) - (insert " " (match-string 1 block-region)) - (setq block-region (substring block-region (match-end 1)))) - (setq statements (remove nil (mapcar #'yas-ruby-chomp - (split-string block-region ";")))) - (mapc #'(lambda (string) - (insert "\n" string) - (indent-according-to-mode)) - statements) - (unless statements (insert "\n") (indent-according-to-mode)) - (save-excursion - (insert "\nend") - (indent-according-to-mode))) - (t - (message "No enclosing block found."))))) - -(defvar yas-ruby-require-regexps - '(("abbrev" . ("abbrev")) - ("base64" . ("Base64")) - ("benchmark" . ("Benchmark")) - ("bigdecimal" . ("BigDecimal")) - ("bigdecimal/math" . ("BigMath")) - ("cgi" . ("CGI")) - ("complex" . ("Complex")) - ("csv" . ("CSV")) - ("curses" . ("Curses")) - ("date" . ("Date(?:Time)?")) - ("dbm" . ("DBM")) - ("delegate" . ("DelegateClass" "Delegator" "SimpleDelegator ")) - ("digest" . ("MD5" "SHA1")) - ("dl" . ("DL")) - ("enumerator" . ("(?:enum|each)_(?:cons|slice)" "enum_(?:for|with_index)" "to_enum ")) - ("erb" . ("ERB")) - ("etc" . ("Etc")) - ("fcntl" . ("Fcntl")) - ("fileutils" . ("FileUtils")) - ("find" . ("Find(?:\.|::)find")) - ("forwardable" . ("(?:Single)?Forwardable")) - ("gdbm" . ("GDBM")) - ("generator" . ("Generator" "SyncEnumerator")) - ("getoptlong" . ("GetoptLong")) - ("gserver" . ("GServer")) - ("iconv" . ("Iconv")) - ("ipaddr" . ("IpAddr")) - ("logger" . ("Logger")) - ("matrix" . ("Matrix" "Vector")) - ("monitor" . ("Monitor(?:Mixin)?")) - ("net/ftp" . ("Net::FTP")) - ("net/http" . ("Net::HTTP")) - ("net/imap" . ("Net::IMAP")) - ("net/pop" . ("Net::(?:APOP|POP3)")) - ("net/smtp" . ("Net::SMTP")) - ("net/telnet" . ("Net::Telnet")) - ("nkf" . ("NKF")) - ("observer" . ("Observable")) - ("open3" . ("Open3")) - ("optparse" . ("OptionParser")) - ("ostruct" . ("OpenStruct")) - ("pathname" . ("Pathname")) - ("ping" . ("Ping")) - ("pp" . ("pp")) - ("pstore" . ("PStore")) - ("rational" . ("Rational")) - ("rdoc/usage" . ("RDoc(?:\.|::)usage")) - ("rdoc/markup/simple_markup" . ("SM::SimpleMarkup")) - ("rdoc/markup/simple_markup/to_html" . ("SM::SimpleMarkup")) - ("rdoc/usage" . ("RDoc(?:\.|::)usage")) - ("resolv" . ("Resolv")) - ("rexml/document" . ("REXML")) - ("rinda/tuplespace" . ("Rinda::TupleSpace(?:Proxy)?")) - ("rinda/ring" . ("Rinda::Ring(?:Finger|Server)?")) - ("rss" . ("RSS")) - ("scanf" . ("scanf")) - ("sdbm" . ("SDBM")) - ("set" . ("(?:Sorted)?Set")) - ("singleton" . ("Singleton")) - ("soap" . ("SOAP")) - ("socket" . (" (?:TCP|UNIX)(?:Socket|Server)" "(?:UDP)?Socket")) - ("stringio" . ("StringIO")) - ("strscan" . ("StringScanner")) - ("syslog" . ("Syslog")) - ("tempfile" . ("Tempfile")) - ("test/unit" . ("Test::Unit")) - ("thread" . (" ConditionVariable" "Mutex" "(?:Sized)?Queue ")) - ("time" . ("Time(?:\.|::)parse")) - ("timeout" . ("Timeout(?:\.|::)timeout")) - ("tk" . ("TK")) - ("tmpdir" . ("Dir(?:\.|::)tmpdir")) - ("tracer" . ("Tracer")) - ("tsort" . ("TSort")) - ("uri" . ("URI")) - ("weakref" . ("WeakRef")) - ("webrick" . ("WEBrick")) - ("Win32API" . ("Win32(?:API)?")) - ("win32ole" . ("WIN32OLE")) - ("wsdl" . ("WSDL")) - ("xmlrpc" . ("XMLRPC")) - ("yaml" . ("YAML")) - ("zlib" . ("Zlib")))) - -(defun yas-ruby-require (package) - (save-excursion - (goto-char (point-min)) - (unless (search-forward-regexp (format "^[\s\t]*require[( ][ ]*\"%s\"[ )]*$" - package) nil t) - (unless (search-forward-regexp "^[\s\t]*require.*\n" nil t) - (search-forward-regexp "^[\s\t]*[^#]" nil t) - (goto-char (line-beginning-position))) - (insert "require \"" package "\"\n")))) - -(defun yas-ruby-pipe-through-xmpfilter () - (interactive) - (let ((start (or (and mark-active - (region-beginning)) - (point-min))) - (end (or (and mark-active - (region-end)) - (point-max))) - (orig (point)) - retval - (orig-line (count-screen-lines (window-start) (line-beginning-position)))) - - (unless (zerop (shell-command-on-region start end "xmpfilter" (get-buffer-create "*xmpfilter*") t (get-buffer-create "*xmpfilter errors*") t)) - (undo) - ) - (goto-char (min (point-max) orig)) - (recenter orig-line) - retval)) - -(put (intern "ruby-thing") 'bounds-of-thing-at-point 'yas-ri-ruby-thing-bounds) -(defun yas-ri-ruby-thing-bounds () - (let ((start (point)) - (end (point))) - (save-excursion - (while (not (and (zerop (skip-syntax-forward "\w\_")) - (zerop (skip-chars-forward "#:")))) - (setq end (point))) - (while (not (and (zerop (skip-syntax-backward "\w\_")) - (zerop (skip-chars-backward "#:")))) - (setq start (point)))) - (unless (= start end) - (cons start end)))) - -(defvar yas-ri-history nil - "History of yas-ri queries.") -(defvar yas-ri-executable "ri") -(require 'ansi-color) -(defun yas-ri (query) - (interactive (list (read-from-minibuffer "Ri query: " - (thing-at-point 'ruby-thing) - nil - nil - 'ri-history))) - (with-current-buffer (get-buffer-create "*Ri*") - (setq buffer-read-only nil) - (erase-buffer) - (setq default-directory "~") - (setq buffer-read-only nil) - (shell-command (concat yas-ri-executable " -f ansi " query) "*Ri*") - (ansi-color-apply-on-region (point-min) (point-max)) - (yas-ri-mode) - (display-buffer (current-buffer))) - t) - -(defun yas-ri-mode () - "Mode for viewing Ruby documentation." - (buffer-disable-undo) - (kill-all-local-variables) - (local-set-key (kbd "q") 'quit-window) - (local-set-key (kbd "RET") 'yas-ri) - (setq mode-name "ri") - (setq major-mode 'yas-ri-mode) - (setq buffer-read-only t) - (run-hooks 'yas-ri-mode-hook)) - -;; conditions -;; -(yas-define-condition-cache yas-ruby-in-interpolated-string-p (member (fourth (syntax-ppss)) (list ?\" ?\`))) -(yas-define-condition-cache yas-ruby-in-comment-p (fifth (syntax-ppss))) -(yas-define-condition-cache yas-ruby-in-string-p (fourth (syntax-ppss))) -(yas-define-condition-cache yas-ruby-end-is-block-end-p - (save-excursion - (ruby-backward-sexp) - (not (eq (point) (point-min))))) - -(provide 'yas-ruby) - -;; My work in progress substitutions -;; -;; Substitutions for: content -;; -;; ${1/.+/(/} =yyas> ${1:$(and (yas-text) "(")} -;; ${1/.+/)/} =yyas> ${1:$(and (yas-text) ")")} -;; ${2/.+/ => /} =yyas> ${2:$(and (yas-text) " => ")} -;; ${1:${TM_FILENAME/\.\w+//} =yyas> ${1:$(and buffer-file-name (file-name-sans-extension buffer-file-name))} -;; ${1/(^.*?\S.*)|.*/(?1:\()/} =yyas> ${1:$(and (string-match "[^\s\t]" yas-text) "(" )} -;; ${1/(^.*?\S.*)|.*/(?1:\))/} =yyas> ${1:$(and (string-match "[^\s\t]" yas-text) ")" )} -;; ${2/(^.*?\S.*)|.*/(?1:\()/} =yyas> ${2:$(and (string-match "[^\s\t]" yas-text) "(" )} -;; ${2/(^.*?\S.*)|.*/(?1:\))/} =yyas> ${2:$(and (string-match "[^\s\t]" yas-text) ")" )} -;; ${3/(^.*?\S.*)|.*/(?1:\()/} =yyas> ${3:$(and (string-match "[^\s\t]" yas-text) "(" )} -;; ${3/(^.*?\S.*)|.*/(?1:\))/} =yyas> ${3:$(and (string-match "[^\s\t]" yas-text) ")" )} -;; ${2/^\s*$|(.*\S.*)/(?1: )/} =yyas> ${2:$(and (string-match "[^\s\t]" yas-text) " " )} -;; ${3/^\s*$|(.*\S.*)/(?1: )/} =yyas> ${3:$(and (string-match "[^\s\t]" yas-text) " " )} -;; ${3/(^[rwab+]+$)|.*/(?1:, ")/} =yyas> ${3:$(and (string-match "^[rwab+]+$" yas-text) ", \\"" )} -;; ${3/(^[rwab+]+$)|.*/(?1:")/} =yyas> ${3:$(and (string-match "^[rwab+]+$" yas-text) "\\"" )} -;; ${3/^\s*$|(.*\S.*)/(?1:, )/} =yyas> ${3:$(and (string-match "[^\s\t]" (yas-text) ", ")} -;; ${TM_SELECTED_TEXT/([\t ]*).*/$1/m} =yyas> -;; ${TM_SELECTED_TEXT/(\A.*)|(.+)|\n\z/(?1:$0:(?2:\t$0))/g} =yyas> `yas-selected-text` -;; (yas-multi-line-unknown BF487539-8085-4FF4-8601-1AD20FABAEDC) =yyas> `(yas-ruby-infer-class-name)` -;; (yas-multi-line-unknown 2B73EC5F-06D2-460C-A14F-6FA05AFCF0CC) =yyas> `(yas-ruby-infer-class-name)` -;; -;; ${TM_FILENAME/(?:\A|_)([A-Za-z0-9]+)(?:\.rb)?/(?2::\u$1)/g} =yyas> `(yas-ruby-infer-class-name)` -;; -;; ${1/(^(?\s*[a-z_][a-zA-Z0-9_]*\s*)(,\g)*,?\s*$)|.*/(?1:|)/} =yyas> ${1:$(and (yas-text) "|")} -;; ${1/(^(?\s*[a-z_][a-zA-Z0-9_]*\s*)(,\g)*,?\s*$)|.*/(?1: |)/} =yyas> ${1:$(and (yas-text) " |")} -;; ${1/(^(?\s*[a-z_][a-zA-Z0-9_]*\s*)(,\g)*,?\s*$)|.*/(?1:| )/} =yyas> ${1:$(and (yas-text) "| ")} -;; -;; ${1/(^(?\s*(?:\*|\*?[a-z_])[a-zA-Z0-9_]*\s*)(,\g)*,?\s*$)|.*/(?1:|)/} =yyas> ${1:$(and (yas-text) "|")} -;; ${1/(^(?\s*(?:\*|\*?[a-z_])[a-zA-Z0-9_]*\s*)(,\g)*,?\s*$)|.*/(?1:| )/} =yyas> ${1:$(and (yas-text) "| ")} -;; ${2/(^(?\s*(?:\*|\*?[a-z_])[a-zA-Z0-9_]*\s*)(,\g)*,?\s*$)|.*/(?1:|)/} =yyas> ${2:$(and (yas-text) "|")} -;; ${2/(^(?\s*(?:\*|\*?[a-z_])[a-zA-Z0-9_]*\s*)(,\g)*,?\s*$)|.*/(?1:| )/} =yyas> ${2:$(and (yas-text) "| ")} -;; -;; ${1/([\w&&[^_]]+)|./\u$1/g} =yyas> ${1:$(replace-regexp-in-string "[_/]" "" (capitalize yas-text))} -;; -;; 7990EE60-C850-4779-A8C0-7FD2C853B99B =yyas> (yas-ruby-toggle-single-multi-line-block) -;; 7E084412-80E6-4B70-8092-C03D1ECE4CD2 =yyas> (yas-ruby-require "eac")(yas-expand-uuid 'ruby-mode "FDD73070-6D32-4301-A86A-C55B77C3D8ED") -;; FBFC214F-B019-4967-95D2-028F374A3221 =yyas> (yas-ruby-pipe-through-xmpfilter) -;; 63F3B3B7-CBE2-426B-B551-657733F3868B =yyas> (call-interactively (if (featurep 'yari) 'yari 'yas-ri)) - -;; -;; `[[ $TM_LINE_INDEX != 0 ]] && echo; echo` =yyas> `(concat (if (eq 0 current-line) "\n" "") "\n")` -;; `snippet_paren.rb` =yyas> `yas-ruby-snippet-open-paren` -;; `snippet_paren.rb end` =yyas> `yas-ruby-snippet-close-paren` -;; ${TM_RUBY_SWITCHES: -wKU} =yyas> `yas-ruby-shebang-args` -;; -;; Substitutions for: condition -;; -;; 7990EE60-C850-4779-A8C0-7FD2C853B99B =yyas> 'force-in-comment -;; FBFC214F-B019-4967-95D2-028F374A3221 =yyas> 'force-in-comment -;; 88BC3896-DC39-4307-A271-21D33340F15A =yyas> 'force-in-comment -;; 0F940CBC-2173-49FF-B6FD-98A62863F8F2 =yyas> 'force-in-comment -;; 451A0596-1F72-4AFB-AF2F-45900FABB0F7 =yyas> (not (yas-ruby-end-is-block-end-p)) -;; (string.quoted.double.ruby|string.interpolated.ruby) - string source =yyas> (and (yas-ruby-in-interpolated-string-p) 'force-in-comment) -;; text.html.ruby, text.html source.ruby =yyas> (yas-unimplemented) -;; text.html, source.yaml, meta.erb =yyas> (yas-unimplemented) -;; keyword.control.start-block.ruby, meta.syntax.ruby.start-block =yyas> -;; -;; Substitutions for: binding -;; -;; # as in Commands/New Method.yasnippet -;; $ =yyas> C-c M-m -;; ^W =yyas> C-c M-w -;; # =yyas> # -;; ^{ =yyas> C-c M-{ -;; @R =yyas> C-c M-R -;; @r =yyas> C-c M-r -;; ^R =yyas> C-c M-S-r -;; @i =yyas> s-i -;; @b =yyas> s-b -;; ^@E =yyas> C-c M-e -;; ^: =yyas> C-c M-: -;; ^> =yyas> C-c M-> -;; ^h =yyas> C-c M-h -;; -;; -;; # as in Commands/Enclose in + (RDoc comments).yasnippet -;; @k =yyas> (yas-unknown) -;; -;; # as in Commands/Check Ruby Syntax.yasnippet -;; ^V =yyas> (yas-unknown) -;; -;; # as in Commands/Omit from RDoc.yasnippet -;; ^@O =yyas> (yas-unknown) -;; -;; # as in Commands/Enclose in (RDoc comments).yasnippet -;; @b =yyas> (yas-unknown) -;; -;; # as in Snippets/hash pointer.yasnippet -;; ^l =yyas> (yas-unknown) -;; -;; # as in Commands/Make Destructive Call.yasnippet -;; ^! =yyas> (yas-unknown) -;; -;; # as in Commands/Toggle Quote Style.yasnippet -;; ^" =yyas> (yas-unknown) -;; -;; # as in Commands/Open Require.yasnippet -;; @D =yyas> (yas-unknown) -;; -;; # as in Commands/Execute Line with Ruby.yasnippet -;; ^E =yyas> (yas-unknown) -;; -;; # as in Commands/Completion Ruby (rcodetools).yasnippet -;; ~ =yyas> (yas-unknown) -;; -;; # as in Macros/Delete forwardbackward.yasnippet -;;  =yyas> (yas-unknown) -;; -;; --**-- -;; Automatically generated code, do not edit this part -;; -;; Translated menu -;; -(yas-define-menu 'ruby-mode - '(;; Ignoring Run - (yas-ignore-item "35222962-C50D-4D58-A6AE-71E7AD980BE4") - ;; Ignoring Run Focused Unit Test - (yas-ignore-item "5289EE40-86B8-11D9-A8D4-000A95E13C98") - ;; Ignoring Run Rake Task - (yas-ignore-item "569C9822-8C41-4907-94C7-1A8A0031B66D") - - ;; Documentation for Word / Selection - (yas-item "63F3B3B7-CBE2-426B-B551-657733F3868B") - (yas-submenu "RDoc" - (;; Ignoring Show for Current File / Project - (yas-ignore-item "1AD6A138-2E89-4D6A-AB3F-416BF9CE968D") - - (yas-submenu "Format" - (;; Ignoring Bold - (yas-ignore-item "931DD73E-615E-476E-9B0D-8341023AE730") - ;; Ignoring Italic - (yas-ignore-item "DAA69A0C-FC1E-4509-9931-DFFB38B4D6AE") - ;; Ignoring Typewriter - (yas-ignore-item "2DDB6FE0-6111-4C40-A149-8E67E76F8272"))) - - ;; New Block - (yas-item "05984208-D559-4C04-A69C-2019361A985A") - ;; Ignoring Omit - (yas-ignore-item "BF4CA9F1-51CD-48D4-8357-852234F59046") - - ;; :yields: - (yas-item "ED6368FB-A11D-4622-9F42-7879481094F1"))) - (yas-separator) - (yas-submenu "Rake" - (;; namespace :name ... end - (yas-item "A3D89AAA-9156-4077-A026-37BB7358C3BA") - ;; namespace :name ... task :default ... end - (yas-item "2031FC41-CBD3-41CC-B9A9-7F068E607A05") - ;; desc ... - (yas-item "F686E1AD-B03D-45A6-BD51-6E3FD1298FE0") - ;; task :name ... end - (yas-item "CB81DA55-F3BC-4BFB-B0C5-29F0EE6F8081") - ;; desc ... task :name ... end - (yas-item "FE9A8EDA-C243-4068-8F38-A615B82D08C9") - ;; Ignoring Rake/Sake task using file path - (yas-ignore-item "E07FF68B-C87D-4332-8477-D026929FDADA"))) - (yas-separator) - ;; Ignoring Open Require - (yas-ignore-item "8646378E-91F5-4771-AC7C-43FC49A93576") - ;; Ignoring Validate Syntax - (yas-ignore-item "EE5F19BA-6C02-11D9-92BA-0011242E4184") - - ;; Ignoring Execute Line / Selection as Ruby - (yas-ignore-item "EE5F1FB2-6C02-11D9-92BA-0011242E4184") - ;; Execute and Update ‘# =>’ Markers - (yas-item "FBFC214F-B019-4967-95D2-028F374A3221") - ;; Add ‘# =>’ Marker - (yas-item "88BC3896-DC39-4307-A271-21D33340F15A") - (yas-separator) - ;; Ignoring Insert Missing Requires - (yas-ignore-item "9FB64639-F776-499B-BA6F-BB45F86F80FD") - ;; Ignoring Add ! to Method in Line / Selection - (yas-ignore-item "7F79BC8D-8A4F-4570-973B-05DFEC25747F") - ;; Ignoring Toggle String / Symbol - (yas-ignore-item "B297E4B8-A8FF-49CE-B9C4-6D4911724D43") - ;; Insert ERb’s <% .. %> or <%= .. %> - (yas-item "FDFABCB9-DF58-4469-AE11-5407A4FF4D70") - (yas-separator) - (yas-submenu "Declarations" - (;; begin … rescue … end - (yas-item "0F940CBC-2173-49FF-B6FD-98A62863F8F2") - ;; case … end - (yas-item "667083EE-62C3-11D9-B8CF-000D93589AF6") - ;; when … - (yas-item "48D8E498-C9A5-4B1B-9A18-71A5860276FB") - ;; if … end - (yas-item "6670835F-62C3-11D9-B8CF-000D93589AF6") - ;; if … else … end - (yas-item "667082E6-62C3-11D9-B8CF-000D93589AF6") - ;; elsif ... - (yas-item "CD1609FA-47DA-4EE4-9C5B-5C56D953F5B1") - ;; unless … end - (yas-item "F53E098D-D08E-4CE2-990A-B0BD70E60614") - ;; while ... end - (yas-item "D121FC61-96A4-4B8F-8709-280EDA876FF3") - ;; until ... end - (yas-item "488B387C-50C0-4B2D-9260-5A7E7EAF9B42") - (yas-separator) - (yas-submenu "Classes and Modules" - (;; class .. end - (yas-item "BF487539-8085-4FF4-8601-1AD20FABAEDC") - ;; class .. initialize .. end - (yas-item "83EED068-8C1C-4BAF-9893-902DC00616AB") - ;; class .. < ParentClass .. initialize .. end - (yas-item "0CCBE04E-F4E2-4E55-9506-7DE67ACF8388") - ;; ClassName = Struct .. do .. end - (yas-item "05DFF82C-5A29-4EBD-93FE-C165FFFB5EA8") - ;; class BlankSlate .. initialize .. end - (yas-item "E98FB8F9-7302-431D-8BF2-275A68A6126C") - ;; Ignoring class .. < DelegateClass .. initialize .. end - (yas-ignore-item "121B334B-2AA6-4E9A-A8B8-BF93B627982B") - ;; class .. < DelegateClass .. initialize .. end - (yas-item "AFE1D078-EA16-45F5-AD8A-FAC1B523D861") - ;; class << self .. end - (yas-item "C7AAAE45-487A-4B61-8962-D47675AAC05F") - (yas-separator) - ;; module .. end - (yas-item "2B73EC5F-06D2-460C-A14F-6FA05AFCF0CC") - ;; module .. module_function .. end - (yas-item "0E85EC81-2FAB-4648-B590-119CC1BB6E41") - ;; module .. ClassMethods .. end - (yas-item "A71A18CF-2D71-4BFF-AA0C-D9B8C59BC4EB"))) - (yas-submenu "Methods" - (;; Ignoring New Method - (yas-ignore-item "0275EF39-9357-408F-AF20-79E415CA9504") - - ;; attr_reader .. - (yas-item "A150C2D8-25B3-4339-BC92-8A0160A70486") - ;; attr_writer .. - (yas-item "3D383096-A03F-4EF8-9060-3C727045AB34") - ;; attr_accessor .. - (yas-item "D7A7D3C9-1714-4C50-8CC0-D83A03883E8F") - (yas-separator) - ;; include Enumerable .. - (yas-item "AAD5D511-6BE7-41DA-8F2B-1593A48FBB08") - ;; include Comparable .. - (yas-item "6C9D6B3D-D8E9-4606-9534-577C8D21FFF6") - (yas-separator) - ;; Ignoring extend Forwardable - (yas-ignore-item "58FDEA60-10AF-4C49-AA09-29B77030DB25") - ;; extend Forwardable - (yas-item "7F46C90A-595B-4B83-A4F7-058F63CE4218") - (yas-separator) - ;; def … end - (yas-item "4E9A7A73-875C-11D9-897C-000393CBCE2E") - ;; def self .. end - (yas-item "7C6E88FA-CA0E-4110-8C75-A94E54286A75") - ;; def method_missing .. end - (yas-item "87D5F8AD-8DA6-4AED-A0D8-B51CAC980445") - ;; def_delegator .. - (yas-item "C44ED391-614F-4BA2-BB0F-87668EEA9954") - ;; def_delegators .. - (yas-item "4A6EFD6B-88E2-4822-AD48-03460EDBC796") - (yas-separator) - ;; alias_method .. - (yas-item "988C8AEF-FC71-4455-9C4F-9338C05685A4"))) - ;; __END__ - (yas-item "451A0596-1F72-4AFB-AF2F-45900FABB0F7") - (yas-separator) - ;; #!/usr/bin/env ruby -wKU - (yas-item "A05CBDD6-845D-45EB-94FB-F8787F5456BE") - ;; require ".." - (yas-item "97DE939B-D243-4D5C-B953-1C9090912E7C") - ;; application { .. } - (yas-item "E16D24D2-CC7E-4786-BE0B-1725FC865D78") - ;; usage_if() - (yas-item "21C0D711-F32A-4665-AA0D-B136F9DD3945") - ;; usage_unless() - (yas-item "49D69DEC-6991-49F4-8D9B-BA60BFDD3D17"))) - (yas-submenu "Iterators" - ((yas-submenu "Arrays" - (;; Array.new(10) { |i| .. } - (yas-item "DAE6A754-D906-4763-B816-CE67125CEF08") - (yas-separator) - ;; delete_if { |e| .. } - (yas-item "263C94DC-63CF-4BA3-9692-C5582CA8F1AB") - ;; fill(range) { |i| .. } - (yas-item "6021BBDC-4AAD-447B-A0C2-A4BB31721558") - ;; flatten_once() - (yas-item "3DDB99C4-486D-4C11-A217-5680FDD8EC19") - ;; zip(enums) { |row| .. } - (yas-item "FD010022-E0E7-44DB-827F-33F7D9310DA2"))) - (yas-submenu "Counting" - (;; downto(0) { |n| .. } - (yas-item "4991BB86-736E-4758-B9B2-E4FA90B9368F") - ;; step(2) { |e| .. } - (yas-item "36853A11-0307-4AE7-B835-7CE6358717A5") - ;; times { |n| .. } - (yas-item "206D54AF-E67A-4DF0-B7F4-3D42FEB81685") - ;; upto(1.0/0.0) { |n| .. } - (yas-item "51954118-81D7-42B6-9A10-BE23D8B9FFE2") - (yas-separator) - ;; loop { .. } - (yas-item "567E3D18-BF2B-4379-8927-2777EC9F495E"))) - (yas-submenu "Each Element" - (;; each { |e| .. } - (yas-item "ECBA4CA0-275F-460E-85BE-E82FEA2E2B26") - ;; each_byte { |byte| .. } - (yas-item "338EC03D-3FF4-4435-94E8-1CEF20CEC75D") - ;; each_char { |chr| .. } - (yas-item "7E084412-80E6-4B70-8092-C03D1ECE4CD2") - ;; each_char { |chr| .. } - (yas-item "FDD73070-6D32-4301-A86A-C55B77C3D8ED") - ;; Ignoring each_cons(..) { |group| .. } - (yas-ignore-item "EC73D5CC-5F05-46B9-A6F4-82037E4A38C9") - ;; each_cons(..) { |group| .. } - (yas-item "3C04589C-5127-478E-97B3-CA7DD2EA7ECD") - ;; each_index { |i| .. } - (yas-item "689120C9-AB40-4081-8268-9362E00FA4A0") - ;; each_key { |key| .. } - (yas-item "E54F7077-3C33-4B53-A4F7-21E16132D3AD") - ;; each_line { |line| .. } - (yas-item "02913388-EE8E-4C55-AC94-94F3D751F47E") - ;; each_pair { |name, val| .. } - (yas-item "7A3CECED-452B-438E-A5C6-95B6BDC43243") - ;; Ignoring each_slice(..) { |group| .. } - (yas-ignore-item "825B721D-4367-4DF7-98C0-F005695DF9E3") - ;; each_slice(..) { |group| .. } - (yas-item "CD748479-D2A4-4AB5-95BD-4C89512BA210") - ;; each_value { |val| .. } - (yas-item "844DBD70-BC23-4FBF-9C18-F4A610239DF2") - ;; each_with_index { |e, i| .. } - (yas-item "1DD13CF5-39C0-4F10-B655-56DACEBC7F94") - ;; reverse_each { |e| .. } - (yas-item "F3C5F719-EF03-4FF7-A777-4A8402FE3B6B") - (yas-separator) - ;; inject(init) { |mem, var| .. } - (yas-item "B563E0D7-513D-49B4-9733-1B04A6F25A74") - (yas-separator) - ;; map { |e| .. } - (yas-item "5A3754FC-43A3-462B-AB42-E3E951872E6F") - ;; Ignoring map_with_index { |e, i| .. } - (yas-ignore-item "BFB65D1C-62F1-485D-8A67-3E5A2E55107C") - ;; map_with_index { |e, i| .. } - (yas-item "BD4CFD7B-1AC0-4569-9BDA-FD491F41F4E6"))) - (yas-submenu "Files" - (;; Dir.glob("..") { |file| .. } - (yas-item "332AA973-AA71-48CB-AEE9-1D71E11019AC") - ;; File.foreach ("..") { |line| .. } - (yas-item "8F594E5E-6F46-4E98-B5FB-1C8F3BA9828F") - ;; open("path/or/url", "w") { |io| .. } - (yas-item "418F1817-255F-430A-B09A-222964ED66A7") - ;; unix_filter { .. } - (yas-item "8CEF9711-88D5-4202-AFB9-29EF4EFD25C1") - (yas-separator) - ;; option_parse { .. } - (yas-item "C3C48948-4F49-484E-A8DE-DEB44723099E") - ;; option(..) - (yas-item "209D5D73-7A77-4931-A158-3FB6D5B48A88"))) - (yas-submenu "Ordering" - (;; sort { |a, b| .. } - (yas-item "9E0B4D4B-2956-4B3A-800A-3D8CE54E66BF") - ;; sort_by { |e| .. } - (yas-item "BA9440C9-36C3-4031-BB61-67B581D5B179") - (yas-separator) - ;; randomize() - (yas-item "B0CE57EC-FB2E-4482-8CCE-448DC2588715"))) - (yas-submenu "Searching and Selection" - (;; all? { |e| .. } - (yas-item "07D1F987-7CDB-4EAD-B64A-27A93051700E") - ;; any? { |e| .. } - (yas-item "A3B9B76B-2BC5-425C-AB24-9FAAFC375798") - ;; classify { |e| .. } - (yas-item "5DA9E1E8-2C54-420A-9B84-B040A1AF2B9E") - ;; collect { |e| .. } - (yas-item "669A86AD-936F-4EDA-8E4E-6863804072DA") - ;; detect { |e| .. } - (yas-item "6C6B9849-9631-49FF-A9F9-F0E94A1512C5") - ;; fetch(name) { |key| .. } - (yas-item "1F72122A-35AD-4BA1-AA01-889A10319666") - ;; find { |e| .. } - (yas-item "E23FE534-8061-4828-98A5-46270B6910B0") - ;; find_all { |e| .. } - (yas-item "197709C5-8382-4A59-B6D7-31A0CC0F23B7") - ;; grep(/pattern/) { |match| .. } - (yas-item "9D9E7BA3-8C5D-4532-83EA-326358C2F5BB") - ;; max { |a, b| .. } - (yas-item "98182B9E-7C61-4824-BE4C-9CD69C816037") - ;; min { |a, b| .. } - (yas-item "CB03D11A-7204-48D0-92C1-E109034403E7") - ;; partition { |e| .. } - (yas-item "52B8BF63-F09E-4789-8407-06168A8AE666") - ;; reject { |e| .. } - (yas-item "B79B9DAB-ABEF-44F6-BF7E-635E7BA11DFD") - ;; select { |e| .. } - (yas-item "4E409AA4-E7D4-46B7-A4E9-E32F992B33E9"))) - (yas-submenu "Strings" - (;; sub(/../) { |match| .. } - (yas-item "8021944C-CEA4-4983-8D1C-78D18D4004A1") - ;; gsub(/../) { |match| .. } - (yas-item "2514FC26-468C-4D08-A788-494A444C4286") - (yas-separator) - ;; scan(/../) { |match| .. } - (yas-item "66802933-B49F-479B-9DF9-1D898FF1FA90"))))) - (yas-submenu "Blocks" - (;; Toggle ‘do … end’ / ‘{ … }’ - (yas-item "7990EE60-C850-4779-A8C0-7FD2C853B99B") - (yas-separator) - ;; Insert { |variable| … } - (yas-item "855FC4EF-7B1E-48EE-AD4E-5ECB8ED79D1C") - ;; Insert do |variable| … end - (yas-item "4B72C5C3-6CA7-41AC-B2F9-51DEA25D469E") - (yas-separator) - ;; lambda { |args| .. } - (yas-item "21E75321-0CF7-45E8-A297-BCC7C0DDDD15"))) - (yas-submenu "Hashes" - (;; Hash.new { |hash, key| hash[key] = .. } - (yas-item "E16EE658-1CA0-4950-954B-B962E50B754F") - (yas-separator) - ;; Hash Pair — :key => "value" - (yas-item "840B9C4C-7037-4C3B-9028-EB9DC75EDB3E") - ;; Hash Pointer — => - (yas-item "B9E3A6DF-875D-11D9-897C-000393CBCE2E"))) - (yas-submenu "Tests" - (;; class .. < Test::Unit::TestCase .. end - (yas-item "31D1F145-33AB-4441-BA11-4D1C46928C4C") - ;; def test_ .. end - (yas-item "00F66D41-25AF-4597-B67D-E540965A5222") - ;; require "tc_.." .. - (yas-item "5297FD0C-98B1-4514-BBD1-1516810BECA6") - (yas-separator) - ;; assert(..) - (yas-item "B32C147D-44A6-478A-9D5D-189D7831E9A7") - ;; assert_equal(..) - (yas-item "43A61A22-6BEE-4997-961C-1CDE739C05FE") - ;; assert_not_equal(..) - (yas-item "A243E96F-DC21-4AA0-B340-13A7674F6AFF") - ;; assert_in_delta(..) - (yas-item "429D0EF5-580D-4166-8F79-713DE96B77F1") - ;; assert_instance_of(..) - (yas-item "0E831E03-67E1-4357-8323-C60685C23C4F") - ;; assert_kind_of(..) - (yas-item "671F05E2-D9CC-485E-BB1B-B13EF20FAC65") - ;; assert_nil(..) - (yas-item "4C79256C-480A-459C-BDE8-BB0D972811DB") - ;; assert_not_nil(..) - (yas-item "79FEC3CC-2A40-4611-9A85-ECDB22FE0701") - ;; assert_match(..) - (yas-item "711ED6C3-0F18-41FB-9A7D-3094BB319A85") - ;; assert_no_match(..) - (yas-item "A072BB1E-1DD1-45D3-9346-8CA3BA21B364") - ;; assert_operator(..) - (yas-item "1B925A4D-8EE4-442B-9254-293599F5717F") - ;; assert_raise(..) { .. } - (yas-item "68B21F6F-5D89-41FA-A19C-F29C2F912B4E") - ;; assert_nothing_raised(..) { .. } - (yas-item "82F8EEE0-2452-411E-8102-7BFDDBCA2E72") - ;; assert_respond_to(..) - (yas-item "09A11FDA-49FC-4466-8787-8D1D5D111A89") - ;; assert_same(..) - (yas-item "29340695-E426-4F77-8CF7-C59360A549F4") - ;; assert_not_same(..) - (yas-item "F91C25EC-EC76-498B-BFB5-FDA8F57C5875") - ;; assert_send(..) - (yas-item "7850AD5C-A90D-4E2C-A931-EADFF8D3D9A3") - ;; assert_throws(..) { .. } - (yas-item "05655BD8-23C6-445F-BFD1-420BF25C3030") - ;; assert_nothing_thrown { .. } - (yas-item "33639D7A-BD8C-4396-9C44-307B8AC87C9E") - ;; flunk(..) - (yas-item "DB457094-1AC9-4856-AEFC-43A9576B6775") - (yas-separator) - ;; Ignoring Benchmark.bmbm do .. end - (yas-ignore-item "C649F945-DAB8-4DA2-B73C-2EFF9D7D34F3") - ;; Benchmark.bmbm do .. end - (yas-item "942F20E2-C40A-44B8-A3F2-99AAC68CB534") - ;; results.report(..) { .. } - (yas-item "1C60D589-DD46-4109-90CA-6B34AEA2F298"))) - (yas-submenu "Serialization" - (;; Marshal.dump(.., file) - (yas-item "0CB48BCA-3F6E-4AE0-85BC-08A1D2508216") - ;; Marshal.load(obj) - (yas-item "20AAD0BC-075D-4EC0-9057-E3E5E62C4125") - (yas-separator) - ;; Ignoring PStore.new( .. ) - (yas-ignore-item "5AE7CFB4-418E-4E00-AD76-06DB755EE876") - ;; PStore.new( .. ) - (yas-item "5B46ECFD-23A4-4F0C-9951-F64C19C72C2B") - ;; transaction( .. ) { .. } - (yas-item "46BF99AD-E172-4D49-BCF7-072F4730E1D9") - (yas-separator) - ;; Ignoring YAML.dump(.., file) - (yas-ignore-item "9460392B-C036-4A76-A5AE-1191F10E4B1B") - ;; YAML.dump(.., file) - (yas-item "3BA6762A-BB6B-489E-8006-F30F386AEF48") - ;; Ignoring YAML.load(file) - (yas-ignore-item "2C07D4E7-D74F-4AE4-82BE-B0BA82247AFA") - ;; YAML.load(file) - (yas-item "8343ACF4-EEB7-44B5-B835-94826466D4D5") - (yas-separator) - ;; Ignoring xmlread(..) - (yas-ignore-item "F6BF907E-FDF7-4D9B-9E57-BE159561349D") - ;; xmlread(..) - (yas-item "B904D4AA-D15D-48A4-8EB2-563BAF489332") - ;; xpath(..) { .. } - (yas-item "CC300D44-6C3F-4F6C-A8AB-86F5A2DC57CF"))) - (yas-submenu "Idioms" - (;; class_from_name() - (yas-item "2DBEE50B-3097-4A57-AB48-3586CF392D8B") - ;; deep_copy(..) - (yas-item "0BA2B2F1-E767-4A03-9791-0AC0183251F1") - ;; path_from_here( .. ) - (yas-item "A4E89D97-D5ED-48BB-B5FF-1BFB79211FCD") - ;; singleton_class() - (yas-item "B46D35B8-5DEB-4C10-A110-BA1965A2EB9C") - ;; Ignoring word_wrap() - (yas-ignore-item "97054C4D-E4A3-45B1-9C00-B82DBCB30CAD"))) - (yas-submenu "File" - (;; require File.dirname(__FILE__) + "/.." - (yas-item "7C42D878-FD0F-4181-A71A-57A091C0154A") - (yas-separator) - ;; File.dirname(__FILE__) - (yas-item "16920DC1-6FA6-48C8-90C5-C19E2C734303") - (yas-separator) - ;; File.read(filename) - (yas-item "FAFE9F5C-BF9C-4416-8623-2CB8EBC31B3C") - ;; File.open(filename, 'r') { |f| f.read } - (yas-item "005EB926-4BFE-4BFA-93B2-C9030636289C"))) - ;; class .. < Test::Unit::TestCase with test_helper - (yas-item "228CAB3A-E221-4727-B430-31E94F76C9D3")) - '("E5158F94-CC52-4424-A495-14EF9272653F" - "EEE6D060-C5A0-400D-A2E0-0835013C5365" - "76FCF165-54CB-4213-BC55-BD60B9C6A3EC" - "6519CB08-8326-4B77-A251-54722FFBFC1F" - "835FAAC6-5431-436C-998B-241F7226B99B" - "A83F68A9-F751-4BB4-AE16-56812878C16A" - "47D203ED-EB9B-4653-A07B-A897800CEB76" - "47D203ED-EB9B-4653-A07B-A897800CEB76" - "931DD73E-615E-476E-9B0D-8341023AE730" - "2DDB6FE0-6111-4C40-A149-8E67E76F8272" - "DAA69A0C-FC1E-4509-9931-DFFB38B4D6AE" - "BF4CA9F1-51CD-48D4-8357-852234F59046" - "8646378E-91F5-4771-AC7C-43FC49A93576" - "E07FF68B-C87D-4332-8477-D026929FDADA" - "569C9822-8C41-4907-94C7-1A8A0031B66D" - "35222962-C50D-4D58-A6AE-71E7AD980BE4" - "835FAAC6-5431-436C-998B-241F7226B99B" - "B297E4B8-A8FF-49CE-B9C4-6D4911724D43" - "E0E058FC-0DC3-4872-A1C2-0B1A322A0CF5" - "B3875596-723C-41EE-9E6F-F84930C3B568" - "76FCF165-54CB-4213-BC55-BD60B9C6A3EC" - "EE5F19BA-6C02-11D9-92BA-0011242E4184" - "EE5F1FB2-6C02-11D9-92BA-0011242E4184" - "9FB64639-F776-499B-BA6F-BB45F86F80FD" - "7F79BC8D-8A4F-4570-973B-05DFEC25747F" - "0275EF39-9357-408F-AF20-79E415CA9504" - "5289EE40-86B8-11D9-A8D4-000A95E13C98" - "1AD6A138-2E89-4D6A-AB3F-416BF9CE968D" - "6519CB08-8326-4B77-A251-54722FFBFC1F" - "97054C4D-E4A3-45B1-9C00-B82DBCB30CAD" - "E5158F94-CC52-4424-A495-14EF9272653F" - "9460392B-C036-4A76-A5AE-1191F10E4B1B" - "2C07D4E7-D74F-4AE4-82BE-B0BA82247AFA" - "121B334B-2AA6-4E9A-A8B8-BF93B627982B" - "EC73D5CC-5F05-46B9-A6F4-82037E4A38C9" - "825B721D-4367-4DF7-98C0-F005695DF9E3" - "58FDEA60-10AF-4C49-AA09-29B77030DB25" - "BFB65D1C-62F1-485D-8A67-3E5A2E55107C" - "C649F945-DAB8-4DA2-B73C-2EFF9D7D34F3" - "A83F68A9-F751-4BB4-AE16-56812878C16A" - "5AE7CFB4-418E-4E00-AD76-06DB755EE876" - "F6BF907E-FDF7-4D9B-9E57-BE159561349D")) - -;; Unknown substitutions -;; -;; Substitutions for: content -;; -;; # as in Snippets/open yield block ({).yasnippet -;; `yas-selected-text` =yyas> (yas-unknown) -;; -;; # as in Snippets/RDoc documentation block.yasnippet -;; `(concat (if (eq 0 current-line) "\n" "") "\n")` =yyas> (yas-unknown) -;; -;; # as in Snippets/flunk(..) (fl).yasnippet -;; `yas-ruby-snippet-open-paren` =yyas> (yas-unknown) -;; -;; # as in Snippets/flunk(..) (fl).yasnippet -;; `yas-ruby-snippet-close-paren` =yyas> (yas-unknown) -;; -;; # as in Snippets/class __ TestUnitTestCase with test_helper.yasnippet -;; (yas-multi-line-unknown 228CAB3A-E221-4727-B430-31E94F76C9D3) =yyas> (yas-unknown) -;; -;; # as in Commands/Completion Ruby (rcodetools).yasnippet -;; 47D203ED-EB9B-4653-A07B-A897800CEB76 =yyas> (yas-unknown) -;; -;; # as in Commands/Enclose in (RDoc comments).yasnippet -;; 931DD73E-615E-476E-9B0D-8341023AE730 =yyas> (yas-unknown) -;; -;; # as in Commands/Enclose in + (RDoc comments).yasnippet -;; 2DDB6FE0-6111-4C40-A149-8E67E76F8272 =yyas> (yas-unknown) -;; -;; # as in Commands/Enclose in _ (RDoc comments).yasnippet -;; DAA69A0C-FC1E-4509-9931-DFFB38B4D6AE =yyas> (yas-unknown) -;; -;; # as in Commands/Omit from RDoc.yasnippet -;; BF4CA9F1-51CD-48D4-8357-852234F59046 =yyas> (yas-unknown) -;; -;; # as in Commands/Open Require.yasnippet -;; 8646378E-91F5-4771-AC7C-43FC49A93576 =yyas> (yas-unknown) -;; -;; # as in Commands/RakeSake task using file path.yasnippet -;; E07FF68B-C87D-4332-8477-D026929FDADA =yyas> (yas-unknown) -;; -;; # as in Commands/Run Rake Task.yasnippet -;; 569C9822-8C41-4907-94C7-1A8A0031B66D =yyas> (yas-unknown) -;; -;; # as in Commands/Run.yasnippet -;; 35222962-C50D-4D58-A6AE-71E7AD980BE4 =yyas> (yas-unknown) -;; -;; # as in Commands/Toggle ERb Tags.yasnippet -;; 835FAAC6-5431-436C-998B-241F7226B99B =yyas> (yas-unknown) -;; -;; # as in Commands/Toggle StringSymbol.yasnippet -;; B297E4B8-A8FF-49CE-B9C4-6D4911724D43 =yyas> (yas-unknown) -;; -;; # as in Commands/Validate and Save.yasnippet -;; E0E058FC-0DC3-4872-A1C2-0B1A322A0CF5 =yyas> (yas-unknown) -;; -;; # as in Commands/gsub - remove whitespace from front of line.yasnippet -;; B3875596-723C-41EE-9E6F-F84930C3B568 =yyas> (yas-unknown) -;; -;; # as in Commands/Check ERB Syntax.yasnippet -;; 76FCF165-54CB-4213-BC55-BD60B9C6A3EC =yyas> (yas-unknown) -;; -;; # as in Commands/Check Ruby Syntax.yasnippet -;; EE5F19BA-6C02-11D9-92BA-0011242E4184 =yyas> (yas-unknown) -;; -;; # as in Commands/Execute Line with Ruby.yasnippet -;; EE5F1FB2-6C02-11D9-92BA-0011242E4184 =yyas> (yas-unknown) -;; -;; # as in Commands/Insert Missing Requires.yasnippet -;; 9FB64639-F776-499B-BA6F-BB45F86F80FD =yyas> (yas-unknown) -;; -;; # as in Commands/Make Destructive Call.yasnippet -;; 7F79BC8D-8A4F-4570-973B-05DFEC25747F =yyas> (yas-unknown) -;; -;; # as in Commands/New Method.yasnippet -;; 0275EF39-9357-408F-AF20-79E415CA9504 =yyas> (yas-unknown) -;; -;; # as in Commands/Run focused unit test.yasnippet -;; 5289EE40-86B8-11D9-A8D4-000A95E13C98 =yyas> (yas-unknown) -;; -;; # as in Commands/Show RDoc for this file.yasnippet -;; 1AD6A138-2E89-4D6A-AB3F-416BF9CE968D =yyas> (yas-unknown) -;; -;; # as in Commands/Toggle Quote Style.yasnippet -;; 6519CB08-8326-4B77-A251-54722FFBFC1F =yyas> (yas-unknown) -;; -;; # as in Commands/word_wrap() (worw).yasnippet -;; 97054C4D-E4A3-45B1-9C00-B82DBCB30CAD =yyas> (yas-unknown) -;; -;; # as in Macros/Overwrite } in #{ .. }.yasnippet -;; E5158F94-CC52-4424-A495-14EF9272653F =yyas> (yas-unknown) -;; -;; # as in Macros/YAML.dump(.., file) (Yd).yasnippet -;; 9460392B-C036-4A76-A5AE-1191F10E4B1B =yyas> (yas-unknown) -;; -;; # as in Macros/YAML.load(file) (Yl).yasnippet -;; 2C07D4E7-D74F-4AE4-82BE-B0BA82247AFA =yyas> (yas-unknown) -;; -;; # as in Macros/class .. DelegateClass .. initialize .. end (class).yasnippet -;; 121B334B-2AA6-4E9A-A8B8-BF93B627982B =yyas> (yas-unknown) -;; -;; # as in Macros/each_cons(..) { group .. } (eac).yasnippet -;; EC73D5CC-5F05-46B9-A6F4-82037E4A38C9 =yyas> (yas-unknown) -;; -;; # as in Macros/each_slice(..) { group .. } (eas).yasnippet -;; 825B721D-4367-4DF7-98C0-F005695DF9E3 =yyas> (yas-unknown) -;; -;; # as in Macros/extend Forwardable (Forw).yasnippet -;; 58FDEA60-10AF-4C49-AA09-29B77030DB25 =yyas> (yas-unknown) -;; -;; # as in Macros/map_with_index { e, i .. } (mapwi).yasnippet -;; BFB65D1C-62F1-485D-8A67-3E5A2E55107C =yyas> (yas-unknown) -;; -;; # as in Snippets/class .. TestUnitTestCase .. end (tc).yasnippet -;; (yas-multi-line-unknown 31D1F145-33AB-4441-BA11-4D1C46928C4C) =yyas> (yas-unknown) -;; -;; # as in Snippets/module .. end.yasnippet -;; `(yas-ruby-infer-class-name)` =yyas> (yas-unknown) -;; -;; # as in Macros/Benchmark_bmbm(__) do __ end.yasnippet -;; C649F945-DAB8-4DA2-B73C-2EFF9D7D34F3 =yyas> (yas-unknown) -;; -;; # as in Macros/Delete forwardbackward.yasnippet -;; A83F68A9-F751-4BB4-AE16-56812878C16A =yyas> (yas-unknown) -;; -;; # as in Macros/PStore_new( __ ).yasnippet -;; 5AE7CFB4-418E-4E00-AD76-06DB755EE876 =yyas> (yas-unknown) -;; -;; # as in Macros/xmlread(__).yasnippet -;; F6BF907E-FDF7-4D9B-9E57-BE159561349D =yyas> (yas-unknown) -;; -;; - -;; Substitutions for: condition -;; -;; # as in Macros/xmlread(__).yasnippet -;; =yyas> (yas-unknown) -;; -;; # as in Snippets/Insert ERb's __ or = __.yasnippet -;; text.html, source.yaml =yyas> (yas-unknown) -;; -;; - -;; Substitutions for: binding -;; -;; # as in Commands/Completion Ruby (rcodetools).yasnippet -;; ~ =yyas> (yas-unknown) -;; -;; # as in Commands/Enclose in + (RDoc comments).yasnippet -;; @k =yyas> (yas-unknown) -;; -;; # as in Commands/Omit from RDoc.yasnippet -;; ^@O =yyas> (yas-unknown) -;; -;; # as in Commands/Open Require.yasnippet -;; @D =yyas> (yas-unknown) -;; -;; # as in Commands/Validate and Save.yasnippet -;; @s =yyas> (yas-unknown) -;; -;; # as in Commands/Check Ruby Syntax.yasnippet -;; ^V =yyas> (yas-unknown) -;; -;; # as in Commands/Execute Line with Ruby.yasnippet -;; ^E =yyas> (yas-unknown) -;; -;; # as in Commands/Make Destructive Call.yasnippet -;; ^! =yyas> (yas-unknown) -;; -;; # as in Commands/Toggle Quote Style.yasnippet -;; ^" =yyas> (yas-unknown) -;; -;; # as in Macros/Overwrite } in #{ .. }.yasnippet -;; } =yyas> (yas-unknown) -;; -;; # as in Snippets/hash pointer.yasnippet -;; ^l =yyas> (yas-unknown) -;; -;; # as in Macros/Delete forwardbackward.yasnippet -;;  =yyas> (yas-unknown) -;; -;; - -;; .yas-setup.el for ruby-mode ends here diff --git a/extras/textmate_import.rb b/extras/textmate_import.rb deleted file mode 100755 index f1ef769..0000000 --- a/extras/textmate_import.rb +++ /dev/null @@ -1,468 +0,0 @@ -#!/usr/bin/env ruby -# -*- coding: utf-8 -*- -# textmate_import.rb --- import textmate snippets -# -# Copyright (C) 2009 Rob Christie, 2010 João Távora -# -# This is a quick script to generate YASnippets from TextMate Snippets. -# -# I based the script off of a python script of a similar nature by -# Jeff Wheeler: http://nokrev.com -# http://code.nokrev.com/?p=snippet-copier.git;a=blob_plain;f=snippet_copier.py -# -# Use textmate_import.rb --help to get usage information. - -require 'rubygems' -require 'plist' -require 'trollop' -require 'fileutils' -require 'shellwords' # String#shellescape -require 'ruby-debug' if $DEBUG - -Encoding.default_external = Encoding::UTF_8 if RUBY_VERSION > '1.8.7' - -opts = Trollop::options do - opt :bundle_dir, "TextMate bundle directory", :short => '-d', :type => :string - opt :output_dir, "Output directory", :short => '-o', :type => :string - opt :glob, "Specific snippet file (or glob) inside ", :short => '-g', :default => '*.{tmSnippet,tmCommand,plist,tmMacro}' - opt :pretty, 'Pretty prints multiple snippets when printing to standard out', :short => '-p' - opt :quiet, "Be quiet", :short => '-q' - opt :plist_file, "Use a specific plist file to derive menu information from", :type => :string -end -Trollop::die :bundle_dir, "must be provided" unless opts.bundle_dir -Trollop::die :bundle_dir, "must exist" unless File.directory? opts.bundle_dir - -Trollop::die :output_dir, "must be provided" unless opts.output_dir -Trollop::die :output_dir, "must exist" unless File.directory? opts.output_dir - -Trollop::die :plist_file, "must exist" if opts.plist_file && File.directory?(opts.plist_file) - - -# Represents and is capable of outputting the representation of a -# TextMate menu in terms of `yas-define-menu' -# -class TmSubmenu - - @@excluded_items = []; - def self.excluded_items; @@excluded_items; end - - attr_reader :items, :name - def initialize(name, hash) - @items = hash["items"] - @name = name - end - - def to_lisp(allsubmenus, - deleteditems, - indent = 0, - thingy = ["(", ")"]) - - first = true; - - string = "" - separator_useless = true; - items.each do |uuid| - if deleteditems && deleteditems.index(uuid) - $stderr.puts "#{uuid} has been deleted!" - next - end - string += "\n" - string += " " * indent - string += (first ? thingy[0] : (" " * thingy[0].length)) - - submenu = allsubmenus[uuid] - snippet = TmSnippet::snippets_by_uid[uuid] - unimplemented = TmSnippet::unknown_substitutions["content"][uuid] - if submenu - str = "(yas-submenu " - string += str + "\"" + submenu.name + "\"" - string += submenu.to_lisp(allsubmenus, deleteditems, - indent + str.length + thingy[0].length) - elsif snippet and not unimplemented - string += ";; " + snippet.name + "\n" - string += " " * (indent + thingy[0].length) - string += "(yas-item \"" + uuid + "\")" - separator_useless = false; - elsif snippet and unimplemented - string += ";; Ignoring " + snippet.name + "\n" - string += " " * (indent + thingy[0].length) - string += "(yas-ignore-item \"" + uuid + "\")" - separator_useless = true; - elsif (uuid =~ /---------------------/) - string += "(yas-separator)" unless separator_useless - end - first = false; - end - string += ")" - string += thingy[1] - - return string - end - - def self.main_menu_to_lisp (parsed_plist, modename) - mainmenu = parsed_plist["mainMenu"] - deleted = parsed_plist["deleted"] - - root = TmSubmenu.new("__main_menu__", mainmenu) - all = {} - - mainmenu["submenus"].each_pair do |k,v| - all[k] = TmSubmenu.new(v["name"], v) - end - - excluded = (mainmenu["excludedItems"] || []) + TmSubmenu::excluded_items - closing = "\n '(" - closing+= excluded.collect do |uuid| - "\"" + uuid + "\"" - end.join( "\n ") + "))" - - str = "(yas-define-menu " - return str + "'#{modename}" + root.to_lisp(all, - deleted, - str.length, - ["'(" , closing]) - end -end - - -# Represents a textmate snippet -# -# - @file is the .tmsnippet/.plist file path relative to cwd -# -# - optional @info is a Plist.parsed info.plist found in the bundle dir -# -# - @@snippets_by_uid is where one can find all the snippets parsed so -# far. -# -# -class SkipSnippet < RuntimeError; end -class TmSnippet - @@known_substitutions = { - "content" => { - "${TM_RAILS_TEMPLATE_START_RUBY_EXPR}" => "<%= ", - "${TM_RAILS_TEMPLATE_END_RUBY_EXPR}" => " %>", - "${TM_RAILS_TEMPLATE_START_RUBY_INLINE}" => "<% ", - "${TM_RAILS_TEMPLATE_END_RUBY_INLINE}" => " -%>", - "${TM_RAILS_TEMPLATE_END_RUBY_BLOCK}" => "end" , - "${0:$TM_SELECTED_TEXT}" => "${0:`yas-selected-text`}", - /\$\{(\d+)\}/ => "$\\1", - "${1:$TM_SELECTED_TEXT}" => "${1:`yas-selected-text`}", - "${2:$TM_SELECTED_TEXT}" => "${2:`yas-selected-text`}", - '$TM_SELECTED_TEXT' => "`yas-selected-text`", - %r'\$\{TM_SELECTED_TEXT:([^\}]*)\}' => "`(or (yas-selected-text) \"\\1\")`", - %r'`[^`]+\n[^`]`' => Proc.new {|uuid, match| "(yas-multi-line-unknown " + uuid + ")"}}, - "condition" => { - /^source\..*$/ => "" }, - "binding" => {}, - "type" => {} - } - - def self.extra_substitutions; @@extra_substitutions; end - @@extra_substitutions = { - "content" => {}, - "condition" => {}, - "binding" => {}, - "type" => {} - } - - def self.unknown_substitutions; @@unknown_substitutions; end - @@unknown_substitutions = { - "content" => {}, - "condition" => {}, - "binding" => {}, - "type" => {} - } - - @@snippets_by_uid={} - def self.snippets_by_uid; @@snippets_by_uid; end - - def initialize(file,info=nil) - @file = file - @info = info - @snippet = TmSnippet::read_plist(file) - @@snippets_by_uid[self.uuid] = self; - raise SkipSnippet.new "not a snippet/command/macro." unless (@snippet["scope"] || @snippet["command"]) - raise SkipSnippet.new "looks like preferences."if @file =~ /Preferences\// - raise RuntimeError.new("Cannot convert this snippet #{file}!") unless @snippet; - end - - def name - @snippet["name"] - end - - def uuid - @snippet["uuid"] - end - - def key - @snippet["tabTrigger"] - end - - def condition - yas_directive "condition" - end - - def type - override = yas_directive "type" - if override - return override - else - return "# type: command\n" if @file =~ /(Commands\/|Macros\/)/ - end - end - - def binding - yas_directive "binding" - end - - def content - known = @@known_substitutions["content"] - extra = @@extra_substitutions["content"] - if direct = extra[uuid] - return direct - else - ct = @snippet["content"] - if ct - known.each_pair do |k,v| - if v.respond_to? :call - ct.gsub!(k) {|match| v.call(uuid, match)} - else - ct.gsub!(k,v) - end - end - extra.each_pair do |k,v| - ct.gsub!(k,v) - end - # the remaining stuff is an unknown substitution - # - [ %r'\$\{ [^/\}\{:]* / [^/]* / [^/]* / [^\}]*\}'x , - %r'\$\{[^\d][^}]+\}', - %r'`[^`]+`', - %r'\$TM_[\w_]+', - %r'\(yas-multi-line-unknown [^\)]*\)' - ].each do |reg| - ct.scan(reg) do |match| - @@unknown_substitutions["content"][match] = self - end - end - return ct - else - @@unknown_substitutions["content"][uuid] = self - TmSubmenu::excluded_items.push(uuid) - return "(yas-unimplemented)" - end - end - end - - def to_yas - doc = "# -*- mode: snippet -*-\n" - doc << (self.type || "") - doc << "# uuid: #{self.uuid}\n" - doc << "# key: #{self.key}\n" if self.key - doc << "# contributor: Translated from textmate snippet by PROGRAM_NAME\n" - doc << "# name: #{self.name}\n" - doc << (self.binding || "") - doc << (self.condition || "") - doc << "# --\n" - doc << (self.content || "(yas-unimplemented)") - doc - end - - def self.canonicalize(filename) - invalid_char = /[^ a-z_0-9.+=~(){}\/'`&#,-]/i - - filename. - gsub(invalid_char, ''). # remove invalid characters - gsub(/ {2,}/,' '). # squeeze repeated spaces into a single one - rstrip # remove trailing whitespaces - end - - def yas_file() - File.join(TmSnippet::canonicalize(@file[0, @file.length-File.extname(@file).length]) + ".yasnippet") - end - - def self.read_plist(xml_or_binary) - begin - parsed = Plist::parse_xml(xml_or_binary) - return parsed if parsed - raise ArgumentError.new "Probably in binary format and parse_xml is very quiet..." - rescue StandardError => e - if (system "plutil -convert xml1 #{xml_or_binary.shellescape} -o /tmp/textmate_import.tmpxml") - return Plist::parse_xml("/tmp/textmate_import.tmpxml") - else - raise RuntimeError.new "plutil failed miserably, check if you have it..." - end - end - end - - private - - @@yas_to_tm_directives = {"condition" => "scope", "binding" => "keyEquivalent", "key" => "tabTrigger"} - def yas_directive(yas_directive) - # - # Merge "known" hardcoded substitution with "extra" substitutions - # provided in the .yas-setup.el file. - # - merged = @@known_substitutions[yas_directive]. - merge(@@extra_substitutions[yas_directive]) - # - # First look for an uuid-based direct substitution for this - # directive. - # - if direct = merged[uuid] - return "# #{yas_directive}: "+ direct + "\n" unless direct.empty? - else - tm_directive = @@yas_to_tm_directives[yas_directive] - val = tm_directive && @snippet[tm_directive] - if val and !val.delete(" ").empty? then - # - # Sort merged substitutions by length (bigger ones first, - # regexps last), and apply them to the value gotten for plist. - # - allsubs = merged.sort_by do |what, with| - if what.respond_to? :length then -what.length else 0 end - end - allsubs.each do |sub| - if val.gsub!(sub[0],sub[1]) - # puts "SUBBED #{sub[0]} for #{sub[1]}" - return "# #{yas_directive}: "+ val + "\n" unless val.empty? - end - end - # - # If we get here, no substitution matched, so mark this an - # unknown substitution. - # - @@unknown_substitutions[yas_directive][val] = self - return "## #{yas_directive}: \""+ val + "\n" - end - end - end - -end - - -if __FILE__ == $PROGRAM_NAME - # Read the the bundle's info.plist if can find it/guess it - # - info_plist_file = opts.plist_file || File.join(opts.bundle_dir,"info.plist") - info_plist = TmSnippet::read_plist(info_plist_file) if info_plist_file and File.readable? info_plist_file; - - # Calculate the mode name - # - modename = File.basename opts.output_dir || "major-mode-name" - - # Read in .yas-setup.el looking for the separator between auto-generated - # - original_dir = Dir.pwd - yas_setup_el_file = File.join(original_dir, opts.output_dir, ".yas-setup.el") - separator = ";; --**--" - whole, head , tail = "", "", "" - if File::exists? yas_setup_el_file - File.open yas_setup_el_file, 'r' do |file| - whole = file.read - head , tail = whole.split(separator) - end - else - head = ";; .yas-setup.el for #{modename}\n" + ";; \n" - end - - # Now iterate the tail part to find extra substitutions - # - tail ||= "" - head ||= "" - directive = nil - # puts "get this head #{head}" - head.each_line do |line| - case line - when /^;; Substitutions for:(.*)$/ - directive = $~[1].strip - # puts "found the directove #{directive}" - when /^;;(.*)[ ]+=yyas>(.*)$/ - replacewith = $~[2].strip - lookfor = $~[1] - lookfor.gsub!(/^[ ]*/, "") - lookfor.gsub!(/[ ]*$/, "") - # puts "found this wonderful substitution for #{directive} which is #{lookfor} => #{replacewith}" - unless !directive or replacewith =~ /yas-unknown/ then - TmSnippet.extra_substitutions[directive][lookfor] = replacewith - end - end - end - - # Glob snippets into snippet_files, going into subdirs - # - Dir.chdir opts.bundle_dir - snippet_files_glob = File.join("**", opts.glob) - snippet_files = Dir.glob(snippet_files_glob) - - # Attempt to convert each snippet files in snippet_files - # - puts "Will try to convert #{snippet_files.length} snippets...\n" unless opts.quiet - - - # Iterate the globbed files - # - snippet_files.each do |file| - begin - $stdout.print "Processing \"#{File.join(opts.bundle_dir,file)}\"..." unless opts.quiet - snippet = TmSnippet.new(file,info_plist) - - file_to_create = File.join(original_dir, opts.output_dir, snippet.yas_file) - FileUtils.mkdir_p(File.dirname(file_to_create)) - File.open(file_to_create, 'w') do |f| - f.write(snippet.to_yas) - end - $stdout.print "done\n" unless opts.quiet - rescue SkipSnippet => e - $stdout.print "skipped! #{e.message}\n" unless opts.quiet - rescue RuntimeError => e - $stderr.print "failed! #{e.message}\n" - $strerr.print "#{e.backtrace.join("\n")}" unless opts.quiet - end - end - - # Attempt to decypher the menu - # - menustr = TmSubmenu::main_menu_to_lisp(info_plist, modename) if info_plist - puts menustr if $DEBUG - - # Write some basic .yas-* files - # - if opts.output_dir - FileUtils.mkdir_p opts.output_dir - FileUtils.touch File.join(original_dir, opts.output_dir, ".yas-make-groups") unless menustr - - # Now, output head + a new tail in (possibly new) .yas-setup.el - # file - # - File.open yas_setup_el_file, 'w' do |file| - file.puts head - file.puts separator - file.puts ";; Automatically generated code, do not edit this part" - file.puts ";; " - file.puts ";; Translated menu" - file.puts ";; " - file.puts menustr - file.puts - file.puts ";; Unknown substitutions" - file.puts ";; " - ["content", "condition", "binding"].each do |type| - file.puts ";; Substitutions for: #{type}" - file.puts ";; " - # TmSnippet::extra_substitutions[type]. - # each_pair do |k,v| - # file.puts ";; " + k + "" + (" " * [1, 90-k.length].max) + " =yyas> " + v - # end - unknown = TmSnippet::unknown_substitutions[type]; - unknown.keys.uniq.each do |k| - file.puts ";; # as in " + unknown[k].yas_file - file.puts ";; " + k + "" + (" " * [1, 90-k.length].max) + " =yyas> (yas-unknown)" - file.puts ";; " - end - file.puts ";; " - file.puts - end - file.puts ";; .yas-setup.el for #{modename} ends here" - end - end -end diff --git a/snippets b/snippets new file mode 160000 index 0000000..7638321 --- /dev/null +++ b/snippets @@ -0,0 +1 @@ +Subproject commit 7638321285cf78a9d075fa63d5ada105aa44752e diff --git a/snippets/c++-mode/.yas-parents b/snippets/c++-mode/.yas-parents deleted file mode 100644 index ce9828b..0000000 --- a/snippets/c++-mode/.yas-parents +++ /dev/null @@ -1 +0,0 @@ -cc-mode diff --git a/snippets/c++-mode/beginend b/snippets/c++-mode/beginend deleted file mode 100644 index 4af416f..0000000 --- a/snippets/c++-mode/beginend +++ /dev/null @@ -1,4 +0,0 @@ -# name: v.begin(), v.end() -# key: beginend -# -- -${1:v}.begin(), $1.end \ No newline at end of file diff --git a/snippets/c++-mode/class b/snippets/c++-mode/class deleted file mode 100644 index 4f78ede..0000000 --- a/snippets/c++-mode/class +++ /dev/null @@ -1,9 +0,0 @@ -# name: class ... { ... } -# key: class -# -- -class ${1:Name} -{ -public: - ${1:$(yas-substr yas-text "[^: ]*")}($2); - virtual ~${1:$(yas-substr yas-text "[^: ]*")}(); -}; \ No newline at end of file diff --git a/snippets/c++-mode/ns b/snippets/c++-mode/ns deleted file mode 100644 index bff9ed7..0000000 --- a/snippets/c++-mode/ns +++ /dev/null @@ -1,4 +0,0 @@ -# name: namespace ... -# key: ns -# -- -namespace \ No newline at end of file diff --git a/snippets/c++-mode/template b/snippets/c++-mode/template deleted file mode 100644 index ed36b08..0000000 --- a/snippets/c++-mode/template +++ /dev/null @@ -1,4 +0,0 @@ -# name: template -# key: template -# -- -template \ No newline at end of file diff --git a/snippets/c++-mode/using b/snippets/c++-mode/using deleted file mode 100644 index 8da5348..0000000 --- a/snippets/c++-mode/using +++ /dev/null @@ -1,5 +0,0 @@ -# name: using namespace ... -# key: using -# -- -using namespace ${std}; -$0 \ No newline at end of file diff --git a/snippets/c-mode/.yas-parents b/snippets/c-mode/.yas-parents deleted file mode 100644 index ce9828b..0000000 --- a/snippets/c-mode/.yas-parents +++ /dev/null @@ -1 +0,0 @@ -cc-mode diff --git a/snippets/c-mode/fopen b/snippets/c-mode/fopen deleted file mode 100644 index b3339e4..0000000 --- a/snippets/c-mode/fopen +++ /dev/null @@ -1,4 +0,0 @@ -# name: FILE *fp = fopen(..., ...); -# key: fopen -# -- -FILE *${fp} = fopen(${"file"}, "${r}"); \ No newline at end of file diff --git a/snippets/c-mode/printf b/snippets/c-mode/printf deleted file mode 100644 index 9167555..0000000 --- a/snippets/c-mode/printf +++ /dev/null @@ -1,7 +0,0 @@ -# -*- mode: snippet -*- -# name: printf -# contributor: joaotavora -# key: printf -# -- -printf ("${1:%s}\\n"${1:$(if (string-match "%" yas-text) "," "\);") -}$2${1:$(if (string-match "%" yas-text) "\);" "")} \ No newline at end of file diff --git a/snippets/cc-mode/.yas-parents b/snippets/cc-mode/.yas-parents deleted file mode 100644 index eed5b44..0000000 --- a/snippets/cc-mode/.yas-parents +++ /dev/null @@ -1 +0,0 @@ -text-mode diff --git a/snippets/cc-mode/do b/snippets/cc-mode/do deleted file mode 100644 index a42d27f..0000000 --- a/snippets/cc-mode/do +++ /dev/null @@ -1,7 +0,0 @@ -# name: do { ... } while (...) -# key: do -# -- -do -{ - $0 -} while (${1:condition}); \ No newline at end of file diff --git a/snippets/cc-mode/for b/snippets/cc-mode/for deleted file mode 100644 index 1e1d4bf..0000000 --- a/snippets/cc-mode/for +++ /dev/null @@ -1,7 +0,0 @@ -# name: for (...; ...; ...) { ... } -# key: for -# -- -for (${1:int i = 0}; ${2:i < N}; ${3:++i}) -{ - $0 -} \ No newline at end of file diff --git a/snippets/cc-mode/if b/snippets/cc-mode/if deleted file mode 100644 index 5c6a121..0000000 --- a/snippets/cc-mode/if +++ /dev/null @@ -1,7 +0,0 @@ -# name: if (...) { ... } -# key: if -# -- -if (${1:condition}) -{ - $0 -} \ No newline at end of file diff --git a/snippets/cc-mode/inc b/snippets/cc-mode/inc deleted file mode 100644 index 9c9ed76..0000000 --- a/snippets/cc-mode/inc +++ /dev/null @@ -1,4 +0,0 @@ -# name: #include "..." -# key: inc -# -- -#include "$1" \ No newline at end of file diff --git a/snippets/cc-mode/inc.1 b/snippets/cc-mode/inc.1 deleted file mode 100644 index 649cbd9..0000000 --- a/snippets/cc-mode/inc.1 +++ /dev/null @@ -1,4 +0,0 @@ -# name: #include <...> -# key: inc -# -- -#include <$1> \ No newline at end of file diff --git a/snippets/cc-mode/main b/snippets/cc-mode/main deleted file mode 100644 index dab1cad..0000000 --- a/snippets/cc-mode/main +++ /dev/null @@ -1,8 +0,0 @@ -# name: int main(argc, argv) { ... } -# key: main -# -- -int main(int argc, char *argv[]) -{ - $0 - return 0; -} \ No newline at end of file diff --git a/snippets/cc-mode/once b/snippets/cc-mode/once deleted file mode 100644 index ea14f9a..0000000 --- a/snippets/cc-mode/once +++ /dev/null @@ -1,9 +0,0 @@ -# name: #ifndef XXX; #define XXX; #endif -# key: once -# -- -#ifndef ${1:_`(upcase (file-name-nondirectory (file-name-sans-extension (buffer-file-name))))`_H_} -#define $1 - -$0 - -#endif /* $1 */ \ No newline at end of file diff --git a/snippets/cc-mode/struct b/snippets/cc-mode/struct deleted file mode 100644 index 39ddfa8..0000000 --- a/snippets/cc-mode/struct +++ /dev/null @@ -1,7 +0,0 @@ -# name: struct ... { ... } -# key: struct -# -- -struct ${1:name} -{ - $0 -}; \ No newline at end of file diff --git a/snippets/cperl-mode/.yas-parents b/snippets/cperl-mode/.yas-parents deleted file mode 100644 index bfa2993..0000000 --- a/snippets/cperl-mode/.yas-parents +++ /dev/null @@ -1 +0,0 @@ -perl-mode diff --git a/snippets/csharp-mode/.yas-parents b/snippets/csharp-mode/.yas-parents deleted file mode 100644 index ce9828b..0000000 --- a/snippets/csharp-mode/.yas-parents +++ /dev/null @@ -1 +0,0 @@ -cc-mode diff --git a/snippets/csharp-mode/attrib b/snippets/csharp-mode/attrib deleted file mode 100644 index f617cee..0000000 --- a/snippets/csharp-mode/attrib +++ /dev/null @@ -1,8 +0,0 @@ -# contributor: Alejandro Espinoza Esparza -# name: private attribute ....; -# key: attrib -# -- -/// -/// $3 -/// -private $1 $2; \ No newline at end of file diff --git a/snippets/csharp-mode/attrib.1 b/snippets/csharp-mode/attrib.1 deleted file mode 100644 index ac967ad..0000000 --- a/snippets/csharp-mode/attrib.1 +++ /dev/null @@ -1,22 +0,0 @@ -# contributor: Alejandro Espinoza Esparza -# name: private attribute ....; public property ... ... { ... } -# key: attrib -# -- -/// -/// $3 -/// -private $1 $2; - -/// -/// $4 -/// -/// $5 -public $1 $2 -{ - get { - return this.$2; - } - set { - this.$2 = value; - } -} \ No newline at end of file diff --git a/snippets/csharp-mode/attrib.2 b/snippets/csharp-mode/attrib.2 deleted file mode 100644 index e4059b5..0000000 --- a/snippets/csharp-mode/attrib.2 +++ /dev/null @@ -1,22 +0,0 @@ -# contributor: Alejandro Espinoza Esparza -# name: private _attribute ....; public Property ... ... { ... } -# key: attrib -# -- -/// -/// $3 -/// -private $1 ${2:$(if (> (length yas-text) 0) (format "_%s%s" (downcase (substring yas-text 0 1)) (substring yas-text 1 (length yas-text))) "")}; - -/// -/// ${3:Description} -/// -/// $1 -public ${1:Type} ${2:Name} -{ - get { - return this.${2:$(if (> (length yas-text) 0) (format "_%s%s" (downcase (substring yas-text 0 1)) (substring yas-text 1 (length yas-text))) "")}; - } - set { - this.${2:$(if (> (length yas-text) 0) (format "_%s%s" (downcase (substring yas-text 0 1)) (substring yas-text 1 (length yas-text))) "")} = value; - } -} \ No newline at end of file diff --git a/snippets/csharp-mode/class b/snippets/csharp-mode/class deleted file mode 100644 index 9cb096e..0000000 --- a/snippets/csharp-mode/class +++ /dev/null @@ -1,22 +0,0 @@ -# contributor: Alejandro Espinoza Esparza -# name: class ... { ... } -# key: class -# -- -${5:public} class ${1:Name} -{ - #region Ctor & Destructor - /// - /// ${3:Standard Constructor} - /// - public $1($2) - { - } - - /// - /// ${4:Default Destructor} - /// - public ~$1() - { - } - #endregion -} \ No newline at end of file diff --git a/snippets/csharp-mode/comment b/snippets/csharp-mode/comment deleted file mode 100644 index 562689b..0000000 --- a/snippets/csharp-mode/comment +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Alejandro Espinoza Esparza -# name: /// ... -# key: comment -# -- -/// -/// $1 -/// \ No newline at end of file diff --git a/snippets/csharp-mode/comment.1 b/snippets/csharp-mode/comment.1 deleted file mode 100644 index 856189d..0000000 --- a/snippets/csharp-mode/comment.1 +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Alejandro Espinoza Esparza -# name: /// ... -# key: comment -# -- -/// $2 \ No newline at end of file diff --git a/snippets/csharp-mode/comment.2 b/snippets/csharp-mode/comment.2 deleted file mode 100644 index e890f1c..0000000 --- a/snippets/csharp-mode/comment.2 +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Alejandro Espinoza Esparza -# name: /// ... -# key: comment -# -- -/// $1 \ No newline at end of file diff --git a/snippets/csharp-mode/comment.3 b/snippets/csharp-mode/comment.3 deleted file mode 100644 index 13e6057..0000000 --- a/snippets/csharp-mode/comment.3 +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Alejandro Espinoza Esparza -# name: /// ... -# key: comment -# -- -/// $2 \ No newline at end of file diff --git a/snippets/csharp-mode/method b/snippets/csharp-mode/method deleted file mode 100644 index c070d48..0000000 --- a/snippets/csharp-mode/method +++ /dev/null @@ -1,11 +0,0 @@ -# contributor: Alejandro Espinoza Esparza -# name: public void Method { ... } -# key: method -# -- -/// -/// ${5:Description} -/// ${2:$(if (string= (upcase yas-text) "VOID") "" (format "%s%s%s" "\n/// " yas-text ""))} -${1:public} ${2:void} ${3:MethodName}($4) -{ -$0 -} \ No newline at end of file diff --git a/snippets/csharp-mode/namespace b/snippets/csharp-mode/namespace deleted file mode 100644 index 56c5d99..0000000 --- a/snippets/csharp-mode/namespace +++ /dev/null @@ -1,8 +0,0 @@ -# contributor: Alejandro Espinoza Esparza -# name: namespace .. { ... } -# key: namespace -# -- -namespace $1 -{ -$0 -} \ No newline at end of file diff --git a/snippets/csharp-mode/prop b/snippets/csharp-mode/prop deleted file mode 100644 index c711d23..0000000 --- a/snippets/csharp-mode/prop +++ /dev/null @@ -1,17 +0,0 @@ -# contributor: Alejandro Espinoza Esparza -# name: property ... ... { ... } -# key: prop -# -- -/// -/// $5 -/// -/// $6 -$1 $2 $3 -{ - get { - return this.$4; - } - set { - this.$4 = value; - } -} \ No newline at end of file diff --git a/snippets/csharp-mode/region b/snippets/csharp-mode/region deleted file mode 100644 index a155730..0000000 --- a/snippets/csharp-mode/region +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Alejandro Espinoza Esparza -# name: #region ... #endregion -# key: region -# -- -#region $1 -$0 -#endregion \ No newline at end of file diff --git a/snippets/csharp-mode/using b/snippets/csharp-mode/using deleted file mode 100644 index 4103995..0000000 --- a/snippets/csharp-mode/using +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Alejandro Espinoza Esparza -# name: using ...; -# key: using -# -- -using $1; \ No newline at end of file diff --git a/snippets/csharp-mode/using.1 b/snippets/csharp-mode/using.1 deleted file mode 100644 index 452b07b..0000000 --- a/snippets/csharp-mode/using.1 +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Alejandro Espinoza Esparza -# name: using System; -# key: using -# -- -using System; \ No newline at end of file diff --git a/snippets/csharp-mode/using.2 b/snippets/csharp-mode/using.2 deleted file mode 100644 index d3a8980..0000000 --- a/snippets/csharp-mode/using.2 +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Alejandro Espinoza Esparza -# name: using System....; -# key: using -# -- -using System.$1; \ No newline at end of file diff --git a/snippets/css-mode/.yas-parents b/snippets/css-mode/.yas-parents deleted file mode 100644 index eed5b44..0000000 --- a/snippets/css-mode/.yas-parents +++ /dev/null @@ -1 +0,0 @@ -text-mode diff --git a/snippets/css-mode/bg b/snippets/css-mode/bg deleted file mode 100644 index 89597cb..0000000 --- a/snippets/css-mode/bg +++ /dev/null @@ -1,4 +0,0 @@ -# name: background-color: ... -# key: bg -# -- -background-color: #${1:DDD}; \ No newline at end of file diff --git a/snippets/css-mode/bg.1 b/snippets/css-mode/bg.1 deleted file mode 100644 index f74f6e4..0000000 --- a/snippets/css-mode/bg.1 +++ /dev/null @@ -1,4 +0,0 @@ -# name: background-image: ... -# key: bg -# -- -background-image: url($1); \ No newline at end of file diff --git a/snippets/css-mode/bor b/snippets/css-mode/bor deleted file mode 100644 index b2a1bf2..0000000 --- a/snippets/css-mode/bor +++ /dev/null @@ -1,4 +0,0 @@ -# name: border size style color -# key: bor -# -- -border: ${1:1px} ${2:solid} #${3:999}; \ No newline at end of file diff --git a/snippets/css-mode/cl b/snippets/css-mode/cl deleted file mode 100644 index fcfd345..0000000 --- a/snippets/css-mode/cl +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: rejeep -# name: clear: ... -# key: cl -# -- -clear: $1; \ No newline at end of file diff --git a/snippets/css-mode/disp.block b/snippets/css-mode/disp.block deleted file mode 100644 index 2571ba4..0000000 --- a/snippets/css-mode/disp.block +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: rejeep -# name: display: block -# key: disp -# -- -display: block; \ No newline at end of file diff --git a/snippets/css-mode/disp.inline b/snippets/css-mode/disp.inline deleted file mode 100644 index 0be30e3..0000000 --- a/snippets/css-mode/disp.inline +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: rejeep -# name: display: inline -# key: disp -# -- -display: inline; \ No newline at end of file diff --git a/snippets/css-mode/disp.none b/snippets/css-mode/disp.none deleted file mode 100644 index 58c40d0..0000000 --- a/snippets/css-mode/disp.none +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: rejeep -# name: display: none -# key: disp -# -- -display: none; \ No newline at end of file diff --git a/snippets/css-mode/ff b/snippets/css-mode/ff deleted file mode 100644 index 4218908..0000000 --- a/snippets/css-mode/ff +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: rejeep -# name: font-family: ... -# key: ff -# -- -font-family: $1; \ No newline at end of file diff --git a/snippets/css-mode/fs b/snippets/css-mode/fs deleted file mode 100644 index 98a050a..0000000 --- a/snippets/css-mode/fs +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: rejeep -# name: font-size: ... -# key: fs -# -- -font-size: ${12px}; \ No newline at end of file diff --git a/snippets/css-mode/mar.bottom b/snippets/css-mode/mar.bottom deleted file mode 100644 index 6dbe9f8..0000000 --- a/snippets/css-mode/mar.bottom +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: rejeep -# name: margin-bottom: ... -# key: mar -# -- -margin-bottom: $1; \ No newline at end of file diff --git a/snippets/css-mode/mar.left b/snippets/css-mode/mar.left deleted file mode 100644 index 0ba7b3b..0000000 --- a/snippets/css-mode/mar.left +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: rejeep -# name: margin-left: ... -# key: mar -# -- -margin-left: $1; \ No newline at end of file diff --git a/snippets/css-mode/mar.mar b/snippets/css-mode/mar.mar deleted file mode 100644 index e45a33c..0000000 --- a/snippets/css-mode/mar.mar +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: rejeep -# name: margin: ... -# key: mar -# -- -margin: $1; \ No newline at end of file diff --git a/snippets/css-mode/mar.margin b/snippets/css-mode/mar.margin deleted file mode 100644 index 0716fc8..0000000 --- a/snippets/css-mode/mar.margin +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: rejeep -# name: margin top right bottom left -# key: mar -# -- -margin: ${top} ${right} ${bottom} ${left}; \ No newline at end of file diff --git a/snippets/css-mode/mar.right b/snippets/css-mode/mar.right deleted file mode 100644 index 49f05d7..0000000 --- a/snippets/css-mode/mar.right +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: rejeep -# name: margin-right: ... -# key: mar -# -- -margin-right: $1; \ No newline at end of file diff --git a/snippets/css-mode/mar.top b/snippets/css-mode/mar.top deleted file mode 100644 index 168f458..0000000 --- a/snippets/css-mode/mar.top +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: rejeep -# name: margin-top: ... -# key: mar -# -- -margin-top: $1; \ No newline at end of file diff --git a/snippets/css-mode/pad.bottom b/snippets/css-mode/pad.bottom deleted file mode 100644 index 3e4c665..0000000 --- a/snippets/css-mode/pad.bottom +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: rejeep -# name: padding-bottom: ... -# key: pad -# -- -padding-bottom: $1; \ No newline at end of file diff --git a/snippets/css-mode/pad.left b/snippets/css-mode/pad.left deleted file mode 100644 index 5e49b28..0000000 --- a/snippets/css-mode/pad.left +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: rejeep -# name: padding-left: ... -# key: pad -# -- -padding-left: $1; \ No newline at end of file diff --git a/snippets/css-mode/pad.pad b/snippets/css-mode/pad.pad deleted file mode 100644 index ce81c36..0000000 --- a/snippets/css-mode/pad.pad +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: rejeep -# name: padding: ... -# key: pad -# -- -padding: $1; \ No newline at end of file diff --git a/snippets/css-mode/pad.padding b/snippets/css-mode/pad.padding deleted file mode 100644 index 0be7890..0000000 --- a/snippets/css-mode/pad.padding +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: rejeep -# name: padding: top right bottom left -# key: pad -# -- -padding: ${top} ${right} ${bottom} ${left}; \ No newline at end of file diff --git a/snippets/css-mode/pad.right b/snippets/css-mode/pad.right deleted file mode 100644 index a244b94..0000000 --- a/snippets/css-mode/pad.right +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: rejeep -# name: padding-right: ... -# key: pad -# -- -padding-right: $1; \ No newline at end of file diff --git a/snippets/css-mode/pad.top b/snippets/css-mode/pad.top deleted file mode 100644 index d315e46..0000000 --- a/snippets/css-mode/pad.top +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: rejeep -# name: padding-top: ... -# key: pad -# -- -padding-top: $1; \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/.read_me b/snippets/emacs-lisp-mode/.read_me deleted file mode 100644 index 49c8e00..0000000 --- a/snippets/emacs-lisp-mode/.read_me +++ /dev/null @@ -1,7 +0,0 @@ --*- coding: utf-8 -*- -Originally started by Xah Lee (xahlee.org) on 2009-02-22 -Released under GPL 3. - -Feel free to add missing ones or modify existing ones to improve. - -Those starting with “x-” are supposed to be idiom templates. Not sure it's very useful. They might start with “i-” or "id-" in the future. \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/.yas-parents b/snippets/emacs-lisp-mode/.yas-parents deleted file mode 100644 index eed5b44..0000000 --- a/snippets/emacs-lisp-mode/.yas-parents +++ /dev/null @@ -1 +0,0 @@ -text-mode diff --git a/snippets/emacs-lisp-mode/add-hook.yasnippet b/snippets/emacs-lisp-mode/add-hook.yasnippet deleted file mode 100755 index 04f1f01..0000000 --- a/snippets/emacs-lisp-mode/add-hook.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: add-hook -# key: add-hook -# key: ah -# -- -(add-hook HOOK$0 FUNCTION) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/and.yasnippet b/snippets/emacs-lisp-mode/and.yasnippet deleted file mode 100755 index cfc7dfc..0000000 --- a/snippets/emacs-lisp-mode/and.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: and -# key: and -# key: a -# -- -(and $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/append.yasnippet b/snippets/emacs-lisp-mode/append.yasnippet deleted file mode 100755 index 585dfdc..0000000 --- a/snippets/emacs-lisp-mode/append.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: append -# key: append -# -- -(append $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/apply.yasnippet b/snippets/emacs-lisp-mode/apply.yasnippet deleted file mode 100755 index 2cfe695..0000000 --- a/snippets/emacs-lisp-mode/apply.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: apply -# key: apply -# -- -(apply $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/aref.yasnippet b/snippets/emacs-lisp-mode/aref.yasnippet deleted file mode 100755 index 0df3b8e..0000000 --- a/snippets/emacs-lisp-mode/aref.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: aref -# key: aref -# -- -(aref ARRAY$0 INDEX) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/aset.yasnippet b/snippets/emacs-lisp-mode/aset.yasnippet deleted file mode 100755 index 0813e7e..0000000 --- a/snippets/emacs-lisp-mode/aset.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: aset -# key: aset -# -- -(aset ARRAY$0 IDX NEWELT) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/assq.yasnippet b/snippets/emacs-lisp-mode/assq.yasnippet deleted file mode 100755 index 61609c8..0000000 --- a/snippets/emacs-lisp-mode/assq.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: assq -# key: assq -# -- -(assq KEY$0 LIST) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/autoload.yasnippet b/snippets/emacs-lisp-mode/autoload.yasnippet deleted file mode 100755 index 20052f5..0000000 --- a/snippets/emacs-lisp-mode/autoload.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: autoload -# key: autoload -# -- -(autoload 'FUNCNAME$0 "FILENAME" &optional "DOCSTRING" INTERACTIVE TYPE) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/backward-char.yasnippet b/snippets/emacs-lisp-mode/backward-char.yasnippet deleted file mode 100755 index 782b35c..0000000 --- a/snippets/emacs-lisp-mode/backward-char.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: backward-char -# key: backward-char -# key: bc -# -- -(backward-char $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/beginning-of-line.yasnippet b/snippets/emacs-lisp-mode/beginning-of-line.yasnippet deleted file mode 100755 index cd75859..0000000 --- a/snippets/emacs-lisp-mode/beginning-of-line.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: beginning-of-line -# key: beginning-of-line -# key: bol -# -- -(beginning-of-line) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/bounds-of-thing-at-point.yasnippet b/snippets/emacs-lisp-mode/bounds-of-thing-at-point.yasnippet deleted file mode 100755 index 507457c..0000000 --- a/snippets/emacs-lisp-mode/bounds-of-thing-at-point.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: bounds-of-thing-at-point -# key: bounds-of-thing-at-point -# key: botap -# -- -(bounds-of-thing-at-point '$0) ; symbol, list, sexp, defun, filename, url, email, word, sentence, whitespace, line, page ... \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/buffer-file-name.yasnippet b/snippets/emacs-lisp-mode/buffer-file-name.yasnippet deleted file mode 100755 index 726c508..0000000 --- a/snippets/emacs-lisp-mode/buffer-file-name.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: buffer-file-name -# key: buffer-file-name -# key: bfn -# -- -(buffer-file-name) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/buffer-modified-p.yasnippet b/snippets/emacs-lisp-mode/buffer-modified-p.yasnippet deleted file mode 100755 index 87ff31e..0000000 --- a/snippets/emacs-lisp-mode/buffer-modified-p.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: buffer-modified-p -# key: buffer-modified-p -# key: bmp -# -- -(buffer-modified-p $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/buffer-substring-no-properties.yasnippet b/snippets/emacs-lisp-mode/buffer-substring-no-properties.yasnippet deleted file mode 100755 index 1b04019..0000000 --- a/snippets/emacs-lisp-mode/buffer-substring-no-properties.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: buffer-substring-no-properties -# key: buffer-substring-no-properties -# key: bsnp -# -- -(buffer-substring-no-properties START$0 END) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/buffer-substring.yasnippet b/snippets/emacs-lisp-mode/buffer-substring.yasnippet deleted file mode 100755 index 002a4f0..0000000 --- a/snippets/emacs-lisp-mode/buffer-substring.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: buffer-substring -# key: buffer-substring -# key: bs -# -- -(buffer-substring START$0 END) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/car.yasnippet b/snippets/emacs-lisp-mode/car.yasnippet deleted file mode 100755 index 5406d94..0000000 --- a/snippets/emacs-lisp-mode/car.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: car -# key: car -# -- -(car $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/cdr.yasnippet b/snippets/emacs-lisp-mode/cdr.yasnippet deleted file mode 100755 index 0afd31f..0000000 --- a/snippets/emacs-lisp-mode/cdr.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: cdr -# key: cdr -# -- -(cdr $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/concat.yasnippet b/snippets/emacs-lisp-mode/concat.yasnippet deleted file mode 100755 index 42436b4..0000000 --- a/snippets/emacs-lisp-mode/concat.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: concat -# key: concat -# -- -(concat $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/cond.yasnippet b/snippets/emacs-lisp-mode/cond.yasnippet deleted file mode 100755 index 4c40194..0000000 --- a/snippets/emacs-lisp-mode/cond.yasnippet +++ /dev/null @@ -1,8 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: cond -# key: cond -# -- -(cond -(CONDITION$0 BODY) -(CONDITION BODY) -) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/condition-case.yasnippet b/snippets/emacs-lisp-mode/condition-case.yasnippet deleted file mode 100755 index 80d09ad..0000000 --- a/snippets/emacs-lisp-mode/condition-case.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: condition-case -# key: condition-case -# key: cc -# -- -(condition-case $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/cons.yasnippet b/snippets/emacs-lisp-mode/cons.yasnippet deleted file mode 100755 index a0f90ce..0000000 --- a/snippets/emacs-lisp-mode/cons.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: cons -# key: cons -# -- -(cons $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/consp.yasnippet b/snippets/emacs-lisp-mode/consp.yasnippet deleted file mode 100755 index f4b3f99..0000000 --- a/snippets/emacs-lisp-mode/consp.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: consp -# key: consp -# -- -(consp $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/copy-directory.yasnippet b/snippets/emacs-lisp-mode/copy-directory.yasnippet deleted file mode 100755 index 4c47d2f..0000000 --- a/snippets/emacs-lisp-mode/copy-directory.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: copy-directory -# key: copy-directory -# key: cd -# -- -(copy-directory $0 NEWNAME &optional KEEP-TIME PARENTS) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/copy-file.yasnippet b/snippets/emacs-lisp-mode/copy-file.yasnippet deleted file mode 100755 index 021c60e..0000000 --- a/snippets/emacs-lisp-mode/copy-file.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: copy-file -# key: copy-file -# key: cf -# -- -(copy-file FILE$0 NEWNAME &optional OK-IF-ALREADY-EXISTS KEEP-TIME PRESERVE-UID-GID) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/current-buffer.yasnippet b/snippets/emacs-lisp-mode/current-buffer.yasnippet deleted file mode 100755 index 59859be..0000000 --- a/snippets/emacs-lisp-mode/current-buffer.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: current-buffer -# key: current-buffer -# key: cb -# -- -(current-buffer) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/custom-autoload.yasnippet b/snippets/emacs-lisp-mode/custom-autoload.yasnippet deleted file mode 100755 index 7961f9e..0000000 --- a/snippets/emacs-lisp-mode/custom-autoload.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: custom-autoload -# key: custom-autoload -# key: ca -# -- -(custom-autoload$0 SYMBOL LOAD &optional NOSET) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/defalias.yasnippet b/snippets/emacs-lisp-mode/defalias.yasnippet deleted file mode 100755 index 56d5855..0000000 --- a/snippets/emacs-lisp-mode/defalias.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: defalias -# key: defalias -# -- -(defalias 'SYMBOL$0 'DEFINITION &optional DOCSTRING) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/defcustom.yasnippet b/snippets/emacs-lisp-mode/defcustom.yasnippet deleted file mode 100755 index db709be..0000000 --- a/snippets/emacs-lisp-mode/defcustom.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: defcustom -# key: defcustom -# -- -(defcustom $0 VALUE "DOC" &optional ARGS) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/define-key.yasnippet b/snippets/emacs-lisp-mode/define-key.yasnippet deleted file mode 100755 index a04e5d7..0000000 --- a/snippets/emacs-lisp-mode/define-key.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: define-key -# key: define-key -# key: dk -# -- -(define-key KEYMAPNAME$0 (kbd "M-b") 'FUNCNAME) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/defsubst.yasnippet b/snippets/emacs-lisp-mode/defsubst.yasnippet deleted file mode 100755 index 5535af1..0000000 --- a/snippets/emacs-lisp-mode/defsubst.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: defsubst -# key: defsubst -# -- -(defsubst $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/defun.yasnippet b/snippets/emacs-lisp-mode/defun.yasnippet deleted file mode 100755 index 0f3644b..0000000 --- a/snippets/emacs-lisp-mode/defun.yasnippet +++ /dev/null @@ -1,12 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: defun -# key: defun -# key: d -# -- -(defun $1 () - "DOCSTRING" - (interactive) - (let (var1) - (setq var1 some) - $0 - )) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/defvar.yasnippet b/snippets/emacs-lisp-mode/defvar.yasnippet deleted file mode 100755 index 1148472..0000000 --- a/snippets/emacs-lisp-mode/defvar.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: defvar -# key: defvar -# -- -(defvar $0 &optional INITVALUE "DOCSTRING") \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/delete-char.yasnippet b/snippets/emacs-lisp-mode/delete-char.yasnippet deleted file mode 100755 index 02585fa..0000000 --- a/snippets/emacs-lisp-mode/delete-char.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: delete-char -# key: delete-char -# key: dc -# -- -(delete-char $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/delete-directory.yasnippet b/snippets/emacs-lisp-mode/delete-directory.yasnippet deleted file mode 100755 index 5033240..0000000 --- a/snippets/emacs-lisp-mode/delete-directory.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: delete-directory -# key: delete-directory -# key: dd -# -- -(delete-directory $0 &optional RECURSIVE) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/delete-file.yasnippet b/snippets/emacs-lisp-mode/delete-file.yasnippet deleted file mode 100755 index 6b47f0d..0000000 --- a/snippets/emacs-lisp-mode/delete-file.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: delete-file -# key: delete-file -# key: df -# -- -(delete-file $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/delete-region.yasnippet b/snippets/emacs-lisp-mode/delete-region.yasnippet deleted file mode 100755 index 054b40d..0000000 --- a/snippets/emacs-lisp-mode/delete-region.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: delete-region -# key: delete-region -# key: dr -# -- -(delete-region $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/directory-files.yasnippet b/snippets/emacs-lisp-mode/directory-files.yasnippet deleted file mode 100755 index 449e016..0000000 --- a/snippets/emacs-lisp-mode/directory-files.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: directory-files -# key: directory-files -# key: df -# -- -(directory-files $0 &optional FULL MATCH NOSORT) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/dolist.yasnippet b/snippets/emacs-lisp-mode/dolist.yasnippet deleted file mode 100755 index 13be2fb..0000000 --- a/snippets/emacs-lisp-mode/dolist.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: dolist -# key: dolist -# -- -(dolist $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/end-of-line.yasnippet b/snippets/emacs-lisp-mode/end-of-line.yasnippet deleted file mode 100755 index dcefc48..0000000 --- a/snippets/emacs-lisp-mode/end-of-line.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: end-of-line -# key: end-of-line -# key: eol -# -- -(end-of-line) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/eq.yasnippet b/snippets/emacs-lisp-mode/eq.yasnippet deleted file mode 100755 index b05f968..0000000 --- a/snippets/emacs-lisp-mode/eq.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: eq -# key: eq -# -- -(eq $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/equal.yasnippet b/snippets/emacs-lisp-mode/equal.yasnippet deleted file mode 100755 index f2dec47..0000000 --- a/snippets/emacs-lisp-mode/equal.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: equal -# key: equal -# -- -(equal $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/error.yasnippet b/snippets/emacs-lisp-mode/error.yasnippet deleted file mode 100755 index 93314dd..0000000 --- a/snippets/emacs-lisp-mode/error.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: error -# key: error -# -- -(error "$0" &optional ARGS) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/expand-file-name.yasnippet b/snippets/emacs-lisp-mode/expand-file-name.yasnippet deleted file mode 100755 index c8b5253..0000000 --- a/snippets/emacs-lisp-mode/expand-file-name.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: expand-file-name -# key: expand-file-name -# key: efn -# -- -(expand-file-name $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/f.yasnippet b/snippets/emacs-lisp-mode/f.yasnippet deleted file mode 100755 index 220a1af..0000000 --- a/snippets/emacs-lisp-mode/f.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: format -# key: format -# -- -(format "$0" &optional OBJECTS) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/fboundp.yasnippet b/snippets/emacs-lisp-mode/fboundp.yasnippet deleted file mode 100755 index f6e8907..0000000 --- a/snippets/emacs-lisp-mode/fboundp.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: fboundp -# key: fboundp -# -- -(fboundp '$0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/file-name-directory.yasnippet b/snippets/emacs-lisp-mode/file-name-directory.yasnippet deleted file mode 100755 index 1264a25..0000000 --- a/snippets/emacs-lisp-mode/file-name-directory.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: file-name-directory -# key: file-name-directory -# key: fnd -# -- -(file-name-directory $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/file-name-extension.yasnippet b/snippets/emacs-lisp-mode/file-name-extension.yasnippet deleted file mode 100755 index 87886d4..0000000 --- a/snippets/emacs-lisp-mode/file-name-extension.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: file-name-extension -# key: file-name-extension -# key: fne -# -- -(file-name-extension $0 &optional PERIOD) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/file-name-nondirectory.yasnippet b/snippets/emacs-lisp-mode/file-name-nondirectory.yasnippet deleted file mode 100755 index 0a824a5..0000000 --- a/snippets/emacs-lisp-mode/file-name-nondirectory.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: file-name-nondirectory -# key: file-name-nondirectory -# key: fnn -# -- -(file-name-nondirectory $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/file-name-sans-extension.yasnippet b/snippets/emacs-lisp-mode/file-name-sans-extension.yasnippet deleted file mode 100755 index 491c7e4..0000000 --- a/snippets/emacs-lisp-mode/file-name-sans-extension.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: file-name-sans-extension -# key: file-name-sans-extension -# key: fnse -# -- -(file-name-sans-extension $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/file-relative-name.yasnippet b/snippets/emacs-lisp-mode/file-relative-name.yasnippet deleted file mode 100755 index 8f773aa..0000000 --- a/snippets/emacs-lisp-mode/file-relative-name.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: file-relative-name -# key: file-relative-name -# key: frn -# -- -(file-relative-name $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/find-file.yasnippet b/snippets/emacs-lisp-mode/find-file.yasnippet deleted file mode 100755 index 7a64537..0000000 --- a/snippets/emacs-lisp-mode/find-file.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: find-file -# key: find-file -# key: ff -# -- -(find-file $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/format.yasnippet b/snippets/emacs-lisp-mode/format.yasnippet deleted file mode 100755 index 220a1af..0000000 --- a/snippets/emacs-lisp-mode/format.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: format -# key: format -# -- -(format "$0" &optional OBJECTS) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/forward-char.yasnippet b/snippets/emacs-lisp-mode/forward-char.yasnippet deleted file mode 100755 index 198cca2..0000000 --- a/snippets/emacs-lisp-mode/forward-char.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: forward-char -# key: forward-char -# key: fc -# -- -(forward-char $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/forward-line.yasnippet b/snippets/emacs-lisp-mode/forward-line.yasnippet deleted file mode 100755 index 10456d3..0000000 --- a/snippets/emacs-lisp-mode/forward-line.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: forward-line -# key: forward-line -# key: fl -# -- -(forward-line $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/funcall.yasnippet b/snippets/emacs-lisp-mode/funcall.yasnippet deleted file mode 100755 index 4f67029..0000000 --- a/snippets/emacs-lisp-mode/funcall.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: funcall -# key: funcall -# -- -(funcall $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/function.yasnippet b/snippets/emacs-lisp-mode/function.yasnippet deleted file mode 100755 index 3ff84fc..0000000 --- a/snippets/emacs-lisp-mode/function.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: function -# key: function -# -- -(function $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/get.yasnippet b/snippets/emacs-lisp-mode/get.yasnippet deleted file mode 100755 index df20cce..0000000 --- a/snippets/emacs-lisp-mode/get.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: get -# key: get -# -- -(get SYMBOL$0 PROPNAME) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/global-set-key.yasnippet b/snippets/emacs-lisp-mode/global-set-key.yasnippet deleted file mode 100755 index 8895053..0000000 --- a/snippets/emacs-lisp-mode/global-set-key.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: global-set-key -# key: global-set-key -# key: gsk -# -- -(global-set-key (kbd "C-$0") 'COMMAND) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/goto-char.yasnippet b/snippets/emacs-lisp-mode/goto-char.yasnippet deleted file mode 100755 index 1caa88e..0000000 --- a/snippets/emacs-lisp-mode/goto-char.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: goto-char -# key: goto-char -# key: gc -# -- -(goto-char $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/if.yasnippet b/snippets/emacs-lisp-mode/if.yasnippet deleted file mode 100755 index db90fe3..0000000 --- a/snippets/emacs-lisp-mode/if.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: if -# key: if -# -- -(if $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/insert-file-contents.yasnippet b/snippets/emacs-lisp-mode/insert-file-contents.yasnippet deleted file mode 100755 index 6189cfa..0000000 --- a/snippets/emacs-lisp-mode/insert-file-contents.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: insert-file-contents -# key: insert-file-contents -# key: ifc -# -- -(insert-file-contents $0 &optional VISIT BEG END REPLACE) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/insert.yasnippet b/snippets/emacs-lisp-mode/insert.yasnippet deleted file mode 100755 index b3de98c..0000000 --- a/snippets/emacs-lisp-mode/insert.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: insert -# key: insert -# key: i -# -- -(insert $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/interactive.yasnippet b/snippets/emacs-lisp-mode/interactive.yasnippet deleted file mode 100755 index f63e489..0000000 --- a/snippets/emacs-lisp-mode/interactive.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: interactive -# key: interactive -# -- -(interactive) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/kbd.yasnippet b/snippets/emacs-lisp-mode/kbd.yasnippet deleted file mode 100755 index 811ef6b..0000000 --- a/snippets/emacs-lisp-mode/kbd.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: kbd -# key: kbd -# -- -(kbd "$0") \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/kill-buffer.yasnippet b/snippets/emacs-lisp-mode/kill-buffer.yasnippet deleted file mode 100755 index 615f74d..0000000 --- a/snippets/emacs-lisp-mode/kill-buffer.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: kill-buffer -# key: kill-buffer -# key: kb -# -- -(kill-buffer $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/lambda.yasnippet b/snippets/emacs-lisp-mode/lambda.yasnippet deleted file mode 100755 index 63ac70a..0000000 --- a/snippets/emacs-lisp-mode/lambda.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: lambda -# key: lambda -# -- -(lambda ($0) "DOCSTRING" (interactive) BODY) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/length.yasnippet b/snippets/emacs-lisp-mode/length.yasnippet deleted file mode 100755 index ecd1b6d..0000000 --- a/snippets/emacs-lisp-mode/length.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: length -# key: length -# -- -(length $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/let.yasnippet b/snippets/emacs-lisp-mode/let.yasnippet deleted file mode 100755 index e198254..0000000 --- a/snippets/emacs-lisp-mode/let.yasnippet +++ /dev/null @@ -1,8 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: let -# key: let -# key: l -# -- -(let ($1 ) - $0 -) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/line-beginning-position.yasnippet b/snippets/emacs-lisp-mode/line-beginning-position.yasnippet deleted file mode 100755 index 5edd9e3..0000000 --- a/snippets/emacs-lisp-mode/line-beginning-position.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: line-beginning-position -# key: line-beginning-position -# key: lbp -# -- -(line-beginning-position) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/line-end-position.yasnippet b/snippets/emacs-lisp-mode/line-end-position.yasnippet deleted file mode 100755 index a8fa3d0..0000000 --- a/snippets/emacs-lisp-mode/line-end-position.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: line-end-position -# key: line-end-position -# key: lep -# -- -(line-end-position) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/list.yasnippet b/snippets/emacs-lisp-mode/list.yasnippet deleted file mode 100755 index b8532a9..0000000 --- a/snippets/emacs-lisp-mode/list.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: list -# key: list -# -- -(list $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/looking-at.yasnippet b/snippets/emacs-lisp-mode/looking-at.yasnippet deleted file mode 100755 index da85f01..0000000 --- a/snippets/emacs-lisp-mode/looking-at.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: looking-at -# key: looking-at -# key: la -# -- -(looking-at $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/make-directory.yasnippet b/snippets/emacs-lisp-mode/make-directory.yasnippet deleted file mode 100755 index 4f83d94..0000000 --- a/snippets/emacs-lisp-mode/make-directory.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: make-directory -# key: make-directory -# key: md -# -- -(make-directory $0 &optional PARENTS) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/make-local-variable.yasnippet b/snippets/emacs-lisp-mode/make-local-variable.yasnippet deleted file mode 100755 index 223fa55..0000000 --- a/snippets/emacs-lisp-mode/make-local-variable.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: make-local-variable -# key: make-local-variable -# key: mlv -# -- -(make-local-variable $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/mapc.yasnippet b/snippets/emacs-lisp-mode/mapc.yasnippet deleted file mode 100755 index e8b0c52..0000000 --- a/snippets/emacs-lisp-mode/mapc.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: mapc -# key: mapc -# -- -(mapc '$0 SEQUENCE) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/mapcar.yasnippet b/snippets/emacs-lisp-mode/mapcar.yasnippet deleted file mode 100755 index 1f398ec..0000000 --- a/snippets/emacs-lisp-mode/mapcar.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: mapcar -# key: mapcar -# -- -(mapcar $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/match-beginning.yasnippet b/snippets/emacs-lisp-mode/match-beginning.yasnippet deleted file mode 100755 index 8407602..0000000 --- a/snippets/emacs-lisp-mode/match-beginning.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: match-beginning -# key: match-beginning -# key: mb -# -- -(match-beginning N$0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/match-end.yasnippet b/snippets/emacs-lisp-mode/match-end.yasnippet deleted file mode 100755 index 60923a4..0000000 --- a/snippets/emacs-lisp-mode/match-end.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: match-end -# key: match-end -# key: me -# -- -(match-end N$0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/match-string.yasnippet b/snippets/emacs-lisp-mode/match-string.yasnippet deleted file mode 100755 index 83eb5fe..0000000 --- a/snippets/emacs-lisp-mode/match-string.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: match-string -# key: match-string -# key: ms -# -- -(match-string $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/memq.yasnippet b/snippets/emacs-lisp-mode/memq.yasnippet deleted file mode 100755 index 513fd25..0000000 --- a/snippets/emacs-lisp-mode/memq.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: memq -# key: memq -# -- -(memq ELT$0 LIST) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/message.yasnippet b/snippets/emacs-lisp-mode/message.yasnippet deleted file mode 100755 index 38bbab6..0000000 --- a/snippets/emacs-lisp-mode/message.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: message -# key: message -# key: m -# -- -(message "FORMATSTRING$0" &optional ARGS) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/not.yasnippet b/snippets/emacs-lisp-mode/not.yasnippet deleted file mode 100755 index 80d3694..0000000 --- a/snippets/emacs-lisp-mode/not.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: not -# key: not -# key: n -# -- -(not $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/nth.yasnippet b/snippets/emacs-lisp-mode/nth.yasnippet deleted file mode 100755 index de81812..0000000 --- a/snippets/emacs-lisp-mode/nth.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: nth -# key: nth -# -- -(nth N$0 LIST) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/null.yasnippet b/snippets/emacs-lisp-mode/null.yasnippet deleted file mode 100755 index 6b4010b..0000000 --- a/snippets/emacs-lisp-mode/null.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: null -# key: null -# -- -(null $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/number-to-string.yasnippet b/snippets/emacs-lisp-mode/number-to-string.yasnippet deleted file mode 100755 index c57a930..0000000 --- a/snippets/emacs-lisp-mode/number-to-string.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: number-to-string -# key: number-to-string -# key: nts -# -- -(number-to-string $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/or.yasnippet b/snippets/emacs-lisp-mode/or.yasnippet deleted file mode 100755 index 86eea32..0000000 --- a/snippets/emacs-lisp-mode/or.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: or -# key: or -# key: o -# -- -(or $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/point-max.yasnippet b/snippets/emacs-lisp-mode/point-max.yasnippet deleted file mode 100755 index 5df439d..0000000 --- a/snippets/emacs-lisp-mode/point-max.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: point-max -# key: point-max -# -- -(point-max) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/point-min.yasnippet b/snippets/emacs-lisp-mode/point-min.yasnippet deleted file mode 100755 index b5e58f7..0000000 --- a/snippets/emacs-lisp-mode/point-min.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: point-min -# key: point-min -# key: pm -# -- -(point-min) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/point.yasnippet b/snippets/emacs-lisp-mode/point.yasnippet deleted file mode 100755 index 95b3dab..0000000 --- a/snippets/emacs-lisp-mode/point.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: point -# key: point -# key: p -# -- -(point) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/princ.yasnippet b/snippets/emacs-lisp-mode/princ.yasnippet deleted file mode 100755 index 5c5f7db..0000000 --- a/snippets/emacs-lisp-mode/princ.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: princ -# key: princ -# -- -(princ $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/print.yasnippet b/snippets/emacs-lisp-mode/print.yasnippet deleted file mode 100755 index dc156e8..0000000 --- a/snippets/emacs-lisp-mode/print.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: print -# key: print -# -- -(print $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/progn.yasnippet b/snippets/emacs-lisp-mode/progn.yasnippet deleted file mode 100755 index 4ae43ed..0000000 --- a/snippets/emacs-lisp-mode/progn.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: progn -# key: progn -# -- -(progn $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/push.yasnippet b/snippets/emacs-lisp-mode/push.yasnippet deleted file mode 100755 index 080e615..0000000 --- a/snippets/emacs-lisp-mode/push.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: push -# key: push -# -- -(push $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/put.yasnippet b/snippets/emacs-lisp-mode/put.yasnippet deleted file mode 100755 index 85f8869..0000000 --- a/snippets/emacs-lisp-mode/put.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: put -# key: put -# -- -(put $0 PROPNAME VALUE) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/re-search-backward.yasnippet b/snippets/emacs-lisp-mode/re-search-backward.yasnippet deleted file mode 100755 index c4e82cc..0000000 --- a/snippets/emacs-lisp-mode/re-search-backward.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: re-search-backward -# key: re-search-backward -# key: rsb -# -- -(re-search-backward REGEXP$0 &optional BOUND NOERROR COUNT) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/re-search-forward.yasnippet b/snippets/emacs-lisp-mode/re-search-forward.yasnippet deleted file mode 100755 index 6e86e33..0000000 --- a/snippets/emacs-lisp-mode/re-search-forward.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: re-search-forward -# key: re-search-forward -# key: rsf -# -- -(re-search-forward REGEXP$0 &optional BOUND NOERROR COUNT) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/region-active-p.yasnippet b/snippets/emacs-lisp-mode/region-active-p.yasnippet deleted file mode 100755 index c689118..0000000 --- a/snippets/emacs-lisp-mode/region-active-p.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: region-active-p -# key: region-active-p -# key: rap -# -- -(region-active-p) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/region-beginning.yasnippet b/snippets/emacs-lisp-mode/region-beginning.yasnippet deleted file mode 100755 index b696fdc..0000000 --- a/snippets/emacs-lisp-mode/region-beginning.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: region-beginning -# key: region-beginning -# key: rb -# -- -(region-beginning) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/region-end.yasnippet b/snippets/emacs-lisp-mode/region-end.yasnippet deleted file mode 100755 index 9fe0ea8..0000000 --- a/snippets/emacs-lisp-mode/region-end.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: region-end -# key: region-end -# key: re -# -- -(region-end) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/rename-file.yasnippet b/snippets/emacs-lisp-mode/rename-file.yasnippet deleted file mode 100755 index 6c47c7e..0000000 --- a/snippets/emacs-lisp-mode/rename-file.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: rename-file -# key: rename-file -# key: rf -# -- -(rename-file FILE$0 NEWNAME &optional OK-IF-ALREADY-EXISTS) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/repeat.yasnippet b/snippets/emacs-lisp-mode/repeat.yasnippet deleted file mode 100755 index a46e63b..0000000 --- a/snippets/emacs-lisp-mode/repeat.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: repeat -# key: repeat -# -- -(repeat $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/replace-regexp-in-string.yasnippet b/snippets/emacs-lisp-mode/replace-regexp-in-string.yasnippet deleted file mode 100755 index 694717b..0000000 --- a/snippets/emacs-lisp-mode/replace-regexp-in-string.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: replace-regexp-in-string -# key: replace-regexp-in-string -# key: rris -# -- -(replace-regexp-in-string REGEXP$0 REP STRING &optional FIXEDCASE LITERAL SUBEXP START) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/replace-regexp.yasnippet b/snippets/emacs-lisp-mode/replace-regexp.yasnippet deleted file mode 100755 index 96823d6..0000000 --- a/snippets/emacs-lisp-mode/replace-regexp.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: replace-regexp -# key: replace-regexp -# key: rr -# -- -(replace-regexp REGEXP$0 TO-STRING &optional DELIMITED START END) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/require.yasnippet b/snippets/emacs-lisp-mode/require.yasnippet deleted file mode 100755 index d26ffd6..0000000 --- a/snippets/emacs-lisp-mode/require.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: require -# key: require -# -- -(require $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/save-buffer.yasnippet b/snippets/emacs-lisp-mode/save-buffer.yasnippet deleted file mode 100755 index 009e4af..0000000 --- a/snippets/emacs-lisp-mode/save-buffer.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: save-buffer -# key: save-buffer -# key: sb -# -- -(save-buffer $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/save-excursion.yasnippet b/snippets/emacs-lisp-mode/save-excursion.yasnippet deleted file mode 100755 index 799d2f0..0000000 --- a/snippets/emacs-lisp-mode/save-excursion.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: save-excursion -# key: save-excursion -# key: se -# -- -(save-excursion $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/search-backward-regexp.yasnippet b/snippets/emacs-lisp-mode/search-backward-regexp.yasnippet deleted file mode 100755 index 299f2df..0000000 --- a/snippets/emacs-lisp-mode/search-backward-regexp.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: search-backward-regexp -# key: search-backward-regexp -# key: sbr -# -- -(search-backward-regexp "$0" &optional BOUND NOERROR COUNT) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/search-backward.yasnippet b/snippets/emacs-lisp-mode/search-backward.yasnippet deleted file mode 100755 index 27ab571..0000000 --- a/snippets/emacs-lisp-mode/search-backward.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: search-backward -# key: search-backward -# key: sb -# -- -(search-backward "$0" &optional BOUND NOERROR COUNT) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/search-forward-regexp.yasnippet b/snippets/emacs-lisp-mode/search-forward-regexp.yasnippet deleted file mode 100755 index d7860d6..0000000 --- a/snippets/emacs-lisp-mode/search-forward-regexp.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: search-forward-regexp -# key: search-forward-regexp -# key: sfr -# -- -(search-forward-regexp "$0" &optional BOUND NOERROR COUNT) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/search-forward.yasnippet b/snippets/emacs-lisp-mode/search-forward.yasnippet deleted file mode 100755 index 09f1216..0000000 --- a/snippets/emacs-lisp-mode/search-forward.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: search-forward -# key: search-forward -# key: sf -# -- -(search-forward "$0" &optional BOUND NOERROR COUNT) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/set-buffer.yasnippet b/snippets/emacs-lisp-mode/set-buffer.yasnippet deleted file mode 100755 index 402ab84..0000000 --- a/snippets/emacs-lisp-mode/set-buffer.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: set-buffer -# key: set-buffer -# key: sb -# -- -(set-buffer $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/set-file-modes.yasnippet b/snippets/emacs-lisp-mode/set-file-modes.yasnippet deleted file mode 100755 index b64d593..0000000 --- a/snippets/emacs-lisp-mode/set-file-modes.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: set-file-modes -# key: set-file-modes -# key: sfm -# -- -(set-file-modes $0 MODE) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/set-mark.yasnippet b/snippets/emacs-lisp-mode/set-mark.yasnippet deleted file mode 100755 index fe7a206..0000000 --- a/snippets/emacs-lisp-mode/set-mark.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: set-mark -# key: set-mark -# key: sm -# -- -(set-mark $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/set.yasnippet b/snippets/emacs-lisp-mode/set.yasnippet deleted file mode 100755 index f7e83a4..0000000 --- a/snippets/emacs-lisp-mode/set.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: set -# key: set -# -- -(set $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/setq.yasnippet b/snippets/emacs-lisp-mode/setq.yasnippet deleted file mode 100755 index 3a263c6..0000000 --- a/snippets/emacs-lisp-mode/setq.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: setq -# key: setq -# key: s -# -- -(setq $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/skip-chars-backward.yasnippet b/snippets/emacs-lisp-mode/skip-chars-backward.yasnippet deleted file mode 100755 index 17c33d4..0000000 --- a/snippets/emacs-lisp-mode/skip-chars-backward.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: skip-chars-backward -# key: skip-chars-backward -# key: scb -# -- -(skip-chars-backward "$0" &optional LIM) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/skip-chars-forward.yasnippet b/snippets/emacs-lisp-mode/skip-chars-forward.yasnippet deleted file mode 100755 index 7b93987..0000000 --- a/snippets/emacs-lisp-mode/skip-chars-forward.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: skip-chars-forward -# key: skip-chars-forward -# key: scf -# -- -(skip-chars-forward "$0" &optional LIM) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/split-string.yasnippet b/snippets/emacs-lisp-mode/split-string.yasnippet deleted file mode 100755 index 9e03740..0000000 --- a/snippets/emacs-lisp-mode/split-string.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: split-string -# key: split-string -# key: ss -# -- -(split-string $0 &optional SEPARATORS OMIT-NULLS) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/string-match.yasnippet b/snippets/emacs-lisp-mode/string-match.yasnippet deleted file mode 100755 index f39c69e..0000000 --- a/snippets/emacs-lisp-mode/string-match.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: string-match -# key: string-match -# key: sm -# -- -(string-match "REGEXP$0" "STRING" &optional START) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/string-to-number.yasnippet b/snippets/emacs-lisp-mode/string-to-number.yasnippet deleted file mode 100755 index f47c9d4..0000000 --- a/snippets/emacs-lisp-mode/string-to-number.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: string-to-number -# key: string-to-number -# key: stn -# -- -(string-to-number "$0") \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/string.yasnippet b/snippets/emacs-lisp-mode/string.yasnippet deleted file mode 100755 index 07c17f1..0000000 --- a/snippets/emacs-lisp-mode/string.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: string -# key: string -# -- -(string $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/string=.yasnippet b/snippets/emacs-lisp-mode/string=.yasnippet deleted file mode 100755 index 3a458e8..0000000 --- a/snippets/emacs-lisp-mode/string=.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: string= -# key: string= -# -- -(string= $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/stringp.yasnippet b/snippets/emacs-lisp-mode/stringp.yasnippet deleted file mode 100755 index 432f6e0..0000000 --- a/snippets/emacs-lisp-mode/stringp.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: stringp -# key: stringp -# -- -(stringp $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/substring.yasnippet b/snippets/emacs-lisp-mode/substring.yasnippet deleted file mode 100755 index eeb0c02..0000000 --- a/snippets/emacs-lisp-mode/substring.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: substring -# key: substring -# -- -(substring STRING$0 FROM &optional TO) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/thing-at-point.yasnippet b/snippets/emacs-lisp-mode/thing-at-point.yasnippet deleted file mode 100755 index 6b78e03..0000000 --- a/snippets/emacs-lisp-mode/thing-at-point.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: thing-at-point -# key: thing-at-point -# key: tap -# -- -(thing-at-point '$0) ; symbol, list, sexp, defun, filename, url, email, word, sentence, whitespace, line, page ... \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/unless.yasnippet b/snippets/emacs-lisp-mode/unless.yasnippet deleted file mode 100755 index bdde0cf..0000000 --- a/snippets/emacs-lisp-mode/unless.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: unless -# key: unless -# -- -(unless $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/vector.yasnippet b/snippets/emacs-lisp-mode/vector.yasnippet deleted file mode 100755 index 5aea79a..0000000 --- a/snippets/emacs-lisp-mode/vector.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: vector -# key: vector -# key: v -# -- -(vector $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/when.yasnippet b/snippets/emacs-lisp-mode/when.yasnippet deleted file mode 100755 index 86d31d9..0000000 --- a/snippets/emacs-lisp-mode/when.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: when -# key: when -# -- -(when $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/while.yasnippet b/snippets/emacs-lisp-mode/while.yasnippet deleted file mode 100755 index 1802e1b..0000000 --- a/snippets/emacs-lisp-mode/while.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: while -# key: while -# -- -(while $0) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/widget-get.yasnippet b/snippets/emacs-lisp-mode/widget-get.yasnippet deleted file mode 100755 index f183569..0000000 --- a/snippets/emacs-lisp-mode/widget-get.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: widget-get -# key: widget-get -# key: wg -# -- -(widget-get $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/with-current-buffer.yasnippet b/snippets/emacs-lisp-mode/with-current-buffer.yasnippet deleted file mode 100755 index 1e6a94e..0000000 --- a/snippets/emacs-lisp-mode/with-current-buffer.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: with-current-buffer -# key: with-current-buffer -# key: wcb -# -- -(with-current-buffer $0 ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/x-dired.process_marked.yasnippet b/snippets/emacs-lisp-mode/x-dired.process_marked.yasnippet deleted file mode 100755 index 77ca69d..0000000 --- a/snippets/emacs-lisp-mode/x-dired.process_marked.yasnippet +++ /dev/null @@ -1,17 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: process marked files in dired -# key: x-dired -# -- -;; idiom for processing a list of files in dired's marked files - -;; suppose myProcessFile is your function that takes a file path -;; and do some processing on the file - -(defun dired-myProcessFile () - "apply myProcessFile function to marked files in dired." - (interactive) - (require 'dired) - (mapc 'myProcessFile (dired-get-marked-files)) -) - -;; to use it, type M-x dired-myProcessFile \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/x-file.process.yasnippet b/snippets/emacs-lisp-mode/x-file.process.yasnippet deleted file mode 100755 index dc60b17..0000000 --- a/snippets/emacs-lisp-mode/x-file.process.yasnippet +++ /dev/null @@ -1,18 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: a function that process a file -# key: x-file -# -- -(defun doThisFile (fpath) - "Process the file at path FPATH ..." - (let () - ;; create temp buffer without undo record or font lock. (more efficient) - ;; first space in temp buff name is necessary - (set-buffer (get-buffer-create " myTemp")) - (insert-file-contents fpath nil nil nil t) - - ;; process it ... - ;; (goto-char 0) ; move to begining of file's content (in case it was open) - ;; ... do something here - ;; (write-file fpath) ;; write back to the file - - (kill-buffer " myTemp"))) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/x-file.read-lines.yasnippet b/snippets/emacs-lisp-mode/x-file.read-lines.yasnippet deleted file mode 100755 index e4cb092..0000000 --- a/snippets/emacs-lisp-mode/x-file.read-lines.yasnippet +++ /dev/null @@ -1,18 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: read lines of a file -# key: x-file -# -- -(defun read-lines (filePath) - "Return a list of lines in FILEPATH." - (with-temp-buffer - (insert-file-contents filePath) - (split-string - (buffer-string) "\n" t)) ) - -;; process all lines -(mapc - (lambda (aLine) - (message aLine) ; do your stuff here - ) - (read-lines "inputFilePath") -) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/x-find-replace.yasnippet b/snippets/emacs-lisp-mode/x-find-replace.yasnippet deleted file mode 100755 index b0c58ec..0000000 --- a/snippets/emacs-lisp-mode/x-find-replace.yasnippet +++ /dev/null @@ -1,18 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: find and replace on region -# key: x-find-replace -# -- -(defun replace-html-chars-region (start end) - "Replace “<” to “<” and other chars in HTML. -This works on the current region." - (interactive "r") - (save-restriction - (narrow-to-region start end) - (goto-char (point-min)) - (while (search-forward "&" nil t) (replace-match "&" nil t)) - (goto-char (point-min)) - (while (search-forward "<" nil t) (replace-match "<" nil t)) - (goto-char (point-min)) - (while (search-forward ">" nil t) (replace-match ">" nil t)) - ) - ) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/x-grabstring.yasnippet b/snippets/emacs-lisp-mode/x-grabstring.yasnippet deleted file mode 100755 index d194f2a..0000000 --- a/snippets/emacs-lisp-mode/x-grabstring.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: grab buffer substring -# key: x-grabstring -# -- -(setq $0 (buffer-substring-no-properties myStartPos myEndPos)) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/x-grabthing.yasnippet b/snippets/emacs-lisp-mode/x-grabthing.yasnippet deleted file mode 100755 index d65c1fd..0000000 --- a/snippets/emacs-lisp-mode/x-grabthing.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: grab word under cursor -# key: x-grabthing -# -- -(setq $0 (thing-at-point 'symbol)) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/x-traverse_dir.yasnippet b/snippets/emacs-lisp-mode/x-traverse_dir.yasnippet deleted file mode 100755 index df0261d..0000000 --- a/snippets/emacs-lisp-mode/x-traverse_dir.yasnippet +++ /dev/null @@ -1,7 +0,0 @@ -# name: traversing a directory -# contributor: Xah Lee (XahLee.org) -# key: x-traverse_dir -# -- -;; apply a function to all files in a dir -(require 'find-lisp) -(mapc 'my-process-file (find-lisp-find-files "~/myweb/" "\\.html$")) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/x-word-or-region.yasnippet b/snippets/emacs-lisp-mode/x-word-or-region.yasnippet deleted file mode 100755 index b72f8b8..0000000 --- a/snippets/emacs-lisp-mode/x-word-or-region.yasnippet +++ /dev/null @@ -1,28 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: Command that works on region or word -# key: x-word-or-region -# -- -;; example of a command that works on current word or text selection -(defun down-case-word-or-region () - "Lower case the current word or text selection." -(interactive) -(let (pos1 pos2 meat) - (if (and transient-mark-mode mark-active) - (setq pos1 (region-beginning) - pos2 (region-end)) - (setq pos1 (car (bounds-of-thing-at-point 'symbol)) - pos2 (cdr (bounds-of-thing-at-point 'symbol)))) - - ; now, pos1 and pos2 are the starting and ending positions - ; of the current word, or current text selection if exists - - ;; put your code here. - $0 - ;; Some example of things you might want to do - (downcase-region pos1 pos2) ; example of a func that takes region as args - (setq meat (buffer-substring-no-properties pos1 pos2)) ; grab the text. - (delete-region pos1 pos2) ; get rid of it - (insert "newText") ; insert your new text - - ) -) \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/y-or-n-p.yasnippet b/snippets/emacs-lisp-mode/y-or-n-p.yasnippet deleted file mode 100755 index 7ebc503..0000000 --- a/snippets/emacs-lisp-mode/y-or-n-p.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: y-or-n-p -# key: y-or-n-p -# key: yonp -# -- -(yes-or-no-p "PROMPT$0 ") \ No newline at end of file diff --git a/snippets/emacs-lisp-mode/yes-or-no-p.yasnippet b/snippets/emacs-lisp-mode/yes-or-no-p.yasnippet deleted file mode 100755 index fe85e77..0000000 --- a/snippets/emacs-lisp-mode/yes-or-no-p.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee (XahLee.org) -# name: yes-or-no-p -# key: yes-or-no-p -# -- -(yes-or-no-p "PROMPT$0 ") \ No newline at end of file diff --git a/snippets/erlang-mode/.yas-parents b/snippets/erlang-mode/.yas-parents deleted file mode 100644 index eed5b44..0000000 --- a/snippets/erlang-mode/.yas-parents +++ /dev/null @@ -1 +0,0 @@ -text-mode diff --git a/snippets/erlang-mode/after b/snippets/erlang-mode/after deleted file mode 100644 index 4b2eab2..0000000 --- a/snippets/erlang-mode/after +++ /dev/null @@ -1,5 +0,0 @@ -# name: after ... -> -# key: after -# -- -after - $1 -> $0 \ No newline at end of file diff --git a/snippets/erlang-mode/begin b/snippets/erlang-mode/begin deleted file mode 100644 index ad9a68b..0000000 --- a/snippets/erlang-mode/begin +++ /dev/null @@ -1,6 +0,0 @@ -# name: begin ... end -# key: begin -# -- -begin - $0 -end \ No newline at end of file diff --git a/snippets/erlang-mode/beh b/snippets/erlang-mode/beh deleted file mode 100644 index b7696ff..0000000 --- a/snippets/erlang-mode/beh +++ /dev/null @@ -1,5 +0,0 @@ -# name: -behaviour(...). -# key: beh -# -- --behaviour(${1:gen_server}). -$0 \ No newline at end of file diff --git a/snippets/erlang-mode/case b/snippets/erlang-mode/case deleted file mode 100644 index f5326fa..0000000 --- a/snippets/erlang-mode/case +++ /dev/null @@ -1,6 +0,0 @@ -# name: case ... of ... end -# key: case -# -- -case $1 of - $0 -end \ No newline at end of file diff --git a/snippets/erlang-mode/compile b/snippets/erlang-mode/compile deleted file mode 100644 index 4622aa2..0000000 --- a/snippets/erlang-mode/compile +++ /dev/null @@ -1,5 +0,0 @@ -# name: -compile(...). -# key: compile -# -- --compile([${1:export_all}]). -$0 \ No newline at end of file diff --git a/snippets/erlang-mode/def b/snippets/erlang-mode/def deleted file mode 100644 index bea99c3..0000000 --- a/snippets/erlang-mode/def +++ /dev/null @@ -1,5 +0,0 @@ -# name: -define(...,...). -# key: def -# -- --define($1,$2). -$0 \ No newline at end of file diff --git a/snippets/erlang-mode/exp b/snippets/erlang-mode/exp deleted file mode 100644 index dcef789..0000000 --- a/snippets/erlang-mode/exp +++ /dev/null @@ -1,6 +0,0 @@ -# name: -export([]). -# contributor: hitesh -# key: exp -# -- --export([${1:start/0}]). -$0 \ No newline at end of file diff --git a/snippets/erlang-mode/fun b/snippets/erlang-mode/fun deleted file mode 100644 index 1665ef6..0000000 --- a/snippets/erlang-mode/fun +++ /dev/null @@ -1,4 +0,0 @@ -# name: fun (...) -> ... end -# key: fun -# -- -fun ($1) -> $0 end \ No newline at end of file diff --git a/snippets/erlang-mode/if b/snippets/erlang-mode/if deleted file mode 100644 index dae3cc7..0000000 --- a/snippets/erlang-mode/if +++ /dev/null @@ -1,7 +0,0 @@ -# name: if ... -> ... ; true -> ... end -# key: if -# -- -if - $1 -> $2; - true -> $0 -end \ No newline at end of file diff --git a/snippets/erlang-mode/ifdef b/snippets/erlang-mode/ifdef deleted file mode 100644 index feacf74..0000000 --- a/snippets/erlang-mode/ifdef +++ /dev/null @@ -1,6 +0,0 @@ -# name: -ifdef(...). ... -endif. -# key: ifdef -# -- --ifdef($1). -$0 --endif. \ No newline at end of file diff --git a/snippets/erlang-mode/ifndef b/snippets/erlang-mode/ifndef deleted file mode 100644 index 7c5d931..0000000 --- a/snippets/erlang-mode/ifndef +++ /dev/null @@ -1,6 +0,0 @@ -# name: -ifndef(...). ... -endif. -# key: ifndef -# -- --ifndef($1). -$0 --endif. \ No newline at end of file diff --git a/snippets/erlang-mode/imp b/snippets/erlang-mode/imp deleted file mode 100644 index 5db8aaf..0000000 --- a/snippets/erlang-mode/imp +++ /dev/null @@ -1,6 +0,0 @@ -# name: -import([]). -# contributor: hitesh -# key: imp -# -- --import(${1:lists}, [${2:map/2, sum/1}]). -$0 \ No newline at end of file diff --git a/snippets/erlang-mode/inc b/snippets/erlang-mode/inc deleted file mode 100644 index 47f4008..0000000 --- a/snippets/erlang-mode/inc +++ /dev/null @@ -1,5 +0,0 @@ -# name: -include("..."). -# key: inc -# -- --include("$1"). -$0 \ No newline at end of file diff --git a/snippets/erlang-mode/inc.lib b/snippets/erlang-mode/inc.lib deleted file mode 100644 index 5ca0631..0000000 --- a/snippets/erlang-mode/inc.lib +++ /dev/null @@ -1,5 +0,0 @@ -# name: -include_lib("..."). -# key: inc -# -- --include_lib("$1"). -$0 \ No newline at end of file diff --git a/snippets/erlang-mode/loop b/snippets/erlang-mode/loop deleted file mode 100644 index 86f92a4..0000000 --- a/snippets/erlang-mode/loop +++ /dev/null @@ -1,9 +0,0 @@ -# name: loop(...) -> receive _ -> loop(...) end. -# key: loop -# -- -${1:loop}($2) -> - receive - ${3:_} -> - $1($2) - end. -$0 \ No newline at end of file diff --git a/snippets/erlang-mode/mod b/snippets/erlang-mode/mod deleted file mode 100644 index 8cb747a..0000000 --- a/snippets/erlang-mode/mod +++ /dev/null @@ -1,7 +0,0 @@ -# name: -module(). -# contributor: hitesh -# key: mod -# -- --module(${1:`(file-name-nondirectory - (file-name-sans-extension (or (buffer-file-name) (buffer-name))))`}). -$0 \ No newline at end of file diff --git a/snippets/erlang-mode/rcv b/snippets/erlang-mode/rcv deleted file mode 100644 index f5bdaa2..0000000 --- a/snippets/erlang-mode/rcv +++ /dev/null @@ -1,6 +0,0 @@ -# name: receive ... -> ... end -# key: rcv -# -- -receive - $1 -> $0 -end \ No newline at end of file diff --git a/snippets/erlang-mode/rcv.after b/snippets/erlang-mode/rcv.after deleted file mode 100644 index 687b78d..0000000 --- a/snippets/erlang-mode/rcv.after +++ /dev/null @@ -1,7 +0,0 @@ -# name: receive after ... -> ... end -# key: rcv -# -- -receive -after - $1 -> $0 -end \ No newline at end of file diff --git a/snippets/erlang-mode/rec b/snippets/erlang-mode/rec deleted file mode 100644 index b3819a6..0000000 --- a/snippets/erlang-mode/rec +++ /dev/null @@ -1,5 +0,0 @@ -# name: -record(...,{...}). -# key: rec -# -- --record($1,{$2}). -$0 \ No newline at end of file diff --git a/snippets/erlang-mode/try b/snippets/erlang-mode/try deleted file mode 100644 index 0ff10a8..0000000 --- a/snippets/erlang-mode/try +++ /dev/null @@ -1,8 +0,0 @@ -# name: try ... of ... catch after end -# key: try -# -- -try $1 of - $0 -catch -after -end \ No newline at end of file diff --git a/snippets/erlang-mode/undef b/snippets/erlang-mode/undef deleted file mode 100644 index bd51fe6..0000000 --- a/snippets/erlang-mode/undef +++ /dev/null @@ -1,5 +0,0 @@ -# name: -undef(...). -# key: undef -# -- --undef($1). -$0 \ No newline at end of file diff --git a/snippets/f90-mode/.yas-parents b/snippets/f90-mode/.yas-parents deleted file mode 100644 index eed5b44..0000000 --- a/snippets/f90-mode/.yas-parents +++ /dev/null @@ -1 +0,0 @@ -text-mode diff --git a/snippets/f90-mode/au b/snippets/f90-mode/au deleted file mode 100644 index 1b638db..0000000 --- a/snippets/f90-mode/au +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Li Zhu -# name: automatic -# key: au -# -- -automatic $0 \ No newline at end of file diff --git a/snippets/f90-mode/bd b/snippets/f90-mode/bd deleted file mode 100644 index 081b039..0000000 --- a/snippets/f90-mode/bd +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Li Zhu -# name: block data -# key: bd -# -- -block data $0 \ No newline at end of file diff --git a/snippets/f90-mode/c b/snippets/f90-mode/c deleted file mode 100644 index cf28d36..0000000 --- a/snippets/f90-mode/c +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Li Zhu -# name: continue -# key: c -# -- -continue $0 \ No newline at end of file diff --git a/snippets/f90-mode/ch b/snippets/f90-mode/ch deleted file mode 100644 index db43003..0000000 --- a/snippets/f90-mode/ch +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Li Zhu -# name: character -# key: ch -# -- -character $0 \ No newline at end of file diff --git a/snippets/f90-mode/cx b/snippets/f90-mode/cx deleted file mode 100644 index 70e9163..0000000 --- a/snippets/f90-mode/cx +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Li Zhu -# name: complex -# key: cx -# -- -complex $0 \ No newline at end of file diff --git a/snippets/f90-mode/dc b/snippets/f90-mode/dc deleted file mode 100644 index df5f026..0000000 --- a/snippets/f90-mode/dc +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Li Zhu -# name: double complex -# key: dc -# -- -double complex $0 \ No newline at end of file diff --git a/snippets/f90-mode/do b/snippets/f90-mode/do deleted file mode 100644 index c3aa1f2..0000000 --- a/snippets/f90-mode/do +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Li Zhu -# name: do while (...) end do -# key: do -# -- -do while (${1:condition}) - $0 -end do \ No newline at end of file diff --git a/snippets/f90-mode/dp b/snippets/f90-mode/dp deleted file mode 100644 index e705b7c..0000000 --- a/snippets/f90-mode/dp +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Li Zhu -# name: double precision -# key: dp -# -- -double precision $0 \ No newline at end of file diff --git a/snippets/f90-mode/eq b/snippets/f90-mode/eq deleted file mode 100644 index 1ace4ce..0000000 --- a/snippets/f90-mode/eq +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Li Zhu -# name: equivalence -# key: eq -# -- -equivalence $0 \ No newline at end of file diff --git a/snippets/f90-mode/ib b/snippets/f90-mode/ib deleted file mode 100644 index 3fd8fbd..0000000 --- a/snippets/f90-mode/ib +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Li Zhu -# name: implicit byte -# key: ib -# -- -implicit byte $0 \ No newline at end of file diff --git a/snippets/f90-mode/ic b/snippets/f90-mode/ic deleted file mode 100644 index 516d139..0000000 --- a/snippets/f90-mode/ic +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Li Zhu -# name: implicit complex -# key: ic -# -- -implicit complex $0 \ No newline at end of file diff --git a/snippets/f90-mode/ich b/snippets/f90-mode/ich deleted file mode 100644 index f6b1f80..0000000 --- a/snippets/f90-mode/ich +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Li Zhu -# name: implicit character -# key: ich -# -- -implicit character $0 \ No newline at end of file diff --git a/snippets/f90-mode/if b/snippets/f90-mode/if deleted file mode 100644 index f4a42e1..0000000 --- a/snippets/f90-mode/if +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Li Zhu -# name: if then end if -# key: if -# -- -if ( ${1:condition} ) then - $0 -end if \ No newline at end of file diff --git a/snippets/f90-mode/ii b/snippets/f90-mode/ii deleted file mode 100644 index bd89e90..0000000 --- a/snippets/f90-mode/ii +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Li Zhu -# name: implicit integer -# key: ii -# -- -implicit integer $0 \ No newline at end of file diff --git a/snippets/f90-mode/il b/snippets/f90-mode/il deleted file mode 100644 index 0ce006e..0000000 --- a/snippets/f90-mode/il +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Li Zhu -# name: implicit logical -# key: il -# -- -implicit logical $0 \ No newline at end of file diff --git a/snippets/f90-mode/in b/snippets/f90-mode/in deleted file mode 100644 index a9d84a1..0000000 --- a/snippets/f90-mode/in +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Li Zhu -# name: implicit none -# key: in -# -- -implicit none \ No newline at end of file diff --git a/snippets/f90-mode/inc b/snippets/f90-mode/inc deleted file mode 100644 index cc761bb..0000000 --- a/snippets/f90-mode/inc +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Li Zhu -# name: include -# key: inc -# -- -include $0 \ No newline at end of file diff --git a/snippets/f90-mode/intr b/snippets/f90-mode/intr deleted file mode 100644 index 689f20a..0000000 --- a/snippets/f90-mode/intr +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Li Zhu -# name: intrinsic -# key: intr -# -- -intrinsic $0 \ No newline at end of file diff --git a/snippets/f90-mode/ir b/snippets/f90-mode/ir deleted file mode 100644 index 77ddea9..0000000 --- a/snippets/f90-mode/ir +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Li Zhu -# name: implicit real -# key: ir -# -- -implicit real $0 \ No newline at end of file diff --git a/snippets/f90-mode/l b/snippets/f90-mode/l deleted file mode 100644 index c48b11e..0000000 --- a/snippets/f90-mode/l +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Li Zhu -# name: logical -# key: l -# -- -logical $0 \ No newline at end of file diff --git a/snippets/f90-mode/pa b/snippets/f90-mode/pa deleted file mode 100644 index d92f75b..0000000 --- a/snippets/f90-mode/pa +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Li Zhu -# name: parameter -# key: pa -# -- -parameter $0 \ No newline at end of file diff --git a/snippets/f90-mode/pr b/snippets/f90-mode/pr deleted file mode 100644 index f570d5f..0000000 --- a/snippets/f90-mode/pr +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Li Zhu -# name: program ... end program ... -# key: pr -# -- -program ${1:name} - $0 -end program ${1:name} \ No newline at end of file diff --git a/snippets/f90-mode/re b/snippets/f90-mode/re deleted file mode 100644 index a42e5a9..0000000 --- a/snippets/f90-mode/re +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Li Zhu -# name: read (*,*) -# key: re -# -- -read (${1:*},${2:*}) $0 \ No newline at end of file diff --git a/snippets/f90-mode/st b/snippets/f90-mode/st deleted file mode 100644 index eda6f2e..0000000 --- a/snippets/f90-mode/st +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Li Zhu -# name: structure -# key: st -# -- -structure $0 \ No newline at end of file diff --git a/snippets/f90-mode/su b/snippets/f90-mode/su deleted file mode 100644 index 5b3e3cf..0000000 --- a/snippets/f90-mode/su +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Li Zhu -# name: subroutine -# key: su -# -- -subroutine $0 \ No newline at end of file diff --git a/snippets/f90-mode/wr b/snippets/f90-mode/wr deleted file mode 100644 index 0c9b4e6..0000000 --- a/snippets/f90-mode/wr +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Li Zhu -# name: write (*,*) -# key: wr -# -- -write (${1:*},${2:*}) $0 \ No newline at end of file diff --git a/snippets/html-mode/.yas-make-groups b/snippets/html-mode/.yas-make-groups deleted file mode 100644 index e69de29..0000000 diff --git a/snippets/html-mode/.yas-parents b/snippets/html-mode/.yas-parents deleted file mode 100644 index eed5b44..0000000 --- a/snippets/html-mode/.yas-parents +++ /dev/null @@ -1 +0,0 @@ -text-mode diff --git a/snippets/html-mode/b.yasnippet b/snippets/html-mode/b.yasnippet deleted file mode 100755 index c7873ca..0000000 --- a/snippets/html-mode/b.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee xahlee.org -# name: ... -# key: b -# -- -$0 \ No newline at end of file diff --git a/snippets/html-mode/body b/snippets/html-mode/body deleted file mode 100644 index d6c5db3..0000000 --- a/snippets/html-mode/body +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Jimmy Wu -# name: ... -# key: body -# -- - - $0 - \ No newline at end of file diff --git a/snippets/html-mode/br b/snippets/html-mode/br deleted file mode 100644 index 9305a50..0000000 --- a/snippets/html-mode/br +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Jimmy Wu -# name:
-# key: br -# -- -
\ No newline at end of file diff --git a/snippets/html-mode/code b/snippets/html-mode/code deleted file mode 100644 index 96d47e0..0000000 --- a/snippets/html-mode/code +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Jimmy Wu -# name: ... -# key: code -# -- - - $0 - \ No newline at end of file diff --git a/snippets/html-mode/code.class b/snippets/html-mode/code.class deleted file mode 100644 index 2d18af7..0000000 --- a/snippets/html-mode/code.class +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Jimmy Wu -# name: ... -# key: code -# -- - - $0 - \ No newline at end of file diff --git a/snippets/html-mode/div b/snippets/html-mode/div deleted file mode 100644 index bce4c3a..0000000 --- a/snippets/html-mode/div +++ /dev/null @@ -1,4 +0,0 @@ -# name: ... -# key: div -# -- -$0 \ No newline at end of file diff --git a/snippets/html-mode/div.class b/snippets/html-mode/div.class deleted file mode 100644 index e1a4b03..0000000 --- a/snippets/html-mode/div.class +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Jimmy Wu -# name:
...
-# key: div -# -- -
- $0 -
\ No newline at end of file diff --git a/snippets/html-mode/div.id b/snippets/html-mode/div.id deleted file mode 100644 index 8682aa1..0000000 --- a/snippets/html-mode/div.id +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Jimmy Wu -# name:
...
-# key: div -# -- -
- $0 -
\ No newline at end of file diff --git a/snippets/html-mode/div.id-class b/snippets/html-mode/div.id-class deleted file mode 100644 index 452cd9a..0000000 --- a/snippets/html-mode/div.id-class +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Jimmy Wu -# name:
...
-# key: div -# -- -
- $0 -
\ No newline at end of file diff --git a/snippets/html-mode/dov b/snippets/html-mode/dov deleted file mode 100644 index d3bdc17..0000000 --- a/snippets/html-mode/dov +++ /dev/null @@ -1,12 +0,0 @@ -# name: ... -# key: dov -# -- -a mirror up here $3 - - - - $0 - - - actually some other shit and $3 - \ No newline at end of file diff --git a/snippets/html-mode/form b/snippets/html-mode/form deleted file mode 100644 index de06267..0000000 --- a/snippets/html-mode/form +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Jimmy Wu -#name :
-# key: form -# -- -
- $0 -
\ No newline at end of file diff --git a/snippets/html-mode/head b/snippets/html-mode/head deleted file mode 100644 index c5c0d0e..0000000 --- a/snippets/html-mode/head +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Jimmy Wu -# name: ... -# key: head -# -- - - $0 - \ No newline at end of file diff --git a/snippets/html-mode/header/h1 b/snippets/html-mode/header/h1 deleted file mode 100644 index 4d21764..0000000 --- a/snippets/html-mode/header/h1 +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Jimmy Wu -# name:

...

-# key: h1 -# -- -

$1

\ No newline at end of file diff --git a/snippets/html-mode/header/h2 b/snippets/html-mode/header/h2 deleted file mode 100644 index 1cca1d5..0000000 --- a/snippets/html-mode/header/h2 +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Jimmy Wu -# name:

...

-# key: h2 -# -- -

$1

\ No newline at end of file diff --git a/snippets/html-mode/header/h3 b/snippets/html-mode/header/h3 deleted file mode 100644 index 8e50a6d..0000000 --- a/snippets/html-mode/header/h3 +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Jimmy Wu -# name:

...

-# key: h3 -# -- -

$1

\ No newline at end of file diff --git a/snippets/html-mode/header/h4 b/snippets/html-mode/header/h4 deleted file mode 100644 index 08c853e..0000000 --- a/snippets/html-mode/header/h4 +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Jimmy Wu -# name:

...

-# key: h4 -# -- -

$1

\ No newline at end of file diff --git a/snippets/html-mode/header/h5 b/snippets/html-mode/header/h5 deleted file mode 100644 index 951122e..0000000 --- a/snippets/html-mode/header/h5 +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Jimmy Wu -# name:
...
-# key: h5 -# -- -
$1
\ No newline at end of file diff --git a/snippets/html-mode/header/h6 b/snippets/html-mode/header/h6 deleted file mode 100644 index f7da2ee..0000000 --- a/snippets/html-mode/header/h6 +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Jimmy Wu -# name:
...
-# key: h6 -# -- -
$1
\ No newline at end of file diff --git a/snippets/html-mode/hr b/snippets/html-mode/hr deleted file mode 100644 index a6eb0ea..0000000 --- a/snippets/html-mode/hr +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Jimmy Wu -# name:
-# key: hr -# -- -
\ No newline at end of file diff --git a/snippets/html-mode/href b/snippets/html-mode/href deleted file mode 100644 index b384653..0000000 --- a/snippets/html-mode/href +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Jimmy Wu -# name: ... -# key: href -# -- -$2 \ No newline at end of file diff --git a/snippets/html-mode/html b/snippets/html-mode/html deleted file mode 100644 index 0484de0..0000000 --- a/snippets/html-mode/html +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Jimmy Wu -# name: ... -# key: html -# -- - - $0 - \ No newline at end of file diff --git a/snippets/html-mode/html.xmlns b/snippets/html-mode/html.xmlns deleted file mode 100644 index 1b11f35..0000000 --- a/snippets/html-mode/html.xmlns +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Jimmy Wu -# name: ... -# key: html -# -- - - $0 - \ No newline at end of file diff --git a/snippets/html-mode/i.yasnippet b/snippets/html-mode/i.yasnippet deleted file mode 100755 index ffd051f..0000000 --- a/snippets/html-mode/i.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Xah Lee xahlee.org -# name: ... -# key: i -# -- -$0 \ No newline at end of file diff --git a/snippets/html-mode/img b/snippets/html-mode/img deleted file mode 100644 index e726c00..0000000 --- a/snippets/html-mode/img +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Jimmy Wu -# name: ... -# key: img -# -- -$3 \ No newline at end of file diff --git a/snippets/html-mode/input b/snippets/html-mode/input deleted file mode 100644 index 2f8c79a..0000000 --- a/snippets/html-mode/input +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Jimmy Wu -# name: -# key: input -# -- - \ No newline at end of file diff --git a/snippets/html-mode/link.stylesheet b/snippets/html-mode/link.stylesheet deleted file mode 100644 index e10ee8b..0000000 --- a/snippets/html-mode/link.stylesheet +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Jimmy Wu -# name: -# key: link -# -- - \ No newline at end of file diff --git a/snippets/html-mode/link.stylesheet-ie b/snippets/html-mode/link.stylesheet-ie deleted file mode 100644 index 752f9e9..0000000 --- a/snippets/html-mode/link.stylesheet-ie +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Jimmy Wu -# name: -# key: link -# -- - \ No newline at end of file diff --git a/snippets/html-mode/list/dd b/snippets/html-mode/list/dd deleted file mode 100644 index e48a644..0000000 --- a/snippets/html-mode/list/dd +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Rodrigo Setti -# name:
...
-# key: dd -# -- -
$1
\ No newline at end of file diff --git a/snippets/html-mode/list/dl b/snippets/html-mode/list/dl deleted file mode 100644 index 67792ad..0000000 --- a/snippets/html-mode/list/dl +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Rodrigo Setti -# name:
...
-# key: dl -# -- -
- $0 -
\ No newline at end of file diff --git a/snippets/html-mode/list/dl.id b/snippets/html-mode/list/dl.id deleted file mode 100644 index b4b92cb..0000000 --- a/snippets/html-mode/list/dl.id +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Rodrigo Setti -# name:
...
-# key: dl -# -- -
- $0 -
\ No newline at end of file diff --git a/snippets/html-mode/list/dt b/snippets/html-mode/list/dt deleted file mode 100644 index 85d62e4..0000000 --- a/snippets/html-mode/list/dt +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Rodrigo Setti -# name:
...
-# key: dt -# -- -
$1
\ No newline at end of file diff --git a/snippets/html-mode/list/li b/snippets/html-mode/list/li deleted file mode 100644 index fe7a1f1..0000000 --- a/snippets/html-mode/list/li +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Jimmy Wu -# name:
  • ...
  • -# key: li -# -- -
  • $1
  • \ No newline at end of file diff --git a/snippets/html-mode/list/li.class b/snippets/html-mode/list/li.class deleted file mode 100644 index 7ff0b12..0000000 --- a/snippets/html-mode/list/li.class +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Jimmy Wu -# name:
  • ...
  • -# key: li -# -- -
  • $2
  • \ No newline at end of file diff --git a/snippets/html-mode/list/ol b/snippets/html-mode/list/ol deleted file mode 100644 index d4b74ac..0000000 --- a/snippets/html-mode/list/ol +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Jimmy Wu -# name:
      ...
    -# key: ol -# -- -
      - $0 -
    \ No newline at end of file diff --git a/snippets/html-mode/list/ol.class b/snippets/html-mode/list/ol.class deleted file mode 100644 index 1c037da..0000000 --- a/snippets/html-mode/list/ol.class +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Jimmy Wu -# name:
      ...
    -# key: ol -# -- -
      - $0 -
    \ No newline at end of file diff --git a/snippets/html-mode/list/ol.id b/snippets/html-mode/list/ol.id deleted file mode 100644 index d20101e..0000000 --- a/snippets/html-mode/list/ol.id +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Jimmy Wu -# name:
      ...
    -# key: ol -# -- -
      - $0 -
    \ No newline at end of file diff --git a/snippets/html-mode/list/ul b/snippets/html-mode/list/ul deleted file mode 100644 index 4f0a9ae..0000000 --- a/snippets/html-mode/list/ul +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Jimmy Wu -# name:
      ...
    -# key: ul -# -- -
      - $0 -
    \ No newline at end of file diff --git a/snippets/html-mode/list/ul.class b/snippets/html-mode/list/ul.class deleted file mode 100644 index e11c736..0000000 --- a/snippets/html-mode/list/ul.class +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Jimmy Wu -# name:
      ...
    -# key: ul -# -- -
      - $0 -
    \ No newline at end of file diff --git a/snippets/html-mode/list/ul.id b/snippets/html-mode/list/ul.id deleted file mode 100644 index 014f2d0..0000000 --- a/snippets/html-mode/list/ul.id +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Jimmy Wu -# name:
      ...
    -# key: ul -# -- -
      - $0 -
    \ No newline at end of file diff --git a/snippets/html-mode/mailto b/snippets/html-mode/mailto deleted file mode 100644 index 0f1b9aa..0000000 --- a/snippets/html-mode/mailto +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Jimmy Wu -# name: ... -# key: mailto -# -- -$0 \ No newline at end of file diff --git a/snippets/html-mode/meta/doctype b/snippets/html-mode/meta/doctype deleted file mode 100644 index ab34905..0000000 --- a/snippets/html-mode/meta/doctype +++ /dev/null @@ -1,4 +0,0 @@ -# name: Doctype HTML 4.01 Strict -# key: doctype -# -- - \ No newline at end of file diff --git a/snippets/html-mode/meta/doctype.xhml1 b/snippets/html-mode/meta/doctype.xhml1 deleted file mode 100644 index 3671cf5..0000000 --- a/snippets/html-mode/meta/doctype.xhml1 +++ /dev/null @@ -1,4 +0,0 @@ -# name: DocType XHTML 1.0 frameset -# key: doctype -# -- - \ No newline at end of file diff --git a/snippets/html-mode/meta/doctype.xhtml1_1 b/snippets/html-mode/meta/doctype.xhtml1_1 deleted file mode 100644 index bb3e709..0000000 --- a/snippets/html-mode/meta/doctype.xhtml1_1 +++ /dev/null @@ -1,4 +0,0 @@ -# name: DocType XHTML 1.1 -# key: doctype -# -- - \ No newline at end of file diff --git a/snippets/html-mode/meta/doctype.xhtml1_strict b/snippets/html-mode/meta/doctype.xhtml1_strict deleted file mode 100644 index 4e4c567..0000000 --- a/snippets/html-mode/meta/doctype.xhtml1_strict +++ /dev/null @@ -1,4 +0,0 @@ -# name: DocType XHTML 1.0 Strict -# key: doctype -# -- - \ No newline at end of file diff --git a/snippets/html-mode/meta/doctype.xhtml1_transitional b/snippets/html-mode/meta/doctype.xhtml1_transitional deleted file mode 100644 index d1ae7f9..0000000 --- a/snippets/html-mode/meta/doctype.xhtml1_transitional +++ /dev/null @@ -1,4 +0,0 @@ -# name: DocType XHTML 1.0 Transitional -# key: doctype -# -- - \ No newline at end of file diff --git a/snippets/html-mode/meta/meta b/snippets/html-mode/meta/meta deleted file mode 100644 index 235eb76..0000000 --- a/snippets/html-mode/meta/meta +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Jimmy Wu -# name: -# key: meta -# -- - \ No newline at end of file diff --git a/snippets/html-mode/meta/meta.http-equiv b/snippets/html-mode/meta/meta.http-equiv deleted file mode 100644 index ef38ed8..0000000 --- a/snippets/html-mode/meta/meta.http-equiv +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Jimmy Wu -# name: -# key: meta -# -- - \ No newline at end of file diff --git a/snippets/html-mode/p b/snippets/html-mode/p deleted file mode 100644 index 69fca09..0000000 --- a/snippets/html-mode/p +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Jimmy Wu -# name:

    ...

    -# key: p -# -- -

    $1

    \ No newline at end of file diff --git a/snippets/html-mode/pre b/snippets/html-mode/pre deleted file mode 100644 index 040b8f5..0000000 --- a/snippets/html-mode/pre +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Jimmy Wu -# name:
    ...
    -# key: pre -# -- -
    -  $0
    -
    \ No newline at end of file diff --git a/snippets/html-mode/q.yasnippet b/snippets/html-mode/q.yasnippet deleted file mode 100755 index dbaab06..0000000 --- a/snippets/html-mode/q.yasnippet +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Xah Lee xahlee.org -# name:
    ...
    -# key: q -# -- -
    -$0 -
    \ No newline at end of file diff --git a/snippets/html-mode/quote b/snippets/html-mode/quote deleted file mode 100644 index a579067..0000000 --- a/snippets/html-mode/quote +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Jimmy Wu -# name:
    ...
    -# key: quote -# -- -
    - $1 -
    \ No newline at end of file diff --git a/snippets/html-mode/script.javascript b/snippets/html-mode/script.javascript deleted file mode 100644 index c240755..0000000 --- a/snippets/html-mode/script.javascript +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Jimmy Wu -#name : -# key: script -# -- - \ No newline at end of file diff --git a/snippets/html-mode/script.javascript-src b/snippets/html-mode/script.javascript-src deleted file mode 100644 index fd5758d..0000000 --- a/snippets/html-mode/script.javascript-src +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Jimmy Wu -#name : -# key: script -# -- - \ No newline at end of file diff --git a/snippets/html-mode/span b/snippets/html-mode/span deleted file mode 100644 index 14c2ca7..0000000 --- a/snippets/html-mode/span +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Jimmy Wu -# name: ... -# key: span -# -- -$1 \ No newline at end of file diff --git a/snippets/html-mode/span.class b/snippets/html-mode/span.class deleted file mode 100644 index a496aaa..0000000 --- a/snippets/html-mode/span.class +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Jimmy Wu -# name: ... -# key: span -# -- -$2 \ No newline at end of file diff --git a/snippets/html-mode/span.id b/snippets/html-mode/span.id deleted file mode 100644 index 0dc1ee1..0000000 --- a/snippets/html-mode/span.id +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Jimmy Wu -# name: ... -# key: span -# -- -$2 \ No newline at end of file diff --git a/snippets/html-mode/style b/snippets/html-mode/style deleted file mode 100644 index e159a34..0000000 --- a/snippets/html-mode/style +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Jimmy Wu -# name: -# key: style -# -- - \ No newline at end of file diff --git a/snippets/html-mode/table/table b/snippets/html-mode/table/table deleted file mode 100644 index b3a180f..0000000 --- a/snippets/html-mode/table/table +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Jimmy Wu -# name: ...
    -# key: table -# -- - - $0 -
    \ No newline at end of file diff --git a/snippets/html-mode/table/td b/snippets/html-mode/table/td deleted file mode 100644 index a87892e..0000000 --- a/snippets/html-mode/table/td +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Jimmy Wu -# name: ... -# key: td -# -- -$2 \ No newline at end of file diff --git a/snippets/html-mode/table/th b/snippets/html-mode/table/th deleted file mode 100644 index 0a07ac1..0000000 --- a/snippets/html-mode/table/th +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Jimmy Wu -# name: ... -# key: th -# -- -$2 \ No newline at end of file diff --git a/snippets/html-mode/table/tr b/snippets/html-mode/table/tr deleted file mode 100644 index 15e8fc3..0000000 --- a/snippets/html-mode/table/tr +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Jimmy Wu -# name: ... -# key: tr -# -- - - $0 - \ No newline at end of file diff --git a/snippets/html-mode/textarea b/snippets/html-mode/textarea deleted file mode 100644 index 650cc51..0000000 --- a/snippets/html-mode/textarea +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Jimmy Wu -# name: -# key: textarea -# -- - \ No newline at end of file diff --git a/snippets/html-mode/title b/snippets/html-mode/title deleted file mode 100644 index d9d0ddb..0000000 --- a/snippets/html-mode/title +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Jimmy Wu -# name: ... -# key: title -# -- -$1 \ No newline at end of file diff --git a/snippets/js-mode/assert.yasnippet b/snippets/js-mode/assert.yasnippet deleted file mode 100644 index 59ec614..0000000 --- a/snippets/js-mode/assert.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# -*- mode: snippet -*- -# name: assert -# key: assert -# -- -assert.${1:equal}($0); diff --git a/snippets/js-mode/cb.yasnippet b/snippets/js-mode/cb.yasnippet deleted file mode 100644 index 9453e6a..0000000 --- a/snippets/js-mode/cb.yasnippet +++ /dev/null @@ -1,7 +0,0 @@ -# -*- mode: snippet -*- -# name: cb -# key: cb -# -- -function(error, $1){ -$0 -} diff --git a/snippets/js-mode/com.yasnippet b/snippets/js-mode/com.yasnippet deleted file mode 100644 index 1eff9fe..0000000 --- a/snippets/js-mode/com.yasnippet +++ /dev/null @@ -1,10 +0,0 @@ -# -*- mode: snippet -*- -# name: com -# key: com -# -- - -/** - * $0 - * @param {${1:String}} $2 - * @return {${3:String}} - */ diff --git a/snippets/js-mode/describe.yasnippet b/snippets/js-mode/describe.yasnippet deleted file mode 100644 index c40bae7..0000000 --- a/snippets/js-mode/describe.yasnippet +++ /dev/null @@ -1,7 +0,0 @@ -# -*- mode: snippet -*- -# name: desc -# key: desc -# -- -describe('$1', function(){ -$2 -}); diff --git a/snippets/js-mode/err.snippet b/snippets/js-mode/err.snippet deleted file mode 100644 index a4b713b..0000000 --- a/snippets/js-mode/err.snippet +++ /dev/null @@ -1,9 +0,0 @@ -# -*- mode: snippet -*- -# name: err -# key: err -# -- -if(${1:error}){ - callback($1); - return; -} -$2 diff --git a/snippets/js-mode/error.snippet b/snippets/js-mode/error.snippet deleted file mode 100644 index 1c99ad2..0000000 --- a/snippets/js-mode/error.snippet +++ /dev/null @@ -1,9 +0,0 @@ -# -*- mode: snippet -*- -# name: error -# key: error -# -- -if(${1:error}){ - callback($1); - return; -} -$2 diff --git a/snippets/js-mode/expect.yasnippet b/snippets/js-mode/expect.yasnippet deleted file mode 100644 index 8e0879e..0000000 --- a/snippets/js-mode/expect.yasnippet +++ /dev/null @@ -1,6 +0,0 @@ -# -*- mode: snippet -*- -# name: expect -# key: expect -# -- -expect($1).to.${2:equal}($3); -$0 \ No newline at end of file diff --git a/snippets/js-mode/exports.yasnippet b/snippets/js-mode/exports.yasnippet deleted file mode 100644 index 6e183cd..0000000 --- a/snippets/js-mode/exports.yasnippet +++ /dev/null @@ -1,7 +0,0 @@ -# -*- mode: snippet -*- -# name: exports -# key: exports -# -- -module.exports = { -$0 -}; diff --git a/snippets/js-mode/fn.yasnippet b/snippets/js-mode/fn.yasnippet deleted file mode 100644 index 67294fc..0000000 --- a/snippets/js-mode/fn.yasnippet +++ /dev/null @@ -1,7 +0,0 @@ -# -*- mode: snippet -*- -# name: fn -# key: fn -# -- -function$1($2){ -$0 -} diff --git a/snippets/js-mode/for.yasnippet b/snippets/js-mode/for.yasnippet deleted file mode 100644 index 97d772f..0000000 --- a/snippets/js-mode/for.yasnippet +++ /dev/null @@ -1,9 +0,0 @@ -# -*- mode: snippet -*- -# name: for -# key: for -# -- -var ${1:i} = ${2:-1}, len = $3.length; - -for(; ++$1 < len;){ - $4 -} diff --git a/snippets/js-mode/id.yasnippet b/snippets/js-mode/id.yasnippet deleted file mode 100644 index 47f00b9..0000000 --- a/snippets/js-mode/id.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# -*- mode: snippet -*- -# name: id -# key: id -# -- -document.getElementById('$0'); diff --git a/snippets/js-mode/if.yasnippet b/snippets/js-mode/if.yasnippet deleted file mode 100644 index 0fac855..0000000 --- a/snippets/js-mode/if.yasnippet +++ /dev/null @@ -1,7 +0,0 @@ -# -*- mode: snippet -*- -# name: if -# key: if -# -- -if( ${1} ){ -$0 -} diff --git a/snippets/js-mode/invoc.yasnippet b/snippets/js-mode/invoc.yasnippet deleted file mode 100644 index cf46321..0000000 --- a/snippets/js-mode/invoc.yasnippet +++ /dev/null @@ -1,7 +0,0 @@ -# -*- mode: snippet -*- -# name: invoc -# key: invoc -# -- -(function($1){ -$0 -})($2); diff --git a/snippets/js-mode/it.yasnippet b/snippets/js-mode/it.yasnippet deleted file mode 100644 index 161d51f..0000000 --- a/snippets/js-mode/it.yasnippet +++ /dev/null @@ -1,7 +0,0 @@ -# -*- mode: snippet -*- -# name: it -# key: it -# -- -it('$1', function(done){ -$2 -}); diff --git a/snippets/js-mode/log.yasnippet b/snippets/js-mode/log.yasnippet deleted file mode 100644 index 19ff1be..0000000 --- a/snippets/js-mode/log.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# -*- mode: snippet -*- -# name: log -# key: log -# -- -console.${1:log}( $0 ); diff --git a/snippets/js-mode/method.yasnippet b/snippets/js-mode/method.yasnippet deleted file mode 100644 index 67fb56a..0000000 --- a/snippets/js-mode/method.yasnippet +++ /dev/null @@ -1,7 +0,0 @@ -# -*- mode: snippet -*- -# name: method -# key: method -# -- -$1.prototype.$2 = function($3){ -${0} -}; diff --git a/snippets/js-mode/mod.yasnippet b/snippets/js-mode/mod.yasnippet deleted file mode 100644 index c1b9867..0000000 --- a/snippets/js-mode/mod.yasnippet +++ /dev/null @@ -1,11 +0,0 @@ -# -*- mode: snippet -*- -# name: mod -# key: mod -# -- -var $1 = require("${2:$1}")$3 - -module.exports = { - $4: $4$5 -}; - -$0 diff --git a/snippets/js-mode/prop.yasnippet b/snippets/js-mode/prop.yasnippet deleted file mode 100644 index dc234c7..0000000 --- a/snippets/js-mode/prop.yasnippet +++ /dev/null @@ -1,19 +0,0 @@ -# -*- mode: snippet -*- -# name: prop -# key: prop -# -- - -var $1 = (function(){ - - var value = undefined; - - return function $1(newValue){ - - if( $1.arguments.length > 0 ){ - value = newValue; - } - - return value; - }; - -})(); diff --git a/snippets/js-mode/proto.yasnippet b/snippets/js-mode/proto.yasnippet deleted file mode 100644 index c6fe215..0000000 --- a/snippets/js-mode/proto.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# -*- mode: snippet -*- -# name: proto -# key: proto -# -- -$1.prototype.$2 = $0 diff --git a/snippets/js-mode/rq.yasnippet b/snippets/js-mode/rq.yasnippet deleted file mode 100644 index 864534d..0000000 --- a/snippets/js-mode/rq.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# -*- mode: snippet -*- -# name: rq -# key: rq -# -- -$1 = require("${2:$1}")$0 diff --git a/snippets/js-mode/rt.yasnippet b/snippets/js-mode/rt.yasnippet deleted file mode 100644 index d9a5bdf..0000000 --- a/snippets/js-mode/rt.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# -*- mode: snippet -*- -# name: rt -# key: rt -# -- -return$0; diff --git a/snippets/js-mode/slice.yasnippet b/snippets/js-mode/slice.yasnippet deleted file mode 100644 index 2dd65be..0000000 --- a/snippets/js-mode/slice.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# -*- mode: snippet -*- -# name: slice -# key: slice -# -- -Array.prototype.slice.${1:call}($0); diff --git a/snippets/js-mode/super.yasnippet b/snippets/js-mode/super.yasnippet deleted file mode 100644 index 4638026..0000000 --- a/snippets/js-mode/super.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# -*- mode: snippet -*- -# name: super -# key: super -# -- -$1.prototype.${2:constructor}.${3:call}($0); diff --git a/snippets/js-mode/switch.yasnippet b/snippets/js-mode/switch.yasnippet deleted file mode 100644 index 5e4fc3f..0000000 --- a/snippets/js-mode/switch.yasnippet +++ /dev/null @@ -1,7 +0,0 @@ -# -*- mode: snippet -*- -# name: switch -# key: switch -# -- -switch($1){ -$0 -}; diff --git a/snippets/js-mode/throw.yasnippet b/snippets/js-mode/throw.yasnippet deleted file mode 100644 index dbef383..0000000 --- a/snippets/js-mode/throw.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# -*- mode: snippet -*- -# name: throw -# key: throw -# -- -throw new Error("$1"); diff --git a/snippets/js-mode/try.yasnippet b/snippets/js-mode/try.yasnippet deleted file mode 100644 index 903378f..0000000 --- a/snippets/js-mode/try.yasnippet +++ /dev/null @@ -1,9 +0,0 @@ -# -*- mode: snippet -*- -# name: try -# key: try -# -- -try { - $1 -} catch(error) { - $0 -} diff --git a/snippets/js-mode/var.yasnippet b/snippets/js-mode/var.yasnippet deleted file mode 100644 index 77d52a5..0000000 --- a/snippets/js-mode/var.yasnippet +++ /dev/null @@ -1,5 +0,0 @@ -# -*- mode: snippet -*- -# name: var -# key: var -# -- -var $1 = $0 diff --git a/snippets/js-mode/wh.yasnippet b/snippets/js-mode/wh.yasnippet deleted file mode 100644 index f733ac4..0000000 --- a/snippets/js-mode/wh.yasnippet +++ /dev/null @@ -1,7 +0,0 @@ -# -*- mode: snippet -*- -# name: wh -# key: wh -# -- -while($1){ -$0 -} diff --git a/snippets/js-mode/while.yasnippet b/snippets/js-mode/while.yasnippet deleted file mode 100644 index 9eff9df..0000000 --- a/snippets/js-mode/while.yasnippet +++ /dev/null @@ -1,10 +0,0 @@ -# -*- mode: snippet -*- -# name: while -# key: while -# -- - -var i = $1.length; - -while( i -- ){ - $0 -} \ No newline at end of file diff --git a/snippets/latex-mode/.yas-parents b/snippets/latex-mode/.yas-parents deleted file mode 100644 index eed5b44..0000000 --- a/snippets/latex-mode/.yas-parents +++ /dev/null @@ -1 +0,0 @@ -text-mode diff --git a/snippets/latex-mode/begin b/snippets/latex-mode/begin deleted file mode 100644 index cb08546..0000000 --- a/snippets/latex-mode/begin +++ /dev/null @@ -1,8 +0,0 @@ -# contributor: Rodrigo Setti -# name: \begin{environment} ... \end{environment} -# key: begin -# -- - -\begin{${1:environment}} -$0 -\end{$1} \ No newline at end of file diff --git a/snippets/markdown-mode/+ b/snippets/markdown-mode/+ deleted file mode 100644 index 129ce8e..0000000 --- a/snippets/markdown-mode/+ +++ /dev/null @@ -1,6 +0,0 @@ -# name: Unordered List -# contributor: Peng Deng -# key: + -# -- -+ ${1:Text} -+$0 \ No newline at end of file diff --git a/snippets/markdown-mode/- b/snippets/markdown-mode/- deleted file mode 100644 index d652207..0000000 --- a/snippets/markdown-mode/- +++ /dev/null @@ -1,6 +0,0 @@ -# name: Unordered List -# contributor: Peng Deng -# key: - -# -- -- ${1:Text} --$0 \ No newline at end of file diff --git a/snippets/markdown-mode/.yas-parents b/snippets/markdown-mode/.yas-parents deleted file mode 100644 index eed5b44..0000000 --- a/snippets/markdown-mode/.yas-parents +++ /dev/null @@ -1 +0,0 @@ -text-mode diff --git a/snippets/markdown-mode/_ b/snippets/markdown-mode/_ deleted file mode 100644 index 7dc839a..0000000 --- a/snippets/markdown-mode/_ +++ /dev/null @@ -1,5 +0,0 @@ -# name: Emphasis -# contributor: Peng Deng -# key: _ -# -- -_${1:Text}_ $0 \ No newline at end of file diff --git a/snippets/markdown-mode/__ b/snippets/markdown-mode/__ deleted file mode 100644 index c8c14a6..0000000 --- a/snippets/markdown-mode/__ +++ /dev/null @@ -1,5 +0,0 @@ -# name: Strong -# contributor: Peng Deng -# key: __ -# -- -**${1:Text}** $0 \ No newline at end of file diff --git a/snippets/markdown-mode/` b/snippets/markdown-mode/` deleted file mode 100644 index d28b42c..0000000 --- a/snippets/markdown-mode/` +++ /dev/null @@ -1,5 +0,0 @@ -# name: Inline Code -# contributor: Peng Deng -# key: ` -# -- -\`${1:Code}\` $0 \ No newline at end of file diff --git a/snippets/markdown-mode/h1.1 b/snippets/markdown-mode/h1.1 deleted file mode 100644 index a5f49c4..0000000 --- a/snippets/markdown-mode/h1.1 +++ /dev/null @@ -1,7 +0,0 @@ -# name: Header 1 (#) -# contributor: Peng Deng -# key: h1 -# -- -# ${1:Header 1} # - -$0 \ No newline at end of file diff --git a/snippets/markdown-mode/h1.2 b/snippets/markdown-mode/h1.2 deleted file mode 100644 index 6d7a0f2..0000000 --- a/snippets/markdown-mode/h1.2 +++ /dev/null @@ -1,8 +0,0 @@ -# name: Header 1 (=) -# contributor: Peng Deng -# key: h1 -# -- -${1:Header 1} -${1:$(make-string (string-width yas-text) ?\=)} - -$0 \ No newline at end of file diff --git a/snippets/markdown-mode/h2.1 b/snippets/markdown-mode/h2.1 deleted file mode 100644 index c8b3fc1..0000000 --- a/snippets/markdown-mode/h2.1 +++ /dev/null @@ -1,7 +0,0 @@ -# name: Header 2 (##) -# contributor: Peng Deng -# key: h2 -# -- -## ${1:Header 1} ## - -$0 \ No newline at end of file diff --git a/snippets/markdown-mode/h2.2 b/snippets/markdown-mode/h2.2 deleted file mode 100644 index 3cfac1f..0000000 --- a/snippets/markdown-mode/h2.2 +++ /dev/null @@ -1,8 +0,0 @@ -# name: Header 2 (-) -# contributor: Peng Deng -# key: h2 -# -- -${1:Header 2} -${1:$(make-string (string-width yas-text) ?\-)} - -$0 \ No newline at end of file diff --git a/snippets/markdown-mode/h3 b/snippets/markdown-mode/h3 deleted file mode 100644 index 4daca1e..0000000 --- a/snippets/markdown-mode/h3 +++ /dev/null @@ -1,7 +0,0 @@ -# name: Header 3 -# contributor: Peng Deng -# key: h3 -# -- -### ${1:Header 3} ### - -$0 \ No newline at end of file diff --git a/snippets/markdown-mode/h4 b/snippets/markdown-mode/h4 deleted file mode 100644 index 513a100..0000000 --- a/snippets/markdown-mode/h4 +++ /dev/null @@ -1,7 +0,0 @@ -# name: Header 4 -# contributor: Peng Deng -# key: h4 -# -- -#### ${1:Header 4} #### - -$0 \ No newline at end of file diff --git a/snippets/markdown-mode/h5 b/snippets/markdown-mode/h5 deleted file mode 100644 index 51ebc39..0000000 --- a/snippets/markdown-mode/h5 +++ /dev/null @@ -1,7 +0,0 @@ -# name: Header 5 -# contributor: Peng Deng -# key: h5 -# -- -##### ${1:Header 5} ##### - -$0 \ No newline at end of file diff --git a/snippets/markdown-mode/h6 b/snippets/markdown-mode/h6 deleted file mode 100644 index ebe9eca..0000000 --- a/snippets/markdown-mode/h6 +++ /dev/null @@ -1,7 +0,0 @@ -# name: Header 6 -# contributor: Peng Deng -# key: h6 -# -- -###### ${1:Header 6} ###### - -$0 \ No newline at end of file diff --git a/snippets/markdown-mode/hr.1 b/snippets/markdown-mode/hr.1 deleted file mode 100644 index 3c57bac..0000000 --- a/snippets/markdown-mode/hr.1 +++ /dev/null @@ -1,8 +0,0 @@ -# name: Horizontal Rule (-) -# contributor: Peng Deng -# key: hr -# -- - ----------- - -$0 \ No newline at end of file diff --git a/snippets/markdown-mode/hr.2 b/snippets/markdown-mode/hr.2 deleted file mode 100644 index 9b9545c..0000000 --- a/snippets/markdown-mode/hr.2 +++ /dev/null @@ -1,8 +0,0 @@ -# name: Horizontal Rule (*) -# contributor: Peng Deng -# key: hr -# -- - -******* - -$0 \ No newline at end of file diff --git a/snippets/markdown-mode/img b/snippets/markdown-mode/img deleted file mode 100644 index 29b2650..0000000 --- a/snippets/markdown-mode/img +++ /dev/null @@ -1,5 +0,0 @@ -# name: Image -# contributor: Peng Deng -# key: img -# -- -![${1:Alt Text}](${2:URL} $3) $0 \ No newline at end of file diff --git a/snippets/markdown-mode/link b/snippets/markdown-mode/link deleted file mode 100644 index c45ee19..0000000 --- a/snippets/markdown-mode/link +++ /dev/null @@ -1,5 +0,0 @@ -# name: Link -# contributor: Peng Deng -# key: link -# -- -[${1:Link Text}](${2:URL} $3) $0 \ No newline at end of file diff --git a/snippets/markdown-mode/ol b/snippets/markdown-mode/ol deleted file mode 100644 index e66af9c..0000000 --- a/snippets/markdown-mode/ol +++ /dev/null @@ -1,6 +0,0 @@ -# name: Ordered List -# contributor: Peng Deng -# key: ol -# -- -${1:1}. ${2:Text} -${1:$(number-to-string (1+ (string-to-number yas-text)))}. $0 \ No newline at end of file diff --git a/snippets/markdown-mode/rimg b/snippets/markdown-mode/rimg deleted file mode 100644 index 5fedc3a..0000000 --- a/snippets/markdown-mode/rimg +++ /dev/null @@ -1,5 +0,0 @@ -# name: Referenced Image -# contributor: Peng Deng -# key: rimg -# -- -![${1:Alt Text}][$2] $0 \ No newline at end of file diff --git a/snippets/markdown-mode/rlb b/snippets/markdown-mode/rlb deleted file mode 100644 index 0bb37e9..0000000 --- a/snippets/markdown-mode/rlb +++ /dev/null @@ -1,6 +0,0 @@ -# name: Reference Label -# contributor: Peng Deng -# key: rlb -# -- -[${1:Reference}]: ${2:URL} $3 -$0 \ No newline at end of file diff --git a/snippets/markdown-mode/rlink b/snippets/markdown-mode/rlink deleted file mode 100644 index 97f41f0..0000000 --- a/snippets/markdown-mode/rlink +++ /dev/null @@ -1,5 +0,0 @@ -# name: Reference Link -# contributor: Peng Deng -# key: rlink -# -- -[${1:Link Text}][$2] $0 \ No newline at end of file diff --git a/snippets/nxml-mode/.yas-make-groups b/snippets/nxml-mode/.yas-make-groups deleted file mode 100644 index e69de29..0000000 diff --git a/snippets/nxml-mode/.yas-parents b/snippets/nxml-mode/.yas-parents deleted file mode 100644 index eed5b44..0000000 --- a/snippets/nxml-mode/.yas-parents +++ /dev/null @@ -1 +0,0 @@ -text-mode diff --git a/snippets/nxml-mode/body b/snippets/nxml-mode/body deleted file mode 100644 index 2ed3fcc..0000000 --- a/snippets/nxml-mode/body +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Anders Bach Nielsen -# name: ... -# key: body -# -- - - $0 - \ No newline at end of file diff --git a/snippets/nxml-mode/br b/snippets/nxml-mode/br deleted file mode 100644 index 621bc6c..0000000 --- a/snippets/nxml-mode/br +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Anders Bach Nielsen -# name:
    -# key: br -# -- -
    \ No newline at end of file diff --git a/snippets/nxml-mode/code b/snippets/nxml-mode/code deleted file mode 100644 index 36bd62b..0000000 --- a/snippets/nxml-mode/code +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Anders Bach Nielsen -# name: ... -# key: code -# -- - - $0 - \ No newline at end of file diff --git a/snippets/nxml-mode/div b/snippets/nxml-mode/div deleted file mode 100644 index 07c2526..0000000 --- a/snippets/nxml-mode/div +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Anders Bach Nielsen -# name: ... -# key: div -# -- -$0 \ No newline at end of file diff --git a/snippets/nxml-mode/form b/snippets/nxml-mode/form deleted file mode 100644 index 7767006..0000000 --- a/snippets/nxml-mode/form +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Anders Bach Nielsen -#name :
    -# key: form -# -- -
    - $0 -
    \ No newline at end of file diff --git a/snippets/nxml-mode/head b/snippets/nxml-mode/head deleted file mode 100644 index eb6b96b..0000000 --- a/snippets/nxml-mode/head +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Anders Bach Nielsen -# name: ... -# key: head -# -- - - $0 - \ No newline at end of file diff --git a/snippets/nxml-mode/header/h1 b/snippets/nxml-mode/header/h1 deleted file mode 100644 index 328fb89..0000000 --- a/snippets/nxml-mode/header/h1 +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Anders Bach Nielsen -# name:

    ...

    -# key: h1 -# -- -

    $1

    \ No newline at end of file diff --git a/snippets/nxml-mode/header/h2 b/snippets/nxml-mode/header/h2 deleted file mode 100644 index 3248435..0000000 --- a/snippets/nxml-mode/header/h2 +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Anders Bach Nielsen -# name:

    ...

    -# key: h2 -# -- -

    $1

    \ No newline at end of file diff --git a/snippets/nxml-mode/header/h3 b/snippets/nxml-mode/header/h3 deleted file mode 100644 index fe21a71..0000000 --- a/snippets/nxml-mode/header/h3 +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Anders Bach Nielsen -# name:

    ...

    -# key: h3 -# -- -

    $1

    \ No newline at end of file diff --git a/snippets/nxml-mode/header/h4 b/snippets/nxml-mode/header/h4 deleted file mode 100644 index bb2c983..0000000 --- a/snippets/nxml-mode/header/h4 +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Anders Bach Nielsen -# name:

    ...

    -# key: h4 -# -- -

    $1

    \ No newline at end of file diff --git a/snippets/nxml-mode/header/h5 b/snippets/nxml-mode/header/h5 deleted file mode 100644 index f11e62c..0000000 --- a/snippets/nxml-mode/header/h5 +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Anders Bach Nielsen -# name:
    ...
    -# key: h5 -# -- -
    $1
    \ No newline at end of file diff --git a/snippets/nxml-mode/header/h6 b/snippets/nxml-mode/header/h6 deleted file mode 100644 index 46f035a..0000000 --- a/snippets/nxml-mode/header/h6 +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Anders Bach Nielsen -# name:
    ...
    -# key: h6 -# -- -
    $1
    \ No newline at end of file diff --git a/snippets/nxml-mode/hr b/snippets/nxml-mode/hr deleted file mode 100644 index b649012..0000000 --- a/snippets/nxml-mode/hr +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Anders Bach Nielsen -# name:
    -# key: hr -# -- -
    \ No newline at end of file diff --git a/snippets/nxml-mode/href b/snippets/nxml-mode/href deleted file mode 100644 index 8fea09c..0000000 --- a/snippets/nxml-mode/href +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Anders Bach Nielsen -# name: ... -# key: href -# -- -$2 \ No newline at end of file diff --git a/snippets/nxml-mode/html b/snippets/nxml-mode/html deleted file mode 100644 index 27a19ca..0000000 --- a/snippets/nxml-mode/html +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Anders Bach Nielsen -# name: ... -# key: html -# -- - - $0 - \ No newline at end of file diff --git a/snippets/nxml-mode/img b/snippets/nxml-mode/img deleted file mode 100644 index ec62027..0000000 --- a/snippets/nxml-mode/img +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Anders Bach Nielsen -# name: ... -# key: img -# -- -$2 \ No newline at end of file diff --git a/snippets/nxml-mode/input b/snippets/nxml-mode/input deleted file mode 100644 index 8745e33..0000000 --- a/snippets/nxml-mode/input +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Anders Bach Nielsen -# name: -# key: input -# -- - \ No newline at end of file diff --git a/snippets/nxml-mode/li b/snippets/nxml-mode/li deleted file mode 100644 index dc5e8a4..0000000 --- a/snippets/nxml-mode/li +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Anders Bach Nielsen -# name:
  • ...
  • -# key: li -# -- -
  • $1
  • \ No newline at end of file diff --git a/snippets/nxml-mode/link b/snippets/nxml-mode/link deleted file mode 100644 index 4102f54..0000000 --- a/snippets/nxml-mode/link +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Anders Bach Nielsen -# name: -# key: link -# -- - \ No newline at end of file diff --git a/snippets/nxml-mode/meta/doctype b/snippets/nxml-mode/meta/doctype deleted file mode 100644 index 041cca3..0000000 --- a/snippets/nxml-mode/meta/doctype +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Anders Bach Nielsen -# name: DocType XHTML 1.1 -# key: doctype -# -- - \ No newline at end of file diff --git a/snippets/nxml-mode/meta/doctype.xhtml1_strict b/snippets/nxml-mode/meta/doctype.xhtml1_strict deleted file mode 100644 index 775cb1f..0000000 --- a/snippets/nxml-mode/meta/doctype.xhtml1_strict +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Anders Bach Nielsen -# name: DocType XHTML 1.0 Strict -# key: doctype -# -- - \ No newline at end of file diff --git a/snippets/nxml-mode/meta/doctype.xhtml1_transitional b/snippets/nxml-mode/meta/doctype.xhtml1_transitional deleted file mode 100644 index e09447a..0000000 --- a/snippets/nxml-mode/meta/doctype.xhtml1_transitional +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Anders Bach Nielsen -# name: DocType XHTML 1.0 Transitional -# key: doctype -# -- - \ No newline at end of file diff --git a/snippets/nxml-mode/meta/meta b/snippets/nxml-mode/meta/meta deleted file mode 100644 index b94b7c3..0000000 --- a/snippets/nxml-mode/meta/meta +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Anders Bach Nielsen -# name: -# key: meta -# -- - \ No newline at end of file diff --git a/snippets/nxml-mode/name b/snippets/nxml-mode/name deleted file mode 100644 index 754da4b..0000000 --- a/snippets/nxml-mode/name +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Anders Bach Nielsen -# name: -# key: name -# -- - \ No newline at end of file diff --git a/snippets/nxml-mode/ol b/snippets/nxml-mode/ol deleted file mode 100644 index b08a5ad..0000000 --- a/snippets/nxml-mode/ol +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Anders Bach Nielsen -# name:
      ...
    -# key: ol -# -- -
      - $0 -
    \ No newline at end of file diff --git a/snippets/nxml-mode/p b/snippets/nxml-mode/p deleted file mode 100644 index 4cb9efe..0000000 --- a/snippets/nxml-mode/p +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Anders Bach Nielsen -# name:

    ...

    -# key: p -# -- -

    $1

    \ No newline at end of file diff --git a/snippets/nxml-mode/pre b/snippets/nxml-mode/pre deleted file mode 100644 index 97b9519..0000000 --- a/snippets/nxml-mode/pre +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Anders Bach Nielsen -# name:
    ...
    -# key: pre -# -- -
    -  $0
    -
    \ No newline at end of file diff --git a/snippets/nxml-mode/quote b/snippets/nxml-mode/quote deleted file mode 100644 index 81fb5d3..0000000 --- a/snippets/nxml-mode/quote +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Anders Bach Nielsen -# name:
    ...
    -# key: quote -# -- -
    - $1 -
    \ No newline at end of file diff --git a/snippets/nxml-mode/span b/snippets/nxml-mode/span deleted file mode 100644 index d31a222..0000000 --- a/snippets/nxml-mode/span +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Anders Bach Nielsen -# name: ... -# key: span -# -- -$1 \ No newline at end of file diff --git a/snippets/nxml-mode/style b/snippets/nxml-mode/style deleted file mode 100644 index d3b1f87..0000000 --- a/snippets/nxml-mode/style +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Anders Bach Nielsen -# name: -# key: style -# -- - \ No newline at end of file diff --git a/snippets/nxml-mode/table b/snippets/nxml-mode/table deleted file mode 100644 index 11f8d0c..0000000 --- a/snippets/nxml-mode/table +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Anders Bach Nielsen -# name: ...
    -# key: table -# -- - - $0 -
    \ No newline at end of file diff --git a/snippets/nxml-mode/tag.1l b/snippets/nxml-mode/tag.1l deleted file mode 100644 index 5a7268e..0000000 --- a/snippets/nxml-mode/tag.1l +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Anders Bach Nielsen -# name: ... -# key: tag -# -- -<${1:tag}>$2$0 \ No newline at end of file diff --git a/snippets/nxml-mode/tag.2l b/snippets/nxml-mode/tag.2l deleted file mode 100644 index 0b58b0d..0000000 --- a/snippets/nxml-mode/tag.2l +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Anders Bach Nielsen -# name: \n...\n -# key: tag -# -- -<${1:tag}> - $2 -$0 \ No newline at end of file diff --git a/snippets/nxml-mode/td b/snippets/nxml-mode/td deleted file mode 100644 index 23af321..0000000 --- a/snippets/nxml-mode/td +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Anders Bach Nielsen -# name: ... -# key: td -# -- -$2 \ No newline at end of file diff --git a/snippets/nxml-mode/th b/snippets/nxml-mode/th deleted file mode 100644 index 115882e..0000000 --- a/snippets/nxml-mode/th +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Anders Bach Nielsen -# name: ... -# key: th -# -- -$2 \ No newline at end of file diff --git a/snippets/nxml-mode/title b/snippets/nxml-mode/title deleted file mode 100644 index 22c9b01..0000000 --- a/snippets/nxml-mode/title +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Anders Bach Nielsen -# name: ... -# key: title -# -- -$1 \ No newline at end of file diff --git a/snippets/nxml-mode/tr b/snippets/nxml-mode/tr deleted file mode 100644 index 2689e8c..0000000 --- a/snippets/nxml-mode/tr +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Anders Bach Nielsen -# name: ... -# key: tr -# -- - - $0 - \ No newline at end of file diff --git a/snippets/nxml-mode/ul b/snippets/nxml-mode/ul deleted file mode 100644 index f6f5fba..0000000 --- a/snippets/nxml-mode/ul +++ /dev/null @@ -1,7 +0,0 @@ -# contributor: Anders Bach Nielsen -# name:
      ...
    -# key: ul -# -- -
      - $0 -
    \ No newline at end of file diff --git a/snippets/objc-mode/.yas-parents b/snippets/objc-mode/.yas-parents deleted file mode 100644 index ce9828b..0000000 --- a/snippets/objc-mode/.yas-parents +++ /dev/null @@ -1 +0,0 @@ -cc-mode diff --git a/snippets/objc-mode/prop b/snippets/objc-mode/prop deleted file mode 100644 index bcdf5cb..0000000 --- a/snippets/objc-mode/prop +++ /dev/null @@ -1,14 +0,0 @@ -# name: foo { ... } ; setFoo { ... } -# key: prop -# -- -- (${1:id})${2:foo} -{ - return $2; -} - -- (void)set${2:$(capitalize yas-text)}:($1)aValue -{ - [$2 autorelease]; - $2 = [aValue retain]; -} -$0 \ No newline at end of file diff --git a/snippets/perl-mode/.yas-parents b/snippets/perl-mode/.yas-parents deleted file mode 100644 index eed5b44..0000000 --- a/snippets/perl-mode/.yas-parents +++ /dev/null @@ -1 +0,0 @@ -text-mode diff --git a/snippets/perl-mode/eval b/snippets/perl-mode/eval deleted file mode 100644 index a484014..0000000 --- a/snippets/perl-mode/eval +++ /dev/null @@ -1,9 +0,0 @@ -# name: eval { ... } if ($@) { ... } -# key: eval -# -- -eval { - ${1:# do something risky...} -}; -if (\$@) { - ${2:# handle failure...} -} \ No newline at end of file diff --git a/snippets/perl-mode/for b/snippets/perl-mode/for deleted file mode 100644 index 1ba240f..0000000 --- a/snippets/perl-mode/for +++ /dev/null @@ -1,6 +0,0 @@ -# name: for (...) { ... } -# key: for -# -- -for (my \$${1:var} = 0; \$$1 < ${2:expression}; \$$1++) { - ${3:# body...} -} \ No newline at end of file diff --git a/snippets/perl-mode/fore b/snippets/perl-mode/fore deleted file mode 100644 index c3b81d5..0000000 --- a/snippets/perl-mode/fore +++ /dev/null @@ -1,6 +0,0 @@ -# name: foreach ... { ... } -# key: fore -# -- -foreach my \$${1:x} (@${2:array}) { - ${3:# body...} -} \ No newline at end of file diff --git a/snippets/perl-mode/if b/snippets/perl-mode/if deleted file mode 100644 index 567db90..0000000 --- a/snippets/perl-mode/if +++ /dev/null @@ -1,6 +0,0 @@ -# name: if (...) { ... } -# key: if -# -- -if ($1) { - $0 -} \ No newline at end of file diff --git a/snippets/perl-mode/ife b/snippets/perl-mode/ife deleted file mode 100644 index f278f21..0000000 --- a/snippets/perl-mode/ife +++ /dev/null @@ -1,8 +0,0 @@ -# name: if (...) { ... } else { ... } -# key: ife -# -- -if ($1) { - $2 -} else { - $3 -} \ No newline at end of file diff --git a/snippets/perl-mode/ifee b/snippets/perl-mode/ifee deleted file mode 100644 index d1bf237..0000000 --- a/snippets/perl-mode/ifee +++ /dev/null @@ -1,10 +0,0 @@ -# name: if, elsif, else ... -# key: ifee -# -- -if ($1) { - ${2:# body...} -} elsif ($3) { - ${4:# elsif...} -} else { - ${5:# else...} -} \ No newline at end of file diff --git a/snippets/perl-mode/sub b/snippets/perl-mode/sub deleted file mode 100644 index 05607d6..0000000 --- a/snippets/perl-mode/sub +++ /dev/null @@ -1,6 +0,0 @@ -# name: sub ... { ... } -# key: sub -# -- -sub ${1:function_name} { - $0 -} \ No newline at end of file diff --git a/snippets/perl-mode/unless b/snippets/perl-mode/unless deleted file mode 100644 index f91a652..0000000 --- a/snippets/perl-mode/unless +++ /dev/null @@ -1,6 +0,0 @@ -# name: unless (...) { ... } -# key: unless -# -- -unless ($1) { - $0 -} \ No newline at end of file diff --git a/snippets/perl-mode/while b/snippets/perl-mode/while deleted file mode 100644 index 2744530..0000000 --- a/snippets/perl-mode/while +++ /dev/null @@ -1,6 +0,0 @@ -# name: while (...) { ... } -# key: while -# -- -while ($1) { - $0 -} \ No newline at end of file diff --git a/snippets/perl-mode/xfore b/snippets/perl-mode/xfore deleted file mode 100644 index 018e140..0000000 --- a/snippets/perl-mode/xfore +++ /dev/null @@ -1,4 +0,0 @@ -# name: ... foreach ... -# key: xfore -# -- -${1:expression} foreach @${2:array}; \ No newline at end of file diff --git a/snippets/perl-mode/xif b/snippets/perl-mode/xif deleted file mode 100644 index ca8b563..0000000 --- a/snippets/perl-mode/xif +++ /dev/null @@ -1,4 +0,0 @@ -# name: ... if ... -# key: xif -# -- -${1:expression} if ${2:condition} \ No newline at end of file diff --git a/snippets/perl-mode/xunless b/snippets/perl-mode/xunless deleted file mode 100644 index dbb7d7d..0000000 --- a/snippets/perl-mode/xunless +++ /dev/null @@ -1,4 +0,0 @@ -# name: ... unless ... -# key: xunless -# -- -${1:expression} unless ${2:condition} \ No newline at end of file diff --git a/snippets/perl-mode/xwhile b/snippets/perl-mode/xwhile deleted file mode 100644 index 14c6308..0000000 --- a/snippets/perl-mode/xwhile +++ /dev/null @@ -1,4 +0,0 @@ -# name: ... while ... -# key: xwhile -# -- -${1:expression} while ${2:condition}; \ No newline at end of file diff --git a/snippets/python-mode/.yas-parents b/snippets/python-mode/.yas-parents deleted file mode 100644 index eed5b44..0000000 --- a/snippets/python-mode/.yas-parents +++ /dev/null @@ -1 +0,0 @@ -text-mode diff --git a/snippets/python-mode/__ b/snippets/python-mode/__ deleted file mode 100644 index 0253b02..0000000 --- a/snippets/python-mode/__ +++ /dev/null @@ -1,4 +0,0 @@ -# name: __...__ -# key: __ -# -- -__${init}__ \ No newline at end of file diff --git a/snippets/python-mode/class b/snippets/python-mode/class deleted file mode 100644 index 602d40d..0000000 --- a/snippets/python-mode/class +++ /dev/null @@ -1,55 +0,0 @@ -# -*- coding: utf-8 -*- -# name: class -# contributor: Orestis Markou -# contributor: Nishio Hirokazu -# contributor: Yasser González Fernández -# key: class -# -- -class ${1:ClassName}(${2:object}): - """$3 - """ - - def __init__(self, $4): - """$5 - ${4:$ - (let* ((indent - (concat "\n" (make-string (current-column) 32))) - (args - (mapconcat - '(lambda (x) - (if (not (string= (nth 0 x) "")) - (concat "- " (char-to-string 96) (nth 0 x) - (char-to-string 96) ":"))) - (mapcar - '(lambda (x) - (mapcar - (lambda (x) - (replace-regexp-in-string "[[:blank:]]*$" "" - (replace-regexp-in-string "^[[:blank:]]*" "" x))) x)) - (mapcar '(lambda (x) (split-string x "=")) - (split-string yas-text ","))) - indent))) - (if (string= args "") - (make-string 3 34) - (mapconcat - 'identity - (list "" "Arguments:" args (make-string 3 34)) - indent))) - } - ${4:$ - (mapconcat - '(lambda (x) - (if (not (string= (nth 0 x) "")) - (concat "self._" (nth 0 x) " = " (nth 0 x)))) - (mapcar - '(lambda (x) - (mapcar - '(lambda (x) - (replace-regexp-in-string "[[:blank:]]*$" "" - (replace-regexp-in-string "^[[:blank:]]*" "" x))) - x)) - (mapcar '(lambda (x) (split-string x "=")) - (split-string yas-text ","))) - (concat "\n" (make-string (current-column) 32))) - } - $0 \ No newline at end of file diff --git a/snippets/python-mode/def b/snippets/python-mode/def deleted file mode 100644 index 5e37469..0000000 --- a/snippets/python-mode/def +++ /dev/null @@ -1,36 +0,0 @@ -# -*- coding: utf-8 -*- -# name: def -# contributor: Orestis Markou -# contributor: Yasser González Fernández -# key: def -# -- -def ${1:name}($2): - """$3 - ${2:$ - (let* - ((indent - (concat "\n" (make-string (current-column) 32))) - (args - (mapconcat - '(lambda (x) - (if (not (string= (nth 0 x) "")) - (concat "- " (char-to-string 96) (nth 0 x) - (char-to-string 96) ":"))) - (mapcar - '(lambda (x) - (mapcar - '(lambda (x) - (replace-regexp-in-string "[[:blank:]]*$" "" - (replace-regexp-in-string "^[[:blank:]]*" "" x))) - x)) - (mapcar '(lambda (x) (split-string x "=")) - (split-string yas-text ","))) - indent))) - (if (string= args "") - (make-string 3 34) - (mapconcat - 'identity - (list "" "Arguments:" args (make-string 3 34)) - indent))) - } - $0 \ No newline at end of file diff --git a/snippets/python-mode/defm b/snippets/python-mode/defm deleted file mode 100644 index a2459bb..0000000 --- a/snippets/python-mode/defm +++ /dev/null @@ -1,34 +0,0 @@ -# -*- coding: utf-8 -*- -# name: defm -# contributor: Yasser Gonz¨¢lez Fern¨¢ndez -# key: defm -# -- -def ${1:name}(self, $2): - """$3 - ${2:$ - (let* ((indent - (concat "\n" (make-string (current-column) 32))) - (args - (mapconcat - '(lambda (x) - (if (not (string= (nth 0 x) "")) - (concat "- " (char-to-string 96) (nth 0 x) - (char-to-string 96) ":"))) - (mapcar - '(lambda (x) - (mapcar - '(lambda (x) - (replace-regexp-in-string "[[:blank:]]*$" "" - (replace-regexp-in-string "^[[:blank:]]*" "" x))) - x)) - (mapcar '(lambda (x) (split-string x "=")) - (split-string yas-text ","))) - indent))) - (if (string= args "") - (make-string 3 34) - (mapconcat - 'identity - (list "" "Arguments:" args (make-string 3 34)) - indent))) - } - $0 \ No newline at end of file diff --git a/snippets/python-mode/for b/snippets/python-mode/for deleted file mode 100644 index 7c78b5e..0000000 --- a/snippets/python-mode/for +++ /dev/null @@ -1,5 +0,0 @@ -# name: for ... in ... : ... -# key: for -# -- -for ${var} in ${collection}: - $0 \ No newline at end of file diff --git a/snippets/python-mode/ifmain b/snippets/python-mode/ifmain deleted file mode 100644 index 68ed20b..0000000 --- a/snippets/python-mode/ifmain +++ /dev/null @@ -1,5 +0,0 @@ -# name: if __name__ == '__main__': ... -# key: ifmain -# -- -if __name__ == '__main__': - $0 \ No newline at end of file diff --git a/snippets/python-mode/prop b/snippets/python-mode/prop deleted file mode 100644 index ec96633..0000000 --- a/snippets/python-mode/prop +++ /dev/null @@ -1,16 +0,0 @@ -# contributor: Mads D. Kristensen -# name: prop -# key: prop -# -- -def ${1:foo}(): - doc = """${2:Doc string}""" - def fget(self): - return self._$1 - def fset(self, value): - self._$1 = value - def fdel(self): - del self._$1 - return locals() -$1 = property(**$1()) - -$0 \ No newline at end of file diff --git a/snippets/python-mode/propg b/snippets/python-mode/propg deleted file mode 100644 index e89d4e4..0000000 --- a/snippets/python-mode/propg +++ /dev/null @@ -1,10 +0,0 @@ -# contributor: Julio Carlos Menendez -# name: _get_foo ... foo=property(...) -# key: propg -# -- -def _get_${1:foo}(self): - return self._$1 - -$1 = property(_get_$1) - -$0 \ No newline at end of file diff --git a/snippets/python-mode/propsg b/snippets/python-mode/propsg deleted file mode 100644 index 876c139..0000000 --- a/snippets/python-mode/propsg +++ /dev/null @@ -1,13 +0,0 @@ -# contributor: Julio Carlos Menendez -# name: _get_foo ... _set_foo ... foo=property(...) -# key: propsg -# -- -def _set_${1:foo}(self, value): - self._$1 = value - -def _get_$1(self): - return self._$1 - -$1 = property(_get_$1, _set_$1) - -$0 \ No newline at end of file diff --git a/snippets/python-mode/while b/snippets/python-mode/while deleted file mode 100644 index 39452bb..0000000 --- a/snippets/python-mode/while +++ /dev/null @@ -1,5 +0,0 @@ -# name: while ... : ... -# key: while -# -- -while ${condition}: - $0 \ No newline at end of file diff --git a/snippets/rst-mode/.yas-parents b/snippets/rst-mode/.yas-parents deleted file mode 100644 index eed5b44..0000000 --- a/snippets/rst-mode/.yas-parents +++ /dev/null @@ -1 +0,0 @@ -text-mode diff --git a/snippets/rst-mode/chap b/snippets/rst-mode/chap deleted file mode 100644 index 26a8e75..0000000 --- a/snippets/rst-mode/chap +++ /dev/null @@ -1,7 +0,0 @@ -# name: Chapter title -# key: chap -# -- -${1:Chapter} -${1:$(make-string (string-width yas-text) ?\=)} - -$0 \ No newline at end of file diff --git a/snippets/rst-mode/sec b/snippets/rst-mode/sec deleted file mode 100644 index 807931e..0000000 --- a/snippets/rst-mode/sec +++ /dev/null @@ -1,7 +0,0 @@ -# name: Section title -# key: sec -# -- -${1:Section} -${1:$(make-string (string-width yas-text) ?\-)} - -$0 \ No newline at end of file diff --git a/snippets/rst-mode/tit b/snippets/rst-mode/tit deleted file mode 100644 index 3a33bac..0000000 --- a/snippets/rst-mode/tit +++ /dev/null @@ -1,8 +0,0 @@ -# name: Document title -# key: tit -# -- -${1:$(make-string (string-width yas-text) ?\=)} -${1:Title} -${1:$(make-string (string-width yas-text) ?\=)} - -$0 \ No newline at end of file diff --git a/snippets/ruby-mode/.yas-make-groups b/snippets/ruby-mode/.yas-make-groups deleted file mode 100644 index e69de29..0000000 diff --git a/snippets/ruby-mode/.yas-parents b/snippets/ruby-mode/.yas-parents deleted file mode 100644 index eed5b44..0000000 --- a/snippets/ruby-mode/.yas-parents +++ /dev/null @@ -1 +0,0 @@ -text-mode diff --git a/snippets/ruby-mode/collections/all b/snippets/ruby-mode/collections/all deleted file mode 100644 index c1e3089..0000000 --- a/snippets/ruby-mode/collections/all +++ /dev/null @@ -1,4 +0,0 @@ -# name: all? { |...| ... } -# key: all -# -- -all? { |${e}| $0 } \ No newline at end of file diff --git a/snippets/ruby-mode/collections/any b/snippets/ruby-mode/collections/any deleted file mode 100644 index c2d3a4b..0000000 --- a/snippets/ruby-mode/collections/any +++ /dev/null @@ -1,4 +0,0 @@ -# name: any? { |...| ... } -# key: any -# -- -any? { |${e}| $0 } \ No newline at end of file diff --git a/snippets/ruby-mode/collections/classify b/snippets/ruby-mode/collections/classify deleted file mode 100644 index 363746f..0000000 --- a/snippets/ruby-mode/collections/classify +++ /dev/null @@ -1,4 +0,0 @@ -# name: classify { |...| ... } -# key: classify -# -- -classify { |${e}| $0 } \ No newline at end of file diff --git a/snippets/ruby-mode/collections/collect b/snippets/ruby-mode/collections/collect deleted file mode 100644 index fb6aefa..0000000 --- a/snippets/ruby-mode/collections/collect +++ /dev/null @@ -1,4 +0,0 @@ -# name: collect { |...| ... } -# key: collect -# -- -collect { |${e}| $0 } \ No newline at end of file diff --git a/snippets/ruby-mode/collections/deli b/snippets/ruby-mode/collections/deli deleted file mode 100644 index 2fb3749..0000000 --- a/snippets/ruby-mode/collections/deli +++ /dev/null @@ -1,4 +0,0 @@ -# name: delete_if { |...| ... } -# key: deli -# -- -delete_if { |${e} $0 } \ No newline at end of file diff --git a/snippets/ruby-mode/collections/det b/snippets/ruby-mode/collections/det deleted file mode 100644 index 5964efb..0000000 --- a/snippets/ruby-mode/collections/det +++ /dev/null @@ -1,4 +0,0 @@ -# name: detect { |...| ... } -# key: det -# -- -detect { |${e}| $0 } \ No newline at end of file diff --git a/snippets/ruby-mode/collections/ea b/snippets/ruby-mode/collections/ea deleted file mode 100644 index 9f8cf90..0000000 --- a/snippets/ruby-mode/collections/ea +++ /dev/null @@ -1,4 +0,0 @@ -# name: each { |...| ... } -# key: ea -# -- -each { |${e}| $0 } \ No newline at end of file diff --git a/snippets/ruby-mode/collections/eac b/snippets/ruby-mode/collections/eac deleted file mode 100644 index 9a45e24..0000000 --- a/snippets/ruby-mode/collections/eac +++ /dev/null @@ -1,4 +0,0 @@ -# name: each_cons(...) { |...| ... } -# key: eac -# -- -each_cons(${1:2}) { |${group}| $0 } \ No newline at end of file diff --git a/snippets/ruby-mode/collections/eai b/snippets/ruby-mode/collections/eai deleted file mode 100644 index 3ad66a7..0000000 --- a/snippets/ruby-mode/collections/eai +++ /dev/null @@ -1,4 +0,0 @@ -# name: each_index { |i| ... } -# key: eai -# -- -each_index { |${i}| $0 } \ No newline at end of file diff --git a/snippets/ruby-mode/collections/eav b/snippets/ruby-mode/collections/eav deleted file mode 100644 index cb2ebdc..0000000 --- a/snippets/ruby-mode/collections/eav +++ /dev/null @@ -1,4 +0,0 @@ -# name: each_value { |val| ... } -# key: eav -# -- -each_value { |${val}| $0 } \ No newline at end of file diff --git a/snippets/ruby-mode/collections/eawi b/snippets/ruby-mode/collections/eawi deleted file mode 100644 index c3b689a..0000000 --- a/snippets/ruby-mode/collections/eawi +++ /dev/null @@ -1,4 +0,0 @@ -# name: each_with_index { |e, i| ... } -# key: eawi -# -- -each_with_index { |${e}, ${i}| $0 } \ No newline at end of file diff --git a/snippets/ruby-mode/collections/inject b/snippets/ruby-mode/collections/inject deleted file mode 100644 index 71adb00..0000000 --- a/snippets/ruby-mode/collections/inject +++ /dev/null @@ -1,4 +0,0 @@ -# name: inject(...) { |...| ... } -# key: inject -# -- -inject(${1:0}) { |${2:injection}, ${3:element}| $0 } \ No newline at end of file diff --git a/snippets/ruby-mode/collections/reject b/snippets/ruby-mode/collections/reject deleted file mode 100644 index 8ba6518..0000000 --- a/snippets/ruby-mode/collections/reject +++ /dev/null @@ -1,4 +0,0 @@ -# name: reject { |...| ... } -# key: reject -# -- -reject { |${1:element}| $0 } \ No newline at end of file diff --git a/snippets/ruby-mode/collections/select b/snippets/ruby-mode/collections/select deleted file mode 100644 index ce30ac5..0000000 --- a/snippets/ruby-mode/collections/select +++ /dev/null @@ -1,4 +0,0 @@ -# name: select { |...| ... } -# key: select -# -- -select { |${1:element}| $0 } \ No newline at end of file diff --git a/snippets/ruby-mode/collections/zip b/snippets/ruby-mode/collections/zip deleted file mode 100644 index 8081d79..0000000 --- a/snippets/ruby-mode/collections/zip +++ /dev/null @@ -1,4 +0,0 @@ -#name : zip(...) { |...| ... } -# key: zip -# -- -zip(${enums}) { |${row}| $0 } \ No newline at end of file diff --git a/snippets/ruby-mode/control structure/forin b/snippets/ruby-mode/control structure/forin deleted file mode 100644 index c69f8d6..0000000 --- a/snippets/ruby-mode/control structure/forin +++ /dev/null @@ -1,6 +0,0 @@ -# name: for ... in ...; ... end -# key: forin -# -- -for ${1:element} in ${2:collection} - $0 -end \ No newline at end of file diff --git a/snippets/ruby-mode/control structure/if b/snippets/ruby-mode/control structure/if deleted file mode 100644 index b1ad4fc..0000000 --- a/snippets/ruby-mode/control structure/if +++ /dev/null @@ -1,6 +0,0 @@ -# name: if ... end -# key: if -# -- -if ${1:condition} - $0 -end \ No newline at end of file diff --git a/snippets/ruby-mode/control structure/ife b/snippets/ruby-mode/control structure/ife deleted file mode 100644 index 946b71c..0000000 --- a/snippets/ruby-mode/control structure/ife +++ /dev/null @@ -1,8 +0,0 @@ -# name: if ... else ... end -# key: ife -# -- -if ${1:condition} - $2 -else - $3 -end \ No newline at end of file diff --git a/snippets/ruby-mode/control structure/tim b/snippets/ruby-mode/control structure/tim deleted file mode 100644 index 5844974..0000000 --- a/snippets/ruby-mode/control structure/tim +++ /dev/null @@ -1,4 +0,0 @@ -# name: times { |n| ... } -# key: tim -# -- -times { |${n}| $0 } \ No newline at end of file diff --git a/snippets/ruby-mode/control structure/until b/snippets/ruby-mode/control structure/until deleted file mode 100644 index 99d34b5..0000000 --- a/snippets/ruby-mode/control structure/until +++ /dev/null @@ -1,6 +0,0 @@ -# name: until ... end -# key: until -# -- -until ${condition} - $0 -end \ No newline at end of file diff --git a/snippets/ruby-mode/control structure/upt b/snippets/ruby-mode/control structure/upt deleted file mode 100644 index cadc40d..0000000 --- a/snippets/ruby-mode/control structure/upt +++ /dev/null @@ -1,6 +0,0 @@ -# name: upto(...) { |n| ... } -# key: upt -# -- -upto(${n}) { |${i}| - $0 -} \ No newline at end of file diff --git a/snippets/ruby-mode/control structure/when b/snippets/ruby-mode/control structure/when deleted file mode 100644 index c11b6a5..0000000 --- a/snippets/ruby-mode/control structure/when +++ /dev/null @@ -1,6 +0,0 @@ -# name: when ... end -# key: when -# -- -when ${condition} - $0 -end \ No newline at end of file diff --git a/snippets/ruby-mode/control structure/while b/snippets/ruby-mode/control structure/while deleted file mode 100644 index 920a08a..0000000 --- a/snippets/ruby-mode/control structure/while +++ /dev/null @@ -1,6 +0,0 @@ -# name: while ... end -# key: while -# -- -while ${condition} - $0 -end \ No newline at end of file diff --git a/snippets/ruby-mode/definitions/Comp b/snippets/ruby-mode/definitions/Comp deleted file mode 100644 index 112ebae..0000000 --- a/snippets/ruby-mode/definitions/Comp +++ /dev/null @@ -1,8 +0,0 @@ -# name: include Comparable; def <=> ... end -# key: Comp -# -- -include Comparable - -def <=> other - $0 -end \ No newline at end of file diff --git a/snippets/ruby-mode/definitions/am b/snippets/ruby-mode/definitions/am deleted file mode 100644 index c6b846d..0000000 --- a/snippets/ruby-mode/definitions/am +++ /dev/null @@ -1,4 +0,0 @@ -# name: alias_method new, old -# key: am -# -- -alias_method :${new_name}, :${old_name} \ No newline at end of file diff --git a/snippets/ruby-mode/definitions/cla b/snippets/ruby-mode/definitions/cla deleted file mode 100644 index d2c8ff8..0000000 --- a/snippets/ruby-mode/definitions/cla +++ /dev/null @@ -1,6 +0,0 @@ -# name: class << self ... end -# key: cla -# -- -class << ${self} - $0 -end \ No newline at end of file diff --git a/snippets/ruby-mode/definitions/cls b/snippets/ruby-mode/definitions/cls deleted file mode 100644 index 19754a7..0000000 --- a/snippets/ruby-mode/definitions/cls +++ /dev/null @@ -1,13 +0,0 @@ -# name: class ... end -# contributor: hitesh -# key: cls -# -- -class ${1:`(let ((fn (capitalize (file-name-nondirectory - (file-name-sans-extension - (or (buffer-file-name) - (buffer-name (current-buffer)))))))) - (cond - ((string-match "_" fn) (replace-match "" nil nil fn)) - (t fn)))`} - $0 -end \ No newline at end of file diff --git a/snippets/ruby-mode/definitions/mm b/snippets/ruby-mode/definitions/mm deleted file mode 100644 index 752b3ce..0000000 --- a/snippets/ruby-mode/definitions/mm +++ /dev/null @@ -1,6 +0,0 @@ -# name: def method_missing ... end -# key: mm -# -- -def method_missing(method, *args) - $0 -end \ No newline at end of file diff --git a/snippets/ruby-mode/definitions/mod b/snippets/ruby-mode/definitions/mod deleted file mode 100644 index 118400c..0000000 --- a/snippets/ruby-mode/definitions/mod +++ /dev/null @@ -1,13 +0,0 @@ -# name: module ... end -# contributor: hitesh , jimeh -# key: mod -# -- -module ${1:`(let ((fn (capitalize (file-name-nondirectory - (file-name-sans-extension - (or (buffer-file-name) - (buffer-name (current-buffer)))))))) - (cond - ((string-match "_" fn) (replace-match "" nil nil fn)) - (t fn)))`} - $0 -end \ No newline at end of file diff --git a/snippets/ruby-mode/definitions/r b/snippets/ruby-mode/definitions/r deleted file mode 100644 index 5f9c093..0000000 --- a/snippets/ruby-mode/definitions/r +++ /dev/null @@ -1,4 +0,0 @@ -# name: attr_reader ... -# key: r -# -- -attr_reader : \ No newline at end of file diff --git a/snippets/ruby-mode/definitions/rw b/snippets/ruby-mode/definitions/rw deleted file mode 100644 index ac72bcf..0000000 --- a/snippets/ruby-mode/definitions/rw +++ /dev/null @@ -1,4 +0,0 @@ -# name: attr_accessor ... -# key: rw -# -- -attr_accessor : \ No newline at end of file diff --git a/snippets/ruby-mode/definitions/w b/snippets/ruby-mode/definitions/w deleted file mode 100644 index a2f95c8..0000000 --- a/snippets/ruby-mode/definitions/w +++ /dev/null @@ -1,4 +0,0 @@ -# name: attr_writer ... -# key: w -# -- -attr_writer : \ No newline at end of file diff --git a/snippets/ruby-mode/general/# b/snippets/ruby-mode/general/# deleted file mode 100644 index 6e9c0e0..0000000 --- a/snippets/ruby-mode/general/# +++ /dev/null @@ -1,4 +0,0 @@ -# name: # => -# key: # -# -- -# => \ No newline at end of file diff --git a/snippets/ruby-mode/general/=b b/snippets/ruby-mode/general/=b deleted file mode 100644 index 4334e9b..0000000 --- a/snippets/ruby-mode/general/=b +++ /dev/null @@ -1,6 +0,0 @@ -# name: =begin rdoc ... =end -# key: =b -# -- -=begin rdoc - $0 -=end \ No newline at end of file diff --git a/snippets/ruby-mode/general/app b/snippets/ruby-mode/general/app deleted file mode 100644 index 6d5f488..0000000 --- a/snippets/ruby-mode/general/app +++ /dev/null @@ -1,6 +0,0 @@ -# name: if __FILE__ == $PROGRAM_NAME ... end -# key: app -# -- -if __FILE__ == $PROGRAM_NAME - $0 -end \ No newline at end of file diff --git a/snippets/ruby-mode/general/bm b/snippets/ruby-mode/general/bm deleted file mode 100644 index 83907d2..0000000 --- a/snippets/ruby-mode/general/bm +++ /dev/null @@ -1,6 +0,0 @@ -# name: Benchmark.bmbm(...) do ... end -# key: bm -# -- -Benchmark.bmbm(${1:10}) do |x| - $0 -end \ No newline at end of file diff --git a/snippets/ruby-mode/general/case b/snippets/ruby-mode/general/case deleted file mode 100644 index f7ecb21..0000000 --- a/snippets/ruby-mode/general/case +++ /dev/null @@ -1,7 +0,0 @@ -# name: case ... end -# key: case -# -- -case ${1:object} -when ${2:condition} - $0 -end \ No newline at end of file diff --git a/snippets/ruby-mode/general/dee b/snippets/ruby-mode/general/dee deleted file mode 100644 index d3bf695..0000000 --- a/snippets/ruby-mode/general/dee +++ /dev/null @@ -1,4 +0,0 @@ -# name: deep_copy(...) -# key: dee -# -- -Marshal.load(Marshal.dump($0)) \ No newline at end of file diff --git a/snippets/ruby-mode/general/rb b/snippets/ruby-mode/general/rb deleted file mode 100644 index 55a5ac6..0000000 --- a/snippets/ruby-mode/general/rb +++ /dev/null @@ -1,4 +0,0 @@ -# name: /usr/bin/ruby -wKU -# key: rb -# -- -#!/usr/bin/ruby -wKU \ No newline at end of file diff --git a/snippets/ruby-mode/general/req b/snippets/ruby-mode/general/req deleted file mode 100644 index 464b521..0000000 --- a/snippets/ruby-mode/general/req +++ /dev/null @@ -1,4 +0,0 @@ -# name: require "..." -# key: req -# -- -require "$0" \ No newline at end of file diff --git a/snippets/ruby-mode/general/rreq b/snippets/ruby-mode/general/rreq deleted file mode 100644 index b676648..0000000 --- a/snippets/ruby-mode/general/rreq +++ /dev/null @@ -1,4 +0,0 @@ -# name: require File.join(File.dirname(__FILE__), ...) -# key: rreq -# -- -require File.join(File.dirname(__FILE__), $0) \ No newline at end of file diff --git a/snippets/ruby-mode/general/y b/snippets/ruby-mode/general/y deleted file mode 100644 index 0085c9e..0000000 --- a/snippets/ruby-mode/general/y +++ /dev/null @@ -1,4 +0,0 @@ -# name: :yields: arguments (rdoc) -# key: y -# -- -:yields: $0 \ No newline at end of file diff --git a/snippets/scala-mode/.yas-parents b/snippets/scala-mode/.yas-parents deleted file mode 100644 index eed5b44..0000000 --- a/snippets/scala-mode/.yas-parents +++ /dev/null @@ -1 +0,0 @@ -text-mode diff --git a/snippets/scala-mode/act b/snippets/scala-mode/act deleted file mode 100644 index d3fc196..0000000 --- a/snippets/scala-mode/act +++ /dev/null @@ -1,11 +0,0 @@ -# Author: Jonas Bonèr -# name: def act = { ..} -# key: act -# -- -def act = { - loop { - react { - $0 - } - } -} \ No newline at end of file diff --git a/snippets/scala-mode/act.arg b/snippets/scala-mode/act.arg deleted file mode 100644 index 45369ab..0000000 --- a/snippets/scala-mode/act.arg +++ /dev/null @@ -1,11 +0,0 @@ -# Author: Jonas Bonèr -# name: def act(arg: T) = { ..} -# key: act -# -- -def act(${1:arg}: ${2:type}) = { - loop { - react { - $0 - } - } -} \ No newline at end of file diff --git a/snippets/scala-mode/actor b/snippets/scala-mode/actor deleted file mode 100644 index eb1ecef..0000000 --- a/snippets/scala-mode/actor +++ /dev/null @@ -1,11 +0,0 @@ -# Author: Jonas Bonèr -# name: val a = actor { ..} -# key: actor -# -- -val a = actor { - loop { - react { - $0 - } - } -} \ No newline at end of file diff --git a/snippets/scala-mode/ano b/snippets/scala-mode/ano deleted file mode 100644 index 6c78812..0000000 --- a/snippets/scala-mode/ano +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: (args) => ... -# key: ano -# -- -($1) => ${2:body} $0 \ No newline at end of file diff --git a/snippets/scala-mode/app b/snippets/scala-mode/app deleted file mode 100644 index f177cd1..0000000 --- a/snippets/scala-mode/app +++ /dev/null @@ -1,7 +0,0 @@ -# Author: Anders Bach Nielsen -# name: object name extends Application -# key: app -# -- -object ${1:name} extends Application { - $0 -} \ No newline at end of file diff --git a/snippets/scala-mode/arr.new b/snippets/scala-mode/arr.new deleted file mode 100644 index 6e17e73..0000000 --- a/snippets/scala-mode/arr.new +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: Array[T](..) -# key: arr -# -- -Array[${1:value}](${2:args}) $0 \ No newline at end of file diff --git a/snippets/scala-mode/arr.val-new b/snippets/scala-mode/arr.val-new deleted file mode 100644 index 2736b5f..0000000 --- a/snippets/scala-mode/arr.val-new +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: val a = Array[T](..) -# key: arr -# -- -val ${1:arr} = Array[${2:value}](${3:args}) $0 \ No newline at end of file diff --git a/snippets/scala-mode/asof b/snippets/scala-mode/asof deleted file mode 100644 index 4f9550e..0000000 --- a/snippets/scala-mode/asof +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: asInstanceOf[T] -# key: asof -# -- -asInstanceOf[${1:type}] $0 \ No newline at end of file diff --git a/snippets/scala-mode/ass b/snippets/scala-mode/ass deleted file mode 100644 index b4640a3..0000000 --- a/snippets/scala-mode/ass +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: assert(x === y) -# key: ass -# -- -assert(${1:x} === ${2:y}) $0 \ No newline at end of file diff --git a/snippets/scala-mode/ass.true b/snippets/scala-mode/ass.true deleted file mode 100644 index 76f8226..0000000 --- a/snippets/scala-mode/ass.true +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: assert(true) -# key: ass -# -- -assert(true) $0 \ No newline at end of file diff --git a/snippets/scala-mode/at.author b/snippets/scala-mode/at.author deleted file mode 100644 index ba70f63..0000000 --- a/snippets/scala-mode/at.author +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Anders Bach Nielsen -# name: @author name -# key: at -# -- -@author ${1:name} $0 \ No newline at end of file diff --git a/snippets/scala-mode/at.param b/snippets/scala-mode/at.param deleted file mode 100644 index 89a5b0b..0000000 --- a/snippets/scala-mode/at.param +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Anders Bach Nielsen -# name: @param name description -# key: at -# -- -@param ${1:name} ${2:description} $0 \ No newline at end of file diff --git a/snippets/scala-mode/at.return b/snippets/scala-mode/at.return deleted file mode 100644 index a027516..0000000 --- a/snippets/scala-mode/at.return +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Anders Bach Nielsen -# name: @return description -# key: at -# -- -@return ${1:description} $0 \ No newline at end of file diff --git a/snippets/scala-mode/at.version b/snippets/scala-mode/at.version deleted file mode 100644 index a202706..0000000 --- a/snippets/scala-mode/at.version +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Anders Bach Nielsen -# name: @version number -# key: at -# -- -@version ${1:0.1} $0 \ No newline at end of file diff --git a/snippets/scala-mode/bang b/snippets/scala-mode/bang deleted file mode 100644 index b5c94ad..0000000 --- a/snippets/scala-mode/bang +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: actor ! message -# key: bang -# -- -${1:actor} ! ${2:message} $0 \ No newline at end of file diff --git a/snippets/scala-mode/case b/snippets/scala-mode/case deleted file mode 100644 index aa6da32..0000000 --- a/snippets/scala-mode/case +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: case pattern => -# key: case -# -- -case ${1:pattern} => $0 \ No newline at end of file diff --git a/snippets/scala-mode/case.match-all b/snippets/scala-mode/case.match-all deleted file mode 100644 index 013b8f6..0000000 --- a/snippets/scala-mode/case.match-all +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: case _ => -# key: case -# -- -case _ => $0 \ No newline at end of file diff --git a/snippets/scala-mode/cast b/snippets/scala-mode/cast deleted file mode 100644 index f89a508..0000000 --- a/snippets/scala-mode/cast +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: asInstanceOf[T] -# key: cast -# -- -asInstanceOf[${1:type}] $0 \ No newline at end of file diff --git a/snippets/scala-mode/cc b/snippets/scala-mode/cc deleted file mode 100644 index cfc727c..0000000 --- a/snippets/scala-mode/cc +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: case class T(arg: A) -# key: cc -# -- -case class ${1:name}(${2:arg}: ${3:type}) $0 \ No newline at end of file diff --git a/snippets/scala-mode/cl b/snippets/scala-mode/cl deleted file mode 100644 index d597400..0000000 --- a/snippets/scala-mode/cl +++ /dev/null @@ -1,7 +0,0 @@ -# Author: Jonas Bonèr -# name: class T { .. } -# key: cl -# -- -class ${1:name} { - $0 -} \ No newline at end of file diff --git a/snippets/scala-mode/cl.abs b/snippets/scala-mode/cl.abs deleted file mode 100644 index 9ea9fe2..0000000 --- a/snippets/scala-mode/cl.abs +++ /dev/null @@ -1,7 +0,0 @@ -# Author: Jonas Bonèr -# name: abstract class T { .. } -# key: cl -# -- -abstract class ${1:name} { - $0 -} \ No newline at end of file diff --git a/snippets/scala-mode/cl.abs-arg b/snippets/scala-mode/cl.abs-arg deleted file mode 100644 index 98cf760..0000000 --- a/snippets/scala-mode/cl.abs-arg +++ /dev/null @@ -1,7 +0,0 @@ -# Author: Jonas Bonèr -# name: abstract class T(args) { .. } -# key: cl -# -- -abstract class ${1:name}(${2:args}) { - $0 -} \ No newline at end of file diff --git a/snippets/scala-mode/cl.arg b/snippets/scala-mode/cl.arg deleted file mode 100644 index 1b9d729..0000000 --- a/snippets/scala-mode/cl.arg +++ /dev/null @@ -1,7 +0,0 @@ -# Author: Jonas Bonèr -# name: class T(args) { .. } -# key: cl -# -- -class ${1:name}(${2:args}) { - $0 -} \ No newline at end of file diff --git a/snippets/scala-mode/clof b/snippets/scala-mode/clof deleted file mode 100644 index 7d5a35d..0000000 --- a/snippets/scala-mode/clof +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: classOf[T] -# key: clof -# -- -classOf[${1:type}] $0 \ No newline at end of file diff --git a/snippets/scala-mode/co b/snippets/scala-mode/co deleted file mode 100644 index 3ad6f79..0000000 --- a/snippets/scala-mode/co +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: case object T -# key: co -# -- -case object ${1:name} $0 \ No newline at end of file diff --git a/snippets/scala-mode/cons b/snippets/scala-mode/cons deleted file mode 100644 index 601a1a4..0000000 --- a/snippets/scala-mode/cons +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: element1 :: element2 -# key: cons -# -- -${1:element1} :: ${2:element2} $0 \ No newline at end of file diff --git a/snippets/scala-mode/cons.nil b/snippets/scala-mode/cons.nil deleted file mode 100644 index 60ac028..0000000 --- a/snippets/scala-mode/cons.nil +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: element1 :: Nil -# key: cons -# -- -${1:element1} :: Nil $0 \ No newline at end of file diff --git a/snippets/scala-mode/def.arg b/snippets/scala-mode/def.arg deleted file mode 100644 index be5403b..0000000 --- a/snippets/scala-mode/def.arg +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: def f(arg: T) = ... -# key: def -# -- -def ${1:name}(${2:args}) = $0 \ No newline at end of file diff --git a/snippets/scala-mode/def.arg-body b/snippets/scala-mode/def.arg-body deleted file mode 100644 index 8dcbb81..0000000 --- a/snippets/scala-mode/def.arg-body +++ /dev/null @@ -1,7 +0,0 @@ -# Author: Jonas Bonèr -# name: def f(arg: T) = {...} -# key: def -# -- -def ${1:name}(${2:args}) = { - $0 -} \ No newline at end of file diff --git a/snippets/scala-mode/def.arg-ret b/snippets/scala-mode/def.arg-ret deleted file mode 100644 index 4ad27ce..0000000 --- a/snippets/scala-mode/def.arg-ret +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: def f(arg: T): R = ... -# key: def -# -- -def ${1:name}(${2:args}): ${3:Unit} = $0 \ No newline at end of file diff --git a/snippets/scala-mode/def.arg-ret-body b/snippets/scala-mode/def.arg-ret-body deleted file mode 100644 index 2ffcf4b..0000000 --- a/snippets/scala-mode/def.arg-ret-body +++ /dev/null @@ -1,7 +0,0 @@ -# Author: Jonas Bonèr -# name: def f(arg: T): R = {...} -# key: def -# -- -def ${1:name}(${2:args}): ${3:Unit} = { - $0 -} \ No newline at end of file diff --git a/snippets/scala-mode/def.body b/snippets/scala-mode/def.body deleted file mode 100644 index c43aea4..0000000 --- a/snippets/scala-mode/def.body +++ /dev/null @@ -1,7 +0,0 @@ -# Author: Jonas Bonèr -# name: def f = {...} -# key: def -# -- -def ${1:name} = { - $0 -} \ No newline at end of file diff --git a/snippets/scala-mode/def.ret b/snippets/scala-mode/def.ret deleted file mode 100644 index 719dc69..0000000 --- a/snippets/scala-mode/def.ret +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: def f: R = ... -# key: def -# -- -def ${1:name}: ${2:Unit} = $0 \ No newline at end of file diff --git a/snippets/scala-mode/def.ret-body b/snippets/scala-mode/def.ret-body deleted file mode 100644 index d8ee456..0000000 --- a/snippets/scala-mode/def.ret-body +++ /dev/null @@ -1,7 +0,0 @@ -# Author: Jonas Bonèr -# name: def f: R = {...} -# key: def -# -- -def ${1:name}: ${3:Unit} = { - $0 -} \ No newline at end of file diff --git a/snippets/scala-mode/def.simple b/snippets/scala-mode/def.simple deleted file mode 100644 index c956bbf..0000000 --- a/snippets/scala-mode/def.simple +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: def f = ... -# key: def -# -- -def ${1:name} = $0 \ No newline at end of file diff --git a/snippets/scala-mode/doc.class b/snippets/scala-mode/doc.class deleted file mode 100644 index 9571f1d..0000000 --- a/snippets/scala-mode/doc.class +++ /dev/null @@ -1,9 +0,0 @@ -# Author: Anders Bach Nielsen -# name: /** cls/trt/obj name */ -# key: doc -# -- -/** - * `(scala-mode-find-clstrtobj-name-doc)` - * ${1:description} - * $0 - */ \ No newline at end of file diff --git a/snippets/scala-mode/doc.def b/snippets/scala-mode/doc.def deleted file mode 100644 index 53b1968..0000000 --- a/snippets/scala-mode/doc.def +++ /dev/null @@ -1,7 +0,0 @@ -# Author: Anders Bach Nielsen -# name: /** method name */ -# key: doc -# -- -/** - * `(scala-mode-def-and-args-doc)` - */ \ No newline at end of file diff --git a/snippets/scala-mode/doc.file b/snippets/scala-mode/doc.file deleted file mode 100644 index 2bc39bf..0000000 --- a/snippets/scala-mode/doc.file +++ /dev/null @@ -1,10 +0,0 @@ -# Author: Anders Bach Nielsen -# name: /** file name */ -# key: doc -# -- -/** - * `(scala-mode-file-doc)` - * $0 - * @author ${1:name} - * @version ${2:0.1} - */ \ No newline at end of file diff --git a/snippets/scala-mode/doc.file-scala b/snippets/scala-mode/doc.file-scala deleted file mode 100644 index aa9c58f..0000000 --- a/snippets/scala-mode/doc.file-scala +++ /dev/null @@ -1,17 +0,0 @@ -# Author: Anders Bach Nielsen -# name: /** scala file */ -# key: doc -# -- -/* __ *\ -** ________ ___ / / ___ Scala $3 ** -** / __/ __// _ | / / / _ | (c) 2005-`(format-time-string "%Y")` , LAMP/EPFL ** -** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ ** -** /____/\___/_/ |_/____/_/ | | ** -** |/ ** -\* */ -/** - * $0 - * @author ${1:name} - * @version ${2:0.1} - * $Id$ - */ \ No newline at end of file diff --git a/snippets/scala-mode/doc.file-scala-api b/snippets/scala-mode/doc.file-scala-api deleted file mode 100644 index ffd4d0d..0000000 --- a/snippets/scala-mode/doc.file-scala-api +++ /dev/null @@ -1,17 +0,0 @@ -# Author: Anders Bach Nielsen -# name: /** scala api file */ -# key: doc -# -- -/* __ *\ -** ________ ___ / / ___ Scala API ** -** / __/ __// _ | / / / _ | (c) 2005-`(format-time-string "%Y")`, LAMP/EPFL ** -** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ ** -** /____/\___/_/ |_/____/_/ | | ** -** |/ ** -\* */ -/** - * $0 - * @author ${1:name} - * @version ${2:0.1} - * $Id$ - */ \ No newline at end of file diff --git a/snippets/scala-mode/doc.scaladoc b/snippets/scala-mode/doc.scaladoc deleted file mode 100644 index 3d96279..0000000 --- a/snippets/scala-mode/doc.scaladoc +++ /dev/null @@ -1,8 +0,0 @@ -# Author: Anders Bach Nielsen -# name: /** ... */ -# key: doc -# -- -/** - * ${1:description} - * $0 - */ \ No newline at end of file diff --git a/snippets/scala-mode/expect b/snippets/scala-mode/expect deleted file mode 100644 index b34b4d9..0000000 --- a/snippets/scala-mode/expect +++ /dev/null @@ -1,7 +0,0 @@ -# Author: Jonas Bonèr -# name: expect(value) { ..} -# key: expect -# -- -expect(${1:reply}) { - $0 -} \ No newline at end of file diff --git a/snippets/scala-mode/ext b/snippets/scala-mode/ext deleted file mode 100644 index 06ba476..0000000 --- a/snippets/scala-mode/ext +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: extends T -# key: ext -# -- -extends $0 \ No newline at end of file diff --git a/snippets/scala-mode/for.extract b/snippets/scala-mode/for.extract deleted file mode 100644 index bc6666d..0000000 --- a/snippets/scala-mode/for.extract +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: x <- xs -# key: for -# -- -${1:x} <- ${2:xs} \ No newline at end of file diff --git a/snippets/scala-mode/for.if b/snippets/scala-mode/for.if deleted file mode 100644 index f812c2c..0000000 --- a/snippets/scala-mode/for.if +++ /dev/null @@ -1,7 +0,0 @@ -# Author: Jonas Bonèr -# name: for (x <- xs if guard) { ... } -# key: for -# -- -for (${1:x} <- ${2:xs} if ${3:guard}) { - $0 -} \ No newline at end of file diff --git a/snippets/scala-mode/for.loop b/snippets/scala-mode/for.loop deleted file mode 100644 index 9b538f7..0000000 --- a/snippets/scala-mode/for.loop +++ /dev/null @@ -1,7 +0,0 @@ -# Author: Jonas Bonèr -# name: for (x <- xs) { ... } -# key: for -# -- -for (${1:x} <- ${2:xs}) { - $0 -} \ No newline at end of file diff --git a/snippets/scala-mode/for.multi b/snippets/scala-mode/for.multi deleted file mode 100644 index 6a1866d..0000000 --- a/snippets/scala-mode/for.multi +++ /dev/null @@ -1,10 +0,0 @@ -# Author: Jonas Bonèr -# name: for {x <- xs \ y <- ys} { yield } -# key: for -# -- -for { - ${1:x} <- ${2:xs} - ${3:x} <- ${4:xs} -} { - yield $0 -} \ No newline at end of file diff --git a/snippets/scala-mode/foreach b/snippets/scala-mode/foreach deleted file mode 100644 index 7061201..0000000 --- a/snippets/scala-mode/foreach +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: foreach(x => ..) -# key: foreach -# -- -foreach(${1:x} => ${2:body}) $0 \ No newline at end of file diff --git a/snippets/scala-mode/hmap.new b/snippets/scala-mode/hmap.new deleted file mode 100644 index a675336..0000000 --- a/snippets/scala-mode/hmap.new +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: new HashMap[K, V] -# key: hmap -# -- -new HashMap[${1:key}, ${2:value}] $0 \ No newline at end of file diff --git a/snippets/scala-mode/hmap.val-new b/snippets/scala-mode/hmap.val-new deleted file mode 100644 index 6f53fc6..0000000 --- a/snippets/scala-mode/hmap.val-new +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: val m = new HashMap[K, V] -# key: hmap -# -- -val ${1:m} = new HashMap[${2:key}, ${3:value}] $0 \ No newline at end of file diff --git a/snippets/scala-mode/hset.new b/snippets/scala-mode/hset.new deleted file mode 100644 index 79e4348..0000000 --- a/snippets/scala-mode/hset.new +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: new HashSet[K] -# key: hset -# -- -new HashSet[${1:key}] $0 \ No newline at end of file diff --git a/snippets/scala-mode/hset.val-new b/snippets/scala-mode/hset.val-new deleted file mode 100644 index 9b9cde2..0000000 --- a/snippets/scala-mode/hset.val-new +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: val m = new HashSet[K] -# key: hset -# -- -val ${1:m} = new HashSet[${2:key}] $0 \ No newline at end of file diff --git a/snippets/scala-mode/if b/snippets/scala-mode/if deleted file mode 100644 index d1724ef..0000000 --- a/snippets/scala-mode/if +++ /dev/null @@ -1,7 +0,0 @@ -# Author: Jonas Bonèr -# name: if (cond) { .. } -# key: if -# -- -if (${1:condition}) { - $0 -} \ No newline at end of file diff --git a/snippets/scala-mode/if.else b/snippets/scala-mode/if.else deleted file mode 100644 index f0210cb..0000000 --- a/snippets/scala-mode/if.else +++ /dev/null @@ -1,9 +0,0 @@ -# Author: Jonas Bonèr -# name: if (cond) { .. } else { .. } -# key: if -# -- -if (${1:condition}) { - $2 -} else { - $0 -} \ No newline at end of file diff --git a/snippets/scala-mode/imp b/snippets/scala-mode/imp deleted file mode 100644 index f5fdee0..0000000 --- a/snippets/scala-mode/imp +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: import .. -# key: imp -# -- -import $0 \ No newline at end of file diff --git a/snippets/scala-mode/intercept b/snippets/scala-mode/intercept deleted file mode 100644 index 06eed8d..0000000 --- a/snippets/scala-mode/intercept +++ /dev/null @@ -1,7 +0,0 @@ -# Author: Jonas Bonèr -# name: intercept(classOf[T]) { ..} -# key: intercept -# -- -intercept(classOf[${1:Exception]}) { - $0 -} \ No newline at end of file diff --git a/snippets/scala-mode/isof b/snippets/scala-mode/isof deleted file mode 100644 index 6ab787b..0000000 --- a/snippets/scala-mode/isof +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: isInstanceOf[T] -# key: isof -# -- -isInstanceOf[${1:type}] $0 \ No newline at end of file diff --git a/snippets/scala-mode/ls.new b/snippets/scala-mode/ls.new deleted file mode 100644 index f231019..0000000 --- a/snippets/scala-mode/ls.new +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: List(..) -# key: ls -# -- -List(${1:args}, ${2:args}) $0 \ No newline at end of file diff --git a/snippets/scala-mode/ls.val-new b/snippets/scala-mode/ls.val-new deleted file mode 100644 index ea660bf..0000000 --- a/snippets/scala-mode/ls.val-new +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: val l = List(..) -# key: ls -# -- -val ${1:l} = List(${2:args}, ${3:args}) $0 \ No newline at end of file diff --git a/snippets/scala-mode/main b/snippets/scala-mode/main deleted file mode 100644 index a9c67e3..0000000 --- a/snippets/scala-mode/main +++ /dev/null @@ -1,7 +0,0 @@ -# Author: Jonas Bonèr -# name: def main(args: Array[String]) = { ... } -# key: main -# -- -def main(args: Array[String]) = { - $0 -} \ No newline at end of file diff --git a/snippets/scala-mode/map b/snippets/scala-mode/map deleted file mode 100644 index 43e2a0b..0000000 --- a/snippets/scala-mode/map +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: map(x => ..) -# key: map -# -- -map(${1:x} => ${2:body}) $0 \ No newline at end of file diff --git a/snippets/scala-mode/map.new b/snippets/scala-mode/map.new deleted file mode 100644 index 6c71fce..0000000 --- a/snippets/scala-mode/map.new +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: Map(key -> value) -# key: map -# -- -Map(${1:key} -> ${2:value}) $0 \ No newline at end of file diff --git a/snippets/scala-mode/match b/snippets/scala-mode/match deleted file mode 100644 index 44bc725..0000000 --- a/snippets/scala-mode/match +++ /dev/null @@ -1,7 +0,0 @@ -# Author: Jonas Bonèr -# name: cc match { .. } -# key: match -# -- -${1:cc} match { - case ${2:pattern} => $0 -} \ No newline at end of file diff --git a/snippets/scala-mode/match.can b/snippets/scala-mode/match.can deleted file mode 100644 index e4f15f5..0000000 --- a/snippets/scala-mode/match.can +++ /dev/null @@ -1,12 +0,0 @@ -# Author: Jonas Bonèr -# name: can match { case Full(res) => .. } -# key: match -# -- -${1:option} match { - case Full(res) => $0 - - case Empty => - - case Failure(msg, _, _) => - -} \ No newline at end of file diff --git a/snippets/scala-mode/match.option b/snippets/scala-mode/match.option deleted file mode 100644 index aa725c9..0000000 --- a/snippets/scala-mode/match.option +++ /dev/null @@ -1,9 +0,0 @@ -# Author: Jonas Bonèr -# name: option match { case None => .. } -# key: match -# -- -${1:option} match { - case None => $0 - case Some(res) => - -} \ No newline at end of file diff --git a/snippets/scala-mode/mix b/snippets/scala-mode/mix deleted file mode 100644 index bc78100..0000000 --- a/snippets/scala-mode/mix +++ /dev/null @@ -1,7 +0,0 @@ -# Author: Jonas Bonèr -# name: trait T { .. } -# key: mix -# -- -trait ${1:name} { - $0 -} \ No newline at end of file diff --git a/snippets/scala-mode/ob b/snippets/scala-mode/ob deleted file mode 100644 index ec4d3a9..0000000 --- a/snippets/scala-mode/ob +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: object name extends T -# key: ob -# -- -object ${1:name} extends ${2:type} $0 \ No newline at end of file diff --git a/snippets/scala-mode/pac b/snippets/scala-mode/pac deleted file mode 100644 index 2c51176..0000000 --- a/snippets/scala-mode/pac +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: package .. -# key: pac -# -- -package $0 \ No newline at end of file diff --git a/snippets/scala-mode/pr.newline b/snippets/scala-mode/pr.newline deleted file mode 100644 index 093027a..0000000 --- a/snippets/scala-mode/pr.newline +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: println(..) -# key: pr -# -- -println(${1:obj}) $0 \ No newline at end of file diff --git a/snippets/scala-mode/pr.simple b/snippets/scala-mode/pr.simple deleted file mode 100644 index a624140..0000000 --- a/snippets/scala-mode/pr.simple +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: print(..) -# key: pr -# -- -print(${1:obj}) $0 \ No newline at end of file diff --git a/snippets/scala-mode/pr.string b/snippets/scala-mode/pr.string deleted file mode 100644 index 130474a..0000000 --- a/snippets/scala-mode/pr.string +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: println("..") -# key: pr -# -- -println("${1:msg}") $0 \ No newline at end of file diff --git a/snippets/scala-mode/pr.trace b/snippets/scala-mode/pr.trace deleted file mode 100644 index 8ad92b0..0000000 --- a/snippets/scala-mode/pr.trace +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: println("obj: " + obj) -# key: pr -# -- -println("${1:obj}: " + ${1:obj}) $0 \ No newline at end of file diff --git a/snippets/scala-mode/pri b/snippets/scala-mode/pri deleted file mode 100644 index 12dbd45..0000000 --- a/snippets/scala-mode/pri +++ /dev/null @@ -1,5 +0,0 @@ -#Author : Jonas Bonèr -#name : private -# key: pri -# -- -private $0 \ No newline at end of file diff --git a/snippets/scala-mode/pri.param b/snippets/scala-mode/pri.param deleted file mode 100644 index 90ae3ba..0000000 --- a/snippets/scala-mode/pri.param +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: private[this] -# key: pri -# -- -private[${1:this}] $0 \ No newline at end of file diff --git a/snippets/scala-mode/pro b/snippets/scala-mode/pro deleted file mode 100644 index d5612b4..0000000 --- a/snippets/scala-mode/pro +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: protected -# key: pro -# -- -protected $0 \ No newline at end of file diff --git a/snippets/scala-mode/pro.param b/snippets/scala-mode/pro.param deleted file mode 100644 index ae82305..0000000 --- a/snippets/scala-mode/pro.param +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: protected[this] -# key: pro -# -- -protected[${1:this}] $0 \ No newline at end of file diff --git a/snippets/scala-mode/suite b/snippets/scala-mode/suite deleted file mode 100644 index 942fbad..0000000 --- a/snippets/scala-mode/suite +++ /dev/null @@ -1,9 +0,0 @@ -# Author: Jonas Bonèr -# name: class T extends Suite { .. } -# key: suite -# -- -import org.scalatest._ - -class ${1:name} extends Suite { - $0 -} \ No newline at end of file diff --git a/snippets/scala-mode/test b/snippets/scala-mode/test deleted file mode 100644 index d4819ac..0000000 --- a/snippets/scala-mode/test +++ /dev/null @@ -1,8 +0,0 @@ -# Author: Jonas Bonèr -# name: @Test def testX = ... -# key: test -# -- -//@Test -def test${1:name} = { - $0 -} \ No newline at end of file diff --git a/snippets/scala-mode/throw b/snippets/scala-mode/throw deleted file mode 100644 index e303c25..0000000 --- a/snippets/scala-mode/throw +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: throw new Exception -# key: throw -# -- -throw new ${1:Exception}(${2:msg}) $0 \ No newline at end of file diff --git a/snippets/scala-mode/tr b/snippets/scala-mode/tr deleted file mode 100644 index 2381bdc..0000000 --- a/snippets/scala-mode/tr +++ /dev/null @@ -1,7 +0,0 @@ -# Author: Anders Bach Nielsen -# name: trait T { .. } -# key: tr -# -- -trait ${1:name} { - $0 -} \ No newline at end of file diff --git a/snippets/scala-mode/tr.ext b/snippets/scala-mode/tr.ext deleted file mode 100644 index 15fb8aa..0000000 --- a/snippets/scala-mode/tr.ext +++ /dev/null @@ -1,7 +0,0 @@ -# Author: Anders Bach Nielsen -# name: trait T extends C { .. } -# key: tr -# -- -trait ${1:name} extends ${2:class} { - $0 -} \ No newline at end of file diff --git a/snippets/scala-mode/tr.ext-with b/snippets/scala-mode/tr.ext-with deleted file mode 100644 index c971ebb..0000000 --- a/snippets/scala-mode/tr.ext-with +++ /dev/null @@ -1,7 +0,0 @@ -# Author: Anders Bach Nielsen -# name: trait T1 extends C with T2 { .. } -# key: tr -# -- -trait ${1:name} extends ${2:class} with ${3:trait} { - $0 -} \ No newline at end of file diff --git a/snippets/scala-mode/tr.with b/snippets/scala-mode/tr.with deleted file mode 100644 index 732dfb3..0000000 --- a/snippets/scala-mode/tr.with +++ /dev/null @@ -1,7 +0,0 @@ -# Author: Anders Bach Nielsen -# name: trait T1 with T2 { .. } -# key: tr -# -- -trait ${1:name} with ${2:trait} { - $0 -} \ No newline at end of file diff --git a/snippets/scala-mode/try b/snippets/scala-mode/try deleted file mode 100644 index c9bf2e2..0000000 --- a/snippets/scala-mode/try +++ /dev/null @@ -1,10 +0,0 @@ -# Author: Jonas Bonèr -# name: try { .. } catch { case e => ..} -# key: try -# -- -try { - $0 -} catch { - case ${1:e}: ${2:Exception} => - ${1:println(\"ERROR: \" + e) // TODO: handle exception}\n} -} \ No newline at end of file diff --git a/snippets/scala-mode/try.catch-finally b/snippets/scala-mode/try.catch-finally deleted file mode 100644 index 52f8c31..0000000 --- a/snippets/scala-mode/try.catch-finally +++ /dev/null @@ -1,12 +0,0 @@ -# Author: Jonas Bonèr -# name: try { .. } catch { case e => ..} finally { ..} -# key: try -# -- -try { - $0 -} catch { - case ${1:e}: ${2:Exception} => - ${1:println(\"ERROR: \" + e) // TODO: handle exception}\n} -} finally { - -} \ No newline at end of file diff --git a/snippets/scala-mode/try.finally b/snippets/scala-mode/try.finally deleted file mode 100644 index 6f8d88f..0000000 --- a/snippets/scala-mode/try.finally +++ /dev/null @@ -1,9 +0,0 @@ -# Author: Jonas Bonèr -# name: try { .. } finally { .. } -# key: try -# -- -try { - -} finally { - $0 -} \ No newline at end of file diff --git a/snippets/scala-mode/tup.arrow b/snippets/scala-mode/tup.arrow deleted file mode 100644 index 7b77907..0000000 --- a/snippets/scala-mode/tup.arrow +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: element1 -> element2 -# key: tup -# -- -${1:element1} -> ${2:element2} $0 \ No newline at end of file diff --git a/snippets/scala-mode/tup.paren b/snippets/scala-mode/tup.paren deleted file mode 100644 index ebe94a8..0000000 --- a/snippets/scala-mode/tup.paren +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: (element1, element2) -# key: tup -# -- -(${1:element1}, ${2:element2}) $0 \ No newline at end of file diff --git a/snippets/scala-mode/val b/snippets/scala-mode/val deleted file mode 100644 index b299add..0000000 --- a/snippets/scala-mode/val +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: val name = .. -# key: val -# -- -val ${1:name} = ${2:obj} $0 \ No newline at end of file diff --git a/snippets/scala-mode/val.new b/snippets/scala-mode/val.new deleted file mode 100644 index 9bd2b7d..0000000 --- a/snippets/scala-mode/val.new +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: val name = new .. -# key: val -# -- -val ${1:name} = new ${2:obj} $0 \ No newline at end of file diff --git a/snippets/scala-mode/val.ret b/snippets/scala-mode/val.ret deleted file mode 100644 index 4af1192..0000000 --- a/snippets/scala-mode/val.ret +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: val name: T = .. -# key: val -# -- -val ${1:name}: ${2:T} = ${3:obj} $0 \ No newline at end of file diff --git a/snippets/scala-mode/var b/snippets/scala-mode/var deleted file mode 100644 index 2c6158b..0000000 --- a/snippets/scala-mode/var +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: var name = .. -# key: var -# -- -var ${1:name} = ${2:obj} $0 \ No newline at end of file diff --git a/snippets/scala-mode/var.new b/snippets/scala-mode/var.new deleted file mode 100644 index 5dff6bc..0000000 --- a/snippets/scala-mode/var.new +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: var name = new .. -# key: var -# -- -var ${1:name} = new ${2:obj} $0 \ No newline at end of file diff --git a/snippets/scala-mode/var.ret b/snippets/scala-mode/var.ret deleted file mode 100644 index 60b3fdc..0000000 --- a/snippets/scala-mode/var.ret +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: var name: T = .. -# key: var -# -- -var ${1:name}: ${2:T} = ${3:obj} $0 \ No newline at end of file diff --git a/snippets/scala-mode/whi b/snippets/scala-mode/whi deleted file mode 100644 index 233cf1e..0000000 --- a/snippets/scala-mode/whi +++ /dev/null @@ -1,7 +0,0 @@ -# Author: Jonas Bonèr -# name: while(cond) { .. } -# key: whi -# -- -while (${1:condition}) { - $0 -} \ No newline at end of file diff --git a/snippets/scala-mode/with b/snippets/scala-mode/with deleted file mode 100644 index aa924af..0000000 --- a/snippets/scala-mode/with +++ /dev/null @@ -1,5 +0,0 @@ -# Author: Jonas Bonèr -# name: with T -# key: with -# -- -with $0 \ No newline at end of file diff --git a/snippets/snippet-mode/.yas-parents b/snippets/snippet-mode/.yas-parents deleted file mode 100644 index eed5b44..0000000 --- a/snippets/snippet-mode/.yas-parents +++ /dev/null @@ -1 +0,0 @@ -text-mode diff --git a/snippets/snippet-mode/field b/snippets/snippet-mode/field deleted file mode 100644 index f969a00..0000000 --- a/snippets/snippet-mode/field +++ /dev/null @@ -1,6 +0,0 @@ -# name: ${ ... } field -# contributor: joaotavora -# key: $f -# key: field -# -- -\${${1:${2:n}:}$3${4:\$(${5:lisp-fn})}\}$0 \ No newline at end of file diff --git a/snippets/snippet-mode/mirror b/snippets/snippet-mode/mirror deleted file mode 100644 index 2d43450..0000000 --- a/snippets/snippet-mode/mirror +++ /dev/null @@ -1,6 +0,0 @@ -# name: ${n:$(...)} mirror -# key: $m -# contributor: joaotavora -# key: mirror -# -- -\${${2:n}:${4:\$(${5:reflection-fn})}\}$0 \ No newline at end of file diff --git a/snippets/snippet-mode/vars b/snippets/snippet-mode/vars deleted file mode 100644 index d617002..0000000 --- a/snippets/snippet-mode/vars +++ /dev/null @@ -1,12 +0,0 @@ -# -*- mode: snippet -*- -# name: Snippet header -# contributor: joaotavora -# key: vars -# -- -# name: $1${2: -# key: ${3:trigger-key}}${4: -# keybinding: ${5:keybinding}}${6: -# expand-env: (${7:})} -# contributor: $6 -# -- -$0 \ No newline at end of file diff --git a/snippets/sql-mode/.yas-parents b/snippets/sql-mode/.yas-parents deleted file mode 100644 index eed5b44..0000000 --- a/snippets/sql-mode/.yas-parents +++ /dev/null @@ -1 +0,0 @@ -text-mode diff --git a/snippets/sql-mode/column b/snippets/sql-mode/column deleted file mode 100644 index 5817296..0000000 --- a/snippets/sql-mode/column +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Alejandro Espinoza Esparza -# name: , ColumnName ColumnType NOT NULL... -# key: column -# -- - , ${1:Name} ${2:Type} ${3:NOT NULL} \ No newline at end of file diff --git a/snippets/sql-mode/constraint b/snippets/sql-mode/constraint deleted file mode 100644 index bfa2b78..0000000 --- a/snippets/sql-mode/constraint +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Alejandro Espinoza Esparza -# name: CONSTRAINT [..] PRIMARY KEY ... -# key: constraint -# -- -CONSTRAINT [${1:PK_Name}] PRIMARY KEY ${2:CLUSTERED} ([${3:ColumnName}]) \ No newline at end of file diff --git a/snippets/sql-mode/constraint.1 b/snippets/sql-mode/constraint.1 deleted file mode 100644 index bfef0b6..0000000 --- a/snippets/sql-mode/constraint.1 +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Alejandro Espinoza Esparza -# name: CONSTRAINT [..] FOREIGN KEY ... -# key: constraint -# -- -CONSTRAINT [${1:FK_Name}] FOREIGN KEY ${2:CLUSTERED} ([${3:ColumnName}]) \ No newline at end of file diff --git a/snippets/sql-mode/create b/snippets/sql-mode/create deleted file mode 100644 index 085b267..0000000 --- a/snippets/sql-mode/create +++ /dev/null @@ -1,11 +0,0 @@ -# contributor: Alejandro Espinoza Esparza -# name: create table ... -# key: create -# -- -CREATE TABLE [${1:dbo}].[${2:TableName}] -( - ${3:Id} ${4:INT IDENTITY(1,1)} ${5:NOT NULL} -$0 - CONSTRAINT [${6:PK_}] PRIMARY KEY ${7:CLUSTERED} ([$3]) -) -GO \ No newline at end of file diff --git a/snippets/sql-mode/create.1 b/snippets/sql-mode/create.1 deleted file mode 100644 index 6c37dd8..0000000 --- a/snippets/sql-mode/create.1 +++ /dev/null @@ -1,13 +0,0 @@ -# contributor: Alejandro Espinoza Esparza -# name: create procedure ... -# key: create -# -- -CREATE PROCEDURE [${1:dbo}].[${2:Name}] -( - $3 $4 = ${5:NULL} ${6:OUTPUT} -) -AS -BEGIN -$0 -END -GO \ No newline at end of file diff --git a/snippets/sql-mode/references b/snippets/sql-mode/references deleted file mode 100644 index ff6d12f..0000000 --- a/snippets/sql-mode/references +++ /dev/null @@ -1,5 +0,0 @@ -# contributor: Alejandro Espinoza Esparza -# name: REFERENCES ... -# key: references -# -- -REFERENCES ${1:TableName}([${2:ColumnName}]) \ No newline at end of file diff --git a/snippets/text-mode/email b/snippets/text-mode/email deleted file mode 100644 index 95fad03..0000000 --- a/snippets/text-mode/email +++ /dev/null @@ -1,4 +0,0 @@ -# name: (user's email) -# key: email -# -- -`(replace-regexp-in-string "@" "@NOSPAM." user-mail-address)` \ No newline at end of file diff --git a/snippets/text-mode/time b/snippets/text-mode/time deleted file mode 100644 index 814ed5f..0000000 --- a/snippets/text-mode/time +++ /dev/null @@ -1,4 +0,0 @@ -# name: (current time) -# key: time -# -- -`(current-time-string)` \ No newline at end of file diff --git a/yasmate b/yasmate new file mode 160000 index 0000000..78ef957 --- /dev/null +++ b/yasmate @@ -0,0 +1 @@ +Subproject commit 78ef957e6bbc2891fb644e060f504c68ac1d8c6b