aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2012-07-23 15:05:08 -0500
committerJoshua Peek <josh@joshpeek.com>2012-07-23 15:05:08 -0500
commit314f0e485227915931db361be14d308a210bedea (patch)
tree49969413d6ea7610f900fa4393bd28a12ac0ab87
parentafedf2557d581480ff41d7b353f701aa6f2d3304 (diff)
Use simple yaml dump for now
-rw-r--r--Rakefile2
-rw-r--r--lib/linguist/samples.rb53
-rw-r--r--lib/linguist/samples.yml39927
3 files changed, 19968 insertions, 20014 deletions
diff --git a/Rakefile b/Rakefile
index 18e395a..782e6d9 100644
--- a/Rakefile
+++ b/Rakefile
@@ -10,7 +10,7 @@ end
file 'lib/linguist/samples.yml' => Dir['samples/**/*'] do |f|
require 'linguist/samples'
- yaml = Linguist::Samples.serialize_to_yaml(Linguist::Samples.data)
+ yaml = YAML.dump(Linguist::Samples.data)
File.open(f.name, 'w') { |io| io.write yaml }
end
diff --git a/lib/linguist/samples.rb b/lib/linguist/samples.rb
index 8aacf46..5d78ae7 100644
--- a/lib/linguist/samples.rb
+++ b/lib/linguist/samples.rb
@@ -88,60 +88,9 @@ module Linguist
Classifier.train!(db, language.name, data)
end
- db['md5'] = MD5.hexdigest(db)
+ db['md5'] = Linguist::MD5.hexdigest(db)
db
end
-
- # Public: Serialize samples data to YAML.
- #
- # db - Hash
- #
- # Returns String.
- def self.serialize_to_yaml(db)
- out = ""
- escape = lambda { |s| s.inspect.gsub(/\\#/, "\#") }
-
- out << "md5: #{db['md5']}\n"
-
- out << "extnames:\n"
- db['extnames'].sort.each do |language, extnames|
- out << " #{escape.call(language)}:\n"
- extnames.sort.each do |extname|
- out << " - #{escape.call(extname)}\n"
- end
- end
-
- out << "filenames:\n"
- db['filenames'].sort.each do |language, filenames|
- out << " #{escape.call(language)}:\n"
- filenames.sort.each do |filename|
- out << " - #{escape.call(filename)}\n"
- end
- end
-
- out << "languages_total: #{db['languages_total']}\n"
- out << "tokens_total: #{db['tokens_total']}\n"
-
- out << "languages:\n"
- db['languages'].sort.each do |language, count|
- out << " #{escape.call(language)}: #{count}\n"
- end
-
- out << "language_tokens:\n"
- db['language_tokens'].sort.each do |language, count|
- out << " #{escape.call(language)}: #{count}\n"
- end
-
- out << "tokens:\n"
- db['tokens'].sort.each do |language, tokens|
- out << " #{escape.call(language)}:\n"
- tokens.sort.each do |token, count|
- out << " #{escape.call(token)}: #{count}\n"
- end
- end
-
- out
- end
end
end
diff --git a/lib/linguist/samples.yml b/lib/linguist/samples.yml
index 7007687..fa39411 100644
--- a/lib/linguist/samples.yml
+++ b/lib/linguist/samples.yml
@@ -1,19965 +1,19970 @@
-md5: 58f0a3290964ee537940c3686559ba37
+---
extnames:
- "Apex":
- - ".cls"
- "AppleScript":
- - ".applescript"
- - ".scpt"
- "Arduino":
- - ".ino"
- "AutoHotkey":
- - ".ahk"
- "C":
- - ".c"
- - ".h"
- "C++":
- - ".cc"
- - ".cpp"
- - ".cu"
- - ".h"
- - ".hpp"
- "Ceylon":
- - ".ceylon"
- "CoffeeScript":
- - ".coffee"
- "Coq":
- - ".v"
- "Dart":
- - ".dart"
- "Delphi":
- - ".dpr"
- "Diff":
- - ".patch"
- "Emacs Lisp":
- - ".el"
- "GAS":
- - ".s"
- "Gosu":
- - ".gs"
- - ".gsp"
- - ".gst"
- - ".gsx"
- - ".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":
- - ".module"
- - ".php"
- "Parrot Assembly":
- - ".pasm"
- "Parrot Internal Representation":
- - ".pir"
- "Perl":
- - ".pl"
- - ".pm"
- - ".t"
- "PowerShell":
- - ".ps1"
- - ".psm1"
- "Prolog":
- - ".pl"
- "Python":
- - ".py"
- "R":
- - ".R"
- "Racket":
- - ".rkt"
- - ".scrbl"
- "Rebol":
- - ".r"
- "Ruby":
- - ".rake"
- - ".rb"
- "Rust":
- - ".rs"
- "SCSS":
- - ".scss"
- "Sass":
- - ".sass"
- "Scala":
- - ".sbt"
- - ".scala"
- "Scheme":
- - ".sps"
- "Scilab":
- - ".sce"
- - ".sci"
- - ".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"
+ Apex:
+ - .cls
+ AppleScript:
+ - .applescript
+ - .scpt
+ Arduino:
+ - .ino
+ AutoHotkey:
+ - .ahk
+ C:
+ - .c
+ - .h
+ Ceylon:
+ - .ceylon
+ CoffeeScript:
+ - .coffee
+ Coq:
+ - .v
+ C++:
+ - .h
+ - .hpp
+ - .cu
+ - .cpp
+ - .cc
+ Dart:
+ - .dart
+ Delphi:
+ - .dpr
+ Diff:
+ - .patch
+ Emacs Lisp:
+ - .el
+ GAS:
+ - .s
+ Gosu:
+ - .gsp
+ - .gst
+ - .gsx
+ - .vark
+ - .gs
+ 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
+ Objective-C:
+ - .h
+ - .m
+ OCaml:
+ - .ml
+ Opa:
+ - .opa
+ OpenCL:
+ - .cl
+ OpenEdge ABL:
+ - .cls
+ - .p
+ Parrot Assembly:
+ - .pasm
+ Perl:
+ - .pm
+ - .pl
+ - .t
+ PHP:
+ - .php
+ - .module
+ Parrot Internal Representation:
+ - .pir
+ PowerShell:
+ - .ps1
+ - .psm1
+ Prolog:
+ - .pl
+ Python:
+ - .py
+ R:
+ - .R
+ Racket:
+ - .scrbl
+ - .rkt
+ Rebol:
+ - .r
+ Ruby:
+ - .rb
+ - .rake
+ Rust:
+ - .rs
+ Sass:
+ - .sass
+ Scala:
+ - .sbt
+ - .scala
+ Scheme:
+ - .sps
+ Scilab:
+ - .sci
+ - .sce
+ - .tst
+ SCSS:
+ - .scss
+ Shell:
+ - .bash
+ - .sh
+ - .zsh
+ Standard ML:
+ - .sig
+ - .sml
+ SuperCollider:
+ - .sc
+ Tea:
+ - .tea
+ TeX:
+ - .cls
+ Turing:
+ - .t
+ Verilog:
+ - .v
+ VHDL:
+ - .vhd
+ Visual Basic:
+ - .cls
+ XML:
+ - .ant
+ - .ivy
+ - .xml
+ XQuery:
+ - .xqm
+ XSLT:
+ - .xslt
filenames:
- "Ruby":
- - "Capfile"
- - "Rakefile"
- "Shell":
- - "PKGBUILD"
-languages_total: 243
+ Ruby:
+ - Capfile
+ - Rakefile
+ Shell:
+ - PKGBUILD
tokens_total: 164127
-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
-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_total: 243
tokens:
- "Apex":
- "&": 2
- "&&": 46
- "(": 457
- ")": 458
- "*/": 15
- "+": 66
- "-": 18
- ".AccountSid__c": 1
- ".AuthToken__c": 1
- ".get": 4
- ".getAccount": 2
- ".getAccountSid": 1
- ".getHeaders": 1
- ".getParameters": 2
- ".getSid": 2
- ".length": 2
- ".split": 1
- "/": 4
- "/*": 15
- "//": 22
- "//Chinese": 2
- "//Converts": 1
- "//Czech": 1
- "//Danish": 1
- "//Dutch": 1
- "//English": 1
- "//FOR": 2
- "//Finnish": 1
- "//French": 1
- "//German": 1
- "//Hungarian": 1
- "//Indonesian": 1
- "//Italian": 1
- "//Japanese": 1
- "//Korean": 1
- "//LIST/ARRAY": 1
- "//Polish": 1
- "//Portuguese": 1
- "//Returns": 1
- "//Russian": 1
- "//Spanish": 1
- "//Swedish": 1
- "//Thai": 1
- "//Throws": 1
- "//Turkish": 1
- "//check": 2
- "//dash": 1
- "//the": 2
- "//underscore": 1
- "1": 2
- ";": 286
- "<": 32
- "<=>": 2
- "<Attachment>": 2
- "<Id>": 1
- "<Messaging.EmailFileAttachment>": 3
- "<Object>": 22
- "<SObject>": 19
- "<String,String>": 29
- "<String>": 30
- "@isTest": 1
- "ApexPages.currentPage": 4
- "ArrayUtils": 1
- "ArrayUtils.toString": 12
- "Attachment": 2
- "Boolean": 38
- "BooleanUtils": 1
- "Brazilian": 1
- "DEFAULTS": 1
- "DEFAULTS.containsKey": 3
- "DEFAULTS.get": 3
- "DEFAULT_LANGUAGE_CODE": 3
- "Double": 1
- "EMPTY_STRING_ARRAY": 1
- "ERROR": 1
- "EmailUtils": 1
- "Exception": 1
- "FORCE.COM": 1
- "FROM": 1
- "G_GEO_BAD_KEY": 1
- "G_GEO_BAD_REQUEST": 1
- "G_GEO_MISSING_ADDRESS": 1
- "G_GEO_SERVER_ERROR": 1
- "G_GEO_SUCCESS": 1
- "G_GEO_TOO_MANY_QUERIES": 1
- "G_GEO_UNAVAILABLE_ADDRESS": 1
- "G_GEO_UNKNOWN_ADDRESS": 1
- "G_GEO_UNKNOWN_DIRECTIONS": 1
- "GeoUtils": 1
- "HTTP_LANGUAGE_CODE_PARAMETER_KEY": 2
- "ID": 1
- "IN": 1
- "ISObjectComparator": 3
- "Id": 1
- "IllegalArgumentException": 5
- "Integer": 34
- "LANGUAGES_FROM_BROWSER_AS_LIST": 3
- "LANGUAGES_FROM_BROWSER_AS_LIST.size": 1
- "LANGUAGES_FROM_BROWSER_AS_STRING": 2
- "LANGUAGE_CODE_SET": 1
- "LANGUAGE_HTTP_PARAMETER": 7
- "LanguageUtils": 1
- "List": 71
- "MAX_NUMBER_OF_ELEMENTS_IN_LIST": 5
- "Map": 31
- "Messaging.EmailFileAttachment": 2
- "Messaging.SingleEmailMessage": 3
- "Messaging.sendEmail": 1
- "MissingTwilioConfigCustomSettingsException": 2
- "OBJECTS": 1
- "Object": 23
- "ObjectComparator": 3
- "PRIMITIVES": 1
- "PageReference": 1
- "PrimitiveComparator": 2
- "SALESFORCE": 1
- "SELECT": 1
- "SORTING": 1
- "SObject": 19
- "SUPPORTED_LANGUAGE_CODES": 2
- "SUPPORTED_LANGUAGE_CODES.contains": 2
- "Set": 6
- "Simplified": 1
- "String": 58
- "StringUtils.defaultString": 4
- "StringUtils.equalsIgnoreCase": 1
- "StringUtils.isNotBlank": 1
- "StringUtils.length": 1
- "StringUtils.lowerCase": 3
- "StringUtils.replaceChars": 2
- "StringUtils.split": 1
- "StringUtils.substring": 1
- "System.assert": 6
- "System.assertEquals": 5
- "Test.isRunningTest": 1
- "Traditional": 1
- "TwilioAPI": 2
- "TwilioAPI.client": 2
- "TwilioAPI.getDefaultAccount": 1
- "TwilioAPI.getDefaultClient": 2
- "TwilioAPI.getTwilioConfig": 2
- "TwilioAccount": 1
- "TwilioCapability": 2
- "TwilioConfig__c": 5
- "TwilioConfig__c.getOrgDefaults": 1
- "TwilioRestClient": 5
- "UserInfo.getLanguage": 1
- "WHERE": 1
- "a": 2
- "aList": 4
- "accountAddressString": 1
- "accountSid": 2
- "activity.": 1
- "actual": 16
- "actual.size": 2
- "amp": 1
- "an": 2
- "anArray": 14
- "anArray.size": 2
- "array1": 8
- "array1.size": 4
- "array2": 9
- "array2.size": 2
- "as": 1
- "assertArraysAreEqual": 2
- "attachment": 1
- "attachment.Body": 1
- "attachment.Name": 1
- "attachmentIDs": 2
- "authToken": 2
- "body": 8
- "bool": 32
- "boolArray": 4
- "boolArray.size": 1
- "boolean": 1
- "but": 2
- "class": 7
- "client": 2
- "comparator": 14
- "comparator.compare": 12
- "conversion": 1
- "count": 10
- "createCapability": 1
- "createClient": 1
- "defaultVal": 2
- "displayLanguageCode": 13
- "elmt": 8
- "else": 25
- "email": 1
- "emailSubject": 10
- "etc.": 1
- "expected": 16
- "expected.size": 4
- "extends": 1
- "false": 13
- "falseString": 2
- "falseValue": 2
- "fieldName": 3
- "fieldName.trim": 2
- "fileAttachment": 2
- "fileAttachment.setBody": 1
- "fileAttachment.setFileName": 1
- "fileAttachments": 5
- "fileAttachments.add": 1
- "fileAttachments.size": 1
- "filterLanguageCode": 4
- "final": 6
- "firstItem": 2
- "foo": 1
- "for": 24
- "generateFromContent": 1
- "get": 1
- "getAllLanguages": 3
- "getDefaultAccount": 1
- "getDefaultClient": 2
- "getLangCodeByBrowser": 4
- "getLangCodeByBrowserOrIfNullThenHttpParam": 1
- "getLangCodeByBrowserOrIfNullThenUser": 1
- "getLangCodeByHttpParam": 4
- "getLangCodeByHttpParamOrIfNullThenBrowser": 1
- "getLangCodeByHttpParamOrIfNullThenUser": 1
- "getLangCodeByUser": 3
- "getLanguageName": 1
- "getSuppLangCodeSet": 2
- "getTwilioConfig": 3
- "global": 70
- "header": 2
- "hi": 50
- "hi0": 8
- "htmlBody": 2
- "i": 55
- "id": 1
- "if": 89
- "il": 2
- "instanceof": 1
- "int": 1
- "is": 5
- "isEmpty": 7
- "isFalse": 1
- "isNotEmpty": 4
- "isNotFalse": 1
- "isNotTrue": 1
- "isNotValidEmailAddress": 1
- "isTrue": 1
- "isValidEmailAddress": 2
- "j": 10
- "langCode": 3
- "langCodes": 2
- "langCodes.add": 1
- "languageCode": 2
- "languageFromBrowser": 6
- "list1": 15
- "list1.get": 2
- "list1.size": 6
- "list2": 9
- "list2.size": 2
- "lo": 42
- "lo0": 6
- "lowerCase": 1
- "mail": 2
- "mail.setBccSender": 1
- "mail.setFileAttachments": 1
- "mail.setHtmlBody": 1
- "mail.setPlainTextBody": 1
- "mail.setSaveAsActivity": 1
- "mail.setSubject": 1
- "mail.setToAddresses": 1
- "mail.setUseSignature": 1
- "main": 2
- "merg": 2
- "merged": 6
- "merged.add": 2
- "mergex": 2
- "n": 2
- "name": 1
- "negate": 1
- "new": 57
- "not": 3
- "null": 89
- "obj": 3
- "objectArray": 17
- "objectArray.size": 6
- "objectToString": 1
- "objects": 3
- "objects.size": 1
- "one": 2
- "other": 2
- "param": 2
- "pivot": 14
- "pluck": 1
- "plucked": 3
- "pr": 1
- "private": 10
- "prs": 8
- "public": 7
- "qsort": 18
- "r": 2
- "recipients": 11
- "recipients.size": 1
- "ret": 1
- "return": 104
- "returnList": 11
- "returnList.add": 8
- "returnValue": 22
- "returnValue.add": 3
- "reverse": 2
- "sObj": 4
- "sObjects": 1
- "saved": 1
- "see": 2
- "sendEmail": 4
- "sendEmailWithStandardAttachments": 3
- "sendHTMLEmail": 1
- "sendTextEmail": 1
- "size": 2
- "sortAsc": 24
- "specifying": 1
- "split": 5
- "split.size": 2
- "splitAndFilterAcceptLanguageHeader": 2
- "springfield": 2
- "startIndex": 9
- "static": 80
- "stdAttachments": 4
- "str": 10
- "str.split": 1
- "str.toLowerCase": 1
- "str.toUpperCase": 1
- "str.trim": 3
- "strToBoolean": 1
- "string": 2
- "strings": 3
- "strings.add": 1
- "strs": 9
- "strs.size": 3
- "subset": 6
- "test_TwilioAPI": 1
- "textBody": 2
- "the": 2
- "theList": 72
- "theList.size": 2
- "throw": 6
- "tmp": 6
- "to": 3
- "toBoolean": 2
- "toBooleanDefaultIfNull": 1
- "toInteger": 1
- "toString": 3
- "toStringYN": 1
- "toStringYesNo": 1
- "token": 6
- "token.contains": 1
- "token.indexOf": 1
- "token.substring": 1
- "tokens": 3
- "translatedLanguageNames": 1
- "translatedLanguageNames.containsKey": 1
- "translatedLanguageNames.get": 2
- "trim": 1
- "true": 12
- "trueString": 2
- "trueValue": 2
- "twilioCfg": 7
- "twilioCfg.AccountSid__c": 3
- "twilioCfg.AuthToken__c": 3
- "upperCase": 1
- "us": 2
- "useHTML": 6
- "value": 9
- "values.": 1
- "void": 8
- "while": 8
- "xor": 1
- "{": 214
- "||": 12
- "}": 214
- "AppleScript":
- "(": 8
- ")": 8
- "-": 8
- ".0": 2
- ".1": 2
- "/": 4
- "AppleScript": 2
- "Events": 6
- "Finder": 2
- "Safari": 2
- "System": 6
- "delay": 2
- "delimiters": 2
- "desktopTop": 2
- "drawer": 2
- "end": 6
- "error": 2
- "h": 4
- "item": 2
- "myFrontMost": 2
- "of": 8
- "on": 2
- "position": 2
- "process": 2
- "s": 2
- "screen.availHeight": 2
- "screen.availWidth": 2
- "screen_height": 2
- "screen_width": 2
- "set": 14
- "size": 4
- "tell": 6
- "text": 2
- "to": 14
- "try": 4
- "w": 6
- "window": 6
- "windowHeight": 6
- "windowWidth": 6
- "{": 12
- "}": 12
- "Arduino":
- "(": 4
- ")": 4
- ";": 2
- "Serial.begin": 1
- "Serial.print": 1
- "loop": 1
- "setup": 1
- "void": 2
- "{": 2
- "}": 2
- "AutoHotkey":
- "Hello": 1
- "MsgBox": 1
- "World": 1
- "C":
- "#": 16
- "#define": 53
- "#else": 11
- "#endif": 43
- "#if": 17
- "#ifdef": 17
- "#ifndef": 9
- "#include": 112
- "#n": 1
- "#string": 1
- "#undef": 5
- "%": 2
- "&": 285
- "&&": 189
- "(": 2896
- "(*": 16
- ")": 2908
- "*": 63
- "*)": 16
- "**": 4
- "***argv": 2
- "***tail": 1
- "**argv": 6
- "**column_data": 1
- "**commit_graft": 1
- "**commit_list_append": 2
- "**diff": 4
- "**diff_ptr": 1
- "**encoding_p": 1
- "**environ": 1
- "**list": 5
- "**msg_p": 2
- "**next": 2
- "**orig_argv": 1
- "**pathspec": 1
- "**pptr": 1
- "**stack": 1
- "**subject": 2
- "**twos": 1
- "*/": 568
- "*1000000": 1
- "*1024": 4
- "*1024*256": 1
- "*1024*32": 1
- "*1024*64": 1
- "*1024*8": 1
- "*1024LL": 1
- "*16": 2
- "*24": 1
- "*60": 1
- "*REDIS_EXPIRELOOKUPS_TIME_PERC/REDIS_HZ/100": 1
- "*_entry": 1
- "*_param": 1
- "*a": 9
- "*active_writer": 1
- "*after_subject": 1
- "*arg": 1
- "*argc": 1
- "*argcp": 4
- "*argv": 6
- "*argv0": 1
- "*author": 2
- "*b": 6
- "*blob_type": 2
- "*body_mark": 1
- "*buf": 9
- "*buffer": 6
- "*bufptr": 1
- "*c": 15
- "*cache": 4
- "*cell_work": 1
- "*cfg": 2
- "*check_commit": 1
- "*clientData": 1
- "*cmd": 5
- "*col_data": 1
- "*column_data": 1
- "*columns": 2
- "*commandTable": 1
- "*commit": 10
- "*commit_buffer": 2
- "*commit_list_get_next": 1
- "*commit_list_insert": 1
- "*commit_list_insert_by_date": 1
- "*commit_type": 2
- "*configfile": 1
- "*const": 4
- "*context": 1
- "*ctx": 5
- "*curtag": 2
- "*d": 1
- "*da": 1
- "*data": 11
- "*dateptr": 1
- "*db": 3
- "*de": 2
- "*delta": 6
- "*desc": 1
- "*description": 1
- "*dict": 2
- "*diff": 8
- "*diff_delta__alloc": 1
- "*diff_delta__dup": 1
- "*diff_delta__merge_like_cgit": 1
- "*diff_prefix_from_pathspec": 1
- "*diff_ptr": 2
- "*diff_strdup_prefix": 1
- "*doc": 2
- "*dup": 1
- "*encoding": 2
- "*entry": 2
- "*envchanged": 1
- "*eol": 1
- "*eventLoop": 2
- "*extra": 1
- "*f": 2
- "*fmt": 2
- "*format": 1
- "*format_subject": 1
- "*fp": 3
- "*from": 1
- "*get_merge_bases": 1
- "*get_merge_bases_many": 1
- "*get_merge_parent": 1
- "*get_octopus_merge_bases": 1
- "*get_shallow_commits": 1
- "*git_cache_get": 1
- "*git_cache_try_store": 1
- "*git_diff_list_alloc": 1
- "*git_hash_new_ctx": 1
- "*graft": 3
- "*hcpu": 3
- "*head": 1
- "*header_field_mark": 1
- "*header_value_mark": 1
- "*heads": 2
- "*http_errno_description": 1
- "*http_errno_name": 1
- "*http_method_str": 1
- "*idle": 1
- "*in": 1
- "*item": 10
- "*key": 5
- "*key1": 4
- "*key2": 4
- "*keyobj": 2
- "*l": 1
- "*line": 1
- "*line_separator": 1
- "*link": 1
- "*list": 2
- "*ln": 3
- "*logmsg_reencode": 1
- "*lookup_blob": 2
- "*lookup_commit": 2
- "*lookup_commit_graft": 1
- "*lookup_commit_or_die": 2
- "*lookup_commit_reference": 2
- "*lookup_commit_reference_by_name": 2
- "*lookup_commit_reference_gently": 2
- "*match": 3
- "*matcher": 1
- "*md": 1
- "*message": 1
- "*method_strings": 1
- "*msg": 6
- "*n": 1
- "*name": 6
- "*nb": 3
- "*new": 1
- "*new_entry": 1
- "*new_iter": 2
- "*new_oid": 1
- "*new_parent": 2
- "*new_tree": 1
- "*next": 6
- "*nitem": 2
- "*node": 2
- "*nr_calls": 1
- "*o": 4
- "*o1": 2
- "*o2": 2
- "*ob": 3
- "*obj": 5
- "*oid": 2
- "*oitem": 2
- "*old_entry": 1
- "*old_iter": 2
- "*old_tree": 3
- "*one": 1
- "*onto": 1
- "*opts": 6
- "*out": 3
- "*output_encoding": 2
- "*p": 9
- "*param": 1
- "*parents": 4
- "*parser": 9
- "*patch_mode": 1
- "*path": 2
- "*pathspec": 2
- "*pattern": 1
- "*pgdat": 1
- "*pool": 3
- "*pop_commit": 1
- "*pop_most_recent_commit": 1
- "*pp": 4
- "*prefix": 7
- "*privdata": 8
- "*process": 1
- "*ptr": 1
- "*read_commit_extra_header_lines": 1
- "*read_commit_extra_headers": 1
- "*read_graft_line": 1
- "*reduce_heads": 1
- "*reencode_commit_message": 1
- "*ref_name": 2
- "*reflog_info": 1
- "*repo": 7
- "*res": 2
- "*result": 1
- "*ret": 2
- "*rev1": 1
- "*rev2": 1
- "*revision": 1
- "*rndr": 4
- "*row_work": 1
- "*s": 1
- "*sb": 7
- "*scan": 2
- "*section": 2
- "*server.dbnum": 1
- "*settings": 2
- "*sha1": 16
- "*sign_commit": 2
- "*signature": 1
- "*slave": 2
- "*sp": 1
- "*src": 3
- "*state": 1
- "*str": 1
- "*sub": 1
- "*subject": 1
- "*swap": 1
- "*t": 1
- "*tail": 2
- "*temp": 1
- "*text": 1
- "*title": 1
- "*tmp": 1
- "*tree": 3
- "*u": 2
- "*url_mark": 1
- "*use_noid": 1
- "*util": 1
- "*v": 3
- "*val": 4
- "*value": 3
- "*var": 1
- "*vec": 1
- "*ver_major": 2
- "*ver_minor": 2
- "*ver_revision": 2
- "*w": 1
- "*what": 1
- "+": 284
- "-": 1279
- "-}": 1
- "...": 1
- ".0": 1
- ".0/R_Zero": 2
- ".active_writer": 1
- ".asize": 2
- ".blocking_keys": 1
- ".data": 1
- ".description": 1
- ".dict": 9
- ".expires": 8
- ".hard_limit_bytes": 3
- ".hcpu": 1
- ".id": 1
- ".item": 2
- ".len": 3
- ".lock": 1
- ".mod": 1
- ".name": 1
- ".off": 2
- ".refcount": 1
- ".size": 2
- ".soft_limit_bytes": 3
- ".soft_limit_seconds": 3
- ".watched_keys": 1
- "/": 4
- "/*": 568
- "/1000": 1
- "/1000000": 2
- "/REDIS_HZ": 1
- "/server.loading_loaded_bytes": 1
- "/sizeof": 4
- "0": 1
- "0x20": 1
- "0x80": 1
- "1": 1
- "45": 1
- "46": 1
- "47": 1
- "48": 1
- "5": 1
- "7": 1
- "9": 1
- ";": 2808
- "<": 140
- "<<": 15
- "<=>": 7
- "<arpa/inet.h>": 1
- "<assert.h>": 5
- "<ctype.h>": 3
- "<errno.h>": 2
- "<fcntl.h>": 2
- "<float.h>": 1
- "<limits.h>": 2
- "<linux/bug.h>": 1
- "<linux/cpu.h>": 1
- "<linux/export.h>": 1
- "<linux/gfp.h>": 1
- "<linux/init.h>": 1
- "<linux/kthread.h>": 1
- "<linux/mutex.h>": 1
- "<linux/notifier.h>": 1
- "<linux/oom.h>": 1
- "<linux/proc_fs.h>": 1
- "<linux/rcupdate.h>": 1
- "<linux/sched.h>": 1
- "<linux/smp.h>": 1
- "<linux/stop_machine.h>": 1
- "<linux/suspend.h>": 1
- "<linux/unistd.h>": 1
- "<math.h>": 1
- "<poll.h>": 1
- "<signal.h>": 1
- "<stdarg.h>": 1
- "<stddef.h>": 1
- "<stdint.h>": 1
- "<stdio.h>": 4
- "<stdlib.h>": 2
- "<string.h>": 3
- "<sys/resource.h>": 2
- "<sys/stat.h>": 1
- "<sys/time.h>": 1
- "<sys/types.h>": 1
- "<sys/uio.h>": 1
- "<sys/utsname.h>": 1
- "<sys/wait.h>": 2
- "<time.h>": 1
- "<unistd.h>": 1
- "AE_ERR": 2
- "AE_READABLE": 2
- "AF_UNIX": 2
- "ANET_ERR": 2
- "AOF_FSYNC_EVERYSEC": 1
- "ARRAY_SIZE": 1
- "BITS_PER_LONG": 2
- "BITS_TO_LONGS": 1
- "BLOB_H": 2
- "BUFFER_BLOCK": 5
- "BUFFER_SPAN": 9
- "BUG_ON": 4
- "CALLBACK_DATA": 10
- "CALLBACK_DATA_": 4
- "CALLBACK_DATA_NOADVANCE": 6
- "CALLBACK_NOTIFY": 10
- "CALLBACK_NOTIFY_": 3
- "CALLBACK_NOTIFY_NOADVANCE": 2
- "CB_body": 1
- "CB_header_field": 1
- "CB_header_value": 1
- "CB_headers_complete": 1
- "CB_message_begin": 1
- "CB_message_complete": 1
- "CB_url": 1
- "CHECKOUT": 2
- "CHUNKED": 4
- "CLOSE": 4
- "CLOSED_CONNECTION": 1
- "CMIT_FMT_DEFAULT": 1
- "CMIT_FMT_EMAIL": 1
- "CMIT_FMT_FULL": 1
- "CMIT_FMT_FULLER": 1
- "CMIT_FMT_MEDIUM": 2
- "CMIT_FMT_ONELINE": 1
- "CMIT_FMT_RAW": 1
- "CMIT_FMT_SHORT": 1
- "CMIT_FMT_UNSPECIFIED": 1
- "CMIT_FMT_USERFORMAT": 1
- "COMMIT_H": 2
- "CONFIG_HOTPLUG_CPU": 2
- "CONFIG_IA64": 1
- "CONFIG_INIT_ALL_POSSIBLE": 1
- "CONFIG_MEMORY_HOTPLUG": 2
- "CONFIG_NR_CPUS": 5
- "CONFIG_PM_SLEEP_SMP": 2
- "CONFIG_SMP": 1
- "CONNECT": 2
- "CONNECTION": 4
- "CONTENT_LENGTH": 4
- "COPY": 2
- "COVERAGE_TEST": 1
- "CPU_BITS_ALL": 2
- "CPU_DEAD": 1
- "CPU_DOWN_FAILED": 2
- "CPU_DOWN_PREPARE": 1
- "CPU_DYING": 1
- "CPU_ONLINE": 1
- "CPU_POST_DEAD": 1
- "CPU_STARTING": 1
- "CPU_STARTING_FROZEN": 1
- "CPU_TASKS_FROZEN": 2
- "CPU_UP_CANCELED": 1
- "CPU_UP_PREPARE": 1
- "CR": 18
- "Check_Type": 2
- "DECLARE_BITMAP": 6
- "DEFINE_MUTEX": 1
- "DELETE": 2
- "DICT_HT_INITIAL_SIZE": 2
- "DICT_NOTUSED": 6
- "DIFF_NEW_PREFIX_DEFAULT": 1
- "DIFF_OLD_PREFIX_DEFAULT": 1
- "Does": 1
- "EBUSY": 3
- "EINTR": 1
- "EINVAL": 6
- "ENOENT": 3
- "ENOMEM": 4
- "ENOSYS": 1
- "EOF": 3
- "ER": 4
- "EV_A_": 1
- "EV_CHILD": 1
- "EV_P_": 1
- "EXEC_BIT_MASK": 3
- "EXPORT_SYMBOL": 8
- "EXPORT_SYMBOL_GPL": 4
- "FILE": 3
- "FLEX_ARRAY": 1
- "FNM_NOMATCH": 1
- "FOR": 11
- "FOR##_mark": 7
- "F_CHUNKED": 11
- "F_CONNECTION_CLOSE": 3
- "F_CONNECTION_KEEP_ALIVE": 3
- "F_SKIPBODY": 4
- "F_TRAILING": 3
- "F_UPGRADE": 3
- "GET": 2
- "GFP_KERNEL": 1
- "GITERR_CHECK_ALLOC": 3
- "GITERR_OS": 1
- "GIT_ATTR_FNMATCH_ALLOWSPACE": 1
- "GIT_ATTR_FNMATCH_HASWILD": 1
- "GIT_ATTR_FNMATCH_NEGATIVE": 1
- "GIT_BUF_INIT": 3
- "GIT_DELTA_ADDED": 4
- "GIT_DELTA_DELETED": 7
- "GIT_DELTA_IGNORED": 5
- "GIT_DELTA_MODIFIED": 3
- "GIT_DELTA_UNMODIFIED": 11
- "GIT_DELTA_UNTRACKED": 5
- "GIT_DIFFCAPS_ASSUME_UNCHANGED": 2
- "GIT_DIFFCAPS_HAS_SYMLINKS": 2
- "GIT_DIFFCAPS_TRUST_CTIME": 2
- "GIT_DIFFCAPS_TRUST_EXEC_BIT": 2
- "GIT_DIFFCAPS_USE_DEV": 1
- "GIT_DIFF_FILE_VALID_OID": 4
- "GIT_DIFF_IGNORE_SUBMODULES": 1
- "GIT_DIFF_INCLUDE_IGNORED": 1
- "GIT_DIFF_INCLUDE_UNMODIFIED": 1
- "GIT_DIFF_INCLUDE_UNTRACKED": 1
- "GIT_DIFF_RECURSE_UNTRACKED_DIRS": 1
- "GIT_DIFF_REVERSE": 3
- "GIT_ENOTFOUND": 1
- "GIT_IDXENTRY_INTENT_TO_ADD": 1
- "GIT_IDXENTRY_SKIP_WORKTREE": 1
- "GIT_ITERATOR_WORKDIR": 2
- "GIT_MODE_PERMS_MASK": 1
- "GIT_MODE_TYPE": 3
- "GIT_OBJ_BLOB": 1
- "GIT_SUBMODULE_IGNORE_ALL": 1
- "GIT_UNUSED": 1
- "GIT_VECTOR_GET": 2
- "GIT_VERSION": 1
- "GPERF_CASE_STRNCMP": 1
- "GPERF_DOWNCASE": 1
- "HAVE_BACKTRACE": 1
- "HEAD": 2
- "HEADER_OVERFLOW": 1
- "HELLO_H": 2
- "HPE_##n": 1
- "HPE_CB_##FOR": 2
- "HPE_CB_headers_complete": 1
- "HPE_CLOSED_CONNECTION": 1
- "HPE_HEADER_OVERFLOW": 1
- "HPE_INVALID_CHUNK_SIZE": 2
- "HPE_INVALID_CONSTANT": 3
- "HPE_INVALID_CONTENT_LENGTH": 4
- "HPE_INVALID_EOF_STATE": 1
- "HPE_INVALID_HEADER_TOKEN": 2
- "HPE_INVALID_INTERNAL_STATE": 1
- "HPE_INVALID_METHOD": 4
- "HPE_INVALID_STATUS": 3
- "HPE_INVALID_URL": 4
- "HPE_INVALID_VERSION": 12
- "HPE_LF_EXPECTED": 1
- "HPE_OK": 10
- "HPE_PAUSED": 2
- "HPE_STRICT": 1
- "HPE_UNKNOWN": 1
- "HTTP_##name": 1
- "HTTP_BOTH": 1
- "HTTP_CHECKOUT": 1
- "HTTP_CONNECT": 4
- "HTTP_COPY": 1
- "HTTP_DELETE": 1
- "HTTP_ERRNO_GEN": 3
- "HTTP_ERRNO_MAP": 3
- "HTTP_GET": 1
- "HTTP_HEAD": 2
- "HTTP_LOCK": 1
- "HTTP_MAX_HEADER_SIZE": 2
- "HTTP_MERGE": 1
- "HTTP_METHOD_MAP": 3
- "HTTP_MKACTIVITY": 1
- "HTTP_MKCOL": 2
- "HTTP_MOVE": 1
- "HTTP_MSEARCH": 1
- "HTTP_NOTIFY": 1
- "HTTP_OPTIONS": 1
- "HTTP_PARSER_DEBUG": 4
- "HTTP_PARSER_ERRNO": 10
- "HTTP_PARSER_ERRNO_LINE": 2
- "HTTP_PARSER_STRICT": 5
- "HTTP_PARSER_VERSION_MAJOR": 1
- "HTTP_PARSER_VERSION_MINOR": 1
- "HTTP_PATCH": 1
- "HTTP_POST": 2
- "HTTP_PROPFIND": 2
- "HTTP_PROPPATCH": 1
- "HTTP_PURGE": 1
- "HTTP_PUT": 2
- "HTTP_REPORT": 1
- "HTTP_REQUEST": 7
- "HTTP_RESPONSE": 3
- "HTTP_SEARCH": 1
- "HTTP_STRERROR_GEN": 3
- "HTTP_SUBSCRIBE": 2
- "HTTP_TRACE": 1
- "HTTP_UNLOCK": 2
- "HTTP_UNSUBSCRIBE": 1
- "INVALID_CHUNK_SIZE": 1
- "INVALID_CONSTANT": 1
- "INVALID_CONTENT_LENGTH": 1
- "INVALID_EOF_STATE": 1
- "INVALID_FRAGMENT": 1
- "INVALID_HEADER_TOKEN": 1
- "INVALID_HOST": 1
- "INVALID_INTERNAL_STATE": 1
- "INVALID_METHOD": 1
- "INVALID_PATH": 1
- "INVALID_PORT": 1
- "INVALID_QUERY_STRING": 1
- "INVALID_STATUS": 1
- "INVALID_URL": 1
- "INVALID_VERSION": 1
- "IS_ALPHA": 5
- "IS_ALPHANUM": 3
- "IS_ERR": 1
- "IS_HEX": 2
- "IS_HOST_CHAR": 4
- "IS_NUM": 14
- "IS_URL_CHAR": 6
- "Init_rdiscount": 1
- "KEEP_ALIVE": 4
- "KERN_ERR": 5
- "KERN_INFO": 2
- "KERN_WARNING": 3
- "LEN": 2
- "LF": 21
- "LF_EXPECTED": 1
- "LL*": 1
- "LL*1024*1024": 2
- "LL*1024*1024*1024": 1
- "LOCK": 2
- "LOG_DEBUG": 1
- "LOG_INFO": 1
- "LOG_LOCAL0": 1
- "LOG_NDELAY": 1
- "LOG_NOTICE": 1
- "LOG_NOWAIT": 1
- "LOG_PID": 1
- "LOG_WARNING": 1
- "LOWER": 7
- "LUA_GCCOUNT": 1
- "M": 1
- "MARK": 7
- "MARKDOWN_GROW": 1
- "MASK_DECLARE_1": 3
- "MASK_DECLARE_2": 3
- "MASK_DECLARE_4": 3
- "MASK_DECLARE_8": 9
- "MERGE": 2
- "MIN": 3
- "MKACTIVITY": 2
- "MKCOL": 2
- "MKD_AUTOLINK": 1
- "MKD_LI_END": 1
- "MKD_NOHEADER": 1
- "MKD_NOHTML": 1
- "MKD_NOIMAGE": 1
- "MKD_NOLINKS": 1
- "MKD_NOPANTS": 1
- "MKD_NOTABLES": 1
- "MKD_NO_EXT": 1
- "MKD_SAFELINK": 1
- "MKD_STRICT": 1
- "MKD_TABSTOP": 1
- "MKD_TOC": 1
- "MMIOT": 2
- "MOVE": 2
- "MSEARCH": 1
- "Macros": 1
- "NEED_WORK_TREE": 18
- "NEW_MESSAGE": 6
- "NODE_DATA": 1
- "NOTIFY": 2
- "NOTIFY_DONE": 1
- "NOTIFY_OK": 1
- "NR_CPUS": 2
- "NULL": 281
- "N_": 1
- "OBJ_BLOB": 3
- "OBJ_COMMIT": 5
- "OK": 1
- "OPTIONS": 2
- "O_APPEND": 2
- "O_CREAT": 2
- "O_RDONLY": 1
- "O_RDWR": 2
- "O_WRONLY": 2
- "PARSING_HEADER": 2
- "PATCH": 2
- "PAUSED": 1
- "PM_HIBERNATION_PREPARE": 1
- "PM_POST_HIBERNATION": 1
- "PM_POST_SUSPEND": 1
- "PM_SUSPEND_PREPARE": 1
- "POLLHUP": 1
- "POLLIN": 1
- "POST": 2
- "PPC_SHA1": 1
- "PROPFIND": 2
- "PROPPATCH": 2
- "PROXY_CONNECTION": 4
- "PTR_ERR": 1
- "PURGE": 2
- "PUT": 2
- "Qtrue": 10
- "RAW_NOTIFIER_HEAD": 1
- "REDIS_AOF_OFF": 5
- "REDIS_AOF_ON": 2
- "REDIS_AOF_REWRITE_MIN_SIZE": 1
- "REDIS_AOF_REWRITE_PERC": 1
- "REDIS_BIO_AOF_FSYNC": 1
- "REDIS_BLOCKED": 2
- "REDIS_CALL_FULL": 1
- "REDIS_CLIENT_LIMIT_CLASS_NORMAL": 3
- "REDIS_CLIENT_LIMIT_CLASS_PUBSUB": 3
- "REDIS_CLIENT_LIMIT_CLASS_SLAVE": 3
- "REDIS_CLUSTER_OK": 1
- "REDIS_CMD_DENYOOM": 1
- "REDIS_CMD_WRITE": 2
- "REDIS_DEFAULT_DBNUM": 1
- "REDIS_ENCODING_INT": 4
- "REDIS_ENCODING_RAW": 1
- "REDIS_ERR": 5
- "REDIS_EXPIRELOOKUPS_PER_CRON": 2
- "REDIS_EXPIRELOOKUPS_PER_CRON/4": 1
- "REDIS_HASH_MAX_ZIPLIST_ENTRIES": 1
- "REDIS_HASH_MAX_ZIPLIST_VALUE": 1
- "REDIS_HT_MINFILL": 1
- "REDIS_HZ*10": 1
- "REDIS_LIST_MAX_ZIPLIST_ENTRIES": 1
- "REDIS_LIST_MAX_ZIPLIST_VALUE": 1
- "REDIS_LOG_RAW": 2
- "REDIS_LRU_CLOCK_MAX": 1
- "REDIS_LUA_TIME_LIMIT": 1
- "REDIS_MASTER": 2
- "REDIS_MAXIDLETIME": 1
- "REDIS_MAXMEMORY_ALLKEYS_LRU": 2
- "REDIS_MAXMEMORY_ALLKEYS_RANDOM": 2
- "REDIS_MAXMEMORY_NO_EVICTION": 2
- "REDIS_MAXMEMORY_VOLATILE_LRU": 3
- "REDIS_MAXMEMORY_VOLATILE_RANDOM": 1
- "REDIS_MAXMEMORY_VOLATILE_TTL": 1
- "REDIS_MAX_CLIENTS": 1
- "REDIS_MAX_LOGMSG_LEN": 1
- "REDIS_MAX_QUERYBUF_LEN": 1
- "REDIS_MBULK_BIG_ARG": 1
- "REDIS_MONITOR": 1
- "REDIS_MULTI": 1
- "REDIS_NOTICE": 13
- "REDIS_NOTUSED": 5
- "REDIS_OK": 23
- "REDIS_OPS_SEC_SAMPLES": 2
- "REDIS_REPL_CONNECTED": 3
- "REDIS_REPL_NONE": 1
- "REDIS_REPL_ONLINE": 1
- "REDIS_REPL_PING_SLAVE_PERIOD": 1
- "REDIS_REPL_SEND_BULK": 1
- "REDIS_REPL_SYNCIO_TIMEOUT": 1
- "REDIS_REPL_TIMEOUT": 1
- "REDIS_REPL_TRANSFER": 2
- "REDIS_REPL_WAIT_BGSAVE_END": 1
- "REDIS_REPL_WAIT_BGSAVE_START": 1
- "REDIS_RUN_ID_SIZE": 2
- "REDIS_SERVERPORT": 1
- "REDIS_SET_MAX_INTSET_ENTRIES": 1
- "REDIS_SHARED_BULKHDR_LEN": 1
- "REDIS_SHARED_INTEGERS": 1
- "REDIS_SHARED_SELECT_CMDS": 1
- "REDIS_SHUTDOWN_NOSAVE": 1
- "REDIS_SHUTDOWN_SAVE": 1
- "REDIS_SLAVE": 3
- "REDIS_SLOWLOG_LOG_SLOWER_THAN": 1
- "REDIS_SLOWLOG_MAX_LEN": 1
- "REDIS_STRING": 31
- "REDIS_UNBLOCKED": 1
- "REDIS_VERBOSE": 3
- "REDIS_VERSION": 4
- "REDIS_WARNING": 19
- "REDIS_ZSET_MAX_ZIPLIST_ENTRIES": 1
- "REDIS_ZSET_MAX_ZIPLIST_VALUE": 1
- "REF_TABLE_SIZE": 1
- "REPORT": 2
- "RLIMIT_NOFILE": 2
- "RSTRING_LEN": 2
- "RSTRING_PTR": 2
- "RUN_CLEAN_ON_EXIT": 1
- "RUN_SETUP": 81
- "RUN_SETUP_GENTLY": 16
- "RUN_SILENT_EXEC_FAILURE": 1
- "RUSAGE_CHILDREN": 1
- "RUSAGE_SELF": 1
- "R_Nan": 2
- "R_NegInf": 2
- "R_PosInf": 2
- "R_Zero": 2
- "R_Zero/R_Zero": 1
- "SA_NODEFER": 1
- "SA_RESETHAND": 1
- "SA_SIGINFO": 1
- "SEARCH": 3
- "SET_ERRNO": 47
- "SHA1_Final": 3
- "SHA1_Init": 4
- "SHA1_Update": 3
- "SHA_CTX": 3
- "SIGBUS": 1
- "SIGFPE": 1
- "SIGHUP": 1
- "SIGILL": 1
- "SIGKILL": 2
- "SIGPIPE": 1
- "SIGSEGV": 1
- "SIGTERM": 1
- "SIG_IGN": 2
- "SOCK_CLOEXEC": 1
- "SOCK_NONBLOCK": 2
- "SOCK_STREAM": 2
- "SPAWN_WAIT_EXEC": 5
- "STDERR_FILENO": 2
- "STDIN_FILENO": 1
- "STDOUT_FILENO": 2
- "STRBUF_INIT": 1
- "STRICT": 1
- "STRICT_CHECK": 15
- "STRIP_EXTENSION": 1
- "SUBSCRIBE": 2
- "SUNDOWN_VER_MAJOR": 1
- "SUNDOWN_VER_MINOR": 1
- "SUNDOWN_VER_REVISION": 1
- "S_ISDIR": 1
- "S_ISFIFO": 1
- "S_ISGITLINK": 1
- "S_ISLNK": 2
- "S_ISREG": 1
- "S_ISSOCK": 1
- "T": 3
- "TARGET_OS_IPHONE": 1
- "TASK_RUNNING": 1
- "TASK_UNINTERRUPTIBLE": 1
- "TOKEN": 4
- "TRACE": 2
- "TRANSFER_ENCODING": 4
- "T_STRING": 2
- "UF_FRAGMENT": 2
- "UF_HOST": 3
- "UF_MAX": 3
- "UF_PATH": 2
- "UF_PORT": 5
- "UF_QUERY": 2
- "UF_SCHEMA": 2
- "UL": 1
- "ULLONG_MAX": 10
- "UNKNOWN": 1
- "UNLOCK": 2
- "UNSUBSCRIBE": 2
- "UPGRADE": 4
- "USE_PAGER": 3
- "UTF8_BOM": 1
- "UV_CREATE_PIPE": 4
- "UV_IGNORE": 2
- "UV_INHERIT_FD": 3
- "UV_INHERIT_STREAM": 2
- "UV_NAMED_PIPE": 2
- "UV_PROCESS": 1
- "UV_PROCESS_DETACHED": 2
- "UV_PROCESS_SETGID": 2
- "UV_PROCESS_SETUID": 2
- "UV_PROCESS_WINDOWS_VERBATIM_ARGUMENTS": 1
- "UV_STREAM_READABLE": 2
- "UV_STREAM_WRITABLE": 2
- "UV__F_NONBLOCK": 5
- "UV__O_CLOEXEC": 1
- "UV__O_NONBLOCK": 1
- "VALUE": 13
- "WARN_ON": 1
- "WEXITSTATUS": 2
- "WIFEXITED": 1
- "WIFSIGNALED": 2
- "WNOHANG": 1
- "WTERMSIG": 2
- "XX": 63
- "YA_FREE": 2
- "YA_MALLOC": 1
- "ZMALLOC_LIB": 2
- "_": 3
- "_MSC_VER": 2
- "_WIN32": 2
- "__APPLE__": 2
- "__GFP_ZERO": 1
- "__GNUC_MINOR__": 1
- "__GNUC_PATCHLEVEL__": 1
- "__GNUC__": 2
- "__LINE__": 1
- "__MINGW32__": 1
- "__MUTEX_INITIALIZER": 1
- "__cplusplus": 2
- "__cpu_die": 1
- "__cpu_disable": 1
- "__cpu_notify": 6
- "__cpu_up": 1
- "__cpuinit": 3
- "__func__": 2
- "__init": 2
- "__int16": 2
- "__int32": 2
- "__int64": 2
- "__int8": 2
- "__linux__": 3
- "__raw_notifier_call_chain": 1
- "__read_mostly": 5
- "__ref": 6
- "__set_current_state": 1
- "__stop_machine": 1
- "__weak": 4
- "_cpu_down": 3
- "_cpu_up": 3
- "_entry": 1
- "_exit": 6
- "_isspace": 3
- "_ms_": 1
- "_param": 1
- "_strnicmp": 1
- "_zonerefs": 1
- "a": 13
- "a_date": 2
- "abbrev": 1
- "abort": 1
- "acceptTcpHandler": 1
- "acceptUnixHandler": 1
- "act": 6
- "act.sa_flags": 2
- "act.sa_handler": 1
- "act.sa_mask": 2
- "act.sa_sigaction": 1
- "action": 2
- "active": 2
- "activeExpireCycle": 2
- "addReply": 13
- "addReplyBulk": 1
- "addReplyBulkLongLong": 2
- "addReplyError": 6
- "addReplyErrorFormat": 1
- "addReplyMultiBulkLen": 1
- "addReplySds": 3
- "adjustOpenFilesLimit": 2
- "aeCreateEventLoop": 1
- "aeCreateFileEvent": 2
- "aeCreateTimeEvent": 1
- "aeDeleteEventLoop": 1
- "aeEventLoop": 2
- "aeGetApiName": 1
- "aeMain": 1
- "aeSetBeforeSleepProc": 1
- "afs": 8
- "afsBuffer": 3
- "alias_command": 4
- "alloc": 6
- "alloc_blob_node": 1
- "alloc_commit_node": 1
- "alloc_cpumask_var": 1
- "alloc_frozen_cpus": 2
- "alloc_nr": 1
- "allowComments": 4
- "allsections": 12
- "an": 1
- "anetPeerToString": 1
- "anetTcpServer": 1
- "anetUnixServer": 1
- "aofRewriteBufferReset": 1
- "aofRewriteBufferSize": 2
- "aof_fsync": 1
- "ap": 4
- "appendCommand": 1
- "appendServerSaveParams": 3
- "append_merge_tag_headers": 1
- "arch_disable_nonboot_cpus_begin": 2
- "arch_disable_nonboot_cpus_end": 2
- "arch_enable_nonboot_cpus_begin": 2
- "arch_enable_nonboot_cpus_end": 2
- "argc": 26
- "argcp": 2
- "argv": 54
- "argv0": 2
- "arity": 3
- "ascii_logo": 1
- "ask": 3
- "askingCommand": 1
- "assert": 41
- "atoi": 3
- "authCommand": 3
- "authenticated": 3
- "b": 23
- "b_date": 3
- "backgroundRewriteDoneHandler": 1
- "backgroundSaveDoneHandler": 1
- "bad": 1
- "base": 1
- "beforeSleep": 2
- "beg": 10
- "bestkey": 9
- "bestval": 5
- "bgrewriteaofCommand": 1
- "bgsaveCommand": 1
- "bib": 3
- "bioInit": 1
- "bioPendingJobsOfType": 1
- "bitcountCommand": 1
- "bitopCommand": 1
- "blob": 6
- "block_lines": 3
- "blpopCommand": 1
- "body": 6
- "body_mark": 2
- "bogus": 1
- "bool": 6
- "bpop.timeout": 2
- "break": 182
- "brpopCommand": 1
- "brpoplpushCommand": 1
- "buf": 56
- "buffer": 9
- "bufgrow": 1
- "buflen": 3
- "bufptr": 12
- "bufputc": 2
- "bufrelease": 3
- "build_all_zonelists": 1
- "bysignal": 4
- "bytesConsumed": 2
- "bytesToHuman": 3
- "c": 192
- "c.cmd": 1
- "c.value": 3
- "c.want": 2
- "c_ru": 2
- "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
- "cache": 26
- "call": 1
- "callbacks": 3
- "calloc": 1
- "calls": 4
- "case": 217
- "cb.blockhtml": 6
- "cb.doc_footer": 2
- "cb.doc_header": 2
- "cb.table_cell": 3
- "cb.table_row": 2
- "cell_end": 6
- "cell_start": 5
- "cell_work": 3
- "cfg": 6
- "ch": 145
- "changes": 2
- "char": 192
- "char*": 7
- "char**": 1
- "character": 1
- "chdir": 2
- "checkUTF8": 1
- "check_commit": 2
- "check_for_tasks": 2
- "check_pager_config": 3
- "child_fd": 3
- "child_watcher": 5
- "child_watcher.data": 1
- "classes": 1
- "cleanup": 2
- "clear_commit_marks": 1
- "clear_commit_marks_for_object_array": 1
- "clear_tasks_mm_cpumask": 1
- "clientCommand": 1
- "clientData": 1
- "clientsCron": 2
- "clientsCronHandleTimeout": 2
- "clientsCronResizeQueryBuffer": 2
- "close": 13
- "close_fd": 2
- "clusterCommand": 1
- "clusterCron": 1
- "clusterInit": 1
- "clusterNode": 1
- "clusterNodesDictType": 1
- "cmd": 46
- "cmd.buf": 1
- "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_struct": 4
- "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
- "cmit_fmt": 3
- "cmp": 9
- "col": 9
- "col_data": 2
- "columns": 3
- "comm": 1
- "commandTableDictType": 2
- "commands": 3
- "commit": 59
- "commit_buffer": 1
- "commit_extra_header": 7
- "commit_graft": 13
- "commit_graft_alloc": 4
- "commit_graft_nr": 5
- "commit_graft_pos": 2
- "commit_list": 35
- "commit_list_count": 1
- "commit_list_insert": 2
- "commit_list_set_next": 1
- "commit_list_sort_by_date": 2
- "commit_pager_choice": 4
- "commit_tree": 1
- "commit_tree_extended": 1
- "cond": 1
- "config": 4
- "configCommand": 1
- "config_bool": 5
- "configfile": 2
- "const": 204
- "container": 17
- "content_length": 27
- "continue": 19
- "core_initcall": 2
- "count": 6
- "counters.process_init": 1
- "cpu": 57
- "cpu_active_bits": 4
- "cpu_active_mask": 2
- "cpu_add_remove_lock": 3
- "cpu_all_bits": 2
- "cpu_bit_bitmap": 2
- "cpu_chain": 4
- "cpu_down": 2
- "cpu_hotplug": 1
- "cpu_hotplug.active_writer": 6
- "cpu_hotplug.lock": 8
- "cpu_hotplug.refcount": 3
- "cpu_hotplug_begin": 4
- "cpu_hotplug_disable_before_freeze": 2
- "cpu_hotplug_disabled": 7
- "cpu_hotplug_done": 4
- "cpu_hotplug_enable_after_thaw": 2
- "cpu_hotplug_pm_callback": 2
- "cpu_hotplug_pm_sync_init": 2
- "cpu_maps_update_begin": 9
- "cpu_maps_update_done": 9
- "cpu_notify": 5
- "cpu_notify_nofail": 4
- "cpu_online": 5
- "cpu_online_bits": 5
- "cpu_online_mask": 3
- "cpu_possible": 1
- "cpu_possible_bits": 6
- "cpu_possible_mask": 2
- "cpu_present": 1
- "cpu_present_bits": 5
- "cpu_present_mask": 2
- "cpu_relax": 1
- "cpu_to_node": 1
- "cpu_up": 2
- "cpumask": 7
- "cpumask_clear": 2
- "cpumask_clear_cpu": 5
- "cpumask_copy": 3
- "cpumask_empty": 1
- "cpumask_first": 1
- "cpumask_of": 1
- "cpumask_set_cpu": 5
- "cpumask_test_cpu": 1
- "cpumask_var_t": 1
- "createObject": 31
- "createPidFile": 2
- "createSharedObjects": 2
- "createStringObject": 11
- "create_object": 2
- "ctime.seconds": 2
- "ctx": 14
- "current": 3
- "curtag": 8
- "d": 12
- "da": 2
- "daemonize": 2
- "data": 67
- "data.fd": 1
- "data.stream": 7
- "date": 4
- "date_mode": 2
- "date_mode_explicit": 1
- "dateptr": 2
- "db": 10
- "dbDelete": 2
- "dbDictType": 2
- "dbsizeCommand": 1
- "de": 12
- "debugCommand": 1
- "decodeBuf": 2
- "decoration": 1
- "decrCommand": 1
- "decrRefCount": 6
- "decrbyCommand": 1
- "default": 22
- "define": 14
- "defined": 7
- "defsections": 11
- "defvalue": 2
- "delCommand": 1
- "delta": 54
- "delta_type": 8
- "deltas": 8
- "deltas.contents": 1
- "deltas.length": 4
- "depends": 1
- "depth": 1
- "deref_tag": 1
- "desc": 5
- "dev": 2
- "dict": 11
- "dictCreate": 6
- "dictDisableResize": 1
- "dictEnableResize": 1
- "dictEncObjHash": 4
- "dictEncObjKeyCompare": 4
- "dictEntry": 2
- "dictFind": 1
- "dictGenCaseHashFunction": 1
- "dictGenHashFunction": 5
- "dictGetKey": 4
- "dictGetRandomKey": 4
- "dictGetSignedIntegerVal": 1
- "dictGetVal": 2
- "dictIsRehashing": 2
- "dictListDestructor": 2
- "dictObjHash": 2
- "dictObjKeyCompare": 2
- "dictRedisObjectDestructor": 7
- "dictRehashMilliseconds": 2
- "dictResize": 2
- "dictSdsCaseHash": 2
- "dictSdsDestructor": 4
- "dictSdsHash": 4
- "dictSdsKeyCaseCompare": 2
- "dictSdsKeyCompare": 6
- "dictSetHashFunctionSeed": 1
- "dictSize": 10
- "dictSlots": 3
- "dictType": 8
- "dictVanillaFree": 1
- "die": 5
- "die_errno": 3
- "diff": 84
- "diff_delta__alloc": 2
- "diff_delta__cmp": 3
- "diff_delta__dup": 3
- "diff_delta__from_one": 5
- "diff_delta__from_two": 2
- "diff_delta__merge_like_cgit": 1
- "diff_from_iterators": 5
- "diff_path_matches_pathspec": 3
- "diff_pathspec_is_interesting": 2
- "diff_prefix_from_pathspec": 4
- "diff_strdup_prefix": 2
- "diffcaps": 13
- "disable_nonboot_cpus": 1
- "discardCommand": 2
- "do": 8
- "do_render": 4
- "doc": 6
- "doc_size": 6
- "document": 9
- "done_alias": 4
- "done_help": 3
- "double": 7
- "dumpCommand": 1
- "dup": 15
- "dup2": 4
- "e": 4
- "each_commit_graft_fn": 1
- "echoCommand": 2
- "elapsed": 3
- "elapsed*remaining_bytes": 1
- "else": 120
- "empty_cell": 2
- "enable_nonboot_cpus": 1
- "encoding": 8
- "end": 18
- "end_tag": 4
- "endif": 1
- "entry": 17
- "enum": 29
- "environ": 4
- "err": 38
- "errno": 19
- "error": 71
- "error_lineno": 3
- "estimateObjectIdleTime": 1
- "eta": 4
- "ev": 2
- "ev_child*": 1
- "ev_child_init": 1
- "ev_child_start": 1
- "ev_child_stop": 2
- "evalCommand": 1
- "evalShaCommand": 1
- "eventLoop": 2
- "execCommand": 2
- "execv_dashed_external": 2
- "execvp": 1
- "existsCommand": 1
- "exit": 16
- "exitFromChild": 1
- "exit_cb": 3
- "exit_status": 3
- "exitcode": 3
- "expand_tabs": 1
- "expireCommand": 1
- "expireatCommand": 1
- "expired": 4
- "expires": 3
- "ext": 4
- "extern": 32
- "f": 15
- "fail": 19
- "false": 4
- "fclose": 5
- "fd": 34
- "fds": 20
- "ferror": 1
- "fflush": 2
- "fgets": 1
- "field_data": 5
- "field_set": 5
- "file_size": 6
- "fileno": 1
- "find": 1
- "find_block_tag": 1
- "find_commit_subject": 2
- "find_lock_task_mm": 1
- "first_cpu": 3
- "firstkey": 1
- "fl": 8
- "flags": 86
- "flags_extended": 2
- "float": 11
- "flushAppendOnlyFile": 2
- "flushSlavesOutputBuffers": 1
- "flushallCommand": 1
- "flushdbCommand": 1
- "fmt": 4
- "fn": 1
- "fopen": 3
- "for": 37
- "for_each_commit_graft": 1
- "for_each_cpu": 1
- "for_each_online_cpu": 1
- "for_each_process": 2
- "fork": 2
- "format_commit_message": 1
- "fp": 13
- "fprintf": 18
- "free": 8
- "freeClient": 1
- "freeClientsInAsyncFreeQueue": 1
- "freeMemoryIfNeeded": 2
- "freePubsubPattern": 1
- "free_commit_extra_headers": 1
- "free_commit_list": 1
- "free_link_refs": 1
- "free_obj": 4
- "free_ptr": 2
- "from": 5
- "frozen_cpus": 9
- "fstat": 1
- "full_path": 3
- "full_path.ptr": 2
- "genRedisInfoString": 2
- "getClientOutputBufferMemoryUsage": 1
- "getClientsMaxBuffers": 1
- "getCommand": 1
- "getDecodedObject": 3
- "getNodeByQuery": 1
- "getOperationsPerSecond": 2
- "getRandomHexChars": 1
- "get_commit_format": 1
- "get_online_cpus": 2
- "get_sha1": 1
- "get_sha1_hex": 2
- "getbitCommand": 1
- "getkeys_proc": 1
- "getpid": 7
- "getrangeCommand": 2
- "getrlimit": 1
- "getrusage": 2
- "getsetCommand": 1
- "gettimeofday": 4
- "gid": 2
- "git__calloc": 3
- "git__free": 15
- "git__is_sizet": 1
- "git__iswildcard": 1
- "git__malloc": 3
- "git__prefixcmp": 2
- "git__size_t_powerof2": 1
- "git_attr_fnmatch": 4
- "git_attr_fnmatch__parse": 1
- "git_buf": 3
- "git_buf_common_prefix": 1
- "git_buf_cstr": 1
- "git_buf_detach": 1
- "git_buf_free": 4
- "git_buf_joinpath": 1
- "git_buf_len": 1
- "git_buf_sets": 1
- "git_buf_truncate": 1
- "git_buf_vec": 1
- "git_cache": 4
- "git_cache_free": 1
- "git_cache_init": 1
- "git_cached_obj": 5
- "git_cached_obj_decref": 3
- "git_cached_obj_freeptr": 1
- "git_cached_obj_incref": 3
- "git_config": 3
- "git_config_get_bool": 1
- "git_config_maybe_bool": 1
- "git_delta_t": 5
- "git_diff_delta": 19
- "git_diff_index_to_tree": 1
- "git_diff_list": 17
- "git_diff_list_alloc": 1
- "git_diff_list_free": 3
- "git_diff_merge": 1
- "git_diff_options": 7
- "git_diff_tree_to_tree": 1
- "git_diff_workdir_to_index": 1
- "git_diff_workdir_to_tree": 1
- "git_extract_argv0_path": 1
- "git_futils_open_ro": 1
- "git_hash_buf": 1
- "git_hash_ctx": 7
- "git_hash_final": 1
- "git_hash_free_ctx": 1
- "git_hash_init": 1
- "git_hash_update": 1
- "git_hash_vec": 1
- "git_index_entry": 8
- "git_iterator": 8
- "git_iterator_advance": 5
- "git_iterator_advance_into_directory": 1
- "git_iterator_current": 2
- "git_iterator_current_is_ignored": 2
- "git_iterator_for_index_range": 2
- "git_iterator_for_tree_range": 4
- "git_iterator_for_workdir_range": 2
- "git_iterator_free": 4
- "git_more_info_string": 2
- "git_mutex_init": 1
- "git_mutex_lock": 2
- "git_mutex_unlock": 2
- "git_odb__hashfd": 1
- "git_odb__hashlink": 1
- "git_oid": 7
- "git_oid_cmp": 6
- "git_oid_cpy": 5
- "git_oid_iszero": 2
- "git_pool": 4
- "git_pool_clear": 2
- "git_pool_init": 2
- "git_pool_strcat": 1
- "git_pool_strdup": 3
- "git_pool_strndup": 1
- "git_pool_swap": 1
- "git_repository": 7
- "git_repository_config__weakptr": 1
- "git_repository_workdir": 1
- "git_setup_gettext": 1
- "git_startup_info": 2
- "git_strarray": 2
- "git_submodule": 1
- "git_submodule_lookup": 1
- "git_tree": 4
- "git_usage_string": 2
- "git_vector": 1
- "git_vector_foreach": 4
- "git_vector_free": 3
- "git_vector_init": 3
- "git_vector_insert": 4
- "git_vector_swap": 1
- "git_version_string": 1
- "giterr_clear": 1
- "giterr_set": 1
- "goto": 85
- "gperf_case_strncmp": 1
- "graft": 10
- "grafts_replace_parents": 1
- "growth": 3
- "h_C": 3
- "h_CO": 3
- "h_CON": 3
- "h_connection": 6
- "h_connection_close": 4
- "h_connection_keep_alive": 4
- "h_content_length": 5
- "h_general": 23
- "h_matching_connection": 3
- "h_matching_connection_close": 3
- "h_matching_connection_keep_alive": 3
- "h_matching_content_length": 3
- "h_matching_proxy_connection": 3
- "h_matching_transfer_encoding": 3
- "h_matching_transfer_encoding_chunked": 3
- "h_matching_upgrade": 3
- "h_transfer_encoding": 5
- "h_transfer_encoding_chunked": 4
- "h_upgrade": 4
- "hand": 28
- "handle": 10
- "handle_alias": 1
- "handle_internal_command": 3
- "handle_options": 2
- "has_non_ascii": 1
- "hash": 12
- "hashDictType": 1
- "hashcmp": 2
- "hashslot": 3
- "have_repository": 1
- "hcpu": 10
- "hdelCommand": 1
- "head": 2
- "header_end": 7
- "header_field": 5
- "header_field_mark": 2
- "header_flag": 3
- "header_state": 42
- "header_states": 1
- "header_value": 6
- "header_value_mark": 2
- "hello": 1
- "help": 4
- "help_unknown_cmd": 1
- "hexistsCommand": 1
- "hgetCommand": 1
- "hgetallCommand": 1
- "hi": 5
- "hincrbyCommand": 1
- "hincrbyfloatCommand": 1
- "hkeysCommand": 1
- "hlenCommand": 1
- "hmem": 3
- "hmgetCommand": 1
- "hmsetCommand": 1
- "hsetCommand": 1
- "hsetnxCommand": 1
- "htNeedsResize": 3
- "htmlblock_end": 3
- "htmlblock_end_tag": 1
- "http_cb": 3
- "http_data_cb": 4
- "http_errno": 11
- "http_errno_description": 1
- "http_errno_name": 1
- "http_major": 11
- "http_message_needs_eof": 4
- "http_method": 4
- "http_method_str": 1
- "http_minor": 11
- "http_parser": 13
- "http_parser_execute": 2
- "http_parser_h": 2
- "http_parser_init": 2
- "http_parser_parse_url": 2
- "http_parser_pause": 2
- "http_parser_settings": 5
- "http_parser_type": 3
- "http_parser_url": 3
- "http_parser_url_fields": 2
- "http_should_keep_alive": 2
- "http_strerror_tab": 7
- "hvalsCommand": 1
- "i": 162
- "id": 7
- "idle": 4
- "idle_cpu": 1
- "idle_thread_get": 1
- "idletime": 2
- "if": 638
- "ignore": 1
- "ignore_dups": 2
- "ignore_prefix": 6
- "in": 1
- "in_merge_bases": 1
- "incrCommand": 1
- "incrbyCommand": 1
- "incrbyfloatCommand": 1
- "incrementallyRehash": 2
- "indegree": 1
- "indent": 1
- "index": 53
- "info": 63
- "infoCommand": 4
- "initServer": 2
- "initServerConfig": 2
- "init_cpu_online": 1
- "init_cpu_possible": 1
- "init_cpu_present": 1
- "inline": 2
- "ino": 2
- "int": 305
- "int*": 2
- "int16_t": 1
- "int32_t": 1
- "int64_t": 1
- "int8_t": 3
- "interactive_add": 1
- "ip": 4
- "ipc": 1
- "is_connect": 4
- "is_descendant_of": 1
- "is_empty": 4
- "is_ref": 1
- "is_repository_shallow": 1
- "item": 24
- "iteration": 3
- "iterations": 4
- "j": 119
- "jsonText": 4
- "jsonTextLen": 4
- "k": 7
- "key": 9
- "key1": 5
- "key2": 5
- "keylistDictType": 4
- "keyobj": 6
- "keyptrDictType": 2
- "keys": 4
- "keysCommand": 1
- "keys_freed": 3
- "kill": 4
- "l1": 4
- "l2": 3
- "lastinteraction": 3
- "lastsaveCommand": 1
- "len": 23
- "length": 2
- "level": 11
- "lexer": 4
- "li": 6
- "lifo": 1
- "likely": 1
- "limit": 3
- "limit.rlim_cur": 2
- "limit.rlim_max": 1
- "lindexCommand": 1
- "link_ref": 2
- "linsertCommand": 1
- "linuxOvercommitMemoryValue": 2
- "linuxOvercommitMemoryWarning": 2
- "list": 1
- "list*": 1
- "listAddNodeTail": 1
- "listCreate": 6
- "listDelNode": 1
- "listFirst": 2
- "listIter": 2
- "listLength": 14
- "listMatchPubsubPattern": 1
- "listNext": 2
- "listNode": 4
- "listNodeValue": 3
- "listRelease": 1
- "listRewind": 2
- "listRotate": 1
- "listSetFreeMethod": 1
- "listSetMatchMethod": 1
- "list_common_cmds_help": 1
- "ll2string": 3
- "llenCommand": 1
- "llist_mergesort": 1
- "ln": 8
- "lo": 6
- "loadAppendOnlyFile": 1
- "loadServerConfig": 1
- "localtime": 1
- "lock": 6
- "lol": 3
- "long": 97
- "lookupCommandByCString": 3
- "lookup_commit": 2
- "lookup_commit_graft": 1
- "lookup_commit_reference": 2
- "lookup_commit_reference_gently": 1
- "lookup_object": 2
- "lookup_tree": 1
- "loop": 7
- "loops": 2
- "lpopCommand": 1
- "lpushCommand": 1
- "lpushxCommand": 1
- "lrangeCommand": 1
- "lremCommand": 1
- "lru_count": 1
- "lsetCommand": 1
- "ltrimCommand": 1
- "lua_gc": 1
- "m": 3
- "main": 3
- "malloc": 2
- "mark": 3
- "match": 14
- "matcher": 3
- "maxfiles": 6
- "maybe_modified": 2
- "md": 18
- "megabytes": 1
- "mem_freed": 4
- "mem_online_node": 1
- "mem_tofree": 3
- "mem_used": 9
- "memcmp": 6
- "memcpy": 6
- "memset": 4
- "memtest": 2
- "merge_remote_desc": 3
- "merge_remote_util": 1
- "message": 1
- "message_begin": 3
- "message_complete": 7
- "method": 39
- "method_strings": 2
- "mgetCommand": 1
- "mi": 5
- "microseconds": 1
- "microseconds/c": 1
- "might_sleep": 1
- "migrateCommand": 1
- "mkd_cleanup": 2
- "mkd_compile": 2
- "mkd_document": 1
- "mkd_string": 2
- "mkd_toc": 1
- "mm": 1
- "mm_cpumask": 1
- "mod": 13
- "mode": 9
- "monitorCommand": 2
- "moveCommand": 1
- "msetCommand": 1
- "msetnxCommand": 1
- "msg": 10
- "mstime": 5
- "mtime.seconds": 2
- "multiCommand": 2
- "mutex": 1
- "mutex_lock": 5
- "mutex_unlock": 6
- "n": 20
- "n/": 3
- "name": 12
- "name.machine": 1
- "name.release": 1
- "name.sysname": 1
- "name_decoration": 3
- "nb": 2
- "need": 1
- "need_8bit_cte": 2
- "new": 4
- "new_argv": 7
- "new_entry": 5
- "new_file.flags": 4
- "new_file.mode": 4
- "new_file.oid": 7
- "new_file.path": 6
- "new_file.size": 3
- "new_iter": 13
- "new_oid": 3
- "new_parent": 6
- "new_prefix": 2
- "new_src": 3
- "new_tree": 2
- "next": 8
- "nid": 5
- "nitem": 32
- "nmode": 10
- "noPreloadGetKeys": 6
- "node": 9
- "node_online": 1
- "node_zonelists": 1
- "nodes": 10
- "noid": 4
- "nongit_ok": 2
- "normal_url_char": 3
- "nosave": 2
- "not_shallow_flag": 1
- "notes": 1
- "notifier_block": 3
- "notifier_to_errno": 1
- "notify_cpu_starting": 1
- "now": 5
- "nr_calls": 9
- "nr_parent": 3
- "nr_to_call": 2
- "nread": 7
- "num": 8
- "num*100/slots": 1
- "num_online_cpus": 2
- "numclients": 3
- "numclients/": 1
- "numcommands": 5
- "o": 18
- "o1": 7
- "o2": 7
- "ob": 8
- "obj": 18
- "object": 10
- "object.parsed": 4
- "object.sha1": 8
- "objectCommand": 1
- "object_array": 2
- "object_type": 1
- "obuf_bytes": 3
- "of": 1
- "off": 5
- "off_t": 1
- "oid": 17
- "oid_for_workdir_item": 2
- "oitem": 29
- "old_entry": 5
- "old_file.flags": 2
- "old_file.mode": 2
- "old_file.oid": 3
- "old_file.path": 12
- "old_file.size": 1
- "old_iter": 8
- "old_prefix": 2
- "old_src": 1
- "old_tree": 5
- "old_uf": 4
- "oldlimit": 5
- "omode": 8
- "on": 1
- "on_##FOR": 4
- "on_body": 1
- "on_header_field": 1
- "on_header_value": 1
- "on_headers_complete": 3
- "on_message_begin": 1
- "on_message_complete": 1
- "on_url": 1
- "online": 2
- "onto": 7
- "onto_new": 6
- "onto_pool": 7
- "oom": 3
- "opaque": 8
- "open": 4
- "openlog": 1
- "ops": 1
- "ops*1000/t": 1
- "ops_sec": 3
- "option": 7
- "option_count": 1
- "options": 17
- "options.args": 1
- "options.cwd": 2
- "options.env": 1
- "options.exit_cb": 1
- "options.file": 2
- "options.flags": 4
- "options.gid": 1
- "options.stdio": 3
- "options.stdio_count": 4
- "options.uid": 1
- "opts": 24
- "opts.flags": 8
- "opts.new_prefix": 4
- "opts.old_prefix": 4
- "opts.pathspec": 2
- "out": 11
- "out_notify": 3
- "out_release": 3
- "p": 51
- "p_close": 1
- "p_fnmatch": 1
- "pager_command_config": 2
- "pager_config": 3
- "pager_program": 1
- "param": 2
- "parent": 7
- "parents": 4
- "parse_blob_buffer": 2
- "parse_block": 1
- "parse_commit": 3
- "parse_commit_buffer": 3
- "parse_commit_date": 2
- "parse_htmlblock": 1
- "parse_inline": 1
- "parse_object": 1
- "parse_signed_commit": 1
- "parse_table_header": 1
- "parse_table_row": 1
- "parse_url_char": 5
- "parser": 334
- "passes": 1
- "patch": 1
- "path": 20
- "pathspec": 15
- "pathspec.contents": 1
- "pathspec.count": 2
- "pathspec.length": 1
- "pathspec.strings": 1
- "pattern": 3
- "paused": 3
- "peak_hmem": 3
- "peel_to_type": 1
- "perc": 3
- "perror": 5
- "persistCommand": 1
- "pexpireCommand": 1
- "pexpireatCommand": 1
- "pfd": 2
- "pfd.events": 1
- "pfd.fd": 1
- "pfd.revents": 1
- "pg_data_t": 1
- "pgdat": 3
- "pid": 13
- "pid_t": 2
- "pingCommand": 2
- "pipe": 1
- "pipes": 23
- "pm_notifier": 1
- "poll": 1
- "pollfd": 1
- "pool": 12
- "populateCommandTable": 2
- "port": 7
- "pos": 7
- "possible": 2
- "pp_commit_easy": 1
- "pp_remainder": 1
- "pp_title_line": 1
- "pp_user_info": 1
- "pptr": 5
- "prefix": 34
- "prefix.ptr": 2
- "prefix.size": 1
- "prefixcmp": 3
- "prepareForShutdown": 2
- "present": 2
- "preserve_subject": 1
- "pretty_print_commit": 1
- "pretty_print_context": 6
- "printf": 4
- "printk": 12
- "privdata": 8
- "proc": 14
- "process": 19
- "processInputBuffer": 1
- "propagateExpire": 2
- "psetexCommand": 1
- "psubscribeCommand": 2
- "ptr": 18
- "pttlCommand": 1
- "publishCommand": 1
- "pubsub_channels": 2
- "pubsub_patterns": 2
- "punsubscribeCommand": 2
- "put_online_cpus": 2
- "querybuf": 6
- "querybuf_peak": 2
- "querybuf_size": 3
- "querybuf_size/": 1
- "queueMultiCommand": 1
- "quiet": 5
- "r": 5
- "randomkeyCommand": 1
- "raw_notifier_chain_register": 1
- "raw_notifier_chain_unregister": 1
- "rawmode": 2
- "rb_cObject": 1
- "rb_cRDiscount": 4
- "rb_define_class": 1
- "rb_define_method": 2
- "rb_funcall": 14
- "rb_intern": 15
- "rb_rdiscount__get_flags": 3
- "rb_rdiscount_to_html": 2
- "rb_rdiscount_toc_content": 2
- "rb_respond_to": 1
- "rb_str_buf_new": 2
- "rb_str_cat": 4
- "rcu_read_lock": 1
- "rcu_read_unlock": 1
- "rdbLoad": 1
- "rdbRemoveTempFile": 1
- "rdbSave": 1
- "rdbSaveBackground": 1
- "read_sha1_file": 1
- "realloc": 1
- "redisAsciiArt": 2
- "redisAssert": 1
- "redisClient": 12
- "redisCommand": 6
- "redisCommandTable": 5
- "redisDb": 3
- "redisGitDirty": 3
- "redisGitSHA1": 3
- "redisLog": 33
- "redisLogFromHandler": 2
- "redisLogRaw": 3
- "redisServer": 1
- "reexecute_byte": 7
- "ref_name": 2
- "refcount": 1
- "reflog_walk_info": 1
- "refs": 2
- "register_commit_graft": 2
- "register_cpu_notifier": 2
- "register_shallow": 1
- "remaining_bytes": 1
- "renameCommand": 1
- "renameGetKeys": 2
- "renamenxCommand": 1
- "replicationCron": 1
- "replstate": 1
- "repo": 23
- "res": 4
- "resetServerSaveParams": 2
- "restoreCommand": 1
- "result": 12
- "ret": 24
- "retcode": 3
- "return": 304
- "retval": 3
- "rev_info": 2
- "revents": 2
- "rewriteAppendOnlyFileBackground": 2
- "rlim_t": 3
- "rlimit": 1
- "rndr": 25
- "rndr_newbuf": 2
- "rndr_popbuf": 2
- "robj": 7
- "robj*": 3
- "row_work": 4
- "rpopCommand": 1
- "rpoplpushCommand": 1
- "rpushCommand": 1
- "rpushxCommand": 1
- "rstatus": 1
- "ruby_obj": 11
- "run_add_interactive": 1
- "run_argv": 2
- "run_builtin": 2
- "run_command_v_opt": 1
- "run_with_period": 6
- "rusage": 1
- "s": 22
- "s1": 2
- "s2": 2
- "s_body_identity": 3
- "s_body_identity_eof": 4
- "s_chunk_data": 3
- "s_chunk_data_almost_done": 3
- "s_chunk_data_done": 3
- "s_chunk_parameters": 3
- "s_chunk_size": 3
- "s_chunk_size_almost_done": 4
- "s_chunk_size_start": 4
- "s_dead": 10
- "s_header_almost_done": 6
- "s_header_field": 4
- "s_header_field_start": 12
- "s_header_value": 5
- "s_header_value_lws": 3
- "s_header_value_start": 4
- "s_headers_almost_done": 4
- "s_headers_done": 4
- "s_message_done": 3
- "s_req_first_http_major": 3
- "s_req_first_http_minor": 3
- "s_req_fragment": 7
- "s_req_fragment_start": 7
- "s_req_host": 8
- "s_req_host_start": 8
- "s_req_host_v6": 7
- "s_req_host_v6_end": 7
- "s_req_host_v6_start": 7
- "s_req_http_H": 3
- "s_req_http_HT": 3
- "s_req_http_HTT": 3
- "s_req_http_HTTP": 3
- "s_req_http_major": 3
- "s_req_http_minor": 3
- "s_req_http_start": 3
- "s_req_line_almost_done": 4
- "s_req_method": 4
- "s_req_path": 8
- "s_req_port": 6
- "s_req_port_start": 7
- "s_req_query_string": 7
- "s_req_query_string_start": 8
- "s_req_schema": 6
- "s_req_schema_slash": 6
- "s_req_schema_slash_slash": 6
- "s_req_spaces_before_url": 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_first_http_minor": 3
- "s_res_first_status_code": 3
- "s_res_http_major": 3
- "s_res_http_minor": 3
- "s_res_line_almost_done": 4
- "s_res_or_resp_H": 3
- "s_res_status": 3
- "s_res_status_code": 3
- "s_start_req": 6
- "s_start_req_or_res": 4
- "s_start_res": 5
- "saddCommand": 1
- "save": 2
- "saveCommand": 1
- "save_commit_buffer": 3
- "save_our_env": 3
- "saved_errno": 1
- "saveparam": 1
- "scan": 4
- "scardCommand": 1
- "schedule": 1
- "scriptCommand": 2
- "scriptingInit": 1
- "sd_markdown": 6
- "sd_markdown_free": 1
- "sd_version": 1
- "sdiffCommand": 1
- "sdiffstoreCommand": 1
- "sds": 13
- "sdsAllocSize": 1
- "sdsRemoveFreeSpace": 1
- "sdsavail": 1
- "sdscat": 14
- "sdscatprintf": 24
- "sdscatrepr": 1
- "sdsempty": 8
- "sdsfree": 2
- "sdslen": 14
- "sdsnew": 27
- "seconds": 2
- "section": 14
- "sections": 11
- "see": 1
- "selectCommand": 1
- "self": 6
- "self_ru": 2
- "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
- "server": 1
- "server.activerehashing": 2
- "server.aof_buf": 3
- "server.aof_child_pid": 10
- "server.aof_current_size": 2
- "server.aof_current_size*100/base": 1
- "server.aof_delayed_fsync": 2
- "server.aof_fd": 4
- "server.aof_filename": 3
- "server.aof_flush_postponed_start": 2
- "server.aof_fsync": 1
- "server.aof_last_fsync": 1
- "server.aof_no_fsync_on_rewrite": 1
- "server.aof_rewrite_base_size": 4
- "server.aof_rewrite_min_size": 2
- "server.aof_rewrite_perc": 3
- "server.aof_rewrite_scheduled": 4
- "server.aof_rewrite_time_last": 2
- "server.aof_rewrite_time_start": 2
- "server.aof_selected_db": 1
- "server.aof_state": 7
- "server.arch_bits": 3
- "server.assert_failed": 1
- "server.assert_file": 1
- "server.assert_line": 1
- "server.bindaddr": 2
- "server.bpop_blocked_clients": 2
- "server.bug_report_start": 1
- "server.client_max_querybuf_len": 1
- "server.client_obuf_limits": 9
- "server.clients": 7
- "server.clients_to_close": 1
- "server.cluster.configfile": 1
- "server.cluster.myself": 1
- "server.cluster.state": 1
- "server.cluster_enabled": 6
- "server.commands": 1
- "server.cronloops": 3
- "server.current_client": 3
- "server.daemonize": 5
- "server.db": 23
- "server.dbnum": 8
- "server.delCommand": 1
- "server.dirty": 3
- "server.el": 7
- "server.hash_max_ziplist_entries": 1
- "server.hash_max_ziplist_value": 1
- "server.ipfd": 9
- "server.lastbgsave_status": 3
- "server.lastsave": 3
- "server.list_max_ziplist_entries": 1
- "server.list_max_ziplist_value": 1
- "server.loading": 4
- "server.loading_loaded_bytes": 3
- "server.loading_start_time": 2
- "server.loading_total_bytes": 3
- "server.logfile": 8
- "server.lpushCommand": 1
- "server.lruclock": 2
- "server.lua": 1
- "server.lua_caller": 1
- "server.lua_client": 1
- "server.lua_time_limit": 1
- "server.lua_timedout": 2
- "server.master": 3
- "server.masterauth": 1
- "server.masterhost": 7
- "server.masterport": 2
- "server.maxclients": 6
- "server.maxidletime": 3
- "server.maxmemory": 6
- "server.maxmemory_policy": 11
- "server.maxmemory_samples": 3
- "server.monitors": 2
- "server.multiCommand": 1
- "server.neterr": 4
- "server.ops_sec_idx": 4
- "server.ops_sec_last_sample_ops": 3
- "server.ops_sec_last_sample_time": 3
- "server.ops_sec_samples": 4
- "server.pidfile": 3
- "server.port": 7
- "server.pubsub_channels": 2
- "server.pubsub_patterns": 4
- "server.rdb_checksum": 1
- "server.rdb_child_pid": 12
- "server.rdb_compression": 1
- "server.rdb_filename": 4
- "server.rdb_save_time_last": 2
- "server.rdb_save_time_start": 2
- "server.repl_down_since": 2
- "server.repl_ping_slave_period": 1
- "server.repl_serve_stale_data": 2
- "server.repl_slave_ro": 2
- "server.repl_state": 6
- "server.repl_syncio_timeout": 1
- "server.repl_timeout": 1
- "server.repl_transfer_lastio": 1
- "server.repl_transfer_left": 1
- "server.requirepass": 4
- "server.runid": 3
- "server.saveparams": 2
- "server.saveparamslen": 3
- "server.set_max_intset_entries": 1
- "server.shutdown_asap": 3
- "server.slaves": 9
- "server.slowlog_log_slower_than": 1
- "server.slowlog_max_len": 1
- "server.sofd": 9
- "server.stat_evictedkeys": 3
- "server.stat_expiredkeys": 3
- "server.stat_fork_time": 2
- "server.stat_keyspace_hits": 2
- "server.stat_keyspace_misses": 2
- "server.stat_numcommands": 4
- "server.stat_numconnections": 2
- "server.stat_peak_memory": 5
- "server.stat_rejected_conn": 2
- "server.stat_starttime": 2
- "server.stop_writes_on_bgsave_err": 2
- "server.syslog_enabled": 3
- "server.syslog_facility": 2
- "server.syslog_ident": 2
- "server.unblocked_clients": 4
- "server.unixsocket": 7
- "server.unixsocketperm": 2
- "server.unixtime": 10
- "server.unixtime/REDIS_LRU_CLOCK_RESOLUTION": 1
- "server.verbosity": 4
- "server.watchdog_period": 3
- "server.zset_max_ziplist_entries": 1
- "server.zset_max_ziplist_value": 1
- "serverCron": 2
- "setCommand": 1
- "setDictType": 1
- "set_cpu_active": 1
- "set_cpu_online": 1
- "set_cpu_possible": 1
- "set_cpu_present": 1
- "setbitCommand": 1
- "setenv": 1
- "setexCommand": 1
- "setgid": 1
- "setnxCommand": 1
- "setrangeCommand": 1
- "setrlimit": 1
- "setsid": 2
- "settings": 6
- "setuid": 1
- "setupSignalHandlers": 2
- "setup_git_directory": 1
- "setup_git_directory_gently": 1
- "setup_pager": 1
- "setup_path": 1
- "setup_work_tree": 1
- "sflags": 1
- "sha1": 20
- "sha1_to_hex": 8
- "shallow_flag": 1
- "shared": 1
- "shared.bgsaveerr": 2
- "shared.bulkhdr": 1
- "shared.cnegone": 1
- "shared.colon": 1
- "shared.cone": 1
- "shared.crlf": 2
- "shared.czero": 1
- "shared.del": 1
- "shared.emptybulk": 1
- "shared.emptymultibulk": 1
- "shared.err": 1
- "shared.integers": 2
- "shared.loadingerr": 2
- "shared.lpop": 1
- "shared.masterdownerr": 2
- "shared.mbulkhdr": 1
- "shared.messagebulk": 1
- "shared.nokeyerr": 1
- "shared.noscripterr": 1
- "shared.nullbulk": 1
- "shared.nullmultibulk": 2
- "shared.ok": 3
- "shared.oomerr": 2
- "shared.outofrangeerr": 1
- "shared.plus": 1
- "shared.pmessagebulk": 1
- "shared.pong": 2
- "shared.psubscribebulk": 1
- "shared.punsubscribebulk": 1
- "shared.queued": 2
- "shared.roslaveerr": 2
- "shared.rpop": 1
- "shared.sameobjecterr": 1
- "shared.select": 1
- "shared.slowscripterr": 2
- "shared.space": 1
- "shared.subscribebulk": 1
- "shared.syntaxerr": 2
- "shared.unsubscribebulk": 1
- "shared.wrongtypeerr": 1
- "sharedObjectsStruct": 1
- "short": 3
- "show_notes": 1
- "shutdownCommand": 2
- "sig": 2
- "sigaction": 6
- "sigemptyset": 2
- "signal": 2
- "signal_pipe": 7
- "signum": 4
- "sigsegvHandler": 1
- "sigtermHandler": 2
- "single_parent": 1
- "sinterCommand": 2
- "sinterstoreCommand": 1
- "sismemberCommand": 1
- "size": 59
- "size_mask": 6
- "size_t": 40
- "sizeof": 52
- "slave": 3
- "slaveid": 3
- "slaveofCommand": 2
- "slaves": 3
- "slaveseldb": 1
- "sleep": 1
- "slots": 2
- "slowlogCommand": 1
- "slowlogInit": 1
- "smoveCommand": 1
- "snprintf": 2
- "socketpair": 2
- "sortCommand": 1
- "sort_in_topological_order": 1
- "sp": 4
- "spopCommand": 1
- "sprintf": 4
- "srand": 1
- "srandmemberCommand": 1
- "src": 3
- "sremCommand": 1
- "ssize_t": 1
- "st": 2
- "st.st_mode": 2
- "stack_free": 2
- "start": 6
- "start_of_line": 2
- "start_state": 1
- "startup_info": 3
- "stat": 3
- "statStr": 6
- "state": 104
- "stateStack": 3
- "static": 80
- "statloc": 5
- "status": 57
- "status_code": 8
- "stderr": 15
- "stdio_count": 7
- "stdout": 5
- "stime": 1
- "str": 8
- "strbuf": 12
- "strbuf_addf": 1
- "strbuf_release": 1
- "strcasecmp": 13
- "strcmp": 19
- "strdup": 1
- "strerror": 4
- "strftime": 1
- "strict": 1
- "string": 2
- "strings": 1
- "strlen": 8
- "strlenCommand": 1
- "strncasecmp": 2
- "strncmp": 1
- "strtol": 2
- "strtoul": 2
- "struct": 217
- "sub": 2
- "subdir": 3
- "subscribeCommand": 2
- "sum": 3
- "sunionCommand": 1
- "sunionstoreCommand": 1
- "swap": 1
- "switch": 31
- "syncCommand": 1
- "syslog": 1
- "syslogLevelMap": 2
- "szres": 8
- "t": 27
- "tag": 1
- "tag_end": 7
- "tag_len": 3
- "tag_size": 3
- "tail": 12
- "take_cpu_down": 2
- "take_cpu_down_param": 3
- "task_cpu": 1
- "task_pid_nr": 1
- "task_struct": 5
- "task_unlock": 1
- "tasklist_lock": 2
- "tasks_frozen": 4
- "tcd_param": 2
- "temp": 1
- "term_signal": 3
- "text": 22
- "the": 3
- "thiskey": 7
- "thisval": 8
- "time": 10
- "timeCommand": 2
- "time_t": 4
- "timelimit": 5
- "timeval": 4
- "tmp": 2
- "to": 2
- "to_cpumask": 15
- "to_read": 6
- "tokens": 3
- "tolower": 2
- "trace_argv_printf": 3
- "trace_repo_setup": 1
- "trackOperationsPerSecond": 2
- "tree": 3
- "true": 4
- "tryResizeHashTables": 2
- "ttlCommand": 1
- "tv": 8
- "tv.tv_sec": 4
- "tv.tv_usec": 3
- "tv.tv_usec/1000": 1
- "type": 27
- "typeCommand": 1
- "typedef": 15
- "typename": 2
- "u": 10
- "uf": 14
- "uid": 2
- "uint16_t": 6
- "uint32_t": 6
- "uint64_t": 8
- "uint8_t": 6
- "uname": 1
- "unblockClientWaitingData": 1
- "under_end": 1
- "unhex": 3
- "unhex_val": 7
- "unlikely": 1
- "unlink": 3
- "unregister_cpu_notifier": 2
- "unregister_shallow": 1
- "unsigned": 116
- "unsubscribeCommand": 2
- "unwatchCommand": 1
- "updateDictResizePolicy": 2
- "updateLRUClock": 3
- "upgrade": 3
- "uptime": 2
- "uptime/": 1
- "url": 4
- "url_mark": 2
- "usage": 2
- "use_fd": 7
- "use_noid": 2
- "use_pager": 8
- "used": 7
- "used*100/size": 1
- "userformat_find_requirements": 1
- "userformat_want": 2
- "ust": 4
- "ustime": 7
- "util": 3
- "utime": 1
- "utsname": 1
- "uv__chld": 2
- "uv__cloexec": 4
- "uv__handle_init": 1
- "uv__handle_start": 1
- "uv__handle_stop": 1
- "uv__make_pipe": 2
- "uv__make_socketpair": 2
- "uv__new_sys_error": 1
- "uv__nonblock": 5
- "uv__pipe2": 1
- "uv__process_child_init": 2
- "uv__process_close": 1
- "uv__process_close_stream": 2
- "uv__process_init_stdio": 2
- "uv__process_open_stream": 2
- "uv__process_stdio_flags": 2
- "uv__set_sys_error": 2
- "uv__stream_close": 1
- "uv__stream_open": 1
- "uv_err_t": 1
- "uv_handle_t*": 1
- "uv_kill": 1
- "uv_loop_t*": 1
- "uv_ok_": 1
- "uv_pipe_t*": 1
- "uv_process_kill": 1
- "uv_process_options_t": 2
- "uv_process_t": 1
- "uv_process_t*": 3
- "uv_spawn": 1
- "uv_stdio_container_t*": 4
- "uv_stream_t*": 2
- "v": 6
- "va_end": 1
- "va_list": 1
- "va_start": 1
- "val": 20
- "validateUTF8": 3
- "value": 4
- "var": 3
- "vec": 2
- "verbose": 2
- "version": 2
- "vkeys": 8
- "void": 210
- "void*": 1
- "vsnprintf": 1
- "w": 6
- "wait3": 1
- "wake_up_process": 1
- "want": 3
- "warning": 1
- "was_alias": 3
- "watchCommand": 2
- "watchdogScheduleSignal": 1
- "watcher": 4
- "while": 41
- "work": 4
- "work.size": 5
- "work_bufs": 8
- "writable": 8
- "write": 7
- "write_lock_irq": 1
- "write_unlock_irq": 1
- "x": 12
- "xf": 1
- "xff": 3
- "xffff": 1
- "xmalloc": 2
- "xrealloc": 2
- "xstrdup": 2
- "yajl_alloc": 1
- "yajl_alloc_funcs": 3
- "yajl_bs_free": 1
- "yajl_bs_init": 1
- "yajl_bs_push": 1
- "yajl_buf_alloc": 1
- "yajl_buf_free": 1
- "yajl_callbacks": 1
- "yajl_do_parse": 1
- "yajl_free": 1
- "yajl_free_error": 1
- "yajl_get_bytes_consumed": 1
- "yajl_get_error": 1
- "yajl_handle": 10
- "yajl_handle_t": 1
- "yajl_lex_alloc": 1
- "yajl_lex_free": 1
- "yajl_lex_realloc": 1
- "yajl_parse": 2
- "yajl_parse_complete": 1
- "yajl_parser_config": 1
- "yajl_render_error_string": 1
- "yajl_reset_parser": 1
- "yajl_set_default_alloc_funcs": 1
- "yajl_state_start": 1
- "yajl_status": 4
- "yajl_status_client_canceled": 1
- "yajl_status_error": 1
- "yajl_status_insufficient_data": 1
- "yajl_status_ok": 1
- "yajl_status_to_string": 1
- "z": 1
- "zaddCommand": 1
- "zcardCommand": 1
- "zcountCommand": 1
- "zfree": 2
- "zincrbyCommand": 1
- "zinterstoreCommand": 1
- "zmalloc": 2
- "zmalloc_enable_thread_safeness": 1
- "zmalloc_get_fragmentation_ratio": 1
- "zmalloc_get_rss": 1
- "zmalloc_used_memory": 8
- "zone": 1
- "zonelists_mutex": 2
- "zrangeCommand": 1
- "zrangebyscoreCommand": 1
- "zrankCommand": 1
- "zremCommand": 1
- "zremrangebyrankCommand": 1
- "zremrangebyscoreCommand": 1
- "zrevrangeCommand": 1
- "zrevrangebyscoreCommand": 1
- "zrevrankCommand": 1
- "zscoreCommand": 1
- "zsetDictType": 1
- "zstrdup": 5
- "zunionInterGetKeys": 4
- "zunionstoreCommand": 1
- "{": 1023
- "{-": 1
- "|": 82
- "||": 112
- "}": 1025
- "C++":
- "#define": 5
- "#endif": 12
- "#error": 2
- "#if": 4
- "#ifdef": 3
- "#ifndef": 5
- "#include": 71
- "#undef": 1
- "%": 1
- "&": 74
- "&&": 13
- "(": 842
- "(*": 3
- ")": 843
- "*": 13
- "*)": 3
- "**": 2
- "**env": 1
- "**envp": 1
- "*/": 9
- "*Env": 1
- "*O": 1
- "*Q": 1
- "*R": 1
- "*ctx": 2
- "*e": 1
- "*eckey": 2
- "*ecsig": 1
- "*env": 1
- "*env_instance": 1
- "*eor": 1
- "*field": 1
- "*group": 2
- "*instance": 1
- "*msg": 2
- "*msglen": 1
- "*name": 2
- "*order": 1
- "*priv_key": 1
- "*pub_key": 1
- "*reinterpret_cast": 1
- "*rr": 1
- "*sig": 2
- "*sor": 1
- "*targetFrame": 4
- "*x": 1
- "*zero": 1
- "+": 40
- "-": 114
- ".": 2
- ".0": 1
- ".Equals": 1
- "/": 9
- "/*": 9
- "//": 457
- "//end": 1
- "/8": 2
- "1": 2
- "128": 4
- "2": 1
- ";": 793
- "<": 27
- "<1024>": 2
- "<27>": 1
- "<4;>": 1
- "<<": 5
- "<CallCompletedCallback>": 3
- "<IdentifierPart,>": 1
- "<IdentifierStart,>": 1
- "<QApplication>": 1
- "<QCoreApplication>": 1
- "<QFile>": 1
- "<QObject>": 1
- "<QString>": 1
- "<QVariantMap>": 2
- "<QWebFrame>": 1
- "<QtGlobal>": 1
- "<Token::Value>": 1
- "<Utf8Decoder>": 2
- "<byte>": 6
- "<char*>": 1
- "<const>": 10
- "<float,>": 1
- "<float>": 1
- "<iostream>": 1
- "<map>": 1
- "<openssl/ec.h>": 1
- "<openssl/ecdsa.h>": 1
- "<openssl/obj_mac.h>": 1
- "<stdexcept>": 1
- "<uc16*>": 2
- "<uc32>": 1
- "<uint32_t*>": 1
- "<unibrow::LineTerminator,>": 1
- "<unibrow::WhiteSpace,>": 1
- "<unsigned>": 19
- "<vector>": 1
- "ADD": 1
- "AND": 1
- "ASSERT": 17
- "ASSERT_EQ": 1
- "ASSERT_NOT_NULL": 9
- "ASSIGN": 1
- "ASSIGN_ADD": 1
- "ASSIGN_BIT_AND": 1
- "ASSIGN_BIT_OR": 1
- "ASSIGN_BIT_XOR": 1
- "ASSIGN_DIV": 1
- "ASSIGN_MOD": 1
- "ASSIGN_MUL": 1
- "ASSIGN_SAR": 1
- "ASSIGN_SHL": 1
- "ASSIGN_SHR": 1
- "ASSIGN_SUB": 1
- "Add": 1
- "AddCallCompletedCallback": 2
- "AddChar": 2
- "AddLiteralChar": 2
- "AddLiteralCharAdvance": 3
- "Advance": 40
- "AllStatic": 1
- "BIGNUM": 9
- "BITCOIN_KEY_H": 2
- "BIT_AND": 1
- "BIT_NOT": 2
- "BIT_OR": 1
- "BIT_XOR": 1
- "BN_CTX": 2
- "BN_CTX_end": 1
- "BN_CTX_free": 2
- "BN_CTX_get": 8
- "BN_CTX_new": 2
- "BN_CTX_start": 1
- "BN_add": 1
- "BN_bin2bn": 3
- "BN_bn2bin": 2
- "BN_cmp": 1
- "BN_copy": 1
- "BN_mod_inverse": 1
- "BN_mod_mul": 2
- "BN_mod_sub": 1
- "BN_mul_word": 1
- "BN_num_bits": 2
- "BN_rshift": 1
- "BN_zero": 1
- "Bar": 2
- "ByteArray*": 1
- "CKey": 26
- "CKeyID": 5
- "CLASSIC_MODE": 2
- "COLON": 2
- "COMMA": 2
- "CONDITIONAL": 2
- "CPU": 2
- "CPrivKey": 3
- "CPubKey": 11
- "CScriptID": 3
- "CSecret": 4
- "CallCompletedCallback": 4
- "CallDepthIsZero": 1
- "CallOnce": 1
- "CharacterStream*": 1
- "Complete": 1
- "Context*": 4
- "ConvertToUtf16": 2
- "Current": 5
- "CurrentPerIsolateThreadData": 4
- "DEBUG": 3
- "DEC": 1
- "DISALLOW_COPY_AND_ASSIGN": 2
- "DIV": 1
- "DecrementCallDepth": 1
- "Deserializer": 1
- "Deserializer*": 2
- "DropLiteral": 2
- "E": 3
- "ECDSA_SIG": 3
- "ECDSA_SIG_free": 2
- "ECDSA_SIG_new": 1
- "ECDSA_SIG_recover_key_GFp": 3
- "ECDSA_do_sign": 1
- "ECDSA_verify": 1
- "EC_GROUP": 2
- "EC_GROUP_get_curve_GFp": 1
- "EC_GROUP_get_degree": 1
- "EC_GROUP_get_order": 1
- "EC_KEY": 2
- "EC_KEY*": 1
- "EC_KEY_copy": 1
- "EC_KEY_dup": 1
- "EC_KEY_free": 1
- "EC_KEY_get0_group": 2
- "EC_KEY_new_by_curve_name": 2
- "EC_KEY_regenerate_key": 1
- "EC_KEY_set_conv_form": 1
- "EC_KEY_set_private_key": 1
- "EC_KEY_set_public_key": 2
- "EC_POINT": 4
- "EC_POINT_free": 4
- "EC_POINT_is_at_infinity": 1
- "EC_POINT_mul": 3
- "EC_POINT_new": 4
- "EC_POINT_set_compressed_coordinates_GFp": 1
- "ENV_H": 2
- "EOS": 1
- "EQ": 1
- "EQ_STRICT": 1
- "EXTENDED_MODE": 2
- "ElementsAccessor": 2
- "Encoding": 3
- "EnforceFlagImplications": 1
- "EnterDefaultIsolate": 1
- "EntropySource": 3
- "Env": 13
- "EqualityKind": 1
- "ExceptionHandler": 1
- "ExpandBuffer": 2
- "ExternalReference": 1
- "FFFF": 1
- "FLAG_crankshaft": 1
- "FLAG_force_marking_deque_overflows": 1
- "FLAG_gc_global": 1
- "FLAG_max_new_space_size": 1
- "FLAG_random_seed": 2
- "FLAG_stress_compaction": 1
- "FLAG_use_idle_notification": 1
- "FatalProcessOutOfMemory": 1
- "FillHeapNumberWithRandom": 2
- "FireCallCompletedCallback": 2
- "FlagList": 1
- "GOOGLE3": 1
- "GT": 1
- "GTE": 1
- "GetDataStartAddress": 1
- "GetHash": 1
- "GetID": 1
- "GetPrivKey": 1
- "GetPubKey": 5
- "GetSecret": 2
- "GlobalSetUp": 1
- "HEAP": 1
- "HandleScopeImplementer*": 1
- "HarmonyModules": 1
- "HarmonyScoping": 1
- "HasAnyLineTerminatorBeforeNext": 1
- "Hash": 1
- "Hash160": 1
- "HeapNumber": 1
- "HexValue": 2
- "ILLEGAL": 120
- "IMPLEMENT_SERIALIZE": 1
- "INC": 1
- "INLINE": 2
- "IdleNotification": 3
- "IncrementCallDepth": 1
- "Init": 3
- "Initialize": 4
- "InitializeOncePerProcess": 4
- "InitializeOncePerProcessImpl": 3
- "InspectorBackendStub": 1
- "IsByteOrderMark": 2
- "IsCarriageReturn": 2
- "IsCompressed": 2
- "IsDead": 2
- "IsDecimalDigit": 2
- "IsDefaultIsolate": 1
- "IsGlobalContext": 1
- "IsIdentifier": 1
- "IsIdentifierPart": 1
- "IsIdentifierStart": 2
- "IsInitialized": 1
- "IsLineFeed": 2
- "IsLineTerminator": 6
- "IsNull": 1
- "IsRunning": 1
- "IsValid": 4
- "IsWhiteSpace": 2
- "Isolate": 9
- "Isolate*": 6
- "LAZY_MUTEX_INITIALIZER": 1
- "LBRACE": 2
- "LBRACK": 2
- "LOperand": 2
- "LPAREN": 2
- "LT": 2
- "LTE": 1
- "LazyMutex": 1
- "List": 3
- "LiteralBuffer": 6
- "LiteralBuffer*": 2
- "LiteralScope": 4
- "LiteralScope*": 1
- "Location": 14
- "MB": 1
- "MOD": 1
- "MUL": 1
- "MakeNewKey": 1
- "Max": 1
- "Min": 1
- "NDEBUG": 4
- "NE": 1
- "NE_STRICT": 1
- "NID_secp256k1": 2
- "NOT": 1
- "NULL": 49
- "NUM_TOKENS": 1
- "New": 2
- "NewCapacity": 3
- "Next": 2
- "NilValue": 1
- "O": 5
- "OR": 1
- "OS": 3
- "Object*": 4
- "PERIOD": 1
- "PHANTOMJS_VERSION_STRING": 1
- "POINT_CONVERSION_COMPRESSED": 1
- "ParsingFlags": 1
- "Phantom": 1
- "Please": 1
- "PostSetUp": 1
- "Predicate": 4
- "PushBack": 8
- "Q": 5
- "QApplication": 1
- "QCoreApplication": 1
- "QIcon": 1
- "QObject": 2
- "QString": 18
- "QT_VERSION": 1
- "QT_VERSION_CHECK": 1
- "QTemporaryFile": 1
- "QTemporaryFile*": 2
- "QVariant": 1
- "QVariantMap": 3
- "QWebFrame": 4
- "Q_INIT_RESOURCE": 2
- "Q_OBJECT": 1
- "Q_OS_LINUX": 2
- "QtMsgType": 1
- "R": 6
- "RBRACE": 2
- "RBRACK": 2
- "READWRITE": 1
- "RPAREN": 2
- "Random": 3
- "RandomPrivate": 2
- "Raw": 1
- "ReadBlock": 2
- "RegisteredExtension": 1
- "Remove": 1
- "RemoveCallCompletedCallback": 2
- "Reset": 5
- "ReturnAddressLocationResolver": 2
- "RuntimeProfiler": 1
- "SAR": 1
- "SEMICOLON": 2
- "SHL": 1
- "SHR": 1
- "STATIC_ASSERT": 5
- "STATIC_BUILD": 1
- "STRICT_MODE": 2
- "STRING": 1
- "SUB": 1
- "SamplerRegistry": 1
- "Scan": 5
- "ScanDecimalDigits": 1
- "ScanEscape": 2
- "ScanHexNumber": 2
- "ScanHtmlComment": 3
- "ScanIdentifierOrKeyword": 2
- "ScanIdentifierSuffix": 1
- "ScanIdentifierUnicodeEscape": 1
- "ScanLiteralUnicodeEscape": 3
- "ScanNumber": 3
- "ScanOctalEscape": 1
- "ScanRegExpFlags": 1
- "ScanRegExpPattern": 1
- "ScanString": 3
- "Scanner": 16
- "Scanner*": 2
- "ScopedLock": 1
- "SeekForward": 4
- "Select": 32
- "Serializer": 1
- "SetCompactSignature": 2
- "SetCompressedPubKey": 4
- "SetEntropySource": 2
- "SetFatalError": 2
- "SetHarmonyModules": 1
- "SetHarmonyScoping": 1
- "SetPrivKey": 1
- "SetPubKey": 1
- "SetReturnAddressLocationResolver": 3
- "SetSecret": 1
- "SetUp": 4
- "SetUpCaches": 1
- "SetUpJSCallerSavedCodeData": 1
- "Sign": 1
- "SignCompact": 2
- "SkipMultiLineComment": 3
- "SkipSingleLineComment": 6
- "SkipWhiteSpace": 4
- "SlowSeekForward": 2
- "Something": 1
- "StackFrame": 1
- "StartLiteral": 2
- "StaticResource": 2
- "SupportsCrankshaft": 1
- "TearDown": 5
- "TearDownCaches": 1
- "TerminateLiteral": 2
- "This": 1
- "ThreadId": 1
- "Token": 212
- "TokenDesc": 3
- "UTILS_H": 2
- "UnicodeCache": 3
- "UnicodeCache*": 4
- "UnregisterAll": 1
- "UseCrankshaft": 1
- "Utf16CharacterStream": 3
- "Utf16CharacterStream*": 3
- "Utf8Decoder": 2
- "Utf8InputBuffer": 2
- "Utils": 4
- "V8": 21
- "V8_DECLARE_ONCE": 1
- "V8_SCANNER_H_": 2
- "V8_V8_H_": 2
- "Value": 23
- "Vector": 13
- "Verify": 2
- "VerifyCompact": 2
- "WHITESPACE": 6
- "We": 1
- "WebKit": 1
- "X": 2
- "__global__": 1
- "a": 3
- "a.vchPubKey": 3
- "after": 1
- "and": 2
- "app": 1
- "app.exec": 1
- "app.setApplicationName": 1
- "app.setApplicationVersion": 1
- "app.setOrganizationDomain": 1
- "app.setOrganizationName": 1
- "app.setWindowIcon": 1
- "are": 1
- "argc": 2
- "argv": 2
- "asVariantMap": 2
- "ascii_literal": 3
- "at": 3
- "autorun": 2
- "b": 12
- "b.fSet": 2
- "b.pkey": 2
- "b.vchPubKey": 3
- "backing_store_": 7
- "backing_store_.Dispose": 3
- "backing_store_.length": 4
- "backing_store_.start": 5
- "be": 1
- "because": 1
- "beg_pos": 5
- "binary_million": 3
- "blockDim": 2
- "blockDim.x": 2
- "blockDim.y": 2
- "blockIdx.x*blockDim.x": 1
- "blockIdx.y*blockDim.y": 1
- "bool": 89
- "both": 1
- "break": 30
- "buffer": 1
- "buffer_cursor_": 5
- "buffer_end_": 3
- "buffered_chars": 2
- "byte": 1
- "c": 33
- "c0_": 64
- "call_completed_callbacks_": 16
- "callback": 7
- "can": 1
- "capacity": 3
- "case": 32
- "cast": 1
- "ch": 5
- "char": 32
- "char*": 7
- "char**": 2
- "character": 1
- "check": 2
- "class": 19
- "clean": 1
- "cleanupFromDebug": 1
- "clear_octal_position": 1
- "code_unit": 6
- "code_unit_count": 7
- "coffee2js": 1
- "complete_": 4
- "const": 91
- "context": 8
- "continue": 2
- "cout": 1
- "ctx": 25
- "cu_array": 4
- "cudaAddressModeClamp": 2
- "cudaArray*": 1
- "cudaBindTextureToArray": 1
- "cudaChannelFormatDesc": 1
- "cudaCreateChannelDesc": 1
- "cudaFilterModePoint": 1
- "cudaMallocArray": 1
- "cudaMemcpyHostToDevice": 1
- "cudaMemcpyToArray": 1
- "cudaReadModeElementType": 1
- "cudaUnbindTexture": 1
- "current_": 2
- "current_.literal_chars": 11
- "current_.location": 2
- "current_.token": 4
- "current_pos": 4
- "current_token": 1
- "d": 4
- "d_data": 1
- "default": 1
- "defined": 5
- "delete": 2
- "des": 3
- "description": 2
- "digits": 3
- "dim3": 2
- "do": 1
- "double": 2
- "double_int_union": 2
- "double_value": 1
- "dst": 2
- "dump_path": 1
- "e": 13
- "eckey": 7
- "ecsig": 3
- "eh": 1
- "else": 32
- "else_": 2
- "enabled": 1
- "enc": 1
- "end_pos": 4
- "endl": 1
- "entropy_mutex": 1
- "entropy_mutex.Pointer": 1
- "entropy_source": 4
- "enum": 3
- "env": 3
- "env_instance": 3
- "envp": 4
- "envvar": 2
- "envvar.indexOf": 1
- "envvar.left": 1
- "envvar.mid": 1
- "eor": 3
- "err": 25
- "error": 1
- "escape": 1
- "exceptionHandler": 2
- "expected_length": 4
- "explicit": 3
- "f": 4
- "fCompr": 3
- "fCompressed": 3
- "fCompressedPubKey": 5
- "fOk": 3
- "fSet": 7
- "false": 40
- "field": 3
- "findScript": 1
- "float": 2
- "float*": 1
- "foo": 2
- "for": 9
- "free_buffer": 3
- "friend": 4
- "google_breakpad": 1
- "goto": 23
- "gridDim": 2
- "group": 12
- "handle_scope_implementer": 5
- "harmony_modules_": 4
- "harmony_scoping_": 4
- "has": 1
- "has_been_disposed_": 6
- "has_been_set_up_": 4
- "has_fatal_error_": 5
- "has_line_terminator_before_next_": 9
- "has_multiline_comment_before_next_": 5
- "hash": 20
- "heap_number": 4
- "height": 5
- "hello": 2
- "hint": 3
- "i": 47
- "if": 132
- "image": 1
- "immediately": 1
- "in": 4
- "in_character_class": 2
- "indexOfEquals": 5
- "init_once": 2
- "injectJsInFrame": 2
- "inline": 12
- "instance": 3
- "instantiated": 1
- "int": 62
- "int32_t": 1
- "internal": 5
- "invalid": 4
- "is": 1
- "is_ascii": 3
- "is_ascii_": 10
- "is_literal_ascii": 1
- "is_next_literal_ascii": 1
- "is_running_": 6
- "isolate": 15
- "j": 4
- "jsFileEnc": 2
- "jsFilePath": 5
- "jsFromScriptFile": 1
- "kASCIISize": 1
- "kAllowLazy": 1
- "kAllowModules": 1
- "kAllowNativesSyntax": 1
- "kCharacterLookaheadBufferSize": 3
- "kEndOfInput": 2
- "kGrowthFactory": 2
- "kInitialCapacity": 2
- "kIsIdentifierPart": 1
- "kIsIdentifierPart.get": 1
- "kIsIdentifierStart": 1
- "kIsIdentifierStart.get": 1
- "kIsLineTerminator": 1
- "kIsLineTerminator.get": 1
- "kIsWhiteSpace": 1
- "kIsWhiteSpace.get": 1
- "kLanguageModeMask": 4
- "kMaxAsciiCharCodeU": 1
- "kMaxGrowth": 2
- "kMinConversionSlack": 1
- "kNoOctalLocation": 1
- "kNoParsingFlags": 1
- "kNonStrictEquality": 1
- "kNullValue": 1
- "kPageSizeBits": 1
- "kStrictEquality": 1
- "kUC16Size": 2
- "kUndefinedValue": 1
- "kernel": 2
- "key": 1
- "key.GetPubKey": 1
- "key.SetCompactSignature": 1
- "key2": 1
- "key2.GetPubKey": 1
- "key2.SetSecret": 1
- "keyRec": 5
- "key_error": 6
- "keyword": 1
- "l": 1
- "length": 8
- "libraryPath": 5
- "list": 1
- "literal": 2
- "literal.Complete": 2
- "literal_ascii_string": 1
- "literal_buffer1_": 3
- "literal_buffer2_": 2
- "literal_chars": 1
- "literal_contains_escapes": 1
- "literal_length": 1
- "literal_utf16_string": 1
- "loadJSForDebug": 2
- "location": 4
- "location.beg_pos": 1
- "location.end_pos": 1
- "lock": 1
- "m_map": 2
- "m_map.insert": 1
- "m_tempHarness": 1
- "m_tempWrapper": 1
- "mailing": 1
- "main": 2
- "make": 1
- "memcpy": 1
- "messageHandler": 2
- "min_capacity": 2
- "minidump_id": 1
- "modules": 2
- "msg": 1
- "msglen": 2
- "n": 7
- "nBitsR": 3
- "nBitsS": 3
- "nRecId": 4
- "nSize": 2
- "nV": 6
- "name": 3
- "namespace": 10
- "new": 2
- "new_capacity": 2
- "new_content_size": 4
- "new_store": 6
- "new_store.start": 3
- "next": 2
- "next_": 2
- "next_.literal_chars": 13
- "next_.location": 1
- "next_.location.beg_pos": 3
- "next_.location.end_pos": 4
- "next_.token": 3
- "next_literal_ascii_string": 1
- "next_literal_length": 1
- "next_literal_utf16_string": 1
- "octal": 1
- "octal_pos_": 5
- "octal_position": 1
- "odata": 2
- "ok": 3
- "one_char_tokens": 2
- "operator": 5
- "order": 8
- "ourselves": 1
- "p": 1
- "parse": 3
- "peek": 1
- "peek_location": 1
- "phantom": 1
- "phantom.execute": 1
- "phantom.returnValue": 1
- "pkey": 14
- "pos": 12
- "pos_": 6
- "position_": 17
- "priv_key": 2
- "private": 8
- "private_random_seed": 1
- "protected": 4
- "pub_key": 6
- "public": 20
- "qInstallMsgHandler": 1
- "quote": 2
- "r": 9
- "r.double_value": 3
- "r.uint64_t_value": 1
- "random": 1
- "random_base": 3
- "random_bits": 2
- "random_seed": 1
- "readResourceFileUtf8": 1
- "recid": 3
- "reinterpret_cast": 6
- "report": 2
- "resolver": 3
- "resourceFilePath": 1
- "ret": 23
- "return": 107
- "rr": 4
- "runtime_error": 2
- "s": 5
- "scanner_": 5
- "scanner_contants": 1
- "scoping": 2
- "script": 1
- "scriptPath": 1
- "secret": 2
- "secure_allocator": 2
- "seed": 2
- "seed_random": 2
- "seen_equal": 1
- "seen_period": 1
- "self": 2
- "set": 1
- "set_value": 1
- "setup.": 1
- "shouldn": 1
- "showUsage": 1
- "sig": 11
- "sizeof": 6
- "sor": 3
- "source": 6
- "source_": 7
- "source_length": 3
- "source_pos": 10
- "src": 2
- "start_position": 2
- "startingScript": 2
- "state": 15
- "static": 56
- "static_cast": 7
- "std": 18
- "str": 2
- "string": 1
- "struct": 2
- "succeeded": 1
- "sure": 1
- "switch": 2
- "t": 6
- "take_snapshot": 1
- "tex": 4
- "tex.addressMode": 2
- "tex.filterMode": 1
- "tex.normalized": 1
- "tex2D": 1
- "texture": 1
- "the": 5
- "then": 2
- "this": 2
- "threadIdx.x": 1
- "threadIdx.y": 1
- "thread_id": 1
- "throw": 4
- "to": 3
- "tok": 2
- "token": 61
- "true": 31
- "type": 1
- "typedef": 5
- "u": 6
- "uc16": 5
- "uc16*": 3
- "uc32": 19
- "uchar": 4
- "uint160": 8
- "uint256": 10
- "uint32_t": 8
- "uint32_t*": 2
- "uint64_t": 2
- "uint64_t_value": 1
- "unibrow": 11
- "unicode_cache": 3
- "unicode_cache_": 10
- "union": 1
- "unsigned": 16
- "up": 1
- "use_crankshaft_": 6
- "using": 1
- "utf16_literal": 3
- "utf8_decoder": 1
- "utf8_decoder_": 2
- "v": 3
- "v8": 5
- "val": 3
- "valid": 1
- "value": 3
- "vchPrivKey": 1
- "vchPubKey": 6
- "vchPubKey.begin": 1
- "vchPubKey.end": 1
- "vchPubKey.size": 3
- "vchPubKeyIn": 2
- "vchSecret": 1
- "vchSig": 18
- "vchSig.clear": 2
- "vchSig.resize": 2
- "vchSig.size": 2
- "vector": 14
- "virtual": 4
- "void": 58
- "void*": 1
- "w": 1
- "want": 1
- "while": 6
- "width": 5
- "width*height*sizeof": 1
- "with": 1
- "wrong": 1
- "x": 19
- "xFEFF": 1
- "xFFFE": 1
- "xFFFF": 2
- "xx": 1
- "xxx": 1
- "y": 4
- "y*width": 1
- "zero": 3
- "{": 283
- "|": 2
- "||": 8
- "}": 285
- "Ceylon":
- "(": 4
- ")": 4
- ";": 4
- "<=>": 1
- "<Test>": 1
- "Comparable": 1
- "Comparison": 1
- "String": 2
- "Test": 2
- "actual": 2
- "by": 1
- "class": 1
- "compare": 1
- "doc": 2
- "name": 4
- "other": 1
- "other.name": 1
- "print": 1
- "return": 1
- "satisfies": 1
- "shared": 5
- "string": 1
- "test": 1
- "void": 1
- "{": 3
- "}": 3
- "CoffeeScript":
- "#": 208
- "#.*": 1
- "&": 1
- "&&": 1
- "(": 153
- ")": 151
- "*": 16
- "+": 24
- "-": 64
- ".": 11
- "...": 2
- "..1": 1
- "./nodes": 1
- ".POW_TIMEOUT": 1
- ".POW_WORKERS": 1
- "._nodeModulePaths": 1
- ".compile": 1
- ".constructor": 1
- ".getTime": 1
- ".isEmpty": 1
- ".join": 1
- ".replace": 1
- ".rvmrc": 2
- ".spaced": 1
- ".toString": 2
- ".trim": 1
- ".type": 1
- "/": 27
- "/.exec": 2
- "/.test": 4
- "//": 1
- "///": 7
- "///g": 1
- "/E/.test": 1
- "/dev/null": 1
- "/g": 2
- "<": 4
- "<=>": 1
- "@balancedString": 1
- "@chunk": 8
- "@chunk.charAt": 3
- "@chunk.match": 1
- "@configuration": 1
- "@configuration.dstPort.toString": 1
- "@configuration.env": 1
- "@configuration.getLogger": 1
- "@configuration.rvmPath": 1
- "@configuration.timeout": 1
- "@configuration.workers": 1
- "@constructor.rvmBoilerplate": 1
- "@domain": 3
- "@ends.push": 1
- "@error": 8
- "@escapeLines": 1
- "@extract": 1
- "@extractSubdomain": 1
- "@firstHost": 1
- "@for": 2
- "@handleRequest": 1
- "@heregexToken": 1
- "@indent": 1
- "@initialize": 2
- "@interpolateString": 1
- "@line": 3
- "@loadEnvironment": 1
- "@loadRvmEnvironment": 1
- "@loadScriptEnvironment": 1
- "@logger": 1
- "@logger.debug": 2
- "@logger.error": 3
- "@logger.info": 1
- "@logger.warning": 1
- "@mtime": 5
- "@name": 2
- "@on": 1
- "@pair": 1
- "@pool": 2
- "@pool.on": 2
- "@pool.proxy": 1
- "@pool.quit": 1
- "@pool.runOnce": 1
- "@pool.stderr": 1
- "@pool.stdout": 1
- "@pos": 1
- "@queryRestartFile": 2
- "@quit": 3
- "@quitCallbacks": 3
- "@quitCallbacks.push": 1
- "@ready": 3
- "@readyCallbacks": 3
- "@readyCallbacks.push": 1
- "@restart": 1
- "@restartIfNecessary": 1
- "@root": 8
- "@rootAddress": 2
- "@sanitizeHeredoc": 2
- "@seenFor": 4
- "@setPoolRunOnceFlag": 1
- "@soa": 2
- "@statCallbacks": 3
- "@statCallbacks.length": 1
- "@statCallbacks.push": 1
- "@state": 11
- "@tag": 2
- "@terminate": 2
- "@token": 10
- "@tokens": 3
- "@tokens.pop": 1
- "@value": 1
- "@yylineno": 1
- "@yytext": 1
- "Animal": 3
- "Array": 1
- "BOOL": 1
- "BOX": 1
- "CALLABLE": 2
- "CALLABLE.concat": 1
- "CALL_START": 2
- "COFFEE_ALIASES": 1
- "COFFEE_ALIAS_MAP": 1
- "COFFEE_KEYWORDS": 1
- "COMMENT": 1
- "COMPARE": 3
- "COMPOUND_ASSIGN": 2
- "CoffeeScript": 1
- "CoffeeScript.compile": 2
- "CoffeeScript.eval": 1
- "CoffeeScript.load": 2
- "CoffeeScript.require": 1
- "CoffeeScript.run": 3
- "Date": 1
- "EXTENDS": 1
- "Error": 1
- "Function": 1
- "HEREDOC.exec": 1
- "HEREDOC_ILLEGAL": 1
- "HEREDOC_ILLEGAL.test": 1
- "HEREDOC_INDENT": 1
- "HEREDOC_INDENT.exec": 1
- "HEREGEX": 1
- "HEREGEX.exec": 1
- "HEREGEX_OMIT": 2
- "Hello": 1
- "Horse": 2
- "IDENTIFIER": 1
- "IDENTIFIER.exec": 1
- "INDEXABLE": 2
- "INVERSES": 2
- "JSTOKEN": 1
- "JSTOKEN.exec": 1
- "JS_FORBIDDEN": 1
- "JS_KEYWORDS": 1
- "LINE_BREAK": 2
- "LINE_CONTINUER": 1
- "LOGIC": 3
- "Lexer": 3
- "MATH": 3
- "MULTILINER": 2
- "Matches": 1
- "Math.sqrt": 1
- "Module": 2
- "Module._load": 1
- "Module._nodeModulePaths": 1
- "Module._resolveFilename": 1
- "NOT_REGEX": 2
- "NOT_REGEX.concat": 1
- "NOT_SPACED_REGEX": 2
- "NS_C_IN": 5
- "NS_RCODE_NXDOMAIN": 2
- "NS_T_A": 3
- "NS_T_CNAME": 1
- "NS_T_NS": 2
- "NS_T_SOA": 2
- "NUMBER.exec": 1
- "OUTDENT": 1
- "Object.getOwnPropertyNames": 1
- "PARAM_END": 1
- "PARAM_START": 1
- "REGEX": 2
- "REGEX.exec": 1
- "RELATION": 3
- "RESERVED": 3
- "RackApplication": 1
- "RegExp": 1
- "Rewriter": 1
- "S": 4
- "SERVER_PORT": 1
- "SHIFT": 3
- "SIMPLESTR.exec": 1
- "STRING": 2
- "Script": 2
- "Script.createContext": 2
- "Server": 2
- "Snake": 2
- "String": 1
- "Subdomain": 1
- "Subdomain.extract": 1
- "THROW": 1
- "TOKENS": 1
- "TRAILING_SPACES": 1
- "TYPE": 1
- "UNARY": 4
- "WHITESPACE.test": 1
- "XMLHttpRequest": 1
- "__bind": 1
- "__extends": 1
- "__hasProp": 1
- "__indexOf": 1
- "__slice": 1
- "_module": 3
- "_module.filename": 1
- "_module.paths": 1
- "_require": 2
- "_require.paths": 1
- "_require.resolve": 1
- "addEventListener": 1
- "address": 4
- "alert": 4
- "alwaysRestart": 2
- "and": 20
- "arguments": 1
- "as": 1
- "async": 1
- "async.reduce": 1
- "attachEvent": 1
- "attempt": 2
- "attempt.length": 1
- "b": 1
- "basename": 2
- "before": 2
- "begin": 1
- "being": 1
- "binaryLiteral": 2
- "body": 1
- "body.indexOf": 1
- "body.replace": 1
- "boilerplate": 2
- "break": 1
- "bufferLines": 3
- "by": 1
- "callback": 35
- "cannot": 1
- "case": 1
- "catch": 2
- "class": 8
- "code": 18
- "code.replace": 1
- "code.trim": 1
- "coffees": 2
- "coffees.length": 1
- "colon": 3
- "comment": 2
- "comment.length": 1
- "commentToken": 1
- "comments": 1
- "compact": 1
- "compile": 5
- "console.log": 1
- "const": 1
- "constructor": 5
- "consumes": 1
- "content": 4
- "contents": 3
- "continue": 1
- "count": 5
- "createSOA": 2
- "cube": 1
- "cubes": 1
- "d": 2
- "d*": 1
- "debugger": 1
- "default": 1
- "delete": 1
- "dnsserver": 1
- "dnsserver.Server": 1
- "dnsserver.createSOA": 1
- "do": 2
- "doc": 10
- "doc.indexOf": 1
- "doc.replace": 2
- "document.getElementsByTagName": 1
- "domain": 6
- "domain.length": 1
- "domain.toLowerCase": 1
- "else": 48
- "elvis": 1
- "enum": 1
- "env": 18
- "err": 20
- "err.message": 2
- "eval": 2
- "execute": 3
- "exists": 5
- "expire": 2
- "export": 1
- "exports.Lexer": 1
- "exports.RESERVED": 1
- "exports.Server": 1
- "exports.Subdomain": 1
- "exports.VERSION": 1
- "exports.compile": 1
- "exports.createServer": 1
- "exports.eval": 1
- "exports.helpers": 2
- "exports.nodes": 1
- "exports.run": 1
- "exports.tokens": 1
- "expressions": 1
- "extends": 4
- "extractSubdomain": 1
- "false": 4
- "filename": 6
- "finally": 2
- "flags": 2
- "for": 9
- "forcedIdentifier": 4
- "fs": 2
- "fs.readFile": 1
- "fs.readFileSync": 1
- "fs.realpathSync": 2
- "fs.stat": 1
- "function": 1
- "global": 3
- "handle": 1
- "handleRequest": 1
- "header": 1
- "here": 3
- "herecomment": 3
- "heredoc": 4
- "heredoc.charAt": 1
- "heredocToken": 1
- "heregex": 1
- "heregexToken": 1
- "id": 16
- "id.length": 1
- "id.reserved": 1
- "id.toUpperCase": 1
- "identifierToken": 1
- "idle": 1
- "if": 91
- "imgy": 2
- "implements": 1
- "import": 1
- "in": 27
- "indent": 7
- "indent.length": 1
- "index": 2
- "indexOf": 1
- "initialize": 1
- "input": 1
- "input.length": 1
- "instanceof": 2
- "interface": 1
- "interpolateString": 1
- "is": 31
- "isARequest": 2
- "isNSRequest": 2
- "isnt": 6
- "join": 8
- "js": 5
- "jsToken": 1
- "k": 4
- "last": 3
- "lastMtime": 2
- "length": 4
- "let": 2
- "lex": 1
- "lexedLength": 2
- "lexer": 1
- "lexer.tokenize": 3
- "libexecPath": 1
- "line": 5
- "list": 2
- "loadEnvironment": 1
- "loadRvmEnvironment": 1
- "loadScriptEnvironment": 1
- "loop": 1
- "mainModule": 1
- "mainModule._compile": 2
- "mainModule.filename": 4
- "mainModule.moduleCache": 1
- "mainModule.paths": 1
- "makeString": 1
- "match": 23
- "match.length": 1
- "math": 1
- "math.cube": 1
- "merge": 1
- "meters": 2
- "minimum": 2
- "missing": 1
- "mname": 2
- "module": 1
- "module._compile": 1
- "module.exports": 1
- "move": 3
- "mtimeChanged": 2
- "n": 10
- "n#": 1
- "n/": 1
- "n/g": 1
- "nack": 1
- "nack.createPool": 1
- "name": 5
- "name.capitalize": 1
- "name.length": 1
- "name.slice": 2
- "name.toLowerCase": 1
- "native": 1
- "new": 11
- "next": 3
- "no": 3
- "not": 4
- "null": 15
- "num": 2
- "number": 13
- "number.length": 1
- "numberToken": 1
- "o": 4
- "o.bare": 1
- "octalEsc": 1
- "octalLiteral": 2
- "of": 4
- "offset": 4
- "on": 3
- "opposite": 2
- "options": 16
- "options.bare": 2
- "options.filename": 5
- "options.header": 1
- "options.modulename": 1
- "options.sandbox": 4
- "opts": 1
- "or": 10
- "own": 2
- "package": 1
- "parseInt": 3
- "parser": 1
- "parser.lexer": 1
- "parser.parse": 3
- "path": 3
- "path.dirname": 2
- "path.extname": 1
- "pause": 2
- "powrc": 2
- "prev": 17
- "prev.spaced": 3
- "print": 1
- "private": 1
- "process": 2
- "process.argv": 1
- "process.cwd": 1
- "protected": 1
- "public": 1
- "queryRestartFile": 1
- "question": 5
- "question.class": 2
- "question.name": 3
- "question.type": 2
- "quit": 1
- "quitCallback": 2
- "quote": 5
- "r": 4
- "r/g": 1
- "race": 1
- "re": 1
- "ready": 1
- "readyCallback": 2
- "refresh": 2
- "regex": 4
- "regexToken": 1
- "regular": 1
- "req": 4
- "req.proxyMetaVariables": 1
- "req.question": 1
- "request": 2
- "require": 20
- "require.extensions": 3
- "require.main": 1
- "require.registerExtension": 2
- "res": 3
- "res.addRR": 2
- "res.header.rcode": 1
- "res.send": 1
- "reserved": 1
- "resolve": 2
- "restart": 1
- "restartIfNecessary": 1
- "resume": 2
- "retry": 2
- "return": 22
- "rname": 2
- "root": 1
- "runScripts": 3
- "runners": 1
- "runners...": 1
- "rvm": 1
- "rvmExists": 2
- "rvm_path/scripts/rvm": 2
- "rvmrcExists": 2
- "s": 8
- "s*": 1
- "s.type": 1
- "sam": 1
- "sam.move": 1
- "sandbox": 8
- "sandbox.GLOBAL": 1
- "sandbox.__dirname": 1
- "sandbox.__filename": 3
- "sandbox.global": 1
- "sandbox.module": 2
- "sandbox.require": 2
- "sandbox.root": 1
- "sanitizeHeredoc": 1
- "script": 7
- "script.innerHTML": 1
- "script.length": 1
- "script.src": 2
- "scriptExists": 2
- "scripts": 2
- "serial": 2
- "setPoolRunOnceFlag": 1
- "size": 1
- "source": 5
- "sourceScriptEnv": 3
- "spaced": 1
- "square": 4
- "stack.pop": 1
- "starting": 1
- "starts": 1
- "statCallback": 2
- "static": 1
- "stats": 1
- "stats.mtime.getTime": 1
- "string": 6
- "string.indexOf": 1
- "string.length": 1
- "stringToken": 1
- "subdomain": 7
- "subdomain.getAddress": 1
- "super": 4
- "switch": 5
- "t": 1
- "tag": 29
- "terminate": 1
- "then": 22
- "this": 1
- "throw": 3
- "token": 1
- "tokenize": 1
- "tom": 1
- "tom.move": 1
- "true": 8
- "try": 3
- "typeof": 2
- "undefined": 1
- "unless": 16
- "until": 1
- "url": 2
- "used": 1
- "v": 4
- "value": 14
- "value.length": 2
- "var": 1
- "vm": 1
- "vm.Script": 1
- "vm.runInContext": 1
- "vm.runInThisContext": 1
- "void": 1
- "w": 2
- "when": 13
- "while": 2
- "window": 1
- "window.ActiveXObject": 1
- "window.addEventListener": 1
- "winner": 2
- "with": 2
- "word": 1
- "writeRvmBoilerplate": 1
- "x": 6
- "x/.test": 1
- "xhr": 2
- "xhr.onreadystatechange": 1
- "xhr.open": 1
- "xhr.overrideMimeType": 1
- "xhr.readyState": 1
- "xhr.responseText": 1
- "xhr.send": 1
- "xhr.status": 1
- "yes": 4
- "yield": 1
- "{": 28
- "|": 5
- "||": 3
- "}": 31
- "Coq":
- "%": 2
- "&": 19
- "(": 1228
- "(*": 102
- ")": 1240
- "*": 55
- "*)": 102
- "*.": 58
- "+": 228
- "-": 445
- ".": 469
- "..": 4
- "/": 37
- "0": 5
- "1": 2
- "2": 2
- ";": 376
- "<": 65
- "<->": 32
- "<=>": 9
- "<=m}>": 1
- "<=n),>": 1
- "<=n}>": 1
- "@HdRel_inv": 2
- "@In": 1
- "@Permutation": 6
- "@app": 1
- "@if_eqA_rewrite_l": 2
- "@length": 1
- "@meq": 4
- "@munion": 1
- "@rev": 1
- "A": 102
- "A.": 7
- "A1": 3
- "A1.": 1
- "A2": 4
- "AExp.": 1
- "AId": 19
- "AMinus": 11
- "AMult": 11
- "ANum": 36
- "APlus": 15
- "Abs": 2
- "Alternative": 1
- "Arguments": 11
- "Arguments.": 2
- "Arith.": 2
- "B": 8
- "BAnd": 5
- "BD.": 1
- "BEq": 6
- "BFalse": 4
- "BLe": 6
- "BNot": 7
- "BO": 4
- "BTrue": 6
- "Basics.": 2
- "CAss": 2
- "CIf": 2
- "CSeq": 2
- "CSkip": 1
- "CSkip.": 1
- "CWhile": 2
- "Case": 48
- "Case.": 1
- "Case_aux": 45
- "Coiso1.": 2
- "Coiso2.": 3
- "Compare_dec": 1
- "ConT3": 1
- "Constructors": 2
- "Context.": 1
- "D": 9
- "DO": 5
- "Defined.": 1
- "Definition": 58
- "E": 9
- "E.": 2
- "E1": 2
- "E1.": 1
- "E2": 1
- "E2.": 3
- "ELSE": 3
- "END": 2
- "END.": 3
- "EQ": 8
- "EQ.": 2
- "E_Ass": 2
- "E_Ass.": 3
- "E_Const": 2
- "E_IfFalse.": 2
- "E_Plus": 2
- "E_Seq": 3
- "E_Skip.": 1
- "E_WhileEnd.": 1
- "E_WhileLoop": 1
- "EmptyBag": 2
- "End": 13
- "Eqdep_dec.": 1
- "Equivalence": 2
- "Equivalence_Reflexive": 1
- "Equivalence_Reflexive.": 1
- "Example": 40
- "Export": 10
- "FI": 3
- "Fact": 3
- "False.": 1
- "Fixpoint": 36
- "Forall2": 1
- "G": 6
- "Gamma": 10
- "Global": 4
- "H": 77
- "H.": 76
- "H0": 15
- "H0.": 9
- "H1": 18
- "H1.": 29
- "H11": 2
- "H11.": 1
- "H12": 5
- "H12.": 1
- "H2": 14
- "H2.": 18
- "H21": 3
- "H22": 2
- "H22.": 1
- "H3": 4
- "H3.": 4
- "H4": 5
- "H4.": 1
- "H6": 3
- "HE": 1
- "HE.": 1
- "HSnx": 1
- "HSnx.": 1
- "HT": 1
- "HT.": 1
- "HT1.": 1
- "HX": 1
- "Ha": 6
- "Ha.": 1
- "Hafi.": 2
- "Hal": 2
- "Hce": 1
- "Hce.": 1
- "Hceval.": 2
- "HdRel": 4
- "Hdec": 3
- "He1": 2
- "He1.": 1
- "He2": 1
- "He2.": 2
- "HeapT3": 1
- "Heq": 8
- "Heq.": 6
- "HeqA.": 1
- "HeqA1": 1
- "HeqA1.": 1
- "HeqCoiso1.": 1
- "HeqCoiso2.": 1
- "HeqS": 3
- "HeqS.": 2
- "Heqe.": 3
- "Heqf": 1
- "Heqf.": 2
- "Heqg": 1
- "Heqm": 5
- "Heqm.": 1
- "Heqr": 3
- "Heqr1": 1
- "Heqst1": 4
- "Heqx": 4
- "Heqx.": 2
- "Heqy": 1
- "Heval.": 4
- "Hf": 15
- "Hf.": 1
- "Hf1": 1
- "Hf2": 1
- "Hf3": 2
- "Hfbound": 1
- "Hfbound.": 2
- "Hfinj": 1
- "Hfinj.": 3
- "Hfsurj": 2
- "Hfx": 2
- "Hg": 2
- "Hgefx": 1
- "Hgefy": 1
- "Hginj": 1
- "Hgsurj": 3
- "Hgsurj.": 1
- "Hint": 8
- "Hl": 3
- "Hl.": 1
- "Hle": 2
- "Hle.": 2
- "Hlefx": 1
- "Hlefy": 1
- "Hlep": 4
- "Hlep.": 3
- "Hlt": 3
- "Hlt.": 1
- "Hm": 1
- "Hmn": 1
- "Hmn.": 1
- "Hmo": 1
- "Hmo.": 4
- "Hn": 1
- "Hneq": 7
- "Hneq.": 2
- "Hneqx": 1
- "Hneqx.": 2
- "Hneqy": 1
- "Hneqy.": 2
- "Hnil": 1
- "Hnm": 3
- "Hnm.": 3
- "Hp": 5
- "Hperm": 4
- "Hpermmm": 1
- "Hpq.": 1
- "Hq": 3
- "Hskip": 3
- "Hswap": 2
- "Ht": 1
- "Ht.": 3
- "Htrans": 1
- "Htrans.": 1
- "Hx": 24
- "Hx.": 4
- "Hxx": 1
- "Hy": 17
- "Hy.": 3
- "Hy0": 1
- "Hy1": 2
- "Hy1.": 5
- "Hy2": 3
- "Hy2.": 2
- "Hypothesis": 7
- "IFB": 3
- "IH": 4
- "IHHT1.": 1
- "IHHT2.": 1
- "IHHce1": 1
- "IHHce2": 1
- "IHHmo.": 1
- "IHHy1": 2
- "IHP": 1
- "IHP2": 1
- "IHPermutation1": 1
- "IHPermutation2": 1
- "IHb": 1
- "IHclos_refl_trans1.": 2
- "IHclos_refl_trans2.": 2
- "IHe1.": 11
- "IHe2.": 10
- "IHhas_type.": 1
- "IHhas_type1.": 1
- "IHhas_type2.": 1
- "IHi": 3
- "IHl": 8
- "IHl.": 8
- "IHl1": 1
- "IHl1.": 1
- "IHle.": 1
- "IHm": 2
- "IHm.": 1
- "IHn": 13
- "IHn.": 3
- "IHp": 2
- "IHp.": 2
- "IHrefl_step_closure": 1
- "IHrefl_step_closure.": 1
- "IHs.": 2
- "IHt.": 1
- "IHt1": 2
- "IHt1.": 1
- "IHt2": 3
- "IHt3": 1
- "Id": 8
- "Immediate": 1
- "Imp.": 1
- "Implicit": 15
- "Import": 11
- "In": 7
- "InA": 8
- "InA_split": 2
- "Inductive": 38
- "Injection": 1
- "Instance": 6
- "K_dec_set": 1
- "L12": 2
- "LE": 11
- "LE.": 3
- "LT": 14
- "LT.": 5
- "LeA": 1
- "LeA.": 1
- "Lemma": 56
- "Let": 9
- "List": 2
- "ListNotations.": 1
- "Lists.": 1
- "Local": 6
- "Logic.": 1
- "Logic.eq": 2
- "Lt.S_pred": 3
- "Lt.le_lt_or_eq": 3
- "Lt.le_or_lt": 1
- "Lt.lt_irrefl": 2
- "Lt.lt_le_trans": 2
- "Lt.lt_not_le": 2
- "Ltac": 1
- "M": 4
- "Mergesort.": 1
- "Minus.minus_Sn_m": 1
- "Module": 9
- "Morphisms.": 2
- "Multiset": 2
- "N": 2
- "NEQ": 1
- "NatList.": 2
- "NoDup": 2
- "NoDupA": 3
- "NoDupA_equivlistA_permut": 1
- "NoDup_Permutation": 1
- "NoDup_Permutation_bis": 2
- "NoDup_cardinal_incl": 2
- "NoDup_remove_1": 1
- "None": 17
- "None.": 2
- "Nonsense.": 4
- "Notation": 43
- "O": 97
- "O.": 4
- "Omega": 1
- "P": 31
- "P.": 5
- "PD": 2
- "PG": 2
- "PN.": 2
- "Permut.": 1
- "PermutSetoid": 1
- "Permut_permut.": 1
- "Permutation": 42
- "Permutation.": 1
- "Permutation_NoDup": 1
- "Permutation_add_inside": 1
- "Permutation_alt": 1
- "Permutation_alt.": 1
- "Permutation_app": 1
- "Permutation_app.": 1
- "Permutation_app_comm": 3
- "Permutation_app_head": 1
- "Permutation_app_inv": 2
- "Permutation_app_inv_l": 1
- "Permutation_app_inv_r": 1
- "Permutation_app_swap": 1
- "Permutation_app_tail": 1
- "Permutation_cons_app": 2
- "Permutation_cons_app_inv": 1
- "Permutation_cons_append": 1
- "Permutation_cons_append.": 3
- "Permutation_cons_inv": 2
- "Permutation_impl_permutation": 1
- "Permutation_in.": 2
- "Permutation_ind_bis": 2
- "Permutation_length": 2
- "Permutation_length.": 1
- "Permutation_length_1": 1
- "Permutation_length_1_inv": 3
- "Permutation_length_2": 1
- "Permutation_length_2_inv": 2
- "Permutation_map": 1
- "Permutation_middle": 2
- "Permutation_nil": 1
- "Permutation_nil_app_cons": 1
- "Permutation_nth_error": 2
- "Permutation_rev": 3
- "Permutation_trans": 1
- "Playground1.": 5
- "Proof": 12
- "Proof.": 203
- "Prop": 13
- "Prop.": 1
- "Proper": 5
- "Q": 3
- "Q.": 2
- "Qed": 23
- "Qed.": 197
- "R": 54
- "Relations": 2
- "Relations.": 1
- "Require": 17
- "Reserved": 3
- "Resolve": 5
- "S": 181
- "S.": 1
- "SCase": 24
- "SCase.": 3
- "SKIP": 3
- "SLoad": 4
- "SMinus": 9
- "SMult": 9
- "SPlus": 8
- "SPush": 6
- "SSCase": 5
- "STLC.": 1
- "ST_App1.": 2
- "ST_App2": 1
- "ST_App2.": 1
- "ST_AppAbs.": 3
- "ST_Funny": 1
- "ST_If": 1
- "ST_If.": 2
- "ST_IfFalse": 1
- "ST_IfFalse.": 1
- "ST_IfTrue": 1
- "ST_IfTrue.": 1
- "ST_Plus1": 2
- "ST_Plus1.": 2
- "ST_Plus2.": 2
- "ST_PlusConstConst": 3
- "ST_PlusConstConst.": 3
- "ST_ShortCut.": 1
- "S_nbeq_0": 1
- "Scheme": 1
- "Section": 4
- "Set": 4
- "Setoid": 1
- "SetoidList.": 1
- "SfLib.": 2
- "SimpleArith0.": 2
- "SimpleArith1.": 2
- "SimpleArith2.": 1
- "SingletonBag": 2
- "Sn_le_Sm__n_le_m": 2
- "Sn_le_Sm__n_le_m.": 1
- "Some": 26
- "Sorted": 5
- "Sorted.": 1
- "Sorted_inv": 2
- "Sorting.": 1
- "T": 49
- "T.": 9
- "T0": 2
- "T1": 25
- "T11": 2
- "T11.": 4
- "T12": 2
- "T2": 20
- "T2.": 1
- "T3": 2
- "THEN": 3
- "TODO": 1
- "T_Abs.": 1
- "T_App": 2
- "T_Var.": 1
- "Tactic": 10
- "Temp1.": 1
- "Temp2.": 1
- "Temp3.": 1
- "Temp4.": 2
- "Temp5.": 1
- "Theorem": 111
- "Tree": 24
- "Tree.": 1
- "Tree_Leaf": 9
- "Tree_Leaf.": 1
- "Tree_Node": 11
- "True": 1
- "Type": 88
- "Type.": 3
- "V": 6
- "V1": 5
- "V2": 4
- "Variable": 7
- "WHILE": 5
- "X": 212
- "X.": 4
- "X0": 2
- "XtimesYinZ": 1
- "XtimesYinZ_spec": 1
- "Y": 49
- "Y.": 1
- "Z": 24
- "_": 68
- "a": 210
- "a*b": 1
- "a.": 5
- "a0": 11
- "a0.": 1
- "a1": 56
- "a2": 59
- "adapt": 4
- "adapt.": 2
- "adapt_injective": 1
- "adapt_injective.": 1
- "adapt_ok": 2
- "aeval": 44
- "aexp": 37
- "aexp.": 2
- "aexp1": 1
- "al": 3
- "all3_spec": 1
- "and": 1
- "andb": 6
- "andb3": 5
- "andb_false_r": 1
- "antisymmetric": 3
- "app": 5
- "app_ass": 1
- "app_ass.": 6
- "app_assoc": 2
- "app_comm_cons": 3
- "app_length": 2
- "app_length.": 2
- "app_nil_end": 1
- "app_nil_end.": 1
- "app_nil_r": 2
- "appears_free_in": 1
- "apply": 325
- "arith": 5
- "arith.": 8
- "as": 90
- "assert": 55
- "assertion": 3
- "associativity": 10
- "assumption": 3
- "assumption.": 49
- "at": 19
- "auto": 77
- "auto.": 48
- "b": 79
- "b.": 9
- "b1": 28
- "b1.": 1
- "b2": 23
- "b3": 2
- "bad": 1
- "bag": 3
- "base": 3
- "beq_id": 13
- "beq_id_eq": 5
- "beq_id_false_not_eq.": 1
- "beq_id_refl": 1
- "beq_nat": 19
- "beq_nat_O_l": 1
- "beq_nat_O_r": 1
- "beq_nat_eq": 1
- "beq_nat_refl": 3
- "beq_nat_sym": 1
- "beq_natlist": 5
- "beq_natlist_refl": 1
- "beval": 12
- "bexp": 22
- "bexp.": 2
- "bexp1": 1
- "bin": 9
- "bin.": 1
- "bin2un": 3
- "bin_comm": 1
- "bind_option": 1
- "bl": 3
- "ble_n_Sn.": 1
- "ble_nat": 5
- "bool": 33
- "bool.": 1
- "bool_step_prop4": 1
- "bool_step_prop4.": 2
- "bool_step_prop4_holds": 1
- "bounded": 1
- "break_list": 4
- "build_heap": 3
- "by": 9
- "c": 88
- "c.": 2
- "c1": 16
- "c2": 11
- "card": 2
- "card_inj": 1
- "card_inj_aux": 1
- "card_interval": 1
- "card_interval.": 2
- "case": 2
- "ceval__ceval_step": 3
- "ceval__ceval_step.": 1
- "ceval_and_ceval_step_coincide": 1
- "ceval_cases": 1
- "ceval_deterministic": 1
- "ceval_example1": 1
- "ceval_example2": 1
- "ceval_step": 8
- "ceval_step1": 3
- "ceval_step2": 4
- "ceval_step3": 5
- "ceval_step__ceval": 1
- "ceval_step__ceval.": 1
- "ceval_step_more": 5
- "change": 1
- "characterization": 1
- "clear": 11
- "clos_refl_trans": 8
- "com": 22
- "com.": 1
- "com_cases": 1
- "combine": 3
- "compatible": 1
- "congruence.": 1
- "cons": 27
- "cons_leA": 2
- "cons_leA.": 2
- "cons_sort": 2
- "constfun": 1
- "constructor": 4
- "constructor.": 6
- "contents": 12
- "context": 1
- "context_invariance...": 2
- "contra.": 14
- "contradict": 3
- "contradiction": 8
- "count": 7
- "countoddmembers": 1
- "curry_uncurry": 1
- "d": 7
- "datatypes.": 47
- "day": 9
- "day.": 1
- "decide": 1
- "decide_left": 1
- "defs.": 2
- "dep_pair_intro": 2
- "dep_pair_intro.": 3
- "dependent": 5
- "destruct": 85
- "discriminate": 4
- "discriminate.": 1
- "do": 5
- "double": 2
- "double_injective": 1
- "e": 42
- "e.": 7
- "e1": 25
- "e1.": 1
- "e2": 27
- "e3": 1
- "eapply": 7
- "eauto": 8
- "eauto.": 7
- "elim": 21
- "else": 13
- "empty": 3
- "emptyBag": 4
- "empty_relation.": 1
- "empty_relation_not_partial_funcion": 1
- "empty_state": 13
- "empty_state.": 1
- "end": 14
- "end.": 52
- "eq": 4
- "eq.": 11
- "eq1": 6
- "eq1.": 11
- "eq2": 1
- "eq2.": 9
- "eqA": 28
- "eqA.": 1
- "eqA_dec": 26
- "eqA_dec.": 2
- "eqA_equiv": 1
- "eq_S.": 1
- "eq_add_S": 3
- "eq_nat_dec.": 1
- "eq_rect": 3
- "eq_rect_eq_nat": 2
- "eq_rect_eq_nat.": 1
- "equiv_Tree": 1
- "equivalence": 1
- "eval": 8
- "eval__value": 1
- "eval_cases": 1
- "evenb": 5
- "ex_falso_quodlibet.": 1
- "exact": 3
- "execute_theorem": 1
- "execute_theorem.": 1
- "exfalso.": 1
- "exist": 7
- "exists": 48
- "existsb": 3
- "existsb2": 2
- "existsb2.": 1
- "existsb_correct": 1
- "exp": 2
- "extend": 1
- "extend.": 2
- "extend_neq": 1
- "f": 120
- "f.": 4
- "f_equal": 1
- "f_equal.": 1
- "fact_body": 2
- "fact_com": 1
- "fact_loop": 1
- "fact_loop.": 1
- "factorial": 2
- "false": 42
- "false.": 11
- "filter": 3
- "first": 20
- "fix": 2
- "flat_exist": 3
- "flat_spec": 3
- "fmostlytrue": 5
- "fold": 1
- "fold_map": 2
- "fold_map.": 1
- "fold_map_correct": 1
- "forall": 224
- "forallb": 4
- "friday": 3
- "fst": 3
- "ftrue": 1
- "fun": 19
- "g": 6
- "generalize": 12
- "grumble": 3
- "gtA": 1
- "h": 14
- "h.": 1
- "h2": 1
- "has_type": 4
- "hd_opt": 8
- "head": 1
- "heap_exist": 3
- "heap_to_list": 2
- "i": 31
- "i1": 6
- "i2": 14
- "id": 10
- "idB": 2
- "idB.": 1
- "idBB": 2
- "idBBBB": 2
- "ident": 10
- "idtac": 1
- "if": 13
- "if_eqA": 1
- "if_eqA_refl": 3
- "if_eqA_rewrite_l": 1
- "if_eqA_rewrite_r": 1
- "if_eqA_then": 1
- "iff": 1
- "in": 147
- "in_app_iff": 1
- "in_map_iff": 1
- "in_map_iff.": 2
- "in_middle": 3
- "in_or_app": 1
- "in_seq": 4
- "in_split": 1
- "incbin": 2
- "incl": 3
- "index": 3
- "index_okx": 1
- "induction": 74
- "inj_restrict": 1
- "injection": 8
- "injective": 6
- "injective_bounded_surjective": 1
- "injective_map_NoDup": 2
- "insert": 2
- "insert_exist": 4
- "insert_spec": 3
- "interval_dec": 1
- "interval_dec.": 1
- "interval_discr": 1
- "into": 2
- "intro": 28
- "intros": 227
- "intros.": 27
- "intuition": 1
- "intuition.": 2
- "inversion": 90
- "inversion_clear": 6
- "invert_heap": 3
- "is": 4
- "is_heap": 18
- "is_heap_rec": 1
- "is_heap_rect": 1
- "j": 6
- "j.": 1
- "k": 7
- "k1": 20
- "k1.": 1
- "k2": 21
- "k2.": 1
- "k3": 6
- "k3.": 1
- "l": 378
- "l.": 26
- "l0": 7
- "l1": 104
- "l1.": 5
- "l2": 86
- "l2.": 10
- "l3": 12
- "l3.": 1
- "l4": 3
- "le": 1
- "le.": 4
- "leA": 25
- "leA_Tree": 16
- "leA_Tree_Leaf": 5
- "leA_Tree_Node": 1
- "leA_antisym": 1
- "leA_antisym.": 1
- "leA_dec": 4
- "leA_refl": 1
- "leA_refl.": 1
- "leA_trans": 2
- "le_O_n.": 2
- "le_S": 6
- "le_S.": 4
- "le_S_n": 2
- "le_Sn_le": 2
- "le_Sn_n": 5
- "le_antisymmetric": 1
- "le_antisymmetric.": 1
- "le_ind": 1
- "le_lt_dec": 9
- "le_lt_trans": 2
- "le_n": 4
- "le_n.": 6
- "le_n_O_eq.": 2
- "le_n_S": 1
- "le_neq_lt": 2
- "le_not_a_partial_function": 1
- "le_not_lt": 1
- "le_order": 1
- "le_reflexive": 1
- "le_reflexive.": 1
- "le_trans": 4
- "le_trans.": 1
- "le_uniqueness_proof": 1
- "left": 8
- "left.": 3
- "length": 23
- "let": 4
- "level": 13
- "list": 72
- "list123": 1
- "list_contents": 30
- "list_contents_app": 5
- "list_contents_app.": 1
- "list_to_heap": 2
- "loop": 1
- "loop_never_stops": 1
- "low_trans": 3
- "lt": 3
- "lt.": 2
- "lt_O_neq": 2
- "lt_irrefl": 2
- "lt_le_trans": 1
- "lt_n_Sn.": 1
- "lt_trans": 4
- "lx": 4
- "ly": 4
- "m": 189
- "m.": 19
- "m0": 1
- "m1": 1
- "m2.": 1
- "map": 4
- "map_length": 1
- "map_length.": 1
- "match": 71
- "meq": 15
- "meq.": 2
- "meq_congr": 1
- "meq_congr.": 1
- "meq_left": 1
- "meq_right": 2
- "meq_singleton": 1
- "meq_sym": 2
- "meq_trans": 10
- "meq_trans.": 1
- "merge": 5
- "merge0": 1
- "merge0.": 2
- "merge_exist": 5
- "merge_lem": 3
- "minus": 3
- "minustwo": 1
- "monday": 5
- "mult": 3
- "mult_0_plus": 1
- "mult_0_r.": 4
- "mult_1": 1
- "mult_1.": 1
- "mult_1_1": 1
- "mult_1_distr.": 1
- "mult_1_plus": 1
- "mult_assoc": 1
- "mult_comm": 2
- "mult_distr": 1
- "mult_mult": 1
- "mult_mult.": 3
- "mult_plus_1": 1
- "mult_plus_1.": 1
- "mult_plus_distr_r": 1
- "mult_plus_distr_r.": 1
- "multiplicity": 6
- "multiplicity_InA": 4
- "multiplicity_InA.": 1
- "multiplicity_InA_O": 2
- "multiplicity_InA_S": 1
- "multiplicity_NoDupA": 1
- "multiset": 2
- "mumble": 5
- "mumble.": 1
- "munion": 18
- "munion_ass": 1
- "munion_ass.": 2
- "munion_comm": 1
- "munion_comm.": 2
- "munion_rotate.": 1
- "n": 338
- "n.": 38
- "n0": 4
- "n1": 19
- "n2": 15
- "nandb": 5
- "nat": 91
- "nat.": 3
- "nat_bijection_Permutation": 1
- "nat_scope.": 3
- "natlist": 7
- "natoption": 5
- "natoption.": 1
- "natprod": 5
- "natprod.": 1
- "negb": 9
- "neq_dep_intro": 2
- "next_nat": 1
- "next_nat.": 1
- "next_nat_closure_is_le": 1
- "next_nat_partial_function": 1
- "next_weekday": 3
- "nf_same_as_value": 3
- "nil": 39
- "nil.": 2
- "nil_app": 1
- "nil_is_heap": 5
- "nil_is_heap.": 1
- "nn.": 1
- "node_is_heap": 7
- "normal_form": 3
- "normal_form.": 2
- "normalizing": 1
- "not": 1
- "not.": 3
- "now": 19
- "nth": 2
- "nth_error": 7
- "nth_error_None": 4
- "nth_error_app1": 1
- "nth_error_app2": 1
- "nx": 1
- "ny": 1
- "o": 20
- "o.": 3
- "oddb": 5
- "of": 4
- "omega": 2
- "omega.": 6
- "only": 3
- "optimize_0plus": 10
- "optimize_0plus_sound": 2
- "option": 10
- "option_elim": 2
- "option_elim_hd": 1
- "orb": 8
- "order": 2
- "order.": 1
- "other": 20
- "other.": 4
- "override": 5
- "override.": 2
- "override_eq": 1
- "override_example": 1
- "override_example1": 1
- "override_example2": 1
- "override_example3": 1
- "override_example4": 1
- "override_neq": 1
- "p": 78
- "p.": 9
- "pair": 7
- "parsing": 3
- "partial_function": 6
- "partial_function.": 5
- "partial_map": 4
- "pattern": 2
- "perm_nil": 1
- "perm_skip": 1
- "perm_trans": 1
- "permut_InA_InA": 3
- "permut_add_cons_inside": 3
- "permut_add_cons_inside.": 1
- "permut_add_inside": 1
- "permut_add_inside_eq": 1
- "permut_app": 1
- "permut_app_inv1": 1
- "permut_cons": 5
- "permut_cons_InA": 4
- "permut_cons_eq": 3
- "permut_conv_inv": 1
- "permut_eqA": 1
- "permut_length": 1
- "permut_length_1": 1
- "permut_length_1.": 2
- "permut_length_2": 1
- "permut_middle": 1
- "permut_nil": 2
- "permut_refl": 1
- "permut_refl.": 5
- "permut_remove_hd": 1
- "permut_remove_hd_eq": 1
- "permut_rev": 1
- "permut_right": 1
- "permut_sym": 3
- "permut_sym_app": 1
- "permut_tran": 1
- "permut_trans": 4
- "permutation": 43
- "permutation.": 1
- "permutation_Permutation": 1
- "plus": 10
- "plus2": 1
- "plus2_spec": 1
- "plus3": 2
- "plus3.": 1
- "plus_0_r.": 1
- "plus_1_1.": 1
- "plus_1_neq_0": 1
- "plus_O_n": 1
- "plus_O_n.": 1
- "plus_assoc": 1
- "plus_assoc.": 4
- "plus_ble_compat_1": 1
- "plus_comm": 3
- "plus_comm.": 3
- "plus_distr.": 1
- "plus_n_Sm": 1
- "plus_n_Sm.": 1
- "plus_rearrange": 1
- "plus_reg_l": 1
- "plus_reg_l.": 1
- "plus_swap": 2
- "plus_swap.": 2
- "pose": 1
- "power": 2
- "pred": 3
- "pred_inj.": 1
- "preorder": 1
- "preservation": 1
- "prod": 3
- "prod_curry": 3
- "prod_uncurry": 3
- "proj1_sig": 1
- "proj2_sig": 1
- "q": 15
- "q.": 2
- "r": 10
- "r.": 2
- "r1": 3
- "r1.": 1
- "r2": 2
- "red": 7
- "red.": 1
- "refl_equal": 4
- "refl_step_closure": 11
- "reflexive": 5
- "reflexive.": 1
- "reflexivity": 14
- "reflexivity.": 178
- "relation": 19
- "remember": 9
- "remove_all": 2
- "remove_decreases_count": 1
- "remove_one": 3
- "rename": 2
- "repeat": 9
- "replace": 4
- "results": 1
- "rev": 7
- "rev_exercise": 1
- "rev_involutive.": 1
- "rev_snoc": 1
- "revert": 5
- "rewrite": 222
- "right": 7
- "right.": 9
- "rsc_R": 2
- "rsc_refl": 1
- "rsc_refl.": 4
- "rsc_step": 4
- "rsc_step.": 2
- "rsc_trans": 4
- "rt_refl": 1
- "rt_refl.": 2
- "rt_step": 1
- "rt_step.": 2
- "rt_trans": 3
- "rtc_rsc_coincide": 1
- "s": 12
- "s.": 5
- "s1": 20
- "s2": 2
- "s_compile": 36
- "s_compile1": 1
- "s_compile_correct": 1
- "s_execute": 21
- "s_execute1": 1
- "s_execute2": 1
- "saturday": 3
- "seq": 2
- "seq_NoDup": 1
- "seq_NoDup.": 1
- "set": 1
- "setoid_rewrite": 2
- "silly1": 1
- "silly2a": 1
- "silly3": 1
- "silly4": 1
- "silly5": 1
- "silly6": 1
- "silly7": 1
- "silly_ex": 1
- "sillyex1": 1
- "sillyex2": 1
- "simpl": 66
- "simpl.": 72
- "simple": 7
- "singletonBag": 10
- "sinstr": 2
- "snd": 3
- "snoc": 9
- "snoc_with_append": 1
- "specialize": 6
- "split": 15
- "split.": 12
- "st": 132
- "st.": 2
- "st1": 6
- "st2": 3
- "st2.": 1
- "state": 12
- "step": 9
- "step.": 3
- "step_cases": 4
- "step_deterministic": 1
- "step_example3": 1
- "stepmany": 4
- "stepmany_congr2": 1
- "stepmany_congr_1": 1
- "strong_progress": 2
- "subst": 10
- "subst.": 33
- "substitution_preserves_typing": 1
- "subtract_3_from_5_slowly": 1
- "subtract_slowly": 1
- "subtract_slowly.": 1
- "subtract_slowly_body": 2
- "sunday": 2
- "surjective": 1
- "surjective_pairing": 1
- "swap_pair": 1
- "sym_not_eq.": 2
- "symmetric": 2
- "symmetry": 5
- "symmetry.": 2
- "t": 93
- "t.": 4
- "t1": 48
- "t2": 51
- "t2.": 4
- "t3": 6
- "t3.": 2
- "t_false": 1
- "t_true": 1
- "tactic": 10
- "tauto": 1
- "tauto.": 1
- "test": 4
- "test_aeval1": 1
- "test_andb31": 1
- "test_andb32": 1
- "test_andb33": 1
- "test_andb34": 1
- "test_beq_natlist1": 1
- "test_beq_natlist2": 1
- "test_factorial1": 1
- "test_hd_opt1": 2
- "test_hd_opt2": 2
- "test_nandb1": 1
- "test_nandb2": 1
- "test_nandb3": 1
- "test_nandb4": 1
- "test_next_weekday": 1
- "test_oddb1": 1
- "test_oddb2": 1
- "test_optimize_0plus": 1
- "test_orb1": 1
- "test_orb2": 1
- "test_orb3": 1
- "test_orb4": 1
- "test_remove_one1": 1
- "test_repeat1": 1
- "test_step_1": 1
- "test_step_2": 1
- "then": 12
- "thursday": 3
- "tl": 7
- "tm": 43
- "tm.": 3
- "tm_abs": 9
- "tm_app": 7
- "tm_cases": 1
- "tm_const": 45
- "tm_false": 5
- "tm_false.": 3
- "tm_if": 10
- "tm_plus": 30
- "tm_true": 8
- "tm_var": 6
- "total": 2
- "total_relation": 1
- "total_relation1.": 2
- "total_relation_not_partial_function": 1
- "tp": 2
- "transitive": 8
- "transitive.": 1
- "transitivity": 4
- "treesort": 1
- "treesort_twist1": 1
- "treesort_twist2": 1
- "trivial": 13
- "trivial.": 14
- "true": 52
- "true.": 17
- "try": 10
- "tuesday": 3
- "tuesday.": 1
- "tx": 2
- "ty": 7
- "ty.": 2
- "ty_Bool": 10
- "ty_Bool.": 1
- "ty_arrow": 7
- "type_scope.": 1
- "types_unique": 1
- "uncurry_uncurry": 1
- "unfold": 60
- "unfold_example_bad": 1
- "update": 28
- "update.": 3
- "update_eq": 1
- "update_eq.": 2
- "update_example": 1
- "update_neq": 1
- "update_permute": 1
- "update_same": 1
- "update_shadow": 1
- "using": 17
- "v": 28
- "v.": 1
- "v1": 7
- "v2": 2
- "v_abs": 1
- "v_abs.": 2
- "v_const": 4
- "v_const.": 1
- "v_false": 1
- "v_funny.": 1
- "v_true": 1
- "value": 25
- "value.": 1
- "value_not_same_as_normal_form": 2
- "via": 1
- "wednesday": 3
- "where": 5
- "with": 214
- "x": 254
- "x.": 4
- "x0": 8
- "x0.": 1
- "x1": 17
- "x1.": 1
- "x2": 14
- "x=": 1
- "xSn": 21
- "xo": 2
- "xs": 7
- "y": 119
- "y.": 15
- "y1": 6
- "y2": 5
- "y2.": 3
- "z": 14
- "z.": 6
- "zero_nbeq_S": 1
- "{": 40
- "|": 393
- "||": 2
- "}": 36
- "Dart":
- "(": 7
- ")": 7
- "*": 2
- "+": 1
- "-": 2
- ";": 8
- "Math.sqrt": 1
- "Point": 7
- "class": 1
- "distanceTo": 1
- "dx": 3
- "dy": 3
- "main": 1
- "new": 2
- "other": 1
- "other.x": 1
- "other.y": 1
- "p": 1
- "print": 1
- "q": 1
- "return": 1
- "this.x": 1
- "this.y": 1
- "var": 3
- "x": 2
- "y": 2
- "{": 3
- "}": 3
- "Delphi":
- "(": 1
- ")": 1
- "*.res": 1
- ";": 6
- "Application.CreateForm": 1
- "Application.Initialize": 1
- "Application.MainFormOnTaskbar": 1
- "Application.Run": 1
- "Form2": 2
- "Forms": 1
- "R": 1
- "TForm2": 1
- "True": 1
- "Unit2": 1
- "begin": 1
- "end.": 1
- "gmail": 1
- "in": 1
- "program": 1
- "uses": 1
- "{": 2
- "}": 2
- "Diff":
- "+": 3
- "-": 5
- "a/lib/linguist.rb": 2
- "b/lib/linguist.rb": 2
- "d472341..8ad9ffb": 1
- "diff": 1
- "git": 1
- "index": 1
- "Emacs Lisp":
- "(": 1
- ")": 1
- "print": 1
- "GAS":
- "%": 6
- "(": 1
- ")": 1
- "+": 2
- "-": 7
- ".": 1
- ".align": 2
- ".ascii": 2
- ".byte": 20
- ".cstring": 1
- ".globl": 2
- ".long": 6
- ".quad": 2
- ".section": 1
- ".set": 5
- ".subsections_via_symbols": 1
- ".text": 1
- "EH_frame1": 2
- "L": 10
- "LASFDE1": 3
- "LC0": 2
- "LCFI0": 3
- "LCFI1": 2
- "LECIE1": 2
- "LEFDE1": 2
- "LFB3": 4
- "LFE3": 2
- "LSCIE1": 2
- "LSFDE1": 1
- "__TEXT": 1
- "__eh_frame": 1
- "_main": 2
- "_main.eh": 2
- "_puts": 1
- "call": 1
- "coalesced": 1
- "eax": 1
- "leaq": 1
- "leave": 1
- "live_support": 1
- "movl": 1
- "movq": 1
- "no_toc": 1
- "pushq": 1
- "rbp": 2
- "rdi": 1
- "ret": 1
- "rip": 1
- "rsp": 1
- "set": 10
- "strip_static_syms": 1
- "xc": 1
- "xd": 1
- "xe": 1
- "Gosu":
- "%": 2
- "(": 54
- ")": 55
- "*/": 4
- "+": 2
- "-": 3
- ".Name": 1
- ".orderBy": 1
- "/*": 4
- "//": 1
- "<": 1
- "<%!-->": 1
- "<%>": 2
- "<Contact>": 1
- "<String,>": 1
- "<User>": 1
- "@": 1
- "@Deprecated": 1
- "ALL_PEOPLE": 2
- "ALL_PEOPLE.Values": 3
- "ALL_PEOPLE.containsKey": 2
- "Age": 1
- "BUSINESS_CONTACT": 1
- "Collection": 1
- "Contact": 1
- "DBConnectionManager.getConnection": 1
- "EmailHelper": 1
- "FAMILY": 1
- "FRIEND": 1
- "File": 2
- "FileWriter": 1
- "HashMap": 1
- "Hello": 2
- "IEmailable": 2
- "IllegalArgumentException": 1
- "Integer": 3
- "List": 1
- "Name": 3
- "Person": 7
- "PersonCSVTemplate.render": 1
- "PersonCSVTemplate.renderToString": 1
- "Relationship": 3
- "Relationship.valueOf": 2
- "RelationshipOfPerson": 1
- "String": 6
- "_age": 3
- "_emailHelper": 2
- "_name": 4
- "_relationship": 2
- "addAllPeople": 1
- "addPerson": 4
- "age": 4
- "allPeople": 1
- "allPeople.where": 1
- "and": 1
- "as": 3
- "class": 1
- "conn": 1
- "conn.prepareStatement": 1
- "construct": 1
- "contact": 3
- "contact.Name": 1
- "contacts": 2
- "defined": 1
- "delegate": 1
- "enhancement": 1
- "enum": 1
- "example": 2
- "extends": 1
- "file": 3
- "file.eachLine": 1
- "for": 2
- "function": 11
- "get": 1
- "getAllPeopleOlderThanNOrderedByName": 1
- "getEmailName": 1
- "gst": 1
- "hello": 1
- "id": 1
- "if": 4
- "implements": 1
- "in": 3
- "incrementAge": 1
- "int": 2
- "java.io.File": 1
- "java.util.*": 1
- "line": 1
- "line.HasContent": 1
- "line.toPerson": 1
- "loadFromFile": 1
- "loadPersonFromDB": 1
- "name": 4
- "new": 6
- "not": 1
- "override": 1
- "p": 5
- "p.Age": 1
- "p.Name": 2
- "package": 2
- "params": 1
- "print": 4
- "printPersonInfo": 1
- "property": 2
- "readonly": 1
- "relationship": 2
- "represents": 1
- "result": 1
- "result.getInt": 1
- "result.getString": 2
- "result.next": 1
- "return": 4
- "saveToFile": 1
- "set": 1
- "static": 7
- "stmt": 1
- "stmt.executeQuery": 1
- "stmt.setInt": 1
- "this": 1
- "this.split": 1
- "throw": 1
- "toPerson": 1
- "typeis": 1
- "user": 1
- "user.Department": 1
- "user.FirstName": 1
- "user.LastName": 1
- "users": 2
- "uses": 2
- "using": 2
- "vals": 4
- "var": 10
- "writer": 2
- "{": 28
- "}": 28
- "Groovy":
- "#": 1
- "(": 7
- ")": 7
- "-": 1
- ".each": 1
- "//Docs": 1
- "//Echo": 1
- "//Gather": 1
- "//Print": 1
- "//ant.apache.org/manual/Types/fileset.html": 1
- "/usr/bin/env": 1
- "CWD": 1
- "Gradle": 1
- "a": 1
- "ant": 1
- "ant.echo": 3
- "ant.fileScanner": 1
- "description": 1
- "dir": 1
- "each": 1
- "echo": 1
- "echoDirListViaAntBuilder": 1
- "file": 1
- "files": 1
- "fileset": 1
- "groovy": 1
- "http": 1
- "in": 1
- "it.toString": 1
- "list": 1
- "message": 1
- "name": 1
- "of": 1
- "path": 2
- "plugin": 1
- "println": 2
- "project": 1
- "project.name": 1
- "projectDir": 1
- "removed.": 1
- "screen": 1
- "subdirectory": 1
- "task": 1
- "the": 3
- "to": 1
- "via": 1
- "with": 1
- "{": 3
- "}": 3
- "Groovy Server Pages":
- "<%@>": 1
- "</a>": 2
- "</body>": 4
- "</div>": 2
- "</head>": 4
- "</html>": 4
- "</title>": 4
- "<a>": 2
- "<body>": 4
- "<div>": 2
- "<head>": 4
- "<html>": 4
- "<meta>": 4
- "<r:require>": 2
- "<title>": 4
- "Download": 1
- "Print": 1
- "Resources": 2
- "SiteMesh": 2
- "Testing": 3
- "Using": 1
- "alt=": 2
- "and": 2
- "class=": 2
- "content=": 4
- "contentType=": 1
- "directive": 1
- "equiv=": 3
- "example": 1
- "href=": 2
- "http": 3
- "id=": 2
- "module=": 2
- "name=": 1
- "page": 2
- "tag": 1
- "with": 3
- "{": 1
- "}": 1
- "Haml":
- "%": 1
- "Hello": 1
- "World": 1
- "p": 1
- "INI":
- "Josh": 1
- "Peek": 1
- "email": 1
- "josh@github.com": 1
- "name": 1
- "user": 1
- "Ioke":
- "#": 1
- "/usr/bin/env": 1
- "ioke": 1
- "println": 1
- "Java":
- "&&": 6
- "(": 724
- ")": 722
- "*": 6
- "*/": 86
- "+": 79
- "-": 12
- ".": 1
- ".324": 1
- ".add": 1
- ".compareTo": 1
- ".equalsIgnoreCase": 5
- ".equiv": 2
- ".floatValue": 1
- ".generateResponse": 1
- ".getACL": 1
- ".getAllocator": 1
- ".getAttributes": 1
- ".getChildNodes": 2
- ".getClassName": 1
- ".getDescriptor": 1
- ".getNodeName": 4
- ".getNodeValue": 1
- ".hasPermission": 1
- ".hasheq": 1
- ".len": 1
- ".length": 1
- ".parse": 2
- ".replace": 2
- ".toString": 1
- "/*": 85
- "//": 47
- "//RubyModule": 1
- "//XMLDocumentFilter": 1
- "//a": 1
- "//cleanup": 1
- "0": 1
- ";": 598
- "<": 13
- "<<": 1
- "<=>": 1
- "<ComputerListener>": 2
- "<ItemListener>": 2
- "<K,V>": 1
- "<RuntimeException>": 1
- "<Slave>": 2
- "<String,>": 2
- "<T>": 1
- "<V>": 3
- "@CLIResolver": 1
- "@Override": 6
- "@QueryParameter": 4
- "@SuppressWarnings": 1
- "@deprecated": 1
- "ADMINISTER": 1
- "ARRAY": 3
- "Augmentations": 2
- "BOOLEAN": 6
- "BOOLEAN_TYPE": 3
- "BYTE": 6
- "BYTE_TYPE": 3
- "BasicLibraryService": 1
- "BigInt": 1
- "BigInteger": 1
- "Boolean.TYPE": 2
- "Byte.TYPE": 2
- "CHAR": 6
- "CHAR_TYPE": 3
- "Character.TYPE": 2
- "Class": 10
- "CloneNotSupportedException": 7
- "CloudList": 3
- "Collections.synchronizedMap": 1
- "Comparable": 1
- "ComputerListener.class": 1
- "ConcurrentHashMap": 1
- "Constructor": 1
- "CopyOnWriteList": 4
- "DOMParser": 1
- "DOUBLE": 7
- "DOUBLE_TYPE": 3
- "DefaultFilter": 2
- "Document": 2
- "Double.TYPE": 2
- "ENCODING_HANDLER_ALLOCATOR": 2
- "Either": 1
- "ElementValidityCheckFilter": 3
- "EncodingHandler": 1
- "EncodingHandler.class": 1
- "Exception": 1
- "ExtensionListView.createCopyOnWriteList": 2
- "FLOAT": 6
- "FLOAT_TYPE": 3
- "File": 2
- "File.pathSeparatorChar": 1
- "Float.TYPE": 2
- "FormValidation": 2
- "FormValidation.error": 4
- "FormValidation.ok": 1
- "FormValidation.warning": 1
- "Functions.toEmailSafeString": 2
- "HTMLConfiguration": 1
- "HTML_DOCUMENT_ALLOCATOR": 1
- "HTML_ELEMENT_DESCRIPTION_ALLOCATOR": 1
- "HTML_ENTITY_LOOKUP_ALLOCATOR": 1
- "HTML_SAXPARSER_CONTEXT_ALLOCATOR": 1
- "HashMap": 1
- "HtmlDocument": 2
- "HtmlDocument.class": 1
- "HtmlDomParserContext": 3
- "HtmlElementDescription.class": 1
- "HtmlEntityLookup.class": 1
- "HtmlSaxParserContext.class": 1
- "Hudson": 5
- "Hudson.class": 1
- "Hudson_NotAPositiveNumber": 1
- "IHashEq": 2
- "INT": 6
- "INT_TYPE": 3
- "IOException": 7
- "IPersistentCollection": 5
- "IRubyObject": 14
- "ISeq": 2
- "Integer": 2
- "Integer.TYPE": 2
- "InterruptedException": 2
- "ItemListener.class": 1
- "Jenkins": 2
- "Jenkins.CloudList": 1
- "Jenkins.MasterComputer": 1
- "Jenkins.getInstance": 2
- "K": 2
- "LONG": 7
- "LONG_TYPE": 3
- "List": 3
- "Long": 1
- "Map": 1
- "Map.Entry": 1
- "MasterComputer": 1
- "Messages": 1
- "Messages.Hudson_NotANegativeNumber": 1
- "Messages.Hudson_NotANumber": 1
- "Method": 3
- "NamedNodeMap": 1
- "Node": 1
- "NodeList": 2
- "NokogiriErrorHandler": 2
- "NokogiriNonStrictErrorHandler4NekoHtml": 1
- "NokogiriService": 1
- "NokogiriService.HTML_DOCUMENT_ALLOCATOR.allocate": 1
- "NokogiriStrictErrorHandler": 1
- "NullPointerException": 1
- "Number": 9
- "NumberFormat": 1
- "NumberFormat.getInstance": 2
- "Numbers.compare": 1
- "Numbers.equal": 1
- "Numbers.hasheq": 1
- "OBJECT": 3
- "Object": 31
- "ObjectAllocator": 18
- "Opcodes.IALOAD": 1
- "Opcodes.IASTORE": 1
- "ParseException": 1
- "Platform.isDarwin": 1
- "PluginManager": 1
- "QName": 2
- "ReactorException": 2
- "Reference": 3
- "ReferenceQueue": 1
- "RemoveNSAttrsFilter": 2
- "Ruby": 22
- "RubyClass": 71
- "RubyFixnum.newFixnum": 6
- "RubyModule": 18
- "RuntimeException": 5
- "SHORT": 6
- "SHORT_TYPE": 3
- "ServletContext": 2
- "ServletException": 2
- "Short.TYPE": 2
- "Slave": 3
- "Stapler.getCurrentRequest": 1
- "Stapler.getCurrentResponse": 1
- "StaplerRequest": 3
- "StaplerResponse": 3
- "StaplerResponse.SC_FORBIDDEN": 1
- "String": 32
- "StringBuffer": 14
- "T": 2
- "ThreadContext": 2
- "Throwable": 4
- "TopLevelItem": 3
- "Type": 42
- "Type.ARRAY": 2
- "Type.OBJECT": 2
- "Util": 1
- "Util.": 1
- "VOID": 5
- "VOID_TYPE": 3
- "Void.TYPE": 3
- "XMLAttributes": 2
- "XMLDocumentFilter": 3
- "XMLParserConfiguration": 1
- "XML_ATTRIBUTE_DECL_ALLOCATOR": 1
- "XML_ATTR_ALLOCATOR": 1
- "XML_CDATA_ALLOCATOR": 1
- "XML_COMMENT_ALLOCATOR": 1
- "XML_DOCUMENT_ALLOCATOR": 1
- "XML_DOCUMENT_FRAGMENT_ALLOCATOR": 1
- "XML_DTD_ALLOCATOR": 1
- "XML_ELEMENT_ALLOCATOR": 1
- "XML_ELEMENT_CONTENT_ALLOCATOR": 1
- "XML_ELEMENT_DECL_ALLOCATOR": 1
- "XML_ENTITY_DECL_ALLOCATOR": 1
- "XML_ENTITY_REFERENCE_ALLOCATOR": 1
- "XML_NAMESPACE_ALLOCATOR": 1
- "XML_NODESET_ALLOCATOR": 1
- "XML_NODE_ALLOCATOR": 1
- "XML_PROCESSING_INSTRUCTION_ALLOCATOR": 1
- "XML_READER_ALLOCATOR": 1
- "XML_RELAXNG_ALLOCATOR": 2
- "XML_SAXPARSER_CONTEXT_ALLOCATOR": 2
- "XML_SAXPUSHPARSER_ALLOCATOR": 2
- "XML_SCHEMA_ALLOCATOR": 2
- "XML_SYNTAXERROR_ALLOCATOR": 2
- "XML_TEXT_ALLOCATOR": 2
- "XML_XPATHCONTEXT_ALLOCATOR": 2
- "XNIException": 2
- "XSLT_STYLESHEET_ALLOCATOR": 2
- "XSTREAM.alias": 1
- "XmlAttr.class": 1
- "XmlAttributeDecl.class": 1
- "XmlCdata.class": 1
- "XmlComment.class": 1
- "XmlDocument": 3
- "XmlDocument.class": 1
- "XmlDocument.rbNew": 1
- "XmlDocumentFragment.class": 1
- "XmlDomParserContext": 1
- "XmlDtd.class": 1
- "XmlElement.class": 1
- "XmlElementContent.class": 1
- "XmlElementDecl.class": 1
- "XmlEntityDecl.EXTERNAL_GENERAL_PARSED": 1
- "XmlEntityDecl.EXTERNAL_GENERAL_UNPARSED": 1
- "XmlEntityDecl.EXTERNAL_PARAMETER": 1
- "XmlEntityDecl.INTERNAL_GENERAL": 1
- "XmlEntityDecl.INTERNAL_PARAMETER": 1
- "XmlEntityDecl.INTERNAL_PREDEFINED": 1
- "XmlEntityDecl.class": 1
- "XmlEntityReference.class": 1
- "XmlNamespace.class": 1
- "XmlNode.class": 1
- "XmlNodeSet.class": 1
- "XmlProcessingInstruction.class": 1
- "XmlReader.class": 1
- "XmlRelaxng": 5
- "XmlRelaxng.class": 1
- "XmlSaxParserContext": 5
- "XmlSaxParserContext.class": 1
- "XmlSaxPushParser": 1
- "XmlSaxPushParser.class": 1
- "XmlSchema": 5
- "XmlSchema.class": 1
- "XmlSyntaxError": 5
- "XmlSyntaxError.class": 1
- "XmlText": 6
- "XmlText.class": 1
- "XmlXpathContext": 5
- "XmlXpathContext.class": 1
- "XsltStylesheet": 4
- "XsltStylesheet.class": 2
- "adminCheck": 3
- "allocate": 9
- "and": 1
- "any": 1
- "args": 6
- "argumentTypes": 2
- "argumentTypes.length": 1
- "as": 1
- "attr": 1
- "attr.defineAnnotatedMethods": 1
- "attrDecl": 1
- "attrDecl.defineAnnotatedMethods": 1
- "attrs": 4
- "attrs.getLength": 1
- "attrs.getQName": 1
- "attrs.removeAttributeAt": 1
- "augs": 4
- "b": 1
- "b.append": 1
- "b.toString": 1
- "basicLoad": 1
- "boolean": 29
- "boost": 1
- "break": 1
- "buf": 43
- "buf.append": 21
- "buf.toString": 4
- "c": 21
- "c.getName": 1
- "c.getParameterTypes": 1
- "c.isPrimitive": 2
- "c1": 2
- "c2": 2
- "cache": 1
- "cache.entrySet": 1
- "cache.remove": 1
- "car": 18
- "case": 46
- "catch": 8
- "cdata": 1
- "cdata.defineAnnotatedMethods": 1
- "char": 13
- "characterData": 3
- "charset": 2
- "check": 1
- "class": 10
- "classOf": 1
- "classes": 2
- "classes.length": 2
- "clearCache": 1
- "client": 1
- "clojure.asm": 1
- "clojure.lang": 1
- "clone": 14
- "clone.setMetaClass": 7
- "comment": 1
- "comment.defineAnnotatedMethods": 1
- "compare": 1
- "computerListeners": 2
- "config": 2
- "config.setErrorHandler": 1
- "context": 8
- "context.getRuntime": 3
- "createDocuments": 2
- "createHtmlModule": 2
- "createNokogiriClassCahce": 2
- "createNokogiriModule": 2
- "createSaxModule": 2
- "createSyntaxErrors": 2
- "createXmlModule": 2
- "createXsltModule": 2
- "d": 10
- "d.getComponentType": 1
- "d.getName": 1
- "d.isArray": 1
- "d.isPrimitive": 1
- "dead": 1
- "default": 5
- "define": 1
- "detected_encoding": 2
- "detected_encoding.isNil": 1
- "doFieldCheck": 1
- "doLogRss": 1
- "doQuietDown": 2
- "document": 5
- "document.getDocumentElement": 2
- "documentFragment": 1
- "documentFragment.defineAnnotatedMethods": 1
- "double": 4
- "dtd": 1
- "dtd.defineAnnotatedMethods": 1
- "e": 11
- "e.g.": 1
- "e.getKey": 1
- "e.getValue": 1
- "e3779b9": 1
- "element": 3
- "element.defineAnnotatedMethods": 1
- "element.uri": 1
- "elementContent": 1
- "elementContent.defineAnnotatedMethods": 1
- "elementDecl": 1
- "elementDecl.defineAnnotatedMethods": 1
- "elementValidityCheckFilter": 3
- "element_names": 3
- "else": 28
- "enableDocumentFragment": 1
- "encHandler": 1
- "encHandler.defineAnnotatedMethods": 1
- "encoding": 2
- "end": 4
- "entityDecl": 1
- "entityDecl.defineAnnotatedMethods": 1
- "entityDecl.defineConstant": 6
- "entref": 1
- "entref.defineAnnotatedMethods": 1
- "entries": 1
- "equals": 2
- "equalsIgnoreCase": 1
- "equiv": 17
- "error": 1
- "errorHandler": 6
- "errorHandler.getErrors": 1
- "errorText": 6
- "extends": 7
- "false": 9
- "filters": 3
- "final": 54
- "fixEmpty": 4
- "floatValue": 1
- "for": 15
- "generic": 1
- "getArgumentTypes": 2
- "getClassName": 1
- "getComputerListeners": 1
- "getConstructorDescriptor": 1
- "getDescriptor": 11
- "getDimensions": 3
- "getElementType": 2
- "getInstance": 2
- "getInternalName": 2
- "getItem": 1
- "getItems": 1
- "getJob": 1
- "getJobCaseInsensitive": 1
- "getJobListeners": 1
- "getMethodDescriptor": 2
- "getNewEmptyDocument": 1
- "getNode": 1
- "getNokogiriClass": 1
- "getObjectType": 1
- "getOpcode": 1
- "getReturnType": 2
- "getSize": 1
- "getSlave": 1
- "getSlaves": 1
- "getSort": 1
- "getType": 10
- "h": 2
- "hash": 3
- "hashCode": 1
- "hashCombine": 1
- "hasheq": 1
- "hc": 4
- "headers": 1
- "headers.getLength": 1
- "headers.item": 2
- "html.defineOrGetClassUnder": 1
- "htmlDoc": 1
- "htmlDocument": 3
- "htmlDocument.defineAnnotatedMethods": 1
- "htmlDocument.setDocumentNode": 1
- "htmlDocument.setEncoding": 1
- "htmlDocument.setParsedEncoding": 1
- "htmlElemDesc": 1
- "htmlElemDesc.defineAnnotatedMethods": 1
- "htmlEntityLookup": 1
- "htmlEntityLookup.defineAnnotatedMethods": 1
- "htmlModule": 5
- "htmlModule.defineClassUnder": 3
- "htmlModule.defineModuleUnder": 1
- "htmlSaxModule": 3
- "htmlSaxModule.defineClassUnder": 1
- "htmlSaxParserContext": 1
- "htmlSaxParserContext.defineAnnotatedMethods": 1
- "hudson.ExtensionListView": 1
- "hudson.Functions": 1
- "hudson.Platform": 1
- "hudson.PluginManager": 1
- "hudson.Util.fixEmpty": 1
- "hudson.cli.declarative.CLIResolver": 1
- "hudson.model": 1
- "hudson.model.listeners.ItemListener": 1
- "hudson.slaves.ComputerListener": 1
- "hudson.util.CopyOnWriteList": 1
- "hudson.util.FormValidation": 1
- "i": 54
- "identical": 1
- "if": 79
- "implemented": 1
- "implements": 1
- "import": 66
- "index": 4
- "init": 2
- "initErrorHandler": 1
- "initParser": 1
- "instanceof": 14
- "instead": 1
- "int": 52
- "isAdmin": 4
- "isDarwin": 1
- "isInteger": 1
- "isNamespace": 1
- "isPrimitive": 1
- "isValid": 2
- "isWindows": 1
- "item": 2
- "item.getName": 1
- "itemListeners": 2
- "j": 8
- "java.io.File": 1
- "java.io.IOException": 1
- "java.lang.ref.Reference": 1
- "java.lang.ref.ReferenceQueue": 1
- "java.lang.ref.SoftReference": 1
- "java.lang.reflect.Constructor": 1
- "java.lang.reflect.Method": 1
- "java.math.BigInteger": 1
- "java.text.NumberFormat": 1
- "java.text.ParseException": 1
- "java.util.Collections": 2
- "java.util.HashMap": 1
- "java.util.List": 1
- "java.util.Map": 3
- "java.util.concurrent.ConcurrentHashMap": 1
- "java_encoding": 2
- "javax.servlet.ServletContext": 1
- "javax.servlet.ServletException": 1
- "jenkins.model.Jenkins": 1
- "k": 5
- "k1": 40
- "k1.equals": 2
- "k2": 38
- "klazz": 34
- "l": 5
- "la": 1
- "len": 24
- "list": 1
- "list.getLength": 1
- "list.item": 2
- "long": 4
- "m": 1
- "m.getParameterTypes": 1
- "m.getReturnType": 1
- "match": 2
- "method": 3
- "method.getParameterTypes": 1
- "method.getReturnType": 1
- "methodDescriptor": 2
- "methodDescriptor.indexOf": 1
- "methodDescriptor.toCharArray": 2
- "n": 3
- "name": 10
- "name.charAt": 1
- "name.getChars": 1
- "name.length": 2
- "name.rawname": 2
- "namespace": 1
- "namespace.defineAnnotatedMethods": 1
- "negative": 1
- "new": 61
- "nil": 2
- "node": 14
- "node.defineAnnotatedMethods": 1
- "nodeMap": 1
- "nodeMap.getLength": 1
- "nodeMap.item": 2
- "nodeSet": 1
- "nodeSet.defineAnnotatedMethods": 1
- "nokogiri": 6
- "nokogiri.HtmlDocument": 1
- "nokogiri.NokogiriService": 1
- "nokogiri.XmlDocument": 1
- "nokogiri.defineClassUnder": 2
- "nokogiri.defineModuleUnder": 3
- "nokogiri.internals": 1
- "nokogiri.internals.NokogiriHelpers.getNokogiriClass": 1
- "nokogiri.internals.NokogiriHelpers.isNamespace": 1
- "nokogiri.internals.NokogiriHelpers.stringOrNil": 1
- "nokogiriClassCache": 2
- "nokogiriClassCache.put": 26
- "nokogiriClassCacheGvarName": 1
- "not": 1
- "null": 43
- "number": 2
- "o": 12
- "o.hashCode": 2
- "of": 2
- "off": 25
- "on": 1
- "one.": 1
- "opcode": 17
- "options": 4
- "options.noError": 2
- "options.noWarning": 2
- "options.strict": 1
- "or": 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.RubyArray": 1
- "org.jruby.RubyClass": 2
- "org.jruby.RubyFixnum": 1
- "org.jruby.RubyModule": 1
- "org.jruby.runtime.ObjectAllocator": 1
- "org.jruby.runtime.ThreadContext": 1
- "org.jruby.runtime.builtin.IRubyObject": 2
- "org.jruby.runtime.load.BasicLibraryService": 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
- "org.w3c.dom.Document": 1
- "org.w3c.dom.NamedNodeMap": 1
- "org.w3c.dom.NodeList": 1
- "own": 1
- "package": 5
- "parameters": 4
- "parameters.length": 2
- "parse": 1
- "parser": 1
- "pcequiv": 2
- "pi": 1
- "pi.defineAnnotatedMethods": 1
- "pluginManager": 2
- "private": 35
- "protected": 4
- "public": 124
- "qs": 2
- "reader": 1
- "reader.defineAnnotatedMethods": 1
- "relaxng": 1
- "relaxng.defineAnnotatedMethods": 1
- "relying": 1
- "removeNSAttrsFilter": 2
- "req": 4
- "req.getQueryString": 1
- "ret": 4
- "ret1": 2
- "return": 172
- "returnType": 1
- "returnType.getDescriptor": 1
- "root": 4
- "rq": 1
- "rq.poll": 2
- "rsp": 4
- "rsp.sendError": 1
- "rsp.sendRedirect2": 1
- "ruby": 25
- "ruby.defineModule": 1
- "ruby.getClassFromPath": 26
- "ruby.getObject": 13
- "ruby.getStandardError": 2
- "ruby_encoding": 3
- "ruby_encoding.isNil": 1
- "runtime": 30
- "runtimeException": 2
- "s": 4
- "schema": 2
- "schema.defineAnnotatedMethods": 1
- "seed": 5
- "setFeature": 4
- "setNodes": 1
- "setProperty": 4
- "setSlaves": 1
- "side": 1
- "size": 8
- "slaves": 3
- "sneakyThrow": 1
- "sneakyThrow0": 2
- "sort": 18
- "startElement": 2
- "static": 91
- "stringOrNil": 1
- "stylesheet": 1
- "stylesheet.defineAnnotatedMethods": 1
- "super": 5
- "super.startElement": 2
- "switch": 5
- "synchronized": 1
- "syntaxError": 2
- "t": 6
- "t.buf": 1
- "t.len": 1
- "t.off": 1
- "t.sort": 1
- "testee": 1
- "testee.equals": 1
- "testee.toCharArray": 1
- "text": 2
- "text.defineAnnotatedMethods": 1
- "this": 4
- "this.buf": 2
- "this.errorHandler": 2
- "this.len": 2
- "this.off": 1
- "this.sort": 2
- "throw": 2
- "throws": 10
- "toString": 1
- "transient": 2
- "true": 16
- "try": 8
- "tryGetCharsetFromHtml5MetaTag": 2
- "type": 5
- "type.equalsIgnoreCase": 2
- "typeDescriptor": 1
- "typeDescriptor.toCharArray": 1
- "types": 3
- "use": 1
- "val": 3
- "val.get": 1
- "validation": 1
- "value": 7
- "void": 20
- "warningText": 5
- "while": 9
- "wrapDocument": 1
- "x": 7
- "x.getClass": 1
- "xmlDocument": 2
- "xmlDocument.defineAnnotatedMethods": 1
- "xmlModule": 7
- "xmlModule.defineClassUnder": 23
- "xmlModule.defineModuleUnder": 1
- "xmlNode": 2
- "xmlRelaxng": 3
- "xmlRelaxng.clone": 1
- "xmlSaxModule": 3
- "xmlSaxModule.defineClassUnder": 2
- "xmlSaxParserContext": 5
- "xmlSaxParserContext.clone": 1
- "xmlSaxParserContext.defineAnnotatedMethods": 1
- "xmlSaxPushParser": 1
- "xmlSaxPushParser.defineAnnotatedMethods": 1
- "xmlSchema": 3
- "xmlSchema.clone": 1
- "xmlSyntaxError": 4
- "xmlSyntaxError.clone": 1
- "xmlSyntaxError.defineAnnotatedMethods": 1
- "xmlText": 3
- "xmlText.clone": 1
- "xmlXpathContext": 3
- "xmlXpathContext.clone": 1
- "xpathContext": 1
- "xpathContext.defineAnnotatedMethods": 1
- "xsltModule": 3
- "xsltModule.defineAnnotatedMethod": 1
- "xsltModule.defineClassUnder": 1
- "xsltStylesheet": 3
- "xsltStylesheet.clone": 1
- "your": 1
- "{": 255
- "||": 8
- "}": 254
- "JavaScript":
- "#": 11
- "#*": 1
- "#000": 3
- "#000000": 45
- "#001B64": 1
- "#001C7E": 2
- "#002cbb": 1
- "#0033FF": 1
- "#00FFFF": 3
- "#010101": 10
- "#040404": 3
- "#050505": 1
- "#050506": 2
- "#050a06": 1
- "#052727": 1
- "#070602": 1
- "#076148": 1
- "#080C06": 1
- "#083B3B": 2
- "#090051": 1
- "#111111": 1
- "#124564": 1
- "#1B6400": 1
- "#1BC3C3": 1
- "#1C7E00": 2
- "#1D2123": 1
- "#202020": 7
- "#233123": 1
- "#280035": 1
- "#282828": 1
- "#2E2E2E": 1
- "#2d2d2d": 1
- "#303030": 3
- "#323232": 6
- "#333333": 12
- "#353535": 1
- "#363636": 2
- "#373735": 1
- "#37596e": 1
- "#38004B": 2
- "#3DB3FF": 1
- "#3c3c3c": 2
- "#3c4439": 2
- "#405300": 1
- "#410004": 1
- "#414141": 3
- "#421F00": 1
- "#444444": 2
- "#4c4c4c": 2
- "#4f0c0e": 1
- "#503700": 1
- "#515300": 1
- "#520000": 8
- "#592800": 2
- "#593A0A": 1
- "#59FF2A": 1
- "#5c5c5c": 4
- "#5e5e5e": 2
- "#641B00": 1
- "#65696d": 1
- "#666666": 16
- "#6B6D00": 2
- "#6E6E70": 8
- "#707070": 4
- "#708DFF": 1
- "#7E1C00": 2
- "#7e7e7e": 1
- "#7fd5f0": 2
- "#818584": 1
- "#82330c": 1
- "#828783": 1
- "#838383": 1
- "#848484": 4
- "#8600CB": 1
- "#899AFF": 2
- "#959794": 1
- "#979996": 1
- "#999288": 1
- "#999999": 4
- "#9AFF89": 2
- "#9f9": 2
- "#A5FF00": 1
- "#ACACAE": 4
- "#B2B2B4": 4
- "#B50026": 1
- "#C300FF": 1
- "#C48200": 1
- "#D300FF": 2
- "#F01010": 1
- "#F0F0F0": 1
- "#F8F8F8": 1
- "#FD6C00": 2
- "#FDFDFD": 14
- "#FE8B92": 1
- "#FEA23F": 2
- "#FF0": 1
- "#FF3300": 1
- "#FF8D70": 1
- "#FF9A89": 2
- "#FFFF00": 2
- "#FFFF62": 2
- "#FFFFFF": 8
- "#ID": 2
- "#abb1b8": 6
- "#b2b2b2": 2
- "#b2b4ed": 1
- "#bec3c9": 2
- "#c0c5cb": 1
- "#c48200": 4
- "#c4c4c4": 2
- "#c5c5c5": 6
- "#c8c8b1": 1
- "#cccccc": 4
- "#d9dad6": 1
- "#e3e5e8": 4
- "#e4e5e0": 1
- "#e6b35c": 4
- "#e6e6e6": 2
- "#eeeeee": 1
- "#eef0f2": 1
- "#f0f0f0": 2
- "#f1f3f5": 1
- "#f2f2f0": 1
- "#f3f4f7": 1
- "#f3f5f7": 1
- "#f5f7f4": 1
- "#f6f6f6": 2
- "#fbffff": 1
- "#fc1d00": 8
- "#fcfcfc": 1
- "#fed434": 2
- "#fefefe": 2
- "#ff0000": 2
- "#ffff00": 1
- "#ffffff": 30
- "#id": 1
- "#modernizr": 3
- "#x": 1
- "#x27": 1
- "#x2F": 1
- "%": 17
- "&": 22
- "&&": 114
- "(": 2299
- ")": 2318
- "*": 144
- "**": 3
- "*/": 87
- "*/*": 4
- "*display": 2
- "*f": 2
- "*t": 1
- "*zoom": 2
- "+": 329
- "-": 311
- ".": 80
- ".*": 10
- ".*version": 2
- "..9": 1
- ".0": 1
- ".01": 4
- ".013546": 1
- ".015": 5
- ".03": 2
- ".05": 5
- ".07": 2
- ".082217": 1
- ".1": 5
- ".119213": 1
- ".12": 4
- ".13": 2
- ".15": 3
- ".2": 2
- ".25": 10
- ".275": 5
- ".288702": 1
- ".298039": 1
- ".3": 5
- ".32": 1
- ".33": 1
- ".4": 14
- ".4.2": 1
- ".45": 1
- ".5": 26
- ".55": 2
- ".6": 1
- ".6.1": 2
- ".7": 1
- ".7.2": 1
- ".749019": 1
- ".8": 4
- ".CLASS": 2
- ".Event": 1
- ".EventEmitter": 1
- ".FreeList": 1
- ".HTTPParser": 1
- ".TEST": 4
- ".WebkitAppearance": 1
- "._change": 1
- "._last": 1
- "._submit": 1
- ".addClass": 1
- ".ajax": 1
- ".appendTo": 1
- ".apply": 3
- ".attr": 1
- ".bind": 2
- ".call": 7
- ".childNodes": 1
- ".concat": 2
- ".createSVGRect": 1
- ".delegate": 1
- ".emit": 1
- ".extend": 1
- ".fillText": 1
- ".find": 2
- ".getContext": 1
- ".hasOwnProperty": 2
- ".html": 1
- ".indexOf": 1
- ".join": 4
- ".length": 9
- ".matches": 1
- ".ok": 1
- ".onSocket": 1
- ".proxy": 1
- ".push": 2
- ".remove": 1
- ".replace": 10
- ".run": 4
- ".shift": 1
- ".slice": 2
- ".sort": 1
- ".specialChange": 2
- ".specialSubmit": 1
- ".splice": 1
- ".split": 6
- ".style.textShadow": 1
- ".support.transition": 1
- ".toFixed": 3
- ".toString": 3
- ".toUpperCase": 2
- ".unbind": 1
- "/": 96
- "/*": 80
- "/.test": 10
- "//": 637
- "//XXX": 1
- "//basic": 1
- "//don": 1
- "/100": 1
- "/2": 1
- "/255": 1
- "/Connection/i": 1
- "/Content": 1
- "/Date/i": 1
- "/Expect/i": 1
- "/SVGAnimate/.test": 1
- "/SVGClipPath/.test": 1
- "/Transfer": 1
- "/a": 4
- "/bfnrt": 3
- "/chunk/i": 1
- "/close/i": 1
- "/f": 3
- "/g": 18
- "/gi": 1
- "/http/.test": 1
- "/i": 2
- "/ig": 1
- "/index.html": 1
- "/msie": 1
- "/r": 1
- "/u": 3
- "/usr/bin/env": 1
- "0": 7
- "1": 8
- "2": 5
- "255": 3
- "2d": 2
- "3": 2
- "32": 1
- "62": 1
- "84": 1
- "94": 1
- ";": 1632
- "<": 43
- "<!doctype>": 3
- "<\">": 4
- "<\"||a.charAt(a.length-1)!==\">": 1
- "<$1>": 6
- "<(?:\">": 1
- "<(\\w+)\\s*\\/?>": 2
- "</\"+d+\">": 1
- "</$2>": 6
- "</:nav>": 1
- "</a>": 8
- "</body>": 2
- "</colgroup>": 4
- "</div>": 21
- "</fieldset>": 4
- "</g,>": 1
- "</html>": 2
- "</map>": 4
- "</p>": 4
- "</select>": 4
- "</style>": 1
- "</table>": 27
- "</tbody>": 12
- "</td>": 10
- "</tr>": 11
- "</xyz>": 1
- "<0?0:n>": 1
- "<:nav>": 1
- "<<": 2
- "<[\\w\\W]+>": 2
- "<\\/\\1>": 2
- "<a>": 12
- "<body>": 3
- "<colgroup>": 4
- "<div>": 24
- "<fieldset>": 4
- "<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
- "<html>": 3
- "<iframe>": 1
- "<input>": 5
- "<link/>": 4
- "<map>": 4
- "<p>": 4
- "<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
- "<r?10:5:2:1,i*Math.pow(10,u)}function>": 1
- "<select>": 4
- "<style>": 1
- "<table>": 29
- "<tbody>": 12
- "<td>": 10
- "<tr>": 11
- "<xyz>": 1
- "@": 3
- "@font": 1
- "@media": 1
- "@memberOf": 1
- "@type": 1
- "A": 2
- "A.": 1
- "A.jQuery": 1
- "AE6D": 3
- "ANTHRACITE": 1
- "ATOMIC_START_TOKEN": 1
- "Accept": 3
- "Acceptable": 1
- "Accepted": 1
- "Agent": 5
- "Agent.defaultMaxSockets": 2
- "Agent.prototype.addRequest": 1
- "Agent.prototype.createSocket": 1
- "Agent.prototype.defaultPort": 1
- "Agent.prototype.removeSocket": 1
- "Allowed": 1
- "Altimeter": 1
- "Animal": 12
- "Animal.name": 1
- "Animal.prototype.move": 2
- "Array": 13
- "Array.isArray": 3
- "Array.prototype.indexOf": 1
- "Array.prototype.push": 1
- "Array.prototype.slice": 2
- "Authentication": 1
- "Authoritative": 1
- "Average": 1
- "B8": 3
- "BEIGE": 1
- "BLACK": 1
- "BLUE": 1
- "BROWN": 1
- "BRUSHED_METAL": 7
- "BRUSHED_STAINLESS": 5
- "Backbone.Collection.prototype": 1
- "Backbone.Events": 2
- "Backbone.History": 2
- "Backbone.History.prototype": 1
- "Backbone.Router": 1
- "Backbone.Router.prototype": 1
- "Backbone.View.prototype": 1
- "Backbone.emulateHTTP": 1
- "Backbone.emulateJSON": 2
- "Backbone.history": 2
- "Backbone.history.navigate": 1
- "Backbone.history.route": 1
- "Backbone.sync": 1
- "BackgroundColor": 1
- "Bad": 1
- "Battery": 1
- "Boolean": 6
- "Boolean.prototype.toJSON": 1
- "Bottom": 3
- "Bubbles": 3
- "Buffer": 1
- "Buffer.byteLength": 2
- "Buffer.isBuffer": 1
- "CARBON": 5
- "CLASS": 4
- "CRLF": 9
- "CSS1Compat": 4
- "Can": 2
- "Choices": 1
- "Client": 6
- "Client.prototype.request": 1
- "ClientRequest": 6
- "ClientRequest.prototype._deferToConnect": 1
- "ClientRequest.prototype._implicitHeader": 1
- "ClientRequest.prototype.abort": 1
- "ClientRequest.prototype.clearTimeout": 1
- "ClientRequest.prototype.onSocket": 1
- "ClientRequest.prototype.setNoDelay": 1
- "ClientRequest.prototype.setSocketKeepAlive": 1
- "ClientRequest.prototype.setTimeout": 1
- "Clock": 1
- "ColorDef": 1
- "Compass": 1
- "Conflict": 1
- "ConicalGradient": 1
- "Connection": 2
- "Content": 6
- "Continue": 1
- "Created": 1
- "D": 1
- "D27CDB6E": 3
- "DARK_GRAY": 1
- "DELETE": 2
- "DOMContentLoaded": 9
- "DTRACE_HTTP_CLIENT_REQUEST": 1
- "DTRACE_HTTP_CLIENT_RESPONSE": 1
- "DTRACE_HTTP_SERVER_REQUEST": 1
- "DTRACE_HTTP_SERVER_RESPONSE": 1
- "Date": 5
- "Date.prototype.toJSON": 2
- "Dean": 1
- "DisplayMulti": 1
- "DisplaySingle": 1
- "DocumentTouch": 1
- "E": 2
- "END_OF_FILE": 1
- "EX_EOF": 1
- "Edwards": 1
- "Encoding": 1
- "Encoding/i": 1
- "Entity": 1
- "Error": 15
- "Error.prototype": 1
- "Etag": 3
- "EventEmitter": 3
- "Expectation": 1
- "Expr.match.ID.test": 2
- "Expr.relative": 1
- "F": 6
- "F.prototype": 1
- "Failed": 2
- "Forbidden": 1
- "ForegroundType": 1
- "Found": 1
- "FrameDesign": 1
- "FreeList": 1
- "Function": 4
- "Function.prototype.bind": 2
- "GET": 12
- "GREEN": 1
- "GaugeType": 1
- "Gone": 1
- "HOP": 1
- "HTML": 4
- "HTTP/1.1": 2
- "HTTPParser": 1
- "HTTPParser.REQUEST": 1
- "HTTPParser.RESPONSE": 1
- "Height": 3
- "Horizon": 1
- "Horse": 12
- "Horse.__super__.constructor.apply": 2
- "Horse.__super__.move.call": 2
- "Horse.name": 1
- "Horse.prototype.move": 2
- "I": 1
- "ID": 5
- "If": 6
- "Ignoring": 1
- "IncomingMessage": 1
- "Information": 1
- "Invalid": 9
- "JSON": 7
- "JSON.parse": 1
- "JSON.stringify": 2
- "JS_Parse_Error": 2
- "JS_Parse_Error.prototype.toString": 1
- "KEYWORDS": 2
- "KEYWORDS_ATOM": 2
- "KEYWORDS_BEFORE_EXPRESSION": 1
- "KnobStyle": 1
- "KnobType": 1
- "LIGHT_GRAY": 1
- "Label": 1
- "LabelNumberFormat": 1
- "Large": 2
- "Last": 3
- "Latest": 1
- "LcdColor": 1
- "Led": 1
- "LedColor": 1
- "Left": 6
- "Length": 1
- "Length/i": 1
- "Level": 1
- "LightBulb": 1
- "Linear": 1
- "LinearBargraph": 1
- "MUD": 1
- "MUST": 1
- "Match": 3
- "Math.floor": 9
- "Math.log10": 1
- "Math.max": 3
- "Math.min": 2
- "Math.random": 1
- "Math.round": 3
- "Math.sqrt": 2
- "Media": 1
- "Method": 1
- "Microsoft.XMLDOM": 3
- "Microsoft.XMLHTTP": 3
- "Missing": 1
- "Modal": 2
- "Modal.prototype": 1
- "Modernizr": 8
- "Modernizr._cssomPrefixes": 1
- "Modernizr._domPrefixes": 1
- "Modernizr._prefixes": 1
- "Modernizr._version": 1
- "Modernizr.hasEvent": 1
- "Modernizr.mq": 1
- "Modernizr.prefixed": 1
- "Modernizr.testAllProps": 1
- "Modernizr.testProp": 1
- "Modernizr.testStyles": 1
- "Modified": 7
- "Moved": 2
- "Multi": 1
- "Multiple": 1
- "N": 2
- "NAME": 4
- "NE": 2
- "NOT": 1
- "NW": 2
- "Name": 1
- "No": 7
- "Non": 1
- "None": 3
- "Not": 5
- "Number": 3
- "Number.prototype.toJSON": 1
- "OK": 2
- "OPERATORS": 2
- "OPERATOR_CHARS": 1
- "Object": 5
- "Object.keys": 3
- "Object.prototype.hasOwnProperty": 2
- "Object.prototype.hasOwnProperty.call": 1
- "Object.prototype.toString": 2
- "Odometer": 1
- "Orientation": 1
- "Other": 1
- "OutgoingMessage": 2
- "OutgoingMessage.call": 2
- "OutgoingMessage.prototype._finish": 1
- "OutgoingMessage.prototype._flush": 1
- "OutgoingMessage.prototype._renderHeaders": 1
- "OutgoingMessage.prototype.addTrailers": 1
- "OutgoingMessage.prototype.getHeader": 1
- "OutgoingMessage.prototype.removeHeader": 1
- "OutgoingMessage.prototype.write": 1
- "PEG.parser": 1
- "POST": 4
- "PRECEDENCE": 1
- "PUNCHED_SHEET": 5
- "PUNC_BEFORE_EXPRESSION": 1
- "PUNC_CHARS": 1
- "PUT": 2
- "Partial": 1
- "Payment": 1
- "Permanently": 1
- "PointerType": 1
- "Precondition": 1
- "Processing": 1
- "Protocols": 1
- "Proxy": 2
- "Qa": 1
- "RED": 1
- "REGEXP_MODIFIERS": 1
- "RESERVED_WORDS": 2
- "RE_DEC_NUMBER": 1
- "RE_DEC_NUMBER.test": 1
- "RE_HEX_NUMBER": 1
- "RE_HEX_NUMBER.test": 1
- "RE_OCT_NUMBER": 1
- "RE_OCT_NUMBER.test": 1
- "Radial": 1
- "RadialBargraph": 1
- "RadialVertical": 1
- "Range": 1
- "Redirect": 1
- "RegExp": 8
- "Request": 4
- "Requested": 7
- "Required": 3
- "Reset": 1
- "Right": 3
- "S": 4
- "S/": 2
- "SATIN_GRAY": 1
- "SE": 2
- "STAINLESS": 4
- "STATUS_CODES": 1
- "SW": 2
- "Satisfiable": 1
- "Section": 1
- "See": 1
- "Server": 6
- "ServerResponse": 5
- "ServerResponse.prototype._implicitHeader": 1
- "ServerResponse.prototype.assignSocket": 1
- "ServerResponse.prototype.detachSocket": 1
- "ServerResponse.prototype.statusCode": 1
- "ServerResponse.prototype.writeContinue": 1
- "ServerResponse.prototype.writeHead": 1
- "ServerResponse.prototype.writeHeader": 1
- "Since": 3
- "Sizzle": 1
- "Sizzle.filter": 6
- "Sizzle.find": 2
- "Sizzle.isXML": 1
- "Snake": 12
- "Snake.__super__.constructor.apply": 2
- "Snake.__super__.move.call": 2
- "Snake.name": 1
- "Snake.prototype.move": 2
- "Some": 1
- "Status": 1
- "StopWatch": 1
- "String": 3
- "String.fromCharCode": 2
- "String.prototype.toJSON": 1
- "String.prototype.trim": 1
- "Success": 3
- "Switching": 1
- "Syntax": 5
- "TAG": 6
- "TAGNAMES": 2
- "TEXT": 1
- "TEXT.replace": 1
- "TURNED": 6
- "Temporarily": 1
- "Temporary": 1
- "This": 1
- "TickLabelOrientation": 1
- "Time": 1
- "Too": 2
- "Top": 6
- "TrafficLight": 1
- "Transfer": 1
- "Transport": 3
- "TrendState": 1
- "Type": 4
- "TypeError": 2
- "UNICODE": 1
- "UNICODE.connector_punctuation.test": 1
- "UNICODE.letter.test": 1
- "UNICODE.non_spacing_mark.test": 1
- "UNICODE.space_combining_mark.test": 1
- "URI": 1
- "UTF": 1
- "Unauthorized": 1
- "Unsupported": 1
- "Use": 1
- "W": 2
- "W/": 1
- "W/.test": 1
- "WHITE": 1
- "WHITESPACE_CHARS": 1
- "Width": 8
- "WindDirection": 1
- "With": 8
- "X": 9
- "XHTML": 2
- "XML": 3
- "XMLHttpRequest": 3
- "Y": 3
- "Z": 1
- "_": 13
- "_.bind": 2
- "_.bindAll": 1
- "_.each": 1
- "_.extend": 7
- "_.isFunction": 1
- "_.isRegExp": 1
- "_.toArray": 1
- "__className__": 8
- "__extends": 6
- "__hasProp": 2
- "__hasProp.call": 2
- "__sizzle__": 3
- "__slice": 2
- "__slice.call": 2
- "_bindRoutes": 1
- "_change_attached": 1
- "_change_data": 3
- "_extractParameters": 1
- "_hasOwnProperty": 2
- "_hasOwnProperty.call": 2
- "_i": 10
- "_id": 1
- "_jQuery": 2
- "_len": 6
- "_onModelEvent": 1
- "_removeReference": 1
- "_results": 6
- "_results.push": 2
- "_routeToRegExp": 1
- "_submit_attached": 1
- "_super": 4
- "a": 39
- "a.": 1
- "a.defaultView": 1
- "a.getAttribute": 2
- "a.jQuery": 1
- "a.length": 1
- "a.nodeType": 1
- "a.parentWindow": 1
- "abbr": 2
- "abort": 3
- "abortIncoming": 3
- "absolute": 12
- "accept": 4
- "add": 1
- "addClass": 4
- "after": 10
- "aggressive.": 1
- "ai": 1
- "ajax": 3
- "ajaxComplete": 6
- "ajaxError": 3
- "ajaxSend": 6
- "ajaxStart": 6
- "ajaxStop": 6
- "ajaxSuccess": 3
- "alert": 9
- "alive": 1
- "all": 4
- "allowHalfOpen": 1
- "alpha": 3
- "altKey": 2
- "always": 2
- "an": 1
- "and": 3
- "animationName": 1
- "anthracite": 3
- "any": 7
- "api": 1
- "append": 3
- "applet": 2
- "application/ecmascript": 3
- "application/javascript": 3
- "application/json": 3
- "application/x": 8
- "application/xml": 3
- "ar": 1
- "are": 2
- "args": 4
- "args.concat": 2
- "arguments": 21
- "arguments.length": 4
- "arguments_": 3
- "array": 9
- "array.length": 1
- "array_to_hash": 11
- "article": 3
- "ascii": 1
- "aside": 3
- "assert": 7
- "assign": 1
- "assignment": 1
- "async": 4
- "at": 1
- "atRoot": 3
- "atom": 2
- "attrChange": 2
- "attrHandle": 4
- "attrMap": 4
- "attrName": 2
- "attrNode": 2
- "attrNode.nodeValue": 1
- "attributeNode": 4
- "attributeNode.specified": 2
- "attributeNode.value": 2
- "attributes": 3
- "attrs": 3
- "attrs.list": 2
- "audio": 11
- "audio/aac": 1
- "audio/mpeg": 1
- "audio/ogg": 1
- "audio/wav": 1
- "audio/x": 1
- "auth": 1
- "authenticate": 1
- "auto": 24
- "awesome": 1
- "b": 17
- "b.css": 1
- "b.innerHTML": 1
- "b.remove": 1
- "b.slice": 1
- "b.src": 2
- "b.text": 1
- "b.textContent": 1
- "b.toLowerCase": 1
- "backdrop.call": 1
- "background": 3
- "baseHasDuplicate": 2
- "bdi": 2
- "be": 3
- "before": 7
- "beforeactivate._change": 1
- "begin": 1
- "begin.data": 1
- "begin.data.charCodeAt": 1
- "begin.rawText": 2
- "beginPath": 2
- "bf": 1
- "bi": 1
- "binary": 1
- "bind": 2
- "black": 3
- "blackMetal": 3
- "block": 15
- "blocks": 1
- "blur": 3
- "body": 26
- "body.": 1
- "bodyHead": 4
- "bold": 1
- "bool": 16
- "bool.ogg": 1
- "boolHook": 2
- "boolean": 18
- "border": 14
- "borderLeftWidth": 4
- "borderTopWidth": 4
- "bottom": 1
- "bound": 3
- "boxReflect": 1
- "br": 1
- "brass": 6
- "break": 11
- "browser": 1
- "browserMatch": 1
- "bubbles": 2
- "bubbling": 2
- "buildMessage": 2
- "butt": 2
- "button": 17
- "buttons": 1
- "by": 1
- "bytesParsed": 4
- "c": 13
- "c*u": 1
- "c.ajax": 1
- "c.globalEval": 1
- "c.isReady": 1
- "c.on": 2
- "c.ready": 1
- "call": 2
- "callback": 8
- "callback.apply": 1
- "called": 3
- "can": 5
- "cancelable": 2
- "canvas": 29
- "case": 17
- "catch": 5
- "catch/finally": 1
- "cb": 14
- "cellSpacing": 1
- "cellpadding": 2
- "cellpadding=": 3
- "cellspacing": 2
- "cellspacing=": 3
- "center": 20
- "cf": 3
- "ch": 30
- "ch.charCodeAt": 1
- "change": 16
- "change._change": 1
- "changeData": 5
- "char": 1
- "charAt": 1
- "charCode": 2
- "char_": 3
- "character": 8
- "characters": 5
- "chars": 1
- "chars.join": 1
- "charset": 2
- "check": 1
- "checkSet": 22
- "checkSet.length": 4
- "checkbox": 19
- "checked": 9
- "checked=": 1
- "child": 15
- "child.__super__": 3
- "child.prototype": 4
- "child.prototype.constructor": 1
- "chrome": 3
- "chunk": 10
- "chunk.length": 2
- "chunkExpression": 1
- "chunked": 1
- "chunker.exec": 1
- "cj": 1
- "class": 18
- "class2type": 1
- "class=": 13
- "className": 4
- "classes": 1
- "classes.join": 1
- "classes.push": 1
- "classes.slice": 1
- "classid": 3
- "cleanExpected": 2
- "cleanExpected.push": 1
- "cleanupExpected": 2
- "click": 8
- "click._change": 1
- "click._submit": 1
- "click.modal.data": 1
- "click.specialSubmit": 1
- "client": 10
- "clientX": 2
- "clientY": 2
- "clone": 1
- "close": 1
- "closeExpression": 1
- "closePath": 1
- "closest": 3
- "clsid": 3
- "codecs": 4
- "col": 4
- "colSpan": 1
- "collection": 2
- "collection.": 1
- "color": 2
- "colspan": 2
- "column": 8
- "columnCount": 1
- "compatible": 3
- "complete": 8
- "computeErrorPosition": 2
- "computed": 1
- "conditional": 1
- "conn": 3
- "connection": 1
- "connectionExpression": 1
- "connectionListener": 3
- "connector_punctuation": 1
- "console.error": 2
- "console.log": 2
- "const": 2
- "constructor": 9
- "contains": 7
- "content": 9
- "contentLengthExpression": 1
- "contenteditable": 2
- "context": 27
- "context.jquery": 1
- "context.nodeType": 3
- "context.ownerDocument": 1
- "context.parentNode": 2
- "contextXML": 4
- "contextmenu": 1
- "continue/i": 1
- "continueExpression": 1
- "continueExpression.test": 1
- "controls": 1
- "conversion": 3
- "cookie": 2
- "coords": 1
- "could": 1
- "cr": 1
- "create": 1
- "createDocumentFragment": 1
- "createElement": 3
- "createHangUpError": 3
- "cssFloat": 6
- "cssanimations": 1
- "csscolumns": 1
- "cssgradients": 1
- "cssomPrefixes": 2
- "cssomPrefixes.join": 1
- "cssreflections": 1
- "csstransforms": 1
- "csstransforms3d": 1
- "csstransitions": 1
- "ctor": 6
- "ctor.prototype": 3
- "ctrlKey": 2
- "cube": 2
- "cubes": 4
- "cur": 5
- "currentTarget": 2
- "curry": 1
- "customizations": 1
- "cv": 1
- "cx": 1
- "cy": 1
- "d": 259
- "d*": 6
- "d.getMilliseconds": 1
- "d.slice": 2
- "d.toUTCString": 1
- "d/": 1
- "da": 1
- "data": 25
- "dataType": 2
- "datalist": 2
- "dateCache": 5
- "dateExpression": 1
- "dblclick": 2
- "dealing": 1
- "debug": 17
- "default": 4
- "defaultPort": 3
- "defaultView": 2
- "defaultView.getComputedStyle": 2
- "defer": 6
- "defun": 1
- "delegateEvents": 1
- "delete": 8
- "destination": 2
- "destination_type": 2
- "detail": 1
- "details": 3
- "di": 1
- "die": 2
- "disabled": 3
- "display": 24
- "div": 53
- "div.appendChild": 1
- "div.firstChild": 1
- "div.firstChild.namespaceURI": 1
- "div.innerHTML": 1
- "div.parentNode.removeChild": 1
- "do": 2
- "doc": 3
- "doc.createElement": 1
- "docElement": 1
- "docElement.appendChild": 1
- "docElement.className": 2
- "docElement.className.replace": 1
- "docElement.removeChild": 1
- "document": 11
- "document.body": 4
- "document.createElement": 16
- "document.createElementNS": 6
- "document.defaultView": 1
- "document.documentElement": 1
- "document.documentMode": 2
- "document.getElementById": 1
- "doing": 1
- "domPrefixes": 3
- "done": 5
- "dot": 2
- "down": 6
- "dr": 1
- "drawBackground": 1
- "drawForeground": 1
- "drawFrame": 1
- "e": 47
- "e*u": 1
- "e.isDefaultPrevented": 1
- "e.preventDefault": 1
- "e=": 3
- "eE": 2
- "each": 2
- "east": 1
- "ecmascript": 3
- "ei": 2
- "el": 4
- "elem": 83
- "elem.canPlayType": 2
- "elem.getAttribute": 4
- "elem.getAttributeNode": 5
- "elem.getContext": 2
- "elem.href": 2
- "elem.id": 1
- "elem.nodeName": 4
- "elem.nodeName.toLowerCase": 2
- "elem.nodeType": 4
- "elem.parentNode": 7
- "elem.previousSibling": 2
- "elem.setAttribute": 4
- "elem.value": 8
- "element": 6
- "element.appendTo": 1
- "element.hasClass": 1
- "element.parent": 1
- "element.removeAttribute": 1
- "element.setAttribute": 3
- "element.trigger": 1
- "elements": 2
- "else": 119
- "elvis": 4
- "em": 3
- "email": 1
- "embed": 2
- "emitTimeout": 4
- "enableClasses": 3
- "encoding": 12
- "end": 11
- "end.data": 1
- "end.data.charCodeAt": 1
- "end.rawText": 2
- "eof": 3
- "eol": 2
- "er": 1
- "err": 3
- "err.message": 1
- "err.stack": 1
- "error": 13
- "error.code": 1
- "errorPosition": 1
- "errorPosition.column": 1
- "errorPosition.line": 1
- "escapable": 1
- "escape.call": 1
- "escapeHTML": 1
- "escapeRegExp": 2
- "ev": 5
- "eval": 2
- "even": 4
- "eventName": 14
- "eventPhase": 2
- "eventSplitter": 2
- "events": 16
- "ex": 3
- "ex.name": 1
- "ex.stack": 1
- "exists": 1
- "expand": 1
- "expando": 1
- "expectExpression": 1
- "expected": 11
- "expected.length": 4
- "expected.slice": 1
- "expected.sort": 1
- "expectedHumanized": 5
- "exports.ATOMIC_START_TOKEN": 1
- "exports.Agent": 1
- "exports.Client": 1
- "exports.ClientRequest": 1
- "exports.KEYWORDS": 1
- "exports.KEYWORDS_ATOM": 1
- "exports.OPERATORS": 1
- "exports.PRECEDENCE": 1
- "exports.RESERVED_WORDS": 1
- "exports.Server": 1
- "exports.ServerResponse": 1
- "exports._connectionListener": 1
- "exports.array_to_hash": 1
- "exports.createClient": 1
- "exports.createServer": 1
- "exports.curry": 1
- "exports.get": 1
- "exports.globalAgent": 1
- "exports.is_alphanumeric_char": 1
- "exports.member": 1
- "exports.parse": 1
- "exports.request": 2
- "exports.set_logger": 1
- "exports.slice": 1
- "exports.tokenizer": 1
- "expr": 1
- "expression": 5
- "extend": 1
- "extensions": 1
- "extra": 1
- "f": 58
- "f*255": 1
- "f.cloneNode": 1
- "f.isWindow": 1
- "f/": 1
- "f/r": 1
- "f=": 2
- "fA": 4
- "face": 1
- "fade": 4
- "fail": 2
- "fakeBody": 2
- "fakeBody.parentNode.removeChild": 1
- "false": 53
- "family": 1
- "faster": 1
- "fcamelCase": 1
- "feature": 3
- "feature.toLowerCase": 1
- "featureName": 4
- "fi": 1
- "field": 5
- "figcaption": 3
- "figure": 3
- "file": 5
- "fill": 1
- "fillOpacity": 1
- "fillStyle=": 1
- "filter": 7
- "finally": 1
- "find": 9
- "fired": 1
- "first": 9
- "fixSpecified": 2
- "fixed": 13
- "flat": 1
- "float": 9
- "focus": 3
- "focusin": 6
- "focusout": 7
- "font": 1
- "fontSize": 3
- "fontWeight": 2
- "fontface": 1
- "footer": 3
- "for": 33
- "forcePushState": 2
- "form": 13
- "formHook": 3
- "formHook.get": 1
- "formHook.set": 1
- "found": 8
- "foundHumanized": 3
- "fr": 1
- "fractional": 8
- "fragment": 13
- "fragment.indexOf": 1
- "fragment.replace": 1
- "fragment.substr": 1
- "frameBorder": 1
- "frameborder": 2
- "freeParser": 9
- "from": 4
- "fromElement": 2
- "ft": 1
- "function": 345
- "fx": 40
- "fxshow": 6
- "g": 3
- "g.getAttribute": 1
- "g.length": 1
- "generatedcontent": 1
- "get": 25
- "getAttribute": 2
- "getBoundingClientRect": 3
- "getColorFromFraction": 1
- "getComputedStyle": 1
- "getContext": 2
- "getData": 6
- "getElementsByTagName": 2
- "getFragment": 1
- "getImageData": 1
- "getSetAttribute": 1
- "getUrl": 2
- "gi": 1
- "global": 1
- "globalAgent": 3
- "glossyMetal": 3
- "go": 1
- "going": 1
- "gold": 3
- "gr": 1
- "gradient": 3
- "gradientWrapper": 1
- "gray": 7
- "h": 12
- "h*t": 1
- "h*u": 1
- "h.shivMethods": 1
- "h.toLowerCase": 1
- "h1": 4
- "h2": 4
- "h3": 2
- "h4": 2
- "hack": 1
- "handle": 3
- "handler": 1
- "hasDuplicate": 1
- "hasOwn": 1
- "hasOwnProperty": 4
- "hashStrip": 3
- "hashes": 1
- "have": 1
- "head": 5
- "header": 3
- "headerIndex": 4
- "headers": 27
- "headers.length": 1
- "height": 24
- "height=": 2
- "here": 1
- "hgroup": 3
- "hidden": 34
- "hide": 22
- "history.pushState": 1
- "historyStarted": 2
- "hooks": 12
- "hooks.get": 2
- "hooks.set": 2
- "horizontal": 3
- "host": 28
- "hostHeader": 3
- "hot": 1
- "hover": 1
- "hr": 1
- "href": 19
- "href=": 8
- "hsl": 4
- "html": 7
- "html5": 2
- "htmlFor": 1
- "http": 6
- "httpSocketSetup": 3
- "i": 155
- "i*": 3
- "i.area": 2
- "i.gaugeType": 2
- "i.getAlpha": 1
- "i.getBlue": 1
- "i.getGreen": 1
- "i.getRed": 1
- "i.maxValue": 2
- "i.minValue": 2
- "i.niceScale": 2
- "i.section": 2
- "i.size": 2
- "i.substring": 3
- "i.threshold": 2
- "i.titleString": 1
- "i/255": 1
- "i=": 3
- "id": 26
- "if": 370
- "iframe": 7
- "ii": 2
- "image": 7
- "in": 36
- "incoming": 2
- "incoming.length": 2
- "incoming.push": 1
- "incoming.shift": 2
- "index": 3
- "indexOf": 1
- "info": 1
- "info.headers": 1
- "info.method": 2
- "info.shouldKeepAlive": 1
- "info.statusCode": 1
- "info.upgrade": 2
- "info.url": 1
- "inherits": 1
- "init": 1
- "initialize": 2
- "injectElementWithStyles": 4
- "inline": 23
- "inner": 5
- "inprogress": 12
- "input": 49
- "input.charAt": 14
- "input.charCodeAt": 12
- "input.length": 2
- "input.substr": 3
- "inputElem": 5
- "inputElem.checkValidity": 2
- "inputElem.offsetHeight": 1
- "inputElem.setAttribute": 1
- "inputElem.style.WebkitAppearance": 1
- "inputElem.style.cssText": 1
- "inputElem.type": 1
- "inputElem.value": 2
- "inputElemType": 5
- "inputs": 3
- "inside": 1
- "instanceof": 10
- "interval": 1
- "ir": 1
- "is": 10
- "isEventSupported": 4
- "isExplorer": 1
- "isFinite": 1
- "isHeadResponse": 3
- "isPartStr": 14
- "isPartStrNotTag": 6
- "isPrototypeOf": 4
- "isRejected": 2
- "isResolved": 2
- "isSupported": 2
- "isTag": 6
- "is_alphanumeric_char": 2
- "is_digit": 3
- "is_identifier_char": 1
- "is_identifier_start": 2
- "is_letter": 3
- "is_token": 1
- "is_unicode_combining_mark": 2
- "is_unicode_connector_punctuation": 2
- "it": 1
- "item": 4
- "item.bind": 1
- "iu": 1
- "j.test": 1
- "jQuery": 12
- "jQuery.attrFix": 1
- "jQuery.attrHooks.name": 1
- "jQuery.attrHooks.tabindex": 1
- "jQuery.attrHooks.value": 1
- "jQuery.buildFragment": 1
- "jQuery.clone": 1
- "jQuery.fn": 1
- "jQuery.fn.attr.call": 1
- "jQuery.fn.init": 2
- "jQuery.isFunction": 1
- "jQuery.isPlainObject": 1
- "jQuery.isXMLDoc": 2
- "jQuery.makeArray": 1
- "jQuery.merge": 1
- "jQuery.nodeName": 4
- "jQuery.prop": 1
- "jQuery.propFix": 6
- "jQuery.propHooks": 2
- "jQuery.propHooks.tabIndex": 1
- "jQuery.prototype": 1
- "jQuery.removeAttr": 2
- "jQuery.support.getSetAttribute": 1
- "jQuery.valHooks.button": 2
- "jquery": 1
- "js": 1
- "js_error": 1
- "json": 15
- "jsonp": 6
- "k": 15
- "keep": 1
- "key": 28
- "key.match": 1
- "keyCode": 2
- "keydown": 2
- "keypress": 2
- "keypress._submit": 1
- "keypress.specialSubmit": 1
- "keys": 6
- "keys.length": 3
- "keyup": 2
- "keyup.dismiss.modal": 2
- "keyword": 8
- "ki": 1
- "kr": 1
- "kt": 1
- "l": 23
- "l*u": 1
- "label": 1
- "language": 1
- "last": 6
- "lastExpected": 3
- "lastToggle": 4
- "layerX": 1
- "layerY": 1
- "left": 15
- "leftMatch": 4
- "legit": 1
- "len": 11
- "len.toString": 2
- "length": 3
- "letter": 3
- "limit": 1
- "line": 11
- "lineHeight": 2
- "lineTo": 4
- "linear": 2
- "link": 5
- "list": 6
- "list.length": 2
- "live": 3
- "live.": 3
- "ll": 2
- "load": 6
- "loc": 1
- "loc.hash": 1
- "loc.hash.replace": 1
- "loc.pathname": 1
- "localAddress": 15
- "localStorage": 1
- "localStorage.removeItem": 1
- "localStorage.setItem": 1
- "location": 2
- "logger": 2
- "loop": 2
- "lr": 1
- "lt": 1
- "lu": 1
- "m": 8
- "m.assignSocket": 1
- "m4a": 1
- "mStyle": 2
- "mStyle.background": 1
- "mStyle.backgroundColor": 3
- "mStyle.cssText": 1
- "ma": 2
- "make": 1
- "makeArray": 2
- "margin": 18
- "marginBottom": 3
- "marginLeft": 11
- "marginRight": 5
- "marginTop": 13
- "mark": 22
- "match": 12
- "matchFailed": 22
- "matchMedia": 3
- "matching": 1
- "math": 4
- "math.cube": 2
- "max": 1
- "maxLength": 1
- "maxSockets": 1
- "maxlength": 2
- "means": 1
- "member": 2
- "memorized": 1
- "memory": 6
- "message": 5
- "message.": 1
- "messageHeader": 1
- "metaKey": 2
- "metal": 3
- "metalKnob": 2
- "meter": 2
- "meters": 4
- "method": 25
- "methodMap": 1
- "methods": 3
- "middle": 21
- "min": 1
- "miter": 12
- "mod": 11
- "modElem": 1
- "modElem.style": 1
- "modal": 4
- "model": 12
- "model.collection": 2
- "model.id": 1
- "model.idAttribute": 2
- "model.previous": 1
- "model.toJSON": 1
- "model.trigger": 1
- "model.unbind": 1
- "module.deprecate": 2
- "mousedown": 2
- "mouseenter": 7
- "mouseleave": 7
- "mousemove": 2
- "mouseout": 8
- "mouseover": 8
- "mouseup": 2
- "moveTo": 1
- "mozilla": 2
- "mq": 3
- "ms": 2
- "msecs": 4
- "msie": 2
- "multiple": 2
- "multiple=": 4
- "n": 106
- "n*6": 2
- "n.charAt": 1
- "n.createElement": 1
- "n.substring": 1
- "n/255": 1
- "n/Math.pow": 1
- "nType": 10
- "name": 109
- "name.toLowerCase": 7
- "name=": 5
- "namedParam": 2
- "nav": 4
- "navigate": 1
- "navigator": 3
- "navigator.userAgent": 1
- "net": 1
- "net.Server": 1
- "net.Server.call": 1
- "net.createConnection": 3
- "new": 49
- "newValue": 1
- "nextSibling": 12
- "ni": 1
- "no": 7
- "node": 6
- "node.currentStyle": 1
- "node.id": 1
- "nodeHook": 3
- "nodeHook.get": 1
- "nodeHook.set": 1
- "nodeName": 3
- "nodeNames": 1
- "nodes": 5
- "non_spacing_mark": 1
- "none": 33
- "normal": 3
- "north": 1
- "not": 20
- "notify": 1
- "notmodified": 3
- "notxml": 5
- "nr": 1
- "ns": 1
- "ns.svg": 4
- "nth": 8
- "nu": 1
- "null": 158
- "num": 12
- "num.substr": 2
- "number": 40
- "o": 17
- "o/r": 1
- "o=": 3
- "obj": 16
- "obj.length": 1
- "obj.push": 1
- "object": 86
- "object.constructor.prototype": 1
- "object.url": 4
- "odd": 4
- "of": 4
- "off": 4
- "offset": 19
- "offsetX": 2
- "offsetY": 2
- "oi": 1
- "old": 2
- "oldIE": 1
- "olddisplay": 15
- "omPrefixes": 1
- "omPrefixes.split": 1
- "omPrefixes.toLowerCase": 1
- "on": 23
- "onClose": 3
- "onError": 3
- "onFree": 3
- "onRemove": 3
- "onServerResponseClose": 3
- "onSocket": 3
- "once": 5
- "onclick": 11
- "ondrain": 3
- "one": 7
- "onload": 4
- "only": 4
- "onreadystatechange": 8
- "opacity": 21
- "open": 1
- "opera": 2
- "operator": 10
- "opposite": 6
- "optgroup": 3
- "option": 13
- "options": 27
- "options.agent": 3
- "options.auth": 2
- "options.createConnection": 4
- "options.defaultPort": 1
- "options.headers": 7
- "options.host": 4
- "options.hostname": 1
- "options.localAddress": 3
- "options.method": 2
- "options.path": 2
- "options.port": 4
- "options.protocol": 3
- "options.routes": 2
- "options.setHost": 1
- "options.shivMethods": 1
- "options.socketPath": 1
- "or": 5
- "origContext": 1
- "orphans": 2
- "ot": 1
- "out": 4
- "outer": 4
- "outgoing": 2
- "outgoing.length": 2
- "outgoing.push": 1
- "outgoing.shift": 1
- "output": 2
- "outside": 1
- "overflow": 3
- "overwritten.": 1
- "p": 6
- "p/r": 1
- "padding": 12
- "paddingBottom": 3
- "paddingLeft": 3
- "paddingRight": 3
- "paddingTop": 3
- "pageX": 2
- "pageXOffset": 7
- "pageY": 2
- "pageYOffset": 4
- "params": 2
- "params.beforeSend": 1
- "params.contentType": 2
- "params.data": 5
- "params.data._method": 1
- "params.processData": 1
- "params.type": 1
- "params.url": 2
- "parent": 14
- "parent.apply": 1
- "parent.nodeName.toLowerCase": 2
- "parent.prototype": 6
- "parentNode": 12
- "parse": 1
- "parseFloat": 1
- "parseFunctions": 1
- "parseInt": 10
- "parse___": 1
- "parse_bracketDelimitedCharacter": 2
- "parse_classCharacter": 2
- "parse_comment": 3
- "parse_digit": 3
- "parse_eol": 4
- "parse_eolChar": 5
- "parse_eolEscapeSequence": 2
- "parse_hexDigit": 7
- "parse_hexEscapeSequence": 1
- "parse_js_number": 1
- "parse_letter": 1
- "parse_lowerCaseLetter": 2
- "parse_multiLineComment": 1
- "parse_simpleBracketDelimitedCharacter": 2
- "parse_simpleEscapeSequence": 1
- "parse_singleLineComment": 2
- "parse_singleQuotedCharacter": 2
- "parse_unicodeEscapeSequence": 2
- "parse_upperCaseLetter": 2
- "parse_whitespace": 3
- "parse_zeroEscapeSequence": 1
- "parsedAttrs": 2
- "parser": 28
- "parser._headers": 5
- "parser._url": 3
- "parser.execute": 2
- "parser.finish": 6
- "parser.incoming": 10
- "parser.incoming._addHeaderLine": 2
- "parser.incoming._emitData": 1
- "parser.incoming._paused": 1
- "parser.incoming._pendings.length": 1
- "parser.incoming._pendings.push": 1
- "parser.incoming.complete": 2
- "parser.incoming.method": 1
- "parser.incoming.statusCode": 2
- "parser.incoming.upgrade": 3
- "parser.maxHeaderPairs": 6
- "parser.onIncoming": 4
- "parser.reinitialize": 2
- "parser.socket": 5
- "parser.socket.ondata": 1
- "parser.socket.onend": 1
- "parser.socket.parser": 1
- "parserOnBody": 1
- "parserOnHeaders": 1
- "parserOnHeadersComplete": 1
- "parserOnIncomingClient": 2
- "parserOnMessageComplete": 1
- "parsererror": 6
- "parsers": 1
- "parsers.alloc": 2
- "parsers.free": 1
- "part": 28
- "part.toLowerCase": 4
- "parts": 5
- "parts.length": 5
- "parts.pop": 3
- "parts.shift": 1
- "passed": 2
- "password": 5
- "path": 4
- "pending": 1
- "percentage": 1
- "perspective": 1
- "pi": 1
- "pipe": 2
- "pop": 2
- "port": 29
- "pos": 90
- "pos0": 23
- "pos1": 24
- "pos2": 6
- "position": 13
- "possible": 1
- "post": 3
- "postfix": 1
- "pr": 1
- "pragma": 1
- "prefix": 1
- "prefixed": 7
- "prefixes": 2
- "prefixes.join": 2
- "preload": 5
- "prepend": 3
- "prevValue": 1
- "previousSibling": 16
- "print": 2
- "process.binding": 1
- "process.env.NODE_DEBUG": 2
- "process.nextTick": 1
- "processData": 1
- "progress": 2
- "promise": 2
- "prop": 12
- "prop.charAt": 1
- "prop.substr": 1
- "propFix": 2
- "propHooks": 2
- "propName": 8
- "property": 12
- "propertychange._change": 1
- "props": 18
- "props.length": 2
- "protoProps": 4
- "protoProps.constructor": 1
- "protoProps.hasOwnProperty": 1
- "protocol": 1
- "prune": 2
- "punc": 20
- "push": 4
- "pushState": 1
- "px": 122
- "q": 5
- "quadraticCurveTo": 4
- "querySelectorAll": 2
- "queue": 21
- "quickExpr": 2
- "quickExpr.exec": 1
- "quit": 1
- "quite": 1
- "quote": 2
- "quoteForRegexpClass": 1
- "r": 69
- "r*255": 1
- "r=": 3
- "rBackslash": 1
- "rNonWord": 1
- "rNonWord.test": 4
- "race": 4
- "rad": 2
- "radio": 23
- "range": 1
- "rawText": 2
- "rclickable.test": 2
- "rdashAlpha": 1
- "rdigit": 1
- "re": 6
- "read": 1
- "readOnly": 1
- "readonly": 2
- "ready": 7
- "readyList": 1
- "reasonPhrase": 4
- "rect": 1
- "regexp": 5
- "reject": 3
- "rejected": 1
- "relatedNode": 2
- "relatedTarget": 2
- "relative": 15
- "remove": 3
- "removeClass": 4
- "render": 1
- "repeat": 9
- "replace": 1
- "replaceWith": 6
- "reportFailures": 39
- "req": 36
- "req._hadError": 3
- "req.connection": 1
- "req.emit": 11
- "req.end": 1
- "req.headers": 2
- "req.httpVersionMajor": 2
- "req.httpVersionMinor": 2
- "req.listeners": 1
- "req.maxHeadersCount": 2
- "req.method": 5
- "req.onSocket": 1
- "req.parser": 2
- "req.res": 9
- "req.res._emitPending": 1
- "req.res.emit": 1
- "req.res.readable": 1
- "req.shouldKeepAlive": 3
- "req.socket": 3
- "req.upgradeOrConnect": 2
- "requestListener": 6
- "require": 7
- "required": 1
- "res": 15
- "res._emitEnd": 1
- "res._expect_continue": 1
- "res._last": 1
- "res.assignSocket": 1
- "res.detachSocket": 1
- "res.emit": 1
- "res.on": 2
- "res.req": 2
- "res.shouldKeepAlive": 1
- "res.statusCode": 1
- "res.upgrade": 1
- "res.writeContinue": 1
- "reset": 4
- "resize": 2
- "resolve": 3
- "resolved": 1
- "resp": 3
- "response": 1
- "responseOnEnd": 2
- "responseText": 3
- "responseXML": 3
- "result": 8
- "result.SyntaxError": 1
- "result.SyntaxError.prototype": 1
- "result0": 164
- "result0.push": 1
- "result1": 52
- "result1.push": 1
- "result2": 28
- "result3": 6
- "result4": 9
- "results": 4
- "ret": 53
- "ret.cacheable": 1
- "ret.expr": 4
- "ret.fragment": 2
- "ret.nodeValue": 2
- "ret.set": 4
- "return": 259
- "rfocusable.test": 2
- "rgb": 243
- "rgba": 164
- "rgbaColor": 1
- "right": 15
- "rightmostFailuresExpected": 1
- "rightmostFailuresPos": 2
- "rmozilla": 2
- "rmsPrefix": 1
- "rmsie": 2
- "rnotwhite": 2
- "root": 2
- "rootjQuery": 6
- "rootjQuery.find": 1
- "rootjQuery.ready": 1
- "ropera": 2
- "rotate": 2
- "round": 2
- "route": 14
- "route.exec": 1
- "route.replace": 1
- "routes": 4
- "routes.length": 1
- "routes.unshift": 1
- "rowSpan": 1
- "rowspan": 2
- "rr": 1
- "rsingleTag": 2
- "rsingleTag.exec": 1
- "ru": 1
- "rule": 2
- "runners": 6
- "rv": 2
- "rvalidbraces": 2
- "rvalidchars": 2
- "rvalidescape": 2
- "rwebkit": 2
- "s": 44
- "s*": 8
- "s.documentElement.doScroll": 1
- "s.on": 4
- "s.removeListener": 3
- "s/r": 1
- "s=": 2
- "sam": 4
- "sam.move": 2
- "sans": 45
- "scientific": 8
- "screenX": 2
- "screenY": 2
- "script": 39
- "scroll": 12
- "scrollTo": 2
- "search": 4
- "sec": 2
- "section": 4
- "seed": 4
- "seenCR": 5
- "select": 16
- "selector": 37
- "selector.charAt": 2
- "selector.context": 1
- "selector.length": 2
- "selector.nodeType": 1
- "selector.selector": 2
- "selectorDelegate": 2
- "self": 13
- "self._deferToConnect": 1
- "self._flush": 1
- "self._last": 3
- "self._renderHeaders": 1
- "self._storeHeader": 2
- "self.agent": 3
- "self.agent.addRequest": 1
- "self.createConnection": 2
- "self.emit": 9
- "self.getHeader": 1
- "self.host": 1
- "self.httpAllowHalfOpen": 1
- "self.listeners": 2
- "self.maxSockets": 1
- "self.method": 3
- "self.on": 1
- "self.onSocket": 3
- "self.once": 2
- "self.options": 2
- "self.options.maxSockets": 1
- "self.path": 3
- "self.port": 1
- "self.removeSocket": 2
- "self.requests": 6
- "self.setHeader": 1
- "self.shouldKeepAlive": 3
- "self.socket": 5
- "self.socket.once": 1
- "self.socket.writable": 1
- "self.socketPath": 4
- "self.sockets": 3
- "self.useChunkedEncodingByDefault": 2
- "sent": 1
- "sentExpect": 1
- "seq": 1
- "serif": 52
- "serverSocketCloseListener": 3
- "sessionStorage.removeItem": 1
- "sessionStorage.setItem": 1
- "set": 21
- "setAlpha": 1
- "setCss": 5
- "setCssAll": 1
- "setData": 6
- "setHeader": 1
- "setHost": 2
- "setInterval": 3
- "setTimeout": 2
- "shiftKey": 2
- "shinyMetal": 3
- "shivCSS": 2
- "shivDocument": 2
- "shivMethods": 1
- "should": 1
- "shouldKeepAlive": 5
- "show": 21
- "shown": 2
- "si": 1
- "silver": 3
- "skipBody": 3
- "slice": 10
- "slice.call": 3
- "small": 2
- "smile": 3
- "so": 2
- "soFar": 1
- "sock": 1
- "socket": 32
- "socket._httpMessage": 10
- "socket._httpMessage._last": 1
- "socket.addListener": 2
- "socket.destroy": 10
- "socket.destroySoon": 2
- "socket.emit": 2
- "socket.end": 2
- "socket.on": 4
- "socket.once": 1
- "socket.ondata": 4
- "socket.onend": 4
- "socket.parser": 4
- "socket.removeListener": 7
- "socket.setTimeout": 1
- "socket.writable": 4
- "socketCloseListener": 4
- "socketErrorListener": 4
- "socketOnData": 2
- "socketOnEnd": 2
- "solid": 2
- "something": 1
- "sourceIndex": 1
- "source_type": 2
- "south": 1
- "space_combining_mark": 1
- "specified": 1
- "splatParam": 2
- "square": 22
- "sr": 1
- "src": 8
- "src=": 1
- "srcElement": 2
- "st": 1
- "standard": 8
- "standardKnob": 2
- "start": 12
- "startRule": 1
- "stat": 1
- "statement": 1
- "static": 12
- "staticProps": 3
- "statusCode": 7
- "statusCode.toString": 1
- "statusLine": 2
- "steady": 6
- "steel": 3
- "steelseries": 1
- "steelseries.GaugeType.TYPE4": 1
- "stop": 1
- "str": 2
- "str1": 2
- "str2": 2
- "stream": 1
- "stream.Stream.call": 1
- "string": 140
- "string.replace": 1
- "string_decoder": 1
- "stroke": 1
- "style": 8
- "style=": 15
- "styleFloat": 3
- "sub": 2
- "submit": 11
- "submit._submit": 1
- "success": 6
- "summary": 2
- "swing": 1
- "switch": 7
- "t": 83
- "t.getAlpha": 4
- "t.getBlue": 4
- "t.getGreen": 4
- "t.getRed": 4
- "t/255": 1
- "t=": 1
- "tabIndex": 5
- "tabindex": 2
- "tabindex=": 1
- "table": 6
- "tagName": 3
- "tangent": 3
- "target": 5
- "target.apply": 2
- "target.data": 1
- "target.modal": 1
- "target.prototype": 1
- "tbody": 13
- "td": 3
- "tel": 1
- "test": 9
- "testDOMProps": 2
- "testMediaQuery": 2
- "testProps": 3
- "testPropsAll": 11
- "testnames": 3
- "tests": 35
- "text": 21
- "text/html": 3
- "text/javascript": 10
- "text/plain": 3
- "text/xml": 6
- "textarea": 4
- "than": 1
- "that": 4
- "that.": 3
- "the": 8
- "then": 2
- "this": 79
- "this.": 2
- "this.SyntaxError": 2
- "this._bindRoutes": 1
- "this._byId": 2
- "this._deferToConnect": 3
- "this._endEmitted": 1
- "this._expect_continue": 1
- "this._extractParameters": 1
- "this._finish": 2
- "this._flush": 1
- "this._hasBody": 3
- "this._hasPushState": 4
- "this._header": 6
- "this._headerNames": 5
- "this._headerSent": 2
- "this._headers": 13
- "this._headers.concat": 1
- "this._headers.length": 1
- "this._httpMessage": 3
- "this._httpMessage.emit": 2
- "this._implicitHeader": 1
- "this._onModelEvent": 1
- "this._paused": 1
- "this._pendings": 1
- "this._remove": 1
- "this._renderHeaders": 3
- "this._routeToRegExp": 1
- "this._send": 8
- "this._sent100": 2
- "this._source": 1
- "this._storeHeader": 2
- "this._trailer": 3
- "this._url": 1
- "this._wantsPushState": 2
- "this._writeRaw": 1
- "this.addListener": 2
- "this.agent": 1
- "this.checkUrl": 3
- "this.chunkedEncoding": 4
- "this.cid": 2
- "this.col": 2
- "this.color": 1
- "this.column": 1
- "this.complete": 1
- "this.connection": 6
- "this.connection._httpMessage": 1
- "this.connection.write": 2
- "this.constructor": 3
- "this.context": 4
- "this.createSocket": 2
- "this.data": 1
- "this.document": 1
- "this.el": 3
- "this.emit": 2
- "this.events": 1
- "this.expected": 1
- "this.finished": 1
- "this.found": 1
- "this.fragment": 4
- "this.getFragment": 1
- "this.getHeader": 2
- "this.getUTCDate": 1
- "this.getUTCFullYear": 1
- "this.getUTCHours": 1
- "this.getUTCMinutes": 1
- "this.getUTCMonth": 1
- "this.getUTCSeconds": 1
- "this.handlers": 1
- "this.headers": 1
- "this.hide": 1
- "this.host": 1
- "this.httpAllowHalfOpen": 1
- "this.httpVersion": 1
- "this.initialize.apply": 1
- "this.interval": 1
- "this.isShown": 3
- "this.length": 3
- "this.line": 3
- "this.maxHeaderPairs": 2
- "this.maxHeadersCount": 2
- "this.maxSockets": 1
- "this.message": 3
- "this.method": 1
- "this.models": 1
- "this.name": 5
- "this.offset": 1
- "this.once": 2
- "this.options": 1
- "this.options.root": 3
- "this.options.root.length": 1
- "this.output.length": 2
- "this.output.shift": 1
- "this.outputEncodings.shift": 1
- "this.parser": 2
- "this.path": 1
- "this.port": 1
- "this.pos": 2
- "this.readable": 1
- "this.requests": 5
- "this.route": 1
- "this.routes": 4
- "this.selector": 3
- "this.sendDate": 1
- "this.setHeader": 2
- "this.setTimeout": 3
- "this.shouldKeepAlive": 2
- "this.socket": 8
- "this.socket.destroy": 1
- "this.socket.once": 1
- "this.socket.setTimeout": 1
- "this.socket.writable": 2
- "this.socket.write": 1
- "this.sockets": 9
- "this.stack": 2
- "this.statusCode": 2
- "this.trailers": 1
- "this.trigger.apply": 2
- "this.url": 1
- "this.useChunkedEncodingByDefault": 1
- "this.valueOf": 2
- "this.write": 1
- "this.writeHead": 1
- "this.writeHead.apply": 1
- "throw": 16
- "ti": 2
- "ties": 1
- "tiltedBlack": 3
- "tiltedGray": 3
- "time": 3
- "timeStamp": 1
- "timeout": 3
- "to": 11
- "toElement": 2
- "toJSON": 3
- "toSource": 1
- "toString": 3
- "toString.call": 2
- "toggle": 18
- "token": 1
- "token.type": 1
- "token.value": 1
- "tokenizer": 2
- "tom": 4
- "tom.move": 2
- "top": 11
- "toplevel": 1
- "tr": 4
- "transferEncodingExpression": 1
- "transform": 3
- "transforms": 1
- "transition": 2
- "tricky": 1
- "triggerRoute": 2
- "trim": 1
- "trimLeft": 2
- "trimRight": 2
- "true": 51
- "try": 7
- "tt": 1
- "tu": 1
- "type": 29
- "type1": 42
- "type10": 2
- "type11": 2
- "type12": 2
- "type13": 7
- "type14": 2
- "type15": 7
- "type16": 5
- "type2": 28
- "type3": 11
- "type4": 9
- "type5": 6
- "type6": 2
- "type7": 2
- "type8": 2
- "type9": 2
- "type=": 5
- "typeof": 20
- "u": 43
- "u*255": 1
- "u*r": 1
- "u/": 3
- "u0000": 1
- "u00ad": 1
- "u00b0": 11
- "u00c0": 4
- "u0600": 1
- "u0604": 1
- "u070f": 1
- "u1680": 1
- "u17b4": 1
- "u17b5": 1
- "u180E": 1
- "u2000": 1
- "u200A": 1
- "u200c": 1
- "u200f": 1
- "u2028": 3
- "u2029": 2
- "u202F": 1
- "u202f": 1
- "u205F": 1
- "u2060": 1
- "u206f": 1
- "u221e": 2
- "u3000": 1
- "u=": 3
- "uFEFF": 1
- "uFEFF/": 1
- "uFFFF": 4
- "ucProp": 5
- "ufeff": 1
- "ufff0": 1
- "uffff": 1
- "ui": 3
- "unary": 2
- "undefined": 87
- "unload": 3
- "unrecognized": 5
- "unshift": 3
- "up": 6
- "update": 1
- "ur": 1
- "url": 11
- "url.parse": 1
- "urlError": 2
- "urlencoded": 5
- "use": 1
- "useMap": 1
- "used": 1
- "usemap": 2
- "userAgent": 1
- "using": 6
- "utcDate": 1
- "util": 1
- "util._extend": 1
- "util.inherits": 5
- "v": 9
- "val": 9
- "value": 40
- "var": 306
- "ve": 1
- "version": 2
- "video": 3
- "video/mp4": 1
- "video/webm": 1
- "view": 3
- "viewOptions": 1
- "visibility": 2
- "visible": 4
- "vr": 2
- "vt": 1
- "w": 12
- "w.": 9
- "w/r": 1
- "want": 1
- "warn": 2
- "was": 3
- "we": 1
- "webforms": 1
- "webkit": 4
- "webkitPerspective": 1
- "websocket": 2
- "west": 2
- "wheelDelta": 1
- "whether": 1
- "which": 2
- "while": 10
- "white": 2
- "wi": 1
- "widows": 2
- "width": 29
- "width=": 2
- "window": 15
- "window.": 4
- "window.DocumentTouch": 1
- "window.HTMLDataListElement": 1
- "window.Modernizr": 1
- "window.WebGLRenderingContext": 1
- "window.Worker": 1
- "window.applicationCache": 1
- "window.document": 2
- "window.getComputedStyle": 1
- "window.history": 1
- "window.html5": 1
- "window.jQuery": 4
- "window.location": 4
- "window.location.hash": 1
- "window.location.pathname": 1
- "window.location.search": 1
- "window.matchMedia": 1
- "window.msMatchMedia": 1
- "window.navigator": 2
- "window.openDatabase": 1
- "window.postMessage": 1
- "winner": 6
- "with": 3
- "withCredentials": 3
- "without": 1
- "wr": 1
- "wrapError": 1
- "wt": 1
- "www": 6
- "x": 21
- "x00": 1
- "x0B": 2
- "xA0": 3
- "xhr": 1
- "xhr.setRequestHeader": 1
- "xml": 3
- "y": 3
- "yi": 1
- "you": 1
- "yr": 1
- "z": 2
- "zIndex": 2
- "zoom": 4
- "{": 875
- "|": 90
- "||": 88
- "}": 872
- "Julia":
- "#": 11
- "##": 5
- "#445": 1
- "#STOCKCORR": 1
- "(": 12
- ")": 12
- "*CorrWiener": 2
- "*dt": 2
- "*exp": 2
- "*sqrt": 2
- "+": 2
- "-": 10
- ".": 4
- ".01": 2
- ".03": 1
- ".2": 1
- ".3": 1
- ".4": 2
- "/2": 2
- "/250": 1
- ";": 1
- "Brownian": 1
- "Corr": 2
- "CorrWiener": 1
- "Correlated": 1
- "CurrentPrice": 3
- "Define": 1
- "Div": 3
- "Generating": 1
- "Geometric": 1
- "Information": 1
- "Issue": 1
- "Market": 1
- "Motion": 1
- "SimulPriceA": 5
- "SimulPriceB": 5
- "T": 5
- "Test": 1
- "The": 1
- "UpperTriangle": 1
- "Vol": 5
- "Wiener": 1
- "Wiener*UpperTriangle": 1
- "asset": 1
- "assets": 1
- "by": 1
- "case": 1
- "chol": 1
- "code": 1
- "correlated": 1
- "dt": 3
- "end": 3
- "for": 2
- "from": 1
- "function": 1
- "i": 5
- "information": 1
- "j": 7
- "n": 4
- "of": 1
- "original": 1
- "paths": 1
- "prices": 1
- "r": 3
- "randn": 1
- "return": 1
- "simulates": 1
- "stock": 1
- "stockcorr": 1
- "storages": 1
- "that": 1
- "the": 1
- "two": 1
- "unoptimised": 1
- "zeros": 2
- "Kotlin":
- "(": 15
- ")": 15
- ".lines": 1
- "<EmailAddress>": 1
- "<PhoneNumber>": 1
- "<PostalAddress>": 1
- "<String,>": 2
- "Contact": 1
- "Countries": 2
- "Country": 7
- "CountryID": 1
- "EmailAddress": 1
- "HashMap": 1
- "Int": 1
- "List": 3
- "Long": 1
- "Map": 2
- "PhoneNumber": 1
- "PostalAddress": 1
- "String": 7
- "TextFile": 1
- "USState": 1
- "addressbook": 1
- "addresses": 1
- "areaCode": 1
- "assert": 1
- "city": 1
- "class": 5
- "country": 3
- "countryTable": 2
- "emails": 1
- "for": 1
- "fun": 1
- "get": 2
- "host": 1
- "id": 2
- "if": 1
- "in": 1
- "line": 3
- "name": 2
- "null": 3
- "number": 1
- "object": 1
- "package": 1
- "phonenums": 1
- "private": 2
- "return": 1
- "state": 2
- "streetAddress": 1
- "stripWhiteSpace": 1
- "table": 5
- "true": 1
- "user": 1
- "val": 16
- "var": 1
- "xor": 1
- "zip": 1
- "{": 6
- "}": 6
- "Logtalk":
- "%": 3
- "(": 4
- ")": 4
- "-": 3
- ".": 2
- "end_object.": 1
- "hello_world": 1
- "initialization": 1
- "nl": 2
- "object": 1
- "write": 1
- "Markdown":
- "Tender": 1
- "Matlab":
- "%": 31
- "&": 1
- "(": 50
- ")": 50
- "*": 5
- "+": 3
- "-": 5
- "...": 3
- "/length": 1
- ";": 24
- "@getState": 1
- "@iirFilter": 1
- "A": 2
- "B": 3
- "Call": 2
- "G": 1
- "R": 1
- "a": 4
- "average": 1
- "b": 6
- "black": 1
- "blue": 1
- "classdef": 1
- "cyan": 1
- "directory": 2
- "disp": 8
- "end": 17
- "enumeration": 1
- "error": 1
- "filtfcn": 2
- "function": 9
- "g": 2
- "getState": 1
- "green": 1
- "if": 1
- "iirFilter": 1
- "in": 2
- "m": 3
- "magenta": 1
- "makeFilter": 1
- "matlab_class": 2
- "matlab_function": 5
- "methods": 1
- "n": 3
- "num2str": 3
- "obj": 2
- "obj.B": 2
- "obj.G": 2
- "obj.R": 2
- "properties": 1
- "r": 2
- "red": 1
- "resides": 2
- "result": 4
- "ret": 3
- "same": 2
- "size": 2
- "statefcn": 2
- "sum": 1
- "the": 2
- "v": 10
- "vOut": 2
- "value1": 4
- "value2": 4
- "which": 2
- "white": 1
- "x": 4
- "xn": 4
- "y": 2
- "yellow": 1
- "yn": 2
- "zeros": 1
- "|": 2
- "Nemerle":
- "(": 2
- ")": 2
- ";": 2
- "Main": 1
- "Program": 1
- "System.Console": 1
- "WriteLine": 1
- "module": 1
- "using": 1
- "void": 1
- "{": 2
- "}": 2
- "Nimrod":
- "#": 1
- "echo": 1
- "Nu":
- "#": 1
- "(": 1
- ")": 1
- "/usr/bin/env": 1
- "nush": 1
- "puts": 1
- "OCaml":
- "(": 7
- "(*": 2
- ")": 9
- "*)": 2
- "-": 21
- ";": 12
- "<": 1
- "<->": 3
- "@": 6
- "Base.List.iter": 1
- "Lazy": 1
- "List": 1
- "None": 5
- "Ops": 2
- "Option": 1
- "Some": 5
- "_": 1
- "a": 3
- "acc": 5
- "cps": 7
- "end": 4
- "f": 10
- "fold": 2
- "force": 1
- "fun": 8
- "function": 1
- "get_state": 1
- "hd": 6
- "k": 21
- "l": 8
- "l.push": 1
- "l.value": 2
- "l.waiters": 5
- "lazy_from_val": 1
- "let": 9
- "make": 1
- "map": 3
- "match": 4
- "module": 4
- "mutable": 1
- "open": 1
- "opt": 2
- "option": 1
- "push": 4
- "rec": 3
- "struct": 4
- "tl": 6
- "type": 2
- "unit": 4
- "value": 3
- "waiters": 5
- "when": 1
- "with": 4
- "x": 14
- "{": 1
- "|": 15
- "}": 3
- "Objective-C":
- "#": 7
- "##__VA_ARGS__": 7
- "#define": 65
- "#else": 8
- "#endif": 79
- "#error": 6
- "#if": 61
- "#ifdef": 10
- "#ifndef": 9
- "#import": 53
- "#include": 18
- "#pragma": 52
- "#warning": 1
- "%": 100
- "&": 56
- "&&": 167
- "(": 2574
- "(*": 2
- ")": 2572
- "*": 355
- "*)": 2
- "**": 41
- "**error": 1
- "**keys": 1
- "**objects": 1
- "*.*s": 1
- "*/": 49
- "*1.5": 1
- "*256": 1
- "*ASIAuthenticationError": 1
- "*ASIHTTPRequestRunLoopMode": 1
- "*ASIHTTPRequestVersion": 2
- "*ASIRequestCancelledError": 1
- "*ASIRequestTimedOutError": 1
- "*ASITooMuchRedirectionError": 1
- "*ASIUnableToCreateRequestError": 1
- "*PACFileData": 2
- "*PACFileReadStream": 2
- "*PACFileRequest": 2
- "*PACurl": 2
- "*_JKArrayCreate": 2
- "*_JKDictionaryCreate": 2
- "*_JKDictionaryHashEntry": 2
- "*_JKDictionaryHashTableEntryForKey": 2
- "*_headerView": 1
- "*_tableView": 1
- "*a": 3
- "*acceptHeader": 1
- "*accumulator": 1
- "*adapter": 1
- "*argv": 1
- "*array": 9
- "*atAddEntry": 1
- "*atCharacterPtr": 2
- "*atEntry": 3
- "*atStringCharacter": 2
- "*authenticationCredentials": 3
- "*authenticationRealm": 3
- "*authenticationScheme": 2
- "*b": 2
- "*bandwidthMeasurementDate": 1
- "*bandwidthThrottlingLock": 1
- "*bandwidthUsageTracker": 1
- "*blocks": 1
- "*c": 1
- "*cLength": 1
- "*cacheSlot": 4
- "*cachedHeaders": 1
- "*cancelledLock": 2
- "*cbInvocation": 1
- "*cbSignature": 1
- "*cell": 8
- "*certificates": 1
- "*cfHashes": 1
- "*clientCallBackInfo": 1
- "*clientCertificates": 2
- "*compressedBody": 1
- "*compressedPostBody": 2
- "*compressedPostBodyFilePath": 2
- "*connectionHeader": 1
- "*connectionInfo": 2
- "*connectionsLock": 1
- "*cookie": 2
- "*cookieHeader": 1
- "*cookies": 2
- "*credentials": 1
- "*ctx": 1
- "*data": 2
- "*dataDecompressor": 2
- "*decoder": 1
- "*defaultUserAgent": 1
- "*delegateAuthenticationLock": 1
- "*dictionary": 13
- "*domain": 2
- "*downloadDestinationPath": 2
- "*encodeState": 9
- "*encoding": 1
- "*entry": 4
- "*entryForKey": 1
- "*err": 4
- "*error": 4
- "*error_": 1
- "*etag": 1
- "*exception": 1
- "*failedRequest": 1
- "*fileDownloadOutputStream": 2
- "*fileManager": 2
- "*firstIndexPath": 1
- "*firstResponder": 1
- "*format": 8
- "*formatString": 1
- "*headRequest": 1
- "*header": 3
- "*headerView": 6
- "*hostKey": 1
- "*httpVersion": 1
- "*i": 5
- "*identifier": 1
- "*indexPath": 11
- "*indexPaths": 1
- "*indexPathsToAdd": 1
- "*indexPathsToRemove": 1
- "*indexes": 2
- "*indicator": 1
- "*inflatedFileDownloadOutputStream": 2
- "*invocation": 1
- "*jk_cachedObjects": 2
- "*jk_create_dictionary": 1
- "*jk_managedBuffer_resize": 1
- "*jk_object_for_token": 1
- "*jk_parse_array": 1
- "*jk_parse_dictionary": 1
- "*jsonString": 1
- "*keepAliveHeader": 1
- "*keyHashes": 2
- "*keys": 2
- "*lastActivityTime": 2
- "*lastIndexPath": 5
- "*lastModified": 1
- "*lineEnd": 1
- "*lineStart": 1
- "*lineString": 1
- "*m": 1
- "*mainRequest": 2
- "*managedBuffer": 3
- "*mimeType": 1
- "*networkThread": 1
- "*newCookies": 1
- "*newCredentials": 2
- "*newIndexPath": 1
- "*newIndexes": 1
- "*newObjects": 1
- "*newVisibleIndexPaths": 1
- "*ntlmDomain": 1
- "*objectPtr": 2
- "*objectStack": 3
- "*objects": 5
- "*oldEntry": 1
- "*oldIndexPath": 1
- "*oldIndexes": 1
- "*oldStream": 1
- "*oldVisibleIndexPaths": 1
- "*or1String": 1
- "*or2String": 1
- "*or3String": 1
- "*originalURL": 2
- "*parseState": 18
- "*parsedAtom": 1
- "*parser": 1
- "*pass": 1
- "*password": 2
- "*path": 1
- "*persistentConnectionsPool": 1
- "*pinnedHeader": 1
- "*pool": 1
- "*portKey": 1
- "*postBody": 2
- "*postBodyFilePath": 2
- "*postBodyReadStream": 2
- "*postBodyWriteStream": 2
- "*progressLock": 1
- "*proxyAuthenticationRealm": 3
- "*proxyAuthenticationScheme": 2
- "*proxyCredentials": 2
- "*proxyDomain": 2
- "*proxyHost": 2
- "*proxyPassword": 2
- "*proxyToUse": 1
- "*proxyType": 2
- "*proxyUsername": 2
- "*ptr": 2
- "*pullDownView": 1
- "*rawResponseData": 2
- "*readStream": 2
- "*redirectURL": 2
- "*request": 1
- "*requestCookies": 2
- "*requestCredentials": 2
- "*requestHeaders": 2
- "*requestID": 3
- "*requestMethod": 2
- "*responseCookies": 3
- "*responseHeaders": 3
- "*responseStatusMessage": 3
- "*rowInfo": 1
- "*runLoopMode": 2
- "*s": 3
- "*savedIndexPath": 1
- "*scanner": 1
- "*section": 9
- "*sections": 1
- "*sessionCookies": 1
- "*sessionCookiesLock": 1
- "*sessionCredentials": 2
- "*sessionCredentialsLock": 1
- "*sessionCredentialsStore": 1
- "*sessionProxyCredentials": 1
- "*sessionProxyCredentialsStore": 1
- "*sharedQueue": 1
- "*signature": 1
- "*sslProperties": 2
- "*startForNoSelection": 2
- "*statusTimer": 2
- "*stop": 8
- "*stream": 1
- "*stringEncoding": 1
- "*target": 2
- "*tempUserAgentString": 1
- "*temporaryFileDownloadPath": 2
- "*temporaryUncompressedDataDownloadPath": 2
- "*theRequest": 2
- "*throttleWakeUpTime": 1
- "*toAdd": 1
- "*toRemove": 1
- "*topVisibleIndex": 1
- "*u": 1
- "*ui": 1
- "*underlyingError": 1
- "*url": 2
- "*user": 1
- "*userAgentHeader": 1
- "*userAgentString": 2
- "*userInfo": 2
- "*username": 2
- "*usernameAndPassword": 1
- "*v": 2
- "*window": 2
- "+": 211
- "-": 721
- ".": 2
- "...": 12
- ".0": 7
- ".0f": 1
- ".17g": 1
- ".2.1": 1
- ".25": 1
- ".2x": 1
- ".33": 1
- ".4x": 5
- ".5.7": 1
- ".9": 6
- ".height": 4
- ".key": 11
- ".keyHash": 2
- ".location": 1
- ".object": 7
- ".offset": 2
- ".pinnedToViewport": 3
- ".size.height": 1
- "/": 16
- "/*": 49
- "//": 771
- "//#import": 1
- "//#include": 1
- "////////////": 6
- "///////////////////////////////////////////////////////////////////////////////////////////////////": 21
- "//If": 3
- "//Only": 1
- "//Some": 1
- "//block": 12
- "//self.variableHeightRows": 1
- "0": 2
- ";": 2583
- "<": 62
- "<<": 17
- "<=>": 15
- "<ASICacheDelegate>": 9
- "<ASIHTTPRequestDelegate,>": 1
- "<ASIHTTPRequestDelegate>": 1
- "<ASIProgressDelegate>": 2
- "<AvailabilityMacros.h>": 1
- "<CFNetwork/CFNetwork.h>": 1
- "<Cocoa/Cocoa.h>": 2
- "<CoreFoundation/CFArray.h>": 1
- "<CoreFoundation/CFDictionary.h>": 1
- "<CoreFoundation/CFNumber.h>": 1
- "<CoreFoundation/CFString.h>": 1
- "<CoreFoundation/CoreFoundation.h>": 1
- "<Foundation/Foundation.h>": 4
- "<Foundation/NSArray.h>": 2
- "<Foundation/NSAutoreleasePool.h>": 1
- "<Foundation/NSData.h>": 2
- "<Foundation/NSDictionary.h>": 2
- "<Foundation/NSError.h>": 1
- "<Foundation/NSException.h>": 1
- "<Foundation/NSNull.h>": 1
- "<Foundation/NSObjCRuntime.h>": 2
- "<Foundation/NSString.h>": 1
- "<MobileCoreServices/MobileCoreServices.h>": 1
- "<NSApplicationDelegate>": 1
- "<NSCopying,>": 2
- "<NSCopying>": 1
- "<NSObject,>": 1
- "<NSObject>": 1
- "<NULL>": 1
- "<SystemConfiguration/SystemConfiguration.h>": 1
- "<TUITableViewDataSource>": 4
- "<TUITableViewDelegate>": 4
- "<TargetConditionals.h>": 1
- "<Three20Core/NSDataAdditions.h>": 1
- "<UIKit/UIKit.h>": 1
- "<assert.h>": 1
- "<limits.h>": 2
- "<math.h>": 1
- "<objc/runtime.h>": 1
- "<stddef.h>": 1
- "<stdint.h>": 2
- "<stdio.h>": 2
- "<stdlib.h>": 1
- "<string.h>": 1
- "<sys/errno.h>": 1
- "@": 331
- "@.": 3
- "@catch": 1
- "@class": 4
- "@dd": 1
- "@end": 45
- "@finally": 1
- "@implementation": 18
- "@interface": 23
- "@optional": 2
- "@private": 2
- "@property": 150
- "@protocol": 3
- "@required": 1
- "@selector": 53
- "@synthesize": 128
- "@try": 1
- "A": 3
- "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789": 1
- "ARC": 1
- "ASIAskServerIfModifiedCachePolicy": 1
- "ASIAskServerIfModifiedWhenStaleCachePolicy": 1
- "ASIAuthenticationDialog": 4
- "ASIAuthenticationError": 1
- "ASIAuthenticationErrorType": 3
- "ASIAuthenticationState": 4
- "ASIBasicBlock": 23
- "ASICachePolicy": 4
- "ASICacheStoragePolicy": 2
- "ASICompressionError": 1
- "ASIConnectionFailureErrorType": 1
- "ASIDataBlock": 4
- "ASIDataCompressor": 2
- "ASIDataDecompressor": 4
- "ASIFallbackToCacheIfLoadFailsCachePolicy": 1
- "ASIFileManagementError": 3
- "ASIHTTPAuthenticationNeeded": 2
- "ASIHTTPRequest": 42
- "ASIHTTPRequest*": 1
- "ASIHTTPRequestRunLoopMode": 1
- "ASIHeadersBlock": 4
- "ASIInputStream": 4
- "ASIInternalErrorWhileApplyingCredentialsType": 1
- "ASIInternalErrorWhileBuildingRequestType": 3
- "ASINetworkErrorType": 1
- "ASINetworkQueue": 1
- "ASINoAuthenticationNeededYet": 3
- "ASIProgressBlock": 7
- "ASIProgressDelegate": 1
- "ASIProxyAuthenticationNeeded": 2
- "ASIRequestCancelledError": 3
- "ASIRequestCancelledErrorType": 2
- "ASIRequestTimedOutError": 2
- "ASIRequestTimedOutErrorType": 2
- "ASISizeBlock": 7
- "ASITooMuchRedirectionError": 2
- "ASITooMuchRedirectionErrorType": 3
- "ASIUnableToCreateRequestError": 3
- "ASIUnableToCreateRequestErrorType": 2
- "ASIUnhandledExceptionError": 3
- "ASIUseDefaultCachePolicy": 1
- "ASIWWANBandwidthThrottleAmount": 2
- "ASI_DEBUG_LOG": 19
- "AUTH": 23
- "An": 2
- "Application": 1
- "As": 1
- "AuthenticationRealm": 2
- "AuthenticationScheme": 2
- "Authorization": 1
- "Automatic": 1
- "BOOL": 153
- "Basic": 1
- "Bundle": 1
- "C": 7
- "C82080UL": 1
- "CATransaction": 3
- "CFBundleDisplayName": 1
- "CFBundleName": 1
- "CFBundleShortVersionString": 1
- "CFBundleVersion": 1
- "CFDictionaryRef": 2
- "CFEqual": 2
- "CFHTTPAuthenticationRef": 4
- "CFHTTPAuthenticationRequiresAccountDomain": 1
- "CFHTTPMessageApplyCredentialDictionary": 4
- "CFHTTPMessageCopyAllHeaderFields": 1
- "CFHTTPMessageCopyResponseStatusLine": 1
- "CFHTTPMessageCopyVersion": 1
- "CFHTTPMessageCreateRequest": 1
- "CFHTTPMessageGetResponseStatusCode": 1
- "CFHTTPMessageIsHeaderComplete": 1
- "CFHTTPMessageRef": 3
- "CFHTTPMessageSetHeaderFieldValue": 2
- "CFHash": 2
- "CFHashCode": 1
- "CFMutableDictionaryRef": 2
- "CFOptionFlags": 1
- "CFReadStreamCopyProperty": 2
- "CFReadStreamCreateForHTTPRequest": 1
- "CFReadStreamCreateForStreamedHTTPRequest": 2
- "CFReadStreamRef": 9
- "CFReadStreamSetProperty": 4
- "CFRelease": 23
- "CFRetain": 5
- "CFStreamEventType": 2
- "CFStringConvertEncodingToNSStringEncoding": 1
- "CFStringConvertIANACharSetNameToEncoding": 1
- "CFStringEncoding": 1
- "CFStringRef": 6
- "CFTypeRef": 1
- "CFURLRef": 1
- "CGFloat": 47
- "CGPoint": 7
- "CGPointMake": 1
- "CGRect": 47
- "CGRectContainsPoint": 1
- "CGRectGetMaxY": 5
- "CGRectIntersectsRect": 5
- "CGRectMake": 8
- "CGRectZero": 5
- "CGSize": 5
- "CGSizeEqualToSize": 1
- "CGSizeMake": 3
- "CGSizeZero": 1
- "CONNECTION": 4
- "Cache": 1
- "Class": 3
- "Closing": 1
- "Code": 1
- "Collection": 1
- "Content": 2
- "Control": 1
- "ConversionResult": 1
- "Counting": 1
- "Credentials": 9
- "Current": 1
- "DEBUG_HTTP_AUTHENTICATION": 7
- "DEBUG_PERSISTENT_CONNECTIONS": 4
- "DEBUG_REQUEST_STATUS": 8
- "DEBUG_THROTTLING": 4
- "Debug": 1
- "Deserializing": 1
- "Document": 1
- "E2080UL": 1
- "EEE": 1
- "Error": 1
- "Expected": 3
- "Expires": 1
- "F": 1
- "FALSE": 3
- "FFFD": 1
- "FFFF": 3
- "FFFFFFF": 1
- "Failed": 9
- "Floating": 1
- "Foo": 2
- "FooAppDelegate": 2
- "Garbage": 1
- "HEAD": 3
- "HEADER_Z_POSITION": 2
- "HEADRequest": 2
- "HH": 1
- "HTTP": 2
- "Hash": 1
- "Host": 1
- "IANAEncoding": 3
- "IBOutlet": 1
- "INDEX_PATHS_FOR_VISIBLE_ROWS": 5
- "INT_MAX": 2
- "INT_MIN": 3
- "Icon.png": 1
- "If": 1
- "Illegal": 1
- "Infinity.": 1
- "Internal": 2
- "Invalid": 1
- "It": 1
- "JKArray": 13
- "JKAtIndexKey": 1
- "JKBuffer": 2
- "JKClassArray": 1
- "JKClassDictionary": 1
- "JKClassNull": 1
- "JKClassNumber": 1
- "JKClassString": 1
- "JKClassUnknown": 1
- "JKConstBuffer": 2
- "JKConstPtrRange": 2
- "JKDictionary": 21
- "JKDictionaryEnumerator": 4
- "JKEncodeCache": 6
- "JKEncodeOptionAsData": 10
- "JKEncodeOptionAsString": 10
- "JKEncodeOptionAsTypeMask": 1
- "JKEncodeOptionCollectionObj": 17
- "JKEncodeOptionStringObj": 3
- "JKEncodeOptionStringObjTrimQuotes": 3
- "JKEncodeOptionType": 2
- "JKEncodeState": 11
- "JKErrorDomain": 3
- "JKErrorLine0Key": 1
- "JKErrorLine1Key": 1
- "JKFastClassLookup": 2
- "JKFlags": 5
- "JKHash": 6
- "JKHashTableEntry": 22
- "JKLineNumberKey": 1
- "JKManagedBuffer": 5
- "JKManagedBufferFlags": 1
- "JKManagedBufferLocationMask": 1
- "JKManagedBufferLocationShift": 1
- "JKManagedBufferMustFree": 2
- "JKManagedBufferOnHeap": 1
- "JKManagedBufferOnStack": 1
- "JKObjCImpCache": 2
- "JKObjectStack": 5
- "JKObjectStackFlags": 1
- "JKObjectStackLocationMask": 1
- "JKObjectStackLocationShift": 1
- "JKObjectStackMustFree": 1
- "JKObjectStackOnHeap": 1
- "JKObjectStackOnStack": 1
- "JKParseAcceptComma": 2
- "JKParseAcceptCommaOrEnd": 1
- "JKParseAcceptEnd": 3
- "JKParseAcceptValue": 2
- "JKParseAcceptValueOrEnd": 1
- "JKParseOptionComments": 2
- "JKParseOptionFlags": 12
- "JKParseOptionLooseUnicode": 2
- "JKParseOptionNone": 1
- "JKParseOptionPermitTextAfterValidJSON": 2
- "JKParseOptionStrict": 1
- "JKParseOptionUnicodeNewlines": 2
- "JKParseOptionValidFlags": 1
- "JKParseState": 20
- "JKParseToken": 2
- "JKPtrRange": 2
- "JKRange": 2
- "JKSERIALIZER_BLOCKS_PROTO": 1
- "JKSerializeOptionEscapeForwardSlashes": 2
- "JKSerializeOptionEscapeUnicode": 2
- "JKSerializeOptionFlags": 30
- "JKSerializeOptionNone": 7
- "JKSerializeOptionPretty": 2
- "JKSerializeOptionValidFlags": 1
- "JKSerializer": 18
- "JKTokenCache": 2
- "JKTokenCacheItem": 2
- "JKTokenType": 2
- "JKTokenTypeArrayBegin": 1
- "JKTokenTypeArrayEnd": 1
- "JKTokenTypeComma": 1
- "JKTokenTypeFalse": 1
- "JKTokenTypeInvalid": 1
- "JKTokenTypeNull": 1
- "JKTokenTypeNumber": 1
- "JKTokenTypeObjectBegin": 1
- "JKTokenTypeObjectEnd": 1
- "JKTokenTypeSeparator": 1
- "JKTokenTypeString": 1
- "JKTokenTypeTrue": 1
- "JKTokenTypeWhiteSpace": 1
- "JKTokenValue": 2
- "JKValueType": 1
- "JKValueTypeDouble": 1
- "JKValueTypeLongLong": 1
- "JKValueTypeNone": 1
- "JKValueTypeString": 2
- "JKValueTypeUnsignedLongLong": 1
- "JK_ALIGNED": 1
- "JK_ALLOC_SIZE_NON_NULL_ARGS_WARN_UNUSED": 2
- "JK_ATTRIBUTES": 15
- "JK_AT_STRING_PTR": 1
- "JK_CACHE_PROBES": 1
- "JK_CACHE_SLOTS": 1
- "JK_CACHE_SLOTS_BITS": 2
- "JK_DEPRECATED_ATTRIBUTE": 6
- "JK_ENABLE_CF_TRANSFER_OWNERSHIP_CALLBACKS": 2
- "JK_ENCODE_CACHE_SLOTS": 1
- "JK_END_STRING_PTR": 2
- "JK_EXPECTED": 4
- "JK_EXPECT_F": 15
- "JK_EXPECT_T": 23
- "JK_FAST_TRAILING_BYTES": 2
- "JK_HASH_INIT": 1
- "JK_INIT_CACHE_AGE": 1
- "JK_JSONBUFFER_SIZE": 1
- "JK_NONNULL_ARGS": 1
- "JK_PREFETCH": 2
- "JK_STACK_OBJS": 1
- "JK_STATIC_INLINE": 13
- "JK_TOKENBUFFER_SIZE": 1
- "JK_UNUSED_ARG": 2
- "JK_UTF8BUFFER_SIZE": 1
- "JK_WARN_UNUSED": 1
- "JK_WARN_UNUSED_CONST": 1
- "JK_WARN_UNUSED_CONST_NONNULL_ARGS": 1
- "JK_WARN_UNUSED_NONNULL_ARGS": 1
- "JK_WARN_UNUSED_PURE": 1
- "JK_WARN_UNUSED_PURE_NONNULL_ARGS": 1
- "JK_WARN_UNUSED_SENTINEL": 1
- "JSON": 1
- "JSONData": 6
- "JSONDataWithOptions": 15
- "JSONDecoder": 2
- "JSONKIT_VERSION_MAJOR": 1
- "JSONKIT_VERSION_MINOR": 1
- "JSONKit": 7
- "JSONKitDeserializing": 2
- "JSONKitSerializing": 6
- "JSONKitSerializingBlockAdditions": 4
- "JSONNumberStateError": 1
- "JSONNumberStateExponent": 1
- "JSONNumberStateExponentPlusMinus": 1
- "JSONNumberStateExponentStart": 1
- "JSONNumberStateFinished": 1
- "JSONNumberStateFractionalNumber": 1
- "JSONNumberStateFractionalNumberStart": 1
- "JSONNumberStatePeriod": 1
- "JSONNumberStateStart": 1
- "JSONNumberStateWholeNumber": 1
- "JSONNumberStateWholeNumberMinus": 1
- "JSONNumberStateWholeNumberStart": 1
- "JSONNumberStateWholeNumberZero": 1
- "JSONString": 6
- "JSONStringStateError": 5
- "JSONStringStateEscape": 2
- "JSONStringStateEscapedNeedEscapeForSurrogate": 1
- "JSONStringStateEscapedNeedEscapedUForSurrogate": 1
- "JSONStringStateEscapedUnicode1": 2
- "JSONStringStateEscapedUnicode2": 1
- "JSONStringStateEscapedUnicode3": 1
- "JSONStringStateEscapedUnicode4": 1
- "JSONStringStateEscapedUnicodeSurrogate1": 1
- "JSONStringStateEscapedUnicodeSurrogate2": 1
- "JSONStringStateEscapedUnicodeSurrogate3": 1
- "JSONStringStateEscapedUnicodeSurrogate4": 1
- "JSONStringStateFinished": 1
- "JSONStringStateParsing": 1
- "JSONStringStateStart": 1
- "JSONStringWithOptions": 15
- "KB": 2
- "Key": 2
- "LL": 1
- "LLONG_MIN": 1
- "LONG_BIT": 1
- "LONG_MAX": 3
- "LONG_MIN": 3
- "Length": 1
- "Leopard": 1
- "MD5": 1
- "MMM": 1
- "Mac": 2
- "Macintosh": 2
- "MainMenuViewController": 2
- "Methods": 2
- "My": 1
- "NO": 43
- "NSArray": 34
- "NSArray*": 1
- "NSAutoreleasePool": 2
- "NSBundle": 1
- "NSCParameterAssert": 20
- "NSComparator": 1
- "NSComparisonResult": 1
- "NSData": 42
- "NSData*": 1
- "NSDataAdditions": 1
- "NSDate": 11
- "NSDefaultRunLoopMode": 1
- "NSDictionary": 46
- "NSDictionary.": 1
- "NSDownArrowFunctionKey": 1
- "NSEnumerationOptions": 4
- "NSEnumerator": 2
- "NSError": 67
- "NSError**": 2
- "NSEvent": 3
- "NSEvent*": 1
- "NSException": 21
- "NSFastEnumeration": 2
- "NSFastEnumerationState": 2
- "NSFileManager": 5
- "NSHTTPCookie": 4
- "NSHTTPCookieStorage": 2
- "NSINTEGER_DEFINED": 2
- "NSISOLatin1StringEncoding": 1
- "NSIndexPath": 5
- "NSIndexSet": 6
- "NSInputStream": 9
- "NSInteger": 56
- "NSIntegerMax": 4
- "NSIntegerMin": 3
- "NSInternalInconsistencyException": 5
- "NSInvalidArgumentException": 7
- "NSInvocation": 6
- "NSLocalizedDescriptionKey": 11
- "NSLocalizedFailureReasonErrorKey": 1
- "NSLocalizedString": 1
- "NSLock": 2
- "NSLog": 3
- "NSMakeCollectable": 7
- "NSMallocException": 2
- "NSMaxRange": 4
- "NSMenu": 1
- "NSMethodSignature": 2
- "NSMutableArray": 31
- "NSMutableCopying": 2
- "NSMutableData": 8
- "NSMutableDictionary": 29
- "NSMutableIndexSet": 8
- "NSNotFound": 1
- "NSNotification": 2
- "NSNumber": 15
- "NSNumberAllocImp": 2
- "NSNumberInitWithUnsignedLongLongImp": 2
- "NSObject": 5
- "NSOperation": 1
- "NSOperationQueue": 3
- "NSOrderedAscending": 4
- "NSOrderedDescending": 4
- "NSOrderedSame": 1
- "NSOutputStream": 7
- "NSParameterAssert": 17
- "NSProcessInfo": 2
- "NSRange": 1
- "NSRangeException": 6
- "NSRecursiveLock": 13
- "NSResponder": 1
- "NSRunLoop": 2
- "NSScanner": 2
- "NSString": 184
- "NSString*": 13
- "NSString.": 2
- "NSStringEncoding": 6
- "NSStringFromClass": 20
- "NSStringFromSelector": 18
- "NSTemporaryDirectory": 2
- "NSThread": 10
- "NSTimeInterval": 11
- "NSTimer": 5
- "NSTimer*": 1
- "NSUInteger": 94
- "NSUIntegerMax": 9
- "NSURL": 23
- "NSURLCredential": 9
- "NSURLCredentialPersistencePermanent": 2
- "NSUTF8StringEncoding": 1
- "NSUnderlyingErrorKey": 3
- "NSUpArrowFunctionKey": 1
- "NSWindow": 2
- "NSZone": 6
- "NS_BLOCKS_AVAILABLE": 19
- "NS_BLOCK_ASSERTIONS": 1
- "NS_BUILD_32_LIKE_64": 1
- "NTLM": 2
- "NULL": 221
- "NULL.": 7
- "NaN": 1
- "NetworkRequestErrorDomain": 13
- "OS": 2
- "Objective": 3
- "Obtain": 1
- "Original": 1
- "PACFileData": 1
- "PACFileReadStream": 4
- "PACFileRequest": 4
- "PACurl": 3
- "PlaygroundViewController": 2
- "Port": 1
- "Possible": 1
- "Private": 1
- "Range": 2
- "ReadStreamClientCallBack": 1
- "Realm": 1
- "RedirectionLimit": 2
- "Reference": 1
- "Request": 27
- "Response": 1
- "SBJsonParser": 2
- "SBJsonStreamParser": 2
- "SBJsonStreamParserAccumulator": 2
- "SBJsonStreamParserAdapter": 2
- "SBJsonStreamParserComplete": 1
- "SBJsonStreamParserError": 1
- "SBJsonStreamParserWaitingForData": 1
- "SEL": 26
- "SIZE_MAX": 1
- "SSIZE_MAX": 1
- "SSL": 1
- "STATUS": 1
- "SecIdentityRef": 2
- "Serializing": 1
- "Showing": 4
- "Sleeping": 1
- "SortCells": 1
- "Status": 1
- "StyleView": 2
- "StyleView*": 2
- "StyleViewController": 2
- "TARGET_OS_IPHONE": 11
- "THROTTLING": 3
- "TRUE": 1
- "TTD": 1
- "TTDASSERT": 2
- "TTDASSERT.": 1
- "TTDCONDITIONLOG": 2
- "TTDCONDITIONLOG.": 1
- "TTDERROR": 1
- "TTDINFO": 1
- "TTDPRINT": 1
- "TTDPRINT.": 1
- "TTDWARNING": 1
- "TTGlobalCoreLocale": 1
- "TTGlobalCorePaths": 1
- "TTImageView": 1
- "TTImageView*": 1
- "TTRectInset": 3
- "TTSectionedDataSource": 1
- "TTStyle*": 7
- "TTStyleContext": 1
- "TTStyleContext*": 1
- "TTStyleSheet": 4
- "TTTableTextItem": 48
- "TTTableViewController": 1
- "TTViewController": 1
- "TT_RELEASE_SAFELY": 11
- "TUIFastIndexPath": 91
- "TUIFastIndexPath*": 1
- "TUIScrollView": 1
- "TUIScrollViewDelegate": 1
- "TUITableView": 25
- "TUITableView*": 1
- "TUITableViewCalculateNextIndexPathBlock": 3
- "TUITableViewCell": 24
- "TUITableViewDataSource": 2
- "TUITableViewDelegate": 1
- "TUITableViewInsertionMethod": 3
- "TUITableViewInsertionMethodAfterIndex": 1
- "TUITableViewInsertionMethodAtIndex": 1
- "TUITableViewInsertionMethodBeforeIndex": 1
- "TUITableViewRowInfo": 3
- "TUITableViewScrollPosition": 5
- "TUITableViewScrollPositionBottom": 1
- "TUITableViewScrollPositionMiddle": 1
- "TUITableViewScrollPositionNone": 2
- "TUITableViewScrollPositionToVisible": 3
- "TUITableViewScrollPositionTop": 2
- "TUITableViewSection": 17
- "TUITableViewSectionHeader": 6
- "TUITableViewStyle": 4
- "TUITableViewStyleGrouped": 2
- "TUITableViewStylePlain": 2
- "TUIView": 20
- "TUIViewAutoresizingFlexibleWidth": 1
- "The": 6
- "This": 4
- "Three20": 3
- "Type": 2
- "U": 5
- "UIApplication": 2
- "UIBackgroundTaskIdentifier": 1
- "UIBackgroundTaskInvalid": 3
- "UIColor": 3
- "UIControlStateDisabled": 1
- "UIControlStateHighlighted": 1
- "UIControlStateSelected": 1
- "UIEdgeInsetsMake": 3
- "UIFont": 3
- "UILabel": 2
- "UILabel*": 2
- "UINT_MAX": 3
- "UIScrollView": 1
- "UIScrollView*": 1
- "UITableViewStyleGrouped": 1
- "UIViewAutoresizingFlexibleBottomMargin": 3
- "UIViewAutoresizingFlexibleHeight": 1
- "UIViewAutoresizingFlexibleWidth": 4
- "UIViewController": 2
- "UL": 149
- "ULLONG_MAX": 1
- "ULONG_MAX": 3
- "UNI_MAX_BMP": 1
- "UNI_MAX_LEGAL_UTF32": 1
- "UNI_MAX_UTF16": 1
- "UNI_MAX_UTF32": 1
- "UNI_REPLACEMENT_CHAR": 1
- "UNI_SUR_HIGH_END": 1
- "UNI_SUR_HIGH_START": 1
- "UNI_SUR_LOW_END": 1
- "UNI_SUR_LOW_START": 1
- "URL": 49
- "URLWithString": 1
- "UTF16": 1
- "UTF32": 11
- "UTF8": 3
- "UTF8.": 3
- "UTF8String": 1
- "Unable": 24
- "Unexpected": 1
- "Unknown": 3
- "Used": 1
- "WORD_BIT": 1
- "Waking": 1
- "X": 3
- "YES": 56
- "_ASIAuthenticationState": 1
- "_ASINetworkErrorType": 1
- "_JKArrayClass": 5
- "_JKArrayInsertObjectAtIndex": 3
- "_JKArrayInstanceSize": 4
- "_JKArrayRemoveObjectAtIndex": 3
- "_JKArrayReplaceObjectAtIndexWithObject": 3
- "_JKDictionaryAddObject": 5
- "_JKDictionaryCapacity": 3
- "_JKDictionaryCapacityForCount": 4
- "_JKDictionaryClass": 5
- "_JKDictionaryHashEntry": 2
- "_JKDictionaryHashTableEntryForKey": 2
- "_JKDictionaryInstanceSize": 4
- "_JKDictionaryRemoveObjectWithEntry": 4
- "_JKDictionaryResizeIfNeccessary": 3
- "_JSONDecoderCleanup": 1
- "_JSONKIT_H_": 2
- "_NSStringObjectFromJSONString": 1
- "__APPLE_CC__": 2
- "__BLOCKS__": 2
- "__FILE__": 1
- "__GNUC_MINOR__": 1
- "__GNUC__": 6
- "__IPHONE_3_2": 2
- "__IPHONE_4_0": 7
- "__IPHONE_OS_VERSION_MAX_ALLOWED": 5
- "__LINE__": 1
- "__LP64__": 2
- "__MAC_10_5": 2
- "__MAC_10_6": 2
- "__OBJC_GC__": 1
- "__OBJC__": 2
- "__attribute__": 3
- "__block": 1
- "__builtin_expect": 1
- "__builtin_prefetch": 1
- "__clang_analyzer__": 3
- "__cplusplus": 2
- "__has_feature": 3
- "__inline__": 1
- "__isDraggingCell": 1
- "__unsafe_unretained": 2
- "__updateDraggingCell": 1
- "_cmd": 18
- "_contentHeight": 8
- "_currentDragToReorderIndexPath": 1
- "_currentDragToReorderInsertionMethod": 1
- "_currentDragToReorderLocation": 2
- "_currentDragToReorderMouseOffset": 2
- "_dataSource": 7
- "_delegate": 3
- "_dragToReorderCell": 8
- "_enqueueReusableCell": 3
- "_futureMakeFirstResponderToken": 3
- "_headerView": 11
- "_headerView.autoresizingMask": 1
- "_headerView.frame": 1
- "_headerView.frame.size.height": 2
- "_headerView.hidden": 5
- "_headerView.layer.zPosition": 1
- "_indexPathShouldBeFirstResponder": 4
- "_jk_NSNumberAllocImp": 2
- "_jk_NSNumberClass": 2
- "_jk_NSNumberInitWithUnsignedLongLongImp": 2
- "_jk_encode_prettyPrint": 1
- "_keepVisibleIndexPathForReload": 5
- "_lastSize": 3
- "_lastSize.height": 1
- "_layoutCells": 3
- "_layoutSectionHeaders": 3
- "_makeRowAtIndexPathFirstResponder": 2
- "_preLayoutCells": 3
- "_previousDragToReorderIndexPath": 1
- "_previousDragToReorderInsertionMethod": 1
- "_pullDownView": 7
- "_pullDownView.frame": 1
- "_pullDownView.frame.size.height": 2
- "_pullDownView.hidden": 5
- "_relativeOffsetForReload": 3
- "_reusableTableCells": 5
- "_scrollView": 5
- "_scrollView.autoresizingMask": 1
- "_sectionInfo": 30
- "_selectedIndexPath": 10
- "_setupRowHeights": 2
- "_style": 9
- "_styleDisabled": 6
- "_styleHighlight": 6
- "_styleSelected": 6
- "_styleType": 6
- "_tableFlags": 1
- "_tableFlags.animateSelectionChanges": 3
- "_tableFlags.dataSourceNumberOfSectionsInTableView": 2
- "_tableFlags.delegateTableViewWillDisplayCellForRowAtIndexPath": 2
- "_tableFlags.derepeaterEnabled": 1
- "_tableFlags.didFirstLayout": 3
- "_tableFlags.forceSaveScrollPosition": 3
- "_tableFlags.layoutSubviewsReentrancyGuard": 3
- "_tableFlags.maintainContentOffsetAfterReload": 4
- "_tableView": 3
- "_tableView.dataSource": 3
- "_tableView.delegate": 1
- "_topVisibleIndexPath": 1
- "_updateDerepeaterViews": 2
- "_updateSectionInfo": 3
- "_visibleItems": 17
- "_visibleSectionHeaders": 7
- "a": 33
- "a.frame.origin.y": 2
- "aBytesReceivedBlock": 3
- "aBytesSentBlock": 3
- "aCompletionBlock": 3
- "aDownloadSizeIncrementedBlock": 3
- "aFailedBlock": 3
- "aKey": 18
- "aNotification": 1
- "aProxyAuthenticationBlock": 3
- "aReceivedBlock": 6
- "aRedirectBlock": 3
- "aStartedBlock": 3
- "about": 2
- "absoluteURL": 2
- "acceptHeader": 2
- "acceptsFirstResponder": 2
- "access": 2
- "accumulator": 1
- "accumulator.value": 1
- "activity": 1
- "adapter": 1
- "adapter.delegate": 1
- "addBasicAuthenticationHeaderWithUsername": 3
- "addHeader": 2
- "addIdx": 4
- "addImageView": 5
- "addIndex": 3
- "addKeyEntry": 2
- "addObject": 17
- "addObjectsFromArray": 1
- "addOperation": 1
- "addRequestHeader": 11
- "addSessionCookie": 2
- "addSubview": 10
- "addText": 1
- "addTextView": 5
- "addTimer": 1
- "addToSize": 1
- "addView": 5
- "advanceBy": 1
- "after": 1
- "age": 3
- "agent": 2
- "aligned": 1
- "all": 1
- "allKeys": 1
- "allObjects": 2
- "allValues": 1
- "alloc": 51
- "allocWithZone": 6
- "alloc_size": 1
- "allocate": 1
- "allowCompressedResponse": 6
- "allowResumeForFileDownloads": 5
- "alpha": 3
- "already": 2
- "always": 1
- "always_inline": 1
- "amount": 15
- "an": 4
- "anAuthenticationBlock": 3
- "anIdentity": 1
- "anObject": 17
- "anUploadSizeIncrementedBlock": 3
- "and": 13
- "andCachePolicy": 3
- "andKeys": 1
- "andPassword": 3
- "andResponseEncoding": 2
- "animateSelectionChanges": 3
- "animated": 28
- "append": 1
- "appendData": 2
- "appendPostData": 2
- "appendPostDataFromFile": 2
- "application/octet": 1
- "applicationDidFinishLaunching": 1
- "apply": 5
- "applyAuthorizationHeader": 3
- "applyCookieHeader": 4
- "applyCredentials": 2
- "applyProxyCredentials": 2
- "architectures.": 1
- "are": 4
- "arg": 10
- "argc": 1
- "argument": 6
- "argument.": 1
- "argumentNumber": 4
- "arguments": 1
- "array": 83
- "arrayIdx": 5
- "arrayWithCapacity": 2
- "arrayWithObjects": 1
- "as": 8
- "ask": 4
- "askDelegateForCredentials": 1
- "askDelegateForProxyCredentials": 1
- "assign": 84
- "at": 4
- "atAddEntry": 6
- "atCharacterPtr": 5
- "atEntry": 45
- "atIndex": 7
- "atObject": 12
- "atScrollPosition": 3
- "atStringCharacter": 3
- "attemptToApplyCredentialsAndResume": 1
- "attemptToApplyProxyCredentialsAndResume": 1
- "attempted": 2
- "attr": 3
- "attributesOfItemAtPath": 2
- "authenticate": 1
- "authentication": 9
- "authenticationCredentials": 7
- "authenticationNeeded": 6
- "authenticationNeededBlock": 7
- "authenticationRealm": 5
- "authenticationRetryCount": 5
- "authenticationScheme": 7
- "autorelease": 32
- "averageBandwidthUsedPerSecond": 2
- "b": 8
- "b.frame.origin.y": 2
- "backgroundTask": 7
- "bad": 2
- "bad/expired/self": 1
- "bandwidth": 2
- "bandwidthThrottlingLock": 1
- "bandwidthUsageTracker": 1
- "bandwidthUsedInLastSecond": 1
- "base64forData": 1
- "be": 9
- "because": 2
- "been": 2
- "beforeDate": 1
- "begin": 1
- "beginBackgroundTaskWithExpirationHandler": 1
- "behavior": 1
- "behaviour": 1
- "bit": 1
- "bits": 2
- "block": 48
- "blocks": 17
- "blue": 3
- "both": 1
- "bottom": 5
- "bounds": 3
- "bounds.size": 2
- "bounds.size.height": 1
- "break": 16
- "brief": 1
- "bringSubviewToFront": 1
- "bucket": 1
- "buffer": 8
- "buffer.": 9
- "buildPostBody": 3
- "buildRequestHeaders": 4
- "bundle": 3
- "but": 4
- "by": 3
- "bytes": 9
- "bytesRead": 5
- "bytesReceivedBlock": 7
- "bytesSentBlock": 13
- "c": 9
- "cLength": 2
- "cache": 8
- "cache.count": 1
- "cachePolicy": 6
- "cacheStoragePolicy": 3
- "cached": 3
- "cachedHeaders": 3
- "cachedResponseHeadersForURL": 1
- "calculateNextIndexPath": 4
- "callBlock": 3
- "callback": 3
- "caller": 1
- "callerToRetain": 16
- "calling": 1
- "calloc": 5
- "can": 1
- "canMoveRowAtIndexPath": 2
- "canUseCachedDataForRequest": 3
- "cancel": 4
- "cancelAuthentication": 1
- "cancelLoad": 5
- "cancelOnRequestThread": 2
- "cancelled": 6
- "cancelledLock": 33
- "capacity": 46
- "capacityForCount": 4
- "case": 16
- "causes": 1
- "cbInvocation": 6
- "cbSignature": 1
- "cell": 28
- "cell.frame": 2
- "cell.layer.zPosition": 2
- "cell.reuseIdentifier": 1
- "cellForRowAtIndexPath": 10
- "cellRect": 7
- "cellRect.origin.y": 1
- "cert": 2
- "certificate": 2
- "certificates": 3
- "cfEncoding": 3
- "challenge": 1
- "char": 23
- "characterAtIndex": 1
- "charactersIgnoringModifiers": 1
- "charset": 5
- "checkRequestStatus": 3
- "class": 47
- "class_getInstanceSize": 2
- "cleanup": 1
- "clearCache": 1
- "clearDelegatesAndCancel": 2
- "clearSession": 1
- "client": 1
- "clientCallBackInfo": 1
- "clientCertificateIdentity": 6
- "clientCertificates": 5
- "clock": 1
- "close": 8
- "closed": 2
- "code": 14
- "collection": 11
- "colorWithRed": 3
- "commit": 1
- "compare": 4
- "complete": 10
- "completes": 1
- "completionBlock": 9
- "componentsSeparatedByString": 1
- "compressData": 1
- "compressDataFromFile": 1
- "compressedBody": 1
- "compressedPostBody": 5
- "compressedPostBodyFilePath": 8
- "concurrency": 1
- "cond": 12
- "condition": 1
- "configureProxies": 2
- "connecting": 1
- "connection": 9
- "connectionCanBeReused": 5
- "connectionHeader": 2
- "connectionID": 1
- "connectionInfo": 14
- "connections": 1
- "connectionsLock": 4
- "const": 31
- "constrainedToSize": 2
- "constructor": 1
- "contentLength": 4
- "contentType": 1
- "contents": 2
- "context": 4
- "context.delegate": 1
- "context.font": 1
- "context.frame": 1
- "continue": 2
- "conversion": 2
- "conversionOK": 1
- "converting": 3
- "cookie": 7
- "cookieHeader": 6
- "cookies": 6
- "cookiesForURL": 1
- "cookiesWithResponseHeaderFields": 1
- "copy": 18
- "copyWithZone": 2
- "count": 104
- "countByEnumeratingWithState": 2
- "create": 4
- "credentialWithUser": 2
- "credentials": 45
- "currentChar": 2
- "currentHash": 5
- "currentRunLoop": 2
- "currently": 1
- "currently...OFF": 1
- "currently...ON": 1
- "d": 8
- "d.": 3
- "data": 17
- "dataDecompressor": 2
- "dataReceivedBlock": 9
- "dataSource": 2
- "dataSourceNumberOfSectionsInTableView": 1
- "dataSourceWithObjects": 1
- "dataUsingEncoding": 1
- "dataWithBytes": 1
- "date": 4
- "dateFromRFC1123String": 1
- "dateWithTimeIntervalSinceNow": 1
- "dc": 3
- "dealloc": 15
- "debug": 2
- "decoder": 1
- "decoderWithParseOptions": 1
- "default": 2
- "defaultCache": 3
- "defaultCachePolicy": 1
- "defaultResponseEncoding": 4
- "defaultTimeOutSeconds": 3
- "defaultUserAgentString": 2
- "defined": 8
- "delegate": 67
- "delegateAuthenticationLock": 1
- "delegateTableViewWillDisplayCellForRowAtIndexPath": 1
- "delegates": 2
- "delete": 1
- "deprecated": 1
- "depthChange": 2
- "dequeueReusableCellWithIdentifier": 2
- "derepeaterEnabled": 1
- "deselectRowAtIndexPath": 3
- "destroyReadStream": 4
- "detection": 1
- "dictionary": 59
- "dictionaryWithCapacity": 3
- "dictionaryWithObjectsAndKeys": 12
- "didChangeValueForKey": 1
- "didClickRowAtIndexPath": 1
- "didCreateTemporaryPostDataFile": 4
- "didDeselectRowAtIndexPath": 3
- "didFailSelector": 5
- "didFinishSelector": 5
- "didFirstLayout": 1
- "didReceiveData": 1
- "didReceiveDataSelector": 5
- "didReceiveResponseHeaders": 3
- "didReceiveResponseHeadersSelector": 5
- "didSelectRowAtIndexPath": 3
- "didSendBytes": 4
- "didStartSelector": 5
- "didUseCachedResponse": 4
- "dispatch_async": 1
- "dispatch_get_main_queue": 1
- "display": 1
- "distantFuture": 1
- "document.pdf": 1
- "does": 4
- "domain": 3
- "double": 3
- "download": 2
- "downloadCache": 12
- "downloadComplete": 3
- "downloadDestinationPath": 4
- "downloadProgressDelegate": 5
- "downloadSizeIncrementedBlock": 10
- "downloading": 1
- "e": 1
- "else": 62
- "en_GB": 1
- "en_US_POSIX": 1
- "encode": 1
- "encodeOption": 20
- "encodeState": 12
- "encoding": 3
- "endBackgroundTask": 1
- "entry": 43
- "entryForKey": 5
- "entryIdx": 4
- "enum": 17
- "enumerateIndexPathsFromIndexPath": 4
- "enumerateIndexPathsUsingBlock": 2
- "enumerateIndexPathsWithOptions": 2
- "enumerateIndexesUsingBlock": 2
- "enumeratedCount": 8
- "err": 10
- "error": 145
- "errorExit": 1
- "errorWithDomain": 7
- "error_": 2
- "es": 3
- "escapedChar": 5
- "escapedUnicode1": 1
- "escapedUnicode2": 1
- "escapedUnicodeCodePoint": 1
- "etag": 2
- "event": 8
- "exception": 3
- "execute": 4
- "exists": 1
- "expect": 3
- "expected": 2
- "expirePersistentConnections": 2
- "expired": 1
- "expires": 2
- "expiryDateForRequest": 1
- "extern": 5
- "f": 6
- "failAuthentication": 1
- "failWithError": 14
- "failed": 6
- "failedRequest": 4
- "fails": 1
- "failure": 1
- "failureBlock": 9
- "false": 3
- "fetchPACFile": 1
- "fffffff": 1
- "fffffffffffffffLL": 1
- "file": 6
- "fileDownloadOutputStream": 3
- "fileExistsAtPath": 3
- "fileManager": 4
- "fileSize": 2
- "findCredentials": 1
- "findProxyCredentials": 2
- "findSessionAuthenticationCredentials": 2
- "findSessionProxyAuthenticationCredentials": 2
- "finished": 4
- "finishedDownloadingPACFile": 1
- "finishedParsing": 4
- "finite.": 1
- "first": 2
- "firstByteMark": 1
- "firstIndexPath": 4
- "firstResponder": 3
- "float": 2
- "floating": 1
- "floor": 1
- "for": 52
- "forEvent": 3
- "forHost": 2
- "forKey": 23
- "forMode": 1
- "forProxy": 2
- "forRowAtIndexPath": 3
- "forState": 3
- "forURL": 2
- "forceSaveScrollPosition": 1
- "format": 23
- "formatter.": 1
- "found": 1
- "foundValidNextRow": 4
- "frame": 36
- "frame.origin.x": 2
- "frame.origin.y": 15
- "frame.size.height": 14
- "frame.size.width": 4
- "free": 5
- "from": 14
- "fromContentType": 2
- "fromIndexPath": 6
- "fromIndexPath.row": 1
- "fromIndexPath.section": 1
- "fromPath": 1
- "futureMakeFirstResponderRequestToken": 1
- "generate": 1
- "generated": 1
- "get": 8
- "getObjects": 2
- "give": 3
- "globalStyleSheet": 4
- "globallyUniqueString": 2
- "got": 1
- "goto": 9
- "green": 3
- "h": 5
- "had": 3
- "handleBytesAvailable": 1
- "handleNetworkEvent": 2
- "handleStreamComplete": 1
- "handleStreamError": 1
- "handlers": 1
- "handling": 4
- "handshake": 1
- "has": 6
- "hasBytesAvailable": 1
- "hashing": 1
- "have": 3
- "haveBuiltPostBody": 4
- "haveBuiltRequestHeaders": 4
- "haveExaminedHeaders": 1
- "headRequest": 31
- "header": 12
- "header.frame.size.height": 1
- "headerFrame": 6
- "headerFrame.origin.y": 1
- "headerFrame.size.height": 2
- "headerHeight": 4
- "headerView": 14
- "headerViewForSection": 6
- "headerViewRect": 3
- "headers": 7
- "headersReceivedBlock": 9
- "height": 17
- "heightForRowAtIndexPath": 2
- "hideNetworkActivityIndicator": 1
- "hideNetworkActivityIndicatorAfterDelay": 1
- "hideNetworkActivityIndicatorIfNeeeded": 1
- "host": 9
- "hostKey": 4
- "http": 3
- "httpVersion": 1
- "https": 1
- "i": 52
- "iPhone": 2
- "id": 190
- "identifier": 7
- "idx": 31
- "if": 412
- "imageFrame": 2
- "imageFrame.size": 1
- "in": 22
- "inLiveResize": 1
- "inProgress": 7
- "inSection": 11
- "include": 1
- "includeQuotes": 12
- "incrementBandwidthUsedInLastSecond": 2
- "incrementDownloadSizeBy": 7
- "incrementUploadSizeBy": 7
- "incremented": 2
- "incremented.": 1
- "index": 11
- "indexAtPosition": 2
- "indexOfSectionWithHeaderAtPoint": 2
- "indexOfSectionWithHeaderAtVerticalOffset": 2
- "indexPath": 47
- "indexPath.row": 1
- "indexPath.section": 3
- "indexPathForCell": 2
- "indexPathForFirstRow": 2
- "indexPathForFirstVisibleRow": 2
- "indexPathForLastRow": 2
- "indexPathForLastVisibleRow": 2
- "indexPathForRow": 11
- "indexPathForRowAtPoint": 2
- "indexPathForRowAtVerticalOffset": 2
- "indexPathForSelectedRow": 4
- "indexPathWithIndexes": 1
- "indexPaths": 2
- "indexPathsForRowsInRect": 3
- "indexPathsForVisibleRows": 2
- "indexPathsToAdd": 3
- "indexPathsToRemove": 2
- "indexes": 4
- "indexesOfSectionHeadersInRect": 2
- "indexesOfSectionsInRect": 3
- "indicator": 3
- "inflatedFileDownloadOutputStream": 3
- "information": 4
- "init": 37
- "initDictionary": 4
- "initToFileAtPath": 1
- "initWithBytes": 1
- "initWithCapacity": 2
- "initWithDictionary": 2
- "initWithDomain": 5
- "initWithFileAtPath": 1
- "initWithFormat": 1
- "initWithFrame": 11
- "initWithJKDictionary": 3
- "initWithNibName": 3
- "initWithNumberOfRows": 2
- "initWithObjects": 2
- "initWithObjectsAndKeys": 1
- "initWithParseOptions": 1
- "initWithStyleName": 1
- "initWithURL": 4
- "initWithUnsignedLongLong": 1
- "initialize": 1
- "inputStreamWithData": 2
- "inputStreamWithFileAtPath": 2
- "insertObject": 1
- "int": 63
- "intValue": 4
- "intoString": 4
- "invalidate": 2
- "invalidateHoverForView": 1
- "invocation": 7
- "invocationWithMethodSignature": 2
- "invoke": 1
- "irow": 3
- "is": 25
- "isARepeat": 1
- "isBandwidthThrottled": 2
- "isCancelled": 6
- "isConcurrent": 1
- "isEqual": 7
- "isEqualToString": 20
- "isExecuting": 3
- "isFinished": 3
- "isKindOfClass": 3
- "isMainThread": 8
- "isMultitaskingSupported": 2
- "isNetworkInUse": 1
- "isNetworkReachableViaWWAN": 1
- "isPACFileRequest": 5
- "isResponseCompressed": 3
- "isSurrogate": 1
- "isSynchronous": 3
- "isa": 2
- "isn": 1
- "it": 3
- "itemWithText": 48
- "itemsPtr": 2
- "its": 7
- "j": 5
- "jk_cache_age": 1
- "jk_calculateHash": 3
- "jk_collectionClassLoadTimeInitialization": 2
- "jk_dictionaryCapacities": 4
- "jk_encode_add_atom_to_buffer": 1
- "jk_encode_error": 1
- "jk_encode_object_hash": 1
- "jk_encode_printf": 1
- "jk_encode_updateCache": 1
- "jk_encode_write": 1
- "jk_encode_write1": 1
- "jk_encode_write1fast": 2
- "jk_encode_write1slow": 2
- "jk_encode_writePrettyPrintWhiteSpace": 1
- "jk_encode_writen": 1
- "jk_error": 5
- "jk_error_parse_accept_or3": 1
- "jk_managedBuffer_release": 3
- "jk_managedBuffer_setToStackBuffer": 1
- "jk_max": 4
- "jk_min": 2
- "jk_objectStack_release": 1
- "jk_objectStack_resize": 1
- "jk_objectStack_setToStackBuffer": 1
- "jk_parse_is_newline": 2
- "jk_parse_next_token": 1
- "jk_parse_number": 1
- "jk_parse_skip_newline": 1
- "jk_parse_skip_whitespace": 1
- "jk_parse_string": 1
- "jk_set_parsed_token": 1
- "jk_string_add_unicodeCodePoint": 1
- "jsonData": 8
- "jsonText": 1
- "jump": 1
- "kCFAllocatorDefault": 4
- "kCFHTTPAuthenticationPassword": 4
- "kCFHTTPAuthenticationSchemeBasic": 3
- "kCFHTTPAuthenticationSchemeNTLM": 1
- "kCFHTTPAuthenticationUsername": 4
- "kCFHTTPVersion1_0": 2
- "kCFHTTPVersion1_1": 1
- "kCFNull": 1
- "kCFProxyTypeHTTP": 1
- "kCFProxyTypeSOCKS": 2
- "kCFStreamEventEndEncountered": 1
- "kCFStreamEventErrorOccurred": 1
- "kCFStreamEventHasBytesAvailable": 1
- "kCFStreamPropertyHTTPProxy": 1
- "kCFStreamPropertyHTTPProxyHost": 1
- "kCFStreamPropertyHTTPProxyPort": 1
- "kCFStreamPropertyHTTPRequestBytesWrittenCount": 1
- "kCFStreamPropertyHTTPResponseHeader": 1
- "kCFStreamPropertyHTTPSProxyHost": 1
- "kCFStreamPropertyHTTPSProxyPort": 1
- "kCFStreamPropertySOCKSProxy": 1
- "kCFStreamPropertySOCKSProxyHost": 1
- "kCFStreamPropertySOCKSProxyPort": 1
- "kCFStreamPropertySSLSettings": 2
- "kCFStreamSSLAllowsAnyRoot": 1
- "kCFStreamSSLAllowsExpiredCertificates": 1
- "kCFStreamSSLCertificates": 1
- "kCFStreamSSLPeerName": 1
- "kCFStreamSSLValidatesCertificateChain": 1
- "kCFStringEncodingInvalidId": 1
- "kElementSpacing": 3
- "kFramePadding": 6
- "kGroupSpacing": 1
- "kImageStyleType": 2
- "kNetworkEvents": 1
- "kTextStyleType": 2
- "kViewStyleType": 2
- "keepAliveHeader": 2
- "key": 27
- "keyEntry": 4
- "keyEnumerator": 1
- "keyHash": 21
- "keyHashes": 2
- "keychain": 4
- "keys": 5
- "label": 6
- "label.font": 3
- "label.frame": 4
- "label.frame.size.height": 2
- "label.numberOfLines": 2
- "label.text": 2
- "last": 1
- "lastActivityTime": 4
- "lastBytesRead": 3
- "lastBytesSent": 8
- "lastIndexPath": 8
- "lastIndexPath.row": 2
- "lastIndexPath.section": 2
- "lastModified": 2
- "lastObject": 1
- "layoutSubviews": 4
- "layoutSubviewsReentrancyGuard": 1
- "ld": 2
- "len": 6
- "length": 39
- "let": 1
- "level": 3
- "levels": 1
- "limit": 1
- "line": 2
- "lineEnd": 1
- "lineStart": 2
- "lineStartIndex": 1
- "ll": 1
- "loadView": 4
- "locale": 1
- "location": 2
- "lock": 16
- "log": 1
- "logging": 2
- "logic": 1
- "long": 85
- "longer": 2
- "lower": 1
- "lowercaseString": 3
- "lround": 1
- "m": 1
- "main": 6
- "mainDocumentURL": 1
- "mainRequest": 23
- "maintainContentOffsetAfterReload": 3
- "makeFirstResponderIfNotAlreadyInResponderChain": 2
- "malloc": 1
- "mark": 50
- "markAsFinished": 4
- "marked": 1
- "max": 5
- "maxAge": 3
- "maxBandwidthPerSecond": 2
- "maxDepth": 2
- "maxLength": 3
- "maxUploadReadLength": 1
- "may": 1
- "measureBandwidthUsage": 1
- "measurement": 2
- "memcpy": 2
- "memmove": 2
- "memset": 1
- "menuForRowAtIndexPath": 1
- "message": 10
- "methodForSelector": 2
- "methodSignatureForSelector": 2
- "methods": 2
- "mid": 5
- "mime": 1
- "mimeType": 2
- "mimeTypeForFileAtPath": 1
- "minimum": 1
- "miscellany": 1
- "mm": 1
- "move": 2
- "moveRowAtIndexPath": 2
- "must": 7
- "mutableCollection": 7
- "mutableCopy": 6
- "mutableCopyWithZone": 2
- "mutableObjectFromJSONData": 1
- "mutableObjectFromJSONDataWithParseOptions": 2
- "mutableObjectFromJSONString": 1
- "mutableObjectFromJSONStringWithParseOptions": 2
- "mutableObjectWithData": 2
- "mutableObjectWithUTF8String": 2
- "mutations": 28
- "mutationsPtr": 2
- "n": 5
- "name": 9
- "need": 1
- "needed": 1
- "needsRedirect": 3
- "negative": 1
- "network": 1
- "new": 2
- "newCookie": 1
- "newCookies": 3
- "newCount": 1
- "newCredentials": 26
- "newDelegate": 2
- "newHeaders": 1
- "newIndexPath": 6
- "newIndexes": 3
- "newObject": 12
- "newObjects": 2
- "newOffset": 2
- "newQueue": 3
- "newRequestMethod": 3
- "newResponseHeaders": 4
- "newSessionCookies": 1
- "newSize": 1
- "newTimeOutSeconds": 1
- "newURL": 21
- "newValue": 2
- "newVisibleIndexPaths": 2
- "nextConnectionNumberToCreate": 1
- "nextObject": 6
- "nextRequestID": 1
- "nextValidCharacter": 2
- "nibBundleOrNil": 1
- "nibNameOrNil": 1
- "nil": 150
- "nn": 4
- "no": 5
- "noCurrentSelection": 2
- "nonatomic": 40
- "nonnull": 6
- "not": 10
- "note": 1
- "ntlmComponents": 1
- "ntlmDomain": 2
- "null": 1
- "number": 3
- "numberOfRows": 13
- "numberOfRowsInSection": 9
- "numberOfSections": 10
- "numberOfSectionsInTableView": 3
- "numberOfTimesToRetryOnTimeout": 5
- "numberWithBool": 3
- "numberWithInt": 2
- "objc_arc": 1
- "objc_getClass": 2
- "object": 51
- "object.": 5
- "objectAtIndex": 10
- "objectForKey": 41
- "objectFromJSONData": 1
- "objectFromJSONDataWithParseOptions": 2
- "objectFromJSONString": 1
- "objectFromJSONStringWithParseOptions": 2
- "objectIndex": 48
- "objectToRelease": 2
- "objectWithData": 5
- "objectWithString": 5
- "objectWithUTF8String": 2
- "objects": 59
- "objectsPtr": 3
- "obtain": 1
- "occurred": 3
- "of": 8
- "ofTotal": 6
- "offset": 24
- "offsetsFromUTF8": 1
- "oldCapacity": 2
- "oldCount": 2
- "oldEntry": 9
- "oldIndexPath": 2
- "oldIndexes": 2
- "oldStream": 4
- "oldVisibleIndexPaths": 2
- "on": 5
- "onTarget": 14
- "onThread": 3
- "one": 1
- "open": 2
- "option.": 1
- "optionFlags": 1
- "options": 24
- "options.": 1
- "or": 9
- "origin": 1
- "originalURL": 2
- "other": 1
- "out": 1
- "p": 5
- "param": 1
- "parent": 1
- "parse": 2
- "parseJSONData": 2
- "parseMimeType": 2
- "parseOptionFlags": 11
- "parseState": 15
- "parseStringEncodingFromHeaders": 3
- "parseUTF8String": 2
- "parsedEscapedChar": 5
- "parser": 1
- "parser.delegate": 1
- "parser.error": 1
- "parser.maxDepth": 1
- "parsing": 2
- "partialDownloadSize": 10
- "pass": 6
- "passOnReceivedData": 1
- "password": 12
- "path": 9
- "performBlockOnMainThread": 6
- "performInvocation": 3
- "performKeyAction": 2
- "performRedirect": 3
- "performSelector": 26
- "performSelectorOnMainThread": 8
- "performThrottling": 2
- "period": 1
- "persistence": 2
- "persistent": 1
- "persistentConnectionTimeoutSeconds": 7
- "persistentConnectionsPool": 3
- "pinnedHeader": 2
- "pinnedHeader.frame": 2
- "pinnedHeader.frame.origin.y": 1
- "pinnedHeaderFrame": 2
- "pinnedHeaderFrame.origin.y": 1
- "point": 13
- "point.y": 1
- "pointer": 2
- "pointers": 2
- "policy": 3
- "pool": 2
- "port": 17
- "portKey": 4
- "postBody": 12
- "postBodyFilePath": 11
- "postBodyReadStream": 5
- "postBodyWriteStream": 8
- "postLength": 16
- "prepareForDisplay": 1
- "prepareForReuse": 1
- "present": 2
- "previousOffset": 3
- "previously": 1
- "problem": 1
- "processInfo": 2
- "progress": 6
- "progress*1.0": 2
- "progressAmount": 4
- "progressLock": 3
- "progressToRemove": 4
- "properties": 1
- "proposedPath": 1
- "protocol": 10
- "proxy": 4
- "proxyAuthentication": 10
- "proxyAuthenticationNeededBlock": 7
- "proxyAuthenticationRealm": 4
- "proxyAuthenticationRetryCount": 5
- "proxyAuthenticationScheme": 4
- "proxyCredentials": 2
- "proxyDomain": 4
- "proxyHost": 8
- "proxyPassword": 7
- "proxyPort": 9
- "proxyToUse": 2
- "proxyType": 6
- "proxyUsername": 7
- "ptr": 3
- "pullDownRect": 4
- "pullDownView": 1
- "pullDownViewIsVisible": 3
- "pure": 2
- "q": 2
- "qu": 1
- "queue": 29
- "r": 7
- "r.origin.y": 4
- "r.size.height": 8
- "raise": 20
- "rand": 1
- "range": 6
- "range.length": 1
- "range.location": 2
- "rangeOfString": 1
- "raw": 1
- "rawResponseData": 5
- "re": 2
- "reachability": 1
- "reachabilityChanged": 1
- "read": 2
- "readResponseHeaders": 2
- "readStream": 11
- "readStreamIsScheduled": 4
- "readonly": 19
- "readwrite": 1
- "realloc": 2
- "realm": 15
- "reason": 1
- "received": 5
- "recordBandwidthUsage": 1
- "rect": 9
- "rectForHeaderOfSection": 5
- "rectForRowAtIndexPath": 10
- "rectForSection": 3
- "redirectCount": 6
- "redirectToURL": 2
- "redirectURL": 3
- "redirections": 1
- "registerForNetworkReachabilityNotifications": 1
- "relativeOffset": 10
- "relativeToURL": 1
- "release": 79
- "releaseBlocks": 3
- "releaseBlocksOnMainThread": 4
- "releaseState": 4
- "releasingObject": 3
- "reloadData": 3
- "reloadDataMaintainingVisibleIndexPath": 2
- "reloadLayout": 2
- "remove": 1
- "removeAllIndexes": 2
- "removeAllObjects": 1
- "removeAuthenticationCredentialsFromSessionStore": 3
- "removeCredentialsForHost": 1
- "removeCredentialsForProxy": 1
- "removeFileAtPath": 1
- "removeFromSuperview": 7
- "removeIdx": 3
- "removeIndex": 1
- "removeIndexes": 2
- "removeLastObject": 1
- "removeObject": 2
- "removeObjectAtIndex": 1
- "removeObjectForKey": 3
- "removeObjectsInArray": 2
- "removeProxyAuthenticationCredentialsFromSessionStore": 3
- "removeTemporaryCompressedUploadFile": 2
- "removeTemporaryDownloadFile": 2
- "removeTemporaryUncompressedDownloadFile": 2
- "removeTemporaryUploadFile": 2
- "removeUploadProgressSoFar": 3
- "repeats": 1
- "replaceObjectAtIndex": 1
- "reportFailure": 4
- "reportFinished": 4
- "repr": 5
- "request": 71
- "requestAuthentication": 10
- "requestCookies": 6
- "requestCredentials": 2
- "requestFailed": 3
- "requestFinished": 5
- "requestHeaders": 15
- "requestID": 3
- "requestMethod": 14
- "requestReceivedResponseHeaders": 3
- "requestRedirected": 4
- "requestRedirectedBlock": 9
- "requestStarted": 6
- "requestWillRedirectToURL": 1
- "requestWithURL": 8
- "required": 1
- "required.": 1
- "requires": 4
- "resize": 9
- "respectively.": 1
- "respond": 1
- "respondsToSelector": 22
- "response": 5
- "responseCode": 8
- "responseCookies": 2
- "responseData": 3
- "responseEncoding": 4
- "responseHeaders": 11
- "responseStatusCode": 7
- "responseStatusMessage": 2
- "responseString": 2
- "result": 4
- "retain": 71
- "retried": 1
- "retry": 2
- "retryCount": 6
- "retryUsingNewConnection": 1
- "retryUsingSuppliedCredentials": 1
- "return": 209
- "returnObject": 5
- "returned": 2
- "reuse": 2
- "reused": 1
- "roundf": 2
- "row": 32
- "rowCount": 3
- "rowHeight": 2
- "rowInfo": 7
- "rowLowerBound": 2
- "rowUpperBound": 3
- "rowsInSection": 7
- "run": 1
- "runLoopMode": 3
- "runMode": 1
- "runPACScript": 1
- "runRequests": 1
- "running": 2
- "runningRequestCount": 1
- "rv": 1
- "s": 22
- "s.height": 3
- "same": 3
- "same.": 1
- "save": 2
- "saveCredentials": 4
- "saveCredentialsToKeychain": 3
- "saveProxyCredentialsToKeychain": 2
- "savedCredentialsForHost": 1
- "savedCredentialsForProxy": 2
- "savedIndexPath": 5
- "scalar": 2
- "scanInt": 2
- "scanString": 2
- "scanUpToString": 1
- "scanner": 5
- "scannerWithString": 1
- "scheduleReadStream": 1
- "scheme": 6
- "script": 1
- "scrollPosition": 9
- "scrollRectToVisible": 3
- "scrollToRowAtIndexPath": 3
- "scrollToTopAnimated": 1
- "sec": 3
- "secondsSinceLastActivity": 3
- "secondsToCache": 4
- "section": 56
- "section.headerView": 13
- "section.headerView.frame": 1
- "section.headerView.superview": 1
- "section.sectionOffset": 1
- "sectionHeight": 9
- "sectionIndex": 23
- "sectionLowerBound": 2
- "sectionOffset": 8
- "sectionRowOffset": 2
- "sectionUpperBound": 3
- "sections": 4
- "seems": 1
- "selectRowAtIndexPath": 3
- "selectValidIndexPath": 3
- "selector": 52
- "self": 848
- "self.animateSelectionChanges": 1
- "self.bounds": 1
- "self.bounds.size.width": 5
- "self.contentInset.bottom": 1
- "self.contentInset.top*2": 1
- "self.contentOffset": 1
- "self.contentOffset.x": 1
- "self.contentOffset.y": 1
- "self.contentSize": 4
- "self.contentSize.height": 2
- "self.dataSource": 1
- "self.delegate": 10
- "self.error": 3
- "self.headerView": 2
- "self.headerView.frame.size.height": 1
- "self.maxDepth": 2
- "self.nsView": 2
- "self.nsWindow": 4
- "self.tableViewStyle": 1
- "self.title": 2
- "self.view": 4
- "self.view.bounds": 2
- "sent": 1
- "sentinel": 1
- "sequence": 1
- "serialize": 5
- "serializeObject": 19
- "serializeOptions": 42
- "serializeUnsupportedClassesUsingBlock": 8
- "serializeUnsupportedClassesUsingDelegate": 9
- "serializing": 1
- "servers": 1
- "session": 4
- "sessionCookies": 1
- "sessionCookiesLock": 1
- "sessionCredentials": 10
- "sessionCredentialsLock": 1
- "sessionCredentialsStore": 1
- "sessionProxyCredentials": 6
- "sessionProxyCredentialsStore": 1
- "set": 2
- "setAllowCompressedResponse": 2
- "setAnimateSelectionChanges": 1
- "setAnimationsEnabled": 1
- "setArgument": 5
- "setAuthenticationNeeded": 4
- "setAuthenticationNeededBlock": 2
- "setAuthenticationRetryCount": 1
- "setAuthenticationScheme": 1
- "setBucket": 1
- "setBytesReceivedBlock": 2
- "setBytesSentBlock": 2
- "setCachePolicy": 2
- "setCancelledLock": 1
- "setClientCertificateIdentity": 2
- "setClientCertificates": 1
- "setComplete": 8
- "setCompletionBlock": 2
- "setCompressedPostBody": 1
- "setCompressedPostBodyFilePath": 1
- "setConnectionCanBeReused": 3
- "setConnectionInfo": 3
- "setContentLength": 2
- "setContentOffset": 2
- "setCookies": 1
- "setDataReceivedBlock": 2
- "setDataSource": 1
- "setDefaultCache": 1
- "setDefaultResponseEncoding": 1
- "setDefaultTimeOutSeconds": 1
- "setDefaultUserAgentString": 1
- "setDelegate": 6
- "setDidCreateTemporaryPostDataFile": 2
- "setDidFailSelector": 1
- "setDidFinishSelector": 1
- "setDidReceiveDataSelector": 1
- "setDidReceiveResponseHeadersSelector": 1
- "setDidStartSelector": 1
- "setDidUseCachedResponse": 1
- "setDisableActions": 1
- "setDomain": 1
- "setDoubleValue": 1
- "setDownloadCache": 3
- "setDownloadComplete": 1
- "setDownloadProgressDelegate": 1
- "setDownloadSizeIncrementedBlock": 2
- "setError": 2
- "setFailedBlock": 2
- "setFileDownloadOutputStream": 1
- "setFrame": 2
- "setHaveBuiltPostBody": 1
- "setHaveBuiltRequestHeaders": 2
- "setHeaderView": 1
- "setHeadersReceivedBlock": 2
- "setInProgress": 3
- "setInflatedFileDownloadOutputStream": 1
- "setLastActivityTime": 2
- "setLastBytesRead": 1
- "setLastBytesSent": 2
- "setMainRequest": 1
- "setMaintainContentOffsetAfterReload": 1
- "setMaxBandwidthPerSecond": 1
- "setMaxConcurrentOperationCount": 1
- "setNeedsDisplay": 2
- "setNeedsLayout": 4
- "setNeedsRedirect": 2
- "setNumberOfTimesToRetryOnTimeout": 1
- "setObject": 23
- "setOriginalURL": 1
- "setPACFileData": 1
- "setPACFileReadStream": 1
- "setPACFileRequest": 1
- "setPACurl": 1
- "setPartialDownloadSize": 1
- "setPassword": 1
- "setPersistentConnectionTimeoutSeconds": 3
- "setPostBody": 2
- "setPostBodyFilePath": 1
- "setPostBodyReadStream": 5
- "setPostBodyWriteStream": 2
- "setPostLength": 4
- "setProgress": 1
- "setProxyAuthenticationNeededBlock": 2
- "setProxyAuthenticationRetryCount": 1
- "setProxyCredentials": 1
- "setProxyDomain": 1
- "setProxyHost": 1
- "setProxyPassword": 1
- "setProxyPort": 1
- "setProxyType": 2
- "setProxyUsername": 1
- "setPullDownView": 1
- "setQueue": 2
- "setRawResponseData": 2
- "setReadStream": 3
- "setReadStreamIsScheduled": 1
- "setRedirectCount": 1
- "setRedirectURL": 3
- "setRequestCookies": 3
- "setRequestCredentials": 1
- "setRequestHeaders": 3
- "setRequestMethod": 5
- "setRequestRedirectedBlock": 2
- "setResponseCookies": 1
- "setResponseEncoding": 2
- "setResponseHeaders": 2
- "setResponseStatusCode": 1
- "setResponseStatusMessage": 1
- "setRetryCount": 1
- "setRunLoopMode": 2
- "setSelected": 4
- "setSelector": 2
- "setSessionCookies": 1
- "setShouldAttemptPersistentConnection": 4
- "setShouldPresentAuthenticationDialog": 1
- "setShouldPresentCredentialsBeforeChallenge": 2
- "setShouldPresentProxyAuthenticationDialog": 2
- "setShouldRedirect": 1
- "setShouldResetDownloadProgress": 1
- "setShouldResetUploadProgress": 1
- "setShouldThrottleBandwidthForWWAN": 1
- "setShouldUpdateNetworkActivityIndicator": 1
- "setShouldUseRFC2616RedirectBehaviour": 1
- "setShouldWaitToInflateCompressedResponses": 1
- "setShowAccurateProgress": 3
- "setStartedBlock": 2
- "setStatusTimer": 3
- "setSynchronous": 2
- "setTarget": 1
- "setTimeOutSeconds": 2
- "setTotalBytesRead": 1
- "setTotalBytesSent": 1
- "setURL": 4
- "setUpdatedProgress": 1
- "setUploadBufferSize": 1
- "setUploadProgressDelegate": 1
- "setUploadSizeIncrementedBlock": 2
- "setUseCookiePersistence": 2
- "setUseHTTPVersionOne": 1
- "setUseKeychainPersistence": 1
- "setUseSessionPersistence": 2
- "setUsername": 1
- "setValidatesSecureCertificate": 2
- "setWillRedirectSelector": 1
- "setter": 2
- "setup": 2
- "setupPostBody": 3
- "sharedApplication": 2
- "sharedHTTPCookieStorage": 2
- "sharedQueue": 4
- "shouldAttemptPersistentConnection": 6
- "shouldCompressRequestBody": 7
- "shouldContinueWhenAppEntersBackground": 4
- "shouldPresentAuthenticationDialog": 4
- "shouldPresentCredentialsBeforeChallenge": 5
- "shouldPresentProxyAuthenticationDialog": 4
- "shouldRedirect": 4
- "shouldResetDownloadProgress": 7
- "shouldResetUploadProgress": 4
- "shouldSelectRowAtIndexPath": 3
- "shouldStreamPostDataFromDisk": 7
- "shouldThrottleBandwidthForWWANOnly": 1
- "shouldTimeOut": 3
- "shouldUpdate": 1
- "shouldUpdateNetworkActivityIndicator": 1
- "shouldUseRFC2616RedirectBehaviour": 5
- "shouldWaitToInflateCompressedResponses": 4
- "showAccurateProgress": 8
- "showAuthenticationDialog": 1
- "showNetworkActivityIndicator": 1
- "showProxyAuthenticationDialog": 1
- "signature": 2
- "signed": 1
- "single": 1
- "size": 11
- "size.height": 1
- "size.width": 1
- "sizeWithFont": 2
- "size_t": 29
- "sizeof": 13
- "so": 2
- "sortedArrayUsingComparator": 1
- "sortedArrayUsingSelector": 2
- "sortedVisibleCells": 2
- "sourceExhausted": 2
- "sourceIllegal": 1
- "specified": 1
- "ss": 1
- "ssize_t": 2
- "sslProperties": 4
- "stackBuffer": 1
- "stackbuf": 8
- "start": 1
- "startAsynchronous": 2
- "startForNoSelection": 1
- "startRequest": 4
- "startSynchronous": 2
- "startedBlock": 9
- "startingAtIndex": 4
- "startingObjectIndex": 1
- "starts": 1
- "state": 32
- "static": 104
- "status": 1
- "statusTimer": 9
- "step": 1
- "stop": 3
- "storage": 1
- "store": 1
- "storeAuthenticationCredentialsInSessionStore": 3
- "storeProxyAuthenticationCredentialsInSessionStore": 2
- "stream": 8
- "streamSuccessfullyOpened": 1
- "string": 11
- "stringBuffer": 1
- "stringBuffer.bytes.length": 2
- "stringBuffer.bytes.ptr": 4
- "stringBuffer.flags": 1
- "stringByAppendingPathComponent": 2
- "stringEncoding": 1
- "stringHash": 3
- "stringState": 6
- "stringWithFormat": 7
- "stringWithUTF8String": 1
- "strong": 3
- "strtoull": 1
- "struct": 20
- "structure.": 1
- "stuff": 1
- "style": 28
- "styleType": 3
- "styleWithSelector": 4
- "subroutine": 1
- "successfully": 1
- "super": 21
- "superview": 1
- "support": 3
- "switch": 5
- "systemFontOfSize": 2
- "systemFontSize": 1
- "t": 4
- "table": 2
- "tableRowOffset": 2
- "tableSize": 2
- "tableView": 47
- "tableViewDidReloadData": 3
- "tableViewWillReloadData": 3
- "tag": 3
- "tagged": 2
- "talking": 2
- "target": 6
- "targetExhausted": 1
- "targetIndexPathForMoveFromRowAtIndexPath": 1
- "tempUserAgentString": 4
- "temp_NSNumber": 4
- "temporary": 9
- "temporaryFileDownloadPath": 7
- "temporaryUncompressedDataDownloadPath": 2
- "test": 1
- "text": 10
- "text.autoresizingMask": 1
- "text.backgroundColor": 1
- "text.frame": 1
- "text.style": 1
- "text.text": 1
- "textFrame": 3
- "textFrame.size": 1
- "that": 5
- "the": 31
- "theData": 1
- "theError": 8
- "thePassword": 1
- "theRequest": 12
- "theUsername": 1
- "them": 4
- "there": 1
- "they": 4
- "thing": 1
- "this": 6
- "threadForRequest": 4
- "threading": 1
- "throttle": 1
- "throttleBandwidthForWWANUsingLimit": 1
- "throttling": 1
- "time": 1
- "timeIntervalSinceDate": 1
- "timeIntervalSinceNow": 1
- "timeOutPACRead": 1
- "timeOutSeconds": 7
- "timeout": 3
- "timer": 5
- "timerWithTimeInterval": 1
- "title": 2
- "tmp": 3
- "to": 72
- "toAdd": 1
- "toFile": 1
- "toIndexPath": 12
- "toIndexPath.row": 1
- "toIndexPath.section": 1
- "toProposedIndexPath": 1
- "toRemove": 2
- "token": 3
- "token.value.hash": 1
- "token.value.ptrRange.length": 1
- "token.value.type": 1
- "tokenBuffer": 1
- "tokenBufferIdx": 2
- "top": 4
- "topVisibleIndex": 2
- "total": 3
- "total*1.0": 2
- "totalBytesRead": 3
- "totalBytesSent": 16
- "totalSize": 4
- "trailingBytesForUTF8": 1
- "true": 3
- "type": 5
- "type.": 7
- "typedef": 47
- "types": 2
- "u": 10
- "u.": 2
- "u32ch": 1
- "ui": 1
- "uint16_t": 1
- "uint32_t": 1
- "uint8_t": 1
- "uncompressData": 1
- "undefined": 1
- "underlyingError": 1
- "unexpectedly.": 1
- "unknown": 2
- "unlock": 20
- "unsafe_unretained": 2
- "unscheduleReadStream": 2
- "unsigned": 71
- "unsignedLongLongValue": 1
- "unsubscribeFromNetworkReachabilityNotifications": 1
- "unsupported": 1
- "until": 2
- "unused": 4
- "up": 4
- "update": 2
- "updateDownloadProgress": 1
- "updateExpiryForRequest": 1
- "updatePartialDownloadSize": 4
- "updateProgressIndicator": 5
- "updateProgressIndicators": 3
- "updateStatus": 3
- "updateUploadProgress": 1
- "updatedProgress": 3
- "upload": 1
- "upload/download": 2
- "uploadBufferSize": 9
- "uploadProgressDelegate": 9
- "uploadSizeIncrementedBlock": 10
- "url": 30
- "use": 9
- "useCookiePersistence": 6
- "useDataFromCache": 4
- "useHTTPVersionOne": 5
- "useKeychainPersistence": 6
- "useSessionPersistence": 9
- "useableBucket": 1
- "user": 9
- "userAgentHeader": 2
- "userAgentString": 3
- "userInfo": 16
- "username": 9
- "usernameAndPassword": 2
- "using": 3
- "usingBlock": 6
- "usingCache": 5
- "utf8ConversionBuffer": 1
- "v": 6
- "v.origin.y": 1
- "v.size.height": 5
- "v1.4": 1
- "va_end": 1
- "va_list": 1
- "va_start": 1
- "valid": 2
- "validatesSecureCertificate": 5
- "value": 28
- "valueForKey": 5
- "values": 1
- "varArgsList": 4
- "ve": 1
- "version": 1
- "very": 1
- "view": 7
- "view.autoresizingMask": 2
- "view.backgroundColor": 2
- "view.frame": 2
- "view.image.size": 1
- "view.style": 2
- "view.urlPath": 1
- "viewFrame": 4
- "visible": 9
- "visible.size.width": 3
- "visibleCells": 3
- "visibleCellsNeedRelayout": 5
- "visibleHeadersNeedRelayout": 1
- "visibleRect": 6
- "void": 293
- "vsnprintf": 1
- "waitUntilDone": 11
- "waiting": 2
- "want": 2
- "wanted": 1
- "warn_unused_result": 9
- "was": 6
- "we": 11
- "were": 1
- "what": 1
- "when": 8
- "while": 13
- "whose": 2
- "width": 1
- "will": 15
- "willAskDelegateForCredentials": 1
- "willAskDelegateForProxyCredentials": 1
- "willAskDelegateToConfirmRedirect": 1
- "willChangeValueForKey": 1
- "willDisplayCell": 3
- "willRedirect": 3
- "willRedirectSelector": 5
- "willRedirectToURL": 3
- "willRetryRequest": 4
- "window": 1
- "with": 2
- "withEvent": 2
- "withFutureRequestToken": 1
- "withObject": 40
- "withOptions": 4
- "withProgress": 6
- "works": 2
- "write": 2
- "written": 1
- "wrong": 1
- "x": 9
- "xC0": 1
- "xD800": 1
- "xDBFF": 1
- "xDC00": 1
- "xDFFF": 1
- "xE0": 1
- "xF0": 1
- "xF8": 1
- "xFA082080UL": 1
- "xFC": 1
- "xffffffffU": 1
- "xffffffffffffffffULL": 1
- "y": 12
- "yOffset": 12
- "you": 1
- "yyyy": 1
- "z": 1
- "zone": 12
- "{": 791
- "|": 34
- "||": 52
- "}": 790
- "Opa":
- "(": 4
- ")": 4
- "*/": 2
- "-": 1
- "/*": 2
- "</h1>": 2
- "<h1>": 2
- "Hello": 2
- "Server.http": 1
- "Server.one_page_server": 1
- "Server.start": 1
- "function": 1
- "page": 1
- "server": 1
- "title": 1
- "world": 2
- "{": 2
- "}": 2
- "OpenCL":
- "(": 11
- ")": 11
- "*": 4
- "+": 2
- "-": 1
- "/": 1
- ";": 9
- "<": 1
- "FFTW_ESTIMATE": 1
- "FFTW_FORWARD": 1
- "cl": 2
- "const": 2
- "double": 3
- "fftwf_complex": 2
- "fftwf_destroy_plan": 1
- "fftwf_execute": 1
- "fftwf_plan": 1
- "fftwf_plan_dft_1d": 1
- "float": 2
- "for": 1
- "int": 3
- "n": 2
- "nops": 3
- "op": 3
- "p1": 3
- "realTime": 2
- "return": 1
- "run_fftw": 1
- "t": 4
- "x": 2
- "y": 2
- "{": 2
- "}": 2
- "OpenEdge ABL":
- "#@": 1
- "%": 2
- "&": 3
- "(": 31
- ")": 31
- "*": 2
- "*/": 20
- "+": 15
- "-": 58
- ".": 13
- ".0": 1
- "._MIME_BOUNDARY_.": 1
- "/": 2
- "/*": 19
- ";": 5
- "<\">": 8
- "@#": 1
- "ABLDateTimeToEmail": 3
- "ABLTimeZoneToString": 2
- "ABSOLUTE": 1
- "AS": 17
- "ASSIGN": 2
- "BASE64": 1
- "BCC": 2
- "BY": 1
- "Bcc": 2
- "Body": 1
- "By": 1
- "CC": 2
- "CHARACTER": 8
- "CHARACTER.": 1
- "CHR": 2
- "CLASS": 2
- "CLASS.": 2
- "CLOSE.": 1
- "COPY": 1
- "Cannot": 3
- "Cc": 2
- "Company": 2
- "Content": 10
- "ConvertDataToBase64": 1
- "DATA": 1
- "DATETIME": 3
- "DAY": 1
- "DEFINE": 13
- "DO": 1
- "Date": 4
- "Disposition": 3
- "ECHO.": 1
- "ENCODE": 1
- "END": 11
- "END.": 1
- "EXTENT": 1
- "Email": 2
- "Encoding": 4
- "Error": 3
- "Expiry": 2
- "FINAL": 1
- "FROM": 1
- "FUNCTION": 1
- "FUNCTION.": 1
- "File": 3
- "From": 6
- "H": 1
- "HELO": 1
- "High": 1
- "IF": 1
- "IMPORT": 1
- "INITIAL": 1
- "INPUT": 11
- "INTEGER": 4
- "INTEGER.": 1
- "INTERFACE": 1
- "INTERFACE.": 1
- "Importance": 3
- "L": 1
- "LENGTH": 1
- "LOB": 1
- "LOGICAL": 1
- "LONGCHAR": 4
- "Low": 1
- "MAIL": 1
- "MEMPTR": 2
- "MESSAGE": 1
- "METHOD": 6
- "METHOD.": 6
- "MODULO": 1
- "MONTH": 1
- "MTIME": 1
- "Mime": 1
- "NO": 10
- "Notification": 1
- "OBJECT": 2
- "PARAMETER": 3
- "POOL": 2
- "PRIVATE": 1
- "PROCEDURE": 1
- "PROCEDURE.": 1
- "PUBLIC": 6
- "Personal": 1
- "Priority": 2
- "Private": 1
- "Progress.Lang.*.": 3
- "QUIT": 1
- "QUOTES": 1
- "R": 3
- "RCPT": 1
- "RETURN": 7
- "RETURNS": 1
- "Receipt": 1
- "Reply": 3
- "Return": 1
- "SCOPED": 1
- "SET": 1
- "SIZE": 1
- "STATIC": 5
- "STRING": 5
- "SUBSTRING": 1
- "Sensitivity": 2
- "Subject": 4
- "THIS": 1
- "THROUGH": 1
- "TIMEZONE": 1
- "TO": 3
- "TRUNCATE": 2
- "TZ": 2
- "Test": 2
- "To": 9
- "Transfer": 4
- "Type": 4
- "UNDO.": 9
- "UNFORMATTED": 1
- "USE": 2
- "USING": 3
- "VARIABLE": 9
- "Version": 1
- "WIDGET": 2
- "WIN": 1
- "YEAR": 1
- "aborted": 1
- "accepted": 1
- "application/octet": 1
- "attachment": 2
- "base64": 2
- "been": 2
- "bit": 2
- "boundary": 1
- "but": 3
- "cEmailAddress": 8
- "cHostname": 1
- "cHostname.": 2
- "cMonthMap": 2
- "cNewLine.": 1
- "charset": 2
- "confidential": 2
- "copying": 3
- "delivery.": 1
- "email.Email": 2
- "email.SendEmailAlgorithm": 1
- "email.SendEmailSocket": 1
- "email.Util": 1
- "exists": 3
- "file": 6
- "filename": 2
- "filesystem": 3
- "for": 1
- "from": 3
- "getHostname": 1
- "hardcoded@gmail.com": 4
- "has": 2
- "hostname": 1
- "i": 3
- "in": 3
- "ipdtDateTime": 2
- "ipdttzDateTime": 6
- "ipiTimeZone": 3
- "iplcNonEncodedData": 2
- "ipobjEmail": 1
- "is": 3
- "lcPostBase64Data": 3
- "lcPostBase64Data.": 1
- "lcPreBase64Data": 4
- "lcReturnData.": 1
- "locate": 3
- "mptrPostBase64Data": 3
- "mptrPostBase64Data.": 1
- "multipart/mixed": 1
- "n": 24
- "newState": 2
- "newState.": 1
- "non": 1
- "normal": 1
- "not": 3
- "objSendEmailAlg": 1
- "objSendEmailAlgorithm": 1
- "pstring": 2
- "r": 11
- "readable": 3
- "send": 1
- "sendEmail": 2
- "stream": 1
- "text/plain": 2
- "the": 3
- "ttBCCRecipients": 1
- "ttCCRecipients": 1
- "ttDeliveryReceiptRecipients": 1
- "ttReadReceiptRecipients": 1
- "ttReplyToRecipients": 1
- "ttSenders": 2
- "ttToRecipients": 1
- "urgent": 2
- "vState": 2
- "vbuffer": 1
- "vstate": 1
- "vstatus": 1
- "PHP":
- "#": 3
- "%": 23
- "&": 9
- "&&": 59
- "(": 1253
- ")": 1251
- "*": 73
- "*/": 198
- "+": 12
- "-": 645
- ".": 132
- ".*": 4
- ".0": 2
- "/": 12
- "/#.*": 1
- "/*": 188
- "/.*": 1
- "//": 12
- "//TODO": 1
- "//Will": 1
- "//book.cakephp.org/2.0/en/controllers.html": 1
- "//book.cakephp.org/2.0/en/controllers.html#request": 1
- "//book.cakephp.org/2.0/en/models.html": 1
- "//book.cakephp.org/2.0/en/models/saving": 1
- "//drupal.org/handbook/customization/php": 1
- "//drupal.org/handbook/modules/php/": 1
- "//www.php.net": 1
- "/count/i": 1
- "/posts/index": 1
- "0": 4
- "10": 1
- "2": 2
- "2005": 4
- "2012": 4
- "3": 1
- "5": 1
- "9": 1
- ";": 744
- "<": 5
- "</a>": 4
- "</comment>": 6
- "</dd>": 1
- "</dl>": 1
- "</dt>": 1
- "</error>": 1
- "</h3>": 2
- "</info>": 6
- "</p>": 1
- "<=>": 2
- "<?php>": 3
- "<a>": 4
- "<base>": 1
- "<comment>": 6
- "<dd>": 1
- "<dl>": 1
- "<dt>": 1
- "<error>": 1
- "<extra>": 2
- "<h3>": 2
- "<info>": 6
- "<p>": 1
- "<segment>": 1
- "@filter": 1
- "@ingroup": 1
- "@link": 4
- "@package": 2
- "@param": 10
- "@php": 3
- "@property": 8
- "@return": 7
- "A": 2
- "AND": 1
- "ANSI": 2
- "ANSICON": 2
- "About": 1
- "Acl": 1
- "AclComponent": 1
- "After": 1
- "Anderson": 2
- "App": 20
- "AppModel": 1
- "Application": 2
- "ArgvInput": 2
- "ArrayAccess": 1
- "ArrayInput": 3
- "AssociatedModel": 2
- "Auth": 1
- "AuthComponent": 1
- "Automatically": 1
- "Available": 1
- "BehaviorCollection": 2
- "Behaviors": 8
- "Boolean": 2
- "BrowserKit": 1
- "By": 1
- "Cake": 7
- "Cake.Controller": 1
- "Cake.Model": 1
- "CakeEvent": 9
- "CakeEventListener": 4
- "CakeEventManager": 5
- "CakePHP": 6
- "CakeRequest": 6
- "CakeResponse": 2
- "ClassRegistry": 9
- "Client": 1
- "Command": 7
- "Component": 25
- "ComponentCollection": 2
- "Components": 4
- "Configure": 2
- "ConnectionManager": 4
- "Console": 18
- "ConsoleOutput": 2
- "ConsoleOutputInterface": 2
- "Content": 1
- "Controller": 4
- "Controllers": 2
- "Cookie": 1
- "CookieComponent": 1
- "CookieJar": 2
- "Copyright": 4
- "Crawler": 2
- "DBO": 2
- "DELETE": 1
- "DESC": 1
- "DOMNode": 2
- "Development": 2
- "DialogHelper": 1
- "Disable": 1
- "Dispatcher": 1
- "Display": 2
- "Do": 2
- "DomCrawler": 6
- "Drupal": 1
- "Drupal.org.": 1
- "ERROR": 1
- "EXTR_OVERWRITE": 3
- "E_USER_WARNING": 2
- "Each": 1
- "Either": 1
- "Email": 1
- "EmailComponent": 1
- "Enabling": 1
- "Even": 1
- "Event": 6
- "Example": 1
- "Exception": 2
- "FALSE": 2
- "FILES": 1
- "Field": 3
- "FileFormField": 2
- "For": 4
- "Force": 1
- "Form": 2
- "FormField": 1
- "FormatterHelper": 1
- "Foundation": 4
- "Framework": 2
- "GET": 2
- "H": 1
- "HTTP": 1
- "HTTPS": 2
- "HTTP_HOST": 3
- "HTTP_REFERER": 1
- "HelpCommand": 1
- "Helper": 3
- "HelperSet": 2
- "History": 2
- "If": 5
- "In": 1
- "Inc": 4
- "Increase": 1
- "Inflector": 13
- "Input": 6
- "InputArgument": 1
- "InputDefinition": 1
- "InputInterface": 3
- "InputOption": 1
- "It": 1
- "LEFT": 1
- "LIKE": 2
- "License": 4
- "Licensed": 2
- "Link": 2
- "ListCommand": 1
- "Location": 1
- "MIT": 4
- "Malformed": 1
- "MissingActionException": 1
- "MissingConnectionException": 1
- "MissingModelException": 1
- "Model": 7
- "Model.InnerModel": 1
- "Model.afterDelete": 1
- "Model.afterSave": 1
- "Model.beforeDelete": 1
- "Model.beforeFind": 1
- "Model.beforeSave": 1
- "ModelBehavior": 1
- "Name": 1
- "Network": 1
- "O": 1
- "OUTPUT": 2
- "Object": 4
- "Only": 1
- "Optional": 1
- "Options": 1
- "Output": 5
- "OutputInterface": 5
- "P": 4
- "PATCH": 1
- "PHP": 19
- "PHP_EOL": 1
- "PHP_WINDOWS_VERSION_BUILD": 2
- "POST": 2
- "PUT": 1
- "Paginator": 4
- "PaginatorComponent": 1
- "Person": 1
- "PhpProcess": 1
- "PostsController": 1
- "PrivateActionException": 1
- "Process": 1
- "Project": 2
- "Provides": 1
- "Rapid": 2
- "Redistributions": 2
- "ReflectionException": 1
- "ReflectionMethod": 2
- "Remove": 1
- "Request": 1
- "RequestHandler": 1
- "RequestHandlerComponent": 1
- "Returns": 1
- "Router": 5
- "RuntimeException": 1
- "Scaffold": 1
- "Security": 1
- "SecurityComponent": 1
- "Session": 1
- "SessionComponent": 1
- "Set": 4
- "SimpleXMLElement": 1
- "Software": 4
- "SomeModel": 2
- "String": 1
- "Symfony": 25
- "TEMP": 1
- "TMPDIR": 1
- "The": 13
- "There": 1
- "These": 1
- "This": 2
- "Thomas": 2
- "Thought": 2
- "To": 1
- "Tool": 1
- "Type": 1
- "UNKNOWN": 2
- "URL": 2
- "UTF": 2
- "Unable": 2
- "Unlike": 1
- "Unreachable": 1
- "Usage": 1
- "Use": 1
- "User": 1
- "Uses": 1
- "Using": 1
- "Utility": 6
- "V": 1
- "VERBOSITY_QUIET": 1
- "VERBOSITY_VERBOSE": 1
- "Validation": 1
- "View": 9
- "While": 1
- "Xml": 2
- "You": 3
- "_": 2
- "__backAssociation": 18
- "__backContainableAssociation": 1
- "__backInnerAssociation": 1
- "__backOriginalAssociation": 1
- "__call": 1
- "__construct": 8
- "__d": 6
- "__get": 2
- "__isset": 2
- "_afterScaffoldSave": 1
- "_afterScaffoldSaveError": 1
- "_associationKeys": 2
- "_associations": 10
- "_beforeScaffold": 1
- "_clearCache": 1
- "_constructLinkedModel": 2
- "_count": 1
- "_createLinks": 3
- "_eventManager": 12
- "_filterResults": 1
- "_find": 2
- "_findNeighbors": 1
- "_findThreaded": 1
- "_generateAssociation": 2
- "_getScaffold": 2
- "_global": 1
- "_id": 2
- "_insertID": 3
- "_isPrivateAction": 2
- "_mergeControllerVars": 2
- "_mergeParent": 4
- "_mergeUses": 2
- "_mergeVars": 5
- "_normalizeXmlData": 3
- "_parseBeforeRedirect": 2
- "_php_filter_tips": 1
- "_responseClass": 1
- "_root": 1
- "_scaffoldError": 1
- "_schema": 4
- "_setAliasData": 2
- "_sourceConfigured": 3
- "_stop": 1
- "_validate": 2
- "_validateWithModels": 2
- "a": 33
- "abbrevs": 13
- "ability": 1
- "above": 2
- "absolute": 1
- "abstract": 1
- "access": 2
- "accidentally": 1
- "action": 11
- "action.": 2
- "actions": 2
- "actsAs": 2
- "add": 2
- "addObject": 2
- "added": 1
- "adding": 1
- "adds": 2
- "admin/help/filter": 1
- "after": 7
- "afterDelete": 1
- "afterFilter": 1
- "afterFind": 1
- "afterSave": 1
- "afterScaffoldSave": 2
- "afterScaffoldSaveError": 2
- "alias": 41
- "all": 16
- "allows": 2
- "alone": 1
- "also": 1
- "alternatives": 6
- "ambiguous": 3
- "an": 5
- "ancestor.": 1
- "and": 15
- "another": 2
- "ansi": 2
- "any": 6
- "app": 1
- "appVars": 6
- "application": 1
- "are": 9
- "arg": 1
- "args": 13
- "array": 159
- "array_combine": 1
- "array_diff": 1
- "array_flip": 1
- "array_key_exists": 4
- "array_keys": 7
- "array_map": 1
- "array_merge": 9
- "array_slice": 4
- "array_unique": 1
- "array_unshift": 1
- "array_values": 1
- "as": 57
- "asText": 1
- "ask": 1
- "asort": 1
- "aspects": 1
- "assoc": 66
- "assocKey": 9
- "assocName": 6
- "associated": 3
- "association": 4
- "associationForeignKey": 8
- "associations": 1
- "at": 2
- "atomic": 22
- "attach": 4
- "autoExit": 3
- "autoLayout": 2
- "autoRender": 6
- "automatic": 1
- "availability": 1
- "available": 1
- "backed": 2
- "bare": 1
- "base": 4
- "base_url": 1
- "based": 3
- "basic": 1
- "be": 6
- "been": 1
- "before": 8
- "beforeDelete": 1
- "beforeFind": 1
- "beforeRedirect": 1
- "beforeSave": 1
- "beforeScaffold": 2
- "beforeValidate": 1
- "behaviorMethods": 3
- "belongsTo": 9
- "binary": 2
- "bindModel": 1
- "body": 2
- "bool": 1
- "boolean": 3
- "both": 1
- "break": 8
- "breakOn": 2
- "buffering": 1
- "build": 1
- "business": 1
- "but": 1
- "button": 4
- "by": 6
- "cache": 1
- "cacheAction": 1
- "cacheQueries": 1
- "cacheSources": 1
- "cake_dev": 1
- "cakefoundation": 4
- "cakephp": 4
- "calculate": 1
- "call.": 1
- "call_user_func": 1
- "call_user_func_array": 4
- "callback": 5
- "callbacks": 17
- "called": 2
- "calling": 1
- "camelize": 2
- "can": 5
- "capture": 1
- "carefully": 1
- "cascade": 1
- "case": 13
- "catch": 2
- "catchExceptions": 3
- "changeHistory": 2
- "check": 2
- "checkVirtual": 4
- "checkbox": 1
- "checks": 1
- "childMethods": 2
- "class": 18
- "className": 32
- "class_exists": 1
- "clearCache": 1
- "code": 15
- "code.": 2
- "codes": 3
- "collectReturn": 1
- "collection": 3
- "command": 18
- "commands": 16
- "comment": 1
- "compact": 3
- "components": 1
- "compromise": 1
- "cond": 1
- "conditions": 26
- "conf": 2
- "config": 6
- "connect": 1
- "constructClasses": 1
- "containing": 1
- "contains": 1
- "content": 1
- "continue": 7
- "controller": 5
- "controllers": 3
- "conventional": 1
- "cookieJar": 5
- "copied": 1
- "copyright": 4
- "count": 22
- "counterCache": 9
- "counterScope": 3
- "crawler": 1
- "create": 2
- "created": 6
- "creating": 1
- "current": 3
- "currentModel": 2
- "currentObject": 6
- "currentUri": 3
- "custom": 1
- "cycle": 1
- "d": 10
- "dangerous": 1
- "data": 86
- "data.": 1
- "data.html": 1
- "dataSource": 3
- "database": 4
- "date": 3
- "dateFields": 1
- "datetime": 1
- "db": 13
- "declared": 1
- "deconstruct": 2
- "deep": 10
- "default": 8
- "defaults": 1
- "defined": 1
- "defined.": 1
- "definition": 3
- "deleting": 1
- "dependent": 1
- "descendant": 3
- "describe": 1
- "descriptorspec": 2
- "developed.": 1
- "development": 1
- "dirname": 1
- "disableCache": 2
- "dispatch": 7
- "dispatchMethod": 3
- "displayField": 5
- "doRun": 2
- "does": 2
- "drupal_get_path": 1
- "ds": 4
- "dynamic": 2
- "dynamicWith": 2
- "e": 7
- "editing": 1
- "eg": 1
- "either": 1
- "else": 25
- "elseif": 25
- "email": 1
- "empty": 53
- "endpoint": 1
- "ensures": 1
- "entering": 1
- "entry": 1
- "error": 1
- "errors": 15
- "escapeField": 1
- "eval": 4
- "evaluate": 1
- "evaluate.": 1
- "evaluated": 1
- "event": 20
- "events": 1
- "examined": 1
- "example": 2
- "exclusive": 3
- "execute": 2
- "executed": 1
- "execution": 1
- "exist.": 2
- "exists": 9
- "exists.": 1
- "exit": 12
- "experience": 1
- "explode": 4
- "expression": 1
- "ext": 1
- "extends": 3
- "extra": 1
- "extract": 7
- "extractNamespace": 1
- "f": 4
- "false": 70
- "fclose": 2
- "feature": 1
- "field": 78
- "field3": 1
- "fieldList": 11
- "fieldName": 21
- "fieldSet": 3
- "fieldValue": 7
- "fields": 65
- "file": 4
- "file.": 1
- "filename": 1
- "files": 5
- "filter": 8
- "filterKey": 1
- "filters": 2
- "find": 4
- "findAlternativeCommands": 1
- "findAlternativeNamespace": 1
- "findAlternatives": 3
- "findMethods": 1
- "findNamespace": 1
- "findQueryType": 1
- "first": 16
- "flash": 1
- "flexible": 1
- "followRedirect": 2
- "followRedirects": 4
- "followed": 1
- "following": 1
- "foo": 2
- "for": 12
- "foreach": 51
- "foreignKey": 15
- "foreignKeys": 3
- "form": 4
- "format": 5
- "formats": 1
- "formatter": 2
- "found": 2
- "fully": 1
- "func_get_args": 5
- "function": 124
- "function_exists": 3
- "functionality": 1
- "further": 1
- "general": 1
- "generated": 1
- "get": 3
- "getAbbreviationSuggestions": 1
- "getAffectedRows": 1
- "getAssociated": 2
- "getCode": 1
- "getColumnType": 1
- "getColumnTypes": 1
- "getCommandName": 1
- "getContent": 1
- "getDataSource": 9
- "getDefaultCommands": 1
- "getDefaultHelperSet": 1
- "getDefaultInputDefinition": 1
- "getDefinition": 1
- "getDescription": 1
- "getErrorOutput": 1
- "getEventManager": 9
- "getFiles": 2
- "getFormNode": 1
- "getHelp": 2
- "getHelperSet": 3
- "getID": 1
- "getInputStream": 1
- "getInsertID": 2
- "getLastInsertID": 1
- "getLongVersion": 2
- "getMethod": 2
- "getName": 3
- "getNamespaces": 1
- "getNumRows": 1
- "getObject": 1
- "getParameters": 1
- "getPhpValues": 1
- "getSchemaName": 1
- "getScript": 1
- "getServer": 1
- "getServerParameter": 1
- "getSttyColumns": 1
- "getUri": 1
- "getValue": 2
- "getValues": 2
- "getVirtualField": 1
- "get_class": 3
- "get_class_methods": 3
- "get_class_vars": 2
- "get_parent_class": 1
- "global": 2
- "granted": 1
- "group": 2
- "groupPath": 2
- "h": 1
- "handbook": 1
- "hands": 1
- "has": 2
- "hasAndBelongsToMany": 10
- "hasField": 3
- "hasMany": 4
- "hasMethod": 2
- "hasOne": 4
- "hasParameterOption": 7
- "hasValue": 1
- "have": 3
- "header": 3
- "help": 3
- "helperSet": 6
- "helpers": 1
- "here": 1
- "history": 5
- "hour": 1
- "href=": 4
- "http": 19
- "httpCodes": 3
- "http_build_query": 1
- "https": 1
- "i": 4
- "id": 35
- "if": 237
- "image": 2
- "implementedEvents": 2
- "implementing": 1
- "implements": 3
- "implode": 1
- "in": 6
- "in_array": 14
- "include": 1
- "incorrect": 1
- "index": 9
- "indicating": 1
- "inexperienced": 1
- "info": 2
- "information": 1
- "init": 4
- "initialize": 1
- "input": 24
- "inputStream": 2
- "inside": 1
- "instanceof": 7
- "insulate": 2
- "insulated": 6
- "integer": 1
- "interaction": 1
- "interactive": 1
- "invalidFields": 3
- "invalidate": 2
- "invokeAction": 1
- "invokeArgs": 1
- "is": 14
- "isDisabled": 2
- "isForeignKey": 1
- "isKeySet": 1
- "isPublic": 1
- "isStopped": 3
- "isUnique": 1
- "isVirtualField": 3
- "is_a": 1
- "is_array": 33
- "is_bool": 1
- "is_numeric": 7
- "is_object": 3
- "is_resource": 1
- "is_string": 6
- "is_subclass_of": 3
- "isset": 61
- "it": 3
- "item": 9
- "join": 6
- "joinModel": 2
- "joinTable": 2
- "joins": 2
- "k": 2
- "keepExisting": 1
- "key": 30
- "key.": 1
- "keyPath": 2
- "keys": 7
- "ksort": 2
- "language": 2
- "lastAffected": 1
- "lastNumRows": 1
- "layout": 5
- "layoutPath": 1
- "layouts": 1
- "least": 1
- "length": 2
- "lev": 6
- "levenshtein": 2
- "license": 4
- "licenses": 2
- "life": 1
- "lifecycle.": 1
- "limit": 7
- "line": 4
- "link": 2
- "list": 28
- "listSources": 1
- "listener": 1
- "listing": 1
- "loadModel": 3
- "local": 2
- "localhost": 1
- "location": 2
- "logic": 2
- "long": 2
- "look": 1
- "lowercase": 1
- "m": 3
- "malformed": 1
- "malicious": 1
- "manipulate": 1
- "map": 1
- "mapper": 2
- "mapping": 1
- "maps": 1
- "may": 1
- "mb_strlen": 1
- "meaning": 1
- "merge": 7
- "mergeParent": 2
- "message": 13
- "message.": 2
- "messages": 5
- "messages.": 1
- "method": 31
- "method.": 2
- "method_exists": 2
- "methods": 8
- "migrated": 1
- "min": 1
- "mit": 2
- "mixed": 5
- "modParams": 1
- "model": 20
- "modelClass": 25
- "modelKey": 2
- "modelName": 3
- "models": 8
- "modified": 4
- "module": 3
- "more": 2
- "most": 1
- "must": 2
- "n": 10
- "n/a": 4
- "name": 107
- "named": 1
- "names": 3
- "names.": 1
- "namespace": 9
- "namespace.": 1
- "namespacedCommands": 5
- "namespaces": 1
- "need": 1
- "nest": 1
- "net": 1
- "new": 28
- "newData": 5
- "no": 3
- "node": 4
- "none": 1
- "not": 10
- "notice": 2
- "now": 1
- "null": 106
- "number": 1
- "ob_end_clean": 1
- "ob_get_contents": 1
- "ob_start": 1
- "object": 12
- "object.": 1
- "objects": 5
- "of": 25
- "offset": 3
- "old": 9
- "oldConfig": 3
- "oldDb": 3
- "old_theme_path": 2
- "on": 7
- "onError": 1
- "one": 22
- "online": 1
- "only": 3
- "op": 3
- "opensource": 2
- "options": 14
- "or": 16
- "order": 10
- "org": 10
- "organization": 1
- "other": 2
- "otherfield": 2
- "output": 39
- "output.": 2
- "override": 2
- "overwrite": 1
- "own": 1
- "package": 2
- "page": 7
- "pages": 1
- "paginate": 2
- "parameters": 2
- "params": 34
- "parent": 6
- "parentClass": 3
- "parentMethods": 2
- "part": 2
- "parts": 2
- "pass": 1
- "passedArgs": 2
- "path": 3
- "pause": 2
- "performing": 2
- "permission": 1
- "permissions": 1
- "person_id": 1
- "php": 6
- "php_eval": 1
- "php_filter_info": 1
- "php_help": 1
- "php_wrappers": 1
- "pipes": 4
- "plugin": 31
- "pluginController": 9
- "pluginDot": 4
- "pluginSplit": 11
- "pluginVars": 3
- "pluralize": 5
- "pluralized": 1
- "pointing": 1
- "posix_isatty": 1
- "possibly": 1
- "postConditions": 1
- "powerful": 1
- "prefix": 2
- "prefixed": 1
- "prefixes": 4
- "preg_match": 1
- "prevVal": 2
- "primary": 4
- "primaryKey": 12
- "print": 1
- "printed": 2
- "private": 17
- "privateAction": 4
- "proc_close": 1
- "proc_open": 1
- "process": 3
- "processed.": 1
- "proper": 1
- "properties": 3
- "property": 1
- "property_exists": 3
- "protected": 37
- "provide": 1
- "public": 150
- "purpose": 1
- "q": 1
- "qs": 1
- "query": 25
- "queryData": 1
- "question.": 1
- "quiet": 1
- "radio": 1
- "raw": 2
- "re": 1
- "read": 2
- "recursive": 16
- "redirect": 6
- "redirected.": 1
- "redirection": 4
- "referer": 5
- "regular": 1
- "relation": 7
- "relational": 2
- "render": 3
- "renderException": 2
- "rendering": 1
- "request": 56
- "request.": 2
- "requestFromRequest": 1
- "requests": 1
- "require": 1
- "required": 2
- "requiredFail": 4
- "reset": 6
- "resetAssociations": 2
- "resource": 1
- "resources": 1
- "resp": 6
- "response": 22
- "response.": 2
- "responsible": 1
- "restrict": 1
- "result": 5
- "results": 10
- "retain": 2
- "return": 153
- "return2": 6
- "returned": 2
- "returns": 3
- "reverse": 1
- "risk": 1
- "routing.": 1
- "row": 6
- "rows": 1
- "rule": 11
- "ruleParams": 11
- "ruleSet": 10
- "run": 2
- "runningCommand": 3
- "s": 27
- "s/": 1
- "same": 1
- "scaffold": 2
- "scaffoldError": 2
- "schema": 8
- "schemaName": 2
- "scripting": 1
- "sec": 1
- "security": 1
- "see": 1
- "segment": 1
- "select": 2
- "selected": 1
- "selects": 1
- "send": 1
- "server": 7
- "serves": 1
- "session_write_close": 1
- "set": 9
- "setAction": 1
- "setDataSource": 2
- "setDecorated": 2
- "setHelperSet": 1
- "setInsertID": 1
- "setInteractive": 2
- "setRequest": 2
- "setServerParameter": 1
- "setServerParameters": 2
- "setSource": 1
- "setValues": 1
- "setVerbosity": 2
- "sets": 1
- "settings": 2
- "should": 3
- "shutdownProcess": 1
- "significant": 1
- "since": 2
- "singularize": 1
- "site": 3
- "snippets": 3
- "sortCommands": 2
- "space": 1
- "specific": 1
- "sprintf": 3
- "sql": 1
- "stand": 1
- "startupProcess": 1
- "state": 7
- "status": 20
- "statusCode": 14
- "stop": 1
- "str_replace": 1
- "stream_get_contents": 1
- "string": 8
- "strlen": 5
- "strpos": 9
- "strtolower": 8
- "submit": 3
- "substr": 2
- "such": 2
- "suppressing": 1
- "surrounded": 1
- "switch": 3
- "symfony": 1
- "t": 20
- "table": 18
- "table.": 1
- "tablePrefix": 10
- "tableToModel": 3
- "tableize": 2
- "tables": 1
- "tag.": 1
- "tags": 1
- "takes": 1
- "text": 5
- "text.": 1
- "textarea": 2
- "than": 1
- "that": 6
- "the": 47
- "them.": 1
- "theme_info": 3
- "theme_path": 5
- "then": 1
- "this": 498
- "thoughts": 1
- "through": 1
- "throw": 6
- "timeFields": 2
- "timestamp": 1
- "title": 1
- "tm": 6
- "to": 26
- "toArray": 1
- "trace": 1
- "trigger_error": 2
- "trim": 1
- "true": 84
- "trusted": 3
- "try": 3
- "two": 6
- "type": 62
- "unbindModel": 1
- "under": 2
- "underscore": 3
- "unique": 4
- "unlike": 1
- "unset": 16
- "updated": 4
- "uri": 1
- "url": 21
- "urls": 1
- "use": 26
- "use.": 1
- "useDbConfig": 8
- "useNewDate": 1
- "useTable": 10
- "used": 3
- "user": 2
- "user.": 1
- "users": 2
- "uses": 49
- "using": 3
- "usually": 1
- "v": 3
- "val": 6
- "valid": 14
- "validate": 29
- "validateErrors": 1
- "validates": 2
- "validationDomain": 8
- "validationErrors": 13
- "validator": 32
- "value": 37
- "valuePath": 2
- "values": 9
- "variables": 2
- "verbose": 1
- "verbosity": 1
- "version": 6
- "version.": 1
- "versions": 1
- "view": 5
- "viewClass": 10
- "viewPath": 3
- "viewVars": 3
- "views": 1
- "virtual": 1
- "virtualFields": 8
- "void": 1
- "wantHelps": 2
- "was": 1
- "we": 2
- "web": 1
- "webroot": 1
- "were": 2
- "when": 2
- "whether": 1
- "which": 2
- "whitelist": 7
- "widely": 1
- "width": 5
- "will": 3
- "with": 14
- "within": 1
- "without": 1
- "words": 1
- "wrapper": 1
- "writeln": 1
- "www": 2
- "x": 2
- "x.*": 1
- "xml": 2
- "you": 4
- "your": 3
- "{": 521
- "|": 3
- "||": 31
- "}": 503
- "Parrot Assembly":
- "#": 1
- ".pcc_sub": 1
- "/usr/bin/env": 1
- "end": 1
- "main": 2
- "parrot": 1
- "say": 1
- "Parrot Internal Representation":
- "#": 1
- ".end": 1
- ".sub": 1
- "/usr/bin/env": 1
- "main": 1
- "parrot": 1
- "say": 1
- "Perl":
- "#": 142
- "#.": 3
- "#7": 2
- "#I": 5
- "%": 44
- "&": 12
- "&&": 30
- "(": 328
- ")": 322
- "*": 8
- "*.*s": 1
- "*/": 1
- "*I": 1
- "*STDOUT": 2
- "+": 92
- "-": 436
- "-}": 3
- ".": 54
- ".#": 3
- ".*": 1
- "..": 3
- "...": 3
- ".//": 1
- ".008_001": 1
- ".05": 1
- ".40": 1
- ".94": 1
- ".99": 1
- ".ackrc": 1
- ".svn": 1
- "/": 28
- "//": 3
- "//g": 1
- "/I": 1
- "/MSWin32/": 1
- "/chr": 1
- "/eg": 1
- "/ge": 1
- "/i": 2
- "/logout": 1
- "/usr/bin/env": 1
- "/usr/bin/perl": 1
- "/usr/local/bin/perl": 1
- ";": 446
- "<": 3
- "<\"\\n\">": 1
- "<$fh>": 1
- "<$filename>": 1
- "<$one>": 1
- "<$ors>": 1
- "<$regex>": 1
- "</\"DISPATCHING\">": 1
- "</>": 3
- "</app/logout?signoff=1>": 1
- "<<": 7
- "<CAN>": 1
- "<CGI::Simple::Cookie>": 1
- "<Catalyst::Request>": 1
- "<File::Next>": 1
- "<GET>": 1
- "<HEAD>": 1
- "<HTTP::Request>": 1
- "<HTTP_HOST>": 1
- "<Hash::MultiValue>": 5
- "<NOT>": 1
- "<PATH_INFO>": 2
- "<POST>": 1
- "<Plack::Request>": 1
- "<Plack::Response>": 1
- "<QUERY_STRING>": 1
- "<REMOTE_ADDR>": 1
- "<REMOTE_HOST>": 1
- "<REMOTE_USER>": 1
- "<SCRIPT_NAME>": 3
- "<SERVER_NAME>": 1
- "<SERVER_PORT>": 1
- "<address>": 1
- "<body_parameters>": 2
- "<body_params>": 1
- "<content>": 1
- "<cookie>": 1
- "<cookies>": 1
- "<examples/benchmarks/fib.pir>": 1
- "<foo.pod>": 1
- "<get_all>": 1
- "<get_one>": 1
- "<hostname>": 1
- "<http://www.simplicidade.org/notes/archives/2008/03/search_in_proje.html>": 1
- "<http>": 1
- "<https>": 1
- "<mixed>": 1
- "<n>": 1
- "<param>": 1
- "<parameters>": 1
- "<params>": 1
- "<path_info>": 3
- "<psgi.input>": 1
- "<psgix.logger>": 1
- "<psgix.session.options>": 1
- "<psgix.session>": 1
- "<query_parameters>": 2
- "<query_params>": 1
- "<raw_uri>": 1
- "<scalar>": 1
- "<strings>": 1
- "<traditional>": 1
- "<undef>": 1
- "<uploads>": 2
- "<uri>": 1
- "<url_scheme>": 1
- "@": 15
- "@ARGV": 6
- "@ENV": 1
- "@ISA": 1
- "@_": 25
- "@array": 1
- "@before": 8
- "@exts": 4
- "@files": 2
- "@foo": 1
- "@keys": 2
- "@lines": 2
- "@pairs": 2
- "@results": 5
- "@what": 7
- "A": 2
- "ACK_/": 1
- "ACK_COLOR_FILENAME": 1
- "ACK_COLOR_LINENO": 1
- "ACK_COLOR_MATCH": 1
- "ACK_SWITCHES": 1
- "ALSO": 3
- "ANSIColor": 4
- "ATTRIBUTES": 1
- "AUTHOR": 1
- "AUTHORS": 1
- "Accessor": 1
- "Ack": 46
- "Add/Remove": 1
- "All": 4
- "Also": 1
- "And": 1
- "Andy": 1
- "App": 46
- "Artistic": 1
- "As": 1
- "B": 6
- "BEGIN": 3
- "BODY": 1
- "Bar": 1
- "Basic": 4
- "Benchmark": 1
- "Binary": 2
- "Body": 1
- "Builtin": 2
- "C": 58
- "CGI": 1
- "COLOR": 3
- "CONTENT": 1
- "CONTENT_LENGTH": 1
- "CONTENT_TYPE": 1
- "COOKIE": 1
- "COPYRIGHT": 3
- "CVS": 2
- "Calculates": 1
- "Cannot": 2
- "Carp": 6
- "Contains": 1
- "Cookie": 1
- "Copyright": 1
- "Creates": 1
- "DESCRIPTION": 1
- "Defining": 2
- "END_OF_HELP": 2
- "END_OF_VERSION": 1
- "ENV": 5
- "Escape": 4
- "Every": 2
- "Exit": 1
- "F": 2
- "Fibonacci": 2
- "File": 20
- "Flush": 1
- "Foo": 9
- "For": 1
- "G": 3
- "G.": 1
- "GET": 2
- "GMT": 1
- "GetAttributes": 1
- "Getopt": 1
- "Glob": 1
- "H": 2
- "HIDDEN": 1
- "HTTP": 8
- "HTTP/1.0": 1
- "HTTP/1.1": 1
- "HTTPS": 1
- "HTTP_COOKIE": 3
- "Hash": 4
- "Headers": 6
- "Hello": 2
- "Highlight": 1
- "HttpOnly": 1
- "I": 35
- "I#": 1
- "I#7#I": 1
- "INCOMPATIBILITIES": 1
- "IP": 2
- "If": 1
- "Ignores": 1
- "In": 2
- "Internal": 1
- "Invalid": 2
- "It": 3
- "K/": 1
- "Kazuhiro": 1
- "L": 14
- "LICENSE": 2
- "Lester.": 1
- "License": 1
- "Long": 1
- "MAIN": 1
- "MULTIPLE": 1
- "Matched": 1
- "Matsuno": 2
- "Method": 1
- "Miyagawa": 2
- "MultiValue": 4
- "N": 2
- "NAME": 2
- "NOT": 1
- "Next": 12
- "No": 2
- "Not": 1
- "Note": 1
- "Number": 1
- "O": 2
- "OBJECTS": 1
- "Only": 1
- "Optimized": 1
- "Osawa": 1
- "PARSING": 1
- "PATH_INFO": 3
- "PATTERN": 1
- "POST": 4
- "PSGI": 3
- "Perl": 2
- "Permission": 1
- "Plack": 7
- "Plugin": 1
- "Print": 1
- "Print/search": 1
- "Prints": 3
- "Project": 1
- "Q": 2
- "R": 3
- "RCS": 1
- "REGEX": 1
- "REGEX.": 1
- "REMOTE_ADDR": 1
- "REMOTE_HOST": 1
- "REMOTE_USER": 1
- "REQUEST_METHOD": 1
- "REQUEST_URI": 2
- "Recurse": 1
- "Removes": 1
- "Repository": 3
- "Request": 4
- "Resource": 1
- "Response": 1
- "Return": 1
- "Returns": 27
- "SCCS": 1
- "SCRIPT_NAME": 1
- "SEE": 3
- "SERVER_PORT": 1
- "SERVER_PROTOCOL": 1
- "STDIN": 1
- "SYNOPSIS": 1
- "SYSTEM": 1
- "Same": 4
- "Scalar": 2
- "Search": 1
- "See": 4
- "Set": 1
- "Show": 1
- "Similar": 1
- "Simple": 1
- "So": 1
- "Sort": 1
- "Spec": 2
- "Standard": 1
- "T": 1
- "TEXT": 8
- "TOTAL_COUNT_SCOPE": 1
- "Tatsuhiko": 2
- "TempBuffer": 1
- "Term": 3
- "TextMate": 2
- "The": 10
- "They": 1
- "This": 7
- "Tokuhiro": 2
- "True/False": 1
- "Type": 1
- "U": 1
- "URI": 15
- "URLs": 1
- "Unable": 1
- "Upload": 1
- "Use": 1
- "Util": 3
- "VERSION": 12
- "VMS": 1
- "Values": 1
- "Version": 1
- "When": 2
- "Win32": 3
- "Windows": 1
- "World": 2
- "You": 4
- "_": 56
- "_//": 1
- "_MTN": 1
- "_ackrc": 1
- "_bar": 2
- "_body": 2
- "_build": 1
- "_darcs": 1
- "_deprecated": 8
- "_finalize_cookies": 1
- "_get_thpppt": 1
- "_match": 4
- "_parse_request_body": 3
- "_sgbak": 1
- "_thpppt": 2
- "_uri_base": 1
- "a": 41
- "a.": 1
- "ability": 1
- "about": 1
- "absolute": 2
- "ack": 16
- "ack.": 1
- "action": 1
- "actionscript": 1
- "ada": 2
- "adb": 1
- "add": 3
- "address": 5
- "ads": 1
- "after": 12
- "after_context": 4
- "alias": 1
- "all": 5
- "already": 1
- "also": 2
- "alt": 1
- "always": 4
- "an": 7
- "and": 36
- "and/or": 2
- "any": 1
- "any_output": 5
- "anymore": 1
- "anymore.": 1
- "append": 1
- "application": 6
- "are": 10
- "argument": 1
- "argument.": 1
- "argv": 4
- "around": 1
- "array": 4
- "as": 18
- "asm": 2
- "assume": 1
- "at.": 1
- "attr": 2
- "avoid": 1
- "b": 4
- "b/": 2
- "ba": 1
- "back": 1
- "badkey": 1
- "bar": 3
- "bas": 1
- "base": 11
- "based": 1
- "basename": 4
- "bat": 1
- "batch": 1
- "be": 12
- "be.": 1
- "before": 1
- "before_context": 5
- "before_starts_at_line": 5
- "between": 1
- "binary": 2
- "black": 2
- "bless": 6
- "blessed": 1
- "blib": 1
- "body": 18
- "body_parameters": 4
- "body_params": 1
- "bold": 4
- "both": 1
- "break": 5
- "buffer": 1
- "bug": 1
- "build_regex": 1
- "building": 1
- "built": 1
- "builtin": 2
- "bundling": 1
- "but": 5
- "by": 3
- "byte": 1
- "c": 3
- "call": 4
- "called": 2
- "caller": 1
- "can": 10
- "cannot": 2
- "carefully": 1
- "carp": 2
- "case": 6
- "catfile": 1
- "change.": 1
- "changed.": 2
- "class": 6
- "client": 1
- "client.": 1
- "clients": 1
- "clone": 1
- "cloned": 2
- "close": 4
- "cls": 1
- "cmd": 1
- "code": 9
- "code.": 1
- "coded": 1
- "color": 15
- "colored": 3
- "colour": 2
- "column": 2
- "command": 4
- "compilation": 1
- "connection": 1
- "constant": 1
- "constructed": 1
- "container": 1
- "containing": 5
- "contains": 2
- "content": 7
- "content_encoding": 4
- "content_length": 3
- "content_type": 3
- "context": 5
- "context_overall_output_count": 3
- "cookie": 5
- "cookies": 8
- "cookies.": 1
- "correct": 1
- "could": 2
- "count": 9
- "create": 1
- "creating": 1
- "croak": 2
- "ctl": 1
- "current": 3
- "cut": 19
- "cycle.": 1
- "d": 6
- "d.": 1
- "data": 1
- "day": 1
- "deal": 1
- "decoded.": 1
- "decoding": 1
- "default": 4
- "defaults": 2
- "defined": 17
- "defines": 1
- "delete": 4
- "delete_type": 3
- "denied": 1
- "depending": 2
- "deprecated": 2
- "descend_filter": 3
- "descend_filter.": 1
- "details.": 1
- "die": 7
- "different": 1
- "dir": 3
- "dir/": 1
- "dir_sep_chars": 5
- "directories": 3
- "directory": 3
- "dirs": 4
- "dispatch": 1
- "display_filename": 4
- "display_line_no": 2
- "do": 5
- "document": 2
- "does": 1
- "doing": 1
- "domain": 2
- "dtd": 1
- "during": 1
- "e": 7
- "each": 3
- "either": 1
- "else": 18
- "elsif": 4
- "empty": 2
- "empty.": 1
- "encoding": 1
- "end": 1
- "ent": 1
- "env": 54
- "env_is_usable": 3
- "environment": 4
- "environment.": 2
- "eq": 13
- "erl": 1
- "error": 2
- "error_handler": 1
- "etc": 1
- "eval": 3
- "even": 3
- "example": 1
- "examples/benchmarks/fib.pl": 1
- "exist": 2
- "exists": 9
- "exit": 4
- "exit_from_ack": 2
- "expand_filenames": 1
- "expect": 2
- "expires": 2
- "explicitly": 1
- "expression": 4
- "ext": 7
- "exts": 3
- "f": 5
- "false": 2
- "fh": 7
- "fib": 4
- "field": 5
- "file": 13
- "file_filter": 5
- "filename": 30
- "filename.": 1
- "filenames": 1
- "files": 15
- "files.": 2
- "filetype": 1
- "filetypes": 4
- "filetypes_supported": 1
- "filetypes_supported_set": 2
- "filter": 6
- "finalize": 3
- "find": 3
- "finding": 1
- "first.": 1
- "flatten": 2
- "flush": 2
- "follow": 2
- "follow_symlinks": 1
- "following": 1
- "foo": 7
- "for": 31
- "found": 3
- "found.": 2
- "framework": 1
- "framework.": 1
- "free": 2
- "frm": 1
- "from": 7
- "full": 1
- "functions": 2
- "g": 4
- "g.": 1
- "g/": 1
- "g_regex": 2
- "g_regex/": 3
- "get": 6
- "get_all": 3
- "get_command_line_options": 1
- "get_iterator": 2
- "get_starting_points": 2
- "get_total_count": 1
- "give": 1
- "gives": 1
- "goes": 1
- "going": 1
- "greater": 1
- "green": 2
- "grep": 8
- "group": 2
- "guess": 1
- "h": 2
- "hacked": 1
- "had": 1
- "handed": 1
- "handle": 1
- "handle.": 1
- "has": 1
- "has.": 1
- "has_lines": 2
- "hash": 12
- "hash.": 3
- "have": 3
- "head1": 14
- "head2": 16
- "header": 11
- "header_field_names": 1
- "headers": 35
- "heading": 7
- "help": 6
- "here": 2
- "hidden": 1
- "host": 1
- "hosted": 1
- "hosted.": 1
- "hostname": 1
- "hp": 1
- "https": 1
- "i": 10
- "if": 96
- "ignore": 4
- "ignore.": 1
- "ignore_dirs": 4
- "ignored": 2
- "ignoredir_filter": 3
- "ignoring": 1
- "immediately": 1
- "in": 18
- "inclusion/exclusion": 1
- "independent": 1
- "indicating": 1
- "information": 1
- "input": 5
- "input_from_pipe": 4
- "insecure.": 1
- "inside": 1
- "instead": 1
- "interactively": 3
- "internal": 1
- "into": 1
- "invalid.": 1
- "invert": 3
- "invert_file_match": 3
- "invert_flag": 2
- "is": 29
- "is_binary": 1
- "is_cygwin": 3
- "is_interesting": 2
- "is_match": 4
- "is_searchable": 4
- "is_windows": 4
- "it": 21
- "item": 24
- "iter": 8
- "iterator": 2
- "its": 1
- "itself.": 1
- "join": 1
- "k": 3
- "keep_context": 4
- "key": 10
- "keys": 6
- "know": 1
- "l": 5
- "large": 1
- "last": 7
- "last_output_line": 3
- "later": 1
- "lc": 2
- "lc_basename": 4
- "less": 2
- "level": 1
- "lexically.": 1
- "library": 1
- "like": 3
- "line": 7
- "line_no": 6
- "lineno": 2
- "lines": 2
- "lines.": 1
- "list": 3
- "literal": 1
- "ll": 1
- "load_colors": 1
- "local": 1
- "location": 3
- "log": 1
- "logger": 4
- "longer": 1
- "lua": 1
- "m": 4
- "m/": 2
- "made": 1
- "main": 3
- "major": 2
- "mak": 1
- "man": 3
- "many": 1
- "map": 5
- "mappings": 13
- "match": 11
- "match.": 1
- "match_end": 2
- "match_start": 3
- "matches": 5
- "matching": 5
- "max": 7
- "may": 2
- "means": 2
- "merged": 1
- "message": 2
- "method": 9
- "methods": 5
- "might": 2
- "mismatching.": 1
- "mixed": 1
- "mk": 1
- "mod_perl": 1
- "mode": 1
- "mode.": 1
- "modify": 2
- "more": 1
- "most": 1
- "mostly": 1
- "msg": 2
- "multiple": 3
- "must": 2
- "mxml": 1
- "my": 142
- "n": 26
- "nOo_/": 1
- "name": 15
- "nargs": 2
- "ne": 5
- "need": 1
- "negative": 1
- "new": 24
- "next": 3
- "next_resource": 2
- "next_text": 3
- "nexted": 3
- "nmatches": 21
- "no": 10
- "no_auto_abbrev": 1
- "no_ignore_case": 2
- "nobreak": 1
- "nogroup": 1
- "noheading": 1
- "noignore": 1
- "non": 1
- "nopager": 1
- "not": 13
- "now": 3
- "number": 1
- "numbers.": 1
- "o": 11
- "object": 2
- "object.": 5
- "objects": 3
- "of": 19
- "off": 1
- "on": 9
- "on_yellow": 2
- "once": 1
- "one": 5
- "ones": 1
- "only": 4
- "only.": 1
- "op": 1
- "open": 2
- "opt": 69
- "option": 1
- "optional": 3
- "options": 1
- "options.": 2
- "or": 23
- "ors": 6
- "other": 2
- "otherwise": 1
- "our": 16
- "out": 1
- "output": 7
- "output_func": 4
- "output_to_pipe": 5
- "over": 1
- "overload": 1
- "own": 2
- "own.": 1
- "p": 3
- "package": 7
- "pager": 5
- "pair": 4
- "param": 1
- "parameter": 2
- "parameters": 8
- "parameters.": 2
- "params": 2
- "parse": 1
- "parsed": 1
- "pass": 2
- "pass_through": 1
- "passed": 1
- "passes": 1
- "passthru": 3
- "path": 16
- "path.": 3
- "path_escape_class": 1
- "path_info": 3
- "path_query": 1
- "pattern": 2
- "per": 1
- "perl": 5
- "pipe": 2
- "pipe.": 1
- "plack.request.body": 2
- "plack.request.http.body": 1
- "plack.request.upload": 2
- "port": 1
- "posted": 1
- "prefix": 1
- "print": 16
- "print0": 3
- "print_blank_line": 1
- "print_column_no": 1
- "print_count": 2
- "print_count0": 1
- "print_filename": 1
- "print_files": 2
- "print_files_with_matches": 2
- "print_first_filename": 1
- "print_line_no": 1
- "print_match_or_context": 5
- "print_separator": 1
- "printing": 1
- "probably": 1
- "program": 2
- "project": 1
- "projects.": 1
- "protocol": 3
- "provides": 1
- "psgi.input": 1
- "psgi.url_scheme": 1
- "psgix.input.buffered": 2
- "pt": 1
- "push": 6
- "q": 3
- "qq": 6
- "qr/": 6
- "query": 4
- "query_form": 1
- "query_parameters": 5
- "query_params": 1
- "quotemeta": 2
- "qw": 15
- "r": 7
- "rather": 2
- "raw": 1
- "raw_body": 1
- "raw_uri": 1
- "rc": 5
- "re": 2
- "read": 1
- "read_ackrc": 1
- "record": 1
- "recurse": 3
- "redefine": 1
- "redirect": 1
- "redirected": 1
- "redirections.": 1
- "redistribute": 2
- "ref": 19
- "reference": 14
- "reference.": 3
- "referer": 2
- "regex": 13
- "regex/": 4
- "regex/Term": 1
- "regex/go": 1
- "regexp": 1
- "regular": 1
- "related": 1
- "release.": 1
- "remote": 1
- "remote_host": 3
- "remove_dir_sep": 2
- "removed": 2
- "removes": 1
- "repo": 3
- "req": 11
- "request": 9
- "request.": 4
- "request/response": 1
- "request_uri": 2
- "requests.": 3
- "required": 2
- "res": 13
- "reset_total_count": 2
- "reslash": 1
- "resolve": 1
- "response": 2
- "result": 1
- "results": 6
- "results.": 1
- "resx": 1
- "retrieve": 1
- "return": 60
- "returned": 1
- "returning": 1
- "returns": 8
- "ruby": 1
- "s": 32
- "s/": 10
- "safely": 1
- "same": 2
- "save": 1
- "scalar": 1
- "scheme": 5
- "script_name": 2
- "search": 2
- "search_and_list": 3
- "searched": 2
- "searching": 2
- "searching.": 1
- "secure": 4
- "self": 92
- "send": 1
- "sent": 1
- "sep": 4
- "separator": 2
- "serialized.": 1
- "session": 3
- "session_options": 2
- "set": 6
- "set_up_pager": 1
- "sh": 1
- "shared": 1
- "shift": 74
- "should": 3
- "show": 3
- "show_column": 2
- "show_filename": 16
- "show_help": 1
- "show_total": 3
- "show_types": 1
- "simple": 1
- "simply": 1
- "skipped": 2
- "smart": 1
- "so": 4
- "software": 2
- "something": 1
- "sort": 2
- "sort_files": 2
- "specified.": 1
- "specify": 1
- "spend": 1
- "split": 3
- "start_point": 3
- "starting": 1
- "starting_line_no": 1
- "starting_point": 5
- "status": 9
- "stop": 1
- "store": 1
- "str": 3
- "strict": 10
- "string": 4
- "strings": 1
- "structures": 1
- "sub": 94
- "subdirectories": 1
- "substr": 1
- "such": 5
- "sucks": 1
- "suggesting": 1
- "supposed": 1
- "sv": 1
- "t": 12
- "target": 3
- "templates": 1
- "temporary": 1
- "terms": 2
- "text": 2
- "th": 1
- "than": 3
- "that": 10
- "the": 77
- "them": 2
- "then": 1
- "there": 1
- "they": 1
- "this": 10
- "through": 2
- "thru": 1
- "time": 3
- "times": 2
- "to": 42
- "to.": 1
- "total_count": 4
- "totally": 1
- "tr/": 1
- "trailing": 1
- "true": 4
- "tt": 2
- "tt2": 1
- "ttml": 1
- "type": 35
- "type_wanted": 4
- "type_wanted.": 1
- "types": 21
- "u": 5
- "ugliness.": 1
- "ugly": 1
- "unchanged": 1
- "undecoded": 2
- "undef": 2
- "under": 3
- "unless": 18
- "unlike": 1
- "unrestricted": 2
- "unsafe": 1
- "unshift": 1
- "unspecified": 1
- "up": 2
- "updated": 1
- "upload": 1
- "uploads": 4
- "uri": 3
- "uri_escape": 1
- "uri_unescape": 1
- "url": 2
- "url_scheme": 1
- "use": 47
- "used": 4
- "useful": 1
- "user": 3
- "user_agent": 2
- "using": 4
- "utility": 1
- "v": 10
- "v2.0.": 1
- "val": 1
- "value": 5
- "values": 3
- "various": 1
- "vb": 2
- "vd": 1
- "verilog": 1
- "version": 3
- "vh": 1
- "vhd": 1
- "vhdl": 2
- "vim": 2
- "virtual": 1
- "w": 1
- "w/": 1
- "wacky": 1
- "want": 5
- "wantarray": 2
- "warn": 7
- "warnings": 10
- "was": 6
- "we": 4
- "web": 1
- "well": 1
- "what": 6
- "when": 6
- "where": 5
- "whether": 1
- "which": 7
- "while": 8
- "whole": 1
- "will": 3
- "with": 12
- "without": 2
- "won": 1
- "word": 1
- "words": 1
- "work": 2
- "working": 1
- "write": 1
- "writing": 2
- "written": 1
- "www": 1
- "x": 4
- "xml": 3
- "xsl": 1
- "xslt": 1
- "y": 5
- "yaml": 2
- "yellow": 2
- "yet": 1
- "yml": 1
- "you": 17
- "your": 8
- "ython": 1
- "z": 1
- "z/": 1
- "z//": 1
- "zero": 1
- "{": 376
- "{-": 3
- "|": 32
- "||": 18
- "}": 385
- "PowerShell":
- "#": 2
- "(": 1
- ")": 1
- "-": 2
- "Host": 2
- "Write": 2
- "function": 1
- "hello": 1
- "{": 1
- "}": 1
- "Prolog":
- "(": 10
- ")": 10
- "*/": 2
- "-": 1
- ".": 7
- "/*": 2
- "F": 2
- "M": 2
- "X": 3
- "Y": 2
- "brother": 1
- "christie": 3
- "female": 2
- "john": 2
- "male": 3
- "parents": 4
- "peter": 3
- "vick": 2
- "Python":
- "#": 171
- "########": 2
- "############################################": 2
- "##############################################": 2
- "%": 39
- "(": 418
- "(*": 6
- ")": 418
- "*": 3
- "*)": 6
- "**kwargs": 8
- "*args": 3
- "*lookup_kwargs": 2
- "*not*": 2
- "+": 5
- "-": 32
- ".": 11
- "...": 1
- ".0.0.1": 1
- ".4": 1
- ".6": 1
- ".__init__": 1
- ".__new__": 1
- "._update": 1
- ".append": 2
- ".count": 1
- ".encode": 1
- ".exists": 1
- ".filter": 3
- ".get": 1
- ".globals": 1
- ".start": 4
- ".update": 1
- ".values": 1
- ".verbose_name": 3
- "/": 1
- "//": 1
- "/usr/bin/env": 2
- ";": 1
- "A": 7
- "Also": 1
- "Alternative": 1
- "Armin": 1
- "AttributeError": 1
- "AutoField": 2
- "BSD": 1
- "Beyond": 1
- "Calls": 1
- "Cleans": 1
- "Collector": 2
- "Content": 1
- "Cookie": 3
- "CounterAPI": 1
- "CounterAPI.as_view": 1
- "Creates": 1
- "DEFAULT_DB_ALIAS": 2
- "DatabaseError": 3
- "DeferredAttribute": 3
- "Django.": 1
- "Empty": 1
- "Exception": 2
- "False": 20
- "FieldDoesNotExist": 1
- "FieldError": 4
- "Fields": 1
- "Finishes": 1
- "For": 2
- "Forwarded": 2
- "GET": 1
- "HTTP": 12
- "HTTP/1.0": 1
- "HTTP/1.1": 6
- "HTTPConnection": 2
- "HTTPRequest": 3
- "HTTPRequest.finish": 1
- "HTTPRequest.write": 1
- "HTTPServer": 13
- "Handles": 1
- "Host": 1
- "However": 1
- "IOLoop": 2
- "IOLoop.instance": 3
- "IP": 1
- "If": 5
- "ImportError": 1
- "In": 1
- "IndexError": 1
- "Invalid": 1
- "Ip": 2
- "It": 1
- "KeyError": 3
- "LICENSE": 1
- "Length": 1
- "Like": 1
- "ManyToOneRel": 3
- "Metaclass": 1
- "MethodView": 2
- "MethodViewType": 2
- "Model": 3
- "ModelBase": 4
- "ModelState": 2
- "Models": 1
- "MultipleObjectsReturned": 2
- "MyView": 1
- "MyView.as_view": 1
- "NON_FIELD_ERRORS": 3
- "None": 54
- "Normally": 1
- "Note": 1
- "ObjectDoesNotExist": 2
- "OneToOneField": 3
- "OpenSSL.": 1
- "Options": 2
- "PATCH": 1
- "POST": 2
- "PUT": 1
- "Proto": 1
- "Provides": 1
- "Python": 3
- "Q": 1
- "Real": 2
- "Returns": 1
- "Ronacher.": 1
- "SSL": 2
- "Scheme": 2
- "SecretView": 1
- "TCPServer": 2
- "TCPServer.__init__": 1
- "The": 3
- "These": 1
- "This": 2
- "To": 1
- "Tornado": 1
- "True": 15
- "TypeError": 4
- "Typical": 1
- "URI": 1
- "URL": 1
- "UnicodeDecodeError": 1
- "UnicodeEncodeError": 1
- "Used": 3
- "ValidationError": 9
- "ValueError": 3
- "View": 4
- "We": 3
- "When": 2
- "Writes": 1
- "X": 6
- "_": 5
- "_BadRequestException": 5
- "__deepcopy__": 1
- "__eq__": 1
- "__future__": 2
- "__hash__": 1
- "__init__": 4
- "__metaclass__": 2
- "__ne__": 1
- "__new__": 2
- "__reduce__": 2
- "__repr__": 1
- "__str__": 1
- "_cookies": 1
- "_deferred": 1
- "_finish_request": 1
- "_get_FIELD_display": 1
- "_get_next_or_previous_by_FIELD": 1
- "_get_pk_val": 2
- "_on_headers": 1
- "_on_request_body": 1
- "_on_write_complete": 1
- "_order": 4
- "_order__": 1
- "_perform_date_checks": 1
- "_perform_unique_checks": 1
- "_prepare": 1
- "_set_pk_val": 2
- "_valid_ip": 1
- "a": 18
- "about": 1
- "absolute_import": 1
- "abstract": 3
- "add_lazy_relation": 2
- "add_sockets": 2
- "add_to_class": 1
- "address": 4
- "advanced": 1
- "after": 1
- "alive": 2
- "all": 4
- "also": 4
- "always": 1
- "an": 4
- "and": 42
- "another": 1
- "any": 2
- "app": 3
- "app.add_url_rule": 2
- "application/x": 1
- "applications": 1
- "applicaton": 1
- "applied": 1
- "are": 3
- "args": 7
- "args_len": 2
- "argument": 3
- "argument.": 1
- "arguments": 2
- "as": 6
- "as_view": 2
- "assert": 4
- "at": 1
- "attr": 3
- "attr_meta": 5
- "attr_meta.abstract": 1
- "attr_name": 3
- "attribute": 1
- "attributes": 1
- "attrs": 5
- "attrs.items": 1
- "attrs.pop": 2
- "auto_created": 1
- "automatically": 2
- "avoid": 1
- "b": 9
- "back": 1
- "balancer.": 1
- "base": 13
- "base.__name__": 2
- "base._meta.abstract": 2
- "base._meta.abstract_managers": 1
- "base._meta.concrete_model": 2
- "base._meta.local_fields": 1
- "base._meta.local_many_to_many": 1
- "base._meta.parents": 1
- "base._meta.virtual_fields": 1
- "base_managers": 2
- "base_managers.sort": 1
- "base_meta": 2
- "base_meta.abstract": 1
- "base_meta.get_latest_by": 1
- "base_meta.ordering": 1
- "based": 4
- "bases": 6
- "basic": 1
- "be": 9
- "because": 1
- "been": 1
- "beginning": 1
- "behind": 1
- "blocking": 2
- "bodies": 1
- "body": 2
- "bool": 2
- "boundary": 1
- "break": 1
- "but": 4
- "by": 5
- "bytes_type": 1
- "c": 1
- "cacert.crt": 1
- "callback": 7
- "called": 2
- "can": 9
- "canonical": 1
- "capfirst": 6
- "case": 1
- "cases": 1
- "check": 4
- "check.": 1
- "chunk": 3
- "chunked": 2
- "class": 23
- "classes": 2
- "clean": 1
- "clean_fields": 2
- "client": 2
- "clients.": 1
- "close": 1
- "closed": 1
- "closed.": 1
- "cls": 29
- "cls.__doc__": 3
- "cls.__module__": 1
- "cls.__new__": 1
- "cls._base_manager": 1
- "cls._get_next_or_previous_in_order": 2
- "cls._meta": 1
- "cls.add_to_class": 1
- "cls.get_absolute_url": 3
- "cls.get_next_in_order": 1
- "cls.get_previous_in_order": 1
- "cls.methods": 1
- "collector": 1
- "collector.collect": 1
- "collector.delete": 1
- "complicated": 1
- "conection": 1
- "connection": 6
- "connection_header": 5
- "connection_header.lower": 1
- "connections.": 1
- "constructor": 1
- "constructor.": 1
- "containing": 1
- "content_length": 6
- "content_type": 1
- "continue": 10
- "copy": 1
- "copy.deepcopy": 2
- "copy_managers": 1
- "copyright": 1
- "correctly": 1
- "create": 2
- "created": 3
- "created.": 1
- "curry": 6
- "d": 4
- "data": 10
- "data.decode": 1
- "data.find": 1
- "data_dir": 2
- "date": 2
- "date_checks": 4
- "date_checks.append": 3
- "date_error_message": 1
- "db": 2
- "declaration": 1
- "decorate": 4
- "decorators": 5
- "def": 48
- "default": 3
- "deferred": 2
- "deferred_class_factory": 2
- "defers": 2
- "defers.append": 1
- "defined": 2
- "defines": 1
- "delete": 1
- "delete.alters_data": 1
- "details.": 1
- "dict": 3
- "dictionary": 1
- "did": 1
- "direct": 1
- "directly.": 1
- "disconnect": 5
- "dispatch_request": 5
- "dispatches": 2
- "division": 1
- "django.conf": 1
- "django.core": 1
- "django.core.exceptions": 1
- "django.db": 1
- "django.db.models": 1
- "django.db.models.deletion": 1
- "django.db.models.fields": 1
- "django.db.models.fields.related": 1
- "django.db.models.loading": 1
- "django.db.models.manager": 1
- "django.db.models.options": 1
- "django.db.models.query": 1
- "django.db.models.query_utils": 2
- "django.utils.encoding": 1
- "django.utils.functional": 1
- "django.utils.text": 1
- "django.utils.translation": 1
- "do": 5
- "does": 1
- "done": 1
- "dynamically": 1
- "e": 7
- "e.args": 1
- "e.messages": 1
- "e.update_error_dict": 3
- "echoes": 1
- "either": 1
- "elif": 2
- "else": 24
- "encoding": 2
- "ensure": 1
- "enumerate": 1
- "eol": 3
- "errors": 19
- "errors.keys": 1
- "errors.setdefault": 2
- "even": 1
- "every": 1
- "example": 1
- "except": 14
- "exclude": 20
- "exclude.append": 1
- "excluded": 1
- "execute": 1
- "executing": 1
- "explicitly": 2
- "exposed": 1
- "f": 18
- "f.attname": 4
- "f.blank": 1
- "f.clean": 1
- "f.name": 5
- "f.pre_save": 1
- "f.primary_key": 2
- "f.rel.to": 1
- "f.unique": 1
- "f.unique_for_date": 3
- "f.unique_for_month": 3
- "f.unique_for_year": 3
- "factory": 5
- "field": 32
- "field.attname": 15
- "field.error_messages": 1
- "field.flatchoices": 1
- "field.get_default": 3
- "field.name": 10
- "field.null": 1
- "field.rel": 2
- "field.rel.to": 2
- "field.verbose_name": 1
- "field_label": 2
- "field_labels": 4
- "field_name": 6
- "field_names": 3
- "fields": 9
- "fields.": 2
- "fields_iter": 4
- "fields_with_class": 2
- "fields_with_class.append": 1
- "finish": 1
- "finishes": 1
- "flask.Flask.add_url_rule": 1
- "flask.views": 1
- "flexibility": 1
- "follows": 1
- "foo.crt": 1
- "foo.key": 1
- "for": 52
- "force_insert": 2
- "force_unicode": 3
- "force_update": 5
- "foreign": 1
- "fork": 1
- "form": 1
- "forward": 1
- "from": 30
- "frozenset": 1
- "full_clean": 1
- "func": 1
- "function": 3
- "functions.": 1
- "functools": 1
- "future_builtins": 1
- "generated": 1
- "get": 2
- "get_absolute_url": 2
- "get_model": 3
- "get_text_list": 2
- "getattr": 23
- "give": 1
- "gt": 1
- "handle.": 1
- "handle_request": 2
- "handle_stream": 1
- "handler": 1
- "handler.": 1
- "happens.": 1
- "hard": 1
- "has": 2
- "hasattr": 9
- "hash": 1
- "have": 3
- "header": 1
- "headers": 8
- "headers.get": 2
- "host": 1
- "however": 1
- "http": 4
- "http_method_funcs": 2
- "http_server": 1
- "http_server.listen": 1
- "https": 3
- "httpserver": 1
- "httpserver.HTTPServer": 1
- "httputil": 1
- "httputil.HTTPHeaders.parse": 1
- "i": 2
- "id": 1
- "id_list": 2
- "if": 119
- "implement": 4
- "implementation": 2
- "implemented": 1
- "import": 38
- "in": 66
- "including": 1
- "indirectly": 1
- "initialization": 2
- "inspired": 1
- "instance": 6
- "instance.": 1
- "instantiating": 1
- "instead": 1
- "int": 1
- "interaction": 1
- "interface": 2
- "involved": 1
- "io_loop": 3
- "ioloop": 1
- "ioloop.IOLoop.instance": 1
- "iostream": 1
- "ip": 2
- "is": 43
- "is_next": 5
- "is_proxy": 5
- "is_related_object": 3
- "isinstance": 9
- "it": 3
- "iter": 1
- "j": 2
- "just": 2
- "keep": 2
- "key": 6
- "key.upper": 1
- "kwargs": 9
- "kwargs.keys": 1
- "kwargs.pop": 6
- "lambda": 1
- "len": 7
- "level": 1
- "license": 1
- "list": 1
- "listening": 1
- "little": 1
- "load": 1
- "logging": 1
- "logging.info": 1
- "logic": 1
- "lookup_kwargs": 8
- "lookup_kwargs.keys": 1
- "lookup_type": 5
- "lookup_value": 3
- "lt": 1
- "m": 3
- "make": 1
- "make_foreign_order_accessors": 2
- "malformed": 1
- "manager": 3
- "manager._copy_to_model": 1
- "manager._insert": 1
- "manager.using": 3
- "many": 1
- "map": 1
- "matter": 1
- "means": 1
- "message": 3
- "message_dict": 1
- "meta": 10
- "meta.auto_created": 1
- "meta.has_auto_field": 1
- "meta.local_fields": 2
- "meta.order_with_respect_to": 2
- "meta.parents.items": 1
- "meta.pk.attname": 2
- "meta.proxy": 4
- "meth": 10
- "method": 7
- "method.": 1
- "method_get_order": 2
- "method_set_order": 2
- "methods": 11
- "methods.": 1
- "methods.add": 1
- "mgr_name": 3
- "missing": 1
- "model": 10
- "model_class": 11
- "model_class._default_manager.filter": 2
- "model_class._meta": 2
- "model_class_pk": 3
- "model_module": 1
- "model_module.__name__.split": 1
- "model_name": 3
- "model_unpickle": 2
- "model_unpickle.__safe_for_unpickle__": 1
- "models.": 1
- "module": 9
- "more": 3
- "moves": 1
- "multi": 2
- "multipart/form": 2
- "must": 2
- "name": 30
- "native_str": 2
- "necessarily": 1
- "need": 4
- "new_class": 9
- "new_class.Meta": 1
- "new_class.__module__": 1
- "new_class._base_manager": 2
- "new_class._base_manager._copy_to_model": 1
- "new_class._default_manager": 2
- "new_class._default_manager._copy_to_model": 1
- "new_class._meta.app_label": 3
- "new_class._meta.concrete_model": 2
- "new_class._meta.get_latest_by": 1
- "new_class._meta.local_fields": 3
- "new_class._meta.local_many_to_many": 2
- "new_class._meta.ordering": 1
- "new_class._meta.parents": 1
- "new_class._meta.parents.update": 1
- "new_class._meta.proxy": 1
- "new_class._meta.setup_proxy": 1
- "new_class._meta.virtual_fields": 1
- "new_class._prepare": 1
- "new_class.add_to_class": 7
- "new_class.copy_managers": 2
- "new_fields": 2
- "new_manager": 2
- "no": 1
- "no_keep_alive": 5
- "non": 2
- "non_pks": 5
- "not": 59
- "o2o_map": 3
- "obj": 2
- "obj_name": 2
- "object": 5
- "object.": 1
- "occur.": 1
- "occured.": 1
- "of": 11
- "often": 1
- "on": 5
- "once": 1
- "one": 2
- "ones": 1
- "only": 2
- "only_installed": 2
- "op": 1
- "options": 1
- "opts": 5
- "opts._prepare": 1
- "opts.get_field": 4
- "opts.order_with_respect_to": 2
- "opts.order_with_respect_to.rel.to": 1
- "opts.verbose_name": 1
- "or": 19
- "order": 1
- "order_name": 4
- "order_value": 2
- "ordered_obj": 2
- "ordered_obj._meta.order_with_respect_to.name": 2
- "ordered_obj._meta.order_with_respect_to.rel.field_name": 2
- "ordered_obj._meta.pk.name": 1
- "ordered_obj.objects.filter": 2
- "org": 3
- "origin": 4
- "original_base": 1
- "original_base._meta.concrete_managers": 1
- "os.path.join": 2
- "other": 5
- "other._get_pk_val": 1
- "output": 1
- "override": 2
- "parent": 4
- "parent._meta": 1
- "parent._meta.abstract": 1
- "parent._meta.fields": 1
- "parent._meta.pk.attname": 2
- "parent_class": 4
- "parent_class._meta.local_fields": 1
- "parent_class._meta.unique_together": 2
- "parent_fields": 3
- "parent_link": 1
- "parents": 8
- "parse": 1
- "parse_qs_bytes": 1
- "parsing": 1
- "particular": 1
- "parts": 1
- "pass": 3
- "passed": 3
- "path.": 1
- "patterns": 1
- "perform": 1
- "pickled": 1
- "pickling": 1
- "pk": 5
- "pk__": 1
- "pk_name": 3
- "pk_set": 5
- "pk_val": 4
- "place": 1
- "pluggable": 2
- "populated.": 1
- "post": 1
- "print": 1
- "problem": 1
- "process": 5
- "prop": 4
- "property": 2
- "protocol": 1
- "provide": 2
- "provided": 1
- "provides": 1
- "proxy": 1
- "python": 1
- "python2.4": 1
- "qs": 4
- "qs.exclude": 2
- "qs.exists": 2
- "r": 4
- "raise": 18
- "raises": 2
- "rather": 1
- "raw": 7
- "raw_value": 3
- "re": 1
- "record_exists": 5
- "register_models": 2
- "regular": 1
- "rel_obj": 3
- "rel_val": 4
- "remote": 1
- "remote_ip": 5
- "request": 10
- "request.": 1
- "request.finish": 1
- "request.method": 1
- "request.method.lower": 1
- "request.write": 1
- "request_callback": 4
- "requested": 1
- "requests": 4
- "requests.": 3
- "required": 1
- "res": 2
- "response": 2
- "result": 2
- "return": 40
- "return_id": 1
- "returned": 1
- "returns": 1
- "reverse": 1
- "router": 1
- "router.db_for_write": 1
- "routing": 1
- "rows": 3
- "run": 1
- "running": 1
- "rv": 2
- "rv.methods": 2
- "s": 11
- "s__": 1
- "save_base.alters_data": 1
- "saving": 1
- "scheme": 1
- "see": 1
- "seed_cache": 2
- "self": 76
- "self.__class__": 8
- "self.__class__.__dict__.get": 2
- "self.__class__.__name__": 1
- "self.__dict__": 1
- "self.__eq__": 1
- "self._deferred": 1
- "self._finish_request": 2
- "self._get_pk_val": 6
- "self._header_callback": 3
- "self._meta": 3
- "self._meta.fields": 4
- "self._meta.get_field": 1
- "self._meta.local_fields": 1
- "self._meta.parents.keys": 2
- "self._meta.pk.attname": 1
- "self._meta.proxy_for_model": 1
- "self._meta.unique_together": 1
- "self._on_headers": 1
- "self._on_request_body": 1
- "self._on_write_complete": 1
- "self._order": 1
- "self._request": 6
- "self._request.body": 1
- "self._request.headers": 1
- "self._request.headers.get": 2
- "self._request.method": 1
- "self._request.supports_http_1_1": 1
- "self._request_finished": 4
- "self._state": 1
- "self._state.adding": 4
- "self._state.db": 1
- "self._write_callback": 5
- "self.adding": 1
- "self.address": 3
- "self.clean": 1
- "self.clean_fields": 1
- "self.date_error_message": 1
- "self.db": 1
- "self.headers": 1
- "self.no_keep_alive": 4
- "self.pk": 3
- "self.request_callback": 4
- "self.save_base": 1
- "self.stream": 1
- "self.stream.close": 2
- "self.stream.closed": 1
- "self.stream.max_buffer_size": 1
- "self.stream.read_bytes": 1
- "self.stream.read_until": 2
- "self.stream.socket": 1
- "self.stream.write": 2
- "self.stream.writing": 2
- "self.unique_error_message": 1
- "self.validate_unique": 1
- "self.xheaders": 3
- "semantics": 1
- "send": 1
- "sender": 4
- "serializable_value": 1
- "serialize": 1
- "serve": 2
- "server": 9
- "server.": 2
- "server.add_sockets": 1
- "server.bind": 1
- "server.listen": 1
- "server.start": 1
- "servers": 1
- "session": 1
- "session.get": 2
- "set": 3
- "setattr": 13
- "settings": 1
- "settings.ABSOLUTE_URL_OVERRIDES.get": 1
- "should": 1
- "signals": 1
- "signals.class_prepared.send": 1
- "signals.post_init.send": 1
- "signals.post_save.send": 1
- "signals.pre_init.send": 1
- "simple": 3
- "simple_class_factory": 2
- "since": 2
- "single": 4
- "singleton": 1
- "smart": 1
- "smart_str": 2
- "so": 1
- "socket": 1
- "socket.AF_INET": 2
- "socket.AF_INET6": 1
- "socket.AF_UNSPEC": 1
- "socket.AI_NUMERICHOST": 1
- "socket.EAI_NONAME": 1
- "socket.SOCK_STREAM": 1
- "socket.gaierror": 1
- "socket.getaddrinfo": 1
- "sockets": 3
- "some": 2
- "sorted": 1
- "spk": 1
- "ssl": 2
- "ssl.wrap_socket": 1
- "ssl_options": 5
- "stack_context": 1
- "stack_context.wrap": 2
- "start": 3
- "start_line": 1
- "start_line.split": 1
- "state": 1
- "stored": 1
- "storing": 1
- "str": 1
- "stream": 4
- "stream.": 1
- "strings_only": 1
- "subclass": 1
- "subclass_exception": 3
- "subclasses": 1
- "super": 2
- "super_new": 3
- "superuser_required": 1
- "support": 1
- "support.": 1
- "sys": 1
- "sys.modules": 1
- "system.": 1
- "t": 3
- "takes": 1
- "than": 2
- "that": 10
- "that.": 1
- "the": 61
- "there": 1
- "they": 1
- "this": 9
- "those": 1
- "threaded": 2
- "three": 1
- "time": 1
- "to": 31
- "tornado": 3
- "tornado.escape": 1
- "tornado.netutil": 1
- "tornado.netutil.TCPServer": 1
- "tornado.netutil.TCPServer.add_sockets": 1
- "tornado.netutil.TCPServer.bind": 1
- "tornado.netutil.TCPServer.listen": 1
- "tornado.netutil.TCPServer.start": 1
- "tornado.netutil.bind_sockets": 2
- "tornado.process.fork_processes": 2
- "tornado.util": 1
- "tornado.web.Application.listen": 2
- "tornado.web.RequestHandler.request": 1
- "traffic": 2
- "transaction": 1
- "transaction.commit_unless_managed": 2
- "try": 14
- "tuple": 3
- "type": 3
- "type.__new__": 1
- "u": 2
- "ugettext_lazy": 1
- "unable": 1
- "unicode": 7
- "unicode_literals": 1
- "unique": 1
- "unique_check": 10
- "unique_checks": 4
- "unique_checks.append": 2
- "unique_error_message": 1
- "unique_for": 5
- "unique_together": 2
- "unique_togethers": 2
- "unique_togethers.append": 1
- "unpickle": 2
- "until": 1
- "update_fields": 9
- "update_pk": 3
- "update_wrapper": 2
- "uri": 4
- "urlencoded": 1
- "use": 3
- "used": 4
- "useful": 1
- "using": 24
- "using.": 1
- "utf8": 1
- "val": 14
- "valid": 1
- "validate": 1
- "validate_unique": 1
- "validation": 1
- "validators": 1
- "validators.EMPTY_VALUES": 1
- "value": 13
- "value.contribute_to_class": 1
- "values": 3
- "version": 5
- "version.startswith": 1
- "very": 1
- "via": 3
- "view": 10
- "view.__doc__": 1
- "view.__module__": 1
- "view.__name__": 1
- "view.methods": 1
- "view.view_class": 1
- "view_func": 2
- "views": 2
- "want": 2
- "way": 4
- "we": 1
- "what": 1
- "when": 4
- "where": 1
- "which": 5
- "will": 5
- "with": 7
- "with_statement": 1
- "without": 1
- "would": 1
- "wrapping": 1
- "write": 1
- "writes": 1
- "www": 1
- "x": 4
- "x.DoesNotExist": 1
- "x.MultipleObjectsReturned": 1
- "x._meta.abstract": 2
- "xheaders": 5
- "you": 11
- "your": 2
- "zip": 3
- "{": 14
- "}": 17
- "R":
- "(": 3
- ")": 3
- "-": 1
- "<": 1
- "function": 1
- "hello": 2
- "print": 1
- "{": 1
- "}": 1
- "Racket":
- "#": 3
- "#lang": 1
- "(": 7
- ")": 7
- "*": 2
- "-": 95
- "/bin/sh": 1
- ";": 1
- "@": 3
- "@author": 1
- "@filepath": 1
- "@include": 8
- "@index": 1
- "@table": 1
- "@title": 1
- "Documentation": 1
- "HTML": 1
- "Latex": 1
- "More": 1
- "PDF": 1
- "Racket": 1
- "Scribble": 3
- "Scribble.": 1
- "The": 1
- "This": 1
- "Tool": 1
- "You": 1
- "a": 1
- "any": 1
- "are": 1
- "at": 1
- "be": 2
- "books": 1
- "can": 1
- "collection": 1
- "content": 2
- "contents": 1
- "creating": 1
- "document": 1
- "documentation": 1
- "documents": 1
- "etc.": 1
- "exec": 1
- "file.": 1
- "for": 2
- "form": 1
- "form.": 1
- "generally": 1
- "generated": 1
- "helps": 1
- "in": 2
- "is": 3
- "its": 1
- "itself": 1
- "let": 1
- "library": 1
- "link": 1
- "of": 3
- "or": 2
- "other": 1
- "papers": 1
- "programmatically.": 1
- "programs": 1
- "prose": 2
- "racket": 1
- "racket/base": 1
- "racket/file": 1
- "racket/list": 1
- "racket/path": 1
- "racket/string": 1
- "require": 2
- "rich": 1
- "scheme": 1
- "scribble.scrbl": 1
- "scribble/bnf": 1
- "scribble/manual": 1
- "section": 9
- "see": 1
- "source": 1
- "starting": 1
- "syntax": 1
- "text": 1
- "textual": 1
- "that": 1
- "the": 2
- "to": 2
- "tools": 1
- "typeset": 1
- "um": 1
- "url": 3
- "using": 1
- "via": 1
- "whether": 1
- "with": 1
- "write": 1
- "written": 1
- "you": 1
- "{": 2
- "|": 2
- "}": 2
- "Rebol":
- "REBOL": 1
- "func": 1
- "hello": 2
- "print": 1
- "Ruby":
- "#": 354
- "#remove": 1
- "%": 9
- "&": 24
- "&&": 8
- "(": 201
- "(*": 11
- ")": 208
- "*": 2
- "*)": 11
- "*/": 1
- "*args": 14
- "+": 46
- "-": 31
- ".": 3
- "..": 1
- ".basename": 1
- ".capitalize": 1
- ".collect": 2
- ".deep_merge": 1
- ".destroy": 1
- ".downcase": 2
- ".each": 5
- ".first": 1
- ".flatten.each": 1
- ".flatten.uniq": 1
- ".freeze": 1
- ".gsub": 3
- ".join": 1
- ".map": 6
- ".pop": 1
- ".rb": 1
- ".select": 1
- ".size": 1
- ".slice": 1
- ".sort": 2
- ".sort_by": 1
- ".strip": 1
- ".to_s": 3
- ".to_s.split": 1
- ".to_sym": 1
- ".unshift": 1
- ".upcase": 1
- "/": 28
- "//": 3
- "/@name": 1
- "/Library/Taps/": 1
- "/_id": 1
- "/i": 1
- "/redis": 1
- "/usr/bin/env": 5
- ";": 31
- "<": 1
- "<<": 13
- "<=>": 2
- "@#": 2
- "@after_fork": 2
- "@before_first_fork": 2
- "@before_fork": 2
- "@bottle_sha1": 2
- "@bottle_url": 2
- "@bottle_version": 1
- "@buildpath": 2
- "@cc_failures": 2
- "@coder": 1
- "@dependencies": 1
- "@downloader": 1
- "@downloader.cached_location": 1
- "@env": 2
- "@head": 4
- "@keg_only_reason": 1
- "@mirrors": 3
- "@mirrors.uniq": 1
- "@name": 3
- "@path": 1
- "@queue": 1
- "@queues": 2
- "@queues.delete": 1
- "@redis": 6
- "@sha1": 6
- "@skip_clean_all": 2
- "@skip_clean_paths": 3
- "@skip_clean_paths.include": 1
- "@spec_to_use": 4
- "@spec_to_use.detect_version": 1
- "@spec_to_use.download_strategy": 1
- "@spec_to_use.specs": 1
- "@spec_to_use.url": 1
- "@specs": 3
- "@standard": 3
- "@standard.nil": 1
- "@unstable": 2
- "@url": 8
- "@url.nil": 1
- "@version": 10
- "A": 6
- "ARGV.build_devel": 2
- "ARGV.build_head": 2
- "ARGV.debug": 1
- "ARGV.formulae.include": 1
- "ARGV.named.empty": 1
- "ARGV.verbose": 2
- "ActiveRecord": 1
- "ActiveSupport": 1
- "Admin": 1
- "Archive": 1
- "Ark": 1
- "Array": 2
- "Bar": 1
- "Base": 1
- "Boondocks": 1
- "Busines": 1
- "C": 2
- "CHECKSUM_TYPES": 2
- "CHECKSUM_TYPES.detect": 1
- "CHECKSUM_TYPES.each": 1
- "CMakeCache.txt": 1
- "Class.new": 2
- "Compiler": 1
- "Compiler.new": 1
- "CompilerFailure.new": 2
- "CompilerFailures.new": 1
- "CoreExtensions": 1
- "CurlDownloadStrategyError": 1
- "DCMAKE_BUILD_TYPE": 1
- "DCMAKE_FIND_FRAMEWORK": 1
- "DCMAKE_INSTALL_PREFIX": 1
- "DEFAULTS": 2
- "DEFAULTS.deep_merge": 1
- "Delegator.target.helpers": 1
- "Delegator.target.register": 1
- "Delegator.target.use": 1
- "DependencyCollector.new": 1
- "Digest.const_get": 1
- "Dir": 4
- "Dir.pwd": 3
- "ENV": 3
- "ENV.remove_cc_etc": 1
- "EOF": 2
- "EggAndHam": 1
- "Exception": 1
- "Expected": 1
- "File.basename": 2
- "File.dirname": 4
- "File.exist": 3
- "File.expand_path": 1
- "File.join": 6
- "FileUtils": 1
- "FileUtils.rm": 1
- "Foo": 2
- "Formula": 2
- "Formula.canonical_name": 1
- "Formula.expand_deps": 1
- "Formula.factory": 2
- "Formula.path": 1
- "FormulaUnavailableError.new": 1
- "From": 1
- "Got": 1
- "Grit": 1
- "HOMEBREW_CACHE.mkpath": 1
- "HOMEBREW_CACHE_FORMULA": 2
- "HOMEBREW_CACHE_FORMULA.mkpath": 1
- "HOMEBREW_CELLAR": 2
- "HOMEBREW_LOGS.install": 1
- "HOMEBREW_PREFIX": 2
- "HOMEBREW_REPOSITORY": 4
- "HOMEBREW_REPOSITORY/": 2
- "HTML": 1
- "HTTP": 2
- "Hash": 2
- "Hash.new": 1
- "Helpers": 1
- "IO.pipe": 1
- "Ilib": 1
- "Inflections": 4
- "Inflector": 1
- "Interrupt": 2
- "Jekyll": 3
- "Job.create": 1
- "Job.destroy": 1
- "Job.reserve": 1
- "KegOnlyReason.new": 1
- "LAST": 1
- "Last": 1
- "LoadError": 3
- "Lost": 1
- "MacOS.cat": 1
- "MacOS.lion": 1
- "Man": 2
- "Men": 1
- "Message": 2
- "Module": 2
- "MultiJsonCoder.new": 1
- "NameError": 1
- "Namespace": 1
- "Namespace.new": 2
- "Net": 4
- "NoClassError.new": 1
- "NoQueueError.new": 1
- "None": 1
- "NotFound": 1
- "NotImplementedError": 1
- "Object.const_get": 1
- "Of": 1
- "Parser": 1
- "Parser.new": 1
- "Past": 1
- "Patches.new": 1
- "Pathname": 2
- "Pathname.new": 3
- "Pathname.pwd": 1
- "Plugin.after_dequeue_hooks": 1
- "Plugin.after_enqueue_hooks": 1
- "Plugin.before_dequeue_hooks": 1
- "Plugin.before_enqueue_hooks": 1
- "Post": 2
- "Proc.new": 8
- "Q": 1
- "Queue.new": 1
- "RUBY_ENGINE": 2
- "Rack": 1
- "Raiders": 1
- "RawScaledScorer": 1
- "Redis": 3
- "Redis.connect": 2
- "Redis.new": 1
- "Redis.respond_to": 1
- "Request": 2
- "Resque": 3
- "RuntimeError": 1
- "SecureRandom.hex": 1
- "Sinatra": 1
- "SoftwareSpecification.new": 3
- "Stand": 1
- "Stat": 2
- "String": 5
- "SystemCallError": 1
- "Test": 2
- "The": 4
- "TheManWithoutAPast": 1
- "ThreadError": 1
- "To": 1
- "TypeError": 1
- "URI": 3
- "URI.const_defined": 1
- "URI.escape": 1
- "URL.": 1
- "Unit": 2
- "UnknownModule": 2
- "VERSION": 1
- "W": 1
- "Without": 1
- "Wno": 1
- "Worker.all": 1
- "Worker.find": 1
- "Worker.working": 1
- "X": 1
- "YAML.load_file": 1
- "Z": 3
- "Z/": 1
- "Z0": 1
- "Z_": 1
- "Za": 1
- "_": 1
- "_.": 1
- "__FILE__": 3
- "_id": 1
- "a": 7
- "above.": 1
- "absolute_redirects": 1
- "acc": 1
- "accept": 1
- "accept_entry": 1
- "add_charset": 1
- "after_fork": 2
- "alias": 1
- "alias_method": 2
- "all": 1
- "an": 1
- "and": 8
- "app_file": 3
- "apply_inflections": 3
- "arg": 1
- "arg.to_s": 1
- "args": 3
- "args.collect": 1
- "args.dup": 1
- "args.empty": 1
- "args.length": 1
- "at": 1
- "attempt": 1
- "attr": 4
- "attr_accessor": 1
- "attr_reader": 5
- "attr_rw": 4
- "attr_writer": 4
- "attrs": 1
- "attrs.each": 1
- "b": 7
- "b.class": 1
- "b.name": 2
- "base": 4
- "base.class_eval": 1
- "before_first_fork": 2
- "before_fork": 2
- "before_hooks": 2
- "before_hooks.any": 2
- "begin": 8
- "bin": 1
- "bind": 1
- "blargle": 1
- "block": 25
- "block_given": 5
- "boondocks": 1
- "bottle": 1
- "bottle_base_url": 1
- "bottle_block": 1
- "bottle_block.data": 1
- "bottle_block.instance_eval": 1
- "bottle_filename": 1
- "bottle_sha1": 2
- "bottle_url": 2
- "bottle_version": 2
- "break": 2
- "brew": 2
- "buildpath": 1
- "business": 1
- "bzip2": 1
- "cached_download": 1
- "camel_cased_word": 1
- "camel_cased_word.to_s.dup": 1
- "camelcase": 1
- "camelize": 1
- "case": 4
- "caveats": 1
- "cc": 3
- "cc.build": 1
- "cc.is_a": 1
- "cc.name": 1
- "cc_failures": 1
- "char": 4
- "characters": 1
- "checksum_type": 2
- "class": 4
- "class_eval": 1
- "class_value": 3
- "cmd": 5
- "cmd.split": 1
- "coder": 3
- "compiler": 3
- "config": 3
- "config.is_a": 1
- "config.log": 1
- "config_file": 2
- "configure": 1
- "connect": 1
- "content_type": 3
- "count": 5
- "curl": 1
- "d": 5
- "data": 1
- "db": 3
- "decode": 2
- "def": 130
- "default": 2
- "default_encoding": 1
- "defined": 1
- "dep": 3
- "dep.to_s": 1
- "dependencies": 1
- "dependencies.add": 1
- "depends_on": 1
- "deps": 1
- "dequeue": 1
- "dev": 1
- "devel": 1
- "development": 4
- "do": 26
- "doc": 1
- "download": 1
- "download_strategy": 1
- "download_strategy.new": 2
- "downloader": 4
- "downloader.fetch": 1
- "downloader.stage": 1
- "dump_errors": 1
- "e": 6
- "e.backtrace": 1
- "e.inspect": 1
- "e.was_running_configure": 1
- "each": 1
- "echo": 1
- "egg_and_ham": 1
- "egg_and_hams": 2
- "else": 21
- "elsif": 7
- "empty_path_info": 1
- "enc": 5
- "encoded": 1
- "end": 204
- "enqueue": 1
- "enqueue_to": 2
- "entries": 1
- "entries.map": 1
- "environment": 2
- "eql": 1
- "err": 1
- "err.to_s": 1
- "error": 2
- "etc": 1
- "exec": 1
- "exit": 1
- "expand_deps": 1
- "explanation": 1
- "explanation.to_s.chomp": 1
- "explicitly_requested": 1
- "extend": 2
- "extensions": 4
- "external_deps": 1
- "f": 15
- "f.deps.map": 1
- "f_dep": 3
- "failed": 2
- "fails_with": 2
- "failure": 1
- "failure.build": 1
- "failure.build.zero": 1
- "failure.compiler": 1
- "false": 24
- "fancyCategory": 1
- "fancy_categories": 1
- "fetch": 1
- "fetched": 4
- "fetched.kind_of": 1
- "file": 1
- "filename": 2
- "first": 1
- "fn": 2
- "fn.incremental_hash": 1
- "force": 1
- "fork": 1
- "formula_with_that_name": 1
- "formula_with_that_name.file": 1
- "formula_with_that_name.readable": 1
- "from": 1
- "from_name": 2
- "from_path": 1
- "from_url": 1
- "ftp": 1
- "get": 1
- "glob": 2
- "gzip": 1
- "h": 2
- "hash": 3
- "hash.upcase": 1
- "hasher": 2
- "head": 2
- "head_prefix": 2
- "head_prefix.directory": 1
- "helpers": 1
- "homepage": 2
- "hook": 8
- "host": 3
- "http": 1
- "https": 1
- "humanize": 1
- "id": 1
- "if": 67
- "include": 3
- "incomplete": 1
- "inflections.acronym_regex": 2
- "inflections.acronyms": 2
- "inflections.humans.each": 1
- "inflections.plurals": 1
- "inflections.singulars": 1
- "inflections.uncountables.include": 1
- "info": 2
- "initialize": 1
- "inline": 3
- "inspect": 1
- "install": 1
- "install_type": 4
- "installed": 1
- "installed_prefix": 1
- "installed_prefix.children.length": 1
- "instance_eval": 2
- "instance_variable_defined": 2
- "instance_variable_get": 2
- "instance_variable_set": 1
- "interactive_shell": 1
- "invalid": 1
- "is": 1
- "it": 1
- "item": 4
- "javascript": 1
- "json": 1
- "k": 2
- "keg_only": 2
- "keg_only_reason": 1
- "key": 6
- "key.sub": 1
- "keys": 6
- "klass": 16
- "klass.instance_variable_get": 1
- "klass.new": 2
- "klass.queue": 1
- "klass.respond_to": 1
- "klass.send": 4
- "klass.to_s.empty": 1
- "klass_name": 2
- "last": 2
- "lib": 1
- "libexec": 1
- "linked_keg": 1
- "list_range": 1
- "load": 3
- "lock": 1
- "logging": 1
- "lower_case_and_underscored_word": 1
- "lower_case_and_underscored_word.to_s.dup": 1
- "m": 2
- "macruby": 1
- "man": 10
- "man1": 1
- "man2": 1
- "man3": 1
- "man4": 1
- "man5": 1
- "man6": 1
- "man7": 1
- "man8": 1
- "map": 1
- "match": 6
- "match.downcase": 1
- "md5": 2
- "men": 1
- "message": 2
- "message_id": 1
- "messageid": 1
- "method": 2
- "method_override": 3
- "methodoverride": 2
- "mirror": 1
- "mirror_list": 1
- "mirror_list.empty": 1
- "mirror_list.shift.values_at": 1
- "mirrors": 4
- "mismatch": 1
- "mktemp": 1
- "module": 7
- "n": 3
- "n.id": 1
- "name": 49
- "name.basename": 1
- "name.capitalize.gsub": 1
- "name.hash": 1
- "name.include": 2
- "name.kind_of": 2
- "name.to_s": 3
- "names": 1
- "names.each": 1
- "namespace": 3
- "nd": 5
- "next": 1
- "nil": 19
- "nodes": 1
- "not": 4
- "number": 2
- "ohai": 4
- "onoe": 3
- "opoo": 1
- "options": 2
- "or": 6
- "ordinal": 1
- "out": 1
- "override": 3
- "p": 2
- "p.compressed_filename": 2
- "p.compression": 1
- "p.patch_args": 1
- "p.to_s": 2
- "part": 1
- "patch": 2
- "patch_list": 1
- "patch_list.download": 1
- "patch_list.each": 1
- "patch_list.empty": 1
- "patch_list.external_patches": 1
- "patches": 2
- "path": 11
- "path.keys": 1
- "path.names": 1
- "path.nil": 1
- "path.realpath.to_s": 1
- "path.relative_path_from": 1
- "path.respond_to": 5
- "path.stem": 1
- "path.to_s": 1
- "paths": 3
- "pattern": 1
- "peek": 1
- "pending": 1
- "pid": 1
- "plist_name": 2
- "plist_path": 1
- "plugin": 2
- "pluralize": 1
- "png": 1
- "pointed": 1
- "pop": 1
- "port": 4
- "possible_alias": 1
- "possible_alias.file": 1
- "possible_alias.realpath.basename": 1
- "possible_cached_formula": 1
- "possible_cached_formula.file": 1
- "possible_cached_formula.to_s": 1
- "post": 2
- "post_id": 1
- "posts": 3
- "preferred_type": 1
- "prefix": 15
- "prefix.parent": 1
- "prefixed_redirects": 1
- "pretty_args": 1
- "pretty_args.delete": 1
- "private": 1
- "processed": 2
- "protected": 1
- "protection": 1
- "public": 1
- "public_folder": 3
- "puni": 2
- "puni_puni": 1
- "push": 1
- "puts": 19
- "python": 1
- "queue": 24
- "queue.to_s": 1
- "queue_from_class": 4
- "queues": 3
- "queues.inject": 1
- "queues.size": 1
- "r": 3
- "rack": 1
- "raiders_of_the_lost_ark": 1
- "raise": 14
- "raise_errors": 1
- "rake": 1
- "raw_scaled_scorers": 1
- "rd": 4
- "rd.close": 1
- "reason": 2
- "recursive_deps": 1
- "redis": 7
- "redis.client.id": 1
- "redis.keys": 1
- "redis.lindex": 1
- "redis.lrange": 1
- "redis.nodes.map": 1
- "redis.respond_to": 2
- "redis.server": 1
- "redis.smembers": 1
- "redis_id": 2
- "relative_pathname": 1
- "relative_pathname.stem.to_s": 1
- "reload_templates": 1
- "remove": 1
- "remove_queue": 1
- "remove_worker": 1
- "removed_ENV_variables": 1
- "replacement": 4
- "request.path_info": 1
- "require": 58
- "require_all": 4
- "rescue": 11
- "reserve": 1
- "reset": 1
- "response.status": 1
- "resque": 2
- "result": 8
- "result.downcase": 1
- "result.gsub": 1
- "result.sub": 2
- "retry": 2
- "return": 24
- "root": 5
- "ruby": 2
- "ruby_engine": 6
- "ruby_engine.nil": 1
- "rule": 4
- "rules": 1
- "rules.each": 1
- "run": 1
- "running": 1
- "rv": 3
- "s": 2
- "s/": 1
- "safe_system": 4
- "sbin": 1
- "self": 10
- "self.aliases": 1
- "self.all": 1
- "self.attr_rw": 1
- "self.canonical_name": 1
- "self.class.cc_failures.find": 1
- "self.class.cc_failures.nil": 1
- "self.class.dependencies.deps": 1
- "self.class.dependencies.external_deps": 1
- "self.class.equal": 1
- "self.class.keg_only_reason": 1
- "self.class.mirrors": 1
- "self.class.path": 1
- "self.class.send": 1
- "self.class.skip_clean_all": 1
- "self.class.skip_clean_paths.include": 1
- "self.class_s": 2
- "self.configuration": 1
- "self.data": 1
- "self.defer": 1
- "self.each": 1
- "self.expand_deps": 1
- "self.factory": 1
- "self.helpers": 1
- "self.map": 1
- "self.method_added": 1
- "self.names": 1
- "self.new": 1
- "self.path": 1
- "self.redis": 2
- "self.register": 1
- "self.sha1": 1
- "self.url": 1
- "self.use": 1
- "self.version": 1
- "send_file": 1
- "server": 9
- "server.split": 2
- "server.unshift": 6
- "servers": 1
- "session_secret": 2
- "sessions": 1
- "set": 30
- "set_instance_variable": 12
- "settings.add_charset": 1
- "sha1": 4
- "sha1.shift": 1
- "sha256": 1
- "share": 1
- "show_exceptions": 1
- "singularize": 1
- "size": 2
- "skip_clean": 2
- "skip_clean_all": 2
- "skip_clean_paths": 1
- "source": 2
- "specs": 14
- "st": 5
- "stable": 1
- "stage": 2
- "stand": 1
- "standard": 2
- "start": 6
- "static": 1
- "static_cache_control": 1
- "std_cmake_args": 1
- "stderr.puts": 2
- "stderr.reopen": 1
- "stdout.puts": 1
- "stdout.reopen": 1
- "string": 3
- "string.gsub": 1
- "string.sub": 2
- "supplied": 4
- "supplied.empty": 1
- "supplied.upcase": 1
- "system": 1
- "t": 2
- "tap": 1
- "tapd": 1
- "tapd.directory": 1
- "tapd.find_formula": 1
- "target_file": 6
- "task": 2
- "term": 1
- "term.to_s": 1
- "test": 3
- "text": 1
- "th": 4
- "the": 3
- "then": 4
- "this": 1
- "thread_safe": 2
- "threaded": 1
- "to_check": 2
- "to_s": 2
- "true": 14
- "type": 10
- "type.to_s.upcase": 1
- "underscore": 1
- "unless": 11
- "unstable": 2
- "uppercase_first_letter": 2
- "uri": 1
- "url": 12
- "use_code": 1
- "v": 2
- "v.to_s.empty": 1
- "val": 10
- "val.nil": 3
- "validate": 1
- "validate_variable": 7
- "value": 2
- "var": 1
- "verify_download_integrity": 2
- "version": 9
- "views": 1
- "w": 8
- "webrick": 1
- "when": 7
- "word": 7
- "word.downcase": 1
- "word.empty": 1
- "word.gsub": 4
- "word.to_s.dup": 1
- "word.tr": 1
- "worker": 1
- "worker.unregister_worker": 1
- "worker_id": 2
- "workers": 2
- "workers.size.to_i": 1
- "working": 2
- "working.size": 1
- "wr": 3
- "wr.close": 1
- "x": 1
- "xhtml": 1
- "xml": 2
- "yield": 5
- "z": 6
- "zA": 1
- "{": 65
- "|": 74
- "||": 21
- "}": 65
- "Rust":
- "(": 1
- ")": 1
- ";": 1
- "fn": 1
- "log": 1
- "main": 1
- "{": 1
- "}": 1
- "SCSS":
- "#3bbfce": 1
- "%": 1
- "(": 1
- ")": 1
- "-": 3
- ".border": 1
- ".content": 1
- "/": 2
- ";": 7
- "blue": 4
- "border": 2
- "color": 3
- "darken": 1
- "margin": 4
- "navigation": 1
- "padding": 1
- "px": 1
- "{": 2
- "}": 2
- "Sass":
- "#3bbfce": 1
- "%": 1
- "(": 1
- ")": 1
- "-": 3
- ".border": 1
- ".content": 1
- "/": 2
- "blue": 4
- "border": 2
- "color": 3
- "darken": 1
- "margin": 4
- "navigation": 1
- "padding": 1
- "px": 1
- "Scala":
- "#": 2
- "%": 7
- "(": 23
- ")": 23
- "*/": 1
- "+": 15
- "-": 1
- ".currentRef.project": 1
- "/": 2
- "/*": 1
- "//": 49
- "/1000.0": 1
- "/bin/sh": 1
- "<+=>": 1
- "Array": 1
- "Compile": 4
- "Credentials": 2
- "DateFormat.SHORT": 2
- "DateFormat.getDateTimeInstance": 1
- "Full": 1
- "HelloWorld": 1
- "Ivy": 1
- "Level.Debug": 1
- "Level.Warn": 2
- "Path.userHome": 1
- "Project.extract": 1
- "SNAPSHOT": 1
- "Seq": 3
- "Some": 6
- "String": 1
- "System.": 1
- "System.getProperty": 1
- "T": 3
- "Test": 3
- "ThisBuild": 1
- "UpdateLogging": 1
- "_": 1
- "a": 2
- "add": 2
- "aggregate": 1
- "args": 1
- "artifactClassifier": 1
- "at": 4
- "baseDirectory": 1
- "be": 1
- "build": 1
- "clean": 1
- "compile": 1
- "console": 1
- "credentials": 2
- "crossPaths": 1
- "currentTimeMillis": 1
- "def": 2
- "define": 1
- "disable": 1
- "dynamic": 1
- "exec": 1
- "f": 2
- "false": 7
- "file": 3
- "finally": 1
- "for": 1
- "fork": 2
- "highest": 1
- "id": 1
- "import": 2
- "in": 12
- "include": 1
- "including": 1
- "initialCommands": 2
- "input": 1
- "ivyLoggingLevel": 1
- "java.text.DateFormat": 1
- "javaHome": 1
- "javaOptions": 1
- "javacOptions": 1
- "level": 1
- "libosmVersion": 1
- "libraryDependencies": 3
- "logLevel": 2
- "logging": 1
- "main": 1
- "mainClass": 2
- "map": 1
- "maven": 2
- "maxErrors": 1
- "name": 4
- "now": 3
- "object": 1
- "of": 1
- "offline": 1
- "organization": 1
- "packageBin": 1
- "packageDoc": 2
- "parallelExecution": 2
- "persistLogLevel": 1
- "pollInterval": 1
- "println": 2
- "project": 1
- "prompt": 1
- "publish": 1
- "publishArtifact": 2
- "publishTo": 1
- "repositories": 1
- "repository": 2
- "resolvers": 2
- "retrieveManaged": 1
- "revisions": 1
- "run": 1
- "scala": 1
- "scalaHome": 1
- "scalaVersion": 1
- "scalacOptions": 1
- "sequence": 1
- "set": 2
- "shellPrompt": 2
- "showSuccess": 1
- "showTiming": 1
- "start": 2
- "state": 3
- "style": 2
- "the": 4
- "this": 1
- "time": 1
- "timingFormat": 1
- "to": 4
- "traceLevel": 2
- "true": 5
- "try": 1
- "unmanagedJars": 1
- "updating": 1
- "url": 3
- "val": 2
- "version": 1
- "versions": 1
- "watchSources": 1
- "{": 9
- "}": 10
- "Scheme":
- "#": 6
- "#f": 5
- "(": 359
- "(*": 3
- ")": 373
- "*)": 3
- "+": 28
- "-": 188
- ".": 1
- ".0": 65
- "/": 7
- "0": 7
- "1": 2
- "10": 1
- "100": 6
- "2": 1
- "4": 1
- "5": 1
- "50": 4
- ";": 1684
- "<": 1
- "<=>": 3
- "a": 19
- "a.pos": 2
- "a.radius": 1
- "a.vel": 1
- "agave": 4
- "ammo": 9
- "angle": 6
- "append": 4
- "args": 2
- "asteroid": 14
- "asteroids": 15
- "b": 4
- "background": 1
- "base": 2
- "basic": 1
- "begin": 1
- "birth": 2
- "bits": 1
- "buffered": 1
- "bullet": 16
- "bullet.birth": 1
- "bullet.pos": 2
- "bullet.vel": 1
- "bullets": 7
- "c": 4
- "case": 1
- "char": 1
- "color": 2
- "compat": 1
- "comprehensions": 1
- "cond": 2
- "cons": 1
- "contact": 2
- "cos": 1
- "current": 15
- "d": 1
- "default": 1
- "define": 27
- "degrees": 2
- "dharmalab": 2
- "display": 4
- "distance": 3
- "dt": 7
- "each": 7
- "eager": 1
- "ec": 6
- "else": 2
- "excursion": 5
- "f": 1
- "fields": 4
- "filter": 4
- "for": 7
- "force": 1
- "geometry": 1
- "gl": 12
- "glColor3f": 5
- "glRotated": 2
- "glTranslated": 1
- "glamour": 2
- "glu": 1
- "glut": 2
- "glutIdleFunc": 1
- "glutKeyboardFunc": 1
- "glutMainLoop": 1
- "glutPostRedisplay": 1
- "glutWireCone": 1
- "glutWireCube": 1
- "glutWireSphere": 3
- "height": 8
- "i": 6
- "if": 1
- "import": 1
- "in": 14
- "inexact": 16
- "initialize": 1
- "integer": 25
- "is": 8
- "key": 2
- "lambda": 12
- "last": 3
- "let": 2
- "level": 5
- "lifetime": 1
- "list": 6
- "lists": 1
- "make": 11
- "map": 4
- "math": 1
- "matrix": 5
- "micro": 1
- "milli": 1
- "misc": 1
- "mod": 2
- "mutable": 14
- "n": 2
- "nanosecond": 1
- "nanoseconds": 2
- "newline": 2
- "null": 1
- "number": 3
- "of": 3
- "only": 1
- "p": 6
- "pack": 12
- "pack.pos": 3
- "pack.vel": 1
- "par": 6
- "par.birth": 1
- "par.lifetime": 1
- "par.pos": 2
- "par.vel": 1
- "particle": 8
- "particles": 11
- "pi": 2
- "pos": 16
- "procedure": 1
- "pt": 49
- "pt*n": 8
- "radians": 8
- "radius": 6
- "random": 27
- "randomize": 1
- "record": 5
- "records": 1
- "ref": 3
- "reshape": 1
- "rnrs": 1
- "s": 1
- "s1": 1
- "s19": 1
- "s27": 1
- "s42": 1
- "say": 9
- "score": 5
- "second": 1
- "seconds": 12
- "set": 19
- "ship": 8
- "ship.pos": 5
- "ship.theta": 10
- "ship.vel": 5
- "ships": 1
- "sin": 1
- "size": 1
- "source": 2
- "space": 1
- "spaceship": 5
- "starting": 3
- "step": 1
- "surfage": 4
- "system": 2
- "theta": 1
- "time": 24
- "title": 1
- "translate": 6
- "type": 5
- "update": 2
- "utilities": 1
- "val": 3
- "vector": 6
- "vel": 4
- "w": 1
- "when": 5
- "width": 8
- "window": 2
- "wrap": 4
- "x": 8
- "y": 3
- "Scilab":
- "%": 4
- "(": 7
- ")": 7
- "+": 5
- "-": 2
- ".23e": 1
- ".71828": 1
- "//": 3
- ";": 7
- "a": 4
- "assert_checkequal": 1
- "assert_checkfalse": 1
- "b": 4
- "cos": 1
- "cosh": 1
- "d": 2
- "disp": 1
- "e": 3
- "e.field": 1
- "else": 1
- "end": 1
- "endfunction": 1
- "f": 2
- "function": 1
- "home": 1
- "if": 1
- "myfunction": 1
- "myvar": 1
- "pi": 3
- "return": 1
- "then": 1
- "Shell":
- "#": 8
- "%": 1
- "&": 2
- "&&": 3
- "(": 12
- ")": 12
- "+": 1
- "-": 20
- "/.rvm": 2
- "//github.com/bumptech/stud.git": 1
- "/bin/bash": 1
- "/bin/sh": 1
- "/bin/zsh": 1
- "/dev/null": 1
- "/rvm": 1
- "/usr": 1
- "/usr/bin/env": 2
- "/usr/local/rvm": 4
- ";": 5
- "@": 1
- "CLI": 1
- "Can": 1
- "DESTDIR": 1
- "Dm755": 1
- "Error": 2
- "GREP_OPTIONS": 1
- "HOME": 2
- "NOT": 1
- "PATH": 5
- "PREFIX": 1
- "RVM": 1
- "Skipping": 1
- "_gitname": 1
- "_gitroot": 1
- "arch": 1
- "b": 1
- "bare": 1
- "bash": 2
- "be": 1
- "build": 1
- "called": 1
- "cd": 4
- "clone": 2
- "conflicts": 1
- "d": 1
- "declare": 1
- "depends": 1
- "do": 1
- "e": 1
- "echo": 9
- "ef": 1
- "else": 2
- "exec": 1
- "exit": 4
- "export": 5
- "f": 1
- "fi": 7
- "find": 1
- "for": 2
- "from": 1
- "git": 5
- "https": 1
- "i686": 1
- "if": 9
- "in": 1
- "init.stud": 1
- "install": 3
- "is": 1
- "libev": 1
- "license": 1
- "loading": 1
- "make": 2
- "makedepends": 1
- "may": 1
- "mkdir": 1
- "msg": 4
- "n": 2
- "of": 1
- "only.": 1
- "openssl": 1
- "origin": 1
- "p": 1
- "package": 1
- "pkgdesc": 1
- "pkgname": 1
- "pkgrel": 1
- "pkgver": 1
- "prefix": 1
- "provides": 1
- "pull": 1
- "rbenv": 2
- "rf": 1
- "rm": 1
- "rvm": 3
- "rvm_ignore_rvmrc": 1
- "rvm_path": 1
- "rvm_rvmrc_files": 2
- "rvm_scripts_path": 1
- "rvmrc": 6
- "rvmrc.": 1
- "set": 2
- "settings": 1
- "sourcing": 1
- "stud": 4
- "system": 1
- "t": 1
- "the": 1
- "then": 8
- "unset": 1
- "url": 1
- "version": 1
- "versions": 1
- "within": 1
- "x": 1
- "x86_64": 1
- "z": 2
- "{": 7
- "}": 7
- "Standard ML":
- "(": 19
- "(*": 1
- ")": 20
- "*": 4
- "*)": 1
- "-": 9
- ";": 1
- "B": 1
- "Done": 1
- "LAZY": 1
- "LAZY_BASE": 3
- "Lazy": 1
- "LazyBase": 2
- "LazyFn": 2
- "LazyMemo": 1
- "LazyMemoBase": 2
- "Ops": 1
- "Undefined": 3
- "a": 19
- "bool": 1
- "compare": 1
- "datatype": 1
- "delay": 3
- "else": 1
- "end": 6
- "eq": 2
- "eqBy": 2
- "exception": 1
- "f": 9
- "false": 1
- "fn": 3
- "force": 9
- "fun": 9
- "handle": 1
- "if": 1
- "ignore": 1
- "inject": 3
- "isUndefined": 2
- "lazy": 11
- "let": 1
- "map": 1
- "of": 1
- "op": 1
- "open": 1
- "p": 4
- "raise": 1
- "sig": 1
- "signature": 2
- "string": 1
- "struct": 4
- "structure": 5
- "then": 1
- "toString": 2
- "true": 1
- "type": 2
- "undefined": 1
- "unit": 1
- "val": 7
- "x": 15
- "y": 6
- "|": 1
- "SuperCollider":
- "(": 12
- ")": 12
- "*/": 2
- "*new": 1
- "+": 3
- ".postln": 1
- ".value": 1
- "/": 2
- "/*": 2
- "//": 10
- ";": 14
- "Array.fill": 1
- "BCR2000": 1
- "Bus.control": 1
- "CCResponder": 1
- "Dictionary.new": 3
- "Server.default": 1
- "arg": 3
- "at": 1
- "busAt": 1
- "chan": 2
- "controlBuses": 2
- "controlBuses.at": 2
- "controlBuses.put": 1
- "controlNum": 6
- "controls": 2
- "controls.at": 2
- "controls.put": 1
- "createCCResponders": 1
- "i": 4
- "init": 1
- "nil": 4
- "num": 2
- "rangedControlBuses": 2
- "responders": 2
- "scalarAt": 1
- "src": 2
- "super.new.init": 1
- "this.createCCResponders": 1
- "val": 4
- "var": 1
- "{": 9
- "|": 4
- "}": 9
- "TeX":
- "#1": 12
- "#2": 4
- "%": 85
- "(": 3
- ")": 2
- "-": 2
- "-}": 5
- ".": 1
- ".0em": 1
- ".0in": 2
- ".4": 1
- ".5em": 2
- ".5in": 3
- ".5pt": 1
- ".6in": 1
- ".75em": 1
- ".9in": 1
- "/01/27": 1
- "/12/04": 3
- "/Creator": 1
- "@advisor": 3
- "@afterheading": 1
- "@afterindentfalse": 1
- "@altadvisor": 3
- "@altadvisorfalse": 1
- "@altadvisortrue": 1
- "@approvedforthe": 3
- "@author": 1
- "@chapapp": 2
- "@chapter": 2
- "@date": 1
- "@department": 3
- "@division": 3
- "@dotsep": 2
- "@empty": 1
- "@highpenalty": 2
- "@latex@warning@no@line": 3
- "@makechapterhead": 2
- "@pdfoutput": 1
- "@percentchar": 1
- "@plus": 1
- "@pnumwidth": 3
- "@restonecolfalse": 1
- "@restonecoltrue": 1
- "@schapter": 1
- "@tempdima": 2
- "@thedivisionof": 3
- "@title": 1
- "@topnewpage": 1
- "@topnum": 1
- "@undefined": 1
- "A": 1
- "Abstract": 2
- "Approved": 1
- "Arts": 1
- "AtBeginDocument": 1
- "AtBeginDvi": 2
- "AtEndDocument": 1
- "Bachelor": 1
- "Class": 4
- "College": 5
- "Contents": 1
- "CurrentOption": 1
- "DeclareOption*": 1
- "Degree": 2
- "Division": 2
- "Fulfillment": 1
- "If": 1
- "In": 1
- "LE": 1
- "LO": 2
- "LaTeX": 3
- "LaTeX2e": 1
- "LoadClass": 1
- "NeedsTeXFormat": 1
- "No": 3
- "Partial": 1
- "PassOptionsToClass": 1
- "Presented": 1
- "ProcessOptions": 1
- "ProvidesClass": 1
- "RE": 2
- "RO": 1
- "RTcleardoublepage": 3
- "RToldchapter": 1
- "RToldcleardoublepage": 1
- "RTpercent": 3
- "Reed": 5
- "References": 1
- "RequirePackage": 1
- "Requirements": 2
- "SN": 3
- "Table": 1
- "The": 3
- "Thesis": 5
- "above": 1
- "abstract": 1
- "addcontentsline": 5
- "addpenalty": 1
- "addtocontents": 2
- "addtolength": 8
- "addvspace": 2
- "advance": 1
- "advisor": 1
- "advisor#1": 1
- "all": 1
- "altadvisor#1": 1
- "approvedforthe#1": 1
- "baselineskip": 2
- "be": 1
- "begin": 4
- "begingroup": 1
- "bfseries": 3
- "bibname": 2
- "bigskip": 2
- "book": 2
- "c": 5
- "c@page": 1
- "c@secnumdepth": 1
- "c@tocdepth": 1
- "caps.": 1
- "center": 4
- "centerline": 8
- "chapter": 9
- "chaptermark": 1
- "choose": 1
- "cleardoublepage": 4
- "clearpage": 3
- "cm": 2
- "contentsname": 1
- "copy0": 1
- "def": 12
- "department": 1
- "department#1": 1
- "different": 1
- "division": 1
- "division#1": 1
- "else": 7
- "empty": 4
- "end": 4
- "endgroup": 1
- "endoldthebibliography": 2
- "endoldtheindex": 2
- "endthebibliography": 1
- "endtheindex": 1
- "evensidemargin": 2
- "fancy": 1
- "fancyhdr": 1
- "fancyhead": 5
- "fancyhf": 1
- "fi": 13
- "following": 1
- "fontsize": 7
- "footnote": 1
- "footnoterule": 1
- "footnotesize": 1
- "for": 3
- "gdef": 6
- "given": 3
- "global": 2
- "hb@xt@": 1
- "hbox": 15
- "headers": 2
- "headheight": 4
- "headsep": 3
- "hfill": 1
- "hrulefill": 5
- "hskip": 1
- "hss": 1
- "if@altadvisor": 3
- "if@mainmatter": 1
- "if@openright": 1
- "if@restonecol": 1
- "if@twocolumn": 3
- "if@twoside": 1
- "ifnum": 2
- "ifodd": 1
- "ifx": 1
- "in": 6
- "indexname": 1
- "l@chapter": 1
- "leaders": 1
- "leavevmode": 1
- "leftmark": 2
- "leftskip": 2
- "let": 10
- "like": 1
- "lineskip": 1
- "lof": 1
- "lot": 1
- "m@ne": 2
- "m@th": 1
- "major": 1
- "makebox": 6
- "makes": 1
- "maketitle": 1
- "mkern": 2
- "mu": 2
- "newcommand": 2
- "newenvironment": 1
- "newif": 1
- "newpage": 3
- "nobreak": 2
- "noexpand": 3
- "normalfont": 1
- "nouppercase": 2
- "null": 3
- "oddsidemargin": 2
- "of": 6
- "oldthebibliography": 2
- "oldtheindex": 2
- "one": 1
- "onecolumn": 1
- "options": 1
- "or": 1
- "p@": 3
- "page": 1
- "pagestyle": 2
- "par": 6
- "parfillskip": 1
- "parindent": 1
- "pdfinfo": 1
- "penalty": 1
- "protect": 2
- "rawpostscript": 1
- "reedthesis": 1
- "refstepcounter": 1
- "relax": 2
- "remove": 1
- "renewcommand": 6
- "renewenvironment": 2
- "rightmark": 2
- "rightskip": 1
- "scshape": 2
- "secdef": 1
- "selectfont": 6
- "setbox0": 2
- "setcounter": 1
- "setlength": 10
- "sign": 1
- "slshape": 2
- "small": 1
- "space": 4
- "space#1": 1
- "special": 2
- "sure": 1
- "t": 1
- "tabular": 2
- "textheight": 4
- "textwidth": 2
- "thanks": 1
- "the": 7
- "thebibliography": 2
- "thechapter": 1
- "thechapter.": 1
- "thedivisionof#1": 1
- "theindex": 2
- "thepage": 1
- "thispagestyle": 3
- "titlepage": 2
- "to": 6
- "toc": 5
- "topmargin": 6
- "twocolumn": 1
- "typeout": 1
- "vfil": 8
- "vskip": 4
- "wd0": 7
- "would": 1
- "you": 1
- "your": 1
- "z@": 2
- "{": 180
- "{-": 5
- "}": 185
- "Tea":
- "<%>": 1
- "foo": 1
- "template": 1
- "Turing":
- "%": 1
- "(": 3
- ")": 3
- "*": 1
- "-": 1
- "..": 1
- "else": 1
- "end": 3
- "exit": 1
- "factorial": 4
- "function": 1
- "get": 1
- "if": 2
- "int": 2
- "loop": 2
- "n": 9
- "put": 3
- "real": 1
- "result": 2
- "then": 1
- "var": 1
- "when": 1
- "VHDL":
- "(": 1
- ")": 1
- "-": 2
- ";": 7
- "<": 1
- "VHDL": 1
- "a": 2
- "architecture": 2
- "b": 2
- "begin": 1
- "end": 2
- "entity": 2
- "example": 1
- "file": 1
- "ieee": 1
- "ieee.std_logic_1164.all": 1
- "in": 1
- "inverter": 2
- "is": 2
- "library": 1
- "not": 1
- "of": 1
- "out": 1
- "port": 1
- "rtl": 1
- "std_logic": 2
- "use": 1
- "Verilog":
- "#": 10
- "#0.1": 8
- "#1": 1
- "#10": 10
- "#100": 1
- "#1000": 1
- "#10000": 1
- "#5": 3
- "#50": 2
- "%": 3
- "&": 6
- "&&": 3
- "(": 371
- "(*": 1
- ")": 370
- "*": 4
- "*)": 1
- "*/": 4
- "+": 36
- "-": 71
- ".BITS": 1
- ".C": 6
- ".CE": 6
- ".CLK_FREQUENCY": 1
- ".D": 6
- ".DEBOUNCE_HZ": 1
- ".INIT": 6
- ".INPUT_BITS": 1
- ".Q": 6
- ".R": 6
- ".S": 6
- ".bitmask": 2
- ".button": 1
- ".chain_four": 2
- ".clk": 6
- ".clk_i": 1
- ".color_compare": 2
- ".color_dont_care": 2
- ".command_was_sent": 1
- ".csr_adr_i": 1
- ".csr_adr_o": 1
- ".csr_dat_i": 1
- ".csr_dat_o": 1
- ".csr_stb_i": 1
- ".csr_stb_o": 1
- ".csrm_adr_o": 1
- ".csrm_dat_i": 1
- ".csrm_dat_o": 1
- ".csrm_sel_o": 1
- ".csrm_we_o": 1
- ".cur_end": 2
- ".cur_start": 2
- ".dac_read_data": 2
- ".dac_read_data_cycle": 2
- ".dac_read_data_register": 2
- ".dac_we": 2
- ".dac_write_data": 2
- ".dac_write_data_cycle": 2
- ".dac_write_data_register": 2
- ".data_valid": 2
- ".debounce": 1
- ".div_by_zero": 1
- ".dividend": 1
- ".divisor": 1
- ".en": 4
- ".enable_set_reset": 2
- ".end_hor_retr": 2
- ".end_horiz": 2
- ".end_ver_retr": 2
- ".end_vert": 2
- ".error_communication_timed_out": 1
- ".graphics_alpha": 2
- ".hcursor": 2
- ".horiz_sync": 1
- ".horiz_total": 2
- ".map_mask": 2
- ".memory_mapping1": 2
- ".num": 4
- ".pal_addr": 2
- ".pal_read": 2
- ".pal_we": 2
- ".pal_write": 2
- ".ps2_clk": 1
- ".ps2_clk_negedge": 2
- ".ps2_clk_posedge": 2
- ".ps2_dat": 1
- ".ps2_data": 1
- ".quotient": 1
- ".radicand": 1
- ".raster_op": 2
- ".read_map_select": 2
- ".read_mode": 2
- ".received_data": 1
- ".received_data_en": 1
- ".reset": 2
- ".reset_n": 3
- ".root": 1
- ".rst": 1
- ".rst_i": 1
- ".seg": 4
- ".send_command": 1
- ".set_reset": 2
- ".shift_reg1": 2
- ".st_hor_retr": 2
- ".st_ver_retr": 2
- ".start": 2
- ".start_addr": 1
- ".start_receiving_data": 1
- ".the_command": 1
- ".v_retrace": 2
- ".vcursor": 2
- ".vert_sync": 1
- ".vert_total": 2
- ".vga_blue_o": 1
- ".vga_green_o": 1
- ".vga_red_o": 1
- ".vh_retrace": 2
- ".wait_for_incoming_data": 1
- ".wb_ack_o": 2
- ".wb_adr_i": 2
- ".wb_clk_i": 2
- ".wb_dat_i": 2
- ".wb_dat_o": 2
- ".wb_rst_i": 2
- ".wb_sel_i": 2
- ".wb_stb_i": 2
- ".wb_we_i": 2
- ".wbm_ack_i": 1
- ".wbm_adr_o": 1
- ".wbm_dat_i": 1
- ".wbm_dat_o": 1
- ".wbm_sel_o": 1
- ".wbm_stb_o": 1
- ".wbm_we_o": 1
- ".wbs_ack_o": 1
- ".wbs_adr_i": 1
- ".wbs_dat_i": 1
- ".wbs_dat_o": 1
- ".wbs_sel_i": 1
- ".wbs_stb_i": 1
- ".wbs_we_i": 1
- ".write_mode": 2
- ".x_dotclockdiv2": 2
- "/": 11
- "/*": 4
- "//": 367
- "////////////////////////////////////////////////////////////////////////////////": 14
- "1": 7
- ";": 285
- "<": 47
- "<<": 2
- "<=>": 4
- "@": 16
- "BITS": 2
- "BIT_WIDTH": 5
- "BIT_WIDTH*": 5
- "BIT_WIDTH*i": 2
- "CLK_FREQUENCY": 4
- "COUNT": 4
- "COUNT_VALUE": 2
- "DEBOUNCE_HZ": 4
- "DFF0": 1
- "DFF10": 1
- "DFF2": 1
- "DFF4": 1
- "DFF6": 1
- "DFF8": 1
- "FDRSE": 6
- "FIRE": 4
- "INPUT_BITS": 28
- "INPUT_BITS*": 27
- "INPUT_BITS*i": 5
- "INPUT_WIDTH": 5
- "NUMBER_OF_STAGES": 7
- "OUTPUT_BITS": 14
- "OUTPUT_BITS*INPUT_BITS": 9
- "OUTPUT_WIDTH": 4
- "PS2_STATE_0_IDLE": 10
- "PS2_STATE_1_DATA_IN": 3
- "PS2_STATE_2_COMMAND_OUT": 2
- "PS2_STATE_3_END_TRANSFER": 3
- "PS2_STATE_4_END_DELAYED": 4
- "WAIT": 6
- "a": 3
- "always": 23
- "an": 6
- "assign": 23
- "b": 3
- "b0": 27
- "b0000": 1
- "b01": 1
- "b1": 13
- "b11": 1
- "begin": 46
- "bitmask": 3
- "button": 24
- "button_debounce": 3
- "bx": 4
- "c": 3
- "case": 3
- "ch": 1
- "chain_four": 3
- "clk": 40
- "color_compare": 3
- "color_dont_care": 3
- "command_was_sent": 2
- "conf_wb_ack_o": 3
- "conf_wb_dat_o": 3
- "config_iface": 1
- "control": 1
- "count": 6
- "cout": 4
- "cpu_mem_iface": 1
- "csr_adr_i": 3
- "csr_adr_o": 2
- "csr_dat_i": 3
- "csr_stb_i": 2
- "csr_stb_o": 3
- "csrm_adr_o": 2
- "csrm_dat_i": 2
- "csrm_dat_o": 2
- "csrm_sel_o": 2
- "csrm_we_o": 2
- "cur_end": 3
- "cur_start": 3
- "d": 3
- "dac_read_data": 3
- "dac_read_data_cycle": 3
- "dac_read_data_register": 3
- "dac_we": 3
- "dac_write_data": 3
- "dac_write_data_cycle": 3
- "dac_write_data_register": 3
- "data_valid": 7
- "debounce": 6
- "default": 2
- "div_by_zero": 2
- "div_pipelined": 2
- "dividend": 3
- "divisor": 5
- "dsp_sel": 9
- "e": 3
- "e0": 1
- "e1": 1
- "else": 22
- "en": 13
- "enable_set_reset": 3
- "end": 48
- "end_hor_retr": 3
- "end_horiz": 3
- "end_ver_retr": 3
- "end_vert": 3
- "endcase": 3
- "endgenerate": 3
- "endmodule": 18
- "error_communication_timed_out": 3
- "f": 2
- "finish": 2
- "for": 4
- "g": 2
- "gen_sign_extend": 1
- "generate": 3
- "genvar": 3
- "graphics_alpha": 4
- "h": 2
- "h00": 1
- "h01": 1
- "h1": 1
- "h3": 1
- "hcursor": 3
- "hex0": 2
- "hex1": 2
- "hex2": 2
- "hex3": 2
- "hex_display": 1
- "hex_group0": 1
- "hex_group1": 1
- "hex_group2": 1
- "hex_group3": 1
- "horiz_sync": 2
- "horiz_total": 3
- "i": 60
- "i/2": 2
- "idle_counter": 4
- "if": 23
- "initial": 3
- "inout": 2
- "input": 37
- "j": 2
- "k": 2
- "l": 2
- "last_ps2_clk": 4
- "lcd": 1
- "localparam": 4
- "maj": 1
- "map_mask": 3
- "mask_4": 1
- "mask_gen": 9
- "mem_arbitrer": 1
- "mem_wb_ack_o": 3
- "mem_wb_dat_o": 3
- "memory_mapping1": 3
- "module": 18
- "mouse_cmdout": 1
- "mouse_datain": 1
- "mux": 1
- "negedge": 8
- "next_state": 6
- "ns": 8
- "ns/1ps": 2
- "ns_ps2_transceiver": 13
- "num": 5
- "o": 6
- "opA": 4
- "opB": 3
- "or": 14
- "original": 3
- "out": 5
- "output": 35
- "pal_addr": 3
- "pal_read": 3
- "pal_we": 3
- "pal_write": 3
- "parameter": 7
- "pipe_gen": 6
- "pipe_in": 4
- "pipe_out": 5
- "pipeline": 2
- "pipeline_registers": 1
- "pipeline_stage": 1
- "posedge": 11
- "ps": 8
- "ps2_clk": 3
- "ps2_clk_negedge": 3
- "ps2_clk_posedge": 3
- "ps2_clk_reg": 4
- "ps2_dat": 3
- "ps2_data_reg": 5
- "ps2_mouse": 1
- "ps2_mouse_cmdout": 1
- "ps2_mouse_datain": 1
- "quotient": 2
- "quotient_correct": 1
- "radicand": 10
- "radicand_gen": 10
- "raster_op": 3
- "read_map_select": 3
- "read_mode": 3
- "received_data": 2
- "received_data_en": 4
- "reg": 26
- "reset": 5
- "reset_n": 32
- "root": 6
- "root_gen": 15
- "s0": 1
- "s1": 1
- "s_ps2_transceiver": 8
- "seg_7": 4
- "send_command": 2
- "set_reset": 3
- "shift_reg1": 3
- "sign_extend": 3
- "sign_extended_original": 2
- "sign_extender": 1
- "sqrt_pipelined": 3
- "st_hor_retr": 3
- "st_ver_retr": 3
- "start": 11
- "start_addr": 2
- "start_gen": 7
- "start_receiving_data": 3
- "state": 6
- "stb": 4
- "sum": 5
- "t_button_debounce": 1
- "t_div_pipelined": 1
- "t_sqrt_pipelined": 1
- "the_command": 2
- "timescale": 10
- "v_retrace": 3
- "vcursor": 3
- "vert_sync": 2
- "vert_total": 3
- "vga": 1
- "vga_blue_o": 2
- "vga_config_iface": 1
- "vga_cpu_mem_iface": 1
- "vga_green_o": 2
- "vga_lcd": 1
- "vga_mem_arbitrer": 1
- "vga_red_o": 2
- "vh_retrace": 3
- "w_vert_sync": 3
- "wait_for_incoming_data": 3
- "wb_ack_o": 2
- "wb_adr_i": 3
- "wb_clk_i": 6
- "wb_cyc_i": 2
- "wb_dat_i": 3
- "wb_dat_o": 2
- "wb_rst_i": 6
- "wb_sel_i": 3
- "wb_stb_i": 2
- "wb_tga_i": 5
- "wb_we_i": 3
- "wbm_ack_i": 3
- "wbm_adr_o": 3
- "wbm_dat_i": 3
- "wbm_dat_o": 3
- "wbm_sel_o": 3
- "wbm_stb_o": 3
- "wbm_we_o": 3
- "wire": 67
- "write_mode": 3
- "x": 41
- "x_dotclockdiv2": 3
- "y": 21
- "z": 7
- "{": 11
- "|": 2
- "||": 1
- "}": 11
- "VimL":
- "-": 1
- "T": 1
- "guioptions": 1
- "ignorecase": 1
- "incsearch": 1
- "no": 1
- "nocompatible": 1
- "on": 1
- "set": 7
- "showcmd": 1
- "showmatch": 1
- "smartcase": 1
- "syntax": 1
- "toolbar": 1
- "Visual Basic":
- "(": 9
- ")": 9
- "*************************************************************************************************************************************************************************************************************************************************": 2
- "-": 6
- ".0": 1
- "/": 1
- "<\">": 1
- "AgentID": 1
- "Alias": 3
- "All": 1
- "App.TaskVisible": 1
- "Applications": 1
- "As": 32
- "Attribute": 3
- "BEGIN": 1
- "Boolean": 1
- "Briant": 1
- "ByVal": 6
- "CLASS": 1
- "Checked": 1
- "Const": 9
- "Copyright": 1
- "DataBindingBehavior": 1
- "David": 1
- "Declare": 3
- "Dictionary": 3
- "Dim": 1
- "Disabled": 1
- "End": 4
- "Exit": 1
- "Explicit": 1
- "False": 1
- "Function": 4
- "GET_ROUTER_ID": 1
- "GET_ROUTER_ID_REPLY": 1
- "GET_SERVICES": 1
- "GET_SERVICES_REPLY": 1
- "Initialize": 1
- "Lib": 3
- "Long": 10
- "MF_STRING": 3
- "MTSTransactionMode": 1
- "MachineID": 1
- "Manager": 1
- "MultiUse": 1
- "New": 6
- "NotPersistable": 1
- "Nothing": 2
- "Option": 1
- "Private": 25
- "REGISTER_SERVICE": 1
- "REGISTER_SERVICE_REPLY": 1
- "Release": 1
- "RouterID": 1
- "Set": 4
- "Single": 1
- "String": 12
- "Sub": 6
- "TEN_MILLION": 1
- "Task": 1
- "True": 1
- "UNREGISTER_SERVICE": 1
- "UNREGISTER_SERVICE_REPLY": 1
- "Unload": 1
- "VERSION": 1
- "VLMessaging.VLMMMFileListener": 1
- "VLMessaging.VLMMMFileTransports": 1
- "Windows": 1
- "WithEvents": 3
- "address": 3
- "apiGlobalAddAtom": 3
- "apiSetForegroundWindow": 1
- "apiSetProp": 4
- "c": 1
- "cTP_AdvSysTray": 2
- "cTP_EasyPopupMenu": 1
- "create": 1
- "easily": 1
- "epm": 1
- "epm.addMenuItem": 2
- "epm.addSubmenuItem": 2
- "fMouseEventsForm": 2
- "found": 1
- "from": 1
- "hData": 1
- "hide": 1
- "hwnd": 2
- "icon": 1
- "id": 1
- "in": 1
- "item": 2
- "list": 1
- "lpString": 2
- "make": 1
- "menuItemSelected": 1
- "myAST": 3
- "myAST.VB_VarHelpID": 1
- "myAST.create": 1
- "myAST.destroy": 1
- "myAST_RButtonUp": 1
- "myClassName": 2
- "myDirectoryEntriesByIDString": 1
- "myListener": 1
- "myListener.VB_VarHelpID": 1
- "myMMFileTransports": 1
- "myMMFileTransports.VB_VarHelpID": 1
- "myMMFileTransports_disconnecting": 1
- "myMMTransportIDsByRouterID": 1
- "myMachineID": 1
- "myMouseEventsForm": 5
- "myMouseEventsForm.hwnd": 3
- "myMouseEventsForm.icon": 1
- "myRouterIDsByMMTransportID": 1
- "myRouterSeed": 1
- "myWindowName": 2
- "myself": 1
- "oReceived": 2
- "reserved": 1
- "rights": 1
- "shutdown": 1
- "the": 2
- "tray": 1
- "us": 1
- "vbNone": 1
- "XML":
- "(": 52
- ")": 45
- "*after*": 2
- "*always*": 1
- "*before*": 2
- "*must*": 1
- "-": 49
- "-->": 1
- ".": 22
- ".4": 1
- "/": 6
- ";": 10
- "<!--": 1
- "</assembly>": 1
- "</configurations>": 1
- "</dependencies>": 1
- "</description>": 2
- "</doc>": 1
- "</ea:build>": 1
- "</echo>": 2
- "</info>": 1
- "</ivy-module>": 1
- "</member>": 120
- "</members>": 1
- "</name>": 1
- "</param>": 83
- "</project>": 1
- "</returns>": 36
- "</summary>": 121
- "</target>": 2
- "</typeparam>": 12
- "<?xml>": 3
- "<assembly>": 1
- "<conf>": 2
- "<configurations>": 1
- "<dependencies>": 1
- "<dependency>": 1
- "<description>": 2
- "<doc>": 1
- "<ea:build>": 1
- "<ea:plugin>": 1
- "<ea:property>": 1
- "<echo>": 2
- "<info>": 1
- "<ivy-module>": 1
- "<member>": 120
- "<members>": 1
- "<name>": 1
- "<param>": 84
- "<project>": 1
- "<returns>": 36
- "<summary>": 120
- "<target>": 2
- "<typeparam>": 12
- "A": 19
- "AddRange": 2
- "An": 26
- "Another": 2
- "AsyncGet": 1
- "Attempts": 1
- "BindTo": 1
- "CPU": 1
- "Change": 2
- "ChangeTrackingEnabled": 2
- "Changed": 4
- "Changed.": 1
- "Changing": 5
- "Changing/Changed": 1
- "Collection.Select": 1
- "Conceptually": 1
- "Concurrency": 1
- "Consider": 2
- "Constructor": 2
- "Constructs": 4
- "Converts": 2
- "Count.": 4
- "Covariant": 1
- "Creates": 3
- "Current": 1
- "DeferredScheduler": 1
- "Determins": 2
- "Dispatcher": 3
- "DispatcherScheduler": 1
- "Enables": 2
- "Ensure": 1
- "Evaluates": 1
- "Exception": 1
- "Expression": 7
- "Fires": 14
- "Functions": 2
- "GetFieldNameForProperty": 1
- "GetFieldNameForPropertyNameFunc.": 1
- "Given": 3
- "IEnableLogger": 1
- "IMPORTANT": 1
- "IMessageBus": 1
- "INotifyPropertyChanged": 1
- "INotifyPropertyChanged.": 1
- "IObservedChange": 5
- "IReactiveCollection": 3
- "IReactiveNotifyPropertyChanged": 6
- "IReactiveNotifyPropertyChanged.": 4
- "If": 6
- "Immediate": 1
- "In": 6
- "InUnitTestRunner": 1
- "Invalidate": 2
- "Issues": 1
- "It": 1
- "Item": 4
- "ItemChanged": 2
- "ItemChanging": 2
- "ItemChanging/ItemChanged.": 2
- "Listen": 4
- "Log": 2
- "MRU": 1
- "MakeObjectReactiveHelper.": 1
- "Message": 2
- "MessageBus": 3
- "MessageBus.Current.": 1
- "Model": 1
- "NOTE": 1
- "Note": 7
- "OAPH": 2
- "Observable": 56
- "Observable.": 6
- "Observable.Return": 1
- "ObservableAsPropertyHelper": 6
- "ObservableAsyncMRUCache": 2
- "ObservableAsyncMRUCache.": 1
- "ObservableAsyncMRUCache.AsyncGet": 1
- "ObservableForProperty": 14
- "ObservableForProperty.": 1
- "ObservableToProperty": 1
- "Observables": 4
- "Observables.": 2
- "Pool": 1
- "PropertyChangedEventArgs.": 1
- "Provides": 4
- "RaiseAndSetIfChanged": 2
- "RaisePropertyChanged": 2
- "RaisePropertyChanging": 2
- "ReactiveCollection": 1
- "ReactiveCollection.": 1
- "ReactiveObject": 11
- "ReactiveObject.": 1
- "ReactiveUI": 2
- "Reference": 1
- "RegisterMessageSource": 4
- "Registers": 3
- "Represents": 4
- "Return": 1
- "Returns": 5
- "Rx.Net.": 1
- "RxApp": 1
- "RxApp.DeferredScheduler": 2
- "RxApp.GetFieldNameForPropertyNameFunc.": 2
- "Select": 3
- "SelectMany": 2
- "SelectMany.": 1
- "Selector": 1
- "SendMessage.": 2
- "Sender.": 1
- "Sends": 2
- "Set": 3
- "SetValueToProperty": 1
- "Setter": 2
- "Silverlight": 2
- "Since": 1
- "Specifying": 2
- "T": 1
- "TPL": 1
- "TSender": 1
- "Tag": 1
- "Task": 1
- "TaskpoolScheduler": 2
- "Test": 1
- "The": 74
- "This": 21
- "This.GetValue": 1
- "Threadpool": 1
- "Timer.": 2
- "To": 4
- "ToProperty": 2
- "Tracking": 2
- "True": 6
- "True.": 2
- "Type": 9
- "Type.": 2
- "UI": 2
- "Unit": 1
- "Use": 13
- "Value": 3
- "ValueIfNotDefault": 1
- "ViewModel": 8
- "ViewModels": 3
- "WP7": 1
- "WebRequest": 1
- "When": 5
- "WhenAny": 12
- "Works": 2
- "a": 127
- "able": 1
- "about": 5
- "access": 3
- "act": 2
- "action": 2
- "actual": 2
- "add": 2
- "added": 6
- "added.": 4
- "added/removed": 1
- "adding": 2
- "addition": 3
- "additional": 3
- "additionnal": 1
- "adds": 2
- "after": 1
- "all": 4
- "allow": 1
- "allows": 15
- "almost": 2
- "already": 1
- "also": 17
- "always": 4
- "an": 88
- "and": 44
- "another": 3
- "any": 11
- "anything": 2
- "application": 2
- "applies": 1
- "apply": 3
- "arbitrarily": 2
- "are": 13
- "as": 25
- "assumption": 4
- "async": 3
- "asynchronous": 4
- "asyncronous": 1
- "at": 2
- "attached.": 1
- "attaching": 1
- "attempts": 1
- "automatically": 3
- "available.": 1
- "avoid": 2
- "awesome": 1
- "backed": 1
- "background": 1
- "backing": 9
- "base": 3
- "based": 9
- "be": 57
- "because": 2
- "been": 5
- "before": 8
- "being": 1
- "between": 15
- "binding.": 1
- "bindings": 13
- "both": 2
- "build": 1
- "bus.": 1
- "but": 7
- "by": 13
- "cache": 14
- "cache.": 5
- "cached": 2
- "caches": 2
- "calculation": 8
- "calculationFunc": 2
- "call": 5
- "called": 5
- "called.": 1
- "calls.": 2
- "can": 11
- "cannot": 1
- "casting": 1
- "chained": 2
- "change": 26
- "change.": 12
- "changed": 18
- "changed.": 9
- "changes": 13
- "changes.": 2
- "checks.": 1
- "child": 2
- "class": 11
- "classes": 2
- "clean": 1
- "client.": 2
- "code": 4
- "collection": 27
- "collection.": 6
- "collections": 1
- "combination": 2
- "common": 1
- "communicate": 2
- "compatible": 1
- "compile": 1
- "complete": 1
- "completes": 4
- "compute": 1
- "concurrent": 5
- "concurrently": 2
- "conf=": 1
- "configured": 1
- "constructors": 12
- "contents": 2
- "contract.": 2
- "convenient.": 1
- "convention": 2
- "convert": 2
- "corresponding": 2
- "could": 1
- "coupled": 2
- "created": 2
- "creating": 2
- "current": 10
- "currently": 2
- "custom": 4
- "customize": 1
- "data": 1
- "declare": 1
- "default": 9
- "default.": 2
- "defaults": 1
- "defined": 1
- "delay": 2
- "delay.": 2
- "delete": 1
- "depends": 1
- "derive": 1
- "description=": 2
- "designed": 1
- "determine": 1
- "determined": 1
- "directly": 1
- "discarded.": 4
- "disconnects": 1
- "disk": 1
- "disposed": 4
- "disposed.": 3
- "distinguish": 12
- "does": 1
- "doesn": 1
- "done": 2
- "download": 1
- "dummy": 1
- "duplicate": 2
- "ea=": 2
- "each": 7
- "easily": 1
- "easyant": 3
- "either": 1
- "empty": 1
- "enabled": 8
- "ensure": 3
- "ensuring": 2
- "entire": 1
- "entry": 1
- "equivalent": 2
- "equivalently": 1
- "evaluate": 1
- "evaluated": 1
- "events.": 2
- "evicted": 2
- "example": 2
- "existing": 3
- "expensive": 2
- "explicitly": 1
- "exposes": 1
- "expression": 3
- "expression.": 1
- "extended": 1
- "extension": 2
- "extensionOf=": 1
- "fail.": 1
- "fake": 4
- "faking": 4
- "false": 2
- "faster": 2
- "fetch": 1
- "field": 10
- "field.": 1
- "file": 3
- "file.": 1
- "filled": 1
- "filters": 1
- "finishes.": 1
- "fire": 11
- "fires": 6
- "first": 1
- "fixed": 1
- "flattened": 2
- "flight": 2
- "folder": 1
- "followed": 1
- "for": 59
- "found.": 1
- "framework": 1
- "framework.": 1
- "from": 12
- "full": 1
- "fully": 3
- "function": 13
- "function.": 6
- "further": 1
- "future": 2
- "generic": 3
- "gets": 1
- "give": 1
- "given": 11
- "global": 1
- "go": 2
- "going": 4
- "guarantees": 6
- "has": 16
- "have": 17
- "help": 1
- "helper": 5
- "helps": 1
- "heuristically": 1
- "hundreds": 2
- "i": 2
- "i.e.": 23
- "identical": 11
- "if": 27
- "image": 1
- "immediately": 3
- "implement": 5
- "implementing": 2
- "implements": 8
- "important": 6
- "in": 45
- "initial": 28
- "initialize": 1
- "initialized": 2
- "input": 2
- "instance": 2
- "instead": 2
- "intended": 5
- "interface": 4
- "into": 2
- "invoke": 4
- "is": 123
- "issue": 2
- "it": 16
- "item": 19
- "item.": 3
- "items": 27
- "its": 4
- "itself": 2
- "java": 1
- "junit": 2
- "keep": 1
- "key": 12
- "keyword.": 2
- "last": 1
- "leak": 2
- "leave": 10
- "like": 2
- "limit": 5
- "limited": 1
- "list": 1
- "list.": 2
- "listen": 6
- "log": 2
- "logger": 2
- "loosely": 2
- "love": 1
- "maintain": 1
- "make": 2
- "making": 3
- "manage": 1
- "manually": 4
- "many": 1
- "maps": 1
- "mathematical": 2
- "maxConcurrent": 1
- "maximum": 2
- "may": 1
- "mean": 1
- "memoization": 2
- "memoized": 1
- "memoizes": 2
- "memoizing": 2
- "message": 30
- "message.": 1
- "messages": 22
- "method": 34
- "method.": 2
- "methods.": 2
- "mirror": 1
- "mock": 4
- "mode": 2
- "modes": 1
- "module.ant": 1
- "module.ivy": 1
- "module=": 3
- "monitor": 1
- "more": 16
- "multiple": 6
- "must": 2
- "my": 2
- "name": 7
- "name.": 1
- "name=": 223
- "named": 2
- "naming": 1
- "need": 12
- "needs": 1
- "neither": 3
- "never": 3
- "new": 10
- "newly": 2
- "next": 1
- "no": 4
- "non": 1
- "nor": 3
- "normal": 2
- "normally": 6
- "not": 9
- "notification": 6
- "notification.": 2
- "notifications": 22
- "notifications.": 5
- "notify": 3
- "null": 4
- "null.": 10
- "number": 9
- "object": 42
- "object.": 3
- "objects": 4
- "observe": 12
- "observed": 1
- "of": 75
- "often": 3
- "old": 1
- "on": 35
- "on.": 6
- "onChanged": 2
- "onRelease": 1
- "once": 4
- "one": 27
- "one.": 1
- "only": 18
- "onto": 1
- "operation": 2
- "operation.": 1
- "operations": 6
- "optional": 2
- "optionally": 2
- "optionnal": 1
- "or": 24
- "org=": 1
- "organisation=": 3
- "other": 9
- "otherwise": 1
- "out": 4
- "out.": 1
- "output": 1
- "overload": 2
- "override": 1
- "own": 2
- "parameter": 6
- "parameter.": 1
- "parameters.": 1
- "part": 2
- "particular": 2
- "pass": 2
- "passed": 1
- "paths": 1
- "per": 2
- "performance": 1
- "performs": 1
- "places": 1
- "plug": 1
- "populate": 1
- "populated": 4
- "possible": 1
- "post": 2
- "posted": 3
- "potentially": 2
- "pre": 1
- "previous": 2
- "private": 1
- "progress": 1
- "properties": 29
- "properties/methods": 1
- "property": 74
- "property.": 12
- "provide": 2
- "provided": 14
- "provided.": 5
- "provider": 1
- "provides": 6
- "providing": 20
- "purpose": 10
- "put": 2
- "queried": 1
- "queued": 1
- "queues": 2
- "raise": 2
- "raiseAndSetIfChanged": 1
- "raisePropertyChanging": 4
- "raised": 1
- "reached": 2
- "read": 3
- "reasons": 1
- "rebroadcast": 2
- "receives": 1
- "recently": 3
- "reenables": 3
- "reflection": 1
- "regardless": 2
- "registered": 1
- "registered.": 2
- "removed": 4
- "removed.": 4
- "replaces": 1
- "representation": 1
- "representing": 20
- "represents": 4
- "request": 3
- "requested": 1
- "requests": 4
- "requests.": 2
- "respective": 1
- "response": 2
- "rest.": 2
- "result": 3
- "result.": 2
- "resulting": 1
- "results": 6
- "retrieve": 3
- "return": 11
- "returned": 2
- "returned.": 2
- "returning": 1
- "returns": 5
- "rev=": 1
- "revision=": 3
- "run": 7
- "running": 4
- "running.": 1
- "s": 1
- "same": 8
- "sample": 2
- "save": 1
- "scenarios": 4
- "schedule": 2
- "scheduler": 11
- "selector": 5
- "selector.": 2
- "selectors": 2
- "semantically": 3
- "send": 3
- "send.": 4
- "sending": 2
- "sense": 1
- "sense.": 1
- "sent": 2
- "server": 2
- "server.": 2
- "service": 1
- "services": 2
- "set": 41
- "set.": 3
- "setup.": 12
- "several": 1
- "should": 10
- "similar": 3
- "similarly": 1
- "simple": 2
- "simpler": 1
- "simplify": 1
- "single": 2
- "size": 1
- "slot": 1
- "so": 1
- "spamming": 2
- "specific": 8
- "specified": 7
- "standard": 1
- "start": 1
- "startup.": 1
- "status=": 1
- "step": 1
- "steps": 1
- "still": 1
- "stream": 7
- "stream.": 3
- "string": 13
- "structure": 1
- "subscribed": 2
- "subscribing": 1
- "subsequent": 1
- "such": 5
- "suffice.": 1
- "synchronous": 1
- "t": 2
- "take": 2
- "taken": 1
- "takes": 1
- "target": 6
- "target.": 1
- "target.property": 1
- "temporary": 1
- "test": 7
- "tests.": 1
- "than": 5
- "that": 94
- "the": 260
- "them": 1
- "then": 3
- "this": 77
- "thread.": 3
- "through": 3
- "thrown": 1
- "time": 3
- "times.": 4
- "to": 164
- "to.": 7
- "too": 1
- "traditional": 3
- "two": 1
- "type": 23
- "type.": 3
- "typed": 2
- "types": 10
- "typically": 1
- "unique": 12
- "unit": 3
- "unless": 1
- "unlike": 13
- "unpredictable.": 1
- "until": 7
- "up": 25
- "updated": 1
- "updated.": 1
- "upon": 1
- "use": 5
- "used": 19
- "useful": 2
- "user": 2
- "using": 9
- "usually": 1
- "value": 44
- "value.": 2
- "value=": 1
- "values": 4
- "varables": 1
- "version": 3
- "version=": 4
- "versions": 2
- "very": 2
- "via": 8
- "visibility=": 2
- "wait": 3
- "want": 2
- "was": 6
- "way": 2
- "way.": 2
- "we": 1
- "web": 6
- "well": 2
- "when": 38
- "whenever": 18
- "where": 4
- "which": 12
- "whose": 7
- "will": 65
- "with": 23
- "withDelay": 2
- "without": 1
- "work": 2
- "would": 2
- "write": 2
- "writing": 1
- "x": 1
- "x.Foo.Bar.Baz": 1
- "x.SomeProperty": 1
- "xmlns": 2
- "you": 20
- "your": 8
- "XQuery":
- "(": 38
- ")": 38
- "-": 486
- ";": 25
- "</dummy>": 1
- "</namespace>": 1
- "<dummy>": 1
- "<namespace>": 1
- "AST": 2
- "I": 1
- "II": 1
- "III": 1
- "STEP": 3
- "all": 1
- "and": 3
- "ast": 1
- "at": 4
- "bindings": 2
- "boundary": 1
- "c": 1
- "catch": 1
- "choose": 1
- "const": 1
- "contains": 1
- "control": 1
- "core": 1
- "declare": 24
- "declared": 1
- "dflag": 1
- "each": 1
- "element": 1
- "encoding": 1
- "entry": 2
- "enum": 3
- "err": 1
- "eval": 3
- "eval_result": 1
- "explicit": 3
- "for": 1
- "function": 3
- "functions": 1
- "functions.": 1
- "group": 1
- "import": 4
- "imports": 1
- "let": 6
- "library": 1
- "list": 1
- "module": 6
- "name": 1
- "name=": 1
- "namespace": 8
- "namespaces": 5
- "ns": 1
- "option": 1
- "options": 2
- "output": 1
- "p": 2
- "parse": 8
- "parse/*": 1
- "parse/@*": 1
- "pipeline": 8
- "point": 1
- "points": 1
- "preprocess": 1
- "preserve": 1
- "primary": 1
- "results": 1
- "return": 2
- "run": 2
- "run#6": 1
- "saxon": 1
- "serialize": 1
- "serialized_result": 2
- "sort": 1
- "space": 1
- "stdin": 1
- "step": 5
- "tflag": 1
- "try": 1
- "type": 1
- "u": 2
- "util": 1
- "validate": 1
- "variable": 13
- "version": 1
- "viewport": 1
- "xproc": 17
- "xproc.xqm": 1
- "xqm": 1
- "xquery": 1
- "{": 5
- "}": 5
- "XSLT":
- "</body>": 1
- "</h2>": 1
- "</html>": 1
- "</table>": 1
- "</td>": 2
- "</th>": 2
- "</tr>": 2
- "</xsl:for-each>": 1
- "</xsl:stylesheet>": 1
- "</xsl:template>": 1
- "<?xml>": 1
- "<body>": 1
- "<h2>": 1
- "<html>": 1
- "<table>": 1
- "<td>": 2
- "<th>": 2
- "<tr>": 2
- "<xsl:for-each>": 1
- "<xsl:stylesheet>": 1
- "<xsl:template>": 1
- "<xsl:value-of>": 2
- "Artist": 1
- "CD": 1
- "Collection": 1
- "My": 1
- "Title": 1
- "bgcolor=": 1
- "border=": 1
- "match=": 1
- "select=": 3
- "version=": 2
- "xmlns": 1
- "xsl=": 1
- "YAML":
- "-": 16
- "/home/gavin/.rubygems": 1
- "/usr/local/rubygems": 1
- "gem": 1
- "gempath": 1
- "gen": 1
- "inline": 1
- "line": 1
- "local": 1
- "numbers": 1
- "rdoc": 2
- "run": 1
- "source": 1
- "tests": 1
+ 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
+ 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
+ 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
+ replace: 4
+ le_n: 4
+ n0: 4
+ refl_equal: 4
+ pattern: 2
+ case: 2
+ trivial.: 14
+ contradiction: 8
+ le_Sn_n: 5
+ assumption: 3
+ le_S: 6
+ Heq: 8
+ m0: 1
+ HeqS: 3
+ injection: 8
+ HeqS.: 2
+ eq_rect_eq_nat.: 1
+ IHp: 2
+ dep_pair_intro: 2
+ Hx: 24
+ Hy: 17
+ <=n),>: 1
+ x=: 1
+ exist: 7
+ <=>: 9
+ Hy.: 3
+ Heq.: 6
+ le_uniqueness_proof: 1
+ Hy0: 1
+ card: 2
+ card_interval: 1
+ <=n}>: 1
+ proj1_sig: 1
+ proj2_sig: 1
+ Hp: 5
+ Hq: 3
+ Hpq.: 1
+ Hmn.: 1
+ Hmn: 1
+ interval_dec: 1
+ left.: 3
+ dep_pair_intro.: 3
+ right.: 9
+ discriminate: 4
+ le_Sn_le: 2
+ eq_S.: 1
+ Hneq.: 2
+ card_inj_aux: 1
+ g: 6
+ False.: 1
+ Hfbound: 1
+ Hfinj: 1
+ Hgsurj.: 1
+ Hgsurj: 3
+ Hfx: 2
+ le_n_O_eq.: 2
+ Hfbound.: 2
+ Hx.: 4
+ le_lt_dec: 9
+ xSn: 21
+ is: 4
+ bounded: 1
+ injective: 6
+ 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_trans: 4
+ 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
+ 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
+ Setoid: 1
+ Compare_dec: 1
+ ListNotations.: 1
+ Implicit: 15
+ Arguments.: 2
+ Permutation.: 1
+ Permutation: 42
+ perm_nil: 1
+ perm_skip: 1
+ Logic.eq: 2
+ ! '@Permutation': 6
+ iff: 1
+ ! '@In': 1
+ red: 7
+ eauto: 8
+ 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
+ auto.: 48
+ Permutation_cons_append: 1
+ IHl: 8
+ Local: 6
+ 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
+ rev: 7
+ '1': 2
+ Global: 4
+ ! '@rev': 1
+ '2': 2
+ Permutation_length: 2
+ length: 23
+ transitivity: 4
+ ! '@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
+ Permutation_nil_app_cons: 1
+ l4: 3
+ eapply: 7
+ P.: 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
+ do: 5
+ Permutation_length_1_inv: 3
+ Heqm: 5
+ ! '||': 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
+ by: 9
+ in_split: 1
+ Ha: 6
+ H12: 5
+ Ha.: 1
+ NoDup_remove_1: 1
+ eq_add_S: 3
+ app_length: 2
+ arith: 5
+ intuition: 1
+ NoDup_Permutation: 1
+ NoDup: 2
+ exfalso.: 1
+ NoDup_Permutation_bis: 2
+ inversion_clear: 6
+ constructor.: 6
+ intuition.: 2
+ Permutation_NoDup: 1
+ Permutation_map: 1
+ Hf: 15
+ injective_bounded_surjective: 1
+ 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
+ split: 15
+ 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
+ adapt_injective: 1
+ adapt.: 2
+ EQ.: 2
+ LE: 11
+ LT: 14
+ Hf.: 1
+ Lt.le_lt_or_eq: 3
+ LE.: 3
+ EQ: 8
+ lt: 3
+ LT.: 5
+ Lt.S_pred: 3
+ Lt.lt_not_le: 2
+ adapt_ok: 2
+ nth_error_app1: 1
+ nth_error_app2: 1
+ arith.: 8
+ Minus.minus_Sn_m: 1
+ Permutation_nth_error: 2
+ IHP: 1
+ IHP2: 1
+ Hg: 2
+ E.: 2
+ L12: 2
+ app_length.: 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
+ only: 3
+ parsing: 3
+ Omega: 1
+ SetoidList.: 1
+ nil.: 2
+ ..: 4
+ Permut.: 1
+ eqA_equiv: 1
+ eqA.: 1
+ list_contents_app: 5
+ permut_refl: 1
+ permut_sym: 3
+ permut_trans: 4
+ permut_cons_eq: 3
+ meq_left: 1
+ meq_singleton: 1
+ permut_cons: 5
+ permut_app: 1
+ specialize: 6
+ a0.: 1
+ decide: 1
+ permut_add_inside_eq: 1
+ permut_add_cons_inside: 3
+ permut_add_inside: 1
+ permut_middle: 1
+ permut_refl.: 5
+ permut_sym_app: 1
+ permut_rev: 1
+ 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
+ if_eqA: 1
+ contradict: 3
+ if_eqA_rewrite_r: 1
+ A2: 4
+ Hxx: 1
+ multiplicity_InA: 4
+ InA: 8
+ a.: 5
+ multiplicity_InA_O: 2
+ multiplicity_InA_S: 1
+ multiplicity_NoDupA: 1
+ NoDupA: 3
+ NEQ: 1
+ omega: 2
+ compatible: 1
+ permut_InA_InA: 3
+ multiplicity_InA.: 1
+ meq.: 2
+ permut_cons_InA: 4
+ permut_nil: 2
+ Abs: 2
+ permut_length_1: 1
+ discriminate.: 1
+ permut_length_2: 1
+ permut_length_1.: 2
+ ! '@if_eqA_rewrite_l': 2
+ permut_length: 1
+ InA_split: 2
+ h2: 1
+ plus_n_Sm: 1
+ f_equal.: 1
+ 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
+ permut_remove_hd_eq: 1
+ Permutation_impl_permutation: 1
+ permut_eqA: 1
+ Permut_permut.: 1
+ permut_right: 1
+ permut_tran: 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.: 2
+ transitive.: 1
+ Hm: 1
+ le_S_n: 2
+ Sn_le_Sm__n_le_m.: 1
+ 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
+ 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
+ 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
+ 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
+ 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:
+ print: 4
+ (: 54
+ ): 55
+ <%!-->: 1
+ defined: 1
+ in: 3
+ Hello: 2
+ gst: 1
+ <: 1
+ ! '%': 2
+ ! '@': 1
+ params: 1
+ users: 2
+ Collection: 1
+ <User>: 1
+ <%>: 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
+ hello: 1
+ 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
+ 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
+ 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
+ clojure.asm: 1
+ ;: 598
+ import: 66
+ java.lang.reflect.Constructor: 1
+ java.lang.reflect.Method: 1
+ public: 124
+ class: 10
+ Type: 42
+ ! '{': 255
+ final: 54
+ static: 91
+ int: 52
+ 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
+ new: 61
+ (: 724
+ ): 722
+ BOOLEAN_TYPE: 3
+ CHAR_TYPE: 3
+ BYTE_TYPE: 3
+ SHORT_TYPE: 3
+ INT_TYPE: 3
+ FLOAT_TYPE: 3
+ LONG_TYPE: 3
+ DOUBLE_TYPE: 3
+ //: 47
+ private: 35
+ sort: 18
+ char: 13
+ buf: 43
+ 'off': 25
+ len: 24
+ this.sort: 2
+ this.len: 2
+ ! '}': 254
+ this.buf: 2
+ this.off: 1
+ getType: 10
+ String: 32
+ typeDescriptor: 1
+ return: 172
+ typeDescriptor.toCharArray: 1
+ Class: 10
+ c: 21
+ if: 79
+ c.isPrimitive: 2
+ Integer.TYPE: 2
+ else: 28
+ 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
+ name: 10
+ l: 5
+ name.length: 2
+ +: 79
+ name.getChars: 1
+ getArgumentTypes: 2
+ methodDescriptor: 2
+ methodDescriptor.toCharArray: 2
+ size: 8
+ while: 9
+ 'true': 16
+ car: 18
+ break: 1
+ args: 6
+ .len: 1
+ Method: 3
+ method: 3
+ classes: 2
+ method.getParameterTypes: 1
+ types: 3
+ classes.length: 2
+ for: 15
+ i: 54
+ ! '-': 12
+ 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
+ <: 13
+ argumentTypes.length: 1
+ .getDescriptor: 1
+ returnType.getDescriptor: 1
+ void: 20
+ 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
+ boolean: 29
+ equals: 2
+ Object: 31
+ o: 12
+ this: 4
+ instanceof: 14
+ 'false': 9
+ t: 6
+ t.sort: 1
+ Type.OBJECT: 2
+ Type.ARRAY: 2
+ t.len: 1
+ j: 8
+ t.off: 1
+ end: 4
+ t.buf: 1
+ hashCode: 1
+ hc: 4
+ ! '*': 6
+ toString: 1
+ clojure.lang: 1
+ java.lang.ref.Reference: 1
+ java.math.BigInteger: 1
+ java.util.Map: 3
+ java.util.concurrent.ConcurrentHashMap: 1
+ java.lang.ref.SoftReference: 1
+ java.lang.ref.ReferenceQueue: 1
+ Util: 1
+ equiv: 17
+ k1: 40
+ k2: 38
+ 'null': 43
+ Number: 9
+ ! '&&': 6
+ 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
+ Integer: 2
+ 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
+ e: 11
+ 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
+ extends: 7
+ throws: 10
+ T: 2
+ nokogiri.internals: 1
+ 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
+ HtmlDomParserContext: 3
+ XmlDomParserContext: 1
+ Ruby: 22
+ runtime: 30
+ IRubyObject: 14
+ options: 4
+ super: 5
+ encoding: 2
+ ! '@Override': 6
+ protected: 4
+ initErrorHandler: 1
+ options.strict: 1
+ errorHandler: 6
+ NokogiriStrictErrorHandler: 1
+ options.noError: 2
+ options.noWarning: 2
+ 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
+ setProperty: 4
+ java_encoding: 2
+ setFeature: 4
+ enableDocumentFragment: 1
+ XmlDocument: 3
+ getNewEmptyDocument: 1
+ ThreadContext: 2
+ context: 8
+ 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
+ detected_encoding.isNil: 1
+ ruby_encoding: 3
+ charset: 2
+ tryGetCharsetFromHtml5MetaTag: 2
+ stringOrNil: 1
+ htmlDocument.setEncoding: 1
+ htmlDocument.setParsedEncoding: 1
+ .equalsIgnoreCase: 5
+ document.getDocumentElement: 2
+ .getNodeName: 4
+ NodeList: 2
+ list: 1
+ .getChildNodes: 2
+ list.getLength: 1
+ list.item: 2
+ headers: 1
+ 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
+ XNIException: 2
+ attrs.getLength: 1
+ isNamespace: 1
+ attrs.getQName: 1
+ attrs.removeAttributeAt: 1
+ element.uri: 1
+ super.startElement: 2
+ NokogiriErrorHandler: 2
+ element_names: 3
+ isValid: 2
+ testee: 1
+ testee.toCharArray: 1
+ index: 4
+ .length: 1
+ testee.equals: 1
+ 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
+ hudson.Util.fixEmpty: 1
+ Hudson: 5
+ Jenkins: 2
+ transient: 2
+ 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
+ PluginManager: 1
+ pluginManager: 2
+ getJobListeners: 1
+ getComputerListeners: 1
+ Slave: 3
+ getSlave: 1
+ Node: 1
+ n: 3
+ getNode: 1
+ 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
+ ! '@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
+ 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
+ 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
+ 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
+ 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
+ argc: 1
+ ! '*argv': 1
+ NSLog: 3
+ ! '#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
+ 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
+ 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
+ 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
+ MESSAGE: 1
+ 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
+ Parrot Assembly:
+ ! '#': 1
+ /usr/bin/env: 1
+ parrot: 1
+ .pcc_sub: 1
+ main: 2
+ say: 1
+ end: 1
+ Perl:
+ ! '#': 142
+ /usr/bin/env: 1
+ perl: 5
+ use: 47
+ warnings: 10
+ ;: 446
+ strict: 10
+ our: 16
+ VERSION: 12
+ MAIN: 1
+ ! '{': 376
+ if: 96
+ (: 328
+ App: 46
+ Ack: 46
+ ne: 5
+ main: 3
+ ): 322
+ die: 7
+ ! '}': 385
+ my: 142
+ env_is_usable: 3
+ for: 31
+ ! '@ARGV': 6
+ last: 7
+ _: 56
+ eq: 13
+ /: 28
+ ! '-': 436
+ th: 1
+ pt: 1
+ +: 92
+ t: 12
+ ! '&&': 30
+ _thpppt: 2
+ bar: 3
+ _bar: 2
+ 'no': 10
+ env: 54
+ defined: 17
+ unshift: 1
+ read_ackrc: 1
+ else: 18
+ ! '@keys': 2
+ grep: 8
+ ACK_/: 1
+ keys: 6
+ ! '%': 44
+ ENV: 5
+ delete: 4
+ ! '@ENV': 1
+ load_colors: 1
+ exists: 9
+ ACK_SWITCHES: 1
+ warn: 7
+ show_help: 1
+ exit: 4
+ sub: 94
+ opt: 69
+ get_command_line_options: 1
+ ! '|': 32
+ flush: 2
+ input_from_pipe: 4
+ qw: 15
+ f: 5
+ g: 4
+ l: 5
+ and: 36
+ show_filename: 16
+ regex: 13
+ build_regex: 1
+ shift: 74
+ nargs: 2
+ s: 32
+ specify: 1
+ both: 1
+ a: 41
+ one: 5
+ of: 19
+ line: 7
+ or: 23
+ g.: 1
+ foo: 7
+ Defining: 2
+ your: 8
+ own: 2
+ types: 21
+ less: 2
+ r: 7
+ builtin: 2
+ bold: 4
+ green: 2
+ black: 2
+ on_yellow: 2
+ yellow: 2
+ provides: 1
+ simple: 1
+ compilation: 1
+ mode: 1
+ ! '...': 3
+ has: 1
+ the: 77
+ ability: 1
+ to: 42
+ guess: 1
+ what: 6
+ files: 15
+ you: 17
+ want: 5
+ search: 2
+ based: 1
+ 'on': 9
+ major: 2
+ mode.: 1
+ I: 35
+ spend: 1
+ day: 1
+ mostly: 1
+ inside: 1
+ TextMate: 2
+ built: 1
+ in: 18
+ find: 3
+ project: 1
+ sucks: 1
+ with: 12
+ large: 1
+ projects.: 1
+ So: 1
+ hacked: 1
+ command: 4
+ that: 10
+ was: 6
+ using: 4
+ ack.: 1
+ The: 10
+ result: 1
+ is: 29
+ Search: 1
+ Project: 1
+ ack: 16
+ can: 10
+ it: 21
+ here: 2
+ L: 14
+ <http://www.simplicidade.org/notes/archives/2008/03/search_in_proje.html>: 1
+ this: 10
+ Invalid: 2
+ option: 1
+ passed: 1
+ badkey: 1
+ dir: 3
+ dir/: 1
+ file: 13
+ filename: 30
+ n: 26
+ type: 35
+ i: 10
+ may: 2
+ not: 13
+ be: 12
+ negative: 1
+ val: 1
+ ignoring: 1
+ from: 7
+ ext: 7
+ Permission: 1
+ denied: 1
+ b: 4
+ str: 3
+ error: 2
+ y: 5
+ I#7#I: 1
+ ! '#I': 5
+ ! '*': 8
+ ! '&': 12
+ /I: 1
+ .: 54
+ ! '*/': 1
+ .#: 3
+ END_OF_HELP: 2
+ R: 3
+ help: 6
+ ! '*.*s': 1
+ end: 1
+ END_OF_VERSION: 1
+ Binary: 2
+ matches: 5
+ pattern: 2
+ Matched: 1
+ only: 4
+ hidden: 1
+ start_point: 3
+ 'No': 2
+ such: 5
+ directory: 3
+ self: 92
+ return: 60
+ package: 7
+ Repository: 3
+ Basic: 4
+ ! '@ISA': 1
+ new: 24
+ class: 6
+ bless: 6
+ nexted: 3
+ next_resource: 2
+ Resource: 1
+ close: 4
+ File: 20
+ Next: 12
+ '.40': 1
+ Plugin: 1
+ head1: 14
+ NAME: 2
+ A: 2
+ container: 1
+ functions: 2
+ program: 2
+ Version: 1
+ '.94': 1
+ cut: 19
+ COPYRIGHT: 3
+ BEGIN: 3
+ fh: 7
+ ! '*STDOUT': 2
+ type_wanted: 4
+ mappings: 13
+ ignore_dirs: 4
+ output_to_pipe: 5
+ dir_sep_chars: 5
+ is_cygwin: 3
+ is_windows: 4
+ Spec: 2
+ Glob: 1
+ Getopt: 1
+ Long: 1
+ _MTN: 1
+ blib: 1
+ CVS: 2
+ RCS: 1
+ SCCS: 1
+ _darcs: 1
+ _sgbak: 1
+ _build: 1
+ actionscript: 1
+ as: 18
+ mxml: 1
+ ada: 2
+ adb: 1
+ ads: 1
+ asm: 2
+ batch: 1
+ bat: 1
+ cmd: 1
+ binary: 2
+ q: 3
+ 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
+ exts: 3
+ each: 3
+ ref: 19
+ ! '@': 15
+ push: 6
+ mk: 1
+ mak: 1
+ p: 3
+ STDIN: 1
+ O: 2
+ /MSWin32/: 1
+ quotemeta: 2
+ catfile: 1
+ .ackrc: 1
+ _ackrc: 1
+ <: 3
+ after: 12
+ context: 5
+ B: 6
+ before: 1
+ C: 58
+ all: 5
+ break: 5
+ color: 15
+ colour: 2
+ match: 11
+ lineno: 2
+ column: 2
+ follow: 2
+ G: 3
+ group: 2
+ heading: 7
+ h: 2
+ H: 2
+ ignore: 4
+ case: 6
+ invert: 3
+ lines: 2
+ without: 2
+ m: 4
+ max: 7
+ count: 9
+ recurse: 3
+ output: 7
+ pager: 5
+ nopager: 1
+ passthru: 3
+ print0: 3
+ Q: 2
+ literal: 1
+ show: 3
+ smart: 1
+ sort: 2
+ u: 5
+ unrestricted: 2
+ w: 1
+ word: 1
+ regexp: 1
+ dirs: 4
+ noignore: 1
+ version: 3
+ man: 3
+ bundling: 1
+ no_ignore_case: 2
+ See: 4
+ options.: 2
+ must: 2
+ greater: 1
+ than: 3
+ zero: 1
+ All: 4
+ options: 1
+ are: 10
+ invalid.: 1
+ pass_through: 1
+ no_auto_abbrev: 1
+ set: 6
+ c: 3
+ add: 3
+ redefine: 1
+ qq: 6
+ ! '{-': 3
+ -}: 3
+ Builtin: 2
+ cannot: 2
+ changed.: 2
+ delete_type: 3
+ Type: 1
+ does: 1
+ exist: 2
+ creating: 1
+ unless: 18
+ ! '@exts': 4
+ split: 3
+ s/: 10
+ .//: 1
+ ! '||': 18
+ e: 7
+ Cannot: 2
+ append: 1
+ head2: 16
+ Removes: 1
+ internal: 1
+ structures: 1
+ containing: 5
+ information: 1
+ type_wanted.: 1
+ Internal: 1
+ ignoredir_filter: 3
+ Standard: 1
+ filter: 6
+ pass: 2
+ <File::Next>: 1
+ descend_filter.: 1
+ It: 3
+ returns: 8
+ 'true': 4
+ any: 1
+ ones: 1
+ we: 4
+ know: 1
+ ignore.: 1
+ remove_dir_sep: 2
+ path: 16
+ This: 7
+ removes: 1
+ trailing: 1
+ separator: 2
+ there: 1
+ its: 1
+ argument: 1
+ //: 3
+ filetypes: 4
+ Returns: 27
+ list: 3
+ <$filename>: 1
+ could: 2
+ be.: 1
+ For: 1
+ example: 1
+ F: 2
+ <foo.pod>: 1
+ filetype: 1
+ will: 3
+ <undef>: 1
+ 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
+ o: 11
+ open: 2
+ header: 11
+ <$fh>: 1
+ ruby: 1
+ lua: 1
+ erl: 1
+ hp: 1
+ ython: 1
+ d: 6
+ d.: 1
+ b/: 2
+ ba: 1
+ k: 3
+ z: 1
+ sh: 1
+ /i: 2
+ 'false': 2
+ regular: 1
+ expression: 4
+ found.: 2
+ www: 1
+ U: 1
+ tr/: 1
+ x: 4
+ w/: 1
+ nOo_/: 1
+ _get_thpppt: 1
+ print: 16
+ <<: 7
+ ! '*I': 1
+ ! '#.': 3
+ I#: 1
+ ! '#7': 2
+ results.: 1
+ 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: 1
+ immediately: 1
+ non: 1
+ goes: 1
+ pipe: 2
+ finding: 1
+ Only: 1
+ found: 3
+ searching.: 1
+ PATTERN: 1
+ specified.: 1
+ REGEX: 1
+ but: 5
+ 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
+ once: 1
+ VMS: 1
+ vd: 1
+ Term: 3
+ ANSIColor: 4
+ printing: 1
+ qr/: 6
+ 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
+ nmatches: 21
+ 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
+ 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
+ filename.: 1
+ show_types: 1
+ join: 1
+ print_files_with_matches: 2
+ where: 5
+ repo: 3
+ Not: 1
+ working: 1
+ yet: 1
+ thru: 1
+ unchanged: 1
+ ! '@results': 5
+ eval: 3
+ Win32: 3
+ HIDDEN: 1
+ SYSTEM: 1
+ GetAttributes: 1
+ attr: 2
+ ! '@files': 2
+ get_starting_points: 2
+ reference: 14
+ starting: 1
+ argv: 4
+ ! '@what': 7
+ expand_filenames: 1
+ reslash: 1
+ _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
+ Unable: 1
+ going: 1
+ pipe.: 1
+ exit_from_ack: 2
+ Exit: 1
+ application: 6
+ correct: 1
+ code.: 1
+ otherwise: 1
+ number: 1
+ handed: 1
+ argument.: 1
+ rc: 5
+ LICENSE: 2
+ Copyright: 1
+ Andy: 1
+ Lester.: 1
+ free: 2
+ software: 2
+ redistribute: 2
+ and/or: 2
+ modify: 2
+ terms: 2
+ Artistic: 1
+ License: 1
+ v2.0.: 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
+ SEE: 3
+ ALSO: 3
+ <examples/benchmarks/fib.pir>: 1
+ ..: 3
+ Foo: 9
+ Bar: 1
+ ! '@array': 1
+ hash: 12
+ 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
+ croak: 2
+ required: 2
+ 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
+ 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
+ reference.: 3
+ 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
+ empty: 2
+ have: 3
+ get: 6
+ <address>: 1
+ resolve: 1
+ 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
+ <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
+ 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
+ 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
+ <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/local/bin/perl: 1
+ /usr/bin/perl: 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
+ php_help: 1
+ path: 3
+ arg: 1
+ <h3>: 2
+ About: 1
+ </h3>: 2
+ <p>: 1
+ PHP: 19
+ filter: 8
+ module: 3
+ adds: 2
+ your: 3
+ site: 3
+ <a>: 4
+ href=: 4
+ text: 5
+ formats: 1
+ </a>: 4
+ ability: 1
+ field: 78
+ format: 5
+ 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
+ fields: 65
+ </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
+ it: 3
+ 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
+ found: 2
+ 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
+ other: 2
+ 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
+ Field: 3
+ FormField: 1
+ ArrayAccess: 1
+ button: 4
+ DOMNode: 2
+ node: 4
+ initialize: 1
+ getFormNode: 1
+ setValues: 1
+ getValues: 2
+ 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
+ relational: 2
+ mapper: 2
+ DBO: 2
+ backed: 2
+ mapping: 1
+ database: 4
+ tables: 1
+ 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
+ sets: 1
+ than: 1
+ copied: 1
+ property: 1
+ object.: 1
+ Returns: 1
+ //book.cakephp.org/2.0/en/models/saving: 1
+ 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
+ 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
+ Parrot Internal Representation:
+ ! '#': 1
+ /usr/bin/env: 1
+ parrot: 1
+ .sub: 1
+ main: 1
+ say: 1
+ .end: 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
+ 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
+ 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
+ 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
+ Tea:
+ <%>: 1
+ template: 1
+ foo: 1
+ 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
+ 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
+ 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
+ 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
+ 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
+ Ceylon: 50
+ CoffeeScript: 2340
+ Coq: 17450
+ C++: 7788
+ 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
+ Objective-C: 28134
+ OCaml: 261
+ Opa: 32
+ OpenCL: 88
+ OpenEdge ABL: 717
+ Parrot Assembly: 8
+ Perl: 7231
+ PHP: 12292
+ Parrot Internal Representation: 7
+ PowerShell: 14
+ Prolog: 61
+ Python: 4357
+ R: 14
+ Racket: 246
+ Rebol: 5
+ Ruby: 3539
+ Rust: 8
+ Sass: 28
+ Scala: 352
+ Scheme: 3549
+ Scilab: 71
+ SCSS: 39
+ Shell: 264
+ Standard ML: 220
+ SuperCollider: 139
+ Tea: 3
+ TeX: 1073
+ Turing: 45
+ Verilog: 3440
+ VHDL: 42
+ VimL: 20
+ Visual Basic: 294
+ XML: 5627
+ XQuery: 801
+ XSLT: 44
+ YAML: 30
+languages:
+ Apex: 6
+ AppleScript: 2
+ Arduino: 1
+ AutoHotkey: 1
+ C: 18
+ Ceylon: 1
+ CoffeeScript: 9
+ Coq: 12
+ C++: 14
+ 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
+ Objective-C: 20
+ OCaml: 1
+ Opa: 2
+ OpenCL: 1
+ OpenEdge ABL: 5
+ Parrot Assembly: 1
+ Perl: 12
+ PHP: 6
+ Parrot Internal Representation: 1
+ PowerShell: 2
+ Prolog: 1
+ Python: 4
+ R: 1
+ Racket: 2
+ Rebol: 1
+ Ruby: 14
+ Rust: 1
+ Sass: 1
+ Scala: 2
+ Scheme: 1
+ Scilab: 3
+ SCSS: 1
+ Shell: 11
+ Standard ML: 2
+ SuperCollider: 1
+ Tea: 1
+ TeX: 1
+ Turing: 1
+ Verilog: 13
+ VHDL: 1
+ VimL: 2
+ Visual Basic: 1
+ XML: 3
+ XQuery: 1
+ XSLT: 1
+ YAML: 1
+md5: !binary |-
+ NThmMGEzMjkwOTY0ZWU1Mzc5NDBjMzY4NjU1OWJhMzc=