diff options
| author | Joshua Peek <josh@joshpeek.com> | 2012-07-23 16:02:14 -0500 |
|---|---|---|
| committer | Joshua Peek <josh@joshpeek.com> | 2012-07-23 16:02:14 -0500 |
| commit | 12d2e2ec740968374e98b23fe0694b2dc419e7fb (patch) | |
| tree | e6281a845647491d15fe2526375619d437b6eccc | |
| parent | f44b31148aeed54a9ebaf62ad01d8b8ebf39eb50 (diff) | |
Switch to json for samples db
| -rw-r--r-- | Rakefile | 11 | ||||
| -rw-r--r-- | github-linguist.gemspec | 1 | ||||
| -rw-r--r-- | lib/linguist/samples.json | 20103 | ||||
| -rw-r--r-- | lib/linguist/samples.rb | 2 | ||||
| -rw-r--r-- | lib/linguist/samples.yml | 19970 |
5 files changed, 20111 insertions, 19976 deletions
@@ -8,15 +8,16 @@ Rake::TestTask.new do |t| end -file 'lib/linguist/samples.yml' => Dir['samples/**/*'] do |f| +file 'lib/linguist/samples.json' => Dir['samples/**/*'] do |f| require 'linguist/samples' - yaml = YAML.dump(Linguist::Samples.data) - File.open(f.name, 'w') { |io| io.write yaml } + require 'yajl' + json = Yajl::Encoder.encode(Linguist::Samples.data, :pretty => true) + File.open(f.name, 'w') { |io| io.write json } end -CLOBBER.include 'lib/linguist/samples.yml' +CLOBBER.include 'lib/linguist/samples.json' -task :samples => [:clobber, 'lib/linguist/samples.yml'] +task :samples => [:clobber, 'lib/linguist/samples.json'] namespace :classifier do LIMIT = 1_000 diff --git a/github-linguist.gemspec b/github-linguist.gemspec index 4c99cb1..54edcf3 100644 --- a/github-linguist.gemspec +++ b/github-linguist.gemspec @@ -14,4 +14,5 @@ Gem::Specification.new do |s| s.add_dependency 'pygments.rb', '~> 0.2.13' s.add_development_dependency 'json' s.add_development_dependency 'rake' + s.add_development_dependency 'yajl-ruby' end diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json new file mode 100644 index 0000000..942f4d6 --- /dev/null +++ b/lib/linguist/samples.json @@ -0,0 +1,20103 @@ +{ + "extnames": { + "Apex": [ + ".cls" + ], + "AppleScript": [ + ".applescript", + ".scpt" + ], + "Arduino": [ + ".ino" + ], + "AutoHotkey": [ + ".ahk" + ], + "C": [ + ".c", + ".h" + ], + "C++": [ + ".h", + ".hpp", + ".cu", + ".cpp", + ".cc" + ], + "Ceylon": [ + ".ceylon" + ], + "CoffeeScript": [ + ".coffee" + ], + "Coq": [ + ".v" + ], + "Dart": [ + ".dart" + ], + "Delphi": [ + ".dpr" + ], + "Diff": [ + ".patch" + ], + "Emacs Lisp": [ + ".el" + ], + "GAS": [ + ".s" + ], + "Gosu": [ + ".gst", + ".gsx", + ".gs", + ".gsp", + ".vark" + ], + "Groovy": [ + ".gradle", + ".groovy" + ], + "Groovy Server Pages": [ + ".gsp" + ], + "Haml": [ + ".haml" + ], + "Ioke": [ + ".ik" + ], + "Java": [ + ".java" + ], + "JavaScript": [ + ".js" + ], + "Julia": [ + ".jl" + ], + "Kotlin": [ + ".kt" + ], + "Logtalk": [ + ".lgt" + ], + "Markdown": [ + ".md" + ], + "Matlab": [ + ".m" + ], + "Nemerle": [ + ".n" + ], + "Nimrod": [ + ".nim" + ], + "Nu": [ + ".nu" + ], + "OCaml": [ + ".ml" + ], + "Objective-C": [ + ".h", + ".m" + ], + "Opa": [ + ".opa" + ], + "OpenCL": [ + ".cl" + ], + "OpenEdge ABL": [ + ".cls", + ".p" + ], + "PHP": [ + ".php", + ".module" + ], + "Parrot Assembly": [ + ".pasm" + ], + "Parrot Internal Representation": [ + ".pir" + ], + "Perl": [ + ".pm", + ".pl", + ".t" + ], + "PowerShell": [ + ".ps1", + ".psm1" + ], + "Prolog": [ + ".pl" + ], + "Python": [ + ".py" + ], + "R": [ + ".R" + ], + "Racket": [ + ".scrbl", + ".rkt" + ], + "Rebol": [ + ".r" + ], + "Ruby": [ + ".rb", + ".rake" + ], + "Rust": [ + ".rs" + ], + "SCSS": [ + ".scss" + ], + "Sass": [ + ".sass" + ], + "Scala": [ + ".sbt", + ".scala" + ], + "Scheme": [ + ".sps" + ], + "Scilab": [ + ".sci", + ".sce", + ".tst" + ], + "Shell": [ + ".bash", + ".sh", + ".zsh" + ], + "Standard ML": [ + ".sig", + ".sml" + ], + "SuperCollider": [ + ".sc" + ], + "TeX": [ + ".cls" + ], + "Tea": [ + ".tea" + ], + "Turing": [ + ".t" + ], + "VHDL": [ + ".vhd" + ], + "Verilog": [ + ".v" + ], + "Visual Basic": [ + ".cls" + ], + "XML": [ + ".ant", + ".ivy", + ".xml" + ], + "XQuery": [ + ".xqm" + ], + "XSLT": [ + ".xslt" + ] + }, + "filenames": { + "Ruby": [ + "Capfile", + "Rakefile" + ], + "Shell": [ + "PKGBUILD" + ] + }, + "tokens_total": 164127, + "languages_total": 243, + "tokens": { + "Apex": { + "/*": 15, + "*/": 15, + "global": 70, + "class": 7, + "ArrayUtils": 1, + "{": 214, + "static": 80, + "String": 58, + "EMPTY_STRING_ARRAY": 1, + "new": 57, + "}": 214, + ";": 286, + "Integer": 34, + "MAX_NUMBER_OF_ELEMENTS_IN_LIST": 5, + "get": 1, + "return": 104, + "List": 71, + "<String>": 30, + "objectToString": 1, + "(": 457, + "<Object>": 22, + "objects": 3, + ")": 458, + "strings": 3, + "null": 89, + "if": 89, + "objects.size": 1, + "for": 24, + "Object": 23, + "obj": 3, + "instanceof": 1, + "strings.add": 1, + "reverse": 2, + "anArray": 14, + "i": 55, + "j": 10, + "anArray.size": 2, + "-": 18, + "tmp": 6, + "while": 8, + "+": 66, + "SObject": 19, + "lowerCase": 1, + "strs": 9, + "returnValue": 22, + "strs.size": 3, + "str": 10, + "returnValue.add": 3, + "str.toLowerCase": 1, + "upperCase": 1, + "str.toUpperCase": 1, + "trim": 1, + "str.trim": 3, + "mergex": 2, + "array1": 8, + "array2": 9, + "merged": 6, + "array1.size": 4, + "array2.size": 2, + "<": 32, + "<SObject>": 19, + "sObj": 4, + "merged.add": 2, + "Boolean": 38, + "isEmpty": 7, + "objectArray": 17, + "true": 12, + "objectArray.size": 6, + "isNotEmpty": 4, + "pluck": 1, + "fieldName": 3, + "||": 12, + "fieldName.trim": 2, + ".length": 2, + "plucked": 3, + ".get": 4, + "toString": 3, + "void": 8, + "assertArraysAreEqual": 2, + "expected": 16, + "actual": 16, + "//check": 2, + "to": 3, + "see": 2, + "one": 2, + "param": 2, + "is": 5, + "but": 2, + "the": 2, + "other": 2, + "not": 3, + "System.assert": 6, + "&&": 46, + "ArrayUtils.toString": 12, + "expected.size": 4, + "actual.size": 2, + "merg": 2, + "list1": 15, + "list2": 9, + "returnList": 11, + "list1.size": 6, + "list2.size": 2, + "throw": 6, + "IllegalArgumentException": 5, + "elmt": 8, + "returnList.add": 8, + "subset": 6, + "aList": 4, + "count": 10, + "startIndex": 9, + "<=>": 2, + "size": 2, + "1": 2, + "list1.get": 2, + "//": 22, + "//LIST/ARRAY": 1, + "SORTING": 1, + "//FOR": 2, + "FORCE.COM": 1, + "PRIMITIVES": 1, + "Double": 1, + "ID": 1, + "etc.": 1, + "qsort": 18, + "theList": 72, + "PrimitiveComparator": 2, + "sortAsc": 24, + "ObjectComparator": 3, + "comparator": 14, + "theList.size": 2, + "SALESFORCE": 1, + "OBJECTS": 1, + "sObjects": 1, + "ISObjectComparator": 3, + "private": 10, + "lo0": 6, + "hi0": 8, + "lo": 42, + "hi": 50, + "else": 25, + "comparator.compare": 12, + "prs": 8, + "pivot": 14, + "/": 4, + "BooleanUtils": 1, + "isFalse": 1, + "bool": 32, + "false": 13, + "isNotFalse": 1, + "isNotTrue": 1, + "isTrue": 1, + "negate": 1, + "toBooleanDefaultIfNull": 1, + "defaultVal": 2, + "toBoolean": 2, + "value": 9, + "strToBoolean": 1, + "StringUtils.equalsIgnoreCase": 1, + "//Converts": 1, + "an": 2, + "int": 1, + "a": 2, + "boolean": 1, + "specifying": 1, + "//the": 2, + "conversion": 1, + "values.": 1, + "//Returns": 1, + "//Throws": 1, + "trueValue": 2, + "falseValue": 2, + "toInteger": 1, + "toStringYesNo": 1, + "toStringYN": 1, + "trueString": 2, + "falseString": 2, + "xor": 1, + "boolArray": 4, + "boolArray.size": 1, + "firstItem": 2, + "EmailUtils": 1, + "sendEmailWithStandardAttachments": 3, + "recipients": 11, + "emailSubject": 10, + "body": 8, + "useHTML": 6, + "<Id>": 1, + "attachmentIDs": 2, + "<Attachment>": 2, + "stdAttachments": 4, + "SELECT": 1, + "id": 1, + "name": 1, + "FROM": 1, + "Attachment": 2, + "WHERE": 1, + "Id": 1, + "IN": 1, + "<Messaging.EmailFileAttachment>": 3, + "fileAttachments": 5, + "attachment": 1, + "Messaging.EmailFileAttachment": 2, + "fileAttachment": 2, + "fileAttachment.setFileName": 1, + "attachment.Name": 1, + "fileAttachment.setBody": 1, + "attachment.Body": 1, + "fileAttachments.add": 1, + "sendEmail": 4, + "sendTextEmail": 1, + "textBody": 2, + "sendHTMLEmail": 1, + "htmlBody": 2, + "recipients.size": 1, + "Messaging.SingleEmailMessage": 3, + "mail": 2, + "email": 1, + "saved": 1, + "as": 1, + "activity.": 1, + "mail.setSaveAsActivity": 1, + "mail.setToAddresses": 1, + "mail.setSubject": 1, + "mail.setBccSender": 1, + "mail.setUseSignature": 1, + "mail.setHtmlBody": 1, + "mail.setPlainTextBody": 1, + "fileAttachments.size": 1, + "mail.setFileAttachments": 1, + "Messaging.sendEmail": 1, + "isValidEmailAddress": 2, + "split": 5, + "str.split": 1, + "split.size": 2, + ".split": 1, + "isNotValidEmailAddress": 1, + "public": 7, + "GeoUtils": 1, + "string": 2, + "generateFromContent": 1, + "PageReference": 1, + "pr": 1, + "ret": 1, + "&": 2, + "amp": 1, + "ERROR": 1, + "n": 2, + "r": 2, + "G_GEO_SUCCESS": 1, + "G_GEO_BAD_REQUEST": 1, + "G_GEO_SERVER_ERROR": 1, + "G_GEO_MISSING_ADDRESS": 1, + "G_GEO_UNKNOWN_ADDRESS": 1, + "G_GEO_UNAVAILABLE_ADDRESS": 1, + "G_GEO_UNKNOWN_DIRECTIONS": 1, + "G_GEO_BAD_KEY": 1, + "G_GEO_TOO_MANY_QUERIES": 1, + "foo": 1, + "main": 2, + "springfield": 2, + "il": 2, + "us": 2, + "accountAddressString": 1, + "LanguageUtils": 1, + "final": 6, + "HTTP_LANGUAGE_CODE_PARAMETER_KEY": 2, + "DEFAULT_LANGUAGE_CODE": 3, + "Set": 6, + "SUPPORTED_LANGUAGE_CODES": 2, + "//Chinese": 2, + "Simplified": 1, + "Traditional": 1, + "//Dutch": 1, + "//English": 1, + "//Finnish": 1, + "//French": 1, + "//German": 1, + "//Italian": 1, + "//Japanese": 1, + "//Korean": 1, + "//Polish": 1, + "//Portuguese": 1, + "Brazilian": 1, + "//Russian": 1, + "//Spanish": 1, + "//Swedish": 1, + "//Thai": 1, + "//Czech": 1, + "//Danish": 1, + "//Hungarian": 1, + "//Indonesian": 1, + "//Turkish": 1, + "Map": 31, + "<String,String>": 29, + "DEFAULTS": 1, + "getLangCodeByHttpParam": 4, + "LANGUAGE_CODE_SET": 1, + "getSuppLangCodeSet": 2, + "ApexPages.currentPage": 4, + ".getParameters": 2, + "LANGUAGE_HTTP_PARAMETER": 7, + "StringUtils.lowerCase": 3, + "StringUtils.replaceChars": 2, + "//underscore": 1, + "//dash": 1, + "DEFAULTS.containsKey": 3, + "DEFAULTS.get": 3, + "StringUtils.isNotBlank": 1, + "SUPPORTED_LANGUAGE_CODES.contains": 2, + "getLangCodeByBrowser": 4, + "LANGUAGES_FROM_BROWSER_AS_STRING": 2, + ".getHeaders": 1, + "LANGUAGES_FROM_BROWSER_AS_LIST": 3, + "splitAndFilterAcceptLanguageHeader": 2, + "LANGUAGES_FROM_BROWSER_AS_LIST.size": 1, + "languageFromBrowser": 6, + "getLangCodeByUser": 3, + "UserInfo.getLanguage": 1, + "getLangCodeByHttpParamOrIfNullThenBrowser": 1, + "StringUtils.defaultString": 4, + "getLangCodeByHttpParamOrIfNullThenUser": 1, + "getLangCodeByBrowserOrIfNullThenHttpParam": 1, + "getLangCodeByBrowserOrIfNullThenUser": 1, + "header": 2, + "tokens": 3, + "StringUtils.split": 1, + "token": 6, + "token.contains": 1, + "token.substring": 1, + "token.indexOf": 1, + "StringUtils.length": 1, + "StringUtils.substring": 1, + "langCodes": 2, + "langCode": 3, + "langCodes.add": 1, + "getLanguageName": 1, + "displayLanguageCode": 13, + "languageCode": 2, + "translatedLanguageNames.get": 2, + "filterLanguageCode": 4, + "getAllLanguages": 3, + "translatedLanguageNames.containsKey": 1, + "translatedLanguageNames": 1, + "TwilioAPI": 2, + "MissingTwilioConfigCustomSettingsException": 2, + "extends": 1, + "Exception": 1, + "TwilioRestClient": 5, + "client": 2, + "getDefaultClient": 2, + "TwilioConfig__c": 5, + "twilioCfg": 7, + "getTwilioConfig": 3, + "TwilioAPI.client": 2, + "twilioCfg.AccountSid__c": 3, + "twilioCfg.AuthToken__c": 3, + "TwilioAccount": 1, + "getDefaultAccount": 1, + ".getAccount": 2, + "TwilioCapability": 2, + "createCapability": 1, + "createClient": 1, + "accountSid": 2, + "authToken": 2, + "Test.isRunningTest": 1, + "TwilioConfig__c.getOrgDefaults": 1, + "@isTest": 1, + "test_TwilioAPI": 1, + "System.assertEquals": 5, + "TwilioAPI.getTwilioConfig": 2, + ".AccountSid__c": 1, + ".AuthToken__c": 1, + "TwilioAPI.getDefaultClient": 2, + ".getAccountSid": 1, + ".getSid": 2, + "TwilioAPI.getDefaultAccount": 1 + }, + "AppleScript": { + "set": 14, + "windowWidth": 6, + "to": 14, + "windowHeight": 6, + "delay": 2, + ".1": 2, + "AppleScript": 2, + "s": 2, + "text": 2, + "item": 2, + "delimiters": 2, + "Safari": 2, + "screen.availWidth": 2, + "screen.availHeight": 2, + "System": 6, + "Events": 6, + "Finder": 2, + "tell": 6, + "process": 2, + "myFrontMost": 2, + "try": 4, + "{": 12, + "w": 6, + "h": 4, + "}": 12, + "size": 4, + "of": 8, + "drawer": 2, + "window": 6, + "on": 2, + "error": 2, + "end": 6, + "position": 2, + "(": 8, + "screen_width": 2, + "-": 8, + ")": 8, + "/": 4, + "screen_height": 2, + ".0": 2, + "desktopTop": 2 + }, + "Arduino": { + "void": 2, + "setup": 1, + "(": 4, + ")": 4, + "{": 2, + "Serial.begin": 1, + ";": 2, + "}": 2, + "loop": 1, + "Serial.print": 1 + }, + "AutoHotkey": { + "MsgBox": 1, + "Hello": 1, + "World": 1 + }, + "C": { + "#include": 112, + "const": 204, + "char": 192, + "*blob_type": 2, + ";": 2808, + "struct": 217, + "blob": 6, + "*lookup_blob": 2, + "(": 2896, + "unsigned": 116, + "*sha1": 16, + ")": 2908, + "{": 1023, + "object": 10, + "*obj": 5, + "lookup_object": 2, + "sha1": 20, + "if": 638, + "obj": 18, + "return": 304, + "create_object": 2, + "OBJ_BLOB": 3, + "alloc_blob_node": 1, + "-": 1279, + "type": 27, + "error": 71, + "sha1_to_hex": 8, + "typename": 2, + "NULL": 281, + "}": 1025, + "*": 63, + "int": 305, + "parse_blob_buffer": 2, + "*item": 10, + "void": 210, + "*buffer": 6, + "long": 97, + "size": 59, + "item": 24, + "object.parsed": 4, + "#ifndef": 9, + "BLOB_H": 2, + "#define": 53, + "extern": 32, + "/*": 568, + "*/": 568, + "#endif": 43, + "git_cache_init": 1, + "git_cache": 4, + "*cache": 4, + "size_t": 40, + "git_cached_obj_freeptr": 1, + "free_ptr": 2, + "<": 140, + "git__size_t_powerof2": 1, + "cache": 26, + "size_mask": 6, + "lru_count": 1, + "free_obj": 4, + "git_mutex_init": 1, + "&": 285, + "lock": 6, + "nodes": 10, + "git__malloc": 3, + "sizeof": 52, + "git_cached_obj": 5, + "GITERR_CHECK_ALLOC": 3, + "memset": 4, + "git_cache_free": 1, + "i": 162, + "for": 37, + "+": 284, + "git_cached_obj_decref": 3, + "git__free": 15, + "*git_cache_get": 1, + "git_oid": 7, + "*oid": 2, + "uint32_t": 6, + "hash": 12, + "*node": 2, + "*result": 1, + "memcpy": 6, + "oid": 17, + "id": 7, + "git_mutex_lock": 2, + "node": 9, + "&&": 189, + "git_oid_cmp": 6, + "git_cached_obj_incref": 3, + "result": 12, + "git_mutex_unlock": 2, + "*git_cache_try_store": 1, + "*_entry": 1, + "*entry": 2, + "_entry": 1, + "entry": 17, + "else": 120, + "save_commit_buffer": 3, + "*commit_type": 2, + "static": 80, + "commit": 59, + "*check_commit": 1, + "quiet": 5, + "OBJ_COMMIT": 5, + "*lookup_commit_reference_gently": 2, + "deref_tag": 1, + "parse_object": 1, + "check_commit": 2, + "*lookup_commit_reference": 2, + "lookup_commit_reference_gently": 1, + "*lookup_commit_or_die": 2, + "*ref_name": 2, + "*c": 15, + "lookup_commit_reference": 2, + "c": 192, + "die": 5, + "_": 3, + "ref_name": 2, + "hashcmp": 2, + "object.sha1": 8, + "warning": 1, + "*lookup_commit": 2, + "alloc_commit_node": 1, + "*lookup_commit_reference_by_name": 2, + "*name": 6, + "*commit": 10, + "get_sha1": 1, + "name": 12, + "||": 112, + "parse_commit": 3, + "parse_commit_date": 2, + "*buf": 9, + "*tail": 2, + "*dateptr": 1, + "buf": 56, + "tail": 12, + "memcmp": 6, + "while": 41, + "dateptr": 2, + "strtoul": 2, + "commit_graft": 13, + "**commit_graft": 1, + "commit_graft_alloc": 4, + "commit_graft_nr": 5, + "commit_graft_pos": 2, + "lo": 6, + "hi": 5, + "mi": 5, + "/": 4, + "*graft": 3, + "cmp": 9, + "graft": 10, + "register_commit_graft": 2, + "ignore_dups": 2, + "pos": 7, + "free": 8, + "alloc_nr": 1, + "xrealloc": 2, + "(*": 16, + "*)": 16, + "parse_commit_buffer": 3, + "buffer": 9, + "*bufptr": 1, + "parent": 7, + "commit_list": 35, + "**pptr": 1, + "<=>": 7, + "bufptr": 12, + "46": 1, + "tree": 3, + "5": 1, + "45": 1, + "n": 20, + "bogus": 1, + "s": 22, + "get_sha1_hex": 2, + "lookup_tree": 1, + "pptr": 5, + "parents": 4, + "lookup_commit_graft": 1, + "*new_parent": 2, + "48": 1, + "7": 1, + "47": 1, + "bad": 1, + "in": 1, + "nr_parent": 3, + "grafts_replace_parents": 1, + "continue": 19, + "new_parent": 6, + "lookup_commit": 2, + "commit_list_insert": 2, + "next": 8, + "date": 4, + "enum": 29, + "object_type": 1, + "ret": 24, + "read_sha1_file": 1, + "find_commit_subject": 2, + "*commit_buffer": 2, + "**subject": 2, + "*eol": 1, + "*p": 9, + "commit_buffer": 1, + "a": 13, + "b_date": 3, + "b": 23, + "a_date": 2, + "*commit_list_get_next": 1, + "*a": 9, + "commit_list_set_next": 1, + "*next": 6, + "commit_list_sort_by_date": 2, + "**list": 5, + "*list": 2, + "llist_mergesort": 1, + "peel_to_type": 1, + "util": 3, + "merge_remote_desc": 3, + "*desc": 1, + "desc": 5, + "xmalloc": 2, + "strdup": 1, + "**commit_list_append": 2, + "**next": 2, + "*new": 1, + "new": 4, + "COMMIT_H": 2, + "*util": 1, + "indegree": 1, + "*parents": 4, + "*tree": 3, + "decoration": 1, + "name_decoration": 3, + "*commit_list_insert": 1, + "commit_list_count": 1, + "*l": 1, + "*commit_list_insert_by_date": 1, + "free_commit_list": 1, + "cmit_fmt": 3, + "CMIT_FMT_RAW": 1, + "CMIT_FMT_MEDIUM": 2, + "CMIT_FMT_DEFAULT": 1, + "CMIT_FMT_SHORT": 1, + "CMIT_FMT_FULL": 1, + "CMIT_FMT_FULLER": 1, + "CMIT_FMT_ONELINE": 1, + "CMIT_FMT_EMAIL": 1, + "CMIT_FMT_USERFORMAT": 1, + "CMIT_FMT_UNSPECIFIED": 1, + "pretty_print_context": 6, + "fmt": 4, + "abbrev": 1, + "*subject": 1, + "*after_subject": 1, + "preserve_subject": 1, + "date_mode": 2, + "date_mode_explicit": 1, + "need_8bit_cte": 2, + "show_notes": 1, + "reflog_walk_info": 1, + "*reflog_info": 1, + "*output_encoding": 2, + "userformat_want": 2, + "notes": 1, + "has_non_ascii": 1, + "*text": 1, + "rev_info": 2, + "*logmsg_reencode": 1, + "*reencode_commit_message": 1, + "**encoding_p": 1, + "get_commit_format": 1, + "*arg": 1, + "*format_subject": 1, + "strbuf": 12, + "*sb": 7, + "*msg": 6, + "*line_separator": 1, + "userformat_find_requirements": 1, + "*fmt": 2, + "*w": 1, + "format_commit_message": 1, + "*format": 1, + "*context": 1, + "pretty_print_commit": 1, + "*pp": 4, + "pp_commit_easy": 1, + "pp_user_info": 1, + "*what": 1, + "*line": 1, + "*encoding": 2, + "pp_title_line": 1, + "**msg_p": 2, + "pp_remainder": 1, + "indent": 1, + "*pop_most_recent_commit": 1, + "mark": 3, + "*pop_commit": 1, + "**stack": 1, + "clear_commit_marks": 1, + "clear_commit_marks_for_object_array": 1, + "object_array": 2, + "sort_in_topological_order": 1, + "**": 4, + "list": 1, + "lifo": 1, + "FLEX_ARRAY": 1, + "typedef": 15, + "*read_graft_line": 1, + "len": 23, + "*lookup_commit_graft": 1, + "*get_merge_bases": 1, + "*rev1": 1, + "*rev2": 1, + "cleanup": 2, + "*get_merge_bases_many": 1, + "*one": 1, + "**twos": 1, + "*get_octopus_merge_bases": 1, + "*in": 1, + "register_shallow": 1, + "unregister_shallow": 1, + "for_each_commit_graft": 1, + "each_commit_graft_fn": 1, + "is_repository_shallow": 1, + "*get_shallow_commits": 1, + "*heads": 2, + "depth": 1, + "shallow_flag": 1, + "not_shallow_flag": 1, + "is_descendant_of": 1, + "in_merge_bases": 1, + "interactive_add": 1, + "argc": 26, + "**argv": 6, + "*prefix": 7, + "patch": 1, + "run_add_interactive": 1, + "*revision": 1, + "*patch_mode": 1, + "**pathspec": 1, + "inline": 2, + "single_parent": 1, + "*reduce_heads": 1, + "commit_extra_header": 7, + "*key": 5, + "*value": 3, + "append_merge_tag_headers": 1, + "***tail": 1, + "commit_tree": 1, + "*ret": 2, + "*author": 2, + "*sign_commit": 2, + "commit_tree_extended": 1, + "*read_commit_extra_headers": 1, + "*read_commit_extra_header_lines": 1, + "free_commit_extra_headers": 1, + "*extra": 1, + "merge_remote_util": 1, + "*get_merge_parent": 1, + "parse_signed_commit": 1, + "*message": 1, + "*signature": 1, + "<linux/proc_fs.h>": 1, + "<linux/smp.h>": 1, + "<linux/init.h>": 1, + "<linux/notifier.h>": 1, + "<linux/sched.h>": 1, + "<linux/unistd.h>": 1, + "<linux/cpu.h>": 1, + "<linux/oom.h>": 1, + "<linux/rcupdate.h>": 1, + "<linux/export.h>": 1, + "<linux/bug.h>": 1, + "<linux/kthread.h>": 1, + "<linux/stop_machine.h>": 1, + "<linux/mutex.h>": 1, + "<linux/gfp.h>": 1, + "<linux/suspend.h>": 1, + "#ifdef": 17, + "CONFIG_SMP": 1, + "DEFINE_MUTEX": 1, + "cpu_add_remove_lock": 3, + "cpu_maps_update_begin": 9, + "mutex_lock": 5, + "cpu_maps_update_done": 9, + "mutex_unlock": 6, + "RAW_NOTIFIER_HEAD": 1, + "cpu_chain": 4, + "cpu_hotplug_disabled": 7, + "CONFIG_HOTPLUG_CPU": 2, + "task_struct": 5, + "*active_writer": 1, + "mutex": 1, + "refcount": 1, + "cpu_hotplug": 1, + ".active_writer": 1, + ".lock": 1, + "__MUTEX_INITIALIZER": 1, + "cpu_hotplug.lock": 8, + ".refcount": 1, + "get_online_cpus": 2, + "might_sleep": 1, + "cpu_hotplug.active_writer": 6, + "current": 3, + "cpu_hotplug.refcount": 3, + "EXPORT_SYMBOL_GPL": 4, + "put_online_cpus": 2, + "unlikely": 1, + "wake_up_process": 1, + "cpu_hotplug_begin": 4, + "likely": 1, + "break": 182, + "__set_current_state": 1, + "TASK_UNINTERRUPTIBLE": 1, + "schedule": 1, + "cpu_hotplug_done": 4, + "#else": 11, + "__ref": 6, + "register_cpu_notifier": 2, + "notifier_block": 3, + "*nb": 3, + "raw_notifier_chain_register": 1, + "nb": 2, + "__cpu_notify": 6, + "val": 20, + "*v": 3, + "nr_to_call": 2, + "*nr_calls": 1, + "__raw_notifier_call_chain": 1, + "v": 6, + "nr_calls": 9, + "notifier_to_errno": 1, + "cpu_notify": 5, + "cpu_notify_nofail": 4, + "BUG_ON": 4, + "EXPORT_SYMBOL": 8, + "unregister_cpu_notifier": 2, + "raw_notifier_chain_unregister": 1, + "clear_tasks_mm_cpumask": 1, + "cpu": 57, + "WARN_ON": 1, + "cpu_online": 5, + "rcu_read_lock": 1, + "for_each_process": 2, + "p": 51, + "*t": 1, + "t": 27, + "find_lock_task_mm": 1, + "cpumask_clear_cpu": 5, + "mm_cpumask": 1, + "mm": 1, + "task_unlock": 1, + "rcu_read_unlock": 1, + "check_for_tasks": 2, + "write_lock_irq": 1, + "tasklist_lock": 2, + "task_cpu": 1, + "state": 104, + "TASK_RUNNING": 1, + "utime": 1, + "stime": 1, + "printk": 12, + "KERN_WARNING": 3, + "comm": 1, + "task_pid_nr": 1, + "flags": 86, + "write_unlock_irq": 1, + "take_cpu_down_param": 3, + "mod": 13, + "*hcpu": 3, + "take_cpu_down": 2, + "*_param": 1, + "*param": 1, + "_param": 1, + "err": 38, + "__cpu_disable": 1, + "CPU_DYING": 1, + "|": 82, + "param": 2, + "hcpu": 10, + "_cpu_down": 3, + "tasks_frozen": 4, + "CPU_TASKS_FROZEN": 2, + "tcd_param": 2, + ".mod": 1, + ".hcpu": 1, + "num_online_cpus": 2, + "EBUSY": 3, + "EINVAL": 6, + "CPU_DOWN_PREPARE": 1, + "CPU_DOWN_FAILED": 2, + "__func__": 2, + "goto": 85, + "out_release": 3, + "__stop_machine": 1, + "cpumask_of": 1, + "idle_cpu": 1, + "cpu_relax": 1, + "__cpu_die": 1, + "CPU_DEAD": 1, + "CPU_POST_DEAD": 1, + "cpu_down": 2, + "out": 11, + "__cpuinit": 3, + "_cpu_up": 3, + "*idle": 1, + "cpu_present": 1, + "idle": 4, + "idle_thread_get": 1, + "IS_ERR": 1, + "PTR_ERR": 1, + "CPU_UP_PREPARE": 1, + "out_notify": 3, + "__cpu_up": 1, + "CPU_ONLINE": 1, + "CPU_UP_CANCELED": 1, + "cpu_up": 2, + "CONFIG_MEMORY_HOTPLUG": 2, + "nid": 5, + "pg_data_t": 1, + "*pgdat": 1, + "cpu_possible": 1, + "KERN_ERR": 5, + "#if": 17, + "defined": 7, + "CONFIG_IA64": 1, + "cpu_to_node": 1, + "node_online": 1, + "mem_online_node": 1, + "pgdat": 3, + "NODE_DATA": 1, + "ENOMEM": 4, + "node_zonelists": 1, + "_zonerefs": 1, + "zone": 1, + "zonelists_mutex": 2, + "build_all_zonelists": 1, + "CONFIG_PM_SLEEP_SMP": 2, + "cpumask_var_t": 1, + "frozen_cpus": 9, + "__weak": 4, + "arch_disable_nonboot_cpus_begin": 2, + "arch_disable_nonboot_cpus_end": 2, + "disable_nonboot_cpus": 1, + "first_cpu": 3, + "cpumask_first": 1, + "cpu_online_mask": 3, + "cpumask_clear": 2, + "for_each_online_cpu": 1, + "cpumask_set_cpu": 5, + "arch_enable_nonboot_cpus_begin": 2, + "arch_enable_nonboot_cpus_end": 2, + "enable_nonboot_cpus": 1, + "cpumask_empty": 1, + "KERN_INFO": 2, + "for_each_cpu": 1, + "__init": 2, + "alloc_frozen_cpus": 2, + "alloc_cpumask_var": 1, + "GFP_KERNEL": 1, + "__GFP_ZERO": 1, + "core_initcall": 2, + "cpu_hotplug_disable_before_freeze": 2, + "cpu_hotplug_enable_after_thaw": 2, + "cpu_hotplug_pm_callback": 2, + "action": 2, + "*ptr": 1, + "switch": 31, + "case": 217, + "PM_SUSPEND_PREPARE": 1, + "PM_HIBERNATION_PREPARE": 1, + "PM_POST_SUSPEND": 1, + "PM_POST_HIBERNATION": 1, + "default": 22, + "NOTIFY_DONE": 1, + "NOTIFY_OK": 1, + "cpu_hotplug_pm_sync_init": 2, + "pm_notifier": 1, + "notify_cpu_starting": 1, + "CPU_STARTING": 1, + "cpumask_test_cpu": 1, + "CPU_STARTING_FROZEN": 1, + "MASK_DECLARE_1": 3, + "x": 12, + "UL": 1, + "<<": 15, + "MASK_DECLARE_2": 3, + "MASK_DECLARE_4": 3, + "MASK_DECLARE_8": 9, + "cpu_bit_bitmap": 2, + "BITS_PER_LONG": 2, + "BITS_TO_LONGS": 1, + "NR_CPUS": 2, + "DECLARE_BITMAP": 6, + "cpu_all_bits": 2, + "CPU_BITS_ALL": 2, + "CONFIG_INIT_ALL_POSSIBLE": 1, + "cpu_possible_bits": 6, + "CONFIG_NR_CPUS": 5, + "__read_mostly": 5, + "cpumask": 7, + "*const": 4, + "cpu_possible_mask": 2, + "to_cpumask": 15, + "cpu_online_bits": 5, + "cpu_present_bits": 5, + "cpu_present_mask": 2, + "cpu_active_bits": 4, + "cpu_active_mask": 2, + "set_cpu_possible": 1, + "bool": 6, + "possible": 2, + "set_cpu_present": 1, + "present": 2, + "set_cpu_online": 1, + "online": 2, + "set_cpu_active": 1, + "active": 2, + "init_cpu_present": 1, + "*src": 3, + "cpumask_copy": 3, + "src": 3, + "init_cpu_possible": 1, + "init_cpu_online": 1, + "*diff_prefix_from_pathspec": 1, + "git_strarray": 2, + "*pathspec": 2, + "git_buf": 3, + "prefix": 34, + "GIT_BUF_INIT": 3, + "*scan": 2, + "git_buf_common_prefix": 1, + "pathspec": 15, + "scan": 4, + "prefix.ptr": 2, + "git__iswildcard": 1, + "git_buf_truncate": 1, + "prefix.size": 1, + "git_buf_detach": 1, + "git_buf_free": 4, + "diff_pathspec_is_interesting": 2, + "*str": 1, + "count": 6, + "false": 4, + "true": 4, + "str": 8, + "strings": 1, + "diff_path_matches_pathspec": 3, + "git_diff_list": 17, + "*diff": 8, + "*path": 2, + "git_attr_fnmatch": 4, + "*match": 3, + "diff": 84, + "pathspec.length": 1, + "git_vector_foreach": 4, + "match": 14, + "p_fnmatch": 1, + "pattern": 3, + "path": 20, + "FNM_NOMATCH": 1, + "GIT_ATTR_FNMATCH_HASWILD": 1, + "strncmp": 1, + "length": 2, + "GIT_ATTR_FNMATCH_NEGATIVE": 1, + "git_diff_delta": 19, + "*diff_delta__alloc": 1, + "git_delta_t": 5, + "status": 57, + "*delta": 6, + "git__calloc": 3, + "delta": 54, + "old_file.path": 12, + "git_pool_strdup": 3, + "pool": 12, + "new_file.path": 6, + "opts.flags": 8, + "GIT_DIFF_REVERSE": 3, + "GIT_DELTA_ADDED": 4, + "GIT_DELTA_DELETED": 7, + "*diff_delta__dup": 1, + "*d": 1, + "git_pool": 4, + "*pool": 3, + "d": 12, + "fail": 19, + "*diff_delta__merge_like_cgit": 1, + "*b": 6, + "*dup": 1, + "diff_delta__dup": 3, + "dup": 15, + "new_file.oid": 7, + "git_oid_cpy": 5, + "new_file.mode": 4, + "new_file.size": 3, + "new_file.flags": 4, + "old_file.oid": 3, + "GIT_DELTA_UNTRACKED": 5, + "GIT_DELTA_IGNORED": 5, + "GIT_DELTA_UNMODIFIED": 11, + "diff_delta__from_one": 5, + "git_index_entry": 8, + "GIT_DIFF_INCLUDE_IGNORED": 1, + "GIT_DIFF_INCLUDE_UNTRACKED": 1, + "diff_delta__alloc": 2, + "assert": 41, + "GIT_DELTA_MODIFIED": 3, + "old_file.mode": 2, + "mode": 9, + "old_file.size": 1, + "file_size": 6, + "old_file.flags": 2, + "GIT_DIFF_FILE_VALID_OID": 4, + "git_vector_insert": 4, + "deltas": 8, + "diff_delta__from_two": 2, + "*old_entry": 1, + "*new_entry": 1, + "*new_oid": 1, + "GIT_DIFF_INCLUDE_UNMODIFIED": 1, + "*temp": 1, + "old_entry": 5, + "new_entry": 5, + "temp": 1, + "new_oid": 3, + "git_oid_iszero": 2, + "*diff_strdup_prefix": 1, + "strlen": 8, + "git_pool_strcat": 1, + "git_pool_strndup": 1, + "diff_delta__cmp": 3, + "*da": 1, + "*db": 3, + "strcmp": 19, + "da": 2, + "db": 10, + "config_bool": 5, + "git_config": 3, + "*cfg": 2, + "defvalue": 2, + "git_config_get_bool": 1, + "cfg": 6, + "giterr_clear": 1, + "*git_diff_list_alloc": 1, + "git_repository": 7, + "*repo": 7, + "git_diff_options": 7, + "*opts": 6, + "repo": 23, + "git_vector_init": 3, + "git_pool_init": 2, + "git_repository_config__weakptr": 1, + "diffcaps": 13, + "GIT_DIFFCAPS_HAS_SYMLINKS": 2, + "GIT_DIFFCAPS_ASSUME_UNCHANGED": 2, + "GIT_DIFFCAPS_TRUST_EXEC_BIT": 2, + "GIT_DIFFCAPS_TRUST_CTIME": 2, + "opts": 24, + "opts.pathspec": 2, + "opts.old_prefix": 4, + "diff_strdup_prefix": 2, + "old_prefix": 2, + "DIFF_OLD_PREFIX_DEFAULT": 1, + "opts.new_prefix": 4, + "new_prefix": 2, + "DIFF_NEW_PREFIX_DEFAULT": 1, + "*swap": 1, + "swap": 1, + "pathspec.count": 2, + "*pattern": 1, + "pathspec.strings": 1, + "GIT_ATTR_FNMATCH_ALLOWSPACE": 1, + "git_attr_fnmatch__parse": 1, + "GIT_ENOTFOUND": 1, + "git_diff_list_free": 3, + "deltas.contents": 1, + "git_vector_free": 3, + "pathspec.contents": 1, + "git_pool_clear": 2, + "oid_for_workdir_item": 2, + "full_path": 3, + "git_buf_joinpath": 1, + "git_repository_workdir": 1, + "S_ISLNK": 2, + "git_odb__hashlink": 1, + "full_path.ptr": 2, + "git__is_sizet": 1, + "giterr_set": 1, + "GITERR_OS": 1, + "fd": 34, + "git_futils_open_ro": 1, + "git_odb__hashfd": 1, + "GIT_OBJ_BLOB": 1, + "p_close": 1, + "EXEC_BIT_MASK": 3, + "maybe_modified": 2, + "git_iterator": 8, + "*old_iter": 2, + "*oitem": 2, + "*new_iter": 2, + "*nitem": 2, + "noid": 4, + "*use_noid": 1, + "omode": 8, + "oitem": 29, + "nmode": 10, + "nitem": 32, + "GIT_UNUSED": 1, + "old_iter": 8, + "S_ISREG": 1, + "GIT_MODE_TYPE": 3, + "GIT_MODE_PERMS_MASK": 1, + "flags_extended": 2, + "GIT_IDXENTRY_INTENT_TO_ADD": 1, + "GIT_IDXENTRY_SKIP_WORKTREE": 1, + "new_iter": 13, + "GIT_ITERATOR_WORKDIR": 2, + "ctime.seconds": 2, + "mtime.seconds": 2, + "GIT_DIFFCAPS_USE_DEV": 1, + "dev": 2, + "ino": 2, + "uid": 2, + "gid": 2, + "S_ISGITLINK": 1, + "git_submodule": 1, + "*sub": 1, + "GIT_DIFF_IGNORE_SUBMODULES": 1, + "git_submodule_lookup": 1, + "sub": 2, + "ignore": 1, + "GIT_SUBMODULE_IGNORE_ALL": 1, + "use_noid": 2, + "diff_from_iterators": 5, + "**diff_ptr": 1, + "ignore_prefix": 6, + "git_diff_list_alloc": 1, + "old_src": 1, + "new_src": 3, + "git_iterator_current": 2, + "git_iterator_advance": 5, + "delta_type": 8, + "git_buf_len": 1, + "git__prefixcmp": 2, + "git_buf_cstr": 1, + "S_ISDIR": 1, + "GIT_DIFF_RECURSE_UNTRACKED_DIRS": 1, + "git_iterator_current_is_ignored": 2, + "git_buf_sets": 1, + "git_iterator_advance_into_directory": 1, + "git_iterator_free": 4, + "*diff_ptr": 2, + "git_diff_tree_to_tree": 1, + "git_tree": 4, + "*old_tree": 3, + "*new_tree": 1, + "**diff": 4, + "diff_prefix_from_pathspec": 4, + "old_tree": 5, + "new_tree": 2, + "git_iterator_for_tree_range": 4, + "git_diff_index_to_tree": 1, + "git_iterator_for_index_range": 2, + "git_diff_workdir_to_index": 1, + "git_iterator_for_workdir_range": 2, + "git_diff_workdir_to_tree": 1, + "git_diff_merge": 1, + "*onto": 1, + "*from": 1, + "onto_pool": 7, + "git_vector": 1, + "onto_new": 6, + "j": 119, + "onto": 7, + "from": 5, + "deltas.length": 4, + "*o": 4, + "GIT_VECTOR_GET": 2, + "*f": 2, + "f": 15, + "o": 18, + "diff_delta__merge_like_cgit": 1, + "git_vector_swap": 1, + "git_pool_swap": 1, + "git_usage_string": 2, + "git_more_info_string": 2, + "N_": 1, + "startup_info": 3, + "git_startup_info": 2, + "use_pager": 8, + "pager_config": 3, + "*cmd": 5, + "want": 3, + "pager_command_config": 2, + "*var": 1, + "*data": 11, + "data": 67, + "prefixcmp": 3, + "var": 3, + "cmd": 46, + "git_config_maybe_bool": 1, + "value": 4, + "xstrdup": 2, + "check_pager_config": 3, + "c.cmd": 1, + "c.want": 2, + "c.value": 3, + "pager_program": 1, + "commit_pager_choice": 4, + "setenv": 1, + "setup_pager": 1, + "handle_options": 2, + "***argv": 2, + "*argc": 1, + "*envchanged": 1, + "**orig_argv": 1, + "*argv": 6, + "new_argv": 7, + "option_count": 1, + "alias_command": 4, + "trace_argv_printf": 3, + "*argcp": 4, + "subdir": 3, + "chdir": 2, + "die_errno": 3, + "errno": 19, + "saved_errno": 1, + "git_version_string": 1, + "GIT_VERSION": 1, + "RUN_SETUP": 81, + "RUN_SETUP_GENTLY": 16, + "USE_PAGER": 3, + "NEED_WORK_TREE": 18, + "cmd_struct": 4, + "option": 7, + "run_builtin": 2, + "help": 4, + "stat": 3, + "st": 2, + "argv": 54, + "setup_git_directory": 1, + "nongit_ok": 2, + "setup_git_directory_gently": 1, + "have_repository": 1, + "trace_repo_setup": 1, + "setup_work_tree": 1, + "fn": 1, + "fstat": 1, + "fileno": 1, + "stdout": 5, + "S_ISFIFO": 1, + "st.st_mode": 2, + "S_ISSOCK": 1, + "fflush": 2, + "ferror": 1, + "fclose": 5, + "handle_internal_command": 3, + "commands": 3, + "cmd_add": 2, + "cmd_annotate": 1, + "cmd_apply": 1, + "cmd_archive": 1, + "cmd_bisect__helper": 1, + "cmd_blame": 2, + "cmd_branch": 1, + "cmd_bundle": 1, + "cmd_cat_file": 1, + "cmd_check_attr": 1, + "cmd_check_ref_format": 1, + "cmd_checkout": 1, + "cmd_checkout_index": 1, + "cmd_cherry": 1, + "cmd_cherry_pick": 1, + "cmd_clean": 1, + "cmd_clone": 1, + "cmd_column": 1, + "cmd_commit": 1, + "cmd_commit_tree": 1, + "cmd_config": 1, + "cmd_count_objects": 1, + "cmd_describe": 1, + "cmd_diff": 1, + "cmd_diff_files": 1, + "cmd_diff_index": 1, + "cmd_diff_tree": 1, + "cmd_fast_export": 1, + "cmd_fetch": 1, + "cmd_fetch_pack": 1, + "cmd_fmt_merge_msg": 1, + "cmd_for_each_ref": 1, + "cmd_format_patch": 1, + "cmd_fsck": 2, + "cmd_gc": 1, + "cmd_get_tar_commit_id": 1, + "cmd_grep": 1, + "cmd_hash_object": 1, + "cmd_help": 1, + "cmd_index_pack": 1, + "cmd_init_db": 2, + "cmd_log": 1, + "cmd_ls_files": 1, + "cmd_ls_remote": 2, + "cmd_ls_tree": 1, + "cmd_mailinfo": 1, + "cmd_mailsplit": 1, + "cmd_merge": 1, + "cmd_merge_base": 1, + "cmd_merge_file": 1, + "cmd_merge_index": 1, + "cmd_merge_ours": 1, + "cmd_merge_recursive": 4, + "cmd_merge_tree": 1, + "cmd_mktag": 1, + "cmd_mktree": 1, + "cmd_mv": 1, + "cmd_name_rev": 1, + "cmd_notes": 1, + "cmd_pack_objects": 1, + "cmd_pack_redundant": 1, + "cmd_pack_refs": 1, + "cmd_patch_id": 1, + "cmd_prune": 1, + "cmd_prune_packed": 1, + "cmd_push": 1, + "cmd_read_tree": 1, + "cmd_receive_pack": 1, + "cmd_reflog": 1, + "cmd_remote": 1, + "cmd_remote_ext": 1, + "cmd_remote_fd": 1, + "cmd_replace": 1, + "cmd_repo_config": 1, + "cmd_rerere": 1, + "cmd_reset": 1, + "cmd_rev_list": 1, + "cmd_rev_parse": 1, + "cmd_revert": 1, + "cmd_rm": 1, + "cmd_send_pack": 1, + "cmd_shortlog": 1, + "cmd_show": 1, + "cmd_show_branch": 1, + "cmd_show_ref": 1, + "cmd_status": 1, + "cmd_stripspace": 1, + "cmd_symbolic_ref": 1, + "cmd_tag": 1, + "cmd_tar_tree": 1, + "cmd_unpack_file": 1, + "cmd_unpack_objects": 1, + "cmd_update_index": 1, + "cmd_update_ref": 1, + "cmd_update_server_info": 1, + "cmd_upload_archive": 1, + "cmd_upload_archive_writer": 1, + "cmd_var": 1, + "cmd_verify_pack": 1, + "cmd_verify_tag": 1, + "cmd_version": 1, + "cmd_whatchanged": 1, + "cmd_write_tree": 1, + "ext": 4, + "STRIP_EXTENSION": 1, + "*argv0": 1, + "argv0": 2, + "ARRAY_SIZE": 1, + "exit": 16, + "execv_dashed_external": 2, + "STRBUF_INIT": 1, + "*tmp": 1, + "strbuf_addf": 1, + "tmp": 2, + "cmd.buf": 1, + "run_command_v_opt": 1, + "RUN_SILENT_EXEC_FAILURE": 1, + "RUN_CLEAN_ON_EXIT": 1, + "ENOENT": 3, + "strbuf_release": 1, + "run_argv": 2, + "done_alias": 4, + "argcp": 2, + "handle_alias": 1, + "main": 3, + "git_extract_argv0_path": 1, + "git_setup_gettext": 1, + "printf": 4, + "list_common_cmds_help": 1, + "setup_path": 1, + "done_help": 3, + "was_alias": 3, + "fprintf": 18, + "stderr": 15, + "help_unknown_cmd": 1, + "strerror": 4, + "PPC_SHA1": 1, + "#": 16, + "git_hash_ctx": 7, + "SHA_CTX": 3, + "*git_hash_new_ctx": 1, + "*ctx": 5, + "ctx": 14, + "SHA1_Init": 4, + "git_hash_free_ctx": 1, + "git_hash_init": 1, + "git_hash_update": 1, + "SHA1_Update": 3, + "git_hash_final": 1, + "*out": 3, + "SHA1_Final": 3, + "git_hash_buf": 1, + "git_hash_vec": 1, + "git_buf_vec": 1, + "*vec": 1, + "vec": 2, + ".data": 1, + ".len": 3, + "<stdio.h>": 4, + "HELLO_H": 2, + "hello": 1, + "<assert.h>": 5, + "<stddef.h>": 1, + "<ctype.h>": 3, + "<stdlib.h>": 2, + "<string.h>": 3, + "<limits.h>": 2, + "ULLONG_MAX": 10, + "MIN": 3, + "HTTP_PARSER_DEBUG": 4, + "SET_ERRNO": 47, + "e": 4, + "do": 8, + "parser": 334, + "http_errno": 11, + "error_lineno": 3, + "__LINE__": 1, + "CALLBACK_NOTIFY_": 3, + "FOR": 11, + "ER": 4, + "HTTP_PARSER_ERRNO": 10, + "HPE_OK": 10, + "settings": 6, + "on_##FOR": 4, + "HPE_CB_##FOR": 2, + "CALLBACK_NOTIFY": 10, + "CALLBACK_NOTIFY_NOADVANCE": 2, + "CALLBACK_DATA_": 4, + "LEN": 2, + "FOR##_mark": 7, + "CALLBACK_DATA": 10, + "CALLBACK_DATA_NOADVANCE": 6, + "MARK": 7, + "PROXY_CONNECTION": 4, + "CONNECTION": 4, + "CONTENT_LENGTH": 4, + "TRANSFER_ENCODING": 4, + "UPGRADE": 4, + "CHUNKED": 4, + "KEEP_ALIVE": 4, + "CLOSE": 4, + "*method_strings": 1, + "XX": 63, + "num": 8, + "string": 2, + "#string": 1, + "HTTP_METHOD_MAP": 3, + "#undef": 5, + "tokens": 3, + "int8_t": 3, + "unhex": 3, + "{-": 1, + "-}": 1, + "HTTP_PARSER_STRICT": 5, + "uint8_t": 6, + "normal_url_char": 3, + "T": 3, + "s_dead": 10, + "s_start_req_or_res": 4, + "s_res_or_resp_H": 3, + "s_start_res": 5, + "s_res_H": 3, + "s_res_HT": 4, + "s_res_HTT": 3, + "s_res_HTTP": 3, + "s_res_first_http_major": 3, + "s_res_http_major": 3, + "s_res_first_http_minor": 3, + "s_res_http_minor": 3, + "s_res_first_status_code": 3, + "s_res_status_code": 3, + "s_res_status": 3, + "s_res_line_almost_done": 4, + "s_start_req": 6, + "s_req_method": 4, + "s_req_spaces_before_url": 5, + "s_req_schema": 6, + "s_req_schema_slash": 6, + "s_req_schema_slash_slash": 6, + "s_req_host_start": 8, + "s_req_host_v6_start": 7, + "s_req_host_v6": 7, + "s_req_host_v6_end": 7, + "s_req_host": 8, + "s_req_port_start": 7, + "s_req_port": 6, + "s_req_path": 8, + "s_req_query_string_start": 8, + "s_req_query_string": 7, + "s_req_fragment_start": 7, + "s_req_fragment": 7, + "s_req_http_start": 3, + "s_req_http_H": 3, + "s_req_http_HT": 3, + "s_req_http_HTT": 3, + "s_req_http_HTTP": 3, + "s_req_first_http_major": 3, + "s_req_http_major": 3, + "s_req_first_http_minor": 3, + "s_req_http_minor": 3, + "s_req_line_almost_done": 4, + "s_header_field_start": 12, + "s_header_field": 4, + "s_header_value_start": 4, + "s_header_value": 5, + "s_header_value_lws": 3, + "s_header_almost_done": 6, + "s_chunk_size_start": 4, + "s_chunk_size": 3, + "s_chunk_parameters": 3, + "s_chunk_size_almost_done": 4, + "s_headers_almost_done": 4, + "s_headers_done": 4, + "s_chunk_data": 3, + "s_chunk_data_almost_done": 3, + "s_chunk_data_done": 3, + "s_body_identity": 3, + "s_body_identity_eof": 4, + "s_message_done": 3, + "PARSING_HEADER": 2, + "header_states": 1, + "h_general": 23, + "0": 1, + "h_C": 3, + "h_CO": 3, + "h_CON": 3, + "h_matching_connection": 3, + "h_matching_proxy_connection": 3, + "h_matching_content_length": 3, + "h_matching_transfer_encoding": 3, + "h_matching_upgrade": 3, + "h_connection": 6, + "h_content_length": 5, + "h_transfer_encoding": 5, + "h_upgrade": 4, + "h_matching_transfer_encoding_chunked": 3, + "h_matching_connection_keep_alive": 3, + "h_matching_connection_close": 3, + "h_transfer_encoding_chunked": 4, + "h_connection_keep_alive": 4, + "h_connection_close": 4, + "Macros": 1, + "character": 1, + "classes": 1, + "depends": 1, + "on": 1, + "strict": 1, + "define": 14, + "CR": 18, + "r": 5, + "LF": 21, + "LOWER": 7, + "0x20": 1, + "IS_ALPHA": 5, + "z": 1, + "IS_NUM": 14, + "9": 1, + "IS_ALPHANUM": 3, + "IS_HEX": 2, + "TOKEN": 4, + "IS_URL_CHAR": 6, + "IS_HOST_CHAR": 4, + "0x80": 1, + "endif": 1, + "start_state": 1, + "HTTP_REQUEST": 7, + "cond": 1, + "HPE_STRICT": 1, + "HTTP_STRERROR_GEN": 3, + "#n": 1, + "*description": 1, + "http_strerror_tab": 7, + "HTTP_ERRNO_MAP": 3, + "http_message_needs_eof": 4, + "http_parser": 13, + "*parser": 9, + "parse_url_char": 5, + "ch": 145, + "http_parser_execute": 2, + "http_parser_settings": 5, + "*settings": 2, + "unhex_val": 7, + "*header_field_mark": 1, + "*header_value_mark": 1, + "*url_mark": 1, + "*body_mark": 1, + "message_complete": 7, + "HPE_INVALID_EOF_STATE": 1, + "header_field_mark": 2, + "header_value_mark": 2, + "url_mark": 2, + "nread": 7, + "HTTP_MAX_HEADER_SIZE": 2, + "HPE_HEADER_OVERFLOW": 1, + "reexecute_byte": 7, + "HPE_CLOSED_CONNECTION": 1, + "content_length": 27, + "message_begin": 3, + "HTTP_RESPONSE": 3, + "HPE_INVALID_CONSTANT": 3, + "method": 39, + "HTTP_HEAD": 2, + "index": 53, + "STRICT_CHECK": 15, + "HPE_INVALID_VERSION": 12, + "http_major": 11, + "http_minor": 11, + "HPE_INVALID_STATUS": 3, + "status_code": 8, + "HPE_INVALID_METHOD": 4, + "http_method": 4, + "HTTP_CONNECT": 4, + "HTTP_DELETE": 1, + "HTTP_GET": 1, + "HTTP_LOCK": 1, + "HTTP_MKCOL": 2, + "HTTP_NOTIFY": 1, + "HTTP_OPTIONS": 1, + "HTTP_POST": 2, + "HTTP_REPORT": 1, + "HTTP_SUBSCRIBE": 2, + "HTTP_TRACE": 1, + "HTTP_UNLOCK": 2, + "*matcher": 1, + "matcher": 3, + "method_strings": 2, + "HTTP_CHECKOUT": 1, + "HTTP_COPY": 1, + "HTTP_MOVE": 1, + "HTTP_MERGE": 1, + "HTTP_MSEARCH": 1, + "HTTP_MKACTIVITY": 1, + "HTTP_SEARCH": 1, + "HTTP_PROPFIND": 2, + "HTTP_PUT": 2, + "HTTP_PATCH": 1, + "HTTP_PURGE": 1, + "HTTP_UNSUBSCRIBE": 1, + "HTTP_PROPPATCH": 1, + "url": 4, + "HPE_INVALID_URL": 4, + "HPE_LF_EXPECTED": 1, + "HPE_INVALID_HEADER_TOKEN": 2, + "header_field": 5, + "header_state": 42, + "header_value": 6, + "F_UPGRADE": 3, + "HPE_INVALID_CONTENT_LENGTH": 4, + "uint64_t": 8, + "F_CONNECTION_KEEP_ALIVE": 3, + "F_CONNECTION_CLOSE": 3, + "F_CHUNKED": 11, + "F_TRAILING": 3, + "NEW_MESSAGE": 6, + "upgrade": 3, + "on_headers_complete": 3, + "F_SKIPBODY": 4, + "HPE_CB_headers_complete": 1, + "to_read": 6, + "body": 6, + "body_mark": 2, + "HPE_INVALID_CHUNK_SIZE": 2, + "HPE_INVALID_INTERNAL_STATE": 1, + "1": 1, + "HPE_UNKNOWN": 1, + "Does": 1, + "the": 3, + "need": 1, + "to": 2, + "see": 1, + "an": 1, + "EOF": 3, + "find": 1, + "end": 18, + "of": 1, + "message": 1, + "http_should_keep_alive": 2, + "http_method_str": 1, + "m": 3, + "http_parser_init": 2, + "http_parser_type": 3, + "http_errno_name": 1, + "/sizeof": 4, + ".name": 1, + "http_errno_description": 1, + ".description": 1, + "http_parser_parse_url": 2, + "buflen": 3, + "is_connect": 4, + "http_parser_url": 3, + "*u": 2, + "http_parser_url_fields": 2, + "uf": 14, + "old_uf": 4, + "u": 10, + "port": 7, + "field_set": 5, + "UF_MAX": 3, + "UF_SCHEMA": 2, + "UF_HOST": 3, + "UF_PORT": 5, + "UF_PATH": 2, + "UF_QUERY": 2, + "UF_FRAGMENT": 2, + "field_data": 5, + ".off": 2, + "xffff": 1, + "uint16_t": 6, + "http_parser_pause": 2, + "paused": 3, + "HPE_PAUSED": 2, + "http_parser_h": 2, + "__cplusplus": 2, + "HTTP_PARSER_VERSION_MAJOR": 1, + "HTTP_PARSER_VERSION_MINOR": 1, + "<sys/types.h>": 1, + "_WIN32": 2, + "__MINGW32__": 1, + "_MSC_VER": 2, + "__int8": 2, + "__int16": 2, + "int16_t": 1, + "__int32": 2, + "int32_t": 1, + "__int64": 2, + "int64_t": 1, + "ssize_t": 1, + "<stdint.h>": 1, + "*1024": 4, + "DELETE": 2, + "GET": 2, + "HEAD": 2, + "POST": 2, + "PUT": 2, + "CONNECT": 2, + "OPTIONS": 2, + "TRACE": 2, + "COPY": 2, + "LOCK": 2, + "MKCOL": 2, + "MOVE": 2, + "PROPFIND": 2, + "PROPPATCH": 2, + "SEARCH": 3, + "UNLOCK": 2, + "REPORT": 2, + "MKACTIVITY": 2, + "CHECKOUT": 2, + "MERGE": 2, + "MSEARCH": 1, + "M": 1, + "NOTIFY": 2, + "SUBSCRIBE": 2, + "UNSUBSCRIBE": 2, + "PATCH": 2, + "PURGE": 2, + "HTTP_##name": 1, + "HTTP_BOTH": 1, + "OK": 1, + "CB_message_begin": 1, + "CB_url": 1, + "CB_header_field": 1, + "CB_header_value": 1, + "CB_headers_complete": 1, + "CB_body": 1, + "CB_message_complete": 1, + "INVALID_EOF_STATE": 1, + "HEADER_OVERFLOW": 1, + "CLOSED_CONNECTION": 1, + "INVALID_VERSION": 1, + "INVALID_STATUS": 1, + "INVALID_METHOD": 1, + "INVALID_URL": 1, + "INVALID_HOST": 1, + "INVALID_PORT": 1, + "INVALID_PATH": 1, + "INVALID_QUERY_STRING": 1, + "INVALID_FRAGMENT": 1, + "LF_EXPECTED": 1, + "INVALID_HEADER_TOKEN": 1, + "INVALID_CONTENT_LENGTH": 1, + "INVALID_CHUNK_SIZE": 1, + "INVALID_CONSTANT": 1, + "INVALID_INTERNAL_STATE": 1, + "STRICT": 1, + "PAUSED": 1, + "UNKNOWN": 1, + "HTTP_ERRNO_GEN": 3, + "HPE_##n": 1, + "HTTP_PARSER_ERRNO_LINE": 2, + "short": 3, + "http_cb": 3, + "on_message_begin": 1, + "http_data_cb": 4, + "on_url": 1, + "on_header_field": 1, + "on_header_value": 1, + "on_body": 1, + "on_message_complete": 1, + "off": 5, + "*http_method_str": 1, + "*http_errno_name": 1, + "*http_errno_description": 1, + "strncasecmp": 2, + "_strnicmp": 1, + "REF_TABLE_SIZE": 1, + "BUFFER_BLOCK": 5, + "BUFFER_SPAN": 9, + "MKD_LI_END": 1, + "gperf_case_strncmp": 1, + "s1": 2, + "s2": 2, + "GPERF_DOWNCASE": 1, + "GPERF_CASE_STRNCMP": 1, + "link_ref": 2, + "*link": 1, + "*title": 1, + "sd_markdown": 6, + "tag": 1, + "tag_len": 3, + "w": 6, + "is_empty": 4, + "htmlblock_end": 3, + "*curtag": 2, + "*rndr": 4, + "start_of_line": 2, + "tag_size": 3, + "curtag": 8, + "end_tag": 4, + "block_lines": 3, + "htmlblock_end_tag": 1, + "rndr": 25, + "parse_htmlblock": 1, + "*ob": 3, + "do_render": 4, + "tag_end": 7, + "work": 4, + "find_block_tag": 1, + "work.size": 5, + "cb.blockhtml": 6, + "ob": 8, + "opaque": 8, + "parse_table_row": 1, + "columns": 3, + "*col_data": 1, + "header_flag": 3, + "col": 9, + "*row_work": 1, + "cb.table_cell": 3, + "cb.table_row": 2, + "row_work": 4, + "rndr_newbuf": 2, + "cell_start": 5, + "cell_end": 6, + "*cell_work": 1, + "cell_work": 3, + "_isspace": 3, + "parse_inline": 1, + "col_data": 2, + "rndr_popbuf": 2, + "empty_cell": 2, + "parse_table_header": 1, + "*columns": 2, + "**column_data": 1, + "pipes": 23, + "header_end": 7, + "under_end": 1, + "*column_data": 1, + "calloc": 1, + "beg": 10, + "doc_size": 6, + "document": 9, + "UTF8_BOM": 1, + "is_ref": 1, + "md": 18, + "refs": 2, + "expand_tabs": 1, + "text": 22, + "bufputc": 2, + "bufgrow": 1, + "MARKDOWN_GROW": 1, + "cb.doc_header": 2, + "parse_block": 1, + "cb.doc_footer": 2, + "bufrelease": 3, + "free_link_refs": 1, + "work_bufs": 8, + ".size": 2, + "sd_markdown_free": 1, + "*md": 1, + ".asize": 2, + ".item": 2, + "stack_free": 2, + "sd_version": 1, + "*ver_major": 2, + "*ver_minor": 2, + "*ver_revision": 2, + "SUNDOWN_VER_MAJOR": 1, + "SUNDOWN_VER_MINOR": 1, + "SUNDOWN_VER_REVISION": 1, + "<errno.h>": 2, + "<sys/wait.h>": 2, + "<poll.h>": 1, + "<unistd.h>": 1, + "<fcntl.h>": 2, + "__APPLE__": 2, + "TARGET_OS_IPHONE": 1, + "**environ": 1, + "uv__chld": 2, + "EV_P_": 1, + "ev_child*": 1, + "watcher": 4, + "revents": 2, + "rstatus": 1, + "exit_status": 3, + "term_signal": 3, + "uv_process_t": 1, + "*process": 1, + "process": 19, + "child_watcher": 5, + "EV_CHILD": 1, + "ev_child_stop": 2, + "EV_A_": 1, + "WIFEXITED": 1, + "WEXITSTATUS": 2, + "WIFSIGNALED": 2, + "WTERMSIG": 2, + "exit_cb": 3, + "uv__make_socketpair": 2, + "fds": 20, + "SOCK_NONBLOCK": 2, + "fl": 8, + "SOCK_CLOEXEC": 1, + "UV__F_NONBLOCK": 5, + "socketpair": 2, + "AF_UNIX": 2, + "SOCK_STREAM": 2, + "uv__cloexec": 4, + "uv__nonblock": 5, + "uv__make_pipe": 2, + "__linux__": 3, + "UV__O_CLOEXEC": 1, + "UV__O_NONBLOCK": 1, + "uv__pipe2": 1, + "ENOSYS": 1, + "pipe": 1, + "uv__process_init_stdio": 2, + "uv_stdio_container_t*": 4, + "container": 17, + "writable": 8, + "UV_IGNORE": 2, + "UV_CREATE_PIPE": 4, + "UV_INHERIT_FD": 3, + "UV_INHERIT_STREAM": 2, + "data.stream": 7, + "UV_NAMED_PIPE": 2, + "data.fd": 1, + "uv__process_stdio_flags": 2, + "uv_pipe_t*": 1, + "ipc": 1, + "UV_STREAM_READABLE": 2, + "UV_STREAM_WRITABLE": 2, + "uv__process_open_stream": 2, + "child_fd": 3, + "close": 13, + "uv__stream_open": 1, + "uv_stream_t*": 2, + "uv__process_close_stream": 2, + "uv__stream_close": 1, + "uv__process_child_init": 2, + "uv_process_options_t": 2, + "options": 17, + "stdio_count": 7, + "int*": 2, + "options.flags": 4, + "UV_PROCESS_DETACHED": 2, + "setsid": 2, + "close_fd": 2, + "use_fd": 7, + "open": 4, + "O_RDONLY": 1, + "O_RDWR": 2, + "perror": 5, + "_exit": 6, + "dup2": 4, + "options.cwd": 2, + "UV_PROCESS_SETGID": 2, + "setgid": 1, + "options.gid": 1, + "UV_PROCESS_SETUID": 2, + "setuid": 1, + "options.uid": 1, + "environ": 4, + "options.env": 1, + "execvp": 1, + "options.file": 2, + "options.args": 1, + "SPAWN_WAIT_EXEC": 5, + "uv_spawn": 1, + "uv_loop_t*": 1, + "loop": 7, + "uv_process_t*": 3, + "char**": 1, + "save_our_env": 3, + "options.stdio_count": 4, + "malloc": 2, + "signal_pipe": 7, + "pollfd": 1, + "pfd": 2, + "pid_t": 2, + "pid": 13, + "UV_PROCESS_WINDOWS_VERBATIM_ARGUMENTS": 1, + "uv__handle_init": 1, + "uv_handle_t*": 1, + "UV_PROCESS": 1, + "counters.process_init": 1, + "uv__handle_start": 1, + "options.exit_cb": 1, + "options.stdio": 3, + "fork": 2, + "pfd.fd": 1, + "pfd.events": 1, + "POLLIN": 1, + "POLLHUP": 1, + "pfd.revents": 1, + "poll": 1, + "EINTR": 1, + "ev_child_init": 1, + "ev_child_start": 1, + "ev": 2, + "child_watcher.data": 1, + "uv__set_sys_error": 2, + "uv_process_kill": 1, + "signum": 4, + "kill": 4, + "uv_err_t": 1, + "uv_kill": 1, + "uv__new_sys_error": 1, + "uv_ok_": 1, + "uv__process_close": 1, + "handle": 10, + "uv__handle_stop": 1, + "VALUE": 13, + "rb_cRDiscount": 4, + "rb_rdiscount_to_html": 2, + "self": 6, + "*res": 2, + "szres": 8, + "encoding": 8, + "rb_funcall": 14, + "rb_intern": 15, + "rb_str_buf_new": 2, + "Check_Type": 2, + "T_STRING": 2, + "rb_rdiscount__get_flags": 3, + "MMIOT": 2, + "*doc": 2, + "mkd_string": 2, + "RSTRING_PTR": 2, + "RSTRING_LEN": 2, + "mkd_compile": 2, + "doc": 6, + "mkd_document": 1, + "res": 4, + "rb_str_cat": 4, + "mkd_cleanup": 2, + "rb_respond_to": 1, + "rb_rdiscount_toc_content": 2, + "mkd_toc": 1, + "ruby_obj": 11, + "MKD_TABSTOP": 1, + "MKD_NOHEADER": 1, + "Qtrue": 10, + "MKD_NOPANTS": 1, + "MKD_NOHTML": 1, + "MKD_TOC": 1, + "MKD_NOIMAGE": 1, + "MKD_NOLINKS": 1, + "MKD_NOTABLES": 1, + "MKD_STRICT": 1, + "MKD_AUTOLINK": 1, + "MKD_SAFELINK": 1, + "MKD_NO_EXT": 1, + "Init_rdiscount": 1, + "rb_define_class": 1, + "rb_cObject": 1, + "rb_define_method": 2, + "<time.h>": 1, + "<signal.h>": 1, + "<stdarg.h>": 1, + "<arpa/inet.h>": 1, + "<sys/stat.h>": 1, + "<sys/time.h>": 1, + "<sys/resource.h>": 2, + "<sys/uio.h>": 1, + "<float.h>": 1, + "<math.h>": 1, + "<sys/utsname.h>": 1, + "sharedObjectsStruct": 1, + "shared": 1, + "double": 7, + "R_Zero": 2, + "R_PosInf": 2, + "R_NegInf": 2, + "R_Nan": 2, + "redisServer": 1, + "server": 1, + "redisCommand": 6, + "*commandTable": 1, + "redisCommandTable": 5, + "getCommand": 1, + "setCommand": 1, + "noPreloadGetKeys": 6, + "setnxCommand": 1, + "setexCommand": 1, + "psetexCommand": 1, + "appendCommand": 1, + "strlenCommand": 1, + "delCommand": 1, + "existsCommand": 1, + "setbitCommand": 1, + "getbitCommand": 1, + "setrangeCommand": 1, + "getrangeCommand": 2, + "incrCommand": 1, + "decrCommand": 1, + "mgetCommand": 1, + "rpushCommand": 1, + "lpushCommand": 1, + "rpushxCommand": 1, + "lpushxCommand": 1, + "linsertCommand": 1, + "rpopCommand": 1, + "lpopCommand": 1, + "brpopCommand": 1, + "brpoplpushCommand": 1, + "blpopCommand": 1, + "llenCommand": 1, + "lindexCommand": 1, + "lsetCommand": 1, + "lrangeCommand": 1, + "ltrimCommand": 1, + "lremCommand": 1, + "rpoplpushCommand": 1, + "saddCommand": 1, + "sremCommand": 1, + "smoveCommand": 1, + "sismemberCommand": 1, + "scardCommand": 1, + "spopCommand": 1, + "srandmemberCommand": 1, + "sinterCommand": 2, + "sinterstoreCommand": 1, + "sunionCommand": 1, + "sunionstoreCommand": 1, + "sdiffCommand": 1, + "sdiffstoreCommand": 1, + "zaddCommand": 1, + "zincrbyCommand": 1, + "zremCommand": 1, + "zremrangebyscoreCommand": 1, + "zremrangebyrankCommand": 1, + "zunionstoreCommand": 1, + "zunionInterGetKeys": 4, + "zinterstoreCommand": 1, + "zrangeCommand": 1, + "zrangebyscoreCommand": 1, + "zrevrangebyscoreCommand": 1, + "zcountCommand": 1, + "zrevrangeCommand": 1, + "zcardCommand": 1, + "zscoreCommand": 1, + "zrankCommand": 1, + "zrevrankCommand": 1, + "hsetCommand": 1, + "hsetnxCommand": 1, + "hgetCommand": 1, + "hmsetCommand": 1, + "hmgetCommand": 1, + "hincrbyCommand": 1, + "hincrbyfloatCommand": 1, + "hdelCommand": 1, + "hlenCommand": 1, + "hkeysCommand": 1, + "hvalsCommand": 1, + "hgetallCommand": 1, + "hexistsCommand": 1, + "incrbyCommand": 1, + "decrbyCommand": 1, + "incrbyfloatCommand": 1, + "getsetCommand": 1, + "msetCommand": 1, + "msetnxCommand": 1, + "randomkeyCommand": 1, + "selectCommand": 1, + "moveCommand": 1, + "renameCommand": 1, + "renameGetKeys": 2, + "renamenxCommand": 1, + "expireCommand": 1, + "expireatCommand": 1, + "pexpireCommand": 1, + "pexpireatCommand": 1, + "keysCommand": 1, + "dbsizeCommand": 1, + "authCommand": 3, + "pingCommand": 2, + "echoCommand": 2, + "saveCommand": 1, + "bgsaveCommand": 1, + "bgrewriteaofCommand": 1, + "shutdownCommand": 2, + "lastsaveCommand": 1, + "typeCommand": 1, + "multiCommand": 2, + "execCommand": 2, + "discardCommand": 2, + "syncCommand": 1, + "flushdbCommand": 1, + "flushallCommand": 1, + "sortCommand": 1, + "infoCommand": 4, + "monitorCommand": 2, + "ttlCommand": 1, + "pttlCommand": 1, + "persistCommand": 1, + "slaveofCommand": 2, + "debugCommand": 1, + "configCommand": 1, + "subscribeCommand": 2, + "unsubscribeCommand": 2, + "psubscribeCommand": 2, + "punsubscribeCommand": 2, + "publishCommand": 1, + "watchCommand": 2, + "unwatchCommand": 1, + "clusterCommand": 1, + "restoreCommand": 1, + "migrateCommand": 1, + "askingCommand": 1, + "dumpCommand": 1, + "objectCommand": 1, + "clientCommand": 1, + "evalCommand": 1, + "evalShaCommand": 1, + "slowlogCommand": 1, + "scriptCommand": 2, + "timeCommand": 2, + "bitopCommand": 1, + "bitcountCommand": 1, + "redisLogRaw": 3, + "level": 11, + "syslogLevelMap": 2, + "LOG_DEBUG": 1, + "LOG_INFO": 1, + "LOG_NOTICE": 1, + "LOG_WARNING": 1, + "FILE": 3, + "*fp": 3, + "rawmode": 2, + "REDIS_LOG_RAW": 2, + "xff": 3, + "server.verbosity": 4, + "fp": 13, + "server.logfile": 8, + "fopen": 3, + "msg": 10, + "timeval": 4, + "tv": 8, + "gettimeofday": 4, + "strftime": 1, + "localtime": 1, + "tv.tv_sec": 4, + "snprintf": 2, + "tv.tv_usec/1000": 1, + "getpid": 7, + "server.syslog_enabled": 3, + "syslog": 1, + "redisLog": 33, + "...": 1, + "va_list": 1, + "ap": 4, + "REDIS_MAX_LOGMSG_LEN": 1, + "va_start": 1, + "vsnprintf": 1, + "va_end": 1, + "redisLogFromHandler": 2, + "server.daemonize": 5, + "O_APPEND": 2, + "O_CREAT": 2, + "O_WRONLY": 2, + "STDOUT_FILENO": 2, + "ll2string": 3, + "write": 7, + "time": 10, + "oom": 3, + "REDIS_WARNING": 19, + "sleep": 1, + "abort": 1, + "ustime": 7, + "ust": 4, + "*1000000": 1, + "tv.tv_usec": 3, + "mstime": 5, + "/1000": 1, + "exitFromChild": 1, + "retcode": 3, + "COVERAGE_TEST": 1, + "dictVanillaFree": 1, + "*privdata": 8, + "*val": 4, + "DICT_NOTUSED": 6, + "privdata": 8, + "zfree": 2, + "dictListDestructor": 2, + "listRelease": 1, + "list*": 1, + "dictSdsKeyCompare": 6, + "*key1": 4, + "*key2": 4, + "l1": 4, + "l2": 3, + "sdslen": 14, + "sds": 13, + "key1": 5, + "key2": 5, + "dictSdsKeyCaseCompare": 2, + "strcasecmp": 13, + "dictRedisObjectDestructor": 7, + "decrRefCount": 6, + "dictSdsDestructor": 4, + "sdsfree": 2, + "dictObjKeyCompare": 2, + "robj": 7, + "*o1": 2, + "*o2": 2, + "o1": 7, + "ptr": 18, + "o2": 7, + "dictObjHash": 2, + "key": 9, + "dictGenHashFunction": 5, + "dictSdsHash": 4, + "char*": 7, + "dictSdsCaseHash": 2, + "dictGenCaseHashFunction": 1, + "dictEncObjKeyCompare": 4, + "robj*": 3, + "REDIS_ENCODING_INT": 4, + "getDecodedObject": 3, + "dictEncObjHash": 4, + "REDIS_ENCODING_RAW": 1, + "dictType": 8, + "setDictType": 1, + "zsetDictType": 1, + "dbDictType": 2, + "keyptrDictType": 2, + "commandTableDictType": 2, + "hashDictType": 1, + "keylistDictType": 4, + "clusterNodesDictType": 1, + "htNeedsResize": 3, + "dict": 11, + "*dict": 2, + "used": 7, + "dictSlots": 3, + "dictSize": 10, + "DICT_HT_INITIAL_SIZE": 2, + "used*100/size": 1, + "REDIS_HT_MINFILL": 1, + "tryResizeHashTables": 2, + "server.dbnum": 8, + "server.db": 23, + ".dict": 9, + "dictResize": 2, + ".expires": 8, + "incrementallyRehash": 2, + "dictIsRehashing": 2, + "dictRehashMilliseconds": 2, + "updateDictResizePolicy": 2, + "server.rdb_child_pid": 12, + "server.aof_child_pid": 10, + "dictEnableResize": 1, + "dictDisableResize": 1, + "activeExpireCycle": 2, + "iteration": 3, + "start": 6, + "timelimit": 5, + "*REDIS_EXPIRELOOKUPS_TIME_PERC/REDIS_HZ/100": 1, + "expired": 4, + "redisDb": 3, + "expires": 3, + "slots": 2, + "now": 5, + "num*100/slots": 1, + "REDIS_EXPIRELOOKUPS_PER_CRON": 2, + "dictEntry": 2, + "*de": 2, + "de": 12, + "dictGetRandomKey": 4, + "dictGetSignedIntegerVal": 1, + "dictGetKey": 4, + "*keyobj": 2, + "createStringObject": 11, + "propagateExpire": 2, + "keyobj": 6, + "dbDelete": 2, + "server.stat_expiredkeys": 3, + "xf": 1, + "REDIS_EXPIRELOOKUPS_PER_CRON/4": 1, + "updateLRUClock": 3, + "server.lruclock": 2, + "server.unixtime/REDIS_LRU_CLOCK_RESOLUTION": 1, + "REDIS_LRU_CLOCK_MAX": 1, + "trackOperationsPerSecond": 2, + "server.ops_sec_last_sample_time": 3, + "ops": 1, + "server.stat_numcommands": 4, + "server.ops_sec_last_sample_ops": 3, + "ops_sec": 3, + "ops*1000/t": 1, + "server.ops_sec_samples": 4, + "server.ops_sec_idx": 4, + "%": 2, + "getOperationsPerSecond": 2, + "sum": 3, + "REDIS_OPS_SEC_SAMPLES": 2, + "clientsCronHandleTimeout": 2, + "redisClient": 12, + "time_t": 4, + "server.unixtime": 10, + "server.maxidletime": 3, + "REDIS_SLAVE": 3, + "REDIS_MASTER": 2, + "REDIS_BLOCKED": 2, + "pubsub_channels": 2, + "listLength": 14, + "pubsub_patterns": 2, + "lastinteraction": 3, + "REDIS_VERBOSE": 3, + "freeClient": 1, + "bpop.timeout": 2, + "addReply": 13, + "shared.nullmultibulk": 2, + "unblockClientWaitingData": 1, + "clientsCronResizeQueryBuffer": 2, + "querybuf_size": 3, + "sdsAllocSize": 1, + "querybuf": 6, + "idletime": 2, + "REDIS_MBULK_BIG_ARG": 1, + "querybuf_size/": 1, + "querybuf_peak": 2, + "sdsavail": 1, + "sdsRemoveFreeSpace": 1, + "clientsCron": 2, + "numclients": 3, + "server.clients": 7, + "iterations": 4, + "numclients/": 1, + "REDIS_HZ*10": 1, + "listNode": 4, + "*head": 1, + "listRotate": 1, + "head": 2, + "listFirst": 2, + "listNodeValue": 3, + "run_with_period": 6, + "_ms_": 1, + "loops": 2, + "serverCron": 2, + "aeEventLoop": 2, + "*eventLoop": 2, + "*clientData": 1, + "server.cronloops": 3, + "REDIS_NOTUSED": 5, + "eventLoop": 2, + "clientData": 1, + "server.watchdog_period": 3, + "watchdogScheduleSignal": 1, + "zmalloc_used_memory": 8, + "server.stat_peak_memory": 5, + "server.shutdown_asap": 3, + "prepareForShutdown": 2, + "REDIS_OK": 23, + "vkeys": 8, + "server.activerehashing": 2, + "server.slaves": 9, + "server.aof_rewrite_scheduled": 4, + "rewriteAppendOnlyFileBackground": 2, + "statloc": 5, + "wait3": 1, + "WNOHANG": 1, + "exitcode": 3, + "bysignal": 4, + "backgroundSaveDoneHandler": 1, + "backgroundRewriteDoneHandler": 1, + "server.saveparamslen": 3, + "saveparam": 1, + "*sp": 1, + "server.saveparams": 2, + "server.dirty": 3, + "sp": 4, + "changes": 2, + "server.lastsave": 3, + "seconds": 2, + "REDIS_NOTICE": 13, + "rdbSaveBackground": 1, + "server.rdb_filename": 4, + "server.aof_rewrite_perc": 3, + "server.aof_current_size": 2, + "server.aof_rewrite_min_size": 2, + "base": 1, + "server.aof_rewrite_base_size": 4, + "growth": 3, + "server.aof_current_size*100/base": 1, + "server.aof_flush_postponed_start": 2, + "flushAppendOnlyFile": 2, + "server.masterhost": 7, + "freeClientsInAsyncFreeQueue": 1, + "replicationCron": 1, + "server.cluster_enabled": 6, + "clusterCron": 1, + "/REDIS_HZ": 1, + "beforeSleep": 2, + "*ln": 3, + "server.unblocked_clients": 4, + "ln": 8, + "redisAssert": 1, + "listDelNode": 1, + "REDIS_UNBLOCKED": 1, + "server.current_client": 3, + "processInputBuffer": 1, + "createSharedObjects": 2, + "shared.crlf": 2, + "createObject": 31, + "REDIS_STRING": 31, + "sdsnew": 27, + "shared.ok": 3, + "shared.err": 1, + "shared.emptybulk": 1, + "shared.czero": 1, + "shared.cone": 1, + "shared.cnegone": 1, + "shared.nullbulk": 1, + "shared.emptymultibulk": 1, + "shared.pong": 2, + "shared.queued": 2, + "shared.wrongtypeerr": 1, + "shared.nokeyerr": 1, + "shared.syntaxerr": 2, + "shared.sameobjecterr": 1, + "shared.outofrangeerr": 1, + "shared.noscripterr": 1, + "shared.loadingerr": 2, + "shared.slowscripterr": 2, + "shared.masterdownerr": 2, + "shared.bgsaveerr": 2, + "shared.roslaveerr": 2, + "shared.oomerr": 2, + "shared.space": 1, + "shared.colon": 1, + "shared.plus": 1, + "REDIS_SHARED_SELECT_CMDS": 1, + "shared.select": 1, + "sdscatprintf": 24, + "sdsempty": 8, + "shared.messagebulk": 1, + "shared.pmessagebulk": 1, + "shared.subscribebulk": 1, + "shared.unsubscribebulk": 1, + "shared.psubscribebulk": 1, + "shared.punsubscribebulk": 1, + "shared.del": 1, + "shared.rpop": 1, + "shared.lpop": 1, + "REDIS_SHARED_INTEGERS": 1, + "shared.integers": 2, + "void*": 1, + "REDIS_SHARED_BULKHDR_LEN": 1, + "shared.mbulkhdr": 1, + "shared.bulkhdr": 1, + "initServerConfig": 2, + "getRandomHexChars": 1, + "server.runid": 3, + "REDIS_RUN_ID_SIZE": 2, + "server.arch_bits": 3, + "server.port": 7, + "REDIS_SERVERPORT": 1, + "server.bindaddr": 2, + "server.unixsocket": 7, + "server.unixsocketperm": 2, + "server.ipfd": 9, + "server.sofd": 9, + "REDIS_DEFAULT_DBNUM": 1, + "REDIS_MAXIDLETIME": 1, + "server.client_max_querybuf_len": 1, + "REDIS_MAX_QUERYBUF_LEN": 1, + "server.loading": 4, + "server.syslog_ident": 2, + "zstrdup": 5, + "server.syslog_facility": 2, + "LOG_LOCAL0": 1, + "server.aof_state": 7, + "REDIS_AOF_OFF": 5, + "server.aof_fsync": 1, + "AOF_FSYNC_EVERYSEC": 1, + "server.aof_no_fsync_on_rewrite": 1, + "REDIS_AOF_REWRITE_PERC": 1, + "REDIS_AOF_REWRITE_MIN_SIZE": 1, + "server.aof_last_fsync": 1, + "server.aof_rewrite_time_last": 2, + "server.aof_rewrite_time_start": 2, + "server.aof_delayed_fsync": 2, + "server.aof_fd": 4, + "server.aof_selected_db": 1, + "server.pidfile": 3, + "server.aof_filename": 3, + "server.requirepass": 4, + "server.rdb_compression": 1, + "server.rdb_checksum": 1, + "server.maxclients": 6, + "REDIS_MAX_CLIENTS": 1, + "server.bpop_blocked_clients": 2, + "server.maxmemory": 6, + "server.maxmemory_policy": 11, + "REDIS_MAXMEMORY_VOLATILE_LRU": 3, + "server.maxmemory_samples": 3, + "server.hash_max_ziplist_entries": 1, + "REDIS_HASH_MAX_ZIPLIST_ENTRIES": 1, + "server.hash_max_ziplist_value": 1, + "REDIS_HASH_MAX_ZIPLIST_VALUE": 1, + "server.list_max_ziplist_entries": 1, + "REDIS_LIST_MAX_ZIPLIST_ENTRIES": 1, + "server.list_max_ziplist_value": 1, + "REDIS_LIST_MAX_ZIPLIST_VALUE": 1, + "server.set_max_intset_entries": 1, + "REDIS_SET_MAX_INTSET_ENTRIES": 1, + "server.zset_max_ziplist_entries": 1, + "REDIS_ZSET_MAX_ZIPLIST_ENTRIES": 1, + "server.zset_max_ziplist_value": 1, + "REDIS_ZSET_MAX_ZIPLIST_VALUE": 1, + "server.repl_ping_slave_period": 1, + "REDIS_REPL_PING_SLAVE_PERIOD": 1, + "server.repl_timeout": 1, + "REDIS_REPL_TIMEOUT": 1, + "server.cluster.configfile": 1, + "server.lua_caller": 1, + "server.lua_time_limit": 1, + "REDIS_LUA_TIME_LIMIT": 1, + "server.lua_client": 1, + "server.lua_timedout": 2, + "resetServerSaveParams": 2, + "appendServerSaveParams": 3, + "*60": 1, + "server.masterauth": 1, + "server.masterport": 2, + "server.master": 3, + "server.repl_state": 6, + "REDIS_REPL_NONE": 1, + "server.repl_syncio_timeout": 1, + "REDIS_REPL_SYNCIO_TIMEOUT": 1, + "server.repl_serve_stale_data": 2, + "server.repl_slave_ro": 2, + "server.repl_down_since": 2, + "server.client_obuf_limits": 9, + "REDIS_CLIENT_LIMIT_CLASS_NORMAL": 3, + ".hard_limit_bytes": 3, + ".soft_limit_bytes": 3, + ".soft_limit_seconds": 3, + "REDIS_CLIENT_LIMIT_CLASS_SLAVE": 3, + "*1024*256": 1, + "*1024*64": 1, + "REDIS_CLIENT_LIMIT_CLASS_PUBSUB": 3, + "*1024*32": 1, + "*1024*8": 1, + ".0": 1, + ".0/R_Zero": 2, + "R_Zero/R_Zero": 1, + "server.commands": 1, + "dictCreate": 6, + "populateCommandTable": 2, + "server.delCommand": 1, + "lookupCommandByCString": 3, + "server.multiCommand": 1, + "server.lpushCommand": 1, + "server.slowlog_log_slower_than": 1, + "REDIS_SLOWLOG_LOG_SLOWER_THAN": 1, + "server.slowlog_max_len": 1, + "REDIS_SLOWLOG_MAX_LEN": 1, + "server.assert_failed": 1, + "server.assert_file": 1, + "server.assert_line": 1, + "server.bug_report_start": 1, + "adjustOpenFilesLimit": 2, + "rlim_t": 3, + "maxfiles": 6, + "rlimit": 1, + "limit": 3, + "getrlimit": 1, + "RLIMIT_NOFILE": 2, + "oldlimit": 5, + "limit.rlim_cur": 2, + "limit.rlim_max": 1, + "setrlimit": 1, + "initServer": 2, + "signal": 2, + "SIGHUP": 1, + "SIG_IGN": 2, + "SIGPIPE": 1, + "setupSignalHandlers": 2, + "openlog": 1, + "LOG_PID": 1, + "LOG_NDELAY": 1, + "LOG_NOWAIT": 1, + "listCreate": 6, + "server.clients_to_close": 1, + "server.monitors": 2, + "server.el": 7, + "aeCreateEventLoop": 1, + "zmalloc": 2, + "*server.dbnum": 1, + "anetTcpServer": 1, + "server.neterr": 4, + "ANET_ERR": 2, + "unlink": 3, + "anetUnixServer": 1, + ".blocking_keys": 1, + ".watched_keys": 1, + ".id": 1, + "server.pubsub_channels": 2, + "server.pubsub_patterns": 4, + "listSetFreeMethod": 1, + "freePubsubPattern": 1, + "listSetMatchMethod": 1, + "listMatchPubsubPattern": 1, + "aofRewriteBufferReset": 1, + "server.aof_buf": 3, + "server.rdb_save_time_last": 2, + "server.rdb_save_time_start": 2, + "server.stat_numconnections": 2, + "server.stat_evictedkeys": 3, + "server.stat_starttime": 2, + "server.stat_keyspace_misses": 2, + "server.stat_keyspace_hits": 2, + "server.stat_fork_time": 2, + "server.stat_rejected_conn": 2, + "server.lastbgsave_status": 3, + "server.stop_writes_on_bgsave_err": 2, + "aeCreateTimeEvent": 1, + "aeCreateFileEvent": 2, + "AE_READABLE": 2, + "acceptTcpHandler": 1, + "AE_ERR": 2, + "acceptUnixHandler": 1, + "REDIS_AOF_ON": 2, + "LL*": 1, + "REDIS_MAXMEMORY_NO_EVICTION": 2, + "clusterInit": 1, + "scriptingInit": 1, + "slowlogInit": 1, + "bioInit": 1, + "numcommands": 5, + "sflags": 1, + "retval": 3, + "arity": 3, + "addReplyErrorFormat": 1, + "authenticated": 3, + "proc": 14, + "addReplyError": 6, + "getkeys_proc": 1, + "firstkey": 1, + "hashslot": 3, + "server.cluster.state": 1, + "REDIS_CLUSTER_OK": 1, + "ask": 3, + "clusterNode": 1, + "*n": 1, + "getNodeByQuery": 1, + "server.cluster.myself": 1, + "addReplySds": 3, + "ip": 4, + "freeMemoryIfNeeded": 2, + "REDIS_CMD_DENYOOM": 1, + "REDIS_ERR": 5, + "REDIS_CMD_WRITE": 2, + "REDIS_REPL_CONNECTED": 3, + "tolower": 2, + "REDIS_MULTI": 1, + "queueMultiCommand": 1, + "call": 1, + "REDIS_CALL_FULL": 1, + "save": 2, + "REDIS_SHUTDOWN_SAVE": 1, + "nosave": 2, + "REDIS_SHUTDOWN_NOSAVE": 1, + "SIGKILL": 2, + "rdbRemoveTempFile": 1, + "aof_fsync": 1, + "rdbSave": 1, + "addReplyBulk": 1, + "addReplyMultiBulkLen": 1, + "addReplyBulkLongLong": 2, + "bytesToHuman": 3, + "*s": 1, + "sprintf": 4, + "n/": 3, + "LL*1024*1024": 2, + "LL*1024*1024*1024": 1, + "genRedisInfoString": 2, + "*section": 2, + "info": 63, + "uptime": 2, + "rusage": 1, + "self_ru": 2, + "c_ru": 2, + "lol": 3, + "bib": 3, + "allsections": 12, + "defsections": 11, + "sections": 11, + "section": 14, + "getrusage": 2, + "RUSAGE_SELF": 1, + "RUSAGE_CHILDREN": 1, + "getClientsMaxBuffers": 1, + "utsname": 1, + "sdscat": 14, + "uname": 1, + "REDIS_VERSION": 4, + "redisGitSHA1": 3, + "strtol": 2, + "redisGitDirty": 3, + "name.sysname": 1, + "name.release": 1, + "name.machine": 1, + "aeGetApiName": 1, + "__GNUC__": 2, + "__GNUC_MINOR__": 1, + "__GNUC_PATCHLEVEL__": 1, + "uptime/": 1, + "*24": 1, + "hmem": 3, + "peak_hmem": 3, + "zmalloc_get_rss": 1, + "lua_gc": 1, + "server.lua": 1, + "LUA_GCCOUNT": 1, + "*1024LL": 1, + "zmalloc_get_fragmentation_ratio": 1, + "ZMALLOC_LIB": 2, + "aofRewriteBufferSize": 2, + "bioPendingJobsOfType": 1, + "REDIS_BIO_AOF_FSYNC": 1, + "perc": 3, + "eta": 4, + "elapsed": 3, + "off_t": 1, + "remaining_bytes": 1, + "server.loading_total_bytes": 3, + "server.loading_loaded_bytes": 3, + "server.loading_start_time": 2, + "elapsed*remaining_bytes": 1, + "/server.loading_loaded_bytes": 1, + "REDIS_REPL_TRANSFER": 2, + "server.repl_transfer_left": 1, + "server.repl_transfer_lastio": 1, + "slaveid": 3, + "listIter": 2, + "li": 6, + "listRewind": 2, + "listNext": 2, + "*slave": 2, + "*state": 1, + "anetPeerToString": 1, + "slave": 3, + "replstate": 1, + "REDIS_REPL_WAIT_BGSAVE_START": 1, + "REDIS_REPL_WAIT_BGSAVE_END": 1, + "REDIS_REPL_SEND_BULK": 1, + "REDIS_REPL_ONLINE": 1, + "float": 11, + "self_ru.ru_stime.tv_sec": 1, + "self_ru.ru_stime.tv_usec/1000000": 1, + "self_ru.ru_utime.tv_sec": 1, + "self_ru.ru_utime.tv_usec/1000000": 1, + "c_ru.ru_stime.tv_sec": 1, + "c_ru.ru_stime.tv_usec/1000000": 1, + "c_ru.ru_utime.tv_sec": 1, + "c_ru.ru_utime.tv_usec/1000000": 1, + "calls": 4, + "microseconds": 1, + "microseconds/c": 1, + "keys": 4, + "REDIS_MONITOR": 1, + "slaveseldb": 1, + "listAddNodeTail": 1, + "mem_used": 9, + "mem_tofree": 3, + "mem_freed": 4, + "slaves": 3, + "obuf_bytes": 3, + "getClientOutputBufferMemoryUsage": 1, + "k": 7, + "keys_freed": 3, + "bestval": 5, + "bestkey": 9, + "REDIS_MAXMEMORY_ALLKEYS_LRU": 2, + "REDIS_MAXMEMORY_ALLKEYS_RANDOM": 2, + "REDIS_MAXMEMORY_VOLATILE_RANDOM": 1, + "thiskey": 7, + "thisval": 8, + "dictFind": 1, + "dictGetVal": 2, + "estimateObjectIdleTime": 1, + "REDIS_MAXMEMORY_VOLATILE_TTL": 1, + "flushSlavesOutputBuffers": 1, + "linuxOvercommitMemoryValue": 2, + "fgets": 1, + "atoi": 3, + "linuxOvercommitMemoryWarning": 2, + "createPidFile": 2, + "daemonize": 2, + "STDIN_FILENO": 1, + "STDERR_FILENO": 2, + "version": 2, + "usage": 2, + "redisAsciiArt": 2, + "*16": 2, + "ascii_logo": 1, + "sigtermHandler": 2, + "sig": 2, + "sigaction": 6, + "act": 6, + "sigemptyset": 2, + "act.sa_mask": 2, + "act.sa_flags": 2, + "act.sa_handler": 1, + "SIGTERM": 1, + "HAVE_BACKTRACE": 1, + "SA_NODEFER": 1, + "SA_RESETHAND": 1, + "SA_SIGINFO": 1, + "act.sa_sigaction": 1, + "sigsegvHandler": 1, + "SIGSEGV": 1, + "SIGBUS": 1, + "SIGFPE": 1, + "SIGILL": 1, + "memtest": 2, + "megabytes": 1, + "passes": 1, + "zmalloc_enable_thread_safeness": 1, + "srand": 1, + "dictSetHashFunctionSeed": 1, + "*configfile": 1, + "configfile": 2, + "sdscatrepr": 1, + "loadServerConfig": 1, + "loadAppendOnlyFile": 1, + "/1000000": 2, + "rdbLoad": 1, + "aeSetBeforeSleepProc": 1, + "aeMain": 1, + "aeDeleteEventLoop": 1, + "yajl_status_to_string": 1, + "yajl_status": 4, + "statStr": 6, + "yajl_status_ok": 1, + "yajl_status_client_canceled": 1, + "yajl_status_insufficient_data": 1, + "yajl_status_error": 1, + "yajl_handle": 10, + "yajl_alloc": 1, + "yajl_callbacks": 1, + "callbacks": 3, + "yajl_parser_config": 1, + "config": 4, + "yajl_alloc_funcs": 3, + "afs": 8, + "allowComments": 4, + "validateUTF8": 3, + "hand": 28, + "afsBuffer": 3, + "realloc": 1, + "yajl_set_default_alloc_funcs": 1, + "YA_MALLOC": 1, + "yajl_handle_t": 1, + "alloc": 6, + "checkUTF8": 1, + "lexer": 4, + "yajl_lex_alloc": 1, + "bytesConsumed": 2, + "decodeBuf": 2, + "yajl_buf_alloc": 1, + "yajl_bs_init": 1, + "stateStack": 3, + "yajl_bs_push": 1, + "yajl_state_start": 1, + "yajl_reset_parser": 1, + "yajl_lex_realloc": 1, + "yajl_free": 1, + "yajl_bs_free": 1, + "yajl_buf_free": 1, + "yajl_lex_free": 1, + "YA_FREE": 2, + "yajl_parse": 2, + "jsonText": 4, + "jsonTextLen": 4, + "yajl_do_parse": 1, + "yajl_parse_complete": 1, + "yajl_get_error": 1, + "verbose": 2, + "yajl_render_error_string": 1, + "yajl_get_bytes_consumed": 1, + "yajl_free_error": 1 + }, + "C++": { + "class": 19, + "Bar": 2, + "{": 283, + "protected": 4, + "char": 32, + "*name": 2, + ";": 793, + "public": 20, + "void": 58, + "hello": 2, + "(": 842, + ")": 843, + "}": 285, + "foo": 2, + "cudaArray*": 1, + "cu_array": 4, + "texture": 1, + "<float,>": 1, + "2": 1, + "cudaReadModeElementType": 1, + "tex": 4, + "//": 457, + "cudaChannelFormatDesc": 1, + "description": 2, + "cudaCreateChannelDesc": 1, + "<float>": 1, + "cudaMallocArray": 1, + "&": 74, + "width": 5, + "height": 5, + "cudaMemcpyToArray": 1, + "image": 1, + "width*height*sizeof": 1, + "float": 2, + "cudaMemcpyHostToDevice": 1, + "tex.addressMode": 2, + "cudaAddressModeClamp": 2, + "tex.filterMode": 1, + "cudaFilterModePoint": 1, + "tex.normalized": 1, + "false": 40, + "cudaBindTextureToArray": 1, + "dim3": 2, + "blockDim": 2, + "gridDim": 2, + "+": 40, + "blockDim.x": 2, + "-": 114, + "/": 9, + "blockDim.y": 2, + "kernel": 2, + "<<": 5, + "<": 27, + "d_data": 1, + "cudaUnbindTexture": 1, + "//end": 1, + "__global__": 1, + "float*": 1, + "odata": 2, + "int": 62, + "unsigned": 16, + "x": 19, + "blockIdx.x*blockDim.x": 1, + "threadIdx.x": 1, + "y": 4, + "blockIdx.y*blockDim.y": 1, + "threadIdx.y": 1, + "if": 132, + "&&": 13, + "c": 33, + "tex2D": 1, + "y*width": 1, + "/*": 9, + "*/": 9, + "#include": 71, + "<QCoreApplication>": 1, + "<QString>": 1, + "<QVariantMap>": 2, + "static": 56, + "Env": 13, + "*env_instance": 1, + "*": 13, + "NULL": 49, + "*Env": 1, + "instance": 3, + "env_instance": 3, + "new": 2, + "return": 107, + "QObject": 2, + "QCoreApplication": 1, + "parse": 3, + "const": 91, + "**envp": 1, + "**env": 1, + "**": 2, + "QString": 18, + "envvar": 2, + "name": 3, + "value": 3, + "indexOfEquals": 5, + "for": 9, + "env": 3, + "envp": 4, + "*env": 1, + "(*": 3, + "*)": 3, + "envvar.indexOf": 1, + "continue": 2, + "envvar.left": 1, + "envvar.mid": 1, + "m_map.insert": 1, + "QVariantMap": 3, + "asVariantMap": 2, + "m_map": 2, + "#ifndef": 5, + "ENV_H": 2, + "#define": 5, + "<QObject>": 1, + "Q_OBJECT": 1, + "*instance": 1, + "private": 8, + "#endif": 12, + "<iostream>": 1, + "using": 1, + "namespace": 10, + "std": 18, + "main": 2, + "cout": 1, + "endl": 1, + "<map>": 1, + "<openssl/ecdsa.h>": 1, + "<openssl/obj_mac.h>": 1, + "EC_KEY_regenerate_key": 1, + "EC_KEY": 2, + "*eckey": 2, + "BIGNUM": 9, + "*priv_key": 1, + "ok": 3, + "BN_CTX": 2, + "*ctx": 2, + "EC_POINT": 4, + "*pub_key": 1, + "eckey": 7, + "EC_GROUP": 2, + "*group": 2, + "EC_KEY_get0_group": 2, + "ctx": 25, + "BN_CTX_new": 2, + "goto": 23, + "err": 25, + "pub_key": 6, + "EC_POINT_new": 4, + "group": 12, + "EC_POINT_mul": 3, + "priv_key": 2, + "EC_KEY_set_private_key": 1, + "EC_KEY_set_public_key": 2, + "EC_POINT_free": 4, + "BN_CTX_free": 2, + "ECDSA_SIG_recover_key_GFp": 3, + "ECDSA_SIG": 3, + "*ecsig": 1, + "*msg": 2, + "msglen": 2, + "recid": 3, + "check": 2, + "ret": 23, + "*x": 1, + "*e": 1, + "*order": 1, + "*sor": 1, + "*eor": 1, + "*field": 1, + "*R": 1, + "*O": 1, + "*Q": 1, + "*rr": 1, + "*zero": 1, + "n": 7, + "i": 47, + "BN_CTX_start": 1, + "order": 8, + "BN_CTX_get": 8, + "EC_GROUP_get_order": 1, + "BN_copy": 1, + "BN_mul_word": 1, + "BN_add": 1, + "ecsig": 3, + "r": 9, + "field": 3, + "EC_GROUP_get_curve_GFp": 1, + "BN_cmp": 1, + "R": 6, + "EC_POINT_set_compressed_coordinates_GFp": 1, + "%": 1, + "O": 5, + "EC_POINT_is_at_infinity": 1, + "Q": 5, + "EC_GROUP_get_degree": 1, + "e": 13, + "BN_bin2bn": 3, + "msg": 1, + "*msglen": 1, + "BN_rshift": 1, + "zero": 3, + "BN_zero": 1, + "BN_mod_sub": 1, + "rr": 4, + "BN_mod_inverse": 1, + "sor": 3, + "BN_mod_mul": 2, + "s": 5, + "eor": 3, + "BN_CTX_end": 1, + "CKey": 26, + "SetCompressedPubKey": 4, + "EC_KEY_set_conv_form": 1, + "pkey": 14, + "POINT_CONVERSION_COMPRESSED": 1, + "fCompressedPubKey": 5, + "true": 31, + "Reset": 5, + "EC_KEY_new_by_curve_name": 2, + "NID_secp256k1": 2, + "throw": 4, + "key_error": 6, + "fSet": 7, + "b": 12, + "EC_KEY_dup": 1, + "b.pkey": 2, + "b.fSet": 2, + "operator": 5, + "EC_KEY_copy": 1, + "hash": 20, + "sizeof": 6, + "vchSig": 18, + "nSize": 2, + "vchSig.clear": 2, + "vchSig.resize": 2, + "bool": 89, + "SignCompact": 2, + "uint256": 10, + "vector": 14, + "<unsigned>": 19, + "fOk": 3, + "*sig": 2, + "ECDSA_do_sign": 1, + "char*": 7, + "sig": 11, + "nBitsR": 3, + "BN_num_bits": 2, + "nBitsS": 3, + "nRecId": 4, + "<4;>": 1, + "keyRec": 5, + "1": 2, + "GetPubKey": 5, + "this": 2, + "break": 30, + "BN_bn2bin": 2, + "/8": 2, + "ECDSA_SIG_free": 2, + "SetCompactSignature": 2, + "vchSig.size": 2, + "nV": 6, + "<27>": 1, + "ECDSA_SIG_new": 1, + "EC_KEY_free": 1, + "Verify": 2, + "ECDSA_verify": 1, + "VerifyCompact": 2, + "key": 1, + "key.SetCompactSignature": 1, + "key.GetPubKey": 1, + "IsValid": 4, + "fCompr": 3, + "CSecret": 4, + "secret": 2, + "GetSecret": 2, + "key2": 1, + "key2.SetSecret": 1, + "key2.GetPubKey": 1, + "BITCOIN_KEY_H": 2, + "<stdexcept>": 1, + "<vector>": 1, + "<openssl/ec.h>": 1, + "runtime_error": 2, + "explicit": 3, + "string": 1, + "str": 2, + "CKeyID": 5, + "uint160": 8, + "in": 4, + "CScriptID": 3, + "CPubKey": 11, + "vchPubKey": 6, + "friend": 4, + "vchPubKeyIn": 2, + "a": 3, + "a.vchPubKey": 3, + "b.vchPubKey": 3, + "IMPLEMENT_SERIALIZE": 1, + "READWRITE": 1, + "GetID": 1, + "Hash160": 1, + "GetHash": 1, + "Hash": 1, + "vchPubKey.begin": 1, + "vchPubKey.end": 1, + "vchPubKey.size": 3, + "||": 8, + "IsCompressed": 2, + "Raw": 1, + "typedef": 5, + "secure_allocator": 2, + "CPrivKey": 3, + "EC_KEY*": 1, + "IsNull": 1, + "MakeNewKey": 1, + "fCompressed": 3, + "SetPrivKey": 1, + "vchPrivKey": 1, + "SetSecret": 1, + "vchSecret": 1, + "GetPrivKey": 1, + "SetPubKey": 1, + "Sign": 1, + "#ifdef": 3, + "Q_OS_LINUX": 2, + "<QApplication>": 1, + "#if": 4, + "QT_VERSION": 1, + "QT_VERSION_CHECK": 1, + "#error": 2, + "Something": 1, + "is": 1, + "wrong": 1, + "with": 1, + "the": 5, + "setup.": 1, + "Please": 1, + "report": 2, + "to": 3, + "mailing": 1, + "list": 1, + "argc": 2, + "char**": 2, + "argv": 2, + "google_breakpad": 1, + "ExceptionHandler": 1, + "eh": 1, + "Utils": 4, + "exceptionHandler": 2, + "qInstallMsgHandler": 1, + "messageHandler": 2, + "QApplication": 1, + "app": 1, + "STATIC_BUILD": 1, + "Q_INIT_RESOURCE": 2, + "WebKit": 1, + "InspectorBackendStub": 1, + "app.setWindowIcon": 1, + "QIcon": 1, + "app.setApplicationName": 1, + "app.setOrganizationName": 1, + "app.setOrganizationDomain": 1, + "app.setApplicationVersion": 1, + "PHANTOMJS_VERSION_STRING": 1, + "Phantom": 1, + "phantom": 1, + "phantom.execute": 1, + "app.exec": 1, + "phantom.returnValue": 1, + "v8": 5, + "internal": 5, + "Scanner": 16, + "UnicodeCache*": 4, + "unicode_cache": 3, + "unicode_cache_": 10, + "octal_pos_": 5, + "Location": 14, + "invalid": 4, + "harmony_scoping_": 4, + "harmony_modules_": 4, + "Initialize": 4, + "Utf16CharacterStream*": 3, + "source": 6, + "source_": 7, + "Init": 3, + "has_line_terminator_before_next_": 9, + "SkipWhiteSpace": 4, + "Scan": 5, + "uc32": 19, + "ScanHexNumber": 2, + "expected_length": 4, + "ASSERT": 17, + "digits": 3, + "c0_": 64, + "d": 4, + "HexValue": 2, + "j": 4, + "PushBack": 8, + "Advance": 40, + "STATIC_ASSERT": 5, + "Token": 212, + "NUM_TOKENS": 1, + "byte": 1, + "one_char_tokens": 2, + "ILLEGAL": 120, + "LPAREN": 2, + "RPAREN": 2, + "COMMA": 2, + "COLON": 2, + "SEMICOLON": 2, + "CONDITIONAL": 2, + "LBRACK": 2, + "RBRACK": 2, + "LBRACE": 2, + "RBRACE": 2, + "BIT_NOT": 2, + "Value": 23, + "Next": 2, + "current_": 2, + "next_": 2, + "has_multiline_comment_before_next_": 5, + "static_cast": 7, + "f": 4, + "token": 61, + "<Token::Value>": 1, + "pos": 12, + "source_pos": 10, + "next_.token": 3, + "next_.location.beg_pos": 3, + "next_.location.end_pos": 4, + "current_.token": 4, + "inline": 12, + "IsByteOrderMark": 2, + "xFEFF": 1, + "xFFFE": 1, + "start_position": 2, + "while": 6, + "IsWhiteSpace": 2, + "IsLineTerminator": 6, + "SkipSingleLineComment": 6, + "WHITESPACE": 6, + "SkipMultiLineComment": 3, + "ch": 5, + "ScanHtmlComment": 3, + "LT": 2, + "next_.literal_chars": 13, + "do": 1, + "switch": 2, + "case": 32, + "ScanString": 3, + "Select": 32, + "LTE": 1, + "else": 32, + "ASSIGN_SHL": 1, + "SHL": 1, + "GTE": 1, + "ASSIGN_SAR": 1, + "ASSIGN_SHR": 1, + "SHR": 1, + "SAR": 1, + "GT": 1, + "EQ_STRICT": 1, + "EQ": 1, + "ASSIGN": 1, + "NE_STRICT": 1, + "NE": 1, + "NOT": 1, + "INC": 1, + "ASSIGN_ADD": 1, + "ADD": 1, + "DEC": 1, + "ASSIGN_SUB": 1, + "SUB": 1, + "ASSIGN_MUL": 1, + "MUL": 1, + "ASSIGN_MOD": 1, + "MOD": 1, + "ASSIGN_DIV": 1, + "DIV": 1, + "AND": 1, + "ASSIGN_BIT_AND": 1, + "BIT_AND": 1, + "OR": 1, + "ASSIGN_BIT_OR": 1, + "BIT_OR": 1, + "ASSIGN_BIT_XOR": 1, + "BIT_XOR": 1, + "IsDecimalDigit": 2, + "ScanNumber": 3, + "PERIOD": 1, + "default": 1, + "IsIdentifierStart": 2, + "ScanIdentifierOrKeyword": 2, + "EOS": 1, + "SeekForward": 4, + "current_pos": 4, + "ASSERT_EQ": 1, + "ScanEscape": 2, + "IsCarriageReturn": 2, + "IsLineFeed": 2, + "t": 6, + "u": 6, + "v": 3, + "xx": 1, + "xxx": 1, + "error": 1, + "immediately": 1, + "because": 1, + "octal": 1, + "escape": 1, + "can": 1, + "quote": 2, + "LiteralScope": 4, + "literal": 2, + ".": 2, + "X": 2, + "E": 3, + "l": 1, + "p": 1, + "w": 1, + "keyword": 1, + "valid": 1, + "and": 2, + "character": 1, + "has": 1, + "in_character_class": 2, + "AddLiteralCharAdvance": 3, + "literal.Complete": 2, + "ScanLiteralUnicodeEscape": 3, + "V8_SCANNER_H_": 2, + "enum": 3, + "ParsingFlags": 1, + "kNoParsingFlags": 1, + "kLanguageModeMask": 4, + "kAllowLazy": 1, + "kAllowNativesSyntax": 1, + "kAllowModules": 1, + "CLASSIC_MODE": 2, + "STRICT_MODE": 2, + "EXTENDED_MODE": 2, + "|": 2, + "Utf16CharacterStream": 3, + "pos_": 6, + "virtual": 4, + "buffer_cursor_": 5, + "buffer_end_": 3, + "ReadBlock": 2, + "<uc32>": 1, + "kEndOfInput": 2, + "code_unit_count": 7, + "buffered_chars": 2, + "SlowSeekForward": 2, + "int32_t": 1, + "code_unit": 6, + "uc16*": 3, + "UnicodeCache": 3, + "unibrow": 11, + "Utf8InputBuffer": 2, + "<1024>": 2, + "Utf8Decoder": 2, + "StaticResource": 2, + "<Utf8Decoder>": 2, + "utf8_decoder": 1, + "utf8_decoder_": 2, + "uchar": 4, + "kIsIdentifierStart.get": 1, + "IsIdentifierPart": 1, + "kIsIdentifierPart.get": 1, + "kIsLineTerminator.get": 1, + "kIsWhiteSpace.get": 1, + "Predicate": 4, + "<IdentifierStart,>": 1, + "128": 4, + "kIsIdentifierStart": 1, + "<IdentifierPart,>": 1, + "kIsIdentifierPart": 1, + "<unibrow::LineTerminator,>": 1, + "kIsLineTerminator": 1, + "<unibrow::WhiteSpace,>": 1, + "kIsWhiteSpace": 1, + "DISALLOW_COPY_AND_ASSIGN": 2, + "LiteralBuffer": 6, + "is_ascii_": 10, + "position_": 17, + "backing_store_": 7, + "backing_store_.length": 4, + "backing_store_.Dispose": 3, + "INLINE": 2, + "AddChar": 2, + "uint32_t": 8, + "ExpandBuffer": 2, + "kMaxAsciiCharCodeU": 1, + "<byte>": 6, + "kASCIISize": 1, + "ConvertToUtf16": 2, + "*reinterpret_cast": 1, + "<uc16*>": 2, + "kUC16Size": 2, + "is_ascii": 3, + "Vector": 13, + "<const>": 10, + "uc16": 5, + "utf16_literal": 3, + "reinterpret_cast": 6, + "backing_store_.start": 5, + "ascii_literal": 3, + "length": 8, + "kInitialCapacity": 2, + "kGrowthFactory": 2, + "kMinConversionSlack": 1, + "kMaxGrowth": 2, + "MB": 1, + "NewCapacity": 3, + "min_capacity": 2, + "capacity": 3, + "Max": 1, + "new_capacity": 2, + "Min": 1, + "new_store": 6, + "New": 2, + "memcpy": 1, + "new_store.start": 3, + "new_content_size": 4, + "src": 2, + "<char*>": 1, + "dst": 2, + "Scanner*": 2, + "self": 2, + "scanner_": 5, + "complete_": 4, + "StartLiteral": 2, + "DropLiteral": 2, + "Complete": 1, + "TerminateLiteral": 2, + "struct": 2, + "beg_pos": 5, + "end_pos": 4, + "kNoOctalLocation": 1, + "scanner_contants": 1, + "current_token": 1, + "location": 4, + "current_.location": 2, + "literal_ascii_string": 1, + "ASSERT_NOT_NULL": 9, + "current_.literal_chars": 11, + "literal_utf16_string": 1, + "is_literal_ascii": 1, + "literal_length": 1, + "literal_contains_escapes": 1, + "source_length": 3, + "location.end_pos": 1, + "location.beg_pos": 1, + "STRING": 1, + "peek": 1, + "peek_location": 1, + "next_.location": 1, + "next_literal_ascii_string": 1, + "next_literal_utf16_string": 1, + "is_next_literal_ascii": 1, + "next_literal_length": 1, + "kCharacterLookaheadBufferSize": 3, + "ScanOctalEscape": 1, + "octal_position": 1, + "clear_octal_position": 1, + "HarmonyScoping": 1, + "SetHarmonyScoping": 1, + "scoping": 2, + "HarmonyModules": 1, + "SetHarmonyModules": 1, + "modules": 2, + "HasAnyLineTerminatorBeforeNext": 1, + "ScanRegExpPattern": 1, + "seen_equal": 1, + "ScanRegExpFlags": 1, + "IsIdentifier": 1, + "CharacterStream*": 1, + "buffer": 1, + "TokenDesc": 3, + "LiteralBuffer*": 2, + "literal_chars": 1, + "free_buffer": 3, + "literal_buffer1_": 3, + "literal_buffer2_": 2, + "AddLiteralChar": 2, + "tok": 2, + "next": 2, + "then": 2, + "else_": 2, + "ScanDecimalDigits": 1, + "seen_period": 1, + "ScanIdentifierSuffix": 1, + "LiteralScope*": 1, + "ScanIdentifierUnicodeEscape": 1, + "UTILS_H": 2, + "<QtGlobal>": 1, + "<QWebFrame>": 1, + "<QFile>": 1, + "QTemporaryFile": 1, + "showUsage": 1, + "QtMsgType": 1, + "type": 1, + "dump_path": 1, + "minidump_id": 1, + "void*": 1, + "context": 8, + "succeeded": 1, + "QVariant": 1, + "coffee2js": 1, + "script": 1, + "injectJsInFrame": 2, + "jsFilePath": 5, + "libraryPath": 5, + "QWebFrame": 4, + "*targetFrame": 4, + "startingScript": 2, + "Encoding": 3, + "jsFileEnc": 2, + "readResourceFileUtf8": 1, + "resourceFilePath": 1, + "loadJSForDebug": 2, + "autorun": 2, + "cleanupFromDebug": 1, + "findScript": 1, + "jsFromScriptFile": 1, + "scriptPath": 1, + "enc": 1, + "This": 1, + "shouldn": 1, + "be": 1, + "instantiated": 1, + "QTemporaryFile*": 2, + "m_tempHarness": 1, + "We": 1, + "want": 1, + "make": 1, + "sure": 1, + "clean": 1, + "up": 1, + "after": 1, + "ourselves": 1, + "m_tempWrapper": 1, + "V8_DECLARE_ONCE": 1, + "init_once": 2, + "V8": 21, + "is_running_": 6, + "has_been_set_up_": 4, + "has_been_disposed_": 6, + "has_fatal_error_": 5, + "use_crankshaft_": 6, + "List": 3, + "<CallCompletedCallback>": 3, + "call_completed_callbacks_": 16, + "LazyMutex": 1, + "entropy_mutex": 1, + "LAZY_MUTEX_INITIALIZER": 1, + "EntropySource": 3, + "entropy_source": 4, + "Deserializer*": 2, + "des": 3, + "FlagList": 1, + "EnforceFlagImplications": 1, + "InitializeOncePerProcess": 4, + "Isolate": 9, + "CurrentPerIsolateThreadData": 4, + "EnterDefaultIsolate": 1, + "thread_id": 1, + ".Equals": 1, + "ThreadId": 1, + "Current": 5, + "isolate": 15, + "IsDead": 2, + "Isolate*": 6, + "IsInitialized": 1, + "SetFatalError": 2, + "TearDown": 5, + "IsDefaultIsolate": 1, + "ElementsAccessor": 2, + "LOperand": 2, + "TearDownCaches": 1, + "RegisteredExtension": 1, + "UnregisterAll": 1, + "delete": 2, + "OS": 3, + "seed_random": 2, + "uint32_t*": 2, + "state": 15, + "FLAG_random_seed": 2, + "val": 3, + "ScopedLock": 1, + "lock": 1, + "entropy_mutex.Pointer": 1, + "random": 1, + "random_base": 3, + "xFFFF": 2, + "FFFF": 1, + "SetEntropySource": 2, + "SetReturnAddressLocationResolver": 3, + "ReturnAddressLocationResolver": 2, + "resolver": 3, + "StackFrame": 1, + "Random": 3, + "Context*": 4, + "IsGlobalContext": 1, + "ByteArray*": 1, + "seed": 2, + "random_seed": 1, + "<uint32_t*>": 1, + "GetDataStartAddress": 1, + "RandomPrivate": 2, + "private_random_seed": 1, + "IdleNotification": 3, + "hint": 3, + "FLAG_use_idle_notification": 1, + "HEAP": 1, + "AddCallCompletedCallback": 2, + "CallCompletedCallback": 4, + "callback": 7, + "at": 3, + "Add": 1, + "RemoveCallCompletedCallback": 2, + "Remove": 1, + "FireCallCompletedCallback": 2, + "HandleScopeImplementer*": 1, + "handle_scope_implementer": 5, + "CallDepthIsZero": 1, + "IncrementCallDepth": 1, + "DecrementCallDepth": 1, + "union": 1, + "double": 2, + "double_value": 1, + "uint64_t": 2, + "uint64_t_value": 1, + "double_int_union": 2, + "Object*": 4, + "FillHeapNumberWithRandom": 2, + "heap_number": 4, + "random_bits": 2, + "binary_million": 3, + ".0": 1, + "r.double_value": 3, + "r.uint64_t_value": 1, + "HeapNumber": 1, + "cast": 1, + "set_value": 1, + "InitializeOncePerProcessImpl": 3, + "SetUp": 4, + "FLAG_crankshaft": 1, + "Serializer": 1, + "enabled": 1, + "CPU": 2, + "SupportsCrankshaft": 1, + "PostSetUp": 1, + "RuntimeProfiler": 1, + "GlobalSetUp": 1, + "FLAG_stress_compaction": 1, + "FLAG_force_marking_deque_overflows": 1, + "FLAG_gc_global": 1, + "FLAG_max_new_space_size": 1, + "kPageSizeBits": 1, + "SetUpCaches": 1, + "SetUpJSCallerSavedCodeData": 1, + "SamplerRegistry": 1, + "ExternalReference": 1, + "CallOnce": 1, + "V8_V8_H_": 2, + "defined": 5, + "GOOGLE3": 1, + "DEBUG": 3, + "NDEBUG": 4, + "#undef": 1, + "both": 1, + "are": 1, + "set": 1, + "Deserializer": 1, + "AllStatic": 1, + "IsRunning": 1, + "UseCrankshaft": 1, + "FatalProcessOutOfMemory": 1, + "take_snapshot": 1, + "NilValue": 1, + "kNullValue": 1, + "kUndefinedValue": 1, + "EqualityKind": 1, + "kStrictEquality": 1, + "kNonStrictEquality": 1 + }, + "Ceylon": { + "doc": 2, + "by": 1, + "shared": 5, + "void": 1, + "test": 1, + "(": 4, + ")": 4, + "{": 3, + "print": 1, + ";": 4, + "}": 3, + "class": 1, + "Test": 2, + "name": 4, + "satisfies": 1, + "Comparable": 1, + "<Test>": 1, + "String": 2, + "actual": 2, + "string": 1, + "Comparison": 1, + "compare": 1, + "other": 1, + "return": 1, + "<=>": 1, + "other.name": 1 + }, + "CoffeeScript": { + "#": 208, + "CoffeeScript": 1, + "require": 20, + "CoffeeScript.require": 1, + "CoffeeScript.eval": 1, + "(": 153, + "code": 18, + "options": 16, + "{": 28, + "}": 31, + ")": 151, + "-": 64, + "options.bare": 2, + "on": 3, + "eval": 2, + "CoffeeScript.compile": 2, + "CoffeeScript.run": 3, + "Function": 1, + "return": 22, + "unless": 16, + "window": 1, + "CoffeeScript.load": 2, + "url": 2, + "callback": 35, + "xhr": 2, + "new": 11, + "window.ActiveXObject": 1, + "or": 10, + "XMLHttpRequest": 1, + "xhr.open": 1, + "true": 8, + "xhr.overrideMimeType": 1, + "if": 91, + "of": 4, + "xhr.onreadystatechange": 1, + "xhr.readyState": 1, + "is": 31, + "xhr.status": 1, + "in": 27, + "xhr.responseText": 1, + "else": 48, + "throw": 3, + "Error": 1, + "xhr.send": 1, + "null": 15, + "runScripts": 3, + "scripts": 2, + "document.getElementsByTagName": 1, + "coffees": 2, + "s": 8, + "for": 9, + "when": 13, + "s.type": 1, + "index": 2, + "length": 4, + "coffees.length": 1, + "do": 2, + "execute": 3, + "script": 7, + "+": 24, + ".type": 1, + "script.src": 2, + "script.innerHTML": 1, + "window.addEventListener": 1, + "addEventListener": 1, + "no": 3, + "attachEvent": 1, + "class": 8, + "Animal": 3, + "constructor": 5, + "@name": 2, + "move": 3, + "meters": 2, + "alert": 4, + "Snake": 2, + "extends": 4, + "super": 4, + "Horse": 2, + "sam": 1, + "tom": 1, + "sam.move": 1, + "tom.move": 1, + "fs": 2, + "path": 3, + "Lexer": 3, + "RESERVED": 3, + "parser": 1, + "vm": 1, + "require.extensions": 3, + "module": 1, + "filename": 6, + "content": 4, + "compile": 5, + "fs.readFileSync": 1, + "module._compile": 1, + "require.registerExtension": 2, + "exports.VERSION": 1, + "exports.RESERVED": 1, + "exports.helpers": 2, + "exports.compile": 1, + "merge": 1, + "try": 3, + "js": 5, + "parser.parse": 3, + "lexer.tokenize": 3, + ".compile": 1, + "options.header": 1, + "catch": 2, + "err": 20, + "err.message": 2, + "options.filename": 5, + "header": 1, + "exports.tokens": 1, + "exports.nodes": 1, + "source": 5, + "typeof": 2, + "exports.run": 1, + "mainModule": 1, + "require.main": 1, + "mainModule.filename": 4, + "process.argv": 1, + "then": 22, + "fs.realpathSync": 2, + "mainModule.moduleCache": 1, + "and": 20, + "mainModule.paths": 1, + "._nodeModulePaths": 1, + "path.dirname": 2, + "path.extname": 1, + "isnt": 6, + "mainModule._compile": 2, + "exports.eval": 1, + "code.trim": 1, + "Script": 2, + "vm.Script": 1, + "options.sandbox": 4, + "instanceof": 2, + "Script.createContext": 2, + ".constructor": 1, + "sandbox": 8, + "k": 4, + "v": 4, + "own": 2, + "sandbox.global": 1, + "sandbox.root": 1, + "sandbox.GLOBAL": 1, + "global": 3, + "sandbox.__filename": 3, + "||": 3, + "sandbox.__dirname": 1, + "sandbox.module": 2, + "sandbox.require": 2, + "Module": 2, + "_module": 3, + "options.modulename": 1, + "_require": 2, + "Module._load": 1, + "_module.filename": 1, + "r": 4, + "Object.getOwnPropertyNames": 1, + "_require.paths": 1, + "_module.paths": 1, + "Module._nodeModulePaths": 1, + "process.cwd": 1, + "_require.resolve": 1, + "request": 2, + "Module._resolveFilename": 1, + "o": 4, + "o.bare": 1, + "vm.runInThisContext": 1, + "vm.runInContext": 1, + "lexer": 1, + "parser.lexer": 1, + "lex": 1, + "tag": 29, + "@yytext": 1, + "@yylineno": 1, + "@tokens": 3, + "@pos": 1, + "./nodes": 1, + "console.log": 1, + "number": 13, + "opposite": 2, + "square": 4, + "x": 6, + "*": 16, + "list": 2, + "math": 1, + "root": 1, + "Math.sqrt": 1, + "cube": 1, + "race": 1, + "winner": 2, + "runners...": 1, + "print": 1, + "runners": 1, + "elvis": 1, + "cubes": 1, + "math.cube": 1, + "num": 2, + "Rewriter": 1, + "INVERSES": 2, + "count": 5, + "starts": 1, + "compact": 1, + "last": 3, + "exports.Lexer": 1, + "tokenize": 1, + "opts": 1, + "WHITESPACE.test": 1, + "code.replace": 1, + "/": 27, + "r/g": 1, + "TYPE": 1, + "t": 1, + "being": 1, + "used": 1, + "as": 1, + "identifierToken": 1, + "match": 23, + "IDENTIFIER.exec": 1, + "@chunk": 8, + "input": 1, + "id": 16, + "colon": 3, + "@tag": 2, + "@token": 10, + "id.length": 1, + "forcedIdentifier": 4, + "prev": 17, + "not": 4, + "prev.spaced": 3, + "JS_KEYWORDS": 1, + "COFFEE_KEYWORDS": 1, + "id.toUpperCase": 1, + "LINE_BREAK": 2, + "@seenFor": 4, + "yes": 4, + "UNARY": 4, + "RELATION": 3, + "@value": 1, + "@tokens.pop": 1, + "JS_FORBIDDEN": 1, + "String": 1, + "id.reserved": 1, + "@error": 8, + "COFFEE_ALIAS_MAP": 1, + "COFFEE_ALIASES": 1, + "switch": 5, + "input.length": 1, + "numberToken": 1, + "NUMBER.exec": 1, + "BOX": 1, + "/.test": 4, + "/E/.test": 1, + "x/.test": 1, + "d*": 1, + "d": 2, + "lexedLength": 2, + "number.length": 1, + "octalLiteral": 2, + "/.exec": 2, + "parseInt": 3, + ".toString": 2, + "binaryLiteral": 2, + "b": 1, + "stringToken": 1, + "@chunk.charAt": 3, + "SIMPLESTR.exec": 1, + "string": 6, + ".replace": 1, + "MULTILINER": 2, + "@balancedString": 1, + "<": 4, + "string.indexOf": 1, + "@interpolateString": 1, + "...": 2, + "@escapeLines": 1, + "octalEsc": 1, + ".": 11, + "|": 5, + "@line": 3, + "string.length": 1, + "heredocToken": 1, + "HEREDOC.exec": 1, + "heredoc": 4, + "quote": 5, + "heredoc.charAt": 1, + "doc": 10, + "@sanitizeHeredoc": 2, + "indent": 7, + "<=>": 1, + "indexOf": 1, + "interpolateString": 1, + "token": 1, + "STRING": 2, + "makeString": 1, + "line": 5, + "n": 10, + "Matches": 1, + "consumes": 1, + "comments": 1, + "commentToken": 1, + "@chunk.match": 1, + "COMMENT": 1, + "comment": 2, + "here": 3, + "herecomment": 3, + "Array": 1, + "@indent": 1, + ".join": 1, + "comment.length": 1, + "jsToken": 1, + "JSTOKEN.exec": 1, + "script.length": 1, + "regexToken": 1, + "HEREGEX.exec": 1, + "@heregexToken": 1, + "NOT_REGEX": 2, + "NOT_SPACED_REGEX": 2, + "REGEX.exec": 1, + "regex": 4, + "flags": 2, + "..1": 1, + "match.length": 1, + "heregexToken": 1, + "heregex": 1, + "body": 1, + "body.indexOf": 1, + "re": 1, + "body.replace": 1, + "HEREGEX_OMIT": 2, + "regular": 1, + "expressions": 1, + "cannot": 1, + "begin": 1, + "with": 2, + "REGEX": 2, + "IDENTIFIER": 1, + "RegExp": 1, + "CALL_START": 2, + "TOKENS": 1, + "spaced": 1, + "reserved": 1, + "word": 1, + "value.length": 2, + "value": 14, + "MATH": 3, + "COMPARE": 3, + "COMPOUND_ASSIGN": 2, + "SHIFT": 3, + "LOGIC": 3, + ".spaced": 1, + "CALLABLE": 2, + "INDEXABLE": 2, + "@ends.push": 1, + "@pair": 1, + "sanitizeHeredoc": 1, + "HEREDOC_ILLEGAL.test": 1, + "doc.indexOf": 1, + "while": 2, + "HEREDOC_INDENT.exec": 1, + "attempt": 2, + "attempt.length": 1, + "indent.length": 1, + "doc.replace": 2, + "///": 7, + "///g": 1, + "n/": 1, + "PARAM_END": 1, + "PARAM_START": 1, + "missing": 1, + "stack.pop": 1, + "starting": 1, + "Hello": 1, + "name.capitalize": 1, + "OUTDENT": 1, + "THROW": 1, + "EXTENDS": 1, + "&": 1, + "false": 4, + "this": 1, + "delete": 1, + "break": 1, + "continue": 1, + "debugger": 1, + "finally": 2, + "undefined": 1, + "until": 1, + "loop": 1, + "by": 1, + "&&": 1, + "case": 1, + "default": 1, + "function": 1, + "var": 1, + "void": 1, + "const": 1, + "let": 2, + "enum": 1, + "export": 1, + "import": 1, + "native": 1, + "__hasProp": 1, + "__extends": 1, + "__slice": 1, + "__bind": 1, + "__indexOf": 1, + "implements": 1, + "interface": 1, + "package": 1, + "private": 1, + "protected": 1, + "public": 1, + "static": 1, + "yield": 1, + "arguments": 1, + "JSTOKEN": 1, + "S": 4, + "imgy": 2, + "w": 2, + "HEREGEX": 1, + "#.*": 1, + "/g": 2, + "n/g": 1, + "HEREDOC_INDENT": 1, + "HEREDOC_ILLEGAL": 1, + "//": 1, + "LINE_CONTINUER": 1, + "s*": 1, + "TRAILING_SPACES": 1, + "BOOL": 1, + "NOT_REGEX.concat": 1, + "CALLABLE.concat": 1, + "async": 1, + "nack": 1, + "bufferLines": 3, + "pause": 2, + "sourceScriptEnv": 3, + "join": 8, + "exists": 5, + "basename": 2, + "resolve": 2, + "module.exports": 1, + "RackApplication": 1, + "@configuration": 1, + "@root": 8, + "@firstHost": 1, + "@logger": 1, + "@configuration.getLogger": 1, + "@readyCallbacks": 3, + "@quitCallbacks": 3, + "@statCallbacks": 3, + "ready": 1, + "@state": 11, + "@readyCallbacks.push": 1, + "@initialize": 2, + "quit": 1, + "@quitCallbacks.push": 1, + "@terminate": 2, + "queryRestartFile": 1, + "fs.stat": 1, + "stats": 1, + "@mtime": 5, + "lastMtime": 2, + "stats.mtime.getTime": 1, + "setPoolRunOnceFlag": 1, + "@statCallbacks.length": 1, + "alwaysRestart": 2, + "@pool.runOnce": 1, + "statCallback": 2, + "@statCallbacks.push": 1, + "loadScriptEnvironment": 1, + "env": 18, + "async.reduce": 1, + "scriptExists": 2, + "loadRvmEnvironment": 1, + "rvmrcExists": 2, + "rvm": 1, + "@configuration.rvmPath": 1, + "rvmExists": 2, + "libexecPath": 1, + "before": 2, + "/dev/null": 1, + ".trim": 1, + "loadEnvironment": 1, + "@queryRestartFile": 2, + "@loadScriptEnvironment": 1, + "@configuration.env": 1, + "@loadRvmEnvironment": 1, + "initialize": 1, + "@quit": 3, + "@loadEnvironment": 1, + "@logger.error": 3, + "@pool": 2, + "nack.createPool": 1, + "size": 1, + ".POW_WORKERS": 1, + "@configuration.workers": 1, + "idle": 1, + ".POW_TIMEOUT": 1, + "@configuration.timeout": 1, + "@pool.stdout": 1, + "@logger.info": 1, + "@pool.stderr": 1, + "@logger.warning": 1, + "@pool.on": 2, + "process": 2, + "@logger.debug": 2, + "readyCallback": 2, + "terminate": 1, + "@ready": 3, + "@pool.quit": 1, + "quitCallback": 2, + "handle": 1, + "req": 4, + "res": 3, + "next": 3, + "resume": 2, + "@setPoolRunOnceFlag": 1, + "@restartIfNecessary": 1, + "req.proxyMetaVariables": 1, + "SERVER_PORT": 1, + "@configuration.dstPort.toString": 1, + "@pool.proxy": 1, + "restart": 1, + "restartIfNecessary": 1, + "mtimeChanged": 2, + "@restart": 1, + "writeRvmBoilerplate": 1, + "powrc": 2, + "boilerplate": 2, + "@constructor.rvmBoilerplate": 1, + "fs.readFile": 1, + "contents": 3, + "n#": 1, + "rvm_path/scripts/rvm": 2, + ".rvmrc": 2, + "dnsserver": 1, + "exports.Server": 1, + "Server": 2, + "dnsserver.Server": 1, + "NS_T_A": 3, + "NS_T_NS": 2, + "NS_T_CNAME": 1, + "NS_T_SOA": 2, + "NS_C_IN": 5, + "NS_RCODE_NXDOMAIN": 2, + "domain": 6, + "@rootAddress": 2, + "@domain": 3, + "domain.toLowerCase": 1, + "@soa": 2, + "createSOA": 2, + "@on": 1, + "@handleRequest": 1, + "handleRequest": 1, + "question": 5, + "req.question": 1, + "subdomain": 7, + "@extractSubdomain": 1, + "question.name": 3, + "isARequest": 2, + "res.addRR": 2, + "subdomain.getAddress": 1, + ".isEmpty": 1, + "isNSRequest": 2, + "res.header.rcode": 1, + "res.send": 1, + "extractSubdomain": 1, + "name": 5, + "Subdomain.extract": 1, + "question.type": 2, + "question.class": 2, + "mname": 2, + "rname": 2, + "serial": 2, + "Date": 1, + ".getTime": 1, + "refresh": 2, + "retry": 2, + "expire": 2, + "minimum": 2, + "dnsserver.createSOA": 1, + "exports.createServer": 1, + "address": 4, + "exports.Subdomain": 1, + "Subdomain": 1, + "@extract": 1, + "name.toLowerCase": 1, + "offset": 4, + "name.length": 1, + "domain.length": 1, + "name.slice": 2, + "@for": 2 + }, + "Coq": { + "Inductive": 38, + "day": 9, + "Type": 88, + "|": 393, + "monday": 5, + "tuesday": 3, + "wednesday": 3, + "thursday": 3, + "friday": 3, + "saturday": 3, + "sunday": 2, + "day.": 1, + "Definition": 58, + "next_weekday": 3, + "(": 1228, + "d": 7, + ")": 1240, + "match": 71, + "with": 214, + "end.": 52, + "Example": 40, + "test_next_weekday": 1, + "tuesday.": 1, + "Proof.": 203, + "simpl.": 72, + "reflexivity.": 178, + "Qed.": 197, + "bool": 33, + "true": 52, + "false": 42, + "bool.": 1, + "negb": 9, + "b": 79, + "andb": 6, + "b1": 28, + "b2": 23, + "orb": 8, + "test_orb1": 1, + "true.": 17, + "test_orb2": 1, + "false.": 11, + "test_orb3": 1, + "test_orb4": 1, + "nandb": 5, + "end": 14, + "test_nandb1": 1, + "test_nandb2": 1, + "test_nandb3": 1, + "test_nandb4": 1, + "andb3": 5, + "b3": 2, + "test_andb31": 1, + "test_andb32": 1, + "test_andb33": 1, + "test_andb34": 1, + "Module": 9, + "Playground1.": 5, + "nat": 91, + "O": 97, + "S": 181, + "-": 445, + "nat.": 3, + "pred": 3, + "n": 338, + "minustwo": 1, + "Fixpoint": 36, + "evenb": 5, + "oddb": 5, + ".": 469, + "test_oddb1": 1, + "test_oddb2": 1, + "plus": 10, + "m": 189, + "mult": 3, + "minus": 3, + "_": 68, + "exp": 2, + "base": 3, + "power": 2, + "p": 78, + "factorial": 2, + "test_factorial1": 1, + "Notation": 43, + "x": 254, + "y": 119, + "at": 19, + "level": 13, + "left": 8, + "associativity": 10, + "nat_scope.": 3, + "beq_nat": 19, + "forall": 224, + "+": 228, + "n.": 38, + "Theorem": 111, + "plus_O_n": 1, + "rewrite": 222, + "H.": 76, + "<->": 32, + "H": 77, + "reflexivity": 14, + "Qed": 23, + "mult_0_plus": 1, + "Proof": 12, + "intros": 227, + "plus_O_n.": 1, + "mult_1_plus": 1, + "*": 55, + "m.": 19, + "plus_1_1.": 1, + "mult_1": 1, + "induction": 74, + "as": 90, + "plus_1_neq_0": 1, + "destruct": 85, + "Case": 48, + "IHn": 13, + "plus_comm": 3, + "plus_distr.": 1, + "beq_nat_refl": 3, + "plus_rearrange": 1, + "q": 15, + "q.": 2, + "assert": 55, + "plus_comm.": 3, + "plus_swap": 2, + "p.": 9, + "plus_assoc.": 4, + "H2": 14, + "H2.": 18, + "plus_swap.": 2, + "IHm": 2, + "mult_comm": 2, + "0": 5, + "simpl": 66, + "mult_0_r.": 4, + "mult_distr": 1, + "mult_1_distr.": 1, + "mult_1.": 1, + "bad": 1, + "zero_nbeq_S": 1, + "andb_false_r": 1, + "plus_ble_compat_1": 1, + "ble_nat": 5, + "IHp.": 2, + "S_nbeq_0": 1, + "mult_1_1": 1, + "plus_0_r.": 1, + "all3_spec": 1, + "c": 88, + "c.": 2, + "b.": 9, + "Lemma": 56, + "mult_plus_1": 1, + "IHm.": 1, + "mult_mult": 1, + "IHn.": 3, + "mult_plus_1.": 1, + "mult_plus_distr_r": 1, + "mult_mult.": 3, + "H1": 18, + "plus_assoc": 1, + "H1.": 29, + "H3": 4, + "H3.": 4, + "mult_assoc": 1, + "mult_plus_distr_r.": 1, + "bin": 9, + "BO": 4, + "D": 9, + "M": 4, + "bin.": 1, + "incbin": 2, + "bin2un": 3, + "bin_comm": 1, + "End": 13, + "(*": 102, + "*)": 102, + "Require": 17, + "Import": 11, + "List": 2, + "Multiset": 2, + "PermutSetoid": 1, + "Relations": 2, + "Sorting.": 1, + "Section": 4, + "defs.": 2, + "Variable": 7, + "A": 102, + "Type.": 3, + "leA": 25, + "relation": 19, + "A.": 7, + "eqA": 28, + "Let": 9, + "gtA": 1, + "y.": 15, + "Hypothesis": 7, + "leA_dec": 4, + "{": 40, + "}": 36, + "eqA_dec": 26, + "leA_refl": 1, + "leA_trans": 2, + "z": 14, + "z.": 6, + "leA_antisym": 1, + "Hint": 8, + "Resolve": 5, + "leA_refl.": 1, + "Immediate": 1, + "leA_antisym.": 1, + "emptyBag": 4, + "EmptyBag": 2, + "singletonBag": 10, + "SingletonBag": 2, + "eqA_dec.": 2, + "Tree": 24, + "Tree_Leaf": 9, + "Tree_Node": 11, + "Tree.": 1, + "leA_Tree": 16, + "a": 210, + "t": 93, + "True": 1, + "T1": 25, + "T2": 20, + "leA_Tree_Leaf": 5, + "Tree_Leaf.": 1, + ";": 376, + "auto": 77, + "datatypes.": 47, + "leA_Tree_Node": 1, + "G": 6, + "is_heap": 18, + "Prop": 13, + "nil_is_heap": 5, + "node_is_heap": 7, + "invert_heap": 3, + "/": 37, + "T2.": 1, + "inversion": 90, + "is_heap_rect": 1, + "P": 31, + "T": 49, + "T.": 9, + "simple": 7, + "PG": 2, + "PD": 2, + "PN.": 2, + "elim": 21, + "H4": 5, + "intros.": 27, + "apply": 325, + "X0": 2, + "is_heap_rec": 1, + "Set": 4, + "X": 212, + "low_trans": 3, + "merge_lem": 3, + "l1": 104, + "l2": 86, + "list": 72, + "merge_exist": 5, + "l": 378, + "Sorted": 5, + "meq": 15, + "list_contents": 30, + "munion": 18, + "HdRel": 4, + "l2.": 10, + "Morphisms.": 2, + "Instance": 6, + "Equivalence": 2, + "@meq": 4, + "constructor": 4, + "red.": 1, + "meq_trans.": 1, + "Defined.": 1, + "Proper": 5, + "@munion": 1, + "now": 19, + "meq_congr.": 1, + "merge": 5, + "fix": 2, + "l1.": 5, + "rename": 2, + "into": 2, + "l.": 26, + "revert": 5, + "H0.": 9, + "a0": 11, + "l0": 7, + "Sorted_inv": 2, + "in": 147, + "H0": 15, + "clear": 11, + "merge0.": 2, + "using": 17, + "cons_sort": 2, + "cons_leA": 2, + "munion_ass.": 2, + "cons_leA.": 2, + "@HdRel_inv": 2, + "trivial": 13, + "merge0": 1, + "setoid_rewrite": 2, + "munion_ass": 1, + "munion_comm.": 2, + "repeat": 9, + "munion_comm": 1, + "contents": 12, + "multiset": 2, + "t1": 48, + "t2": 51, + "equiv_Tree": 1, + "insert_spec": 3, + "insert_exist": 4, + "insert": 2, + "unfold": 60, + "T0": 2, + "treesort_twist1": 1, + "T3": 2, + "HeapT3": 1, + "ConT3": 1, + "LeA.": 1, + "LeA": 1, + "treesort_twist2": 1, + "build_heap": 3, + "heap_exist": 3, + "list_to_heap": 2, + "nil": 39, + "exact": 3, + "nil_is_heap.": 1, + "i": 31, + "meq_trans": 10, + "meq_right": 2, + "meq_sym": 2, + "flat_spec": 3, + "flat_exist": 3, + "heap_to_list": 2, + "h": 14, + "s1": 20, + "i1": 6, + "m1": 1, + "s2": 2, + "i2": 14, + "m2.": 1, + "meq_congr": 1, + "munion_rotate.": 1, + "treesort": 1, + "&": 19, + "permutation": 43, + "intro": 28, + "permutation.": 1, + "exists": 48, + "Export": 10, + "SfLib.": 2, + "AExp.": 1, + "aexp": 37, + "ANum": 36, + "APlus": 15, + "AMinus": 11, + "AMult": 11, + "aexp.": 2, + "bexp": 22, + "BTrue": 6, + "BFalse": 4, + "BEq": 6, + "BLe": 6, + "BNot": 7, + "BAnd": 5, + "bexp.": 2, + "aeval": 44, + "e": 42, + "a1": 56, + "a2": 59, + "test_aeval1": 1, + "beval": 12, + "optimize_0plus": 10, + "e2": 27, + "e1": 25, + "test_optimize_0plus": 1, + "optimize_0plus_sound": 2, + "e.": 7, + "e1.": 1, + "SCase": 24, + "SSCase": 5, + "IHe2.": 10, + "IHe1.": 11, + "eq1.": 11, + "if": 13, + "beq_id": 13, + "V": 6, + "update_eq": 1, + "st": 132, + "update": 28, + "st.": 2, + "update.": 3, + "beq_id_refl": 1, + "update_neq": 1, + "V2": 4, + "V1": 5, + "update_example": 1, + "empty_state": 13, + "Id": 8, + "empty_state.": 1, + "update_shadow": 1, + "x1": 17, + "x2": 14, + "k1": 20, + "k2": 21, + "f": 120, + "state": 12, + "k1.": 1, + "f.": 4, + "*.": 58, + "update_same": 1, + "k2.": 1, + "remember": 9, + "beq_id_eq": 5, + "HeqA.": 1, + "subst.": 33, + "update_permute": 1, + "k3": 6, + "k3.": 1, + "A1": 3, + "A1.": 1, + "HeqA1.": 1, + "HeqA1": 1, + "B": 8, + "try": 10, + "AId": 19, + "id": 10, + "Tactic": 10, + "tactic": 10, + "first": 20, + "ident": 10, + "Case_aux": 45, + "Y": 49, + "Z": 24, + "aexp1": 1, + "bexp1": 1, + "com": 22, + "CSkip": 1, + "CAss": 2, + "CSeq": 2, + "CIf": 2, + "CWhile": 2, + "com.": 1, + "CSkip.": 1, + "c1": 16, + "c2": 11, + "right": 7, + "e3": 1, + "plus2": 1, + "XtimesYinZ": 1, + "subtract_slowly_body": 2, + "subtract_slowly": 1, + "WHILE": 5, + "DO": 5, + "END.": 3, + "subtract_3_from_5_slowly": 1, + "subtract_slowly.": 1, + "loop": 1, + "SKIP": 3, + "fact_body": 2, + "fact_loop": 1, + "fact_com": 1, + "fact_loop.": 1, + "ceval_step1": 3, + "let": 4, + "IFB": 3, + "THEN": 3, + "ELSE": 3, + "FI": 3, + "then": 12, + "else": 13, + "END": 2, + "ceval_step2": 4, + "Some": 26, + "ceval_step3": 5, + "None": 17, + "bind_option": 1, + "xo": 2, + "option": 10, + "ceval_step": 8, + "fun": 19, + "ceval_example1": 1, + "E_Seq": 3, + "E_Ass.": 3, + "E_IfFalse.": 2, + "ceval_example2": 1, + "E_Ass": 2, + "ceval_step__ceval": 1, + "E": 9, + "generalize": 12, + "dependent": 5, + "com_cases": 1, + "subst": 10, + "E_Skip.": 1, + "Heqr1": 1, + "IHi": 3, + "assumption.": 49, + "Heqr": 3, + "r1": 3, + "r1.": 1, + "E_WhileLoop": 1, + "s.": 5, + "E_WhileEnd.": 1, + "ceval_step_more": 5, + "Hle.": 2, + "Hle": 2, + "st1": 6, + "o.": 3, + "symmetry": 5, + "Heqst1": 4, + "o": 20, + "Hceval.": 2, + "ceval__ceval_step": 3, + "Hce.": 1, + "ceval_cases": 1, + "Hce": 1, + "Case.": 1, + "%": 2, + "IHHce1": 1, + "IHHce2": 1, + "x.": 4, + "omega.": 6, + "x0.": 1, + "ceval_and_ceval_step_coincide": 1, + "split.": 12, + "ceval__ceval_step.": 1, + "ceval_step__ceval.": 1, + "ceval_deterministic": 1, + "st2": 3, + "st2.": 1, + "He1": 2, + "He2.": 2, + "He1.": 1, + "E1": 2, + "He2": 1, + "E2": 1, + "E1.": 1, + "E2.": 3, + "plus2_spec": 1, + "HX": 1, + "Heval.": 4, + "update_eq.": 2, + "XtimesYinZ_spec": 1, + "nx": 1, + "ny": 1, + "loop_never_stops": 1, + "al": 3, + "s_execute": 21, + "cons": 27, + "bl": 3, + "a*b": 1, + "s_execute1": 1, + "SPush": 6, + "SMinus": 9, + "s_execute2": 1, + "SLoad": 4, + "SMult": 9, + "SPlus": 8, + "s_compile": 36, + "sinstr": 2, + "v": 28, + "s_compile1": 1, + "execute_theorem": 1, + "other": 20, + "other.": 4, + "app_ass.": 6, + "s_compile_correct": 1, + "app_nil_end.": 1, + "<": 65, + "execute_theorem.": 1, + "Basics.": 2, + "NatList.": 2, + "natprod": 5, + "pair": 7, + "natprod.": 1, + "fst": 3, + "snd": 3, + "swap_pair": 1, + "surjective_pairing": 1, + "count": 7, + "r": 10, + "remove_one": 3, + "test_remove_one1": 1, + "O.": 4, + "remove_all": 2, + "s": 12, + "bag": 3, + "app_ass": 1, + "l3": 12, + "natlist": 7, + "l3.": 1, + "remove_decreases_count": 1, + "ble_n_Sn.": 1, + "IHs.": 2, + "natoption": 5, + "natoption.": 1, + "index": 3, + "option_elim": 2, + "hd_opt": 8, + "test_hd_opt1": 2, + "None.": 2, + "test_hd_opt2": 2, + "option_elim_hd": 1, + "head": 1, + "beq_natlist": 5, + "v1": 7, + "v2": 2, + "r2": 2, + "test_beq_natlist1": 1, + "test_beq_natlist2": 1, + "beq_natlist_refl": 1, + "IHl.": 8, + "silly1": 1, + "eq1": 6, + "eq2.": 9, + "eq2": 1, + "silly2a": 1, + "silly_ex": 1, + "silly3": 1, + "symmetry.": 2, + "rev_exercise": 1, + "rev_involutive.": 1, + "beq_nat_sym": 1, + "Omega": 1, + "SetoidList.": 1, + "Implicit": 15, + "Arguments.": 2, + "Local": 6, + "nil.": 2, + "..": 4, + "Permut.": 1, + "eqA_equiv": 1, + "eqA.": 1, + "list_contents_app": 5, + "permut_refl": 1, + "permut_sym": 3, + "trivial.": 14, + "permut_trans": 4, + "permut_cons_eq": 3, + "meq_left": 1, + "meq_singleton": 1, + "auto.": 48, + "permut_cons": 5, + "permut_app": 1, + "l4": 3, + "specialize": 6, + "a0.": 1, + "Ha": 6, + "decide": 1, + "replace": 4, + "permut_add_inside_eq": 1, + "permut_add_cons_inside": 3, + "permut_add_inside": 1, + "permut_middle": 1, + "permut_refl.": 5, + "permut_sym_app": 1, + "do": 5, + "arith.": 8, + "permut_rev": 1, + "rev": 7, + "permut_add_cons_inside.": 1, + "app_nil_end": 1, + "results": 1, + "permut_conv_inv": 1, + "plus_reg_l.": 1, + "permut_app_inv1": 1, + "list_contents_app.": 1, + "plus_reg_l": 1, + "multiplicity": 6, + "Fact": 3, + "if_eqA_then": 1, + "if_eqA_refl": 3, + "decide_left": 1, + "Global": 4, + "if_eqA": 1, + "contradict": 3, + "transitivity": 4, + "eauto": 8, + "if_eqA_rewrite_r": 1, + "A2": 4, + "Hxx": 1, + "multiplicity_InA": 4, + "InA": 8, + "a.": 5, + "split": 15, + "right.": 9, + "IHl": 8, + "multiplicity_InA_O": 2, + "multiplicity_InA_S": 1, + "multiplicity_NoDupA": 1, + "NoDupA": 3, + "inversion_clear": 6, + "EQ": 8, + "NEQ": 1, + "omega": 2, + "Permutation": 42, + "is": 4, + "compatible": 1, + "permut_InA_InA": 3, + "multiplicity_InA.": 1, + "meq.": 2, + "permut_cons_InA": 4, + "permut_nil": 2, + "by": 9, + "Abs": 2, + "permut_length_1": 1, + "discriminate.": 1, + "permut_length_2": 1, + "P.": 5, + "permut_length_1.": 2, + "red": 7, + "@if_eqA_rewrite_l": 2, + "permut_length": 1, + "length": 23, + "InA_split": 2, + "h2": 1, + "app_length.": 2, + "plus_n_Sm": 1, + "f_equal.": 1, + "app_length": 2, + "IHl1": 1, + "permut_remove_hd": 1, + "f_equal": 1, + "if_eqA_rewrite_l": 1, + "NoDupA_equivlistA_permut": 1, + "Equivalence_Reflexive.": 1, + "change": 1, + "Equivalence_Reflexive": 1, + "Forall2": 1, + "permutation_Permutation": 1, + "Heq": 8, + "permut_remove_hd_eq": 1, + "Permutation_impl_permutation": 1, + "permut_eqA": 1, + "Permut_permut.": 1, + "permut_right": 1, + "only": 3, + "parsing": 3, + "permut_tran": 1, + "Setoid": 1, + "Compare_dec": 1, + "ListNotations.": 1, + "Permutation.": 1, + "perm_nil": 1, + "perm_skip": 1, + "Logic.eq": 2, + "@Permutation": 6, + "iff": 1, + "@In": 1, + "Permutation_in.": 2, + "Permutation_app_tail": 1, + "tl": 7, + "Hperm": 4, + "Hpermmm": 1, + "idtac": 1, + "app_comm_cons": 3, + "Permutation_app_head": 1, + "Permutation_trans": 1, + "@app": 1, + "Permutation_app.": 1, + "Permutation_add_inside": 1, + "Permutation_app": 1, + "Permutation_cons_append": 1, + "Permutation_cons_append.": 3, + "Permutation_app_comm": 3, + "app_nil_r": 2, + "app_assoc": 2, + "Permutation_cons_app": 2, + "Permutation_middle": 2, + "Permutation_rev": 3, + "1": 2, + "@rev": 1, + "2": 2, + "Permutation_length": 2, + "@length": 1, + "Permutation_length.": 1, + "Permutation_ind_bis": 2, + "Hnil": 1, + "Hskip": 3, + "Hswap": 2, + "Htrans.": 1, + "Htrans": 1, + "eauto.": 7, + "Ltac": 1, + "break_list": 4, + "injection": 8, + "Permutation_nil_app_cons": 1, + "eapply": 7, + "Hp": 5, + "IH": 4, + "H6": 3, + "in_or_app": 1, + "perm_trans": 1, + "Permutation_cons_inv": 2, + "Permutation_cons_app_inv": 1, + "Permutation_app_inv": 2, + "Permutation_app_inv_l": 1, + "Permutation_app_inv_r": 1, + "Permutation_length_1_inv": 3, + "Heqm": 5, + "discriminate": 4, + "||": 2, + "Permutation_nil": 1, + "Permutation_length_1": 1, + "Permutation_length_2_inv": 2, + "Heqm.": 1, + "tauto": 1, + "IHPermutation1": 1, + "IHPermutation2": 1, + "Permutation_length_2": 1, + "b1.": 1, + "in_middle": 3, + "In": 7, + "in_app_iff": 1, + "tauto.": 1, + "NoDup_cardinal_incl": 2, + "incl": 3, + "N": 2, + "Hal": 2, + "Hl": 3, + "in_split": 1, + "H12": 5, + "Ha.": 1, + "Hx": 24, + "NoDup_remove_1": 1, + "eq_add_S": 3, + "arith": 5, + "Hy": 17, + "intuition": 1, + "NoDup_Permutation": 1, + "NoDup": 2, + "exfalso.": 1, + "NoDup_Permutation_bis": 2, + "constructor.": 6, + "intuition.": 2, + "Permutation_NoDup": 1, + "Permutation_map": 1, + "Hf": 15, + "Hy.": 3, + "injective_bounded_surjective": 1, + "injective": 6, + "set": 1, + "seq": 2, + "map": 4, + "in_map_iff.": 2, + "in_seq": 4, + "injective_map_NoDup": 2, + "seq_NoDup": 1, + "map_length": 1, + "in_map_iff": 1, + "nat_bijection_Permutation": 1, + "BD.": 1, + "seq_NoDup.": 1, + "map_length.": 1, + "Injection": 1, + "Permutation_alt": 1, + "Alternative": 1, + "characterization": 1, + "of": 4, + "via": 1, + "nth_error": 7, + "and": 1, + "nth": 2, + "adapt": 4, + "le_lt_dec": 9, + "adapt_injective": 1, + "adapt.": 2, + "EQ.": 2, + "LE": 11, + "LT": 14, + "Hf.": 1, + "Lt.le_lt_or_eq": 3, + "LE.": 3, + "lt": 3, + "LT.": 5, + "Lt.S_pred": 3, + "Lt.lt_not_le": 2, + "adapt_ok": 2, + "nth_error_app1": 1, + "nth_error_app2": 1, + "Minus.minus_Sn_m": 1, + "Permutation_nth_error": 2, + "IHP": 1, + "IHP2": 1, + "g": 6, + "Hg": 2, + "E.": 2, + "L12": 2, + "plus_n_Sm.": 1, + "adapt_injective.": 1, + "nth_error_None": 4, + "Hn": 1, + "Hf2": 1, + "Hf3": 2, + "Lt.le_or_lt": 1, + "Lt.lt_irrefl": 2, + "Lt.lt_le_trans": 2, + "Hf1": 1, + "congruence.": 1, + "Permutation_alt.": 1, + "Permutation_app_swap": 1, + "Lists.": 1, + "X.": 4, + "app": 5, + "snoc": 9, + "Arguments": 11, + "list123": 1, + "test_repeat1": 1, + "nil_app": 1, + "rev_snoc": 1, + "snoc_with_append": 1, + "v.": 1, + "IHl1.": 1, + "prod": 3, + "Y.": 1, + "type_scope.": 1, + "combine": 3, + "lx": 4, + "ly": 4, + "tx": 2, + "ty": 7, + "tp": 2, + "xs": 7, + "plus3": 2, + "prod_curry": 3, + "prod_uncurry": 3, + "uncurry_uncurry": 1, + "curry_uncurry": 1, + "filter": 3, + "test": 4, + "countoddmembers": 1, + "k": 7, + "fmostlytrue": 5, + "override": 5, + "ftrue": 1, + "override_example1": 1, + "override_example2": 1, + "override_example3": 1, + "override_example4": 1, + "override_example": 1, + "constfun": 1, + "unfold_example_bad": 1, + "plus3.": 1, + "override_eq": 1, + "override.": 2, + "override_neq": 1, + "x1.": 1, + "eq.": 11, + "silly4": 1, + "silly5": 1, + "sillyex1": 1, + "j": 6, + "j.": 1, + "silly6": 1, + "contra.": 14, + "silly7": 1, + "sillyex2": 1, + "beq_nat_eq": 1, + "assertion": 3, + "Hl.": 1, + "eq": 4, + "beq_nat_O_l": 1, + "beq_nat_O_r": 1, + "double_injective": 1, + "double": 2, + "fold_map": 2, + "fold": 1, + "total": 2, + "fold_map_correct": 1, + "fold_map.": 1, + "forallb": 4, + "existsb": 3, + "existsb2": 2, + "existsb_correct": 1, + "existsb2.": 1, + "x0": 8, + "index_okx": 1, + "mumble": 5, + "mumble.": 1, + "grumble": 3, + "Logic.": 1, + "Prop.": 1, + "partial_function": 6, + "R": 54, + "y1": 6, + "y2": 5, + "y2.": 3, + "next_nat_partial_function": 1, + "next_nat.": 1, + "partial_function.": 5, + "Q.": 2, + "le_not_a_partial_function": 1, + "le": 1, + "not.": 3, + "Nonsense.": 4, + "le_n.": 6, + "le_S.": 4, + "total_relation_not_partial_function": 1, + "total_relation": 1, + "total_relation1.": 2, + "empty_relation_not_partial_funcion": 1, + "empty_relation.": 1, + "reflexive": 5, + "le_reflexive": 1, + "le.": 4, + "reflexive.": 1, + "transitive": 8, + "le_trans": 4, + "Hnm": 3, + "Hmo.": 4, + "Hnm.": 3, + "IHHmo.": 1, + "lt_trans": 4, + "lt.": 2, + "transitive.": 1, + "le_S": 6, + "Hm": 1, + "le_Sn_le": 2, + "<=>": 9, + "le_S_n": 2, + "Sn_le_Sm__n_le_m.": 1, + "le_Sn_n": 5, + "not": 1, + "TODO": 1, + "Hmo": 1, + "symmetric": 2, + "antisymmetric": 3, + "le_antisymmetric": 1, + "Sn_le_Sm__n_le_m": 2, + "IHb": 1, + "equivalence": 1, + "order": 2, + "preorder": 1, + "le_order": 1, + "order.": 1, + "le_reflexive.": 1, + "le_antisymmetric.": 1, + "le_trans.": 1, + "clos_refl_trans": 8, + "rt_step": 1, + "rt_refl": 1, + "rt_trans": 3, + "next_nat_closure_is_le": 1, + "next_nat": 1, + "rt_refl.": 2, + "IHle.": 1, + "rt_step.": 2, + "nn.": 1, + "IHclos_refl_trans1.": 2, + "IHclos_refl_trans2.": 2, + "refl_step_closure": 11, + "rsc_refl": 1, + "rsc_step": 4, + "rsc_R": 2, + "r.": 2, + "rsc_refl.": 4, + "rsc_trans": 4, + "IHrefl_step_closure": 1, + "rtc_rsc_coincide": 1, + "IHrefl_step_closure.": 1, + "Imp.": 1, + "Relations.": 1, + "tm": 43, + "tm_const": 45, + "tm_plus": 30, + "tm.": 3, + "SimpleArith0.": 2, + "eval": 8, + "SimpleArith1.": 2, + "Reserved": 3, + "E_Const": 2, + "E_Plus": 2, + "n1": 19, + "n2": 15, + "where": 5, + "test_step_1": 1, + "ST_Plus1.": 2, + "ST_PlusConstConst.": 3, + "test_step_2": 1, + "ST_Plus2.": 2, + "step_deterministic": 1, + "step.": 3, + "Hy1": 2, + "Hy2.": 2, + "step_cases": 4, + "Hy2": 3, + "SCase.": 3, + "Hy1.": 5, + "IHHy1": 2, + "SimpleArith2.": 1, + "value": 25, + "v_const": 4, + "step": 9, + "ST_PlusConstConst": 3, + "ST_Plus1": 2, + "assumption": 3, + "strong_progress": 2, + "value_not_same_as_normal_form": 2, + "normal_form": 3, + "t.": 4, + "normal_form.": 2, + "v_funny.": 1, + "Temp1.": 1, + "Temp2.": 1, + "ST_Funny": 1, + "H4.": 1, + "Temp3.": 1, + "Temp4.": 2, + "tm_true": 8, + "tm_false": 5, + "tm_if": 10, + "v_true": 1, + "v_false": 1, + "tm_false.": 3, + "ST_IfTrue": 1, + "ST_IfFalse": 1, + "ST_If": 1, + "t3": 6, + "bool_step_prop4": 1, + "bool_step_prop4_holds": 1, + "bool_step_prop4.": 2, + "ST_ShortCut.": 1, + "left.": 3, + "IHt1.": 1, + "t2.": 4, + "t3.": 2, + "ST_If.": 2, + "Temp5.": 1, + "stepmany": 4, + "normalizing": 1, + "IHt2": 3, + "H11": 2, + "H21": 3, + "H22": 2, + "nf_same_as_value": 3, + "H12.": 1, + "H22.": 1, + "H11.": 1, + "stepmany_congr_1": 1, + "stepmany_congr2": 1, + "eval__value": 1, + "HE.": 1, + "eval_cases": 1, + "HE": 1, + "v_const.": 1, + "Sorted.": 1, + "Mergesort.": 1, + "STLC.": 1, + "ty_Bool": 10, + "ty_arrow": 7, + "ty.": 2, + "tm_var": 6, + "tm_app": 7, + "tm_abs": 9, + "idB": 2, + "idBB": 2, + "idBBBB": 2, + "v_abs": 1, + "t_true": 1, + "t_false": 1, + "Constructors": 2, + "value.": 1, + "ST_App2": 1, + "step_example3": 1, + "idB.": 1, + "rsc_step.": 2, + "ST_App1.": 2, + "ST_AppAbs.": 3, + "v_abs.": 2, + "context": 1, + "partial_map": 4, + "Context.": 1, + "empty": 3, + "extend": 1, + "Gamma": 10, + "has_type": 4, + "appears_free_in": 1, + "S.": 1, + "HT": 1, + "T_Var.": 1, + "extend_neq": 1, + "Heqe.": 3, + "T_Abs.": 1, + "context_invariance...": 2, + "Hafi.": 2, + "extend.": 2, + "IHt.": 1, + "Coiso1.": 2, + "Coiso2.": 3, + "HeqCoiso1.": 1, + "HeqCoiso2.": 1, + "beq_id_false_not_eq.": 1, + "ex_falso_quodlibet.": 1, + "preservation": 1, + "HT.": 1, + "substitution_preserves_typing": 1, + "T11.": 4, + "HT1.": 1, + "T_App": 2, + "IHHT1.": 1, + "IHHT2.": 1, + "tm_cases": 1, + "Ht": 1, + "Ht.": 3, + "IHt1": 2, + "T11": 2, + "ST_App2.": 1, + "ty_Bool.": 1, + "IHt3": 1, + "ST_IfTrue.": 1, + "ST_IfFalse.": 1, + "types_unique": 1, + "T12": 2, + "IHhas_type.": 1, + "IHhas_type1.": 1, + "IHhas_type2.": 1, + "Eqdep_dec.": 1, + "Arith.": 2, + "eq_rect_eq_nat": 2, + "Q": 3, + "eq_rect": 3, + "h.": 1, + "K_dec_set": 1, + "eq_nat_dec.": 1, + "Scheme": 1, + "le_ind": 1, + "le_n": 4, + "n0": 4, + "refl_equal": 4, + "pattern": 2, + "case": 2, + "contradiction": 8, + "m0": 1, + "HeqS": 3, + "HeqS.": 2, + "eq_rect_eq_nat.": 1, + "IHp": 2, + "dep_pair_intro": 2, + "<=n),>": 1, + "x=": 1, + "exist": 7, + "Heq.": 6, + "le_uniqueness_proof": 1, + "Hy0": 1, + "card": 2, + "card_interval": 1, + "<=n}>": 1, + "proj1_sig": 1, + "proj2_sig": 1, + "Hq": 3, + "Hpq.": 1, + "Hmn.": 1, + "Hmn": 1, + "interval_dec": 1, + "dep_pair_intro.": 3, + "eq_S.": 1, + "Hneq.": 2, + "card_inj_aux": 1, + "False.": 1, + "Hfbound": 1, + "Hfinj": 1, + "Hgsurj.": 1, + "Hgsurj": 3, + "Hfx": 2, + "le_n_O_eq.": 2, + "Hfbound.": 2, + "Hx.": 4, + "xSn": 21, + "bounded": 1, + "Hlefx": 1, + "Hgefx": 1, + "Hlefy": 1, + "Hgefy": 1, + "Hfinj.": 3, + "sym_not_eq.": 2, + "Heqf.": 2, + "Hneqy.": 2, + "le_lt_trans": 2, + "le_O_n.": 2, + "le_neq_lt": 2, + "Hneqx.": 2, + "pred_inj.": 1, + "lt_O_neq": 2, + "neq_dep_intro": 2, + "inj_restrict": 1, + "Heqf": 1, + "surjective": 1, + "Hlep.": 3, + "Hlt": 3, + "Hfsurj": 2, + "le_n_S": 1, + "Hlep": 4, + "Hneq": 7, + "Heqx.": 2, + "Heqx": 4, + "le_not_lt": 1, + "lt_n_Sn.": 1, + "Hlt.": 1, + "lt_irrefl": 2, + "lt_le_trans": 1, + "pose": 1, + "Hneqx": 1, + "Hneqy": 1, + "Heqg": 1, + "Hdec": 3, + "Heqy": 1, + "Hginj": 1, + "HSnx.": 1, + "HSnx": 1, + "interval_discr": 1, + "<=m}>": 1, + "card_inj": 1, + "interval_dec.": 1, + "card_interval.": 2 + }, + "Dart": { + "class": 1, + "Point": 7, + "{": 3, + "(": 7, + "this.x": 1, + "this.y": 1, + ")": 7, + ";": 8, + "distanceTo": 1, + "other": 1, + "var": 3, + "dx": 3, + "x": 2, + "-": 2, + "other.x": 1, + "dy": 3, + "y": 2, + "other.y": 1, + "return": 1, + "Math.sqrt": 1, + "*": 2, + "+": 1, + "}": 3, + "main": 1, + "p": 1, + "new": 2, + "q": 1, + "print": 1 + }, + "Delphi": { + "program": 1, + "gmail": 1, + ";": 6, + "uses": 1, + "Forms": 1, + "Unit2": 1, + "in": 1, + "{": 2, + "Form2": 2, + "}": 2, + "R": 1, + "*.res": 1, + "begin": 1, + "Application.Initialize": 1, + "Application.MainFormOnTaskbar": 1, + "True": 1, + "Application.CreateForm": 1, + "(": 1, + "TForm2": 1, + ")": 1, + "Application.Run": 1, + "end.": 1 + }, + "Diff": { + "diff": 1, + "-": 5, + "git": 1, + "a/lib/linguist.rb": 2, + "b/lib/linguist.rb": 2, + "index": 1, + "d472341..8ad9ffb": 1, + "+": 3 + }, + "Emacs Lisp": { + "(": 1, + "print": 1, + ")": 1 + }, + "GAS": { + ".cstring": 1, + "LC0": 2, + ".ascii": 2, + ".text": 1, + ".globl": 2, + "_main": 2, + "LFB3": 4, + "pushq": 1, + "%": 6, + "rbp": 2, + "LCFI0": 3, + "movq": 1, + "rsp": 1, + "LCFI1": 2, + "leaq": 1, + "(": 1, + "rip": 1, + ")": 1, + "rdi": 1, + "call": 1, + "_puts": 1, + "movl": 1, + "eax": 1, + "leave": 1, + "ret": 1, + "LFE3": 2, + ".section": 1, + "__TEXT": 1, + "__eh_frame": 1, + "coalesced": 1, + "no_toc": 1, + "+": 2, + "strip_static_syms": 1, + "live_support": 1, + "EH_frame1": 2, + ".set": 5, + "L": 10, + "set": 10, + "LECIE1": 2, + "-": 7, + "LSCIE1": 2, + ".long": 6, + ".byte": 20, + "xc": 1, + ".align": 2, + "_main.eh": 2, + "LSFDE1": 1, + "LEFDE1": 2, + "LASFDE1": 3, + ".quad": 2, + ".": 1, + "xe": 1, + "xd": 1, + ".subsections_via_symbols": 1 + }, + "Gosu": { + "<%!-->": 1, + "defined": 1, + "in": 3, + "Hello": 2, + "gst": 1, + "<": 1, + "%": 2, + "@": 1, + "params": 1, + "(": 54, + "users": 2, + "Collection": 1, + "<User>": 1, + ")": 55, + "<%>": 2, + "for": 2, + "user": 1, + "{": 28, + "user.LastName": 1, + "}": 28, + "user.FirstName": 1, + "user.Department": 1, + "package": 2, + "example": 2, + "enhancement": 1, + "String": 6, + "function": 11, + "toPerson": 1, + "Person": 7, + "var": 10, + "vals": 4, + "this.split": 1, + "return": 4, + "new": 6, + "as": 3, + "int": 2, + "Relationship.valueOf": 2, + "uses": 2, + "java.util.*": 1, + "java.io.File": 1, + "class": 1, + "extends": 1, + "Contact": 1, + "implements": 1, + "IEmailable": 2, + "_name": 4, + "_age": 3, + "Integer": 3, + "Age": 1, + "_relationship": 2, + "Relationship": 3, + "readonly": 1, + "RelationshipOfPerson": 1, + "delegate": 1, + "_emailHelper": 2, + "represents": 1, + "enum": 1, + "FRIEND": 1, + "FAMILY": 1, + "BUSINESS_CONTACT": 1, + "//": 1, + "static": 7, + "ALL_PEOPLE": 2, + "HashMap": 1, + "<String,>": 1, + "/*": 4, + "*/": 4, + "construct": 1, + "name": 4, + "age": 4, + "relationship": 2, + "EmailHelper": 1, + "this": 1, + "property": 2, + "get": 1, + "Name": 3, + "set": 1, + "override": 1, + "getEmailName": 1, + "incrementAge": 1, + "+": 2, + "@Deprecated": 1, + "printPersonInfo": 1, + "print": 4, + "addPerson": 4, + "p": 5, + "if": 4, + "ALL_PEOPLE.containsKey": 2, + ".Name": 1, + "throw": 1, + "IllegalArgumentException": 1, + "p.Name": 2, + "addAllPeople": 1, + "contacts": 2, + "List": 1, + "<Contact>": 1, + "contact": 3, + "typeis": 1, + "and": 1, + "not": 1, + "contact.Name": 1, + "getAllPeopleOlderThanNOrderedByName": 1, + "allPeople": 1, + "ALL_PEOPLE.Values": 3, + "allPeople.where": 1, + "-": 3, + "p.Age": 1, + ".orderBy": 1, + "loadPersonFromDB": 1, + "id": 1, + "using": 2, + "conn": 1, + "DBConnectionManager.getConnection": 1, + "stmt": 1, + "conn.prepareStatement": 1, + "stmt.setInt": 1, + "result": 1, + "stmt.executeQuery": 1, + "result.next": 1, + "result.getString": 2, + "result.getInt": 1, + "loadFromFile": 1, + "file": 3, + "File": 2, + "file.eachLine": 1, + "line": 1, + "line.HasContent": 1, + "line.toPerson": 1, + "saveToFile": 1, + "writer": 2, + "FileWriter": 1, + "PersonCSVTemplate.renderToString": 1, + "PersonCSVTemplate.render": 1, + "hello": 1 + }, + "Groovy": { + "task": 1, + "echoDirListViaAntBuilder": 1, + "(": 7, + ")": 7, + "{": 3, + "description": 1, + "//Docs": 1, + "http": 1, + "//ant.apache.org/manual/Types/fileset.html": 1, + "//Echo": 1, + "the": 3, + "Gradle": 1, + "project": 1, + "name": 1, + "via": 1, + "ant": 1, + "echo": 1, + "plugin": 1, + "ant.echo": 3, + "message": 1, + "project.name": 1, + "path": 2, + "//Gather": 1, + "list": 1, + "of": 1, + "files": 1, + "in": 1, + "a": 1, + "subdirectory": 1, + "ant.fileScanner": 1, + "fileset": 1, + "dir": 1, + "}": 3, + ".each": 1, + "//Print": 1, + "each": 1, + "file": 1, + "to": 1, + "screen": 1, + "with": 1, + "CWD": 1, + "projectDir": 1, + "removed.": 1, + "println": 2, + "it.toString": 1, + "-": 1, + "#": 1, + "/usr/bin/env": 1, + "groovy": 1 + }, + "Groovy Server Pages": { + "<html>": 4, + "<head>": 4, + "<meta>": 4, + "http": 3, + "equiv=": 3, + "content=": 4, + "<title>": 4, + "Testing": 3, + "with": 3, + "SiteMesh": 2, + "and": 2, + "Resources": 2, + "</title>": 4, + "name=": 1, + "<r:require>": 2, + "module=": 2, + "</head>": 4, + "<body>": 4, + "</body>": 4, + "</html>": 4, + "<%@>": 1, + "page": 2, + "contentType=": 1, + "Using": 1, + "directive": 1, + "tag": 1, + "<div>": 2, + "class=": 2, + "<a>": 2, + "href=": 2, + "alt=": 2, + "id=": 2, + "Download": 1, + "</a>": 2, + "</div>": 2, + "Print": 1, + "{": 1, + "example": 1, + "}": 1 + }, + "Haml": { + "%": 1, + "p": 1, + "Hello": 1, + "World": 1 + }, + "INI": { + "user": 1, + "name": 1, + "Josh": 1, + "Peek": 1, + "email": 1, + "josh@github.com": 1 + }, + "Ioke": { + "#": 1, + "/usr/bin/env": 1, + "ioke": 1, + "println": 1 + }, + "Java": { + "/*": 85, + "*/": 86, + "package": 5, + "nokogiri.internals": 1, + ";": 598, + "import": 66, + "static": 91, + "nokogiri.internals.NokogiriHelpers.getNokogiriClass": 1, + "nokogiri.internals.NokogiriHelpers.isNamespace": 1, + "nokogiri.internals.NokogiriHelpers.stringOrNil": 1, + "nokogiri.HtmlDocument": 1, + "nokogiri.NokogiriService": 1, + "nokogiri.XmlDocument": 1, + "org.apache.xerces.parsers.DOMParser": 1, + "org.apache.xerces.xni.Augmentations": 1, + "org.apache.xerces.xni.QName": 1, + "org.apache.xerces.xni.XMLAttributes": 1, + "org.apache.xerces.xni.XNIException": 1, + "org.apache.xerces.xni.parser.XMLDocumentFilter": 1, + "org.apache.xerces.xni.parser.XMLParserConfiguration": 1, + "org.cyberneko.html.HTMLConfiguration": 1, + "org.cyberneko.html.filters.DefaultFilter": 1, + "org.jruby.Ruby": 2, + "org.jruby.RubyClass": 2, + "org.jruby.runtime.ThreadContext": 1, + "org.jruby.runtime.builtin.IRubyObject": 2, + "org.w3c.dom.Document": 1, + "org.w3c.dom.NamedNodeMap": 1, + "org.w3c.dom.NodeList": 1, + "public": 124, + "class": 10, + "HtmlDomParserContext": 3, + "extends": 7, + "XmlDomParserContext": 1, + "{": 255, + "(": 724, + "Ruby": 22, + "runtime": 30, + "IRubyObject": 14, + "options": 4, + ")": 722, + "super": 5, + "}": 254, + "encoding": 2, + "@Override": 6, + "protected": 4, + "void": 20, + "initErrorHandler": 1, + "if": 79, + "options.strict": 1, + "errorHandler": 6, + "new": 61, + "NokogiriStrictErrorHandler": 1, + "options.noError": 2, + "options.noWarning": 2, + "else": 28, + "NokogiriNonStrictErrorHandler4NekoHtml": 1, + "initParser": 1, + "XMLParserConfiguration": 1, + "config": 2, + "HTMLConfiguration": 1, + "XMLDocumentFilter": 3, + "removeNSAttrsFilter": 2, + "RemoveNSAttrsFilter": 2, + "elementValidityCheckFilter": 3, + "ElementValidityCheckFilter": 3, + "//XMLDocumentFilter": 1, + "filters": 3, + "config.setErrorHandler": 1, + "this.errorHandler": 2, + "parser": 1, + "DOMParser": 1, + "//": 47, + "setProperty": 4, + "java_encoding": 2, + "setFeature": 4, + "true": 16, + "false": 9, + "enableDocumentFragment": 1, + "XmlDocument": 3, + "getNewEmptyDocument": 1, + "ThreadContext": 2, + "context": 8, + "args": 6, + "return": 172, + "XmlDocument.rbNew": 1, + "getNokogiriClass": 1, + "context.getRuntime": 3, + "wrapDocument": 1, + "RubyClass": 71, + "klazz": 34, + "Document": 2, + "document": 5, + "HtmlDocument": 2, + "htmlDocument": 3, + "NokogiriService.HTML_DOCUMENT_ALLOCATOR.allocate": 1, + "htmlDocument.setDocumentNode": 1, + "ruby_encoding.isNil": 1, + "detected_encoding": 2, + "null": 43, + "&&": 6, + "detected_encoding.isNil": 1, + "ruby_encoding": 3, + "String": 32, + "charset": 2, + "tryGetCharsetFromHtml5MetaTag": 2, + "stringOrNil": 1, + "htmlDocument.setEncoding": 1, + "htmlDocument.setParsedEncoding": 1, + "private": 35, + ".equalsIgnoreCase": 5, + "document.getDocumentElement": 2, + ".getNodeName": 4, + "NodeList": 2, + "list": 1, + ".getChildNodes": 2, + "for": 15, + "int": 52, + "i": 54, + "<": 13, + "list.getLength": 1, + "+": 79, + "list.item": 2, + "headers": 1, + "j": 8, + "headers.getLength": 1, + "headers.item": 2, + "NamedNodeMap": 1, + "nodeMap": 1, + ".getAttributes": 1, + "k": 5, + "nodeMap.getLength": 1, + "nodeMap.item": 2, + ".getNodeValue": 1, + "DefaultFilter": 2, + "startElement": 2, + "QName": 2, + "element": 3, + "XMLAttributes": 2, + "attrs": 4, + "Augmentations": 2, + "augs": 4, + "throws": 10, + "XNIException": 2, + "attrs.getLength": 1, + "isNamespace": 1, + "attrs.getQName": 1, + "attrs.removeAttributeAt": 1, + "-": 12, + "element.uri": 1, + "super.startElement": 2, + "NokogiriErrorHandler": 2, + "element_names": 3, + "boolean": 29, + "isValid": 2, + "testee": 1, + "char": 13, + "c": 21, + "testee.toCharArray": 1, + "index": 4, + "Integer": 2, + ".length": 1, + "testee.equals": 1, + "name": 10, + "name.rawname": 2, + "errorHandler.getErrors": 1, + ".add": 1, + "Exception": 1, + "hudson.model": 1, + "hudson.ExtensionListView": 1, + "hudson.Functions": 1, + "hudson.Platform": 1, + "hudson.PluginManager": 1, + "hudson.cli.declarative.CLIResolver": 1, + "hudson.model.listeners.ItemListener": 1, + "hudson.slaves.ComputerListener": 1, + "hudson.util.CopyOnWriteList": 1, + "hudson.util.FormValidation": 1, + "jenkins.model.Jenkins": 1, + "org.jvnet.hudson.reactor.ReactorException": 1, + "org.kohsuke.stapler.QueryParameter": 1, + "org.kohsuke.stapler.Stapler": 1, + "org.kohsuke.stapler.StaplerRequest": 1, + "org.kohsuke.stapler.StaplerResponse": 1, + "javax.servlet.ServletContext": 1, + "javax.servlet.ServletException": 1, + "java.io.File": 1, + "java.io.IOException": 1, + "java.text.NumberFormat": 1, + "java.text.ParseException": 1, + "java.util.Collections": 2, + "java.util.List": 1, + "java.util.Map": 3, + "hudson.Util.fixEmpty": 1, + "Hudson": 5, + "Jenkins": 2, + "transient": 2, + "final": 54, + "CopyOnWriteList": 4, + "<ItemListener>": 2, + "itemListeners": 2, + "ExtensionListView.createCopyOnWriteList": 2, + "ItemListener.class": 1, + "<ComputerListener>": 2, + "computerListeners": 2, + "ComputerListener.class": 1, + "@CLIResolver": 1, + "getInstance": 2, + "Jenkins.getInstance": 2, + "File": 2, + "root": 4, + "ServletContext": 2, + "IOException": 7, + "InterruptedException": 2, + "ReactorException": 2, + "this": 4, + "PluginManager": 1, + "pluginManager": 2, + "getJobListeners": 1, + "getComputerListeners": 1, + "Slave": 3, + "getSlave": 1, + "Node": 1, + "n": 3, + "getNode": 1, + "instanceof": 14, + "List": 3, + "<Slave>": 2, + "getSlaves": 1, + "slaves": 3, + "setSlaves": 1, + "setNodes": 1, + "TopLevelItem": 3, + "getJob": 1, + "getItem": 1, + "getJobCaseInsensitive": 1, + "match": 2, + "Functions.toEmailSafeString": 2, + "item": 2, + "getItems": 1, + "item.getName": 1, + "synchronized": 1, + "doQuietDown": 2, + "StaplerResponse": 3, + "rsp": 4, + "ServletException": 2, + ".generateResponse": 1, + "doLogRss": 1, + "StaplerRequest": 3, + "req": 4, + "qs": 2, + "req.getQueryString": 1, + "rsp.sendRedirect2": 1, + "value": 7, + "type": 5, + "errorText": 6, + "warningText": 5, + "number": 2, + "and": 1, + ".": 1, + "*": 6, + "@deprecated": 1, + "as": 1, + "of": 2, + ".324": 1, + "Either": 1, + "use": 1, + "client": 1, + "side": 1, + "validation": 1, + "e.g.": 1, + "or": 1, + "define": 1, + "your": 1, + "own": 1, + "check": 1, + "method": 3, + "instead": 1, + "relying": 1, + "on": 1, + "generic": 1, + "one.": 1, + "FormValidation": 2, + "doFieldCheck": 1, + "@QueryParameter": 4, + "fixEmpty": 4, + "FormValidation.error": 4, + "FormValidation.warning": 1, + "try": 8, + "type.equalsIgnoreCase": 2, + "NumberFormat.getInstance": 2, + ".parse": 2, + ".floatValue": 1, + "<=>": 1, + "0": 1, + "error": 1, + "Messages": 1, + "Hudson_NotAPositiveNumber": 1, + "equalsIgnoreCase": 1, + "negative": 1, + "NumberFormat": 1, + "parse": 1, + "floatValue": 1, + "Messages.Hudson_NotANegativeNumber": 1, + "catch": 8, + "ParseException": 1, + "e": 11, + "Messages.Hudson_NotANumber": 1, + "FormValidation.ok": 1, + "isWindows": 1, + "File.pathSeparatorChar": 1, + "isDarwin": 1, + "Platform.isDarwin": 1, + "adminCheck": 3, + "Stapler.getCurrentRequest": 1, + "Stapler.getCurrentResponse": 1, + "isAdmin": 4, + "rsp.sendError": 1, + "StaplerResponse.SC_FORBIDDEN": 1, + ".getACL": 1, + ".hasPermission": 1, + "ADMINISTER": 1, + "XSTREAM.alias": 1, + "Hudson.class": 1, + "MasterComputer": 1, + "Jenkins.MasterComputer": 1, + "CloudList": 3, + "Jenkins.CloudList": 1, + "h": 2, + "nokogiri": 6, + "java.util.HashMap": 1, + "org.jruby.RubyArray": 1, + "org.jruby.RubyFixnum": 1, + "org.jruby.RubyModule": 1, + "org.jruby.runtime.ObjectAllocator": 1, + "org.jruby.runtime.load.BasicLibraryService": 1, + "NokogiriService": 1, + "implements": 1, + "BasicLibraryService": 1, + "nokogiriClassCacheGvarName": 1, + "Map": 1, + "<String,>": 2, + "nokogiriClassCache": 2, + "basicLoad": 1, + "ruby": 25, + "init": 2, + "createNokogiriClassCahce": 2, + "Collections.synchronizedMap": 1, + "HashMap": 1, + "nokogiriClassCache.put": 26, + "ruby.getClassFromPath": 26, + "RubyModule": 18, + "ruby.defineModule": 1, + "xmlModule": 7, + "nokogiri.defineModuleUnder": 3, + "xmlSaxModule": 3, + "xmlModule.defineModuleUnder": 1, + "htmlModule": 5, + "htmlSaxModule": 3, + "htmlModule.defineModuleUnder": 1, + "xsltModule": 3, + "createNokogiriModule": 2, + "createSyntaxErrors": 2, + "xmlNode": 2, + "createXmlModule": 2, + "createHtmlModule": 2, + "createDocuments": 2, + "createSaxModule": 2, + "createXsltModule": 2, + "encHandler": 1, + "nokogiri.defineClassUnder": 2, + "ruby.getObject": 13, + "ENCODING_HANDLER_ALLOCATOR": 2, + "encHandler.defineAnnotatedMethods": 1, + "EncodingHandler.class": 1, + "syntaxError": 2, + "ruby.getStandardError": 2, + ".getAllocator": 1, + "xmlSyntaxError": 4, + "xmlModule.defineClassUnder": 23, + "XML_SYNTAXERROR_ALLOCATOR": 2, + "xmlSyntaxError.defineAnnotatedMethods": 1, + "XmlSyntaxError.class": 1, + "node": 14, + "XML_NODE_ALLOCATOR": 1, + "node.defineAnnotatedMethods": 1, + "XmlNode.class": 1, + "attr": 1, + "XML_ATTR_ALLOCATOR": 1, + "attr.defineAnnotatedMethods": 1, + "XmlAttr.class": 1, + "attrDecl": 1, + "XML_ATTRIBUTE_DECL_ALLOCATOR": 1, + "attrDecl.defineAnnotatedMethods": 1, + "XmlAttributeDecl.class": 1, + "characterData": 3, + "comment": 1, + "XML_COMMENT_ALLOCATOR": 1, + "comment.defineAnnotatedMethods": 1, + "XmlComment.class": 1, + "text": 2, + "XML_TEXT_ALLOCATOR": 2, + "text.defineAnnotatedMethods": 1, + "XmlText.class": 1, + "cdata": 1, + "XML_CDATA_ALLOCATOR": 1, + "cdata.defineAnnotatedMethods": 1, + "XmlCdata.class": 1, + "dtd": 1, + "XML_DTD_ALLOCATOR": 1, + "dtd.defineAnnotatedMethods": 1, + "XmlDtd.class": 1, + "documentFragment": 1, + "XML_DOCUMENT_FRAGMENT_ALLOCATOR": 1, + "documentFragment.defineAnnotatedMethods": 1, + "XmlDocumentFragment.class": 1, + "XML_ELEMENT_ALLOCATOR": 1, + "element.defineAnnotatedMethods": 1, + "XmlElement.class": 1, + "elementContent": 1, + "XML_ELEMENT_CONTENT_ALLOCATOR": 1, + "elementContent.defineAnnotatedMethods": 1, + "XmlElementContent.class": 1, + "elementDecl": 1, + "XML_ELEMENT_DECL_ALLOCATOR": 1, + "elementDecl.defineAnnotatedMethods": 1, + "XmlElementDecl.class": 1, + "entityDecl": 1, + "XML_ENTITY_DECL_ALLOCATOR": 1, + "entityDecl.defineAnnotatedMethods": 1, + "XmlEntityDecl.class": 1, + "entityDecl.defineConstant": 6, + "RubyFixnum.newFixnum": 6, + "XmlEntityDecl.INTERNAL_GENERAL": 1, + "XmlEntityDecl.EXTERNAL_GENERAL_PARSED": 1, + "XmlEntityDecl.EXTERNAL_GENERAL_UNPARSED": 1, + "XmlEntityDecl.INTERNAL_PARAMETER": 1, + "XmlEntityDecl.EXTERNAL_PARAMETER": 1, + "XmlEntityDecl.INTERNAL_PREDEFINED": 1, + "entref": 1, + "XML_ENTITY_REFERENCE_ALLOCATOR": 1, + "entref.defineAnnotatedMethods": 1, + "XmlEntityReference.class": 1, + "namespace": 1, + "XML_NAMESPACE_ALLOCATOR": 1, + "namespace.defineAnnotatedMethods": 1, + "XmlNamespace.class": 1, + "nodeSet": 1, + "XML_NODESET_ALLOCATOR": 1, + "nodeSet.defineAnnotatedMethods": 1, + "XmlNodeSet.class": 1, + "pi": 1, + "XML_PROCESSING_INSTRUCTION_ALLOCATOR": 1, + "pi.defineAnnotatedMethods": 1, + "XmlProcessingInstruction.class": 1, + "reader": 1, + "XML_READER_ALLOCATOR": 1, + "reader.defineAnnotatedMethods": 1, + "XmlReader.class": 1, + "schema": 2, + "XML_SCHEMA_ALLOCATOR": 2, + "schema.defineAnnotatedMethods": 1, + "XmlSchema.class": 1, + "relaxng": 1, + "XML_RELAXNG_ALLOCATOR": 2, + "relaxng.defineAnnotatedMethods": 1, + "XmlRelaxng.class": 1, + "xpathContext": 1, + "XML_XPATHCONTEXT_ALLOCATOR": 2, + "xpathContext.defineAnnotatedMethods": 1, + "XmlXpathContext.class": 1, + "htmlElemDesc": 1, + "htmlModule.defineClassUnder": 3, + "HTML_ELEMENT_DESCRIPTION_ALLOCATOR": 1, + "htmlElemDesc.defineAnnotatedMethods": 1, + "HtmlElementDescription.class": 1, + "htmlEntityLookup": 1, + "HTML_ENTITY_LOOKUP_ALLOCATOR": 1, + "htmlEntityLookup.defineAnnotatedMethods": 1, + "HtmlEntityLookup.class": 1, + "xmlDocument": 2, + "XML_DOCUMENT_ALLOCATOR": 1, + "xmlDocument.defineAnnotatedMethods": 1, + "XmlDocument.class": 1, + "//RubyModule": 1, + "htmlDoc": 1, + "html.defineOrGetClassUnder": 1, + "HTML_DOCUMENT_ALLOCATOR": 1, + "htmlDocument.defineAnnotatedMethods": 1, + "HtmlDocument.class": 1, + "xmlSaxParserContext": 5, + "xmlSaxModule.defineClassUnder": 2, + "XML_SAXPARSER_CONTEXT_ALLOCATOR": 2, + "xmlSaxParserContext.defineAnnotatedMethods": 1, + "XmlSaxParserContext.class": 1, + "xmlSaxPushParser": 1, + "XML_SAXPUSHPARSER_ALLOCATOR": 2, + "xmlSaxPushParser.defineAnnotatedMethods": 1, + "XmlSaxPushParser.class": 1, + "htmlSaxParserContext": 1, + "htmlSaxModule.defineClassUnder": 1, + "HTML_SAXPARSER_CONTEXT_ALLOCATOR": 1, + "htmlSaxParserContext.defineAnnotatedMethods": 1, + "HtmlSaxParserContext.class": 1, + "stylesheet": 1, + "xsltModule.defineClassUnder": 1, + "XSLT_STYLESHEET_ALLOCATOR": 2, + "stylesheet.defineAnnotatedMethods": 1, + "XsltStylesheet.class": 2, + "xsltModule.defineAnnotatedMethod": 1, + "ObjectAllocator": 18, + "allocate": 9, + "EncodingHandler": 1, + "not": 1, + "implemented": 1, + "XmlRelaxng": 5, + "xmlRelaxng": 3, + "clone": 14, + "xmlRelaxng.clone": 1, + "clone.setMetaClass": 7, + "CloneNotSupportedException": 7, + "XmlSaxParserContext": 5, + "xmlSaxParserContext.clone": 1, + "XmlSaxPushParser": 1, + "XmlSchema": 5, + "xmlSchema": 3, + "xmlSchema.clone": 1, + "XmlSyntaxError": 5, + "xmlSyntaxError.clone": 1, + "XmlText": 6, + "xmlText": 3, + "xmlText.clone": 1, + "XmlXpathContext": 5, + "xmlXpathContext": 3, + "xmlXpathContext.clone": 1, + "XsltStylesheet": 4, + "xsltStylesheet": 3, + "xsltStylesheet.clone": 1, + "clojure.asm": 1, + "java.lang.reflect.Constructor": 1, + "java.lang.reflect.Method": 1, + "Type": 42, + "VOID": 5, + "BOOLEAN": 6, + "CHAR": 6, + "BYTE": 6, + "SHORT": 6, + "INT": 6, + "FLOAT": 6, + "LONG": 7, + "DOUBLE": 7, + "ARRAY": 3, + "OBJECT": 3, + "VOID_TYPE": 3, + "BOOLEAN_TYPE": 3, + "CHAR_TYPE": 3, + "BYTE_TYPE": 3, + "SHORT_TYPE": 3, + "INT_TYPE": 3, + "FLOAT_TYPE": 3, + "LONG_TYPE": 3, + "DOUBLE_TYPE": 3, + "sort": 18, + "buf": 43, + "off": 25, + "len": 24, + "this.sort": 2, + "this.len": 2, + "this.buf": 2, + "this.off": 1, + "getType": 10, + "typeDescriptor": 1, + "typeDescriptor.toCharArray": 1, + "Class": 10, + "c.isPrimitive": 2, + "Integer.TYPE": 2, + "Void.TYPE": 3, + "Boolean.TYPE": 2, + "Byte.TYPE": 2, + "Character.TYPE": 2, + "Short.TYPE": 2, + "Double.TYPE": 2, + "Float.TYPE": 2, + "getDescriptor": 11, + "getObjectType": 1, + "l": 5, + "name.length": 2, + "name.getChars": 1, + "getArgumentTypes": 2, + "methodDescriptor": 2, + "methodDescriptor.toCharArray": 2, + "size": 8, + "while": 9, + "car": 18, + "break": 1, + ".len": 1, + "Method": 3, + "classes": 2, + "method.getParameterTypes": 1, + "types": 3, + "classes.length": 2, + "getReturnType": 2, + "methodDescriptor.indexOf": 1, + "method.getReturnType": 1, + "switch": 5, + "case": 46, + "default": 5, + "getSort": 1, + "getDimensions": 3, + "getElementType": 2, + "getClassName": 1, + "StringBuffer": 14, + "b": 1, + ".getClassName": 1, + "b.append": 1, + "b.toString": 1, + ".replace": 2, + "getInternalName": 2, + "buf.toString": 4, + "getMethodDescriptor": 2, + "returnType": 1, + "argumentTypes": 2, + "buf.append": 21, + "argumentTypes.length": 1, + ".getDescriptor": 1, + "returnType.getDescriptor": 1, + "c.getName": 1, + "getConstructorDescriptor": 1, + "Constructor": 1, + "parameters": 4, + "c.getParameterTypes": 1, + "parameters.length": 2, + ".toString": 1, + "m": 1, + "m.getParameterTypes": 1, + "m.getReturnType": 1, + "d": 10, + "d.isPrimitive": 1, + "d.isArray": 1, + "d.getComponentType": 1, + "d.getName": 1, + "name.charAt": 1, + "getSize": 1, + "||": 8, + "getOpcode": 1, + "opcode": 17, + "Opcodes.IALOAD": 1, + "Opcodes.IASTORE": 1, + "equals": 2, + "Object": 31, + "o": 12, + "t": 6, + "t.sort": 1, + "Type.OBJECT": 2, + "Type.ARRAY": 2, + "t.len": 1, + "t.off": 1, + "end": 4, + "t.buf": 1, + "hashCode": 1, + "hc": 4, + "toString": 1, + "clojure.lang": 1, + "java.lang.ref.Reference": 1, + "java.math.BigInteger": 1, + "java.util.concurrent.ConcurrentHashMap": 1, + "java.lang.ref.SoftReference": 1, + "java.lang.ref.ReferenceQueue": 1, + "Util": 1, + "equiv": 17, + "k1": 40, + "k2": 38, + "Number": 9, + "Numbers.equal": 1, + "IPersistentCollection": 5, + "pcequiv": 2, + "k1.equals": 2, + "long": 4, + "double": 4, + "c1": 2, + "c2": 2, + ".equiv": 2, + "identical": 1, + "classOf": 1, + "x": 7, + "x.getClass": 1, + "compare": 1, + "Numbers.compare": 1, + "Comparable": 1, + ".compareTo": 1, + "hash": 3, + "o.hashCode": 2, + "hasheq": 1, + "Numbers.hasheq": 1, + "IHashEq": 2, + ".hasheq": 1, + "hashCombine": 1, + "seed": 5, + "//a": 1, + "la": 1, + "boost": 1, + "e3779b9": 1, + "<<": 1, + "isPrimitive": 1, + "isInteger": 1, + "Long": 1, + "BigInt": 1, + "BigInteger": 1, + "ret1": 2, + "ret": 4, + "nil": 2, + "ISeq": 2, + "<K,V>": 1, + "clearCache": 1, + "ReferenceQueue": 1, + "rq": 1, + "ConcurrentHashMap": 1, + "K": 2, + "Reference": 3, + "<V>": 3, + "cache": 1, + "//cleanup": 1, + "any": 1, + "dead": 1, + "entries": 1, + "rq.poll": 2, + "Map.Entry": 1, + "cache.entrySet": 1, + "val": 3, + "e.getValue": 1, + "val.get": 1, + "cache.remove": 1, + "e.getKey": 1, + "RuntimeException": 5, + "runtimeException": 2, + "s": 4, + "Throwable": 4, + "sneakyThrow": 1, + "throw": 2, + "NullPointerException": 1, + "Util.": 1, + "<RuntimeException>": 1, + "sneakyThrow0": 2, + "@SuppressWarnings": 1, + "<T>": 1, + "T": 2 + }, + "JavaScript": { + "/*": 80, + "*/": 87, + "function": 345, + "(": 2299, + ")": 2318, + "{": 875, + ";": 1632, + "//": 637, + "var": 306, + "Modal": 2, + "content": 9, + "options": 27, + "this.options": 1, + "this.": 2, + "element": 6, + ".delegate": 1, + ".proxy": 1, + "this.hide": 1, + "this": 79, + "}": 872, + "Modal.prototype": 1, + "constructor": 9, + "toggle": 18, + "return": 259, + "this.isShown": 3, + "show": 21, + "that": 4, + "e": 47, + ".Event": 1, + "element.trigger": 1, + "if": 370, + "||": 88, + "e.isDefaultPrevented": 1, + ".addClass": 1, + "true": 51, + "escape.call": 1, + "backdrop.call": 1, + "transition": 2, + ".support.transition": 1, + "&&": 114, + "that.": 3, + "element.hasClass": 1, + "element.parent": 1, + ".length": 9, + "element.appendTo": 1, + "document.body": 4, + "//don": 1, + "in": 36, + "shown": 2, + "hide": 22, + "body": 26, + "modal": 4, + "-": 311, + "open": 1, + "fade": 4, + "hidden": 34, + "<div>": 24, + "class=": 13, + "static": 12, + "keyup.dismiss.modal": 2, + "object": 86, + "string": 140, + "click.modal.data": 1, + "api": 1, + "data": 25, + "target": 5, + "href": 19, + ".extend": 1, + "target.data": 1, + "this.data": 1, + "e.preventDefault": 1, + "target.modal": 1, + "option": 13, + "window.jQuery": 4, + "Animal": 12, + "Horse": 12, + "Snake": 12, + "sam": 4, + "tom": 4, + "__hasProp": 2, + "Object.prototype.hasOwnProperty": 2, + "__extends": 6, + "child": 15, + "parent": 14, + "for": 33, + "key": 28, + "__hasProp.call": 2, + "ctor": 6, + "this.constructor": 3, + "ctor.prototype": 3, + "parent.prototype": 6, + "child.prototype": 4, + "new": 49, + "child.__super__": 3, + "name": 109, + "this.name": 5, + "Animal.prototype.move": 2, + "meters": 4, + "alert": 9, + "+": 329, + "Snake.__super__.constructor.apply": 2, + "arguments": 21, + "Snake.prototype.move": 2, + "Snake.__super__.move.call": 2, + "Horse.__super__.constructor.apply": 2, + "Horse.prototype.move": 2, + "Horse.__super__.move.call": 2, + "sam.move": 2, + "tom.move": 2, + ".call": 7, + ".hasOwnProperty": 2, + "Animal.name": 1, + "_super": 4, + "Snake.name": 1, + "Horse.name": 1, + "console.log": 2, + "util": 1, + "require": 7, + "net": 1, + "stream": 1, + "url": 11, + "EventEmitter": 3, + ".EventEmitter": 1, + "FreeList": 1, + ".FreeList": 1, + "HTTPParser": 1, + "process.binding": 1, + ".HTTPParser": 1, + "assert": 7, + ".ok": 1, + "END_OF_FILE": 1, + "debug": 17, + "process.env.NODE_DEBUG": 2, + "/http/.test": 1, + "x": 21, + "console.error": 2, + "else": 119, + "parserOnHeaders": 1, + "headers": 27, + "this.maxHeaderPairs": 2, + "<": 43, + "this._headers.length": 1, + "this._headers": 13, + "this._headers.concat": 1, + "this._url": 1, + "parserOnHeadersComplete": 1, + "info": 1, + "parser": 28, + "info.headers": 1, + "info.url": 1, + "parser._headers": 5, + "parser._url": 3, + ".": 80, + "re": 6, + "no": 7, + "limit": 1, + "parser.maxHeaderPairs": 6, + "n": 106, + "Math.min": 2, + "i": 155, + "k": 15, + "v": 9, + "parser.incoming._addHeaderLine": 2, + "info.method": 2, + "parser.incoming.method": 1, + "parser.incoming.statusCode": 2, + "info.statusCode": 1, + "parser.incoming.upgrade": 3, + "info.upgrade": 2, + "skipBody": 3, + "false": 53, + "parser.onIncoming": 4, + "parser.incoming": 10, + "info.shouldKeepAlive": 1, + "parserOnBody": 1, + "b": 17, + "start": 12, + "len": 11, + "slice": 10, + "b.slice": 1, + "parser.incoming._paused": 1, + "parser.incoming._pendings.length": 1, + "parser.incoming._pendings.push": 1, + "parser.incoming._emitData": 1, + "parserOnMessageComplete": 1, + "parser.incoming.complete": 2, + "headers.length": 1, + "parsers": 1, + "r": 69, + "Continue": 1, + "Switching": 1, + "Protocols": 1, + "Processing": 1, + "OK": 2, + "Created": 1, + "Accepted": 1, + "Non": 1, + "Authoritative": 1, + "Information": 1, + "No": 7, + "Content": 6, + "Reset": 1, + "Partial": 1, + "Multi": 1, + "Status": 1, + "Multiple": 1, + "Choices": 1, + "Moved": 2, + "Permanently": 1, + "Temporarily": 1, + "See": 1, + "Other": 1, + "Not": 5, + "Modified": 7, + "Use": 1, + "Proxy": 2, + "Temporary": 1, + "Redirect": 1, + "Bad": 1, + "Request": 4, + "Unauthorized": 1, + "Payment": 1, + "Required": 3, + "Forbidden": 1, + "Found": 1, + "Method": 1, + "Allowed": 1, + "Acceptable": 1, + "Authentication": 1, + "Time": 1, + "out": 4, + "Conflict": 1, + "Gone": 1, + "Length": 1, + "Precondition": 1, + "Failed": 2, + "Entity": 1, + "Too": 2, + "Large": 2, + "URI": 1, + "Unsupported": 1, + "Media": 1, + "Type": 4, + "Requested": 7, + "Range": 1, + "Satisfiable": 1, + "Expectation": 1, + "I": 1, + "connectionExpression": 1, + "/Connection/i": 1, + "transferEncodingExpression": 1, + "/Transfer": 1, + "Encoding/i": 1, + "closeExpression": 1, + "/close/i": 1, + "chunkExpression": 1, + "/chunk/i": 1, + "contentLengthExpression": 1, + "/Content": 1, + "Length/i": 1, + "dateExpression": 1, + "/Date/i": 1, + "expectExpression": 1, + "/Expect/i": 1, + "continueExpression": 1, + "/100": 1, + "continue/i": 1, + "dateCache": 5, + "utcDate": 1, + "d": 259, + "Date": 5, + "d.toUTCString": 1, + "setTimeout": 2, + "undefined": 87, + "d.getMilliseconds": 1, + "IncomingMessage": 1, + "socket": 32, + "stream.Stream.call": 1, + "this.socket": 8, + "this.connection": 6, + "this.httpVersion": 1, + "null": 158, + "this.complete": 1, + "this.headers": 1, + "this.trailers": 1, + "this.readable": 1, + "this._paused": 1, + "this._pendings": 1, + "this._endEmitted": 1, + "this.url": 1, + "string_decoder": 1, + "end": 11, + "set": 21, + "cookie": 2, + "accept": 4, + "charset": 2, + "encoding": 12, + "language": 1, + "connection": 1, + "pragma": 1, + "link": 5, + "www": 6, + "authenticate": 1, + "sec": 2, + "websocket": 2, + "extensions": 1, + "protocol": 1, + "ascii": 1, + "GET": 12, + "/index.html": 1, + "HTTP/1.1": 2, + "Connection": 2, + "keep": 1, + "alive": 1, + "close": 1, + "Transfer": 1, + "Encoding": 1, + "chunked": 1, + "t": 83, + "the": 8, + "at": 1, + "of": 4, + "message.": 1, + "this.chunkedEncoding": 4, + "this._header": 6, + "messageHeader": 1, + "CRLF": 9, + "this._headerSent": 2, + "sentExpect": 1, + "this._send": 8, + "and": 3, + "value": 40, + "are": 2, + "required": 1, + "setHeader": 1, + "Can": 2, + "name.toLowerCase": 7, + "this._headerNames": 5, + "OutgoingMessage.prototype.getHeader": 1, + "arguments.length": 4, + "throw": 16, + "Error": 15, + "OutgoingMessage.prototype.removeHeader": 1, + "delete": 8, + "OutgoingMessage.prototype._renderHeaders": 1, + "keys": 6, + "Object.keys": 3, + "l": 23, + "keys.length": 3, + "OutgoingMessage.prototype.write": 1, + "chunk": 10, + "this._implicitHeader": 1, + "this._hasBody": 3, + "typeof": 20, + "Buffer.isBuffer": 1, + "TypeError": 2, + "chunk.length": 2, + "ret": 53, + "Buffer.byteLength": 2, + "len.toString": 2, + "OutgoingMessage.prototype.addTrailers": 1, + "this._trailer": 3, + "This": 1, + "type": 29, + "response": 1, + "MUST": 1, + "NOT": 1, + "have": 1, + "a": 39, + "body.": 1, + "Ignoring": 1, + "passed": 2, + "to": 11, + "doing": 1, + ".toString": 3, + "this.connection.write": 2, + "this.write": 1, + "hot": 1, + "ve": 1, + "sent": 1, + "this.output.length": 2, + "this.connection._httpMessage": 1, + "this._finish": 2, + "OutgoingMessage.prototype._finish": 1, + "instanceof": 10, + "ServerResponse": 5, + "DTRACE_HTTP_SERVER_RESPONSE": 1, + "ClientRequest": 6, + "DTRACE_HTTP_CLIENT_REQUEST": 1, + "this.emit": 2, + "OutgoingMessage.prototype._flush": 1, + "while": 10, + "this.socket.writable": 2, + "this.output.shift": 1, + "this.outputEncodings.shift": 1, + "this.socket.write": 1, + "this.finished": 1, + "req": 36, + "OutgoingMessage.call": 2, + "req.method": 5, + "this.sendDate": 1, + "req.httpVersionMajor": 2, + "req.httpVersionMinor": 2, + "this.useChunkedEncodingByDefault": 1, + "this.shouldKeepAlive": 2, + "util.inherits": 5, + "OutgoingMessage": 2, + "exports.ServerResponse": 1, + "ServerResponse.prototype.statusCode": 1, + "onServerResponseClose": 3, + "this._httpMessage.emit": 2, + "ServerResponse.prototype.assignSocket": 1, + "socket._httpMessage": 10, + "socket.on": 4, + "this._flush": 1, + "ServerResponse.prototype.detachSocket": 1, + "socket.removeListener": 7, + "ServerResponse.prototype.writeContinue": 1, + "this._writeRaw": 1, + "this._sent100": 2, + "ServerResponse.prototype._implicitHeader": 1, + "this.writeHead": 1, + "this.statusCode": 2, + "ServerResponse.prototype.writeHead": 1, + "statusCode": 7, + "reasonPhrase": 4, + "headerIndex": 4, + "STATUS_CODES": 1, + "obj": 16, + "this._renderHeaders": 3, + "Array.isArray": 3, + "field": 5, + "obj.length": 1, + "obj.push": 1, + "statusLine": 2, + "statusCode.toString": 1, + "this._expect_continue": 1, + "this._storeHeader": 2, + "ServerResponse.prototype.writeHeader": 1, + "this.writeHead.apply": 1, + "Agent": 5, + "self": 13, + "self.options": 2, + "self.requests": 6, + "self.sockets": 3, + "self.maxSockets": 1, + "self.options.maxSockets": 1, + "Agent.defaultMaxSockets": 2, + "self.on": 1, + "host": 28, + "port": 29, + "localAddress": 15, + ".shift": 1, + ".onSocket": 1, + "socket.destroy": 10, + "self.createConnection": 2, + "net.createConnection": 3, + "exports.Agent": 1, + "Agent.prototype.defaultPort": 1, + "Agent.prototype.addRequest": 1, + "this.sockets": 9, + "this.maxSockets": 1, + "req.onSocket": 1, + "this.createSocket": 2, + "this.requests": 5, + ".push": 2, + "Agent.prototype.createSocket": 1, + "util._extend": 1, + "options.port": 4, + "options.host": 4, + "options.localAddress": 3, + "s": 44, + "onFree": 3, + "self.emit": 9, + "s.on": 4, + "onClose": 3, + "err": 3, + "self.removeSocket": 2, + "onRemove": 3, + "s.removeListener": 3, + "Agent.prototype.removeSocket": 1, + "index": 3, + ".indexOf": 1, + ".splice": 1, + ".emit": 1, + "globalAgent": 3, + "exports.globalAgent": 1, + "cb": 14, + "self.agent": 3, + "options.agent": 3, + "defaultPort": 3, + "options.defaultPort": 1, + "options.hostname": 1, + "options.setHost": 1, + "setHost": 2, + "self.socketPath": 4, + "options.socketPath": 1, + "method": 25, + "self.method": 3, + "options.method": 2, + ".toUpperCase": 2, + "self.path": 3, + "options.path": 2, + "self.once": 2, + "options.headers": 7, + "self.setHeader": 1, + "this.getHeader": 2, + "hostHeader": 3, + "this.setHeader": 2, + "options.auth": 2, + "//basic": 1, + "auth": 1, + "Buffer": 1, + "self.useChunkedEncodingByDefault": 2, + "self._storeHeader": 2, + "self.getHeader": 1, + "self._renderHeaders": 1, + "self._last": 3, + "self.shouldKeepAlive": 3, + "options.createConnection": 4, + "self.onSocket": 3, + "self.agent.addRequest": 1, + "conn": 3, + "self._deferToConnect": 1, + "self._flush": 1, + "exports.ClientRequest": 1, + "ClientRequest.prototype._implicitHeader": 1, + "this.method": 1, + "this.path": 1, + "ClientRequest.prototype.abort": 1, + "this.socket.destroy": 1, + "this._deferToConnect": 3, + "createHangUpError": 3, + "error": 13, + "error.code": 1, + "freeParser": 9, + "parser.socket": 5, + "parser.socket.onend": 1, + "parser.socket.ondata": 1, + "parser.socket.parser": 1, + "parsers.free": 1, + "req.parser": 2, + "socketCloseListener": 4, + "socket.parser": 4, + "req.emit": 11, + "req.res": 9, + "req.res.readable": 1, + "req.res.emit": 1, + "res": 15, + "req.res._emitPending": 1, + "res._emitEnd": 1, + "res.emit": 1, + "req._hadError": 3, + "parser.finish": 6, + "socketErrorListener": 4, + "err.message": 1, + "err.stack": 1, + "socketOnEnd": 2, + "this._httpMessage": 3, + "this.parser": 2, + "socketOnData": 2, + "parser.execute": 2, + "bytesParsed": 4, + "socket.ondata": 4, + "socket.onend": 4, + "bodyHead": 4, + "d.slice": 2, + "eventName": 14, + "req.listeners": 1, + "req.upgradeOrConnect": 2, + "socket.emit": 2, + "parserOnIncomingClient": 2, + "shouldKeepAlive": 5, + "res.upgrade": 1, + "isHeadResponse": 3, + "res.statusCode": 1, + "req.shouldKeepAlive": 3, + "DTRACE_HTTP_CLIENT_RESPONSE": 1, + "res.req": 2, + "res.on": 2, + "responseOnEnd": 2, + "req.socket": 3, + "socket.writable": 4, + "socket.destroySoon": 2, + "ClientRequest.prototype.onSocket": 1, + "process.nextTick": 1, + "parsers.alloc": 2, + "req.connection": 1, + "parser.reinitialize": 2, + "HTTPParser.RESPONSE": 1, + "httpSocketSetup": 3, + "req.maxHeadersCount": 2, + "<<": 2, + "ClientRequest.prototype._deferToConnect": 1, + "arguments_": 3, + "onSocket": 3, + "self.socket.writable": 1, + "self.socket": 5, + ".apply": 3, + "self.socket.once": 1, + "ClientRequest.prototype.setTimeout": 1, + "msecs": 4, + "callback": 8, + "this.once": 2, + "emitTimeout": 4, + "this.socket.setTimeout": 1, + "this.socket.once": 1, + "this.setTimeout": 3, + "sock": 1, + "ClientRequest.prototype.setNoDelay": 1, + "ClientRequest.prototype.setSocketKeepAlive": 1, + "ClientRequest.prototype.clearTimeout": 1, + "exports.request": 2, + "url.parse": 1, + "options.protocol": 3, + "exports.get": 1, + "req.end": 1, + "ondrain": 3, + "Server": 6, + "requestListener": 6, + "net.Server.call": 1, + "allowHalfOpen": 1, + "this.addListener": 2, + "this.httpAllowHalfOpen": 1, + "connectionListener": 3, + "net.Server": 1, + "exports.Server": 1, + "exports.createServer": 1, + "outgoing": 2, + "incoming": 2, + "abortIncoming": 3, + "incoming.length": 2, + "incoming.shift": 2, + "serverSocketCloseListener": 3, + "socket.setTimeout": 1, + "*": 144, + "socket.once": 1, + "HTTPParser.REQUEST": 1, + "this.maxHeadersCount": 2, + "socket.addListener": 2, + "self.listeners": 2, + "self.httpAllowHalfOpen": 1, + "socket.end": 2, + "outgoing.length": 2, + "._last": 1, + "socket._httpMessage._last": 1, + "incoming.push": 1, + "res.shouldKeepAlive": 1, + "DTRACE_HTTP_SERVER_REQUEST": 1, + "outgoing.push": 1, + "res.assignSocket": 1, + "res.detachSocket": 1, + "res._last": 1, + "m": 8, + "outgoing.shift": 1, + "m.assignSocket": 1, + "req.headers": 2, + "continueExpression.test": 1, + "res._expect_continue": 1, + "res.writeContinue": 1, + "exports._connectionListener": 1, + "Client": 6, + "this.host": 1, + "this.port": 1, + "this.agent": 1, + "maxSockets": 1, + "Client.prototype.request": 1, + "path": 4, + "self.host": 1, + "self.port": 1, + "c": 13, + "c.on": 2, + "exports.Client": 1, + "module.deprecate": 2, + "exports.createClient": 1, + "cubes": 4, + "list": 6, + "math": 4, + "num": 12, + "number": 40, + "opposite": 6, + "race": 4, + "square": 22, + "__slice": 2, + "Array.prototype.slice": 2, + "root": 2, + "Math.sqrt": 2, + "cube": 2, + "runners": 6, + "winner": 6, + "__slice.call": 2, + "print": 2, + "elvis": 4, + "_i": 10, + "_len": 6, + "_results": 6, + "list.length": 2, + "_results.push": 2, + "math.cube": 2, + ".slice": 2, + "A": 2, + "w": 12, + "ma": 2, + "c.isReady": 1, + "try": 7, + "s.documentElement.doScroll": 1, + "catch": 5, + "c.ready": 1, + "Qa": 1, + "b.src": 2, + "c.ajax": 1, + "async": 4, + "dataType": 2, + "c.globalEval": 1, + "b.text": 1, + "b.textContent": 1, + "b.innerHTML": 1, + "events": 16, + "click": 8, + "mouseenter": 7, + "mouseleave": 7, + "live.": 3, + "&": 22, + "scrollTo": 2, + ".4.2": 1, + "find": 9, + "boolean": 18, + "ready": 7, + "complete": 8, + "DOMContentLoaded": 9, + "load": 6, + "onreadystatechange": 8, + "onload": 4, + "Function": 4, + "Array": 13, + "Object": 5, + "isPrototypeOf": 4, + "/bfnrt": 3, + "|": 90, + "u": 43, + "fA": 4, + "F": 6, + "/g": 18, + ".replace": 10, + "/": 96, + "Invalid": 9, + "JSON": 7, + "head": 5, + "script": 39, + "text/javascript": 10, + "div": 53, + "none": 33, + "<link/>": 4, + "<table>": 29, + "</table>": 27, + "<a>": 12, + "href=": 8, + "style=": 15, + "</a>": 8, + "<input>": 5, + "type=": 5, + "tbody": 13, + "style": 8, + "/a": 4, + "input": 49, + "on": 23, + "select": 16, + "window.": 4, + "onclick": 11, + "name=": 5, + "checked=": 1, + "px": 122, + "submit": 11, + "change": 16, + "htmlFor": 1, + "class": 18, + "className": 4, + "readOnly": 1, + "maxLength": 1, + "cellSpacing": 1, + "rowSpan": 1, + "colSpan": 1, + "tabIndex": 5, + "useMap": 1, + "frameBorder": 1, + "jQuery": 12, + "getData": 6, + "setData": 6, + "fx": 40, + "queue": 21, + "inprogress": 12, + "addClass": 4, + "removeClass": 4, + "__className__": 8, + "one": 7, + "property": 12, + "can": 5, + "Syntax": 5, + "unrecognized": 5, + "expression": 5, + "ID": 5, + "NAME": 4, + "TAG": 6, + "u00c0": 4, + "uFFFF": 4, + "leftMatch": 4, + "attrMap": 4, + "attrHandle": 4, + "g": 3, + "g.getAttribute": 1, + "relative": 15, + "h": 12, + "W/.test": 1, + "h.toLowerCase": 1, + "q": 5, + "g.length": 1, + "p": 6, + "<q;m++)if(p=g[m]){for(;(p=p.previousSibling)&&p.nodeType!==1;);g[m]=l||p&&p.nodeName.toLowerCase()===h?p||false:p===h}l&&k.filter(h,g,true)},\">": 1, + "parentNode": 12, + "previousSibling": 16, + "nth": 8, + "even": 4, + "odd": 4, + "not": 20, + "text": 21, + "radio": 23, + "checkbox": 19, + "file": 5, + "password": 5, + "image": 7, + "reset": 4, + "button": 17, + "contains": 7, + "only": 4, + "first": 9, + "last": 6, + "id": 26, + "sourceIndex": 1, + "#": 11, + "<p>": 4, + "</p>": 4, + ".TEST": 4, + "</div>": 21, + "CLASS": 4, + "HTML": 4, + "filter": 7, + "nextSibling": 12, + "iframe": 7, + "</\"+d+\">": 1, + "<select>": 4, + "multiple=": 4, + "</select>": 4, + "<fieldset>": 4, + "</fieldset>": 4, + "<tbody>": 12, + "</tbody>": 12, + "<tr>": 11, + "</tr>": 11, + "<colgroup>": 4, + "</colgroup>": 4, + "<map>": 4, + "</map>": 4, + "before": 7, + "after": 10, + "position": 13, + "absolute": 12, + "top": 11, + "left": 15, + "margin": 18, + "border": 14, + "solid": 2, + "#000": 3, + "padding": 12, + "width": 29, + "height": 24, + "<td>": 10, + "</td>": 10, + "fixed": 13, + "marginTop": 13, + "marginLeft": 11, + "using": 6, + "borderTopWidth": 4, + "borderLeftWidth": 4, + "Left": 6, + "Top": 6, + "scroll": 12, + "pageXOffset": 7, + "pageYOffset": 4, + "Height": 3, + "Width": 8, + "inner": 5, + "outer": 4, + "CSS1Compat": 4, + "client": 10, + "offset": 19, + "A.jQuery": 1, + "A.": 1, + "window": 15, + "document": 11, + "window.document": 2, + "navigator": 3, + "window.navigator": 2, + "location": 2, + "window.location": 4, + "selector": 37, + "context": 27, + "jQuery.fn.init": 2, + "rootjQuery": 6, + "_jQuery": 2, + "_": 13, + "quickExpr": 2, + "<[\\w\\W]+>": 2, + "rnotwhite": 2, + "S/": 2, + "trimLeft": 2, + "trimRight": 2, + "rdigit": 1, + "d/": 1, + "rsingleTag": 2, + "<(\\w+)\\s*\\/?>": 2, + "<\\/\\1>": 2, + "rvalidchars": 2, + "rvalidescape": 2, + "d*": 6, + "eE": 2, + "rvalidbraces": 2, + "s*": 8, + "rwebkit": 2, + "webkit": 4, + "w.": 9, + "ropera": 2, + "opera": 2, + ".*version": 2, + "rmsie": 2, + "msie": 2, + "rmozilla": 2, + "mozilla": 2, + ".*": 10, + "rv": 2, + "userAgent": 1, + "navigator.userAgent": 1, + "browserMatch": 1, + "readyList": 1, + "toString": 3, + "Object.prototype.toString": 2, + "hasOwn": 1, + "push": 4, + "Array.prototype.push": 1, + "trim": 1, + "String.prototype.trim": 1, + "indexOf": 1, + "Array.prototype.indexOf": 1, + "class2type": 1, + "jQuery.fn": 1, + "jQuery.prototype": 1, + "init": 1, + "match": 12, + "elem": 83, + "doc": 3, + "selector.nodeType": 1, + "this.context": 4, + "this.length": 3, + "this.selector": 3, + "selector.charAt": 2, + "selector.length": 2, + "quickExpr.exec": 1, + "context.ownerDocument": 1, + "rsingleTag.exec": 1, + "jQuery.isPlainObject": 1, + "document.createElement": 16, + "jQuery.fn.attr.call": 1, + "doc.createElement": 1, + "jQuery.buildFragment": 1, + "ret.cacheable": 1, + "jQuery.clone": 1, + "ret.fragment": 2, + ".childNodes": 1, + "jQuery.merge": 1, + "document.getElementById": 1, + "elem.parentNode": 7, + "elem.id": 1, + "rootjQuery.find": 1, + "context.jquery": 1, + ".find": 2, + "jQuery.isFunction": 1, + "rootjQuery.ready": 1, + "selector.selector": 2, + "selector.context": 1, + "jQuery.makeArray": 1, + ".6.1": 2, + "array": 9, + "setInterval": 3, + "@": 3, + "text/xml": 6, + "Microsoft.XMLDOM": 3, + "parsererror": 6, + "XML": 3, + "eval": 2, + "regexp": 5, + "compatible": 3, + "Boolean": 6, + "Number": 3, + "String": 3, + "RegExp": 8, + "xA0": 3, + "done": 5, + "fail": 2, + "isResolved": 2, + "isRejected": 2, + "promise": 2, + "then": 2, + "always": 2, + "pipe": 2, + "resolve": 3, + "reject": 3, + "checked": 9, + "zoom": 4, + "inline": 23, + "td": 3, + "Bubbles": 3, + "embed": 2, + "clsid": 3, + "D27CDB6E": 3, + "AE6D": 3, + "cf": 3, + "B8": 3, + "applet": 2, + "classid": 3, + "changeData": 5, + "toJSON": 3, + "defer": 6, + "mark": 22, + "get": 25, + "disabled": 3, + "optgroup": 3, + "getAttribute": 2, + "form": 13, + "default": 4, + "case": 17, + "is": 10, + "val": 9, + "elem.value": 8, + "elem.setAttribute": 4, + "attributeNode": 4, + "elem.getAttributeNode": 5, + "attributeNode.specified": 2, + "parseInt": 10, + "attributeNode.value": 2, + "rfocusable.test": 2, + "elem.nodeName": 4, + "rclickable.test": 2, + "elem.href": 2, + "propFix": 2, + "tabindex": 2, + "readonly": 2, + "maxlength": 2, + "cellspacing": 2, + "cellpadding": 2, + "rowspan": 2, + "colspan": 2, + "usemap": 2, + "frameborder": 2, + "contenteditable": 2, + "prop": 12, + "nType": 10, + "elem.nodeType": 4, + "hooks": 12, + "notxml": 5, + "jQuery.isXMLDoc": 2, + "jQuery.propFix": 6, + "jQuery.propHooks": 2, + "hooks.set": 2, + "hooks.get": 2, + "propHooks": 2, + "boolHook": 2, + "propName": 8, + "jQuery.removeAttr": 2, + "jQuery.attrHooks.value": 1, + "formHook": 3, + "jQuery.nodeName": 4, + "formHook.get": 1, + "formHook.set": 1, + "jQuery.support.getSetAttribute": 1, + "jQuery.attrFix": 1, + "jQuery.attrHooks.name": 1, + "jQuery.valHooks.button": 2, + "ret.nodeValue": 2, + "auto": 24, + "src": 8, + "mouseover": 8, + "mouseout": 8, + "handle": 3, + "altKey": 2, + "attrChange": 2, + "attrName": 2, + "bubbles": 2, + "cancelable": 2, + "charCode": 2, + "clientX": 2, + "clientY": 2, + "ctrlKey": 2, + "currentTarget": 2, + "detail": 1, + "eventPhase": 2, + "fromElement": 2, + "handler": 1, + "keyCode": 2, + "layerX": 1, + "layerY": 1, + "metaKey": 2, + "newValue": 1, + "offsetX": 2, + "offsetY": 2, + "pageX": 2, + "pageY": 2, + "prevValue": 1, + "relatedNode": 2, + "relatedTarget": 2, + "screenX": 2, + "screenY": 2, + "shiftKey": 2, + "srcElement": 2, + "toElement": 2, + "view": 3, + "wheelDelta": 1, + "which": 2, + "clone": 1, + "click.specialSubmit": 1, + "keypress.specialSubmit": 1, + ".specialSubmit": 1, + "multiple": 2, + "_change_data": 3, + "focusout": 7, + "textarea": 4, + ".specialChange": 2, + "bubbling": 2, + "focusin": 6, + "bind": 2, + "unload": 3, + "live": 3, + "lastToggle": 4, + "die": 2, + "hover": 1, + "blur": 3, + "focus": 3, + "resize": 2, + "dblclick": 2, + "mousedown": 2, + "mouseup": 2, + "mousemove": 2, + "keydown": 2, + "keypress": 2, + "keyup": 2, + "hasDuplicate": 1, + "baseHasDuplicate": 2, + "rBackslash": 1, + "rNonWord": 1, + "W/": 1, + ".sort": 1, + "Sizzle": 1, + "results": 4, + "seed": 4, + "origContext": 1, + "context.nodeType": 3, + "checkSet": 22, + "extra": 1, + "cur": 5, + "pop": 2, + "prune": 2, + "contextXML": 4, + "Sizzle.isXML": 1, + "parts": 5, + "soFar": 1, + "do": 2, + "chunker.exec": 1, + "elem.getAttribute": 4, + "part": 28, + "isPartStr": 14, + "isTag": 6, + "rNonWord.test": 4, + "isPartStrNotTag": 6, + "part.toLowerCase": 4, + "checkSet.length": 4, + "elem.previousSibling": 2, + "elem.nodeName.toLowerCase": 2, + "Sizzle.filter": 6, + "parent.nodeName.toLowerCase": 2, + "__sizzle__": 3, + ".CLASS": 2, + "#ID": 2, + "test": 9, + "closest": 3, + "<$1>": 6, + "</$2>": 6, + "replaceWith": 6, + "tr": 4, + "table": 6, + "small": 2, + "append": 3, + "prepend": 3, + "getElementsByTagName": 2, + "querySelectorAll": 2, + "length": 3, + "XHTML": 2, + "block": 15, + "Right": 3, + "Bottom": 3, + "opacity": 21, + "zIndex": 2, + "fontWeight": 2, + "lineHeight": 2, + "widows": 2, + "orphans": 2, + "float": 9, + "cssFloat": 6, + "styleFloat": 3, + "alpha": 3, + "display": 24, + "right": 15, + "marginRight": 5, + "fontSize": 3, + "em": 3, + "unshift": 3, + "POST": 4, + "html": 7, + "ajaxStart": 6, + "ajaxStop": 6, + "ajaxComplete": 6, + "ajaxError": 3, + "ajaxSuccess": 3, + "ajaxSend": 6, + "post": 3, + "json": 15, + "application/x": 8, + "urlencoded": 5, + "application/xml": 3, + "text/html": 3, + "text/plain": 3, + "application/json": 3, + "*/*": 4, + "responseXML": 3, + "responseText": 3, + "source_type": 2, + "destination_type": 2, + "xml": 3, + "abort": 3, + "Last": 3, + "Etag": 3, + "notmodified": 3, + "success": 6, + "ajax": 3, + "Success": 3, + "http": 6, + "If": 6, + "Since": 3, + "None": 3, + "Match": 3, + "Accept": 3, + ".01": 4, + "Transport": 3, + "timeout": 3, + "old": 2, + "conversion": 3, + "from": 4, + "jsonp": 6, + "was": 3, + "called": 3, + "application/javascript": 3, + "application/ecmascript": 3, + "ecmascript": 3, + "Microsoft.XMLHTTP": 3, + "withCredentials": 3, + "X": 9, + "With": 8, + "XMLHttpRequest": 3, + "marginBottom": 3, + "paddingTop": 3, + "paddingBottom": 3, + "paddingLeft": 3, + "paddingRight": 3, + "olddisplay": 15, + "each": 2, + "rotate": 2, + "rad": 2, + "Y": 3, + "overflow": 3, + "<\">": 4, + "nodeName": 3, + "<!doctype>": 3, + "<html>": 3, + "<body>": 3, + "</body>": 2, + "</html>": 2, + "getBoundingClientRect": 3, + "visible": 4, + "cellpadding=": 3, + "cellspacing=": 3, + "cy": 1, + "f.isWindow": 1, + "a.nodeType": 1, + "a.defaultView": 1, + "a.parentWindow": 1, + "cv": 1, + "cj": 1, + "f": 58, + ".appendTo": 1, + "b.css": 1, + "b.remove": 1, + "<\"||a.charAt(a.length-1)!==\">": 1, + "a.getAttribute": 2, + "j.test": 1, + "b.toLowerCase": 1, + "a.length": 1, + "<g;f++)if(h=a[f]){while((h=h.previousSibling)&&h.nodeType!==1);a[f]=e||h&&h.nodeName.toLowerCase()===b?h||!1:h===b}e&&k.filter(b,a,!0)},\">": 1, + "swing": 1, + "a.jQuery": 1, + "a.": 1, + "rdashAlpha": 1, + "z": 2, + "/ig": 1, + "rmsPrefix": 1, + "ms": 2, + "fcamelCase": 1, + "all": 4, + "letter": 3, + "charAt": 1, + "1": 8, + "#id": 1, + ".7.2": 1, + "once": 5, + "memory": 6, + "fired": 1, + "memorized": 1, + "pending": 1, + "notify": 1, + "resolved": 1, + "rejected": 1, + "nav": 4, + "<:nav>": 1, + "</:nav>": 1, + "visibility": 2, + "%": 17, + "parsedAttrs": 2, + ".run": 4, + "nodeHook": 3, + "nodeHook.get": 1, + "nodeHook.set": 1, + "jQuery.attrHooks.tabindex": 1, + "jQuery.propHooks.tabIndex": 1, + "attrNode": 2, + "jQuery.prop": 1, + "attrNode.nodeValue": 1, + "getSetAttribute": 1, + "fixSpecified": 2, + "coords": 1, + "**": 3, + "timeStamp": 1, + "char": 1, + "buttons": 1, + "click._submit": 1, + "keypress._submit": 1, + "submit._submit": 1, + "._submit": 1, + "propertychange._change": 1, + "click._change": 1, + "beforeactivate._change": 1, + "change._change": 1, + "._change": 1, + "contextmenu": 1, + "expando": 1, + "Math.random": 1, + "ll": 2, + "be": 3, + "faster": 1, + "an": 1, + "parts.length": 5, + "Expr.match.ID.test": 2, + "Sizzle.find": 2, + "parts.shift": 1, + "ret.expr": 4, + "ret.set": 4, + "expr": 1, + "parts.pop": 3, + "makeArray": 2, + "context.parentNode": 2, + "Expr.relative": 1, + "global": 1, + "abbr": 2, + "article": 3, + "aside": 3, + "audio": 11, + "bdi": 2, + "canvas": 29, + "datalist": 2, + "details": 3, + "figcaption": 3, + "figure": 3, + "footer": 3, + "header": 3, + "hgroup": 3, + "meter": 2, + "output": 2, + "progress": 2, + "section": 4, + "summary": 2, + "time": 3, + "video": 3, + "<(?:\">": 1, + "nodeNames": 1, + "_submit_attached": 1, + "_change_attached": 1, + "fillOpacity": 1, + "awesome": 1, + "hack": 1, + "by": 1, + "Dean": 1, + "Edwards": 1, + "computed": 1, + "percentage": 1, + "specified": 1, + "used": 1, + "flat": 1, + "UTF": 1, + "expand": 1, + "fxshow": 6, + "jquery": 1, + "Date.prototype.toJSON": 2, + "isFinite": 1, + "this.valueOf": 2, + "this.getUTCFullYear": 1, + "this.getUTCMonth": 1, + "this.getUTCDate": 1, + "this.getUTCHours": 1, + "this.getUTCMinutes": 1, + "this.getUTCSeconds": 1, + "String.prototype.toJSON": 1, + "Number.prototype.toJSON": 1, + "Boolean.prototype.toJSON": 1, + "cx": 1, + "u0000": 1, + "u00ad": 1, + "u0600": 1, + "u0604": 1, + "u070f": 1, + "u17b4": 1, + "u17b5": 1, + "u200c": 1, + "u200f": 1, + "u2028": 3, + "u202f": 1, + "u2060": 1, + "u206f": 1, + "ufeff": 1, + "ufff0": 1, + "uffff": 1, + "escapable": 1, + "JSON.stringify": 2, + "JSON.parse": 1, + "PUT": 2, + "DELETE": 2, + "_id": 1, + "add": 1, + "remove": 3, + "ties": 1, + "collection.": 1, + "_removeReference": 1, + "model": 12, + "model.collection": 2, + "model.unbind": 1, + "this._onModelEvent": 1, + "_onModelEvent": 1, + "ev": 5, + "collection": 2, + "this._remove": 1, + "model.idAttribute": 2, + "this._byId": 2, + "model.previous": 1, + "model.id": 1, + "this.trigger.apply": 2, + "methods": 3, + "_.each": 1, + "Backbone.Collection.prototype": 1, + "this.models": 1, + ".concat": 2, + "_.toArray": 1, + "Backbone.Router": 1, + "options.routes": 2, + "this.routes": 4, + "this._bindRoutes": 1, + "this.initialize.apply": 1, + "namedParam": 2, + "splatParam": 2, + "escapeRegExp": 2, + "_.extend": 7, + "Backbone.Router.prototype": 1, + "Backbone.Events": 2, + "initialize": 2, + "route": 14, + "Backbone.history": 2, + "Backbone.History": 2, + "_.isRegExp": 1, + "this._routeToRegExp": 1, + "Backbone.history.route": 1, + "_.bind": 2, + "fragment": 13, + "args": 4, + "this._extractParameters": 1, + "callback.apply": 1, + "navigate": 1, + "triggerRoute": 2, + "Backbone.history.navigate": 1, + "_bindRoutes": 1, + "routes": 4, + "routes.unshift": 1, + "routes.length": 1, + "this.route": 1, + "_routeToRegExp": 1, + "route.replace": 1, + "_extractParameters": 1, + "route.exec": 1, + "this.handlers": 1, + "_.bindAll": 1, + "hashStrip": 3, + "#*": 1, + "isExplorer": 1, + "/msie": 1, + "historyStarted": 2, + "Backbone.History.prototype": 1, + "interval": 1, + "getFragment": 1, + "forcePushState": 2, + "this._hasPushState": 4, + "window.location.pathname": 1, + "search": 4, + "window.location.search": 1, + "fragment.indexOf": 1, + "this.options.root": 3, + "fragment.substr": 1, + "this.options.root.length": 1, + "window.location.hash": 1, + "fragment.replace": 1, + "<iframe>": 1, + "src=": 1, + "tabindex=": 1, + "pushState": 1, + "or": 5, + "hashes": 1, + "whether": 1, + ".bind": 2, + "this.checkUrl": 3, + "oldIE": 1, + "this.interval": 1, + "this.fragment": 4, + "loc": 1, + "atRoot": 3, + "loc.pathname": 1, + "this._wantsPushState": 2, + "this.getFragment": 1, + "loc.hash": 1, + "loc.hash.replace": 1, + "dealing": 1, + "with": 3, + "selectorDelegate": 2, + "this.el": 3, + "eventSplitter": 2, + "S": 4, + "viewOptions": 1, + "Backbone.View.prototype": 1, + "tagName": 3, + "render": 1, + ".remove": 1, + "make": 1, + "attributes": 3, + "el": 4, + ".attr": 1, + ".html": 1, + "delegateEvents": 1, + "this.events": 1, + ".unbind": 1, + "this.cid": 2, + "key.match": 1, + "create": 1, + "update": 1, + "read": 1, + "Some": 1, + "possible": 1, + "customizations": 1, + "could": 1, + "Backbone.sync": 1, + "methodMap": 1, + "params": 2, + "processData": 1, + "params.url": 2, + "getUrl": 2, + "urlError": 2, + "params.data": 5, + "params.contentType": 2, + "model.toJSON": 1, + "Backbone.emulateJSON": 2, + "params.processData": 1, + "Backbone.emulateHTTP": 1, + "params.data._method": 1, + "params.type": 1, + "params.beforeSend": 1, + "xhr": 1, + "xhr.setRequestHeader": 1, + ".ajax": 1, + "inherits": 1, + "protoProps": 4, + "staticProps": 3, + "protoProps.hasOwnProperty": 1, + "protoProps.constructor": 1, + "parent.apply": 1, + "child.prototype.constructor": 1, + "object.url": 4, + "_.isFunction": 1, + "wrapError": 1, + "onError": 3, + "resp": 3, + "model.trigger": 1, + "escapeHTML": 1, + "string.replace": 1, + "#x": 1, + "da": 1, + "/gi": 1, + "</g,>": 1, + "lt": 1, + "replace": 1, + "#x27": 1, + "#x2F": 1, + "window.Modernizr": 1, + "version": 2, + "Modernizr": 8, + "enableClasses": 3, + "docElement": 1, + "document.documentElement": 1, + "mod": 11, + "modElem": 1, + "mStyle": 2, + "modElem.style": 1, + "inputElem": 5, + "smile": 3, + "prefixes": 2, + ".split": 6, + "omPrefixes": 1, + "cssomPrefixes": 2, + "omPrefixes.split": 1, + "domPrefixes": 3, + "omPrefixes.toLowerCase": 1, + "ns": 1, + "tests": 35, + "inputs": 3, + "attrs": 3, + "classes": 1, + "classes.slice": 1, + "featureName": 4, + "injectElementWithStyles": 4, + "rule": 2, + "nodes": 5, + "testnames": 3, + "node": 6, + "fakeBody": 2, + "node.id": 1, + "div.appendChild": 1, + ".join": 4, + "want": 1, + "so": 2, + "check": 1, + "exists": 1, + "fakeBody.parentNode.removeChild": 1, + "div.parentNode.removeChild": 1, + "testMediaQuery": 2, + "mq": 3, + "matchMedia": 3, + "window.matchMedia": 1, + "window.msMatchMedia": 1, + ".matches": 1, + "bool": 16, + "window.getComputedStyle": 1, + "getComputedStyle": 1, + "node.currentStyle": 1, + "isEventSupported": 4, + "TAGNAMES": 2, + "isSupported": 2, + "element.setAttribute": 3, + "element.removeAttribute": 1, + "_hasOwnProperty": 2, + "hasOwnProperty": 4, + "_hasOwnProperty.call": 2, + "object.constructor.prototype": 1, + "Function.prototype.bind": 2, + "slice.call": 3, + "bound": 3, + "F.prototype": 1, + "target.prototype": 1, + "result": 8, + "target.apply": 2, + "args.concat": 2, + "setCss": 5, + "str": 2, + "mStyle.cssText": 1, + "setCssAll": 1, + "str1": 2, + "str2": 2, + "prefixes.join": 2, + "legit": 1, + "testProps": 3, + "props": 18, + "prefixed": 7, + "testDOMProps": 2, + "item": 4, + "item.bind": 1, + "testPropsAll": 11, + "ucProp": 5, + "prop.charAt": 1, + "prop.substr": 1, + "cssomPrefixes.join": 1, + "elem.getContext": 2, + ".getContext": 1, + ".fillText": 1, + "window.WebGLRenderingContext": 1, + "window.DocumentTouch": 1, + "DocumentTouch": 1, + "quite": 1, + "tricky": 1, + "window.postMessage": 1, + "window.openDatabase": 1, + "document.documentMode": 2, + "window.history": 1, + "history.pushState": 1, + "mStyle.backgroundColor": 3, + "/.test": 10, + "mStyle.background": 1, + ".style.textShadow": 1, + ".55": 2, + "cssanimations": 1, + "animationName": 1, + "csscolumns": 1, + "columnCount": 1, + "cssgradients": 1, + "background": 3, + "gradient": 3, + "linear": 2, + "bottom": 1, + "#9f9": 2, + "white": 2, + "cssreflections": 1, + "boxReflect": 1, + "csstransforms": 1, + "transform": 3, + "csstransforms3d": 1, + "perspective": 1, + "D": 1, + "transforms": 1, + "off": 4, + "browser": 1, + "webkitPerspective": 1, + "@media": 1, + "#modernizr": 3, + "csstransitions": 1, + "fontface": 1, + "@font": 1, + "face": 1, + "font": 1, + "family": 1, + "generatedcontent": 1, + "here": 1, + "we": 1, + "extend": 1, + "elem.canPlayType": 2, + "bool.ogg": 1, + "video/mp4": 1, + "codecs": 4, + "video/webm": 1, + "audio/ogg": 1, + "audio/mpeg": 1, + "audio/wav": 1, + "audio/x": 1, + "m4a": 1, + "audio/aac": 1, + "localStorage": 1, + "go": 1, + "aggressive.": 1, + "localStorage.setItem": 1, + "localStorage.removeItem": 1, + "sessionStorage.setItem": 1, + "sessionStorage.removeItem": 1, + "window.Worker": 1, + "window.applicationCache": 1, + "document.createElementNS": 6, + "ns.svg": 4, + ".createSVGRect": 1, + "div.innerHTML": 1, + "div.firstChild": 1, + "div.firstChild.namespaceURI": 1, + "/SVGAnimate/.test": 1, + "toString.call": 2, + "/SVGClipPath/.test": 1, + "webforms": 1, + "props.length": 2, + "attrs.list": 2, + "window.HTMLDataListElement": 1, + "inputElemType": 5, + "defaultView": 2, + "inputElem.setAttribute": 1, + "inputElem.type": 1, + "inputElem.value": 2, + "inputElem.style.cssText": 1, + "range": 1, + "inputElem.style.WebkitAppearance": 1, + "docElement.appendChild": 1, + "document.defaultView": 1, + "defaultView.getComputedStyle": 2, + ".WebkitAppearance": 1, + "inputElem.offsetHeight": 1, + "docElement.removeChild": 1, + "tel": 1, + "email": 1, + "inputElem.checkValidity": 2, + "feature": 3, + "feature.toLowerCase": 1, + "classes.push": 1, + "going": 1, + "quit": 1, + "you": 1, + "docElement.className": 2, + "<xyz>": 1, + "</xyz>": 1, + "<style>": 1, + "</style>": 1, + "f.cloneNode": 1, + "n.createElement": 1, + "h.shivMethods": 1, + "*display": 2, + "*zoom": 2, + "controls": 1, + "#FF0": 1, + "color": 2, + "elements": 2, + "shivCSS": 2, + "shivMethods": 1, + "createElement": 3, + "createDocumentFragment": 1, + "should": 1, + "overwritten.": 1, + "@memberOf": 1, + "html5": 2, + "@type": 1, + "options.shivMethods": 1, + "shivDocument": 2, + "window.html5": 1, + "Modernizr._version": 1, + "Modernizr._prefixes": 1, + "Modernizr._domPrefixes": 1, + "Modernizr._cssomPrefixes": 1, + "Modernizr.mq": 1, + "Modernizr.hasEvent": 1, + "Modernizr.testProp": 1, + "Modernizr.testAllProps": 1, + "Modernizr.testStyles": 1, + "Modernizr.prefixed": 1, + "docElement.className.replace": 1, + "js": 1, + "classes.join": 1, + "this.document": 1, + "PEG.parser": 1, + "quote": 2, + "result0": 164, + "result1": 52, + "result2": 28, + "parse_singleQuotedCharacter": 2, + "result1.push": 1, + "input.charCodeAt": 12, + "pos": 90, + "reportFailures": 39, + "matchFailed": 22, + "pos1": 24, + "chars": 1, + "chars.join": 1, + "parse_eolChar": 5, + "any": 7, + "character": 8, + "result3": 6, + "result4": 9, + "parse_classCharacter": 2, + "begin": 1, + "begin.data.charCodeAt": 1, + "end.data.charCodeAt": 1, + "this.SyntaxError": 2, + "begin.rawText": 2, + "end.rawText": 2, + "begin.data": 1, + "end.data": 1, + "rawText": 2, + "pos0": 23, + "parse_bracketDelimitedCharacter": 2, + "char_": 3, + "quoteForRegexpClass": 1, + "parse_simpleBracketDelimitedCharacter": 2, + "parse_simpleEscapeSequence": 1, + "parse_zeroEscapeSequence": 1, + "parse_hexEscapeSequence": 1, + "parse_unicodeEscapeSequence": 2, + "parse_eolEscapeSequence": 2, + "pos2": 6, + "parse_digit": 3, + "x0B": 2, + "x00": 1, + "parse_hexDigit": 7, + "h1": 4, + "h2": 4, + "String.fromCharCode": 2, + "input.substr": 3, + "h3": 2, + "h4": 2, + "parse_eol": 4, + "eol": 2, + "input.charAt": 14, + "parse_letter": 1, + "parse_lowerCaseLetter": 2, + "parse_upperCaseLetter": 2, + "Z": 1, + "parse___": 1, + "parse_whitespace": 3, + "parse_comment": 3, + "result0.push": 1, + "parse_singleLineComment": 2, + "parse_multiLineComment": 1, + "u2029": 2, + "uFEFF": 1, + "u1680": 1, + "u180E": 1, + "u2000": 1, + "u200A": 1, + "u202F": 1, + "u205F": 1, + "u3000": 1, + "cleanupExpected": 2, + "expected": 11, + "expected.sort": 1, + "lastExpected": 3, + "cleanExpected": 2, + "expected.length": 4, + "cleanExpected.push": 1, + "computeErrorPosition": 2, + "line": 11, + "column": 8, + "seenCR": 5, + "Math.max": 3, + "rightmostFailuresPos": 2, + "ch": 30, + "parseFunctions": 1, + "startRule": 1, + "input.length": 2, + "found": 8, + "errorPosition": 1, + "rightmostFailuresExpected": 1, + "errorPosition.line": 1, + "errorPosition.column": 1, + "toSource": 1, + "this._source": 1, + "result.SyntaxError": 1, + "buildMessage": 2, + "expectedHumanized": 5, + "foundHumanized": 3, + "switch": 7, + "break": 11, + "expected.slice": 1, + "this.expected": 1, + "this.found": 1, + "this.message": 3, + "this.offset": 1, + "this.line": 3, + "this.column": 1, + "result.SyntaxError.prototype": 1, + "Error.prototype": 1, + "/usr/bin/env": 1, + "steelseries": 1, + "n.charAt": 1, + "n.substring": 1, + "i.substring": 3, + "this.color": 1, + "ui": 3, + "/255": 1, + "y": 3, + "t.getRed": 4, + "t.getGreen": 4, + "t.getBlue": 4, + "t.getAlpha": 4, + "i.getRed": 1, + "i.getGreen": 1, + "i.getBlue": 1, + "o": 17, + "i.getAlpha": 1, + "*f": 2, + "w/r": 1, + "p/r": 1, + "s/r": 1, + "o/r": 1, + "e*u": 1, + ".toFixed": 3, + "l*u": 1, + "c*u": 1, + "h*u": 1, + "vr": 2, + "stop": 1, + "Math.floor": 9, + "Math.log10": 1, + "n/Math.pow": 1, + ".5": 26, + "<r?10:5:2:1,i*Math.pow(10,u)}function>": 1, + "e=": 3, + "o=": 3, + "beginPath": 2, + "moveTo": 1, + "lineTo": 4, + "quadraticCurveTo": 4, + "closePath": 1, + "stroke": 1, + "i=": 3, + "width=": 2, + "height=": 2, + "ii": 2, + "u=": 3, + "getContext": 2, + "2d": 2, + "ft": 1, + "fillStyle=": 1, + "rect": 1, + "0": 7, + "fill": 1, + "t=": 1, + "getImageData": 1, + "2": 5, + "3": 2, + "wt": 1, + "r=": 3, + "32": 1, + "62": 1, + "f=": 2, + "84": 1, + "s=": 2, + "94": 1, + "ar": 1, + "255": 3, + "max": 1, + "min": 1, + "u/": 3, + "/u": 3, + "f/": 1, + "vt": 1, + "n*6": 2, + "i*": 3, + "h*t": 1, + "*t": 1, + "f*255": 1, + "u*255": 1, + "r*255": 1, + "st": 1, + "n/255": 1, + "t/255": 1, + "i/255": 1, + "f/r": 1, + "/f": 3, + "<0?0:n>": 1, + "si": 1, + "ti": 2, + "Math.round": 3, + "/r": 1, + "u*r": 1, + "ni": 1, + "tt": 1, + "ei": 2, + "ot": 1, + "i.gaugeType": 2, + "steelseries.GaugeType.TYPE4": 1, + "i.size": 2, + "i.minValue": 2, + "i.maxValue": 2, + "bf": 1, + "i.niceScale": 2, + "i.threshold": 2, + "/2": 1, + "i.section": 2, + "i.area": 2, + "lu": 1, + "i.titleString": 1, + "preload": 5, + "sans": 45, + "serif": 52, + "type1": 42, + "type2": 28, + "type3": 11, + "type4": 9, + "gray": 7, + "#520000": 8, + "#fc1d00": 8, + "#FFFFFF": 8, + "center": 20, + "middle": 21, + "horizontal": 3, + "tangent": 3, + "normal": 3, + "fractional": 8, + "scientific": 8, + "standard": 8, + "type15": 7, + "type16": 5, + "type13": 7, + "up": 6, + "steady": 6, + "down": 6, + "#000000": 45, + "#333333": 12, + "#cccccc": 4, + "#111111": 1, + "#3c3c3c": 2, + "#323232": 6, + "type5": 6, + "west": 2, + "rgba": 164, + ".7": 1, + ".0": 1, + ".05": 5, + ".1": 5, + ".2": 2, + "#4c4c4c": 2, + "#666666": 16, + "#e6e6e6": 2, + "rgb": 243, + "u00b0": 11, + "u221e": 2, + "miter": 12, + "N": 2, + "NE": 2, + "E": 2, + "SE": 2, + "SW": 2, + "W": 2, + "NW": 2, + "#e3e5e8": 4, + "#abb1b8": 6, + "Latest": 1, + "Average": 1, + "bold": 1, + "#7fd5f0": 2, + "#3c4439": 2, + "#37596e": 1, + ".4": 14, + "#eef0f2": 1, + "#65696d": 1, + "#f3f4f7": 1, + "#f3f5f7": 1, + "#f1f3f5": 1, + "#c0c5cb": 1, + "#bec3c9": 2, + "#ffffff": 30, + "#7e7e7e": 1, + ".8": 4, + "#e6b35c": 4, + "#c48200": 4, + "#c5c5c5": 6, + "#707070": 4, + "#C48200": 1, + "#999999": 4, + "#202020": 7, + "#363636": 2, + "#373735": 1, + "#303030": 3, + "#010101": 10, + "#040404": 3, + ".25": 10, + ".12": 4, + "repeat": 9, + "#5e5e5e": 2, + "#fed434": 2, + "#82330c": 1, + ".13": 2, + "#ff0000": 2, + "#410004": 1, + "#ffff00": 1, + "#eeeeee": 1, + "butt": 2, + "round": 2, + "hsl": 4, + "#d9dad6": 1, + "#e4e5e0": 1, + "#979996": 1, + "#fbffff": 1, + "#818584": 1, + "#f5f7f4": 1, + "#959794": 1, + "#f2f2f0": 1, + "#828783": 1, + "#fcfcfc": 1, + ".32": 1, + ".33": 1, + "#050a06": 1, + "#070602": 1, + "#999288": 1, + ".45": 1, + "#f0f0f0": 2, + "#F0F0F0": 1, + "#F01010": 1, + "#050505": 1, + "#F8F8F8": 1, + "type6": 2, + "type7": 2, + "type8": 2, + "type9": 2, + "#2E2E2E": 1, + "type10": 2, + "type11": 2, + "type12": 2, + "type14": 2, + "#848484": 4, + "metal": 3, + "#fefefe": 2, + "brass": 6, + "steel": 3, + "gold": 3, + "anthracite": 3, + "tiltedGray": 3, + "tiltedBlack": 3, + "glossyMetal": 3, + "#f6f6f6": 2, + "blackMetal": 3, + "shinyMetal": 3, + "chrome": 3, + "destination": 2, + "#838383": 1, + "CARBON": 5, + "PUNCHED_SHEET": 5, + "BRUSHED_METAL": 7, + "BRUSHED_STAINLESS": 5, + "STAINLESS": 4, + "TURNED": 6, + "#FDFDFD": 14, + "#B2B2B4": 4, + "#ACACAE": 4, + "#6E6E70": 8, + ".03": 2, + ".07": 2, + ".15": 3, + ".3": 5, + ".275": 5, + ".015": 5, + ".013546": 1, + ".082217": 1, + ".288702": 1, + ".298039": 1, + ".119213": 1, + "metalKnob": 2, + "black": 3, + "silver": 3, + ".6": 1, + ".749019": 1, + "standardKnob": 2, + "#5c5c5c": 4, + "#282828": 1, + "#353535": 1, + "#2d2d2d": 1, + "#1D2123": 1, + "#444444": 2, + "#050506": 2, + "DARK_GRAY": 1, + "SATIN_GRAY": 1, + "LIGHT_GRAY": 1, + "WHITE": 1, + "BLACK": 1, + "BEIGE": 1, + "BROWN": 1, + "RED": 1, + "GREEN": 1, + "BLUE": 1, + "ANTHRACITE": 1, + "MUD": 1, + "#c8c8b1": 1, + "#124564": 1, + "#503700": 1, + "#4f0c0e": 1, + "#405300": 1, + "#414141": 3, + "#b2b4ed": 1, + "#080C06": 1, + "#002cbb": 1, + "#FE8B92": 1, + "#3DB3FF": 1, + "#076148": 1, + "#B50026": 1, + "#233123": 1, + "#593A0A": 1, + "#090051": 1, + "#b2b2b2": 2, + "#c4c4c4": 2, + "#FF9A89": 2, + "#FF3300": 1, + "#FF8D70": 1, + "#7E1C00": 2, + "#641B00": 1, + "#9AFF89": 2, + "#59FF2A": 1, + "#A5FF00": 1, + "#1C7E00": 2, + "#1B6400": 1, + "#899AFF": 2, + "#0033FF": 1, + "#708DFF": 1, + "#001C7E": 2, + "#001B64": 1, + "#FEA23F": 2, + "#FD6C00": 2, + "#592800": 2, + "#421F00": 1, + "#FFFF62": 2, + "#FFFF00": 2, + "#6B6D00": 2, + "#515300": 1, + "#00FFFF": 3, + "#1BC3C3": 1, + "#083B3B": 2, + "#052727": 1, + "#D300FF": 2, + "#8600CB": 1, + "#C300FF": 1, + "#38004B": 2, + "#280035": 1, + "north": 1, + "south": 1, + "east": 1, + "Radial": 1, + "RadialBargraph": 1, + "wi": 1, + "RadialVertical": 1, + "bi": 1, + "Linear": 1, + "yi": 1, + "LinearBargraph": 1, + "kr": 1, + "DisplaySingle": 1, + "dr": 1, + "DisplayMulti": 1, + "wr": 1, + "Level": 1, + "br": 1, + "Compass": 1, + "gr": 1, + "WindDirection": 1, + "iu": 1, + "Horizon": 1, + "ru": 1, + "Led": 1, + "nu": 1, + "Clock": 1, + "tu": 1, + "Battery": 1, + "hr": 1, + "StopWatch": 1, + "cr": 1, + "Altimeter": 1, + "sr": 1, + "TrafficLight": 1, + "lr": 1, + "LightBulb": 1, + "yr": 1, + "Odometer": 1, + "pr": 1, + "drawFrame": 1, + "drawBackground": 1, + "drawForeground": 1, + "rgbaColor": 1, + "ConicalGradient": 1, + "it": 1, + "setAlpha": 1, + "getColorFromFraction": 1, + "gradientWrapper": 1, + "kt": 1, + "BackgroundColor": 1, + "di": 1, + "LcdColor": 1, + "ki": 1, + "ColorDef": 1, + "pi": 1, + "LedColor": 1, + "gi": 1, + "GaugeType": 1, + "ai": 1, + "Orientation": 1, + "ur": 1, + "FrameDesign": 1, + "fr": 1, + "PointerType": 1, + "er": 1, + "ForegroundType": 1, + "rr": 1, + "KnobType": 1, + "fi": 1, + "KnobStyle": 1, + "oi": 1, + "LabelNumberFormat": 1, + "nr": 1, + "TickLabelOrientation": 1, + "TrendState": 1, + "ir": 1, + "Section": 1, + "KEYWORDS": 2, + "array_to_hash": 11, + "RESERVED_WORDS": 2, + "KEYWORDS_BEFORE_EXPRESSION": 1, + "KEYWORDS_ATOM": 2, + "OPERATOR_CHARS": 1, + "characters": 5, + "RE_HEX_NUMBER": 1, + "/i": 2, + "RE_OCT_NUMBER": 1, + "RE_DEC_NUMBER": 1, + "OPERATORS": 2, + "WHITESPACE_CHARS": 1, + "PUNC_BEFORE_EXPRESSION": 1, + "PUNC_CHARS": 1, + "REGEXP_MODIFIERS": 1, + "UNICODE": 1, + "non_spacing_mark": 1, + "space_combining_mark": 1, + "connector_punctuation": 1, + "is_letter": 3, + "UNICODE.letter.test": 1, + "is_digit": 3, + "ch.charCodeAt": 1, + "//XXX": 1, + "means": 1, + "something": 1, + "than": 1, + "..9": 1, + "is_alphanumeric_char": 2, + "is_unicode_combining_mark": 2, + "UNICODE.non_spacing_mark.test": 1, + "UNICODE.space_combining_mark.test": 1, + "is_unicode_connector_punctuation": 2, + "UNICODE.connector_punctuation.test": 1, + "is_identifier_start": 2, + "is_identifier_char": 1, + "parse_js_number": 1, + "RE_HEX_NUMBER.test": 1, + "num.substr": 2, + "RE_OCT_NUMBER.test": 1, + "RE_DEC_NUMBER.test": 1, + "parseFloat": 1, + "JS_Parse_Error": 2, + "message": 5, + "col": 4, + "this.col": 2, + "this.pos": 2, + "ex": 3, + "ex.name": 1, + "this.stack": 2, + "ex.stack": 1, + "JS_Parse_Error.prototype.toString": 1, + "js_error": 1, + "is_token": 1, + "token": 1, + "token.type": 1, + "token.value": 1, + "EX_EOF": 1, + "tokenizer": 2, + "TEXT": 1, + "TEXT.replace": 1, + "uFEFF/": 1, + "outside": 1, + "punc": 20, + "const": 2, + "label": 1, + "stat": 1, + "Label": 1, + "without": 1, + "matching": 1, + "loop": 2, + "statement": 1, + "inside": 1, + "keyword": 8, + "operator": 10, + "defun": 1, + "eof": 3, + "Name": 1, + "finally": 1, + "Missing": 1, + "catch/finally": 1, + "blocks": 1, + "unary": 2, + "prefix": 1, + "atom": 2, + "dot": 2, + "sub": 2, + "call": 2, + "postfix": 1, + "use": 1, + "binary": 1, + "conditional": 1, + "assign": 1, + "assignment": 1, + "seq": 1, + "toplevel": 1, + "member": 2, + "array.length": 1, + "HOP": 1, + "Object.prototype.hasOwnProperty.call": 1, + "warn": 2, + "exports.tokenizer": 1, + "exports.parse": 1, + "parse": 1, + "exports.slice": 1, + "exports.curry": 1, + "curry": 1, + "exports.member": 1, + "exports.array_to_hash": 1, + "exports.PRECEDENCE": 1, + "PRECEDENCE": 1, + "exports.KEYWORDS_ATOM": 1, + "exports.RESERVED_WORDS": 1, + "exports.KEYWORDS": 1, + "exports.ATOMIC_START_TOKEN": 1, + "ATOMIC_START_TOKEN": 1, + "exports.OPERATORS": 1, + "exports.is_alphanumeric_char": 1, + "exports.set_logger": 1, + "logger": 2 + }, + "Julia": { + "##": 5, + "Test": 1, + "case": 1, + "from": 1, + "Issue": 1, + "#445": 1, + "#STOCKCORR": 1, + "-": 10, + "The": 1, + "original": 1, + "unoptimised": 1, + "code": 1, + "that": 1, + "simulates": 1, + "two": 1, + "correlated": 1, + "assets": 1, + "function": 1, + "stockcorr": 1, + "(": 12, + ")": 12, + "Correlated": 1, + "asset": 1, + "information": 1, + "CurrentPrice": 3, + ".": 4, + "#": 11, + "Corr": 2, + ".4": 2, + ";": 1, + "T": 5, + "n": 4, + "dt": 3, + "/250": 1, + "Div": 3, + ".01": 2, + "Vol": 5, + ".2": 1, + ".3": 1, + "Market": 1, + "Information": 1, + "r": 3, + ".03": 1, + "Define": 1, + "storages": 1, + "SimulPriceA": 5, + "zeros": 2, + "SimulPriceB": 5, + "Generating": 1, + "the": 1, + "paths": 1, + "of": 1, + "stock": 1, + "prices": 1, + "by": 1, + "Geometric": 1, + "Brownian": 1, + "Motion": 1, + "UpperTriangle": 1, + "chol": 1, + "for": 2, + "i": 5, + "Wiener": 1, + "randn": 1, + "CorrWiener": 1, + "Wiener*UpperTriangle": 1, + "j": 7, + "*exp": 2, + "/2": 2, + "*dt": 2, + "+": 2, + "*sqrt": 2, + "*CorrWiener": 2, + "end": 3, + "return": 1 + }, + "Kotlin": { + "package": 1, + "addressbook": 1, + "class": 5, + "Contact": 1, + "(": 15, + "val": 16, + "name": 2, + "String": 7, + "emails": 1, + "List": 3, + "<EmailAddress>": 1, + "addresses": 1, + "<PostalAddress>": 1, + "phonenums": 1, + "<PhoneNumber>": 1, + ")": 15, + "EmailAddress": 1, + "user": 1, + "host": 1, + "PostalAddress": 1, + "streetAddress": 1, + "city": 1, + "zip": 1, + "state": 2, + "USState": 1, + "country": 3, + "Country": 7, + "{": 6, + "assert": 1, + "null": 3, + "xor": 1, + "Countries": 2, + "}": 6, + "PhoneNumber": 1, + "areaCode": 1, + "Int": 1, + "number": 1, + "Long": 1, + "object": 1, + "fun": 1, + "get": 2, + "id": 2, + "CountryID": 1, + "countryTable": 2, + "private": 2, + "var": 1, + "table": 5, + "Map": 2, + "<String,>": 2, + "if": 1, + "HashMap": 1, + "for": 1, + "line": 3, + "in": 1, + "TextFile": 1, + ".lines": 1, + "stripWhiteSpace": 1, + "true": 1, + "return": 1 + }, + "Logtalk": { + "%": 3, + "-": 3, + "object": 1, + "(": 4, + "hello_world": 1, + ")": 4, + ".": 2, + "initialization": 1, + "nl": 2, + "write": 1, + "end_object.": 1 + }, + "Markdown": { + "Tender": 1 + }, + "Matlab": { + "function": 9, + "y": 2, + "average": 1, + "(": 50, + "x": 4, + ")": 50, + "%": 31, + "m": 3, + "n": 3, + "size": 2, + ";": 24, + "if": 1, + "|": 2, + "&": 1, + "error": 1, + "end": 17, + "sum": 1, + "/length": 1, + "filtfcn": 2, + "statefcn": 2, + "makeFilter": 1, + "b": 6, + "a": 4, + "v": 10, + "zeros": 1, + "@iirFilter": 1, + "@getState": 1, + "yn": 2, + "iirFilter": 1, + "xn": 4, + "+": 3, + "*": 5, + "-": 5, + "...": 3, + "vOut": 2, + "getState": 1, + "classdef": 1, + "matlab_class": 2, + "properties": 1, + "R": 1, + "G": 1, + "B": 3, + "methods": 1, + "obj": 2, + "r": 2, + "g": 2, + "obj.R": 2, + "obj.G": 2, + "obj.B": 2, + "disp": 8, + "num2str": 3, + "enumeration": 1, + "red": 1, + "green": 1, + "blue": 1, + "cyan": 1, + "magenta": 1, + "yellow": 1, + "black": 1, + "white": 1, + "ret": 3, + "matlab_function": 5, + "A": 2, + "Call": 2, + "which": 2, + "resides": 2, + "in": 2, + "the": 2, + "same": 2, + "directory": 2, + "value1": 4, + "value2": 4, + "result": 4 + }, + "Nemerle": { + "using": 1, + "System.Console": 1, + ";": 2, + "module": 1, + "Program": 1, + "{": 2, + "Main": 1, + "(": 2, + ")": 2, + "void": 1, + "WriteLine": 1, + "}": 2 + }, + "Nimrod": { + "#": 1, + "echo": 1 + }, + "Nu": { + "#": 1, + "/usr/bin/env": 1, + "nush": 1, + "(": 1, + "puts": 1, + ")": 1 + }, + "OCaml": { + "(*": 2, + "*)": 2, + "type": 2, + "a": 3, + "-": 21, + "unit": 4, + ")": 9, + "module": 4, + "Ops": 2, + "struct": 4, + "let": 9, + "(": 7, + "@": 6, + "f": 10, + "k": 21, + "|": 15, + "x": 14, + "end": 4, + "open": 1, + "List": 1, + "rec": 3, + "map": 3, + "l": 8, + "match": 4, + "with": 4, + "hd": 6, + "tl": 6, + "fun": 8, + "fold": 2, + "acc": 5, + "Option": 1, + "opt": 2, + "None": 5, + "Some": 5, + "Lazy": 1, + "option": 1, + ";": 12, + "mutable": 1, + "waiters": 5, + "}": 3, + "make": 1, + "push": 4, + "cps": 7, + "{": 1, + "value": 3, + "force": 1, + "l.value": 2, + "when": 1, + "l.waiters": 5, + "<->": 3, + "function": 1, + "Base.List.iter": 1, + "l.push": 1, + "<": 1, + "get_state": 1, + "lazy_from_val": 1, + "_": 1 + }, + "Objective-C": { + "//": 771, + "#import": 53, + "<Foundation/Foundation.h>": 4, + "#if": 61, + "TARGET_OS_IPHONE": 11, + "<CFNetwork/CFNetwork.h>": 1, + "__IPHONE_OS_VERSION_MAX_ALLOWED": 5, + "__IPHONE_4_0": 7, + "<UIKit/UIKit.h>": 1, + "#endif": 79, + "<stdio.h>": 2, + "@class": 4, + "ASIDataDecompressor": 4, + ";": 2583, + "extern": 5, + "NSString": 184, + "*ASIHTTPRequestVersion": 2, + "#ifndef": 9, + "__IPHONE_3_2": 2, + "#define": 65, + "__MAC_10_5": 2, + "__MAC_10_6": 2, + "typedef": 47, + "enum": 17, + "_ASIAuthenticationState": 1, + "{": 791, + "ASINoAuthenticationNeededYet": 3, + "ASIHTTPAuthenticationNeeded": 2, + "ASIProxyAuthenticationNeeded": 2, + "}": 790, + "ASIAuthenticationState": 4, + "_ASINetworkErrorType": 1, + "ASIConnectionFailureErrorType": 1, + "ASIRequestTimedOutErrorType": 2, + "ASIAuthenticationErrorType": 3, + "ASIRequestCancelledErrorType": 2, + "ASIUnableToCreateRequestErrorType": 2, + "ASIInternalErrorWhileBuildingRequestType": 3, + "ASIInternalErrorWhileApplyingCredentialsType": 1, + "ASIFileManagementError": 3, + "ASITooMuchRedirectionErrorType": 3, + "ASIUnhandledExceptionError": 3, + "ASICompressionError": 1, + "ASINetworkErrorType": 1, + "NSString*": 13, + "const": 31, + "NetworkRequestErrorDomain": 13, + "unsigned": 71, + "long": 85, + "ASIWWANBandwidthThrottleAmount": 2, + "NS_BLOCKS_AVAILABLE": 19, + "void": 293, + "(": 2574, + "ASIBasicBlock": 23, + ")": 2572, + "ASIHeadersBlock": 4, + "NSDictionary": 46, + "*responseHeaders": 3, + "ASISizeBlock": 7, + "size": 11, + "ASIProgressBlock": 7, + "total": 3, + "ASIDataBlock": 4, + "NSData": 42, + "*data": 2, + "@interface": 23, + "ASIHTTPRequest": 42, + "NSOperation": 1, + "<NSCopying>": 1, + "NSURL": 23, + "*url": 2, + "*originalURL": 2, + "*redirectURL": 2, + "id": 190, + "<ASIHTTPRequestDelegate>": 1, + "delegate": 67, + "<ASIHTTPRequestDelegate,>": 1, + "ASIProgressDelegate": 1, + "queue": 29, + "*requestMethod": 2, + "NSMutableData": 8, + "*postBody": 2, + "*compressedPostBody": 2, + "BOOL": 153, + "shouldStreamPostDataFromDisk": 7, + "*postBodyFilePath": 2, + "*compressedPostBodyFilePath": 2, + "didCreateTemporaryPostDataFile": 4, + "NSOutputStream": 7, + "*postBodyWriteStream": 2, + "NSInputStream": 9, + "*postBodyReadStream": 2, + "NSMutableDictionary": 29, + "*requestHeaders": 2, + "haveBuiltRequestHeaders": 4, + "NSMutableArray": 31, + "*requestCookies": 2, + "NSArray": 34, + "*responseCookies": 3, + "useCookiePersistence": 6, + "useKeychainPersistence": 6, + "useSessionPersistence": 9, + "allowCompressedResponse": 6, + "shouldCompressRequestBody": 7, + "*downloadDestinationPath": 2, + "*temporaryFileDownloadPath": 2, + "*temporaryUncompressedDataDownloadPath": 2, + "*fileDownloadOutputStream": 2, + "*inflatedFileDownloadOutputStream": 2, + "complete": 10, + "finished": 4, + "cancelled": 6, + "NSError": 67, + "*error": 4, + "*username": 2, + "*password": 2, + "*userAgentString": 2, + "*domain": 2, + "*proxyUsername": 2, + "*proxyPassword": 2, + "*proxyDomain": 2, + "<ASIProgressDelegate>": 2, + "uploadProgressDelegate": 9, + "downloadProgressDelegate": 5, + "haveExaminedHeaders": 1, + "*rawResponseData": 2, + "CFHTTPMessageRef": 3, + "request": 71, + "*readStream": 2, + "CFHTTPAuthenticationRef": 4, + "requestAuthentication": 10, + "*requestCredentials": 2, + "int": 63, + "authenticationRetryCount": 5, + "*authenticationScheme": 2, + "*authenticationRealm": 3, + "shouldPresentAuthenticationDialog": 4, + "shouldPresentProxyAuthenticationDialog": 4, + "proxyAuthentication": 10, + "*proxyCredentials": 2, + "proxyAuthenticationRetryCount": 5, + "*proxyAuthenticationScheme": 2, + "*proxyAuthenticationRealm": 3, + "responseStatusCode": 7, + "*responseStatusMessage": 3, + "contentLength": 4, + "partialDownloadSize": 10, + "postLength": 16, + "totalBytesRead": 3, + "totalBytesSent": 16, + "lastBytesRead": 3, + "lastBytesSent": 8, + "NSRecursiveLock": 13, + "*cancelledLock": 2, + "SEL": 26, + "didStartSelector": 5, + "didReceiveResponseHeadersSelector": 5, + "willRedirectSelector": 5, + "didFinishSelector": 5, + "didFailSelector": 5, + "didReceiveDataSelector": 5, + "NSDate": 11, + "*lastActivityTime": 2, + "NSTimeInterval": 11, + "timeOutSeconds": 7, + "shouldResetUploadProgress": 4, + "shouldResetDownloadProgress": 7, + "*mainRequest": 2, + "showAccurateProgress": 8, + "updatedProgress": 3, + "haveBuiltPostBody": 4, + "uploadBufferSize": 9, + "NSStringEncoding": 6, + "defaultResponseEncoding": 4, + "responseEncoding": 4, + "allowResumeForFileDownloads": 5, + "*userInfo": 2, + "NSInteger": 56, + "tag": 3, + "useHTTPVersionOne": 5, + "shouldRedirect": 4, + "needsRedirect": 3, + "redirectCount": 6, + "validatesSecureCertificate": 5, + "SecIdentityRef": 2, + "clientCertificateIdentity": 6, + "*clientCertificates": 2, + "*proxyHost": 2, + "proxyPort": 9, + "*proxyType": 2, + "*PACurl": 2, + "authenticationNeeded": 6, + "shouldPresentCredentialsBeforeChallenge": 5, + "inProgress": 7, + "readStreamIsScheduled": 4, + "numberOfTimesToRetryOnTimeout": 5, + "retryCount": 6, + "willRetryRequest": 4, + "shouldAttemptPersistentConnection": 6, + "persistentConnectionTimeoutSeconds": 7, + "connectionCanBeReused": 5, + "*connectionInfo": 2, + "shouldUseRFC2616RedirectBehaviour": 5, + "downloadComplete": 3, + "NSNumber": 15, + "*requestID": 3, + "*runLoopMode": 2, + "NSTimer": 5, + "*statusTimer": 2, + "<ASICacheDelegate>": 9, + "downloadCache": 12, + "ASICachePolicy": 4, + "cachePolicy": 6, + "ASICacheStoragePolicy": 2, + "cacheStoragePolicy": 3, + "didUseCachedResponse": 4, + "secondsToCache": 4, + "&&": 167, + "shouldContinueWhenAppEntersBackground": 4, + "UIBackgroundTaskIdentifier": 1, + "backgroundTask": 7, + "*dataDecompressor": 2, + "shouldWaitToInflateCompressedResponses": 4, + "isPACFileRequest": 5, + "*PACFileRequest": 2, + "*PACFileReadStream": 2, + "*PACFileData": 2, + "isSynchronous": 3, + "//block": 12, + "to": 72, + "execute": 4, + "when": 8, + "starts": 1, + "startedBlock": 9, + "headers": 7, + "are": 4, + "received": 5, + "headersReceivedBlock": 9, + "completes": 1, + "successfully": 1, + "completionBlock": 9, + "fails": 1, + "failureBlock": 9, + "for": 52, + "bytes": 9, + "bytesReceivedBlock": 7, + "sent": 1, + "bytesSentBlock": 13, + "download": 2, + "is": 25, + "incremented": 2, + "downloadSizeIncrementedBlock": 10, + "upload": 1, + "uploadSizeIncrementedBlock": 10, + "handling": 4, + "raw": 1, + "dataReceivedBlock": 9, + "authentication": 9, + "authenticationNeededBlock": 7, + "proxy": 4, + "proxyAuthenticationNeededBlock": 7, + "redirections": 1, + "if": 412, + "you": 1, + "want": 2, + "requestRedirectedBlock": 9, + "#pragma": 52, + "mark": 50, + "init": 37, + "/": 16, + "dealloc": 15, + "-": 721, + "initWithURL": 4, + "*": 355, + "newURL": 21, + "+": 211, + "requestWithURL": 8, + "usingCache": 5, + "cache": 8, + "andCachePolicy": 3, + "policy": 3, + "setStartedBlock": 2, + "aStartedBlock": 3, + "setHeadersReceivedBlock": 2, + "aReceivedBlock": 6, + "setCompletionBlock": 2, + "aCompletionBlock": 3, + "setFailedBlock": 2, + "aFailedBlock": 3, + "setBytesReceivedBlock": 2, + "aBytesReceivedBlock": 3, + "setBytesSentBlock": 2, + "aBytesSentBlock": 3, + "setDownloadSizeIncrementedBlock": 2, + "aDownloadSizeIncrementedBlock": 3, + "setUploadSizeIncrementedBlock": 2, + "anUploadSizeIncrementedBlock": 3, + "setDataReceivedBlock": 2, + "setAuthenticationNeededBlock": 2, + "anAuthenticationBlock": 3, + "setProxyAuthenticationNeededBlock": 2, + "aProxyAuthenticationBlock": 3, + "setRequestRedirectedBlock": 2, + "aRedirectBlock": 3, + "setup": 2, + "addRequestHeader": 11, + "header": 12, + "value": 28, + "applyCookieHeader": 4, + "buildRequestHeaders": 4, + "applyAuthorizationHeader": 3, + "buildPostBody": 3, + "appendPostData": 2, + "data": 17, + "appendPostDataFromFile": 2, + "file": 6, + "get": 8, + "information": 4, + "about": 2, + "this": 6, + "responseString": 2, + "responseData": 3, + "isResponseCompressed": 3, + "running": 2, + "a": 33, + "startSynchronous": 2, + "startAsynchronous": 2, + "clearDelegatesAndCancel": 2, + "HEAD": 3, + "HEADRequest": 2, + "upload/download": 2, + "progress": 6, + "updateProgressIndicators": 3, + "updateUploadProgress": 1, + "updateDownloadProgress": 1, + "removeUploadProgressSoFar": 3, + "incrementDownloadSizeBy": 7, + "length": 39, + "incrementUploadSizeBy": 7, + "updateProgressIndicator": 5, + "indicator": 3, + "withProgress": 6, + "ofTotal": 6, + "performSelector": 26, + "selector": 52, + "onTarget": 14, + "target": 6, + "withObject": 40, + "object": 51, + "amount": 15, + "callerToRetain": 16, + "caller": 1, + "talking": 2, + "delegates": 2, + "requestStarted": 6, + "requestReceivedResponseHeaders": 3, + "newHeaders": 1, + "requestFinished": 5, + "failWithError": 14, + "theError": 8, + "retryUsingNewConnection": 1, + "redirectToURL": 2, + "parsing": 2, + "HTTP": 2, + "response": 5, + "readResponseHeaders": 2, + "parseStringEncodingFromHeaders": 3, + "parseMimeType": 2, + "**": 41, + "mimeType": 2, + "andResponseEncoding": 2, + "stringEncoding": 1, + "fromContentType": 2, + "contentType": 1, + "http": 3, + "stuff": 1, + "applyCredentials": 2, + "newCredentials": 26, + "applyProxyCredentials": 2, + "findCredentials": 1, + "findProxyCredentials": 2, + "retryUsingSuppliedCredentials": 1, + "cancelAuthentication": 1, + "attemptToApplyCredentialsAndResume": 1, + "attemptToApplyProxyCredentialsAndResume": 1, + "showProxyAuthenticationDialog": 1, + "showAuthenticationDialog": 1, + "addBasicAuthenticationHeaderWithUsername": 3, + "theUsername": 1, + "andPassword": 3, + "thePassword": 1, + "stream": 8, + "status": 1, + "handlers": 1, + "handleNetworkEvent": 2, + "CFStreamEventType": 2, + "type": 5, + "handleBytesAvailable": 1, + "handleStreamComplete": 1, + "handleStreamError": 1, + "cleanup": 1, + "markAsFinished": 4, + "removeTemporaryDownloadFile": 2, + "removeTemporaryUncompressedDownloadFile": 2, + "removeTemporaryUploadFile": 2, + "removeTemporaryCompressedUploadFile": 2, + "removeFileAtPath": 1, + "path": 9, + "error": 145, + "err": 10, + "persistent": 1, + "connections": 1, + "connectionID": 1, + "expirePersistentConnections": 2, + "default": 2, + "time": 1, + "out": 1, + "defaultTimeOutSeconds": 3, + "setDefaultTimeOutSeconds": 1, + "newTimeOutSeconds": 1, + "client": 1, + "certificate": 2, + "setClientCertificateIdentity": 2, + "anIdentity": 1, + "session": 4, + "credentials": 45, + "sessionProxyCredentialsStore": 1, + "sessionCredentialsStore": 1, + "storeProxyAuthenticationCredentialsInSessionStore": 2, + "storeAuthenticationCredentialsInSessionStore": 3, + "removeProxyAuthenticationCredentialsFromSessionStore": 3, + "removeAuthenticationCredentialsFromSessionStore": 3, + "findSessionProxyAuthenticationCredentials": 2, + "findSessionAuthenticationCredentials": 2, + "keychain": 4, + "storage": 1, + "saveCredentialsToKeychain": 3, + "saveCredentials": 4, + "NSURLCredential": 9, + "forHost": 2, + "host": 9, + "port": 17, + "protocol": 10, + "realm": 15, + "forProxy": 2, + "savedCredentialsForHost": 1, + "savedCredentialsForProxy": 2, + "removeCredentialsForHost": 1, + "removeCredentialsForProxy": 1, + "setSessionCookies": 1, + "newSessionCookies": 1, + "sessionCookies": 1, + "addSessionCookie": 2, + "NSHTTPCookie": 4, + "newCookie": 1, + "clearSession": 1, + "user": 9, + "agent": 2, + "defaultUserAgentString": 2, + "setDefaultUserAgentString": 1, + "mime": 1, + "detection": 1, + "mimeTypeForFileAtPath": 1, + "bandwidth": 2, + "measurement": 2, + "throttling": 1, + "maxBandwidthPerSecond": 2, + "setMaxBandwidthPerSecond": 1, + "averageBandwidthUsedPerSecond": 2, + "performThrottling": 2, + "isBandwidthThrottled": 2, + "incrementBandwidthUsedInLastSecond": 2, + "setShouldThrottleBandwidthForWWAN": 1, + "throttle": 1, + "throttleBandwidthForWWANUsingLimit": 1, + "limit": 1, + "reachability": 1, + "isNetworkReachableViaWWAN": 1, + "NSOperationQueue": 3, + "sharedQueue": 4, + "setDefaultCache": 1, + "defaultCache": 3, + "maxUploadReadLength": 1, + "network": 1, + "activity": 1, + "isNetworkInUse": 1, + "setShouldUpdateNetworkActivityIndicator": 1, + "shouldUpdate": 1, + "showNetworkActivityIndicator": 1, + "hideNetworkActivityIndicator": 1, + "miscellany": 1, + "base64forData": 1, + "theData": 1, + "expiryDateForRequest": 1, + "maxAge": 3, + "dateFromRFC1123String": 1, + "string": 11, + "isMultitaskingSupported": 2, + "threading": 1, + "behaviour": 1, + "NSThread": 10, + "threadForRequest": 4, + "@property": 150, + "retain": 71, + "assign": 84, + "setter": 2, + "setURL": 4, + "nonatomic": 40, + "readonly": 19, + "@end": 45, + "<MobileCoreServices/MobileCoreServices.h>": 1, + "#else": 8, + "<SystemConfiguration/SystemConfiguration.h>": 1, + "@": 331, + "static": 104, + "*defaultUserAgent": 1, + "nil": 150, + "*ASIHTTPRequestRunLoopMode": 1, + "CFOptionFlags": 1, + "kNetworkEvents": 1, + "kCFStreamEventHasBytesAvailable": 1, + "|": 34, + "kCFStreamEventEndEncountered": 1, + "kCFStreamEventErrorOccurred": 1, + "*sessionCredentialsStore": 1, + "*sessionProxyCredentialsStore": 1, + "*sessionCredentialsLock": 1, + "*sessionCookies": 1, + "RedirectionLimit": 2, + "ReadStreamClientCallBack": 1, + "CFReadStreamRef": 9, + "readStream": 11, + "*clientCallBackInfo": 1, + "ASIHTTPRequest*": 1, + "clientCallBackInfo": 1, + "*progressLock": 1, + "*ASIRequestCancelledError": 1, + "*ASIRequestTimedOutError": 1, + "*ASIAuthenticationError": 1, + "*ASIUnableToCreateRequestError": 1, + "*ASITooMuchRedirectionError": 1, + "*bandwidthUsageTracker": 1, + "nextConnectionNumberToCreate": 1, + "*persistentConnectionsPool": 1, + "*connectionsLock": 1, + "nextRequestID": 1, + "bandwidthUsedInLastSecond": 1, + "*bandwidthMeasurementDate": 1, + "NSLock": 2, + "*bandwidthThrottlingLock": 1, + "NO": 43, + "shouldThrottleBandwidthForWWANOnly": 1, + "*sessionCookiesLock": 1, + "*delegateAuthenticationLock": 1, + "*throttleWakeUpTime": 1, + "runningRequestCount": 1, + "shouldUpdateNetworkActivityIndicator": 1, + "YES": 56, + "*networkThread": 1, + "*sharedQueue": 1, + "cancelLoad": 5, + "destroyReadStream": 4, + "scheduleReadStream": 1, + "unscheduleReadStream": 2, + "willAskDelegateForCredentials": 1, + "willAskDelegateForProxyCredentials": 1, + "askDelegateForProxyCredentials": 1, + "askDelegateForCredentials": 1, + "failAuthentication": 1, + "measureBandwidthUsage": 1, + "recordBandwidthUsage": 1, + "startRequest": 4, + "updateStatus": 3, + "timer": 5, + "checkRequestStatus": 3, + "reportFailure": 4, + "reportFinished": 4, + "performRedirect": 3, + "shouldTimeOut": 3, + "willRedirect": 3, + "willAskDelegateToConfirmRedirect": 1, + "performInvocation": 3, + "NSInvocation": 6, + "invocation": 7, + "releasingObject": 3, + "objectToRelease": 2, + "hideNetworkActivityIndicatorAfterDelay": 1, + "hideNetworkActivityIndicatorIfNeeeded": 1, + "runRequests": 1, + "configureProxies": 2, + "fetchPACFile": 1, + "finishedDownloadingPACFile": 1, + "theRequest": 12, + "runPACScript": 1, + "script": 1, + "timeOutPACRead": 1, + "useDataFromCache": 4, + "updatePartialDownloadSize": 4, + "registerForNetworkReachabilityNotifications": 1, + "unsubscribeFromNetworkReachabilityNotifications": 1, + "reachabilityChanged": 1, + "NSNotification": 2, + "note": 1, + "performBlockOnMainThread": 6, + "block": 48, + "releaseBlocksOnMainThread": 4, + "releaseBlocks": 3, + "blocks": 17, + "callBlock": 3, + "setSynchronous": 2, + "@implementation": 18, + "initialize": 1, + "self": 848, + "class": 47, + "persistentConnectionsPool": 3, + "alloc": 51, + "connectionsLock": 4, + "progressLock": 3, + "bandwidthThrottlingLock": 1, + "sessionCookiesLock": 1, + "sessionCredentialsLock": 1, + "delegateAuthenticationLock": 1, + "bandwidthUsageTracker": 1, + "initWithCapacity": 2, + "ASIRequestTimedOutError": 2, + "initWithDomain": 5, + "code": 14, + "userInfo": 16, + "dictionaryWithObjectsAndKeys": 12, + "NSLocalizedDescriptionKey": 11, + "ASIAuthenticationError": 1, + "ASIRequestCancelledError": 3, + "ASIUnableToCreateRequestError": 3, + "ASITooMuchRedirectionError": 2, + "setMaxConcurrentOperationCount": 1, + "setRequestMethod": 5, + "setRunLoopMode": 2, + "NSDefaultRunLoopMode": 1, + "setShouldAttemptPersistentConnection": 4, + "setPersistentConnectionTimeoutSeconds": 3, + ".0": 7, + "setShouldPresentCredentialsBeforeChallenge": 2, + "setShouldRedirect": 1, + "setShowAccurateProgress": 3, + "setShouldResetDownloadProgress": 1, + "setShouldResetUploadProgress": 1, + "setAllowCompressedResponse": 2, + "setShouldWaitToInflateCompressedResponses": 1, + "setDefaultResponseEncoding": 1, + "NSISOLatin1StringEncoding": 1, + "setShouldPresentProxyAuthenticationDialog": 2, + "setTimeOutSeconds": 2, + "setUseSessionPersistence": 2, + "setUseCookiePersistence": 2, + "setValidatesSecureCertificate": 2, + "setRequestCookies": 3, + "autorelease": 32, + "setDidStartSelector": 1, + "@selector": 53, + "setDidReceiveResponseHeadersSelector": 1, + "didReceiveResponseHeaders": 3, + "setWillRedirectSelector": 1, + "willRedirectToURL": 3, + "setDidFinishSelector": 1, + "setDidFailSelector": 1, + "requestFailed": 3, + "setDidReceiveDataSelector": 1, + "didReceiveData": 1, + "setCancelledLock": 1, + "setDownloadCache": 3, + "return": 209, + "ASIUseDefaultCachePolicy": 1, + "*request": 1, + "setCachePolicy": 2, + "setAuthenticationNeeded": 4, + "CFRelease": 23, + "redirectURL": 3, + "release": 79, + "statusTimer": 9, + "invalidate": 2, + "postBody": 12, + "compressedPostBody": 5, + "requestHeaders": 15, + "requestCookies": 6, + "downloadDestinationPath": 4, + "temporaryFileDownloadPath": 7, + "temporaryUncompressedDataDownloadPath": 2, + "fileDownloadOutputStream": 3, + "inflatedFileDownloadOutputStream": 3, + "username": 9, + "password": 12, + "domain": 3, + "authenticationRealm": 5, + "authenticationScheme": 7, + "requestCredentials": 2, + "proxyHost": 8, + "proxyType": 6, + "proxyUsername": 7, + "proxyPassword": 7, + "proxyDomain": 4, + "proxyAuthenticationRealm": 4, + "proxyAuthenticationScheme": 4, + "proxyCredentials": 2, + "url": 30, + "originalURL": 2, + "lastActivityTime": 4, + "responseCookies": 2, + "rawResponseData": 5, + "responseHeaders": 11, + "requestMethod": 14, + "cancelledLock": 33, + "postBodyFilePath": 11, + "compressedPostBodyFilePath": 8, + "postBodyWriteStream": 8, + "postBodyReadStream": 5, + "PACurl": 3, + "clientCertificates": 5, + "responseStatusMessage": 2, + "connectionInfo": 14, + "requestID": 3, + "dataDecompressor": 2, + "userAgentString": 3, + "super": 21, + "*blocks": 1, + "array": 83, + "addObject": 17, + "performSelectorOnMainThread": 8, + "waitUntilDone": 11, + "isMainThread": 8, + "setRequestHeaders": 3, + "dictionaryWithCapacity": 3, + "setObject": 23, + "forKey": 23, + "close": 8, + "setPostBodyWriteStream": 2, + "*path": 1, + "setCompressedPostBodyFilePath": 1, + "NSTemporaryDirectory": 2, + "stringByAppendingPathComponent": 2, + "NSProcessInfo": 2, + "processInfo": 2, + "globallyUniqueString": 2, + "*err": 4, + "ASIDataCompressor": 2, + "compressDataFromFile": 1, + "toFile": 1, + "&": 56, + "else": 62, + "setPostLength": 4, + "NSFileManager": 5, + "attributesOfItemAtPath": 2, + "fileSize": 2, + "errorWithDomain": 7, + "stringWithFormat": 7, + "NSUnderlyingErrorKey": 3, + "*compressedBody": 1, + "compressData": 1, + "setCompressedPostBody": 1, + "compressedBody": 1, + "isEqualToString": 20, + "||": 52, + "setHaveBuiltPostBody": 1, + "setupPostBody": 3, + "setPostBodyFilePath": 1, + "setDidCreateTemporaryPostDataFile": 2, + "initToFileAtPath": 1, + "append": 1, + "open": 2, + "setPostBody": 2, + "write": 2, + "maxLength": 3, + "appendData": 2, + "*stream": 1, + "initWithFileAtPath": 1, + "NSUInteger": 94, + "bytesRead": 5, + "while": 13, + "hasBytesAvailable": 1, + "char": 23, + "buffer": 8, + "*256": 1, + "read": 2, + "sizeof": 13, + "break": 16, + "dataWithBytes": 1, + "lock": 16, + "*m": 1, + "unlock": 20, + "m": 1, + "newRequestMethod": 3, + "*u": 1, + "u": 10, + "isEqual": 7, + "NULL": 221, + "setRedirectURL": 3, + "d": 8, + "setDelegate": 6, + "newDelegate": 2, + "q": 2, + "setQueue": 2, + "newQueue": 3, + "cancelOnRequestThread": 2, + "DEBUG_REQUEST_STATUS": 8, + "ASI_DEBUG_LOG": 19, + "isCancelled": 6, + "setComplete": 8, + "CFRetain": 5, + "willChangeValueForKey": 1, + "didChangeValueForKey": 1, + "cancel": 4, + "onThread": 3, + "setDownloadProgressDelegate": 1, + "setUploadProgressDelegate": 1, + "result": 4, + "initWithBytes": 1, + "encoding": 3, + "*encoding": 1, + "objectForKey": 41, + "rangeOfString": 1, + ".location": 1, + "NSNotFound": 1, + "uncompressData": 1, + "DEBUG_THROTTLING": 4, + "ASIHTTPRequestRunLoopMode": 1, + "setInProgress": 3, + "main": 6, + "NSRunLoop": 2, + "currentRunLoop": 2, + "runMode": 1, + "runLoopMode": 3, + "beforeDate": 1, + "distantFuture": 1, + "start": 1, + "addOperation": 1, + "concurrency": 1, + "isConcurrent": 1, + "isFinished": 3, + "isExecuting": 3, + "logic": 1, + "@try": 1, + "UIBackgroundTaskInvalid": 3, + "UIApplication": 2, + "sharedApplication": 2, + "beginBackgroundTaskWithExpirationHandler": 1, + "dispatch_async": 1, + "dispatch_get_main_queue": 1, + "endBackgroundTask": 1, + "setDidUseCachedResponse": 1, + "mainRequest": 23, + "CFHTTPMessageCreateRequest": 1, + "kCFAllocatorDefault": 4, + "CFStringRef": 6, + "CFURLRef": 1, + "kCFHTTPVersion1_0": 2, + "kCFHTTPVersion1_1": 1, + "//If": 3, + "generated": 1, + "by": 3, + "an": 4, + "ASINetworkQueue": 1, + "we": 11, + "need": 1, + "let": 1, + "the": 31, + "generate": 1, + "its": 7, + "first": 2, + "so": 2, + "can": 1, + "use": 9, + "them": 4, + "defaultCachePolicy": 1, + "canUseCachedDataForRequest": 3, + "ASIAskServerIfModifiedWhenStaleCachePolicy": 1, + "ASIAskServerIfModifiedCachePolicy": 1, + "*cachedHeaders": 1, + "cachedResponseHeadersForURL": 1, + "cachedHeaders": 3, + "*etag": 1, + "etag": 2, + "*lastModified": 1, + "lastModified": 2, + "*header": 3, + "in": 22, + "CFHTTPMessageSetHeaderFieldValue": 2, + "@catch": 1, + "NSException": 21, + "*exception": 1, + "*underlyingError": 1, + "exception": 3, + "name": 9, + "reason": 1, + "NSLocalizedFailureReasonErrorKey": 1, + "underlyingError": 1, + "@finally": 1, + "DEBUG_HTTP_AUTHENTICATION": 7, + "*credentials": 1, + "kCFHTTPAuthenticationSchemeBasic": 3, + "CFHTTPMessageApplyCredentialDictionary": 4, + "CFDictionaryRef": 2, + "setAuthenticationScheme": 1, + "*usernameAndPassword": 1, + "usernameAndPassword": 2, + "kCFHTTPAuthenticationUsername": 4, + "kCFHTTPAuthenticationPassword": 4, + "*cookies": 2, + "NSHTTPCookieStorage": 2, + "sharedHTTPCookieStorage": 2, + "cookiesForURL": 1, + "absoluteURL": 2, + "cookies": 6, + "addObjectsFromArray": 1, + "count": 104, + "*cookie": 2, + "*cookieHeader": 1, + "cookie": 7, + "cookieHeader": 6, + "setHaveBuiltRequestHeaders": 2, + "valueForKey": 5, + "*tempUserAgentString": 1, + "tempUserAgentString": 4, + "*fileManager": 2, + "fileManager": 4, + "fileExistsAtPath": 3, + "setPartialDownloadSize": 1, + "setDownloadComplete": 1, + "setTotalBytesRead": 1, + "setLastBytesRead": 1, + "setOriginalURL": 1, + "setLastBytesSent": 2, + "setContentLength": 2, + "setResponseHeaders": 2, + "setRawResponseData": 2, + "setReadStreamIsScheduled": 1, + "setPostBodyReadStream": 5, + "ASIInputStream": 4, + "inputStreamWithFileAtPath": 2, + "setReadStream": 3, + "NSMakeCollectable": 7, + "CFReadStreamCreateForStreamedHTTPRequest": 2, + "inputStreamWithData": 2, + "CFReadStreamCreateForHTTPRequest": 1, + "scheme": 6, + "lowercaseString": 3, + "*sslProperties": 2, + "initWithObjectsAndKeys": 1, + "numberWithBool": 3, + "kCFStreamSSLAllowsExpiredCertificates": 1, + "kCFStreamSSLAllowsAnyRoot": 1, + "kCFStreamSSLValidatesCertificateChain": 1, + "kCFNull": 1, + "kCFStreamSSLPeerName": 1, + "CFReadStreamSetProperty": 4, + "kCFStreamPropertySSLSettings": 2, + "CFTypeRef": 1, + "sslProperties": 4, + "*certificates": 1, + "arrayWithCapacity": 2, + "certificates": 3, + "cert": 2, + "kCFStreamSSLCertificates": 1, + "*hostKey": 1, + "*portKey": 1, + "setProxyType": 2, + "kCFProxyTypeHTTP": 1, + "kCFProxyTypeSOCKS": 2, + "hostKey": 4, + "kCFStreamPropertySOCKSProxyHost": 1, + "portKey": 4, + "kCFStreamPropertySOCKSProxyPort": 1, + "kCFStreamPropertyHTTPProxyHost": 1, + "kCFStreamPropertyHTTPProxyPort": 1, + "kCFStreamPropertyHTTPSProxyHost": 1, + "kCFStreamPropertyHTTPSProxyPort": 1, + "*proxyToUse": 1, + "numberWithInt": 2, + "kCFStreamPropertySOCKSProxy": 1, + "proxyToUse": 2, + "kCFStreamPropertyHTTPProxy": 1, + "setConnectionInfo": 3, + "*oldStream": 1, + "intValue": 4, + "timeIntervalSinceNow": 1, + "<": 62, + "DEBUG_PERSISTENT_CONNECTIONS": 4, + "removeObject": 2, + "//Some": 1, + "other": 1, + "reused": 1, + "connection": 9, + "already": 2, + "re": 2, + "connecting": 1, + "ll": 1, + "that": 5, + "was": 6, + "previously": 1, + "using": 3, + "there": 1, + "one": 1, + "oldStream": 4, + "streamSuccessfullyOpened": 1, + "setConnectionCanBeReused": 3, + "setLastActivityTime": 2, + "date": 4, + "setStatusTimer": 3, + "timerWithTimeInterval": 1, + ".25": 1, + "repeats": 1, + "addTimer": 1, + "forMode": 1, + "NSTimer*": 1, + "setNeedsRedirect": 2, + "setRedirectCount": 1, + "secondsSinceLastActivity": 3, + "timeIntervalSinceDate": 1, + "*1.5": 1, + "setRetryCount": 1, + "setTotalBytesSent": 1, + "CFReadStreamCopyProperty": 2, + "kCFStreamPropertyHTTPRequestBytesWrittenCount": 1, + "unsignedLongLongValue": 1, + "PACFileReadStream": 4, + "setPACFileReadStream": 1, + "setPACFileData": 1, + "PACFileRequest": 4, + "setPACFileRequest": 1, + "setFileDownloadOutputStream": 1, + "setInflatedFileDownloadOutputStream": 1, + "*headRequest": 1, + "headRequest": 31, + "mutableCopy": 6, + "setUseKeychainPersistence": 1, + "setUsername": 1, + "setPassword": 1, + "setDomain": 1, + "setProxyUsername": 1, + "setProxyPassword": 1, + "setProxyDomain": 1, + "setProxyHost": 1, + "setProxyPort": 1, + "setShouldPresentAuthenticationDialog": 1, + "setUseHTTPVersionOne": 1, + "setClientCertificates": 1, + "copy": 18, + "setPACurl": 1, + "setNumberOfTimesToRetryOnTimeout": 1, + "setShouldUseRFC2616RedirectBehaviour": 1, + "setMainRequest": 1, + "//Only": 1, + "update": 2, + "isn": 1, + "t": 4, + "until": 2, + "ve": 1, + "written": 1, + "will": 15, + "be": 9, + "of": 8, + "currently": 1, + "seems": 1, + "KB": 2, + "on": 5, + "both": 1, + "Leopard": 1, + "and": 13, + "iPhone": 2, + ".2.1": 1, + "setUploadBufferSize": 1, + "setUpdatedProgress": 1, + "didSendBytes": 4, + "totalSize": 4, + "progressToRemove": 4, + "*target": 2, + "respondsToSelector": 22, + "NSMethodSignature": 2, + "*signature": 1, + "signature": 2, + "methodSignatureForSelector": 2, + "*invocation": 1, + "invocationWithMethodSignature": 2, + "setSelector": 2, + "argumentNumber": 4, + "setArgument": 5, + "atIndex": 7, + "callback": 3, + "*cbSignature": 1, + "*cbInvocation": 1, + "cbSignature": 1, + "cbInvocation": 6, + "setTarget": 1, + "invoke": 1, + "(*": 2, + "*)": 2, + "setProgress": 1, + "float": 2, + "progressAmount": 4, + "progress*1.0": 2, + "total*1.0": 2, + "double": 3, + "setDoubleValue": 1, + "*indicator": 1, + "calling": 1, + "/*": 49, + "*/": 49, + "requestRedirected": 4, + "newResponseHeaders": 4, + "requestWillRedirectToURL": 1, + "passOnReceivedData": 1, + "removeObjectForKey": 3, + "dateWithTimeIntervalSinceNow": 1, + "ASIFallbackToCacheIfLoadFailsCachePolicy": 1, + "setError": 2, + "*failedRequest": 1, + "failedRequest": 4, + "message": 10, + "kCFStreamPropertyHTTPResponseHeader": 1, + "CFHTTPMessageIsHeaderComplete": 1, + "CFHTTPMessageCopyAllHeaderFields": 1, + "setResponseStatusCode": 1, + "CFHTTPMessageGetResponseStatusCode": 1, + "setResponseStatusMessage": 1, + "CFHTTPMessageCopyResponseStatusLine": 1, + "updateExpiryForRequest": 1, + "*newCredentials": 2, + "*sessionCredentials": 2, + "dictionary": 59, + "sessionCredentials": 10, + "*newCookies": 1, + "cookiesWithResponseHeaderFields": 1, + "forURL": 2, + "setResponseCookies": 1, + "newCookies": 3, + "setCookies": 1, + "mainDocumentURL": 1, + "*cLength": 1, + "*theRequest": 2, + "cLength": 2, + "strtoull": 1, + "UTF8String": 1, + "*connectionHeader": 1, + "*httpVersion": 1, + "CFHTTPMessageCopyVersion": 1, + "httpVersion": 1, + "connectionHeader": 2, + "*keepAliveHeader": 1, + "keepAliveHeader": 2, + "timeout": 3, + "max": 5, + "NSScanner": 2, + "*scanner": 1, + "scannerWithString": 1, + "scanner": 5, + "scanString": 2, + "intoString": 4, + "scanInt": 2, + "scanUpToString": 1, + "responseCode": 8, + "*userAgentHeader": 1, + "*acceptHeader": 1, + "userAgentHeader": 2, + "acceptHeader": 2, + "URLWithString": 1, + "relativeToURL": 1, + "charset": 5, + "*mimeType": 1, + "setResponseEncoding": 2, + "saveProxyCredentialsToKeychain": 2, + "*authenticationCredentials": 3, + "credentialWithUser": 2, + "persistence": 2, + "NSURLCredentialPersistencePermanent": 2, + "authenticationCredentials": 7, + "setProxyAuthenticationRetryCount": 1, + "CFMutableDictionaryRef": 2, + "have": 3, + "they": 4, + "s": 22, + "save": 2, + "*sessionProxyCredentials": 1, + "sessionProxyCredentials": 6, + "setProxyCredentials": 1, + "setAuthenticationRetryCount": 1, + "setRequestCredentials": 1, + "*user": 1, + "*pass": 1, + "pass": 6, + "kCFHTTPAuthenticationSchemeNTLM": 1, + "CFHTTPAuthenticationRequiresAccountDomain": 1, + "*ntlmDomain": 1, + "ntlmDomain": 2, + "NSArray*": 1, + "ntlmComponents": 1, + "componentsSeparatedByString": 1, + "AUTH": 23, + "Request": 27, + "%": 100, + "set": 2, + "from": 14, + "parent": 1, + "properties": 1, + "as": 8, + "or": 9, + "ASIAuthenticationDialog": 4, + "retry": 2, + "had": 3, + "Failed": 9, + "Credentials": 9, + "apply": 5, + "failed": 6, + "Realm": 1, + "challenge": 1, + "must": 7, + "authenticate": 1, + "NTLM": 2, + "handshake": 1, + "step": 1, + "i": 52, + "bad": 2, + "remove": 1, + "store": 1, + "cached": 3, + "waiting": 2, + "access": 2, + "reuse": 2, + "AuthenticationScheme": 2, + "ask": 4, + "has": 6, + "no": 5, + "present": 2, + "give": 3, + "up": 4, + "were": 1, + "not": 10, + "marked": 1, + "but": 4, + "got": 1, + "all": 1, + "same.": 1, + "Authorization": 1, + "Basic": 1, + "Range": 2, + "Content": 2, + "STATUS": 1, + "downloading": 1, + "qu": 1, + "move": 2, + "CONNECTION": 4, + "#": 7, + "expires": 2, + "X": 3, + "Response": 1, + "Status": 1, + "Code": 1, + "Length": 1, + "attempted": 2, + "it": 3, + "been": 2, + "closed": 2, + "with": 2, + "new": 2, + "retried": 1, + "A": 3, + "failure": 1, + "occurred": 3, + "SSL": 1, + "problem": 1, + "Possible": 1, + "causes": 1, + "may": 1, + "include": 1, + "bad/expired/self": 1, + "signed": 1, + "clock": 1, + "wrong": 1, + "delete": 1, + "at": 4, + "Unable": 24, + "obtain": 1, + "servers": 1, + "needed": 1, + "https": 1, + "Closing": 1, + "because": 2, + "expired": 1, + "Host": 1, + "Port": 1, + "URL": 49, + "AuthenticationRealm": 2, + "CFBundleDisplayName": 1, + "CFBundleName": 1, + "CFBundleShortVersionString": 1, + "CFBundleVersion": 1, + "rv": 1, + "Macintosh": 2, + "Mac": 2, + "OS": 2, + "u.": 2, + "My": 1, + "Application": 1, + ".5.7": 1, + "en_GB": 1, + "application/octet": 1, + "THROTTLING": 3, + "Sleeping": 1, + "after": 1, + "Waking": 1, + "Used": 1, + "last": 1, + "period": 1, + "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789": 1, + "Cache": 1, + "Control": 1, + "age": 3, + "Expires": 1, + "en_US_POSIX": 1, + "EEE": 1, + "ss": 1, + "@dd": 1, + "MMM": 1, + "yyyy": 1, + "HH": 1, + "mm": 1, + "z": 1, + "IANAEncoding": 3, + "CFStringEncoding": 1, + "cfEncoding": 3, + "CFStringConvertIANACharSetNameToEncoding": 1, + "kCFStringEncodingInvalidId": 1, + "*stringEncoding": 1, + "CFStringConvertEncodingToNSStringEncoding": 1, + "@synthesize": 128, + "PACFileData": 1, + "Foo": 2, + "NSObject": 5, + "<Cocoa/Cocoa.h>": 2, + "FooAppDelegate": 2, + "<NSApplicationDelegate>": 1, + "@private": 2, + "NSWindow": 2, + "*window": 2, + "IBOutlet": 1, + "window": 1, + "applicationDidFinishLaunching": 1, + "aNotification": 1, + "#include": 18, + "<stddef.h>": 1, + "<stdint.h>": 2, + "<limits.h>": 2, + "<TargetConditionals.h>": 1, + "<AvailabilityMacros.h>": 1, + "#ifdef": 10, + "__OBJC__": 2, + "<Foundation/NSArray.h>": 2, + "<Foundation/NSData.h>": 2, + "<Foundation/NSDictionary.h>": 2, + "<Foundation/NSError.h>": 1, + "<Foundation/NSObjCRuntime.h>": 2, + "<Foundation/NSString.h>": 1, + "__cplusplus": 2, + "NSINTEGER_DEFINED": 2, + "defined": 8, + "__LP64__": 2, + "NS_BUILD_32_LIKE_64": 1, + "NSIntegerMin": 3, + "LONG_MIN": 3, + "NSIntegerMax": 4, + "LONG_MAX": 3, + "NSUIntegerMax": 9, + "ULONG_MAX": 3, + "INT_MIN": 3, + "INT_MAX": 2, + "UINT_MAX": 3, + "_JSONKIT_H_": 2, + "__GNUC__": 6, + "__APPLE_CC__": 2, + "JK_DEPRECATED_ATTRIBUTE": 6, + "__attribute__": 3, + "deprecated": 1, + "JSONKIT_VERSION_MAJOR": 1, + "JSONKIT_VERSION_MINOR": 1, + "JKFlags": 5, + "JKParseOptionNone": 1, + "JKParseOptionStrict": 1, + "JKParseOptionComments": 2, + "<<": 17, + "JKParseOptionUnicodeNewlines": 2, + "JKParseOptionLooseUnicode": 2, + "JKParseOptionPermitTextAfterValidJSON": 2, + "JKParseOptionValidFlags": 1, + "JKParseOptionFlags": 12, + "JKSerializeOptionNone": 7, + "JKSerializeOptionPretty": 2, + "JKSerializeOptionEscapeUnicode": 2, + "JKSerializeOptionEscapeForwardSlashes": 2, + "JKSerializeOptionValidFlags": 1, + "JKSerializeOptionFlags": 30, + "struct": 20, + "JKParseState": 20, + "JSONDecoder": 2, + "*parseState": 18, + "decoder": 1, + "decoderWithParseOptions": 1, + "parseOptionFlags": 11, + "initWithParseOptions": 1, + "clearCache": 1, + "parseUTF8String": 2, + "size_t": 29, + "parseJSONData": 2, + "jsonData": 8, + "objectWithUTF8String": 2, + "objectWithData": 5, + "mutableObjectWithUTF8String": 2, + "mutableObjectWithData": 2, + "////////////": 6, + "Deserializing": 1, + "methods": 2, + "JSONKitDeserializing": 2, + "objectFromJSONString": 1, + "objectFromJSONStringWithParseOptions": 2, + "mutableObjectFromJSONString": 1, + "mutableObjectFromJSONStringWithParseOptions": 2, + "objectFromJSONData": 1, + "objectFromJSONDataWithParseOptions": 2, + "mutableObjectFromJSONData": 1, + "mutableObjectFromJSONDataWithParseOptions": 2, + "Serializing": 1, + "JSONKitSerializing": 6, + "JSONData": 6, + "JSONDataWithOptions": 15, + "serializeOptions": 42, + "includeQuotes": 12, + "JSONString": 6, + "JSONStringWithOptions": 15, + "serializeUnsupportedClassesUsingDelegate": 9, + "__BLOCKS__": 2, + "JSONKitSerializingBlockAdditions": 4, + "serializeUnsupportedClassesUsingBlock": 8, + "<stdlib.h>": 1, + "<string.h>": 1, + "<assert.h>": 1, + "<sys/errno.h>": 1, + "<math.h>": 1, + "<objc/runtime.h>": 1, + "//#include": 1, + "<CoreFoundation/CoreFoundation.h>": 1, + "<CoreFoundation/CFString.h>": 1, + "<CoreFoundation/CFArray.h>": 1, + "<CoreFoundation/CFDictionary.h>": 1, + "<CoreFoundation/CFNumber.h>": 1, + "//#import": 1, + "<Foundation/NSAutoreleasePool.h>": 1, + "<Foundation/NSException.h>": 1, + "<Foundation/NSNull.h>": 1, + "__has_feature": 3, + "x": 9, + "JK_ENABLE_CF_TRANSFER_OWNERSHIP_CALLBACKS": 2, + "#warning": 1, + "As": 1, + "JSONKit": 7, + "v1.4": 1, + "longer": 2, + "required.": 1, + "It": 1, + "valid": 2, + "option.": 1, + "__OBJC_GC__": 1, + "#error": 6, + "does": 4, + "support": 3, + "Objective": 3, + "C": 7, + "Garbage": 1, + "Collection": 1, + "objc_arc": 1, + "Automatic": 1, + "Reference": 1, + "Counting": 1, + "ARC": 1, + "xffffffffU": 1, + "fffffff": 1, + "ULLONG_MAX": 1, + "xffffffffffffffffULL": 1, + "LLONG_MIN": 1, + "fffffffffffffffLL": 1, + "LL": 1, + "requires": 4, + "types": 2, + "bits": 2, + "respectively.": 1, + "WORD_BIT": 1, + "LONG_BIT": 1, + "same": 3, + "bit": 1, + "architectures.": 1, + "type.": 7, + "SIZE_MAX": 1, + "SSIZE_MAX": 1, + "JK_HASH_INIT": 1, + "UL": 149, + "JK_FAST_TRAILING_BYTES": 2, + "JK_CACHE_SLOTS_BITS": 2, + "JK_CACHE_SLOTS": 1, + "JK_CACHE_PROBES": 1, + "JK_INIT_CACHE_AGE": 1, + "JK_TOKENBUFFER_SIZE": 1, + "JK_STACK_OBJS": 1, + "JK_JSONBUFFER_SIZE": 1, + "JK_UTF8BUFFER_SIZE": 1, + "JK_ENCODE_CACHE_SLOTS": 1, + "JK_ATTRIBUTES": 15, + "attr": 3, + "...": 12, + "##__VA_ARGS__": 7, + "JK_EXPECTED": 4, + "cond": 12, + "expect": 3, + "__builtin_expect": 1, + "JK_EXPECT_T": 23, + "U": 5, + "JK_EXPECT_F": 15, + "JK_PREFETCH": 2, + "ptr": 3, + "__builtin_prefetch": 1, + "JK_STATIC_INLINE": 13, + "__inline__": 1, + "always_inline": 1, + "JK_ALIGNED": 1, + "arg": 10, + "aligned": 1, + "JK_UNUSED_ARG": 2, + "unused": 4, + "JK_WARN_UNUSED": 1, + "warn_unused_result": 9, + "JK_WARN_UNUSED_CONST": 1, + "JK_WARN_UNUSED_PURE": 1, + "pure": 2, + "JK_WARN_UNUSED_SENTINEL": 1, + "sentinel": 1, + "JK_NONNULL_ARGS": 1, + "nonnull": 6, + "JK_WARN_UNUSED_NONNULL_ARGS": 1, + "JK_WARN_UNUSED_CONST_NONNULL_ARGS": 1, + "JK_WARN_UNUSED_PURE_NONNULL_ARGS": 1, + "__GNUC_MINOR__": 1, + "JK_ALLOC_SIZE_NON_NULL_ARGS_WARN_UNUSED": 2, + "nn": 4, + "alloc_size": 1, + "JKArray": 13, + "JKDictionaryEnumerator": 4, + "JKDictionary": 21, + "JSONNumberStateStart": 1, + "JSONNumberStateFinished": 1, + "JSONNumberStateError": 1, + "JSONNumberStateWholeNumberStart": 1, + "JSONNumberStateWholeNumberMinus": 1, + "JSONNumberStateWholeNumberZero": 1, + "JSONNumberStateWholeNumber": 1, + "JSONNumberStatePeriod": 1, + "JSONNumberStateFractionalNumberStart": 1, + "JSONNumberStateFractionalNumber": 1, + "JSONNumberStateExponentStart": 1, + "JSONNumberStateExponentPlusMinus": 1, + "JSONNumberStateExponent": 1, + "JSONStringStateStart": 1, + "JSONStringStateParsing": 1, + "JSONStringStateFinished": 1, + "JSONStringStateError": 5, + "JSONStringStateEscape": 2, + "JSONStringStateEscapedUnicode1": 2, + "JSONStringStateEscapedUnicode2": 1, + "JSONStringStateEscapedUnicode3": 1, + "JSONStringStateEscapedUnicode4": 1, + "JSONStringStateEscapedUnicodeSurrogate1": 1, + "JSONStringStateEscapedUnicodeSurrogate2": 1, + "JSONStringStateEscapedUnicodeSurrogate3": 1, + "JSONStringStateEscapedUnicodeSurrogate4": 1, + "JSONStringStateEscapedNeedEscapeForSurrogate": 1, + "JSONStringStateEscapedNeedEscapedUForSurrogate": 1, + "JKParseAcceptValue": 2, + "JKParseAcceptComma": 2, + "JKParseAcceptEnd": 3, + "JKParseAcceptValueOrEnd": 1, + "JKParseAcceptCommaOrEnd": 1, + "JKClassUnknown": 1, + "JKClassString": 1, + "JKClassNumber": 1, + "JKClassArray": 1, + "JKClassDictionary": 1, + "JKClassNull": 1, + "JKManagedBufferOnStack": 1, + "JKManagedBufferOnHeap": 1, + "JKManagedBufferLocationMask": 1, + "JKManagedBufferLocationShift": 1, + "JKManagedBufferMustFree": 2, + "JKManagedBufferFlags": 1, + "JKObjectStackOnStack": 1, + "JKObjectStackOnHeap": 1, + "JKObjectStackLocationMask": 1, + "JKObjectStackLocationShift": 1, + "JKObjectStackMustFree": 1, + "JKObjectStackFlags": 1, + "JKTokenTypeInvalid": 1, + "JKTokenTypeNumber": 1, + "JKTokenTypeString": 1, + "JKTokenTypeObjectBegin": 1, + "JKTokenTypeObjectEnd": 1, + "JKTokenTypeArrayBegin": 1, + "JKTokenTypeArrayEnd": 1, + "JKTokenTypeSeparator": 1, + "JKTokenTypeComma": 1, + "JKTokenTypeTrue": 1, + "JKTokenTypeFalse": 1, + "JKTokenTypeNull": 1, + "JKTokenTypeWhiteSpace": 1, + "JKTokenType": 2, + "JKValueTypeNone": 1, + "JKValueTypeString": 2, + "JKValueTypeLongLong": 1, + "JKValueTypeUnsignedLongLong": 1, + "JKValueTypeDouble": 1, + "JKValueType": 1, + "JKEncodeOptionAsData": 10, + "JKEncodeOptionAsString": 10, + "JKEncodeOptionAsTypeMask": 1, + "JKEncodeOptionCollectionObj": 17, + "JKEncodeOptionStringObj": 3, + "JKEncodeOptionStringObjTrimQuotes": 3, + "JKEncodeOptionType": 2, + "JKHash": 6, + "JKTokenCacheItem": 2, + "JKTokenCache": 2, + "JKTokenValue": 2, + "JKParseToken": 2, + "JKPtrRange": 2, + "JKObjectStack": 5, + "JKBuffer": 2, + "JKConstBuffer": 2, + "JKConstPtrRange": 2, + "JKRange": 2, + "JKManagedBuffer": 5, + "JKFastClassLookup": 2, + "JKEncodeCache": 6, + "JKEncodeState": 11, + "JKObjCImpCache": 2, + "JKHashTableEntry": 22, + "serializeObject": 19, + "options": 24, + "optionFlags": 1, + "encodeOption": 20, + "JKSERIALIZER_BLOCKS_PROTO": 1, + "releaseState": 4, + "keyHash": 21, + "key": 27, + "uint32_t": 1, + "UTF32": 11, + "uint16_t": 1, + "UTF16": 1, + "uint8_t": 1, + "UTF8": 3, + "conversionOK": 1, + "sourceExhausted": 2, + "targetExhausted": 1, + "sourceIllegal": 1, + "ConversionResult": 1, + "UNI_REPLACEMENT_CHAR": 1, + "FFFD": 1, + "UNI_MAX_BMP": 1, + "FFFF": 3, + "UNI_MAX_UTF16": 1, + "UNI_MAX_UTF32": 1, + "FFFFFFF": 1, + "UNI_MAX_LEGAL_UTF32": 1, + "UNI_SUR_HIGH_START": 1, + "xD800": 1, + "UNI_SUR_HIGH_END": 1, + "xDBFF": 1, + "UNI_SUR_LOW_START": 1, + "xDC00": 1, + "UNI_SUR_LOW_END": 1, + "xDFFF": 1, + "trailingBytesForUTF8": 1, + "offsetsFromUTF8": 1, + "E2080UL": 1, + "C82080UL": 1, + "xFA082080UL": 1, + "firstByteMark": 1, + "xC0": 1, + "xE0": 1, + "xF0": 1, + "xF8": 1, + "xFC": 1, + "JK_AT_STRING_PTR": 1, + "stringBuffer.bytes.ptr": 4, + "JK_END_STRING_PTR": 2, + "stringBuffer.bytes.length": 2, + "*_JKArrayCreate": 2, + "*objects": 5, + "mutableCollection": 7, + "_JKArrayInsertObjectAtIndex": 3, + "*array": 9, + "newObject": 12, + "objectIndex": 48, + "_JKArrayReplaceObjectAtIndexWithObject": 3, + "_JKArrayRemoveObjectAtIndex": 3, + "_JKDictionaryCapacityForCount": 4, + "*_JKDictionaryCreate": 2, + "*keys": 2, + "*keyHashes": 2, + "*_JKDictionaryHashEntry": 2, + "*dictionary": 13, + "_JKDictionaryCapacity": 3, + "_JKDictionaryResizeIfNeccessary": 3, + "_JKDictionaryRemoveObjectWithEntry": 4, + "*entry": 4, + "_JKDictionaryAddObject": 5, + "*_JKDictionaryHashTableEntryForKey": 2, + "aKey": 18, + "_JSONDecoderCleanup": 1, + "*decoder": 1, + "_NSStringObjectFromJSONString": 1, + "*jsonString": 1, + "**error": 1, + "jk_managedBuffer_release": 3, + "*managedBuffer": 3, + "jk_managedBuffer_setToStackBuffer": 1, + "*ptr": 2, + "*jk_managedBuffer_resize": 1, + "newSize": 1, + "jk_objectStack_release": 1, + "*objectStack": 3, + "jk_objectStack_setToStackBuffer": 1, + "**objects": 1, + "**keys": 1, + "CFHashCode": 1, + "*cfHashes": 1, + "jk_objectStack_resize": 1, + "newCount": 1, + "jk_error": 5, + "*format": 8, + "jk_parse_string": 1, + "jk_parse_number": 1, + "jk_parse_is_newline": 2, + "*atCharacterPtr": 2, + "jk_parse_skip_newline": 1, + "jk_parse_skip_whitespace": 1, + "jk_parse_next_token": 1, + "jk_error_parse_accept_or3": 1, + "state": 32, + "*or1String": 1, + "*or2String": 1, + "*or3String": 1, + "*jk_create_dictionary": 1, + "startingObjectIndex": 1, + "*jk_parse_dictionary": 1, + "*jk_parse_array": 1, + "*jk_object_for_token": 1, + "*jk_cachedObjects": 2, + "jk_cache_age": 1, + "jk_set_parsed_token": 1, + "advanceBy": 1, + "jk_encode_error": 1, + "*encodeState": 9, + "jk_encode_printf": 1, + "*cacheSlot": 4, + "startingAtIndex": 4, + "jk_encode_write": 1, + "jk_encode_writePrettyPrintWhiteSpace": 1, + "jk_encode_write1slow": 2, + "ssize_t": 2, + "depthChange": 2, + "jk_encode_write1fast": 2, + "jk_encode_writen": 1, + "jk_encode_object_hash": 1, + "*objectPtr": 2, + "jk_encode_updateCache": 1, + "jk_encode_add_atom_to_buffer": 1, + "jk_encode_write1": 1, + "es": 3, + "dc": 3, + "f": 6, + "_jk_encode_prettyPrint": 1, + "jk_min": 2, + "b": 8, + "jk_max": 4, + "jk_calculateHash": 3, + "currentHash": 5, + "c": 9, + "Class": 3, + "_JKArrayClass": 5, + "_JKArrayInstanceSize": 4, + "_JKDictionaryClass": 5, + "_JKDictionaryInstanceSize": 4, + "_jk_NSNumberClass": 2, + "NSNumberAllocImp": 2, + "_jk_NSNumberAllocImp": 2, + "NSNumberInitWithUnsignedLongLongImp": 2, + "_jk_NSNumberInitWithUnsignedLongLongImp": 2, + "jk_collectionClassLoadTimeInitialization": 2, + "constructor": 1, + "NSAutoreleasePool": 2, + "*pool": 1, + "objc_getClass": 2, + "class_getInstanceSize": 2, + "methodForSelector": 2, + "temp_NSNumber": 4, + "initWithUnsignedLongLong": 1, + "pool": 2, + "<NSCopying,>": 2, + "NSMutableCopying": 2, + "NSFastEnumeration": 2, + "capacity": 46, + "mutations": 28, + "allocWithZone": 6, + "NSZone": 6, + "zone": 12, + "raise": 20, + "NSInvalidArgumentException": 7, + "format": 23, + "NSStringFromClass": 20, + "NSStringFromSelector": 18, + "_cmd": 18, + "NSCParameterAssert": 20, + "objects": 59, + "calloc": 5, + "isa": 2, + "malloc": 1, + "memcpy": 2, + "<=>": 15, + "*newObjects": 1, + "newObjects": 2, + "realloc": 2, + "NSMallocException": 2, + "memset": 1, + "memmove": 2, + "atObject": 12, + "free": 5, + "NSParameterAssert": 17, + "getObjects": 2, + "objectsPtr": 3, + "range": 6, + "NSRange": 1, + "NSMaxRange": 4, + "NSRangeException": 6, + "range.location": 2, + "range.length": 1, + "objectAtIndex": 10, + "countByEnumeratingWithState": 2, + "NSFastEnumerationState": 2, + "stackbuf": 8, + "len": 6, + "mutationsPtr": 2, + "itemsPtr": 2, + "enumeratedCount": 8, + "insertObject": 1, + "anObject": 17, + "NSInternalInconsistencyException": 5, + "__clang_analyzer__": 3, + "removeObjectAtIndex": 1, + "replaceObjectAtIndex": 1, + "copyWithZone": 2, + "initWithObjects": 2, + "mutableCopyWithZone": 2, + "NSEnumerator": 2, + "collection": 11, + "nextObject": 6, + "initWithJKDictionary": 3, + "initDictionary": 4, + "allObjects": 2, + "arrayWithObjects": 1, + "_JKDictionaryHashEntry": 2, + "returnObject": 5, + "entry": 43, + ".key": 11, + "jk_dictionaryCapacities": 4, + "bottom": 5, + "top": 4, + "mid": 5, + "tableSize": 2, + "lround": 1, + "floor": 1, + ".33": 1, + "capacityForCount": 4, + "oldCapacity": 2, + "NS_BLOCK_ASSERTIONS": 1, + "oldCount": 2, + "*oldEntry": 1, + "idx": 31, + "oldEntry": 9, + ".keyHash": 2, + ".object": 7, + "keys": 5, + "keyHashes": 2, + "atEntry": 45, + "removeIdx": 3, + "entryIdx": 4, + "*atEntry": 3, + "addKeyEntry": 2, + "addIdx": 4, + "*atAddEntry": 1, + "atAddEntry": 6, + "keyEntry": 4, + "CFEqual": 2, + "CFHash": 2, + "entryForKey": 5, + "_JKDictionaryHashTableEntryForKey": 2, + "andKeys": 1, + "arrayIdx": 5, + "keyEnumerator": 1, + "*entryForKey": 1, + "initWithDictionary": 2, + "parseState": 15, + "va_list": 1, + "varArgsList": 4, + "va_start": 1, + "*formatString": 1, + "initWithFormat": 1, + "arguments": 1, + "va_end": 1, + "*lineStart": 1, + "lineStartIndex": 1, + "*lineEnd": 1, + "lineStart": 2, + "atCharacterPtr": 5, + "lineEnd": 1, + "*lineString": 1, + "*.*s": 1, + "JKErrorDomain": 3, + "JKAtIndexKey": 1, + "JKLineNumberKey": 1, + "JKErrorLine0Key": 1, + "JKErrorLine1Key": 1, + "true": 3, + "Illegal": 1, + "sequence": 1, + "found": 1, + "stringState": 6, + "goto": 9, + "finishedParsing": 4, + "jk_string_add_unicodeCodePoint": 1, + "u32ch": 1, + "tokenBufferIdx": 2, + "stringHash": 3, + "stringWithUTF8String": 1, + "__FILE__": 1, + "__LINE__": 1, + "atStringCharacter": 3, + "nextValidCharacter": 2, + "continue": 2, + "tokenBuffer": 1, + "*atStringCharacter": 2, + "currentChar": 2, + "isSurrogate": 1, + "switch": 5, + "case": 16, + "escapedUnicode1": 1, + "escapedUnicode2": 1, + "escapedUnicodeCodePoint": 1, + "escapedChar": 5, + "parsedEscapedChar": 5, + "F": 1, + ".": 2, + "e": 1, + "n": 5, + "r": 7, + "Unexpected": 1, + "token": 3, + "wanted": 1, + "Expected": 3, + "incremented.": 1, + "bucket": 1, + "token.value.hash": 1, + "cache.count": 1, + "setBucket": 1, + "useableBucket": 1, + "*parsedAtom": 1, + "token.value.ptrRange.length": 1, + "token.value.type": 1, + "hashing": 1, + "Internal": 2, + "Unknown": 3, + "line": 2, + "ld": 2, + "Invalid": 1, + "parse": 2, + "options.": 1, + "NULL.": 7, + "The": 6, + "argument": 6, + "An": 2, + "converting": 3, + "contents": 2, + "UTF8.": 3, + "resize": 9, + "temporary": 9, + "buffer.": 9, + "vsnprintf": 1, + "unexpectedly.": 1, + "run": 1, + "very": 1, + "thing": 1, + "pointer": 2, + "tagged": 2, + "pointers": 2, + "minimum": 1, + "version": 1, + "required": 1, + "undefined": 1, + "behavior": 1, + "lower": 1, + "works": 2, + "what": 1, + "jump": 1, + "subroutine": 1, + "serialize": 5, + "@.": 3, + "returned": 2, + "unsupported": 1, + "formatter.": 1, + "Original": 1, + ".4x": 5, + "Error": 1, + "false": 3, + "conversion": 2, + "unknown": 2, + "Type": 2, + "<NULL>": 1, + "scalar": 2, + "number": 3, + "object.": 5, + "Floating": 1, + "point": 13, + "values": 1, + "finite.": 1, + "JSON": 1, + "NaN": 1, + "Infinity.": 1, + ".17g": 1, + "floating": 1, + ".2x": 1, + "Key": 2, + "null": 1, + "allocate": 1, + "structure.": 1, + "respond": 1, + "argument.": 1, + "expected": 2, + "NSDictionary.": 1, + "NSString.": 2, + "create": 4, + "encode": 1, + "stackBuffer": 1, + "encodeState": 12, + "stringBuffer.flags": 1, + "errorExit": 1, + "stringBuffer": 1, + "utf8ConversionBuffer": 1, + "Methods": 2, + "serializing": 1, + "single": 1, + "JKSerializer": 18, + "MainMenuViewController": 2, + "TTTableViewController": 1, + "///////////////////////////////////////////////////////////////////////////////////////////////////": 21, + "initWithNibName": 3, + "nibNameOrNil": 1, + "bundle": 3, + "NSBundle": 1, + "nibBundleOrNil": 1, + "self.title": 2, + "//self.variableHeightRows": 1, + "self.tableViewStyle": 1, + "UITableViewStyleGrouped": 1, + "self.dataSource": 1, + "TTSectionedDataSource": 1, + "dataSourceWithObjects": 1, + "TTTableTextItem": 48, + "itemWithText": 48, + "PlaygroundViewController": 2, + "UIViewController": 2, + "UIScrollView*": 1, + "_scrollView": 5, + "<Three20Core/NSDataAdditions.h>": 1, + "CGFloat": 47, + "kFramePadding": 6, + "kElementSpacing": 3, + "kGroupSpacing": 1, + "addHeader": 2, + "text": 10, + "yOffset": 12, + "UILabel*": 2, + "label": 6, + "UILabel": 2, + "initWithFrame": 11, + "CGRectZero": 5, + "label.text": 2, + "label.font": 3, + "UIFont": 3, + "systemFontOfSize": 2, + "label.numberOfLines": 2, + "CGRect": 47, + "frame": 36, + "label.frame": 4, + "frame.origin.x": 2, + "frame.origin.y": 15, + "frame.size.width": 4, + "frame.size.height": 14, + "sizeWithFont": 2, + "constrainedToSize": 2, + "CGSizeMake": 3, + ".height": 4, + "addSubview": 10, + "label.frame.size.height": 2, + "TT_RELEASE_SAFELY": 11, + "addText": 1, + "loadView": 4, + "UIScrollView": 1, + "self.view.bounds": 2, + "_scrollView.autoresizingMask": 1, + "UIViewAutoresizingFlexibleWidth": 4, + "UIViewAutoresizingFlexibleHeight": 1, + "self.view": 4, + "NSLocalizedString": 1, + "Debug": 1, + "test": 1, + "TTGlobalCoreLocale": 1, + "Current": 1, + "locale": 1, + "TTGlobalCorePaths": 1, + "Bundle": 1, + "Icon.png": 1, + "Document": 1, + "document.pdf": 1, + "NSDataAdditions": 1, + "MD5": 1, + "Hash": 1, + "Three20": 3, + "debug": 2, + "logging": 2, + "currently...ON": 1, + "currently...OFF": 1, + "Showing": 4, + "TTDPRINT.": 1, + "TTD": 1, + "log": 1, + "levels": 1, + "This": 4, + "TTDERROR": 1, + "level": 3, + "d.": 3, + "TTDWARNING": 1, + "TTDINFO": 1, + "TTDCONDITIONLOG.": 1, + "always": 1, + "display": 1, + "condition": 1, + "TTDCONDITIONLOG": 2, + "rand": 1, + "TTDPRINT": 1, + "TTDASSERT.": 1, + "TTDASSERT": 2, + "SBJsonParser": 2, + "maxDepth": 2, + "NSData*": 1, + "objectWithString": 5, + "repr": 5, + "jsonText": 1, + "NSError**": 2, + "self.maxDepth": 2, + "self.error": 3, + "SBJsonStreamParserAccumulator": 2, + "*accumulator": 1, + "SBJsonStreamParserAdapter": 2, + "*adapter": 1, + "adapter.delegate": 1, + "accumulator": 1, + "SBJsonStreamParser": 2, + "*parser": 1, + "parser.maxDepth": 1, + "parser.delegate": 1, + "adapter": 1, + "parser": 1, + "SBJsonStreamParserComplete": 1, + "accumulator.value": 1, + "SBJsonStreamParserWaitingForData": 1, + "SBJsonStreamParserError": 1, + "parser.error": 1, + "dataUsingEncoding": 1, + "NSUTF8StringEncoding": 1, + "error_": 2, + "tmp": 3, + "*ui": 1, + "*error_": 1, + "ui": 1, + "StyleViewController": 2, + "TTViewController": 1, + "TTStyle*": 7, + "_style": 9, + "_styleHighlight": 6, + "_styleDisabled": 6, + "_styleSelected": 6, + "_styleType": 6, + "kTextStyleType": 2, + "kViewStyleType": 2, + "kImageStyleType": 2, + "initWithStyleName": 1, + "styleType": 3, + "TTStyleSheet": 4, + "globalStyleSheet": 4, + "styleWithSelector": 4, + "forState": 3, + "UIControlStateHighlighted": 1, + "UIControlStateDisabled": 1, + "UIControlStateSelected": 1, + "addTextView": 5, + "title": 2, + "style": 28, + "textFrame": 3, + "TTRectInset": 3, + "UIEdgeInsetsMake": 3, + "StyleView*": 2, + "StyleView": 2, + "text.text": 1, + "TTStyleContext*": 1, + "context": 4, + "TTStyleContext": 1, + "context.frame": 1, + "context.delegate": 1, + "context.font": 1, + "systemFontSize": 1, + "CGSize": 5, + "addToSize": 1, + "CGSizeZero": 1, + "size.width": 1, + "size.height": 1, + "textFrame.size": 1, + "text.frame": 1, + "text.style": 1, + "text.backgroundColor": 1, + "UIColor": 3, + "colorWithRed": 3, + ".9": 6, + "green": 3, + "blue": 3, + "alpha": 3, + "text.autoresizingMask": 1, + "UIViewAutoresizingFlexibleBottomMargin": 3, + "addView": 5, + "viewFrame": 4, + "view": 7, + "view.style": 2, + "view.backgroundColor": 2, + "view.autoresizingMask": 2, + "addImageView": 5, + "TTImageView*": 1, + "TTImageView": 1, + "view.urlPath": 1, + "imageFrame": 2, + "view.frame": 2, + "imageFrame.size": 1, + "view.image.size": 1, + "TUITableViewStylePlain": 2, + "TUITableViewStyleGrouped": 2, + "TUITableViewStyle": 4, + "TUITableViewScrollPositionNone": 2, + "TUITableViewScrollPositionTop": 2, + "TUITableViewScrollPositionMiddle": 1, + "TUITableViewScrollPositionBottom": 1, + "TUITableViewScrollPositionToVisible": 3, + "TUITableViewScrollPosition": 5, + "TUITableViewInsertionMethodBeforeIndex": 1, + "NSOrderedAscending": 4, + "TUITableViewInsertionMethodAtIndex": 1, + "NSOrderedSame": 1, + "TUITableViewInsertionMethodAfterIndex": 1, + "NSOrderedDescending": 4, + "TUITableViewInsertionMethod": 3, + "TUITableViewCell": 24, + "@protocol": 3, + "TUITableViewDataSource": 2, + "TUITableView": 25, + "TUITableViewDelegate": 1, + "<NSObject,>": 1, + "TUIScrollViewDelegate": 1, + "tableView": 47, + "heightForRowAtIndexPath": 2, + "TUIFastIndexPath": 91, + "indexPath": 47, + "@optional": 2, + "willDisplayCell": 3, + "cell": 28, + "forRowAtIndexPath": 3, + "didSelectRowAtIndexPath": 3, + "didDeselectRowAtIndexPath": 3, + "didClickRowAtIndexPath": 1, + "withEvent": 2, + "NSEvent": 3, + "event": 8, + "TUITableView*": 1, + "shouldSelectRowAtIndexPath": 3, + "TUIFastIndexPath*": 1, + "forEvent": 3, + "NSEvent*": 1, + "NSMenu": 1, + "menuForRowAtIndexPath": 1, + "tableViewWillReloadData": 3, + "tableViewDidReloadData": 3, + "targetIndexPathForMoveFromRowAtIndexPath": 1, + "fromPath": 1, + "toProposedIndexPath": 1, + "proposedPath": 1, + "TUIScrollView": 1, + "__unsafe_unretained": 2, + "<TUITableViewDataSource>": 4, + "_dataSource": 7, + "_sectionInfo": 30, + "TUIView": 20, + "_pullDownView": 7, + "_headerView": 11, + "_lastSize": 3, + "_contentHeight": 8, + "NSMutableIndexSet": 8, + "_visibleSectionHeaders": 7, + "_visibleItems": 17, + "_reusableTableCells": 5, + "_selectedIndexPath": 10, + "_indexPathShouldBeFirstResponder": 4, + "_futureMakeFirstResponderToken": 3, + "_keepVisibleIndexPathForReload": 5, + "_relativeOffsetForReload": 3, + "_dragToReorderCell": 8, + "CGPoint": 7, + "_currentDragToReorderLocation": 2, + "_currentDragToReorderMouseOffset": 2, + "_currentDragToReorderIndexPath": 1, + "_currentDragToReorderInsertionMethod": 1, + "_previousDragToReorderIndexPath": 1, + "_previousDragToReorderInsertionMethod": 1, + "animateSelectionChanges": 3, + "forceSaveScrollPosition": 1, + "derepeaterEnabled": 1, + "layoutSubviewsReentrancyGuard": 1, + "didFirstLayout": 1, + "dataSourceNumberOfSectionsInTableView": 1, + "delegateTableViewWillDisplayCellForRowAtIndexPath": 1, + "maintainContentOffsetAfterReload": 3, + "_tableFlags": 1, + "unsafe_unretained": 2, + "dataSource": 2, + "<TUITableViewDelegate>": 4, + "readwrite": 1, + "reloadData": 3, + "reloadDataMaintainingVisibleIndexPath": 2, + "relativeOffset": 10, + "reloadLayout": 2, + "numberOfSections": 10, + "numberOfRowsInSection": 9, + "section": 56, + "rectForHeaderOfSection": 5, + "rectForSection": 3, + "rectForRowAtIndexPath": 10, + "NSIndexSet": 6, + "indexesOfSectionsInRect": 3, + "rect": 9, + "indexesOfSectionHeadersInRect": 2, + "indexPathForCell": 2, + "indexPathsForRowsInRect": 3, + "indexPathForRowAtPoint": 2, + "indexPathForRowAtVerticalOffset": 2, + "offset": 24, + "indexOfSectionWithHeaderAtPoint": 2, + "indexOfSectionWithHeaderAtVerticalOffset": 2, + "enumerateIndexPathsUsingBlock": 2, + "*indexPath": 11, + "*stop": 8, + "enumerateIndexPathsWithOptions": 2, + "NSEnumerationOptions": 4, + "usingBlock": 6, + "enumerateIndexPathsFromIndexPath": 4, + "fromIndexPath": 6, + "toIndexPath": 12, + "withOptions": 4, + "headerViewForSection": 6, + "cellForRowAtIndexPath": 10, + "visibleCells": 3, + "sortedVisibleCells": 2, + "indexPathsForVisibleRows": 2, + "scrollToRowAtIndexPath": 3, + "atScrollPosition": 3, + "scrollPosition": 9, + "animated": 28, + "indexPathForSelectedRow": 4, + "indexPathForFirstRow": 2, + "indexPathForLastRow": 2, + "selectRowAtIndexPath": 3, + "deselectRowAtIndexPath": 3, + "strong": 3, + "*pullDownView": 1, + "pullDownViewIsVisible": 3, + "*headerView": 6, + "dequeueReusableCellWithIdentifier": 2, + "identifier": 7, + "<NSObject>": 1, + "@required": 1, + "table": 2, + "canMoveRowAtIndexPath": 2, + "moveRowAtIndexPath": 2, + "numberOfSectionsInTableView": 3, + "NSIndexPath": 5, + "indexPathForRow": 11, + "row": 32, + "inSection": 11, + "HEADER_Z_POSITION": 2, + "height": 17, + "TUITableViewRowInfo": 3, + "TUITableViewSection": 17, + "*_tableView": 1, + "*_headerView": 1, + "sectionIndex": 23, + "numberOfRows": 13, + "sectionHeight": 9, + "sectionOffset": 8, + "*rowInfo": 1, + "initWithNumberOfRows": 2, + "_tableView": 3, + "rowInfo": 7, + "_setupRowHeights": 2, + "self.headerView": 2, + "roundf": 2, + "header.frame.size.height": 1, + "h": 5, + "_tableView.delegate": 1, + ".offset": 2, + "rowHeight": 2, + "sectionRowOffset": 2, + "tableRowOffset": 2, + "headerHeight": 4, + "self.headerView.frame.size.height": 1, + "headerView": 14, + "_tableView.dataSource": 3, + "_headerView.autoresizingMask": 1, + "TUIViewAutoresizingFlexibleWidth": 1, + "_headerView.layer.zPosition": 1, + "Private": 1, + "_updateSectionInfo": 3, + "_updateDerepeaterViews": 2, + "pullDownView": 1, + "_tableFlags.animateSelectionChanges": 3, + "_tableFlags.delegateTableViewWillDisplayCellForRowAtIndexPath": 2, + "setDataSource": 1, + "_tableFlags.dataSourceNumberOfSectionsInTableView": 2, + "setAnimateSelectionChanges": 1, + "*s": 3, + "y": 12, + "CGRectMake": 8, + "self.bounds.size.width": 5, + "indexPath.section": 3, + "indexPath.row": 1, + "*section": 9, + "removeFromSuperview": 7, + "removeAllIndexes": 2, + "*sections": 1, + "bounds": 3, + ".size.height": 1, + "self.contentInset.top*2": 1, + "section.sectionOffset": 1, + "sections": 4, + "self.contentInset.bottom": 1, + "_enqueueReusableCell": 3, + "*identifier": 1, + "cell.reuseIdentifier": 1, + "*c": 1, + "lastObject": 1, + "removeLastObject": 1, + "prepareForReuse": 1, + "allValues": 1, + "SortCells": 1, + "*a": 3, + "*b": 2, + "*ctx": 1, + "a.frame.origin.y": 2, + "b.frame.origin.y": 2, + "*v": 2, + "v": 6, + "sortedArrayUsingComparator": 1, + "NSComparator": 1, + "NSComparisonResult": 1, + "INDEX_PATHS_FOR_VISIBLE_ROWS": 5, + "allKeys": 1, + "*i": 5, + "*cell": 8, + "*indexes": 2, + "CGRectIntersectsRect": 5, + "indexes": 4, + "addIndex": 3, + "*indexPaths": 1, + "cellRect": 7, + "indexPaths": 2, + "CGRectContainsPoint": 1, + "cellRect.origin.y": 1, + "origin": 1, + "brief": 1, + "Obtain": 1, + "index": 11, + "whose": 2, + "specified": 1, + "If": 1, + "exists": 1, + "negative": 1, + "param": 1, + "location": 2, + "p": 5, + "0": 2, + "width": 1, + "point.y": 1, + "section.headerView": 13, + "sectionLowerBound": 2, + "fromIndexPath.section": 1, + "sectionUpperBound": 3, + "toIndexPath.section": 1, + "rowLowerBound": 2, + "fromIndexPath.row": 1, + "rowUpperBound": 3, + "toIndexPath.row": 1, + "irow": 3, + "rowCount": 3, + "j": 5, + "stop": 3, + "FALSE": 3, + "_topVisibleIndexPath": 1, + "*topVisibleIndex": 1, + "sortedArrayUsingSelector": 2, + "compare": 4, + "topVisibleIndex": 2, + "setFrame": 2, + "_tableFlags.forceSaveScrollPosition": 3, + "setContentOffset": 2, + "_tableFlags.didFirstLayout": 3, + "__isDraggingCell": 1, + "__updateDraggingCell": 1, + "setPullDownView": 1, + "_pullDownView.hidden": 5, + "setHeaderView": 1, + "_headerView.hidden": 5, + "_preLayoutCells": 3, + "self.bounds": 1, + "CGSizeEqualToSize": 1, + "bounds.size": 2, + "previousOffset": 3, + ".0f": 1, + "*savedIndexPath": 1, + "_tableFlags.maintainContentOffsetAfterReload": 4, + "self.contentSize.height": 2, + "self.contentOffset.y": 1, + "self.nsView": 2, + "inLiveResize": 1, + "savedIndexPath": 5, + "visibleRect": 6, + "v.origin.y": 1, + "v.size.height": 5, + "r.origin.y": 4, + "r.size.height": 8, + "_lastSize.height": 1, + "bounds.size.height": 1, + "self.contentSize": 4, + "scrollToTopAnimated": 1, + "newOffset": 2, + "self.contentOffset": 1, + "CGPointMake": 1, + "self.contentOffset.x": 1, + "scrollRectToVisible": 3, + "_layoutSectionHeaders": 3, + "visibleHeadersNeedRelayout": 1, + "visible": 9, + "*oldIndexes": 1, + "*newIndexes": 1, + "*toRemove": 1, + "oldIndexes": 2, + "toRemove": 2, + "removeIndexes": 2, + "newIndexes": 3, + "*toAdd": 1, + "toAdd": 1, + "__block": 1, + "*pinnedHeader": 1, + "enumerateIndexesUsingBlock": 2, + "headerFrame": 6, + "CGRectGetMaxY": 5, + "headerFrame.origin.y": 1, + "headerFrame.size.height": 2, + "pinnedHeader": 2, + "isKindOfClass": 3, + "TUITableViewSectionHeader": 6, + ".pinnedToViewport": 3, + "TRUE": 1, + "pinnedHeader.frame.origin.y": 1, + "pinnedHeaderFrame": 2, + "pinnedHeader.frame": 2, + "pinnedHeaderFrame.origin.y": 1, + "section.headerView.frame": 1, + "setNeedsLayout": 4, + "section.headerView.superview": 1, + "removeIndex": 1, + "_layoutCells": 3, + "visibleCellsNeedRelayout": 5, + "cell.frame": 2, + "cell.layer.zPosition": 2, + "*oldVisibleIndexPaths": 1, + "*newVisibleIndexPaths": 1, + "*indexPathsToRemove": 1, + "oldVisibleIndexPaths": 2, + "indexPathsToRemove": 2, + "removeObjectsInArray": 2, + "newVisibleIndexPaths": 2, + "*indexPathsToAdd": 1, + "indexPathsToAdd": 3, + "NSLog": 3, + "invalidateHoverForView": 1, + "prepareForDisplay": 1, + "setSelected": 4, + "_delegate": 3, + "acceptsFirstResponder": 2, + "self.nsWindow": 4, + "makeFirstResponderIfNotAlreadyInResponderChain": 2, + "withFutureRequestToken": 1, + "superview": 1, + "bringSubviewToFront": 1, + "headerViewRect": 3, + "s.height": 3, + "_headerView.frame.size.height": 2, + "visible.size.width": 3, + "_headerView.frame": 1, + "pullDownRect": 4, + "_pullDownView.frame.size.height": 2, + "_pullDownView.frame": 1, + "self.delegate": 10, + "removeAllObjects": 1, + "layoutSubviews": 4, + "_tableFlags.layoutSubviewsReentrancyGuard": 3, + "setAnimationsEnabled": 1, + "CATransaction": 3, + "begin": 1, + "setDisableActions": 1, + "_tableFlags.derepeaterEnabled": 1, + "commit": 1, + "sec": 3, + "_makeRowAtIndexPathFirstResponder": 2, + "futureMakeFirstResponderRequestToken": 1, + "*oldIndexPath": 1, + "oldIndexPath": 2, + "setNeedsDisplay": 2, + "NSResponder": 1, + "*firstResponder": 1, + "firstResponder": 3, + "indexPathForFirstVisibleRow": 2, + "*firstIndexPath": 1, + "firstIndexPath": 4, + "indexPathForLastVisibleRow": 2, + "*lastIndexPath": 5, + "lastIndexPath": 8, + "performKeyAction": 2, + "noCurrentSelection": 2, + "isARepeat": 1, + "TUITableViewCalculateNextIndexPathBlock": 3, + "selectValidIndexPath": 3, + "*startForNoSelection": 2, + "calculateNextIndexPath": 4, + "foundValidNextRow": 4, + "*newIndexPath": 1, + "newIndexPath": 6, + "startForNoSelection": 1, + "self.animateSelectionChanges": 1, + "charactersIgnoringModifiers": 1, + "characterAtIndex": 1, + "NSUpArrowFunctionKey": 1, + "lastIndexPath.section": 2, + "lastIndexPath.row": 2, + "rowsInSection": 7, + "NSDownArrowFunctionKey": 1, + "setMaintainContentOffsetAfterReload": 1, + "newValue": 2, + "indexPathWithIndexes": 1, + "indexAtPosition": 2, + "argc": 1, + "*argv": 1 + }, + "Opa": { + "/*": 2, + "*/": 2, + "server": 1, + "Server.one_page_server": 1, + "(": 4, + "-": 1, + "<h1>": 2, + "Hello": 2, + "world": 2, + "</h1>": 2, + ")": 4, + "Server.start": 1, + "Server.http": 1, + "{": 2, + "page": 1, + "function": 1, + "}": 2, + "title": 1 + }, + "OpenCL": { + "double": 3, + "run_fftw": 1, + "(": 11, + "int": 3, + "n": 2, + "const": 2, + "float": 2, + "*": 4, + "x": 2, + "y": 2, + ")": 11, + "{": 2, + "fftwf_plan": 1, + "p1": 3, + "fftwf_plan_dft_1d": 1, + "fftwf_complex": 2, + "FFTW_FORWARD": 1, + "FFTW_ESTIMATE": 1, + ";": 9, + "nops": 3, + "t": 4, + "cl": 2, + "realTime": 2, + "for": 1, + "op": 3, + "<": 1, + "+": 2, + "fftwf_execute": 1, + "}": 2, + "-": 1, + "/": 1, + "fftwf_destroy_plan": 1, + "return": 1 + }, + "OpenEdge ABL": { + "/*": 19, + "*/": 20, + "USING": 3, + "Progress.Lang.*.": 3, + "CLASS": 2, + "email.Email": 2, + "USE": 2, + "-": 58, + "WIDGET": 2, + "POOL": 2, + "&": 3, + "SCOPED": 1, + "DEFINE": 13, + "QUOTES": 1, + "@#": 1, + "%": 2, + "*": 2, + "+": 15, + "._MIME_BOUNDARY_.": 1, + "#@": 1, + "WIN": 1, + "From": 6, + "To": 9, + "CC": 2, + "BCC": 2, + "Personal": 1, + "Private": 1, + "Company": 2, + "confidential": 2, + "normal": 1, + "urgent": 2, + "non": 1, + "Cannot": 3, + "locate": 3, + "file": 6, + "in": 3, + "the": 3, + "filesystem": 3, + "R": 3, + "File": 3, + "exists": 3, + "but": 3, + "is": 3, + "not": 3, + "readable": 3, + "Error": 3, + "copying": 3, + "from": 3, + "<\">": 8, + "ttSenders": 2, + "cEmailAddress": 8, + "n": 24, + "ttToRecipients": 1, + "Reply": 3, + "ttReplyToRecipients": 1, + "Cc": 2, + "ttCCRecipients": 1, + "Bcc": 2, + "ttBCCRecipients": 1, + "Return": 1, + "Receipt": 1, + "ttDeliveryReceiptRecipients": 1, + "Disposition": 3, + "Notification": 1, + "ttReadReceiptRecipients": 1, + "Subject": 4, + "Importance": 3, + "H": 1, + "High": 1, + "L": 1, + "Low": 1, + "Sensitivity": 2, + "Priority": 2, + "Date": 4, + "By": 1, + "Expiry": 2, + "Mime": 1, + "Version": 1, + ".0": 1, + "Content": 10, + "Type": 4, + "multipart/mixed": 1, + ";": 5, + "boundary": 1, + "text/plain": 2, + "charset": 2, + "Transfer": 4, + "Encoding": 4, + "base64": 2, + "bit": 2, + "application/octet": 1, + "stream": 1, + "attachment": 2, + "filename": 2, + "cNewLine.": 1, + "RETURN": 7, + "lcReturnData.": 1, + "END": 11, + "METHOD.": 6, + "METHOD": 6, + "PUBLIC": 6, + "CHARACTER": 8, + "send": 1, + "(": 31, + ")": 31, + "objSendEmailAlgorithm": 1, + "sendEmail": 2, + "INPUT": 11, + "THIS": 1, + "OBJECT": 2, + ".": 13, + "CLASS.": 2, + "INTERFACE": 1, + "email.SendEmailAlgorithm": 1, + "ipobjEmail": 1, + "AS": 17, + "INTERFACE.": 1, + "PARAMETER": 3, + "objSendEmailAlg": 1, + "email.SendEmailSocket": 1, + "NO": 10, + "UNDO.": 9, + "VARIABLE": 9, + "vbuffer": 1, + "MEMPTR": 2, + "vstatus": 1, + "LOGICAL": 1, + "vState": 2, + "INTEGER": 4, + "ASSIGN": 2, + "vstate": 1, + "FUNCTION": 1, + "getHostname": 1, + "RETURNS": 1, + "cHostname": 1, + "THROUGH": 1, + "hostname": 1, + "ECHO.": 1, + "IMPORT": 1, + "UNFORMATTED": 1, + "cHostname.": 2, + "CLOSE.": 1, + "FUNCTION.": 1, + "PROCEDURE": 1, + "newState": 2, + "INTEGER.": 1, + "pstring": 2, + "CHARACTER.": 1, + "newState.": 1, + "IF": 1, + "HELO": 1, + "r": 11, + "MAIL": 1, + "hardcoded@gmail.com": 4, + "RCPT": 1, + "TO": 3, + "DATA": 1, + "Test": 2, + "Body": 1, + "QUIT": 1, + "Email": 2, + "has": 2, + "been": 2, + "accepted": 1, + "for": 1, + "delivery.": 1, + "aborted": 1, + "PROCEDURE.": 1, + "email.Util": 1, + "FINAL": 1, + "PRIVATE": 1, + "STATIC": 5, + "cMonthMap": 2, + "EXTENT": 1, + "INITIAL": 1, + "ABLDateTimeToEmail": 3, + "ipdttzDateTime": 6, + "DATETIME": 3, + "TZ": 2, + "STRING": 5, + "DAY": 1, + "MONTH": 1, + "YEAR": 1, + "TRUNCATE": 2, + "MTIME": 1, + "/": 2, + "ABLTimeZoneToString": 2, + "TIMEZONE": 1, + "ipdtDateTime": 2, + "ipiTimeZone": 3, + "ABSOLUTE": 1, + "MODULO": 1, + "LONGCHAR": 4, + "ConvertDataToBase64": 1, + "iplcNonEncodedData": 2, + "lcPreBase64Data": 4, + "lcPostBase64Data": 3, + "mptrPostBase64Data": 3, + "i": 3, + "COPY": 1, + "LOB": 1, + "FROM": 1, + "mptrPostBase64Data.": 1, + "BASE64": 1, + "ENCODE": 1, + "SET": 1, + "SIZE": 1, + "DO": 1, + "LENGTH": 1, + "BY": 1, + "SUBSTRING": 1, + "CHR": 2, + "END.": 1, + "lcPostBase64Data.": 1, + "MESSAGE": 1 + }, + "PHP": { + "<": 5, + "php": 6, + "/*": 188, + "*/": 198, + "namespace": 9, + "Symfony": 25, + "Component": 25, + "Console": 18, + ";": 744, + "use": 26, + "Input": 6, + "InputInterface": 3, + "ArgvInput": 2, + "ArrayInput": 3, + "InputDefinition": 1, + "InputOption": 1, + "InputArgument": 1, + "Output": 5, + "OutputInterface": 5, + "ConsoleOutput": 2, + "ConsoleOutputInterface": 2, + "Command": 7, + "HelpCommand": 1, + "ListCommand": 1, + "Helper": 3, + "HelperSet": 2, + "FormatterHelper": 1, + "DialogHelper": 1, + "class": 18, + "Application": 2, + "{": 521, + "private": 17, + "commands": 16, + "wantHelps": 2, + "false": 70, + "runningCommand": 3, + "name": 107, + "version": 6, + "catchExceptions": 3, + "autoExit": 3, + "definition": 3, + "helperSet": 6, + "public": 150, + "function": 124, + "__construct": 8, + "(": 1253, + ")": 1251, + "this": 498, + "-": 645, + "true": 84, + "array": 159, + "getDefaultHelperSet": 1, + "getDefaultInputDefinition": 1, + "foreach": 51, + "getDefaultCommands": 1, + "as": 57, + "command": 18, + "add": 2, + "}": 503, + "run": 2, + "input": 24, + "null": 106, + "output": 39, + "if": 237, + "new": 28, + "try": 3, + "statusCode": 14, + "doRun": 2, + "catch": 2, + "Exception": 2, + "e": 7, + "throw": 6, + "instanceof": 7, + "renderException": 2, + "getErrorOutput": 1, + "else": 25, + "getCode": 1, + "is_numeric": 7, + "&&": 59, + "//": 12, + "exit": 12, + "return": 153, + "getCommandName": 1, + "hasParameterOption": 7, + "setDecorated": 2, + "elseif": 25, + "setInteractive": 2, + "function_exists": 3, + "getHelperSet": 3, + "has": 2, + "inputStream": 2, + "get": 3, + "getInputStream": 1, + "posix_isatty": 1, + "setVerbosity": 2, + "VERBOSITY_QUIET": 1, + "VERBOSITY_VERBOSE": 1, + "writeln": 1, + "getLongVersion": 2, + "find": 4, + "setHelperSet": 1, + "getDefinition": 1, + "getHelp": 2, + "messages": 5, + "<comment>": 6, + "Usage": 1, + "</comment>": 6, + "Options": 1, + "%": 23, + "s": 27, + "<info>": 6, + "</info>": 6, + "UNKNOWN": 2, + "Tool": 1, + "The": 13, + "does": 2, + "not": 10, + "exist.": 2, + "help": 3, + "There": 1, + "are": 9, + "no": 3, + "defined": 1, + "in": 6, + "the": 47, + "namespace.": 1, + "is": 14, + "ambiguous": 3, + ".": 132, + "defined.": 1, + "t": 20, + "unique": 4, + "names": 3, + "abbrevs": 13, + "asText": 1, + "raw": 2, + "all": 16, + "findNamespace": 1, + "width": 5, + "strlen": 5, + "getName": 3, + "+": 12, + "sortCommands": 2, + "space": 1, + "sprintf": 3, + "getDescription": 1, + "implode": 1, + "PHP_EOL": 1, + "Available": 1, + "_global": 1, + ".0": 2, + "UTF": 2, + "symfony": 1, + "namespaces": 1, + "id": 35, + "mb_strlen": 1, + "<error>": 1, + "</error>": 1, + "trace": 1, + "file": 4, + "n/a": 4, + "line": 4, + "args": 13, + "type": 62, + "at": 2, + "PHP_WINDOWS_VERSION_BUILD": 2, + "ANSICON": 2, + "d": 10, + "x.*": 1, + "x": 2, + "to": 26, + "execute": 2, + "h": 1, + "Display": 2, + "message.": 2, + "quiet": 1, + "q": 1, + "Do": 2, + "any": 6, + "verbose": 1, + "v": 3, + "Increase": 1, + "verbosity": 1, + "of": 25, + "messages.": 1, + "V": 1, + "application": 1, + "version.": 1, + "ansi": 2, + "Force": 1, + "ANSI": 2, + "output.": 2, + "Disable": 1, + "interaction": 1, + "n": 10, + "ask": 1, + "interactive": 1, + "question.": 1, + "available": 1, + "suppressing": 1, + "error": 1, + "*": 73, + "@return": 7, + "string": 8, + "getSttyColumns": 1, + "descriptorspec": 2, + "process": 3, + "proc_open": 1, + "pipes": 4, + "is_resource": 1, + "info": 2, + "stream_get_contents": 1, + "fclose": 2, + "proc_close": 1, + "namespacedCommands": 5, + "key": 30, + "extractNamespace": 1, + "ksort": 2, + "&": 9, + "getAbbreviationSuggestions": 1, + "count": 22, + "limit": 7, + "parts": 2, + "array_slice": 4, + "findAlternativeCommands": 1, + "callback": 5, + "item": 9, + "findAlternatives": 3, + "findAlternativeNamespace": 1, + "getNamespaces": 1, + "collection": 3, + "alternatives": 6, + "call_user_func": 1, + "lev": 6, + "levenshtein": 2, + "<=>": 2, + "3": 1, + "strpos": 9, + "values": 9, + "/": 12, + "||": 31, + "value": 37, + "asort": 1, + "array_keys": 7, + "BrowserKit": 1, + "DomCrawler": 6, + "Crawler": 2, + "Link": 2, + "Form": 2, + "Process": 1, + "PhpProcess": 1, + "abstract": 1, + "Client": 1, + "protected": 37, + "history": 5, + "cookieJar": 5, + "server": 7, + "request": 56, + "response": 22, + "crawler": 1, + "insulated": 6, + "redirect": 6, + "followRedirects": 4, + "History": 2, + "CookieJar": 2, + "setServerParameters": 2, + "followRedirect": 2, + "Boolean": 2, + "insulate": 2, + "class_exists": 1, + "RuntimeException": 1, + "array_merge": 9, + "setServerParameter": 1, + "getServerParameter": 1, + "default": 8, + "HTTP_REFERER": 1, + "HTTP_HOST": 3, + "HTTPS": 2, + "https": 1, + "Location": 1, + "Content": 1, + "Type": 1, + "TMPDIR": 1, + "TEMP": 1, + "O": 1, + "OUTPUT": 2, + "ERROR": 1, + "To": 1, + "requests": 1, + "you": 4, + "need": 1, + "override": 2, + "getScript": 1, + "method.": 2, + "was": 1, + "redirected.": 1, + "http": 19, + "s/": 1, + "localhost": 1, + "#": 3, + "/#.*": 1, + ".*": 4, + "/.*": 1, + "currentUri": 3, + "uri": 1, + "requestFromRequest": 1, + "Request": 1, + "changeHistory": 2, + "getMethod": 2, + "getUri": 1, + "getParameters": 1, + "getFiles": 2, + "getServer": 1, + "getContent": 1, + "<?php>": 3, + "CakePHP": 6, + "tm": 6, + "Rapid": 2, + "Development": 2, + "Framework": 2, + "cakephp": 4, + "org": 10, + "Copyright": 4, + "2005": 4, + "2012": 4, + "Cake": 7, + "Software": 4, + "Foundation": 4, + "Inc": 4, + "cakefoundation": 4, + "Licensed": 2, + "under": 2, + "MIT": 4, + "License": 4, + "Redistributions": 2, + "files": 5, + "must": 2, + "retain": 2, + "above": 2, + "copyright": 4, + "notice": 2, + "link": 2, + "Project": 2, + "package": 2, + "Controller": 4, + "since": 2, + "0": 4, + "2": 2, + "9": 1, + "license": 4, + "www": 2, + "opensource": 2, + "licenses": 2, + "mit": 2, + "App": 20, + "uses": 49, + "CakeResponse": 2, + "Network": 1, + "ClassRegistry": 9, + "Utility": 6, + "ComponentCollection": 2, + "View": 9, + "CakeEvent": 9, + "Event": 6, + "CakeEventListener": 4, + "CakeEventManager": 5, + "controller": 5, + "for": 12, + "organization": 1, + "business": 1, + "logic": 2, + "Provides": 1, + "basic": 1, + "functionality": 1, + "such": 2, + "rendering": 1, + "views": 1, + "inside": 1, + "layouts": 1, + "automatic": 1, + "model": 20, + "availability": 1, + "redirection": 4, + "callbacks": 17, + "and": 15, + "more": 2, + "Controllers": 2, + "should": 3, + "provide": 1, + "a": 33, + "number": 1, + "action": 11, + "methods": 8, + "These": 1, + "on": 7, + "that": 6, + "prefixed": 1, + "with": 14, + "_": 2, + "part": 2, + "Each": 1, + "serves": 1, + "an": 5, + "endpoint": 1, + "performing": 2, + "specific": 1, + "resource": 1, + "or": 16, + "resources": 1, + "For": 4, + "example": 2, + "adding": 1, + "editing": 1, + "object": 12, + "listing": 1, + "set": 9, + "objects": 5, + "You": 3, + "can": 5, + "access": 2, + "parameters": 2, + "using": 3, + "contains": 1, + "POST": 2, + "GET": 2, + "FILES": 1, + "were": 2, + "request.": 2, + "After": 1, + "required": 2, + "actions": 2, + "controllers": 3, + "responsible": 1, + "creating": 1, + "response.": 2, + "This": 2, + "usually": 1, + "takes": 1, + "form": 4, + "generated": 1, + "possibly": 1, + "another": 2, + "action.": 2, + "In": 1, + "either": 1, + "case": 13, + "allows": 2, + "manipulate": 1, + "aspects": 1, + "created": 6, + "by": 6, + "Dispatcher": 1, + "based": 3, + "routing.": 1, + "By": 1, + "conventional": 1, + "names.": 1, + "/posts/index": 1, + "maps": 1, + "PostsController": 1, + "index": 9, + "re": 1, + "map": 1, + "urls": 1, + "Router": 5, + "connect": 1, + "@package": 2, + "Cake.Controller": 1, + "@property": 8, + "AclComponent": 1, + "Acl": 1, + "AuthComponent": 1, + "Auth": 1, + "CookieComponent": 1, + "Cookie": 1, + "EmailComponent": 1, + "Email": 1, + "PaginatorComponent": 1, + "Paginator": 4, + "RequestHandlerComponent": 1, + "RequestHandler": 1, + "SecurityComponent": 1, + "Security": 1, + "SessionComponent": 1, + "Session": 1, + "@link": 4, + "//book.cakephp.org/2.0/en/controllers.html": 1, + "extends": 3, + "Object": 4, + "implements": 3, + "helpers": 1, + "_responseClass": 1, + "viewPath": 3, + "layoutPath": 1, + "viewVars": 3, + "view": 5, + "layout": 5, + "autoRender": 6, + "autoLayout": 2, + "Components": 4, + "components": 1, + "viewClass": 10, + "ext": 1, + "plugin": 31, + "cacheAction": 1, + "passedArgs": 2, + "scaffold": 2, + "modelClass": 25, + "modelKey": 2, + "validationErrors": 13, + "_mergeParent": 4, + "_eventManager": 12, + "substr": 2, + "get_class": 3, + "Inflector": 13, + "singularize": 1, + "underscore": 3, + "childMethods": 2, + "get_class_methods": 3, + "parentMethods": 2, + "array_diff": 1, + "CakeRequest": 6, + "setRequest": 2, + "parent": 6, + "__isset": 2, + "switch": 3, + "is_array": 33, + "list": 28, + "pluginSplit": 11, + "loadModel": 3, + "__get": 2, + "isset": 61, + "params": 34, + "paginate": 2, + "base": 4, + "here": 1, + "webroot": 1, + "data": 86, + "bare": 1, + "named": 1, + "pass": 1, + "@param": 10, + "void": 1, + "camelize": 2, + "array_key_exists": 4, + "empty": 53, + "invokeAction": 1, + "method": 31, + "ReflectionMethod": 2, + "_isPrivateAction": 2, + "PrivateActionException": 1, + "invokeArgs": 1, + "ReflectionException": 1, + "_getScaffold": 2, + "MissingActionException": 1, + "privateAction": 4, + "isPublic": 1, + "in_array": 14, + "prefixes": 4, + "prefix": 2, + "explode": 4, + "Scaffold": 1, + "_mergeControllerVars": 2, + "pluginController": 9, + "pluginDot": 4, + "mergeParent": 2, + "is_subclass_of": 3, + "pluginVars": 3, + "appVars": 6, + "merge": 7, + "_mergeVars": 5, + "get_class_vars": 2, + "array_unshift": 1, + "_mergeUses": 2, + "lifecycle.": 1, + "own": 1, + "listener": 1, + "implementedEvents": 2, + "constructClasses": 1, + "init": 4, + "current": 3, + "getEventManager": 9, + "attach": 4, + "startupProcess": 1, + "dispatch": 7, + "shutdownProcess": 1, + "httpCodes": 3, + "code": 15, + "MissingModelException": 1, + "url": 21, + "status": 20, + "extract": 7, + "EXTR_OVERWRITE": 3, + "event": 20, + "//TODO": 1, + "Remove": 1, + "following": 1, + "when": 2, + "events": 1, + "fully": 1, + "migrated": 1, + "break": 8, + "breakOn": 2, + "collectReturn": 1, + "isStopped": 3, + "result": 5, + "_parseBeforeRedirect": 2, + "session_write_close": 1, + "header": 3, + "is_string": 6, + "codes": 3, + "array_flip": 1, + "send": 1, + "_stop": 1, + "resp": 6, + "compact": 3, + "one": 22, + "two": 6, + "array_combine": 1, + "setAction": 1, + "func_get_args": 5, + "unset": 16, + "call_user_func_array": 4, + "validate": 29, + "errors": 15, + "validateErrors": 1, + "alias": 41, + "invalidFields": 3, + "render": 3, + "className": 32, + "models": 8, + "keys": 7, + "currentModel": 2, + "currentObject": 6, + "getObject": 1, + "is_a": 1, + "location": 2, + "body": 2, + "referer": 5, + "local": 2, + "disableCache": 2, + "flash": 1, + "message": 13, + "pause": 2, + "postConditions": 1, + "op": 3, + "bool": 1, + "exclusive": 3, + "cond": 1, + "LIKE": 2, + "AND": 1, + "Model": 7, + "Model.InnerModel": 1, + "called": 2, + "but": 1, + "before": 8, + "further": 1, + "If": 5, + "returns": 3, + "will": 3, + "continue": 7, + "variables": 2, + "have": 3, + "same": 1, + "meaning": 1, + "mixed": 5, + "A": 2, + "URL": 2, + "pointing": 1, + "within": 1, + "app": 1, + "absolute": 1, + "integer": 1, + "Optional": 1, + "HTTP": 1, + "eg": 1, + "boolean": 3, + "be": 6, + "after": 7, + "stop": 1, + "used": 3, + "//book.cakephp.org/2.0/en/controllers.html#request": 1, + "life": 1, + "cycle": 1, + "beforeRedirect": 1, + "afterFilter": 1, + "beforeScaffold": 2, + "_beforeScaffold": 1, + "afterScaffoldSave": 2, + "_afterScaffoldSave": 1, + "afterScaffoldSaveError": 2, + "_afterScaffoldSaveError": 1, + "scaffoldError": 2, + "_scaffoldError": 1, + "Field": 3, + "FormField": 1, + "ArrayAccess": 1, + "button": 4, + "fields": 65, + "DOMNode": 2, + "node": 4, + "initialize": 1, + "getFormNode": 1, + "setValues": 1, + "getValues": 2, + "field": 78, + "isDisabled": 2, + "FileFormField": 2, + "hasValue": 1, + "getValue": 2, + "getPhpValues": 1, + "qs": 1, + "http_build_query": 1, + "PUT": 1, + "DELETE": 1, + "PATCH": 1, + "submit": 3, + "image": 2, + "selected": 1, + "ancestor.": 1, + "Unable": 2, + "tag.": 1, + "_root": 1, + "descendant": 3, + "|": 3, + "textarea": 2, + "select": 2, + "checkbox": 1, + "radio": 1, + "Unreachable": 1, + "foo": 2, + "P": 4, + "<base>": 1, + "<extra>": 2, + "<segment>": 1, + "extra": 1, + "segment": 1, + "Malformed": 1, + "path": 3, + "relational": 2, + "mapper": 2, + "DBO": 2, + "backed": 2, + "mapping": 1, + "database": 4, + "tables": 1, + "PHP": 19, + "versions": 1, + "5": 1, + "10": 1, + "Validation": 1, + "String": 1, + "Set": 4, + "BehaviorCollection": 2, + "ModelBehavior": 1, + "ConnectionManager": 4, + "Xml": 2, + "Automatically": 1, + "selects": 1, + "table": 18, + "pluralized": 1, + "lowercase": 1, + "i": 4, + "User": 1, + "least": 1, + "primary": 4, + "key.": 1, + "Cake.Model": 1, + "//book.cakephp.org/2.0/en/models.html": 1, + "useDbConfig": 8, + "useTable": 10, + "displayField": 5, + "schemaName": 2, + "primaryKey": 12, + "_schema": 4, + "validationDomain": 8, + "tablePrefix": 10, + "tableToModel": 3, + "cacheQueries": 1, + "belongsTo": 9, + "hasOne": 4, + "hasMany": 4, + "hasAndBelongsToMany": 10, + "actsAs": 2, + "Behaviors": 8, + "whitelist": 7, + "cacheSources": 1, + "findQueryType": 1, + "recursive": 16, + "order": 10, + "virtualFields": 8, + "_associationKeys": 2, + "_associations": 10, + "__backAssociation": 18, + "__backInnerAssociation": 1, + "__backOriginalAssociation": 1, + "__backContainableAssociation": 1, + "_insertID": 3, + "_sourceConfigured": 3, + "findMethods": 1, + "ds": 4, + "addObject": 2, + "parentClass": 3, + "get_parent_class": 1, + "tableize": 2, + "_createLinks": 3, + "__call": 1, + "dispatchMethod": 3, + "getDataSource": 9, + "query": 25, + "k": 2, + "relation": 7, + "assocKey": 9, + "dynamic": 2, + "isKeySet": 1, + "AppModel": 1, + "_constructLinkedModel": 2, + "schema": 8, + "hasField": 3, + "setDataSource": 2, + "property_exists": 3, + "bindModel": 1, + "reset": 6, + "assoc": 66, + "assocName": 6, + "unbindModel": 1, + "trim": 1, + "_generateAssociation": 2, + "dynamicWith": 2, + "foreignKey": 15, + "_id": 2, + "associationForeignKey": 8, + "joinTable": 2, + "listSources": 1, + "strtolower": 8, + "found": 2, + "it": 3, + "sets": 1, + "other": 2, + "than": 1, + "copied": 1, + "property": 1, + "object.": 1, + "Returns": 1, + "//book.cakephp.org/2.0/en/models/saving": 1, + "your": 3, + "data.html": 1, + "is_object": 3, + "SimpleXMLElement": 1, + "_normalizeXmlData": 3, + "toArray": 1, + "reverse": 1, + "_setAliasData": 2, + "modelName": 3, + "fieldSet": 3, + "fieldName": 21, + "fieldValue": 7, + "deconstruct": 2, + "getAssociated": 2, + "xml": 2, + "getColumnType": 1, + "useNewDate": 1, + "dateFields": 1, + "timeFields": 2, + "date": 3, + "val": 6, + "datetime": 1, + "timestamp": 1, + "hour": 1, + "min": 1, + "sec": 1, + "format": 5, + "m": 3, + "H": 1, + "describe": 1, + "cake_dev": 1, + "getColumnTypes": 1, + "build": 1, + "data.": 1, + "without": 1, + "implementing": 1, + "table.": 1, + "Name": 1, + "look": 1, + "checkVirtual": 4, + "checks": 1, + "declared": 1, + "virtual": 1, + "indicating": 1, + "whether": 1, + "exists.": 1, + "first": 16, + "exists": 9, + "none": 1, + "isVirtualField": 3, + "hasMethod": 2, + "method_exists": 2, + "getVirtualField": 1, + "create": 2, + "filterKey": 1, + "defaults": 1, + "properties": 3, + "conditions": 26, + "fieldList": 11, + "updated": 4, + "modified": 4, + "formatter": 2, + "now": 1, + "Model.beforeSave": 1, + "length": 2, + "binary": 2, + "Model.afterSave": 1, + "keepExisting": 1, + "counterScope": 3, + "old": 9, + "counterCache": 9, + "_count": 1, + "only": 3, + "SomeModel": 2, + "AssociatedModel": 2, + "otherfield": 2, + "atomic": 22, + "deep": 10, + "Model.beforeDelete": 1, + "Model.afterDelete": 1, + "dependent": 1, + "page": 7, + "offset": 3, + "Thomas": 2, + "Anderson": 2, + "email": 1, + "field3": 1, + "DESC": 1, + "group": 2, + "joins": 2, + "Thought": 2, + "thoughts": 1, + "LEFT": 1, + "person_id": 1, + "Person": 1, + "_find": 2, + "Model.beforeFind": 1, + "calculate": 1, + "expression": 1, + "/count/i": 1, + "keyPath": 2, + "valuePath": 2, + "groupPath": 2, + "then": 1, + "rows": 1, + "them.": 1, + "state": 7, + "Either": 1, + "results": 10, + "_findNeighbors": 1, + "prevVal": 2, + "str_replace": 1, + "return2": 6, + "_findThreaded": 1, + "nest": 1, + "_filterResults": 1, + "modParams": 1, + "resetAssociations": 2, + "isUnique": 1, + "is_bool": 1, + "sql": 1, + "db": 13, + "validates": 2, + "options": 14, + "_validateWithModels": 2, + "array_map": 1, + "behaviorMethods": 3, + "_validate": 2, + "f": 4, + "ruleSet": 10, + "validator": 32, + "valid": 14, + "requiredFail": 4, + "rule": 11, + "ruleParams": 11, + "array_values": 1, + "preg_match": 1, + "Configure": 2, + "read": 2, + "trigger_error": 2, + "__d": 6, + "E_USER_WARNING": 2, + "invalidate": 2, + "association": 4, + "join": 6, + "joinModel": 2, + "newData": 5, + "row": 6, + "isForeignKey": 1, + "foreignKeys": 3, + "escapeField": 1, + "getID": 1, + "getLastInsertID": 1, + "getInsertID": 2, + "setInsertID": 1, + "getNumRows": 1, + "lastNumRows": 1, + "getAffectedRows": 1, + "lastAffected": 1, + "dataSource": 3, + "oldConfig": 3, + "config": 6, + "oldDb": 3, + "getSchemaName": 1, + "MissingConnectionException": 1, + "setSource": 1, + "associations": 1, + "associated": 3, + "array_unique": 1, + "beforeFind": 1, + "queryData": 1, + "afterFind": 1, + "beforeSave": 1, + "afterSave": 1, + "beforeDelete": 1, + "cascade": 1, + "afterDelete": 1, + "beforeValidate": 1, + "onError": 1, + "_clearCache": 1, + "pluralize": 5, + "check": 2, + "clearCache": 1, + "//Will": 1, + "cache": 1, + "deleting": 1, + "php_help": 1, + "arg": 1, + "<h3>": 2, + "About": 1, + "</h3>": 2, + "<p>": 1, + "filter": 8, + "module": 3, + "adds": 2, + "site": 3, + "<a>": 4, + "href=": 4, + "text": 5, + "formats": 1, + "</a>": 4, + "ability": 1, + "content": 1, + "comment": 1, + "general": 1, + "purpose": 1, + "scripting": 1, + "language": 2, + "widely": 1, + "web": 1, + "development": 1, + "which": 2, + "Drupal": 1, + "been": 1, + "developed.": 1, + "information": 1, + "see": 1, + "online": 1, + "handbook": 1, + "entry": 1, + "@filter": 1, + "admin/help/filter": 1, + "@php": 3, + "net": 1, + "//www.php.net": 1, + "//drupal.org/handbook/modules/php/": 1, + "</p>": 1, + "Uses": 1, + "<dl>": 1, + "<dt>": 1, + "Enabling": 1, + "execution": 1, + "</dt>": 1, + "<dd>": 1, + "users": 2, + "proper": 1, + "permissions": 1, + "include": 1, + "custom": 1, + "executed": 1, + "pages": 1, + "processed.": 1, + "While": 1, + "powerful": 1, + "flexible": 1, + "feature": 1, + "trusted": 3, + "user": 2, + "experience": 1, + "significant": 1, + "dangerous": 1, + "security": 1, + "risk": 1, + "hands": 1, + "malicious": 1, + "inexperienced": 1, + "user.": 1, + "Even": 1, + "may": 1, + "accidentally": 1, + "compromise": 1, + "entering": 1, + "malformed": 1, + "incorrect": 1, + "code.": 2, + "Only": 1, + "most": 1, + "granted": 1, + "permission": 1, + "added": 1, + "through": 1, + "carefully": 1, + "examined": 1, + "use.": 1, + "Example": 1, + "snippets": 3, + "Drupal.org.": 1, + "//drupal.org/handbook/customization/php": 1, + "</dd>": 1, + "</dl>": 1, + "settings": 2, + "title": 1, + "Use": 1, + "restrict": 1, + "eval": 4, + "It": 1, + "buffering": 1, + "capture": 1, + "both": 1, + "returned": 2, + "printed": 2, + "text.": 1, + "Unlike": 1, + "we": 2, + "require": 1, + "surrounded": 1, + "tags": 1, + "words": 1, + "evaluate": 1, + "stand": 1, + "alone": 1, + "file.": 1, + "Using": 1, + "wrapper": 1, + "also": 1, + "ensures": 1, + "evaluated": 1, + "overwrite": 1, + "calling": 1, + "unlike": 1, + "regular": 1, + "call.": 1, + "evaluate.": 1, + "containing": 1, + "followed": 1, + "@ingroup": 1, + "php_wrappers": 1, + "php_eval": 1, + "global": 2, + "theme_path": 5, + "theme_info": 3, + "conf": 2, + "old_theme_path": 2, + "drupal_get_path": 1, + "dirname": 1, + "filename": 1, + "ob_start": 1, + "print": 1, + "ob_get_contents": 1, + "ob_end_clean": 1, + "_php_filter_tips": 1, + "long": 2, + "FALSE": 2, + "base_url": 1, + "php_filter_info": 1, + "filters": 2 + }, + "Parrot Assembly": { + "#": 1, + "/usr/bin/env": 1, + "parrot": 1, + ".pcc_sub": 1, + "main": 2, + "say": 1, + "end": 1 + }, + "Parrot Internal Representation": { + "#": 1, + "/usr/bin/env": 1, + "parrot": 1, + ".sub": 1, + "main": 1, + "say": 1, + ".end": 1 + }, + "Perl": { + "package": 7, + "App": 46, + "Ack": 46, + ";": 446, + "use": 47, + "warnings": 10, + "strict": 10, + "File": 20, + "Next": 12, + ".40": 1, + "Plugin": 1, + "Basic": 4, + "head1": 14, + "NAME": 2, + "-": 436, + "A": 2, + "container": 1, + "for": 31, + "functions": 2, + "the": 77, + "ack": 16, + "program": 2, + "VERSION": 12, + "Version": 1, + ".94": 1, + "cut": 19, + "our": 16, + "COPYRIGHT": 3, + "BEGIN": 3, + "{": 376, + "}": 385, + "fh": 7, + "*STDOUT": 2, + "%": 44, + "types": 21, + "type_wanted": 4, + "mappings": 13, + "ignore_dirs": 4, + "input_from_pipe": 4, + "output_to_pipe": 5, + "dir_sep_chars": 5, + "is_cygwin": 3, + "is_windows": 4, + "Spec": 2, + "(": 328, + ")": 322, + "Glob": 1, + "Getopt": 1, + "Long": 1, + "_MTN": 1, + "blib": 1, + "CVS": 2, + "RCS": 1, + "SCCS": 1, + "_darcs": 1, + "_sgbak": 1, + "_build": 1, + "actionscript": 1, + "qw": 15, + "as": 18, + "mxml": 1, + "ada": 2, + "adb": 1, + "ads": 1, + "asm": 2, + "s": 32, + "batch": 1, + "bat": 1, + "cmd": 1, + "binary": 2, + "q": 3, + "Binary": 2, + "files": 15, + "defined": 17, + "by": 3, + "Perl": 2, + "T": 1, + "op": 1, + "default": 4, + "off": 1, + "tt": 2, + "tt2": 1, + "ttml": 1, + "vb": 2, + "bas": 1, + "cls": 1, + "frm": 1, + "ctl": 1, + "resx": 1, + "verilog": 1, + "v": 10, + "vh": 1, + "sv": 1, + "vhdl": 2, + "vhd": 1, + "vim": 2, + "yaml": 2, + "yml": 1, + "xml": 3, + "dtd": 1, + "xsl": 1, + "xslt": 1, + "ent": 1, + "while": 8, + "my": 142, + "type": 35, + "exts": 3, + "each": 3, + "if": 96, + "ref": 19, + "ext": 7, + "@": 15, + "push": 6, + "#": 142, + "_": 56, + "mk": 1, + "mak": 1, + "not": 13, + "t": 12, + "p": 3, + "STDIN": 1, + "O": 2, + "eq": 13, + "/MSWin32/": 1, + "quotemeta": 2, + "catfile": 1, + ".ackrc": 1, + "_ackrc": 1, + "<": 3, + "|": 32, + "after": 12, + "context": 5, + "i": 10, + "B": 6, + "before": 1, + "C": 58, + "a": 41, + "all": 5, + "break": 5, + "color": 15, + "colour": 2, + "match": 11, + "filename": 30, + "lineno": 2, + "column": 2, + "env": 54, + "follow": 2, + "g": 4, + "G": 3, + "group": 2, + "heading": 7, + "h": 2, + "no": 10, + "H": 2, + "with": 12, + "ignore": 4, + "case": 6, + "invert": 3, + "file": 13, + "lines": 2, + "l": 5, + "matches": 5, + "L": 14, + "without": 2, + "m": 4, + "max": 7, + "count": 9, + "n": 26, + "recurse": 3, + "&": 12, + "output": 7, + "pager": 5, + "nopager": 1, + "passthru": 3, + "print0": 3, + "Q": 2, + "literal": 1, + "r": 7, + "R": 3, + "show": 3, + "smart": 1, + "sort": 2, + "u": 5, + "unrestricted": 2, + "w": 1, + "word": 1, + "regexp": 1, + "dirs": 4, + "noignore": 1, + "version": 3, + "help": 6, + "man": 3, + "bundling": 1, + "no_ignore_case": 2, + "See": 4, + "or": 23, + "options.": 2, + "must": 2, + "be": 12, + "greater": 1, + "than": 3, + "zero": 1, + "All": 4, + "line": 7, + "options": 1, + "are": 10, + "invalid.": 1, + "pass_through": 1, + "no_auto_abbrev": 1, + "set": 6, + "c": 3, + "add": 3, + "redefine": 1, + "and": 36, + "die": 7, + "qq": 6, + "{-": 3, + "-}": 3, + "Builtin": 2, + "cannot": 2, + "changed.": 2, + "ne": 5, + "delete_type": 3, + "else": 18, + "exists": 9, + "&&": 30, + "warn": 7, + "Type": 1, + "does": 1, + "exist": 2, + "creating": 1, + "...": 3, + "unless": 18, + "@exts": 4, + "split": 3, + "/": 28, + "s/": 10, + ".//": 1, + "||": 18, + "e": 7, + "Cannot": 2, + "append": 1, + "to": 42, + ".": 54, + "return": 60, + "head2": 16, + "Removes": 1, + "from": 7, + "internal": 1, + "structures": 1, + "containing": 5, + "information": 1, + "type_wanted.": 1, + "sub": 94, + "shift": 74, + "Internal": 1, + "error": 2, + "delete": 4, + "builtin": 2, + "keys": 6, + "grep": 8, + "ignoredir_filter": 3, + "Standard": 1, + "filter": 6, + "pass": 2, + "<File::Next>": 1, + "descend_filter.": 1, + "It": 3, + "returns": 8, + "true": 4, + "directory": 3, + "is": 29, + "any": 1, + "of": 19, + "ones": 1, + "we": 4, + "know": 1, + "want": 5, + "ignore.": 1, + "dir": 3, + "remove_dir_sep": 2, + "path": 16, + "This": 7, + "removes": 1, + "trailing": 1, + "separator": 2, + "there": 1, + "one": 5, + "its": 1, + "argument": 1, + "//": 3, + "filetypes": 4, + "Returns": 27, + "list": 3, + "that": 10, + "I": 35, + "<$filename>": 1, + "could": 2, + "be.": 1, + "For": 1, + "example": 1, + "F": 2, + "<foo.pod>": 1, + "The": 10, + "filetype": 1, + "will": 3, + "<undef>": 1, + "can": 10, + "it": 21, + "skipped": 2, + "something": 1, + "should": 3, + "avoid": 1, + "searching": 2, + "even": 3, + "under": 3, + "a.": 1, + "constant": 1, + "TEXT": 8, + "basename": 4, + ".*": 1, + "is_searchable": 4, + "lc_basename": 4, + "lc": 2, + "+": 92, + "o": 11, + "open": 2, + "header": 11, + "<$fh>": 1, + "close": 4, + "b": 4, + "ruby": 1, + "lua": 1, + "erl": 1, + "hp": 1, + "ython": 1, + "d": 6, + "d.": 1, + "*": 8, + "b/": 2, + "ba": 1, + "k": 3, + "z": 1, + "sh": 1, + "/i": 2, + "search": 2, + "false": 2, + "No": 2, + "regular": 1, + "expression": 4, + "found.": 2, + "regex": 13, + "www": 1, + "U": 1, + "y": 5, + "tr/": 1, + "x": 4, + "w/": 1, + "nOo_/": 1, + "_thpppt": 2, + "_get_thpppt": 1, + "print": 16, + "exit": 4, + "_bar": 2, + "<<": 7, + "*I": 1, + "#.": 3, + ".#": 3, + "I#": 1, + "#I": 5, + "#7": 2, + "results.": 1, + "on": 9, + "when": 6, + "used": 4, + "interactively": 3, + "Print": 1, + "between": 1, + "results": 6, + "different": 1, + "files.": 2, + "Same": 4, + "nogroup": 1, + "noheading": 1, + "nobreak": 1, + "Highlight": 1, + "matching": 5, + "text": 2, + "redirected": 1, + "Windows": 1, + "COLOR": 3, + "Set": 1, + "filenames": 1, + "numbers.": 1, + "flush": 2, + "Flush": 1, + "immediately": 1, + "non": 1, + "goes": 1, + "pipe": 2, + "finding": 1, + "f": 5, + "Only": 1, + "found": 3, + "searching.": 1, + "PATTERN": 1, + "specified.": 1, + "REGEX": 1, + "but": 5, + "only": 4, + "REGEX.": 1, + "Sort": 1, + "lexically.": 1, + "Print/search": 1, + "handle": 1, + "do": 5, + "g/": 1, + "G.": 1, + "Show": 1, + "which": 7, + "has.": 1, + "inclusion/exclusion": 1, + "searched": 2, + "Ignores": 1, + ".svn": 1, + "other": 2, + "ignored": 2, + "directories": 3, + "name": 15, + "Add/Remove": 1, + "Recurse": 1, + "into": 1, + "subdirectories": 1, + "END_OF_HELP": 2, + "once": 1, + "VMS": 1, + "vd": 1, + "Term": 3, + "ANSIColor": 4, + "black": 2, + "on_yellow": 2, + "bold": 4, + "green": 2, + "yellow": 2, + "printing": 1, + "qr/": 6, + "opt": 69, + "last_output_line": 3, + "any_output": 5, + "before_context": 5, + "after_context": 4, + "keep_context": 4, + "@before": 8, + "before_starts_at_line": 5, + "res": 13, + "next_text": 3, + "has_lines": 2, + "m/": 2, + "regex/": 4, + "next": 3, + "print_match_or_context": 5, + "elsif": 4, + "last": 7, + "nmatches": 21, + "show_filename": 16, + "context_overall_output_count": 3, + "print_blank_line": 1, + "@lines": 2, + "is_binary": 1, + "is_match": 4, + "starting_line_no": 1, + "match_start": 3, + "match_end": 2, + "Prints": 3, + "out": 1, + "around": 1, + "match.": 1, + "line_no": 6, + "show_column": 2, + "display_filename": 4, + "colored": 3, + "ENV": 5, + "ACK_COLOR_FILENAME": 1, + "print_first_filename": 1, + "sep": 4, + "output_func": 4, + "@_": 25, + "print_separator": 1, + "print_filename": 1, + "display_line_no": 2, + "ACK_COLOR_LINENO": 1, + "print_line_no": 1, + "regex/go": 1, + "regex/Term": 1, + "substr": 1, + "ACK_COLOR_MATCH": 1, + "/eg": 1, + "z/": 1, + "K/": 1, + "z//": 1, + "print_column_no": 1, + "TOTAL_COUNT_SCOPE": 1, + "total_count": 4, + "get_total_count": 1, + "reset_total_count": 2, + "search_and_list": 3, + "Optimized": 1, + "lines.": 1, + "ors": 6, + "show_total": 3, + "print_count": 2, + "print_count0": 1, + "filetypes_supported_set": 2, + "True/False": 1, + "filetypes_supported": 1, + "print_files": 2, + "iter": 8, + "returned": 1, + "iterator": 2, + "<$regex>": 1, + "If": 1, + "<$one>": 1, + "stop": 1, + "first.": 1, + "record": 1, + "<$ors>": 1, + "defaults": 2, + "<\"\\n\">": 1, + "defines": 1, + "what": 6, + "filename.": 1, + "show_types": 1, + "join": 1, + "print_files_with_matches": 2, + "where": 5, + "was": 6, + "repo": 3, + "Repository": 3, + "new": 24, + "next_resource": 2, + "Not": 1, + "working": 1, + "here": 2, + "yet": 1, + "thru": 1, + "unchanged": 1, + "@results": 5, + "pattern": 2, + "eval": 3, + "Win32": 3, + "HIDDEN": 1, + "SYSTEM": 1, + "GetAttributes": 1, + "attr": 2, + "@files": 2, + "get_starting_points": 2, + "@ARGV": 6, + "reference": 14, + "starting": 1, + "argv": 4, + "@what": 7, + "expand_filenames": 1, + "reslash": 1, + "start_point": 3, + "_match": 4, + "target": 3, + "invert_flag": 2, + "get_iterator": 2, + "Return": 1, + "starting_point": 5, + "map": 5, + "g_regex": 2, + "undef": 2, + "file_filter": 5, + "g_regex/": 3, + "invert_file_match": 3, + "is_interesting": 2, + "descend_filter": 3, + "error_handler": 1, + "msg": 2, + "sort_files": 2, + "follow_symlinks": 1, + "set_up_pager": 1, + "command": 4, + "Unable": 1, + "going": 1, + "pipe.": 1, + "exit_from_ack": 2, + "Exit": 1, + "application": 6, + "correct": 1, + "code.": 1, + "otherwise": 1, + "number": 1, + "handed": 1, + "in": 18, + "argument.": 1, + "rc": 5, + "LICENSE": 2, + "Copyright": 1, + "Andy": 1, + "Lester.": 1, + "free": 2, + "software": 2, + "you": 17, + "redistribute": 2, + "and/or": 2, + "modify": 2, + "terms": 2, + "Artistic": 1, + "License": 1, + "v2.0.": 1, + "Plack": 7, + "Request": 4, + ".008_001": 1, + "HTTP": 8, + "Headers": 6, + "Carp": 6, + "Hash": 4, + "MultiValue": 4, + "Body": 1, + "Upload": 1, + "TempBuffer": 1, + "URI": 15, + "Escape": 4, + "_deprecated": 8, + "alt": 1, + "method": 9, + "caller": 1, + "carp": 2, + "class": 6, + "croak": 2, + "required": 2, + "bless": 6, + "address": 5, + "REMOTE_ADDR": 1, + "remote_host": 3, + "REMOTE_HOST": 1, + "protocol": 3, + "SERVER_PROTOCOL": 1, + "REQUEST_METHOD": 1, + "port": 1, + "SERVER_PORT": 1, + "user": 3, + "REMOTE_USER": 1, + "request_uri": 2, + "REQUEST_URI": 2, + "path_info": 3, + "PATH_INFO": 3, + "script_name": 2, + "SCRIPT_NAME": 1, + "scheme": 5, + "secure": 4, + "body": 18, + "input": 5, + "content_length": 3, + "CONTENT_LENGTH": 1, + "content_type": 3, + "CONTENT_TYPE": 1, + "session": 3, + "session_options": 2, + "logger": 4, + "cookies": 8, + "self": 92, + "HTTP_COOKIE": 3, + "@pairs": 2, + "pair": 4, + "key": 10, + "value": 5, + "uri_unescape": 1, + "query_parameters": 5, + "uri": 3, + "query_form": 1, + "content": 7, + "_parse_request_body": 3, + "written": 1, + "through": 2, + "headers": 35, + "field": 5, + "HTTPS": 1, + "_//": 1, + "CONTENT": 1, + "COOKIE": 1, + "content_encoding": 4, + "referer": 2, + "user_agent": 2, + "body_parameters": 4, + "parameters": 8, + "query": 4, + "flatten": 2, + "uploads": 4, + "hostname": 1, + "url_scheme": 1, + "params": 2, + "query_params": 1, + "body_params": 1, + "cookie": 5, + "param": 1, + "wantarray": 2, + "get_all": 3, + "upload": 1, + "raw_uri": 1, + "base": 11, + "path_query": 1, + "_uri_base": 1, + "path_escape_class": 1, + "uri_escape": 1, + "psgi.url_scheme": 1, + "plack.request.body": 2, + "plack.request.upload": 2, + "plack.request.http.body": 1, + "psgix.input.buffered": 2, + "psgi.input": 1, + "like": 3, + "doing": 1, + "so": 4, + "mod_perl": 1, + "re": 2, + "writing": 2, + "web": 1, + "framework": 1, + "then": 1, + "work": 2, + "expect": 2, + "to.": 1, + "Creates": 1, + "request": 9, + "object.": 5, + "ATTRIBUTES": 1, + "over": 1, + "item": 24, + "shared": 1, + "PSGI": 3, + "environment": 4, + "hash": 12, + "reference.": 3, + "this": 10, + "passes": 1, + "during": 1, + "whole": 1, + "request/response": 1, + "cycle.": 1, + "IP": 2, + "client": 1, + "<REMOTE_ADDR>": 1, + "remote": 1, + "host": 1, + "<REMOTE_HOST>": 1, + "client.": 1, + "may": 2, + "empty": 2, + "have": 3, + "get": 6, + "using": 4, + "<address>": 1, + "resolve": 1, + "your": 8, + "own.": 1, + "Contains": 1, + "<GET>": 1, + "<POST>": 1, + "<HEAD>": 1, + "etc": 1, + "HTTP/1.0": 1, + "HTTP/1.1": 1, + "current": 3, + "request.": 4, + "raw": 1, + "undecoded": 2, + "path.": 3, + "You": 4, + "probably": 1, + "<NOT>": 1, + "dispatch": 1, + "requests.": 3, + "<PATH_INFO>": 2, + "environment.": 2, + "Use": 1, + "local": 1, + "Similar": 1, + "<path_info>": 3, + "</>": 3, + "empty.": 1, + "In": 2, + "words": 1, + "virtual": 1, + "req": 11, + "</\"DISPATCHING\">": 1, + "details.": 1, + "<SCRIPT_NAME>": 3, + "absolute": 2, + "hosted.": 1, + "<http>": 1, + "<https>": 1, + "indicating": 1, + "whether": 1, + "connection": 1, + "https": 1, + "<psgi.input>": 1, + "handle.": 1, + "optional": 3, + "<psgix.session>": 1, + "hash.": 3, + "When": 2, + "retrieve": 1, + "store": 1, + "per": 1, + "data": 1, + "<psgix.session.options>": 1, + "<psgix.logger>": 1, + "code": 9, + "supposed": 1, + "send": 1, + "log": 1, + "message": 2, + "level": 1, + "cookies.": 1, + "Values": 1, + "strings": 1, + "sent": 1, + "clients": 1, + "decoded.": 1, + "string": 4, + "GET": 2, + "parameters.": 2, + "<Hash::MultiValue>": 5, + "posted": 1, + "POST": 4, + "As": 1, + "<query_parameters>": 2, + "merged": 1, + "raw_body": 1, + "an": 7, + "byte": 1, + "object": 2, + "constructed": 1, + "various": 1, + "values": 3, + "such": 5, + "<QUERY_STRING>": 1, + "<HTTP_HOST>": 1, + "<SERVER_NAME>": 1, + "<SERVER_PORT>": 1, + "Every": 2, + "time": 3, + "called": 2, + "cloned": 2, + "<uri>": 1, + "contains": 2, + "up": 2, + "hosted": 1, + "at.": 1, + "<REMOTE_USER>": 1, + "foo": 7, + "need": 1, + "ugly": 1, + "unsafe": 1, + "anymore.": 1, + "And": 1, + "explicitly": 1, + "multiple": 3, + "same": 2, + "call": 4, + "<get_all>": 1, + "@foo": 1, + "also": 2, + "<get_one>": 1, + "always": 4, + "parameter": 2, + "independent": 1, + "unlike": 1, + "<param>": 1, + "<mixed>": 1, + ".05": 1, + "later": 1, + "<traditional>": 1, + "mixed": 1, + "either": 1, + "scalar": 1, + "array": 4, + "depending": 2, + "might": 2, + "useful": 1, + "already": 1, + "deal": 1, + "ugliness.": 1, + "PARSING": 1, + "BODY": 1, + "MULTIPLE": 1, + "OBJECTS": 1, + "methods": 5, + "parse": 1, + "<content>": 1, + "<body_parameters>": 2, + "<uploads>": 2, + "carefully": 1, + "coded": 1, + "save": 1, + "parsed": 1, + "well": 1, + "temporary": 1, + "buffer": 1, + "them": 2, + "times": 2, + "create": 1, + "objects": 3, + "they": 1, + "safely": 1, + "won": 1, + "gives": 1, + "action": 1, + "Note": 1, + "give": 1, + "assume": 1, + "prefix": 1, + "building": 1, + "URLs": 1, + "templates": 1, + "redirections.": 1, + "/logout": 1, + "ll": 1, + "full": 1, + "</app/logout?signoff=1>": 1, + "INCOMPATIBILITIES": 1, + ".99": 1, + "many": 1, + "utility": 1, + "removed": 2, + "deprecated": 2, + "most": 1, + "made": 1, + "read": 1, + "only.": 1, + "following": 1, + "<hostname>": 1, + "<url_scheme>": 1, + "<params>": 1, + "<query_params>": 1, + "<body_params>": 1, + "<cookie>": 1, + "<raw_uri>": 1, + "They": 1, + "major": 2, + "release.": 1, + "related": 1, + "<parameters>": 1, + "now": 3, + "rather": 2, + "<scalar>": 1, + "insecure.": 1, + "more": 1, + "about": 1, + "change.": 1, + "had": 1, + "bug": 1, + "document": 2, + "mismatching.": 1, + "suggesting": 1, + "returning": 1, + "updated": 1, + "alias": 1, + "<CGI::Simple::Cookie>": 1, + "anymore": 1, + "means": 2, + "<CAN>": 1, + "NOT": 1, + "serialized.": 1, + "encoding": 1, + "decoding": 1, + "totally": 1, + "framework.": 1, + "Also": 1, + "<cookies>": 1, + "<strings>": 1, + "CGI": 1, + "Simple": 1, + "Cookie": 1, + "longer": 1, + "write": 1, + "wacky": 1, + "instead": 1, + "simply": 1, + "AUTHORS": 1, + "Tatsuhiko": 2, + "Miyagawa": 2, + "Kazuhiro": 1, + "Osawa": 1, + "Tokuhiro": 2, + "Matsuno": 2, + "SEE": 3, + "ALSO": 3, + "<Plack::Response>": 1, + "<HTTP::Request>": 1, + "<Catalyst::Request>": 1, + "library": 1, + "itself.": 1, + "Response": 1, + "Util": 3, + "Accessor": 1, + "status": 9, + "Scalar": 2, + "location": 3, + "redirect": 1, + "url": 2, + "finalize": 3, + "clone": 1, + "_finalize_cookies": 1, + "/chr": 1, + "/ge": 1, + "//g": 1, + "header_field_names": 1, + "_body": 2, + "blessed": 1, + "overload": 1, + "Method": 1, + "domain": 2, + "expires": 2, + "HttpOnly": 1, + "GMT": 1, + "Hello": 2, + "World": 2, + "response": 2, + "back": 1, + "AUTHOR": 1, + "<Plack::Request>": 1, + "/usr/bin/env": 1, + "perl": 5, + "MAIN": 1, + "main": 3, + "env_is_usable": 3, + "th": 1, + "pt": 1, + "bar": 3, + "unshift": 1, + "read_ackrc": 1, + "@keys": 2, + "ACK_/": 1, + "@ENV": 1, + "load_colors": 1, + "ACK_SWITCHES": 1, + "show_help": 1, + "get_command_line_options": 1, + "build_regex": 1, + "nargs": 2, + "specify": 1, + "both": 1, + "g.": 1, + "Defining": 2, + "own": 2, + "less": 2, + "provides": 1, + "simple": 1, + "compilation": 1, + "mode": 1, + "has": 1, + "ability": 1, + "guess": 1, + "based": 1, + "mode.": 1, + "spend": 1, + "day": 1, + "mostly": 1, + "inside": 1, + "TextMate": 2, + "built": 1, + "find": 3, + "project": 1, + "sucks": 1, + "large": 1, + "projects.": 1, + "So": 1, + "hacked": 1, + "ack.": 1, + "result": 1, + "Search": 1, + "Project": 1, + "<http://www.simplicidade.org/notes/archives/2008/03/search_in_proje.html>": 1, + "Invalid": 2, + "option": 1, + "passed": 1, + "badkey": 1, + "dir/": 1, + "negative": 1, + "val": 1, + "ignoring": 1, + "Permission": 1, + "denied": 1, + "str": 3, + "I#7#I": 1, + "/I": 1, + "*/": 1, + "*.*s": 1, + "end": 1, + "END_OF_VERSION": 1, + "Matched": 1, + "hidden": 1, + "@ISA": 1, + "nexted": 3, + "Resource": 1, + "examples/benchmarks/fib.pl": 1, + "Fibonacci": 2, + "Benchmark": 1, + "SYNOPSIS": 1, + "DESCRIPTION": 1, + "Calculates": 1, + "Number": 1, + "<n>": 1, + "unspecified": 1, + "fib": 4, + "N": 2, + "<examples/benchmarks/fib.pir>": 1, + "..": 3, + "Foo": 9, + "Bar": 1, + "@array": 1, + "/usr/local/bin/perl": 1, + "/usr/bin/perl": 1 + }, + "PowerShell": { + "#": 2, + "Write": 2, + "-": 2, + "Host": 2, + "function": 1, + "hello": 1, + "(": 1, + ")": 1, + "{": 1, + "}": 1 + }, + "Prolog": { + "/*": 2, + "*/": 2, + "male": 3, + "(": 10, + "john": 2, + ")": 10, + ".": 7, + "peter": 3, + "female": 2, + "vick": 2, + "christie": 3, + "parents": 4, + "brother": 1, + "X": 3, + "Y": 2, + "-": 1, + "F": 2, + "M": 2 + }, + "Python": { + "from": 30, + "__future__": 2, + "import": 38, + "unicode_literals": 1, + "copy": 1, + "sys": 1, + "functools": 1, + "update_wrapper": 2, + "future_builtins": 1, + "zip": 3, + "django.db.models.manager": 1, + "#": 171, + "django.conf": 1, + "settings": 1, + "django.core.exceptions": 1, + "(": 418, + "ObjectDoesNotExist": 2, + "MultipleObjectsReturned": 2, + "FieldError": 4, + "ValidationError": 9, + "NON_FIELD_ERRORS": 3, + ")": 418, + "django.core": 1, + "validators": 1, + "django.db.models.fields": 1, + "AutoField": 2, + "FieldDoesNotExist": 1, + "django.db.models.fields.related": 1, + "ManyToOneRel": 3, + "OneToOneField": 3, + "add_lazy_relation": 2, + "django.db": 1, + "router": 1, + "transaction": 1, + "DatabaseError": 3, + "DEFAULT_DB_ALIAS": 2, + "django.db.models.query": 1, + "Q": 1, + "django.db.models.query_utils": 2, + "DeferredAttribute": 3, + "django.db.models.deletion": 1, + "Collector": 2, + "django.db.models.options": 1, + "Options": 2, + "django.db.models": 1, + "signals": 1, + "django.db.models.loading": 1, + "register_models": 2, + "get_model": 3, + "django.utils.translation": 1, + "ugettext_lazy": 1, + "as": 6, + "_": 5, + "django.utils.functional": 1, + "curry": 6, + "django.utils.encoding": 1, + "smart_str": 2, + "force_unicode": 3, + "django.utils.text": 1, + "get_text_list": 2, + "capfirst": 6, + "class": 23, + "ModelBase": 4, + "type": 3, + "Metaclass": 1, + "for": 52, + "all": 4, + "models.": 1, + "def": 48, + "__new__": 2, + "cls": 29, + "name": 30, + "bases": 6, + "attrs": 5, + "super_new": 3, + "super": 2, + ".__new__": 1, + "parents": 8, + "b": 9, + "in": 66, + "if": 119, + "isinstance": 9, + "not": 59, + "return": 40, + "module": 9, + "attrs.pop": 2, + "new_class": 9, + "{": 14, + "}": 17, + "attr_meta": 5, + "None": 54, + "abstract": 3, + "getattr": 23, + "False": 20, + "meta": 10, + "else": 24, + "base_meta": 2, + "is": 43, + "model_module": 1, + "sys.modules": 1, + "new_class.__module__": 1, + "kwargs": 9, + "model_module.__name__.split": 1, + "-": 32, + "new_class.add_to_class": 7, + "**kwargs": 8, + "subclass_exception": 3, + "tuple": 3, + "x.DoesNotExist": 1, + "x": 4, + "hasattr": 9, + "and": 42, + "x._meta.abstract": 2, + "or": 19, + "x.MultipleObjectsReturned": 1, + "base_meta.abstract": 1, + "new_class._meta.ordering": 1, + "base_meta.ordering": 1, + "new_class._meta.get_latest_by": 1, + "base_meta.get_latest_by": 1, + "is_proxy": 5, + "new_class._meta.proxy": 1, + "new_class._default_manager": 2, + "new_class._base_manager": 2, + "new_class._default_manager._copy_to_model": 1, + "new_class._base_manager._copy_to_model": 1, + "m": 3, + "new_class._meta.app_label": 3, + "seed_cache": 2, + "only_installed": 2, + "obj_name": 2, + "obj": 2, + "attrs.items": 1, + "new_fields": 2, + "new_class._meta.local_fields": 3, + "+": 5, + "new_class._meta.local_many_to_many": 2, + "new_class._meta.virtual_fields": 1, + "field_names": 3, + "set": 3, + "f.name": 5, + "f": 18, + "base": 13, + "parent": 4, + "parent._meta.abstract": 1, + "parent._meta.fields": 1, + "raise": 18, + "TypeError": 4, + "%": 39, + "continue": 10, + "new_class._meta.setup_proxy": 1, + "new_class._meta.concrete_model": 2, + "base._meta.concrete_model": 2, + "o2o_map": 3, + "dict": 3, + "f.rel.to": 1, + "original_base": 1, + "parent_fields": 3, + "base._meta.local_fields": 1, + "base._meta.local_many_to_many": 1, + "field": 32, + "field.name": 10, + "base.__name__": 2, + "base._meta.abstract": 2, + "elif": 2, + "attr_name": 3, + "auto_created": 1, + "True": 15, + "parent_link": 1, + "new_class._meta.parents": 1, + "copy.deepcopy": 2, + "new_class._meta.parents.update": 1, + "base._meta.parents": 1, + "new_class.copy_managers": 2, + "base._meta.abstract_managers": 1, + "original_base._meta.concrete_managers": 1, + "base._meta.virtual_fields": 1, + "attr_meta.abstract": 1, + "new_class.Meta": 1, + "new_class._prepare": 1, + "copy_managers": 1, + "base_managers": 2, + "base_managers.sort": 1, + "mgr_name": 3, + "manager": 3, + "val": 14, + "new_manager": 2, + "manager._copy_to_model": 1, + "cls.add_to_class": 1, + "add_to_class": 1, + "value": 13, + "value.contribute_to_class": 1, + "setattr": 13, + "_prepare": 1, + "Creates": 1, + "some": 2, + "methods": 11, + "once": 1, + "self._meta": 3, + "has": 2, + "been": 1, + "populated.": 1, + "opts": 5, + "cls._meta": 1, + "opts._prepare": 1, + "opts.order_with_respect_to": 2, + "cls.get_next_in_order": 1, + "cls._get_next_or_previous_in_order": 2, + "is_next": 5, + "cls.get_previous_in_order": 1, + "make_foreign_order_accessors": 2, + "model": 10, + "field.rel.to": 2, + "method_get_order": 2, + "method_set_order": 2, + "opts.order_with_respect_to.rel.to": 1, + "cls.__doc__": 3, + "cls.get_absolute_url": 3, + "get_absolute_url": 2, + "signals.class_prepared.send": 1, + "sender": 4, + "ModelState": 2, + "object": 5, + "A": 7, + "storing": 1, + "instance": 6, + "state": 1, + "__init__": 4, + "self": 76, + "db": 2, + "self.db": 1, + "self.adding": 1, + "Model": 3, + "__metaclass__": 2, + "_deferred": 1, + "*args": 3, + "signals.pre_init.send": 1, + "self.__class__": 8, + "args": 7, + "self._state": 1, + "args_len": 2, + "len": 7, + "self._meta.fields": 4, + "IndexError": 1, + "fields_iter": 4, + "iter": 1, + "field.attname": 15, + "kwargs.pop": 6, + "field.rel": 2, + "is_related_object": 3, + "self.__class__.__dict__.get": 2, + "try": 14, + "rel_obj": 3, + "except": 14, + "KeyError": 3, + "field.get_default": 3, + "field.null": 1, + "prop": 4, + "kwargs.keys": 1, + "property": 2, + "AttributeError": 1, + "pass": 3, + ".__init__": 1, + "signals.post_init.send": 1, + "__repr__": 1, + "u": 2, + "unicode": 7, + "UnicodeEncodeError": 1, + "UnicodeDecodeError": 1, + "__str__": 1, + ".encode": 1, + "__eq__": 1, + "other": 5, + "self._get_pk_val": 6, + "other._get_pk_val": 1, + "__ne__": 1, + "self.__eq__": 1, + "__hash__": 1, + "hash": 1, + "__reduce__": 2, + "Provides": 1, + "pickling": 1, + "support.": 1, + "Normally": 1, + "this": 9, + "just": 2, + "dispatches": 2, + "to": 31, + "Python": 3, + "re": 1, + "dynamically": 1, + "created": 3, + "classes": 2, + "only": 2, + "level": 1, + "can": 9, + "be": 9, + "pickled": 1, + "by": 5, + "the": 61, + "default": 3, + "path.": 1, + "data": 10, + "self.__dict__": 1, + "defers": 2, + "self._deferred": 1, + "deferred_class_factory": 2, + "factory": 5, + "defers.append": 1, + "self._meta.proxy_for_model": 1, + "simple_class_factory": 2, + "model_unpickle": 2, + "_get_pk_val": 2, + "meta.pk.attname": 2, + "_set_pk_val": 2, + "self._meta.pk.attname": 1, + "pk": 5, + "serializable_value": 1, + "field_name": 6, + "Returns": 1, + "of": 11, + "instance.": 1, + "If": 5, + "a": 18, + "foreign": 1, + "key": 6, + "returns": 1, + "id": 1, + "instead": 1, + "object.": 1, + "there": 1, + "s": 11, + "returned": 1, + "directly.": 1, + "Used": 3, + "serialize": 1, + "force_insert": 2, + "force_update": 5, + "t": 3, + "need": 4, + "override": 2, + "method.": 1, + "It": 1, + "raw": 7, + "origin": 4, + "smart": 1, + "about": 1, + "saving": 1, + "attributes": 1, + "meta.proxy": 4, + "org": 3, + "meta.parents.items": 1, + "parent._meta.pk.attname": 2, + "self.save_base": 1, + "using": 24, + "update_fields": 9, + "parent._meta": 1, + "non_pks": 5, + "meta.local_fields": 2, + "f.primary_key": 2, + "pk_val": 4, + "pk_set": 5, + "record_exists": 5, + "cls._base_manager": 1, + "manager.using": 3, + ".filter": 3, + ".exists": 1, + "values": 3, + "f.attname": 4, + "f.pre_save": 1, + "rows": 3, + "._update": 1, + "meta.order_with_respect_to": 2, + "order_value": 2, + "(*": 6, + "*)": 6, + "*": 3, + ".count": 1, + "self._order": 1, + "fields": 9, + "ValueError": 3, + "update_pk": 3, + "bool": 2, + "meta.has_auto_field": 1, + "result": 2, + "manager._insert": 1, + "return_id": 1, + "transaction.commit_unless_managed": 2, + "self._state.db": 1, + "self._state.adding": 4, + "meta.auto_created": 1, + "signals.post_save.send": 1, + "save_base.alters_data": 1, + "delete": 1, + "router.db_for_write": 1, + "assert": 4, + "collector": 1, + "collector.collect": 1, + "collector.delete": 1, + "delete.alters_data": 1, + "_get_FIELD_display": 1, + "field.flatchoices": 1, + ".get": 1, + "strings_only": 1, + "_get_next_or_previous_by_FIELD": 1, + "self.pk": 3, + "op": 1, + "order": 1, + "s__": 1, + "pk__": 1, + "spk": 1, + "gt": 1, + "lt": 1, + "_order": 4, + "_order__": 1, + "perform": 1, + "unique": 1, + "check": 4, + "on": 5, + "that": 10, + "missing": 1, + "involved": 1, + "check.": 1, + "Fields": 1, + "did": 1, + "validate": 1, + "should": 1, + "also": 4, + "excluded": 1, + "but": 4, + "they": 1, + "passed": 3, + "via": 3, + "exclude": 20, + "argument.": 1, + "unique_checks": 4, + "unique_togethers": 2, + "self._meta.unique_together": 1, + "parent_class": 4, + "self._meta.parents.keys": 2, + "parent_class._meta.unique_together": 2, + "unique_togethers.append": 1, + "model_class": 11, + "unique_together": 2, + "break": 1, + "unique_checks.append": 2, + "date_checks": 4, + "fields_with_class": 2, + "self._meta.local_fields": 1, + "fields_with_class.append": 1, + "parent_class._meta.local_fields": 1, + "f.unique": 1, + "f.unique_for_date": 3, + "date_checks.append": 3, + "f.unique_for_year": 3, + "f.unique_for_month": 3, + "_perform_unique_checks": 1, + "errors": 19, + "unique_check": 10, + "lookup_kwargs": 8, + "self._meta.get_field": 1, + "lookup_value": 3, + "str": 1, + "lookup_kwargs.keys": 1, + "qs": 4, + "model_class._default_manager.filter": 2, + "*lookup_kwargs": 2, + "model_class_pk": 3, + "model_class._meta": 2, + "qs.exclude": 2, + "qs.exists": 2, + "errors.setdefault": 2, + ".append": 2, + "self.unique_error_message": 1, + "_perform_date_checks": 1, + "lookup_type": 5, + "unique_for": 5, + "date": 2, + "self.date_error_message": 1, + "date_error_message": 1, + "opts.get_field": 4, + ".verbose_name": 3, + "unique_error_message": 1, + "model_name": 3, + "opts.verbose_name": 1, + "field_label": 2, + "field.verbose_name": 1, + "field.error_messages": 1, + "field_labels": 4, + "map": 1, + "lambda": 1, + "full_clean": 1, + "Calls": 1, + "clean_fields": 2, + "clean": 1, + "validate_unique": 1, + "raises": 2, + "any": 2, + "occured.": 1, + "self.clean_fields": 1, + "e": 7, + "e.update_error_dict": 3, + "self.clean": 1, + "errors.keys": 1, + "exclude.append": 1, + "self.validate_unique": 1, + "Cleans": 1, + "containing": 1, + "message_dict": 1, + "validation": 1, + "occur.": 1, + "raw_value": 3, + "f.blank": 1, + "validators.EMPTY_VALUES": 1, + "f.clean": 1, + "e.messages": 1, + "############################################": 2, + "ordered_obj": 2, + "id_list": 2, + "rel_val": 4, + "ordered_obj._meta.order_with_respect_to.rel.field_name": 2, + "order_name": 4, + "ordered_obj._meta.order_with_respect_to.name": 2, + "i": 2, + "j": 2, + "enumerate": 1, + "ordered_obj.objects.filter": 2, + ".update": 1, + "pk_name": 3, + "ordered_obj._meta.pk.name": 1, + "r": 4, + ".values": 1, + "##############################################": 2, + "func": 1, + "settings.ABSOLUTE_URL_OVERRIDES.get": 1, + "########": 2, + "Empty": 1, + "unpickle": 2, + "Models": 1, + "without": 1, + "deferred": 2, + "fields.": 2, + "We": 3, + "do": 5, + "hard": 1, + "way": 4, + "rather": 1, + "than": 2, + "implementation": 2, + "because": 1, + "__deepcopy__": 1, + "problem": 1, + ".4": 1, + "subclasses": 1, + "with": 7, + "cls.__new__": 1, + "model_unpickle.__safe_for_unpickle__": 1, + "flask.views": 1, + "This": 2, + "provides": 1, + "based": 4, + "views": 2, + "inspired": 1, + "ones": 1, + "Django.": 1, + "copyright": 1, + "c": 1, + "Armin": 1, + "Ronacher.": 1, + "license": 1, + "BSD": 1, + "see": 1, + "LICENSE": 1, + "more": 3, + "details.": 1, + ".globals": 1, + "request": 10, + "http_method_funcs": 2, + "frozenset": 1, + "View": 4, + "Alternative": 1, + "use": 3, + "view": 10, + "functions.": 1, + "subclass": 1, + "implement": 4, + "meth": 10, + "dispatch_request": 5, + "which": 5, + "called": 2, + "arguments": 2, + "URL": 1, + "routing": 1, + "system.": 1, + "attr": 3, + "provided": 1, + "have": 3, + "flask.Flask.add_url_rule": 1, + "method": 7, + "explicitly": 2, + "MyView": 1, + "app.add_url_rule": 2, + "view_func": 2, + "MyView.as_view": 1, + "When": 2, + "you": 11, + "want": 2, + "decorate": 4, + "pluggable": 2, + "will": 5, + "either": 1, + "when": 4, + "function": 3, + "wrapping": 1, + "as_view": 2, + "decorators": 5, + "attribute": 1, + "SecretView": 1, + "superuser_required": 1, + "...": 1, + "The": 3, + "stored": 1, + "list": 1, + "are": 3, + "applied": 1, + "one": 2, + "after": 1, + "another": 1, + "created.": 1, + "Note": 1, + "*not*": 2, + "since": 2, + "those": 1, + "would": 1, + "generated": 1, + "handle.": 1, + "canonical": 1, + ".": 11, + "However": 1, + "moves": 1, + "parts": 1, + "logic": 1, + "declaration": 1, + "place": 1, + "where": 1, + "it": 3, + "used": 4, + "instantiating": 1, + "view.view_class": 1, + "view.__name__": 1, + "view.__doc__": 1, + "view.__module__": 1, + "cls.__module__": 1, + "view.methods": 1, + "cls.methods": 1, + "MethodViewType": 2, + "d": 4, + "rv": 2, + "type.__new__": 1, + "rv.methods": 2, + "methods.add": 1, + "key.upper": 1, + "sorted": 1, + "MethodView": 2, + "Like": 1, + "regular": 1, + "requests": 4, + "particular": 1, + "methods.": 1, + "For": 2, + "get": 2, + "means": 1, + "response": 2, + "automatically": 2, + "forward": 1, + "your": 2, + "that.": 1, + "Also": 1, + "options": 1, + "CounterAPI": 1, + "session.get": 2, + "post": 1, + "session": 1, + "CounterAPI.as_view": 1, + "request.method.lower": 1, + "request.method": 1, + "/usr/bin/env": 2, + "python2.4": 1, + "print": 1, + "python": 1, + "non": 2, + "blocking": 2, + "single": 4, + "threaded": 2, + "HTTP": 12, + "server.": 2, + "Typical": 1, + "applications": 1, + "little": 1, + "direct": 1, + "interaction": 1, + "HTTPServer": 13, + "start": 3, + "server": 9, + "at": 1, + "beginning": 1, + "process": 5, + "even": 1, + "often": 1, + "done": 1, + "indirectly": 1, + "tornado.web.Application.listen": 2, + "defines": 1, + "HTTPRequest": 3, + "exposed": 1, + "tornado.web.RequestHandler.request": 1, + "absolute_import": 1, + "division": 1, + "with_statement": 1, + "Cookie": 3, + "logging": 1, + "socket": 1, + "time": 1, + "tornado.escape": 1, + "utf8": 1, + "native_str": 2, + "parse_qs_bytes": 1, + "tornado": 3, + "httputil": 1, + "iostream": 1, + "tornado.netutil": 1, + "TCPServer": 2, + "stack_context": 1, + "tornado.util": 1, + "bytes_type": 1, + "ssl": 2, + "ImportError": 1, + "defined": 2, + "callback": 7, + "takes": 1, + "an": 4, + "argument": 3, + "writes": 1, + "valid": 1, + "HTTPRequest.write": 1, + "HTTPRequest.finish": 1, + "finishes": 1, + "does": 1, + "necessarily": 1, + "close": 1, + "connection": 6, + "case": 1, + "HTTP/1.1": 6, + "keep": 2, + "alive": 2, + "simple": 3, + "example": 1, + "echoes": 1, + "back": 1, + "URI": 1, + "requested": 1, + "httpserver": 1, + "ioloop": 1, + "handle_request": 2, + "message": 3, + "request.write": 1, + "request.finish": 1, + "http_server": 1, + "httpserver.HTTPServer": 1, + "http_server.listen": 1, + "ioloop.IOLoop.instance": 1, + ".start": 4, + "very": 1, + "basic": 1, + "handler.": 1, + "Beyond": 1, + "parsing": 1, + "body": 2, + "headers": 8, + "semantics": 1, + "implemented": 1, + "connections.": 1, + "however": 1, + "chunked": 2, + "encoding": 2, + "so": 1, + "must": 2, + "provide": 2, + "Content": 1, + "Length": 1, + "header": 1, + "run": 1, + "correctly": 1, + "clients.": 1, + "handler": 1, + "unable": 1, + "no_keep_alive": 5, + "constructor": 1, + "ensure": 1, + "closed": 1, + "every": 1, + "no": 1, + "matter": 1, + "what": 1, + "version": 5, + "client": 2, + "using.": 1, + "xheaders": 5, + "we": 1, + "support": 1, + "X": 6, + "Real": 2, + "Ip": 2, + "Scheme": 2, + "remote": 1, + "IP": 1, + "scheme": 1, + "requests.": 3, + "These": 1, + "useful": 1, + "running": 1, + "Tornado": 1, + "behind": 1, + "reverse": 1, + "proxy": 1, + "load": 1, + "balancer.": 1, + "serve": 2, + "SSL": 2, + "traffic": 2, + ".6": 1, + "OpenSSL.": 1, + "To": 1, + "make": 1, + "send": 1, + "ssl_options": 5, + "dictionary": 1, + "required": 1, + "ssl.wrap_socket": 1, + "including": 1, + "applicaton": 1, + "os.path.join": 2, + "data_dir": 2, + "initialization": 2, + "follows": 1, + "three": 1, + "patterns": 1, + "tornado.netutil.TCPServer": 1, + "tornado.netutil.TCPServer.listen": 1, + "app": 3, + "server.listen": 1, + "IOLoop.instance": 3, + "In": 1, + "many": 1, + "cases": 1, + "avoid": 1, + "create": 2, + "tornado.netutil.TCPServer.bind": 1, + "/": 1, + "tornado.netutil.TCPServer.start": 1, + "multi": 2, + "server.bind": 1, + "server.start": 1, + "interface": 2, + "IOLoop": 2, + "constructor.": 1, + "always": 1, + "singleton": 1, + "tornado.netutil.TCPServer.add_sockets": 1, + "advanced": 1, + "sockets": 3, + "tornado.netutil.bind_sockets": 2, + "tornado.process.fork_processes": 2, + "server.add_sockets": 1, + "add_sockets": 2, + "complicated": 1, + "give": 1, + "flexibility": 1, + "fork": 1, + "happens.": 1, + "servers": 1, + "listening": 1, + "request_callback": 4, + "io_loop": 3, + "self.request_callback": 4, + "self.no_keep_alive": 4, + "self.xheaders": 3, + "TCPServer.__init__": 1, + "handle_stream": 1, + "stream": 4, + "address": 4, + "HTTPConnection": 2, + "_BadRequestException": 5, + "Exception": 2, + "malformed": 1, + "Handles": 1, + "executing": 1, + "parse": 1, + "bodies": 1, + "execute": 1, + "until": 1, + "conection": 1, + "closed.": 1, + "self.stream": 1, + "self.address": 3, + "self._request": 6, + "self._request_finished": 4, + "self._header_callback": 3, + "stack_context.wrap": 2, + "self._on_headers": 1, + "self.stream.read_until": 2, + "self._write_callback": 5, + "write": 1, + "chunk": 3, + "Writes": 1, + "output": 1, + "stream.": 1, + "self.stream.closed": 1, + "self.stream.write": 2, + "self._on_write_complete": 1, + "finish": 1, + "Finishes": 1, + "request.": 1, + "self.stream.writing": 2, + "self._finish_request": 2, + "_on_write_complete": 1, + "_finish_request": 1, + "disconnect": 5, + "connection_header": 5, + "self._request.headers.get": 2, + "connection_header.lower": 1, + "self._request.supports_http_1_1": 1, + "self._request.headers": 1, + "self._request.method": 1, + "self.stream.close": 2, + "_on_headers": 1, + "data.decode": 1, + "eol": 3, + "data.find": 1, + "start_line": 1, + "uri": 4, + "start_line.split": 1, + "version.startswith": 1, + "httputil.HTTPHeaders.parse": 1, + "self.stream.socket": 1, + "socket.AF_INET": 2, + "socket.AF_INET6": 1, + "remote_ip": 5, + "content_length": 6, + "headers.get": 2, + "int": 1, + "self.stream.max_buffer_size": 1, + "self.stream.read_bytes": 1, + "self._on_request_body": 1, + "logging.info": 1, + "_on_request_body": 1, + "self._request.body": 1, + "content_type": 1, + "POST": 2, + "PATCH": 1, + "PUT": 1, + "application/x": 1, + "www": 1, + "form": 1, + "urlencoded": 1, + "multipart/form": 2, + ";": 1, + "boundary": 1, + "Invalid": 1, + "GET": 1, + "http": 4, + "https": 3, + "HTTP/1.0": 1, + "Forwarded": 2, + "Proto": 1, + "Host": 1, + ".0.0.1": 1, + "_cookies": 1, + "//": 1, + "foo.crt": 1, + "foo.key": 1, + "cacert.crt": 1, + "protocol": 1, + "host": 1, + "self.__class__.__name__": 1, + "self.headers": 1, + "_valid_ip": 1, + "ip": 2, + "res": 2, + "socket.getaddrinfo": 1, + "socket.AF_UNSPEC": 1, + "socket.SOCK_STREAM": 1, + "socket.AI_NUMERICHOST": 1, + "socket.gaierror": 1, + "e.args": 1, + "socket.EAI_NONAME": 1 + }, + "R": { + "hello": 2, + "<": 1, + "-": 1, + "function": 1, + "(": 3, + ")": 3, + "{": 1, + "print": 1, + "}": 1 + }, + "Racket": { + "#lang": 1, + "scribble/manual": 1, + "@": 3, + "(": 7, + "require": 2, + "scribble/bnf": 1, + ")": 7, + "@title": 1, + "{": 2, + "Scribble": 3, + "The": 1, + "Racket": 1, + "Documentation": 1, + "Tool": 1, + "}": 2, + "@author": 1, + "is": 3, + "a": 1, + "collection": 1, + "of": 3, + "tools": 1, + "for": 2, + "creating": 1, + "prose": 2, + "documents": 1, + "-": 95, + "papers": 1, + "books": 1, + "library": 1, + "documentation": 1, + "etc.": 1, + "in": 2, + "HTML": 1, + "or": 2, + "PDF": 1, + "via": 1, + "Latex": 1, + "form.": 1, + "More": 1, + "generally": 1, + "helps": 1, + "you": 1, + "write": 1, + "programs": 1, + "that": 1, + "are": 1, + "rich": 1, + "textual": 1, + "content": 2, + "whether": 1, + "the": 2, + "to": 2, + "be": 2, + "typeset": 1, + "any": 1, + "other": 1, + "form": 1, + "text": 1, + "generated": 1, + "programmatically.": 1, + "This": 1, + "document": 1, + "itself": 1, + "written": 1, + "using": 1, + "Scribble.": 1, + "You": 1, + "can": 1, + "see": 1, + "its": 1, + "source": 1, + "at": 1, + "let": 1, + "url": 3, + "link": 1, + "starting": 1, + "with": 1, + "@filepath": 1, + "scribble.scrbl": 1, + "file.": 1, + "@table": 1, + "contents": 1, + ";": 1, + "@include": 8, + "section": 9, + "@index": 1, + "#": 3, + "/bin/sh": 1, + "|": 2, + "*": 2, + "scheme": 1, + "exec": 1, + "racket": 1, + "um": 1, + "racket/file": 1, + "racket/path": 1, + "racket/list": 1, + "racket/string": 1, + "syntax": 1, + "racket/base": 1 + }, + "Rebol": { + "REBOL": 1, + "hello": 2, + "func": 1, + "print": 1 + }, + "Ruby": { + "load": 3, + "Dir": 4, + ".each": 5, + "{": 65, + "|": 74, + "plugin": 2, + "(": 201, + ")": 208, + "}": 65, + "task": 2, + "default": 2, + "do": 26, + "puts": 19, + "end": 204, + "module": 7, + "Foo": 2, + "require": 58, + "#": 354, + "class": 4, + "Formula": 2, + "include": 3, + "FileUtils": 1, + "attr_reader": 5, + "name": 49, + "path": 11, + "url": 12, + "version": 9, + "homepage": 2, + "specs": 14, + "downloader": 4, + "standard": 2, + "unstable": 2, + "head": 2, + "bottle_version": 2, + "bottle_url": 2, + "bottle_sha1": 2, + "buildpath": 1, + "def": 130, + "initialize": 1, + "nil": 19, + "set_instance_variable": 12, + "if": 67, + "@head": 4, + "and": 8, + "not": 4, + "@url": 8, + "or": 6, + "ARGV.build_head": 2, + "@version": 10, + "@spec_to_use": 4, + "@unstable": 2, + "else": 21, + "@standard.nil": 1, + "SoftwareSpecification.new": 3, + "@specs": 3, + "@standard": 3, + "raise": 14, + "@url.nil": 1, + "@name": 3, + "validate_variable": 7, + "@path": 1, + "path.nil": 1, + "self.class.path": 1, + "Pathname.new": 3, + "||": 21, + "@spec_to_use.detect_version": 1, + "CHECKSUM_TYPES.each": 1, + "type": 10, + "@downloader": 1, + "download_strategy.new": 2, + "@spec_to_use.url": 1, + "@spec_to_use.specs": 1, + "@bottle_url": 2, + "bottle_base_url": 1, + "+": 46, + "bottle_filename": 1, + "self": 10, + "@bottle_sha1": 2, + "installed": 1, + "return": 24, + "installed_prefix.children.length": 1, + "rescue": 11, + "false": 24, + "explicitly_requested": 1, + "ARGV.named.empty": 1, + "ARGV.formulae.include": 1, + "linked_keg": 1, + "HOMEBREW_REPOSITORY/": 2, + "/@name": 1, + "installed_prefix": 1, + "head_prefix": 2, + "HOMEBREW_CELLAR": 2, + "head_prefix.directory": 1, + "prefix": 15, + "rack": 1, + ";": 31, + "prefix.parent": 1, + "bin": 1, + "doc": 1, + "info": 2, + "lib": 1, + "libexec": 1, + "man": 10, + "man1": 1, + "man2": 1, + "man3": 1, + "man4": 1, + "man5": 1, + "man6": 1, + "man7": 1, + "man8": 1, + "sbin": 1, + "share": 1, + "etc": 1, + "HOMEBREW_PREFIX": 2, + "var": 1, + "plist_name": 2, + "plist_path": 1, + "download_strategy": 1, + "@spec_to_use.download_strategy": 1, + "cached_download": 1, + "@downloader.cached_location": 1, + "caveats": 1, + "options": 2, + "patches": 2, + "keg_only": 2, + "self.class.keg_only_reason": 1, + "fails_with": 2, + "cc": 3, + "self.class.cc_failures.nil": 1, + "Compiler.new": 1, + "unless": 11, + "cc.is_a": 1, + "Compiler": 1, + "self.class.cc_failures.find": 1, + "failure": 1, + "next": 1, + "failure.compiler": 1, + "cc.name": 1, + "failure.build.zero": 1, + "failure.build": 1, + "cc.build": 1, + "skip_clean": 2, + "true": 14, + "self.class.skip_clean_all": 1, + "to_check": 2, + "path.relative_path_from": 1, + ".to_s": 3, + "self.class.skip_clean_paths.include": 1, + "brew": 2, + "stage": 2, + "begin": 8, + "patch": 2, + "yield": 5, + "Interrupt": 2, + "RuntimeError": 1, + "SystemCallError": 1, + "e": 6, + "ARGV.debug": 1, + "%": 9, + "w": 8, + "config.log": 1, + "CMakeCache.txt": 1, + ".select": 1, + "f": 15, + "File.exist": 3, + "HOMEBREW_LOGS.install": 1, + "onoe": 3, + "e.inspect": 1, + "e.backtrace": 1, + "ohai": 4, + "e.was_running_configure": 1, + "interactive_shell": 1, + "b": 7, + "b.name": 2, + "eql": 1, + "self.class.equal": 1, + "b.class": 1, + "hash": 3, + "name.hash": 1, + "<=>": 2, + "to_s": 2, + "std_cmake_args": 1, + "W": 1, + "-": 31, + "DCMAKE_INSTALL_PREFIX": 1, + "DCMAKE_BUILD_TYPE": 1, + "None": 1, + "DCMAKE_FIND_FRAMEWORK": 1, + "LAST": 1, + "Wno": 1, + "dev": 1, + "self.class_s": 2, + "#remove": 1, + "invalid": 1, + "characters": 1, + "then": 4, + "camelcase": 1, + "it": 1, + "name.capitalize.gsub": 1, + "/": 28, + "_.": 1, + "s": 2, + "a": 7, + "zA": 1, + "Z0": 1, + ".upcase": 1, + ".gsub": 3, + "self.names": 1, + ".map": 6, + "File.basename": 2, + ".sort": 2, + "self.all": 1, + "map": 1, + "self.map": 1, + "rv": 3, + "each": 1, + "<<": 13, + "self.each": 1, + "names.each": 1, + "n": 3, + "Formula.factory": 2, + "inspect": 1, + "self.aliases": 1, + "self.canonical_name": 1, + "name.to_s": 3, + "name.kind_of": 2, + "Pathname": 2, + "formula_with_that_name": 1, + "HOMEBREW_REPOSITORY": 4, + "possible_alias": 1, + "possible_cached_formula": 1, + "HOMEBREW_CACHE_FORMULA": 2, + "name.include": 2, + "r": 3, + ".": 3, + "tapd": 1, + ".downcase": 2, + "tapd.find_formula": 1, + "relative_pathname": 1, + "relative_pathname.stem.to_s": 1, + "tapd.directory": 1, + "elsif": 7, + "formula_with_that_name.file": 1, + "formula_with_that_name.readable": 1, + "possible_alias.file": 1, + "possible_alias.realpath.basename": 1, + "possible_cached_formula.file": 1, + "possible_cached_formula.to_s": 1, + "self.factory": 1, + "https": 1, + "ftp": 1, + "//": 3, + ".basename": 1, + "target_file": 6, + "name.basename": 1, + "HOMEBREW_CACHE_FORMULA.mkpath": 1, + "FileUtils.rm": 1, + "force": 1, + "curl": 1, + "install_type": 4, + "from_url": 1, + "Formula.canonical_name": 1, + ".rb": 1, + "path.stem": 1, + "from_path": 1, + "path.to_s": 1, + "Formula.path": 1, + "from_name": 2, + "klass_name": 2, + "klass": 16, + "Object.const_get": 1, + "NameError": 1, + "LoadError": 3, + "klass.new": 2, + "FormulaUnavailableError.new": 1, + "tap": 1, + "path.realpath.to_s": 1, + "/Library/Taps/": 1, + "self.path": 1, + "mirrors": 4, + "self.class.mirrors": 1, + "deps": 1, + "self.class.dependencies.deps": 1, + "external_deps": 1, + "self.class.dependencies.external_deps": 1, + "recursive_deps": 1, + "Formula.expand_deps": 1, + ".flatten.uniq": 1, + "self.expand_deps": 1, + "f.deps.map": 1, + "dep": 3, + "f_dep": 3, + "dep.to_s": 1, + "expand_deps": 1, + "protected": 1, + "system": 1, + "cmd": 5, + "*args": 14, + "pretty_args": 1, + "args.dup": 1, + "pretty_args.delete": 1, + "ARGV.verbose": 2, + ".strip": 1, + "removed_ENV_variables": 1, + "case": 4, + "args.empty": 1, + "cmd.split": 1, + ".first": 1, + "when": 7, + "ENV.remove_cc_etc": 1, + "safe_system": 4, + "rd": 4, + "wr": 3, + "IO.pipe": 1, + "pid": 1, + "fork": 1, + "rd.close": 1, + "stdout.reopen": 1, + "stderr.reopen": 1, + "args.collect": 1, + "arg": 1, + "arg.to_s": 1, + "exec": 1, + "exit": 1, + "wr.close": 1, + "out": 1, + "t": 2, + "attempt": 1, + "this": 1, + "install": 1, + "is": 1, + "pointed": 1, + "at": 1, + "URL.": 1, + "mirror_list": 1, + "HOMEBREW_CACHE.mkpath": 1, + "fetched": 4, + "downloader.fetch": 1, + "CurlDownloadStrategyError": 1, + "mirror_list.empty": 1, + "mirror_list.shift.values_at": 1, + "retry": 2, + "checksum_type": 2, + "CHECKSUM_TYPES.detect": 1, + "instance_variable_defined": 2, + "verify_download_integrity": 2, + "fn": 2, + "args.length": 1, + "md5": 2, + "supplied": 4, + "instance_variable_get": 2, + "type.to_s.upcase": 1, + "args": 3, + "hasher": 2, + "Digest.const_get": 1, + "fn.incremental_hash": 1, + "supplied.empty": 1, + "message": 2, + "EOF": 2, + "mismatch": 1, + "Expected": 1, + "Got": 1, + "Archive": 1, + "To": 1, + "an": 1, + "incomplete": 1, + "download": 1, + "remove": 1, + "the": 3, + "file": 1, + "above.": 1, + "supplied.upcase": 1, + "hash.upcase": 1, + "opoo": 1, + "private": 1, + "CHECKSUM_TYPES": 2, + "sha1": 4, + "sha256": 1, + ".freeze": 1, + "fetch": 1, + "fetched.kind_of": 1, + "mktemp": 1, + "downloader.stage": 1, + "@buildpath": 2, + "Pathname.pwd": 1, + "patch_list": 1, + "Patches.new": 1, + "patch_list.empty": 1, + "patch_list.external_patches": 1, + "patch_list.download": 1, + "patch_list.each": 1, + "p": 2, + "p.compression": 1, + "gzip": 1, + "p.compressed_filename": 2, + "bzip2": 1, + "*": 2, + "p.patch_args": 1, + "v": 2, + "v.to_s.empty": 1, + "s/": 1, + "class_value": 3, + "self.class.send": 1, + "instance_variable_set": 1, + "self.method_added": 1, + "method": 2, + "self.attr_rw": 1, + "(*": 11, + "*)": 11, + "attrs": 1, + "attrs.each": 1, + "attr": 4, + "class_eval": 1, + "Q": 1, + "val": 10, + "val.nil": 3, + "@#": 2, + "attr_rw": 4, + "keg_only_reason": 1, + "skip_clean_all": 2, + "cc_failures": 1, + "stable": 1, + "&": 24, + "block": 25, + "block_given": 5, + "instance_eval": 2, + "ARGV.build_devel": 2, + "devel": 1, + "@mirrors": 3, + "bottle": 1, + "bottle_block": 1, + "Class.new": 2, + "self.version": 1, + "self.url": 1, + "self.sha1": 1, + "Hash": 2, + "key": 6, + "value": 2, + "sha1.shift": 1, + "@sha1": 6, + "MacOS.cat": 1, + "String": 5, + "MacOS.lion": 1, + "self.data": 1, + "&&": 8, + "bottle_block.instance_eval": 1, + "@bottle_version": 1, + "bottle_block.data": 1, + "mirror": 1, + "@mirrors.uniq": 1, + "dependencies": 1, + "@dependencies": 1, + "DependencyCollector.new": 1, + "depends_on": 1, + "dependencies.add": 1, + "paths": 3, + "all": 1, + "@skip_clean_all": 2, + "@skip_clean_paths": 3, + ".flatten.each": 1, + "p.to_s": 2, + "@skip_clean_paths.include": 1, + "skip_clean_paths": 1, + "reason": 2, + "explanation": 1, + "@keg_only_reason": 1, + "KegOnlyReason.new": 1, + "explanation.to_s.chomp": 1, + "compiler": 3, + "@cc_failures": 2, + "CompilerFailures.new": 1, + "CompilerFailure.new": 2, + "Grit": 1, + "ActiveSupport": 1, + "Inflector": 1, + "extend": 2, + "pluralize": 1, + "word": 7, + "apply_inflections": 3, + "inflections.plurals": 1, + "singularize": 1, + "inflections.singulars": 1, + "camelize": 1, + "term": 1, + "uppercase_first_letter": 2, + "string": 3, + "term.to_s": 1, + "string.sub": 2, + "z": 6, + "d": 5, + "*/": 1, + "inflections.acronyms": 2, + ".capitalize": 1, + "inflections.acronym_regex": 2, + "A": 6, + "Z_": 1, + "string.gsub": 1, + "_": 1, + "/i": 1, + "underscore": 1, + "camel_cased_word": 1, + "camel_cased_word.to_s.dup": 1, + "word.gsub": 4, + "Za": 1, + "Z": 3, + "word.tr": 1, + "word.downcase": 1, + "humanize": 1, + "lower_case_and_underscored_word": 1, + "result": 8, + "lower_case_and_underscored_word.to_s.dup": 1, + "inflections.humans.each": 1, + "rule": 4, + "replacement": 4, + "break": 2, + "result.sub": 2, + "result.gsub": 1, + "/_id": 1, + "match": 6, + "match.downcase": 1, + "from": 1, + "boondocks": 1, + "Man": 2, + "From": 1, + "The": 4, + "Boondocks": 1, + "x": 1, + "men": 1, + "last": 2, + "stand": 1, + "X": 1, + "Men": 1, + "Last": 1, + "Stand": 1, + "TheManWithoutAPast": 1, + "Without": 1, + "Past": 1, + "raiders_of_the_lost_ark": 1, + "Raiders": 1, + "Of": 1, + "Lost": 1, + "Ark": 1, + "RawScaledScorer": 1, + "raw_scaled_scorers": 1, + "egg_and_ham": 1, + "egg_and_hams": 2, + "fancyCategory": 1, + "fancy_categories": 1, + "EggAndHam": 1, + "posts": 3, + "Post": 2, + "business": 1, + "Busines": 1, + "puni_puni": 1, + "puni": 2, + "ActiveRecord": 1, + "CoreExtensions": 1, + "Inflections": 4, + "Net": 4, + "HTTP": 2, + "Message": 2, + "message_id": 1, + "messageid": 1, + "Admin": 1, + "post_id": 1, + "_id": 1, + "id": 1, + "Module": 2, + "Test": 2, + "Unit": 2, + "C": 2, + "blargle": 1, + "UnknownModule": 2, + "Bar": 1, + "st": 5, + "nd": 5, + "th": 4, + "number": 2, + "ordinal": 1, + "part": 1, + "acc": 1, + "post": 2, + "rules": 1, + "word.to_s.dup": 1, + "word.empty": 1, + "inflections.uncountables.include": 1, + "result.downcase": 1, + "Z/": 1, + "rules.each": 1, + ".unshift": 1, + "File.dirname": 4, + "__FILE__": 3, + "require_all": 4, + "glob": 2, + "File.join": 6, + "Jekyll": 3, + "VERSION": 1, + "DEFAULTS": 2, + "Dir.pwd": 3, + "self.configuration": 1, + "override": 3, + "source": 2, + "config_file": 2, + "config": 3, + "YAML.load_file": 1, + "config.is_a": 1, + "stdout.puts": 1, + "err": 1, + "stderr.puts": 2, + "err.to_s": 1, + "DEFAULTS.deep_merge": 1, + ".deep_merge": 1, + "/usr/bin/env": 5, + "macruby": 1, + "Resque": 3, + "Helpers": 1, + "redis": 7, + "server": 9, + "/redis": 1, + "Redis.connect": 2, + "thread_safe": 2, + "namespace": 3, + "server.split": 2, + "host": 3, + "port": 4, + "db": 3, + "Redis.new": 1, + "resque": 2, + "@redis": 6, + "Redis": 3, + "Namespace.new": 2, + "Namespace": 1, + "@queues": 2, + "Hash.new": 1, + "h": 2, + "Queue.new": 1, + "coder": 3, + "@coder": 1, + "MultiJsonCoder.new": 1, + "attr_writer": 4, + "self.redis": 2, + "Redis.respond_to": 1, + "connect": 1, + "redis_id": 2, + "redis.respond_to": 2, + "redis.server": 1, + "nodes": 1, + "redis.nodes.map": 1, + "n.id": 1, + ".join": 1, + "redis.client.id": 1, + "before_first_fork": 2, + "@before_first_fork": 2, + "before_fork": 2, + "@before_fork": 2, + "after_fork": 2, + "@after_fork": 2, + "attr_accessor": 1, + "inline": 3, + "alias": 1, + "push": 1, + "queue": 24, + "item": 4, + "pop": 1, + ".pop": 1, + "ThreadError": 1, + "size": 2, + ".size": 1, + "peek": 1, + "start": 6, + "count": 5, + ".slice": 1, + "list_range": 1, + "decode": 2, + "redis.lindex": 1, + "Array": 2, + "redis.lrange": 1, + "queues": 3, + "redis.smembers": 1, + "remove_queue": 1, + ".destroy": 1, + "@queues.delete": 1, + "queue.to_s": 1, + "enqueue": 1, + "enqueue_to": 2, + "queue_from_class": 4, + "before_hooks": 2, + "Plugin.before_enqueue_hooks": 1, + ".collect": 2, + "hook": 8, + "klass.send": 4, + "before_hooks.any": 2, + "Job.create": 1, + "Plugin.after_enqueue_hooks": 1, + "dequeue": 1, + "Plugin.before_dequeue_hooks": 1, + "Job.destroy": 1, + "Plugin.after_dequeue_hooks": 1, + "klass.instance_variable_get": 1, + "@queue": 1, + "klass.respond_to": 1, + "klass.queue": 1, + "reserve": 1, + "Job.reserve": 1, + "validate": 1, + "NoQueueError.new": 1, + "klass.to_s.empty": 1, + "NoClassError.new": 1, + "workers": 2, + "Worker.all": 1, + "working": 2, + "Worker.working": 1, + "remove_worker": 1, + "worker_id": 2, + "worker": 1, + "Worker.find": 1, + "worker.unregister_worker": 1, + "pending": 1, + "queues.inject": 1, + "m": 2, + "k": 2, + "processed": 2, + "Stat": 2, + "queues.size": 1, + "workers.size.to_i": 1, + "working.size": 1, + "failed": 2, + "servers": 1, + "environment": 2, + "ENV": 3, + "keys": 6, + "redis.keys": 1, + "key.sub": 1, + "rake": 1, + "ruby": 2, + "Ilib": 1, + "test": 3, + "echo": 1, + "Sinatra": 1, + "Request": 2, + "<": 1, + "Rack": 1, + "accept": 1, + "@env": 2, + "entries": 1, + ".to_s.split": 1, + "entries.map": 1, + "accept_entry": 1, + ".sort_by": 1, + "first": 1, + "preferred_type": 1, + "self.defer": 1, + "..": 1, + "pattern": 1, + "path.respond_to": 5, + "path.keys": 1, + "names": 1, + "path.names": 1, + "TypeError": 1, + "URI": 3, + "URI.const_defined": 1, + "Parser": 1, + "Parser.new": 1, + "encoded": 1, + "char": 4, + "enc": 5, + "URI.escape": 1, + "public": 1, + "helpers": 1, + "data": 1, + "reset": 1, + "set": 30, + "development": 4, + ".to_sym": 1, + "raise_errors": 1, + "Proc.new": 8, + "dump_errors": 1, + "show_exceptions": 1, + "sessions": 1, + "logging": 1, + "protection": 1, + "method_override": 3, + "use_code": 1, + "default_encoding": 1, + "add_charset": 1, + "javascript": 1, + "xml": 2, + "xhtml": 1, + "json": 1, + "settings.add_charset": 1, + "text": 1, + "session_secret": 2, + "SecureRandom.hex": 1, + "NotImplementedError": 1, + "alias_method": 2, + "methodoverride": 2, + "run": 1, + "running": 1, + "http": 1, + "webrick": 1, + "bind": 1, + "ruby_engine": 6, + "defined": 1, + "RUBY_ENGINE": 2, + "server.unshift": 6, + "ruby_engine.nil": 1, + "absolute_redirects": 1, + "prefixed_redirects": 1, + "empty_path_info": 1, + "app_file": 3, + "root": 5, + "File.expand_path": 1, + "views": 1, + "reload_templates": 1, + "lock": 1, + "threaded": 1, + "public_folder": 3, + "static": 1, + "static_cache_control": 1, + "error": 2, + "Exception": 1, + "response.status": 1, + "content_type": 3, + "configure": 1, + "get": 1, + "filename": 2, + "png": 1, + "send_file": 1, + "NotFound": 1, + "HTML": 1, + "uri": 1, + "request.path_info": 1, + "self.new": 1, + "base": 4, + "Base": 1, + "base.class_eval": 1, + "self.register": 1, + "extensions": 4, + "Delegator.target.register": 1, + "self.helpers": 1, + "Delegator.target.helpers": 1, + "self.use": 1, + "Delegator.target.use": 1, + "python": 1 + }, + "Rust": { + "fn": 1, + "main": 1, + "(": 1, + ")": 1, + "{": 1, + "log": 1, + ";": 1, + "}": 1 + }, + "SCSS": { + "blue": 4, + "#3bbfce": 1, + ";": 7, + "margin": 4, + "px": 1, + ".content": 1, + "-": 3, + "navigation": 1, + "{": 2, + "border": 2, + "color": 3, + "darken": 1, + "(": 1, + "%": 1, + ")": 1, + "}": 2, + ".border": 1, + "padding": 1, + "/": 2 + }, + "Sass": { + "blue": 4, + "#3bbfce": 1, + "margin": 4, + "px": 1, + ".content": 1, + "-": 3, + "navigation": 1, + "border": 2, + "color": 3, + "darken": 1, + "(": 1, + "%": 1, + ")": 1, + ".border": 1, + "padding": 1, + "/": 2 + }, + "Scala": { + "//": 49, + "name": 4, + "version": 1, + "organization": 1, + "libraryDependencies": 3, + "+": 15, + "%": 7, + "Seq": 3, + "(": 23, + ")": 23, + "{": 9, + "val": 2, + "libosmVersion": 1, + "}": 10, + "maxErrors": 1, + "pollInterval": 1, + "javacOptions": 1, + "scalacOptions": 1, + "scalaVersion": 1, + "initialCommands": 2, + "import": 2, + "System.": 1, + "currentTimeMillis": 1, + "now": 3, + "def": 2, + "time": 1, + "T": 3, + "f": 2, + "start": 2, + "try": 1, + "finally": 1, + "println": 2, + "-": 1, + "/1000.0": 1, + "in": 12, + "console": 1, + "mainClass": 2, + "Compile": 4, + "packageBin": 1, + "Some": 6, + "run": 1, + "watchSources": 1, + "<+=>": 1, + "baseDirectory": 1, + "map": 1, + "_": 1, + "input": 1, + "add": 2, + "a": 2, + "maven": 2, + "style": 2, + "repository": 2, + "resolvers": 2, + "at": 4, + "url": 3, + "sequence": 1, + "of": 1, + "repositories": 1, + "define": 1, + "the": 4, + "to": 4, + "publish": 1, + "publishTo": 1, + "set": 2, + "Ivy": 1, + "logging": 1, + "be": 1, + "highest": 1, + "level": 1, + "ivyLoggingLevel": 1, + "UpdateLogging": 1, + "Full": 1, + "disable": 1, + "updating": 1, + "dynamic": 1, + "revisions": 1, + "including": 1, + "SNAPSHOT": 1, + "versions": 1, + "offline": 1, + "true": 5, + "prompt": 1, + "for": 1, + "this": 1, + "build": 1, + "include": 1, + "project": 1, + "id": 1, + "shellPrompt": 2, + "ThisBuild": 1, + "state": 3, + "Project.extract": 1, + ".currentRef.project": 1, + "System.getProperty": 1, + "showTiming": 1, + "false": 7, + "showSuccess": 1, + "timingFormat": 1, + "java.text.DateFormat": 1, + "DateFormat.getDateTimeInstance": 1, + "DateFormat.SHORT": 2, + "crossPaths": 1, + "fork": 2, + "Test": 3, + "javaOptions": 1, + "parallelExecution": 2, + "javaHome": 1, + "file": 3, + "scalaHome": 1, + "aggregate": 1, + "clean": 1, + "logLevel": 2, + "compile": 1, + "Level.Warn": 2, + "persistLogLevel": 1, + "Level.Debug": 1, + "traceLevel": 2, + "unmanagedJars": 1, + "publishArtifact": 2, + "packageDoc": 2, + "artifactClassifier": 1, + "retrieveManaged": 1, + "/*": 1, + "*/": 1, + "credentials": 2, + "Credentials": 2, + "Path.userHome": 1, + "/": 2, + "#": 2, + "/bin/sh": 1, + "exec": 1, + "scala": 1, + "object": 1, + "HelloWorld": 1, + "main": 1, + "args": 1, + "Array": 1, + "String": 1 + }, + "Scheme": { + "(": 359, + "import": 1, + "rnrs": 1, + ")": 373, + "only": 1, + "surfage": 4, + "s1": 1, + "lists": 1, + "filter": 4, + "-": 188, + "map": 4, + "gl": 12, + "glut": 2, + "dharmalab": 2, + "records": 1, + "define": 27, + "record": 5, + "type": 5, + "math": 1, + "basic": 1, + "agave": 4, + "glu": 1, + "compat": 1, + "geometry": 1, + "pt": 49, + "glamour": 2, + "window": 2, + "misc": 1, + "s19": 1, + "time": 24, + "s27": 1, + "random": 27, + "bits": 1, + "s42": 1, + "eager": 1, + "comprehensions": 1, + ";": 1684, + "utilities": 1, + "say": 9, + ".": 1, + "args": 2, + "for": 7, + "each": 7, + "display": 4, + "newline": 2, + "translate": 6, + "p": 6, + "glTranslated": 1, + "x": 8, + "y": 3, + ".0": 65, + "radians": 8, + "(*": 3, + "*)": 3, + "/": 7, + "pi": 2, + "degrees": 2, + "angle": 6, + "a": 19, + "cos": 1, + "sin": 1, + "current": 15, + "in": 14, + "nanoseconds": 2, + "let": 2, + "val": 3, + "+": 28, + "second": 1, + "nanosecond": 1, + "seconds": 12, + "micro": 1, + "milli": 1, + "base": 2, + "step": 1, + "score": 5, + "level": 5, + "ships": 1, + "spaceship": 5, + "fields": 4, + "mutable": 14, + "pos": 16, + "vel": 4, + "theta": 1, + "force": 1, + "particle": 8, + "birth": 2, + "lifetime": 1, + "color": 2, + "particles": 11, + "asteroid": 14, + "radius": 6, + "number": 3, + "of": 3, + "starting": 3, + "asteroids": 15, + "#f": 5, + "bullet": 16, + "pack": 12, + "is": 8, + "initialize": 1, + "size": 1, + "title": 1, + "reshape": 1, + "width": 8, + "height": 8, + "source": 2, + "randomize": 1, + "default": 1, + "wrap": 4, + "mod": 2, + "ship": 8, + "make": 11, + "ammo": 9, + "set": 19, + "list": 6, + "ec": 6, + "i": 6, + "inexact": 16, + "integer": 25, + "buffered": 1, + "procedure": 1, + "lambda": 12, + "background": 1, + "glColor3f": 5, + "matrix": 5, + "excursion": 5, + "ship.pos": 5, + "glRotated": 2, + "ship.theta": 10, + "glutWireCone": 1, + "par": 6, + "c": 4, + "vector": 6, + "ref": 3, + "glutWireSphere": 3, + "bullets": 7, + "pack.pos": 3, + "glutWireCube": 1, + "last": 3, + "dt": 7, + "update": 2, + "system": 2, + "pt*n": 8, + "ship.vel": 5, + "pack.vel": 1, + "cond": 2, + "par.birth": 1, + "par.lifetime": 1, + "else": 2, + "par.pos": 2, + "par.vel": 1, + "bullet.birth": 1, + "bullet.pos": 2, + "bullet.vel": 1, + "a.pos": 2, + "a.vel": 1, + "if": 1, + "<": 1, + "a.radius": 1, + "contact": 2, + "b": 4, + "when": 5, + "<=>": 3, + "distance": 3, + "begin": 1, + "1": 2, + "f": 1, + "append": 4, + "4": 1, + "50": 4, + "0": 7, + "100": 6, + "2": 1, + "n": 2, + "null": 1, + "10": 1, + "5": 1, + "glutIdleFunc": 1, + "glutPostRedisplay": 1, + "glutKeyboardFunc": 1, + "key": 2, + "case": 1, + "char": 1, + "#": 6, + "w": 1, + "d": 1, + "s": 1, + "space": 1, + "cons": 1, + "glutMainLoop": 1 + }, + "Scilab": { + "//": 3, + "function": 1, + "a": 4, + "b": 4, + "myfunction": 1, + "(": 7, + "d": 2, + "e": 3, + "f": 2, + ")": 7, + ".71828": 1, + "+": 5, + "%": 4, + "pi": 3, + ";": 7, + "cos": 1, + "cosh": 1, + "if": 1, + "then": 1, + "-": 2, + "e.field": 1, + "else": 1, + "home": 1, + "return": 1, + "end": 1, + "myvar": 1, + ".23e": 1, + "endfunction": 1, + "disp": 1, + "assert_checkequal": 1, + "assert_checkfalse": 1 + }, + "Shell": { + "export": 5, + "PATH": 5, + "#": 8, + "pkgname": 1, + "stud": 4, + "-": 20, + "git": 5, + "pkgver": 1, + "pkgrel": 1, + "pkgdesc": 1, + "arch": 1, + "(": 12, + "i686": 1, + "x86_64": 1, + ")": 12, + "url": 1, + "license": 1, + "depends": 1, + "libev": 1, + "openssl": 1, + "makedepends": 1, + "provides": 1, + "conflicts": 1, + "_gitroot": 1, + "https": 1, + "//github.com/bumptech/stud.git": 1, + "_gitname": 1, + "build": 1, + "{": 7, + "cd": 4, + "msg": 4, + "if": 9, + "d": 1, + ";": 5, + "then": 8, + "&&": 3, + "pull": 1, + "origin": 1, + "else": 2, + "clone": 2, + "fi": 7, + "rm": 1, + "rf": 1, + "make": 2, + "}": 7, + "package": 1, + "PREFIX": 1, + "/usr": 1, + "DESTDIR": 1, + "install": 3, + "Dm755": 1, + "init.stud": 1, + "mkdir": 1, + "p": 1, + "/usr/bin/env": 2, + "bash": 2, + "set": 2, + "e": 1, + "n": 2, + "x": 1, + "echo": 9, + "unset": 1, + "system": 1, + "exec": 1, + "rbenv": 2, + "versions": 1, + "bare": 1, + "version": 1, + "z": 2, + "&": 2, + "exit": 4, + "prefix": 1, + "/dev/null": 1, + "rvm_ignore_rvmrc": 1, + "declare": 1, + "rvmrc": 6, + "rvm_rvmrc_files": 2, + "ef": 1, + "+": 1, + "for": 2, + "in": 1, + "do": 1, + "f": 1, + "GREP_OPTIONS": 1, + "%": 1, + "b": 1, + "Error": 2, + "is": 1, + "rvm": 3, + "settings": 1, + "only.": 1, + "CLI": 1, + "may": 1, + "NOT": 1, + "be": 1, + "called": 1, + "from": 1, + "within": 1, + "rvmrc.": 1, + "Skipping": 1, + "the": 1, + "loading": 1, + "of": 1, + "rvm_path": 1, + "/usr/local/rvm": 4, + "HOME": 2, + "/.rvm": 2, + "Can": 1, + "t": 1, + "find": 1, + "rvm_scripts_path": 1, + "/rvm": 1, + "@": 1, + "sourcing": 1, + "RVM": 1, + "/bin/bash": 1, + "/bin/sh": 1, + "/bin/zsh": 1 + }, + "Standard ML": { + "signature": 2, + "LAZY_BASE": 3, + "sig": 1, + "type": 2, + "a": 19, + "lazy": 11, + "-": 9, + ")": 20, + "end": 6, + "LAZY": 1, + "bool": 1, + "val": 7, + "inject": 3, + "toString": 2, + "(": 19, + "string": 1, + "eq": 2, + "*": 4, + "(*": 1, + "*)": 1, + "structure": 5, + "LazyBase": 2, + "struct": 4, + "exception": 1, + "Undefined": 3, + "fun": 9, + "delay": 3, + "f": 9, + "force": 9, + "undefined": 1, + "fn": 3, + "raise": 1, + "LazyMemoBase": 2, + "datatype": 1, + "|": 1, + "Done": 1, + "of": 1, + "unit": 1, + "let": 1, + "open": 1, + "B": 1, + "x": 15, + "isUndefined": 2, + "ignore": 1, + ";": 1, + "false": 1, + "handle": 1, + "true": 1, + "if": 1, + "then": 1, + "else": 1, + "eqBy": 2, + "p": 4, + "y": 6, + "op": 1, + "compare": 1, + "Ops": 1, + "map": 1, + "Lazy": 1, + "LazyFn": 2, + "LazyMemo": 1 + }, + "SuperCollider": { + "BCR2000": 1, + "{": 9, + "var": 1, + "controls": 2, + "controlBuses": 2, + "rangedControlBuses": 2, + "responders": 2, + ";": 14, + "*new": 1, + "super.new.init": 1, + "}": 9, + "init": 1, + "Dictionary.new": 3, + "(": 12, + ")": 12, + "this.createCCResponders": 1, + "createCCResponders": 1, + "Array.fill": 1, + "|": 4, + "i": 4, + "CCResponder": 1, + "src": 2, + "chan": 2, + "num": 2, + "val": 4, + ".postln": 1, + "//": 10, + "controls.put": 1, + "+": 3, + "controlBuses.put": 1, + "Bus.control": 1, + "Server.default": 1, + "controlBuses.at": 2, + ".value": 1, + "/": 2, + "nil": 4, + "at": 1, + "arg": 3, + "controlNum": 6, + "controls.at": 2, + "scalarAt": 1, + "busAt": 1, + "/*": 2, + "*/": 2 + }, + "TeX": { + "%": 85, + "NeedsTeXFormat": 1, + "{": 180, + "LaTeX2e": 1, + "}": 185, + "ProvidesClass": 1, + "reedthesis": 1, + "/01/27": 1, + "The": 3, + "Reed": 5, + "College": 5, + "Thesis": 5, + "Class": 4, + "DeclareOption*": 1, + "PassOptionsToClass": 1, + "CurrentOption": 1, + "book": 2, + "ProcessOptions": 1, + "relax": 2, + "LoadClass": 1, + "RequirePackage": 1, + "fancyhdr": 1, + "AtBeginDocument": 1, + "fancyhf": 1, + "fancyhead": 5, + "LE": 1, + "RO": 1, + "thepage": 1, + "above": 1, + "makes": 1, + "your": 1, + "headers": 2, + "in": 6, + "all": 1, + "caps.": 1, + "If": 1, + "you": 1, + "would": 1, + "like": 1, + "different": 1, + "choose": 1, + "one": 1, + "of": 6, + "the": 7, + "following": 1, + "options": 1, + "(": 3, + "be": 1, + "sure": 1, + "to": 6, + "remove": 1, + "RE": 2, + "slshape": 2, + "nouppercase": 2, + "leftmark": 2, + "LO": 2, + "rightmark": 2, + "or": 1, + "scshape": 2, + "pagestyle": 2, + "fancy": 1, + "let": 10, + "oldthebibliography": 2, + "thebibliography": 2, + "endoldthebibliography": 2, + "endthebibliography": 1, + "renewenvironment": 2, + "#1": 12, + "addcontentsline": 5, + "toc": 5, + "chapter": 9, + "bibname": 2, + "oldtheindex": 2, + "theindex": 2, + "endoldtheindex": 2, + "endtheindex": 1, + "indexname": 1, + "RToldchapter": 1, + "renewcommand": 6, + "if@openright": 1, + "RTcleardoublepage": 3, + "else": 7, + "clearpage": 3, + "fi": 13, + "thispagestyle": 3, + "empty": 4, + "global": 2, + "@topnum": 1, + "z@": 2, + "@afterindentfalse": 1, + "secdef": 1, + "@chapter": 2, + "@schapter": 1, + "def": 12, + "#2": 4, + "ifnum": 2, + "c@secnumdepth": 1, + "m@ne": 2, + "if@mainmatter": 1, + "refstepcounter": 1, + "typeout": 1, + "@chapapp": 2, + "space": 4, + "thechapter.": 1, + "thechapter": 1, + "space#1": 1, + "chaptermark": 1, + "addtocontents": 2, + "lof": 1, + "protect": 2, + "addvspace": 2, + "p@": 3, + "lot": 1, + "if@twocolumn": 3, + "@topnewpage": 1, + "@makechapterhead": 2, + "@afterheading": 1, + "newcommand": 2, + "if@twoside": 1, + "ifodd": 1, + "c@page": 1, + "hbox": 15, + "newpage": 3, + "RToldcleardoublepage": 1, + "cleardoublepage": 4, + "setlength": 10, + "oddsidemargin": 2, + ".5in": 3, + "evensidemargin": 2, + "textwidth": 2, + ".0in": 2, + "textheight": 4, + "topmargin": 6, + "addtolength": 8, + "{-": 5, + "-}": 5, + "headheight": 4, + "headsep": 3, + ".6in": 1, + ".9in": 1, + ".5pt": 1, + "division#1": 1, + "gdef": 6, + "@division": 3, + "@latex@warning@no@line": 3, + "No": 3, + "noexpand": 3, + "division": 1, + "given": 3, + "department#1": 1, + "@department": 3, + "department": 1, + "thedivisionof#1": 1, + "@thedivisionof": 3, + "Division": 2, + "approvedforthe#1": 1, + "@approvedforthe": 3, + "advisor#1": 1, + "@advisor": 3, + "advisor": 1, + "altadvisor#1": 1, + "@altadvisor": 3, + "@altadvisortrue": 1, + "@empty": 1, + "newif": 1, + "if@altadvisor": 3, + "@altadvisorfalse": 1, + "contentsname": 1, + "Table": 1, + "Contents": 1, + "References": 1, + "l@chapter": 1, + "c@tocdepth": 1, + "addpenalty": 1, + "@highpenalty": 2, + "vskip": 4, + ".0em": 1, + "@plus": 1, + "@tempdima": 2, + ".5em": 2, + "begingroup": 1, + "parindent": 1, + "rightskip": 1, + "@pnumwidth": 3, + "parfillskip": 1, + "-": 2, + "leavevmode": 1, + "bfseries": 3, + "advance": 1, + "leftskip": 2, + "hskip": 1, + "nobreak": 2, + "normalfont": 1, + "leaders": 1, + "m@th": 1, + "mkern": 2, + "@dotsep": 2, + "mu": 2, + ".": 1, + "hfill": 1, + "hb@xt@": 1, + "hss": 1, + "par": 6, + "penalty": 1, + "endgroup": 1, + "newenvironment": 1, + "abstract": 1, + "@restonecoltrue": 1, + "onecolumn": 1, + "@restonecolfalse": 1, + "Abstract": 2, + "begin": 4, + "center": 4, + "fontsize": 7, + "selectfont": 6, + "end": 4, + "if@restonecol": 1, + "twocolumn": 1, + "ifx": 1, + "@pdfoutput": 1, + "@undefined": 1, + "RTpercent": 3, + "@percentchar": 1, + "AtBeginDvi": 2, + "special": 2, + "LaTeX": 3, + "/12/04": 3, + "SN": 3, + "rawpostscript": 1, + "AtEndDocument": 1, + "pdfinfo": 1, + "/Creator": 1, + ")": 2, + "maketitle": 1, + "titlepage": 2, + "footnotesize": 1, + "small": 1, + "footnoterule": 1, + "footnote": 1, + "thanks": 1, + "baselineskip": 2, + ".4": 1, + "setbox0": 2, + "Requirements": 2, + "for": 3, + "Degree": 2, + "setcounter": 1, + "page": 1, + "null": 3, + "vfil": 8, + "@title": 1, + "centerline": 8, + "wd0": 7, + "hrulefill": 5, + "A": 1, + "Presented": 1, + "In": 1, + "Partial": 1, + "Fulfillment": 1, + "Bachelor": 1, + "Arts": 1, + "bigskip": 2, + "lineskip": 1, + ".75em": 1, + "tabular": 2, + "t": 1, + "c": 5, + "@author": 1, + "@date": 1, + "Approved": 1, + "cm": 2, + "copy0": 1, + "major": 1, + "sign": 1, + "makebox": 6 + }, + "Tea": { + "<%>": 1, + "template": 1, + "foo": 1 + }, + "Turing": { + "%": 1, + "function": 1, + "factorial": 4, + "(": 3, + "n": 9, + "int": 2, + ")": 3, + "real": 1, + "if": 2, + "then": 1, + "result": 2, + "else": 1, + "*": 1, + "-": 1, + "end": 3, + "var": 1, + "loop": 2, + "put": 3, + "..": 1, + "get": 1, + "exit": 1, + "when": 1 + }, + "VHDL": { + "-": 2, + "VHDL": 1, + "example": 1, + "file": 1, + "library": 1, + "ieee": 1, + ";": 7, + "use": 1, + "ieee.std_logic_1164.all": 1, + "entity": 2, + "inverter": 2, + "is": 2, + "port": 1, + "(": 1, + "a": 2, + "in": 1, + "std_logic": 2, + "b": 2, + "out": 1, + ")": 1, + "end": 2, + "architecture": 2, + "rtl": 1, + "of": 1, + "begin": 1, + "<": 1, + "not": 1 + }, + "Verilog": { + "////////////////////////////////////////////////////////////////////////////////": 14, + "//": 367, + "timescale": 10, + "ns": 8, + "/": 11, + "ps": 8, + "module": 18, + "button_debounce": 3, + "(": 371, + "input": 37, + "clk": 40, + "reset_n": 32, + "button": 24, + "output": 35, + "reg": 26, + "debounce": 6, + ")": 370, + ";": 285, + "parameter": 7, + "CLK_FREQUENCY": 4, + "DEBOUNCE_HZ": 4, + "localparam": 4, + "COUNT_VALUE": 2, + "WAIT": 6, + "FIRE": 4, + "COUNT": 4, + "state": 6, + "next_state": 6, + "count": 6, + "always": 23, + "@": 16, + "posedge": 11, + "or": 14, + "negedge": 8, + "<": 47, + "begin": 46, + "if": 23, + "end": 48, + "else": 22, + "case": 3, + "<=>": 4, + "1": 7, + "endcase": 3, + "-": 71, + "default": 2, + "endmodule": 18, + "control": 1, + "en": 13, + "dsp_sel": 9, + "an": 6, + "wire": 67, + "a": 3, + "b": 3, + "c": 3, + "d": 3, + "e": 3, + "f": 2, + "g": 2, + "h": 2, + "i": 60, + "j": 2, + "k": 2, + "l": 2, + "assign": 23, + "FDRSE": 6, + "#": 10, + ".INIT": 6, + "b0": 27, + ".S": 6, + "b1": 13, + "DFF2": 1, + ".Q": 6, + ".C": 6, + ".CE": 6, + ".D": 6, + ".R": 6, + "DFF0": 1, + "DFF6": 1, + "DFF4": 1, + "DFF10": 1, + "DFF8": 1, + "/*": 4, + "*/": 4, + "hex_display": 1, + "num": 5, + "hex0": 2, + "hex1": 2, + "hex2": 2, + "hex3": 2, + "seg_7": 4, + "hex_group0": 1, + ".num": 4, + ".en": 4, + ".seg": 4, + "hex_group1": 1, + "hex_group2": 1, + "hex_group3": 1, + "mux": 1, + "opA": 4, + "opB": 3, + "sum": 5, + "out": 5, + "cout": 4, + "b0000": 1, + "b01": 1, + "b11": 1, + "pipeline_registers": 1, + "BIT_WIDTH": 5, + "pipe_in": 4, + "pipe_out": 5, + "NUMBER_OF_STAGES": 7, + "generate": 3, + "genvar": 3, + "*": 4, + "BIT_WIDTH*": 5, + "pipe_gen": 6, + "for": 4, + "+": 36, + "pipeline": 2, + "BIT_WIDTH*i": 2, + "endgenerate": 3, + "ps2_mouse": 1, + "reset": 5, + "inout": 2, + "ps2_clk": 3, + "ps2_dat": 3, + "the_command": 2, + "send_command": 2, + "command_was_sent": 2, + "error_communication_timed_out": 3, + "received_data": 2, + "received_data_en": 4, + "start_receiving_data": 3, + "wait_for_incoming_data": 3, + "ps2_clk_posedge": 3, + "ps2_clk_negedge": 3, + "idle_counter": 4, + "ps2_clk_reg": 4, + "ps2_data_reg": 5, + "last_ps2_clk": 4, + "ns_ps2_transceiver": 13, + "s_ps2_transceiver": 8, + "PS2_STATE_0_IDLE": 10, + "h1": 1, + "PS2_STATE_2_COMMAND_OUT": 2, + "h3": 1, + "PS2_STATE_4_END_DELAYED": 4, + "(*": 1, + "*)": 1, + "PS2_STATE_1_DATA_IN": 3, + "||": 1, + "PS2_STATE_3_END_TRANSFER": 3, + "h00": 1, + "&&": 3, + "h01": 1, + "ps2_mouse_cmdout": 1, + "mouse_cmdout": 1, + ".clk": 6, + ".reset": 2, + ".the_command": 1, + ".send_command": 1, + ".ps2_clk_posedge": 2, + ".ps2_clk_negedge": 2, + ".ps2_clk": 1, + ".ps2_dat": 1, + ".command_was_sent": 1, + ".error_communication_timed_out": 1, + "ps2_mouse_datain": 1, + "mouse_datain": 1, + ".wait_for_incoming_data": 1, + ".start_receiving_data": 1, + ".ps2_data": 1, + ".received_data": 1, + ".received_data_en": 1, + "ns/1ps": 2, + "e0": 1, + "x": 41, + "y": 21, + "{": 11, + "}": 11, + "e1": 1, + "ch": 1, + "z": 7, + "o": 6, + "&": 6, + "maj": 1, + "|": 2, + "s0": 1, + "s1": 1, + "sign_extender": 1, + "INPUT_WIDTH": 5, + "OUTPUT_WIDTH": 4, + "original": 3, + "sign_extended_original": 2, + "sign_extend": 3, + "gen_sign_extend": 1, + "sqrt_pipelined": 3, + "start": 11, + "INPUT_BITS": 28, + "radicand": 10, + "data_valid": 7, + "OUTPUT_BITS": 14, + "root": 6, + "%": 3, + "start_gen": 7, + "OUTPUT_BITS*INPUT_BITS": 9, + "root_gen": 15, + "radicand_gen": 10, + "mask_gen": 9, + "mask_4": 1, + "INPUT_BITS*": 27, + "<<": 2, + "i/2": 2, + "pipeline_stage": 1, + "INPUT_BITS*i": 5, + "t_button_debounce": 1, + ".CLK_FREQUENCY": 1, + ".DEBOUNCE_HZ": 1, + ".reset_n": 3, + ".button": 1, + ".debounce": 1, + "initial": 3, + "bx": 4, + "#10": 10, + "#5": 3, + "#100": 1, + "#0.1": 8, + "t_div_pipelined": 1, + "dividend": 3, + "divisor": 5, + "div_by_zero": 2, + "quotient": 2, + "quotient_correct": 1, + "BITS": 2, + "div_pipelined": 2, + ".BITS": 1, + ".dividend": 1, + ".divisor": 1, + ".quotient": 1, + ".div_by_zero": 1, + ".start": 2, + ".data_valid": 2, + "#50": 2, + "#1": 1, + "#1000": 1, + "finish": 2, + "t_sqrt_pipelined": 1, + ".INPUT_BITS": 1, + ".radicand": 1, + ".root": 1, + "#10000": 1, + "vga": 1, + "wb_clk_i": 6, + "wb_rst_i": 6, + "wb_dat_i": 3, + "wb_dat_o": 2, + "wb_adr_i": 3, + "wb_we_i": 3, + "wb_tga_i": 5, + "wb_sel_i": 3, + "wb_stb_i": 2, + "wb_cyc_i": 2, + "wb_ack_o": 2, + "vga_red_o": 2, + "vga_green_o": 2, + "vga_blue_o": 2, + "horiz_sync": 2, + "vert_sync": 2, + "csrm_adr_o": 2, + "csrm_sel_o": 2, + "csrm_we_o": 2, + "csrm_dat_o": 2, + "csrm_dat_i": 2, + "csr_adr_i": 3, + "csr_stb_i": 2, + "conf_wb_dat_o": 3, + "conf_wb_ack_o": 3, + "mem_wb_dat_o": 3, + "mem_wb_ack_o": 3, + "csr_adr_o": 2, + "csr_dat_i": 3, + "csr_stb_o": 3, + "v_retrace": 3, + "vh_retrace": 3, + "w_vert_sync": 3, + "shift_reg1": 3, + "graphics_alpha": 4, + "memory_mapping1": 3, + "write_mode": 3, + "raster_op": 3, + "read_mode": 3, + "bitmask": 3, + "set_reset": 3, + "enable_set_reset": 3, + "map_mask": 3, + "x_dotclockdiv2": 3, + "chain_four": 3, + "read_map_select": 3, + "color_compare": 3, + "color_dont_care": 3, + "wbm_adr_o": 3, + "wbm_sel_o": 3, + "wbm_we_o": 3, + "wbm_dat_o": 3, + "wbm_dat_i": 3, + "wbm_stb_o": 3, + "wbm_ack_i": 3, + "stb": 4, + "cur_start": 3, + "cur_end": 3, + "start_addr": 2, + "vcursor": 3, + "hcursor": 3, + "horiz_total": 3, + "end_horiz": 3, + "st_hor_retr": 3, + "end_hor_retr": 3, + "vert_total": 3, + "end_vert": 3, + "st_ver_retr": 3, + "end_ver_retr": 3, + "pal_addr": 3, + "pal_we": 3, + "pal_read": 3, + "pal_write": 3, + "dac_we": 3, + "dac_read_data_cycle": 3, + "dac_read_data_register": 3, + "dac_read_data": 3, + "dac_write_data_cycle": 3, + "dac_write_data_register": 3, + "dac_write_data": 3, + "vga_config_iface": 1, + "config_iface": 1, + ".wb_clk_i": 2, + ".wb_rst_i": 2, + ".wb_dat_i": 2, + ".wb_dat_o": 2, + ".wb_adr_i": 2, + ".wb_we_i": 2, + ".wb_sel_i": 2, + ".wb_stb_i": 2, + ".wb_ack_o": 2, + ".shift_reg1": 2, + ".graphics_alpha": 2, + ".memory_mapping1": 2, + ".write_mode": 2, + ".raster_op": 2, + ".read_mode": 2, + ".bitmask": 2, + ".set_reset": 2, + ".enable_set_reset": 2, + ".map_mask": 2, + ".x_dotclockdiv2": 2, + ".chain_four": 2, + ".read_map_select": 2, + ".color_compare": 2, + ".color_dont_care": 2, + ".pal_addr": 2, + ".pal_we": 2, + ".pal_read": 2, + ".pal_write": 2, + ".dac_we": 2, + ".dac_read_data_cycle": 2, + ".dac_read_data_register": 2, + ".dac_read_data": 2, + ".dac_write_data_cycle": 2, + ".dac_write_data_register": 2, + ".dac_write_data": 2, + ".cur_start": 2, + ".cur_end": 2, + ".start_addr": 1, + ".vcursor": 2, + ".hcursor": 2, + ".horiz_total": 2, + ".end_horiz": 2, + ".st_hor_retr": 2, + ".end_hor_retr": 2, + ".vert_total": 2, + ".end_vert": 2, + ".st_ver_retr": 2, + ".end_ver_retr": 2, + ".v_retrace": 2, + ".vh_retrace": 2, + "vga_lcd": 1, + "lcd": 1, + ".rst": 1, + ".csr_adr_o": 1, + ".csr_dat_i": 1, + ".csr_stb_o": 1, + ".vga_red_o": 1, + ".vga_green_o": 1, + ".vga_blue_o": 1, + ".horiz_sync": 1, + ".vert_sync": 1, + "vga_cpu_mem_iface": 1, + "cpu_mem_iface": 1, + ".wbs_adr_i": 1, + ".wbs_sel_i": 1, + ".wbs_we_i": 1, + ".wbs_dat_i": 1, + ".wbs_dat_o": 1, + ".wbs_stb_i": 1, + ".wbs_ack_o": 1, + ".wbm_adr_o": 1, + ".wbm_sel_o": 1, + ".wbm_we_o": 1, + ".wbm_dat_o": 1, + ".wbm_dat_i": 1, + ".wbm_stb_o": 1, + ".wbm_ack_i": 1, + "vga_mem_arbitrer": 1, + "mem_arbitrer": 1, + ".clk_i": 1, + ".rst_i": 1, + ".csr_adr_i": 1, + ".csr_dat_o": 1, + ".csr_stb_i": 1, + ".csrm_adr_o": 1, + ".csrm_sel_o": 1, + ".csrm_we_o": 1, + ".csrm_dat_o": 1, + ".csrm_dat_i": 1 + }, + "VimL": { + "no": 1, + "toolbar": 1, + "set": 7, + "guioptions": 1, + "-": 1, + "T": 1, + "nocompatible": 1, + "ignorecase": 1, + "incsearch": 1, + "smartcase": 1, + "showmatch": 1, + "showcmd": 1, + "syntax": 1, + "on": 1 + }, + "Visual Basic": { + "VERSION": 1, + ".0": 1, + "CLASS": 1, + "BEGIN": 1, + "MultiUse": 1, + "-": 6, + "NotPersistable": 1, + "DataBindingBehavior": 1, + "vbNone": 1, + "MTSTransactionMode": 1, + "*************************************************************************************************************************************************************************************************************************************************": 2, + "Copyright": 1, + "(": 9, + "c": 1, + ")": 9, + "David": 1, + "Briant": 1, + "All": 1, + "rights": 1, + "reserved": 1, + "Option": 1, + "Explicit": 1, + "Private": 25, + "Declare": 3, + "Function": 4, + "apiSetProp": 4, + "Lib": 3, + "Alias": 3, + "ByVal": 6, + "hwnd": 2, + "As": 32, + "Long": 10, + "lpString": 2, + "String": 12, + "hData": 1, + "apiGlobalAddAtom": 3, + "apiSetForegroundWindow": 1, + "myMouseEventsForm": 5, + "fMouseEventsForm": 2, + "WithEvents": 3, + "myAST": 3, + "cTP_AdvSysTray": 2, + "Attribute": 3, + "myAST.VB_VarHelpID": 1, + "myClassName": 2, + "myWindowName": 2, + "Const": 9, + "TEN_MILLION": 1, + "Single": 1, + "myListener": 1, + "VLMessaging.VLMMMFileListener": 1, + "myListener.VB_VarHelpID": 1, + "myMMFileTransports": 1, + "VLMessaging.VLMMMFileTransports": 1, + "myMMFileTransports.VB_VarHelpID": 1, + "myMachineID": 1, + "myRouterSeed": 1, + "myRouterIDsByMMTransportID": 1, + "New": 6, + "Dictionary": 3, + "myMMTransportIDsByRouterID": 1, + "myDirectoryEntriesByIDString": 1, + "GET_ROUTER_ID": 1, + "GET_ROUTER_ID_REPLY": 1, + "REGISTER_SERVICE": 1, + "REGISTER_SERVICE_REPLY": 1, + "UNREGISTER_SERVICE": 1, + "UNREGISTER_SERVICE_REPLY": 1, + "GET_SERVICES": 1, + "GET_SERVICES_REPLY": 1, + "Initialize": 1, + "/": 1, + "Release": 1, + "hide": 1, + "us": 1, + "from": 1, + "the": 2, + "Applications": 1, + "list": 1, + "in": 1, + "Windows": 1, + "Task": 1, + "Manager": 1, + "App.TaskVisible": 1, + "False": 1, + "create": 1, + "tray": 1, + "icon": 1, + "Set": 4, + "myAST.create": 1, + "myMouseEventsForm.icon": 1, + "make": 1, + "myself": 1, + "easily": 1, + "found": 1, + "myMouseEventsForm.hwnd": 3, + "End": 4, + "Sub": 6, + "shutdown": 1, + "myAST.destroy": 1, + "Nothing": 2, + "Unload": 1, + "myAST_RButtonUp": 1, + "Dim": 1, + "epm": 1, + "cTP_EasyPopupMenu": 1, + "menuItemSelected": 1, + "epm.addMenuItem": 2, + "MF_STRING": 3, + "epm.addSubmenuItem": 2, + "Disabled": 1, + "item": 2, + "Checked": 1, + "Exit": 1, + "<\">": 1, + "address": 3, + "MachineID": 1, + "RouterID": 1, + "AgentID": 1, + "myMMFileTransports_disconnecting": 1, + "id": 1, + "oReceived": 2, + "Boolean": 1, + "True": 1 + }, + "XML": { + "<?xml>": 3, + "version=": 4, + "<project>": 1, + "name=": 223, + "xmlns": 2, + "ea=": 2, + "<description>": 2, + "This": 21, + "easyant": 3, + "module.ant": 1, + "sample": 2, + "file": 3, + "is": 123, + "optionnal": 1, + "and": 44, + "designed": 1, + "to": 164, + "customize": 1, + "your": 8, + "build": 1, + "with": 23, + "own": 2, + "specific": 8, + "target.": 1, + "</description>": 2, + "<target>": 2, + "<echo>": 2, + "my": 2, + "awesome": 1, + "additionnal": 1, + "target": 6, + "</echo>": 2, + "</target>": 2, + "extensionOf=": 1, + "i": 2, + "would": 2, + "love": 1, + "could": 1, + "easily": 1, + "plug": 1, + "pre": 1, + "compile": 1, + "step": 1, + "</project>": 1, + "<ivy-module>": 1, + "<info>": 1, + "organisation=": 3, + "module=": 3, + "revision=": 3, + "status=": 1, + "this": 77, + "a": 127, + "module.ivy": 1, + "for": 59, + "java": 1, + "standard": 1, + "application": 2, + "<!--": 1, + "-->": 1, + "<ea:build>": 1, + "<ea:property>": 1, + "value=": 1, + "<ea:plugin>": 1, + "</ea:build>": 1, + "</info>": 1, + "<configurations>": 1, + "<conf>": 2, + "visibility=": 2, + "description=": 2, + "</configurations>": 1, + "<dependencies>": 1, + "<dependency>": 1, + "org=": 1, + "rev=": 1, + "conf=": 1, + "default": 9, + "junit": 2, + ".4": 1, + "test": 7, + "-": 49, + "/": 6, + "</dependencies>": 1, + "</ivy-module>": 1, + "<doc>": 1, + "<assembly>": 1, + "<name>": 1, + "ReactiveUI": 2, + "</name>": 1, + "</assembly>": 1, + "<members>": 1, + "<member>": 120, + "<summary>": 120, + "IObservedChange": 5, + "generic": 3, + "interface": 4, + "that": 94, + "replaces": 1, + "the": 260, + "non": 1, + "PropertyChangedEventArgs.": 1, + "Note": 7, + "it": 16, + "used": 19, + "both": 2, + "Changing": 5, + "(": 52, + "i.e.": 23, + ")": 45, + "Changed": 4, + "Observables.": 2, + "In": 6, + "future": 2, + "will": 65, + "be": 57, + "Covariant": 1, + "which": 12, + "allow": 1, + "simpler": 1, + "casting": 1, + "between": 15, + "changes.": 2, + "</summary>": 121, + "</member>": 120, + "The": 74, + "object": 42, + "has": 16, + "raised": 1, + "change.": 12, + "name": 7, + "of": 75, + "property": 74, + "changed": 18, + "on": 35, + "Sender.": 1, + "value": 44, + "changed.": 9, + "IMPORTANT": 1, + "NOTE": 1, + "often": 3, + "not": 9, + "set": 41, + "performance": 1, + "reasons": 1, + "unless": 1, + "you": 20, + "have": 17, + "explicitly": 1, + "requested": 1, + "an": 88, + "Observable": 56, + "via": 8, + "method": 34, + "such": 5, + "as": 25, + "ObservableForProperty.": 1, + "To": 4, + "retrieve": 3, + "use": 5, + "Value": 3, + "extension": 2, + "method.": 2, + "IReactiveNotifyPropertyChanged": 6, + "represents": 4, + "extended": 1, + "version": 3, + "INotifyPropertyChanged": 1, + "also": 17, + "exposes": 1, + "IEnableLogger": 1, + "dummy": 1, + "attaching": 1, + "any": 11, + "class": 11, + "give": 1, + "access": 3, + "Log": 2, + "When": 5, + "called": 5, + "fire": 11, + "change": 26, + "notifications": 22, + "neither": 3, + "traditional": 3, + "nor": 3, + "until": 7, + "return": 11, + "disposed.": 3, + "<returns>": 36, + "An": 26, + "when": 38, + "disposed": 4, + "reenables": 3, + "notifications.": 5, + "</returns>": 36, + "Represents": 4, + "fires": 6, + "*before*": 2, + "about": 5, + "should": 10, + "duplicate": 2, + "if": 27, + "same": 8, + "multiple": 6, + "times.": 4, + "*after*": 2, + "TSender": 1, + "helper": 5, + "adds": 2, + "typed": 2, + "versions": 2, + "Changed.": 1, + "IReactiveCollection": 3, + "collection": 27, + "can": 11, + "notify": 3, + "its": 4, + "contents": 2, + "are": 13, + "either": 1, + "items": 27, + "added/removed": 1, + "or": 24, + "itself": 2, + "changes": 13, + ".": 22, + "It": 1, + "important": 6, + "implement": 5, + "Changing/Changed": 1, + "from": 12, + "semantically": 3, + "Fires": 14, + "added": 6, + "once": 4, + "per": 2, + "item": 19, + "added.": 4, + "Functions": 2, + "add": 2, + "AddRange": 2, + "provided": 14, + "was": 6, + "before": 8, + "going": 4, + "collection.": 6, + "been": 5, + "removed": 4, + "providing": 20, + "removed.": 4, + "whenever": 18, + "number": 9, + "in": 45, + "new": 10, + "Count.": 4, + "previous": 2, + "Provides": 4, + "Item": 4, + "implements": 8, + "IReactiveNotifyPropertyChanged.": 4, + "only": 18, + "enabled": 8, + "ChangeTrackingEnabled": 2, + "True.": 2, + "Enables": 2, + "ItemChanging": 2, + "ItemChanged": 2, + "properties": 29, + ";": 10, + "implementing": 2, + "rebroadcast": 2, + "through": 3, + "ItemChanging/ItemChanged.": 2, + "T": 1, + "type": 23, + "specified": 7, + "Observables": 4, + "IMessageBus": 1, + "act": 2, + "simple": 2, + "way": 2, + "ViewModels": 3, + "other": 9, + "objects": 4, + "communicate": 2, + "each": 7, + "loosely": 2, + "coupled": 2, + "way.": 2, + "Specifying": 2, + "messages": 22, + "go": 2, + "where": 4, + "done": 2, + "combination": 2, + "Type": 9, + "message": 30, + "well": 2, + "additional": 3, + "parameter": 6, + "unique": 12, + "string": 13, + "distinguish": 12, + "arbitrarily": 2, + "by": 13, + "client.": 2, + "Listen": 4, + "provides": 6, + "Message": 2, + "RegisterMessageSource": 4, + "SendMessage.": 2, + "<typeparam>": 12, + "listen": 6, + "to.": 7, + "</typeparam>": 12, + "<param>": 84, + "A": 19, + "identical": 11, + "types": 10, + "one": 27, + "purpose": 10, + "leave": 10, + "null.": 10, + "</param>": 83, + "Determins": 2, + "particular": 2, + "registered.": 2, + "message.": 1, + "True": 6, + "posted": 3, + "Type.": 2, + "Registers": 3, + "representing": 20, + "stream": 7, + "send.": 4, + "Another": 2, + "part": 2, + "code": 4, + "then": 3, + "call": 5, + "Observable.": 6, + "subscribed": 2, + "sent": 2, + "out": 4, + "provided.": 5, + "Sends": 2, + "single": 2, + "using": 9, + "contract.": 2, + "Consider": 2, + "instead": 2, + "sending": 2, + "response": 2, + "events.": 2, + "actual": 2, + "send": 3, + "returns": 5, + "current": 10, + "logger": 2, + "allows": 15, + "log": 2, + "attached.": 1, + "data": 1, + "structure": 1, + "representation": 1, + "memoizing": 2, + "cache": 14, + "evaluate": 1, + "function": 13, + "but": 7, + "keep": 1, + "recently": 3, + "evaluated": 1, + "parameters.": 1, + "Since": 1, + "mathematical": 2, + "sense": 1, + "key": 12, + "*always*": 1, + "maps": 1, + "corresponding": 2, + "value.": 2, + "calculation": 8, + "function.": 6, + "returned": 2, + "Constructor": 2, + "whose": 7, + "results": 6, + "want": 2, + "Tag": 1, + "user": 2, + "defined": 1, + "size": 1, + "maintain": 1, + "after": 1, + "old": 1, + "start": 1, + "thrown": 1, + "out.": 1, + "result": 3, + "gets": 1, + "evicted": 2, + "because": 2, + "Invalidate": 2, + "full": 1, + "Evaluates": 1, + "returning": 1, + "cached": 2, + "possible": 1, + "pass": 2, + "optional": 2, + "parameter.": 1, + "Ensure": 1, + "next": 1, + "time": 3, + "queried": 1, + "called.": 1, + "all": 4, + "Returns": 5, + "values": 4, + "currently": 2, + "MessageBus": 3, + "bus.": 1, + "scheduler": 11, + "post": 2, + "RxApp.DeferredScheduler": 2, + "default.": 2, + "Current": 1, + "RxApp": 1, + "global": 1, + "object.": 3, + "ViewModel": 8, + "another": 3, + "s": 1, + "Return": 1, + "instance": 2, + "type.": 3, + "registered": 1, + "ObservableAsPropertyHelper": 6, + "help": 1, + "backed": 1, + "read": 3, + "still": 1, + "created": 2, + "directly": 1, + "more": 16, + "ToProperty": 2, + "ObservableToProperty": 1, + "methods.": 2, + "so": 1, + "output": 1, + "chained": 2, + "example": 2, + "property.": 12, + "Constructs": 4, + "base": 3, + "on.": 6, + "action": 2, + "take": 2, + "typically": 1, + "t": 2, + "bindings": 13, + "null": 4, + "OAPH": 2, + "at": 2, + "startup.": 1, + "initial": 28, + "normally": 6, + "Dispatcher": 3, + "based": 9, + "last": 1, + "Exception": 1, + "steps": 1, + "taken": 1, + "ensure": 3, + "never": 3, + "complete": 1, + "fail.": 1, + "Converts": 2, + "automatically": 3, + "onChanged": 2, + "raise": 2, + "notification.": 2, + "equivalent": 2, + "convenient.": 1, + "Expression": 7, + "initialized": 2, + "backing": 9, + "field": 10, + "ReactiveObject": 11, + "ObservableAsyncMRUCache": 2, + "memoization": 2, + "asynchronous": 4, + "expensive": 2, + "compute": 1, + "MRU": 1, + "fixed": 1, + "limit": 5, + "cache.": 5, + "guarantees": 6, + "given": 11, + "flight": 2, + "subsequent": 1, + "requests": 4, + "wait": 3, + "first": 1, + "empty": 1, + "web": 6, + "image": 1, + "receives": 1, + "two": 1, + "concurrent": 5, + "issue": 2, + "WebRequest": 1, + "does": 1, + "mean": 1, + "request": 3, + "Concurrency": 1, + "limited": 1, + "maxConcurrent": 1, + "too": 1, + "many": 1, + "operations": 6, + "progress": 1, + "further": 1, + "queued": 1, + "slot": 1, + "available.": 1, + "performs": 1, + "asyncronous": 1, + "async": 3, + "CPU": 1, + "Observable.Return": 1, + "may": 1, + "result.": 2, + "*must*": 1, + "equivalently": 1, + "input": 2, + "being": 1, + "memoized": 1, + "calculationFunc": 2, + "depends": 1, + "varables": 1, + "than": 5, + "unpredictable.": 1, + "reached": 2, + "discarded.": 4, + "maximum": 2, + "regardless": 2, + "caches": 2, + "server.": 2, + "clean": 1, + "up": 25, + "manage": 1, + "disk": 1, + "download": 1, + "save": 1, + "temporary": 1, + "folder": 1, + "onRelease": 1, + "delete": 1, + "file.": 1, + "run": 7, + "defaults": 1, + "TaskpoolScheduler": 2, + "Issues": 1, + "fetch": 1, + "operation.": 1, + "operation": 2, + "finishes.": 1, + "If": 6, + "immediately": 3, + "upon": 1, + "subscribing": 1, + "returned.": 2, + "provide": 2, + "synchronous": 1, + "AsyncGet": 1, + "resulting": 1, + "Works": 2, + "like": 2, + "SelectMany": 2, + "memoizes": 2, + "selector": 5, + "calls.": 2, + "addition": 3, + "no": 4, + "selectors": 2, + "running": 4, + "concurrently": 2, + "queues": 2, + "rest.": 2, + "very": 2, + "services": 2, + "avoid": 2, + "potentially": 2, + "spamming": 2, + "server": 2, + "hundreds": 2, + "requests.": 2, + "similar": 3, + "passed": 1, + "SelectMany.": 1, + "similarly": 1, + "ObservableAsyncMRUCache.AsyncGet": 1, + "must": 2, + "sense.": 1, + "flattened": 2, + "selector.": 2, + "overload": 2, + "useful": 2, + "making": 3, + "service": 1, + "several": 1, + "places": 1, + "paths": 1, + "already": 1, + "configured": 1, + "ObservableAsyncMRUCache.": 1, + "notification": 6, + "Attempts": 1, + "expression": 3, + "false": 2, + "expression.": 1, + "entire": 1, + "able": 1, + "followed": 1, + "otherwise": 1, + "Given": 3, + "fully": 3, + "filled": 1, + "SetValueToProperty": 1, + "apply": 3, + "target.property": 1, + "This.GetValue": 1, + "observed": 1, + "onto": 1, + "convert": 2, + "stream.": 3, + "ValueIfNotDefault": 1, + "filters": 1, + "BindTo": 1, + "takes": 1, + "applies": 1, + "Conceptually": 1, + "child": 2, + "without": 1, + "checks.": 1, + "set.": 3, + "x.Foo.Bar.Baz": 1, + "disconnects": 1, + "binding.": 1, + "ReactiveCollection.": 1, + "ReactiveCollection": 1, + "existing": 3, + "list.": 2, + "list": 1, + "populate": 1, + "anything": 2, + "Change": 2, + "Tracking": 2, + "Creates": 3, + "adding": 2, + "completes": 4, + "optionally": 2, + "ensuring": 2, + "delay.": 2, + "withDelay": 2, + "leak": 2, + "Timer.": 2, + "always": 4, + "UI": 2, + "thread.": 3, + "put": 2, + "into": 2, + "populated": 4, + "faster": 2, + "delay": 2, + "Select": 3, + "item.": 3, + "creating": 2, + "collections": 1, + "updated": 1, + "respective": 1, + "Model": 1, + "updated.": 1, + "Collection.Select": 1, + "mirror": 1, + "ObservableForProperty": 14, + "ReactiveObject.": 1, + "unlike": 13, + "Selector": 1, + "classes": 2, + "INotifyPropertyChanged.": 1, + "monitor": 1, + "RaiseAndSetIfChanged": 2, + "Setter": 2, + "write": 2, + "assumption": 4, + "named": 2, + "RxApp.GetFieldNameForPropertyNameFunc.": 2, + "almost": 2, + "keyword.": 2, + "newly": 2, + "intended": 5, + "Silverlight": 2, + "WP7": 1, + "reflection": 1, + "cannot": 1, + "private": 1, + "field.": 1, + "Reference": 1, + "Use": 13, + "custom": 4, + "raiseAndSetIfChanged": 1, + "doesn": 1, + "x": 1, + "x.SomeProperty": 1, + "suffice.": 1, + "RaisePropertyChanging": 2, + "mock": 4, + "scenarios": 4, + "manually": 4, + "fake": 4, + "invoke": 4, + "raisePropertyChanging": 4, + "faking": 4, + "RaisePropertyChanged": 2, + "helps": 1, + "make": 2, + "them": 1, + "compatible": 1, + "Rx.Net.": 1, + "declare": 1, + "initialize": 1, + "derive": 1, + "properties/methods": 1, + "MakeObjectReactiveHelper.": 1, + "InUnitTestRunner": 1, + "attempts": 1, + "determine": 1, + "heuristically": 1, + "unit": 3, + "framework.": 1, + "we": 1, + "determined": 1, + "framework": 1, + "running.": 1, + "GetFieldNameForProperty": 1, + "convention": 2, + "GetFieldNameForPropertyNameFunc.": 1, + "needs": 1, + "found.": 1, + "name.": 1, + "DeferredScheduler": 1, + "schedule": 2, + "work": 2, + "normal": 2, + "mode": 2, + "DispatcherScheduler": 1, + "Unit": 1, + "Test": 1, + "Immediate": 1, + "simplify": 1, + "writing": 1, + "common": 1, + "tests.": 1, + "background": 1, + "modes": 1, + "TPL": 1, + "Task": 1, + "Pool": 1, + "Threadpool": 1, + "Set": 3, + "provider": 1, + "usually": 1, + "entry": 1, + "MessageBus.Current.": 1, + "override": 1, + "naming": 1, + "one.": 1, + "WhenAny": 12, + "observe": 12, + "constructors": 12, + "need": 12, + "setup.": 12, + "</members>": 1, + "</doc>": 1 + }, + "XQuery": { + "(": 38, + "-": 486, + "xproc.xqm": 1, + "core": 1, + "xqm": 1, + "contains": 1, + "entry": 2, + "points": 1, + "primary": 1, + "eval": 3, + "step": 5, + "function": 3, + "and": 3, + "control": 1, + "functions.": 1, + ")": 38, + "xquery": 1, + "version": 1, + "encoding": 1, + ";": 25, + "module": 6, + "namespace": 8, + "xproc": 17, + "declare": 24, + "namespaces": 5, + "p": 2, + "c": 1, + "err": 1, + "imports": 1, + "import": 4, + "util": 1, + "at": 4, + "const": 1, + "parse": 8, + "u": 2, + "options": 2, + "boundary": 1, + "space": 1, + "preserve": 1, + "option": 1, + "saxon": 1, + "output": 1, + "functions": 1, + "variable": 13, + "run": 2, + "run#6": 1, + "choose": 1, + "try": 1, + "catch": 1, + "group": 1, + "for": 1, + "each": 1, + "viewport": 1, + "library": 1, + "pipeline": 8, + "list": 1, + "all": 1, + "declared": 1, + "enum": 3, + "{": 5, + "<namespace>": 1, + "name=": 1, + "ns": 1, + "<dummy>": 1, + "}": 5, + "</dummy>": 1, + "</namespace>": 1, + "point": 1, + "stdin": 1, + "dflag": 1, + "tflag": 1, + "bindings": 2, + "STEP": 3, + "I": 1, + "preprocess": 1, + "let": 6, + "validate": 1, + "explicit": 3, + "AST": 2, + "name": 1, + "type": 1, + "ast": 1, + "element": 1, + "parse/@*": 1, + "sort": 1, + "parse/*": 1, + "II": 1, + "eval_result": 1, + "III": 1, + "serialize": 1, + "return": 2, + "results": 1, + "serialized_result": 2 + }, + "XSLT": { + "<?xml>": 1, + "version=": 2, + "<xsl:stylesheet>": 1, + "xmlns": 1, + "xsl=": 1, + "<xsl:template>": 1, + "match=": 1, + "<html>": 1, + "<body>": 1, + "<h2>": 1, + "My": 1, + "CD": 1, + "Collection": 1, + "</h2>": 1, + "<table>": 1, + "border=": 1, + "<tr>": 2, + "bgcolor=": 1, + "<th>": 2, + "Title": 1, + "</th>": 2, + "Artist": 1, + "</tr>": 2, + "<xsl:for-each>": 1, + "select=": 3, + "<td>": 2, + "<xsl:value-of>": 2, + "</td>": 2, + "</xsl:for-each>": 1, + "</table>": 1, + "</body>": 1, + "</html>": 1, + "</xsl:template>": 1, + "</xsl:stylesheet>": 1 + }, + "YAML": { + "gem": 1, + "-": 16, + "local": 1, + "gen": 1, + "rdoc": 2, + "run": 1, + "tests": 1, + "inline": 1, + "source": 1, + "line": 1, + "numbers": 1, + "gempath": 1, + "/usr/local/rubygems": 1, + "/home/gavin/.rubygems": 1 + } + }, + "language_tokens": { + "Apex": 4041, + "AppleScript": 190, + "Arduino": 20, + "AutoHotkey": 3, + "C": 28587, + "C++": 7788, + "Ceylon": 50, + "CoffeeScript": 2340, + "Coq": 17450, + "Dart": 68, + "Delphi": 30, + "Diff": 16, + "Emacs Lisp": 3, + "GAS": 133, + "Gosu": 414, + "Groovy": 71, + "Groovy Server Pages": 91, + "Haml": 4, + "INI": 6, + "Ioke": 4, + "Java": 6032, + "JavaScript": 22985, + "Julia": 173, + "Kotlin": 149, + "Logtalk": 23, + "Markdown": 1, + "Matlab": 335, + "Nemerle": 17, + "Nimrod": 2, + "Nu": 6, + "OCaml": 261, + "Objective-C": 28134, + "Opa": 32, + "OpenCL": 88, + "OpenEdge ABL": 717, + "PHP": 12292, + "Parrot Assembly": 8, + "Parrot Internal Representation": 7, + "Perl": 7231, + "PowerShell": 14, + "Prolog": 61, + "Python": 4357, + "R": 14, + "Racket": 246, + "Rebol": 5, + "Ruby": 3539, + "Rust": 8, + "SCSS": 39, + "Sass": 28, + "Scala": 352, + "Scheme": 3549, + "Scilab": 71, + "Shell": 264, + "Standard ML": 220, + "SuperCollider": 139, + "TeX": 1073, + "Tea": 3, + "Turing": 45, + "VHDL": 42, + "Verilog": 3440, + "VimL": 20, + "Visual Basic": 294, + "XML": 5627, + "XQuery": 801, + "XSLT": 44, + "YAML": 30 + }, + "languages": { + "Apex": 6, + "AppleScript": 2, + "Arduino": 1, + "AutoHotkey": 1, + "C": 18, + "C++": 14, + "Ceylon": 1, + "CoffeeScript": 9, + "Coq": 12, + "Dart": 1, + "Delphi": 1, + "Diff": 1, + "Emacs Lisp": 1, + "GAS": 1, + "Gosu": 5, + "Groovy": 2, + "Groovy Server Pages": 4, + "Haml": 1, + "INI": 1, + "Ioke": 1, + "Java": 5, + "JavaScript": 19, + "Julia": 1, + "Kotlin": 1, + "Logtalk": 1, + "Markdown": 1, + "Matlab": 6, + "Nemerle": 1, + "Nimrod": 1, + "Nu": 1, + "OCaml": 1, + "Objective-C": 20, + "Opa": 2, + "OpenCL": 1, + "OpenEdge ABL": 5, + "PHP": 6, + "Parrot Assembly": 1, + "Parrot Internal Representation": 1, + "Perl": 12, + "PowerShell": 2, + "Prolog": 1, + "Python": 4, + "R": 1, + "Racket": 2, + "Rebol": 1, + "Ruby": 14, + "Rust": 1, + "SCSS": 1, + "Sass": 1, + "Scala": 2, + "Scheme": 1, + "Scilab": 3, + "Shell": 11, + "Standard ML": 2, + "SuperCollider": 1, + "TeX": 1, + "Tea": 1, + "Turing": 1, + "VHDL": 1, + "Verilog": 13, + "VimL": 2, + "Visual Basic": 1, + "XML": 3, + "XQuery": 1, + "XSLT": 1, + "YAML": 1 + }, + "md5": "a0ebeafa2f804284407990bfedb1c7ee" +}
\ No newline at end of file diff --git a/lib/linguist/samples.rb b/lib/linguist/samples.rb index 77d8707..183e1bc 100644 --- a/lib/linguist/samples.rb +++ b/lib/linguist/samples.rb @@ -10,7 +10,7 @@ module Linguist ROOT = File.expand_path("../../../samples", __FILE__) # Path for serialized samples db - PATH = File.expand_path('../samples.yml', __FILE__) + PATH = File.expand_path('../samples.json', __FILE__) # Hash of serialized samples object if File.exist?(PATH) diff --git a/lib/linguist/samples.yml b/lib/linguist/samples.yml deleted file mode 100644 index cfb2b2c..0000000 --- a/lib/linguist/samples.yml +++ /dev/null @@ -1,19970 +0,0 @@ ---- -extnames: - Apex: - - .cls - AppleScript: - - .applescript - - .scpt - Arduino: - - .ino - AutoHotkey: - - .ahk - C: - - .c - - .h - C++: - - .h - - .hpp - - .cu - - .cpp - - .cc - Ceylon: - - .ceylon - CoffeeScript: - - .coffee - Coq: - - .v - Dart: - - .dart - Delphi: - - .dpr - Diff: - - .patch - Emacs Lisp: - - .el - GAS: - - .s - Gosu: - - .gst - - .gsx - - .gs - - .gsp - - .vark - Groovy: - - .gradle - - .groovy - Groovy Server Pages: - - .gsp - Haml: - - .haml - Ioke: - - .ik - Java: - - .java - JavaScript: - - .js - Julia: - - .jl - Kotlin: - - .kt - Logtalk: - - .lgt - Markdown: - - .md - Matlab: - - .m - Nemerle: - - .n - Nimrod: - - .nim - Nu: - - .nu - OCaml: - - .ml - Objective-C: - - .h - - .m - Opa: - - .opa - OpenCL: - - .cl - OpenEdge ABL: - - .cls - - .p - PHP: - - .php - - .module - Parrot Assembly: - - .pasm - Parrot Internal Representation: - - .pir - Perl: - - .pm - - .pl - - .t - PowerShell: - - .ps1 - - .psm1 - Prolog: - - .pl - Python: - - .py - R: - - .R - Racket: - - .scrbl - - .rkt - Rebol: - - .r - Ruby: - - .rb - - .rake - Rust: - - .rs - SCSS: - - .scss - Sass: - - .sass - Scala: - - .sbt - - .scala - Scheme: - - .sps - Scilab: - - .sci - - .sce - - .tst - Shell: - - .bash - - .sh - - .zsh - Standard ML: - - .sig - - .sml - SuperCollider: - - .sc - TeX: - - .cls - Tea: - - .tea - Turing: - - .t - VHDL: - - .vhd - Verilog: - - .v - Visual Basic: - - .cls - XML: - - .ant - - .ivy - - .xml - XQuery: - - .xqm - XSLT: - - .xslt -filenames: - Ruby: - - Capfile - - Rakefile - Shell: - - PKGBUILD -tokens_total: 164127 -languages_total: 243 -tokens: - Apex: - /*: 15 - ! '*/': 15 - global: 70 - class: 7 - ArrayUtils: 1 - ! '{': 214 - static: 80 - String: 58 - EMPTY_STRING_ARRAY: 1 - new: 57 - ! '}': 214 - ;: 286 - Integer: 34 - MAX_NUMBER_OF_ELEMENTS_IN_LIST: 5 - get: 1 - return: 104 - List: 71 - <String>: 30 - objectToString: 1 - (: 457 - <Object>: 22 - objects: 3 - ): 458 - strings: 3 - 'null': 89 - if: 89 - objects.size: 1 - for: 24 - Object: 23 - obj: 3 - instanceof: 1 - strings.add: 1 - reverse: 2 - anArray: 14 - i: 55 - j: 10 - anArray.size: 2 - ! '-': 18 - tmp: 6 - while: 8 - +: 66 - SObject: 19 - lowerCase: 1 - strs: 9 - returnValue: 22 - strs.size: 3 - str: 10 - returnValue.add: 3 - str.toLowerCase: 1 - upperCase: 1 - str.toUpperCase: 1 - trim: 1 - str.trim: 3 - mergex: 2 - array1: 8 - array2: 9 - merged: 6 - array1.size: 4 - array2.size: 2 - <: 32 - <SObject>: 19 - sObj: 4 - merged.add: 2 - Boolean: 38 - isEmpty: 7 - objectArray: 17 - 'true': 12 - objectArray.size: 6 - isNotEmpty: 4 - pluck: 1 - fieldName: 3 - ! '||': 12 - fieldName.trim: 2 - .length: 2 - plucked: 3 - .get: 4 - toString: 3 - void: 8 - assertArraysAreEqual: 2 - expected: 16 - actual: 16 - //check: 2 - to: 3 - see: 2 - one: 2 - param: 2 - is: 5 - but: 2 - the: 2 - other: 2 - not: 3 - System.assert: 6 - ! '&&': 46 - ArrayUtils.toString: 12 - expected.size: 4 - actual.size: 2 - merg: 2 - list1: 15 - list2: 9 - returnList: 11 - list1.size: 6 - list2.size: 2 - throw: 6 - IllegalArgumentException: 5 - elmt: 8 - returnList.add: 8 - subset: 6 - aList: 4 - count: 10 - startIndex: 9 - <=>: 2 - size: 2 - '1': 2 - list1.get: 2 - //: 22 - //LIST/ARRAY: 1 - SORTING: 1 - //FOR: 2 - FORCE.COM: 1 - PRIMITIVES: 1 - Double: 1 - ID: 1 - etc.: 1 - qsort: 18 - theList: 72 - PrimitiveComparator: 2 - sortAsc: 24 - ObjectComparator: 3 - comparator: 14 - theList.size: 2 - SALESFORCE: 1 - OBJECTS: 1 - sObjects: 1 - ISObjectComparator: 3 - private: 10 - lo0: 6 - hi0: 8 - lo: 42 - hi: 50 - else: 25 - comparator.compare: 12 - prs: 8 - pivot: 14 - /: 4 - BooleanUtils: 1 - isFalse: 1 - bool: 32 - 'false': 13 - isNotFalse: 1 - isNotTrue: 1 - isTrue: 1 - negate: 1 - toBooleanDefaultIfNull: 1 - defaultVal: 2 - toBoolean: 2 - value: 9 - strToBoolean: 1 - StringUtils.equalsIgnoreCase: 1 - //Converts: 1 - an: 2 - int: 1 - a: 2 - boolean: 1 - specifying: 1 - //the: 2 - conversion: 1 - values.: 1 - //Returns: 1 - //Throws: 1 - trueValue: 2 - falseValue: 2 - toInteger: 1 - toStringYesNo: 1 - toStringYN: 1 - trueString: 2 - falseString: 2 - xor: 1 - boolArray: 4 - boolArray.size: 1 - firstItem: 2 - EmailUtils: 1 - sendEmailWithStandardAttachments: 3 - recipients: 11 - emailSubject: 10 - body: 8 - useHTML: 6 - <Id>: 1 - attachmentIDs: 2 - <Attachment>: 2 - stdAttachments: 4 - SELECT: 1 - id: 1 - name: 1 - FROM: 1 - Attachment: 2 - WHERE: 1 - Id: 1 - IN: 1 - <Messaging.EmailFileAttachment>: 3 - fileAttachments: 5 - attachment: 1 - Messaging.EmailFileAttachment: 2 - fileAttachment: 2 - fileAttachment.setFileName: 1 - attachment.Name: 1 - fileAttachment.setBody: 1 - attachment.Body: 1 - fileAttachments.add: 1 - sendEmail: 4 - sendTextEmail: 1 - textBody: 2 - sendHTMLEmail: 1 - htmlBody: 2 - recipients.size: 1 - Messaging.SingleEmailMessage: 3 - mail: 2 - email: 1 - saved: 1 - as: 1 - activity.: 1 - mail.setSaveAsActivity: 1 - mail.setToAddresses: 1 - mail.setSubject: 1 - mail.setBccSender: 1 - mail.setUseSignature: 1 - mail.setHtmlBody: 1 - mail.setPlainTextBody: 1 - fileAttachments.size: 1 - mail.setFileAttachments: 1 - Messaging.sendEmail: 1 - isValidEmailAddress: 2 - split: 5 - str.split: 1 - split.size: 2 - .split: 1 - isNotValidEmailAddress: 1 - public: 7 - GeoUtils: 1 - string: 2 - generateFromContent: 1 - PageReference: 1 - pr: 1 - ret: 1 - ! '&': 2 - amp: 1 - ERROR: 1 - n: 2 - r: 2 - G_GEO_SUCCESS: 1 - G_GEO_BAD_REQUEST: 1 - G_GEO_SERVER_ERROR: 1 - G_GEO_MISSING_ADDRESS: 1 - G_GEO_UNKNOWN_ADDRESS: 1 - G_GEO_UNAVAILABLE_ADDRESS: 1 - G_GEO_UNKNOWN_DIRECTIONS: 1 - G_GEO_BAD_KEY: 1 - G_GEO_TOO_MANY_QUERIES: 1 - foo: 1 - main: 2 - springfield: 2 - il: 2 - us: 2 - accountAddressString: 1 - LanguageUtils: 1 - final: 6 - HTTP_LANGUAGE_CODE_PARAMETER_KEY: 2 - DEFAULT_LANGUAGE_CODE: 3 - Set: 6 - SUPPORTED_LANGUAGE_CODES: 2 - //Chinese: 2 - Simplified: 1 - Traditional: 1 - //Dutch: 1 - //English: 1 - //Finnish: 1 - //French: 1 - //German: 1 - //Italian: 1 - //Japanese: 1 - //Korean: 1 - //Polish: 1 - //Portuguese: 1 - Brazilian: 1 - //Russian: 1 - //Spanish: 1 - //Swedish: 1 - //Thai: 1 - //Czech: 1 - //Danish: 1 - //Hungarian: 1 - //Indonesian: 1 - //Turkish: 1 - Map: 31 - <String,String>: 29 - DEFAULTS: 1 - getLangCodeByHttpParam: 4 - LANGUAGE_CODE_SET: 1 - getSuppLangCodeSet: 2 - ApexPages.currentPage: 4 - .getParameters: 2 - LANGUAGE_HTTP_PARAMETER: 7 - StringUtils.lowerCase: 3 - StringUtils.replaceChars: 2 - //underscore: 1 - //dash: 1 - DEFAULTS.containsKey: 3 - DEFAULTS.get: 3 - StringUtils.isNotBlank: 1 - SUPPORTED_LANGUAGE_CODES.contains: 2 - getLangCodeByBrowser: 4 - LANGUAGES_FROM_BROWSER_AS_STRING: 2 - .getHeaders: 1 - LANGUAGES_FROM_BROWSER_AS_LIST: 3 - splitAndFilterAcceptLanguageHeader: 2 - LANGUAGES_FROM_BROWSER_AS_LIST.size: 1 - languageFromBrowser: 6 - getLangCodeByUser: 3 - UserInfo.getLanguage: 1 - getLangCodeByHttpParamOrIfNullThenBrowser: 1 - StringUtils.defaultString: 4 - getLangCodeByHttpParamOrIfNullThenUser: 1 - getLangCodeByBrowserOrIfNullThenHttpParam: 1 - getLangCodeByBrowserOrIfNullThenUser: 1 - header: 2 - tokens: 3 - StringUtils.split: 1 - token: 6 - token.contains: 1 - token.substring: 1 - token.indexOf: 1 - StringUtils.length: 1 - StringUtils.substring: 1 - langCodes: 2 - langCode: 3 - langCodes.add: 1 - getLanguageName: 1 - displayLanguageCode: 13 - languageCode: 2 - translatedLanguageNames.get: 2 - filterLanguageCode: 4 - getAllLanguages: 3 - translatedLanguageNames.containsKey: 1 - translatedLanguageNames: 1 - TwilioAPI: 2 - MissingTwilioConfigCustomSettingsException: 2 - extends: 1 - Exception: 1 - TwilioRestClient: 5 - client: 2 - getDefaultClient: 2 - TwilioConfig__c: 5 - twilioCfg: 7 - getTwilioConfig: 3 - TwilioAPI.client: 2 - twilioCfg.AccountSid__c: 3 - twilioCfg.AuthToken__c: 3 - TwilioAccount: 1 - getDefaultAccount: 1 - .getAccount: 2 - TwilioCapability: 2 - createCapability: 1 - createClient: 1 - accountSid: 2 - authToken: 2 - Test.isRunningTest: 1 - TwilioConfig__c.getOrgDefaults: 1 - ! '@isTest': 1 - test_TwilioAPI: 1 - System.assertEquals: 5 - TwilioAPI.getTwilioConfig: 2 - .AccountSid__c: 1 - .AuthToken__c: 1 - TwilioAPI.getDefaultClient: 2 - .getAccountSid: 1 - .getSid: 2 - TwilioAPI.getDefaultAccount: 1 - AppleScript: - set: 14 - windowWidth: 6 - to: 14 - windowHeight: 6 - delay: 2 - '.1': 2 - AppleScript: 2 - s: 2 - text: 2 - item: 2 - delimiters: 2 - Safari: 2 - screen.availWidth: 2 - screen.availHeight: 2 - System: 6 - Events: 6 - Finder: 2 - tell: 6 - process: 2 - myFrontMost: 2 - try: 4 - ! '{': 12 - w: 6 - h: 4 - ! '}': 12 - size: 4 - of: 8 - drawer: 2 - window: 6 - 'on': 2 - error: 2 - end: 6 - position: 2 - (: 8 - screen_width: 2 - ! '-': 8 - ): 8 - /: 4 - screen_height: 2 - '.0': 2 - desktopTop: 2 - Arduino: - void: 2 - setup: 1 - (: 4 - ): 4 - ! '{': 2 - Serial.begin: 1 - ;: 2 - ! '}': 2 - loop: 1 - Serial.print: 1 - AutoHotkey: - MsgBox: 1 - Hello: 1 - World: 1 - C: - ! '#include': 112 - const: 204 - char: 192 - ! '*blob_type': 2 - ;: 2808 - struct: 217 - blob: 6 - ! '*lookup_blob': 2 - (: 2896 - unsigned: 116 - ! '*sha1': 16 - ): 2908 - ! '{': 1023 - object: 10 - ! '*obj': 5 - lookup_object: 2 - sha1: 20 - if: 638 - obj: 18 - return: 304 - create_object: 2 - OBJ_BLOB: 3 - alloc_blob_node: 1 - ! '-': 1279 - type: 27 - error: 71 - sha1_to_hex: 8 - typename: 2 - 'NULL': 281 - ! '}': 1025 - ! '*': 63 - int: 305 - parse_blob_buffer: 2 - ! '*item': 10 - void: 210 - ! '*buffer': 6 - long: 97 - size: 59 - item: 24 - object.parsed: 4 - ! '#ifndef': 9 - BLOB_H: 2 - ! '#define': 53 - extern: 32 - /*: 568 - ! '*/': 568 - ! '#endif': 43 - git_cache_init: 1 - git_cache: 4 - ! '*cache': 4 - size_t: 40 - git_cached_obj_freeptr: 1 - free_ptr: 2 - <: 140 - git__size_t_powerof2: 1 - cache: 26 - size_mask: 6 - lru_count: 1 - free_obj: 4 - git_mutex_init: 1 - ! '&': 285 - lock: 6 - nodes: 10 - git__malloc: 3 - sizeof: 52 - git_cached_obj: 5 - GITERR_CHECK_ALLOC: 3 - memset: 4 - git_cache_free: 1 - i: 162 - for: 37 - +: 284 - git_cached_obj_decref: 3 - git__free: 15 - ! '*git_cache_get': 1 - git_oid: 7 - ! '*oid': 2 - uint32_t: 6 - hash: 12 - ! '*node': 2 - ! '*result': 1 - memcpy: 6 - oid: 17 - id: 7 - git_mutex_lock: 2 - node: 9 - ! '&&': 189 - git_oid_cmp: 6 - git_cached_obj_incref: 3 - result: 12 - git_mutex_unlock: 2 - ! '*git_cache_try_store': 1 - ! '*_entry': 1 - ! '*entry': 2 - _entry: 1 - entry: 17 - else: 120 - save_commit_buffer: 3 - ! '*commit_type': 2 - static: 80 - commit: 59 - ! '*check_commit': 1 - quiet: 5 - OBJ_COMMIT: 5 - ! '*lookup_commit_reference_gently': 2 - deref_tag: 1 - parse_object: 1 - check_commit: 2 - ! '*lookup_commit_reference': 2 - lookup_commit_reference_gently: 1 - ! '*lookup_commit_or_die': 2 - ! '*ref_name': 2 - ! '*c': 15 - lookup_commit_reference: 2 - c: 192 - die: 5 - _: 3 - ref_name: 2 - hashcmp: 2 - object.sha1: 8 - warning: 1 - ! '*lookup_commit': 2 - alloc_commit_node: 1 - ! '*lookup_commit_reference_by_name': 2 - ! '*name': 6 - ! '*commit': 10 - get_sha1: 1 - name: 12 - ! '||': 112 - parse_commit: 3 - parse_commit_date: 2 - ! '*buf': 9 - ! '*tail': 2 - ! '*dateptr': 1 - buf: 56 - tail: 12 - memcmp: 6 - while: 41 - dateptr: 2 - strtoul: 2 - commit_graft: 13 - ! '**commit_graft': 1 - commit_graft_alloc: 4 - commit_graft_nr: 5 - commit_graft_pos: 2 - lo: 6 - hi: 5 - mi: 5 - /: 4 - ! '*graft': 3 - cmp: 9 - graft: 10 - register_commit_graft: 2 - ignore_dups: 2 - pos: 7 - free: 8 - alloc_nr: 1 - xrealloc: 2 - (*: 16 - ! '*)': 16 - parse_commit_buffer: 3 - buffer: 9 - ! '*bufptr': 1 - parent: 7 - commit_list: 35 - ! '**pptr': 1 - <=>: 7 - bufptr: 12 - '46': 1 - tree: 3 - '5': 1 - '45': 1 - n: 20 - bogus: 1 - s: 22 - get_sha1_hex: 2 - lookup_tree: 1 - pptr: 5 - parents: 4 - lookup_commit_graft: 1 - ! '*new_parent': 2 - '48': 1 - '7': 1 - '47': 1 - bad: 1 - in: 1 - nr_parent: 3 - grafts_replace_parents: 1 - continue: 19 - new_parent: 6 - lookup_commit: 2 - commit_list_insert: 2 - next: 8 - date: 4 - enum: 29 - object_type: 1 - ret: 24 - read_sha1_file: 1 - find_commit_subject: 2 - ! '*commit_buffer': 2 - ! '**subject': 2 - ! '*eol': 1 - ! '*p': 9 - commit_buffer: 1 - a: 13 - b_date: 3 - b: 23 - a_date: 2 - ! '*commit_list_get_next': 1 - ! '*a': 9 - commit_list_set_next: 1 - ! '*next': 6 - commit_list_sort_by_date: 2 - ! '**list': 5 - ! '*list': 2 - llist_mergesort: 1 - peel_to_type: 1 - util: 3 - merge_remote_desc: 3 - ! '*desc': 1 - desc: 5 - xmalloc: 2 - strdup: 1 - ! '**commit_list_append': 2 - ! '**next': 2 - ! '*new': 1 - new: 4 - COMMIT_H: 2 - ! '*util': 1 - indegree: 1 - ! '*parents': 4 - ! '*tree': 3 - decoration: 1 - name_decoration: 3 - ! '*commit_list_insert': 1 - commit_list_count: 1 - ! '*l': 1 - ! '*commit_list_insert_by_date': 1 - free_commit_list: 1 - cmit_fmt: 3 - CMIT_FMT_RAW: 1 - CMIT_FMT_MEDIUM: 2 - CMIT_FMT_DEFAULT: 1 - CMIT_FMT_SHORT: 1 - CMIT_FMT_FULL: 1 - CMIT_FMT_FULLER: 1 - CMIT_FMT_ONELINE: 1 - CMIT_FMT_EMAIL: 1 - CMIT_FMT_USERFORMAT: 1 - CMIT_FMT_UNSPECIFIED: 1 - pretty_print_context: 6 - fmt: 4 - abbrev: 1 - ! '*subject': 1 - ! '*after_subject': 1 - preserve_subject: 1 - date_mode: 2 - date_mode_explicit: 1 - need_8bit_cte: 2 - show_notes: 1 - reflog_walk_info: 1 - ! '*reflog_info': 1 - ! '*output_encoding': 2 - userformat_want: 2 - notes: 1 - has_non_ascii: 1 - ! '*text': 1 - rev_info: 2 - ! '*logmsg_reencode': 1 - ! '*reencode_commit_message': 1 - ! '**encoding_p': 1 - get_commit_format: 1 - ! '*arg': 1 - ! '*format_subject': 1 - strbuf: 12 - ! '*sb': 7 - ! '*msg': 6 - ! '*line_separator': 1 - userformat_find_requirements: 1 - ! '*fmt': 2 - ! '*w': 1 - format_commit_message: 1 - ! '*format': 1 - ! '*context': 1 - pretty_print_commit: 1 - ! '*pp': 4 - pp_commit_easy: 1 - pp_user_info: 1 - ! '*what': 1 - ! '*line': 1 - ! '*encoding': 2 - pp_title_line: 1 - ! '**msg_p': 2 - pp_remainder: 1 - indent: 1 - ! '*pop_most_recent_commit': 1 - mark: 3 - ! '*pop_commit': 1 - ! '**stack': 1 - clear_commit_marks: 1 - clear_commit_marks_for_object_array: 1 - object_array: 2 - sort_in_topological_order: 1 - ! '**': 4 - list: 1 - lifo: 1 - FLEX_ARRAY: 1 - typedef: 15 - ! '*read_graft_line': 1 - len: 23 - ! '*lookup_commit_graft': 1 - ! '*get_merge_bases': 1 - ! '*rev1': 1 - ! '*rev2': 1 - cleanup: 2 - ! '*get_merge_bases_many': 1 - ! '*one': 1 - ! '**twos': 1 - ! '*get_octopus_merge_bases': 1 - ! '*in': 1 - register_shallow: 1 - unregister_shallow: 1 - for_each_commit_graft: 1 - each_commit_graft_fn: 1 - is_repository_shallow: 1 - ! '*get_shallow_commits': 1 - ! '*heads': 2 - depth: 1 - shallow_flag: 1 - not_shallow_flag: 1 - is_descendant_of: 1 - in_merge_bases: 1 - interactive_add: 1 - argc: 26 - ! '**argv': 6 - ! '*prefix': 7 - patch: 1 - run_add_interactive: 1 - ! '*revision': 1 - ! '*patch_mode': 1 - ! '**pathspec': 1 - inline: 2 - single_parent: 1 - ! '*reduce_heads': 1 - commit_extra_header: 7 - ! '*key': 5 - ! '*value': 3 - append_merge_tag_headers: 1 - ! '***tail': 1 - commit_tree: 1 - ! '*ret': 2 - ! '*author': 2 - ! '*sign_commit': 2 - commit_tree_extended: 1 - ! '*read_commit_extra_headers': 1 - ! '*read_commit_extra_header_lines': 1 - free_commit_extra_headers: 1 - ! '*extra': 1 - merge_remote_util: 1 - ! '*get_merge_parent': 1 - parse_signed_commit: 1 - ! '*message': 1 - ! '*signature': 1 - <linux/proc_fs.h>: 1 - <linux/smp.h>: 1 - <linux/init.h>: 1 - <linux/notifier.h>: 1 - <linux/sched.h>: 1 - <linux/unistd.h>: 1 - <linux/cpu.h>: 1 - <linux/oom.h>: 1 - <linux/rcupdate.h>: 1 - <linux/export.h>: 1 - <linux/bug.h>: 1 - <linux/kthread.h>: 1 - <linux/stop_machine.h>: 1 - <linux/mutex.h>: 1 - <linux/gfp.h>: 1 - <linux/suspend.h>: 1 - ! '#ifdef': 17 - CONFIG_SMP: 1 - DEFINE_MUTEX: 1 - cpu_add_remove_lock: 3 - cpu_maps_update_begin: 9 - mutex_lock: 5 - cpu_maps_update_done: 9 - mutex_unlock: 6 - RAW_NOTIFIER_HEAD: 1 - cpu_chain: 4 - cpu_hotplug_disabled: 7 - CONFIG_HOTPLUG_CPU: 2 - task_struct: 5 - ! '*active_writer': 1 - mutex: 1 - refcount: 1 - cpu_hotplug: 1 - .active_writer: 1 - .lock: 1 - __MUTEX_INITIALIZER: 1 - cpu_hotplug.lock: 8 - .refcount: 1 - get_online_cpus: 2 - might_sleep: 1 - cpu_hotplug.active_writer: 6 - current: 3 - cpu_hotplug.refcount: 3 - EXPORT_SYMBOL_GPL: 4 - put_online_cpus: 2 - unlikely: 1 - wake_up_process: 1 - cpu_hotplug_begin: 4 - likely: 1 - break: 182 - __set_current_state: 1 - TASK_UNINTERRUPTIBLE: 1 - schedule: 1 - cpu_hotplug_done: 4 - ! '#else': 11 - __ref: 6 - register_cpu_notifier: 2 - notifier_block: 3 - ! '*nb': 3 - raw_notifier_chain_register: 1 - nb: 2 - __cpu_notify: 6 - val: 20 - ! '*v': 3 - nr_to_call: 2 - ! '*nr_calls': 1 - __raw_notifier_call_chain: 1 - v: 6 - nr_calls: 9 - notifier_to_errno: 1 - cpu_notify: 5 - cpu_notify_nofail: 4 - BUG_ON: 4 - EXPORT_SYMBOL: 8 - unregister_cpu_notifier: 2 - raw_notifier_chain_unregister: 1 - clear_tasks_mm_cpumask: 1 - cpu: 57 - WARN_ON: 1 - cpu_online: 5 - rcu_read_lock: 1 - for_each_process: 2 - p: 51 - ! '*t': 1 - t: 27 - find_lock_task_mm: 1 - cpumask_clear_cpu: 5 - mm_cpumask: 1 - mm: 1 - task_unlock: 1 - rcu_read_unlock: 1 - check_for_tasks: 2 - write_lock_irq: 1 - tasklist_lock: 2 - task_cpu: 1 - state: 104 - TASK_RUNNING: 1 - utime: 1 - stime: 1 - printk: 12 - KERN_WARNING: 3 - comm: 1 - task_pid_nr: 1 - flags: 86 - write_unlock_irq: 1 - take_cpu_down_param: 3 - mod: 13 - ! '*hcpu': 3 - take_cpu_down: 2 - ! '*_param': 1 - ! '*param': 1 - _param: 1 - err: 38 - __cpu_disable: 1 - CPU_DYING: 1 - ! '|': 82 - param: 2 - hcpu: 10 - _cpu_down: 3 - tasks_frozen: 4 - CPU_TASKS_FROZEN: 2 - tcd_param: 2 - .mod: 1 - .hcpu: 1 - num_online_cpus: 2 - EBUSY: 3 - EINVAL: 6 - CPU_DOWN_PREPARE: 1 - CPU_DOWN_FAILED: 2 - __func__: 2 - goto: 85 - out_release: 3 - __stop_machine: 1 - cpumask_of: 1 - idle_cpu: 1 - cpu_relax: 1 - __cpu_die: 1 - CPU_DEAD: 1 - CPU_POST_DEAD: 1 - cpu_down: 2 - out: 11 - __cpuinit: 3 - _cpu_up: 3 - ! '*idle': 1 - cpu_present: 1 - idle: 4 - idle_thread_get: 1 - IS_ERR: 1 - PTR_ERR: 1 - CPU_UP_PREPARE: 1 - out_notify: 3 - __cpu_up: 1 - CPU_ONLINE: 1 - CPU_UP_CANCELED: 1 - cpu_up: 2 - CONFIG_MEMORY_HOTPLUG: 2 - nid: 5 - pg_data_t: 1 - ! '*pgdat': 1 - cpu_possible: 1 - KERN_ERR: 5 - ! '#if': 17 - defined: 7 - CONFIG_IA64: 1 - cpu_to_node: 1 - node_online: 1 - mem_online_node: 1 - pgdat: 3 - NODE_DATA: 1 - ENOMEM: 4 - node_zonelists: 1 - _zonerefs: 1 - zone: 1 - zonelists_mutex: 2 - build_all_zonelists: 1 - CONFIG_PM_SLEEP_SMP: 2 - cpumask_var_t: 1 - frozen_cpus: 9 - __weak: 4 - arch_disable_nonboot_cpus_begin: 2 - arch_disable_nonboot_cpus_end: 2 - disable_nonboot_cpus: 1 - first_cpu: 3 - cpumask_first: 1 - cpu_online_mask: 3 - cpumask_clear: 2 - for_each_online_cpu: 1 - cpumask_set_cpu: 5 - arch_enable_nonboot_cpus_begin: 2 - arch_enable_nonboot_cpus_end: 2 - enable_nonboot_cpus: 1 - cpumask_empty: 1 - KERN_INFO: 2 - for_each_cpu: 1 - __init: 2 - alloc_frozen_cpus: 2 - alloc_cpumask_var: 1 - GFP_KERNEL: 1 - __GFP_ZERO: 1 - core_initcall: 2 - cpu_hotplug_disable_before_freeze: 2 - cpu_hotplug_enable_after_thaw: 2 - cpu_hotplug_pm_callback: 2 - action: 2 - ! '*ptr': 1 - switch: 31 - case: 217 - PM_SUSPEND_PREPARE: 1 - PM_HIBERNATION_PREPARE: 1 - PM_POST_SUSPEND: 1 - PM_POST_HIBERNATION: 1 - default: 22 - NOTIFY_DONE: 1 - NOTIFY_OK: 1 - cpu_hotplug_pm_sync_init: 2 - pm_notifier: 1 - notify_cpu_starting: 1 - CPU_STARTING: 1 - cpumask_test_cpu: 1 - CPU_STARTING_FROZEN: 1 - MASK_DECLARE_1: 3 - x: 12 - UL: 1 - <<: 15 - MASK_DECLARE_2: 3 - MASK_DECLARE_4: 3 - MASK_DECLARE_8: 9 - cpu_bit_bitmap: 2 - BITS_PER_LONG: 2 - BITS_TO_LONGS: 1 - NR_CPUS: 2 - DECLARE_BITMAP: 6 - cpu_all_bits: 2 - CPU_BITS_ALL: 2 - CONFIG_INIT_ALL_POSSIBLE: 1 - cpu_possible_bits: 6 - CONFIG_NR_CPUS: 5 - __read_mostly: 5 - cpumask: 7 - ! '*const': 4 - cpu_possible_mask: 2 - to_cpumask: 15 - cpu_online_bits: 5 - cpu_present_bits: 5 - cpu_present_mask: 2 - cpu_active_bits: 4 - cpu_active_mask: 2 - set_cpu_possible: 1 - bool: 6 - possible: 2 - set_cpu_present: 1 - present: 2 - set_cpu_online: 1 - online: 2 - set_cpu_active: 1 - active: 2 - init_cpu_present: 1 - ! '*src': 3 - cpumask_copy: 3 - src: 3 - init_cpu_possible: 1 - init_cpu_online: 1 - ! '*diff_prefix_from_pathspec': 1 - git_strarray: 2 - ! '*pathspec': 2 - git_buf: 3 - prefix: 34 - GIT_BUF_INIT: 3 - ! '*scan': 2 - git_buf_common_prefix: 1 - pathspec: 15 - scan: 4 - prefix.ptr: 2 - git__iswildcard: 1 - git_buf_truncate: 1 - prefix.size: 1 - git_buf_detach: 1 - git_buf_free: 4 - diff_pathspec_is_interesting: 2 - ! '*str': 1 - count: 6 - 'false': 4 - 'true': 4 - str: 8 - strings: 1 - diff_path_matches_pathspec: 3 - git_diff_list: 17 - ! '*diff': 8 - ! '*path': 2 - git_attr_fnmatch: 4 - ! '*match': 3 - diff: 84 - pathspec.length: 1 - git_vector_foreach: 4 - match: 14 - p_fnmatch: 1 - pattern: 3 - path: 20 - FNM_NOMATCH: 1 - GIT_ATTR_FNMATCH_HASWILD: 1 - strncmp: 1 - length: 2 - GIT_ATTR_FNMATCH_NEGATIVE: 1 - git_diff_delta: 19 - ! '*diff_delta__alloc': 1 - git_delta_t: 5 - status: 57 - ! '*delta': 6 - git__calloc: 3 - delta: 54 - old_file.path: 12 - git_pool_strdup: 3 - pool: 12 - new_file.path: 6 - opts.flags: 8 - GIT_DIFF_REVERSE: 3 - GIT_DELTA_ADDED: 4 - GIT_DELTA_DELETED: 7 - ! '*diff_delta__dup': 1 - ! '*d': 1 - git_pool: 4 - ! '*pool': 3 - d: 12 - fail: 19 - ! '*diff_delta__merge_like_cgit': 1 - ! '*b': 6 - ! '*dup': 1 - diff_delta__dup: 3 - dup: 15 - new_file.oid: 7 - git_oid_cpy: 5 - new_file.mode: 4 - new_file.size: 3 - new_file.flags: 4 - old_file.oid: 3 - GIT_DELTA_UNTRACKED: 5 - GIT_DELTA_IGNORED: 5 - GIT_DELTA_UNMODIFIED: 11 - diff_delta__from_one: 5 - git_index_entry: 8 - GIT_DIFF_INCLUDE_IGNORED: 1 - GIT_DIFF_INCLUDE_UNTRACKED: 1 - diff_delta__alloc: 2 - assert: 41 - GIT_DELTA_MODIFIED: 3 - old_file.mode: 2 - mode: 9 - old_file.size: 1 - file_size: 6 - old_file.flags: 2 - GIT_DIFF_FILE_VALID_OID: 4 - git_vector_insert: 4 - deltas: 8 - diff_delta__from_two: 2 - ! '*old_entry': 1 - ! '*new_entry': 1 - ! '*new_oid': 1 - GIT_DIFF_INCLUDE_UNMODIFIED: 1 - ! '*temp': 1 - old_entry: 5 - new_entry: 5 - temp: 1 - new_oid: 3 - git_oid_iszero: 2 - ! '*diff_strdup_prefix': 1 - strlen: 8 - git_pool_strcat: 1 - git_pool_strndup: 1 - diff_delta__cmp: 3 - ! '*da': 1 - ! '*db': 3 - strcmp: 19 - da: 2 - db: 10 - config_bool: 5 - git_config: 3 - ! '*cfg': 2 - defvalue: 2 - git_config_get_bool: 1 - cfg: 6 - giterr_clear: 1 - ! '*git_diff_list_alloc': 1 - git_repository: 7 - ! '*repo': 7 - git_diff_options: 7 - ! '*opts': 6 - repo: 23 - git_vector_init: 3 - git_pool_init: 2 - git_repository_config__weakptr: 1 - diffcaps: 13 - GIT_DIFFCAPS_HAS_SYMLINKS: 2 - GIT_DIFFCAPS_ASSUME_UNCHANGED: 2 - GIT_DIFFCAPS_TRUST_EXEC_BIT: 2 - GIT_DIFFCAPS_TRUST_CTIME: 2 - opts: 24 - opts.pathspec: 2 - opts.old_prefix: 4 - diff_strdup_prefix: 2 - old_prefix: 2 - DIFF_OLD_PREFIX_DEFAULT: 1 - opts.new_prefix: 4 - new_prefix: 2 - DIFF_NEW_PREFIX_DEFAULT: 1 - ! '*swap': 1 - swap: 1 - pathspec.count: 2 - ! '*pattern': 1 - pathspec.strings: 1 - GIT_ATTR_FNMATCH_ALLOWSPACE: 1 - git_attr_fnmatch__parse: 1 - GIT_ENOTFOUND: 1 - git_diff_list_free: 3 - deltas.contents: 1 - git_vector_free: 3 - pathspec.contents: 1 - git_pool_clear: 2 - oid_for_workdir_item: 2 - full_path: 3 - git_buf_joinpath: 1 - git_repository_workdir: 1 - S_ISLNK: 2 - git_odb__hashlink: 1 - full_path.ptr: 2 - git__is_sizet: 1 - giterr_set: 1 - GITERR_OS: 1 - fd: 34 - git_futils_open_ro: 1 - git_odb__hashfd: 1 - GIT_OBJ_BLOB: 1 - p_close: 1 - EXEC_BIT_MASK: 3 - maybe_modified: 2 - git_iterator: 8 - ! '*old_iter': 2 - ! '*oitem': 2 - ! '*new_iter': 2 - ! '*nitem': 2 - noid: 4 - ! '*use_noid': 1 - omode: 8 - oitem: 29 - nmode: 10 - nitem: 32 - GIT_UNUSED: 1 - old_iter: 8 - S_ISREG: 1 - GIT_MODE_TYPE: 3 - GIT_MODE_PERMS_MASK: 1 - flags_extended: 2 - GIT_IDXENTRY_INTENT_TO_ADD: 1 - GIT_IDXENTRY_SKIP_WORKTREE: 1 - new_iter: 13 - GIT_ITERATOR_WORKDIR: 2 - ctime.seconds: 2 - mtime.seconds: 2 - GIT_DIFFCAPS_USE_DEV: 1 - dev: 2 - ino: 2 - uid: 2 - gid: 2 - S_ISGITLINK: 1 - git_submodule: 1 - ! '*sub': 1 - GIT_DIFF_IGNORE_SUBMODULES: 1 - git_submodule_lookup: 1 - sub: 2 - ignore: 1 - GIT_SUBMODULE_IGNORE_ALL: 1 - use_noid: 2 - diff_from_iterators: 5 - ! '**diff_ptr': 1 - ignore_prefix: 6 - git_diff_list_alloc: 1 - old_src: 1 - new_src: 3 - git_iterator_current: 2 - git_iterator_advance: 5 - delta_type: 8 - git_buf_len: 1 - git__prefixcmp: 2 - git_buf_cstr: 1 - S_ISDIR: 1 - GIT_DIFF_RECURSE_UNTRACKED_DIRS: 1 - git_iterator_current_is_ignored: 2 - git_buf_sets: 1 - git_iterator_advance_into_directory: 1 - git_iterator_free: 4 - ! '*diff_ptr': 2 - git_diff_tree_to_tree: 1 - git_tree: 4 - ! '*old_tree': 3 - ! '*new_tree': 1 - ! '**diff': 4 - diff_prefix_from_pathspec: 4 - old_tree: 5 - new_tree: 2 - git_iterator_for_tree_range: 4 - git_diff_index_to_tree: 1 - git_iterator_for_index_range: 2 - git_diff_workdir_to_index: 1 - git_iterator_for_workdir_range: 2 - git_diff_workdir_to_tree: 1 - git_diff_merge: 1 - ! '*onto': 1 - ! '*from': 1 - onto_pool: 7 - git_vector: 1 - onto_new: 6 - j: 119 - onto: 7 - from: 5 - deltas.length: 4 - ! '*o': 4 - GIT_VECTOR_GET: 2 - ! '*f': 2 - f: 15 - o: 18 - diff_delta__merge_like_cgit: 1 - git_vector_swap: 1 - git_pool_swap: 1 - git_usage_string: 2 - git_more_info_string: 2 - N_: 1 - startup_info: 3 - git_startup_info: 2 - use_pager: 8 - pager_config: 3 - ! '*cmd': 5 - want: 3 - pager_command_config: 2 - ! '*var': 1 - ! '*data': 11 - data: 67 - prefixcmp: 3 - var: 3 - cmd: 46 - git_config_maybe_bool: 1 - value: 4 - xstrdup: 2 - check_pager_config: 3 - c.cmd: 1 - c.want: 2 - c.value: 3 - pager_program: 1 - commit_pager_choice: 4 - setenv: 1 - setup_pager: 1 - handle_options: 2 - ! '***argv': 2 - ! '*argc': 1 - ! '*envchanged': 1 - ! '**orig_argv': 1 - ! '*argv': 6 - new_argv: 7 - option_count: 1 - alias_command: 4 - trace_argv_printf: 3 - ! '*argcp': 4 - subdir: 3 - chdir: 2 - die_errno: 3 - errno: 19 - saved_errno: 1 - git_version_string: 1 - GIT_VERSION: 1 - RUN_SETUP: 81 - RUN_SETUP_GENTLY: 16 - USE_PAGER: 3 - NEED_WORK_TREE: 18 - cmd_struct: 4 - option: 7 - run_builtin: 2 - help: 4 - stat: 3 - st: 2 - argv: 54 - setup_git_directory: 1 - nongit_ok: 2 - setup_git_directory_gently: 1 - have_repository: 1 - trace_repo_setup: 1 - setup_work_tree: 1 - fn: 1 - fstat: 1 - fileno: 1 - stdout: 5 - S_ISFIFO: 1 - st.st_mode: 2 - S_ISSOCK: 1 - fflush: 2 - ferror: 1 - fclose: 5 - handle_internal_command: 3 - commands: 3 - cmd_add: 2 - cmd_annotate: 1 - cmd_apply: 1 - cmd_archive: 1 - cmd_bisect__helper: 1 - cmd_blame: 2 - cmd_branch: 1 - cmd_bundle: 1 - cmd_cat_file: 1 - cmd_check_attr: 1 - cmd_check_ref_format: 1 - cmd_checkout: 1 - cmd_checkout_index: 1 - cmd_cherry: 1 - cmd_cherry_pick: 1 - cmd_clean: 1 - cmd_clone: 1 - cmd_column: 1 - cmd_commit: 1 - cmd_commit_tree: 1 - cmd_config: 1 - cmd_count_objects: 1 - cmd_describe: 1 - cmd_diff: 1 - cmd_diff_files: 1 - cmd_diff_index: 1 - cmd_diff_tree: 1 - cmd_fast_export: 1 - cmd_fetch: 1 - cmd_fetch_pack: 1 - cmd_fmt_merge_msg: 1 - cmd_for_each_ref: 1 - cmd_format_patch: 1 - cmd_fsck: 2 - cmd_gc: 1 - cmd_get_tar_commit_id: 1 - cmd_grep: 1 - cmd_hash_object: 1 - cmd_help: 1 - cmd_index_pack: 1 - cmd_init_db: 2 - cmd_log: 1 - cmd_ls_files: 1 - cmd_ls_remote: 2 - cmd_ls_tree: 1 - cmd_mailinfo: 1 - cmd_mailsplit: 1 - cmd_merge: 1 - cmd_merge_base: 1 - cmd_merge_file: 1 - cmd_merge_index: 1 - cmd_merge_ours: 1 - cmd_merge_recursive: 4 - cmd_merge_tree: 1 - cmd_mktag: 1 - cmd_mktree: 1 - cmd_mv: 1 - cmd_name_rev: 1 - cmd_notes: 1 - cmd_pack_objects: 1 - cmd_pack_redundant: 1 - cmd_pack_refs: 1 - cmd_patch_id: 1 - cmd_prune: 1 - cmd_prune_packed: 1 - cmd_push: 1 - cmd_read_tree: 1 - cmd_receive_pack: 1 - cmd_reflog: 1 - cmd_remote: 1 - cmd_remote_ext: 1 - cmd_remote_fd: 1 - cmd_replace: 1 - cmd_repo_config: 1 - cmd_rerere: 1 - cmd_reset: 1 - cmd_rev_list: 1 - cmd_rev_parse: 1 - cmd_revert: 1 - cmd_rm: 1 - cmd_send_pack: 1 - cmd_shortlog: 1 - cmd_show: 1 - cmd_show_branch: 1 - cmd_show_ref: 1 - cmd_status: 1 - cmd_stripspace: 1 - cmd_symbolic_ref: 1 - cmd_tag: 1 - cmd_tar_tree: 1 - cmd_unpack_file: 1 - cmd_unpack_objects: 1 - cmd_update_index: 1 - cmd_update_ref: 1 - cmd_update_server_info: 1 - cmd_upload_archive: 1 - cmd_upload_archive_writer: 1 - cmd_var: 1 - cmd_verify_pack: 1 - cmd_verify_tag: 1 - cmd_version: 1 - cmd_whatchanged: 1 - cmd_write_tree: 1 - ext: 4 - STRIP_EXTENSION: 1 - ! '*argv0': 1 - argv0: 2 - ARRAY_SIZE: 1 - exit: 16 - execv_dashed_external: 2 - STRBUF_INIT: 1 - ! '*tmp': 1 - strbuf_addf: 1 - tmp: 2 - cmd.buf: 1 - run_command_v_opt: 1 - RUN_SILENT_EXEC_FAILURE: 1 - RUN_CLEAN_ON_EXIT: 1 - ENOENT: 3 - strbuf_release: 1 - run_argv: 2 - done_alias: 4 - argcp: 2 - handle_alias: 1 - main: 3 - git_extract_argv0_path: 1 - git_setup_gettext: 1 - printf: 4 - list_common_cmds_help: 1 - setup_path: 1 - done_help: 3 - was_alias: 3 - fprintf: 18 - stderr: 15 - help_unknown_cmd: 1 - strerror: 4 - PPC_SHA1: 1 - ! '#': 16 - git_hash_ctx: 7 - SHA_CTX: 3 - ! '*git_hash_new_ctx': 1 - ! '*ctx': 5 - ctx: 14 - SHA1_Init: 4 - git_hash_free_ctx: 1 - git_hash_init: 1 - git_hash_update: 1 - SHA1_Update: 3 - git_hash_final: 1 - ! '*out': 3 - SHA1_Final: 3 - git_hash_buf: 1 - git_hash_vec: 1 - git_buf_vec: 1 - ! '*vec': 1 - vec: 2 - .data: 1 - .len: 3 - <stdio.h>: 4 - HELLO_H: 2 - hello: 1 - <assert.h>: 5 - <stddef.h>: 1 - <ctype.h>: 3 - <stdlib.h>: 2 - <string.h>: 3 - <limits.h>: 2 - ULLONG_MAX: 10 - MIN: 3 - HTTP_PARSER_DEBUG: 4 - SET_ERRNO: 47 - e: 4 - do: 8 - parser: 334 - http_errno: 11 - error_lineno: 3 - __LINE__: 1 - CALLBACK_NOTIFY_: 3 - FOR: 11 - ER: 4 - HTTP_PARSER_ERRNO: 10 - HPE_OK: 10 - settings: 6 - on_##FOR: 4 - HPE_CB_##FOR: 2 - CALLBACK_NOTIFY: 10 - CALLBACK_NOTIFY_NOADVANCE: 2 - CALLBACK_DATA_: 4 - LEN: 2 - FOR##_mark: 7 - CALLBACK_DATA: 10 - CALLBACK_DATA_NOADVANCE: 6 - MARK: 7 - PROXY_CONNECTION: 4 - CONNECTION: 4 - CONTENT_LENGTH: 4 - TRANSFER_ENCODING: 4 - UPGRADE: 4 - CHUNKED: 4 - KEEP_ALIVE: 4 - CLOSE: 4 - ! '*method_strings': 1 - XX: 63 - num: 8 - string: 2 - ! '#string': 1 - HTTP_METHOD_MAP: 3 - ! '#undef': 5 - tokens: 3 - int8_t: 3 - unhex: 3 - ! '{-': 1 - -}: 1 - HTTP_PARSER_STRICT: 5 - uint8_t: 6 - normal_url_char: 3 - T: 3 - s_dead: 10 - s_start_req_or_res: 4 - s_res_or_resp_H: 3 - s_start_res: 5 - s_res_H: 3 - s_res_HT: 4 - s_res_HTT: 3 - s_res_HTTP: 3 - s_res_first_http_major: 3 - s_res_http_major: 3 - s_res_first_http_minor: 3 - s_res_http_minor: 3 - s_res_first_status_code: 3 - s_res_status_code: 3 - s_res_status: 3 - s_res_line_almost_done: 4 - s_start_req: 6 - s_req_method: 4 - s_req_spaces_before_url: 5 - s_req_schema: 6 - s_req_schema_slash: 6 - s_req_schema_slash_slash: 6 - s_req_host_start: 8 - s_req_host_v6_start: 7 - s_req_host_v6: 7 - s_req_host_v6_end: 7 - s_req_host: 8 - s_req_port_start: 7 - s_req_port: 6 - s_req_path: 8 - s_req_query_string_start: 8 - s_req_query_string: 7 - s_req_fragment_start: 7 - s_req_fragment: 7 - s_req_http_start: 3 - s_req_http_H: 3 - s_req_http_HT: 3 - s_req_http_HTT: 3 - s_req_http_HTTP: 3 - s_req_first_http_major: 3 - s_req_http_major: 3 - s_req_first_http_minor: 3 - s_req_http_minor: 3 - s_req_line_almost_done: 4 - s_header_field_start: 12 - s_header_field: 4 - s_header_value_start: 4 - s_header_value: 5 - s_header_value_lws: 3 - s_header_almost_done: 6 - s_chunk_size_start: 4 - s_chunk_size: 3 - s_chunk_parameters: 3 - s_chunk_size_almost_done: 4 - s_headers_almost_done: 4 - s_headers_done: 4 - s_chunk_data: 3 - s_chunk_data_almost_done: 3 - s_chunk_data_done: 3 - s_body_identity: 3 - s_body_identity_eof: 4 - s_message_done: 3 - PARSING_HEADER: 2 - header_states: 1 - h_general: 23 - '0': 1 - h_C: 3 - h_CO: 3 - h_CON: 3 - h_matching_connection: 3 - h_matching_proxy_connection: 3 - h_matching_content_length: 3 - h_matching_transfer_encoding: 3 - h_matching_upgrade: 3 - h_connection: 6 - h_content_length: 5 - h_transfer_encoding: 5 - h_upgrade: 4 - h_matching_transfer_encoding_chunked: 3 - h_matching_connection_keep_alive: 3 - h_matching_connection_close: 3 - h_transfer_encoding_chunked: 4 - h_connection_keep_alive: 4 - h_connection_close: 4 - Macros: 1 - character: 1 - classes: 1 - depends: 1 - 'on': 1 - strict: 1 - define: 14 - CR: 18 - r: 5 - LF: 21 - LOWER: 7 - '0x20': 1 - IS_ALPHA: 5 - z: 1 - IS_NUM: 14 - '9': 1 - IS_ALPHANUM: 3 - IS_HEX: 2 - TOKEN: 4 - IS_URL_CHAR: 6 - IS_HOST_CHAR: 4 - '0x80': 1 - endif: 1 - start_state: 1 - HTTP_REQUEST: 7 - cond: 1 - HPE_STRICT: 1 - HTTP_STRERROR_GEN: 3 - ! '#n': 1 - ! '*description': 1 - http_strerror_tab: 7 - HTTP_ERRNO_MAP: 3 - http_message_needs_eof: 4 - http_parser: 13 - ! '*parser': 9 - parse_url_char: 5 - ch: 145 - http_parser_execute: 2 - http_parser_settings: 5 - ! '*settings': 2 - unhex_val: 7 - ! '*header_field_mark': 1 - ! '*header_value_mark': 1 - ! '*url_mark': 1 - ! '*body_mark': 1 - message_complete: 7 - HPE_INVALID_EOF_STATE: 1 - header_field_mark: 2 - header_value_mark: 2 - url_mark: 2 - nread: 7 - HTTP_MAX_HEADER_SIZE: 2 - HPE_HEADER_OVERFLOW: 1 - reexecute_byte: 7 - HPE_CLOSED_CONNECTION: 1 - content_length: 27 - message_begin: 3 - HTTP_RESPONSE: 3 - HPE_INVALID_CONSTANT: 3 - method: 39 - HTTP_HEAD: 2 - index: 53 - STRICT_CHECK: 15 - HPE_INVALID_VERSION: 12 - http_major: 11 - http_minor: 11 - HPE_INVALID_STATUS: 3 - status_code: 8 - HPE_INVALID_METHOD: 4 - http_method: 4 - HTTP_CONNECT: 4 - HTTP_DELETE: 1 - HTTP_GET: 1 - HTTP_LOCK: 1 - HTTP_MKCOL: 2 - HTTP_NOTIFY: 1 - HTTP_OPTIONS: 1 - HTTP_POST: 2 - HTTP_REPORT: 1 - HTTP_SUBSCRIBE: 2 - HTTP_TRACE: 1 - HTTP_UNLOCK: 2 - ! '*matcher': 1 - matcher: 3 - method_strings: 2 - HTTP_CHECKOUT: 1 - HTTP_COPY: 1 - HTTP_MOVE: 1 - HTTP_MERGE: 1 - HTTP_MSEARCH: 1 - HTTP_MKACTIVITY: 1 - HTTP_SEARCH: 1 - HTTP_PROPFIND: 2 - HTTP_PUT: 2 - HTTP_PATCH: 1 - HTTP_PURGE: 1 - HTTP_UNSUBSCRIBE: 1 - HTTP_PROPPATCH: 1 - url: 4 - HPE_INVALID_URL: 4 - HPE_LF_EXPECTED: 1 - HPE_INVALID_HEADER_TOKEN: 2 - header_field: 5 - header_state: 42 - header_value: 6 - F_UPGRADE: 3 - HPE_INVALID_CONTENT_LENGTH: 4 - uint64_t: 8 - F_CONNECTION_KEEP_ALIVE: 3 - F_CONNECTION_CLOSE: 3 - F_CHUNKED: 11 - F_TRAILING: 3 - NEW_MESSAGE: 6 - upgrade: 3 - on_headers_complete: 3 - F_SKIPBODY: 4 - HPE_CB_headers_complete: 1 - to_read: 6 - body: 6 - body_mark: 2 - HPE_INVALID_CHUNK_SIZE: 2 - HPE_INVALID_INTERNAL_STATE: 1 - '1': 1 - HPE_UNKNOWN: 1 - Does: 1 - the: 3 - need: 1 - to: 2 - see: 1 - an: 1 - EOF: 3 - find: 1 - end: 18 - of: 1 - message: 1 - http_should_keep_alive: 2 - http_method_str: 1 - m: 3 - http_parser_init: 2 - http_parser_type: 3 - http_errno_name: 1 - /sizeof: 4 - .name: 1 - http_errno_description: 1 - .description: 1 - http_parser_parse_url: 2 - buflen: 3 - is_connect: 4 - http_parser_url: 3 - ! '*u': 2 - http_parser_url_fields: 2 - uf: 14 - old_uf: 4 - u: 10 - port: 7 - field_set: 5 - UF_MAX: 3 - UF_SCHEMA: 2 - UF_HOST: 3 - UF_PORT: 5 - UF_PATH: 2 - UF_QUERY: 2 - UF_FRAGMENT: 2 - field_data: 5 - .off: 2 - xffff: 1 - uint16_t: 6 - http_parser_pause: 2 - paused: 3 - HPE_PAUSED: 2 - http_parser_h: 2 - __cplusplus: 2 - HTTP_PARSER_VERSION_MAJOR: 1 - HTTP_PARSER_VERSION_MINOR: 1 - <sys/types.h>: 1 - _WIN32: 2 - __MINGW32__: 1 - _MSC_VER: 2 - __int8: 2 - __int16: 2 - int16_t: 1 - __int32: 2 - int32_t: 1 - __int64: 2 - int64_t: 1 - ssize_t: 1 - <stdint.h>: 1 - ! '*1024': 4 - DELETE: 2 - GET: 2 - HEAD: 2 - POST: 2 - PUT: 2 - CONNECT: 2 - OPTIONS: 2 - TRACE: 2 - COPY: 2 - LOCK: 2 - MKCOL: 2 - MOVE: 2 - PROPFIND: 2 - PROPPATCH: 2 - SEARCH: 3 - UNLOCK: 2 - REPORT: 2 - MKACTIVITY: 2 - CHECKOUT: 2 - MERGE: 2 - MSEARCH: 1 - M: 1 - NOTIFY: 2 - SUBSCRIBE: 2 - UNSUBSCRIBE: 2 - PATCH: 2 - PURGE: 2 - HTTP_##name: 1 - HTTP_BOTH: 1 - OK: 1 - CB_message_begin: 1 - CB_url: 1 - CB_header_field: 1 - CB_header_value: 1 - CB_headers_complete: 1 - CB_body: 1 - CB_message_complete: 1 - INVALID_EOF_STATE: 1 - HEADER_OVERFLOW: 1 - CLOSED_CONNECTION: 1 - INVALID_VERSION: 1 - INVALID_STATUS: 1 - INVALID_METHOD: 1 - INVALID_URL: 1 - INVALID_HOST: 1 - INVALID_PORT: 1 - INVALID_PATH: 1 - INVALID_QUERY_STRING: 1 - INVALID_FRAGMENT: 1 - LF_EXPECTED: 1 - INVALID_HEADER_TOKEN: 1 - INVALID_CONTENT_LENGTH: 1 - INVALID_CHUNK_SIZE: 1 - INVALID_CONSTANT: 1 - INVALID_INTERNAL_STATE: 1 - STRICT: 1 - PAUSED: 1 - UNKNOWN: 1 - HTTP_ERRNO_GEN: 3 - HPE_##n: 1 - HTTP_PARSER_ERRNO_LINE: 2 - short: 3 - http_cb: 3 - on_message_begin: 1 - http_data_cb: 4 - on_url: 1 - on_header_field: 1 - on_header_value: 1 - on_body: 1 - on_message_complete: 1 - 'off': 5 - ! '*http_method_str': 1 - ! '*http_errno_name': 1 - ! '*http_errno_description': 1 - strncasecmp: 2 - _strnicmp: 1 - REF_TABLE_SIZE: 1 - BUFFER_BLOCK: 5 - BUFFER_SPAN: 9 - MKD_LI_END: 1 - gperf_case_strncmp: 1 - s1: 2 - s2: 2 - GPERF_DOWNCASE: 1 - GPERF_CASE_STRNCMP: 1 - link_ref: 2 - ! '*link': 1 - ! '*title': 1 - sd_markdown: 6 - tag: 1 - tag_len: 3 - w: 6 - is_empty: 4 - htmlblock_end: 3 - ! '*curtag': 2 - ! '*rndr': 4 - start_of_line: 2 - tag_size: 3 - curtag: 8 - end_tag: 4 - block_lines: 3 - htmlblock_end_tag: 1 - rndr: 25 - parse_htmlblock: 1 - ! '*ob': 3 - do_render: 4 - tag_end: 7 - work: 4 - find_block_tag: 1 - work.size: 5 - cb.blockhtml: 6 - ob: 8 - opaque: 8 - parse_table_row: 1 - columns: 3 - ! '*col_data': 1 - header_flag: 3 - col: 9 - ! '*row_work': 1 - cb.table_cell: 3 - cb.table_row: 2 - row_work: 4 - rndr_newbuf: 2 - cell_start: 5 - cell_end: 6 - ! '*cell_work': 1 - cell_work: 3 - _isspace: 3 - parse_inline: 1 - col_data: 2 - rndr_popbuf: 2 - empty_cell: 2 - parse_table_header: 1 - ! '*columns': 2 - ! '**column_data': 1 - pipes: 23 - header_end: 7 - under_end: 1 - ! '*column_data': 1 - calloc: 1 - beg: 10 - doc_size: 6 - document: 9 - UTF8_BOM: 1 - is_ref: 1 - md: 18 - refs: 2 - expand_tabs: 1 - text: 22 - bufputc: 2 - bufgrow: 1 - MARKDOWN_GROW: 1 - cb.doc_header: 2 - parse_block: 1 - cb.doc_footer: 2 - bufrelease: 3 - free_link_refs: 1 - work_bufs: 8 - .size: 2 - sd_markdown_free: 1 - ! '*md': 1 - .asize: 2 - .item: 2 - stack_free: 2 - sd_version: 1 - ! '*ver_major': 2 - ! '*ver_minor': 2 - ! '*ver_revision': 2 - SUNDOWN_VER_MAJOR: 1 - SUNDOWN_VER_MINOR: 1 - SUNDOWN_VER_REVISION: 1 - <errno.h>: 2 - <sys/wait.h>: 2 - <poll.h>: 1 - <unistd.h>: 1 - <fcntl.h>: 2 - __APPLE__: 2 - TARGET_OS_IPHONE: 1 - ! '**environ': 1 - uv__chld: 2 - EV_P_: 1 - ev_child*: 1 - watcher: 4 - revents: 2 - rstatus: 1 - exit_status: 3 - term_signal: 3 - uv_process_t: 1 - ! '*process': 1 - process: 19 - child_watcher: 5 - EV_CHILD: 1 - ev_child_stop: 2 - EV_A_: 1 - WIFEXITED: 1 - WEXITSTATUS: 2 - WIFSIGNALED: 2 - WTERMSIG: 2 - exit_cb: 3 - uv__make_socketpair: 2 - fds: 20 - SOCK_NONBLOCK: 2 - fl: 8 - SOCK_CLOEXEC: 1 - UV__F_NONBLOCK: 5 - socketpair: 2 - AF_UNIX: 2 - SOCK_STREAM: 2 - uv__cloexec: 4 - uv__nonblock: 5 - uv__make_pipe: 2 - __linux__: 3 - UV__O_CLOEXEC: 1 - UV__O_NONBLOCK: 1 - uv__pipe2: 1 - ENOSYS: 1 - pipe: 1 - uv__process_init_stdio: 2 - uv_stdio_container_t*: 4 - container: 17 - writable: 8 - UV_IGNORE: 2 - UV_CREATE_PIPE: 4 - UV_INHERIT_FD: 3 - UV_INHERIT_STREAM: 2 - data.stream: 7 - UV_NAMED_PIPE: 2 - data.fd: 1 - uv__process_stdio_flags: 2 - uv_pipe_t*: 1 - ipc: 1 - UV_STREAM_READABLE: 2 - UV_STREAM_WRITABLE: 2 - uv__process_open_stream: 2 - child_fd: 3 - close: 13 - uv__stream_open: 1 - uv_stream_t*: 2 - uv__process_close_stream: 2 - uv__stream_close: 1 - uv__process_child_init: 2 - uv_process_options_t: 2 - options: 17 - stdio_count: 7 - int*: 2 - options.flags: 4 - UV_PROCESS_DETACHED: 2 - setsid: 2 - close_fd: 2 - use_fd: 7 - open: 4 - O_RDONLY: 1 - O_RDWR: 2 - perror: 5 - _exit: 6 - dup2: 4 - options.cwd: 2 - UV_PROCESS_SETGID: 2 - setgid: 1 - options.gid: 1 - UV_PROCESS_SETUID: 2 - setuid: 1 - options.uid: 1 - environ: 4 - options.env: 1 - execvp: 1 - options.file: 2 - options.args: 1 - SPAWN_WAIT_EXEC: 5 - uv_spawn: 1 - uv_loop_t*: 1 - loop: 7 - uv_process_t*: 3 - char**: 1 - save_our_env: 3 - options.stdio_count: 4 - malloc: 2 - signal_pipe: 7 - pollfd: 1 - pfd: 2 - pid_t: 2 - pid: 13 - UV_PROCESS_WINDOWS_VERBATIM_ARGUMENTS: 1 - uv__handle_init: 1 - uv_handle_t*: 1 - UV_PROCESS: 1 - counters.process_init: 1 - uv__handle_start: 1 - options.exit_cb: 1 - options.stdio: 3 - fork: 2 - pfd.fd: 1 - pfd.events: 1 - POLLIN: 1 - POLLHUP: 1 - pfd.revents: 1 - poll: 1 - EINTR: 1 - ev_child_init: 1 - ev_child_start: 1 - ev: 2 - child_watcher.data: 1 - uv__set_sys_error: 2 - uv_process_kill: 1 - signum: 4 - kill: 4 - uv_err_t: 1 - uv_kill: 1 - uv__new_sys_error: 1 - uv_ok_: 1 - uv__process_close: 1 - handle: 10 - uv__handle_stop: 1 - VALUE: 13 - rb_cRDiscount: 4 - rb_rdiscount_to_html: 2 - self: 6 - ! '*res': 2 - szres: 8 - encoding: 8 - rb_funcall: 14 - rb_intern: 15 - rb_str_buf_new: 2 - Check_Type: 2 - T_STRING: 2 - rb_rdiscount__get_flags: 3 - MMIOT: 2 - ! '*doc': 2 - mkd_string: 2 - RSTRING_PTR: 2 - RSTRING_LEN: 2 - mkd_compile: 2 - doc: 6 - mkd_document: 1 - res: 4 - rb_str_cat: 4 - mkd_cleanup: 2 - rb_respond_to: 1 - rb_rdiscount_toc_content: 2 - mkd_toc: 1 - ruby_obj: 11 - MKD_TABSTOP: 1 - MKD_NOHEADER: 1 - Qtrue: 10 - MKD_NOPANTS: 1 - MKD_NOHTML: 1 - MKD_TOC: 1 - MKD_NOIMAGE: 1 - MKD_NOLINKS: 1 - MKD_NOTABLES: 1 - MKD_STRICT: 1 - MKD_AUTOLINK: 1 - MKD_SAFELINK: 1 - MKD_NO_EXT: 1 - Init_rdiscount: 1 - rb_define_class: 1 - rb_cObject: 1 - rb_define_method: 2 - <time.h>: 1 - <signal.h>: 1 - <stdarg.h>: 1 - <arpa/inet.h>: 1 - <sys/stat.h>: 1 - <sys/time.h>: 1 - <sys/resource.h>: 2 - <sys/uio.h>: 1 - <float.h>: 1 - <math.h>: 1 - <sys/utsname.h>: 1 - sharedObjectsStruct: 1 - shared: 1 - double: 7 - R_Zero: 2 - R_PosInf: 2 - R_NegInf: 2 - R_Nan: 2 - redisServer: 1 - server: 1 - redisCommand: 6 - ! '*commandTable': 1 - redisCommandTable: 5 - getCommand: 1 - setCommand: 1 - noPreloadGetKeys: 6 - setnxCommand: 1 - setexCommand: 1 - psetexCommand: 1 - appendCommand: 1 - strlenCommand: 1 - delCommand: 1 - existsCommand: 1 - setbitCommand: 1 - getbitCommand: 1 - setrangeCommand: 1 - getrangeCommand: 2 - incrCommand: 1 - decrCommand: 1 - mgetCommand: 1 - rpushCommand: 1 - lpushCommand: 1 - rpushxCommand: 1 - lpushxCommand: 1 - linsertCommand: 1 - rpopCommand: 1 - lpopCommand: 1 - brpopCommand: 1 - brpoplpushCommand: 1 - blpopCommand: 1 - llenCommand: 1 - lindexCommand: 1 - lsetCommand: 1 - lrangeCommand: 1 - ltrimCommand: 1 - lremCommand: 1 - rpoplpushCommand: 1 - saddCommand: 1 - sremCommand: 1 - smoveCommand: 1 - sismemberCommand: 1 - scardCommand: 1 - spopCommand: 1 - srandmemberCommand: 1 - sinterCommand: 2 - sinterstoreCommand: 1 - sunionCommand: 1 - sunionstoreCommand: 1 - sdiffCommand: 1 - sdiffstoreCommand: 1 - zaddCommand: 1 - zincrbyCommand: 1 - zremCommand: 1 - zremrangebyscoreCommand: 1 - zremrangebyrankCommand: 1 - zunionstoreCommand: 1 - zunionInterGetKeys: 4 - zinterstoreCommand: 1 - zrangeCommand: 1 - zrangebyscoreCommand: 1 - zrevrangebyscoreCommand: 1 - zcountCommand: 1 - zrevrangeCommand: 1 - zcardCommand: 1 - zscoreCommand: 1 - zrankCommand: 1 - zrevrankCommand: 1 - hsetCommand: 1 - hsetnxCommand: 1 - hgetCommand: 1 - hmsetCommand: 1 - hmgetCommand: 1 - hincrbyCommand: 1 - hincrbyfloatCommand: 1 - hdelCommand: 1 - hlenCommand: 1 - hkeysCommand: 1 - hvalsCommand: 1 - hgetallCommand: 1 - hexistsCommand: 1 - incrbyCommand: 1 - decrbyCommand: 1 - incrbyfloatCommand: 1 - getsetCommand: 1 - msetCommand: 1 - msetnxCommand: 1 - randomkeyCommand: 1 - selectCommand: 1 - moveCommand: 1 - renameCommand: 1 - renameGetKeys: 2 - renamenxCommand: 1 - expireCommand: 1 - expireatCommand: 1 - pexpireCommand: 1 - pexpireatCommand: 1 - keysCommand: 1 - dbsizeCommand: 1 - authCommand: 3 - pingCommand: 2 - echoCommand: 2 - saveCommand: 1 - bgsaveCommand: 1 - bgrewriteaofCommand: 1 - shutdownCommand: 2 - lastsaveCommand: 1 - typeCommand: 1 - multiCommand: 2 - execCommand: 2 - discardCommand: 2 - syncCommand: 1 - flushdbCommand: 1 - flushallCommand: 1 - sortCommand: 1 - infoCommand: 4 - monitorCommand: 2 - ttlCommand: 1 - pttlCommand: 1 - persistCommand: 1 - slaveofCommand: 2 - debugCommand: 1 - configCommand: 1 - subscribeCommand: 2 - unsubscribeCommand: 2 - psubscribeCommand: 2 - punsubscribeCommand: 2 - publishCommand: 1 - watchCommand: 2 - unwatchCommand: 1 - clusterCommand: 1 - restoreCommand: 1 - migrateCommand: 1 - askingCommand: 1 - dumpCommand: 1 - objectCommand: 1 - clientCommand: 1 - evalCommand: 1 - evalShaCommand: 1 - slowlogCommand: 1 - scriptCommand: 2 - timeCommand: 2 - bitopCommand: 1 - bitcountCommand: 1 - redisLogRaw: 3 - level: 11 - syslogLevelMap: 2 - LOG_DEBUG: 1 - LOG_INFO: 1 - LOG_NOTICE: 1 - LOG_WARNING: 1 - FILE: 3 - ! '*fp': 3 - rawmode: 2 - REDIS_LOG_RAW: 2 - xff: 3 - server.verbosity: 4 - fp: 13 - server.logfile: 8 - fopen: 3 - msg: 10 - timeval: 4 - tv: 8 - gettimeofday: 4 - strftime: 1 - localtime: 1 - tv.tv_sec: 4 - snprintf: 2 - tv.tv_usec/1000: 1 - getpid: 7 - server.syslog_enabled: 3 - syslog: 1 - redisLog: 33 - ! '...': 1 - va_list: 1 - ap: 4 - REDIS_MAX_LOGMSG_LEN: 1 - va_start: 1 - vsnprintf: 1 - va_end: 1 - redisLogFromHandler: 2 - server.daemonize: 5 - O_APPEND: 2 - O_CREAT: 2 - O_WRONLY: 2 - STDOUT_FILENO: 2 - ll2string: 3 - write: 7 - time: 10 - oom: 3 - REDIS_WARNING: 19 - sleep: 1 - abort: 1 - ustime: 7 - ust: 4 - ! '*1000000': 1 - tv.tv_usec: 3 - mstime: 5 - /1000: 1 - exitFromChild: 1 - retcode: 3 - COVERAGE_TEST: 1 - dictVanillaFree: 1 - ! '*privdata': 8 - ! '*val': 4 - DICT_NOTUSED: 6 - privdata: 8 - zfree: 2 - dictListDestructor: 2 - listRelease: 1 - list*: 1 - dictSdsKeyCompare: 6 - ! '*key1': 4 - ! '*key2': 4 - l1: 4 - l2: 3 - sdslen: 14 - sds: 13 - key1: 5 - key2: 5 - dictSdsKeyCaseCompare: 2 - strcasecmp: 13 - dictRedisObjectDestructor: 7 - decrRefCount: 6 - dictSdsDestructor: 4 - sdsfree: 2 - dictObjKeyCompare: 2 - robj: 7 - ! '*o1': 2 - ! '*o2': 2 - o1: 7 - ptr: 18 - o2: 7 - dictObjHash: 2 - key: 9 - dictGenHashFunction: 5 - dictSdsHash: 4 - char*: 7 - dictSdsCaseHash: 2 - dictGenCaseHashFunction: 1 - dictEncObjKeyCompare: 4 - robj*: 3 - REDIS_ENCODING_INT: 4 - getDecodedObject: 3 - dictEncObjHash: 4 - REDIS_ENCODING_RAW: 1 - dictType: 8 - setDictType: 1 - zsetDictType: 1 - dbDictType: 2 - keyptrDictType: 2 - commandTableDictType: 2 - hashDictType: 1 - keylistDictType: 4 - clusterNodesDictType: 1 - htNeedsResize: 3 - dict: 11 - ! '*dict': 2 - used: 7 - dictSlots: 3 - dictSize: 10 - DICT_HT_INITIAL_SIZE: 2 - used*100/size: 1 - REDIS_HT_MINFILL: 1 - tryResizeHashTables: 2 - server.dbnum: 8 - server.db: 23 - .dict: 9 - dictResize: 2 - .expires: 8 - incrementallyRehash: 2 - dictIsRehashing: 2 - dictRehashMilliseconds: 2 - updateDictResizePolicy: 2 - server.rdb_child_pid: 12 - server.aof_child_pid: 10 - dictEnableResize: 1 - dictDisableResize: 1 - activeExpireCycle: 2 - iteration: 3 - start: 6 - timelimit: 5 - ! '*REDIS_EXPIRELOOKUPS_TIME_PERC/REDIS_HZ/100': 1 - expired: 4 - redisDb: 3 - expires: 3 - slots: 2 - now: 5 - num*100/slots: 1 - REDIS_EXPIRELOOKUPS_PER_CRON: 2 - dictEntry: 2 - ! '*de': 2 - de: 12 - dictGetRandomKey: 4 - dictGetSignedIntegerVal: 1 - dictGetKey: 4 - ! '*keyobj': 2 - createStringObject: 11 - propagateExpire: 2 - keyobj: 6 - dbDelete: 2 - server.stat_expiredkeys: 3 - xf: 1 - REDIS_EXPIRELOOKUPS_PER_CRON/4: 1 - updateLRUClock: 3 - server.lruclock: 2 - server.unixtime/REDIS_LRU_CLOCK_RESOLUTION: 1 - REDIS_LRU_CLOCK_MAX: 1 - trackOperationsPerSecond: 2 - server.ops_sec_last_sample_time: 3 - ops: 1 - server.stat_numcommands: 4 - server.ops_sec_last_sample_ops: 3 - ops_sec: 3 - ops*1000/t: 1 - server.ops_sec_samples: 4 - server.ops_sec_idx: 4 - ! '%': 2 - getOperationsPerSecond: 2 - sum: 3 - REDIS_OPS_SEC_SAMPLES: 2 - clientsCronHandleTimeout: 2 - redisClient: 12 - time_t: 4 - server.unixtime: 10 - server.maxidletime: 3 - REDIS_SLAVE: 3 - REDIS_MASTER: 2 - REDIS_BLOCKED: 2 - pubsub_channels: 2 - listLength: 14 - pubsub_patterns: 2 - lastinteraction: 3 - REDIS_VERBOSE: 3 - freeClient: 1 - bpop.timeout: 2 - addReply: 13 - shared.nullmultibulk: 2 - unblockClientWaitingData: 1 - clientsCronResizeQueryBuffer: 2 - querybuf_size: 3 - sdsAllocSize: 1 - querybuf: 6 - idletime: 2 - REDIS_MBULK_BIG_ARG: 1 - querybuf_size/: 1 - querybuf_peak: 2 - sdsavail: 1 - sdsRemoveFreeSpace: 1 - clientsCron: 2 - numclients: 3 - server.clients: 7 - iterations: 4 - numclients/: 1 - REDIS_HZ*10: 1 - listNode: 4 - ! '*head': 1 - listRotate: 1 - head: 2 - listFirst: 2 - listNodeValue: 3 - run_with_period: 6 - _ms_: 1 - loops: 2 - serverCron: 2 - aeEventLoop: 2 - ! '*eventLoop': 2 - ! '*clientData': 1 - server.cronloops: 3 - REDIS_NOTUSED: 5 - eventLoop: 2 - clientData: 1 - server.watchdog_period: 3 - watchdogScheduleSignal: 1 - zmalloc_used_memory: 8 - server.stat_peak_memory: 5 - server.shutdown_asap: 3 - prepareForShutdown: 2 - REDIS_OK: 23 - vkeys: 8 - server.activerehashing: 2 - server.slaves: 9 - server.aof_rewrite_scheduled: 4 - rewriteAppendOnlyFileBackground: 2 - statloc: 5 - wait3: 1 - WNOHANG: 1 - exitcode: 3 - bysignal: 4 - backgroundSaveDoneHandler: 1 - backgroundRewriteDoneHandler: 1 - server.saveparamslen: 3 - saveparam: 1 - ! '*sp': 1 - server.saveparams: 2 - server.dirty: 3 - sp: 4 - changes: 2 - server.lastsave: 3 - seconds: 2 - REDIS_NOTICE: 13 - rdbSaveBackground: 1 - server.rdb_filename: 4 - server.aof_rewrite_perc: 3 - server.aof_current_size: 2 - server.aof_rewrite_min_size: 2 - base: 1 - server.aof_rewrite_base_size: 4 - growth: 3 - server.aof_current_size*100/base: 1 - server.aof_flush_postponed_start: 2 - flushAppendOnlyFile: 2 - server.masterhost: 7 - freeClientsInAsyncFreeQueue: 1 - replicationCron: 1 - server.cluster_enabled: 6 - clusterCron: 1 - /REDIS_HZ: 1 - beforeSleep: 2 - ! '*ln': 3 - server.unblocked_clients: 4 - ln: 8 - redisAssert: 1 - listDelNode: 1 - REDIS_UNBLOCKED: 1 - server.current_client: 3 - processInputBuffer: 1 - createSharedObjects: 2 - shared.crlf: 2 - createObject: 31 - REDIS_STRING: 31 - sdsnew: 27 - shared.ok: 3 - shared.err: 1 - shared.emptybulk: 1 - shared.czero: 1 - shared.cone: 1 - shared.cnegone: 1 - shared.nullbulk: 1 - shared.emptymultibulk: 1 - shared.pong: 2 - shared.queued: 2 - shared.wrongtypeerr: 1 - shared.nokeyerr: 1 - shared.syntaxerr: 2 - shared.sameobjecterr: 1 - shared.outofrangeerr: 1 - shared.noscripterr: 1 - shared.loadingerr: 2 - shared.slowscripterr: 2 - shared.masterdownerr: 2 - shared.bgsaveerr: 2 - shared.roslaveerr: 2 - shared.oomerr: 2 - shared.space: 1 - shared.colon: 1 - shared.plus: 1 - REDIS_SHARED_SELECT_CMDS: 1 - shared.select: 1 - sdscatprintf: 24 - sdsempty: 8 - shared.messagebulk: 1 - shared.pmessagebulk: 1 - shared.subscribebulk: 1 - shared.unsubscribebulk: 1 - shared.psubscribebulk: 1 - shared.punsubscribebulk: 1 - shared.del: 1 - shared.rpop: 1 - shared.lpop: 1 - REDIS_SHARED_INTEGERS: 1 - shared.integers: 2 - void*: 1 - REDIS_SHARED_BULKHDR_LEN: 1 - shared.mbulkhdr: 1 - shared.bulkhdr: 1 - initServerConfig: 2 - getRandomHexChars: 1 - server.runid: 3 - REDIS_RUN_ID_SIZE: 2 - server.arch_bits: 3 - server.port: 7 - REDIS_SERVERPORT: 1 - server.bindaddr: 2 - server.unixsocket: 7 - server.unixsocketperm: 2 - server.ipfd: 9 - server.sofd: 9 - REDIS_DEFAULT_DBNUM: 1 - REDIS_MAXIDLETIME: 1 - server.client_max_querybuf_len: 1 - REDIS_MAX_QUERYBUF_LEN: 1 - server.loading: 4 - server.syslog_ident: 2 - zstrdup: 5 - server.syslog_facility: 2 - LOG_LOCAL0: 1 - server.aof_state: 7 - REDIS_AOF_OFF: 5 - server.aof_fsync: 1 - AOF_FSYNC_EVERYSEC: 1 - server.aof_no_fsync_on_rewrite: 1 - REDIS_AOF_REWRITE_PERC: 1 - REDIS_AOF_REWRITE_MIN_SIZE: 1 - server.aof_last_fsync: 1 - server.aof_rewrite_time_last: 2 - server.aof_rewrite_time_start: 2 - server.aof_delayed_fsync: 2 - server.aof_fd: 4 - server.aof_selected_db: 1 - server.pidfile: 3 - server.aof_filename: 3 - server.requirepass: 4 - server.rdb_compression: 1 - server.rdb_checksum: 1 - server.maxclients: 6 - REDIS_MAX_CLIENTS: 1 - server.bpop_blocked_clients: 2 - server.maxmemory: 6 - server.maxmemory_policy: 11 - REDIS_MAXMEMORY_VOLATILE_LRU: 3 - server.maxmemory_samples: 3 - server.hash_max_ziplist_entries: 1 - REDIS_HASH_MAX_ZIPLIST_ENTRIES: 1 - server.hash_max_ziplist_value: 1 - REDIS_HASH_MAX_ZIPLIST_VALUE: 1 - server.list_max_ziplist_entries: 1 - REDIS_LIST_MAX_ZIPLIST_ENTRIES: 1 - server.list_max_ziplist_value: 1 - REDIS_LIST_MAX_ZIPLIST_VALUE: 1 - server.set_max_intset_entries: 1 - REDIS_SET_MAX_INTSET_ENTRIES: 1 - server.zset_max_ziplist_entries: 1 - REDIS_ZSET_MAX_ZIPLIST_ENTRIES: 1 - server.zset_max_ziplist_value: 1 - REDIS_ZSET_MAX_ZIPLIST_VALUE: 1 - server.repl_ping_slave_period: 1 - REDIS_REPL_PING_SLAVE_PERIOD: 1 - server.repl_timeout: 1 - REDIS_REPL_TIMEOUT: 1 - server.cluster.configfile: 1 - server.lua_caller: 1 - server.lua_time_limit: 1 - REDIS_LUA_TIME_LIMIT: 1 - server.lua_client: 1 - server.lua_timedout: 2 - resetServerSaveParams: 2 - appendServerSaveParams: 3 - ! '*60': 1 - server.masterauth: 1 - server.masterport: 2 - server.master: 3 - server.repl_state: 6 - REDIS_REPL_NONE: 1 - server.repl_syncio_timeout: 1 - REDIS_REPL_SYNCIO_TIMEOUT: 1 - server.repl_serve_stale_data: 2 - server.repl_slave_ro: 2 - server.repl_down_since: 2 - server.client_obuf_limits: 9 - REDIS_CLIENT_LIMIT_CLASS_NORMAL: 3 - .hard_limit_bytes: 3 - .soft_limit_bytes: 3 - .soft_limit_seconds: 3 - REDIS_CLIENT_LIMIT_CLASS_SLAVE: 3 - ! '*1024*256': 1 - ! '*1024*64': 1 - REDIS_CLIENT_LIMIT_CLASS_PUBSUB: 3 - ! '*1024*32': 1 - ! '*1024*8': 1 - '.0': 1 - .0/R_Zero: 2 - R_Zero/R_Zero: 1 - server.commands: 1 - dictCreate: 6 - populateCommandTable: 2 - server.delCommand: 1 - lookupCommandByCString: 3 - server.multiCommand: 1 - server.lpushCommand: 1 - server.slowlog_log_slower_than: 1 - REDIS_SLOWLOG_LOG_SLOWER_THAN: 1 - server.slowlog_max_len: 1 - REDIS_SLOWLOG_MAX_LEN: 1 - server.assert_failed: 1 - server.assert_file: 1 - server.assert_line: 1 - server.bug_report_start: 1 - adjustOpenFilesLimit: 2 - rlim_t: 3 - maxfiles: 6 - rlimit: 1 - limit: 3 - getrlimit: 1 - RLIMIT_NOFILE: 2 - oldlimit: 5 - limit.rlim_cur: 2 - limit.rlim_max: 1 - setrlimit: 1 - initServer: 2 - signal: 2 - SIGHUP: 1 - SIG_IGN: 2 - SIGPIPE: 1 - setupSignalHandlers: 2 - openlog: 1 - LOG_PID: 1 - LOG_NDELAY: 1 - LOG_NOWAIT: 1 - listCreate: 6 - server.clients_to_close: 1 - server.monitors: 2 - server.el: 7 - aeCreateEventLoop: 1 - zmalloc: 2 - ! '*server.dbnum': 1 - anetTcpServer: 1 - server.neterr: 4 - ANET_ERR: 2 - unlink: 3 - anetUnixServer: 1 - .blocking_keys: 1 - .watched_keys: 1 - .id: 1 - server.pubsub_channels: 2 - server.pubsub_patterns: 4 - listSetFreeMethod: 1 - freePubsubPattern: 1 - listSetMatchMethod: 1 - listMatchPubsubPattern: 1 - aofRewriteBufferReset: 1 - server.aof_buf: 3 - server.rdb_save_time_last: 2 - server.rdb_save_time_start: 2 - server.stat_numconnections: 2 - server.stat_evictedkeys: 3 - server.stat_starttime: 2 - server.stat_keyspace_misses: 2 - server.stat_keyspace_hits: 2 - server.stat_fork_time: 2 - server.stat_rejected_conn: 2 - server.lastbgsave_status: 3 - server.stop_writes_on_bgsave_err: 2 - aeCreateTimeEvent: 1 - aeCreateFileEvent: 2 - AE_READABLE: 2 - acceptTcpHandler: 1 - AE_ERR: 2 - acceptUnixHandler: 1 - REDIS_AOF_ON: 2 - LL*: 1 - REDIS_MAXMEMORY_NO_EVICTION: 2 - clusterInit: 1 - scriptingInit: 1 - slowlogInit: 1 - bioInit: 1 - numcommands: 5 - sflags: 1 - retval: 3 - arity: 3 - addReplyErrorFormat: 1 - authenticated: 3 - proc: 14 - addReplyError: 6 - getkeys_proc: 1 - firstkey: 1 - hashslot: 3 - server.cluster.state: 1 - REDIS_CLUSTER_OK: 1 - ask: 3 - clusterNode: 1 - ! '*n': 1 - getNodeByQuery: 1 - server.cluster.myself: 1 - addReplySds: 3 - ip: 4 - freeMemoryIfNeeded: 2 - REDIS_CMD_DENYOOM: 1 - REDIS_ERR: 5 - REDIS_CMD_WRITE: 2 - REDIS_REPL_CONNECTED: 3 - tolower: 2 - REDIS_MULTI: 1 - queueMultiCommand: 1 - call: 1 - REDIS_CALL_FULL: 1 - save: 2 - REDIS_SHUTDOWN_SAVE: 1 - nosave: 2 - REDIS_SHUTDOWN_NOSAVE: 1 - SIGKILL: 2 - rdbRemoveTempFile: 1 - aof_fsync: 1 - rdbSave: 1 - addReplyBulk: 1 - addReplyMultiBulkLen: 1 - addReplyBulkLongLong: 2 - bytesToHuman: 3 - ! '*s': 1 - sprintf: 4 - n/: 3 - LL*1024*1024: 2 - LL*1024*1024*1024: 1 - genRedisInfoString: 2 - ! '*section': 2 - info: 63 - uptime: 2 - rusage: 1 - self_ru: 2 - c_ru: 2 - lol: 3 - bib: 3 - allsections: 12 - defsections: 11 - sections: 11 - section: 14 - getrusage: 2 - RUSAGE_SELF: 1 - RUSAGE_CHILDREN: 1 - getClientsMaxBuffers: 1 - utsname: 1 - sdscat: 14 - uname: 1 - REDIS_VERSION: 4 - redisGitSHA1: 3 - strtol: 2 - redisGitDirty: 3 - name.sysname: 1 - name.release: 1 - name.machine: 1 - aeGetApiName: 1 - __GNUC__: 2 - __GNUC_MINOR__: 1 - __GNUC_PATCHLEVEL__: 1 - uptime/: 1 - ! '*24': 1 - hmem: 3 - peak_hmem: 3 - zmalloc_get_rss: 1 - lua_gc: 1 - server.lua: 1 - LUA_GCCOUNT: 1 - ! '*1024LL': 1 - zmalloc_get_fragmentation_ratio: 1 - ZMALLOC_LIB: 2 - aofRewriteBufferSize: 2 - bioPendingJobsOfType: 1 - REDIS_BIO_AOF_FSYNC: 1 - perc: 3 - eta: 4 - elapsed: 3 - off_t: 1 - remaining_bytes: 1 - server.loading_total_bytes: 3 - server.loading_loaded_bytes: 3 - server.loading_start_time: 2 - elapsed*remaining_bytes: 1 - /server.loading_loaded_bytes: 1 - REDIS_REPL_TRANSFER: 2 - server.repl_transfer_left: 1 - server.repl_transfer_lastio: 1 - slaveid: 3 - listIter: 2 - li: 6 - listRewind: 2 - listNext: 2 - ! '*slave': 2 - ! '*state': 1 - anetPeerToString: 1 - slave: 3 - replstate: 1 - REDIS_REPL_WAIT_BGSAVE_START: 1 - REDIS_REPL_WAIT_BGSAVE_END: 1 - REDIS_REPL_SEND_BULK: 1 - REDIS_REPL_ONLINE: 1 - float: 11 - self_ru.ru_stime.tv_sec: 1 - self_ru.ru_stime.tv_usec/1000000: 1 - self_ru.ru_utime.tv_sec: 1 - self_ru.ru_utime.tv_usec/1000000: 1 - c_ru.ru_stime.tv_sec: 1 - c_ru.ru_stime.tv_usec/1000000: 1 - c_ru.ru_utime.tv_sec: 1 - c_ru.ru_utime.tv_usec/1000000: 1 - calls: 4 - microseconds: 1 - microseconds/c: 1 - keys: 4 - REDIS_MONITOR: 1 - slaveseldb: 1 - listAddNodeTail: 1 - mem_used: 9 - mem_tofree: 3 - mem_freed: 4 - slaves: 3 - obuf_bytes: 3 - getClientOutputBufferMemoryUsage: 1 - k: 7 - keys_freed: 3 - bestval: 5 - bestkey: 9 - REDIS_MAXMEMORY_ALLKEYS_LRU: 2 - REDIS_MAXMEMORY_ALLKEYS_RANDOM: 2 - REDIS_MAXMEMORY_VOLATILE_RANDOM: 1 - thiskey: 7 - thisval: 8 - dictFind: 1 - dictGetVal: 2 - estimateObjectIdleTime: 1 - REDIS_MAXMEMORY_VOLATILE_TTL: 1 - flushSlavesOutputBuffers: 1 - linuxOvercommitMemoryValue: 2 - fgets: 1 - atoi: 3 - linuxOvercommitMemoryWarning: 2 - createPidFile: 2 - daemonize: 2 - STDIN_FILENO: 1 - STDERR_FILENO: 2 - version: 2 - usage: 2 - redisAsciiArt: 2 - ! '*16': 2 - ascii_logo: 1 - sigtermHandler: 2 - sig: 2 - sigaction: 6 - act: 6 - sigemptyset: 2 - act.sa_mask: 2 - act.sa_flags: 2 - act.sa_handler: 1 - SIGTERM: 1 - HAVE_BACKTRACE: 1 - SA_NODEFER: 1 - SA_RESETHAND: 1 - SA_SIGINFO: 1 - act.sa_sigaction: 1 - sigsegvHandler: 1 - SIGSEGV: 1 - SIGBUS: 1 - SIGFPE: 1 - SIGILL: 1 - memtest: 2 - megabytes: 1 - passes: 1 - zmalloc_enable_thread_safeness: 1 - srand: 1 - dictSetHashFunctionSeed: 1 - ! '*configfile': 1 - configfile: 2 - sdscatrepr: 1 - loadServerConfig: 1 - loadAppendOnlyFile: 1 - /1000000: 2 - rdbLoad: 1 - aeSetBeforeSleepProc: 1 - aeMain: 1 - aeDeleteEventLoop: 1 - yajl_status_to_string: 1 - yajl_status: 4 - statStr: 6 - yajl_status_ok: 1 - yajl_status_client_canceled: 1 - yajl_status_insufficient_data: 1 - yajl_status_error: 1 - yajl_handle: 10 - yajl_alloc: 1 - yajl_callbacks: 1 - callbacks: 3 - yajl_parser_config: 1 - config: 4 - yajl_alloc_funcs: 3 - afs: 8 - allowComments: 4 - validateUTF8: 3 - hand: 28 - afsBuffer: 3 - realloc: 1 - yajl_set_default_alloc_funcs: 1 - YA_MALLOC: 1 - yajl_handle_t: 1 - alloc: 6 - checkUTF8: 1 - lexer: 4 - yajl_lex_alloc: 1 - bytesConsumed: 2 - decodeBuf: 2 - yajl_buf_alloc: 1 - yajl_bs_init: 1 - stateStack: 3 - yajl_bs_push: 1 - yajl_state_start: 1 - yajl_reset_parser: 1 - yajl_lex_realloc: 1 - yajl_free: 1 - yajl_bs_free: 1 - yajl_buf_free: 1 - yajl_lex_free: 1 - YA_FREE: 2 - yajl_parse: 2 - jsonText: 4 - jsonTextLen: 4 - yajl_do_parse: 1 - yajl_parse_complete: 1 - yajl_get_error: 1 - verbose: 2 - yajl_render_error_string: 1 - yajl_get_bytes_consumed: 1 - yajl_free_error: 1 - C++: - class: 19 - Bar: 2 - ! '{': 283 - protected: 4 - char: 32 - ! '*name': 2 - ;: 793 - public: 20 - void: 58 - hello: 2 - (: 842 - ): 843 - ! '}': 285 - foo: 2 - cudaArray*: 1 - cu_array: 4 - texture: 1 - <float,>: 1 - '2': 1 - cudaReadModeElementType: 1 - tex: 4 - //: 457 - cudaChannelFormatDesc: 1 - description: 2 - cudaCreateChannelDesc: 1 - <float>: 1 - cudaMallocArray: 1 - ! '&': 74 - width: 5 - height: 5 - cudaMemcpyToArray: 1 - image: 1 - width*height*sizeof: 1 - float: 2 - cudaMemcpyHostToDevice: 1 - tex.addressMode: 2 - cudaAddressModeClamp: 2 - tex.filterMode: 1 - cudaFilterModePoint: 1 - tex.normalized: 1 - 'false': 40 - cudaBindTextureToArray: 1 - dim3: 2 - blockDim: 2 - gridDim: 2 - +: 40 - blockDim.x: 2 - ! '-': 114 - /: 9 - blockDim.y: 2 - kernel: 2 - <<: 5 - <: 27 - d_data: 1 - cudaUnbindTexture: 1 - //end: 1 - __global__: 1 - float*: 1 - odata: 2 - int: 62 - unsigned: 16 - x: 19 - blockIdx.x*blockDim.x: 1 - threadIdx.x: 1 - y: 4 - blockIdx.y*blockDim.y: 1 - threadIdx.y: 1 - if: 132 - ! '&&': 13 - c: 33 - tex2D: 1 - y*width: 1 - /*: 9 - ! '*/': 9 - ! '#include': 71 - <QCoreApplication>: 1 - <QString>: 1 - <QVariantMap>: 2 - static: 56 - Env: 13 - ! '*env_instance': 1 - ! '*': 13 - 'NULL': 49 - ! '*Env': 1 - instance: 3 - env_instance: 3 - new: 2 - return: 107 - QObject: 2 - QCoreApplication: 1 - parse: 3 - const: 91 - ! '**envp': 1 - ! '**env': 1 - ! '**': 2 - QString: 18 - envvar: 2 - name: 3 - value: 3 - indexOfEquals: 5 - for: 9 - env: 3 - envp: 4 - ! '*env': 1 - (*: 3 - ! '*)': 3 - envvar.indexOf: 1 - continue: 2 - envvar.left: 1 - envvar.mid: 1 - m_map.insert: 1 - QVariantMap: 3 - asVariantMap: 2 - m_map: 2 - ! '#ifndef': 5 - ENV_H: 2 - ! '#define': 5 - <QObject>: 1 - Q_OBJECT: 1 - ! '*instance': 1 - private: 8 - ! '#endif': 12 - <iostream>: 1 - using: 1 - namespace: 10 - std: 18 - main: 2 - cout: 1 - endl: 1 - <map>: 1 - <openssl/ecdsa.h>: 1 - <openssl/obj_mac.h>: 1 - EC_KEY_regenerate_key: 1 - EC_KEY: 2 - ! '*eckey': 2 - BIGNUM: 9 - ! '*priv_key': 1 - ok: 3 - BN_CTX: 2 - ! '*ctx': 2 - EC_POINT: 4 - ! '*pub_key': 1 - eckey: 7 - EC_GROUP: 2 - ! '*group': 2 - EC_KEY_get0_group: 2 - ctx: 25 - BN_CTX_new: 2 - goto: 23 - err: 25 - pub_key: 6 - EC_POINT_new: 4 - group: 12 - EC_POINT_mul: 3 - priv_key: 2 - EC_KEY_set_private_key: 1 - EC_KEY_set_public_key: 2 - EC_POINT_free: 4 - BN_CTX_free: 2 - ECDSA_SIG_recover_key_GFp: 3 - ECDSA_SIG: 3 - ! '*ecsig': 1 - ! '*msg': 2 - msglen: 2 - recid: 3 - check: 2 - ret: 23 - ! '*x': 1 - ! '*e': 1 - ! '*order': 1 - ! '*sor': 1 - ! '*eor': 1 - ! '*field': 1 - ! '*R': 1 - ! '*O': 1 - ! '*Q': 1 - ! '*rr': 1 - ! '*zero': 1 - n: 7 - i: 47 - BN_CTX_start: 1 - order: 8 - BN_CTX_get: 8 - EC_GROUP_get_order: 1 - BN_copy: 1 - BN_mul_word: 1 - BN_add: 1 - ecsig: 3 - r: 9 - field: 3 - EC_GROUP_get_curve_GFp: 1 - BN_cmp: 1 - R: 6 - EC_POINT_set_compressed_coordinates_GFp: 1 - ! '%': 1 - O: 5 - EC_POINT_is_at_infinity: 1 - Q: 5 - EC_GROUP_get_degree: 1 - e: 13 - BN_bin2bn: 3 - msg: 1 - ! '*msglen': 1 - BN_rshift: 1 - zero: 3 - BN_zero: 1 - BN_mod_sub: 1 - rr: 4 - BN_mod_inverse: 1 - sor: 3 - BN_mod_mul: 2 - s: 5 - eor: 3 - BN_CTX_end: 1 - CKey: 26 - SetCompressedPubKey: 4 - EC_KEY_set_conv_form: 1 - pkey: 14 - POINT_CONVERSION_COMPRESSED: 1 - fCompressedPubKey: 5 - 'true': 31 - Reset: 5 - EC_KEY_new_by_curve_name: 2 - NID_secp256k1: 2 - throw: 4 - key_error: 6 - fSet: 7 - b: 12 - EC_KEY_dup: 1 - b.pkey: 2 - b.fSet: 2 - operator: 5 - EC_KEY_copy: 1 - hash: 20 - sizeof: 6 - vchSig: 18 - nSize: 2 - vchSig.clear: 2 - vchSig.resize: 2 - bool: 89 - SignCompact: 2 - uint256: 10 - vector: 14 - <unsigned>: 19 - fOk: 3 - ! '*sig': 2 - ECDSA_do_sign: 1 - char*: 7 - sig: 11 - nBitsR: 3 - BN_num_bits: 2 - nBitsS: 3 - nRecId: 4 - <4;>: 1 - keyRec: 5 - '1': 2 - GetPubKey: 5 - this: 2 - break: 30 - BN_bn2bin: 2 - /8: 2 - ECDSA_SIG_free: 2 - SetCompactSignature: 2 - vchSig.size: 2 - nV: 6 - <27>: 1 - ECDSA_SIG_new: 1 - EC_KEY_free: 1 - Verify: 2 - ECDSA_verify: 1 - VerifyCompact: 2 - key: 1 - key.SetCompactSignature: 1 - key.GetPubKey: 1 - IsValid: 4 - fCompr: 3 - CSecret: 4 - secret: 2 - GetSecret: 2 - key2: 1 - key2.SetSecret: 1 - key2.GetPubKey: 1 - BITCOIN_KEY_H: 2 - <stdexcept>: 1 - <vector>: 1 - <openssl/ec.h>: 1 - runtime_error: 2 - explicit: 3 - string: 1 - str: 2 - CKeyID: 5 - uint160: 8 - in: 4 - CScriptID: 3 - CPubKey: 11 - vchPubKey: 6 - friend: 4 - vchPubKeyIn: 2 - a: 3 - a.vchPubKey: 3 - b.vchPubKey: 3 - IMPLEMENT_SERIALIZE: 1 - READWRITE: 1 - GetID: 1 - Hash160: 1 - GetHash: 1 - Hash: 1 - vchPubKey.begin: 1 - vchPubKey.end: 1 - vchPubKey.size: 3 - ! '||': 8 - IsCompressed: 2 - Raw: 1 - typedef: 5 - secure_allocator: 2 - CPrivKey: 3 - EC_KEY*: 1 - IsNull: 1 - MakeNewKey: 1 - fCompressed: 3 - SetPrivKey: 1 - vchPrivKey: 1 - SetSecret: 1 - vchSecret: 1 - GetPrivKey: 1 - SetPubKey: 1 - Sign: 1 - ! '#ifdef': 3 - Q_OS_LINUX: 2 - <QApplication>: 1 - ! '#if': 4 - QT_VERSION: 1 - QT_VERSION_CHECK: 1 - ! '#error': 2 - Something: 1 - is: 1 - wrong: 1 - with: 1 - the: 5 - setup.: 1 - Please: 1 - report: 2 - to: 3 - mailing: 1 - list: 1 - argc: 2 - char**: 2 - argv: 2 - google_breakpad: 1 - ExceptionHandler: 1 - eh: 1 - Utils: 4 - exceptionHandler: 2 - qInstallMsgHandler: 1 - messageHandler: 2 - QApplication: 1 - app: 1 - STATIC_BUILD: 1 - Q_INIT_RESOURCE: 2 - WebKit: 1 - InspectorBackendStub: 1 - app.setWindowIcon: 1 - QIcon: 1 - app.setApplicationName: 1 - app.setOrganizationName: 1 - app.setOrganizationDomain: 1 - app.setApplicationVersion: 1 - PHANTOMJS_VERSION_STRING: 1 - Phantom: 1 - phantom: 1 - phantom.execute: 1 - app.exec: 1 - phantom.returnValue: 1 - v8: 5 - internal: 5 - Scanner: 16 - UnicodeCache*: 4 - unicode_cache: 3 - unicode_cache_: 10 - octal_pos_: 5 - Location: 14 - invalid: 4 - harmony_scoping_: 4 - harmony_modules_: 4 - Initialize: 4 - Utf16CharacterStream*: 3 - source: 6 - source_: 7 - Init: 3 - has_line_terminator_before_next_: 9 - SkipWhiteSpace: 4 - Scan: 5 - uc32: 19 - ScanHexNumber: 2 - expected_length: 4 - ASSERT: 17 - digits: 3 - c0_: 64 - d: 4 - HexValue: 2 - j: 4 - PushBack: 8 - Advance: 40 - STATIC_ASSERT: 5 - Token: 212 - NUM_TOKENS: 1 - byte: 1 - one_char_tokens: 2 - ILLEGAL: 120 - LPAREN: 2 - RPAREN: 2 - COMMA: 2 - COLON: 2 - SEMICOLON: 2 - CONDITIONAL: 2 - LBRACK: 2 - RBRACK: 2 - LBRACE: 2 - RBRACE: 2 - BIT_NOT: 2 - Value: 23 - Next: 2 - current_: 2 - next_: 2 - has_multiline_comment_before_next_: 5 - static_cast: 7 - f: 4 - token: 61 - <Token::Value>: 1 - pos: 12 - source_pos: 10 - next_.token: 3 - next_.location.beg_pos: 3 - next_.location.end_pos: 4 - current_.token: 4 - inline: 12 - IsByteOrderMark: 2 - xFEFF: 1 - xFFFE: 1 - start_position: 2 - while: 6 - IsWhiteSpace: 2 - IsLineTerminator: 6 - SkipSingleLineComment: 6 - WHITESPACE: 6 - SkipMultiLineComment: 3 - ch: 5 - ScanHtmlComment: 3 - LT: 2 - next_.literal_chars: 13 - do: 1 - switch: 2 - case: 32 - ScanString: 3 - Select: 32 - LTE: 1 - else: 32 - ASSIGN_SHL: 1 - SHL: 1 - GTE: 1 - ASSIGN_SAR: 1 - ASSIGN_SHR: 1 - SHR: 1 - SAR: 1 - GT: 1 - EQ_STRICT: 1 - EQ: 1 - ASSIGN: 1 - NE_STRICT: 1 - NE: 1 - NOT: 1 - INC: 1 - ASSIGN_ADD: 1 - ADD: 1 - DEC: 1 - ASSIGN_SUB: 1 - SUB: 1 - ASSIGN_MUL: 1 - MUL: 1 - ASSIGN_MOD: 1 - MOD: 1 - ASSIGN_DIV: 1 - DIV: 1 - AND: 1 - ASSIGN_BIT_AND: 1 - BIT_AND: 1 - OR: 1 - ASSIGN_BIT_OR: 1 - BIT_OR: 1 - ASSIGN_BIT_XOR: 1 - BIT_XOR: 1 - IsDecimalDigit: 2 - ScanNumber: 3 - PERIOD: 1 - default: 1 - IsIdentifierStart: 2 - ScanIdentifierOrKeyword: 2 - EOS: 1 - SeekForward: 4 - current_pos: 4 - ASSERT_EQ: 1 - ScanEscape: 2 - IsCarriageReturn: 2 - IsLineFeed: 2 - t: 6 - u: 6 - v: 3 - xx: 1 - xxx: 1 - error: 1 - immediately: 1 - because: 1 - octal: 1 - escape: 1 - can: 1 - quote: 2 - LiteralScope: 4 - literal: 2 - .: 2 - X: 2 - E: 3 - l: 1 - p: 1 - w: 1 - keyword: 1 - valid: 1 - and: 2 - character: 1 - has: 1 - in_character_class: 2 - AddLiteralCharAdvance: 3 - literal.Complete: 2 - ScanLiteralUnicodeEscape: 3 - V8_SCANNER_H_: 2 - enum: 3 - ParsingFlags: 1 - kNoParsingFlags: 1 - kLanguageModeMask: 4 - kAllowLazy: 1 - kAllowNativesSyntax: 1 - kAllowModules: 1 - CLASSIC_MODE: 2 - STRICT_MODE: 2 - EXTENDED_MODE: 2 - ! '|': 2 - Utf16CharacterStream: 3 - pos_: 6 - virtual: 4 - buffer_cursor_: 5 - buffer_end_: 3 - ReadBlock: 2 - <uc32>: 1 - kEndOfInput: 2 - code_unit_count: 7 - buffered_chars: 2 - SlowSeekForward: 2 - int32_t: 1 - code_unit: 6 - uc16*: 3 - UnicodeCache: 3 - unibrow: 11 - Utf8InputBuffer: 2 - <1024>: 2 - Utf8Decoder: 2 - StaticResource: 2 - <Utf8Decoder>: 2 - utf8_decoder: 1 - utf8_decoder_: 2 - uchar: 4 - kIsIdentifierStart.get: 1 - IsIdentifierPart: 1 - kIsIdentifierPart.get: 1 - kIsLineTerminator.get: 1 - kIsWhiteSpace.get: 1 - Predicate: 4 - <IdentifierStart,>: 1 - '128': 4 - kIsIdentifierStart: 1 - <IdentifierPart,>: 1 - kIsIdentifierPart: 1 - <unibrow::LineTerminator,>: 1 - kIsLineTerminator: 1 - <unibrow::WhiteSpace,>: 1 - kIsWhiteSpace: 1 - DISALLOW_COPY_AND_ASSIGN: 2 - LiteralBuffer: 6 - is_ascii_: 10 - position_: 17 - backing_store_: 7 - backing_store_.length: 4 - backing_store_.Dispose: 3 - INLINE: 2 - AddChar: 2 - uint32_t: 8 - ExpandBuffer: 2 - kMaxAsciiCharCodeU: 1 - <byte>: 6 - kASCIISize: 1 - ConvertToUtf16: 2 - ! '*reinterpret_cast': 1 - <uc16*>: 2 - kUC16Size: 2 - is_ascii: 3 - Vector: 13 - <const>: 10 - uc16: 5 - utf16_literal: 3 - reinterpret_cast: 6 - backing_store_.start: 5 - ascii_literal: 3 - length: 8 - kInitialCapacity: 2 - kGrowthFactory: 2 - kMinConversionSlack: 1 - kMaxGrowth: 2 - MB: 1 - NewCapacity: 3 - min_capacity: 2 - capacity: 3 - Max: 1 - new_capacity: 2 - Min: 1 - new_store: 6 - New: 2 - memcpy: 1 - new_store.start: 3 - new_content_size: 4 - src: 2 - <char*>: 1 - dst: 2 - Scanner*: 2 - self: 2 - scanner_: 5 - complete_: 4 - StartLiteral: 2 - DropLiteral: 2 - Complete: 1 - TerminateLiteral: 2 - struct: 2 - beg_pos: 5 - end_pos: 4 - kNoOctalLocation: 1 - scanner_contants: 1 - current_token: 1 - location: 4 - current_.location: 2 - literal_ascii_string: 1 - ASSERT_NOT_NULL: 9 - current_.literal_chars: 11 - literal_utf16_string: 1 - is_literal_ascii: 1 - literal_length: 1 - literal_contains_escapes: 1 - source_length: 3 - location.end_pos: 1 - location.beg_pos: 1 - STRING: 1 - peek: 1 - peek_location: 1 - next_.location: 1 - next_literal_ascii_string: 1 - next_literal_utf16_string: 1 - is_next_literal_ascii: 1 - next_literal_length: 1 - kCharacterLookaheadBufferSize: 3 - ScanOctalEscape: 1 - octal_position: 1 - clear_octal_position: 1 - HarmonyScoping: 1 - SetHarmonyScoping: 1 - scoping: 2 - HarmonyModules: 1 - SetHarmonyModules: 1 - modules: 2 - HasAnyLineTerminatorBeforeNext: 1 - ScanRegExpPattern: 1 - seen_equal: 1 - ScanRegExpFlags: 1 - IsIdentifier: 1 - CharacterStream*: 1 - buffer: 1 - TokenDesc: 3 - LiteralBuffer*: 2 - literal_chars: 1 - free_buffer: 3 - literal_buffer1_: 3 - literal_buffer2_: 2 - AddLiteralChar: 2 - tok: 2 - next: 2 - then: 2 - else_: 2 - ScanDecimalDigits: 1 - seen_period: 1 - ScanIdentifierSuffix: 1 - LiteralScope*: 1 - ScanIdentifierUnicodeEscape: 1 - UTILS_H: 2 - <QtGlobal>: 1 - <QWebFrame>: 1 - <QFile>: 1 - QTemporaryFile: 1 - showUsage: 1 - QtMsgType: 1 - type: 1 - dump_path: 1 - minidump_id: 1 - void*: 1 - context: 8 - succeeded: 1 - QVariant: 1 - coffee2js: 1 - script: 1 - injectJsInFrame: 2 - jsFilePath: 5 - libraryPath: 5 - QWebFrame: 4 - ! '*targetFrame': 4 - startingScript: 2 - Encoding: 3 - jsFileEnc: 2 - readResourceFileUtf8: 1 - resourceFilePath: 1 - loadJSForDebug: 2 - autorun: 2 - cleanupFromDebug: 1 - findScript: 1 - jsFromScriptFile: 1 - scriptPath: 1 - enc: 1 - This: 1 - shouldn: 1 - be: 1 - instantiated: 1 - QTemporaryFile*: 2 - m_tempHarness: 1 - We: 1 - want: 1 - make: 1 - sure: 1 - clean: 1 - up: 1 - after: 1 - ourselves: 1 - m_tempWrapper: 1 - V8_DECLARE_ONCE: 1 - init_once: 2 - V8: 21 - is_running_: 6 - has_been_set_up_: 4 - has_been_disposed_: 6 - has_fatal_error_: 5 - use_crankshaft_: 6 - List: 3 - <CallCompletedCallback>: 3 - call_completed_callbacks_: 16 - LazyMutex: 1 - entropy_mutex: 1 - LAZY_MUTEX_INITIALIZER: 1 - EntropySource: 3 - entropy_source: 4 - Deserializer*: 2 - des: 3 - FlagList: 1 - EnforceFlagImplications: 1 - InitializeOncePerProcess: 4 - Isolate: 9 - CurrentPerIsolateThreadData: 4 - EnterDefaultIsolate: 1 - thread_id: 1 - .Equals: 1 - ThreadId: 1 - Current: 5 - isolate: 15 - IsDead: 2 - Isolate*: 6 - IsInitialized: 1 - SetFatalError: 2 - TearDown: 5 - IsDefaultIsolate: 1 - ElementsAccessor: 2 - LOperand: 2 - TearDownCaches: 1 - RegisteredExtension: 1 - UnregisterAll: 1 - delete: 2 - OS: 3 - seed_random: 2 - uint32_t*: 2 - state: 15 - FLAG_random_seed: 2 - val: 3 - ScopedLock: 1 - lock: 1 - entropy_mutex.Pointer: 1 - random: 1 - random_base: 3 - xFFFF: 2 - FFFF: 1 - SetEntropySource: 2 - SetReturnAddressLocationResolver: 3 - ReturnAddressLocationResolver: 2 - resolver: 3 - StackFrame: 1 - Random: 3 - Context*: 4 - IsGlobalContext: 1 - ByteArray*: 1 - seed: 2 - random_seed: 1 - <uint32_t*>: 1 - GetDataStartAddress: 1 - RandomPrivate: 2 - private_random_seed: 1 - IdleNotification: 3 - hint: 3 - FLAG_use_idle_notification: 1 - HEAP: 1 - AddCallCompletedCallback: 2 - CallCompletedCallback: 4 - callback: 7 - at: 3 - Add: 1 - RemoveCallCompletedCallback: 2 - Remove: 1 - FireCallCompletedCallback: 2 - HandleScopeImplementer*: 1 - handle_scope_implementer: 5 - CallDepthIsZero: 1 - IncrementCallDepth: 1 - DecrementCallDepth: 1 - union: 1 - double: 2 - double_value: 1 - uint64_t: 2 - uint64_t_value: 1 - double_int_union: 2 - Object*: 4 - FillHeapNumberWithRandom: 2 - heap_number: 4 - random_bits: 2 - binary_million: 3 - '.0': 1 - r.double_value: 3 - r.uint64_t_value: 1 - HeapNumber: 1 - cast: 1 - set_value: 1 - InitializeOncePerProcessImpl: 3 - SetUp: 4 - FLAG_crankshaft: 1 - Serializer: 1 - enabled: 1 - CPU: 2 - SupportsCrankshaft: 1 - PostSetUp: 1 - RuntimeProfiler: 1 - GlobalSetUp: 1 - FLAG_stress_compaction: 1 - FLAG_force_marking_deque_overflows: 1 - FLAG_gc_global: 1 - FLAG_max_new_space_size: 1 - kPageSizeBits: 1 - SetUpCaches: 1 - SetUpJSCallerSavedCodeData: 1 - SamplerRegistry: 1 - ExternalReference: 1 - CallOnce: 1 - V8_V8_H_: 2 - defined: 5 - GOOGLE3: 1 - DEBUG: 3 - NDEBUG: 4 - ! '#undef': 1 - both: 1 - are: 1 - set: 1 - Deserializer: 1 - AllStatic: 1 - IsRunning: 1 - UseCrankshaft: 1 - FatalProcessOutOfMemory: 1 - take_snapshot: 1 - NilValue: 1 - kNullValue: 1 - kUndefinedValue: 1 - EqualityKind: 1 - kStrictEquality: 1 - kNonStrictEquality: 1 - Ceylon: - doc: 2 - by: 1 - shared: 5 - void: 1 - test: 1 - (: 4 - ): 4 - ! '{': 3 - print: 1 - ;: 4 - ! '}': 3 - class: 1 - Test: 2 - name: 4 - satisfies: 1 - Comparable: 1 - <Test>: 1 - String: 2 - actual: 2 - string: 1 - Comparison: 1 - compare: 1 - other: 1 - return: 1 - <=>: 1 - other.name: 1 - CoffeeScript: - ! '#': 208 - CoffeeScript: 1 - require: 20 - CoffeeScript.require: 1 - CoffeeScript.eval: 1 - (: 153 - code: 18 - options: 16 - ! '{': 28 - ! '}': 31 - ): 151 - ! '-': 64 - options.bare: 2 - 'on': 3 - eval: 2 - CoffeeScript.compile: 2 - CoffeeScript.run: 3 - Function: 1 - return: 22 - unless: 16 - window: 1 - CoffeeScript.load: 2 - url: 2 - callback: 35 - xhr: 2 - new: 11 - window.ActiveXObject: 1 - or: 10 - XMLHttpRequest: 1 - xhr.open: 1 - 'true': 8 - xhr.overrideMimeType: 1 - if: 91 - of: 4 - xhr.onreadystatechange: 1 - xhr.readyState: 1 - is: 31 - xhr.status: 1 - in: 27 - xhr.responseText: 1 - else: 48 - throw: 3 - Error: 1 - xhr.send: 1 - 'null': 15 - runScripts: 3 - scripts: 2 - document.getElementsByTagName: 1 - coffees: 2 - s: 8 - for: 9 - when: 13 - s.type: 1 - index: 2 - length: 4 - coffees.length: 1 - do: 2 - execute: 3 - script: 7 - +: 24 - .type: 1 - script.src: 2 - script.innerHTML: 1 - window.addEventListener: 1 - addEventListener: 1 - 'no': 3 - attachEvent: 1 - class: 8 - Animal: 3 - constructor: 5 - ! '@name': 2 - move: 3 - meters: 2 - alert: 4 - Snake: 2 - extends: 4 - super: 4 - Horse: 2 - sam: 1 - tom: 1 - sam.move: 1 - tom.move: 1 - fs: 2 - path: 3 - Lexer: 3 - RESERVED: 3 - parser: 1 - vm: 1 - require.extensions: 3 - module: 1 - filename: 6 - content: 4 - compile: 5 - fs.readFileSync: 1 - module._compile: 1 - require.registerExtension: 2 - exports.VERSION: 1 - exports.RESERVED: 1 - exports.helpers: 2 - exports.compile: 1 - merge: 1 - try: 3 - js: 5 - parser.parse: 3 - lexer.tokenize: 3 - .compile: 1 - options.header: 1 - catch: 2 - err: 20 - err.message: 2 - options.filename: 5 - header: 1 - exports.tokens: 1 - exports.nodes: 1 - source: 5 - typeof: 2 - exports.run: 1 - mainModule: 1 - require.main: 1 - mainModule.filename: 4 - process.argv: 1 - then: 22 - fs.realpathSync: 2 - mainModule.moduleCache: 1 - and: 20 - mainModule.paths: 1 - ._nodeModulePaths: 1 - path.dirname: 2 - path.extname: 1 - isnt: 6 - mainModule._compile: 2 - exports.eval: 1 - code.trim: 1 - Script: 2 - vm.Script: 1 - options.sandbox: 4 - instanceof: 2 - Script.createContext: 2 - .constructor: 1 - sandbox: 8 - k: 4 - v: 4 - own: 2 - sandbox.global: 1 - sandbox.root: 1 - sandbox.GLOBAL: 1 - global: 3 - sandbox.__filename: 3 - ! '||': 3 - sandbox.__dirname: 1 - sandbox.module: 2 - sandbox.require: 2 - Module: 2 - _module: 3 - options.modulename: 1 - _require: 2 - Module._load: 1 - _module.filename: 1 - r: 4 - Object.getOwnPropertyNames: 1 - _require.paths: 1 - _module.paths: 1 - Module._nodeModulePaths: 1 - process.cwd: 1 - _require.resolve: 1 - request: 2 - Module._resolveFilename: 1 - o: 4 - o.bare: 1 - vm.runInThisContext: 1 - vm.runInContext: 1 - lexer: 1 - parser.lexer: 1 - lex: 1 - tag: 29 - ! '@yytext': 1 - ! '@yylineno': 1 - ! '@tokens': 3 - ! '@pos': 1 - ./nodes: 1 - console.log: 1 - number: 13 - opposite: 2 - square: 4 - x: 6 - ! '*': 16 - list: 2 - math: 1 - root: 1 - Math.sqrt: 1 - cube: 1 - race: 1 - winner: 2 - runners...: 1 - print: 1 - runners: 1 - elvis: 1 - cubes: 1 - math.cube: 1 - num: 2 - Rewriter: 1 - INVERSES: 2 - count: 5 - starts: 1 - compact: 1 - last: 3 - exports.Lexer: 1 - tokenize: 1 - opts: 1 - WHITESPACE.test: 1 - code.replace: 1 - /: 27 - r/g: 1 - TYPE: 1 - t: 1 - being: 1 - used: 1 - as: 1 - identifierToken: 1 - match: 23 - IDENTIFIER.exec: 1 - ! '@chunk': 8 - input: 1 - id: 16 - colon: 3 - ! '@tag': 2 - ! '@token': 10 - id.length: 1 - forcedIdentifier: 4 - prev: 17 - not: 4 - prev.spaced: 3 - JS_KEYWORDS: 1 - COFFEE_KEYWORDS: 1 - id.toUpperCase: 1 - LINE_BREAK: 2 - ! '@seenFor': 4 - 'yes': 4 - UNARY: 4 - RELATION: 3 - ! '@value': 1 - ! '@tokens.pop': 1 - JS_FORBIDDEN: 1 - String: 1 - id.reserved: 1 - ! '@error': 8 - COFFEE_ALIAS_MAP: 1 - COFFEE_ALIASES: 1 - switch: 5 - input.length: 1 - numberToken: 1 - NUMBER.exec: 1 - BOX: 1 - /.test: 4 - /E/.test: 1 - x/.test: 1 - d*: 1 - d: 2 - lexedLength: 2 - number.length: 1 - octalLiteral: 2 - /.exec: 2 - parseInt: 3 - .toString: 2 - binaryLiteral: 2 - b: 1 - stringToken: 1 - ! '@chunk.charAt': 3 - SIMPLESTR.exec: 1 - string: 6 - .replace: 1 - MULTILINER: 2 - ! '@balancedString': 1 - <: 4 - string.indexOf: 1 - ! '@interpolateString': 1 - ! '...': 2 - ! '@escapeLines': 1 - octalEsc: 1 - .: 11 - ! '|': 5 - ! '@line': 3 - string.length: 1 - heredocToken: 1 - HEREDOC.exec: 1 - heredoc: 4 - quote: 5 - heredoc.charAt: 1 - doc: 10 - ! '@sanitizeHeredoc': 2 - indent: 7 - <=>: 1 - indexOf: 1 - interpolateString: 1 - token: 1 - STRING: 2 - makeString: 1 - line: 5 - n: 10 - Matches: 1 - consumes: 1 - comments: 1 - commentToken: 1 - ! '@chunk.match': 1 - COMMENT: 1 - comment: 2 - here: 3 - herecomment: 3 - Array: 1 - ! '@indent': 1 - .join: 1 - comment.length: 1 - jsToken: 1 - JSTOKEN.exec: 1 - script.length: 1 - regexToken: 1 - HEREGEX.exec: 1 - ! '@heregexToken': 1 - NOT_REGEX: 2 - NOT_SPACED_REGEX: 2 - REGEX.exec: 1 - regex: 4 - flags: 2 - ..1: 1 - match.length: 1 - heregexToken: 1 - heregex: 1 - body: 1 - body.indexOf: 1 - re: 1 - body.replace: 1 - HEREGEX_OMIT: 2 - regular: 1 - expressions: 1 - cannot: 1 - begin: 1 - with: 2 - REGEX: 2 - IDENTIFIER: 1 - RegExp: 1 - CALL_START: 2 - TOKENS: 1 - spaced: 1 - reserved: 1 - word: 1 - value.length: 2 - value: 14 - MATH: 3 - COMPARE: 3 - COMPOUND_ASSIGN: 2 - SHIFT: 3 - LOGIC: 3 - .spaced: 1 - CALLABLE: 2 - INDEXABLE: 2 - ! '@ends.push': 1 - ! '@pair': 1 - sanitizeHeredoc: 1 - HEREDOC_ILLEGAL.test: 1 - doc.indexOf: 1 - while: 2 - HEREDOC_INDENT.exec: 1 - attempt: 2 - attempt.length: 1 - indent.length: 1 - doc.replace: 2 - ///: 7 - ///g: 1 - n/: 1 - PARAM_END: 1 - PARAM_START: 1 - missing: 1 - stack.pop: 1 - starting: 1 - Hello: 1 - name.capitalize: 1 - OUTDENT: 1 - THROW: 1 - EXTENDS: 1 - ! '&': 1 - 'false': 4 - this: 1 - delete: 1 - break: 1 - continue: 1 - debugger: 1 - finally: 2 - undefined: 1 - until: 1 - loop: 1 - by: 1 - ! '&&': 1 - case: 1 - default: 1 - function: 1 - var: 1 - void: 1 - const: 1 - let: 2 - enum: 1 - export: 1 - import: 1 - native: 1 - __hasProp: 1 - __extends: 1 - __slice: 1 - __bind: 1 - __indexOf: 1 - implements: 1 - interface: 1 - package: 1 - private: 1 - protected: 1 - public: 1 - static: 1 - yield: 1 - arguments: 1 - JSTOKEN: 1 - S: 4 - imgy: 2 - w: 2 - HEREGEX: 1 - ! '#.*': 1 - /g: 2 - n/g: 1 - HEREDOC_INDENT: 1 - HEREDOC_ILLEGAL: 1 - //: 1 - LINE_CONTINUER: 1 - s*: 1 - TRAILING_SPACES: 1 - BOOL: 1 - NOT_REGEX.concat: 1 - CALLABLE.concat: 1 - async: 1 - nack: 1 - bufferLines: 3 - pause: 2 - sourceScriptEnv: 3 - join: 8 - exists: 5 - basename: 2 - resolve: 2 - module.exports: 1 - RackApplication: 1 - ! '@configuration': 1 - ! '@root': 8 - ! '@firstHost': 1 - ! '@logger': 1 - ! '@configuration.getLogger': 1 - ! '@readyCallbacks': 3 - ! '@quitCallbacks': 3 - ! '@statCallbacks': 3 - ready: 1 - ! '@state': 11 - ! '@readyCallbacks.push': 1 - ! '@initialize': 2 - quit: 1 - ! '@quitCallbacks.push': 1 - ! '@terminate': 2 - queryRestartFile: 1 - fs.stat: 1 - stats: 1 - ! '@mtime': 5 - lastMtime: 2 - stats.mtime.getTime: 1 - setPoolRunOnceFlag: 1 - ! '@statCallbacks.length': 1 - alwaysRestart: 2 - ! '@pool.runOnce': 1 - statCallback: 2 - ! '@statCallbacks.push': 1 - loadScriptEnvironment: 1 - env: 18 - async.reduce: 1 - scriptExists: 2 - loadRvmEnvironment: 1 - rvmrcExists: 2 - rvm: 1 - ! '@configuration.rvmPath': 1 - rvmExists: 2 - libexecPath: 1 - before: 2 - /dev/null: 1 - .trim: 1 - loadEnvironment: 1 - ! '@queryRestartFile': 2 - ! '@loadScriptEnvironment': 1 - ! '@configuration.env': 1 - ! '@loadRvmEnvironment': 1 - initialize: 1 - ! '@quit': 3 - ! '@loadEnvironment': 1 - ! '@logger.error': 3 - ! '@pool': 2 - nack.createPool: 1 - size: 1 - .POW_WORKERS: 1 - ! '@configuration.workers': 1 - idle: 1 - .POW_TIMEOUT: 1 - ! '@configuration.timeout': 1 - ! '@pool.stdout': 1 - ! '@logger.info': 1 - ! '@pool.stderr': 1 - ! '@logger.warning': 1 - ! '@pool.on': 2 - process: 2 - ! '@logger.debug': 2 - readyCallback: 2 - terminate: 1 - ! '@ready': 3 - ! '@pool.quit': 1 - quitCallback: 2 - handle: 1 - req: 4 - res: 3 - next: 3 - resume: 2 - ! '@setPoolRunOnceFlag': 1 - ! '@restartIfNecessary': 1 - req.proxyMetaVariables: 1 - SERVER_PORT: 1 - ! '@configuration.dstPort.toString': 1 - ! '@pool.proxy': 1 - restart: 1 - restartIfNecessary: 1 - mtimeChanged: 2 - ! '@restart': 1 - writeRvmBoilerplate: 1 - powrc: 2 - boilerplate: 2 - ! '@constructor.rvmBoilerplate': 1 - fs.readFile: 1 - contents: 3 - n#: 1 - rvm_path/scripts/rvm: 2 - .rvmrc: 2 - dnsserver: 1 - exports.Server: 1 - Server: 2 - dnsserver.Server: 1 - NS_T_A: 3 - NS_T_NS: 2 - NS_T_CNAME: 1 - NS_T_SOA: 2 - NS_C_IN: 5 - NS_RCODE_NXDOMAIN: 2 - domain: 6 - ! '@rootAddress': 2 - ! '@domain': 3 - domain.toLowerCase: 1 - ! '@soa': 2 - createSOA: 2 - ! '@on': 1 - ! '@handleRequest': 1 - handleRequest: 1 - question: 5 - req.question: 1 - subdomain: 7 - ! '@extractSubdomain': 1 - question.name: 3 - isARequest: 2 - res.addRR: 2 - subdomain.getAddress: 1 - .isEmpty: 1 - isNSRequest: 2 - res.header.rcode: 1 - res.send: 1 - extractSubdomain: 1 - name: 5 - Subdomain.extract: 1 - question.type: 2 - question.class: 2 - mname: 2 - rname: 2 - serial: 2 - Date: 1 - .getTime: 1 - refresh: 2 - retry: 2 - expire: 2 - minimum: 2 - dnsserver.createSOA: 1 - exports.createServer: 1 - address: 4 - exports.Subdomain: 1 - Subdomain: 1 - ! '@extract': 1 - name.toLowerCase: 1 - offset: 4 - name.length: 1 - domain.length: 1 - name.slice: 2 - ! '@for': 2 - Coq: - Inductive: 38 - day: 9 - Type: 88 - ! '|': 393 - monday: 5 - tuesday: 3 - wednesday: 3 - thursday: 3 - friday: 3 - saturday: 3 - sunday: 2 - day.: 1 - Definition: 58 - next_weekday: 3 - (: 1228 - d: 7 - ): 1240 - match: 71 - with: 214 - end.: 52 - Example: 40 - test_next_weekday: 1 - tuesday.: 1 - Proof.: 203 - simpl.: 72 - reflexivity.: 178 - Qed.: 197 - bool: 33 - 'true': 52 - 'false': 42 - bool.: 1 - negb: 9 - b: 79 - andb: 6 - b1: 28 - b2: 23 - orb: 8 - test_orb1: 1 - true.: 17 - test_orb2: 1 - false.: 11 - test_orb3: 1 - test_orb4: 1 - nandb: 5 - end: 14 - test_nandb1: 1 - test_nandb2: 1 - test_nandb3: 1 - test_nandb4: 1 - andb3: 5 - b3: 2 - test_andb31: 1 - test_andb32: 1 - test_andb33: 1 - test_andb34: 1 - Module: 9 - Playground1.: 5 - nat: 91 - O: 97 - S: 181 - ! '-': 445 - nat.: 3 - pred: 3 - n: 338 - minustwo: 1 - Fixpoint: 36 - evenb: 5 - oddb: 5 - .: 469 - test_oddb1: 1 - test_oddb2: 1 - plus: 10 - m: 189 - mult: 3 - minus: 3 - _: 68 - exp: 2 - base: 3 - power: 2 - p: 78 - factorial: 2 - test_factorial1: 1 - Notation: 43 - x: 254 - y: 119 - at: 19 - level: 13 - left: 8 - associativity: 10 - nat_scope.: 3 - beq_nat: 19 - forall: 224 - +: 228 - n.: 38 - Theorem: 111 - plus_O_n: 1 - rewrite: 222 - H.: 76 - <->: 32 - H: 77 - reflexivity: 14 - Qed: 23 - mult_0_plus: 1 - Proof: 12 - intros: 227 - plus_O_n.: 1 - mult_1_plus: 1 - ! '*': 55 - m.: 19 - plus_1_1.: 1 - mult_1: 1 - induction: 74 - as: 90 - plus_1_neq_0: 1 - destruct: 85 - Case: 48 - IHn: 13 - plus_comm: 3 - plus_distr.: 1 - beq_nat_refl: 3 - plus_rearrange: 1 - q: 15 - q.: 2 - assert: 55 - plus_comm.: 3 - plus_swap: 2 - p.: 9 - plus_assoc.: 4 - H2: 14 - H2.: 18 - plus_swap.: 2 - IHm: 2 - mult_comm: 2 - '0': 5 - simpl: 66 - mult_0_r.: 4 - mult_distr: 1 - mult_1_distr.: 1 - mult_1.: 1 - bad: 1 - zero_nbeq_S: 1 - andb_false_r: 1 - plus_ble_compat_1: 1 - ble_nat: 5 - IHp.: 2 - S_nbeq_0: 1 - mult_1_1: 1 - plus_0_r.: 1 - all3_spec: 1 - c: 88 - c.: 2 - b.: 9 - Lemma: 56 - mult_plus_1: 1 - IHm.: 1 - mult_mult: 1 - IHn.: 3 - mult_plus_1.: 1 - mult_plus_distr_r: 1 - mult_mult.: 3 - H1: 18 - plus_assoc: 1 - H1.: 29 - H3: 4 - H3.: 4 - mult_assoc: 1 - mult_plus_distr_r.: 1 - bin: 9 - BO: 4 - D: 9 - M: 4 - bin.: 1 - incbin: 2 - bin2un: 3 - bin_comm: 1 - End: 13 - (*: 102 - ! '*)': 102 - Require: 17 - Import: 11 - List: 2 - Multiset: 2 - PermutSetoid: 1 - Relations: 2 - Sorting.: 1 - Section: 4 - defs.: 2 - Variable: 7 - A: 102 - Type.: 3 - leA: 25 - relation: 19 - A.: 7 - eqA: 28 - Let: 9 - gtA: 1 - y.: 15 - Hypothesis: 7 - leA_dec: 4 - ! '{': 40 - ! '}': 36 - eqA_dec: 26 - leA_refl: 1 - leA_trans: 2 - z: 14 - z.: 6 - leA_antisym: 1 - Hint: 8 - Resolve: 5 - leA_refl.: 1 - Immediate: 1 - leA_antisym.: 1 - emptyBag: 4 - EmptyBag: 2 - singletonBag: 10 - SingletonBag: 2 - eqA_dec.: 2 - Tree: 24 - Tree_Leaf: 9 - Tree_Node: 11 - Tree.: 1 - leA_Tree: 16 - a: 210 - t: 93 - 'True': 1 - T1: 25 - T2: 20 - leA_Tree_Leaf: 5 - Tree_Leaf.: 1 - ;: 376 - auto: 77 - datatypes.: 47 - leA_Tree_Node: 1 - G: 6 - is_heap: 18 - Prop: 13 - nil_is_heap: 5 - node_is_heap: 7 - invert_heap: 3 - /: 37 - T2.: 1 - inversion: 90 - is_heap_rect: 1 - P: 31 - T: 49 - T.: 9 - simple: 7 - PG: 2 - PD: 2 - PN.: 2 - elim: 21 - H4: 5 - intros.: 27 - apply: 325 - X0: 2 - is_heap_rec: 1 - Set: 4 - X: 212 - low_trans: 3 - merge_lem: 3 - l1: 104 - l2: 86 - list: 72 - merge_exist: 5 - l: 378 - Sorted: 5 - meq: 15 - list_contents: 30 - munion: 18 - HdRel: 4 - l2.: 10 - Morphisms.: 2 - Instance: 6 - Equivalence: 2 - ! '@meq': 4 - constructor: 4 - red.: 1 - meq_trans.: 1 - Defined.: 1 - Proper: 5 - ! '@munion': 1 - now: 19 - meq_congr.: 1 - merge: 5 - fix: 2 - l1.: 5 - rename: 2 - into: 2 - l.: 26 - revert: 5 - H0.: 9 - a0: 11 - l0: 7 - Sorted_inv: 2 - in: 147 - H0: 15 - clear: 11 - merge0.: 2 - using: 17 - cons_sort: 2 - cons_leA: 2 - munion_ass.: 2 - cons_leA.: 2 - ! '@HdRel_inv': 2 - trivial: 13 - merge0: 1 - setoid_rewrite: 2 - munion_ass: 1 - munion_comm.: 2 - repeat: 9 - munion_comm: 1 - contents: 12 - multiset: 2 - t1: 48 - t2: 51 - equiv_Tree: 1 - insert_spec: 3 - insert_exist: 4 - insert: 2 - unfold: 60 - T0: 2 - treesort_twist1: 1 - T3: 2 - HeapT3: 1 - ConT3: 1 - LeA.: 1 - LeA: 1 - treesort_twist2: 1 - build_heap: 3 - heap_exist: 3 - list_to_heap: 2 - nil: 39 - exact: 3 - nil_is_heap.: 1 - i: 31 - meq_trans: 10 - meq_right: 2 - meq_sym: 2 - flat_spec: 3 - flat_exist: 3 - heap_to_list: 2 - h: 14 - s1: 20 - i1: 6 - m1: 1 - s2: 2 - i2: 14 - m2.: 1 - meq_congr: 1 - munion_rotate.: 1 - treesort: 1 - ! '&': 19 - permutation: 43 - intro: 28 - permutation.: 1 - exists: 48 - Export: 10 - SfLib.: 2 - AExp.: 1 - aexp: 37 - ANum: 36 - APlus: 15 - AMinus: 11 - AMult: 11 - aexp.: 2 - bexp: 22 - BTrue: 6 - BFalse: 4 - BEq: 6 - BLe: 6 - BNot: 7 - BAnd: 5 - bexp.: 2 - aeval: 44 - e: 42 - a1: 56 - a2: 59 - test_aeval1: 1 - beval: 12 - optimize_0plus: 10 - e2: 27 - e1: 25 - test_optimize_0plus: 1 - optimize_0plus_sound: 2 - e.: 7 - e1.: 1 - SCase: 24 - SSCase: 5 - IHe2.: 10 - IHe1.: 11 - eq1.: 11 - if: 13 - beq_id: 13 - V: 6 - update_eq: 1 - st: 132 - update: 28 - st.: 2 - update.: 3 - beq_id_refl: 1 - update_neq: 1 - V2: 4 - V1: 5 - update_example: 1 - empty_state: 13 - Id: 8 - empty_state.: 1 - update_shadow: 1 - x1: 17 - x2: 14 - k1: 20 - k2: 21 - f: 120 - state: 12 - k1.: 1 - f.: 4 - ! '*.': 58 - update_same: 1 - k2.: 1 - remember: 9 - beq_id_eq: 5 - HeqA.: 1 - subst.: 33 - update_permute: 1 - k3: 6 - k3.: 1 - A1: 3 - A1.: 1 - HeqA1.: 1 - HeqA1: 1 - B: 8 - try: 10 - AId: 19 - id: 10 - Tactic: 10 - tactic: 10 - first: 20 - ident: 10 - Case_aux: 45 - Y: 49 - Z: 24 - aexp1: 1 - bexp1: 1 - com: 22 - CSkip: 1 - CAss: 2 - CSeq: 2 - CIf: 2 - CWhile: 2 - com.: 1 - CSkip.: 1 - c1: 16 - c2: 11 - right: 7 - e3: 1 - plus2: 1 - XtimesYinZ: 1 - subtract_slowly_body: 2 - subtract_slowly: 1 - WHILE: 5 - DO: 5 - END.: 3 - subtract_3_from_5_slowly: 1 - subtract_slowly.: 1 - loop: 1 - SKIP: 3 - fact_body: 2 - fact_loop: 1 - fact_com: 1 - fact_loop.: 1 - ceval_step1: 3 - let: 4 - IFB: 3 - THEN: 3 - ELSE: 3 - FI: 3 - then: 12 - else: 13 - END: 2 - ceval_step2: 4 - Some: 26 - ceval_step3: 5 - None: 17 - bind_option: 1 - xo: 2 - option: 10 - ceval_step: 8 - fun: 19 - ceval_example1: 1 - E_Seq: 3 - E_Ass.: 3 - E_IfFalse.: 2 - ceval_example2: 1 - E_Ass: 2 - ceval_step__ceval: 1 - E: 9 - generalize: 12 - dependent: 5 - com_cases: 1 - subst: 10 - E_Skip.: 1 - Heqr1: 1 - IHi: 3 - assumption.: 49 - Heqr: 3 - r1: 3 - r1.: 1 - E_WhileLoop: 1 - s.: 5 - E_WhileEnd.: 1 - ceval_step_more: 5 - Hle.: 2 - Hle: 2 - st1: 6 - o.: 3 - symmetry: 5 - Heqst1: 4 - o: 20 - Hceval.: 2 - ceval__ceval_step: 3 - Hce.: 1 - ceval_cases: 1 - Hce: 1 - Case.: 1 - ! '%': 2 - IHHce1: 1 - IHHce2: 1 - x.: 4 - omega.: 6 - x0.: 1 - ceval_and_ceval_step_coincide: 1 - split.: 12 - ceval__ceval_step.: 1 - ceval_step__ceval.: 1 - ceval_deterministic: 1 - st2: 3 - st2.: 1 - He1: 2 - He2.: 2 - He1.: 1 - E1: 2 - He2: 1 - E2: 1 - E1.: 1 - E2.: 3 - plus2_spec: 1 - HX: 1 - Heval.: 4 - update_eq.: 2 - XtimesYinZ_spec: 1 - nx: 1 - ny: 1 - loop_never_stops: 1 - al: 3 - s_execute: 21 - cons: 27 - bl: 3 - a*b: 1 - s_execute1: 1 - SPush: 6 - SMinus: 9 - s_execute2: 1 - SLoad: 4 - SMult: 9 - SPlus: 8 - s_compile: 36 - sinstr: 2 - v: 28 - s_compile1: 1 - execute_theorem: 1 - other: 20 - other.: 4 - app_ass.: 6 - s_compile_correct: 1 - app_nil_end.: 1 - <: 65 - execute_theorem.: 1 - Basics.: 2 - NatList.: 2 - natprod: 5 - pair: 7 - natprod.: 1 - fst: 3 - snd: 3 - swap_pair: 1 - surjective_pairing: 1 - count: 7 - r: 10 - remove_one: 3 - test_remove_one1: 1 - O.: 4 - remove_all: 2 - s: 12 - bag: 3 - app_ass: 1 - l3: 12 - natlist: 7 - l3.: 1 - remove_decreases_count: 1 - ble_n_Sn.: 1 - IHs.: 2 - natoption: 5 - natoption.: 1 - index: 3 - option_elim: 2 - hd_opt: 8 - test_hd_opt1: 2 - None.: 2 - test_hd_opt2: 2 - option_elim_hd: 1 - head: 1 - beq_natlist: 5 - v1: 7 - v2: 2 - r2: 2 - test_beq_natlist1: 1 - test_beq_natlist2: 1 - beq_natlist_refl: 1 - IHl.: 8 - silly1: 1 - eq1: 6 - eq2.: 9 - eq2: 1 - silly2a: 1 - silly_ex: 1 - silly3: 1 - symmetry.: 2 - rev_exercise: 1 - rev_involutive.: 1 - beq_nat_sym: 1 - Omega: 1 - SetoidList.: 1 - Implicit: 15 - Arguments.: 2 - Local: 6 - nil.: 2 - ..: 4 - Permut.: 1 - eqA_equiv: 1 - eqA.: 1 - list_contents_app: 5 - permut_refl: 1 - permut_sym: 3 - trivial.: 14 - permut_trans: 4 - permut_cons_eq: 3 - meq_left: 1 - meq_singleton: 1 - auto.: 48 - permut_cons: 5 - permut_app: 1 - l4: 3 - specialize: 6 - a0.: 1 - Ha: 6 - decide: 1 - replace: 4 - permut_add_inside_eq: 1 - permut_add_cons_inside: 3 - permut_add_inside: 1 - permut_middle: 1 - permut_refl.: 5 - permut_sym_app: 1 - do: 5 - arith.: 8 - permut_rev: 1 - rev: 7 - permut_add_cons_inside.: 1 - app_nil_end: 1 - results: 1 - permut_conv_inv: 1 - plus_reg_l.: 1 - permut_app_inv1: 1 - list_contents_app.: 1 - plus_reg_l: 1 - multiplicity: 6 - Fact: 3 - if_eqA_then: 1 - if_eqA_refl: 3 - decide_left: 1 - Global: 4 - if_eqA: 1 - contradict: 3 - transitivity: 4 - eauto: 8 - if_eqA_rewrite_r: 1 - A2: 4 - Hxx: 1 - multiplicity_InA: 4 - InA: 8 - a.: 5 - split: 15 - right.: 9 - IHl: 8 - multiplicity_InA_O: 2 - multiplicity_InA_S: 1 - multiplicity_NoDupA: 1 - NoDupA: 3 - inversion_clear: 6 - EQ: 8 - NEQ: 1 - omega: 2 - Permutation: 42 - is: 4 - compatible: 1 - permut_InA_InA: 3 - multiplicity_InA.: 1 - meq.: 2 - permut_cons_InA: 4 - permut_nil: 2 - by: 9 - Abs: 2 - permut_length_1: 1 - discriminate.: 1 - permut_length_2: 1 - P.: 5 - permut_length_1.: 2 - red: 7 - ! '@if_eqA_rewrite_l': 2 - permut_length: 1 - length: 23 - InA_split: 2 - h2: 1 - app_length.: 2 - plus_n_Sm: 1 - f_equal.: 1 - app_length: 2 - IHl1: 1 - permut_remove_hd: 1 - f_equal: 1 - if_eqA_rewrite_l: 1 - NoDupA_equivlistA_permut: 1 - Equivalence_Reflexive.: 1 - change: 1 - Equivalence_Reflexive: 1 - Forall2: 1 - permutation_Permutation: 1 - Heq: 8 - permut_remove_hd_eq: 1 - Permutation_impl_permutation: 1 - permut_eqA: 1 - Permut_permut.: 1 - permut_right: 1 - only: 3 - parsing: 3 - permut_tran: 1 - Setoid: 1 - Compare_dec: 1 - ListNotations.: 1 - Permutation.: 1 - perm_nil: 1 - perm_skip: 1 - Logic.eq: 2 - ! '@Permutation': 6 - iff: 1 - ! '@In': 1 - Permutation_in.: 2 - Permutation_app_tail: 1 - tl: 7 - Hperm: 4 - Hpermmm: 1 - idtac: 1 - app_comm_cons: 3 - Permutation_app_head: 1 - Permutation_trans: 1 - ! '@app': 1 - Permutation_app.: 1 - Permutation_add_inside: 1 - Permutation_app: 1 - Permutation_cons_append: 1 - Permutation_cons_append.: 3 - Permutation_app_comm: 3 - app_nil_r: 2 - app_assoc: 2 - Permutation_cons_app: 2 - Permutation_middle: 2 - Permutation_rev: 3 - '1': 2 - ! '@rev': 1 - '2': 2 - Permutation_length: 2 - ! '@length': 1 - Permutation_length.: 1 - Permutation_ind_bis: 2 - Hnil: 1 - Hskip: 3 - Hswap: 2 - Htrans.: 1 - Htrans: 1 - eauto.: 7 - Ltac: 1 - break_list: 4 - injection: 8 - Permutation_nil_app_cons: 1 - eapply: 7 - Hp: 5 - IH: 4 - H6: 3 - in_or_app: 1 - perm_trans: 1 - Permutation_cons_inv: 2 - Permutation_cons_app_inv: 1 - Permutation_app_inv: 2 - Permutation_app_inv_l: 1 - Permutation_app_inv_r: 1 - Permutation_length_1_inv: 3 - Heqm: 5 - discriminate: 4 - ! '||': 2 - Permutation_nil: 1 - Permutation_length_1: 1 - Permutation_length_2_inv: 2 - Heqm.: 1 - tauto: 1 - IHPermutation1: 1 - IHPermutation2: 1 - Permutation_length_2: 1 - b1.: 1 - in_middle: 3 - In: 7 - in_app_iff: 1 - tauto.: 1 - NoDup_cardinal_incl: 2 - incl: 3 - N: 2 - Hal: 2 - Hl: 3 - in_split: 1 - H12: 5 - Ha.: 1 - Hx: 24 - NoDup_remove_1: 1 - eq_add_S: 3 - arith: 5 - Hy: 17 - intuition: 1 - NoDup_Permutation: 1 - NoDup: 2 - exfalso.: 1 - NoDup_Permutation_bis: 2 - constructor.: 6 - intuition.: 2 - Permutation_NoDup: 1 - Permutation_map: 1 - Hf: 15 - Hy.: 3 - injective_bounded_surjective: 1 - injective: 6 - set: 1 - seq: 2 - map: 4 - in_map_iff.: 2 - in_seq: 4 - injective_map_NoDup: 2 - seq_NoDup: 1 - map_length: 1 - in_map_iff: 1 - nat_bijection_Permutation: 1 - BD.: 1 - seq_NoDup.: 1 - map_length.: 1 - Injection: 1 - Permutation_alt: 1 - Alternative: 1 - characterization: 1 - of: 4 - via: 1 - nth_error: 7 - and: 1 - nth: 2 - adapt: 4 - le_lt_dec: 9 - adapt_injective: 1 - adapt.: 2 - EQ.: 2 - LE: 11 - LT: 14 - Hf.: 1 - Lt.le_lt_or_eq: 3 - LE.: 3 - lt: 3 - LT.: 5 - Lt.S_pred: 3 - Lt.lt_not_le: 2 - adapt_ok: 2 - nth_error_app1: 1 - nth_error_app2: 1 - Minus.minus_Sn_m: 1 - Permutation_nth_error: 2 - IHP: 1 - IHP2: 1 - g: 6 - Hg: 2 - E.: 2 - L12: 2 - plus_n_Sm.: 1 - adapt_injective.: 1 - nth_error_None: 4 - Hn: 1 - Hf2: 1 - Hf3: 2 - Lt.le_or_lt: 1 - Lt.lt_irrefl: 2 - Lt.lt_le_trans: 2 - Hf1: 1 - congruence.: 1 - Permutation_alt.: 1 - Permutation_app_swap: 1 - Lists.: 1 - X.: 4 - app: 5 - snoc: 9 - Arguments: 11 - list123: 1 - test_repeat1: 1 - nil_app: 1 - rev_snoc: 1 - snoc_with_append: 1 - v.: 1 - IHl1.: 1 - prod: 3 - Y.: 1 - type_scope.: 1 - combine: 3 - lx: 4 - ly: 4 - tx: 2 - ty: 7 - tp: 2 - xs: 7 - plus3: 2 - prod_curry: 3 - prod_uncurry: 3 - uncurry_uncurry: 1 - curry_uncurry: 1 - filter: 3 - test: 4 - countoddmembers: 1 - k: 7 - fmostlytrue: 5 - override: 5 - ftrue: 1 - override_example1: 1 - override_example2: 1 - override_example3: 1 - override_example4: 1 - override_example: 1 - constfun: 1 - unfold_example_bad: 1 - plus3.: 1 - override_eq: 1 - override.: 2 - override_neq: 1 - x1.: 1 - eq.: 11 - silly4: 1 - silly5: 1 - sillyex1: 1 - j: 6 - j.: 1 - silly6: 1 - contra.: 14 - silly7: 1 - sillyex2: 1 - beq_nat_eq: 1 - assertion: 3 - Hl.: 1 - eq: 4 - beq_nat_O_l: 1 - beq_nat_O_r: 1 - double_injective: 1 - double: 2 - fold_map: 2 - fold: 1 - total: 2 - fold_map_correct: 1 - fold_map.: 1 - forallb: 4 - existsb: 3 - existsb2: 2 - existsb_correct: 1 - existsb2.: 1 - x0: 8 - index_okx: 1 - mumble: 5 - mumble.: 1 - grumble: 3 - Logic.: 1 - Prop.: 1 - partial_function: 6 - R: 54 - y1: 6 - y2: 5 - y2.: 3 - next_nat_partial_function: 1 - next_nat.: 1 - partial_function.: 5 - Q.: 2 - le_not_a_partial_function: 1 - le: 1 - not.: 3 - Nonsense.: 4 - le_n.: 6 - le_S.: 4 - total_relation_not_partial_function: 1 - total_relation: 1 - total_relation1.: 2 - empty_relation_not_partial_funcion: 1 - empty_relation.: 1 - reflexive: 5 - le_reflexive: 1 - le.: 4 - reflexive.: 1 - transitive: 8 - le_trans: 4 - Hnm: 3 - Hmo.: 4 - Hnm.: 3 - IHHmo.: 1 - lt_trans: 4 - lt.: 2 - transitive.: 1 - le_S: 6 - Hm: 1 - le_Sn_le: 2 - <=>: 9 - le_S_n: 2 - Sn_le_Sm__n_le_m.: 1 - le_Sn_n: 5 - not: 1 - TODO: 1 - Hmo: 1 - symmetric: 2 - antisymmetric: 3 - le_antisymmetric: 1 - Sn_le_Sm__n_le_m: 2 - IHb: 1 - equivalence: 1 - order: 2 - preorder: 1 - le_order: 1 - order.: 1 - le_reflexive.: 1 - le_antisymmetric.: 1 - le_trans.: 1 - clos_refl_trans: 8 - rt_step: 1 - rt_refl: 1 - rt_trans: 3 - next_nat_closure_is_le: 1 - next_nat: 1 - rt_refl.: 2 - IHle.: 1 - rt_step.: 2 - nn.: 1 - IHclos_refl_trans1.: 2 - IHclos_refl_trans2.: 2 - refl_step_closure: 11 - rsc_refl: 1 - rsc_step: 4 - rsc_R: 2 - r.: 2 - rsc_refl.: 4 - rsc_trans: 4 - IHrefl_step_closure: 1 - rtc_rsc_coincide: 1 - IHrefl_step_closure.: 1 - Imp.: 1 - Relations.: 1 - tm: 43 - tm_const: 45 - tm_plus: 30 - tm.: 3 - SimpleArith0.: 2 - eval: 8 - SimpleArith1.: 2 - Reserved: 3 - E_Const: 2 - E_Plus: 2 - n1: 19 - n2: 15 - where: 5 - test_step_1: 1 - ST_Plus1.: 2 - ST_PlusConstConst.: 3 - test_step_2: 1 - ST_Plus2.: 2 - step_deterministic: 1 - step.: 3 - Hy1: 2 - Hy2.: 2 - step_cases: 4 - Hy2: 3 - SCase.: 3 - Hy1.: 5 - IHHy1: 2 - SimpleArith2.: 1 - value: 25 - v_const: 4 - step: 9 - ST_PlusConstConst: 3 - ST_Plus1: 2 - assumption: 3 - strong_progress: 2 - value_not_same_as_normal_form: 2 - normal_form: 3 - t.: 4 - normal_form.: 2 - v_funny.: 1 - Temp1.: 1 - Temp2.: 1 - ST_Funny: 1 - H4.: 1 - Temp3.: 1 - Temp4.: 2 - tm_true: 8 - tm_false: 5 - tm_if: 10 - v_true: 1 - v_false: 1 - tm_false.: 3 - ST_IfTrue: 1 - ST_IfFalse: 1 - ST_If: 1 - t3: 6 - bool_step_prop4: 1 - bool_step_prop4_holds: 1 - bool_step_prop4.: 2 - ST_ShortCut.: 1 - left.: 3 - IHt1.: 1 - t2.: 4 - t3.: 2 - ST_If.: 2 - Temp5.: 1 - stepmany: 4 - normalizing: 1 - IHt2: 3 - H11: 2 - H21: 3 - H22: 2 - nf_same_as_value: 3 - H12.: 1 - H22.: 1 - H11.: 1 - stepmany_congr_1: 1 - stepmany_congr2: 1 - eval__value: 1 - HE.: 1 - eval_cases: 1 - HE: 1 - v_const.: 1 - Sorted.: 1 - Mergesort.: 1 - STLC.: 1 - ty_Bool: 10 - ty_arrow: 7 - ty.: 2 - tm_var: 6 - tm_app: 7 - tm_abs: 9 - idB: 2 - idBB: 2 - idBBBB: 2 - v_abs: 1 - t_true: 1 - t_false: 1 - Constructors: 2 - value.: 1 - ST_App2: 1 - step_example3: 1 - idB.: 1 - rsc_step.: 2 - ST_App1.: 2 - ST_AppAbs.: 3 - v_abs.: 2 - context: 1 - partial_map: 4 - Context.: 1 - empty: 3 - extend: 1 - Gamma: 10 - has_type: 4 - appears_free_in: 1 - S.: 1 - HT: 1 - T_Var.: 1 - extend_neq: 1 - Heqe.: 3 - T_Abs.: 1 - context_invariance...: 2 - Hafi.: 2 - extend.: 2 - IHt.: 1 - Coiso1.: 2 - Coiso2.: 3 - HeqCoiso1.: 1 - HeqCoiso2.: 1 - beq_id_false_not_eq.: 1 - ex_falso_quodlibet.: 1 - preservation: 1 - HT.: 1 - substitution_preserves_typing: 1 - T11.: 4 - HT1.: 1 - T_App: 2 - IHHT1.: 1 - IHHT2.: 1 - tm_cases: 1 - Ht: 1 - Ht.: 3 - IHt1: 2 - T11: 2 - ST_App2.: 1 - ty_Bool.: 1 - IHt3: 1 - ST_IfTrue.: 1 - ST_IfFalse.: 1 - types_unique: 1 - T12: 2 - IHhas_type.: 1 - IHhas_type1.: 1 - IHhas_type2.: 1 - Eqdep_dec.: 1 - Arith.: 2 - eq_rect_eq_nat: 2 - Q: 3 - eq_rect: 3 - h.: 1 - K_dec_set: 1 - eq_nat_dec.: 1 - Scheme: 1 - le_ind: 1 - le_n: 4 - n0: 4 - refl_equal: 4 - pattern: 2 - case: 2 - contradiction: 8 - m0: 1 - HeqS: 3 - HeqS.: 2 - eq_rect_eq_nat.: 1 - IHp: 2 - dep_pair_intro: 2 - <=n),>: 1 - x=: 1 - exist: 7 - Heq.: 6 - le_uniqueness_proof: 1 - Hy0: 1 - card: 2 - card_interval: 1 - <=n}>: 1 - proj1_sig: 1 - proj2_sig: 1 - Hq: 3 - Hpq.: 1 - Hmn.: 1 - Hmn: 1 - interval_dec: 1 - dep_pair_intro.: 3 - eq_S.: 1 - Hneq.: 2 - card_inj_aux: 1 - False.: 1 - Hfbound: 1 - Hfinj: 1 - Hgsurj.: 1 - Hgsurj: 3 - Hfx: 2 - le_n_O_eq.: 2 - Hfbound.: 2 - Hx.: 4 - xSn: 21 - bounded: 1 - Hlefx: 1 - Hgefx: 1 - Hlefy: 1 - Hgefy: 1 - Hfinj.: 3 - sym_not_eq.: 2 - Heqf.: 2 - Hneqy.: 2 - le_lt_trans: 2 - le_O_n.: 2 - le_neq_lt: 2 - Hneqx.: 2 - pred_inj.: 1 - lt_O_neq: 2 - neq_dep_intro: 2 - inj_restrict: 1 - Heqf: 1 - surjective: 1 - Hlep.: 3 - Hlt: 3 - Hfsurj: 2 - le_n_S: 1 - Hlep: 4 - Hneq: 7 - Heqx.: 2 - Heqx: 4 - le_not_lt: 1 - lt_n_Sn.: 1 - Hlt.: 1 - lt_irrefl: 2 - lt_le_trans: 1 - pose: 1 - Hneqx: 1 - Hneqy: 1 - Heqg: 1 - Hdec: 3 - Heqy: 1 - Hginj: 1 - HSnx.: 1 - HSnx: 1 - interval_discr: 1 - <=m}>: 1 - card_inj: 1 - interval_dec.: 1 - card_interval.: 2 - Dart: - class: 1 - Point: 7 - ! '{': 3 - (: 7 - this.x: 1 - this.y: 1 - ): 7 - ;: 8 - distanceTo: 1 - other: 1 - var: 3 - dx: 3 - x: 2 - ! '-': 2 - other.x: 1 - dy: 3 - y: 2 - other.y: 1 - return: 1 - Math.sqrt: 1 - ! '*': 2 - +: 1 - ! '}': 3 - main: 1 - p: 1 - new: 2 - q: 1 - print: 1 - Delphi: - program: 1 - gmail: 1 - ;: 6 - uses: 1 - Forms: 1 - Unit2: 1 - in: 1 - ! '{': 2 - Form2: 2 - ! '}': 2 - R: 1 - ! '*.res': 1 - begin: 1 - Application.Initialize: 1 - Application.MainFormOnTaskbar: 1 - 'True': 1 - Application.CreateForm: 1 - (: 1 - TForm2: 1 - ): 1 - Application.Run: 1 - end.: 1 - Diff: - diff: 1 - ! '-': 5 - git: 1 - a/lib/linguist.rb: 2 - b/lib/linguist.rb: 2 - index: 1 - d472341..8ad9ffb: 1 - +: 3 - Emacs Lisp: - (: 1 - print: 1 - ): 1 - GAS: - .cstring: 1 - LC0: 2 - .ascii: 2 - .text: 1 - .globl: 2 - _main: 2 - LFB3: 4 - pushq: 1 - ! '%': 6 - rbp: 2 - LCFI0: 3 - movq: 1 - rsp: 1 - LCFI1: 2 - leaq: 1 - (: 1 - rip: 1 - ): 1 - rdi: 1 - call: 1 - _puts: 1 - movl: 1 - eax: 1 - leave: 1 - ret: 1 - LFE3: 2 - .section: 1 - __TEXT: 1 - __eh_frame: 1 - coalesced: 1 - no_toc: 1 - +: 2 - strip_static_syms: 1 - live_support: 1 - EH_frame1: 2 - .set: 5 - L: 10 - set: 10 - LECIE1: 2 - ! '-': 7 - LSCIE1: 2 - .long: 6 - .byte: 20 - xc: 1 - .align: 2 - _main.eh: 2 - LSFDE1: 1 - LEFDE1: 2 - LASFDE1: 3 - .quad: 2 - .: 1 - xe: 1 - xd: 1 - .subsections_via_symbols: 1 - Gosu: - <%!-->: 1 - defined: 1 - in: 3 - Hello: 2 - gst: 1 - <: 1 - ! '%': 2 - ! '@': 1 - params: 1 - (: 54 - users: 2 - Collection: 1 - <User>: 1 - ): 55 - <%>: 2 - for: 2 - user: 1 - ! '{': 28 - user.LastName: 1 - ! '}': 28 - user.FirstName: 1 - user.Department: 1 - package: 2 - example: 2 - enhancement: 1 - String: 6 - function: 11 - toPerson: 1 - Person: 7 - var: 10 - vals: 4 - this.split: 1 - return: 4 - new: 6 - as: 3 - int: 2 - Relationship.valueOf: 2 - uses: 2 - java.util.*: 1 - java.io.File: 1 - class: 1 - extends: 1 - Contact: 1 - implements: 1 - IEmailable: 2 - _name: 4 - _age: 3 - Integer: 3 - Age: 1 - _relationship: 2 - Relationship: 3 - readonly: 1 - RelationshipOfPerson: 1 - delegate: 1 - _emailHelper: 2 - represents: 1 - enum: 1 - FRIEND: 1 - FAMILY: 1 - BUSINESS_CONTACT: 1 - //: 1 - static: 7 - ALL_PEOPLE: 2 - HashMap: 1 - <String,>: 1 - /*: 4 - ! '*/': 4 - construct: 1 - name: 4 - age: 4 - relationship: 2 - EmailHelper: 1 - this: 1 - property: 2 - get: 1 - Name: 3 - set: 1 - override: 1 - getEmailName: 1 - incrementAge: 1 - +: 2 - ! '@Deprecated': 1 - printPersonInfo: 1 - print: 4 - addPerson: 4 - p: 5 - if: 4 - ALL_PEOPLE.containsKey: 2 - .Name: 1 - throw: 1 - IllegalArgumentException: 1 - p.Name: 2 - addAllPeople: 1 - contacts: 2 - List: 1 - <Contact>: 1 - contact: 3 - typeis: 1 - and: 1 - not: 1 - contact.Name: 1 - getAllPeopleOlderThanNOrderedByName: 1 - allPeople: 1 - ALL_PEOPLE.Values: 3 - allPeople.where: 1 - ! '-': 3 - p.Age: 1 - .orderBy: 1 - loadPersonFromDB: 1 - id: 1 - using: 2 - conn: 1 - DBConnectionManager.getConnection: 1 - stmt: 1 - conn.prepareStatement: 1 - stmt.setInt: 1 - result: 1 - stmt.executeQuery: 1 - result.next: 1 - result.getString: 2 - result.getInt: 1 - loadFromFile: 1 - file: 3 - File: 2 - file.eachLine: 1 - line: 1 - line.HasContent: 1 - line.toPerson: 1 - saveToFile: 1 - writer: 2 - FileWriter: 1 - PersonCSVTemplate.renderToString: 1 - PersonCSVTemplate.render: 1 - hello: 1 - Groovy: - task: 1 - echoDirListViaAntBuilder: 1 - (: 7 - ): 7 - ! '{': 3 - description: 1 - //Docs: 1 - http: 1 - //ant.apache.org/manual/Types/fileset.html: 1 - //Echo: 1 - the: 3 - Gradle: 1 - project: 1 - name: 1 - via: 1 - ant: 1 - echo: 1 - plugin: 1 - ant.echo: 3 - message: 1 - project.name: 1 - path: 2 - //Gather: 1 - list: 1 - of: 1 - files: 1 - in: 1 - a: 1 - subdirectory: 1 - ant.fileScanner: 1 - fileset: 1 - dir: 1 - ! '}': 3 - .each: 1 - //Print: 1 - each: 1 - file: 1 - to: 1 - screen: 1 - with: 1 - CWD: 1 - projectDir: 1 - removed.: 1 - println: 2 - it.toString: 1 - ! '-': 1 - ! '#': 1 - /usr/bin/env: 1 - groovy: 1 - Groovy Server Pages: - <html>: 4 - <head>: 4 - <meta>: 4 - http: 3 - equiv=: 3 - content=: 4 - <title>: 4 - Testing: 3 - with: 3 - SiteMesh: 2 - and: 2 - Resources: 2 - </title>: 4 - name=: 1 - <r:require>: 2 - module=: 2 - </head>: 4 - <body>: 4 - </body>: 4 - </html>: 4 - <%@>: 1 - page: 2 - contentType=: 1 - Using: 1 - directive: 1 - tag: 1 - <div>: 2 - class=: 2 - <a>: 2 - href=: 2 - alt=: 2 - id=: 2 - Download: 1 - </a>: 2 - </div>: 2 - Print: 1 - ! '{': 1 - example: 1 - ! '}': 1 - Haml: - ! '%': 1 - p: 1 - Hello: 1 - World: 1 - INI: - user: 1 - name: 1 - Josh: 1 - Peek: 1 - email: 1 - josh@github.com: 1 - Ioke: - ! '#': 1 - /usr/bin/env: 1 - ioke: 1 - println: 1 - Java: - /*: 85 - ! '*/': 86 - package: 5 - nokogiri.internals: 1 - ;: 598 - import: 66 - static: 91 - nokogiri.internals.NokogiriHelpers.getNokogiriClass: 1 - nokogiri.internals.NokogiriHelpers.isNamespace: 1 - nokogiri.internals.NokogiriHelpers.stringOrNil: 1 - nokogiri.HtmlDocument: 1 - nokogiri.NokogiriService: 1 - nokogiri.XmlDocument: 1 - org.apache.xerces.parsers.DOMParser: 1 - org.apache.xerces.xni.Augmentations: 1 - org.apache.xerces.xni.QName: 1 - org.apache.xerces.xni.XMLAttributes: 1 - org.apache.xerces.xni.XNIException: 1 - org.apache.xerces.xni.parser.XMLDocumentFilter: 1 - org.apache.xerces.xni.parser.XMLParserConfiguration: 1 - org.cyberneko.html.HTMLConfiguration: 1 - org.cyberneko.html.filters.DefaultFilter: 1 - org.jruby.Ruby: 2 - org.jruby.RubyClass: 2 - org.jruby.runtime.ThreadContext: 1 - org.jruby.runtime.builtin.IRubyObject: 2 - org.w3c.dom.Document: 1 - org.w3c.dom.NamedNodeMap: 1 - org.w3c.dom.NodeList: 1 - public: 124 - class: 10 - HtmlDomParserContext: 3 - extends: 7 - XmlDomParserContext: 1 - ! '{': 255 - (: 724 - Ruby: 22 - runtime: 30 - IRubyObject: 14 - options: 4 - ): 722 - super: 5 - ! '}': 254 - encoding: 2 - ! '@Override': 6 - protected: 4 - void: 20 - initErrorHandler: 1 - if: 79 - options.strict: 1 - errorHandler: 6 - new: 61 - NokogiriStrictErrorHandler: 1 - options.noError: 2 - options.noWarning: 2 - else: 28 - NokogiriNonStrictErrorHandler4NekoHtml: 1 - initParser: 1 - XMLParserConfiguration: 1 - config: 2 - HTMLConfiguration: 1 - XMLDocumentFilter: 3 - removeNSAttrsFilter: 2 - RemoveNSAttrsFilter: 2 - elementValidityCheckFilter: 3 - ElementValidityCheckFilter: 3 - //XMLDocumentFilter: 1 - filters: 3 - config.setErrorHandler: 1 - this.errorHandler: 2 - parser: 1 - DOMParser: 1 - //: 47 - setProperty: 4 - java_encoding: 2 - setFeature: 4 - 'true': 16 - 'false': 9 - enableDocumentFragment: 1 - XmlDocument: 3 - getNewEmptyDocument: 1 - ThreadContext: 2 - context: 8 - args: 6 - return: 172 - XmlDocument.rbNew: 1 - getNokogiriClass: 1 - context.getRuntime: 3 - wrapDocument: 1 - RubyClass: 71 - klazz: 34 - Document: 2 - document: 5 - HtmlDocument: 2 - htmlDocument: 3 - NokogiriService.HTML_DOCUMENT_ALLOCATOR.allocate: 1 - htmlDocument.setDocumentNode: 1 - ruby_encoding.isNil: 1 - detected_encoding: 2 - 'null': 43 - ! '&&': 6 - detected_encoding.isNil: 1 - ruby_encoding: 3 - String: 32 - charset: 2 - tryGetCharsetFromHtml5MetaTag: 2 - stringOrNil: 1 - htmlDocument.setEncoding: 1 - htmlDocument.setParsedEncoding: 1 - private: 35 - .equalsIgnoreCase: 5 - document.getDocumentElement: 2 - .getNodeName: 4 - NodeList: 2 - list: 1 - .getChildNodes: 2 - for: 15 - int: 52 - i: 54 - <: 13 - list.getLength: 1 - +: 79 - list.item: 2 - headers: 1 - j: 8 - headers.getLength: 1 - headers.item: 2 - NamedNodeMap: 1 - nodeMap: 1 - .getAttributes: 1 - k: 5 - nodeMap.getLength: 1 - nodeMap.item: 2 - .getNodeValue: 1 - DefaultFilter: 2 - startElement: 2 - QName: 2 - element: 3 - XMLAttributes: 2 - attrs: 4 - Augmentations: 2 - augs: 4 - throws: 10 - XNIException: 2 - attrs.getLength: 1 - isNamespace: 1 - attrs.getQName: 1 - attrs.removeAttributeAt: 1 - ! '-': 12 - element.uri: 1 - super.startElement: 2 - NokogiriErrorHandler: 2 - element_names: 3 - boolean: 29 - isValid: 2 - testee: 1 - char: 13 - c: 21 - testee.toCharArray: 1 - index: 4 - Integer: 2 - .length: 1 - testee.equals: 1 - name: 10 - name.rawname: 2 - errorHandler.getErrors: 1 - .add: 1 - Exception: 1 - hudson.model: 1 - hudson.ExtensionListView: 1 - hudson.Functions: 1 - hudson.Platform: 1 - hudson.PluginManager: 1 - hudson.cli.declarative.CLIResolver: 1 - hudson.model.listeners.ItemListener: 1 - hudson.slaves.ComputerListener: 1 - hudson.util.CopyOnWriteList: 1 - hudson.util.FormValidation: 1 - jenkins.model.Jenkins: 1 - org.jvnet.hudson.reactor.ReactorException: 1 - org.kohsuke.stapler.QueryParameter: 1 - org.kohsuke.stapler.Stapler: 1 - org.kohsuke.stapler.StaplerRequest: 1 - org.kohsuke.stapler.StaplerResponse: 1 - javax.servlet.ServletContext: 1 - javax.servlet.ServletException: 1 - java.io.File: 1 - java.io.IOException: 1 - java.text.NumberFormat: 1 - java.text.ParseException: 1 - java.util.Collections: 2 - java.util.List: 1 - java.util.Map: 3 - hudson.Util.fixEmpty: 1 - Hudson: 5 - Jenkins: 2 - transient: 2 - final: 54 - CopyOnWriteList: 4 - <ItemListener>: 2 - itemListeners: 2 - ExtensionListView.createCopyOnWriteList: 2 - ItemListener.class: 1 - <ComputerListener>: 2 - computerListeners: 2 - ComputerListener.class: 1 - ! '@CLIResolver': 1 - getInstance: 2 - Jenkins.getInstance: 2 - File: 2 - root: 4 - ServletContext: 2 - IOException: 7 - InterruptedException: 2 - ReactorException: 2 - this: 4 - PluginManager: 1 - pluginManager: 2 - getJobListeners: 1 - getComputerListeners: 1 - Slave: 3 - getSlave: 1 - Node: 1 - n: 3 - getNode: 1 - instanceof: 14 - List: 3 - <Slave>: 2 - getSlaves: 1 - slaves: 3 - setSlaves: 1 - setNodes: 1 - TopLevelItem: 3 - getJob: 1 - getItem: 1 - getJobCaseInsensitive: 1 - match: 2 - Functions.toEmailSafeString: 2 - item: 2 - getItems: 1 - item.getName: 1 - synchronized: 1 - doQuietDown: 2 - StaplerResponse: 3 - rsp: 4 - ServletException: 2 - .generateResponse: 1 - doLogRss: 1 - StaplerRequest: 3 - req: 4 - qs: 2 - req.getQueryString: 1 - rsp.sendRedirect2: 1 - value: 7 - type: 5 - errorText: 6 - warningText: 5 - number: 2 - and: 1 - .: 1 - ! '*': 6 - ! '@deprecated': 1 - as: 1 - of: 2 - '.324': 1 - Either: 1 - use: 1 - client: 1 - side: 1 - validation: 1 - e.g.: 1 - or: 1 - define: 1 - your: 1 - own: 1 - check: 1 - method: 3 - instead: 1 - relying: 1 - 'on': 1 - generic: 1 - one.: 1 - FormValidation: 2 - doFieldCheck: 1 - ! '@QueryParameter': 4 - fixEmpty: 4 - FormValidation.error: 4 - FormValidation.warning: 1 - try: 8 - type.equalsIgnoreCase: 2 - NumberFormat.getInstance: 2 - .parse: 2 - .floatValue: 1 - <=>: 1 - '0': 1 - error: 1 - Messages: 1 - Hudson_NotAPositiveNumber: 1 - equalsIgnoreCase: 1 - negative: 1 - NumberFormat: 1 - parse: 1 - floatValue: 1 - Messages.Hudson_NotANegativeNumber: 1 - catch: 8 - ParseException: 1 - e: 11 - Messages.Hudson_NotANumber: 1 - FormValidation.ok: 1 - isWindows: 1 - File.pathSeparatorChar: 1 - isDarwin: 1 - Platform.isDarwin: 1 - adminCheck: 3 - Stapler.getCurrentRequest: 1 - Stapler.getCurrentResponse: 1 - isAdmin: 4 - rsp.sendError: 1 - StaplerResponse.SC_FORBIDDEN: 1 - .getACL: 1 - .hasPermission: 1 - ADMINISTER: 1 - XSTREAM.alias: 1 - Hudson.class: 1 - MasterComputer: 1 - Jenkins.MasterComputer: 1 - CloudList: 3 - Jenkins.CloudList: 1 - h: 2 - nokogiri: 6 - java.util.HashMap: 1 - org.jruby.RubyArray: 1 - org.jruby.RubyFixnum: 1 - org.jruby.RubyModule: 1 - org.jruby.runtime.ObjectAllocator: 1 - org.jruby.runtime.load.BasicLibraryService: 1 - NokogiriService: 1 - implements: 1 - BasicLibraryService: 1 - nokogiriClassCacheGvarName: 1 - Map: 1 - <String,>: 2 - nokogiriClassCache: 2 - basicLoad: 1 - ruby: 25 - init: 2 - createNokogiriClassCahce: 2 - Collections.synchronizedMap: 1 - HashMap: 1 - nokogiriClassCache.put: 26 - ruby.getClassFromPath: 26 - RubyModule: 18 - ruby.defineModule: 1 - xmlModule: 7 - nokogiri.defineModuleUnder: 3 - xmlSaxModule: 3 - xmlModule.defineModuleUnder: 1 - htmlModule: 5 - htmlSaxModule: 3 - htmlModule.defineModuleUnder: 1 - xsltModule: 3 - createNokogiriModule: 2 - createSyntaxErrors: 2 - xmlNode: 2 - createXmlModule: 2 - createHtmlModule: 2 - createDocuments: 2 - createSaxModule: 2 - createXsltModule: 2 - encHandler: 1 - nokogiri.defineClassUnder: 2 - ruby.getObject: 13 - ENCODING_HANDLER_ALLOCATOR: 2 - encHandler.defineAnnotatedMethods: 1 - EncodingHandler.class: 1 - syntaxError: 2 - ruby.getStandardError: 2 - .getAllocator: 1 - xmlSyntaxError: 4 - xmlModule.defineClassUnder: 23 - XML_SYNTAXERROR_ALLOCATOR: 2 - xmlSyntaxError.defineAnnotatedMethods: 1 - XmlSyntaxError.class: 1 - node: 14 - XML_NODE_ALLOCATOR: 1 - node.defineAnnotatedMethods: 1 - XmlNode.class: 1 - attr: 1 - XML_ATTR_ALLOCATOR: 1 - attr.defineAnnotatedMethods: 1 - XmlAttr.class: 1 - attrDecl: 1 - XML_ATTRIBUTE_DECL_ALLOCATOR: 1 - attrDecl.defineAnnotatedMethods: 1 - XmlAttributeDecl.class: 1 - characterData: 3 - comment: 1 - XML_COMMENT_ALLOCATOR: 1 - comment.defineAnnotatedMethods: 1 - XmlComment.class: 1 - text: 2 - XML_TEXT_ALLOCATOR: 2 - text.defineAnnotatedMethods: 1 - XmlText.class: 1 - cdata: 1 - XML_CDATA_ALLOCATOR: 1 - cdata.defineAnnotatedMethods: 1 - XmlCdata.class: 1 - dtd: 1 - XML_DTD_ALLOCATOR: 1 - dtd.defineAnnotatedMethods: 1 - XmlDtd.class: 1 - documentFragment: 1 - XML_DOCUMENT_FRAGMENT_ALLOCATOR: 1 - documentFragment.defineAnnotatedMethods: 1 - XmlDocumentFragment.class: 1 - XML_ELEMENT_ALLOCATOR: 1 - element.defineAnnotatedMethods: 1 - XmlElement.class: 1 - elementContent: 1 - XML_ELEMENT_CONTENT_ALLOCATOR: 1 - elementContent.defineAnnotatedMethods: 1 - XmlElementContent.class: 1 - elementDecl: 1 - XML_ELEMENT_DECL_ALLOCATOR: 1 - elementDecl.defineAnnotatedMethods: 1 - XmlElementDecl.class: 1 - entityDecl: 1 - XML_ENTITY_DECL_ALLOCATOR: 1 - entityDecl.defineAnnotatedMethods: 1 - XmlEntityDecl.class: 1 - entityDecl.defineConstant: 6 - RubyFixnum.newFixnum: 6 - XmlEntityDecl.INTERNAL_GENERAL: 1 - XmlEntityDecl.EXTERNAL_GENERAL_PARSED: 1 - XmlEntityDecl.EXTERNAL_GENERAL_UNPARSED: 1 - XmlEntityDecl.INTERNAL_PARAMETER: 1 - XmlEntityDecl.EXTERNAL_PARAMETER: 1 - XmlEntityDecl.INTERNAL_PREDEFINED: 1 - entref: 1 - XML_ENTITY_REFERENCE_ALLOCATOR: 1 - entref.defineAnnotatedMethods: 1 - XmlEntityReference.class: 1 - namespace: 1 - XML_NAMESPACE_ALLOCATOR: 1 - namespace.defineAnnotatedMethods: 1 - XmlNamespace.class: 1 - nodeSet: 1 - XML_NODESET_ALLOCATOR: 1 - nodeSet.defineAnnotatedMethods: 1 - XmlNodeSet.class: 1 - pi: 1 - XML_PROCESSING_INSTRUCTION_ALLOCATOR: 1 - pi.defineAnnotatedMethods: 1 - XmlProcessingInstruction.class: 1 - reader: 1 - XML_READER_ALLOCATOR: 1 - reader.defineAnnotatedMethods: 1 - XmlReader.class: 1 - schema: 2 - XML_SCHEMA_ALLOCATOR: 2 - schema.defineAnnotatedMethods: 1 - XmlSchema.class: 1 - relaxng: 1 - XML_RELAXNG_ALLOCATOR: 2 - relaxng.defineAnnotatedMethods: 1 - XmlRelaxng.class: 1 - xpathContext: 1 - XML_XPATHCONTEXT_ALLOCATOR: 2 - xpathContext.defineAnnotatedMethods: 1 - XmlXpathContext.class: 1 - htmlElemDesc: 1 - htmlModule.defineClassUnder: 3 - HTML_ELEMENT_DESCRIPTION_ALLOCATOR: 1 - htmlElemDesc.defineAnnotatedMethods: 1 - HtmlElementDescription.class: 1 - htmlEntityLookup: 1 - HTML_ENTITY_LOOKUP_ALLOCATOR: 1 - htmlEntityLookup.defineAnnotatedMethods: 1 - HtmlEntityLookup.class: 1 - xmlDocument: 2 - XML_DOCUMENT_ALLOCATOR: 1 - xmlDocument.defineAnnotatedMethods: 1 - XmlDocument.class: 1 - //RubyModule: 1 - htmlDoc: 1 - html.defineOrGetClassUnder: 1 - HTML_DOCUMENT_ALLOCATOR: 1 - htmlDocument.defineAnnotatedMethods: 1 - HtmlDocument.class: 1 - xmlSaxParserContext: 5 - xmlSaxModule.defineClassUnder: 2 - XML_SAXPARSER_CONTEXT_ALLOCATOR: 2 - xmlSaxParserContext.defineAnnotatedMethods: 1 - XmlSaxParserContext.class: 1 - xmlSaxPushParser: 1 - XML_SAXPUSHPARSER_ALLOCATOR: 2 - xmlSaxPushParser.defineAnnotatedMethods: 1 - XmlSaxPushParser.class: 1 - htmlSaxParserContext: 1 - htmlSaxModule.defineClassUnder: 1 - HTML_SAXPARSER_CONTEXT_ALLOCATOR: 1 - htmlSaxParserContext.defineAnnotatedMethods: 1 - HtmlSaxParserContext.class: 1 - stylesheet: 1 - xsltModule.defineClassUnder: 1 - XSLT_STYLESHEET_ALLOCATOR: 2 - stylesheet.defineAnnotatedMethods: 1 - XsltStylesheet.class: 2 - xsltModule.defineAnnotatedMethod: 1 - ObjectAllocator: 18 - allocate: 9 - EncodingHandler: 1 - not: 1 - implemented: 1 - XmlRelaxng: 5 - xmlRelaxng: 3 - clone: 14 - xmlRelaxng.clone: 1 - clone.setMetaClass: 7 - CloneNotSupportedException: 7 - XmlSaxParserContext: 5 - xmlSaxParserContext.clone: 1 - XmlSaxPushParser: 1 - XmlSchema: 5 - xmlSchema: 3 - xmlSchema.clone: 1 - XmlSyntaxError: 5 - xmlSyntaxError.clone: 1 - XmlText: 6 - xmlText: 3 - xmlText.clone: 1 - XmlXpathContext: 5 - xmlXpathContext: 3 - xmlXpathContext.clone: 1 - XsltStylesheet: 4 - xsltStylesheet: 3 - xsltStylesheet.clone: 1 - clojure.asm: 1 - java.lang.reflect.Constructor: 1 - java.lang.reflect.Method: 1 - Type: 42 - VOID: 5 - BOOLEAN: 6 - CHAR: 6 - BYTE: 6 - SHORT: 6 - INT: 6 - FLOAT: 6 - LONG: 7 - DOUBLE: 7 - ARRAY: 3 - OBJECT: 3 - VOID_TYPE: 3 - BOOLEAN_TYPE: 3 - CHAR_TYPE: 3 - BYTE_TYPE: 3 - SHORT_TYPE: 3 - INT_TYPE: 3 - FLOAT_TYPE: 3 - LONG_TYPE: 3 - DOUBLE_TYPE: 3 - sort: 18 - buf: 43 - 'off': 25 - len: 24 - this.sort: 2 - this.len: 2 - this.buf: 2 - this.off: 1 - getType: 10 - typeDescriptor: 1 - typeDescriptor.toCharArray: 1 - Class: 10 - c.isPrimitive: 2 - Integer.TYPE: 2 - Void.TYPE: 3 - Boolean.TYPE: 2 - Byte.TYPE: 2 - Character.TYPE: 2 - Short.TYPE: 2 - Double.TYPE: 2 - Float.TYPE: 2 - getDescriptor: 11 - getObjectType: 1 - l: 5 - name.length: 2 - name.getChars: 1 - getArgumentTypes: 2 - methodDescriptor: 2 - methodDescriptor.toCharArray: 2 - size: 8 - while: 9 - car: 18 - break: 1 - .len: 1 - Method: 3 - classes: 2 - method.getParameterTypes: 1 - types: 3 - classes.length: 2 - getReturnType: 2 - methodDescriptor.indexOf: 1 - method.getReturnType: 1 - switch: 5 - case: 46 - default: 5 - getSort: 1 - getDimensions: 3 - getElementType: 2 - getClassName: 1 - StringBuffer: 14 - b: 1 - .getClassName: 1 - b.append: 1 - b.toString: 1 - .replace: 2 - getInternalName: 2 - buf.toString: 4 - getMethodDescriptor: 2 - returnType: 1 - argumentTypes: 2 - buf.append: 21 - argumentTypes.length: 1 - .getDescriptor: 1 - returnType.getDescriptor: 1 - c.getName: 1 - getConstructorDescriptor: 1 - Constructor: 1 - parameters: 4 - c.getParameterTypes: 1 - parameters.length: 2 - .toString: 1 - m: 1 - m.getParameterTypes: 1 - m.getReturnType: 1 - d: 10 - d.isPrimitive: 1 - d.isArray: 1 - d.getComponentType: 1 - d.getName: 1 - name.charAt: 1 - getSize: 1 - ! '||': 8 - getOpcode: 1 - opcode: 17 - Opcodes.IALOAD: 1 - Opcodes.IASTORE: 1 - equals: 2 - Object: 31 - o: 12 - t: 6 - t.sort: 1 - Type.OBJECT: 2 - Type.ARRAY: 2 - t.len: 1 - t.off: 1 - end: 4 - t.buf: 1 - hashCode: 1 - hc: 4 - toString: 1 - clojure.lang: 1 - java.lang.ref.Reference: 1 - java.math.BigInteger: 1 - java.util.concurrent.ConcurrentHashMap: 1 - java.lang.ref.SoftReference: 1 - java.lang.ref.ReferenceQueue: 1 - Util: 1 - equiv: 17 - k1: 40 - k2: 38 - Number: 9 - Numbers.equal: 1 - IPersistentCollection: 5 - pcequiv: 2 - k1.equals: 2 - long: 4 - double: 4 - c1: 2 - c2: 2 - .equiv: 2 - identical: 1 - classOf: 1 - x: 7 - x.getClass: 1 - compare: 1 - Numbers.compare: 1 - Comparable: 1 - .compareTo: 1 - hash: 3 - o.hashCode: 2 - hasheq: 1 - Numbers.hasheq: 1 - IHashEq: 2 - .hasheq: 1 - hashCombine: 1 - seed: 5 - //a: 1 - la: 1 - boost: 1 - e3779b9: 1 - <<: 1 - isPrimitive: 1 - isInteger: 1 - Long: 1 - BigInt: 1 - BigInteger: 1 - ret1: 2 - ret: 4 - nil: 2 - ISeq: 2 - <K,V>: 1 - clearCache: 1 - ReferenceQueue: 1 - rq: 1 - ConcurrentHashMap: 1 - K: 2 - Reference: 3 - <V>: 3 - cache: 1 - //cleanup: 1 - any: 1 - dead: 1 - entries: 1 - rq.poll: 2 - Map.Entry: 1 - cache.entrySet: 1 - val: 3 - e.getValue: 1 - val.get: 1 - cache.remove: 1 - e.getKey: 1 - RuntimeException: 5 - runtimeException: 2 - s: 4 - Throwable: 4 - sneakyThrow: 1 - throw: 2 - NullPointerException: 1 - Util.: 1 - <RuntimeException>: 1 - sneakyThrow0: 2 - ! '@SuppressWarnings': 1 - <T>: 1 - T: 2 - JavaScript: - /*: 80 - ! '*/': 87 - function: 345 - (: 2299 - ): 2318 - ! '{': 875 - ;: 1632 - //: 637 - var: 306 - Modal: 2 - content: 9 - options: 27 - this.options: 1 - this.: 2 - element: 6 - .delegate: 1 - .proxy: 1 - this.hide: 1 - this: 79 - ! '}': 872 - Modal.prototype: 1 - constructor: 9 - toggle: 18 - return: 259 - this.isShown: 3 - show: 21 - that: 4 - e: 47 - .Event: 1 - element.trigger: 1 - if: 370 - ! '||': 88 - e.isDefaultPrevented: 1 - .addClass: 1 - 'true': 51 - escape.call: 1 - backdrop.call: 1 - transition: 2 - .support.transition: 1 - ! '&&': 114 - that.: 3 - element.hasClass: 1 - element.parent: 1 - .length: 9 - element.appendTo: 1 - document.body: 4 - //don: 1 - in: 36 - shown: 2 - hide: 22 - body: 26 - modal: 4 - ! '-': 311 - open: 1 - fade: 4 - hidden: 34 - <div>: 24 - class=: 13 - static: 12 - keyup.dismiss.modal: 2 - object: 86 - string: 140 - click.modal.data: 1 - api: 1 - data: 25 - target: 5 - href: 19 - .extend: 1 - target.data: 1 - this.data: 1 - e.preventDefault: 1 - target.modal: 1 - option: 13 - window.jQuery: 4 - Animal: 12 - Horse: 12 - Snake: 12 - sam: 4 - tom: 4 - __hasProp: 2 - Object.prototype.hasOwnProperty: 2 - __extends: 6 - child: 15 - parent: 14 - for: 33 - key: 28 - __hasProp.call: 2 - ctor: 6 - this.constructor: 3 - ctor.prototype: 3 - parent.prototype: 6 - child.prototype: 4 - new: 49 - child.__super__: 3 - name: 109 - this.name: 5 - Animal.prototype.move: 2 - meters: 4 - alert: 9 - +: 329 - Snake.__super__.constructor.apply: 2 - arguments: 21 - Snake.prototype.move: 2 - Snake.__super__.move.call: 2 - Horse.__super__.constructor.apply: 2 - Horse.prototype.move: 2 - Horse.__super__.move.call: 2 - sam.move: 2 - tom.move: 2 - .call: 7 - .hasOwnProperty: 2 - Animal.name: 1 - _super: 4 - Snake.name: 1 - Horse.name: 1 - console.log: 2 - util: 1 - require: 7 - net: 1 - stream: 1 - url: 11 - EventEmitter: 3 - .EventEmitter: 1 - FreeList: 1 - .FreeList: 1 - HTTPParser: 1 - process.binding: 1 - .HTTPParser: 1 - assert: 7 - .ok: 1 - END_OF_FILE: 1 - debug: 17 - process.env.NODE_DEBUG: 2 - /http/.test: 1 - x: 21 - console.error: 2 - else: 119 - parserOnHeaders: 1 - headers: 27 - this.maxHeaderPairs: 2 - <: 43 - this._headers.length: 1 - this._headers: 13 - this._headers.concat: 1 - this._url: 1 - parserOnHeadersComplete: 1 - info: 1 - parser: 28 - info.headers: 1 - info.url: 1 - parser._headers: 5 - parser._url: 3 - .: 80 - re: 6 - 'no': 7 - limit: 1 - parser.maxHeaderPairs: 6 - n: 106 - Math.min: 2 - i: 155 - k: 15 - v: 9 - parser.incoming._addHeaderLine: 2 - info.method: 2 - parser.incoming.method: 1 - parser.incoming.statusCode: 2 - info.statusCode: 1 - parser.incoming.upgrade: 3 - info.upgrade: 2 - skipBody: 3 - 'false': 53 - parser.onIncoming: 4 - parser.incoming: 10 - info.shouldKeepAlive: 1 - parserOnBody: 1 - b: 17 - start: 12 - len: 11 - slice: 10 - b.slice: 1 - parser.incoming._paused: 1 - parser.incoming._pendings.length: 1 - parser.incoming._pendings.push: 1 - parser.incoming._emitData: 1 - parserOnMessageComplete: 1 - parser.incoming.complete: 2 - headers.length: 1 - parsers: 1 - r: 69 - Continue: 1 - Switching: 1 - Protocols: 1 - Processing: 1 - OK: 2 - Created: 1 - Accepted: 1 - Non: 1 - Authoritative: 1 - Information: 1 - 'No': 7 - Content: 6 - Reset: 1 - Partial: 1 - Multi: 1 - Status: 1 - Multiple: 1 - Choices: 1 - Moved: 2 - Permanently: 1 - Temporarily: 1 - See: 1 - Other: 1 - Not: 5 - Modified: 7 - Use: 1 - Proxy: 2 - Temporary: 1 - Redirect: 1 - Bad: 1 - Request: 4 - Unauthorized: 1 - Payment: 1 - Required: 3 - Forbidden: 1 - Found: 1 - Method: 1 - Allowed: 1 - Acceptable: 1 - Authentication: 1 - Time: 1 - out: 4 - Conflict: 1 - Gone: 1 - Length: 1 - Precondition: 1 - Failed: 2 - Entity: 1 - Too: 2 - Large: 2 - URI: 1 - Unsupported: 1 - Media: 1 - Type: 4 - Requested: 7 - Range: 1 - Satisfiable: 1 - Expectation: 1 - I: 1 - connectionExpression: 1 - /Connection/i: 1 - transferEncodingExpression: 1 - /Transfer: 1 - Encoding/i: 1 - closeExpression: 1 - /close/i: 1 - chunkExpression: 1 - /chunk/i: 1 - contentLengthExpression: 1 - /Content: 1 - Length/i: 1 - dateExpression: 1 - /Date/i: 1 - expectExpression: 1 - /Expect/i: 1 - continueExpression: 1 - /100: 1 - continue/i: 1 - dateCache: 5 - utcDate: 1 - d: 259 - Date: 5 - d.toUTCString: 1 - setTimeout: 2 - undefined: 87 - d.getMilliseconds: 1 - IncomingMessage: 1 - socket: 32 - stream.Stream.call: 1 - this.socket: 8 - this.connection: 6 - this.httpVersion: 1 - 'null': 158 - this.complete: 1 - this.headers: 1 - this.trailers: 1 - this.readable: 1 - this._paused: 1 - this._pendings: 1 - this._endEmitted: 1 - this.url: 1 - string_decoder: 1 - end: 11 - set: 21 - cookie: 2 - accept: 4 - charset: 2 - encoding: 12 - language: 1 - connection: 1 - pragma: 1 - link: 5 - www: 6 - authenticate: 1 - sec: 2 - websocket: 2 - extensions: 1 - protocol: 1 - ascii: 1 - GET: 12 - /index.html: 1 - HTTP/1.1: 2 - Connection: 2 - keep: 1 - alive: 1 - close: 1 - Transfer: 1 - Encoding: 1 - chunked: 1 - t: 83 - the: 8 - at: 1 - of: 4 - message.: 1 - this.chunkedEncoding: 4 - this._header: 6 - messageHeader: 1 - CRLF: 9 - this._headerSent: 2 - sentExpect: 1 - this._send: 8 - and: 3 - value: 40 - are: 2 - required: 1 - setHeader: 1 - Can: 2 - name.toLowerCase: 7 - this._headerNames: 5 - OutgoingMessage.prototype.getHeader: 1 - arguments.length: 4 - throw: 16 - Error: 15 - OutgoingMessage.prototype.removeHeader: 1 - delete: 8 - OutgoingMessage.prototype._renderHeaders: 1 - keys: 6 - Object.keys: 3 - l: 23 - keys.length: 3 - OutgoingMessage.prototype.write: 1 - chunk: 10 - this._implicitHeader: 1 - this._hasBody: 3 - typeof: 20 - Buffer.isBuffer: 1 - TypeError: 2 - chunk.length: 2 - ret: 53 - Buffer.byteLength: 2 - len.toString: 2 - OutgoingMessage.prototype.addTrailers: 1 - this._trailer: 3 - This: 1 - type: 29 - response: 1 - MUST: 1 - NOT: 1 - have: 1 - a: 39 - body.: 1 - Ignoring: 1 - passed: 2 - to: 11 - doing: 1 - .toString: 3 - this.connection.write: 2 - this.write: 1 - hot: 1 - ve: 1 - sent: 1 - this.output.length: 2 - this.connection._httpMessage: 1 - this._finish: 2 - OutgoingMessage.prototype._finish: 1 - instanceof: 10 - ServerResponse: 5 - DTRACE_HTTP_SERVER_RESPONSE: 1 - ClientRequest: 6 - DTRACE_HTTP_CLIENT_REQUEST: 1 - this.emit: 2 - OutgoingMessage.prototype._flush: 1 - while: 10 - this.socket.writable: 2 - this.output.shift: 1 - this.outputEncodings.shift: 1 - this.socket.write: 1 - this.finished: 1 - req: 36 - OutgoingMessage.call: 2 - req.method: 5 - this.sendDate: 1 - req.httpVersionMajor: 2 - req.httpVersionMinor: 2 - this.useChunkedEncodingByDefault: 1 - this.shouldKeepAlive: 2 - util.inherits: 5 - OutgoingMessage: 2 - exports.ServerResponse: 1 - ServerResponse.prototype.statusCode: 1 - onServerResponseClose: 3 - this._httpMessage.emit: 2 - ServerResponse.prototype.assignSocket: 1 - socket._httpMessage: 10 - socket.on: 4 - this._flush: 1 - ServerResponse.prototype.detachSocket: 1 - socket.removeListener: 7 - ServerResponse.prototype.writeContinue: 1 - this._writeRaw: 1 - this._sent100: 2 - ServerResponse.prototype._implicitHeader: 1 - this.writeHead: 1 - this.statusCode: 2 - ServerResponse.prototype.writeHead: 1 - statusCode: 7 - reasonPhrase: 4 - headerIndex: 4 - STATUS_CODES: 1 - obj: 16 - this._renderHeaders: 3 - Array.isArray: 3 - field: 5 - obj.length: 1 - obj.push: 1 - statusLine: 2 - statusCode.toString: 1 - this._expect_continue: 1 - this._storeHeader: 2 - ServerResponse.prototype.writeHeader: 1 - this.writeHead.apply: 1 - Agent: 5 - self: 13 - self.options: 2 - self.requests: 6 - self.sockets: 3 - self.maxSockets: 1 - self.options.maxSockets: 1 - Agent.defaultMaxSockets: 2 - self.on: 1 - host: 28 - port: 29 - localAddress: 15 - .shift: 1 - .onSocket: 1 - socket.destroy: 10 - self.createConnection: 2 - net.createConnection: 3 - exports.Agent: 1 - Agent.prototype.defaultPort: 1 - Agent.prototype.addRequest: 1 - this.sockets: 9 - this.maxSockets: 1 - req.onSocket: 1 - this.createSocket: 2 - this.requests: 5 - .push: 2 - Agent.prototype.createSocket: 1 - util._extend: 1 - options.port: 4 - options.host: 4 - options.localAddress: 3 - s: 44 - onFree: 3 - self.emit: 9 - s.on: 4 - onClose: 3 - err: 3 - self.removeSocket: 2 - onRemove: 3 - s.removeListener: 3 - Agent.prototype.removeSocket: 1 - index: 3 - .indexOf: 1 - .splice: 1 - .emit: 1 - globalAgent: 3 - exports.globalAgent: 1 - cb: 14 - self.agent: 3 - options.agent: 3 - defaultPort: 3 - options.defaultPort: 1 - options.hostname: 1 - options.setHost: 1 - setHost: 2 - self.socketPath: 4 - options.socketPath: 1 - method: 25 - self.method: 3 - options.method: 2 - .toUpperCase: 2 - self.path: 3 - options.path: 2 - self.once: 2 - options.headers: 7 - self.setHeader: 1 - this.getHeader: 2 - hostHeader: 3 - this.setHeader: 2 - options.auth: 2 - //basic: 1 - auth: 1 - Buffer: 1 - self.useChunkedEncodingByDefault: 2 - self._storeHeader: 2 - self.getHeader: 1 - self._renderHeaders: 1 - self._last: 3 - self.shouldKeepAlive: 3 - options.createConnection: 4 - self.onSocket: 3 - self.agent.addRequest: 1 - conn: 3 - self._deferToConnect: 1 - self._flush: 1 - exports.ClientRequest: 1 - ClientRequest.prototype._implicitHeader: 1 - this.method: 1 - this.path: 1 - ClientRequest.prototype.abort: 1 - this.socket.destroy: 1 - this._deferToConnect: 3 - createHangUpError: 3 - error: 13 - error.code: 1 - freeParser: 9 - parser.socket: 5 - parser.socket.onend: 1 - parser.socket.ondata: 1 - parser.socket.parser: 1 - parsers.free: 1 - req.parser: 2 - socketCloseListener: 4 - socket.parser: 4 - req.emit: 11 - req.res: 9 - req.res.readable: 1 - req.res.emit: 1 - res: 15 - req.res._emitPending: 1 - res._emitEnd: 1 - res.emit: 1 - req._hadError: 3 - parser.finish: 6 - socketErrorListener: 4 - err.message: 1 - err.stack: 1 - socketOnEnd: 2 - this._httpMessage: 3 - this.parser: 2 - socketOnData: 2 - parser.execute: 2 - bytesParsed: 4 - socket.ondata: 4 - socket.onend: 4 - bodyHead: 4 - d.slice: 2 - eventName: 14 - req.listeners: 1 - req.upgradeOrConnect: 2 - socket.emit: 2 - parserOnIncomingClient: 2 - shouldKeepAlive: 5 - res.upgrade: 1 - isHeadResponse: 3 - res.statusCode: 1 - req.shouldKeepAlive: 3 - DTRACE_HTTP_CLIENT_RESPONSE: 1 - res.req: 2 - res.on: 2 - responseOnEnd: 2 - req.socket: 3 - socket.writable: 4 - socket.destroySoon: 2 - ClientRequest.prototype.onSocket: 1 - process.nextTick: 1 - parsers.alloc: 2 - req.connection: 1 - parser.reinitialize: 2 - HTTPParser.RESPONSE: 1 - httpSocketSetup: 3 - req.maxHeadersCount: 2 - <<: 2 - ClientRequest.prototype._deferToConnect: 1 - arguments_: 3 - onSocket: 3 - self.socket.writable: 1 - self.socket: 5 - .apply: 3 - self.socket.once: 1 - ClientRequest.prototype.setTimeout: 1 - msecs: 4 - callback: 8 - this.once: 2 - emitTimeout: 4 - this.socket.setTimeout: 1 - this.socket.once: 1 - this.setTimeout: 3 - sock: 1 - ClientRequest.prototype.setNoDelay: 1 - ClientRequest.prototype.setSocketKeepAlive: 1 - ClientRequest.prototype.clearTimeout: 1 - exports.request: 2 - url.parse: 1 - options.protocol: 3 - exports.get: 1 - req.end: 1 - ondrain: 3 - Server: 6 - requestListener: 6 - net.Server.call: 1 - allowHalfOpen: 1 - this.addListener: 2 - this.httpAllowHalfOpen: 1 - connectionListener: 3 - net.Server: 1 - exports.Server: 1 - exports.createServer: 1 - outgoing: 2 - incoming: 2 - abortIncoming: 3 - incoming.length: 2 - incoming.shift: 2 - serverSocketCloseListener: 3 - socket.setTimeout: 1 - ! '*': 144 - socket.once: 1 - HTTPParser.REQUEST: 1 - this.maxHeadersCount: 2 - socket.addListener: 2 - self.listeners: 2 - self.httpAllowHalfOpen: 1 - socket.end: 2 - outgoing.length: 2 - ._last: 1 - socket._httpMessage._last: 1 - incoming.push: 1 - res.shouldKeepAlive: 1 - DTRACE_HTTP_SERVER_REQUEST: 1 - outgoing.push: 1 - res.assignSocket: 1 - res.detachSocket: 1 - res._last: 1 - m: 8 - outgoing.shift: 1 - m.assignSocket: 1 - req.headers: 2 - continueExpression.test: 1 - res._expect_continue: 1 - res.writeContinue: 1 - exports._connectionListener: 1 - Client: 6 - this.host: 1 - this.port: 1 - this.agent: 1 - maxSockets: 1 - Client.prototype.request: 1 - path: 4 - self.host: 1 - self.port: 1 - c: 13 - c.on: 2 - exports.Client: 1 - module.deprecate: 2 - exports.createClient: 1 - cubes: 4 - list: 6 - math: 4 - num: 12 - number: 40 - opposite: 6 - race: 4 - square: 22 - __slice: 2 - Array.prototype.slice: 2 - root: 2 - Math.sqrt: 2 - cube: 2 - runners: 6 - winner: 6 - __slice.call: 2 - print: 2 - elvis: 4 - _i: 10 - _len: 6 - _results: 6 - list.length: 2 - _results.push: 2 - math.cube: 2 - .slice: 2 - A: 2 - w: 12 - ma: 2 - c.isReady: 1 - try: 7 - s.documentElement.doScroll: 1 - catch: 5 - c.ready: 1 - Qa: 1 - b.src: 2 - c.ajax: 1 - async: 4 - dataType: 2 - c.globalEval: 1 - b.text: 1 - b.textContent: 1 - b.innerHTML: 1 - events: 16 - click: 8 - mouseenter: 7 - mouseleave: 7 - live.: 3 - ! '&': 22 - scrollTo: 2 - .4.2: 1 - find: 9 - boolean: 18 - ready: 7 - complete: 8 - DOMContentLoaded: 9 - load: 6 - onreadystatechange: 8 - onload: 4 - Function: 4 - Array: 13 - Object: 5 - isPrototypeOf: 4 - /bfnrt: 3 - ! '|': 90 - u: 43 - fA: 4 - F: 6 - /g: 18 - .replace: 10 - /: 96 - Invalid: 9 - JSON: 7 - head: 5 - script: 39 - text/javascript: 10 - div: 53 - none: 33 - <link/>: 4 - <table>: 29 - </table>: 27 - <a>: 12 - href=: 8 - style=: 15 - </a>: 8 - <input>: 5 - type=: 5 - tbody: 13 - style: 8 - /a: 4 - input: 49 - 'on': 23 - select: 16 - window.: 4 - onclick: 11 - name=: 5 - checked=: 1 - px: 122 - submit: 11 - change: 16 - htmlFor: 1 - class: 18 - className: 4 - readOnly: 1 - maxLength: 1 - cellSpacing: 1 - rowSpan: 1 - colSpan: 1 - tabIndex: 5 - useMap: 1 - frameBorder: 1 - jQuery: 12 - getData: 6 - setData: 6 - fx: 40 - queue: 21 - inprogress: 12 - addClass: 4 - removeClass: 4 - __className__: 8 - one: 7 - property: 12 - can: 5 - Syntax: 5 - unrecognized: 5 - expression: 5 - ID: 5 - NAME: 4 - TAG: 6 - u00c0: 4 - uFFFF: 4 - leftMatch: 4 - attrMap: 4 - attrHandle: 4 - g: 3 - g.getAttribute: 1 - relative: 15 - h: 12 - W/.test: 1 - h.toLowerCase: 1 - q: 5 - g.length: 1 - p: 6 - ? <q;m++)if(p=g[m]){for(;(p=p.previousSibling)&&p.nodeType!==1;);g[m]=l||p&&p.nodeName.toLowerCase()===h?p||false:p===h}l&&k.filter(h,g,true)},"> - : 1 - parentNode: 12 - previousSibling: 16 - nth: 8 - even: 4 - odd: 4 - not: 20 - text: 21 - radio: 23 - checkbox: 19 - file: 5 - password: 5 - image: 7 - reset: 4 - button: 17 - contains: 7 - only: 4 - first: 9 - last: 6 - id: 26 - sourceIndex: 1 - ! '#': 11 - <p>: 4 - </p>: 4 - .TEST: 4 - </div>: 21 - CLASS: 4 - HTML: 4 - filter: 7 - nextSibling: 12 - iframe: 7 - </"+d+">: 1 - <select>: 4 - multiple=: 4 - </select>: 4 - <fieldset>: 4 - </fieldset>: 4 - <tbody>: 12 - </tbody>: 12 - <tr>: 11 - </tr>: 11 - <colgroup>: 4 - </colgroup>: 4 - <map>: 4 - </map>: 4 - before: 7 - after: 10 - position: 13 - absolute: 12 - top: 11 - left: 15 - margin: 18 - border: 14 - solid: 2 - ! '#000': 3 - padding: 12 - width: 29 - height: 24 - <td>: 10 - </td>: 10 - fixed: 13 - marginTop: 13 - marginLeft: 11 - using: 6 - borderTopWidth: 4 - borderLeftWidth: 4 - Left: 6 - Top: 6 - scroll: 12 - pageXOffset: 7 - pageYOffset: 4 - Height: 3 - Width: 8 - inner: 5 - outer: 4 - CSS1Compat: 4 - client: 10 - offset: 19 - A.jQuery: 1 - A.: 1 - window: 15 - document: 11 - window.document: 2 - navigator: 3 - window.navigator: 2 - location: 2 - window.location: 4 - selector: 37 - context: 27 - jQuery.fn.init: 2 - rootjQuery: 6 - _jQuery: 2 - _: 13 - quickExpr: 2 - <[\w\W]+>: 2 - rnotwhite: 2 - S/: 2 - trimLeft: 2 - trimRight: 2 - rdigit: 1 - d/: 1 - rsingleTag: 2 - <(\w+)\s*\/?>: 2 - <\/\1>: 2 - rvalidchars: 2 - rvalidescape: 2 - d*: 6 - eE: 2 - rvalidbraces: 2 - s*: 8 - rwebkit: 2 - webkit: 4 - w.: 9 - ropera: 2 - opera: 2 - .*version: 2 - rmsie: 2 - msie: 2 - rmozilla: 2 - mozilla: 2 - .*: 10 - rv: 2 - userAgent: 1 - navigator.userAgent: 1 - browserMatch: 1 - readyList: 1 - toString: 3 - Object.prototype.toString: 2 - hasOwn: 1 - push: 4 - Array.prototype.push: 1 - trim: 1 - String.prototype.trim: 1 - indexOf: 1 - Array.prototype.indexOf: 1 - class2type: 1 - jQuery.fn: 1 - jQuery.prototype: 1 - init: 1 - match: 12 - elem: 83 - doc: 3 - selector.nodeType: 1 - this.context: 4 - this.length: 3 - this.selector: 3 - selector.charAt: 2 - selector.length: 2 - quickExpr.exec: 1 - context.ownerDocument: 1 - rsingleTag.exec: 1 - jQuery.isPlainObject: 1 - document.createElement: 16 - jQuery.fn.attr.call: 1 - doc.createElement: 1 - jQuery.buildFragment: 1 - ret.cacheable: 1 - jQuery.clone: 1 - ret.fragment: 2 - .childNodes: 1 - jQuery.merge: 1 - document.getElementById: 1 - elem.parentNode: 7 - elem.id: 1 - rootjQuery.find: 1 - context.jquery: 1 - .find: 2 - jQuery.isFunction: 1 - rootjQuery.ready: 1 - selector.selector: 2 - selector.context: 1 - jQuery.makeArray: 1 - .6.1: 2 - array: 9 - setInterval: 3 - ! '@': 3 - text/xml: 6 - Microsoft.XMLDOM: 3 - parsererror: 6 - XML: 3 - eval: 2 - regexp: 5 - compatible: 3 - Boolean: 6 - Number: 3 - String: 3 - RegExp: 8 - xA0: 3 - done: 5 - fail: 2 - isResolved: 2 - isRejected: 2 - promise: 2 - then: 2 - always: 2 - pipe: 2 - resolve: 3 - reject: 3 - checked: 9 - zoom: 4 - inline: 23 - td: 3 - Bubbles: 3 - embed: 2 - clsid: 3 - D27CDB6E: 3 - AE6D: 3 - cf: 3 - B8: 3 - applet: 2 - classid: 3 - changeData: 5 - toJSON: 3 - defer: 6 - mark: 22 - get: 25 - disabled: 3 - optgroup: 3 - getAttribute: 2 - form: 13 - default: 4 - case: 17 - is: 10 - val: 9 - elem.value: 8 - elem.setAttribute: 4 - attributeNode: 4 - elem.getAttributeNode: 5 - attributeNode.specified: 2 - parseInt: 10 - attributeNode.value: 2 - rfocusable.test: 2 - elem.nodeName: 4 - rclickable.test: 2 - elem.href: 2 - propFix: 2 - tabindex: 2 - readonly: 2 - maxlength: 2 - cellspacing: 2 - cellpadding: 2 - rowspan: 2 - colspan: 2 - usemap: 2 - frameborder: 2 - contenteditable: 2 - prop: 12 - nType: 10 - elem.nodeType: 4 - hooks: 12 - notxml: 5 - jQuery.isXMLDoc: 2 - jQuery.propFix: 6 - jQuery.propHooks: 2 - hooks.set: 2 - hooks.get: 2 - propHooks: 2 - boolHook: 2 - propName: 8 - jQuery.removeAttr: 2 - jQuery.attrHooks.value: 1 - formHook: 3 - jQuery.nodeName: 4 - formHook.get: 1 - formHook.set: 1 - jQuery.support.getSetAttribute: 1 - jQuery.attrFix: 1 - jQuery.attrHooks.name: 1 - jQuery.valHooks.button: 2 - ret.nodeValue: 2 - auto: 24 - src: 8 - mouseover: 8 - mouseout: 8 - handle: 3 - altKey: 2 - attrChange: 2 - attrName: 2 - bubbles: 2 - cancelable: 2 - charCode: 2 - clientX: 2 - clientY: 2 - ctrlKey: 2 - currentTarget: 2 - detail: 1 - eventPhase: 2 - fromElement: 2 - handler: 1 - keyCode: 2 - layerX: 1 - layerY: 1 - metaKey: 2 - newValue: 1 - offsetX: 2 - offsetY: 2 - pageX: 2 - pageY: 2 - prevValue: 1 - relatedNode: 2 - relatedTarget: 2 - screenX: 2 - screenY: 2 - shiftKey: 2 - srcElement: 2 - toElement: 2 - view: 3 - wheelDelta: 1 - which: 2 - clone: 1 - click.specialSubmit: 1 - keypress.specialSubmit: 1 - .specialSubmit: 1 - multiple: 2 - _change_data: 3 - focusout: 7 - textarea: 4 - .specialChange: 2 - bubbling: 2 - focusin: 6 - bind: 2 - unload: 3 - live: 3 - lastToggle: 4 - die: 2 - hover: 1 - blur: 3 - focus: 3 - resize: 2 - dblclick: 2 - mousedown: 2 - mouseup: 2 - mousemove: 2 - keydown: 2 - keypress: 2 - keyup: 2 - hasDuplicate: 1 - baseHasDuplicate: 2 - rBackslash: 1 - rNonWord: 1 - W/: 1 - .sort: 1 - Sizzle: 1 - results: 4 - seed: 4 - origContext: 1 - context.nodeType: 3 - checkSet: 22 - extra: 1 - cur: 5 - pop: 2 - prune: 2 - contextXML: 4 - Sizzle.isXML: 1 - parts: 5 - soFar: 1 - do: 2 - chunker.exec: 1 - elem.getAttribute: 4 - part: 28 - isPartStr: 14 - isTag: 6 - rNonWord.test: 4 - isPartStrNotTag: 6 - part.toLowerCase: 4 - checkSet.length: 4 - elem.previousSibling: 2 - elem.nodeName.toLowerCase: 2 - Sizzle.filter: 6 - parent.nodeName.toLowerCase: 2 - __sizzle__: 3 - .CLASS: 2 - ! '#ID': 2 - test: 9 - closest: 3 - <$1>: 6 - </$2>: 6 - replaceWith: 6 - tr: 4 - table: 6 - small: 2 - append: 3 - prepend: 3 - getElementsByTagName: 2 - querySelectorAll: 2 - length: 3 - XHTML: 2 - block: 15 - Right: 3 - Bottom: 3 - opacity: 21 - zIndex: 2 - fontWeight: 2 - lineHeight: 2 - widows: 2 - orphans: 2 - float: 9 - cssFloat: 6 - styleFloat: 3 - alpha: 3 - display: 24 - right: 15 - marginRight: 5 - fontSize: 3 - em: 3 - unshift: 3 - POST: 4 - html: 7 - ajaxStart: 6 - ajaxStop: 6 - ajaxComplete: 6 - ajaxError: 3 - ajaxSuccess: 3 - ajaxSend: 6 - post: 3 - json: 15 - application/x: 8 - urlencoded: 5 - application/xml: 3 - text/html: 3 - text/plain: 3 - application/json: 3 - ! '*/*': 4 - responseXML: 3 - responseText: 3 - source_type: 2 - destination_type: 2 - xml: 3 - abort: 3 - Last: 3 - Etag: 3 - notmodified: 3 - success: 6 - ajax: 3 - Success: 3 - http: 6 - If: 6 - Since: 3 - None: 3 - Match: 3 - Accept: 3 - '.01': 4 - Transport: 3 - timeout: 3 - old: 2 - conversion: 3 - from: 4 - jsonp: 6 - was: 3 - called: 3 - application/javascript: 3 - application/ecmascript: 3 - ecmascript: 3 - Microsoft.XMLHTTP: 3 - withCredentials: 3 - X: 9 - With: 8 - XMLHttpRequest: 3 - marginBottom: 3 - paddingTop: 3 - paddingBottom: 3 - paddingLeft: 3 - paddingRight: 3 - olddisplay: 15 - each: 2 - rotate: 2 - rad: 2 - Y: 3 - overflow: 3 - <">: 4 - nodeName: 3 - <!doctype>: 3 - <html>: 3 - <body>: 3 - </body>: 2 - </html>: 2 - getBoundingClientRect: 3 - visible: 4 - cellpadding=: 3 - cellspacing=: 3 - cy: 1 - f.isWindow: 1 - a.nodeType: 1 - a.defaultView: 1 - a.parentWindow: 1 - cv: 1 - cj: 1 - f: 58 - .appendTo: 1 - b.css: 1 - b.remove: 1 - <"||a.charAt(a.length-1)!==">: 1 - a.getAttribute: 2 - j.test: 1 - b.toLowerCase: 1 - a.length: 1 - ? <g;f++)if(h=a[f]){while((h=h.previousSibling)&&h.nodeType!==1);a[f]=e||h&&h.nodeName.toLowerCase()===b?h||!1:h===b}e&&k.filter(b,a,!0)},"> - : 1 - swing: 1 - a.jQuery: 1 - a.: 1 - rdashAlpha: 1 - z: 2 - /ig: 1 - rmsPrefix: 1 - ms: 2 - fcamelCase: 1 - all: 4 - letter: 3 - charAt: 1 - '1': 8 - ! '#id': 1 - .7.2: 1 - once: 5 - memory: 6 - fired: 1 - memorized: 1 - pending: 1 - notify: 1 - resolved: 1 - rejected: 1 - nav: 4 - <:nav>: 1 - </:nav>: 1 - visibility: 2 - ! '%': 17 - parsedAttrs: 2 - .run: 4 - nodeHook: 3 - nodeHook.get: 1 - nodeHook.set: 1 - jQuery.attrHooks.tabindex: 1 - jQuery.propHooks.tabIndex: 1 - attrNode: 2 - jQuery.prop: 1 - attrNode.nodeValue: 1 - getSetAttribute: 1 - fixSpecified: 2 - coords: 1 - ! '**': 3 - timeStamp: 1 - char: 1 - buttons: 1 - click._submit: 1 - keypress._submit: 1 - submit._submit: 1 - ._submit: 1 - propertychange._change: 1 - click._change: 1 - beforeactivate._change: 1 - change._change: 1 - ._change: 1 - contextmenu: 1 - expando: 1 - Math.random: 1 - ll: 2 - be: 3 - faster: 1 - an: 1 - parts.length: 5 - Expr.match.ID.test: 2 - Sizzle.find: 2 - parts.shift: 1 - ret.expr: 4 - ret.set: 4 - expr: 1 - parts.pop: 3 - makeArray: 2 - context.parentNode: 2 - Expr.relative: 1 - global: 1 - abbr: 2 - article: 3 - aside: 3 - audio: 11 - bdi: 2 - canvas: 29 - datalist: 2 - details: 3 - figcaption: 3 - figure: 3 - footer: 3 - header: 3 - hgroup: 3 - meter: 2 - output: 2 - progress: 2 - section: 4 - summary: 2 - time: 3 - video: 3 - <(?:">: 1 - nodeNames: 1 - _submit_attached: 1 - _change_attached: 1 - fillOpacity: 1 - awesome: 1 - hack: 1 - by: 1 - Dean: 1 - Edwards: 1 - computed: 1 - percentage: 1 - specified: 1 - used: 1 - flat: 1 - UTF: 1 - expand: 1 - fxshow: 6 - jquery: 1 - Date.prototype.toJSON: 2 - isFinite: 1 - this.valueOf: 2 - this.getUTCFullYear: 1 - this.getUTCMonth: 1 - this.getUTCDate: 1 - this.getUTCHours: 1 - this.getUTCMinutes: 1 - this.getUTCSeconds: 1 - String.prototype.toJSON: 1 - Number.prototype.toJSON: 1 - Boolean.prototype.toJSON: 1 - cx: 1 - u0000: 1 - u00ad: 1 - u0600: 1 - u0604: 1 - u070f: 1 - u17b4: 1 - u17b5: 1 - u200c: 1 - u200f: 1 - u2028: 3 - u202f: 1 - u2060: 1 - u206f: 1 - ufeff: 1 - ufff0: 1 - uffff: 1 - escapable: 1 - JSON.stringify: 2 - JSON.parse: 1 - PUT: 2 - DELETE: 2 - _id: 1 - add: 1 - remove: 3 - ties: 1 - collection.: 1 - _removeReference: 1 - model: 12 - model.collection: 2 - model.unbind: 1 - this._onModelEvent: 1 - _onModelEvent: 1 - ev: 5 - collection: 2 - this._remove: 1 - model.idAttribute: 2 - this._byId: 2 - model.previous: 1 - model.id: 1 - this.trigger.apply: 2 - methods: 3 - _.each: 1 - Backbone.Collection.prototype: 1 - this.models: 1 - .concat: 2 - _.toArray: 1 - Backbone.Router: 1 - options.routes: 2 - this.routes: 4 - this._bindRoutes: 1 - this.initialize.apply: 1 - namedParam: 2 - splatParam: 2 - escapeRegExp: 2 - _.extend: 7 - Backbone.Router.prototype: 1 - Backbone.Events: 2 - initialize: 2 - route: 14 - Backbone.history: 2 - Backbone.History: 2 - _.isRegExp: 1 - this._routeToRegExp: 1 - Backbone.history.route: 1 - _.bind: 2 - fragment: 13 - args: 4 - this._extractParameters: 1 - callback.apply: 1 - navigate: 1 - triggerRoute: 2 - Backbone.history.navigate: 1 - _bindRoutes: 1 - routes: 4 - routes.unshift: 1 - routes.length: 1 - this.route: 1 - _routeToRegExp: 1 - route.replace: 1 - _extractParameters: 1 - route.exec: 1 - this.handlers: 1 - _.bindAll: 1 - hashStrip: 3 - ! '#*': 1 - isExplorer: 1 - /msie: 1 - historyStarted: 2 - Backbone.History.prototype: 1 - interval: 1 - getFragment: 1 - forcePushState: 2 - this._hasPushState: 4 - window.location.pathname: 1 - search: 4 - window.location.search: 1 - fragment.indexOf: 1 - this.options.root: 3 - fragment.substr: 1 - this.options.root.length: 1 - window.location.hash: 1 - fragment.replace: 1 - <iframe>: 1 - src=: 1 - tabindex=: 1 - pushState: 1 - or: 5 - hashes: 1 - whether: 1 - .bind: 2 - this.checkUrl: 3 - oldIE: 1 - this.interval: 1 - this.fragment: 4 - loc: 1 - atRoot: 3 - loc.pathname: 1 - this._wantsPushState: 2 - this.getFragment: 1 - loc.hash: 1 - loc.hash.replace: 1 - dealing: 1 - with: 3 - selectorDelegate: 2 - this.el: 3 - eventSplitter: 2 - S: 4 - viewOptions: 1 - Backbone.View.prototype: 1 - tagName: 3 - render: 1 - .remove: 1 - make: 1 - attributes: 3 - el: 4 - .attr: 1 - .html: 1 - delegateEvents: 1 - this.events: 1 - .unbind: 1 - this.cid: 2 - key.match: 1 - create: 1 - update: 1 - read: 1 - Some: 1 - possible: 1 - customizations: 1 - could: 1 - Backbone.sync: 1 - methodMap: 1 - params: 2 - processData: 1 - params.url: 2 - getUrl: 2 - urlError: 2 - params.data: 5 - params.contentType: 2 - model.toJSON: 1 - Backbone.emulateJSON: 2 - params.processData: 1 - Backbone.emulateHTTP: 1 - params.data._method: 1 - params.type: 1 - params.beforeSend: 1 - xhr: 1 - xhr.setRequestHeader: 1 - .ajax: 1 - inherits: 1 - protoProps: 4 - staticProps: 3 - protoProps.hasOwnProperty: 1 - protoProps.constructor: 1 - parent.apply: 1 - child.prototype.constructor: 1 - object.url: 4 - _.isFunction: 1 - wrapError: 1 - onError: 3 - resp: 3 - model.trigger: 1 - escapeHTML: 1 - string.replace: 1 - ! '#x': 1 - da: 1 - /gi: 1 - </g,>: 1 - lt: 1 - replace: 1 - ! '#x27': 1 - ! '#x2F': 1 - window.Modernizr: 1 - version: 2 - Modernizr: 8 - enableClasses: 3 - docElement: 1 - document.documentElement: 1 - mod: 11 - modElem: 1 - mStyle: 2 - modElem.style: 1 - inputElem: 5 - smile: 3 - prefixes: 2 - .split: 6 - omPrefixes: 1 - cssomPrefixes: 2 - omPrefixes.split: 1 - domPrefixes: 3 - omPrefixes.toLowerCase: 1 - ns: 1 - tests: 35 - inputs: 3 - attrs: 3 - classes: 1 - classes.slice: 1 - featureName: 4 - injectElementWithStyles: 4 - rule: 2 - nodes: 5 - testnames: 3 - node: 6 - fakeBody: 2 - node.id: 1 - div.appendChild: 1 - .join: 4 - want: 1 - so: 2 - check: 1 - exists: 1 - fakeBody.parentNode.removeChild: 1 - div.parentNode.removeChild: 1 - testMediaQuery: 2 - mq: 3 - matchMedia: 3 - window.matchMedia: 1 - window.msMatchMedia: 1 - .matches: 1 - bool: 16 - window.getComputedStyle: 1 - getComputedStyle: 1 - node.currentStyle: 1 - isEventSupported: 4 - TAGNAMES: 2 - isSupported: 2 - element.setAttribute: 3 - element.removeAttribute: 1 - _hasOwnProperty: 2 - hasOwnProperty: 4 - _hasOwnProperty.call: 2 - object.constructor.prototype: 1 - Function.prototype.bind: 2 - slice.call: 3 - bound: 3 - F.prototype: 1 - target.prototype: 1 - result: 8 - target.apply: 2 - args.concat: 2 - setCss: 5 - str: 2 - mStyle.cssText: 1 - setCssAll: 1 - str1: 2 - str2: 2 - prefixes.join: 2 - legit: 1 - testProps: 3 - props: 18 - prefixed: 7 - testDOMProps: 2 - item: 4 - item.bind: 1 - testPropsAll: 11 - ucProp: 5 - prop.charAt: 1 - prop.substr: 1 - cssomPrefixes.join: 1 - elem.getContext: 2 - .getContext: 1 - .fillText: 1 - window.WebGLRenderingContext: 1 - window.DocumentTouch: 1 - DocumentTouch: 1 - quite: 1 - tricky: 1 - window.postMessage: 1 - window.openDatabase: 1 - document.documentMode: 2 - window.history: 1 - history.pushState: 1 - mStyle.backgroundColor: 3 - /.test: 10 - mStyle.background: 1 - .style.textShadow: 1 - '.55': 2 - cssanimations: 1 - animationName: 1 - csscolumns: 1 - columnCount: 1 - cssgradients: 1 - background: 3 - gradient: 3 - linear: 2 - bottom: 1 - ! '#9f9': 2 - white: 2 - cssreflections: 1 - boxReflect: 1 - csstransforms: 1 - transform: 3 - csstransforms3d: 1 - perspective: 1 - D: 1 - transforms: 1 - 'off': 4 - browser: 1 - webkitPerspective: 1 - ! '@media': 1 - ! '#modernizr': 3 - csstransitions: 1 - fontface: 1 - ! '@font': 1 - face: 1 - font: 1 - family: 1 - generatedcontent: 1 - here: 1 - we: 1 - extend: 1 - elem.canPlayType: 2 - bool.ogg: 1 - video/mp4: 1 - codecs: 4 - video/webm: 1 - audio/ogg: 1 - audio/mpeg: 1 - audio/wav: 1 - audio/x: 1 - m4a: 1 - audio/aac: 1 - localStorage: 1 - go: 1 - aggressive.: 1 - localStorage.setItem: 1 - localStorage.removeItem: 1 - sessionStorage.setItem: 1 - sessionStorage.removeItem: 1 - window.Worker: 1 - window.applicationCache: 1 - document.createElementNS: 6 - ns.svg: 4 - .createSVGRect: 1 - div.innerHTML: 1 - div.firstChild: 1 - div.firstChild.namespaceURI: 1 - /SVGAnimate/.test: 1 - toString.call: 2 - /SVGClipPath/.test: 1 - webforms: 1 - props.length: 2 - attrs.list: 2 - window.HTMLDataListElement: 1 - inputElemType: 5 - defaultView: 2 - inputElem.setAttribute: 1 - inputElem.type: 1 - inputElem.value: 2 - inputElem.style.cssText: 1 - range: 1 - inputElem.style.WebkitAppearance: 1 - docElement.appendChild: 1 - document.defaultView: 1 - defaultView.getComputedStyle: 2 - .WebkitAppearance: 1 - inputElem.offsetHeight: 1 - docElement.removeChild: 1 - tel: 1 - email: 1 - inputElem.checkValidity: 2 - feature: 3 - feature.toLowerCase: 1 - classes.push: 1 - going: 1 - quit: 1 - you: 1 - docElement.className: 2 - <xyz>: 1 - </xyz>: 1 - <style>: 1 - </style>: 1 - f.cloneNode: 1 - n.createElement: 1 - h.shivMethods: 1 - ! '*display': 2 - ! '*zoom': 2 - controls: 1 - ! '#FF0': 1 - color: 2 - elements: 2 - shivCSS: 2 - shivMethods: 1 - createElement: 3 - createDocumentFragment: 1 - should: 1 - overwritten.: 1 - ! '@memberOf': 1 - html5: 2 - ! '@type': 1 - options.shivMethods: 1 - shivDocument: 2 - window.html5: 1 - Modernizr._version: 1 - Modernizr._prefixes: 1 - Modernizr._domPrefixes: 1 - Modernizr._cssomPrefixes: 1 - Modernizr.mq: 1 - Modernizr.hasEvent: 1 - Modernizr.testProp: 1 - Modernizr.testAllProps: 1 - Modernizr.testStyles: 1 - Modernizr.prefixed: 1 - docElement.className.replace: 1 - js: 1 - classes.join: 1 - this.document: 1 - PEG.parser: 1 - quote: 2 - result0: 164 - result1: 52 - result2: 28 - parse_singleQuotedCharacter: 2 - result1.push: 1 - input.charCodeAt: 12 - pos: 90 - reportFailures: 39 - matchFailed: 22 - pos1: 24 - chars: 1 - chars.join: 1 - parse_eolChar: 5 - any: 7 - character: 8 - result3: 6 - result4: 9 - parse_classCharacter: 2 - begin: 1 - begin.data.charCodeAt: 1 - end.data.charCodeAt: 1 - this.SyntaxError: 2 - begin.rawText: 2 - end.rawText: 2 - begin.data: 1 - end.data: 1 - rawText: 2 - pos0: 23 - parse_bracketDelimitedCharacter: 2 - char_: 3 - quoteForRegexpClass: 1 - parse_simpleBracketDelimitedCharacter: 2 - parse_simpleEscapeSequence: 1 - parse_zeroEscapeSequence: 1 - parse_hexEscapeSequence: 1 - parse_unicodeEscapeSequence: 2 - parse_eolEscapeSequence: 2 - pos2: 6 - parse_digit: 3 - x0B: 2 - x00: 1 - parse_hexDigit: 7 - h1: 4 - h2: 4 - String.fromCharCode: 2 - input.substr: 3 - h3: 2 - h4: 2 - parse_eol: 4 - eol: 2 - input.charAt: 14 - parse_letter: 1 - parse_lowerCaseLetter: 2 - parse_upperCaseLetter: 2 - Z: 1 - parse___: 1 - parse_whitespace: 3 - parse_comment: 3 - result0.push: 1 - parse_singleLineComment: 2 - parse_multiLineComment: 1 - u2029: 2 - uFEFF: 1 - u1680: 1 - u180E: 1 - u2000: 1 - u200A: 1 - u202F: 1 - u205F: 1 - u3000: 1 - cleanupExpected: 2 - expected: 11 - expected.sort: 1 - lastExpected: 3 - cleanExpected: 2 - expected.length: 4 - cleanExpected.push: 1 - computeErrorPosition: 2 - line: 11 - column: 8 - seenCR: 5 - Math.max: 3 - rightmostFailuresPos: 2 - ch: 30 - parseFunctions: 1 - startRule: 1 - input.length: 2 - found: 8 - errorPosition: 1 - rightmostFailuresExpected: 1 - errorPosition.line: 1 - errorPosition.column: 1 - toSource: 1 - this._source: 1 - result.SyntaxError: 1 - buildMessage: 2 - expectedHumanized: 5 - foundHumanized: 3 - switch: 7 - break: 11 - expected.slice: 1 - this.expected: 1 - this.found: 1 - this.message: 3 - this.offset: 1 - this.line: 3 - this.column: 1 - result.SyntaxError.prototype: 1 - Error.prototype: 1 - /usr/bin/env: 1 - steelseries: 1 - n.charAt: 1 - n.substring: 1 - i.substring: 3 - this.color: 1 - ui: 3 - /255: 1 - y: 3 - t.getRed: 4 - t.getGreen: 4 - t.getBlue: 4 - t.getAlpha: 4 - i.getRed: 1 - i.getGreen: 1 - i.getBlue: 1 - o: 17 - i.getAlpha: 1 - ! '*f': 2 - w/r: 1 - p/r: 1 - s/r: 1 - o/r: 1 - e*u: 1 - .toFixed: 3 - l*u: 1 - c*u: 1 - h*u: 1 - vr: 2 - stop: 1 - Math.floor: 9 - Math.log10: 1 - n/Math.pow: 1 - '.5': 26 - <r?10:5:2:1,i*Math.pow(10,u)}function>: 1 - e=: 3 - o=: 3 - beginPath: 2 - moveTo: 1 - lineTo: 4 - quadraticCurveTo: 4 - closePath: 1 - stroke: 1 - i=: 3 - width=: 2 - height=: 2 - ii: 2 - u=: 3 - getContext: 2 - 2d: 2 - ft: 1 - fillStyle=: 1 - rect: 1 - '0': 7 - fill: 1 - t=: 1 - getImageData: 1 - '2': 5 - '3': 2 - wt: 1 - r=: 3 - '32': 1 - '62': 1 - f=: 2 - '84': 1 - s=: 2 - '94': 1 - ar: 1 - '255': 3 - max: 1 - min: 1 - u/: 3 - /u: 3 - f/: 1 - vt: 1 - n*6: 2 - i*: 3 - h*t: 1 - ! '*t': 1 - f*255: 1 - u*255: 1 - r*255: 1 - st: 1 - n/255: 1 - t/255: 1 - i/255: 1 - f/r: 1 - /f: 3 - <0?0:n>: 1 - si: 1 - ti: 2 - Math.round: 3 - /r: 1 - u*r: 1 - ni: 1 - tt: 1 - ei: 2 - ot: 1 - i.gaugeType: 2 - steelseries.GaugeType.TYPE4: 1 - i.size: 2 - i.minValue: 2 - i.maxValue: 2 - bf: 1 - i.niceScale: 2 - i.threshold: 2 - /2: 1 - i.section: 2 - i.area: 2 - lu: 1 - i.titleString: 1 - preload: 5 - sans: 45 - serif: 52 - type1: 42 - type2: 28 - type3: 11 - type4: 9 - gray: 7 - ! '#520000': 8 - ! '#fc1d00': 8 - ! '#FFFFFF': 8 - center: 20 - middle: 21 - horizontal: 3 - tangent: 3 - normal: 3 - fractional: 8 - scientific: 8 - standard: 8 - type15: 7 - type16: 5 - type13: 7 - up: 6 - steady: 6 - down: 6 - ! '#000000': 45 - ! '#333333': 12 - ! '#cccccc': 4 - ! '#111111': 1 - ! '#3c3c3c': 2 - ! '#323232': 6 - type5: 6 - west: 2 - rgba: 164 - '.7': 1 - '.0': 1 - '.05': 5 - '.1': 5 - '.2': 2 - ! '#4c4c4c': 2 - ! '#666666': 16 - ! '#e6e6e6': 2 - rgb: 243 - u00b0: 11 - u221e: 2 - miter: 12 - N: 2 - NE: 2 - E: 2 - SE: 2 - SW: 2 - W: 2 - NW: 2 - ! '#e3e5e8': 4 - ! '#abb1b8': 6 - Latest: 1 - Average: 1 - bold: 1 - ! '#7fd5f0': 2 - ! '#3c4439': 2 - ! '#37596e': 1 - '.4': 14 - ! '#eef0f2': 1 - ! '#65696d': 1 - ! '#f3f4f7': 1 - ! '#f3f5f7': 1 - ! '#f1f3f5': 1 - ! '#c0c5cb': 1 - ! '#bec3c9': 2 - ! '#ffffff': 30 - ! '#7e7e7e': 1 - '.8': 4 - ! '#e6b35c': 4 - ! '#c48200': 4 - ! '#c5c5c5': 6 - ! '#707070': 4 - ! '#C48200': 1 - ! '#999999': 4 - ! '#202020': 7 - ! '#363636': 2 - ! '#373735': 1 - ! '#303030': 3 - ! '#010101': 10 - ! '#040404': 3 - '.25': 10 - '.12': 4 - repeat: 9 - ! '#5e5e5e': 2 - ! '#fed434': 2 - ! '#82330c': 1 - '.13': 2 - ! '#ff0000': 2 - ! '#410004': 1 - ! '#ffff00': 1 - ! '#eeeeee': 1 - butt: 2 - round: 2 - hsl: 4 - ! '#d9dad6': 1 - ! '#e4e5e0': 1 - ! '#979996': 1 - ! '#fbffff': 1 - ! '#818584': 1 - ! '#f5f7f4': 1 - ! '#959794': 1 - ! '#f2f2f0': 1 - ! '#828783': 1 - ! '#fcfcfc': 1 - '.32': 1 - '.33': 1 - ! '#050a06': 1 - ! '#070602': 1 - ! '#999288': 1 - '.45': 1 - ! '#f0f0f0': 2 - ! '#F0F0F0': 1 - ! '#F01010': 1 - ! '#050505': 1 - ! '#F8F8F8': 1 - type6: 2 - type7: 2 - type8: 2 - type9: 2 - ! '#2E2E2E': 1 - type10: 2 - type11: 2 - type12: 2 - type14: 2 - ! '#848484': 4 - metal: 3 - ! '#fefefe': 2 - brass: 6 - steel: 3 - gold: 3 - anthracite: 3 - tiltedGray: 3 - tiltedBlack: 3 - glossyMetal: 3 - ! '#f6f6f6': 2 - blackMetal: 3 - shinyMetal: 3 - chrome: 3 - destination: 2 - ! '#838383': 1 - CARBON: 5 - PUNCHED_SHEET: 5 - BRUSHED_METAL: 7 - BRUSHED_STAINLESS: 5 - STAINLESS: 4 - TURNED: 6 - ! '#FDFDFD': 14 - ! '#B2B2B4': 4 - ! '#ACACAE': 4 - ! '#6E6E70': 8 - '.03': 2 - '.07': 2 - '.15': 3 - '.3': 5 - '.275': 5 - '.015': 5 - '.013546': 1 - '.082217': 1 - '.288702': 1 - '.298039': 1 - '.119213': 1 - metalKnob: 2 - black: 3 - silver: 3 - '.6': 1 - '.749019': 1 - standardKnob: 2 - ! '#5c5c5c': 4 - ! '#282828': 1 - ! '#353535': 1 - ! '#2d2d2d': 1 - ! '#1D2123': 1 - ! '#444444': 2 - ! '#050506': 2 - DARK_GRAY: 1 - SATIN_GRAY: 1 - LIGHT_GRAY: 1 - WHITE: 1 - BLACK: 1 - BEIGE: 1 - BROWN: 1 - RED: 1 - GREEN: 1 - BLUE: 1 - ANTHRACITE: 1 - MUD: 1 - ! '#c8c8b1': 1 - ! '#124564': 1 - ! '#503700': 1 - ! '#4f0c0e': 1 - ! '#405300': 1 - ! '#414141': 3 - ! '#b2b4ed': 1 - ! '#080C06': 1 - ! '#002cbb': 1 - ! '#FE8B92': 1 - ! '#3DB3FF': 1 - ! '#076148': 1 - ! '#B50026': 1 - ! '#233123': 1 - ! '#593A0A': 1 - ! '#090051': 1 - ! '#b2b2b2': 2 - ! '#c4c4c4': 2 - ! '#FF9A89': 2 - ! '#FF3300': 1 - ! '#FF8D70': 1 - ! '#7E1C00': 2 - ! '#641B00': 1 - ! '#9AFF89': 2 - ! '#59FF2A': 1 - ! '#A5FF00': 1 - ! '#1C7E00': 2 - ! '#1B6400': 1 - ! '#899AFF': 2 - ! '#0033FF': 1 - ! '#708DFF': 1 - ! '#001C7E': 2 - ! '#001B64': 1 - ! '#FEA23F': 2 - ! '#FD6C00': 2 - ! '#592800': 2 - ! '#421F00': 1 - ! '#FFFF62': 2 - ! '#FFFF00': 2 - ! '#6B6D00': 2 - ! '#515300': 1 - ! '#00FFFF': 3 - ! '#1BC3C3': 1 - ! '#083B3B': 2 - ! '#052727': 1 - ! '#D300FF': 2 - ! '#8600CB': 1 - ! '#C300FF': 1 - ! '#38004B': 2 - ! '#280035': 1 - north: 1 - south: 1 - east: 1 - Radial: 1 - RadialBargraph: 1 - wi: 1 - RadialVertical: 1 - bi: 1 - Linear: 1 - yi: 1 - LinearBargraph: 1 - kr: 1 - DisplaySingle: 1 - dr: 1 - DisplayMulti: 1 - wr: 1 - Level: 1 - br: 1 - Compass: 1 - gr: 1 - WindDirection: 1 - iu: 1 - Horizon: 1 - ru: 1 - Led: 1 - nu: 1 - Clock: 1 - tu: 1 - Battery: 1 - hr: 1 - StopWatch: 1 - cr: 1 - Altimeter: 1 - sr: 1 - TrafficLight: 1 - lr: 1 - LightBulb: 1 - yr: 1 - Odometer: 1 - pr: 1 - drawFrame: 1 - drawBackground: 1 - drawForeground: 1 - rgbaColor: 1 - ConicalGradient: 1 - it: 1 - setAlpha: 1 - getColorFromFraction: 1 - gradientWrapper: 1 - kt: 1 - BackgroundColor: 1 - di: 1 - LcdColor: 1 - ki: 1 - ColorDef: 1 - pi: 1 - LedColor: 1 - gi: 1 - GaugeType: 1 - ai: 1 - Orientation: 1 - ur: 1 - FrameDesign: 1 - fr: 1 - PointerType: 1 - er: 1 - ForegroundType: 1 - rr: 1 - KnobType: 1 - fi: 1 - KnobStyle: 1 - oi: 1 - LabelNumberFormat: 1 - nr: 1 - TickLabelOrientation: 1 - TrendState: 1 - ir: 1 - Section: 1 - KEYWORDS: 2 - array_to_hash: 11 - RESERVED_WORDS: 2 - KEYWORDS_BEFORE_EXPRESSION: 1 - KEYWORDS_ATOM: 2 - OPERATOR_CHARS: 1 - characters: 5 - RE_HEX_NUMBER: 1 - /i: 2 - RE_OCT_NUMBER: 1 - RE_DEC_NUMBER: 1 - OPERATORS: 2 - WHITESPACE_CHARS: 1 - PUNC_BEFORE_EXPRESSION: 1 - PUNC_CHARS: 1 - REGEXP_MODIFIERS: 1 - UNICODE: 1 - non_spacing_mark: 1 - space_combining_mark: 1 - connector_punctuation: 1 - is_letter: 3 - UNICODE.letter.test: 1 - is_digit: 3 - ch.charCodeAt: 1 - //XXX: 1 - means: 1 - something: 1 - than: 1 - ..9: 1 - is_alphanumeric_char: 2 - is_unicode_combining_mark: 2 - UNICODE.non_spacing_mark.test: 1 - UNICODE.space_combining_mark.test: 1 - is_unicode_connector_punctuation: 2 - UNICODE.connector_punctuation.test: 1 - is_identifier_start: 2 - is_identifier_char: 1 - parse_js_number: 1 - RE_HEX_NUMBER.test: 1 - num.substr: 2 - RE_OCT_NUMBER.test: 1 - RE_DEC_NUMBER.test: 1 - parseFloat: 1 - JS_Parse_Error: 2 - message: 5 - col: 4 - this.col: 2 - this.pos: 2 - ex: 3 - ex.name: 1 - this.stack: 2 - ex.stack: 1 - JS_Parse_Error.prototype.toString: 1 - js_error: 1 - is_token: 1 - token: 1 - token.type: 1 - token.value: 1 - EX_EOF: 1 - tokenizer: 2 - TEXT: 1 - TEXT.replace: 1 - uFEFF/: 1 - outside: 1 - punc: 20 - const: 2 - label: 1 - stat: 1 - Label: 1 - without: 1 - matching: 1 - loop: 2 - statement: 1 - inside: 1 - keyword: 8 - operator: 10 - defun: 1 - eof: 3 - Name: 1 - finally: 1 - Missing: 1 - catch/finally: 1 - blocks: 1 - unary: 2 - prefix: 1 - atom: 2 - dot: 2 - sub: 2 - call: 2 - postfix: 1 - use: 1 - binary: 1 - conditional: 1 - assign: 1 - assignment: 1 - seq: 1 - toplevel: 1 - member: 2 - array.length: 1 - HOP: 1 - Object.prototype.hasOwnProperty.call: 1 - warn: 2 - exports.tokenizer: 1 - exports.parse: 1 - parse: 1 - exports.slice: 1 - exports.curry: 1 - curry: 1 - exports.member: 1 - exports.array_to_hash: 1 - exports.PRECEDENCE: 1 - PRECEDENCE: 1 - exports.KEYWORDS_ATOM: 1 - exports.RESERVED_WORDS: 1 - exports.KEYWORDS: 1 - exports.ATOMIC_START_TOKEN: 1 - ATOMIC_START_TOKEN: 1 - exports.OPERATORS: 1 - exports.is_alphanumeric_char: 1 - exports.set_logger: 1 - logger: 2 - Julia: - ! '##': 5 - Test: 1 - case: 1 - from: 1 - Issue: 1 - ! '#445': 1 - ! '#STOCKCORR': 1 - ! '-': 10 - The: 1 - original: 1 - unoptimised: 1 - code: 1 - that: 1 - simulates: 1 - two: 1 - correlated: 1 - assets: 1 - function: 1 - stockcorr: 1 - (: 12 - ): 12 - Correlated: 1 - asset: 1 - information: 1 - CurrentPrice: 3 - .: 4 - ! '#': 11 - Corr: 2 - '.4': 2 - ;: 1 - T: 5 - n: 4 - dt: 3 - /250: 1 - Div: 3 - '.01': 2 - Vol: 5 - '.2': 1 - '.3': 1 - Market: 1 - Information: 1 - r: 3 - '.03': 1 - Define: 1 - storages: 1 - SimulPriceA: 5 - zeros: 2 - SimulPriceB: 5 - Generating: 1 - the: 1 - paths: 1 - of: 1 - stock: 1 - prices: 1 - by: 1 - Geometric: 1 - Brownian: 1 - Motion: 1 - UpperTriangle: 1 - chol: 1 - for: 2 - i: 5 - Wiener: 1 - randn: 1 - CorrWiener: 1 - Wiener*UpperTriangle: 1 - j: 7 - ! '*exp': 2 - /2: 2 - ! '*dt': 2 - +: 2 - ! '*sqrt': 2 - ! '*CorrWiener': 2 - end: 3 - return: 1 - Kotlin: - package: 1 - addressbook: 1 - class: 5 - Contact: 1 - (: 15 - val: 16 - name: 2 - String: 7 - emails: 1 - List: 3 - <EmailAddress>: 1 - addresses: 1 - <PostalAddress>: 1 - phonenums: 1 - <PhoneNumber>: 1 - ): 15 - EmailAddress: 1 - user: 1 - host: 1 - PostalAddress: 1 - streetAddress: 1 - city: 1 - zip: 1 - state: 2 - USState: 1 - country: 3 - Country: 7 - ! '{': 6 - assert: 1 - 'null': 3 - xor: 1 - Countries: 2 - ! '}': 6 - PhoneNumber: 1 - areaCode: 1 - Int: 1 - number: 1 - Long: 1 - object: 1 - fun: 1 - get: 2 - id: 2 - CountryID: 1 - countryTable: 2 - private: 2 - var: 1 - table: 5 - Map: 2 - <String,>: 2 - if: 1 - HashMap: 1 - for: 1 - line: 3 - in: 1 - TextFile: 1 - .lines: 1 - stripWhiteSpace: 1 - 'true': 1 - return: 1 - Logtalk: - ! '%': 3 - ! '-': 3 - object: 1 - (: 4 - hello_world: 1 - ): 4 - .: 2 - initialization: 1 - nl: 2 - write: 1 - end_object.: 1 - Markdown: - Tender: 1 - Matlab: - function: 9 - y: 2 - average: 1 - (: 50 - x: 4 - ): 50 - ! '%': 31 - m: 3 - n: 3 - size: 2 - ;: 24 - if: 1 - ! '|': 2 - ! '&': 1 - error: 1 - end: 17 - sum: 1 - /length: 1 - filtfcn: 2 - statefcn: 2 - makeFilter: 1 - b: 6 - a: 4 - v: 10 - zeros: 1 - ! '@iirFilter': 1 - ! '@getState': 1 - yn: 2 - iirFilter: 1 - xn: 4 - +: 3 - ! '*': 5 - ! '-': 5 - ! '...': 3 - vOut: 2 - getState: 1 - classdef: 1 - matlab_class: 2 - properties: 1 - R: 1 - G: 1 - B: 3 - methods: 1 - obj: 2 - r: 2 - g: 2 - obj.R: 2 - obj.G: 2 - obj.B: 2 - disp: 8 - num2str: 3 - enumeration: 1 - red: 1 - green: 1 - blue: 1 - cyan: 1 - magenta: 1 - yellow: 1 - black: 1 - white: 1 - ret: 3 - matlab_function: 5 - A: 2 - Call: 2 - which: 2 - resides: 2 - in: 2 - the: 2 - same: 2 - directory: 2 - value1: 4 - value2: 4 - result: 4 - Nemerle: - using: 1 - System.Console: 1 - ;: 2 - module: 1 - Program: 1 - ! '{': 2 - Main: 1 - (: 2 - ): 2 - void: 1 - WriteLine: 1 - ! '}': 2 - Nimrod: - ! '#': 1 - echo: 1 - Nu: - ! '#': 1 - /usr/bin/env: 1 - nush: 1 - (: 1 - puts: 1 - ): 1 - OCaml: - (*: 2 - ! '*)': 2 - type: 2 - a: 3 - ! '-': 21 - unit: 4 - ): 9 - module: 4 - Ops: 2 - struct: 4 - let: 9 - (: 7 - ! '@': 6 - f: 10 - k: 21 - ! '|': 15 - x: 14 - end: 4 - open: 1 - List: 1 - rec: 3 - map: 3 - l: 8 - match: 4 - with: 4 - hd: 6 - tl: 6 - fun: 8 - fold: 2 - acc: 5 - Option: 1 - opt: 2 - None: 5 - Some: 5 - Lazy: 1 - option: 1 - ;: 12 - mutable: 1 - waiters: 5 - ! '}': 3 - make: 1 - push: 4 - cps: 7 - ! '{': 1 - value: 3 - force: 1 - l.value: 2 - when: 1 - l.waiters: 5 - <->: 3 - function: 1 - Base.List.iter: 1 - l.push: 1 - <: 1 - get_state: 1 - lazy_from_val: 1 - _: 1 - Objective-C: - //: 771 - ! '#import': 53 - <Foundation/Foundation.h>: 4 - ! '#if': 61 - TARGET_OS_IPHONE: 11 - <CFNetwork/CFNetwork.h>: 1 - __IPHONE_OS_VERSION_MAX_ALLOWED: 5 - __IPHONE_4_0: 7 - <UIKit/UIKit.h>: 1 - ! '#endif': 79 - <stdio.h>: 2 - ! '@class': 4 - ASIDataDecompressor: 4 - ;: 2583 - extern: 5 - NSString: 184 - ! '*ASIHTTPRequestVersion': 2 - ! '#ifndef': 9 - __IPHONE_3_2: 2 - ! '#define': 65 - __MAC_10_5: 2 - __MAC_10_6: 2 - typedef: 47 - enum: 17 - _ASIAuthenticationState: 1 - ! '{': 791 - ASINoAuthenticationNeededYet: 3 - ASIHTTPAuthenticationNeeded: 2 - ASIProxyAuthenticationNeeded: 2 - ! '}': 790 - ASIAuthenticationState: 4 - _ASINetworkErrorType: 1 - ASIConnectionFailureErrorType: 1 - ASIRequestTimedOutErrorType: 2 - ASIAuthenticationErrorType: 3 - ASIRequestCancelledErrorType: 2 - ASIUnableToCreateRequestErrorType: 2 - ASIInternalErrorWhileBuildingRequestType: 3 - ASIInternalErrorWhileApplyingCredentialsType: 1 - ASIFileManagementError: 3 - ASITooMuchRedirectionErrorType: 3 - ASIUnhandledExceptionError: 3 - ASICompressionError: 1 - ASINetworkErrorType: 1 - NSString*: 13 - const: 31 - NetworkRequestErrorDomain: 13 - unsigned: 71 - long: 85 - ASIWWANBandwidthThrottleAmount: 2 - NS_BLOCKS_AVAILABLE: 19 - void: 293 - (: 2574 - ASIBasicBlock: 23 - ): 2572 - ASIHeadersBlock: 4 - NSDictionary: 46 - ! '*responseHeaders': 3 - ASISizeBlock: 7 - size: 11 - ASIProgressBlock: 7 - total: 3 - ASIDataBlock: 4 - NSData: 42 - ! '*data': 2 - ! '@interface': 23 - ASIHTTPRequest: 42 - NSOperation: 1 - <NSCopying>: 1 - NSURL: 23 - ! '*url': 2 - ! '*originalURL': 2 - ! '*redirectURL': 2 - id: 190 - <ASIHTTPRequestDelegate>: 1 - delegate: 67 - <ASIHTTPRequestDelegate,>: 1 - ASIProgressDelegate: 1 - queue: 29 - ! '*requestMethod': 2 - NSMutableData: 8 - ! '*postBody': 2 - ! '*compressedPostBody': 2 - BOOL: 153 - shouldStreamPostDataFromDisk: 7 - ! '*postBodyFilePath': 2 - ! '*compressedPostBodyFilePath': 2 - didCreateTemporaryPostDataFile: 4 - NSOutputStream: 7 - ! '*postBodyWriteStream': 2 - NSInputStream: 9 - ! '*postBodyReadStream': 2 - NSMutableDictionary: 29 - ! '*requestHeaders': 2 - haveBuiltRequestHeaders: 4 - NSMutableArray: 31 - ! '*requestCookies': 2 - NSArray: 34 - ! '*responseCookies': 3 - useCookiePersistence: 6 - useKeychainPersistence: 6 - useSessionPersistence: 9 - allowCompressedResponse: 6 - shouldCompressRequestBody: 7 - ! '*downloadDestinationPath': 2 - ! '*temporaryFileDownloadPath': 2 - ! '*temporaryUncompressedDataDownloadPath': 2 - ! '*fileDownloadOutputStream': 2 - ! '*inflatedFileDownloadOutputStream': 2 - complete: 10 - finished: 4 - cancelled: 6 - NSError: 67 - ! '*error': 4 - ! '*username': 2 - ! '*password': 2 - ! '*userAgentString': 2 - ! '*domain': 2 - ! '*proxyUsername': 2 - ! '*proxyPassword': 2 - ! '*proxyDomain': 2 - <ASIProgressDelegate>: 2 - uploadProgressDelegate: 9 - downloadProgressDelegate: 5 - haveExaminedHeaders: 1 - ! '*rawResponseData': 2 - CFHTTPMessageRef: 3 - request: 71 - ! '*readStream': 2 - CFHTTPAuthenticationRef: 4 - requestAuthentication: 10 - ! '*requestCredentials': 2 - int: 63 - authenticationRetryCount: 5 - ! '*authenticationScheme': 2 - ! '*authenticationRealm': 3 - shouldPresentAuthenticationDialog: 4 - shouldPresentProxyAuthenticationDialog: 4 - proxyAuthentication: 10 - ! '*proxyCredentials': 2 - proxyAuthenticationRetryCount: 5 - ! '*proxyAuthenticationScheme': 2 - ! '*proxyAuthenticationRealm': 3 - responseStatusCode: 7 - ! '*responseStatusMessage': 3 - contentLength: 4 - partialDownloadSize: 10 - postLength: 16 - totalBytesRead: 3 - totalBytesSent: 16 - lastBytesRead: 3 - lastBytesSent: 8 - NSRecursiveLock: 13 - ! '*cancelledLock': 2 - SEL: 26 - didStartSelector: 5 - didReceiveResponseHeadersSelector: 5 - willRedirectSelector: 5 - didFinishSelector: 5 - didFailSelector: 5 - didReceiveDataSelector: 5 - NSDate: 11 - ! '*lastActivityTime': 2 - NSTimeInterval: 11 - timeOutSeconds: 7 - shouldResetUploadProgress: 4 - shouldResetDownloadProgress: 7 - ! '*mainRequest': 2 - showAccurateProgress: 8 - updatedProgress: 3 - haveBuiltPostBody: 4 - uploadBufferSize: 9 - NSStringEncoding: 6 - defaultResponseEncoding: 4 - responseEncoding: 4 - allowResumeForFileDownloads: 5 - ! '*userInfo': 2 - NSInteger: 56 - tag: 3 - useHTTPVersionOne: 5 - shouldRedirect: 4 - needsRedirect: 3 - redirectCount: 6 - validatesSecureCertificate: 5 - SecIdentityRef: 2 - clientCertificateIdentity: 6 - ! '*clientCertificates': 2 - ! '*proxyHost': 2 - proxyPort: 9 - ! '*proxyType': 2 - ! '*PACurl': 2 - authenticationNeeded: 6 - shouldPresentCredentialsBeforeChallenge: 5 - inProgress: 7 - readStreamIsScheduled: 4 - numberOfTimesToRetryOnTimeout: 5 - retryCount: 6 - willRetryRequest: 4 - shouldAttemptPersistentConnection: 6 - persistentConnectionTimeoutSeconds: 7 - connectionCanBeReused: 5 - ! '*connectionInfo': 2 - shouldUseRFC2616RedirectBehaviour: 5 - downloadComplete: 3 - NSNumber: 15 - ! '*requestID': 3 - ! '*runLoopMode': 2 - NSTimer: 5 - ! '*statusTimer': 2 - <ASICacheDelegate>: 9 - downloadCache: 12 - ASICachePolicy: 4 - cachePolicy: 6 - ASICacheStoragePolicy: 2 - cacheStoragePolicy: 3 - didUseCachedResponse: 4 - secondsToCache: 4 - ! '&&': 167 - shouldContinueWhenAppEntersBackground: 4 - UIBackgroundTaskIdentifier: 1 - backgroundTask: 7 - ! '*dataDecompressor': 2 - shouldWaitToInflateCompressedResponses: 4 - isPACFileRequest: 5 - ! '*PACFileRequest': 2 - ! '*PACFileReadStream': 2 - ! '*PACFileData': 2 - isSynchronous: 3 - //block: 12 - to: 72 - execute: 4 - when: 8 - starts: 1 - startedBlock: 9 - headers: 7 - are: 4 - received: 5 - headersReceivedBlock: 9 - completes: 1 - successfully: 1 - completionBlock: 9 - fails: 1 - failureBlock: 9 - for: 52 - bytes: 9 - bytesReceivedBlock: 7 - sent: 1 - bytesSentBlock: 13 - download: 2 - is: 25 - incremented: 2 - downloadSizeIncrementedBlock: 10 - upload: 1 - uploadSizeIncrementedBlock: 10 - handling: 4 - raw: 1 - dataReceivedBlock: 9 - authentication: 9 - authenticationNeededBlock: 7 - proxy: 4 - proxyAuthenticationNeededBlock: 7 - redirections: 1 - if: 412 - you: 1 - want: 2 - requestRedirectedBlock: 9 - ! '#pragma': 52 - mark: 50 - init: 37 - /: 16 - dealloc: 15 - ! '-': 721 - initWithURL: 4 - ! '*': 355 - newURL: 21 - +: 211 - requestWithURL: 8 - usingCache: 5 - cache: 8 - andCachePolicy: 3 - policy: 3 - setStartedBlock: 2 - aStartedBlock: 3 - setHeadersReceivedBlock: 2 - aReceivedBlock: 6 - setCompletionBlock: 2 - aCompletionBlock: 3 - setFailedBlock: 2 - aFailedBlock: 3 - setBytesReceivedBlock: 2 - aBytesReceivedBlock: 3 - setBytesSentBlock: 2 - aBytesSentBlock: 3 - setDownloadSizeIncrementedBlock: 2 - aDownloadSizeIncrementedBlock: 3 - setUploadSizeIncrementedBlock: 2 - anUploadSizeIncrementedBlock: 3 - setDataReceivedBlock: 2 - setAuthenticationNeededBlock: 2 - anAuthenticationBlock: 3 - setProxyAuthenticationNeededBlock: 2 - aProxyAuthenticationBlock: 3 - setRequestRedirectedBlock: 2 - aRedirectBlock: 3 - setup: 2 - addRequestHeader: 11 - header: 12 - value: 28 - applyCookieHeader: 4 - buildRequestHeaders: 4 - applyAuthorizationHeader: 3 - buildPostBody: 3 - appendPostData: 2 - data: 17 - appendPostDataFromFile: 2 - file: 6 - get: 8 - information: 4 - about: 2 - this: 6 - responseString: 2 - responseData: 3 - isResponseCompressed: 3 - running: 2 - a: 33 - startSynchronous: 2 - startAsynchronous: 2 - clearDelegatesAndCancel: 2 - HEAD: 3 - HEADRequest: 2 - upload/download: 2 - progress: 6 - updateProgressIndicators: 3 - updateUploadProgress: 1 - updateDownloadProgress: 1 - removeUploadProgressSoFar: 3 - incrementDownloadSizeBy: 7 - length: 39 - incrementUploadSizeBy: 7 - updateProgressIndicator: 5 - indicator: 3 - withProgress: 6 - ofTotal: 6 - performSelector: 26 - selector: 52 - onTarget: 14 - target: 6 - withObject: 40 - object: 51 - amount: 15 - callerToRetain: 16 - caller: 1 - talking: 2 - delegates: 2 - requestStarted: 6 - requestReceivedResponseHeaders: 3 - newHeaders: 1 - requestFinished: 5 - failWithError: 14 - theError: 8 - retryUsingNewConnection: 1 - redirectToURL: 2 - parsing: 2 - HTTP: 2 - response: 5 - readResponseHeaders: 2 - parseStringEncodingFromHeaders: 3 - parseMimeType: 2 - ! '**': 41 - mimeType: 2 - andResponseEncoding: 2 - stringEncoding: 1 - fromContentType: 2 - contentType: 1 - http: 3 - stuff: 1 - applyCredentials: 2 - newCredentials: 26 - applyProxyCredentials: 2 - findCredentials: 1 - findProxyCredentials: 2 - retryUsingSuppliedCredentials: 1 - cancelAuthentication: 1 - attemptToApplyCredentialsAndResume: 1 - attemptToApplyProxyCredentialsAndResume: 1 - showProxyAuthenticationDialog: 1 - showAuthenticationDialog: 1 - addBasicAuthenticationHeaderWithUsername: 3 - theUsername: 1 - andPassword: 3 - thePassword: 1 - stream: 8 - status: 1 - handlers: 1 - handleNetworkEvent: 2 - CFStreamEventType: 2 - type: 5 - handleBytesAvailable: 1 - handleStreamComplete: 1 - handleStreamError: 1 - cleanup: 1 - markAsFinished: 4 - removeTemporaryDownloadFile: 2 - removeTemporaryUncompressedDownloadFile: 2 - removeTemporaryUploadFile: 2 - removeTemporaryCompressedUploadFile: 2 - removeFileAtPath: 1 - path: 9 - error: 145 - err: 10 - persistent: 1 - connections: 1 - connectionID: 1 - expirePersistentConnections: 2 - default: 2 - time: 1 - out: 1 - defaultTimeOutSeconds: 3 - setDefaultTimeOutSeconds: 1 - newTimeOutSeconds: 1 - client: 1 - certificate: 2 - setClientCertificateIdentity: 2 - anIdentity: 1 - session: 4 - credentials: 45 - sessionProxyCredentialsStore: 1 - sessionCredentialsStore: 1 - storeProxyAuthenticationCredentialsInSessionStore: 2 - storeAuthenticationCredentialsInSessionStore: 3 - removeProxyAuthenticationCredentialsFromSessionStore: 3 - removeAuthenticationCredentialsFromSessionStore: 3 - findSessionProxyAuthenticationCredentials: 2 - findSessionAuthenticationCredentials: 2 - keychain: 4 - storage: 1 - saveCredentialsToKeychain: 3 - saveCredentials: 4 - NSURLCredential: 9 - forHost: 2 - host: 9 - port: 17 - protocol: 10 - realm: 15 - forProxy: 2 - savedCredentialsForHost: 1 - savedCredentialsForProxy: 2 - removeCredentialsForHost: 1 - removeCredentialsForProxy: 1 - setSessionCookies: 1 - newSessionCookies: 1 - sessionCookies: 1 - addSessionCookie: 2 - NSHTTPCookie: 4 - newCookie: 1 - clearSession: 1 - user: 9 - agent: 2 - defaultUserAgentString: 2 - setDefaultUserAgentString: 1 - mime: 1 - detection: 1 - mimeTypeForFileAtPath: 1 - bandwidth: 2 - measurement: 2 - throttling: 1 - maxBandwidthPerSecond: 2 - setMaxBandwidthPerSecond: 1 - averageBandwidthUsedPerSecond: 2 - performThrottling: 2 - isBandwidthThrottled: 2 - incrementBandwidthUsedInLastSecond: 2 - setShouldThrottleBandwidthForWWAN: 1 - throttle: 1 - throttleBandwidthForWWANUsingLimit: 1 - limit: 1 - reachability: 1 - isNetworkReachableViaWWAN: 1 - NSOperationQueue: 3 - sharedQueue: 4 - setDefaultCache: 1 - defaultCache: 3 - maxUploadReadLength: 1 - network: 1 - activity: 1 - isNetworkInUse: 1 - setShouldUpdateNetworkActivityIndicator: 1 - shouldUpdate: 1 - showNetworkActivityIndicator: 1 - hideNetworkActivityIndicator: 1 - miscellany: 1 - base64forData: 1 - theData: 1 - expiryDateForRequest: 1 - maxAge: 3 - dateFromRFC1123String: 1 - string: 11 - isMultitaskingSupported: 2 - threading: 1 - behaviour: 1 - NSThread: 10 - threadForRequest: 4 - ! '@property': 150 - retain: 71 - assign: 84 - setter: 2 - setURL: 4 - nonatomic: 40 - readonly: 19 - ! '@end': 45 - <MobileCoreServices/MobileCoreServices.h>: 1 - ! '#else': 8 - <SystemConfiguration/SystemConfiguration.h>: 1 - ! '@': 331 - static: 104 - ! '*defaultUserAgent': 1 - nil: 150 - ! '*ASIHTTPRequestRunLoopMode': 1 - CFOptionFlags: 1 - kNetworkEvents: 1 - kCFStreamEventHasBytesAvailable: 1 - ! '|': 34 - kCFStreamEventEndEncountered: 1 - kCFStreamEventErrorOccurred: 1 - ! '*sessionCredentialsStore': 1 - ! '*sessionProxyCredentialsStore': 1 - ! '*sessionCredentialsLock': 1 - ! '*sessionCookies': 1 - RedirectionLimit: 2 - ReadStreamClientCallBack: 1 - CFReadStreamRef: 9 - readStream: 11 - ! '*clientCallBackInfo': 1 - ASIHTTPRequest*: 1 - clientCallBackInfo: 1 - ! '*progressLock': 1 - ! '*ASIRequestCancelledError': 1 - ! '*ASIRequestTimedOutError': 1 - ! '*ASIAuthenticationError': 1 - ! '*ASIUnableToCreateRequestError': 1 - ! '*ASITooMuchRedirectionError': 1 - ! '*bandwidthUsageTracker': 1 - nextConnectionNumberToCreate: 1 - ! '*persistentConnectionsPool': 1 - ! '*connectionsLock': 1 - nextRequestID: 1 - bandwidthUsedInLastSecond: 1 - ! '*bandwidthMeasurementDate': 1 - NSLock: 2 - ! '*bandwidthThrottlingLock': 1 - 'NO': 43 - shouldThrottleBandwidthForWWANOnly: 1 - ! '*sessionCookiesLock': 1 - ! '*delegateAuthenticationLock': 1 - ! '*throttleWakeUpTime': 1 - runningRequestCount: 1 - shouldUpdateNetworkActivityIndicator: 1 - 'YES': 56 - ! '*networkThread': 1 - ! '*sharedQueue': 1 - cancelLoad: 5 - destroyReadStream: 4 - scheduleReadStream: 1 - unscheduleReadStream: 2 - willAskDelegateForCredentials: 1 - willAskDelegateForProxyCredentials: 1 - askDelegateForProxyCredentials: 1 - askDelegateForCredentials: 1 - failAuthentication: 1 - measureBandwidthUsage: 1 - recordBandwidthUsage: 1 - startRequest: 4 - updateStatus: 3 - timer: 5 - checkRequestStatus: 3 - reportFailure: 4 - reportFinished: 4 - performRedirect: 3 - shouldTimeOut: 3 - willRedirect: 3 - willAskDelegateToConfirmRedirect: 1 - performInvocation: 3 - NSInvocation: 6 - invocation: 7 - releasingObject: 3 - objectToRelease: 2 - hideNetworkActivityIndicatorAfterDelay: 1 - hideNetworkActivityIndicatorIfNeeeded: 1 - runRequests: 1 - configureProxies: 2 - fetchPACFile: 1 - finishedDownloadingPACFile: 1 - theRequest: 12 - runPACScript: 1 - script: 1 - timeOutPACRead: 1 - useDataFromCache: 4 - updatePartialDownloadSize: 4 - registerForNetworkReachabilityNotifications: 1 - unsubscribeFromNetworkReachabilityNotifications: 1 - reachabilityChanged: 1 - NSNotification: 2 - note: 1 - performBlockOnMainThread: 6 - block: 48 - releaseBlocksOnMainThread: 4 - releaseBlocks: 3 - blocks: 17 - callBlock: 3 - setSynchronous: 2 - ! '@implementation': 18 - initialize: 1 - self: 848 - class: 47 - persistentConnectionsPool: 3 - alloc: 51 - connectionsLock: 4 - progressLock: 3 - bandwidthThrottlingLock: 1 - sessionCookiesLock: 1 - sessionCredentialsLock: 1 - delegateAuthenticationLock: 1 - bandwidthUsageTracker: 1 - initWithCapacity: 2 - ASIRequestTimedOutError: 2 - initWithDomain: 5 - code: 14 - userInfo: 16 - dictionaryWithObjectsAndKeys: 12 - NSLocalizedDescriptionKey: 11 - ASIAuthenticationError: 1 - ASIRequestCancelledError: 3 - ASIUnableToCreateRequestError: 3 - ASITooMuchRedirectionError: 2 - setMaxConcurrentOperationCount: 1 - setRequestMethod: 5 - setRunLoopMode: 2 - NSDefaultRunLoopMode: 1 - setShouldAttemptPersistentConnection: 4 - setPersistentConnectionTimeoutSeconds: 3 - '.0': 7 - setShouldPresentCredentialsBeforeChallenge: 2 - setShouldRedirect: 1 - setShowAccurateProgress: 3 - setShouldResetDownloadProgress: 1 - setShouldResetUploadProgress: 1 - setAllowCompressedResponse: 2 - setShouldWaitToInflateCompressedResponses: 1 - setDefaultResponseEncoding: 1 - NSISOLatin1StringEncoding: 1 - setShouldPresentProxyAuthenticationDialog: 2 - setTimeOutSeconds: 2 - setUseSessionPersistence: 2 - setUseCookiePersistence: 2 - setValidatesSecureCertificate: 2 - setRequestCookies: 3 - autorelease: 32 - setDidStartSelector: 1 - ! '@selector': 53 - setDidReceiveResponseHeadersSelector: 1 - didReceiveResponseHeaders: 3 - setWillRedirectSelector: 1 - willRedirectToURL: 3 - setDidFinishSelector: 1 - setDidFailSelector: 1 - requestFailed: 3 - setDidReceiveDataSelector: 1 - didReceiveData: 1 - setCancelledLock: 1 - setDownloadCache: 3 - return: 209 - ASIUseDefaultCachePolicy: 1 - ! '*request': 1 - setCachePolicy: 2 - setAuthenticationNeeded: 4 - CFRelease: 23 - redirectURL: 3 - release: 79 - statusTimer: 9 - invalidate: 2 - postBody: 12 - compressedPostBody: 5 - requestHeaders: 15 - requestCookies: 6 - downloadDestinationPath: 4 - temporaryFileDownloadPath: 7 - temporaryUncompressedDataDownloadPath: 2 - fileDownloadOutputStream: 3 - inflatedFileDownloadOutputStream: 3 - username: 9 - password: 12 - domain: 3 - authenticationRealm: 5 - authenticationScheme: 7 - requestCredentials: 2 - proxyHost: 8 - proxyType: 6 - proxyUsername: 7 - proxyPassword: 7 - proxyDomain: 4 - proxyAuthenticationRealm: 4 - proxyAuthenticationScheme: 4 - proxyCredentials: 2 - url: 30 - originalURL: 2 - lastActivityTime: 4 - responseCookies: 2 - rawResponseData: 5 - responseHeaders: 11 - requestMethod: 14 - cancelledLock: 33 - postBodyFilePath: 11 - compressedPostBodyFilePath: 8 - postBodyWriteStream: 8 - postBodyReadStream: 5 - PACurl: 3 - clientCertificates: 5 - responseStatusMessage: 2 - connectionInfo: 14 - requestID: 3 - dataDecompressor: 2 - userAgentString: 3 - super: 21 - ! '*blocks': 1 - array: 83 - addObject: 17 - performSelectorOnMainThread: 8 - waitUntilDone: 11 - isMainThread: 8 - setRequestHeaders: 3 - dictionaryWithCapacity: 3 - setObject: 23 - forKey: 23 - close: 8 - setPostBodyWriteStream: 2 - ! '*path': 1 - setCompressedPostBodyFilePath: 1 - NSTemporaryDirectory: 2 - stringByAppendingPathComponent: 2 - NSProcessInfo: 2 - processInfo: 2 - globallyUniqueString: 2 - ! '*err': 4 - ASIDataCompressor: 2 - compressDataFromFile: 1 - toFile: 1 - ! '&': 56 - else: 62 - setPostLength: 4 - NSFileManager: 5 - attributesOfItemAtPath: 2 - fileSize: 2 - errorWithDomain: 7 - stringWithFormat: 7 - NSUnderlyingErrorKey: 3 - ! '*compressedBody': 1 - compressData: 1 - setCompressedPostBody: 1 - compressedBody: 1 - isEqualToString: 20 - ! '||': 52 - setHaveBuiltPostBody: 1 - setupPostBody: 3 - setPostBodyFilePath: 1 - setDidCreateTemporaryPostDataFile: 2 - initToFileAtPath: 1 - append: 1 - open: 2 - setPostBody: 2 - write: 2 - maxLength: 3 - appendData: 2 - ! '*stream': 1 - initWithFileAtPath: 1 - NSUInteger: 94 - bytesRead: 5 - while: 13 - hasBytesAvailable: 1 - char: 23 - buffer: 8 - ! '*256': 1 - read: 2 - sizeof: 13 - break: 16 - dataWithBytes: 1 - lock: 16 - ! '*m': 1 - unlock: 20 - m: 1 - newRequestMethod: 3 - ! '*u': 1 - u: 10 - isEqual: 7 - 'NULL': 221 - setRedirectURL: 3 - d: 8 - setDelegate: 6 - newDelegate: 2 - q: 2 - setQueue: 2 - newQueue: 3 - cancelOnRequestThread: 2 - DEBUG_REQUEST_STATUS: 8 - ASI_DEBUG_LOG: 19 - isCancelled: 6 - setComplete: 8 - CFRetain: 5 - willChangeValueForKey: 1 - didChangeValueForKey: 1 - cancel: 4 - onThread: 3 - setDownloadProgressDelegate: 1 - setUploadProgressDelegate: 1 - result: 4 - initWithBytes: 1 - encoding: 3 - ! '*encoding': 1 - objectForKey: 41 - rangeOfString: 1 - .location: 1 - NSNotFound: 1 - uncompressData: 1 - DEBUG_THROTTLING: 4 - ASIHTTPRequestRunLoopMode: 1 - setInProgress: 3 - main: 6 - NSRunLoop: 2 - currentRunLoop: 2 - runMode: 1 - runLoopMode: 3 - beforeDate: 1 - distantFuture: 1 - start: 1 - addOperation: 1 - concurrency: 1 - isConcurrent: 1 - isFinished: 3 - isExecuting: 3 - logic: 1 - ! '@try': 1 - UIBackgroundTaskInvalid: 3 - UIApplication: 2 - sharedApplication: 2 - beginBackgroundTaskWithExpirationHandler: 1 - dispatch_async: 1 - dispatch_get_main_queue: 1 - endBackgroundTask: 1 - setDidUseCachedResponse: 1 - mainRequest: 23 - CFHTTPMessageCreateRequest: 1 - kCFAllocatorDefault: 4 - CFStringRef: 6 - CFURLRef: 1 - kCFHTTPVersion1_0: 2 - kCFHTTPVersion1_1: 1 - //If: 3 - generated: 1 - by: 3 - an: 4 - ASINetworkQueue: 1 - we: 11 - need: 1 - let: 1 - the: 31 - generate: 1 - its: 7 - first: 2 - so: 2 - can: 1 - use: 9 - them: 4 - defaultCachePolicy: 1 - canUseCachedDataForRequest: 3 - ASIAskServerIfModifiedWhenStaleCachePolicy: 1 - ASIAskServerIfModifiedCachePolicy: 1 - ! '*cachedHeaders': 1 - cachedResponseHeadersForURL: 1 - cachedHeaders: 3 - ! '*etag': 1 - etag: 2 - ! '*lastModified': 1 - lastModified: 2 - ! '*header': 3 - in: 22 - CFHTTPMessageSetHeaderFieldValue: 2 - ! '@catch': 1 - NSException: 21 - ! '*exception': 1 - ! '*underlyingError': 1 - exception: 3 - name: 9 - reason: 1 - NSLocalizedFailureReasonErrorKey: 1 - underlyingError: 1 - ! '@finally': 1 - DEBUG_HTTP_AUTHENTICATION: 7 - ! '*credentials': 1 - kCFHTTPAuthenticationSchemeBasic: 3 - CFHTTPMessageApplyCredentialDictionary: 4 - CFDictionaryRef: 2 - setAuthenticationScheme: 1 - ! '*usernameAndPassword': 1 - usernameAndPassword: 2 - kCFHTTPAuthenticationUsername: 4 - kCFHTTPAuthenticationPassword: 4 - ! '*cookies': 2 - NSHTTPCookieStorage: 2 - sharedHTTPCookieStorage: 2 - cookiesForURL: 1 - absoluteURL: 2 - cookies: 6 - addObjectsFromArray: 1 - count: 104 - ! '*cookie': 2 - ! '*cookieHeader': 1 - cookie: 7 - cookieHeader: 6 - setHaveBuiltRequestHeaders: 2 - valueForKey: 5 - ! '*tempUserAgentString': 1 - tempUserAgentString: 4 - ! '*fileManager': 2 - fileManager: 4 - fileExistsAtPath: 3 - setPartialDownloadSize: 1 - setDownloadComplete: 1 - setTotalBytesRead: 1 - setLastBytesRead: 1 - setOriginalURL: 1 - setLastBytesSent: 2 - setContentLength: 2 - setResponseHeaders: 2 - setRawResponseData: 2 - setReadStreamIsScheduled: 1 - setPostBodyReadStream: 5 - ASIInputStream: 4 - inputStreamWithFileAtPath: 2 - setReadStream: 3 - NSMakeCollectable: 7 - CFReadStreamCreateForStreamedHTTPRequest: 2 - inputStreamWithData: 2 - CFReadStreamCreateForHTTPRequest: 1 - scheme: 6 - lowercaseString: 3 - ! '*sslProperties': 2 - initWithObjectsAndKeys: 1 - numberWithBool: 3 - kCFStreamSSLAllowsExpiredCertificates: 1 - kCFStreamSSLAllowsAnyRoot: 1 - kCFStreamSSLValidatesCertificateChain: 1 - kCFNull: 1 - kCFStreamSSLPeerName: 1 - CFReadStreamSetProperty: 4 - kCFStreamPropertySSLSettings: 2 - CFTypeRef: 1 - sslProperties: 4 - ! '*certificates': 1 - arrayWithCapacity: 2 - certificates: 3 - cert: 2 - kCFStreamSSLCertificates: 1 - ! '*hostKey': 1 - ! '*portKey': 1 - setProxyType: 2 - kCFProxyTypeHTTP: 1 - kCFProxyTypeSOCKS: 2 - hostKey: 4 - kCFStreamPropertySOCKSProxyHost: 1 - portKey: 4 - kCFStreamPropertySOCKSProxyPort: 1 - kCFStreamPropertyHTTPProxyHost: 1 - kCFStreamPropertyHTTPProxyPort: 1 - kCFStreamPropertyHTTPSProxyHost: 1 - kCFStreamPropertyHTTPSProxyPort: 1 - ! '*proxyToUse': 1 - numberWithInt: 2 - kCFStreamPropertySOCKSProxy: 1 - proxyToUse: 2 - kCFStreamPropertyHTTPProxy: 1 - setConnectionInfo: 3 - ! '*oldStream': 1 - intValue: 4 - timeIntervalSinceNow: 1 - <: 62 - DEBUG_PERSISTENT_CONNECTIONS: 4 - removeObject: 2 - //Some: 1 - other: 1 - reused: 1 - connection: 9 - already: 2 - re: 2 - connecting: 1 - ll: 1 - that: 5 - was: 6 - previously: 1 - using: 3 - there: 1 - one: 1 - oldStream: 4 - streamSuccessfullyOpened: 1 - setConnectionCanBeReused: 3 - setLastActivityTime: 2 - date: 4 - setStatusTimer: 3 - timerWithTimeInterval: 1 - '.25': 1 - repeats: 1 - addTimer: 1 - forMode: 1 - NSTimer*: 1 - setNeedsRedirect: 2 - setRedirectCount: 1 - secondsSinceLastActivity: 3 - timeIntervalSinceDate: 1 - ! '*1.5': 1 - setRetryCount: 1 - setTotalBytesSent: 1 - CFReadStreamCopyProperty: 2 - kCFStreamPropertyHTTPRequestBytesWrittenCount: 1 - unsignedLongLongValue: 1 - PACFileReadStream: 4 - setPACFileReadStream: 1 - setPACFileData: 1 - PACFileRequest: 4 - setPACFileRequest: 1 - setFileDownloadOutputStream: 1 - setInflatedFileDownloadOutputStream: 1 - ! '*headRequest': 1 - headRequest: 31 - mutableCopy: 6 - setUseKeychainPersistence: 1 - setUsername: 1 - setPassword: 1 - setDomain: 1 - setProxyUsername: 1 - setProxyPassword: 1 - setProxyDomain: 1 - setProxyHost: 1 - setProxyPort: 1 - setShouldPresentAuthenticationDialog: 1 - setUseHTTPVersionOne: 1 - setClientCertificates: 1 - copy: 18 - setPACurl: 1 - setNumberOfTimesToRetryOnTimeout: 1 - setShouldUseRFC2616RedirectBehaviour: 1 - setMainRequest: 1 - //Only: 1 - update: 2 - isn: 1 - t: 4 - until: 2 - ve: 1 - written: 1 - will: 15 - be: 9 - of: 8 - currently: 1 - seems: 1 - KB: 2 - 'on': 5 - both: 1 - Leopard: 1 - and: 13 - iPhone: 2 - .2.1: 1 - setUploadBufferSize: 1 - setUpdatedProgress: 1 - didSendBytes: 4 - totalSize: 4 - progressToRemove: 4 - ! '*target': 2 - respondsToSelector: 22 - NSMethodSignature: 2 - ! '*signature': 1 - signature: 2 - methodSignatureForSelector: 2 - ! '*invocation': 1 - invocationWithMethodSignature: 2 - setSelector: 2 - argumentNumber: 4 - setArgument: 5 - atIndex: 7 - callback: 3 - ! '*cbSignature': 1 - ! '*cbInvocation': 1 - cbSignature: 1 - cbInvocation: 6 - setTarget: 1 - invoke: 1 - (*: 2 - ! '*)': 2 - setProgress: 1 - float: 2 - progressAmount: 4 - progress*1.0: 2 - total*1.0: 2 - double: 3 - setDoubleValue: 1 - ! '*indicator': 1 - calling: 1 - /*: 49 - ! '*/': 49 - requestRedirected: 4 - newResponseHeaders: 4 - requestWillRedirectToURL: 1 - passOnReceivedData: 1 - removeObjectForKey: 3 - dateWithTimeIntervalSinceNow: 1 - ASIFallbackToCacheIfLoadFailsCachePolicy: 1 - setError: 2 - ! '*failedRequest': 1 - failedRequest: 4 - message: 10 - kCFStreamPropertyHTTPResponseHeader: 1 - CFHTTPMessageIsHeaderComplete: 1 - CFHTTPMessageCopyAllHeaderFields: 1 - setResponseStatusCode: 1 - CFHTTPMessageGetResponseStatusCode: 1 - setResponseStatusMessage: 1 - CFHTTPMessageCopyResponseStatusLine: 1 - updateExpiryForRequest: 1 - ! '*newCredentials': 2 - ! '*sessionCredentials': 2 - dictionary: 59 - sessionCredentials: 10 - ! '*newCookies': 1 - cookiesWithResponseHeaderFields: 1 - forURL: 2 - setResponseCookies: 1 - newCookies: 3 - setCookies: 1 - mainDocumentURL: 1 - ! '*cLength': 1 - ! '*theRequest': 2 - cLength: 2 - strtoull: 1 - UTF8String: 1 - ! '*connectionHeader': 1 - ! '*httpVersion': 1 - CFHTTPMessageCopyVersion: 1 - httpVersion: 1 - connectionHeader: 2 - ! '*keepAliveHeader': 1 - keepAliveHeader: 2 - timeout: 3 - max: 5 - NSScanner: 2 - ! '*scanner': 1 - scannerWithString: 1 - scanner: 5 - scanString: 2 - intoString: 4 - scanInt: 2 - scanUpToString: 1 - responseCode: 8 - ! '*userAgentHeader': 1 - ! '*acceptHeader': 1 - userAgentHeader: 2 - acceptHeader: 2 - URLWithString: 1 - relativeToURL: 1 - charset: 5 - ! '*mimeType': 1 - setResponseEncoding: 2 - saveProxyCredentialsToKeychain: 2 - ! '*authenticationCredentials': 3 - credentialWithUser: 2 - persistence: 2 - NSURLCredentialPersistencePermanent: 2 - authenticationCredentials: 7 - setProxyAuthenticationRetryCount: 1 - CFMutableDictionaryRef: 2 - have: 3 - they: 4 - s: 22 - save: 2 - ! '*sessionProxyCredentials': 1 - sessionProxyCredentials: 6 - setProxyCredentials: 1 - setAuthenticationRetryCount: 1 - setRequestCredentials: 1 - ! '*user': 1 - ! '*pass': 1 - pass: 6 - kCFHTTPAuthenticationSchemeNTLM: 1 - CFHTTPAuthenticationRequiresAccountDomain: 1 - ! '*ntlmDomain': 1 - ntlmDomain: 2 - NSArray*: 1 - ntlmComponents: 1 - componentsSeparatedByString: 1 - AUTH: 23 - Request: 27 - ! '%': 100 - set: 2 - from: 14 - parent: 1 - properties: 1 - as: 8 - or: 9 - ASIAuthenticationDialog: 4 - retry: 2 - had: 3 - Failed: 9 - Credentials: 9 - apply: 5 - failed: 6 - Realm: 1 - challenge: 1 - must: 7 - authenticate: 1 - NTLM: 2 - handshake: 1 - step: 1 - i: 52 - bad: 2 - remove: 1 - store: 1 - cached: 3 - waiting: 2 - access: 2 - reuse: 2 - AuthenticationScheme: 2 - ask: 4 - has: 6 - 'no': 5 - present: 2 - give: 3 - up: 4 - were: 1 - not: 10 - marked: 1 - but: 4 - got: 1 - all: 1 - same.: 1 - Authorization: 1 - Basic: 1 - Range: 2 - Content: 2 - STATUS: 1 - downloading: 1 - qu: 1 - move: 2 - CONNECTION: 4 - ! '#': 7 - expires: 2 - X: 3 - Response: 1 - Status: 1 - Code: 1 - Length: 1 - attempted: 2 - it: 3 - been: 2 - closed: 2 - with: 2 - new: 2 - retried: 1 - A: 3 - failure: 1 - occurred: 3 - SSL: 1 - problem: 1 - Possible: 1 - causes: 1 - may: 1 - include: 1 - bad/expired/self: 1 - signed: 1 - clock: 1 - wrong: 1 - delete: 1 - at: 4 - Unable: 24 - obtain: 1 - servers: 1 - needed: 1 - https: 1 - Closing: 1 - because: 2 - expired: 1 - Host: 1 - Port: 1 - URL: 49 - AuthenticationRealm: 2 - CFBundleDisplayName: 1 - CFBundleName: 1 - CFBundleShortVersionString: 1 - CFBundleVersion: 1 - rv: 1 - Macintosh: 2 - Mac: 2 - OS: 2 - u.: 2 - My: 1 - Application: 1 - .5.7: 1 - en_GB: 1 - application/octet: 1 - THROTTLING: 3 - Sleeping: 1 - after: 1 - Waking: 1 - Used: 1 - last: 1 - period: 1 - ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789: 1 - Cache: 1 - Control: 1 - age: 3 - Expires: 1 - en_US_POSIX: 1 - EEE: 1 - ss: 1 - ! '@dd': 1 - MMM: 1 - yyyy: 1 - HH: 1 - mm: 1 - z: 1 - IANAEncoding: 3 - CFStringEncoding: 1 - cfEncoding: 3 - CFStringConvertIANACharSetNameToEncoding: 1 - kCFStringEncodingInvalidId: 1 - ! '*stringEncoding': 1 - CFStringConvertEncodingToNSStringEncoding: 1 - ! '@synthesize': 128 - PACFileData: 1 - Foo: 2 - NSObject: 5 - <Cocoa/Cocoa.h>: 2 - FooAppDelegate: 2 - <NSApplicationDelegate>: 1 - ! '@private': 2 - NSWindow: 2 - ! '*window': 2 - IBOutlet: 1 - window: 1 - applicationDidFinishLaunching: 1 - aNotification: 1 - ! '#include': 18 - <stddef.h>: 1 - <stdint.h>: 2 - <limits.h>: 2 - <TargetConditionals.h>: 1 - <AvailabilityMacros.h>: 1 - ! '#ifdef': 10 - __OBJC__: 2 - <Foundation/NSArray.h>: 2 - <Foundation/NSData.h>: 2 - <Foundation/NSDictionary.h>: 2 - <Foundation/NSError.h>: 1 - <Foundation/NSObjCRuntime.h>: 2 - <Foundation/NSString.h>: 1 - __cplusplus: 2 - NSINTEGER_DEFINED: 2 - defined: 8 - __LP64__: 2 - NS_BUILD_32_LIKE_64: 1 - NSIntegerMin: 3 - LONG_MIN: 3 - NSIntegerMax: 4 - LONG_MAX: 3 - NSUIntegerMax: 9 - ULONG_MAX: 3 - INT_MIN: 3 - INT_MAX: 2 - UINT_MAX: 3 - _JSONKIT_H_: 2 - __GNUC__: 6 - __APPLE_CC__: 2 - JK_DEPRECATED_ATTRIBUTE: 6 - __attribute__: 3 - deprecated: 1 - JSONKIT_VERSION_MAJOR: 1 - JSONKIT_VERSION_MINOR: 1 - JKFlags: 5 - JKParseOptionNone: 1 - JKParseOptionStrict: 1 - JKParseOptionComments: 2 - <<: 17 - JKParseOptionUnicodeNewlines: 2 - JKParseOptionLooseUnicode: 2 - JKParseOptionPermitTextAfterValidJSON: 2 - JKParseOptionValidFlags: 1 - JKParseOptionFlags: 12 - JKSerializeOptionNone: 7 - JKSerializeOptionPretty: 2 - JKSerializeOptionEscapeUnicode: 2 - JKSerializeOptionEscapeForwardSlashes: 2 - JKSerializeOptionValidFlags: 1 - JKSerializeOptionFlags: 30 - struct: 20 - JKParseState: 20 - JSONDecoder: 2 - ! '*parseState': 18 - decoder: 1 - decoderWithParseOptions: 1 - parseOptionFlags: 11 - initWithParseOptions: 1 - clearCache: 1 - parseUTF8String: 2 - size_t: 29 - parseJSONData: 2 - jsonData: 8 - objectWithUTF8String: 2 - objectWithData: 5 - mutableObjectWithUTF8String: 2 - mutableObjectWithData: 2 - ////////////: 6 - Deserializing: 1 - methods: 2 - JSONKitDeserializing: 2 - objectFromJSONString: 1 - objectFromJSONStringWithParseOptions: 2 - mutableObjectFromJSONString: 1 - mutableObjectFromJSONStringWithParseOptions: 2 - objectFromJSONData: 1 - objectFromJSONDataWithParseOptions: 2 - mutableObjectFromJSONData: 1 - mutableObjectFromJSONDataWithParseOptions: 2 - Serializing: 1 - JSONKitSerializing: 6 - JSONData: 6 - JSONDataWithOptions: 15 - serializeOptions: 42 - includeQuotes: 12 - JSONString: 6 - JSONStringWithOptions: 15 - serializeUnsupportedClassesUsingDelegate: 9 - __BLOCKS__: 2 - JSONKitSerializingBlockAdditions: 4 - serializeUnsupportedClassesUsingBlock: 8 - <stdlib.h>: 1 - <string.h>: 1 - <assert.h>: 1 - <sys/errno.h>: 1 - <math.h>: 1 - <objc/runtime.h>: 1 - //#include: 1 - <CoreFoundation/CoreFoundation.h>: 1 - <CoreFoundation/CFString.h>: 1 - <CoreFoundation/CFArray.h>: 1 - <CoreFoundation/CFDictionary.h>: 1 - <CoreFoundation/CFNumber.h>: 1 - //#import: 1 - <Foundation/NSAutoreleasePool.h>: 1 - <Foundation/NSException.h>: 1 - <Foundation/NSNull.h>: 1 - __has_feature: 3 - x: 9 - JK_ENABLE_CF_TRANSFER_OWNERSHIP_CALLBACKS: 2 - ! '#warning': 1 - As: 1 - JSONKit: 7 - v1.4: 1 - longer: 2 - required.: 1 - It: 1 - valid: 2 - option.: 1 - __OBJC_GC__: 1 - ! '#error': 6 - does: 4 - support: 3 - Objective: 3 - C: 7 - Garbage: 1 - Collection: 1 - objc_arc: 1 - Automatic: 1 - Reference: 1 - Counting: 1 - ARC: 1 - xffffffffU: 1 - fffffff: 1 - ULLONG_MAX: 1 - xffffffffffffffffULL: 1 - LLONG_MIN: 1 - fffffffffffffffLL: 1 - LL: 1 - requires: 4 - types: 2 - bits: 2 - respectively.: 1 - WORD_BIT: 1 - LONG_BIT: 1 - same: 3 - bit: 1 - architectures.: 1 - type.: 7 - SIZE_MAX: 1 - SSIZE_MAX: 1 - JK_HASH_INIT: 1 - UL: 149 - JK_FAST_TRAILING_BYTES: 2 - JK_CACHE_SLOTS_BITS: 2 - JK_CACHE_SLOTS: 1 - JK_CACHE_PROBES: 1 - JK_INIT_CACHE_AGE: 1 - JK_TOKENBUFFER_SIZE: 1 - JK_STACK_OBJS: 1 - JK_JSONBUFFER_SIZE: 1 - JK_UTF8BUFFER_SIZE: 1 - JK_ENCODE_CACHE_SLOTS: 1 - JK_ATTRIBUTES: 15 - attr: 3 - ! '...': 12 - ! '##__VA_ARGS__': 7 - JK_EXPECTED: 4 - cond: 12 - expect: 3 - __builtin_expect: 1 - JK_EXPECT_T: 23 - U: 5 - JK_EXPECT_F: 15 - JK_PREFETCH: 2 - ptr: 3 - __builtin_prefetch: 1 - JK_STATIC_INLINE: 13 - __inline__: 1 - always_inline: 1 - JK_ALIGNED: 1 - arg: 10 - aligned: 1 - JK_UNUSED_ARG: 2 - unused: 4 - JK_WARN_UNUSED: 1 - warn_unused_result: 9 - JK_WARN_UNUSED_CONST: 1 - JK_WARN_UNUSED_PURE: 1 - pure: 2 - JK_WARN_UNUSED_SENTINEL: 1 - sentinel: 1 - JK_NONNULL_ARGS: 1 - nonnull: 6 - JK_WARN_UNUSED_NONNULL_ARGS: 1 - JK_WARN_UNUSED_CONST_NONNULL_ARGS: 1 - JK_WARN_UNUSED_PURE_NONNULL_ARGS: 1 - __GNUC_MINOR__: 1 - JK_ALLOC_SIZE_NON_NULL_ARGS_WARN_UNUSED: 2 - nn: 4 - alloc_size: 1 - JKArray: 13 - JKDictionaryEnumerator: 4 - JKDictionary: 21 - JSONNumberStateStart: 1 - JSONNumberStateFinished: 1 - JSONNumberStateError: 1 - JSONNumberStateWholeNumberStart: 1 - JSONNumberStateWholeNumberMinus: 1 - JSONNumberStateWholeNumberZero: 1 - JSONNumberStateWholeNumber: 1 - JSONNumberStatePeriod: 1 - JSONNumberStateFractionalNumberStart: 1 - JSONNumberStateFractionalNumber: 1 - JSONNumberStateExponentStart: 1 - JSONNumberStateExponentPlusMinus: 1 - JSONNumberStateExponent: 1 - JSONStringStateStart: 1 - JSONStringStateParsing: 1 - JSONStringStateFinished: 1 - JSONStringStateError: 5 - JSONStringStateEscape: 2 - JSONStringStateEscapedUnicode1: 2 - JSONStringStateEscapedUnicode2: 1 - JSONStringStateEscapedUnicode3: 1 - JSONStringStateEscapedUnicode4: 1 - JSONStringStateEscapedUnicodeSurrogate1: 1 - JSONStringStateEscapedUnicodeSurrogate2: 1 - JSONStringStateEscapedUnicodeSurrogate3: 1 - JSONStringStateEscapedUnicodeSurrogate4: 1 - JSONStringStateEscapedNeedEscapeForSurrogate: 1 - JSONStringStateEscapedNeedEscapedUForSurrogate: 1 - JKParseAcceptValue: 2 - JKParseAcceptComma: 2 - JKParseAcceptEnd: 3 - JKParseAcceptValueOrEnd: 1 - JKParseAcceptCommaOrEnd: 1 - JKClassUnknown: 1 - JKClassString: 1 - JKClassNumber: 1 - JKClassArray: 1 - JKClassDictionary: 1 - JKClassNull: 1 - JKManagedBufferOnStack: 1 - JKManagedBufferOnHeap: 1 - JKManagedBufferLocationMask: 1 - JKManagedBufferLocationShift: 1 - JKManagedBufferMustFree: 2 - JKManagedBufferFlags: 1 - JKObjectStackOnStack: 1 - JKObjectStackOnHeap: 1 - JKObjectStackLocationMask: 1 - JKObjectStackLocationShift: 1 - JKObjectStackMustFree: 1 - JKObjectStackFlags: 1 - JKTokenTypeInvalid: 1 - JKTokenTypeNumber: 1 - JKTokenTypeString: 1 - JKTokenTypeObjectBegin: 1 - JKTokenTypeObjectEnd: 1 - JKTokenTypeArrayBegin: 1 - JKTokenTypeArrayEnd: 1 - JKTokenTypeSeparator: 1 - JKTokenTypeComma: 1 - JKTokenTypeTrue: 1 - JKTokenTypeFalse: 1 - JKTokenTypeNull: 1 - JKTokenTypeWhiteSpace: 1 - JKTokenType: 2 - JKValueTypeNone: 1 - JKValueTypeString: 2 - JKValueTypeLongLong: 1 - JKValueTypeUnsignedLongLong: 1 - JKValueTypeDouble: 1 - JKValueType: 1 - JKEncodeOptionAsData: 10 - JKEncodeOptionAsString: 10 - JKEncodeOptionAsTypeMask: 1 - JKEncodeOptionCollectionObj: 17 - JKEncodeOptionStringObj: 3 - JKEncodeOptionStringObjTrimQuotes: 3 - JKEncodeOptionType: 2 - JKHash: 6 - JKTokenCacheItem: 2 - JKTokenCache: 2 - JKTokenValue: 2 - JKParseToken: 2 - JKPtrRange: 2 - JKObjectStack: 5 - JKBuffer: 2 - JKConstBuffer: 2 - JKConstPtrRange: 2 - JKRange: 2 - JKManagedBuffer: 5 - JKFastClassLookup: 2 - JKEncodeCache: 6 - JKEncodeState: 11 - JKObjCImpCache: 2 - JKHashTableEntry: 22 - serializeObject: 19 - options: 24 - optionFlags: 1 - encodeOption: 20 - JKSERIALIZER_BLOCKS_PROTO: 1 - releaseState: 4 - keyHash: 21 - key: 27 - uint32_t: 1 - UTF32: 11 - uint16_t: 1 - UTF16: 1 - uint8_t: 1 - UTF8: 3 - conversionOK: 1 - sourceExhausted: 2 - targetExhausted: 1 - sourceIllegal: 1 - ConversionResult: 1 - UNI_REPLACEMENT_CHAR: 1 - FFFD: 1 - UNI_MAX_BMP: 1 - FFFF: 3 - UNI_MAX_UTF16: 1 - UNI_MAX_UTF32: 1 - FFFFFFF: 1 - UNI_MAX_LEGAL_UTF32: 1 - UNI_SUR_HIGH_START: 1 - xD800: 1 - UNI_SUR_HIGH_END: 1 - xDBFF: 1 - UNI_SUR_LOW_START: 1 - xDC00: 1 - UNI_SUR_LOW_END: 1 - xDFFF: 1 - trailingBytesForUTF8: 1 - offsetsFromUTF8: 1 - E2080UL: 1 - C82080UL: 1 - xFA082080UL: 1 - firstByteMark: 1 - xC0: 1 - xE0: 1 - xF0: 1 - xF8: 1 - xFC: 1 - JK_AT_STRING_PTR: 1 - stringBuffer.bytes.ptr: 4 - JK_END_STRING_PTR: 2 - stringBuffer.bytes.length: 2 - ! '*_JKArrayCreate': 2 - ! '*objects': 5 - mutableCollection: 7 - _JKArrayInsertObjectAtIndex: 3 - ! '*array': 9 - newObject: 12 - objectIndex: 48 - _JKArrayReplaceObjectAtIndexWithObject: 3 - _JKArrayRemoveObjectAtIndex: 3 - _JKDictionaryCapacityForCount: 4 - ! '*_JKDictionaryCreate': 2 - ! '*keys': 2 - ! '*keyHashes': 2 - ! '*_JKDictionaryHashEntry': 2 - ! '*dictionary': 13 - _JKDictionaryCapacity: 3 - _JKDictionaryResizeIfNeccessary: 3 - _JKDictionaryRemoveObjectWithEntry: 4 - ! '*entry': 4 - _JKDictionaryAddObject: 5 - ! '*_JKDictionaryHashTableEntryForKey': 2 - aKey: 18 - _JSONDecoderCleanup: 1 - ! '*decoder': 1 - _NSStringObjectFromJSONString: 1 - ! '*jsonString': 1 - ! '**error': 1 - jk_managedBuffer_release: 3 - ! '*managedBuffer': 3 - jk_managedBuffer_setToStackBuffer: 1 - ! '*ptr': 2 - ! '*jk_managedBuffer_resize': 1 - newSize: 1 - jk_objectStack_release: 1 - ! '*objectStack': 3 - jk_objectStack_setToStackBuffer: 1 - ! '**objects': 1 - ! '**keys': 1 - CFHashCode: 1 - ! '*cfHashes': 1 - jk_objectStack_resize: 1 - newCount: 1 - jk_error: 5 - ! '*format': 8 - jk_parse_string: 1 - jk_parse_number: 1 - jk_parse_is_newline: 2 - ! '*atCharacterPtr': 2 - jk_parse_skip_newline: 1 - jk_parse_skip_whitespace: 1 - jk_parse_next_token: 1 - jk_error_parse_accept_or3: 1 - state: 32 - ! '*or1String': 1 - ! '*or2String': 1 - ! '*or3String': 1 - ! '*jk_create_dictionary': 1 - startingObjectIndex: 1 - ! '*jk_parse_dictionary': 1 - ! '*jk_parse_array': 1 - ! '*jk_object_for_token': 1 - ! '*jk_cachedObjects': 2 - jk_cache_age: 1 - jk_set_parsed_token: 1 - advanceBy: 1 - jk_encode_error: 1 - ! '*encodeState': 9 - jk_encode_printf: 1 - ! '*cacheSlot': 4 - startingAtIndex: 4 - jk_encode_write: 1 - jk_encode_writePrettyPrintWhiteSpace: 1 - jk_encode_write1slow: 2 - ssize_t: 2 - depthChange: 2 - jk_encode_write1fast: 2 - jk_encode_writen: 1 - jk_encode_object_hash: 1 - ! '*objectPtr': 2 - jk_encode_updateCache: 1 - jk_encode_add_atom_to_buffer: 1 - jk_encode_write1: 1 - es: 3 - dc: 3 - f: 6 - _jk_encode_prettyPrint: 1 - jk_min: 2 - b: 8 - jk_max: 4 - jk_calculateHash: 3 - currentHash: 5 - c: 9 - Class: 3 - _JKArrayClass: 5 - _JKArrayInstanceSize: 4 - _JKDictionaryClass: 5 - _JKDictionaryInstanceSize: 4 - _jk_NSNumberClass: 2 - NSNumberAllocImp: 2 - _jk_NSNumberAllocImp: 2 - NSNumberInitWithUnsignedLongLongImp: 2 - _jk_NSNumberInitWithUnsignedLongLongImp: 2 - jk_collectionClassLoadTimeInitialization: 2 - constructor: 1 - NSAutoreleasePool: 2 - ! '*pool': 1 - objc_getClass: 2 - class_getInstanceSize: 2 - methodForSelector: 2 - temp_NSNumber: 4 - initWithUnsignedLongLong: 1 - pool: 2 - <NSCopying,>: 2 - NSMutableCopying: 2 - NSFastEnumeration: 2 - capacity: 46 - mutations: 28 - allocWithZone: 6 - NSZone: 6 - zone: 12 - raise: 20 - NSInvalidArgumentException: 7 - format: 23 - NSStringFromClass: 20 - NSStringFromSelector: 18 - _cmd: 18 - NSCParameterAssert: 20 - objects: 59 - calloc: 5 - isa: 2 - malloc: 1 - memcpy: 2 - <=>: 15 - ! '*newObjects': 1 - newObjects: 2 - realloc: 2 - NSMallocException: 2 - memset: 1 - memmove: 2 - atObject: 12 - free: 5 - NSParameterAssert: 17 - getObjects: 2 - objectsPtr: 3 - range: 6 - NSRange: 1 - NSMaxRange: 4 - NSRangeException: 6 - range.location: 2 - range.length: 1 - objectAtIndex: 10 - countByEnumeratingWithState: 2 - NSFastEnumerationState: 2 - stackbuf: 8 - len: 6 - mutationsPtr: 2 - itemsPtr: 2 - enumeratedCount: 8 - insertObject: 1 - anObject: 17 - NSInternalInconsistencyException: 5 - __clang_analyzer__: 3 - removeObjectAtIndex: 1 - replaceObjectAtIndex: 1 - copyWithZone: 2 - initWithObjects: 2 - mutableCopyWithZone: 2 - NSEnumerator: 2 - collection: 11 - nextObject: 6 - initWithJKDictionary: 3 - initDictionary: 4 - allObjects: 2 - arrayWithObjects: 1 - _JKDictionaryHashEntry: 2 - returnObject: 5 - entry: 43 - .key: 11 - jk_dictionaryCapacities: 4 - bottom: 5 - top: 4 - mid: 5 - tableSize: 2 - lround: 1 - floor: 1 - '.33': 1 - capacityForCount: 4 - oldCapacity: 2 - NS_BLOCK_ASSERTIONS: 1 - oldCount: 2 - ! '*oldEntry': 1 - idx: 31 - oldEntry: 9 - .keyHash: 2 - .object: 7 - keys: 5 - keyHashes: 2 - atEntry: 45 - removeIdx: 3 - entryIdx: 4 - ! '*atEntry': 3 - addKeyEntry: 2 - addIdx: 4 - ! '*atAddEntry': 1 - atAddEntry: 6 - keyEntry: 4 - CFEqual: 2 - CFHash: 2 - entryForKey: 5 - _JKDictionaryHashTableEntryForKey: 2 - andKeys: 1 - arrayIdx: 5 - keyEnumerator: 1 - ! '*entryForKey': 1 - initWithDictionary: 2 - parseState: 15 - va_list: 1 - varArgsList: 4 - va_start: 1 - ! '*formatString': 1 - initWithFormat: 1 - arguments: 1 - va_end: 1 - ! '*lineStart': 1 - lineStartIndex: 1 - ! '*lineEnd': 1 - lineStart: 2 - atCharacterPtr: 5 - lineEnd: 1 - ! '*lineString': 1 - ! '*.*s': 1 - JKErrorDomain: 3 - JKAtIndexKey: 1 - JKLineNumberKey: 1 - JKErrorLine0Key: 1 - JKErrorLine1Key: 1 - 'true': 3 - Illegal: 1 - sequence: 1 - found: 1 - stringState: 6 - goto: 9 - finishedParsing: 4 - jk_string_add_unicodeCodePoint: 1 - u32ch: 1 - tokenBufferIdx: 2 - stringHash: 3 - stringWithUTF8String: 1 - __FILE__: 1 - __LINE__: 1 - atStringCharacter: 3 - nextValidCharacter: 2 - continue: 2 - tokenBuffer: 1 - ! '*atStringCharacter': 2 - currentChar: 2 - isSurrogate: 1 - switch: 5 - case: 16 - escapedUnicode1: 1 - escapedUnicode2: 1 - escapedUnicodeCodePoint: 1 - escapedChar: 5 - parsedEscapedChar: 5 - F: 1 - .: 2 - e: 1 - n: 5 - r: 7 - Unexpected: 1 - token: 3 - wanted: 1 - Expected: 3 - incremented.: 1 - bucket: 1 - token.value.hash: 1 - cache.count: 1 - setBucket: 1 - useableBucket: 1 - ! '*parsedAtom': 1 - token.value.ptrRange.length: 1 - token.value.type: 1 - hashing: 1 - Internal: 2 - Unknown: 3 - line: 2 - ld: 2 - Invalid: 1 - parse: 2 - options.: 1 - NULL.: 7 - The: 6 - argument: 6 - An: 2 - converting: 3 - contents: 2 - UTF8.: 3 - resize: 9 - temporary: 9 - buffer.: 9 - vsnprintf: 1 - unexpectedly.: 1 - run: 1 - very: 1 - thing: 1 - pointer: 2 - tagged: 2 - pointers: 2 - minimum: 1 - version: 1 - required: 1 - undefined: 1 - behavior: 1 - lower: 1 - works: 2 - what: 1 - jump: 1 - subroutine: 1 - serialize: 5 - ! '@.': 3 - returned: 2 - unsupported: 1 - formatter.: 1 - Original: 1 - .4x: 5 - Error: 1 - 'false': 3 - conversion: 2 - unknown: 2 - Type: 2 - <NULL>: 1 - scalar: 2 - number: 3 - object.: 5 - Floating: 1 - point: 13 - values: 1 - finite.: 1 - JSON: 1 - NaN: 1 - Infinity.: 1 - .17g: 1 - floating: 1 - .2x: 1 - Key: 2 - 'null': 1 - allocate: 1 - structure.: 1 - respond: 1 - argument.: 1 - expected: 2 - NSDictionary.: 1 - NSString.: 2 - create: 4 - encode: 1 - stackBuffer: 1 - encodeState: 12 - stringBuffer.flags: 1 - errorExit: 1 - stringBuffer: 1 - utf8ConversionBuffer: 1 - Methods: 2 - serializing: 1 - single: 1 - JKSerializer: 18 - MainMenuViewController: 2 - TTTableViewController: 1 - ///////////////////////////////////////////////////////////////////////////////////////////////////: 21 - initWithNibName: 3 - nibNameOrNil: 1 - bundle: 3 - NSBundle: 1 - nibBundleOrNil: 1 - self.title: 2 - //self.variableHeightRows: 1 - self.tableViewStyle: 1 - UITableViewStyleGrouped: 1 - self.dataSource: 1 - TTSectionedDataSource: 1 - dataSourceWithObjects: 1 - TTTableTextItem: 48 - itemWithText: 48 - PlaygroundViewController: 2 - UIViewController: 2 - UIScrollView*: 1 - _scrollView: 5 - <Three20Core/NSDataAdditions.h>: 1 - CGFloat: 47 - kFramePadding: 6 - kElementSpacing: 3 - kGroupSpacing: 1 - addHeader: 2 - text: 10 - yOffset: 12 - UILabel*: 2 - label: 6 - UILabel: 2 - initWithFrame: 11 - CGRectZero: 5 - label.text: 2 - label.font: 3 - UIFont: 3 - systemFontOfSize: 2 - label.numberOfLines: 2 - CGRect: 47 - frame: 36 - label.frame: 4 - frame.origin.x: 2 - frame.origin.y: 15 - frame.size.width: 4 - frame.size.height: 14 - sizeWithFont: 2 - constrainedToSize: 2 - CGSizeMake: 3 - .height: 4 - addSubview: 10 - label.frame.size.height: 2 - TT_RELEASE_SAFELY: 11 - addText: 1 - loadView: 4 - UIScrollView: 1 - self.view.bounds: 2 - _scrollView.autoresizingMask: 1 - UIViewAutoresizingFlexibleWidth: 4 - UIViewAutoresizingFlexibleHeight: 1 - self.view: 4 - NSLocalizedString: 1 - Debug: 1 - test: 1 - TTGlobalCoreLocale: 1 - Current: 1 - locale: 1 - TTGlobalCorePaths: 1 - Bundle: 1 - Icon.png: 1 - Document: 1 - document.pdf: 1 - NSDataAdditions: 1 - MD5: 1 - Hash: 1 - Three20: 3 - debug: 2 - logging: 2 - currently...ON: 1 - currently...OFF: 1 - Showing: 4 - TTDPRINT.: 1 - TTD: 1 - log: 1 - levels: 1 - This: 4 - TTDERROR: 1 - level: 3 - d.: 3 - TTDWARNING: 1 - TTDINFO: 1 - TTDCONDITIONLOG.: 1 - always: 1 - display: 1 - condition: 1 - TTDCONDITIONLOG: 2 - rand: 1 - TTDPRINT: 1 - TTDASSERT.: 1 - TTDASSERT: 2 - SBJsonParser: 2 - maxDepth: 2 - NSData*: 1 - objectWithString: 5 - repr: 5 - jsonText: 1 - NSError**: 2 - self.maxDepth: 2 - self.error: 3 - SBJsonStreamParserAccumulator: 2 - ! '*accumulator': 1 - SBJsonStreamParserAdapter: 2 - ! '*adapter': 1 - adapter.delegate: 1 - accumulator: 1 - SBJsonStreamParser: 2 - ! '*parser': 1 - parser.maxDepth: 1 - parser.delegate: 1 - adapter: 1 - parser: 1 - SBJsonStreamParserComplete: 1 - accumulator.value: 1 - SBJsonStreamParserWaitingForData: 1 - SBJsonStreamParserError: 1 - parser.error: 1 - dataUsingEncoding: 1 - NSUTF8StringEncoding: 1 - error_: 2 - tmp: 3 - ! '*ui': 1 - ! '*error_': 1 - ui: 1 - StyleViewController: 2 - TTViewController: 1 - TTStyle*: 7 - _style: 9 - _styleHighlight: 6 - _styleDisabled: 6 - _styleSelected: 6 - _styleType: 6 - kTextStyleType: 2 - kViewStyleType: 2 - kImageStyleType: 2 - initWithStyleName: 1 - styleType: 3 - TTStyleSheet: 4 - globalStyleSheet: 4 - styleWithSelector: 4 - forState: 3 - UIControlStateHighlighted: 1 - UIControlStateDisabled: 1 - UIControlStateSelected: 1 - addTextView: 5 - title: 2 - style: 28 - textFrame: 3 - TTRectInset: 3 - UIEdgeInsetsMake: 3 - StyleView*: 2 - StyleView: 2 - text.text: 1 - TTStyleContext*: 1 - context: 4 - TTStyleContext: 1 - context.frame: 1 - context.delegate: 1 - context.font: 1 - systemFontSize: 1 - CGSize: 5 - addToSize: 1 - CGSizeZero: 1 - size.width: 1 - size.height: 1 - textFrame.size: 1 - text.frame: 1 - text.style: 1 - text.backgroundColor: 1 - UIColor: 3 - colorWithRed: 3 - '.9': 6 - green: 3 - blue: 3 - alpha: 3 - text.autoresizingMask: 1 - UIViewAutoresizingFlexibleBottomMargin: 3 - addView: 5 - viewFrame: 4 - view: 7 - view.style: 2 - view.backgroundColor: 2 - view.autoresizingMask: 2 - addImageView: 5 - TTImageView*: 1 - TTImageView: 1 - view.urlPath: 1 - imageFrame: 2 - view.frame: 2 - imageFrame.size: 1 - view.image.size: 1 - TUITableViewStylePlain: 2 - TUITableViewStyleGrouped: 2 - TUITableViewStyle: 4 - TUITableViewScrollPositionNone: 2 - TUITableViewScrollPositionTop: 2 - TUITableViewScrollPositionMiddle: 1 - TUITableViewScrollPositionBottom: 1 - TUITableViewScrollPositionToVisible: 3 - TUITableViewScrollPosition: 5 - TUITableViewInsertionMethodBeforeIndex: 1 - NSOrderedAscending: 4 - TUITableViewInsertionMethodAtIndex: 1 - NSOrderedSame: 1 - TUITableViewInsertionMethodAfterIndex: 1 - NSOrderedDescending: 4 - TUITableViewInsertionMethod: 3 - TUITableViewCell: 24 - ! '@protocol': 3 - TUITableViewDataSource: 2 - TUITableView: 25 - TUITableViewDelegate: 1 - <NSObject,>: 1 - TUIScrollViewDelegate: 1 - tableView: 47 - heightForRowAtIndexPath: 2 - TUIFastIndexPath: 91 - indexPath: 47 - ! '@optional': 2 - willDisplayCell: 3 - cell: 28 - forRowAtIndexPath: 3 - didSelectRowAtIndexPath: 3 - didDeselectRowAtIndexPath: 3 - didClickRowAtIndexPath: 1 - withEvent: 2 - NSEvent: 3 - event: 8 - TUITableView*: 1 - shouldSelectRowAtIndexPath: 3 - TUIFastIndexPath*: 1 - forEvent: 3 - NSEvent*: 1 - NSMenu: 1 - menuForRowAtIndexPath: 1 - tableViewWillReloadData: 3 - tableViewDidReloadData: 3 - targetIndexPathForMoveFromRowAtIndexPath: 1 - fromPath: 1 - toProposedIndexPath: 1 - proposedPath: 1 - TUIScrollView: 1 - __unsafe_unretained: 2 - <TUITableViewDataSource>: 4 - _dataSource: 7 - _sectionInfo: 30 - TUIView: 20 - _pullDownView: 7 - _headerView: 11 - _lastSize: 3 - _contentHeight: 8 - NSMutableIndexSet: 8 - _visibleSectionHeaders: 7 - _visibleItems: 17 - _reusableTableCells: 5 - _selectedIndexPath: 10 - _indexPathShouldBeFirstResponder: 4 - _futureMakeFirstResponderToken: 3 - _keepVisibleIndexPathForReload: 5 - _relativeOffsetForReload: 3 - _dragToReorderCell: 8 - CGPoint: 7 - _currentDragToReorderLocation: 2 - _currentDragToReorderMouseOffset: 2 - _currentDragToReorderIndexPath: 1 - _currentDragToReorderInsertionMethod: 1 - _previousDragToReorderIndexPath: 1 - _previousDragToReorderInsertionMethod: 1 - animateSelectionChanges: 3 - forceSaveScrollPosition: 1 - derepeaterEnabled: 1 - layoutSubviewsReentrancyGuard: 1 - didFirstLayout: 1 - dataSourceNumberOfSectionsInTableView: 1 - delegateTableViewWillDisplayCellForRowAtIndexPath: 1 - maintainContentOffsetAfterReload: 3 - _tableFlags: 1 - unsafe_unretained: 2 - dataSource: 2 - <TUITableViewDelegate>: 4 - readwrite: 1 - reloadData: 3 - reloadDataMaintainingVisibleIndexPath: 2 - relativeOffset: 10 - reloadLayout: 2 - numberOfSections: 10 - numberOfRowsInSection: 9 - section: 56 - rectForHeaderOfSection: 5 - rectForSection: 3 - rectForRowAtIndexPath: 10 - NSIndexSet: 6 - indexesOfSectionsInRect: 3 - rect: 9 - indexesOfSectionHeadersInRect: 2 - indexPathForCell: 2 - indexPathsForRowsInRect: 3 - indexPathForRowAtPoint: 2 - indexPathForRowAtVerticalOffset: 2 - offset: 24 - indexOfSectionWithHeaderAtPoint: 2 - indexOfSectionWithHeaderAtVerticalOffset: 2 - enumerateIndexPathsUsingBlock: 2 - ! '*indexPath': 11 - ! '*stop': 8 - enumerateIndexPathsWithOptions: 2 - NSEnumerationOptions: 4 - usingBlock: 6 - enumerateIndexPathsFromIndexPath: 4 - fromIndexPath: 6 - toIndexPath: 12 - withOptions: 4 - headerViewForSection: 6 - cellForRowAtIndexPath: 10 - visibleCells: 3 - sortedVisibleCells: 2 - indexPathsForVisibleRows: 2 - scrollToRowAtIndexPath: 3 - atScrollPosition: 3 - scrollPosition: 9 - animated: 28 - indexPathForSelectedRow: 4 - indexPathForFirstRow: 2 - indexPathForLastRow: 2 - selectRowAtIndexPath: 3 - deselectRowAtIndexPath: 3 - strong: 3 - ! '*pullDownView': 1 - pullDownViewIsVisible: 3 - ! '*headerView': 6 - dequeueReusableCellWithIdentifier: 2 - identifier: 7 - <NSObject>: 1 - ! '@required': 1 - table: 2 - canMoveRowAtIndexPath: 2 - moveRowAtIndexPath: 2 - numberOfSectionsInTableView: 3 - NSIndexPath: 5 - indexPathForRow: 11 - row: 32 - inSection: 11 - HEADER_Z_POSITION: 2 - height: 17 - TUITableViewRowInfo: 3 - TUITableViewSection: 17 - ! '*_tableView': 1 - ! '*_headerView': 1 - sectionIndex: 23 - numberOfRows: 13 - sectionHeight: 9 - sectionOffset: 8 - ! '*rowInfo': 1 - initWithNumberOfRows: 2 - _tableView: 3 - rowInfo: 7 - _setupRowHeights: 2 - self.headerView: 2 - roundf: 2 - header.frame.size.height: 1 - h: 5 - _tableView.delegate: 1 - .offset: 2 - rowHeight: 2 - sectionRowOffset: 2 - tableRowOffset: 2 - headerHeight: 4 - self.headerView.frame.size.height: 1 - headerView: 14 - _tableView.dataSource: 3 - _headerView.autoresizingMask: 1 - TUIViewAutoresizingFlexibleWidth: 1 - _headerView.layer.zPosition: 1 - Private: 1 - _updateSectionInfo: 3 - _updateDerepeaterViews: 2 - pullDownView: 1 - _tableFlags.animateSelectionChanges: 3 - _tableFlags.delegateTableViewWillDisplayCellForRowAtIndexPath: 2 - setDataSource: 1 - _tableFlags.dataSourceNumberOfSectionsInTableView: 2 - setAnimateSelectionChanges: 1 - ! '*s': 3 - y: 12 - CGRectMake: 8 - self.bounds.size.width: 5 - indexPath.section: 3 - indexPath.row: 1 - ! '*section': 9 - removeFromSuperview: 7 - removeAllIndexes: 2 - ! '*sections': 1 - bounds: 3 - .size.height: 1 - self.contentInset.top*2: 1 - section.sectionOffset: 1 - sections: 4 - self.contentInset.bottom: 1 - _enqueueReusableCell: 3 - ! '*identifier': 1 - cell.reuseIdentifier: 1 - ! '*c': 1 - lastObject: 1 - removeLastObject: 1 - prepareForReuse: 1 - allValues: 1 - SortCells: 1 - ! '*a': 3 - ! '*b': 2 - ! '*ctx': 1 - a.frame.origin.y: 2 - b.frame.origin.y: 2 - ! '*v': 2 - v: 6 - sortedArrayUsingComparator: 1 - NSComparator: 1 - NSComparisonResult: 1 - INDEX_PATHS_FOR_VISIBLE_ROWS: 5 - allKeys: 1 - ! '*i': 5 - ! '*cell': 8 - ! '*indexes': 2 - CGRectIntersectsRect: 5 - indexes: 4 - addIndex: 3 - ! '*indexPaths': 1 - cellRect: 7 - indexPaths: 2 - CGRectContainsPoint: 1 - cellRect.origin.y: 1 - origin: 1 - brief: 1 - Obtain: 1 - index: 11 - whose: 2 - specified: 1 - If: 1 - exists: 1 - negative: 1 - param: 1 - location: 2 - p: 5 - '0': 2 - width: 1 - point.y: 1 - section.headerView: 13 - sectionLowerBound: 2 - fromIndexPath.section: 1 - sectionUpperBound: 3 - toIndexPath.section: 1 - rowLowerBound: 2 - fromIndexPath.row: 1 - rowUpperBound: 3 - toIndexPath.row: 1 - irow: 3 - rowCount: 3 - j: 5 - stop: 3 - 'FALSE': 3 - _topVisibleIndexPath: 1 - ! '*topVisibleIndex': 1 - sortedArrayUsingSelector: 2 - compare: 4 - topVisibleIndex: 2 - setFrame: 2 - _tableFlags.forceSaveScrollPosition: 3 - setContentOffset: 2 - _tableFlags.didFirstLayout: 3 - __isDraggingCell: 1 - __updateDraggingCell: 1 - setPullDownView: 1 - _pullDownView.hidden: 5 - setHeaderView: 1 - _headerView.hidden: 5 - _preLayoutCells: 3 - self.bounds: 1 - CGSizeEqualToSize: 1 - bounds.size: 2 - previousOffset: 3 - .0f: 1 - ! '*savedIndexPath': 1 - _tableFlags.maintainContentOffsetAfterReload: 4 - self.contentSize.height: 2 - self.contentOffset.y: 1 - self.nsView: 2 - inLiveResize: 1 - savedIndexPath: 5 - visibleRect: 6 - v.origin.y: 1 - v.size.height: 5 - r.origin.y: 4 - r.size.height: 8 - _lastSize.height: 1 - bounds.size.height: 1 - self.contentSize: 4 - scrollToTopAnimated: 1 - newOffset: 2 - self.contentOffset: 1 - CGPointMake: 1 - self.contentOffset.x: 1 - scrollRectToVisible: 3 - _layoutSectionHeaders: 3 - visibleHeadersNeedRelayout: 1 - visible: 9 - ! '*oldIndexes': 1 - ! '*newIndexes': 1 - ! '*toRemove': 1 - oldIndexes: 2 - toRemove: 2 - removeIndexes: 2 - newIndexes: 3 - ! '*toAdd': 1 - toAdd: 1 - __block: 1 - ! '*pinnedHeader': 1 - enumerateIndexesUsingBlock: 2 - headerFrame: 6 - CGRectGetMaxY: 5 - headerFrame.origin.y: 1 - headerFrame.size.height: 2 - pinnedHeader: 2 - isKindOfClass: 3 - TUITableViewSectionHeader: 6 - .pinnedToViewport: 3 - 'TRUE': 1 - pinnedHeader.frame.origin.y: 1 - pinnedHeaderFrame: 2 - pinnedHeader.frame: 2 - pinnedHeaderFrame.origin.y: 1 - section.headerView.frame: 1 - setNeedsLayout: 4 - section.headerView.superview: 1 - removeIndex: 1 - _layoutCells: 3 - visibleCellsNeedRelayout: 5 - cell.frame: 2 - cell.layer.zPosition: 2 - ! '*oldVisibleIndexPaths': 1 - ! '*newVisibleIndexPaths': 1 - ! '*indexPathsToRemove': 1 - oldVisibleIndexPaths: 2 - indexPathsToRemove: 2 - removeObjectsInArray: 2 - newVisibleIndexPaths: 2 - ! '*indexPathsToAdd': 1 - indexPathsToAdd: 3 - NSLog: 3 - invalidateHoverForView: 1 - prepareForDisplay: 1 - setSelected: 4 - _delegate: 3 - acceptsFirstResponder: 2 - self.nsWindow: 4 - makeFirstResponderIfNotAlreadyInResponderChain: 2 - withFutureRequestToken: 1 - superview: 1 - bringSubviewToFront: 1 - headerViewRect: 3 - s.height: 3 - _headerView.frame.size.height: 2 - visible.size.width: 3 - _headerView.frame: 1 - pullDownRect: 4 - _pullDownView.frame.size.height: 2 - _pullDownView.frame: 1 - self.delegate: 10 - removeAllObjects: 1 - layoutSubviews: 4 - _tableFlags.layoutSubviewsReentrancyGuard: 3 - setAnimationsEnabled: 1 - CATransaction: 3 - begin: 1 - setDisableActions: 1 - _tableFlags.derepeaterEnabled: 1 - commit: 1 - sec: 3 - _makeRowAtIndexPathFirstResponder: 2 - futureMakeFirstResponderRequestToken: 1 - ! '*oldIndexPath': 1 - oldIndexPath: 2 - setNeedsDisplay: 2 - NSResponder: 1 - ! '*firstResponder': 1 - firstResponder: 3 - indexPathForFirstVisibleRow: 2 - ! '*firstIndexPath': 1 - firstIndexPath: 4 - indexPathForLastVisibleRow: 2 - ! '*lastIndexPath': 5 - lastIndexPath: 8 - performKeyAction: 2 - noCurrentSelection: 2 - isARepeat: 1 - TUITableViewCalculateNextIndexPathBlock: 3 - selectValidIndexPath: 3 - ! '*startForNoSelection': 2 - calculateNextIndexPath: 4 - foundValidNextRow: 4 - ! '*newIndexPath': 1 - newIndexPath: 6 - startForNoSelection: 1 - self.animateSelectionChanges: 1 - charactersIgnoringModifiers: 1 - characterAtIndex: 1 - NSUpArrowFunctionKey: 1 - lastIndexPath.section: 2 - lastIndexPath.row: 2 - rowsInSection: 7 - NSDownArrowFunctionKey: 1 - setMaintainContentOffsetAfterReload: 1 - newValue: 2 - indexPathWithIndexes: 1 - indexAtPosition: 2 - argc: 1 - ! '*argv': 1 - Opa: - /*: 2 - ! '*/': 2 - server: 1 - Server.one_page_server: 1 - (: 4 - ! '-': 1 - <h1>: 2 - Hello: 2 - world: 2 - </h1>: 2 - ): 4 - Server.start: 1 - Server.http: 1 - ! '{': 2 - page: 1 - function: 1 - ! '}': 2 - title: 1 - OpenCL: - double: 3 - run_fftw: 1 - (: 11 - int: 3 - n: 2 - const: 2 - float: 2 - ! '*': 4 - x: 2 - y: 2 - ): 11 - ! '{': 2 - fftwf_plan: 1 - p1: 3 - fftwf_plan_dft_1d: 1 - fftwf_complex: 2 - FFTW_FORWARD: 1 - FFTW_ESTIMATE: 1 - ;: 9 - nops: 3 - t: 4 - cl: 2 - realTime: 2 - for: 1 - op: 3 - <: 1 - +: 2 - fftwf_execute: 1 - ! '}': 2 - ! '-': 1 - /: 1 - fftwf_destroy_plan: 1 - return: 1 - OpenEdge ABL: - /*: 19 - ! '*/': 20 - USING: 3 - Progress.Lang.*.: 3 - CLASS: 2 - email.Email: 2 - USE: 2 - ! '-': 58 - WIDGET: 2 - POOL: 2 - ! '&': 3 - SCOPED: 1 - DEFINE: 13 - QUOTES: 1 - ! '@#': 1 - ! '%': 2 - ! '*': 2 - +: 15 - ._MIME_BOUNDARY_.: 1 - ! '#@': 1 - WIN: 1 - From: 6 - To: 9 - CC: 2 - BCC: 2 - Personal: 1 - Private: 1 - Company: 2 - confidential: 2 - normal: 1 - urgent: 2 - non: 1 - Cannot: 3 - locate: 3 - file: 6 - in: 3 - the: 3 - filesystem: 3 - R: 3 - File: 3 - exists: 3 - but: 3 - is: 3 - not: 3 - readable: 3 - Error: 3 - copying: 3 - from: 3 - <">: 8 - ttSenders: 2 - cEmailAddress: 8 - n: 24 - ttToRecipients: 1 - Reply: 3 - ttReplyToRecipients: 1 - Cc: 2 - ttCCRecipients: 1 - Bcc: 2 - ttBCCRecipients: 1 - Return: 1 - Receipt: 1 - ttDeliveryReceiptRecipients: 1 - Disposition: 3 - Notification: 1 - ttReadReceiptRecipients: 1 - Subject: 4 - Importance: 3 - H: 1 - High: 1 - L: 1 - Low: 1 - Sensitivity: 2 - Priority: 2 - Date: 4 - By: 1 - Expiry: 2 - Mime: 1 - Version: 1 - '.0': 1 - Content: 10 - Type: 4 - multipart/mixed: 1 - ;: 5 - boundary: 1 - text/plain: 2 - charset: 2 - Transfer: 4 - Encoding: 4 - base64: 2 - bit: 2 - application/octet: 1 - stream: 1 - attachment: 2 - filename: 2 - cNewLine.: 1 - RETURN: 7 - lcReturnData.: 1 - END: 11 - METHOD.: 6 - METHOD: 6 - PUBLIC: 6 - CHARACTER: 8 - send: 1 - (: 31 - ): 31 - objSendEmailAlgorithm: 1 - sendEmail: 2 - INPUT: 11 - THIS: 1 - OBJECT: 2 - .: 13 - CLASS.: 2 - INTERFACE: 1 - email.SendEmailAlgorithm: 1 - ipobjEmail: 1 - AS: 17 - INTERFACE.: 1 - PARAMETER: 3 - objSendEmailAlg: 1 - email.SendEmailSocket: 1 - 'NO': 10 - UNDO.: 9 - VARIABLE: 9 - vbuffer: 1 - MEMPTR: 2 - vstatus: 1 - LOGICAL: 1 - vState: 2 - INTEGER: 4 - ASSIGN: 2 - vstate: 1 - FUNCTION: 1 - getHostname: 1 - RETURNS: 1 - cHostname: 1 - THROUGH: 1 - hostname: 1 - ECHO.: 1 - IMPORT: 1 - UNFORMATTED: 1 - cHostname.: 2 - CLOSE.: 1 - FUNCTION.: 1 - PROCEDURE: 1 - newState: 2 - INTEGER.: 1 - pstring: 2 - CHARACTER.: 1 - newState.: 1 - IF: 1 - HELO: 1 - r: 11 - MAIL: 1 - hardcoded@gmail.com: 4 - RCPT: 1 - TO: 3 - DATA: 1 - Test: 2 - Body: 1 - QUIT: 1 - Email: 2 - has: 2 - been: 2 - accepted: 1 - for: 1 - delivery.: 1 - aborted: 1 - PROCEDURE.: 1 - email.Util: 1 - FINAL: 1 - PRIVATE: 1 - STATIC: 5 - cMonthMap: 2 - EXTENT: 1 - INITIAL: 1 - ABLDateTimeToEmail: 3 - ipdttzDateTime: 6 - DATETIME: 3 - TZ: 2 - STRING: 5 - DAY: 1 - MONTH: 1 - YEAR: 1 - TRUNCATE: 2 - MTIME: 1 - /: 2 - ABLTimeZoneToString: 2 - TIMEZONE: 1 - ipdtDateTime: 2 - ipiTimeZone: 3 - ABSOLUTE: 1 - MODULO: 1 - LONGCHAR: 4 - ConvertDataToBase64: 1 - iplcNonEncodedData: 2 - lcPreBase64Data: 4 - lcPostBase64Data: 3 - mptrPostBase64Data: 3 - i: 3 - COPY: 1 - LOB: 1 - FROM: 1 - mptrPostBase64Data.: 1 - BASE64: 1 - ENCODE: 1 - SET: 1 - SIZE: 1 - DO: 1 - LENGTH: 1 - BY: 1 - SUBSTRING: 1 - CHR: 2 - END.: 1 - lcPostBase64Data.: 1 - MESSAGE: 1 - PHP: - <: 5 - php: 6 - /*: 188 - ! '*/': 198 - namespace: 9 - Symfony: 25 - Component: 25 - Console: 18 - ;: 744 - use: 26 - Input: 6 - InputInterface: 3 - ArgvInput: 2 - ArrayInput: 3 - InputDefinition: 1 - InputOption: 1 - InputArgument: 1 - Output: 5 - OutputInterface: 5 - ConsoleOutput: 2 - ConsoleOutputInterface: 2 - Command: 7 - HelpCommand: 1 - ListCommand: 1 - Helper: 3 - HelperSet: 2 - FormatterHelper: 1 - DialogHelper: 1 - class: 18 - Application: 2 - ! '{': 521 - private: 17 - commands: 16 - wantHelps: 2 - 'false': 70 - runningCommand: 3 - name: 107 - version: 6 - catchExceptions: 3 - autoExit: 3 - definition: 3 - helperSet: 6 - public: 150 - function: 124 - __construct: 8 - (: 1253 - ): 1251 - this: 498 - ! '-': 645 - 'true': 84 - array: 159 - getDefaultHelperSet: 1 - getDefaultInputDefinition: 1 - foreach: 51 - getDefaultCommands: 1 - as: 57 - command: 18 - add: 2 - ! '}': 503 - run: 2 - input: 24 - 'null': 106 - output: 39 - if: 237 - new: 28 - try: 3 - statusCode: 14 - doRun: 2 - catch: 2 - Exception: 2 - e: 7 - throw: 6 - instanceof: 7 - renderException: 2 - getErrorOutput: 1 - else: 25 - getCode: 1 - is_numeric: 7 - ! '&&': 59 - //: 12 - exit: 12 - return: 153 - getCommandName: 1 - hasParameterOption: 7 - setDecorated: 2 - elseif: 25 - setInteractive: 2 - function_exists: 3 - getHelperSet: 3 - has: 2 - inputStream: 2 - get: 3 - getInputStream: 1 - posix_isatty: 1 - setVerbosity: 2 - VERBOSITY_QUIET: 1 - VERBOSITY_VERBOSE: 1 - writeln: 1 - getLongVersion: 2 - find: 4 - setHelperSet: 1 - getDefinition: 1 - getHelp: 2 - messages: 5 - <comment>: 6 - Usage: 1 - </comment>: 6 - Options: 1 - ! '%': 23 - s: 27 - <info>: 6 - </info>: 6 - UNKNOWN: 2 - Tool: 1 - The: 13 - does: 2 - not: 10 - exist.: 2 - help: 3 - There: 1 - are: 9 - 'no': 3 - defined: 1 - in: 6 - the: 47 - namespace.: 1 - is: 14 - ambiguous: 3 - .: 132 - defined.: 1 - t: 20 - unique: 4 - names: 3 - abbrevs: 13 - asText: 1 - raw: 2 - all: 16 - findNamespace: 1 - width: 5 - strlen: 5 - getName: 3 - +: 12 - sortCommands: 2 - space: 1 - sprintf: 3 - getDescription: 1 - implode: 1 - PHP_EOL: 1 - Available: 1 - _global: 1 - '.0': 2 - UTF: 2 - symfony: 1 - namespaces: 1 - id: 35 - mb_strlen: 1 - <error>: 1 - </error>: 1 - trace: 1 - file: 4 - n/a: 4 - line: 4 - args: 13 - type: 62 - at: 2 - PHP_WINDOWS_VERSION_BUILD: 2 - ANSICON: 2 - d: 10 - x.*: 1 - x: 2 - to: 26 - execute: 2 - h: 1 - Display: 2 - message.: 2 - quiet: 1 - q: 1 - Do: 2 - any: 6 - verbose: 1 - v: 3 - Increase: 1 - verbosity: 1 - of: 25 - messages.: 1 - V: 1 - application: 1 - version.: 1 - ansi: 2 - Force: 1 - ANSI: 2 - output.: 2 - Disable: 1 - interaction: 1 - n: 10 - ask: 1 - interactive: 1 - question.: 1 - available: 1 - suppressing: 1 - error: 1 - ! '*': 73 - ! '@return': 7 - string: 8 - getSttyColumns: 1 - descriptorspec: 2 - process: 3 - proc_open: 1 - pipes: 4 - is_resource: 1 - info: 2 - stream_get_contents: 1 - fclose: 2 - proc_close: 1 - namespacedCommands: 5 - key: 30 - extractNamespace: 1 - ksort: 2 - ! '&': 9 - getAbbreviationSuggestions: 1 - count: 22 - limit: 7 - parts: 2 - array_slice: 4 - findAlternativeCommands: 1 - callback: 5 - item: 9 - findAlternatives: 3 - findAlternativeNamespace: 1 - getNamespaces: 1 - collection: 3 - alternatives: 6 - call_user_func: 1 - lev: 6 - levenshtein: 2 - <=>: 2 - '3': 1 - strpos: 9 - values: 9 - /: 12 - ! '||': 31 - value: 37 - asort: 1 - array_keys: 7 - BrowserKit: 1 - DomCrawler: 6 - Crawler: 2 - Link: 2 - Form: 2 - Process: 1 - PhpProcess: 1 - abstract: 1 - Client: 1 - protected: 37 - history: 5 - cookieJar: 5 - server: 7 - request: 56 - response: 22 - crawler: 1 - insulated: 6 - redirect: 6 - followRedirects: 4 - History: 2 - CookieJar: 2 - setServerParameters: 2 - followRedirect: 2 - Boolean: 2 - insulate: 2 - class_exists: 1 - RuntimeException: 1 - array_merge: 9 - setServerParameter: 1 - getServerParameter: 1 - default: 8 - HTTP_REFERER: 1 - HTTP_HOST: 3 - HTTPS: 2 - https: 1 - Location: 1 - Content: 1 - Type: 1 - TMPDIR: 1 - TEMP: 1 - O: 1 - OUTPUT: 2 - ERROR: 1 - To: 1 - requests: 1 - you: 4 - need: 1 - override: 2 - getScript: 1 - method.: 2 - was: 1 - redirected.: 1 - http: 19 - s/: 1 - localhost: 1 - ! '#': 3 - /#.*: 1 - .*: 4 - /.*: 1 - currentUri: 3 - uri: 1 - requestFromRequest: 1 - Request: 1 - changeHistory: 2 - getMethod: 2 - getUri: 1 - getParameters: 1 - getFiles: 2 - getServer: 1 - getContent: 1 - <?php>: 3 - CakePHP: 6 - tm: 6 - Rapid: 2 - Development: 2 - Framework: 2 - cakephp: 4 - org: 10 - Copyright: 4 - '2005': 4 - '2012': 4 - Cake: 7 - Software: 4 - Foundation: 4 - Inc: 4 - cakefoundation: 4 - Licensed: 2 - under: 2 - MIT: 4 - License: 4 - Redistributions: 2 - files: 5 - must: 2 - retain: 2 - above: 2 - copyright: 4 - notice: 2 - link: 2 - Project: 2 - package: 2 - Controller: 4 - since: 2 - '0': 4 - '2': 2 - '9': 1 - license: 4 - www: 2 - opensource: 2 - licenses: 2 - mit: 2 - App: 20 - uses: 49 - CakeResponse: 2 - Network: 1 - ClassRegistry: 9 - Utility: 6 - ComponentCollection: 2 - View: 9 - CakeEvent: 9 - Event: 6 - CakeEventListener: 4 - CakeEventManager: 5 - controller: 5 - for: 12 - organization: 1 - business: 1 - logic: 2 - Provides: 1 - basic: 1 - functionality: 1 - such: 2 - rendering: 1 - views: 1 - inside: 1 - layouts: 1 - automatic: 1 - model: 20 - availability: 1 - redirection: 4 - callbacks: 17 - and: 15 - more: 2 - Controllers: 2 - should: 3 - provide: 1 - a: 33 - number: 1 - action: 11 - methods: 8 - These: 1 - 'on': 7 - that: 6 - prefixed: 1 - with: 14 - _: 2 - part: 2 - Each: 1 - serves: 1 - an: 5 - endpoint: 1 - performing: 2 - specific: 1 - resource: 1 - or: 16 - resources: 1 - For: 4 - example: 2 - adding: 1 - editing: 1 - object: 12 - listing: 1 - set: 9 - objects: 5 - You: 3 - can: 5 - access: 2 - parameters: 2 - using: 3 - contains: 1 - POST: 2 - GET: 2 - FILES: 1 - were: 2 - request.: 2 - After: 1 - required: 2 - actions: 2 - controllers: 3 - responsible: 1 - creating: 1 - response.: 2 - This: 2 - usually: 1 - takes: 1 - form: 4 - generated: 1 - possibly: 1 - another: 2 - action.: 2 - In: 1 - either: 1 - case: 13 - allows: 2 - manipulate: 1 - aspects: 1 - created: 6 - by: 6 - Dispatcher: 1 - based: 3 - routing.: 1 - By: 1 - conventional: 1 - names.: 1 - /posts/index: 1 - maps: 1 - PostsController: 1 - index: 9 - re: 1 - map: 1 - urls: 1 - Router: 5 - connect: 1 - ! '@package': 2 - Cake.Controller: 1 - ! '@property': 8 - AclComponent: 1 - Acl: 1 - AuthComponent: 1 - Auth: 1 - CookieComponent: 1 - Cookie: 1 - EmailComponent: 1 - Email: 1 - PaginatorComponent: 1 - Paginator: 4 - RequestHandlerComponent: 1 - RequestHandler: 1 - SecurityComponent: 1 - Security: 1 - SessionComponent: 1 - Session: 1 - ! '@link': 4 - //book.cakephp.org/2.0/en/controllers.html: 1 - extends: 3 - Object: 4 - implements: 3 - helpers: 1 - _responseClass: 1 - viewPath: 3 - layoutPath: 1 - viewVars: 3 - view: 5 - layout: 5 - autoRender: 6 - autoLayout: 2 - Components: 4 - components: 1 - viewClass: 10 - ext: 1 - plugin: 31 - cacheAction: 1 - passedArgs: 2 - scaffold: 2 - modelClass: 25 - modelKey: 2 - validationErrors: 13 - _mergeParent: 4 - _eventManager: 12 - substr: 2 - get_class: 3 - Inflector: 13 - singularize: 1 - underscore: 3 - childMethods: 2 - get_class_methods: 3 - parentMethods: 2 - array_diff: 1 - CakeRequest: 6 - setRequest: 2 - parent: 6 - __isset: 2 - switch: 3 - is_array: 33 - list: 28 - pluginSplit: 11 - loadModel: 3 - __get: 2 - isset: 61 - params: 34 - paginate: 2 - base: 4 - here: 1 - webroot: 1 - data: 86 - bare: 1 - named: 1 - pass: 1 - ! '@param': 10 - void: 1 - camelize: 2 - array_key_exists: 4 - empty: 53 - invokeAction: 1 - method: 31 - ReflectionMethod: 2 - _isPrivateAction: 2 - PrivateActionException: 1 - invokeArgs: 1 - ReflectionException: 1 - _getScaffold: 2 - MissingActionException: 1 - privateAction: 4 - isPublic: 1 - in_array: 14 - prefixes: 4 - prefix: 2 - explode: 4 - Scaffold: 1 - _mergeControllerVars: 2 - pluginController: 9 - pluginDot: 4 - mergeParent: 2 - is_subclass_of: 3 - pluginVars: 3 - appVars: 6 - merge: 7 - _mergeVars: 5 - get_class_vars: 2 - array_unshift: 1 - _mergeUses: 2 - lifecycle.: 1 - own: 1 - listener: 1 - implementedEvents: 2 - constructClasses: 1 - init: 4 - current: 3 - getEventManager: 9 - attach: 4 - startupProcess: 1 - dispatch: 7 - shutdownProcess: 1 - httpCodes: 3 - code: 15 - MissingModelException: 1 - url: 21 - status: 20 - extract: 7 - EXTR_OVERWRITE: 3 - event: 20 - //TODO: 1 - Remove: 1 - following: 1 - when: 2 - events: 1 - fully: 1 - migrated: 1 - break: 8 - breakOn: 2 - collectReturn: 1 - isStopped: 3 - result: 5 - _parseBeforeRedirect: 2 - session_write_close: 1 - header: 3 - is_string: 6 - codes: 3 - array_flip: 1 - send: 1 - _stop: 1 - resp: 6 - compact: 3 - one: 22 - two: 6 - array_combine: 1 - setAction: 1 - func_get_args: 5 - unset: 16 - call_user_func_array: 4 - validate: 29 - errors: 15 - validateErrors: 1 - alias: 41 - invalidFields: 3 - render: 3 - className: 32 - models: 8 - keys: 7 - currentModel: 2 - currentObject: 6 - getObject: 1 - is_a: 1 - location: 2 - body: 2 - referer: 5 - local: 2 - disableCache: 2 - flash: 1 - message: 13 - pause: 2 - postConditions: 1 - op: 3 - bool: 1 - exclusive: 3 - cond: 1 - LIKE: 2 - AND: 1 - Model: 7 - Model.InnerModel: 1 - called: 2 - but: 1 - before: 8 - further: 1 - If: 5 - returns: 3 - will: 3 - continue: 7 - variables: 2 - have: 3 - same: 1 - meaning: 1 - mixed: 5 - A: 2 - URL: 2 - pointing: 1 - within: 1 - app: 1 - absolute: 1 - integer: 1 - Optional: 1 - HTTP: 1 - eg: 1 - boolean: 3 - be: 6 - after: 7 - stop: 1 - used: 3 - //book.cakephp.org/2.0/en/controllers.html#request: 1 - life: 1 - cycle: 1 - beforeRedirect: 1 - afterFilter: 1 - beforeScaffold: 2 - _beforeScaffold: 1 - afterScaffoldSave: 2 - _afterScaffoldSave: 1 - afterScaffoldSaveError: 2 - _afterScaffoldSaveError: 1 - scaffoldError: 2 - _scaffoldError: 1 - Field: 3 - FormField: 1 - ArrayAccess: 1 - button: 4 - fields: 65 - DOMNode: 2 - node: 4 - initialize: 1 - getFormNode: 1 - setValues: 1 - getValues: 2 - field: 78 - isDisabled: 2 - FileFormField: 2 - hasValue: 1 - getValue: 2 - getPhpValues: 1 - qs: 1 - http_build_query: 1 - PUT: 1 - DELETE: 1 - PATCH: 1 - submit: 3 - image: 2 - selected: 1 - ancestor.: 1 - Unable: 2 - tag.: 1 - _root: 1 - descendant: 3 - ! '|': 3 - textarea: 2 - select: 2 - checkbox: 1 - radio: 1 - Unreachable: 1 - foo: 2 - P: 4 - <base>: 1 - <extra>: 2 - <segment>: 1 - extra: 1 - segment: 1 - Malformed: 1 - path: 3 - relational: 2 - mapper: 2 - DBO: 2 - backed: 2 - mapping: 1 - database: 4 - tables: 1 - PHP: 19 - versions: 1 - '5': 1 - '10': 1 - Validation: 1 - String: 1 - Set: 4 - BehaviorCollection: 2 - ModelBehavior: 1 - ConnectionManager: 4 - Xml: 2 - Automatically: 1 - selects: 1 - table: 18 - pluralized: 1 - lowercase: 1 - i: 4 - User: 1 - least: 1 - primary: 4 - key.: 1 - Cake.Model: 1 - //book.cakephp.org/2.0/en/models.html: 1 - useDbConfig: 8 - useTable: 10 - displayField: 5 - schemaName: 2 - primaryKey: 12 - _schema: 4 - validationDomain: 8 - tablePrefix: 10 - tableToModel: 3 - cacheQueries: 1 - belongsTo: 9 - hasOne: 4 - hasMany: 4 - hasAndBelongsToMany: 10 - actsAs: 2 - Behaviors: 8 - whitelist: 7 - cacheSources: 1 - findQueryType: 1 - recursive: 16 - order: 10 - virtualFields: 8 - _associationKeys: 2 - _associations: 10 - __backAssociation: 18 - __backInnerAssociation: 1 - __backOriginalAssociation: 1 - __backContainableAssociation: 1 - _insertID: 3 - _sourceConfigured: 3 - findMethods: 1 - ds: 4 - addObject: 2 - parentClass: 3 - get_parent_class: 1 - tableize: 2 - _createLinks: 3 - __call: 1 - dispatchMethod: 3 - getDataSource: 9 - query: 25 - k: 2 - relation: 7 - assocKey: 9 - dynamic: 2 - isKeySet: 1 - AppModel: 1 - _constructLinkedModel: 2 - schema: 8 - hasField: 3 - setDataSource: 2 - property_exists: 3 - bindModel: 1 - reset: 6 - assoc: 66 - assocName: 6 - unbindModel: 1 - trim: 1 - _generateAssociation: 2 - dynamicWith: 2 - foreignKey: 15 - _id: 2 - associationForeignKey: 8 - joinTable: 2 - listSources: 1 - strtolower: 8 - found: 2 - it: 3 - sets: 1 - other: 2 - than: 1 - copied: 1 - property: 1 - object.: 1 - Returns: 1 - //book.cakephp.org/2.0/en/models/saving: 1 - your: 3 - data.html: 1 - is_object: 3 - SimpleXMLElement: 1 - _normalizeXmlData: 3 - toArray: 1 - reverse: 1 - _setAliasData: 2 - modelName: 3 - fieldSet: 3 - fieldName: 21 - fieldValue: 7 - deconstruct: 2 - getAssociated: 2 - xml: 2 - getColumnType: 1 - useNewDate: 1 - dateFields: 1 - timeFields: 2 - date: 3 - val: 6 - datetime: 1 - timestamp: 1 - hour: 1 - min: 1 - sec: 1 - format: 5 - m: 3 - H: 1 - describe: 1 - cake_dev: 1 - getColumnTypes: 1 - build: 1 - data.: 1 - without: 1 - implementing: 1 - table.: 1 - Name: 1 - look: 1 - checkVirtual: 4 - checks: 1 - declared: 1 - virtual: 1 - indicating: 1 - whether: 1 - exists.: 1 - first: 16 - exists: 9 - none: 1 - isVirtualField: 3 - hasMethod: 2 - method_exists: 2 - getVirtualField: 1 - create: 2 - filterKey: 1 - defaults: 1 - properties: 3 - conditions: 26 - fieldList: 11 - updated: 4 - modified: 4 - formatter: 2 - now: 1 - Model.beforeSave: 1 - length: 2 - binary: 2 - Model.afterSave: 1 - keepExisting: 1 - counterScope: 3 - old: 9 - counterCache: 9 - _count: 1 - only: 3 - SomeModel: 2 - AssociatedModel: 2 - otherfield: 2 - atomic: 22 - deep: 10 - Model.beforeDelete: 1 - Model.afterDelete: 1 - dependent: 1 - page: 7 - offset: 3 - Thomas: 2 - Anderson: 2 - email: 1 - field3: 1 - DESC: 1 - group: 2 - joins: 2 - Thought: 2 - thoughts: 1 - LEFT: 1 - person_id: 1 - Person: 1 - _find: 2 - Model.beforeFind: 1 - calculate: 1 - expression: 1 - /count/i: 1 - keyPath: 2 - valuePath: 2 - groupPath: 2 - then: 1 - rows: 1 - them.: 1 - state: 7 - Either: 1 - results: 10 - _findNeighbors: 1 - prevVal: 2 - str_replace: 1 - return2: 6 - _findThreaded: 1 - nest: 1 - _filterResults: 1 - modParams: 1 - resetAssociations: 2 - isUnique: 1 - is_bool: 1 - sql: 1 - db: 13 - validates: 2 - options: 14 - _validateWithModels: 2 - array_map: 1 - behaviorMethods: 3 - _validate: 2 - f: 4 - ruleSet: 10 - validator: 32 - valid: 14 - requiredFail: 4 - rule: 11 - ruleParams: 11 - array_values: 1 - preg_match: 1 - Configure: 2 - read: 2 - trigger_error: 2 - __d: 6 - E_USER_WARNING: 2 - invalidate: 2 - association: 4 - join: 6 - joinModel: 2 - newData: 5 - row: 6 - isForeignKey: 1 - foreignKeys: 3 - escapeField: 1 - getID: 1 - getLastInsertID: 1 - getInsertID: 2 - setInsertID: 1 - getNumRows: 1 - lastNumRows: 1 - getAffectedRows: 1 - lastAffected: 1 - dataSource: 3 - oldConfig: 3 - config: 6 - oldDb: 3 - getSchemaName: 1 - MissingConnectionException: 1 - setSource: 1 - associations: 1 - associated: 3 - array_unique: 1 - beforeFind: 1 - queryData: 1 - afterFind: 1 - beforeSave: 1 - afterSave: 1 - beforeDelete: 1 - cascade: 1 - afterDelete: 1 - beforeValidate: 1 - onError: 1 - _clearCache: 1 - pluralize: 5 - check: 2 - clearCache: 1 - //Will: 1 - cache: 1 - deleting: 1 - php_help: 1 - arg: 1 - <h3>: 2 - About: 1 - </h3>: 2 - <p>: 1 - filter: 8 - module: 3 - adds: 2 - site: 3 - <a>: 4 - href=: 4 - text: 5 - formats: 1 - </a>: 4 - ability: 1 - content: 1 - comment: 1 - general: 1 - purpose: 1 - scripting: 1 - language: 2 - widely: 1 - web: 1 - development: 1 - which: 2 - Drupal: 1 - been: 1 - developed.: 1 - information: 1 - see: 1 - online: 1 - handbook: 1 - entry: 1 - ! '@filter': 1 - admin/help/filter: 1 - ! '@php': 3 - net: 1 - //www.php.net: 1 - //drupal.org/handbook/modules/php/: 1 - </p>: 1 - Uses: 1 - <dl>: 1 - <dt>: 1 - Enabling: 1 - execution: 1 - </dt>: 1 - <dd>: 1 - users: 2 - proper: 1 - permissions: 1 - include: 1 - custom: 1 - executed: 1 - pages: 1 - processed.: 1 - While: 1 - powerful: 1 - flexible: 1 - feature: 1 - trusted: 3 - user: 2 - experience: 1 - significant: 1 - dangerous: 1 - security: 1 - risk: 1 - hands: 1 - malicious: 1 - inexperienced: 1 - user.: 1 - Even: 1 - may: 1 - accidentally: 1 - compromise: 1 - entering: 1 - malformed: 1 - incorrect: 1 - code.: 2 - Only: 1 - most: 1 - granted: 1 - permission: 1 - added: 1 - through: 1 - carefully: 1 - examined: 1 - use.: 1 - Example: 1 - snippets: 3 - Drupal.org.: 1 - //drupal.org/handbook/customization/php: 1 - </dd>: 1 - </dl>: 1 - settings: 2 - title: 1 - Use: 1 - restrict: 1 - eval: 4 - It: 1 - buffering: 1 - capture: 1 - both: 1 - returned: 2 - printed: 2 - text.: 1 - Unlike: 1 - we: 2 - require: 1 - surrounded: 1 - tags: 1 - words: 1 - evaluate: 1 - stand: 1 - alone: 1 - file.: 1 - Using: 1 - wrapper: 1 - also: 1 - ensures: 1 - evaluated: 1 - overwrite: 1 - calling: 1 - unlike: 1 - regular: 1 - call.: 1 - evaluate.: 1 - containing: 1 - followed: 1 - ! '@ingroup': 1 - php_wrappers: 1 - php_eval: 1 - global: 2 - theme_path: 5 - theme_info: 3 - conf: 2 - old_theme_path: 2 - drupal_get_path: 1 - dirname: 1 - filename: 1 - ob_start: 1 - print: 1 - ob_get_contents: 1 - ob_end_clean: 1 - _php_filter_tips: 1 - long: 2 - 'FALSE': 2 - base_url: 1 - php_filter_info: 1 - filters: 2 - Parrot Assembly: - ! '#': 1 - /usr/bin/env: 1 - parrot: 1 - .pcc_sub: 1 - main: 2 - say: 1 - end: 1 - Parrot Internal Representation: - ! '#': 1 - /usr/bin/env: 1 - parrot: 1 - .sub: 1 - main: 1 - say: 1 - .end: 1 - Perl: - package: 7 - App: 46 - Ack: 46 - ;: 446 - use: 47 - warnings: 10 - strict: 10 - File: 20 - Next: 12 - '.40': 1 - Plugin: 1 - Basic: 4 - head1: 14 - NAME: 2 - ! '-': 436 - A: 2 - container: 1 - for: 31 - functions: 2 - the: 77 - ack: 16 - program: 2 - VERSION: 12 - Version: 1 - '.94': 1 - cut: 19 - our: 16 - COPYRIGHT: 3 - BEGIN: 3 - ! '{': 376 - ! '}': 385 - fh: 7 - ! '*STDOUT': 2 - ! '%': 44 - types: 21 - type_wanted: 4 - mappings: 13 - ignore_dirs: 4 - input_from_pipe: 4 - output_to_pipe: 5 - dir_sep_chars: 5 - is_cygwin: 3 - is_windows: 4 - Spec: 2 - (: 328 - ): 322 - Glob: 1 - Getopt: 1 - Long: 1 - _MTN: 1 - blib: 1 - CVS: 2 - RCS: 1 - SCCS: 1 - _darcs: 1 - _sgbak: 1 - _build: 1 - actionscript: 1 - qw: 15 - as: 18 - mxml: 1 - ada: 2 - adb: 1 - ads: 1 - asm: 2 - s: 32 - batch: 1 - bat: 1 - cmd: 1 - binary: 2 - q: 3 - Binary: 2 - files: 15 - defined: 17 - by: 3 - Perl: 2 - T: 1 - op: 1 - default: 4 - 'off': 1 - tt: 2 - tt2: 1 - ttml: 1 - vb: 2 - bas: 1 - cls: 1 - frm: 1 - ctl: 1 - resx: 1 - verilog: 1 - v: 10 - vh: 1 - sv: 1 - vhdl: 2 - vhd: 1 - vim: 2 - yaml: 2 - yml: 1 - xml: 3 - dtd: 1 - xsl: 1 - xslt: 1 - ent: 1 - while: 8 - my: 142 - type: 35 - exts: 3 - each: 3 - if: 96 - ref: 19 - ext: 7 - ! '@': 15 - push: 6 - ! '#': 142 - _: 56 - mk: 1 - mak: 1 - not: 13 - t: 12 - p: 3 - STDIN: 1 - O: 2 - eq: 13 - /MSWin32/: 1 - quotemeta: 2 - catfile: 1 - .ackrc: 1 - _ackrc: 1 - <: 3 - ! '|': 32 - after: 12 - context: 5 - i: 10 - B: 6 - before: 1 - C: 58 - a: 41 - all: 5 - break: 5 - color: 15 - colour: 2 - match: 11 - filename: 30 - lineno: 2 - column: 2 - env: 54 - follow: 2 - g: 4 - G: 3 - group: 2 - heading: 7 - h: 2 - 'no': 10 - H: 2 - with: 12 - ignore: 4 - case: 6 - invert: 3 - file: 13 - lines: 2 - l: 5 - matches: 5 - L: 14 - without: 2 - m: 4 - max: 7 - count: 9 - n: 26 - recurse: 3 - ! '&': 12 - output: 7 - pager: 5 - nopager: 1 - passthru: 3 - print0: 3 - Q: 2 - literal: 1 - r: 7 - R: 3 - show: 3 - smart: 1 - sort: 2 - u: 5 - unrestricted: 2 - w: 1 - word: 1 - regexp: 1 - dirs: 4 - noignore: 1 - version: 3 - help: 6 - man: 3 - bundling: 1 - no_ignore_case: 2 - See: 4 - or: 23 - options.: 2 - must: 2 - be: 12 - greater: 1 - than: 3 - zero: 1 - All: 4 - line: 7 - options: 1 - are: 10 - invalid.: 1 - pass_through: 1 - no_auto_abbrev: 1 - set: 6 - c: 3 - add: 3 - redefine: 1 - and: 36 - die: 7 - qq: 6 - ! '{-': 3 - -}: 3 - Builtin: 2 - cannot: 2 - changed.: 2 - ne: 5 - delete_type: 3 - else: 18 - exists: 9 - ! '&&': 30 - warn: 7 - Type: 1 - does: 1 - exist: 2 - creating: 1 - ! '...': 3 - unless: 18 - ! '@exts': 4 - split: 3 - /: 28 - s/: 10 - .//: 1 - ! '||': 18 - e: 7 - Cannot: 2 - append: 1 - to: 42 - .: 54 - return: 60 - head2: 16 - Removes: 1 - from: 7 - internal: 1 - structures: 1 - containing: 5 - information: 1 - type_wanted.: 1 - sub: 94 - shift: 74 - Internal: 1 - error: 2 - delete: 4 - builtin: 2 - keys: 6 - grep: 8 - ignoredir_filter: 3 - Standard: 1 - filter: 6 - pass: 2 - <File::Next>: 1 - descend_filter.: 1 - It: 3 - returns: 8 - 'true': 4 - directory: 3 - is: 29 - any: 1 - of: 19 - ones: 1 - we: 4 - know: 1 - want: 5 - ignore.: 1 - dir: 3 - remove_dir_sep: 2 - path: 16 - This: 7 - removes: 1 - trailing: 1 - separator: 2 - there: 1 - one: 5 - its: 1 - argument: 1 - //: 3 - filetypes: 4 - Returns: 27 - list: 3 - that: 10 - I: 35 - <$filename>: 1 - could: 2 - be.: 1 - For: 1 - example: 1 - F: 2 - <foo.pod>: 1 - The: 10 - filetype: 1 - will: 3 - <undef>: 1 - can: 10 - it: 21 - skipped: 2 - something: 1 - should: 3 - avoid: 1 - searching: 2 - even: 3 - under: 3 - a.: 1 - constant: 1 - TEXT: 8 - basename: 4 - .*: 1 - is_searchable: 4 - lc_basename: 4 - lc: 2 - +: 92 - o: 11 - open: 2 - header: 11 - <$fh>: 1 - close: 4 - b: 4 - ruby: 1 - lua: 1 - erl: 1 - hp: 1 - ython: 1 - d: 6 - d.: 1 - ! '*': 8 - b/: 2 - ba: 1 - k: 3 - z: 1 - sh: 1 - /i: 2 - search: 2 - 'false': 2 - 'No': 2 - regular: 1 - expression: 4 - found.: 2 - regex: 13 - www: 1 - U: 1 - y: 5 - tr/: 1 - x: 4 - w/: 1 - nOo_/: 1 - _thpppt: 2 - _get_thpppt: 1 - print: 16 - exit: 4 - _bar: 2 - <<: 7 - ! '*I': 1 - ! '#.': 3 - .#: 3 - I#: 1 - ! '#I': 5 - ! '#7': 2 - results.: 1 - 'on': 9 - when: 6 - used: 4 - interactively: 3 - Print: 1 - between: 1 - results: 6 - different: 1 - files.: 2 - Same: 4 - nogroup: 1 - noheading: 1 - nobreak: 1 - Highlight: 1 - matching: 5 - text: 2 - redirected: 1 - Windows: 1 - COLOR: 3 - Set: 1 - filenames: 1 - numbers.: 1 - flush: 2 - Flush: 1 - immediately: 1 - non: 1 - goes: 1 - pipe: 2 - finding: 1 - f: 5 - Only: 1 - found: 3 - searching.: 1 - PATTERN: 1 - specified.: 1 - REGEX: 1 - but: 5 - only: 4 - REGEX.: 1 - Sort: 1 - lexically.: 1 - Print/search: 1 - handle: 1 - do: 5 - g/: 1 - G.: 1 - Show: 1 - which: 7 - has.: 1 - inclusion/exclusion: 1 - searched: 2 - Ignores: 1 - .svn: 1 - other: 2 - ignored: 2 - directories: 3 - name: 15 - Add/Remove: 1 - Recurse: 1 - into: 1 - subdirectories: 1 - END_OF_HELP: 2 - once: 1 - VMS: 1 - vd: 1 - Term: 3 - ANSIColor: 4 - black: 2 - on_yellow: 2 - bold: 4 - green: 2 - yellow: 2 - printing: 1 - qr/: 6 - opt: 69 - last_output_line: 3 - any_output: 5 - before_context: 5 - after_context: 4 - keep_context: 4 - ! '@before': 8 - before_starts_at_line: 5 - res: 13 - next_text: 3 - has_lines: 2 - m/: 2 - regex/: 4 - next: 3 - print_match_or_context: 5 - elsif: 4 - last: 7 - nmatches: 21 - show_filename: 16 - context_overall_output_count: 3 - print_blank_line: 1 - ! '@lines': 2 - is_binary: 1 - is_match: 4 - starting_line_no: 1 - match_start: 3 - match_end: 2 - Prints: 3 - out: 1 - around: 1 - match.: 1 - line_no: 6 - show_column: 2 - display_filename: 4 - colored: 3 - ENV: 5 - ACK_COLOR_FILENAME: 1 - print_first_filename: 1 - sep: 4 - output_func: 4 - ! '@_': 25 - print_separator: 1 - print_filename: 1 - display_line_no: 2 - ACK_COLOR_LINENO: 1 - print_line_no: 1 - regex/go: 1 - regex/Term: 1 - substr: 1 - ACK_COLOR_MATCH: 1 - /eg: 1 - z/: 1 - K/: 1 - z//: 1 - print_column_no: 1 - TOTAL_COUNT_SCOPE: 1 - total_count: 4 - get_total_count: 1 - reset_total_count: 2 - search_and_list: 3 - Optimized: 1 - lines.: 1 - ors: 6 - show_total: 3 - print_count: 2 - print_count0: 1 - filetypes_supported_set: 2 - True/False: 1 - filetypes_supported: 1 - print_files: 2 - iter: 8 - returned: 1 - iterator: 2 - <$regex>: 1 - If: 1 - <$one>: 1 - stop: 1 - first.: 1 - record: 1 - <$ors>: 1 - defaults: 2 - <"\n">: 1 - defines: 1 - what: 6 - filename.: 1 - show_types: 1 - join: 1 - print_files_with_matches: 2 - where: 5 - was: 6 - repo: 3 - Repository: 3 - new: 24 - next_resource: 2 - Not: 1 - working: 1 - here: 2 - yet: 1 - thru: 1 - unchanged: 1 - ! '@results': 5 - pattern: 2 - eval: 3 - Win32: 3 - HIDDEN: 1 - SYSTEM: 1 - GetAttributes: 1 - attr: 2 - ! '@files': 2 - get_starting_points: 2 - ! '@ARGV': 6 - reference: 14 - starting: 1 - argv: 4 - ! '@what': 7 - expand_filenames: 1 - reslash: 1 - start_point: 3 - _match: 4 - target: 3 - invert_flag: 2 - get_iterator: 2 - Return: 1 - starting_point: 5 - map: 5 - g_regex: 2 - undef: 2 - file_filter: 5 - g_regex/: 3 - invert_file_match: 3 - is_interesting: 2 - descend_filter: 3 - error_handler: 1 - msg: 2 - sort_files: 2 - follow_symlinks: 1 - set_up_pager: 1 - command: 4 - Unable: 1 - going: 1 - pipe.: 1 - exit_from_ack: 2 - Exit: 1 - application: 6 - correct: 1 - code.: 1 - otherwise: 1 - number: 1 - handed: 1 - in: 18 - argument.: 1 - rc: 5 - LICENSE: 2 - Copyright: 1 - Andy: 1 - Lester.: 1 - free: 2 - software: 2 - you: 17 - redistribute: 2 - and/or: 2 - modify: 2 - terms: 2 - Artistic: 1 - License: 1 - v2.0.: 1 - Plack: 7 - Request: 4 - .008_001: 1 - HTTP: 8 - Headers: 6 - Carp: 6 - Hash: 4 - MultiValue: 4 - Body: 1 - Upload: 1 - TempBuffer: 1 - URI: 15 - Escape: 4 - _deprecated: 8 - alt: 1 - method: 9 - caller: 1 - carp: 2 - class: 6 - croak: 2 - required: 2 - bless: 6 - address: 5 - REMOTE_ADDR: 1 - remote_host: 3 - REMOTE_HOST: 1 - protocol: 3 - SERVER_PROTOCOL: 1 - REQUEST_METHOD: 1 - port: 1 - SERVER_PORT: 1 - user: 3 - REMOTE_USER: 1 - request_uri: 2 - REQUEST_URI: 2 - path_info: 3 - PATH_INFO: 3 - script_name: 2 - SCRIPT_NAME: 1 - scheme: 5 - secure: 4 - body: 18 - input: 5 - content_length: 3 - CONTENT_LENGTH: 1 - content_type: 3 - CONTENT_TYPE: 1 - session: 3 - session_options: 2 - logger: 4 - cookies: 8 - self: 92 - HTTP_COOKIE: 3 - ! '@pairs': 2 - pair: 4 - key: 10 - value: 5 - uri_unescape: 1 - query_parameters: 5 - uri: 3 - query_form: 1 - content: 7 - _parse_request_body: 3 - written: 1 - through: 2 - headers: 35 - field: 5 - HTTPS: 1 - _//: 1 - CONTENT: 1 - COOKIE: 1 - content_encoding: 4 - referer: 2 - user_agent: 2 - body_parameters: 4 - parameters: 8 - query: 4 - flatten: 2 - uploads: 4 - hostname: 1 - url_scheme: 1 - params: 2 - query_params: 1 - body_params: 1 - cookie: 5 - param: 1 - wantarray: 2 - get_all: 3 - upload: 1 - raw_uri: 1 - base: 11 - path_query: 1 - _uri_base: 1 - path_escape_class: 1 - uri_escape: 1 - psgi.url_scheme: 1 - plack.request.body: 2 - plack.request.upload: 2 - plack.request.http.body: 1 - psgix.input.buffered: 2 - psgi.input: 1 - like: 3 - doing: 1 - so: 4 - mod_perl: 1 - re: 2 - writing: 2 - web: 1 - framework: 1 - then: 1 - work: 2 - expect: 2 - to.: 1 - Creates: 1 - request: 9 - object.: 5 - ATTRIBUTES: 1 - over: 1 - item: 24 - shared: 1 - PSGI: 3 - environment: 4 - hash: 12 - reference.: 3 - this: 10 - passes: 1 - during: 1 - whole: 1 - request/response: 1 - cycle.: 1 - IP: 2 - client: 1 - <REMOTE_ADDR>: 1 - remote: 1 - host: 1 - <REMOTE_HOST>: 1 - client.: 1 - may: 2 - empty: 2 - have: 3 - get: 6 - using: 4 - <address>: 1 - resolve: 1 - your: 8 - own.: 1 - Contains: 1 - <GET>: 1 - <POST>: 1 - <HEAD>: 1 - etc: 1 - HTTP/1.0: 1 - HTTP/1.1: 1 - current: 3 - request.: 4 - raw: 1 - undecoded: 2 - path.: 3 - You: 4 - probably: 1 - <NOT>: 1 - dispatch: 1 - requests.: 3 - <PATH_INFO>: 2 - environment.: 2 - Use: 1 - local: 1 - Similar: 1 - <path_info>: 3 - </>: 3 - empty.: 1 - In: 2 - words: 1 - virtual: 1 - req: 11 - </"DISPATCHING">: 1 - details.: 1 - <SCRIPT_NAME>: 3 - absolute: 2 - hosted.: 1 - <http>: 1 - <https>: 1 - indicating: 1 - whether: 1 - connection: 1 - https: 1 - <psgi.input>: 1 - handle.: 1 - optional: 3 - <psgix.session>: 1 - hash.: 3 - When: 2 - retrieve: 1 - store: 1 - per: 1 - data: 1 - <psgix.session.options>: 1 - <psgix.logger>: 1 - code: 9 - supposed: 1 - send: 1 - log: 1 - message: 2 - level: 1 - cookies.: 1 - Values: 1 - strings: 1 - sent: 1 - clients: 1 - decoded.: 1 - string: 4 - GET: 2 - parameters.: 2 - <Hash::MultiValue>: 5 - posted: 1 - POST: 4 - As: 1 - <query_parameters>: 2 - merged: 1 - raw_body: 1 - an: 7 - byte: 1 - object: 2 - constructed: 1 - various: 1 - values: 3 - such: 5 - <QUERY_STRING>: 1 - <HTTP_HOST>: 1 - <SERVER_NAME>: 1 - <SERVER_PORT>: 1 - Every: 2 - time: 3 - called: 2 - cloned: 2 - <uri>: 1 - contains: 2 - up: 2 - hosted: 1 - at.: 1 - <REMOTE_USER>: 1 - foo: 7 - need: 1 - ugly: 1 - unsafe: 1 - anymore.: 1 - And: 1 - explicitly: 1 - multiple: 3 - same: 2 - call: 4 - <get_all>: 1 - ! '@foo': 1 - also: 2 - <get_one>: 1 - always: 4 - parameter: 2 - independent: 1 - unlike: 1 - <param>: 1 - <mixed>: 1 - '.05': 1 - later: 1 - <traditional>: 1 - mixed: 1 - either: 1 - scalar: 1 - array: 4 - depending: 2 - might: 2 - useful: 1 - already: 1 - deal: 1 - ugliness.: 1 - PARSING: 1 - BODY: 1 - MULTIPLE: 1 - OBJECTS: 1 - methods: 5 - parse: 1 - <content>: 1 - <body_parameters>: 2 - <uploads>: 2 - carefully: 1 - coded: 1 - save: 1 - parsed: 1 - well: 1 - temporary: 1 - buffer: 1 - them: 2 - times: 2 - create: 1 - objects: 3 - they: 1 - safely: 1 - won: 1 - gives: 1 - action: 1 - Note: 1 - give: 1 - assume: 1 - prefix: 1 - building: 1 - URLs: 1 - templates: 1 - redirections.: 1 - /logout: 1 - ll: 1 - full: 1 - </app/logout?signoff=1>: 1 - INCOMPATIBILITIES: 1 - '.99': 1 - many: 1 - utility: 1 - removed: 2 - deprecated: 2 - most: 1 - made: 1 - read: 1 - only.: 1 - following: 1 - <hostname>: 1 - <url_scheme>: 1 - <params>: 1 - <query_params>: 1 - <body_params>: 1 - <cookie>: 1 - <raw_uri>: 1 - They: 1 - major: 2 - release.: 1 - related: 1 - <parameters>: 1 - now: 3 - rather: 2 - <scalar>: 1 - insecure.: 1 - more: 1 - about: 1 - change.: 1 - had: 1 - bug: 1 - document: 2 - mismatching.: 1 - suggesting: 1 - returning: 1 - updated: 1 - alias: 1 - <CGI::Simple::Cookie>: 1 - anymore: 1 - means: 2 - <CAN>: 1 - NOT: 1 - serialized.: 1 - encoding: 1 - decoding: 1 - totally: 1 - framework.: 1 - Also: 1 - <cookies>: 1 - <strings>: 1 - CGI: 1 - Simple: 1 - Cookie: 1 - longer: 1 - write: 1 - wacky: 1 - instead: 1 - simply: 1 - AUTHORS: 1 - Tatsuhiko: 2 - Miyagawa: 2 - Kazuhiro: 1 - Osawa: 1 - Tokuhiro: 2 - Matsuno: 2 - SEE: 3 - ALSO: 3 - <Plack::Response>: 1 - <HTTP::Request>: 1 - <Catalyst::Request>: 1 - library: 1 - itself.: 1 - Response: 1 - Util: 3 - Accessor: 1 - status: 9 - Scalar: 2 - location: 3 - redirect: 1 - url: 2 - finalize: 3 - clone: 1 - _finalize_cookies: 1 - /chr: 1 - /ge: 1 - //g: 1 - header_field_names: 1 - _body: 2 - blessed: 1 - overload: 1 - Method: 1 - domain: 2 - expires: 2 - HttpOnly: 1 - GMT: 1 - Hello: 2 - World: 2 - response: 2 - back: 1 - AUTHOR: 1 - <Plack::Request>: 1 - /usr/bin/env: 1 - perl: 5 - MAIN: 1 - main: 3 - env_is_usable: 3 - th: 1 - pt: 1 - bar: 3 - unshift: 1 - read_ackrc: 1 - ! '@keys': 2 - ACK_/: 1 - ! '@ENV': 1 - load_colors: 1 - ACK_SWITCHES: 1 - show_help: 1 - get_command_line_options: 1 - build_regex: 1 - nargs: 2 - specify: 1 - both: 1 - g.: 1 - Defining: 2 - own: 2 - less: 2 - provides: 1 - simple: 1 - compilation: 1 - mode: 1 - has: 1 - ability: 1 - guess: 1 - based: 1 - mode.: 1 - spend: 1 - day: 1 - mostly: 1 - inside: 1 - TextMate: 2 - built: 1 - find: 3 - project: 1 - sucks: 1 - large: 1 - projects.: 1 - So: 1 - hacked: 1 - ack.: 1 - result: 1 - Search: 1 - Project: 1 - <http://www.simplicidade.org/notes/archives/2008/03/search_in_proje.html>: 1 - Invalid: 2 - option: 1 - passed: 1 - badkey: 1 - dir/: 1 - negative: 1 - val: 1 - ignoring: 1 - Permission: 1 - denied: 1 - str: 3 - I#7#I: 1 - /I: 1 - ! '*/': 1 - ! '*.*s': 1 - end: 1 - END_OF_VERSION: 1 - Matched: 1 - hidden: 1 - ! '@ISA': 1 - nexted: 3 - Resource: 1 - examples/benchmarks/fib.pl: 1 - Fibonacci: 2 - Benchmark: 1 - SYNOPSIS: 1 - DESCRIPTION: 1 - Calculates: 1 - Number: 1 - <n>: 1 - unspecified: 1 - fib: 4 - N: 2 - <examples/benchmarks/fib.pir>: 1 - ..: 3 - Foo: 9 - Bar: 1 - ! '@array': 1 - /usr/local/bin/perl: 1 - /usr/bin/perl: 1 - PowerShell: - ! '#': 2 - Write: 2 - ! '-': 2 - Host: 2 - function: 1 - hello: 1 - (: 1 - ): 1 - ! '{': 1 - ! '}': 1 - Prolog: - /*: 2 - ! '*/': 2 - male: 3 - (: 10 - john: 2 - ): 10 - .: 7 - peter: 3 - female: 2 - vick: 2 - christie: 3 - parents: 4 - brother: 1 - X: 3 - Y: 2 - ! '-': 1 - F: 2 - M: 2 - Python: - from: 30 - __future__: 2 - import: 38 - unicode_literals: 1 - copy: 1 - sys: 1 - functools: 1 - update_wrapper: 2 - future_builtins: 1 - zip: 3 - django.db.models.manager: 1 - ! '#': 171 - django.conf: 1 - settings: 1 - django.core.exceptions: 1 - (: 418 - ObjectDoesNotExist: 2 - MultipleObjectsReturned: 2 - FieldError: 4 - ValidationError: 9 - NON_FIELD_ERRORS: 3 - ): 418 - django.core: 1 - validators: 1 - django.db.models.fields: 1 - AutoField: 2 - FieldDoesNotExist: 1 - django.db.models.fields.related: 1 - ManyToOneRel: 3 - OneToOneField: 3 - add_lazy_relation: 2 - django.db: 1 - router: 1 - transaction: 1 - DatabaseError: 3 - DEFAULT_DB_ALIAS: 2 - django.db.models.query: 1 - Q: 1 - django.db.models.query_utils: 2 - DeferredAttribute: 3 - django.db.models.deletion: 1 - Collector: 2 - django.db.models.options: 1 - Options: 2 - django.db.models: 1 - signals: 1 - django.db.models.loading: 1 - register_models: 2 - get_model: 3 - django.utils.translation: 1 - ugettext_lazy: 1 - as: 6 - _: 5 - django.utils.functional: 1 - curry: 6 - django.utils.encoding: 1 - smart_str: 2 - force_unicode: 3 - django.utils.text: 1 - get_text_list: 2 - capfirst: 6 - class: 23 - ModelBase: 4 - type: 3 - Metaclass: 1 - for: 52 - all: 4 - models.: 1 - def: 48 - __new__: 2 - cls: 29 - name: 30 - bases: 6 - attrs: 5 - super_new: 3 - super: 2 - .__new__: 1 - parents: 8 - b: 9 - in: 66 - if: 119 - isinstance: 9 - not: 59 - return: 40 - module: 9 - attrs.pop: 2 - new_class: 9 - ! '{': 14 - ! '}': 17 - attr_meta: 5 - None: 54 - abstract: 3 - getattr: 23 - 'False': 20 - meta: 10 - else: 24 - base_meta: 2 - is: 43 - model_module: 1 - sys.modules: 1 - new_class.__module__: 1 - kwargs: 9 - model_module.__name__.split: 1 - ! '-': 32 - new_class.add_to_class: 7 - ! '**kwargs': 8 - subclass_exception: 3 - tuple: 3 - x.DoesNotExist: 1 - x: 4 - hasattr: 9 - and: 42 - x._meta.abstract: 2 - or: 19 - x.MultipleObjectsReturned: 1 - base_meta.abstract: 1 - new_class._meta.ordering: 1 - base_meta.ordering: 1 - new_class._meta.get_latest_by: 1 - base_meta.get_latest_by: 1 - is_proxy: 5 - new_class._meta.proxy: 1 - new_class._default_manager: 2 - new_class._base_manager: 2 - new_class._default_manager._copy_to_model: 1 - new_class._base_manager._copy_to_model: 1 - m: 3 - new_class._meta.app_label: 3 - seed_cache: 2 - only_installed: 2 - obj_name: 2 - obj: 2 - attrs.items: 1 - new_fields: 2 - new_class._meta.local_fields: 3 - +: 5 - new_class._meta.local_many_to_many: 2 - new_class._meta.virtual_fields: 1 - field_names: 3 - set: 3 - f.name: 5 - f: 18 - base: 13 - parent: 4 - parent._meta.abstract: 1 - parent._meta.fields: 1 - raise: 18 - TypeError: 4 - ! '%': 39 - continue: 10 - new_class._meta.setup_proxy: 1 - new_class._meta.concrete_model: 2 - base._meta.concrete_model: 2 - o2o_map: 3 - dict: 3 - f.rel.to: 1 - original_base: 1 - parent_fields: 3 - base._meta.local_fields: 1 - base._meta.local_many_to_many: 1 - field: 32 - field.name: 10 - base.__name__: 2 - base._meta.abstract: 2 - elif: 2 - attr_name: 3 - auto_created: 1 - 'True': 15 - parent_link: 1 - new_class._meta.parents: 1 - copy.deepcopy: 2 - new_class._meta.parents.update: 1 - base._meta.parents: 1 - new_class.copy_managers: 2 - base._meta.abstract_managers: 1 - original_base._meta.concrete_managers: 1 - base._meta.virtual_fields: 1 - attr_meta.abstract: 1 - new_class.Meta: 1 - new_class._prepare: 1 - copy_managers: 1 - base_managers: 2 - base_managers.sort: 1 - mgr_name: 3 - manager: 3 - val: 14 - new_manager: 2 - manager._copy_to_model: 1 - cls.add_to_class: 1 - add_to_class: 1 - value: 13 - value.contribute_to_class: 1 - setattr: 13 - _prepare: 1 - Creates: 1 - some: 2 - methods: 11 - once: 1 - self._meta: 3 - has: 2 - been: 1 - populated.: 1 - opts: 5 - cls._meta: 1 - opts._prepare: 1 - opts.order_with_respect_to: 2 - cls.get_next_in_order: 1 - cls._get_next_or_previous_in_order: 2 - is_next: 5 - cls.get_previous_in_order: 1 - make_foreign_order_accessors: 2 - model: 10 - field.rel.to: 2 - method_get_order: 2 - method_set_order: 2 - opts.order_with_respect_to.rel.to: 1 - cls.__doc__: 3 - cls.get_absolute_url: 3 - get_absolute_url: 2 - signals.class_prepared.send: 1 - sender: 4 - ModelState: 2 - object: 5 - A: 7 - storing: 1 - instance: 6 - state: 1 - __init__: 4 - self: 76 - db: 2 - self.db: 1 - self.adding: 1 - Model: 3 - __metaclass__: 2 - _deferred: 1 - ! '*args': 3 - signals.pre_init.send: 1 - self.__class__: 8 - args: 7 - self._state: 1 - args_len: 2 - len: 7 - self._meta.fields: 4 - IndexError: 1 - fields_iter: 4 - iter: 1 - field.attname: 15 - kwargs.pop: 6 - field.rel: 2 - is_related_object: 3 - self.__class__.__dict__.get: 2 - try: 14 - rel_obj: 3 - except: 14 - KeyError: 3 - field.get_default: 3 - field.null: 1 - prop: 4 - kwargs.keys: 1 - property: 2 - AttributeError: 1 - pass: 3 - .__init__: 1 - signals.post_init.send: 1 - __repr__: 1 - u: 2 - unicode: 7 - UnicodeEncodeError: 1 - UnicodeDecodeError: 1 - __str__: 1 - .encode: 1 - __eq__: 1 - other: 5 - self._get_pk_val: 6 - other._get_pk_val: 1 - __ne__: 1 - self.__eq__: 1 - __hash__: 1 - hash: 1 - __reduce__: 2 - Provides: 1 - pickling: 1 - support.: 1 - Normally: 1 - this: 9 - just: 2 - dispatches: 2 - to: 31 - Python: 3 - re: 1 - dynamically: 1 - created: 3 - classes: 2 - only: 2 - level: 1 - can: 9 - be: 9 - pickled: 1 - by: 5 - the: 61 - default: 3 - path.: 1 - data: 10 - self.__dict__: 1 - defers: 2 - self._deferred: 1 - deferred_class_factory: 2 - factory: 5 - defers.append: 1 - self._meta.proxy_for_model: 1 - simple_class_factory: 2 - model_unpickle: 2 - _get_pk_val: 2 - meta.pk.attname: 2 - _set_pk_val: 2 - self._meta.pk.attname: 1 - pk: 5 - serializable_value: 1 - field_name: 6 - Returns: 1 - of: 11 - instance.: 1 - If: 5 - a: 18 - foreign: 1 - key: 6 - returns: 1 - id: 1 - instead: 1 - object.: 1 - there: 1 - s: 11 - returned: 1 - directly.: 1 - Used: 3 - serialize: 1 - force_insert: 2 - force_update: 5 - t: 3 - need: 4 - override: 2 - method.: 1 - It: 1 - raw: 7 - origin: 4 - smart: 1 - about: 1 - saving: 1 - attributes: 1 - meta.proxy: 4 - org: 3 - meta.parents.items: 1 - parent._meta.pk.attname: 2 - self.save_base: 1 - using: 24 - update_fields: 9 - parent._meta: 1 - non_pks: 5 - meta.local_fields: 2 - f.primary_key: 2 - pk_val: 4 - pk_set: 5 - record_exists: 5 - cls._base_manager: 1 - manager.using: 3 - .filter: 3 - .exists: 1 - values: 3 - f.attname: 4 - f.pre_save: 1 - rows: 3 - ._update: 1 - meta.order_with_respect_to: 2 - order_value: 2 - (*: 6 - ! '*)': 6 - ! '*': 3 - .count: 1 - self._order: 1 - fields: 9 - ValueError: 3 - update_pk: 3 - bool: 2 - meta.has_auto_field: 1 - result: 2 - manager._insert: 1 - return_id: 1 - transaction.commit_unless_managed: 2 - self._state.db: 1 - self._state.adding: 4 - meta.auto_created: 1 - signals.post_save.send: 1 - save_base.alters_data: 1 - delete: 1 - router.db_for_write: 1 - assert: 4 - collector: 1 - collector.collect: 1 - collector.delete: 1 - delete.alters_data: 1 - _get_FIELD_display: 1 - field.flatchoices: 1 - .get: 1 - strings_only: 1 - _get_next_or_previous_by_FIELD: 1 - self.pk: 3 - op: 1 - order: 1 - s__: 1 - pk__: 1 - spk: 1 - gt: 1 - lt: 1 - _order: 4 - _order__: 1 - perform: 1 - unique: 1 - check: 4 - 'on': 5 - that: 10 - missing: 1 - involved: 1 - check.: 1 - Fields: 1 - did: 1 - validate: 1 - should: 1 - also: 4 - excluded: 1 - but: 4 - they: 1 - passed: 3 - via: 3 - exclude: 20 - argument.: 1 - unique_checks: 4 - unique_togethers: 2 - self._meta.unique_together: 1 - parent_class: 4 - self._meta.parents.keys: 2 - parent_class._meta.unique_together: 2 - unique_togethers.append: 1 - model_class: 11 - unique_together: 2 - break: 1 - unique_checks.append: 2 - date_checks: 4 - fields_with_class: 2 - self._meta.local_fields: 1 - fields_with_class.append: 1 - parent_class._meta.local_fields: 1 - f.unique: 1 - f.unique_for_date: 3 - date_checks.append: 3 - f.unique_for_year: 3 - f.unique_for_month: 3 - _perform_unique_checks: 1 - errors: 19 - unique_check: 10 - lookup_kwargs: 8 - self._meta.get_field: 1 - lookup_value: 3 - str: 1 - lookup_kwargs.keys: 1 - qs: 4 - model_class._default_manager.filter: 2 - ! '*lookup_kwargs': 2 - model_class_pk: 3 - model_class._meta: 2 - qs.exclude: 2 - qs.exists: 2 - errors.setdefault: 2 - .append: 2 - self.unique_error_message: 1 - _perform_date_checks: 1 - lookup_type: 5 - unique_for: 5 - date: 2 - self.date_error_message: 1 - date_error_message: 1 - opts.get_field: 4 - .verbose_name: 3 - unique_error_message: 1 - model_name: 3 - opts.verbose_name: 1 - field_label: 2 - field.verbose_name: 1 - field.error_messages: 1 - field_labels: 4 - map: 1 - lambda: 1 - full_clean: 1 - Calls: 1 - clean_fields: 2 - clean: 1 - validate_unique: 1 - raises: 2 - any: 2 - occured.: 1 - self.clean_fields: 1 - e: 7 - e.update_error_dict: 3 - self.clean: 1 - errors.keys: 1 - exclude.append: 1 - self.validate_unique: 1 - Cleans: 1 - containing: 1 - message_dict: 1 - validation: 1 - occur.: 1 - raw_value: 3 - f.blank: 1 - validators.EMPTY_VALUES: 1 - f.clean: 1 - e.messages: 1 - ! '############################################': 2 - ordered_obj: 2 - id_list: 2 - rel_val: 4 - ordered_obj._meta.order_with_respect_to.rel.field_name: 2 - order_name: 4 - ordered_obj._meta.order_with_respect_to.name: 2 - i: 2 - j: 2 - enumerate: 1 - ordered_obj.objects.filter: 2 - .update: 1 - pk_name: 3 - ordered_obj._meta.pk.name: 1 - r: 4 - .values: 1 - ! '##############################################': 2 - func: 1 - settings.ABSOLUTE_URL_OVERRIDES.get: 1 - ! '########': 2 - Empty: 1 - unpickle: 2 - Models: 1 - without: 1 - deferred: 2 - fields.: 2 - We: 3 - do: 5 - hard: 1 - way: 4 - rather: 1 - than: 2 - implementation: 2 - because: 1 - __deepcopy__: 1 - problem: 1 - '.4': 1 - subclasses: 1 - with: 7 - cls.__new__: 1 - model_unpickle.__safe_for_unpickle__: 1 - flask.views: 1 - This: 2 - provides: 1 - based: 4 - views: 2 - inspired: 1 - ones: 1 - Django.: 1 - copyright: 1 - c: 1 - Armin: 1 - Ronacher.: 1 - license: 1 - BSD: 1 - see: 1 - LICENSE: 1 - more: 3 - details.: 1 - .globals: 1 - request: 10 - http_method_funcs: 2 - frozenset: 1 - View: 4 - Alternative: 1 - use: 3 - view: 10 - functions.: 1 - subclass: 1 - implement: 4 - meth: 10 - dispatch_request: 5 - which: 5 - called: 2 - arguments: 2 - URL: 1 - routing: 1 - system.: 1 - attr: 3 - provided: 1 - have: 3 - flask.Flask.add_url_rule: 1 - method: 7 - explicitly: 2 - MyView: 1 - app.add_url_rule: 2 - view_func: 2 - MyView.as_view: 1 - When: 2 - you: 11 - want: 2 - decorate: 4 - pluggable: 2 - will: 5 - either: 1 - when: 4 - function: 3 - wrapping: 1 - as_view: 2 - decorators: 5 - attribute: 1 - SecretView: 1 - superuser_required: 1 - ! '...': 1 - The: 3 - stored: 1 - list: 1 - are: 3 - applied: 1 - one: 2 - after: 1 - another: 1 - created.: 1 - Note: 1 - ! '*not*': 2 - since: 2 - those: 1 - would: 1 - generated: 1 - handle.: 1 - canonical: 1 - .: 11 - However: 1 - moves: 1 - parts: 1 - logic: 1 - declaration: 1 - place: 1 - where: 1 - it: 3 - used: 4 - instantiating: 1 - view.view_class: 1 - view.__name__: 1 - view.__doc__: 1 - view.__module__: 1 - cls.__module__: 1 - view.methods: 1 - cls.methods: 1 - MethodViewType: 2 - d: 4 - rv: 2 - type.__new__: 1 - rv.methods: 2 - methods.add: 1 - key.upper: 1 - sorted: 1 - MethodView: 2 - Like: 1 - regular: 1 - requests: 4 - particular: 1 - methods.: 1 - For: 2 - get: 2 - means: 1 - response: 2 - automatically: 2 - forward: 1 - your: 2 - that.: 1 - Also: 1 - options: 1 - CounterAPI: 1 - session.get: 2 - post: 1 - session: 1 - CounterAPI.as_view: 1 - request.method.lower: 1 - request.method: 1 - /usr/bin/env: 2 - python2.4: 1 - print: 1 - python: 1 - non: 2 - blocking: 2 - single: 4 - threaded: 2 - HTTP: 12 - server.: 2 - Typical: 1 - applications: 1 - little: 1 - direct: 1 - interaction: 1 - HTTPServer: 13 - start: 3 - server: 9 - at: 1 - beginning: 1 - process: 5 - even: 1 - often: 1 - done: 1 - indirectly: 1 - tornado.web.Application.listen: 2 - defines: 1 - HTTPRequest: 3 - exposed: 1 - tornado.web.RequestHandler.request: 1 - absolute_import: 1 - division: 1 - with_statement: 1 - Cookie: 3 - logging: 1 - socket: 1 - time: 1 - tornado.escape: 1 - utf8: 1 - native_str: 2 - parse_qs_bytes: 1 - tornado: 3 - httputil: 1 - iostream: 1 - tornado.netutil: 1 - TCPServer: 2 - stack_context: 1 - tornado.util: 1 - bytes_type: 1 - ssl: 2 - ImportError: 1 - defined: 2 - callback: 7 - takes: 1 - an: 4 - argument: 3 - writes: 1 - valid: 1 - HTTPRequest.write: 1 - HTTPRequest.finish: 1 - finishes: 1 - does: 1 - necessarily: 1 - close: 1 - connection: 6 - case: 1 - HTTP/1.1: 6 - keep: 2 - alive: 2 - simple: 3 - example: 1 - echoes: 1 - back: 1 - URI: 1 - requested: 1 - httpserver: 1 - ioloop: 1 - handle_request: 2 - message: 3 - request.write: 1 - request.finish: 1 - http_server: 1 - httpserver.HTTPServer: 1 - http_server.listen: 1 - ioloop.IOLoop.instance: 1 - .start: 4 - very: 1 - basic: 1 - handler.: 1 - Beyond: 1 - parsing: 1 - body: 2 - headers: 8 - semantics: 1 - implemented: 1 - connections.: 1 - however: 1 - chunked: 2 - encoding: 2 - so: 1 - must: 2 - provide: 2 - Content: 1 - Length: 1 - header: 1 - run: 1 - correctly: 1 - clients.: 1 - handler: 1 - unable: 1 - no_keep_alive: 5 - constructor: 1 - ensure: 1 - closed: 1 - every: 1 - 'no': 1 - matter: 1 - what: 1 - version: 5 - client: 2 - using.: 1 - xheaders: 5 - we: 1 - support: 1 - X: 6 - Real: 2 - Ip: 2 - Scheme: 2 - remote: 1 - IP: 1 - scheme: 1 - requests.: 3 - These: 1 - useful: 1 - running: 1 - Tornado: 1 - behind: 1 - reverse: 1 - proxy: 1 - load: 1 - balancer.: 1 - serve: 2 - SSL: 2 - traffic: 2 - '.6': 1 - OpenSSL.: 1 - To: 1 - make: 1 - send: 1 - ssl_options: 5 - dictionary: 1 - required: 1 - ssl.wrap_socket: 1 - including: 1 - applicaton: 1 - os.path.join: 2 - data_dir: 2 - initialization: 2 - follows: 1 - three: 1 - patterns: 1 - tornado.netutil.TCPServer: 1 - tornado.netutil.TCPServer.listen: 1 - app: 3 - server.listen: 1 - IOLoop.instance: 3 - In: 1 - many: 1 - cases: 1 - avoid: 1 - create: 2 - tornado.netutil.TCPServer.bind: 1 - /: 1 - tornado.netutil.TCPServer.start: 1 - multi: 2 - server.bind: 1 - server.start: 1 - interface: 2 - IOLoop: 2 - constructor.: 1 - always: 1 - singleton: 1 - tornado.netutil.TCPServer.add_sockets: 1 - advanced: 1 - sockets: 3 - tornado.netutil.bind_sockets: 2 - tornado.process.fork_processes: 2 - server.add_sockets: 1 - add_sockets: 2 - complicated: 1 - give: 1 - flexibility: 1 - fork: 1 - happens.: 1 - servers: 1 - listening: 1 - request_callback: 4 - io_loop: 3 - self.request_callback: 4 - self.no_keep_alive: 4 - self.xheaders: 3 - TCPServer.__init__: 1 - handle_stream: 1 - stream: 4 - address: 4 - HTTPConnection: 2 - _BadRequestException: 5 - Exception: 2 - malformed: 1 - Handles: 1 - executing: 1 - parse: 1 - bodies: 1 - execute: 1 - until: 1 - conection: 1 - closed.: 1 - self.stream: 1 - self.address: 3 - self._request: 6 - self._request_finished: 4 - self._header_callback: 3 - stack_context.wrap: 2 - self._on_headers: 1 - self.stream.read_until: 2 - self._write_callback: 5 - write: 1 - chunk: 3 - Writes: 1 - output: 1 - stream.: 1 - self.stream.closed: 1 - self.stream.write: 2 - self._on_write_complete: 1 - finish: 1 - Finishes: 1 - request.: 1 - self.stream.writing: 2 - self._finish_request: 2 - _on_write_complete: 1 - _finish_request: 1 - disconnect: 5 - connection_header: 5 - self._request.headers.get: 2 - connection_header.lower: 1 - self._request.supports_http_1_1: 1 - self._request.headers: 1 - self._request.method: 1 - self.stream.close: 2 - _on_headers: 1 - data.decode: 1 - eol: 3 - data.find: 1 - start_line: 1 - uri: 4 - start_line.split: 1 - version.startswith: 1 - httputil.HTTPHeaders.parse: 1 - self.stream.socket: 1 - socket.AF_INET: 2 - socket.AF_INET6: 1 - remote_ip: 5 - content_length: 6 - headers.get: 2 - int: 1 - self.stream.max_buffer_size: 1 - self.stream.read_bytes: 1 - self._on_request_body: 1 - logging.info: 1 - _on_request_body: 1 - self._request.body: 1 - content_type: 1 - POST: 2 - PATCH: 1 - PUT: 1 - application/x: 1 - www: 1 - form: 1 - urlencoded: 1 - multipart/form: 2 - ;: 1 - boundary: 1 - Invalid: 1 - GET: 1 - http: 4 - https: 3 - HTTP/1.0: 1 - Forwarded: 2 - Proto: 1 - Host: 1 - .0.0.1: 1 - _cookies: 1 - //: 1 - foo.crt: 1 - foo.key: 1 - cacert.crt: 1 - protocol: 1 - host: 1 - self.__class__.__name__: 1 - self.headers: 1 - _valid_ip: 1 - ip: 2 - res: 2 - socket.getaddrinfo: 1 - socket.AF_UNSPEC: 1 - socket.SOCK_STREAM: 1 - socket.AI_NUMERICHOST: 1 - socket.gaierror: 1 - e.args: 1 - socket.EAI_NONAME: 1 - R: - hello: 2 - <: 1 - ! '-': 1 - function: 1 - (: 3 - ): 3 - ! '{': 1 - print: 1 - ! '}': 1 - Racket: - ! '#lang': 1 - scribble/manual: 1 - ! '@': 3 - (: 7 - require: 2 - scribble/bnf: 1 - ): 7 - ! '@title': 1 - ! '{': 2 - Scribble: 3 - The: 1 - Racket: 1 - Documentation: 1 - Tool: 1 - ! '}': 2 - ! '@author': 1 - is: 3 - a: 1 - collection: 1 - of: 3 - tools: 1 - for: 2 - creating: 1 - prose: 2 - documents: 1 - ! '-': 95 - papers: 1 - books: 1 - library: 1 - documentation: 1 - etc.: 1 - in: 2 - HTML: 1 - or: 2 - PDF: 1 - via: 1 - Latex: 1 - form.: 1 - More: 1 - generally: 1 - helps: 1 - you: 1 - write: 1 - programs: 1 - that: 1 - are: 1 - rich: 1 - textual: 1 - content: 2 - whether: 1 - the: 2 - to: 2 - be: 2 - typeset: 1 - any: 1 - other: 1 - form: 1 - text: 1 - generated: 1 - programmatically.: 1 - This: 1 - document: 1 - itself: 1 - written: 1 - using: 1 - Scribble.: 1 - You: 1 - can: 1 - see: 1 - its: 1 - source: 1 - at: 1 - let: 1 - url: 3 - link: 1 - starting: 1 - with: 1 - ! '@filepath': 1 - scribble.scrbl: 1 - file.: 1 - ! '@table': 1 - contents: 1 - ;: 1 - ! '@include': 8 - section: 9 - ! '@index': 1 - ! '#': 3 - /bin/sh: 1 - ! '|': 2 - ! '*': 2 - scheme: 1 - exec: 1 - racket: 1 - um: 1 - racket/file: 1 - racket/path: 1 - racket/list: 1 - racket/string: 1 - syntax: 1 - racket/base: 1 - Rebol: - REBOL: 1 - hello: 2 - func: 1 - print: 1 - Ruby: - load: 3 - Dir: 4 - .each: 5 - ! '{': 65 - ! '|': 74 - plugin: 2 - (: 201 - ): 208 - ! '}': 65 - task: 2 - default: 2 - do: 26 - puts: 19 - end: 204 - module: 7 - Foo: 2 - require: 58 - ! '#': 354 - class: 4 - Formula: 2 - include: 3 - FileUtils: 1 - attr_reader: 5 - name: 49 - path: 11 - url: 12 - version: 9 - homepage: 2 - specs: 14 - downloader: 4 - standard: 2 - unstable: 2 - head: 2 - bottle_version: 2 - bottle_url: 2 - bottle_sha1: 2 - buildpath: 1 - def: 130 - initialize: 1 - nil: 19 - set_instance_variable: 12 - if: 67 - ! '@head': 4 - and: 8 - not: 4 - ! '@url': 8 - or: 6 - ARGV.build_head: 2 - ! '@version': 10 - ! '@spec_to_use': 4 - ! '@unstable': 2 - else: 21 - ! '@standard.nil': 1 - SoftwareSpecification.new: 3 - ! '@specs': 3 - ! '@standard': 3 - raise: 14 - ! '@url.nil': 1 - ! '@name': 3 - validate_variable: 7 - ! '@path': 1 - path.nil: 1 - self.class.path: 1 - Pathname.new: 3 - ! '||': 21 - ! '@spec_to_use.detect_version': 1 - CHECKSUM_TYPES.each: 1 - type: 10 - ! '@downloader': 1 - download_strategy.new: 2 - ! '@spec_to_use.url': 1 - ! '@spec_to_use.specs': 1 - ! '@bottle_url': 2 - bottle_base_url: 1 - +: 46 - bottle_filename: 1 - self: 10 - ! '@bottle_sha1': 2 - installed: 1 - return: 24 - installed_prefix.children.length: 1 - rescue: 11 - 'false': 24 - explicitly_requested: 1 - ARGV.named.empty: 1 - ARGV.formulae.include: 1 - linked_keg: 1 - HOMEBREW_REPOSITORY/: 2 - /@name: 1 - installed_prefix: 1 - head_prefix: 2 - HOMEBREW_CELLAR: 2 - head_prefix.directory: 1 - prefix: 15 - rack: 1 - ;: 31 - prefix.parent: 1 - bin: 1 - doc: 1 - info: 2 - lib: 1 - libexec: 1 - man: 10 - man1: 1 - man2: 1 - man3: 1 - man4: 1 - man5: 1 - man6: 1 - man7: 1 - man8: 1 - sbin: 1 - share: 1 - etc: 1 - HOMEBREW_PREFIX: 2 - var: 1 - plist_name: 2 - plist_path: 1 - download_strategy: 1 - ! '@spec_to_use.download_strategy': 1 - cached_download: 1 - ! '@downloader.cached_location': 1 - caveats: 1 - options: 2 - patches: 2 - keg_only: 2 - self.class.keg_only_reason: 1 - fails_with: 2 - cc: 3 - self.class.cc_failures.nil: 1 - Compiler.new: 1 - unless: 11 - cc.is_a: 1 - Compiler: 1 - self.class.cc_failures.find: 1 - failure: 1 - next: 1 - failure.compiler: 1 - cc.name: 1 - failure.build.zero: 1 - failure.build: 1 - cc.build: 1 - skip_clean: 2 - 'true': 14 - self.class.skip_clean_all: 1 - to_check: 2 - path.relative_path_from: 1 - .to_s: 3 - self.class.skip_clean_paths.include: 1 - brew: 2 - stage: 2 - begin: 8 - patch: 2 - yield: 5 - Interrupt: 2 - RuntimeError: 1 - SystemCallError: 1 - e: 6 - ARGV.debug: 1 - ! '%': 9 - w: 8 - config.log: 1 - CMakeCache.txt: 1 - .select: 1 - f: 15 - File.exist: 3 - HOMEBREW_LOGS.install: 1 - onoe: 3 - e.inspect: 1 - e.backtrace: 1 - ohai: 4 - e.was_running_configure: 1 - interactive_shell: 1 - b: 7 - b.name: 2 - eql: 1 - self.class.equal: 1 - b.class: 1 - hash: 3 - name.hash: 1 - <=>: 2 - to_s: 2 - std_cmake_args: 1 - W: 1 - ! '-': 31 - DCMAKE_INSTALL_PREFIX: 1 - DCMAKE_BUILD_TYPE: 1 - None: 1 - DCMAKE_FIND_FRAMEWORK: 1 - LAST: 1 - Wno: 1 - dev: 1 - self.class_s: 2 - ! '#remove': 1 - invalid: 1 - characters: 1 - then: 4 - camelcase: 1 - it: 1 - name.capitalize.gsub: 1 - /: 28 - _.: 1 - s: 2 - a: 7 - zA: 1 - Z0: 1 - .upcase: 1 - .gsub: 3 - self.names: 1 - .map: 6 - File.basename: 2 - .sort: 2 - self.all: 1 - map: 1 - self.map: 1 - rv: 3 - each: 1 - <<: 13 - self.each: 1 - names.each: 1 - n: 3 - Formula.factory: 2 - inspect: 1 - self.aliases: 1 - self.canonical_name: 1 - name.to_s: 3 - name.kind_of: 2 - Pathname: 2 - formula_with_that_name: 1 - HOMEBREW_REPOSITORY: 4 - possible_alias: 1 - possible_cached_formula: 1 - HOMEBREW_CACHE_FORMULA: 2 - name.include: 2 - r: 3 - .: 3 - tapd: 1 - .downcase: 2 - tapd.find_formula: 1 - relative_pathname: 1 - relative_pathname.stem.to_s: 1 - tapd.directory: 1 - elsif: 7 - formula_with_that_name.file: 1 - formula_with_that_name.readable: 1 - possible_alias.file: 1 - possible_alias.realpath.basename: 1 - possible_cached_formula.file: 1 - possible_cached_formula.to_s: 1 - self.factory: 1 - https: 1 - ftp: 1 - //: 3 - .basename: 1 - target_file: 6 - name.basename: 1 - HOMEBREW_CACHE_FORMULA.mkpath: 1 - FileUtils.rm: 1 - force: 1 - curl: 1 - install_type: 4 - from_url: 1 - Formula.canonical_name: 1 - .rb: 1 - path.stem: 1 - from_path: 1 - path.to_s: 1 - Formula.path: 1 - from_name: 2 - klass_name: 2 - klass: 16 - Object.const_get: 1 - NameError: 1 - LoadError: 3 - klass.new: 2 - FormulaUnavailableError.new: 1 - tap: 1 - path.realpath.to_s: 1 - /Library/Taps/: 1 - self.path: 1 - mirrors: 4 - self.class.mirrors: 1 - deps: 1 - self.class.dependencies.deps: 1 - external_deps: 1 - self.class.dependencies.external_deps: 1 - recursive_deps: 1 - Formula.expand_deps: 1 - .flatten.uniq: 1 - self.expand_deps: 1 - f.deps.map: 1 - dep: 3 - f_dep: 3 - dep.to_s: 1 - expand_deps: 1 - protected: 1 - system: 1 - cmd: 5 - ! '*args': 14 - pretty_args: 1 - args.dup: 1 - pretty_args.delete: 1 - ARGV.verbose: 2 - .strip: 1 - removed_ENV_variables: 1 - case: 4 - args.empty: 1 - cmd.split: 1 - .first: 1 - when: 7 - ENV.remove_cc_etc: 1 - safe_system: 4 - rd: 4 - wr: 3 - IO.pipe: 1 - pid: 1 - fork: 1 - rd.close: 1 - stdout.reopen: 1 - stderr.reopen: 1 - args.collect: 1 - arg: 1 - arg.to_s: 1 - exec: 1 - exit: 1 - wr.close: 1 - out: 1 - t: 2 - attempt: 1 - this: 1 - install: 1 - is: 1 - pointed: 1 - at: 1 - URL.: 1 - mirror_list: 1 - HOMEBREW_CACHE.mkpath: 1 - fetched: 4 - downloader.fetch: 1 - CurlDownloadStrategyError: 1 - mirror_list.empty: 1 - mirror_list.shift.values_at: 1 - retry: 2 - checksum_type: 2 - CHECKSUM_TYPES.detect: 1 - instance_variable_defined: 2 - verify_download_integrity: 2 - fn: 2 - args.length: 1 - md5: 2 - supplied: 4 - instance_variable_get: 2 - type.to_s.upcase: 1 - args: 3 - hasher: 2 - Digest.const_get: 1 - fn.incremental_hash: 1 - supplied.empty: 1 - message: 2 - EOF: 2 - mismatch: 1 - Expected: 1 - Got: 1 - Archive: 1 - To: 1 - an: 1 - incomplete: 1 - download: 1 - remove: 1 - the: 3 - file: 1 - above.: 1 - supplied.upcase: 1 - hash.upcase: 1 - opoo: 1 - private: 1 - CHECKSUM_TYPES: 2 - sha1: 4 - sha256: 1 - .freeze: 1 - fetch: 1 - fetched.kind_of: 1 - mktemp: 1 - downloader.stage: 1 - ! '@buildpath': 2 - Pathname.pwd: 1 - patch_list: 1 - Patches.new: 1 - patch_list.empty: 1 - patch_list.external_patches: 1 - patch_list.download: 1 - patch_list.each: 1 - p: 2 - p.compression: 1 - gzip: 1 - p.compressed_filename: 2 - bzip2: 1 - ! '*': 2 - p.patch_args: 1 - v: 2 - v.to_s.empty: 1 - s/: 1 - class_value: 3 - self.class.send: 1 - instance_variable_set: 1 - self.method_added: 1 - method: 2 - self.attr_rw: 1 - (*: 11 - ! '*)': 11 - attrs: 1 - attrs.each: 1 - attr: 4 - class_eval: 1 - Q: 1 - val: 10 - val.nil: 3 - ! '@#': 2 - attr_rw: 4 - keg_only_reason: 1 - skip_clean_all: 2 - cc_failures: 1 - stable: 1 - ! '&': 24 - block: 25 - block_given: 5 - instance_eval: 2 - ARGV.build_devel: 2 - devel: 1 - ! '@mirrors': 3 - bottle: 1 - bottle_block: 1 - Class.new: 2 - self.version: 1 - self.url: 1 - self.sha1: 1 - Hash: 2 - key: 6 - value: 2 - sha1.shift: 1 - ! '@sha1': 6 - MacOS.cat: 1 - String: 5 - MacOS.lion: 1 - self.data: 1 - ! '&&': 8 - bottle_block.instance_eval: 1 - ! '@bottle_version': 1 - bottle_block.data: 1 - mirror: 1 - ! '@mirrors.uniq': 1 - dependencies: 1 - ! '@dependencies': 1 - DependencyCollector.new: 1 - depends_on: 1 - dependencies.add: 1 - paths: 3 - all: 1 - ! '@skip_clean_all': 2 - ! '@skip_clean_paths': 3 - .flatten.each: 1 - p.to_s: 2 - ! '@skip_clean_paths.include': 1 - skip_clean_paths: 1 - reason: 2 - explanation: 1 - ! '@keg_only_reason': 1 - KegOnlyReason.new: 1 - explanation.to_s.chomp: 1 - compiler: 3 - ! '@cc_failures': 2 - CompilerFailures.new: 1 - CompilerFailure.new: 2 - Grit: 1 - ActiveSupport: 1 - Inflector: 1 - extend: 2 - pluralize: 1 - word: 7 - apply_inflections: 3 - inflections.plurals: 1 - singularize: 1 - inflections.singulars: 1 - camelize: 1 - term: 1 - uppercase_first_letter: 2 - string: 3 - term.to_s: 1 - string.sub: 2 - z: 6 - d: 5 - ! '*/': 1 - inflections.acronyms: 2 - .capitalize: 1 - inflections.acronym_regex: 2 - A: 6 - Z_: 1 - string.gsub: 1 - _: 1 - /i: 1 - underscore: 1 - camel_cased_word: 1 - camel_cased_word.to_s.dup: 1 - word.gsub: 4 - Za: 1 - Z: 3 - word.tr: 1 - word.downcase: 1 - humanize: 1 - lower_case_and_underscored_word: 1 - result: 8 - lower_case_and_underscored_word.to_s.dup: 1 - inflections.humans.each: 1 - rule: 4 - replacement: 4 - break: 2 - result.sub: 2 - result.gsub: 1 - /_id: 1 - match: 6 - match.downcase: 1 - from: 1 - boondocks: 1 - Man: 2 - From: 1 - The: 4 - Boondocks: 1 - x: 1 - men: 1 - last: 2 - stand: 1 - X: 1 - Men: 1 - Last: 1 - Stand: 1 - TheManWithoutAPast: 1 - Without: 1 - Past: 1 - raiders_of_the_lost_ark: 1 - Raiders: 1 - Of: 1 - Lost: 1 - Ark: 1 - RawScaledScorer: 1 - raw_scaled_scorers: 1 - egg_and_ham: 1 - egg_and_hams: 2 - fancyCategory: 1 - fancy_categories: 1 - EggAndHam: 1 - posts: 3 - Post: 2 - business: 1 - Busines: 1 - puni_puni: 1 - puni: 2 - ActiveRecord: 1 - CoreExtensions: 1 - Inflections: 4 - Net: 4 - HTTP: 2 - Message: 2 - message_id: 1 - messageid: 1 - Admin: 1 - post_id: 1 - _id: 1 - id: 1 - Module: 2 - Test: 2 - Unit: 2 - C: 2 - blargle: 1 - UnknownModule: 2 - Bar: 1 - st: 5 - nd: 5 - th: 4 - number: 2 - ordinal: 1 - part: 1 - acc: 1 - post: 2 - rules: 1 - word.to_s.dup: 1 - word.empty: 1 - inflections.uncountables.include: 1 - result.downcase: 1 - Z/: 1 - rules.each: 1 - .unshift: 1 - File.dirname: 4 - __FILE__: 3 - require_all: 4 - glob: 2 - File.join: 6 - Jekyll: 3 - VERSION: 1 - DEFAULTS: 2 - Dir.pwd: 3 - self.configuration: 1 - override: 3 - source: 2 - config_file: 2 - config: 3 - YAML.load_file: 1 - config.is_a: 1 - stdout.puts: 1 - err: 1 - stderr.puts: 2 - err.to_s: 1 - DEFAULTS.deep_merge: 1 - .deep_merge: 1 - /usr/bin/env: 5 - macruby: 1 - Resque: 3 - Helpers: 1 - redis: 7 - server: 9 - /redis: 1 - Redis.connect: 2 - thread_safe: 2 - namespace: 3 - server.split: 2 - host: 3 - port: 4 - db: 3 - Redis.new: 1 - resque: 2 - ! '@redis': 6 - Redis: 3 - Namespace.new: 2 - Namespace: 1 - ! '@queues': 2 - Hash.new: 1 - h: 2 - Queue.new: 1 - coder: 3 - ! '@coder': 1 - MultiJsonCoder.new: 1 - attr_writer: 4 - self.redis: 2 - Redis.respond_to: 1 - connect: 1 - redis_id: 2 - redis.respond_to: 2 - redis.server: 1 - nodes: 1 - redis.nodes.map: 1 - n.id: 1 - .join: 1 - redis.client.id: 1 - before_first_fork: 2 - ! '@before_first_fork': 2 - before_fork: 2 - ! '@before_fork': 2 - after_fork: 2 - ! '@after_fork': 2 - attr_accessor: 1 - inline: 3 - alias: 1 - push: 1 - queue: 24 - item: 4 - pop: 1 - .pop: 1 - ThreadError: 1 - size: 2 - .size: 1 - peek: 1 - start: 6 - count: 5 - .slice: 1 - list_range: 1 - decode: 2 - redis.lindex: 1 - Array: 2 - redis.lrange: 1 - queues: 3 - redis.smembers: 1 - remove_queue: 1 - .destroy: 1 - ! '@queues.delete': 1 - queue.to_s: 1 - enqueue: 1 - enqueue_to: 2 - queue_from_class: 4 - before_hooks: 2 - Plugin.before_enqueue_hooks: 1 - .collect: 2 - hook: 8 - klass.send: 4 - before_hooks.any: 2 - Job.create: 1 - Plugin.after_enqueue_hooks: 1 - dequeue: 1 - Plugin.before_dequeue_hooks: 1 - Job.destroy: 1 - Plugin.after_dequeue_hooks: 1 - klass.instance_variable_get: 1 - ! '@queue': 1 - klass.respond_to: 1 - klass.queue: 1 - reserve: 1 - Job.reserve: 1 - validate: 1 - NoQueueError.new: 1 - klass.to_s.empty: 1 - NoClassError.new: 1 - workers: 2 - Worker.all: 1 - working: 2 - Worker.working: 1 - remove_worker: 1 - worker_id: 2 - worker: 1 - Worker.find: 1 - worker.unregister_worker: 1 - pending: 1 - queues.inject: 1 - m: 2 - k: 2 - processed: 2 - Stat: 2 - queues.size: 1 - workers.size.to_i: 1 - working.size: 1 - failed: 2 - servers: 1 - environment: 2 - ENV: 3 - keys: 6 - redis.keys: 1 - key.sub: 1 - rake: 1 - ruby: 2 - Ilib: 1 - test: 3 - echo: 1 - Sinatra: 1 - Request: 2 - <: 1 - Rack: 1 - accept: 1 - ! '@env': 2 - entries: 1 - .to_s.split: 1 - entries.map: 1 - accept_entry: 1 - .sort_by: 1 - first: 1 - preferred_type: 1 - self.defer: 1 - ..: 1 - pattern: 1 - path.respond_to: 5 - path.keys: 1 - names: 1 - path.names: 1 - TypeError: 1 - URI: 3 - URI.const_defined: 1 - Parser: 1 - Parser.new: 1 - encoded: 1 - char: 4 - enc: 5 - URI.escape: 1 - public: 1 - helpers: 1 - data: 1 - reset: 1 - set: 30 - development: 4 - .to_sym: 1 - raise_errors: 1 - Proc.new: 8 - dump_errors: 1 - show_exceptions: 1 - sessions: 1 - logging: 1 - protection: 1 - method_override: 3 - use_code: 1 - default_encoding: 1 - add_charset: 1 - javascript: 1 - xml: 2 - xhtml: 1 - json: 1 - settings.add_charset: 1 - text: 1 - session_secret: 2 - SecureRandom.hex: 1 - NotImplementedError: 1 - alias_method: 2 - methodoverride: 2 - run: 1 - running: 1 - http: 1 - webrick: 1 - bind: 1 - ruby_engine: 6 - defined: 1 - RUBY_ENGINE: 2 - server.unshift: 6 - ruby_engine.nil: 1 - absolute_redirects: 1 - prefixed_redirects: 1 - empty_path_info: 1 - app_file: 3 - root: 5 - File.expand_path: 1 - views: 1 - reload_templates: 1 - lock: 1 - threaded: 1 - public_folder: 3 - static: 1 - static_cache_control: 1 - error: 2 - Exception: 1 - response.status: 1 - content_type: 3 - configure: 1 - get: 1 - filename: 2 - png: 1 - send_file: 1 - NotFound: 1 - HTML: 1 - uri: 1 - request.path_info: 1 - self.new: 1 - base: 4 - Base: 1 - base.class_eval: 1 - self.register: 1 - extensions: 4 - Delegator.target.register: 1 - self.helpers: 1 - Delegator.target.helpers: 1 - self.use: 1 - Delegator.target.use: 1 - python: 1 - Rust: - fn: 1 - main: 1 - (: 1 - ): 1 - ! '{': 1 - log: 1 - ;: 1 - ! '}': 1 - SCSS: - blue: 4 - ! '#3bbfce': 1 - ;: 7 - margin: 4 - px: 1 - .content: 1 - ! '-': 3 - navigation: 1 - ! '{': 2 - border: 2 - color: 3 - darken: 1 - (: 1 - ! '%': 1 - ): 1 - ! '}': 2 - .border: 1 - padding: 1 - /: 2 - Sass: - blue: 4 - ! '#3bbfce': 1 - margin: 4 - px: 1 - .content: 1 - ! '-': 3 - navigation: 1 - border: 2 - color: 3 - darken: 1 - (: 1 - ! '%': 1 - ): 1 - .border: 1 - padding: 1 - /: 2 - Scala: - //: 49 - name: 4 - version: 1 - organization: 1 - libraryDependencies: 3 - +: 15 - ! '%': 7 - Seq: 3 - (: 23 - ): 23 - ! '{': 9 - val: 2 - libosmVersion: 1 - ! '}': 10 - maxErrors: 1 - pollInterval: 1 - javacOptions: 1 - scalacOptions: 1 - scalaVersion: 1 - initialCommands: 2 - import: 2 - System.: 1 - currentTimeMillis: 1 - now: 3 - def: 2 - time: 1 - T: 3 - f: 2 - start: 2 - try: 1 - finally: 1 - println: 2 - ! '-': 1 - /1000.0: 1 - in: 12 - console: 1 - mainClass: 2 - Compile: 4 - packageBin: 1 - Some: 6 - run: 1 - watchSources: 1 - <+=>: 1 - baseDirectory: 1 - map: 1 - _: 1 - input: 1 - add: 2 - a: 2 - maven: 2 - style: 2 - repository: 2 - resolvers: 2 - at: 4 - url: 3 - sequence: 1 - of: 1 - repositories: 1 - define: 1 - the: 4 - to: 4 - publish: 1 - publishTo: 1 - set: 2 - Ivy: 1 - logging: 1 - be: 1 - highest: 1 - level: 1 - ivyLoggingLevel: 1 - UpdateLogging: 1 - Full: 1 - disable: 1 - updating: 1 - dynamic: 1 - revisions: 1 - including: 1 - SNAPSHOT: 1 - versions: 1 - offline: 1 - 'true': 5 - prompt: 1 - for: 1 - this: 1 - build: 1 - include: 1 - project: 1 - id: 1 - shellPrompt: 2 - ThisBuild: 1 - state: 3 - Project.extract: 1 - .currentRef.project: 1 - System.getProperty: 1 - showTiming: 1 - 'false': 7 - showSuccess: 1 - timingFormat: 1 - java.text.DateFormat: 1 - DateFormat.getDateTimeInstance: 1 - DateFormat.SHORT: 2 - crossPaths: 1 - fork: 2 - Test: 3 - javaOptions: 1 - parallelExecution: 2 - javaHome: 1 - file: 3 - scalaHome: 1 - aggregate: 1 - clean: 1 - logLevel: 2 - compile: 1 - Level.Warn: 2 - persistLogLevel: 1 - Level.Debug: 1 - traceLevel: 2 - unmanagedJars: 1 - publishArtifact: 2 - packageDoc: 2 - artifactClassifier: 1 - retrieveManaged: 1 - /*: 1 - ! '*/': 1 - credentials: 2 - Credentials: 2 - Path.userHome: 1 - /: 2 - ! '#': 2 - /bin/sh: 1 - exec: 1 - scala: 1 - object: 1 - HelloWorld: 1 - main: 1 - args: 1 - Array: 1 - String: 1 - Scheme: - (: 359 - import: 1 - rnrs: 1 - ): 373 - only: 1 - surfage: 4 - s1: 1 - lists: 1 - filter: 4 - ! '-': 188 - map: 4 - gl: 12 - glut: 2 - dharmalab: 2 - records: 1 - define: 27 - record: 5 - type: 5 - math: 1 - basic: 1 - agave: 4 - glu: 1 - compat: 1 - geometry: 1 - pt: 49 - glamour: 2 - window: 2 - misc: 1 - s19: 1 - time: 24 - s27: 1 - random: 27 - bits: 1 - s42: 1 - eager: 1 - comprehensions: 1 - ;: 1684 - utilities: 1 - say: 9 - .: 1 - args: 2 - for: 7 - each: 7 - display: 4 - newline: 2 - translate: 6 - p: 6 - glTranslated: 1 - x: 8 - y: 3 - '.0': 65 - radians: 8 - (*: 3 - ! '*)': 3 - /: 7 - pi: 2 - degrees: 2 - angle: 6 - a: 19 - cos: 1 - sin: 1 - current: 15 - in: 14 - nanoseconds: 2 - let: 2 - val: 3 - +: 28 - second: 1 - nanosecond: 1 - seconds: 12 - micro: 1 - milli: 1 - base: 2 - step: 1 - score: 5 - level: 5 - ships: 1 - spaceship: 5 - fields: 4 - mutable: 14 - pos: 16 - vel: 4 - theta: 1 - force: 1 - particle: 8 - birth: 2 - lifetime: 1 - color: 2 - particles: 11 - asteroid: 14 - radius: 6 - number: 3 - of: 3 - starting: 3 - asteroids: 15 - ! '#f': 5 - bullet: 16 - pack: 12 - is: 8 - initialize: 1 - size: 1 - title: 1 - reshape: 1 - width: 8 - height: 8 - source: 2 - randomize: 1 - default: 1 - wrap: 4 - mod: 2 - ship: 8 - make: 11 - ammo: 9 - set: 19 - list: 6 - ec: 6 - i: 6 - inexact: 16 - integer: 25 - buffered: 1 - procedure: 1 - lambda: 12 - background: 1 - glColor3f: 5 - matrix: 5 - excursion: 5 - ship.pos: 5 - glRotated: 2 - ship.theta: 10 - glutWireCone: 1 - par: 6 - c: 4 - vector: 6 - ref: 3 - glutWireSphere: 3 - bullets: 7 - pack.pos: 3 - glutWireCube: 1 - last: 3 - dt: 7 - update: 2 - system: 2 - pt*n: 8 - ship.vel: 5 - pack.vel: 1 - cond: 2 - par.birth: 1 - par.lifetime: 1 - else: 2 - par.pos: 2 - par.vel: 1 - bullet.birth: 1 - bullet.pos: 2 - bullet.vel: 1 - a.pos: 2 - a.vel: 1 - if: 1 - <: 1 - a.radius: 1 - contact: 2 - b: 4 - when: 5 - <=>: 3 - distance: 3 - begin: 1 - '1': 2 - f: 1 - append: 4 - '4': 1 - '50': 4 - '0': 7 - '100': 6 - '2': 1 - n: 2 - 'null': 1 - '10': 1 - '5': 1 - glutIdleFunc: 1 - glutPostRedisplay: 1 - glutKeyboardFunc: 1 - key: 2 - case: 1 - char: 1 - ! '#': 6 - w: 1 - d: 1 - s: 1 - space: 1 - cons: 1 - glutMainLoop: 1 - Scilab: - //: 3 - function: 1 - a: 4 - b: 4 - myfunction: 1 - (: 7 - d: 2 - e: 3 - f: 2 - ): 7 - '.71828': 1 - +: 5 - ! '%': 4 - pi: 3 - ;: 7 - cos: 1 - cosh: 1 - if: 1 - then: 1 - ! '-': 2 - e.field: 1 - else: 1 - home: 1 - return: 1 - end: 1 - myvar: 1 - .23e: 1 - endfunction: 1 - disp: 1 - assert_checkequal: 1 - assert_checkfalse: 1 - Shell: - export: 5 - PATH: 5 - ! '#': 8 - pkgname: 1 - stud: 4 - ! '-': 20 - git: 5 - pkgver: 1 - pkgrel: 1 - pkgdesc: 1 - arch: 1 - (: 12 - i686: 1 - x86_64: 1 - ): 12 - url: 1 - license: 1 - depends: 1 - libev: 1 - openssl: 1 - makedepends: 1 - provides: 1 - conflicts: 1 - _gitroot: 1 - https: 1 - //github.com/bumptech/stud.git: 1 - _gitname: 1 - build: 1 - ! '{': 7 - cd: 4 - msg: 4 - if: 9 - d: 1 - ;: 5 - then: 8 - ! '&&': 3 - pull: 1 - origin: 1 - else: 2 - clone: 2 - fi: 7 - rm: 1 - rf: 1 - make: 2 - ! '}': 7 - package: 1 - PREFIX: 1 - /usr: 1 - DESTDIR: 1 - install: 3 - Dm755: 1 - init.stud: 1 - mkdir: 1 - p: 1 - /usr/bin/env: 2 - bash: 2 - set: 2 - e: 1 - n: 2 - x: 1 - echo: 9 - unset: 1 - system: 1 - exec: 1 - rbenv: 2 - versions: 1 - bare: 1 - version: 1 - z: 2 - ! '&': 2 - exit: 4 - prefix: 1 - /dev/null: 1 - rvm_ignore_rvmrc: 1 - declare: 1 - rvmrc: 6 - rvm_rvmrc_files: 2 - ef: 1 - +: 1 - for: 2 - in: 1 - do: 1 - f: 1 - GREP_OPTIONS: 1 - ! '%': 1 - b: 1 - Error: 2 - is: 1 - rvm: 3 - settings: 1 - only.: 1 - CLI: 1 - may: 1 - NOT: 1 - be: 1 - called: 1 - from: 1 - within: 1 - rvmrc.: 1 - Skipping: 1 - the: 1 - loading: 1 - of: 1 - rvm_path: 1 - /usr/local/rvm: 4 - HOME: 2 - /.rvm: 2 - Can: 1 - t: 1 - find: 1 - rvm_scripts_path: 1 - /rvm: 1 - ! '@': 1 - sourcing: 1 - RVM: 1 - /bin/bash: 1 - /bin/sh: 1 - /bin/zsh: 1 - Standard ML: - signature: 2 - LAZY_BASE: 3 - sig: 1 - type: 2 - a: 19 - lazy: 11 - ! '-': 9 - ): 20 - end: 6 - LAZY: 1 - bool: 1 - val: 7 - inject: 3 - toString: 2 - (: 19 - string: 1 - eq: 2 - ! '*': 4 - (*: 1 - ! '*)': 1 - structure: 5 - LazyBase: 2 - struct: 4 - exception: 1 - Undefined: 3 - fun: 9 - delay: 3 - f: 9 - force: 9 - undefined: 1 - fn: 3 - raise: 1 - LazyMemoBase: 2 - datatype: 1 - ! '|': 1 - Done: 1 - of: 1 - unit: 1 - let: 1 - open: 1 - B: 1 - x: 15 - isUndefined: 2 - ignore: 1 - ;: 1 - 'false': 1 - handle: 1 - 'true': 1 - if: 1 - then: 1 - else: 1 - eqBy: 2 - p: 4 - y: 6 - op: 1 - compare: 1 - Ops: 1 - map: 1 - Lazy: 1 - LazyFn: 2 - LazyMemo: 1 - SuperCollider: - BCR2000: 1 - ! '{': 9 - var: 1 - controls: 2 - controlBuses: 2 - rangedControlBuses: 2 - responders: 2 - ;: 14 - ! '*new': 1 - super.new.init: 1 - ! '}': 9 - init: 1 - Dictionary.new: 3 - (: 12 - ): 12 - this.createCCResponders: 1 - createCCResponders: 1 - Array.fill: 1 - ! '|': 4 - i: 4 - CCResponder: 1 - src: 2 - chan: 2 - num: 2 - val: 4 - .postln: 1 - //: 10 - controls.put: 1 - +: 3 - controlBuses.put: 1 - Bus.control: 1 - Server.default: 1 - controlBuses.at: 2 - .value: 1 - /: 2 - nil: 4 - at: 1 - arg: 3 - controlNum: 6 - controls.at: 2 - scalarAt: 1 - busAt: 1 - /*: 2 - ! '*/': 2 - TeX: - ! '%': 85 - NeedsTeXFormat: 1 - ! '{': 180 - LaTeX2e: 1 - ! '}': 185 - ProvidesClass: 1 - reedthesis: 1 - /01/27: 1 - The: 3 - Reed: 5 - College: 5 - Thesis: 5 - Class: 4 - DeclareOption*: 1 - PassOptionsToClass: 1 - CurrentOption: 1 - book: 2 - ProcessOptions: 1 - relax: 2 - LoadClass: 1 - RequirePackage: 1 - fancyhdr: 1 - AtBeginDocument: 1 - fancyhf: 1 - fancyhead: 5 - LE: 1 - RO: 1 - thepage: 1 - above: 1 - makes: 1 - your: 1 - headers: 2 - in: 6 - all: 1 - caps.: 1 - If: 1 - you: 1 - would: 1 - like: 1 - different: 1 - choose: 1 - one: 1 - of: 6 - the: 7 - following: 1 - options: 1 - (: 3 - be: 1 - sure: 1 - to: 6 - remove: 1 - RE: 2 - slshape: 2 - nouppercase: 2 - leftmark: 2 - LO: 2 - rightmark: 2 - or: 1 - scshape: 2 - pagestyle: 2 - fancy: 1 - let: 10 - oldthebibliography: 2 - thebibliography: 2 - endoldthebibliography: 2 - endthebibliography: 1 - renewenvironment: 2 - ! '#1': 12 - addcontentsline: 5 - toc: 5 - chapter: 9 - bibname: 2 - oldtheindex: 2 - theindex: 2 - endoldtheindex: 2 - endtheindex: 1 - indexname: 1 - RToldchapter: 1 - renewcommand: 6 - if@openright: 1 - RTcleardoublepage: 3 - else: 7 - clearpage: 3 - fi: 13 - thispagestyle: 3 - empty: 4 - global: 2 - ! '@topnum': 1 - z@: 2 - ! '@afterindentfalse': 1 - secdef: 1 - ! '@chapter': 2 - ! '@schapter': 1 - def: 12 - ! '#2': 4 - ifnum: 2 - c@secnumdepth: 1 - m@ne: 2 - if@mainmatter: 1 - refstepcounter: 1 - typeout: 1 - ! '@chapapp': 2 - space: 4 - thechapter.: 1 - thechapter: 1 - space#1: 1 - chaptermark: 1 - addtocontents: 2 - lof: 1 - protect: 2 - addvspace: 2 - p@: 3 - lot: 1 - if@twocolumn: 3 - ! '@topnewpage': 1 - ! '@makechapterhead': 2 - ! '@afterheading': 1 - newcommand: 2 - if@twoside: 1 - ifodd: 1 - c@page: 1 - hbox: 15 - newpage: 3 - RToldcleardoublepage: 1 - cleardoublepage: 4 - setlength: 10 - oddsidemargin: 2 - .5in: 3 - evensidemargin: 2 - textwidth: 2 - .0in: 2 - textheight: 4 - topmargin: 6 - addtolength: 8 - ! '{-': 5 - -}: 5 - headheight: 4 - headsep: 3 - .6in: 1 - .9in: 1 - .5pt: 1 - division#1: 1 - gdef: 6 - ! '@division': 3 - ! '@latex@warning@no@line': 3 - 'No': 3 - noexpand: 3 - division: 1 - given: 3 - department#1: 1 - ! '@department': 3 - department: 1 - thedivisionof#1: 1 - ! '@thedivisionof': 3 - Division: 2 - approvedforthe#1: 1 - ! '@approvedforthe': 3 - advisor#1: 1 - ! '@advisor': 3 - advisor: 1 - altadvisor#1: 1 - ! '@altadvisor': 3 - ! '@altadvisortrue': 1 - ! '@empty': 1 - newif: 1 - if@altadvisor: 3 - ! '@altadvisorfalse': 1 - contentsname: 1 - Table: 1 - Contents: 1 - References: 1 - l@chapter: 1 - c@tocdepth: 1 - addpenalty: 1 - ! '@highpenalty': 2 - vskip: 4 - .0em: 1 - ! '@plus': 1 - ! '@tempdima': 2 - .5em: 2 - begingroup: 1 - parindent: 1 - rightskip: 1 - ! '@pnumwidth': 3 - parfillskip: 1 - ! '-': 2 - leavevmode: 1 - bfseries: 3 - advance: 1 - leftskip: 2 - hskip: 1 - nobreak: 2 - normalfont: 1 - leaders: 1 - m@th: 1 - mkern: 2 - ! '@dotsep': 2 - mu: 2 - .: 1 - hfill: 1 - hb@xt@: 1 - hss: 1 - par: 6 - penalty: 1 - endgroup: 1 - newenvironment: 1 - abstract: 1 - ! '@restonecoltrue': 1 - onecolumn: 1 - ! '@restonecolfalse': 1 - Abstract: 2 - begin: 4 - center: 4 - fontsize: 7 - selectfont: 6 - end: 4 - if@restonecol: 1 - twocolumn: 1 - ifx: 1 - ! '@pdfoutput': 1 - ! '@undefined': 1 - RTpercent: 3 - ! '@percentchar': 1 - AtBeginDvi: 2 - special: 2 - LaTeX: 3 - /12/04: 3 - SN: 3 - rawpostscript: 1 - AtEndDocument: 1 - pdfinfo: 1 - /Creator: 1 - ): 2 - maketitle: 1 - titlepage: 2 - footnotesize: 1 - small: 1 - footnoterule: 1 - footnote: 1 - thanks: 1 - baselineskip: 2 - '.4': 1 - setbox0: 2 - Requirements: 2 - for: 3 - Degree: 2 - setcounter: 1 - page: 1 - 'null': 3 - vfil: 8 - ! '@title': 1 - centerline: 8 - wd0: 7 - hrulefill: 5 - A: 1 - Presented: 1 - In: 1 - Partial: 1 - Fulfillment: 1 - Bachelor: 1 - Arts: 1 - bigskip: 2 - lineskip: 1 - .75em: 1 - tabular: 2 - t: 1 - c: 5 - ! '@author': 1 - ! '@date': 1 - Approved: 1 - cm: 2 - copy0: 1 - major: 1 - sign: 1 - makebox: 6 - Tea: - <%>: 1 - template: 1 - foo: 1 - Turing: - ! '%': 1 - function: 1 - factorial: 4 - (: 3 - n: 9 - int: 2 - ): 3 - real: 1 - if: 2 - then: 1 - result: 2 - else: 1 - ! '*': 1 - ! '-': 1 - end: 3 - var: 1 - loop: 2 - put: 3 - ..: 1 - get: 1 - exit: 1 - when: 1 - VHDL: - ! '-': 2 - VHDL: 1 - example: 1 - file: 1 - library: 1 - ieee: 1 - ;: 7 - use: 1 - ieee.std_logic_1164.all: 1 - entity: 2 - inverter: 2 - is: 2 - port: 1 - (: 1 - a: 2 - in: 1 - std_logic: 2 - b: 2 - out: 1 - ): 1 - end: 2 - architecture: 2 - rtl: 1 - of: 1 - begin: 1 - <: 1 - not: 1 - Verilog: - ////////////////////////////////////////////////////////////////////////////////: 14 - //: 367 - timescale: 10 - ns: 8 - /: 11 - ps: 8 - module: 18 - button_debounce: 3 - (: 371 - input: 37 - clk: 40 - reset_n: 32 - button: 24 - output: 35 - reg: 26 - debounce: 6 - ): 370 - ;: 285 - parameter: 7 - CLK_FREQUENCY: 4 - DEBOUNCE_HZ: 4 - localparam: 4 - COUNT_VALUE: 2 - WAIT: 6 - FIRE: 4 - COUNT: 4 - state: 6 - next_state: 6 - count: 6 - always: 23 - ! '@': 16 - posedge: 11 - or: 14 - negedge: 8 - <: 47 - begin: 46 - if: 23 - end: 48 - else: 22 - case: 3 - <=>: 4 - '1': 7 - endcase: 3 - ! '-': 71 - default: 2 - endmodule: 18 - control: 1 - en: 13 - dsp_sel: 9 - an: 6 - wire: 67 - a: 3 - b: 3 - c: 3 - d: 3 - e: 3 - f: 2 - g: 2 - h: 2 - i: 60 - j: 2 - k: 2 - l: 2 - assign: 23 - FDRSE: 6 - ! '#': 10 - .INIT: 6 - b0: 27 - .S: 6 - b1: 13 - DFF2: 1 - .Q: 6 - .C: 6 - .CE: 6 - .D: 6 - .R: 6 - DFF0: 1 - DFF6: 1 - DFF4: 1 - DFF10: 1 - DFF8: 1 - /*: 4 - ! '*/': 4 - hex_display: 1 - num: 5 - hex0: 2 - hex1: 2 - hex2: 2 - hex3: 2 - seg_7: 4 - hex_group0: 1 - .num: 4 - .en: 4 - .seg: 4 - hex_group1: 1 - hex_group2: 1 - hex_group3: 1 - mux: 1 - opA: 4 - opB: 3 - sum: 5 - out: 5 - cout: 4 - b0000: 1 - b01: 1 - b11: 1 - pipeline_registers: 1 - BIT_WIDTH: 5 - pipe_in: 4 - pipe_out: 5 - NUMBER_OF_STAGES: 7 - generate: 3 - genvar: 3 - ! '*': 4 - BIT_WIDTH*: 5 - pipe_gen: 6 - for: 4 - +: 36 - pipeline: 2 - BIT_WIDTH*i: 2 - endgenerate: 3 - ps2_mouse: 1 - reset: 5 - inout: 2 - ps2_clk: 3 - ps2_dat: 3 - the_command: 2 - send_command: 2 - command_was_sent: 2 - error_communication_timed_out: 3 - received_data: 2 - received_data_en: 4 - start_receiving_data: 3 - wait_for_incoming_data: 3 - ps2_clk_posedge: 3 - ps2_clk_negedge: 3 - idle_counter: 4 - ps2_clk_reg: 4 - ps2_data_reg: 5 - last_ps2_clk: 4 - ns_ps2_transceiver: 13 - s_ps2_transceiver: 8 - PS2_STATE_0_IDLE: 10 - h1: 1 - PS2_STATE_2_COMMAND_OUT: 2 - h3: 1 - PS2_STATE_4_END_DELAYED: 4 - (*: 1 - ! '*)': 1 - PS2_STATE_1_DATA_IN: 3 - ! '||': 1 - PS2_STATE_3_END_TRANSFER: 3 - h00: 1 - ! '&&': 3 - h01: 1 - ps2_mouse_cmdout: 1 - mouse_cmdout: 1 - .clk: 6 - .reset: 2 - .the_command: 1 - .send_command: 1 - .ps2_clk_posedge: 2 - .ps2_clk_negedge: 2 - .ps2_clk: 1 - .ps2_dat: 1 - .command_was_sent: 1 - .error_communication_timed_out: 1 - ps2_mouse_datain: 1 - mouse_datain: 1 - .wait_for_incoming_data: 1 - .start_receiving_data: 1 - .ps2_data: 1 - .received_data: 1 - .received_data_en: 1 - ns/1ps: 2 - e0: 1 - x: 41 - y: 21 - ! '{': 11 - ! '}': 11 - e1: 1 - ch: 1 - z: 7 - o: 6 - ! '&': 6 - maj: 1 - ! '|': 2 - s0: 1 - s1: 1 - sign_extender: 1 - INPUT_WIDTH: 5 - OUTPUT_WIDTH: 4 - original: 3 - sign_extended_original: 2 - sign_extend: 3 - gen_sign_extend: 1 - sqrt_pipelined: 3 - start: 11 - INPUT_BITS: 28 - radicand: 10 - data_valid: 7 - OUTPUT_BITS: 14 - root: 6 - ! '%': 3 - start_gen: 7 - OUTPUT_BITS*INPUT_BITS: 9 - root_gen: 15 - radicand_gen: 10 - mask_gen: 9 - mask_4: 1 - INPUT_BITS*: 27 - <<: 2 - i/2: 2 - pipeline_stage: 1 - INPUT_BITS*i: 5 - t_button_debounce: 1 - .CLK_FREQUENCY: 1 - .DEBOUNCE_HZ: 1 - .reset_n: 3 - .button: 1 - .debounce: 1 - initial: 3 - bx: 4 - ! '#10': 10 - ! '#5': 3 - ! '#100': 1 - ! '#0.1': 8 - t_div_pipelined: 1 - dividend: 3 - divisor: 5 - div_by_zero: 2 - quotient: 2 - quotient_correct: 1 - BITS: 2 - div_pipelined: 2 - .BITS: 1 - .dividend: 1 - .divisor: 1 - .quotient: 1 - .div_by_zero: 1 - .start: 2 - .data_valid: 2 - ! '#50': 2 - ! '#1': 1 - ! '#1000': 1 - finish: 2 - t_sqrt_pipelined: 1 - .INPUT_BITS: 1 - .radicand: 1 - .root: 1 - ! '#10000': 1 - vga: 1 - wb_clk_i: 6 - wb_rst_i: 6 - wb_dat_i: 3 - wb_dat_o: 2 - wb_adr_i: 3 - wb_we_i: 3 - wb_tga_i: 5 - wb_sel_i: 3 - wb_stb_i: 2 - wb_cyc_i: 2 - wb_ack_o: 2 - vga_red_o: 2 - vga_green_o: 2 - vga_blue_o: 2 - horiz_sync: 2 - vert_sync: 2 - csrm_adr_o: 2 - csrm_sel_o: 2 - csrm_we_o: 2 - csrm_dat_o: 2 - csrm_dat_i: 2 - csr_adr_i: 3 - csr_stb_i: 2 - conf_wb_dat_o: 3 - conf_wb_ack_o: 3 - mem_wb_dat_o: 3 - mem_wb_ack_o: 3 - csr_adr_o: 2 - csr_dat_i: 3 - csr_stb_o: 3 - v_retrace: 3 - vh_retrace: 3 - w_vert_sync: 3 - shift_reg1: 3 - graphics_alpha: 4 - memory_mapping1: 3 - write_mode: 3 - raster_op: 3 - read_mode: 3 - bitmask: 3 - set_reset: 3 - enable_set_reset: 3 - map_mask: 3 - x_dotclockdiv2: 3 - chain_four: 3 - read_map_select: 3 - color_compare: 3 - color_dont_care: 3 - wbm_adr_o: 3 - wbm_sel_o: 3 - wbm_we_o: 3 - wbm_dat_o: 3 - wbm_dat_i: 3 - wbm_stb_o: 3 - wbm_ack_i: 3 - stb: 4 - cur_start: 3 - cur_end: 3 - start_addr: 2 - vcursor: 3 - hcursor: 3 - horiz_total: 3 - end_horiz: 3 - st_hor_retr: 3 - end_hor_retr: 3 - vert_total: 3 - end_vert: 3 - st_ver_retr: 3 - end_ver_retr: 3 - pal_addr: 3 - pal_we: 3 - pal_read: 3 - pal_write: 3 - dac_we: 3 - dac_read_data_cycle: 3 - dac_read_data_register: 3 - dac_read_data: 3 - dac_write_data_cycle: 3 - dac_write_data_register: 3 - dac_write_data: 3 - vga_config_iface: 1 - config_iface: 1 - .wb_clk_i: 2 - .wb_rst_i: 2 - .wb_dat_i: 2 - .wb_dat_o: 2 - .wb_adr_i: 2 - .wb_we_i: 2 - .wb_sel_i: 2 - .wb_stb_i: 2 - .wb_ack_o: 2 - .shift_reg1: 2 - .graphics_alpha: 2 - .memory_mapping1: 2 - .write_mode: 2 - .raster_op: 2 - .read_mode: 2 - .bitmask: 2 - .set_reset: 2 - .enable_set_reset: 2 - .map_mask: 2 - .x_dotclockdiv2: 2 - .chain_four: 2 - .read_map_select: 2 - .color_compare: 2 - .color_dont_care: 2 - .pal_addr: 2 - .pal_we: 2 - .pal_read: 2 - .pal_write: 2 - .dac_we: 2 - .dac_read_data_cycle: 2 - .dac_read_data_register: 2 - .dac_read_data: 2 - .dac_write_data_cycle: 2 - .dac_write_data_register: 2 - .dac_write_data: 2 - .cur_start: 2 - .cur_end: 2 - .start_addr: 1 - .vcursor: 2 - .hcursor: 2 - .horiz_total: 2 - .end_horiz: 2 - .st_hor_retr: 2 - .end_hor_retr: 2 - .vert_total: 2 - .end_vert: 2 - .st_ver_retr: 2 - .end_ver_retr: 2 - .v_retrace: 2 - .vh_retrace: 2 - vga_lcd: 1 - lcd: 1 - .rst: 1 - .csr_adr_o: 1 - .csr_dat_i: 1 - .csr_stb_o: 1 - .vga_red_o: 1 - .vga_green_o: 1 - .vga_blue_o: 1 - .horiz_sync: 1 - .vert_sync: 1 - vga_cpu_mem_iface: 1 - cpu_mem_iface: 1 - .wbs_adr_i: 1 - .wbs_sel_i: 1 - .wbs_we_i: 1 - .wbs_dat_i: 1 - .wbs_dat_o: 1 - .wbs_stb_i: 1 - .wbs_ack_o: 1 - .wbm_adr_o: 1 - .wbm_sel_o: 1 - .wbm_we_o: 1 - .wbm_dat_o: 1 - .wbm_dat_i: 1 - .wbm_stb_o: 1 - .wbm_ack_i: 1 - vga_mem_arbitrer: 1 - mem_arbitrer: 1 - .clk_i: 1 - .rst_i: 1 - .csr_adr_i: 1 - .csr_dat_o: 1 - .csr_stb_i: 1 - .csrm_adr_o: 1 - .csrm_sel_o: 1 - .csrm_we_o: 1 - .csrm_dat_o: 1 - .csrm_dat_i: 1 - VimL: - 'no': 1 - toolbar: 1 - set: 7 - guioptions: 1 - ! '-': 1 - T: 1 - nocompatible: 1 - ignorecase: 1 - incsearch: 1 - smartcase: 1 - showmatch: 1 - showcmd: 1 - syntax: 1 - 'on': 1 - Visual Basic: - VERSION: 1 - '.0': 1 - CLASS: 1 - BEGIN: 1 - MultiUse: 1 - ! '-': 6 - NotPersistable: 1 - DataBindingBehavior: 1 - vbNone: 1 - MTSTransactionMode: 1 - ? ! '*************************************************************************************************************************************************************************************************************************************************' - : 2 - Copyright: 1 - (: 9 - c: 1 - ): 9 - David: 1 - Briant: 1 - All: 1 - rights: 1 - reserved: 1 - Option: 1 - Explicit: 1 - Private: 25 - Declare: 3 - Function: 4 - apiSetProp: 4 - Lib: 3 - Alias: 3 - ByVal: 6 - hwnd: 2 - As: 32 - Long: 10 - lpString: 2 - String: 12 - hData: 1 - apiGlobalAddAtom: 3 - apiSetForegroundWindow: 1 - myMouseEventsForm: 5 - fMouseEventsForm: 2 - WithEvents: 3 - myAST: 3 - cTP_AdvSysTray: 2 - Attribute: 3 - myAST.VB_VarHelpID: 1 - myClassName: 2 - myWindowName: 2 - Const: 9 - TEN_MILLION: 1 - Single: 1 - myListener: 1 - VLMessaging.VLMMMFileListener: 1 - myListener.VB_VarHelpID: 1 - myMMFileTransports: 1 - VLMessaging.VLMMMFileTransports: 1 - myMMFileTransports.VB_VarHelpID: 1 - myMachineID: 1 - myRouterSeed: 1 - myRouterIDsByMMTransportID: 1 - New: 6 - Dictionary: 3 - myMMTransportIDsByRouterID: 1 - myDirectoryEntriesByIDString: 1 - GET_ROUTER_ID: 1 - GET_ROUTER_ID_REPLY: 1 - REGISTER_SERVICE: 1 - REGISTER_SERVICE_REPLY: 1 - UNREGISTER_SERVICE: 1 - UNREGISTER_SERVICE_REPLY: 1 - GET_SERVICES: 1 - GET_SERVICES_REPLY: 1 - Initialize: 1 - /: 1 - Release: 1 - hide: 1 - us: 1 - from: 1 - the: 2 - Applications: 1 - list: 1 - in: 1 - Windows: 1 - Task: 1 - Manager: 1 - App.TaskVisible: 1 - 'False': 1 - create: 1 - tray: 1 - icon: 1 - Set: 4 - myAST.create: 1 - myMouseEventsForm.icon: 1 - make: 1 - myself: 1 - easily: 1 - found: 1 - myMouseEventsForm.hwnd: 3 - End: 4 - Sub: 6 - shutdown: 1 - myAST.destroy: 1 - Nothing: 2 - Unload: 1 - myAST_RButtonUp: 1 - Dim: 1 - epm: 1 - cTP_EasyPopupMenu: 1 - menuItemSelected: 1 - epm.addMenuItem: 2 - MF_STRING: 3 - epm.addSubmenuItem: 2 - Disabled: 1 - item: 2 - Checked: 1 - Exit: 1 - <">: 1 - address: 3 - MachineID: 1 - RouterID: 1 - AgentID: 1 - myMMFileTransports_disconnecting: 1 - id: 1 - oReceived: 2 - Boolean: 1 - 'True': 1 - XML: - <?xml>: 3 - version=: 4 - <project>: 1 - name=: 223 - xmlns: 2 - ea=: 2 - <description>: 2 - This: 21 - easyant: 3 - module.ant: 1 - sample: 2 - file: 3 - is: 123 - optionnal: 1 - and: 44 - designed: 1 - to: 164 - customize: 1 - your: 8 - build: 1 - with: 23 - own: 2 - specific: 8 - target.: 1 - </description>: 2 - <target>: 2 - <echo>: 2 - my: 2 - awesome: 1 - additionnal: 1 - target: 6 - </echo>: 2 - </target>: 2 - extensionOf=: 1 - i: 2 - would: 2 - love: 1 - could: 1 - easily: 1 - plug: 1 - pre: 1 - compile: 1 - step: 1 - </project>: 1 - <ivy-module>: 1 - <info>: 1 - organisation=: 3 - module=: 3 - revision=: 3 - status=: 1 - this: 77 - a: 127 - module.ivy: 1 - for: 59 - java: 1 - standard: 1 - application: 2 - <!--: 1 - -->: 1 - <ea:build>: 1 - <ea:property>: 1 - value=: 1 - <ea:plugin>: 1 - </ea:build>: 1 - </info>: 1 - <configurations>: 1 - <conf>: 2 - visibility=: 2 - description=: 2 - </configurations>: 1 - <dependencies>: 1 - <dependency>: 1 - org=: 1 - rev=: 1 - conf=: 1 - default: 9 - junit: 2 - '.4': 1 - test: 7 - ! '-': 49 - /: 6 - </dependencies>: 1 - </ivy-module>: 1 - <doc>: 1 - <assembly>: 1 - <name>: 1 - ReactiveUI: 2 - </name>: 1 - </assembly>: 1 - <members>: 1 - <member>: 120 - <summary>: 120 - IObservedChange: 5 - generic: 3 - interface: 4 - that: 94 - replaces: 1 - the: 260 - non: 1 - PropertyChangedEventArgs.: 1 - Note: 7 - it: 16 - used: 19 - both: 2 - Changing: 5 - (: 52 - i.e.: 23 - ): 45 - Changed: 4 - Observables.: 2 - In: 6 - future: 2 - will: 65 - be: 57 - Covariant: 1 - which: 12 - allow: 1 - simpler: 1 - casting: 1 - between: 15 - changes.: 2 - </summary>: 121 - </member>: 120 - The: 74 - object: 42 - has: 16 - raised: 1 - change.: 12 - name: 7 - of: 75 - property: 74 - changed: 18 - 'on': 35 - Sender.: 1 - value: 44 - changed.: 9 - IMPORTANT: 1 - NOTE: 1 - often: 3 - not: 9 - set: 41 - performance: 1 - reasons: 1 - unless: 1 - you: 20 - have: 17 - explicitly: 1 - requested: 1 - an: 88 - Observable: 56 - via: 8 - method: 34 - such: 5 - as: 25 - ObservableForProperty.: 1 - To: 4 - retrieve: 3 - use: 5 - Value: 3 - extension: 2 - method.: 2 - IReactiveNotifyPropertyChanged: 6 - represents: 4 - extended: 1 - version: 3 - INotifyPropertyChanged: 1 - also: 17 - exposes: 1 - IEnableLogger: 1 - dummy: 1 - attaching: 1 - any: 11 - class: 11 - give: 1 - access: 3 - Log: 2 - When: 5 - called: 5 - fire: 11 - change: 26 - notifications: 22 - neither: 3 - traditional: 3 - nor: 3 - until: 7 - return: 11 - disposed.: 3 - <returns>: 36 - An: 26 - when: 38 - disposed: 4 - reenables: 3 - notifications.: 5 - </returns>: 36 - Represents: 4 - fires: 6 - ! '*before*': 2 - about: 5 - should: 10 - duplicate: 2 - if: 27 - same: 8 - multiple: 6 - times.: 4 - ! '*after*': 2 - TSender: 1 - helper: 5 - adds: 2 - typed: 2 - versions: 2 - Changed.: 1 - IReactiveCollection: 3 - collection: 27 - can: 11 - notify: 3 - its: 4 - contents: 2 - are: 13 - either: 1 - items: 27 - added/removed: 1 - or: 24 - itself: 2 - changes: 13 - .: 22 - It: 1 - important: 6 - implement: 5 - Changing/Changed: 1 - from: 12 - semantically: 3 - Fires: 14 - added: 6 - once: 4 - per: 2 - item: 19 - added.: 4 - Functions: 2 - add: 2 - AddRange: 2 - provided: 14 - was: 6 - before: 8 - going: 4 - collection.: 6 - been: 5 - removed: 4 - providing: 20 - removed.: 4 - whenever: 18 - number: 9 - in: 45 - new: 10 - Count.: 4 - previous: 2 - Provides: 4 - Item: 4 - implements: 8 - IReactiveNotifyPropertyChanged.: 4 - only: 18 - enabled: 8 - ChangeTrackingEnabled: 2 - True.: 2 - Enables: 2 - ItemChanging: 2 - ItemChanged: 2 - properties: 29 - ;: 10 - implementing: 2 - rebroadcast: 2 - through: 3 - ItemChanging/ItemChanged.: 2 - T: 1 - type: 23 - specified: 7 - Observables: 4 - IMessageBus: 1 - act: 2 - simple: 2 - way: 2 - ViewModels: 3 - other: 9 - objects: 4 - communicate: 2 - each: 7 - loosely: 2 - coupled: 2 - way.: 2 - Specifying: 2 - messages: 22 - go: 2 - where: 4 - done: 2 - combination: 2 - Type: 9 - message: 30 - well: 2 - additional: 3 - parameter: 6 - unique: 12 - string: 13 - distinguish: 12 - arbitrarily: 2 - by: 13 - client.: 2 - Listen: 4 - provides: 6 - Message: 2 - RegisterMessageSource: 4 - SendMessage.: 2 - <typeparam>: 12 - listen: 6 - to.: 7 - </typeparam>: 12 - <param>: 84 - A: 19 - identical: 11 - types: 10 - one: 27 - purpose: 10 - leave: 10 - null.: 10 - </param>: 83 - Determins: 2 - particular: 2 - registered.: 2 - message.: 1 - 'True': 6 - posted: 3 - Type.: 2 - Registers: 3 - representing: 20 - stream: 7 - send.: 4 - Another: 2 - part: 2 - code: 4 - then: 3 - call: 5 - Observable.: 6 - subscribed: 2 - sent: 2 - out: 4 - provided.: 5 - Sends: 2 - single: 2 - using: 9 - contract.: 2 - Consider: 2 - instead: 2 - sending: 2 - response: 2 - events.: 2 - actual: 2 - send: 3 - returns: 5 - current: 10 - logger: 2 - allows: 15 - log: 2 - attached.: 1 - data: 1 - structure: 1 - representation: 1 - memoizing: 2 - cache: 14 - evaluate: 1 - function: 13 - but: 7 - keep: 1 - recently: 3 - evaluated: 1 - parameters.: 1 - Since: 1 - mathematical: 2 - sense: 1 - key: 12 - ! '*always*': 1 - maps: 1 - corresponding: 2 - value.: 2 - calculation: 8 - function.: 6 - returned: 2 - Constructor: 2 - whose: 7 - results: 6 - want: 2 - Tag: 1 - user: 2 - defined: 1 - size: 1 - maintain: 1 - after: 1 - old: 1 - start: 1 - thrown: 1 - out.: 1 - result: 3 - gets: 1 - evicted: 2 - because: 2 - Invalidate: 2 - full: 1 - Evaluates: 1 - returning: 1 - cached: 2 - possible: 1 - pass: 2 - optional: 2 - parameter.: 1 - Ensure: 1 - next: 1 - time: 3 - queried: 1 - called.: 1 - all: 4 - Returns: 5 - values: 4 - currently: 2 - MessageBus: 3 - bus.: 1 - scheduler: 11 - post: 2 - RxApp.DeferredScheduler: 2 - default.: 2 - Current: 1 - RxApp: 1 - global: 1 - object.: 3 - ViewModel: 8 - another: 3 - s: 1 - Return: 1 - instance: 2 - type.: 3 - registered: 1 - ObservableAsPropertyHelper: 6 - help: 1 - backed: 1 - read: 3 - still: 1 - created: 2 - directly: 1 - more: 16 - ToProperty: 2 - ObservableToProperty: 1 - methods.: 2 - so: 1 - output: 1 - chained: 2 - example: 2 - property.: 12 - Constructs: 4 - base: 3 - on.: 6 - action: 2 - take: 2 - typically: 1 - t: 2 - bindings: 13 - 'null': 4 - OAPH: 2 - at: 2 - startup.: 1 - initial: 28 - normally: 6 - Dispatcher: 3 - based: 9 - last: 1 - Exception: 1 - steps: 1 - taken: 1 - ensure: 3 - never: 3 - complete: 1 - fail.: 1 - Converts: 2 - automatically: 3 - onChanged: 2 - raise: 2 - notification.: 2 - equivalent: 2 - convenient.: 1 - Expression: 7 - initialized: 2 - backing: 9 - field: 10 - ReactiveObject: 11 - ObservableAsyncMRUCache: 2 - memoization: 2 - asynchronous: 4 - expensive: 2 - compute: 1 - MRU: 1 - fixed: 1 - limit: 5 - cache.: 5 - guarantees: 6 - given: 11 - flight: 2 - subsequent: 1 - requests: 4 - wait: 3 - first: 1 - empty: 1 - web: 6 - image: 1 - receives: 1 - two: 1 - concurrent: 5 - issue: 2 - WebRequest: 1 - does: 1 - mean: 1 - request: 3 - Concurrency: 1 - limited: 1 - maxConcurrent: 1 - too: 1 - many: 1 - operations: 6 - progress: 1 - further: 1 - queued: 1 - slot: 1 - available.: 1 - performs: 1 - asyncronous: 1 - async: 3 - CPU: 1 - Observable.Return: 1 - may: 1 - result.: 2 - ! '*must*': 1 - equivalently: 1 - input: 2 - being: 1 - memoized: 1 - calculationFunc: 2 - depends: 1 - varables: 1 - than: 5 - unpredictable.: 1 - reached: 2 - discarded.: 4 - maximum: 2 - regardless: 2 - caches: 2 - server.: 2 - clean: 1 - up: 25 - manage: 1 - disk: 1 - download: 1 - save: 1 - temporary: 1 - folder: 1 - onRelease: 1 - delete: 1 - file.: 1 - run: 7 - defaults: 1 - TaskpoolScheduler: 2 - Issues: 1 - fetch: 1 - operation.: 1 - operation: 2 - finishes.: 1 - If: 6 - immediately: 3 - upon: 1 - subscribing: 1 - returned.: 2 - provide: 2 - synchronous: 1 - AsyncGet: 1 - resulting: 1 - Works: 2 - like: 2 - SelectMany: 2 - memoizes: 2 - selector: 5 - calls.: 2 - addition: 3 - 'no': 4 - selectors: 2 - running: 4 - concurrently: 2 - queues: 2 - rest.: 2 - very: 2 - services: 2 - avoid: 2 - potentially: 2 - spamming: 2 - server: 2 - hundreds: 2 - requests.: 2 - similar: 3 - passed: 1 - SelectMany.: 1 - similarly: 1 - ObservableAsyncMRUCache.AsyncGet: 1 - must: 2 - sense.: 1 - flattened: 2 - selector.: 2 - overload: 2 - useful: 2 - making: 3 - service: 1 - several: 1 - places: 1 - paths: 1 - already: 1 - configured: 1 - ObservableAsyncMRUCache.: 1 - notification: 6 - Attempts: 1 - expression: 3 - 'false': 2 - expression.: 1 - entire: 1 - able: 1 - followed: 1 - otherwise: 1 - Given: 3 - fully: 3 - filled: 1 - SetValueToProperty: 1 - apply: 3 - target.property: 1 - This.GetValue: 1 - observed: 1 - onto: 1 - convert: 2 - stream.: 3 - ValueIfNotDefault: 1 - filters: 1 - BindTo: 1 - takes: 1 - applies: 1 - Conceptually: 1 - child: 2 - without: 1 - checks.: 1 - set.: 3 - x.Foo.Bar.Baz: 1 - disconnects: 1 - binding.: 1 - ReactiveCollection.: 1 - ReactiveCollection: 1 - existing: 3 - list.: 2 - list: 1 - populate: 1 - anything: 2 - Change: 2 - Tracking: 2 - Creates: 3 - adding: 2 - completes: 4 - optionally: 2 - ensuring: 2 - delay.: 2 - withDelay: 2 - leak: 2 - Timer.: 2 - always: 4 - UI: 2 - thread.: 3 - put: 2 - into: 2 - populated: 4 - faster: 2 - delay: 2 - Select: 3 - item.: 3 - creating: 2 - collections: 1 - updated: 1 - respective: 1 - Model: 1 - updated.: 1 - Collection.Select: 1 - mirror: 1 - ObservableForProperty: 14 - ReactiveObject.: 1 - unlike: 13 - Selector: 1 - classes: 2 - INotifyPropertyChanged.: 1 - monitor: 1 - RaiseAndSetIfChanged: 2 - Setter: 2 - write: 2 - assumption: 4 - named: 2 - RxApp.GetFieldNameForPropertyNameFunc.: 2 - almost: 2 - keyword.: 2 - newly: 2 - intended: 5 - Silverlight: 2 - WP7: 1 - reflection: 1 - cannot: 1 - private: 1 - field.: 1 - Reference: 1 - Use: 13 - custom: 4 - raiseAndSetIfChanged: 1 - doesn: 1 - x: 1 - x.SomeProperty: 1 - suffice.: 1 - RaisePropertyChanging: 2 - mock: 4 - scenarios: 4 - manually: 4 - fake: 4 - invoke: 4 - raisePropertyChanging: 4 - faking: 4 - RaisePropertyChanged: 2 - helps: 1 - make: 2 - them: 1 - compatible: 1 - Rx.Net.: 1 - declare: 1 - initialize: 1 - derive: 1 - properties/methods: 1 - MakeObjectReactiveHelper.: 1 - InUnitTestRunner: 1 - attempts: 1 - determine: 1 - heuristically: 1 - unit: 3 - framework.: 1 - we: 1 - determined: 1 - framework: 1 - running.: 1 - GetFieldNameForProperty: 1 - convention: 2 - GetFieldNameForPropertyNameFunc.: 1 - needs: 1 - found.: 1 - name.: 1 - DeferredScheduler: 1 - schedule: 2 - work: 2 - normal: 2 - mode: 2 - DispatcherScheduler: 1 - Unit: 1 - Test: 1 - Immediate: 1 - simplify: 1 - writing: 1 - common: 1 - tests.: 1 - background: 1 - modes: 1 - TPL: 1 - Task: 1 - Pool: 1 - Threadpool: 1 - Set: 3 - provider: 1 - usually: 1 - entry: 1 - MessageBus.Current.: 1 - override: 1 - naming: 1 - one.: 1 - WhenAny: 12 - observe: 12 - constructors: 12 - need: 12 - setup.: 12 - </members>: 1 - </doc>: 1 - XQuery: - (: 38 - ! '-': 486 - xproc.xqm: 1 - core: 1 - xqm: 1 - contains: 1 - entry: 2 - points: 1 - primary: 1 - eval: 3 - step: 5 - function: 3 - and: 3 - control: 1 - functions.: 1 - ): 38 - xquery: 1 - version: 1 - encoding: 1 - ;: 25 - module: 6 - namespace: 8 - xproc: 17 - declare: 24 - namespaces: 5 - p: 2 - c: 1 - err: 1 - imports: 1 - import: 4 - util: 1 - at: 4 - const: 1 - parse: 8 - u: 2 - options: 2 - boundary: 1 - space: 1 - preserve: 1 - option: 1 - saxon: 1 - output: 1 - functions: 1 - variable: 13 - run: 2 - run#6: 1 - choose: 1 - try: 1 - catch: 1 - group: 1 - for: 1 - each: 1 - viewport: 1 - library: 1 - pipeline: 8 - list: 1 - all: 1 - declared: 1 - enum: 3 - ! '{': 5 - <namespace>: 1 - name=: 1 - ns: 1 - <dummy>: 1 - ! '}': 5 - </dummy>: 1 - </namespace>: 1 - point: 1 - stdin: 1 - dflag: 1 - tflag: 1 - bindings: 2 - STEP: 3 - I: 1 - preprocess: 1 - let: 6 - validate: 1 - explicit: 3 - AST: 2 - name: 1 - type: 1 - ast: 1 - element: 1 - parse/@*: 1 - sort: 1 - parse/*: 1 - II: 1 - eval_result: 1 - III: 1 - serialize: 1 - return: 2 - results: 1 - serialized_result: 2 - XSLT: - <?xml>: 1 - version=: 2 - <xsl:stylesheet>: 1 - xmlns: 1 - xsl=: 1 - <xsl:template>: 1 - match=: 1 - <html>: 1 - <body>: 1 - <h2>: 1 - My: 1 - CD: 1 - Collection: 1 - </h2>: 1 - <table>: 1 - border=: 1 - <tr>: 2 - bgcolor=: 1 - <th>: 2 - Title: 1 - </th>: 2 - Artist: 1 - </tr>: 2 - <xsl:for-each>: 1 - select=: 3 - <td>: 2 - <xsl:value-of>: 2 - </td>: 2 - </xsl:for-each>: 1 - </table>: 1 - </body>: 1 - </html>: 1 - </xsl:template>: 1 - </xsl:stylesheet>: 1 - YAML: - gem: 1 - ! '-': 16 - local: 1 - gen: 1 - rdoc: 2 - run: 1 - tests: 1 - inline: 1 - source: 1 - line: 1 - numbers: 1 - gempath: 1 - /usr/local/rubygems: 1 - /home/gavin/.rubygems: 1 -language_tokens: - Apex: 4041 - AppleScript: 190 - Arduino: 20 - AutoHotkey: 3 - C: 28587 - C++: 7788 - Ceylon: 50 - CoffeeScript: 2340 - Coq: 17450 - Dart: 68 - Delphi: 30 - Diff: 16 - Emacs Lisp: 3 - GAS: 133 - Gosu: 414 - Groovy: 71 - Groovy Server Pages: 91 - Haml: 4 - INI: 6 - Ioke: 4 - Java: 6032 - JavaScript: 22985 - Julia: 173 - Kotlin: 149 - Logtalk: 23 - Markdown: 1 - Matlab: 335 - Nemerle: 17 - Nimrod: 2 - Nu: 6 - OCaml: 261 - Objective-C: 28134 - Opa: 32 - OpenCL: 88 - OpenEdge ABL: 717 - PHP: 12292 - Parrot Assembly: 8 - Parrot Internal Representation: 7 - Perl: 7231 - PowerShell: 14 - Prolog: 61 - Python: 4357 - R: 14 - Racket: 246 - Rebol: 5 - Ruby: 3539 - Rust: 8 - SCSS: 39 - Sass: 28 - Scala: 352 - Scheme: 3549 - Scilab: 71 - Shell: 264 - Standard ML: 220 - SuperCollider: 139 - TeX: 1073 - Tea: 3 - Turing: 45 - VHDL: 42 - Verilog: 3440 - VimL: 20 - Visual Basic: 294 - XML: 5627 - XQuery: 801 - XSLT: 44 - YAML: 30 -languages: - Apex: 6 - AppleScript: 2 - Arduino: 1 - AutoHotkey: 1 - C: 18 - C++: 14 - Ceylon: 1 - CoffeeScript: 9 - Coq: 12 - Dart: 1 - Delphi: 1 - Diff: 1 - Emacs Lisp: 1 - GAS: 1 - Gosu: 5 - Groovy: 2 - Groovy Server Pages: 4 - Haml: 1 - INI: 1 - Ioke: 1 - Java: 5 - JavaScript: 19 - Julia: 1 - Kotlin: 1 - Logtalk: 1 - Markdown: 1 - Matlab: 6 - Nemerle: 1 - Nimrod: 1 - Nu: 1 - OCaml: 1 - Objective-C: 20 - Opa: 2 - OpenCL: 1 - OpenEdge ABL: 5 - PHP: 6 - Parrot Assembly: 1 - Parrot Internal Representation: 1 - Perl: 12 - PowerShell: 2 - Prolog: 1 - Python: 4 - R: 1 - Racket: 2 - Rebol: 1 - Ruby: 14 - Rust: 1 - SCSS: 1 - Sass: 1 - Scala: 2 - Scheme: 1 - Scilab: 3 - Shell: 11 - Standard ML: 2 - SuperCollider: 1 - TeX: 1 - Tea: 1 - Turing: 1 - VHDL: 1 - Verilog: 13 - VimL: 2 - Visual Basic: 1 - XML: 3 - XQuery: 1 - XSLT: 1 - YAML: 1 -md5: !binary |- - YTBlYmVhZmEyZjgwNDI4NDQwNzk5MGJmZWRiMWM3ZWU= |
