diff --git a/samples/CoffeeScript/empty.coffee b/.gitattributes similarity index 100% rename from samples/CoffeeScript/empty.coffee rename to .gitattributes diff --git a/.gitignore b/.gitignore index 243eb9ab..4c0e6662 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,7 @@ -Gemfile.lock +/Gemfile.lock .bundle/ -vendor/ benchmark/ lib/linguist/samples.json +/grammars +/node_modules +test/fixtures/ace_modes.json diff --git a/.travis.yml b/.travis.yml index 1f4c61e5..7b013349 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,13 @@ before_install: - git fetch origin master:master - git fetch origin v2.0.0:v2.0.0 + - git fetch origin test/attributes:test/attributes + - git fetch origin test/master:test/master - sudo apt-get install libicu-dev -y rvm: - 1.9.3 - 2.0.0 - - 2.1.1 + - 2.1 + - 2.2 notifications: disabled: true diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 00000000..d0884dab --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,31 @@ +## Contributing + +The majority of contributions won't need to touch any Ruby code at all. The [master language list][languages] is just a YAML configuration file. + +Almost all bug fixes or new language additions should come with some additional code samples. Just drop them under [`samples/`][samples] in the correct subdirectory and our test suite will automatically test them. In most cases you shouldn't need to add any new assertions. + +### My code is detected as the wrong language + +This can usually be solved either by adding a new filename or file name extension to the language's entry in [`languages.yml`][languages] or adding more [samples][samples] for your language to the repository to make Linguist's classifier smarter. + +### Syntax highlighting looks wrong + +Assuming your code is being detected as the right language (see above), in most cases this is due to a bug in the language grammar rather than a bug in Linguist. [`grammars.yml`][grammars] lists all the grammars we use for syntax highlighting on github.com. Find the one corresponding to your code's programming language and submit a bug report upstream. + +You can also try to fix the bug yourself and submit a Pull Request. [This piece from TextMate's documentation](http://manual.macromates.com/en/language_grammars) offers a good introduction on how to work with TextMate-compatible grammars. You can test grammars using [Lightshow](https://lightshow.githubapp.com). + +Once the bug has been fixed upstream, please let us know and we'll pick it up for GitHub. + +### I want to add support for the `X` programming language + +Great! You'll need to: + +0. Add an entry for your language to [`languages.yml`][languages]. +0. Add a grammar for your language to [`grammars.yml`][grammars] by running `script/download-grammars --add URL`. Please only add grammars that have a license that permits redistribution. +0. Add samples for your language to the [samples directory][samples]. + +We try only to add languages once they have some usage on GitHub, so please note in-the-wild usage examples in your pull request. In most cases we prefer that languages already be in use in hundreds of repositories before supporting them in Linguist. + +[grammars]: /grammars.yml +[languages]: /lib/linguist/languages.yml +[samples]: /samples diff --git a/Gemfile b/Gemfile index 851fabc2..95769569 100644 --- a/Gemfile +++ b/Gemfile @@ -1,2 +1,5 @@ source 'https://rubygems.org' -gemspec +gemspec :name => "github-linguist" +gemspec :name => "github-linguist-grammars" +gem 'test-unit', require: false if RUBY_VERSION >= '2.2' +gem 'byebug' if RUBY_VERSION >= '2.0' diff --git a/README.md b/README.md index a51dc919..5eaa2f20 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,14 @@ # Linguist -We use this library at GitHub to detect blob languages, highlight code, ignore binary files, suppress generated files in diffs, and generate language breakdown graphs. +We use this library at GitHub to detect blob languages, ignore binary files, suppress generated files in diffs, and generate language breakdown graphs. + +Tips for filing issues and creating pull requests can be found in [`CONTRIBUTING.md`](/CONTRIBUTING.md). ## Features ### Language detection -Linguist defines a list of all languages known to GitHub in a [yaml file](https://github.com/github/linguist/blob/master/lib/linguist/languages.yml). In order for a file to be highlighted, a language and a lexer must be defined there. +Linguist defines a list of all languages known to GitHub in a [yaml file](https://github.com/github/linguist/blob/master/lib/linguist/languages.yml). Most languages are detected by their file extension. For disambiguating between files with common extensions, we first apply some common-sense heuristics to pick out obvious languages. After that, we use a [statistical @@ -24,7 +26,9 @@ See [lib/linguist/language.rb](https://github.com/github/linguist/blob/master/li ### Syntax Highlighting -The actual syntax highlighting is handled by our Pygments wrapper, [pygments.rb](https://github.com/tmm1/pygments.rb). It also provides a [Lexer abstraction](https://github.com/tmm1/pygments.rb/blob/master/lib/pygments/lexer.rb) that determines which highlighter should be used on a file. +Syntax highlighting in GitHub is performed using TextMate-compatible grammars. These are the same grammars that TextMate, Sublime Text and Atom use. + +Every language in `languages.yml` is mapped to its corresponding TM `scope`. This scope will be used when picking up a grammar for highlighting. **When adding a new language to Linguist, please add its corresponding scope too (assuming there's an existing TextMate bundle, Sublime Text package, or Atom package) so syntax highlighting works for it**. ### Stats @@ -32,33 +36,57 @@ The Language stats bar that you see on every repository is built by aggregating The repository stats API, accessed through `#languages`, can be used on a directory: +***API UPDATE*** + +Since [Version 3.0.0](https://github.com/github/linguist/releases/tag/v3.0.0) Linguist expects a git repository (in the form of a [Rugged::Repository](https://github.com/libgit2/rugged#repositories)) to be passed when initializing `Linguist::Repository`. + + ```ruby -project = Linguist::Repository.from_directory(".") -project.language.name #=> "Ruby" -project.languages #=> { "Ruby" => 0.98, "Shell" => 0.02 } +require 'rugged' +require 'linguist' + +repo = Rugged::Repository.new('.') +project = Linguist::Repository.new(repo, repo.head.target_id) +project.language #=> "Ruby" +project.languages #=> { "Ruby" => 119387 } ``` These stats are also printed out by the `linguist` binary. You can use the `--breakdown` flag, and the binary will also output the breakdown of files by language. -You can try running `linguist` on the `lib/` directory in this repository itself: +You can try running `linguist` on the root directory in this repository itself: - $ bundle exec linguist lib/ --breakdown + $ bundle exec linguist --breakdown 100.00% Ruby Ruby: - linguist/blob_helper.rb - linguist/classifier.rb - linguist/file_blob.rb - linguist/generated.rb - linguist/heuristics.rb - linguist/language.rb - linguist/md5.rb - linguist/repository.rb - linguist/samples.rb - linguist/tokenizer.rb - linguist.rb + Gemfile + Rakefile + bin/linguist + github-linguist.gemspec + lib/linguist.rb + lib/linguist/blob_helper.rb + lib/linguist/classifier.rb + lib/linguist/file_blob.rb + lib/linguist/generated.rb + lib/linguist/heuristics.rb + lib/linguist/language.rb + lib/linguist/lazy_blob.rb + lib/linguist/md5.rb + lib/linguist/repository.rb + lib/linguist/samples.rb + lib/linguist/tokenizer.rb + lib/linguist/version.rb + test/test_blob.rb + test/test_classifier.rb + test/test_heuristics.rb + test/test_language.rb + test/test_md5.rb + test/test_pedantic.rb + test/test_repository.rb + test/test_samples.rb + test/test_tokenizer.rb #### Ignore vendored files @@ -80,9 +108,34 @@ Linguist::FileBlob.new("underscore.min.js").generated? # => true See [Linguist::Generated#generated?](https://github.com/github/linguist/blob/master/lib/linguist/generated.rb). +## Overrides + +Linguist supports custom overrides for language definitions and vendored paths. Add a `.gitattributes` file to your project using the keys `linguist-language` and `linguist-vendored` with the standard git-style path matchers for the files you want to override. + +Please note that the overrides currently only affect the language statistics for a repository and not the syntax-highlighting of files. + +``` +$ cat .gitattributes +*.rb linguist-language=Java + +$ linguist --breakdown +100.00% Java + +Java: +ruby_file.rb +``` + +By default, Linguist treats all of the paths defined in [lib/linguist/vendor.yml](https://github.com/github/linguist/blob/master/lib/linguist/vendor.yml) as vendored and therefore doesn't include them in the language statistics for a repository. Use the `linguist-vendored` attribute to vendor or un-vendor paths. + +``` +$ cat .gitattributes +special-vendored-path/* linguist-vendored +jquery.js linguist-vendored=false +``` + ## Installation -github.com is usually running the latest version of the `github-linguist` gem that is released on [RubyGems.org](http://rubygems.org/gems/github-linguist). +Github.com is usually running the latest version of the `github-linguist` gem that is released on [RubyGems.org](http://rubygems.org/gems/github-linguist). But for development you are going to want to checkout out the source. To get it, clone the repo and run [Bundler](http://gembundler.com/) to install its dependencies. @@ -94,14 +147,6 @@ To run the tests: bundle exec rake test -## Contributing - -The majority of contributions won't need to touch any Ruby code at all. The [master language list](https://github.com/github/linguist/blob/master/lib/linguist/languages.yml) is just a YAML configuration file. - -We try to only add languages once they have some usage on GitHub, so please note in-the-wild usage examples in your pull request. - -Almost all bug fixes or new language additions should come with some additional code samples. Just drop them under [`samples/`](https://github.com/github/linguist/tree/master/samples) in the correct subdirectory and our test suite will automatically test them. In most cases you shouldn't need to add any new assertions. - ### A note on language extensions Linguist has a number of methods available to it for identifying the language of a particular file. The initial lookup is based upon the extension of the file, possible file extensions are defined in an array called `extensions`. Take a look at this example for example for `Perl`: @@ -141,7 +186,7 @@ If you are the current maintainer of this gem: 0. Ensure that tests are green: `bundle exec rake test` 0. Bump gem version in `lib/linguist/version.rb`. For example, [like this](https://github.com/github/linguist/commit/8d2ea90a5ba3b2fe6e1508b7155aa4632eea2985). 0. Make a PR to github/linguist. For example, [#1238](https://github.com/github/linguist/pull/1238). - 0. Build a local gem: `gem build github-linguist.gemspec` + 0. Build a local gem: `bundle exec rake build_gem` 0. Testing: 0. Bump the Gemfile and Gemfile.lock versions for an app which relies on this gem 0. Install the new gem locally diff --git a/Rakefile b/Rakefile index 60e3565a..068af0bb 100644 --- a/Rakefile +++ b/Rakefile @@ -1,15 +1,16 @@ -require 'json' +require 'bundler/setup' require 'rake/clean' require 'rake/testtask' require 'yaml' -require 'pry' +require 'yajl' +require 'open-uri' task :default => :test Rake::TestTask.new -# Extend test task to check for samples -task :test => :check_samples +# Extend test task to check for samples and fetch latest Ace modes +task :test => [:check_samples, :fetch_ace_modes] desc "Check that we have samples.json generated" task :check_samples do @@ -18,21 +19,39 @@ task :check_samples do end end +desc "Fetch the latest Ace modes from its GitHub repository" +task :fetch_ace_modes do + ACE_FIXTURE_PATH = File.join('test', 'fixtures', 'ace_modes.json') + + File.delete(ACE_FIXTURE_PATH) if File.exist?(ACE_FIXTURE_PATH) + + begin + ace_github_modes = open("https://api.github.com/repos/ajaxorg/ace/contents/lib/ace/mode").read + File.write(ACE_FIXTURE_PATH, ace_github_modes) + rescue OpenURI::HTTPError, SocketError + # no internet? no problem. + end +end + task :samples do require 'linguist/samples' - require 'yajl' - data = Linguist::Samples.data - json = Yajl::Encoder.encode(data, :pretty => true) - File.open('lib/linguist/samples.json', 'w') { |io| io.write json } + json = Yajl.dump(Linguist::Samples.data, :pretty => true) + File.write 'lib/linguist/samples.json', json end task :build_gem => :samples do languages = YAML.load_file("lib/linguist/languages.yml") - File.write("lib/linguist/languages.json", JSON.dump(languages)) + File.write("lib/linguist/languages.json", Yajl.dump(languages)) `gem build github-linguist.gemspec` File.delete("lib/linguist/languages.json") end +task :build_grammars_gem do + rm_rf "grammars" + sh "script/download-grammars" + sh "gem", "build", "github-linguist-grammars.gemspec" +end + namespace :benchmark do benchmark_path = "benchmark/results" @@ -72,11 +91,11 @@ namespace :benchmark do reference_file = ENV["REFERENCE"] candidate_file = ENV["CANDIDATE"] - reference = JSON.parse(File.read(reference_file)) + reference = Yajl.load(File.read(reference_file)) reference_counts = Hash.new(0) reference.each { |filename, language| reference_counts[language] += 1 } - candidate = JSON.parse(File.read(candidate_file)) + candidate = Yajl.load(File.read(candidate_file)) candidate_counts = Hash.new(0) candidate.each { |filename, language| candidate_counts[language] += 1 } @@ -126,14 +145,12 @@ namespace :classifier do def each_public_gist require 'open-uri' - require 'json' - url = "https://api.github.com/gists/public" loop do resp = open(url) url = resp.meta['link'][/<([^>]+)>; rel="next"/, 1] - gists = JSON.parse(resp.read) + gists = Yajl.load(resp.read) for gist in gists for filename, attrs in gist['files'] diff --git a/github-linguist-grammars.gemspec b/github-linguist-grammars.gemspec new file mode 100644 index 00000000..429b3ff1 --- /dev/null +++ b/github-linguist-grammars.gemspec @@ -0,0 +1,14 @@ +require File.expand_path('../lib/linguist/version', __FILE__) + +Gem::Specification.new do |s| + s.name = 'github-linguist-grammars' + s.version = Linguist::VERSION + s.summary = "Language grammars for use with github-linguist" + + s.authors = "GitHub" + s.homepage = "https://github.com/github/linguist" + + s.files = ['lib/linguist/grammars.rb'] + Dir['grammars/*'] + + s.add_development_dependency 'plist', '~>3.1' +end diff --git a/github-linguist.gemspec b/github-linguist.gemspec index 382b6cae..578e823c 100644 --- a/github-linguist.gemspec +++ b/github-linguist.gemspec @@ -10,16 +10,14 @@ Gem::Specification.new do |s| s.homepage = "https://github.com/github/linguist" s.license = "MIT" - s.files = Dir['lib/**/*'] + s.files = Dir['lib/**/*'] - ['lib/linguist/grammars.rb'] s.executables << 'linguist' s.add_dependency 'charlock_holmes', '~> 0.7.3' s.add_dependency 'escape_utils', '~> 1.0.1' - s.add_dependency 'mime-types', '~> 1.19' - s.add_dependency 'pygments.rb', '~> 0.6.0' - s.add_dependency 'rugged', '~> 0.21.0' + s.add_dependency 'mime-types', '>= 1.19' + s.add_dependency 'rugged', '~> 0.22.0b4' - s.add_development_dependency 'json' s.add_development_dependency 'mocha' s.add_development_dependency 'pry' s.add_development_dependency 'rake' diff --git a/grammars.yml b/grammars.yml new file mode 100644 index 00000000..1bedce80 --- /dev/null +++ b/grammars.yml @@ -0,0 +1,422 @@ +--- +http://svn.edgewall.org/repos/genshi/contrib/textmate/Genshi.tmbundle/Syntaxes/Markup%20Template%20%28XML%29.tmLanguage: +- text.xml.genshi +http://svn.textmate.org/trunk/Review/Bundles/BlitzMax.tmbundle: +- source.blitzmax +http://svn.textmate.org/trunk/Review/Bundles/Cython.tmbundle: +- source.cython +http://svn.textmate.org/trunk/Review/Bundles/Forth.tmbundle: +- source.forth +http://svn.textmate.org/trunk/Review/Bundles/Parrot.tmbundle: +- source.parrot.pir +http://svn.textmate.org/trunk/Review/Bundles/Ruby%20Sass.tmbundle: +- source.sass +http://svn.textmate.org/trunk/Review/Bundles/SecondLife%20LSL.tmbundle: +- source.lsl +http://svn.textmate.org/trunk/Review/Bundles/VHDL.tmbundle: +- source.vhdl +http://svn.textmate.org/trunk/Review/Bundles/XQuery.tmbundle: +- source.xquery +https://bitbucket.org/Clams/sublimesystemverilog/get/default.tar.gz: +- source.systemverilog +- source.ucfconstraints +https://bitbucket.org/bitlang/sublime_cobol/raw/b0e9c44ac5f7a2fb553421aa986b35854cbfda4a/COBOL.tmLanguage: +- source.cobol +https://fan.googlecode.com/hg-history/Build%201.0.55/adm/tools/textmate/Fan.tmbundle/Syntaxes/Fan.tmLanguage: +- source.fan +https://github.com/AlanQuatermain/go-tmbundle: +- source.go +https://github.com/Anomareh/PHP-Twig.tmbundle: +- text.html.twig +https://github.com/Cirru/sublime-cirru/raw/master/Cirru.tmLanguage: +- source.cirru +https://github.com/Cykey/Sublime-Logos: +- source.logos +https://github.com/Drako/SublimeBrainfuck/raw/master/Brainfuck.tmLanguage: +- source.bf +https://github.com/JohnNilsson/awk-sublime/raw/master/AWK.tmLanguage: +- source.awk +https://github.com/JonBons/Sublime-SQF-Language: +- source.sqf +https://github.com/MarioRicalde/SCSS.tmbundle: +- source.scss +https://github.com/Oldes/Sublime-REBOL: +- source.rebol +https://github.com/PogiNate/Sublime-Inform: +- source.Inform7 +https://github.com/Red-Nova-Technologies/autoitv3-tmbundle: +- source.autoit.3 +https://github.com/SalGnt/Sublime-VimL: +- source.viml +https://github.com/Shammah/boo-sublime/raw/master/Boo.tmLanguage: +- source.boo +https://github.com/SublimeText/ColdFusion: +- source.cfscript +- source.cfscript.cfc +- text.cfml.basic +- text.html.cfm +https://github.com/SublimeText/NSIS: +- source.nsis +https://github.com/Varriount/NimLime: +- source.nimrod +- source.nimrod_filter +- source.nimrodcfg +https://github.com/alkemist/gradle.tmbundle: +- source.groovy.gradle +https://github.com/ambethia/Sublime-Loom: +- source.loomscript +https://github.com/angryant0007/VBDotNetSyntax: +- source.vbnet +https://github.com/anunayk/cool-tmbundle: +- source.cool +https://github.com/aroben/ada.tmbundle/raw/c45eed4d5f98fe3bcbbffbb9e436601ab5bbde4b/Syntaxes/Ada.plist: +- source.ada +https://github.com/aroben/ruby.tmbundle@4636a3023153c3034eb6ffc613899ba9cf33b41f: +- source.ruby +- text.html.erb +https://github.com/asbjornenge/Docker.tmbundle: +- source.dockerfile +https://github.com/atom/language-clojure: +- source.clojure +https://github.com/atom/language-coffee-script: +- source.coffee +- source.litcoffee +https://github.com/atom/language-csharp: +- source.cs +- source.csx +- source.nant-build +https://github.com/atom/language-javascript: +- source.js +- source.js.regexp +https://github.com/atom/language-python: +- source.python +- source.regexp.python +- text.python.traceback +https://github.com/atom/language-shellscript: +- source.shell +- text.shell-session +https://github.com/austinwagner/sublime-sourcepawn: +- source.sp +https://github.com/bfad/Sublime-Lasso: +- file.lasso +https://github.com/bholt/chapel-tmbundle: +- source.chapel +https://github.com/brandonwamboldt/sublime-nginx: +- source.nginx +https://github.com/bro/bro-sublime: +- source.bro +https://github.com/carsonoid/sublime_man_page_support/raw/master/man-groff.tmLanguage: +- text.groff +https://github.com/ccreutzig/sublime-MuPAD: +- source.mupad +https://github.com/cdwilson/nesC.tmbundle: +- source.nesc +https://github.com/christophevg/racket-tmbundle: +- source.racket +https://github.com/clemos/haxe-sublime-bundle: +- source.erazor +- source.haxe.2 +- source.hss.1 +- source.hxml +- source.nmml +https://github.com/cucumber/cucumber-tmbundle: +- source.ruby.rspec.cucumber.steps +- text.gherkin.feature +https://github.com/daaain/Handlebars/raw/master/Handlebars.tmLanguage: +- text.html.handlebars +https://github.com/davidpeckham/powershell.tmbundle: +- source.powershell +https://github.com/davidrios/jade-tmbundle: +- source.jade +- source.pyjade +https://github.com/elixir-lang/elixir-tmbundle: +- source.elixir +- text.elixir +- text.html.elixir +https://github.com/ericzou/ebundles/raw/master/Bundles/MSDOS%20batch%20file.tmbundle/Syntaxes/MSDOS%20batch%20file.tmLanguage: +- source.dosbatch +https://github.com/euler0/sublime-glsl/raw/master/GLSL.tmLanguage: +- source.glsl +https://github.com/fancy-lang/fancy-tmbundle: +- source.fancy +https://github.com/fsharp/fsharpbinding: +- source.fsharp +https://github.com/gingerbeardman/monkey.tmbundle: +- source.monkey +https://github.com/guillermooo/dart-sublime-bundle/raw/master/Dart.tmLanguage: +- source.dart +https://github.com/harrism/sublimetext-cuda-cpp/raw/master/cuda-c%2B%2B.tmLanguage: +- source.cuda-c++ +https://github.com/hww3/pike-textmate: +- source.pike +https://github.com/jeancharles-roger/ceylon-sublimetext/raw/master/Ceylon.tmLanguage: +- source.ceylon +https://github.com/jfairbank/Sublime-Text-2-OpenEdge-ABL: +- source.abl +https://github.com/jhasse/sublime-rust: +- source.rust +https://github.com/johanasplund/sublime-befunge/raw/master/Befunge-93.tmLanguage: +- source.befunge +https://github.com/joshaven/RDoc.tmbundle: +- text.rdoc +https://github.com/jpcamara/Textmate-Gosu-Bundle/raw/master/Gosu.tmbundle/Syntaxes/Gosu.tmLanguage: +- source.gosu.2 +https://github.com/kswedberg/jquery-tmbundle: +- source.js.jquery +https://github.com/laughedelic/sublime-idris/raw/master/Idris.tmLanguage: +- source.idris +https://github.com/lavrton/sublime-better-typescript: +- source.ts +https://github.com/leafo/moonscript-tmbundle: +- source.moonscript +https://github.com/lsf37/Isabelle.tmbundle: +- source.isabelle.theory +https://github.com/lunixbochs/x86-assembly-textmate-bundle: +- source.asm.x86 +https://github.com/macekond/Alloy.tmbundle: +- source.alloy +https://github.com/mads379/opa.tmbundle: +- source.opa +https://github.com/mads379/scala.tmbundle: +- source.sbt +- source.scala +https://github.com/marconi/mako-tmbundle: +- text.html.mako +https://github.com/mattfoster/gnuplot-tmbundle: +- source.gnuplot +https://github.com/mgalloy/idl.tmbundle: +- source.idl +- source.idl-dlm +- text.idl-idldoc +https://github.com/michaeledgar/protobuf-tmbundle: +- source.protobuf +https://github.com/mkolosick/Sublime-Coq/raw/master/Coq.tmLanguage: +- source.coq +https://github.com/mokus0/Agda.tmbundle: +- source.agda +https://github.com/nanoant/Julia.tmbundle: +- source.julia +https://github.com/nanoant/assembly.tmbundle/raw/master/Syntaxes/objdump%20C%2B%2B.tmLanguage: +- objdump.x86asm +https://github.com/nilium/ooc.tmbundle: +- source.ooc +https://github.com/paulmillr/LiveScript.tmbundle: +- source.livescript +https://github.com/pferruggiaro/sublime-tea: +- source.tea +https://github.com/puppet-textmate-bundle/puppet-textmate-bundle: +- source.puppet +https://github.com/pvl/abap.tmbundle: +- source.abap +https://github.com/scalate/Scalate.tmbundle: +- source.scaml +- text.html.ssp +https://github.com/shadanan/mathematica-tmbundle: +- source.mathematica +https://github.com/shellderp/sublime-robot-plugin: +- text.robot +https://github.com/simongregory/actionscript3-tmbundle: +- source.actionscript.3 +- text.html.asdoc +- text.xml.flex-config +https://github.com/skozlovf/Sublime-QML: +- source.qml +https://github.com/slash-lang/Slash.tmbundle: +- text.html.slash +https://github.com/slavapestov/factor/raw/master/misc/Factor.tmbundle/Syntaxes/Factor.tmLanguage: +- source.factor +https://github.com/slim-template/ruby-slim.tmbundle: +- text.slim +https://github.com/staltz/SublimeXtend: +- source.xtend +https://github.com/statatmbundle/Stata.tmbundle: +- source.mata +- source.stata +https://github.com/technosophos/Vala-TMBundle: +- source.vala +https://github.com/textmate/ant.tmbundle: +- text.xml.ant +https://github.com/textmate/antlr.tmbundle: +- source.antlr +https://github.com/textmate/apache.tmbundle: +- source.apache-config +- source.apache-config.mod_perl +https://github.com/textmate/applescript.tmbundle: +- source.applescript +https://github.com/textmate/asp.tmbundle: +- source.asp +- text.html.asp +https://github.com/textmate/bison.tmbundle: +- source.bison +https://github.com/textmate/c.tmbundle: +- source.c +- source.c++ +- source.c.platform +https://github.com/textmate/capnproto.tmbundle: +- source.capnp +https://github.com/textmate/cmake.tmbundle: +- source.cache.cmake +- source.cmake +https://github.com/textmate/cpp-qt.tmbundle: +- source.c++.qt +- source.qmake +https://github.com/textmate/css.tmbundle: +- source.css +https://github.com/textmate/d.tmbundle: +- source.d +https://github.com/textmate/diff.tmbundle: +- source.diff +https://github.com/textmate/dylan.tmbundle: +- source.dylan +- source.lid +- source.makegen +https://github.com/textmate/eiffel.tmbundle: +- source.eiffel +https://github.com/textmate/erlang.tmbundle: +- source.erlang +- text.html.erlang.yaws +https://github.com/textmate/fortran.tmbundle: +- source.fortran +- source.fortran.modern +https://github.com/textmate/gettext.tmbundle: +- source.po +https://github.com/textmate/graphviz.tmbundle: +- source.dot +https://github.com/textmate/groovy.tmbundle: +- source.groovy +https://github.com/textmate/haskell.tmbundle: +- source.haskell +- text.tex.latex.haskell +https://github.com/textmate/html.tmbundle: +- text.html.basic +https://github.com/textmate/ini.tmbundle: +- source.ini +https://github.com/textmate/io.tmbundle: +- source.io +https://github.com/textmate/java.tmbundle: +- source.java +- source.java-properties +- text.html.jsp +- text.junit-test-report +https://github.com/textmate/javadoc.tmbundle: +- text.html.javadoc +https://github.com/textmate/javascript-objective-j.tmbundle: +- source.js.objj +https://github.com/textmate/json.tmbundle: +- source.json +https://github.com/textmate/latex.tmbundle: +- text.bibtex +- text.log.latex +- text.tex +- text.tex.latex +- text.tex.latex.beamer +- text.tex.latex.memoir +https://github.com/textmate/less.tmbundle: +- source.css.less +https://github.com/textmate/lilypond.tmbundle: +- source.lilypond +https://github.com/textmate/lisp.tmbundle: +- source.lisp +https://github.com/textmate/logtalk.tmbundle: +- source.logtalk +https://github.com/textmate/lua.tmbundle: +- source.lua +https://github.com/textmate/make.tmbundle: +- source.makefile +https://github.com/textmate/markdown.tmbundle: +- text.html.markdown +https://github.com/textmate/matlab.tmbundle: +- source.matlab +- source.octave +https://github.com/textmate/maven.tmbundle: +- text.xml.pom +https://github.com/textmate/nemerle.tmbundle: +- source.nemerle +https://github.com/textmate/ninja.tmbundle: +- source.ninja +https://github.com/textmate/objective-c.tmbundle: +- source.objc +- source.objc++ +- source.objc.platform +- source.strings +https://github.com/textmate/ocaml.tmbundle: +- source.camlp4.ocaml +- source.ocaml +- source.ocamllex +- source.ocamlyacc +https://github.com/textmate/pascal.tmbundle: +- source.pascal +https://github.com/textmate/perl.tmbundle: +- source.perl +https://github.com/textmate/php-smarty.tmbundle: +- source.smarty +https://github.com/textmate/php.tmbundle: +- text.html.php +https://github.com/textmate/postscript.tmbundle: +- source.postscript +https://github.com/textmate/processing.tmbundle: +- source.processing +https://github.com/textmate/prolog.tmbundle: +- source.prolog +https://github.com/textmate/python-django.tmbundle: +- source.python.django +- text.html.django +https://github.com/textmate/r.tmbundle: +- source.r +- text.tex.latex.rd +https://github.com/textmate/restructuredtext.tmbundle: +- text.restructuredtext +https://github.com/textmate/ruby-haml.tmbundle: +- text.haml +https://github.com/textmate/ruby-on-rails-tmbundle: +- source.js.erb.rails +- source.ruby.rails +- source.ruby.rails.rjs +- source.sql.ruby +- text.html.erb.rails +https://github.com/textmate/scheme.tmbundle: +- source.scheme +https://github.com/textmate/scilab.tmbundle: +- source.scilab +https://github.com/textmate/sql.tmbundle: +- source.sql +https://github.com/textmate/standard-ml.tmbundle: +- source.cm +- source.ml +https://github.com/textmate/swift.tmbundle: +- source.swift +https://github.com/textmate/tcl.tmbundle: +- source.tcl +- text.html.tcl +https://github.com/textmate/text.tmbundle: +- text.plain +https://github.com/textmate/textile.tmbundle: +- text.html.textile +https://github.com/textmate/textmate.tmbundle: +- source.regexp.oniguruma +- source.tm-properties +https://github.com/textmate/thrift.tmbundle: +- source.thrift +https://github.com/textmate/toml.tmbundle: +- source.toml +https://github.com/textmate/verilog.tmbundle: +- source.verilog +https://github.com/textmate/xml.tmbundle: +- text.xml +- text.xml.xsl +https://github.com/textmate/yaml.tmbundle: +- source.yaml +https://github.com/tomas-stefano/smalltalk-tmbundle: +- source.smalltalk +https://github.com/vic/ioke-outdated/raw/master/share/TextMate/Ioke.tmbundle/Syntaxes/Ioke.tmLanguage: +- source.ioke +https://github.com/vkostyukov/kotlin-sublime-package: +- source.Kotlin +https://github.com/vmg/zephir-sublime: +- source.php.zephir +https://github.com/whitequark/llvm.tmbundle: +- source.llvm +https://github.com/wmertens/sublime-nix: +- source.nix +https://raw.githubusercontent.com/eregon/oz-tmbundle/master/Syntaxes/Oz.tmLanguage: +- source.oz diff --git a/lib/linguist.rb b/lib/linguist.rb index 3714b5a0..ff9fc3a2 100644 --- a/lib/linguist.rb +++ b/lib/linguist.rb @@ -4,4 +4,5 @@ require 'linguist/heuristics' require 'linguist/language' require 'linguist/repository' require 'linguist/samples' +require 'linguist/shebang' require 'linguist/version' diff --git a/lib/linguist/blob_helper.rb b/lib/linguist/blob_helper.rb index 84aa2281..c368b4d0 100644 --- a/lib/linguist/blob_helper.rb +++ b/lib/linguist/blob_helper.rb @@ -2,7 +2,6 @@ require 'linguist/generated' require 'charlock_holmes' require 'escape_utils' require 'mime/types' -require 'pygments' require 'yaml' module Linguist @@ -147,6 +146,13 @@ module Linguist end end + # Public: Is the blob empty? + # + # Return true or false + def empty? + data.nil? || data == "" + end + # Public: Is the blob text? # # Return true or false @@ -193,10 +199,6 @@ module Linguist # Public: Is the blob safe to colorize? # - # We use Pygments for syntax highlighting blobs. Pygments - # can be too slow for very large blobs or for certain - # corner-case blobs. - # # Return true or false def safe_to_colorize? !large? && text? && !high_ratio_of_long_lines? @@ -204,9 +206,6 @@ module Linguist # Internal: Does the blob have a ratio of long lines? # - # These types of files are usually going to make Pygments.rb - # angry if we try to colorize them. - # # Return true or false def high_ratio_of_long_lines? return false if loc == 0 @@ -314,23 +313,9 @@ module Linguist @language ||= Language.detect(self) end - # Internal: Get the lexer of the blob. - # - # Returns a Lexer. - def lexer - language ? language.lexer : Pygments::Lexer.find_by_name('Text only') - end - - # Public: Highlight syntax of blob - # - # options - A Hash of options (defaults to {}) - # - # Returns html String - def colorize(options = {}) - return unless safe_to_colorize? - options[:options] ||= {} - options[:options][:encoding] ||= encoding - lexer.highlight(data, options) + # Internal: Get the TextMate compatible scope for the blob + def tm_scope + language && language.tm_scope end end end diff --git a/lib/linguist/classifier.rb b/lib/linguist/classifier.rb index 5370bdd8..89a0df2f 100644 --- a/lib/linguist/classifier.rb +++ b/lib/linguist/classifier.rb @@ -3,6 +3,25 @@ require 'linguist/tokenizer' module Linguist # Language bayesian classifier. class Classifier + # Public: Use the classifier to detect language of the blob. + # + # blob - An object that quacks like a blob. + # possible_languages - Array of Language objects + # + # Examples + # + # Classifier.call(FileBlob.new("path/to/file"), [ + # Language["Ruby"], Language["Python"] + # ]) + # + # Returns an Array of Language objects, most probable first. + def self.call(blob, possible_languages) + language_names = possible_languages.map(&:name) + classify(Samples.cache, blob.data, language_names).map do |name, _| + Language[name] # Return the actual Language objects + end + end + # Public: Train classifier that data is a certain language. # # db - Hash classifier database object diff --git a/lib/linguist/file_blob.rb b/lib/linguist/file_blob.rb index bc475023..04441935 100644 --- a/lib/linguist/file_blob.rb +++ b/lib/linguist/file_blob.rb @@ -57,14 +57,20 @@ module Linguist # # Returns a String. def extension - # File.extname returns nil if the filename is an extension. - extension = File.extname(name) - basename = File.basename(name) - # Checks if the filename is an extension. - if extension.empty? && basename[0] == "." - basename - else - extension + extensions.last || "" + end + + # Public: Return an array of the file extensions + # + # >> Linguist::FileBlob.new("app/views/things/index.html.erb").extensions + # => [".html.erb", ".erb"] + # + # Returns an Array + def extensions + basename, *segments = File.basename(name).split(".") + + segments.map.with_index do |segment, index| + "." + segments[index..-1].join(".") end end end diff --git a/lib/linguist/generated.rb b/lib/linguist/generated.rb index 0f911c45..291fa8bd 100644 --- a/lib/linguist/generated.rb +++ b/lib/linguist/generated.rb @@ -51,26 +51,25 @@ module Linguist # # Return true or false def generated? - name == 'Gemfile.lock' || - minified_files? || - compiled_coffeescript? || - xcode_file? || - generated_parser? || - generated_net_docfile? || - generated_net_designer_file? || - generated_postscript? || - generated_protocol_buffer? || - generated_jni_header? || - composer_lock? || - node_modules? || - godeps? || - vcr_cassette? || - generated_by_zephir? + minified_files? || + compiled_coffeescript? || + xcode_file? || + generated_parser? || + generated_net_docfile? || + generated_net_designer_file? || + generated_postscript? || + generated_protocol_buffer? || + generated_jni_header? || + composer_lock? || + node_modules? || + godeps? || + vcr_cassette? || + generated_by_zephir? end # Internal: Is the blob an Xcode file? # - # Generated if the file extension is an Xcode + # Generated if the file extension is an Xcode # file extension. # # Returns true of false. @@ -265,4 +264,3 @@ module Linguist end end end - diff --git a/lib/linguist/grammars.rb b/lib/linguist/grammars.rb new file mode 100644 index 00000000..f6468280 --- /dev/null +++ b/lib/linguist/grammars.rb @@ -0,0 +1,13 @@ +# Note: This file is included in the github-linguist-grammars gem, not the +# github-linguist gem. + +module Linguist + module Grammars + # Get the path to the directory containing the language grammar JSON files. + # + # Returns a String. + def self.path + File.expand_path("../../../grammars", __FILE__) + end + end +end diff --git a/lib/linguist/heuristics.rb b/lib/linguist/heuristics.rb index b277ec9b..0d0b8338 100644 --- a/lib/linguist/heuristics.rb +++ b/lib/linguist/heuristics.rb @@ -1,92 +1,169 @@ module Linguist # A collection of simple heuristics that can be used to better analyze languages. class Heuristics - ACTIVE = true + # Public: Use heuristics to detect language of the blob. + # + # blob - An object that quacks like a blob. + # possible_languages - Array of Language objects + # + # Examples + # + # Heuristics.call(FileBlob.new("path/to/file"), [ + # Language["Ruby"], Language["Python"] + # ]) + # + # Returns an Array of languages, or empty if none matched or were inconclusive. + def self.call(blob, languages) + data = blob.data - # Public: Given an array of String language names, - # apply heuristics against the given data and return an array - # of matching languages, or nil. + @heuristics.each do |heuristic| + return Array(heuristic.call(data)) if heuristic.matches?(languages) + end + + [] # No heuristics matched + end + + # Internal: Define a new heuristic. # - # data - Array of tokens or String data to analyze. - # languages - Array of language name Strings to restrict to. + # languages - String names of languages to disambiguate. + # heuristic - Block which takes data as an argument and returns a Language or nil. # - # Returns an array of Languages or [] - def self.find_by_heuristics(data, languages) - if active? - if languages.all? { |l| ["Perl", "Prolog"].include?(l) } - result = disambiguate_pl(data, languages) - end - if languages.all? { |l| ["ECL", "Prolog"].include?(l) } - result = disambiguate_ecl(data, languages) - end - if languages.all? { |l| ["Common Lisp", "NewLisp"].include?(l) } - disambiguate_lsp(data, languages) - end - if languages.all? { |l| ["Common Lisp", "OpenCL"].include?(l) } - result = disambiguate_cl(data, languages) - end - return result + # Examples + # + # disambiguate "Perl", "Prolog" do |data| + # if data.include?("use strict") + # Language["Perl"] + # elsif data.include?(":-") + # Language["Prolog"] + # end + # end + # + def self.disambiguate(*languages, &heuristic) + @heuristics << new(languages, &heuristic) + end + + # Internal: Array of defined heuristics + @heuristics = [] + + # Internal + def initialize(languages, &heuristic) + @languages = languages + @heuristic = heuristic + end + + # Internal: Check if this heuristic matches the candidate languages. + def matches?(candidates) + candidates.any? && candidates.all? { |l| @languages.include?(l.name) } + end + + # Internal: Perform the heuristic + def call(data) + @heuristic.call(data) + end + + disambiguate "Objective-C", "C++", "C" do |data| + if (/@(interface|class|protocol|property|end|synchronised|selector|implementation)\b/.match(data)) + Language["Objective-C"] + elsif (/^\s*#\s*include <(cstdint|string|vector|map|list|array|bitset|queue|stack|forward_list|unordered_map|unordered_set|(i|o|io)stream)>/.match(data) || + /^\s*template\s*") - matches + disambiguate "Perl", "Perl6", "Prolog" do |data| + if data.include?("use v6") + Language["Perl6"] + elsif data.include?("use strict") + Language["Perl"] + elsif data.include?(":-") + Language["Prolog"] + end end - def self.disambiguate_pl(data, languages) - matches = [] - matches << Language["Prolog"] if data.include?(":-") - matches << Language["Perl"] if data.include?("use strict") - matches + disambiguate "ECL", "Prolog" do |data| + if data.include?(":-") + Language["Prolog"] + elsif data.include?(":=") + Language["ECL"] + end end - def self.disambiguate_ecl(data, languages) - matches = [] - matches << Language["Prolog"] if data.include?(":-") - matches << Language["ECL"] if data.include?(":=") - matches - end - - def self.disambiguate_ts(data, languages) - matches = [] - if (data.include?("")) - matches << Language["XML"] + disambiguate "IDL", "Prolog" do |data| + if data.include?(":-") + Language["Prolog"] else - matches << Language["TypeScript"] + Language["IDL"] end - matches end - def self.disambiguate_lsp(data, languages) - matches = [] - matches << Language["Common Lisp"] if data.include?("(defun") - matches << Language["NewLisp"] if data.include?("true") - matches + disambiguate "Common Lisp", "OpenCL", "Cool" do |data| + if data.include?("(defun ") + Language["Common Lisp"] + elsif /^class/x.match(data) + Language["Cool"] + elsif /\/\* |\/\/ |^\}/.match(data) + Language["OpenCL"] + end end - def self.disambiguate_cl(data, languages) - matches = [] - matches << Language["Common Lisp"] if data.include?("(defun ") - matches << Language["OpenCL"] if /\/\* |\/\/ |^\}/.match(data) - matches + disambiguate "Hack", "PHP" do |data| + if data.include?(" 1 - data = blob.data - possible_language_names = possible_languages.map(&:name) - - # Don't bother with binary contents or an empty file - if data.nil? || data == "" - nil - # Check if there's a shebang line and use that as authoritative - elsif (result = find_by_shebang(data)) && !result.empty? - result.first - # No shebang. Still more work to do. Try to find it with our heuristics. - elsif (determined = Heuristics.find_by_heuristics(data, possible_language_names)) && !determined.empty? - determined.first - # Lastly, fall back to the probabilistic classifier. - elsif classified = Classifier.classify(Samples.cache, data, possible_language_names).first - # Return the actual Language object based of the string language name (i.e., first element of `#classify`) - Language[classified[0]] + # Call each strategy until one candidate is returned. + STRATEGIES.reduce([]) do |languages, strategy| + candidates = strategy.call(blob, languages) + if candidates.size == 1 + return candidates.first + elsif candidates.size > 1 + # More than one candidate was found, pass them to the next strategy. + candidates + else + # No candiates were found, pass on languages from the previous strategy. + languages end - else - # Simplest and most common case, we can just return the one match based on extension - possible_languages.first - end + end.first end # Public: Get all Languages @@ -164,7 +143,7 @@ module Linguist # # Returns the Language or nil if none was found. def self.find_by_name(name) - @name_index[name] + name && @name_index[name.downcase] end # Public: Look up Language by one of its aliases. @@ -178,7 +157,7 @@ module Linguist # # Returns the Lexer or nil if none was found. def self.find_by_alias(name) - @alias_index[name] + name && @alias_index[name.downcase] end # Public: Look up Languages by filename. @@ -193,26 +172,53 @@ module Linguist # Returns all matching Languages or [] if none were found. def self.find_by_filename(filename) basename = File.basename(filename) - extname = FileBlob.new(filename).extension - langs = @filename_index[basename] + - @extension_index[extname] - langs.compact.uniq + + # find the first extension with language definitions + extname = FileBlob.new(filename).extensions.detect do |e| + !@extension_index[e].empty? + end + + (@filename_index[basename] + @extension_index[extname]).compact.uniq end - # Public: Look up Languages by shebang line. + # Public: Look up Languages by file extension. # - # data - Array of tokens or String data to analyze. + # extname - The extension String. # # Examples # - # Language.find_by_shebang("#!/bin/bash\ndate;") + # Language.find_by_extension('.rb') + # # => [#] + # + # Language.find_by_extension('rb') + # # => [#] + # + # Returns all matching Languages or [] if none were found. + def self.find_by_extension(extname) + extname = ".#{extname}" unless extname.start_with?(".") + @extension_index[extname] + end + + # DEPRECATED + def self.find_by_shebang(data) + @interpreter_index[Shebang.interpreter(data)] + end + + # Public: Look up Languages by interpreter. + # + # interpreter - String of interpreter name + # + # Examples + # + # Language.find_by_interpreter("bash") # # => [#] # # Returns the matching Language - def self.find_by_shebang(data) - @interpreter_index[Linguist.interpreter_from_shebang(data)] + def self.find_by_interpreter(interpreter) + @interpreter_index[interpreter] end + # Public: Look up Language by its name or lexer. # # name - The String name of the Language @@ -227,7 +233,7 @@ module Linguist # # Returns the Language or nil if none was found. def self.[](name) - @index[name] + name && @index[name.downcase] end # Public: A List of popular languages @@ -286,9 +292,16 @@ module Linguist # Set aliases @aliases = [default_alias_name] + (attributes[:aliases] || []) - # Lookup Lexer object - @lexer = Pygments::Lexer.find_by_name(attributes[:lexer] || name) || - raise(ArgumentError, "#{@name} is missing lexer") + # Load the TextMate scope name or try to guess one + @tm_scope = attributes[:tm_scope] || begin + context = case @type + when :data, :markup, :prose + 'text' + when :programming, nil + 'source' + end + "#{context}.#{@name.downcase}" + end @ace_mode = attributes[:ace_mode] @wrap = attributes[:wrap] || false @@ -363,6 +376,11 @@ module Linguist # Returns the Lexer attr_reader :lexer + # Public: Get the name of a TextMate-compatible scope + # + # Returns the scope + attr_reader :tm_scope + # Public: Get Ace mode # # Examples @@ -406,11 +424,6 @@ module Linguist # Returns the extensions Array attr_reader :filenames - # Public: Return all possible extensions for language - def all_extensions - (extensions + [primary_extension]).uniq - end - # Deprecated: Get primary extension # # Defaults to the first extension but can be overridden @@ -518,8 +531,8 @@ module Linguist languages_yml = File.expand_path("../languages.yml", __FILE__) languages_json = File.expand_path("../languages.json", __FILE__) - if File.exist?(languages_json) && defined?(JSON) - languages = JSON.load(File.read(languages_json)) + if File.exist?(languages_json) && defined?(Yajl) + languages = Yajl.load(File.read(languages_json)) else languages = YAML.load_file(languages_yml) end @@ -564,12 +577,13 @@ module Linguist :type => options['type'], :aliases => options['aliases'], :lexer => options['lexer'], + :tm_scope => options['tm_scope'], :ace_mode => options['ace_mode'], :wrap => options['wrap'], :group_name => options['group'], - :searchable => options.key?('searchable') ? options['searchable'] : true, + :searchable => options.fetch('searchable', true), :search_term => options['search_term'], - :extensions => [options['extensions'].first] + options['extensions'][1..-1].sort, + :extensions => Array(options['extensions']), :interpreters => options['interpreters'].sort, :filenames => options['filenames'], :popular => popular.include?(name) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 0ba86f7f..cbfaaee9 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1,13 +1,11 @@ # Defines all Languages known to GitHub. # -# All languages have an associated lexer for syntax highlighting. It -# defaults to name.downcase, which covers most cases. -# # type - Either data, programming, markup, prose, or nil -# lexer - An explicit lexer String (defaults to name) # aliases - An Array of additional aliases (implicitly # includes name.downcase) -# ace_mode - A String name of Ace Mode (if available) +# ace_mode - A String name of the Ace Mode used for highlighting whenever +# a file is edited. This must match one of the filenames in http://git.io/3XO_Cg. +# Use "none" if a mode does not exist. # wrap - Boolean wrap to enable line wrapping (default: false) # extensions - An Array of associated extensions (the first one is # considered the primary extension) @@ -16,6 +14,10 @@ # search_term - Deprecated: Some languages maybe indexed under a # different alias. Avoid defining new exceptions. # color - CSS hex color to represent the language. +# tm_scope - The TextMate scope that represents this programming +# language. This should match one of the scopes listed in +# the grammars.yml file. Use "none" if there is no grammar +# for this language. # # Any additions or modifications (even trivial) should have corresponding # test change in `test/test_blob.rb`. @@ -24,37 +26,40 @@ ABAP: type: programming - lexer: ABAP extensions: - .abap + ace_mode: abap AGS Script: type: programming - lexer: C++ color: "#B9D9FF" aliases: - ags extensions: - .asc - .ash + tm_scope: source.c++ + ace_mode: c_cpp ANTLR: type: programming color: "#9DC3FF" - lexer: ANTLR extensions: - .g4 + ace_mode: none APL: type: programming color: "#8a0707" extensions: - .apl + - .dyalog + tm_scope: none + ace_mode: none ASP: type: programming color: "#6a40fd" - lexer: aspx-vb search_term: aspx-vb aliases: - aspx @@ -67,11 +72,11 @@ ASP: - .asmx - .aspx - .axd + ace_mode: none ATS: type: programming color: "#1ac620" - lexer: OCaml aliases: - ats2 extensions: @@ -79,49 +84,72 @@ ATS: - .atxt - .hats - .sats + tm_scope: source.ocaml + ace_mode: ocaml ActionScript: type: programming - lexer: ActionScript 3 + tm_scope: source.actionscript.3 color: "#e3491a" search_term: as3 aliases: + - actionscript 3 + - actionscript3 - as3 extensions: - .as + ace_mode: actionscript Ada: type: programming color: "#02f88c" extensions: - .adb + - .ada - .ads + aliases: + - ada95ada2005 + ace_mode: ada Agda: type: programming color: "#467C91" extensions: - .agda + ace_mode: none Alloy: type: programming # 'modeling' would be more appropiate - lexer: Alloy color: "#cc5c24" extensions: - .als + ace_mode: none + +Ant Build System: + type: data + tm_scope: text.xml.ant + filenames: + - ant.xml + - build.xml + ace_mode: xml ApacheConf: type: markup aliases: + - aconf - apache extensions: - .apacheconf + - .conf + tm_scope: source.apache-config + ace_mode: apache_conf Apex: type: programming - lexer: Java extensions: - .cls + tm_scope: source.java + ace_mode: java AppleScript: type: programming @@ -132,61 +160,72 @@ AppleScript: - .scpt interpreters: - osascript + ace_mode: applescript Arc: type: programming color: "#ca2afe" - lexer: Text only extensions: - .arc + tm_scope: none + ace_mode: none Arduino: type: programming color: "#bd79d1" - lexer: C++ extensions: - .ino + tm_scope: source.c++ + ace_mode: c_cpp AsciiDoc: type: prose - lexer: Text only ace_mode: asciidoc wrap: true extensions: - .asciidoc - .adoc - .asc + tm_scope: none AspectJ: type: programming - lexer: AspectJ color: "#1957b0" extensions: - .aj + tm_scope: none + ace_mode: none Assembly: type: programming - lexer: NASM color: "#a67219" search_term: nasm aliases: - nasm extensions: - .asm + - .ASM + - .a51 + tm_scope: source.asm.x86 + ace_mode: assembly_x86 Augeas: type: programming extensions: - .aug + tm_scope: none + ace_mode: none AutoHotkey: type: programming - lexer: autohotkey color: "#6594b9" aliases: - ahk extensions: - .ahk + - .ahkl + tm_scope: none + ace_mode: autohotkey AutoIt: type: programming @@ -197,10 +236,11 @@ AutoIt: - AutoItScript extensions: - .au3 + tm_scope: source.autoit.3 + ace_mode: autohotkey Awk: type: programming - lexer: Awk extensions: - .awk - .auk @@ -212,6 +252,7 @@ Awk: - gawk - mawk - nawk + ace_mode: none Batchfile: type: programming @@ -219,69 +260,100 @@ Batchfile: search_term: bat aliases: - bat + - batch + - dosbatch + - winbatch extensions: - .bat - .cmd + tm_scope: source.dosbatch + ace_mode: batchfile Befunge: extensions: - .befunge + ace_mode: none + +Bison: + type: programming + tm_scope: source.bison + extensions: + - .y + ace_mode: none BlitzBasic: type: programming aliases: - - blitzplus + - b3d - blitz3d + - blitzplus + - bplus extensions: - .bb - .decls + tm_scope: source.blitzmax + ace_mode: none BlitzMax: type: programming color: "#cd6400" extensions: - .bmx + aliases: + - bmax + ace_mode: none Bluespec: type: programming - lexer: verilog extensions: - .bsv + tm_scope: source.verilog + ace_mode: verilog Boo: type: programming color: "#d4bec1" extensions: - .boo + ace_mode: none Brainfuck: extensions: - .b - .bf + tm_scope: source.bf + ace_mode: none Brightscript: type: programming - lexer: Text only extensions: - .brs + tm_scope: none + ace_mode: none Bro: type: programming extensions: - .bro + ace_mode: none C: type: programming color: "#555" extensions: - .c + - .C + - .H - .cats - .h + - .idc - .w + ace_mode: c_cpp C#: type: programming ace_mode: csharp + tm_scope: source.cs search_term: csharp color: "#178600" aliases: @@ -300,41 +372,42 @@ C++: - cpp extensions: - .cpp - - .C - .c++ - .cc - .cxx - - .H - .h - .h++ - .hh - .hpp - .hxx - .inl + - .ipp - .tcc - .tpp - - .ipp C-ObjDump: type: data - lexer: c-objdump extensions: - .c-objdump + tm_scope: objdump.x86asm + ace_mode: assembly_x86 C2hs Haskell: type: programming - lexer: Haskell group: Haskell aliases: - c2hs extensions: - .chs + tm_scope: source.haskell + ace_mode: haskell CLIPS: type: programming - lexer: Text only extensions: - .clp + tm_scope: none + ace_mode: none CMake: extensions: @@ -342,15 +415,19 @@ CMake: - .in filenames: - CMakeLists.txt + ace_mode: none COBOL: type: programming extensions: - .cob + - .COB + - .CPY - .cbl - .ccp - .cobol - .cpy + ace_mode: cobol CSS: ace_mode: css @@ -358,11 +435,18 @@ CSS: extensions: - .css +Cap'n Proto: + type: programming + tm_scope: source.capnp + extensions: + - .capnp + ace_mode: none + Ceylon: type: programming - lexer: Ceylon extensions: - .ceylon + ace_mode: none Chapel: type: programming @@ -371,27 +455,29 @@ Chapel: - chpl extensions: - .chpl + ace_mode: none ChucK: - lexer: Java extensions: - .ck + tm_scope: source.java + ace_mode: java Cirru: type: programming color: "#aaaaff" ace_mode: cirru - lexer: Cirru extensions: - .cirru Clean: type: programming color: "#3a81ad" - lexer: Text only extensions: - .icl - .dcl + tm_scope: none + ace_mode: none Clojure: type: programming @@ -411,6 +497,7 @@ Clojure: CoffeeScript: type: programming + tm_scope: source.coffee ace_mode: coffee color: "#244776" aliases: @@ -419,6 +506,7 @@ CoffeeScript: extensions: - .coffee - ._coffee + - .cjsx - .cson - .iced filenames: @@ -429,20 +517,21 @@ CoffeeScript: ColdFusion: type: programming group: ColdFusion - lexer: Coldfusion HTML ace_mode: coldfusion color: "#ed2cd6" search_term: cfm aliases: - cfm - cfml + - coldfusion html extensions: - .cfm + - .cfml + tm_scope: text.html.cfm ColdFusion CFC: type: programming group: ColdFusion - lexer: Coldfusion CFC ace_mode: coldfusion color: "#ed2cd6" search_term: cfc @@ -450,9 +539,11 @@ ColdFusion CFC: - cfc extensions: - .cfc + tm_scope: source.cfscript Common Lisp: type: programming + tm_scope: source.lisp color: "#3fb68b" aliases: - lisp @@ -469,60 +560,86 @@ Common Lisp: - ccl - clisp - ecl + ace_mode: lisp Component Pascal: type: programming - lexer: Delphi color: "#b0ce4e" extensions: - .cp - .cps + tm_scope: source.pascal + aliases: + - delphi + - objectpascal + ace_mode: pascal + +Cool: + type: programming + extensions: + - .cl + tm_scope: source.cool + ace_mode: none Coq: type: programming extensions: - .coq - .v + ace_mode: none Cpp-ObjDump: type: data - lexer: cpp-objdump extensions: - .cppobjdump + - .c++-objdump - .c++objdump + - .cpp-objdump - .cxx-objdump + tm_scope: objdump.x86asm + aliases: + - c++-objdumb + ace_mode: assembly_x86 Creole: type: prose - lexer: Text only wrap: true extensions: - .creole + tm_scope: none + ace_mode: none Crystal: type: programming - lexer: Ruby extensions: - .cr ace_mode: ruby + tm_scope: source.ruby + interpreters: + - crystal Cucumber: - lexer: Gherkin extensions: - .feature + tm_scope: text.gherkin.feature + aliases: + - gherkin + ace_mode: none Cuda: type: programming - lexer: CUDA extensions: - .cu - .cuh + tm_scope: source.cuda-c++ + ace_mode: c_cpp Cycript: type: programming - lexer: JavaScript extensions: - .cy + tm_scope: source.js + ace_mode: javascript Cython: type: programming @@ -531,6 +648,9 @@ Cython: - .pyx - .pxd - .pxi + aliases: + - pyrex + ace_mode: none D: type: programming @@ -538,28 +658,24 @@ D: extensions: - .d - .di + ace_mode: d D-ObjDump: type: data - lexer: d-objdump extensions: - .d-objdump + tm_scope: objdump.x86asm + ace_mode: assembly_x86 DM: type: programming color: "#075ff1" - lexer: C++ extensions: - .dm aliases: - byond - -DOT: - type: data - lexer: Text only - extensions: - - .dot - - .gv + tm_scope: source.c++ + ace_mode: c_cpp Darcs Patch: search_term: dpatch @@ -568,69 +684,91 @@ Darcs Patch: extensions: - .darcspatch - .dpatch + tm_scope: none + ace_mode: none Dart: type: programming color: "#98BAD6" extensions: - .dart + ace_mode: dart Diff: extensions: - .diff - .patch + aliases: + - udiff + ace_mode: diff + +Dockerfile: + type: data + tm_scope: source.dockerfile + extensions: + - .dockerfile + filenames: + - Dockerfile + ace_mode: dockerfile Dogescript: type: programming - lexer: Text only color: "#cca760" extensions: - .djs + tm_scope: none + ace_mode: none Dylan: type: programming color: "#3ebc27" extensions: - .dylan + - .dyl - .intr - .lid + ace_mode: none E: type: programming color: "#ccce35" - lexer: Text only extensions: - .E - -Ecere Projects: - type: data - group: JavaScript - lexer: JSON - extensions: - - .epj + tm_scope: none + ace_mode: none ECL: type: programming color: "#8a1267" - lexer: ECL extensions: - .ecl - .eclxml + tm_scope: none + ace_mode: none Eagle: type: markup color: "#3994bc" - lexer: XML extensions: - .sch - .brd + tm_scope: text.xml + ace_mode: xml + +Ecere Projects: + type: data + group: JavaScript + extensions: + - .epj + tm_scope: source.json + ace_mode: json Eiffel: type: programming - lexer: Eiffel color: "#946d57" extensions: - .e + ace_mode: eiffel Elixir: type: programming @@ -638,16 +776,18 @@ Elixir: extensions: - .ex - .exs + ace_mode: elixir Elm: type: programming - lexer: Haskell extensions: - .elm + tm_scope: source.haskell + ace_mode: elm Emacs Lisp: type: programming - lexer: Common Lisp + tm_scope: source.lisp color: "#c065db" aliases: - elisp @@ -657,26 +797,31 @@ Emacs Lisp: extensions: - .el - .emacs + ace_mode: lisp EmberScript: type: programming color: "#f64e3e" - lexer: CoffeeScript extensions: - .em - .emberscript + tm_scope: source.coffee + ace_mode: coffee Erlang: type: programming color: "#0faf8d" extensions: - .erl + - .es - .escript - .hrl + ace_mode: erlang + interpreters: + - escript F#: type: programming - lexer: FSharp color: "#b845fc" search_term: fsharp aliases: @@ -685,18 +830,20 @@ F#: - .fs - .fsi - .fsx + tm_scope: source.fsharp + ace_mode: none FLUX: type: programming color: "#33CCFF" - lexer: Text only extensions: - .fx - .flux + tm_scope: none + ace_mode: none FORTRAN: type: programming - lexer: Fortran color: "#4d41b1" extensions: - .f90 @@ -715,6 +862,8 @@ FORTRAN: - .f95 - .for - .fpp + tm_scope: source.fortran.modern + ace_mode: none Factor: type: programming @@ -722,8 +871,9 @@ Factor: extensions: - .factor filenames: - - .factor-rc - .factor-boot-rc + - .factor-rc + ace_mode: none Fancy: type: programming @@ -733,58 +883,64 @@ Fancy: - .fancypack filenames: - Fakefile + ace_mode: none Fantom: type: programming color: "#dbded5" extensions: - .fan + tm_scope: source.fan + ace_mode: none Forth: type: programming color: "#341708" - lexer: Text only extensions: - .fth - .4th + - .F + - .f + - .for - .forth + - .fr + - .frt + - .fs + ace_mode: forth Frege: type: programming color: "#00cafe" - lexer: Haskell extensions: - .fr + tm_scope: source.haskell + ace_mode: haskell G-code: type: data - lexer: Text only extensions: - .g - .gco - .gcode - -Game Maker Language: - type: programming - color: "#8ad353" - lexer: JavaScript - extensions: - - .gml + tm_scope: none + ace_mode: gcode GAMS: type: programming - lexer: Text only extensions: - .gms + tm_scope: none + ace_mode: none GAP: type: programming - lexer: Text only extensions: - .g - .gap - .gd - .gi + tm_scope: none + ace_mode: none GAS: type: programming @@ -792,12 +948,15 @@ GAS: extensions: - .s - .S + tm_scope: source.asm.x86 + ace_mode: assembly_x86 GDScript: type: programming - lexer: Text only extensions: - .gd + tm_scope: none + ace_mode: none GLSL: group: C @@ -807,7 +966,9 @@ GLSL: - .fp - .frag - .frg + - .fs - .fshader + - .geo - .geom - .glslv - .gshader @@ -815,22 +976,38 @@ GLSL: - .vert - .vrx - .vshader + ace_mode: glsl + +Game Maker Language: + type: programming + color: "#8ad353" + extensions: + - .gml + tm_scope: source.js + ace_mode: javascript Genshi: extensions: - .kid + tm_scope: text.xml.genshi + aliases: + - xml+genshi + - xml+kid + ace_mode: xml Gentoo Ebuild: group: Shell - lexer: Bash extensions: - .ebuild + tm_scope: source.shell + ace_mode: sh Gentoo Eclass: group: Shell - lexer: Bash extensions: - .eclass + tm_scope: source.shell + ace_mode: sh Gettext Catalog: search_term: pot @@ -840,30 +1017,44 @@ Gettext Catalog: extensions: - .po - .pot + tm_scope: source.po + ace_mode: none Glyph: type: programming color: "#e4cc98" - lexer: Tcl extensions: - .glf + tm_scope: source.tcl + ace_mode: tcl Gnuplot: type: programming color: "#f0a9f0" - lexer: Gnuplot extensions: - .gp - .gnu - .gnuplot - .plot - .plt + interpreters: + - gnuplot + ace_mode: none Go: type: programming color: "#375eab" extensions: - .go + ace_mode: golang + +Golo: + type: programming + color: "#f6a51f" + extensions: + - .golo + tm_scope: none + ace_mode: none Gosu: type: programming @@ -873,16 +1064,25 @@ Gosu: - .gst - .gsx - .vark + tm_scope: source.gosu.2 + ace_mode: none Grace: type: programming - lexer: Text only extensions: - .grace + tm_scope: none + ace_mode: none + +Gradle: + type: data + extensions: + - .gradle + tm_scope: source.groovy.gradle + ace_mode: none Grammatical Framework: type: programming - lexer: Haskell aliases: - gf wrap: false @@ -890,6 +1090,24 @@ Grammatical Framework: - .gf searchable: true color: "#ff0000" + tm_scope: source.haskell + ace_mode: haskell + +Graph Modeling Language: + type: data + extensions: + - .gml + tm_scope: none + ace_mode: none + +Graphviz (DOT): + type: data + tm_scope: source.dot + extensions: + - .dot + - .DOT + - .gv + ace_mode: none Groff: extensions: @@ -901,6 +1119,10 @@ Groff: - '.5' - '.6' - '.7' + tm_scope: text.groff + aliases: + - nroff + ace_mode: none Groovy: type: programming @@ -908,7 +1130,6 @@ Groovy: color: "#e69f56" extensions: - .groovy - - .gradle - .grt - .gtpl - .gvy @@ -917,14 +1138,17 @@ Groovy: Groovy Server Pages: group: Groovy - lexer: Java Server Page aliases: - gsp + - java server page extensions: - .gsp + tm_scope: text.html.jsp + ace_mode: jsp HTML: type: markup + tm_scope: text.html.basic ace_mode: html aliases: - xhtml @@ -932,36 +1156,55 @@ HTML: - .html - .htm - .st + - .xht - .xhtml HTML+Django: type: markup + tm_scope: text.html.django group: HTML - lexer: HTML+Django/Jinja extensions: - .mustache - .jinja + aliases: + - html+django/jinja + - html+jinja + - htmldjango + ace_mode: django HTML+ERB: type: markup + tm_scope: text.html.erb group: HTML - lexer: RHTML aliases: - erb extensions: - .erb - .deface + ace_mode: html_ruby HTML+PHP: type: markup + tm_scope: text.html.php group: HTML extensions: - .phtml + ace_mode: php HTTP: type: data extensions: - .http + tm_scope: none + ace_mode: none + +Hack: + type: programming + ace_mode: php + extensions: + - .hh + - .php + tm_scope: none Haml: group: HTML @@ -969,20 +1212,25 @@ Haml: extensions: - .haml - .deface + ace_mode: haml Handlebars: type: markup - lexer: Handlebars + aliases: + - hbs extensions: - .handlebars - .hbs + tm_scope: text.html.handlebars + ace_mode: handlebars Harbour: type: programming - lexer: Text only color: "#0e60e3" extensions: - .hb + tm_scope: none + ace_mode: none Haskell: type: programming @@ -990,6 +1238,7 @@ Haskell: extensions: - .hs - .hsc + ace_mode: haskell Haxe: type: programming @@ -998,97 +1247,118 @@ Haxe: extensions: - .hx - .hxsl + tm_scope: source.haxe.2 Hy: type: programming - lexer: Hy ace_mode: clojure color: "#7891b1" extensions: - .hy + aliases: + - hylang + tm_scope: none IDL: type: programming - lexer: IDL color: "#e3592c" extensions: - .pro - .dlm + ace_mode: none IGOR Pro: type: programming - lexer: Igor extensions: - .ipf + aliases: + - igor + - igorpro + tm_scope: none + ace_mode: none INI: type: data extensions: - .ini + - .cfg - .prefs - .properties + tm_scope: source.ini + aliases: + - dosini + ace_mode: ini -Inno Setup: +IRC log: + search_term: irc + aliases: + - irc + - irc logs extensions: - - .iss - lexer: Text only + - .irclog + - .weechatlog + tm_scope: none + ace_mode: none Idris: type: programming - lexer: Idris extensions: - .idr - .lidr + ace_mode: none Inform 7: type: programming - lexer: Inform 7 wrap: true extensions: - .ni - .i7x + tm_scope: source.Inform7 + aliases: + - i7 + - inform7 + ace_mode: none Inno Setup: extensions: - .iss - lexer: Text only - -IRC log: - lexer: IRC logs - search_term: irc - aliases: - - irc - extensions: - - .irclog - - .weechatlog + tm_scope: none + ace_mode: none Io: type: programming color: "#a9188d" extensions: - .io + ace_mode: io Ioke: type: programming color: "#078193" extensions: - .ik + interpreters: + - ioke + ace_mode: none Isabelle: type: programming - lexer: Text only color: "#fdcd00" extensions: - .thy + tm_scope: source.isabelle.theory + ace_mode: none J: type: programming - lexer: Text only extensions: - .ijs + tm_scope: none + ace_mode: none JSON: type: data + tm_scope: source.json group: JavaScript ace_mode: json searchable: false @@ -1108,30 +1378,33 @@ JSON: JSON5: type: data - lexer: JavaScript extensions: - .json5 + tm_scope: source.js + ace_mode: javascript JSONLD: type: data group: JavaScript - ace_mode: json - lexer: JavaScript + ace_mode: javascript extensions: - .jsonld + tm_scope: source.js JSONiq: type: programming ace_mode: jsoniq - lexer: XQuery extensions: - .jq + tm_scope: source.xquery Jade: group: HTML type: markup extensions: - .jade + tm_scope: source.jade + ace_mode: jade Java: type: programming @@ -1142,15 +1415,17 @@ Java: Java Server Pages: group: Java - lexer: Java Server Page search_term: jsp aliases: - jsp extensions: - .jsp + tm_scope: text.html.jsp + ace_mode: jsp JavaScript: type: programming + tm_scope: source.js ace_mode: javascript color: "#f1e05a" aliases: @@ -1162,6 +1437,7 @@ JavaScript: - .bones - .es6 - .frag + - .gs - .jake - .jsb - .jsfl @@ -1184,20 +1460,22 @@ Julia: extensions: - .jl color: "#a270ba" + ace_mode: julia KRL: - lexer: Text only type: programming color: "#f5c800" extensions: - .krl + tm_scope: none + ace_mode: none Kit: type: markup - lexer: HTML ace_mode: html extensions: - .kit + tm_scope: text.html.basic Kotlin: type: programming @@ -1205,22 +1483,33 @@ Kotlin: - .kt - .ktm - .kts + tm_scope: source.Kotlin + ace_mode: none LFE: type: programming extensions: - .lfe color: "#004200" - lexer: Common Lisp group: Erlang + tm_scope: source.lisp + ace_mode: lisp LLVM: extensions: - .ll + ace_mode: none + +LOLCODE: + type: programming + extensions: + - .lol + color: "#cc9900" + tm_scope: none + ace_mode: none LSL: type: programming - lexer: LSL ace_mode: lsl extensions: - .lsl @@ -1230,57 +1519,67 @@ LSL: LabVIEW: type: programming - lexer: Text only extensions: - .lvproj + tm_scope: none + ace_mode: none Lasso: type: programming - lexer: Lasso color: "#2584c3" extensions: - .lasso - .las + - .lasso8 - .lasso9 - .ldml + tm_scope: file.lasso + aliases: + - lassoscript + ace_mode: none Latte: type: markup color: "#A8FF97" group: HTML - lexer: Smarty extensions: - .latte + tm_scope: source.smarty + ace_mode: smarty Less: type: markup group: CSS - lexer: CSS extensions: - .less + tm_scope: source.css.less + ace_mode: less LilyPond: - lexer: Text only extensions: - .ly - .ily + ace_mode: none Liquid: type: markup - lexer: Text only extensions: - .liquid + tm_scope: none + ace_mode: liquid Literate Agda: type: programming group: Agda extensions: - .lagda + tm_scope: none + ace_mode: none Literate CoffeeScript: type: programming + tm_scope: source.litcoffee group: CoffeeScript - lexer: Text only ace_mode: markdown wrap: true search_term: litcoffee @@ -1288,46 +1587,62 @@ Literate CoffeeScript: - litcoffee extensions: - .litcoffee + ace_mode: none Literate Haskell: type: programming group: Haskell search_term: lhs aliases: + - lhaskell - lhs extensions: - .lhs + tm_scope: text.tex.latex.haskell + ace_mode: none LiveScript: type: programming - ace_mode: ls color: "#499886" aliases: + - live-script - ls extensions: - .ls - ._ls filenames: - Slakefile + ace_mode: livescript Logos: type: programming extensions: - .xm + - .x + - .xi + ace_mode: none Logtalk: type: programming extensions: - .lgt - .logtalk + ace_mode: none LookML: type: programming - lexer: YAML ace_mode: yaml color: "#652B81" extensions: - .lookml + tm_scope: source.yaml + +LoomScript: + type: programming + extensions: + - .ls + tm_scope: source.loomscript + ace_mode: none Lua: type: programming @@ -1335,49 +1650,58 @@ Lua: color: "#fa1fa1" extensions: - .lua + - .fcgi - .nse - .pd_lua - .rbxs + - .wlua interpreters: - lua M: type: programming - lexer: Common Lisp aliases: - mumps extensions: - .mumps - .m + tm_scope: source.lisp + ace_mode: lisp MTML: type: markup - lexer: HTML color: "#0095d9" extensions: - .mtml + tm_scope: text.html.basic + ace_mode: html Makefile: + type: programming aliases: + - bsdmake - make + - mf extensions: - .mak - .mk filenames: - - makefile - - Makefile - GNUmakefile + - Makefile + - makefile interpreters: - make + ace_mode: makefile Mako: extensions: - .mako - .mao + tm_scope: text.html.mako + ace_mode: none Markdown: type: prose - lexer: Text only ace_mode: markdown wrap: true extensions: @@ -1387,22 +1711,28 @@ Markdown: - .mkdn - .mkdown - .ron + tm_scope: text.html.markdown Mask: type: markup - lexer: SCSS color: "#f97732" - ace_mode: scss + ace_mode: mask extensions: - .mask + tm_scope: source.scss Mathematica: type: programming extensions: - .mathematica + - .cdf - .m + - .ma - .nb - lexer: Mathematica + - .nbp + aliases: + - mma + ace_mode: none Matlab: type: programming @@ -1410,11 +1740,18 @@ Matlab: extensions: - .matlab - .m + ace_mode: matlab + +Maven POM: + type: data + tm_scope: text.xml.pom + filenames: + - pom.xml + ace_mode: xml Max: type: programming color: "#ce279c" - lexer: JSON aliases: - max/msp - maxmsp @@ -1425,31 +1762,38 @@ Max: - .maxproj - .mxt - .pat + tm_scope: source.json + ace_mode: json MediaWiki: type: prose - lexer: Text only wrap: true extensions: - .mediawiki + tm_scope: none + ace_mode: none Mercury: type: programming color: "#abcdef" - lexer: Prolog ace_mode: prolog + interpreters: + - mmi extensions: - .m - .moo + tm_scope: source.prolog + ace_mode: prolog MiniD: # Legacy searchable: false extensions: - .minid # Dummy extension + tm_scope: none + ace_mode: none Mirah: type: programming - lexer: Ruby search_term: mirah color: "#c7a938" extensions: @@ -1457,45 +1801,56 @@ Mirah: - .duby - .mir - .mirah + tm_scope: source.ruby + ace_mode: ruby Monkey: type: programming - lexer: Monkey extensions: - .monkey + ace_mode: none Moocode: type: programming - lexer: MOOCode extensions: - .moo + tm_scope: none + ace_mode: none MoonScript: type: programming extensions: - .moon + interpreters: + - moon + ace_mode: none Myghty: extensions: - .myt + tm_scope: none + ace_mode: none NSIS: extensions: - .nsi - .nsh + ace_mode: none Nemerle: type: programming color: "#0d3c6e" extensions: - .n + ace_mode: none NetLogo: type: programming - lexer: Common Lisp color: "#ff2b2b" extensions: - .nlogo + tm_scope: source.lisp + ace_mode: lisp NewLisp: type: programming @@ -1506,12 +1861,17 @@ NewLisp: - .nl interpreters: - newlisp + tm_scope: source.lisp + ace_mode: lisp Nginx: type: markup - lexer: Nginx configuration file extensions: - .nginxconf + tm_scope: source.nginx + aliases: + - nginx configuration file + ace_mode: none Nimrod: type: programming @@ -1519,23 +1879,35 @@ Nimrod: extensions: - .nim - .nimrod + ace_mode: none + +Ninja: + type: data + tm_scope: source.ninja + extensions: + - .ninja + ace_mode: none Nit: type: programming - lexer: Text only color: "#0d8921" extensions: - .nit + tm_scope: none + ace_mode: none Nix: type: programming - lexer: Nix + color: "#7070ff" extensions: - .nix + aliases: + - nixos + tm_scope: source.nix + ace_mode: nix Nu: type: programming - lexer: Scheme color: "#c9df40" aliases: - nush @@ -1543,6 +1915,10 @@ Nu: - .nu filenames: - Nukefile + tm_scope: source.scheme + ace_mode: scheme + interpreters: + - nush NumPy: group: Python @@ -1550,6 +1926,8 @@ NumPy: - .numpy - .numpyw - .numsc + tm_scope: none + ace_mode: none OCaml: type: programming @@ -1566,64 +1944,79 @@ OCaml: ObjDump: type: data - lexer: objdump extensions: - .objdump + tm_scope: objdump.x86asm + ace_mode: assembly_x86 Objective-C: type: programming + tm_scope: source.objc color: "#438eff" aliases: - obj-c - objc + - objectivec extensions: - .m - .h + ace_mode: objectivec Objective-C++: type: programming + tm_scope: source.objc++ color: "#4886FC" aliases: - obj-c++ - objc++ + - objectivec++ extensions: - .mm + ace_mode: objectivec Objective-J: type: programming color: "#ff0c5a" aliases: - obj-j + - objectivej + - objj extensions: - .j - .sj + tm_scope: source.js.objj + ace_mode: none Omgrofl: type: programming extensions: - .omgrofl color: "#cabbff" - lexer: Text only + tm_scope: none + ace_mode: none Opa: type: programming extensions: - .opa + ace_mode: none Opal: type: programming color: "#f7ede0" - lexer: Text only extensions: - .opal + tm_scope: none + ace_mode: none OpenCL: type: programming group: C - lexer: C extensions: - .cl - .opencl + tm_scope: source.c + ace_mode: c_cpp OpenEdge ABL: type: programming @@ -1634,51 +2027,67 @@ OpenEdge ABL: extensions: - .p - .cls + tm_scope: source.abl + ace_mode: none OpenSCAD: type: programming - lexer: Text only extensions: - .scad + tm_scope: none + ace_mode: none Org: type: prose - lexer: Text only wrap: true extensions: - .org + tm_scope: none + ace_mode: none Ox: type: programming - lexer: Text only extensions: - .ox - .oxh - .oxo + tm_scope: none + ace_mode: none Oxygene: type: programming - lexer: Text only color: "#5a63a3" extensions: - .oxygene + tm_scope: none + ace_mode: none + +Oz: + type: programming + color: "#fcaf3e" + extensions: + - .oz + tm_scope: source.oz + ace_mode: none PAWN: type: programming - lexer: C++ color: "#dbb284" extensions: - .pwn + tm_scope: source.c++ + ace_mode: c_cpp PHP: type: programming + tm_scope: text.html.php ace_mode: php color: "#4F5D95" extensions: - .php - .aw - .ctp - - .module + - .fcgi - .php3 - .php4 - .php5 @@ -1687,42 +2096,59 @@ PHP: - Phakefile interpreters: - php + aliases: + - inc Pan: type: programming - lexer: Pan color: '#cc0000' extensions: - .pan + tm_scope: none + ace_mode: none + +Papyrus: + type: programming + color: "#6600cc" + extensions: + - .psc + tm_scope: none + ace_mode: none Parrot: type: programming color: "#f3ca0a" - lexer: Text only extensions: - .parrot # Dummy extension - -Parrot Internal Representation: - group: Parrot - type: programming - lexer: Text only - aliases: - - pir - extensions: - - .pir + tm_scope: none + ace_mode: none Parrot Assembly: group: Parrot type: programming - lexer: Text only aliases: - pasm extensions: - .pasm + interpreters: + - parrot + tm_scope: none + ace_mode: none + +Parrot Internal Representation: + group: Parrot + tm_scope: source.parrot.pir + type: programming + aliases: + - pir + extensions: + - .pir + interpreters: + - parrot + ace_mode: none Pascal: type: programming - lexer: Delphi color: "#b0ce4e" extensions: - .pas @@ -1730,6 +2156,7 @@ Pascal: - .dpr - .lpr - .pp + ace_mode: pascal Perl: type: programming @@ -1754,50 +2181,63 @@ Perl6: type: programming color: "#0298c3" extensions: - - .p6 - .6pl - .6pm - .nqp + - .p6 - .p6l - .p6m + - .pl - .pl6 + - .pm - .pm6 + - .t + interpreters: + - perl6 + tm_scope: none + ace_mode: perl PigLatin: type: programming color: "#fcd7de" - lexer: Text only extensions: - .pig + tm_scope: none + ace_mode: none Pike: type: programming color: "#066ab2" - lexer: Pike extensions: - .pike - .pmod + ace_mode: none Pod: type: prose - lexer: Text only ace_mode: perl wrap: true extensions: - .pod + tm_scope: none PogoScript: type: programming color: "#d80074" - lexer: Text only extensions: - .pogo + tm_scope: none + ace_mode: none PostScript: type: markup extensions: - .ps - .eps + tm_scope: source.postscript + aliases: + - postscr + ace_mode: none PowerShell: type: programming @@ -1811,26 +2251,30 @@ PowerShell: Processing: type: programming - lexer: Java color: "#2779ab" extensions: - .pde + ace_mode: none Prolog: type: programming - lexer: Logtalk color: "#74283c" extensions: - .pl - .ecl + - .pro - .prolog + interpreters: + - swipl + ace_mode: prolog Propeller Spin: type: programming - lexer: Text only color: "#2b446d" extensions: - .spin + tm_scope: none + ace_mode: none Protocol Buffer: type: markup @@ -1839,6 +2283,8 @@ Protocol Buffer: - Protocol Buffers extensions: - .proto + tm_scope: source.protobuf + ace_mode: protobuf Puppet: type: programming @@ -1847,20 +2293,23 @@ Puppet: - .pp filenames: - Modulefile + ace_mode: none Pure Data: type: programming color: "#91de79" - lexer: Text only extensions: - .pd + tm_scope: none + ace_mode: none PureScript: type: programming color: "#bcdc53" - lexer: Haskell extensions: - .purs + tm_scope: source.haskell + ace_mode: haskell Python: type: programming @@ -1869,48 +2318,58 @@ Python: extensions: - .py - .cgi + - .fcgi - .gyp - .lmi - .pyde - .pyp - .pyt - .pyw + - .tac - .wsgi - .xpy filenames: - - wscript - - SConstruct + - BUILD - SConscript + - SConstruct + - wscript interpreters: - python + - python2 + - python3 Python traceback: type: data group: Python - lexer: Python Traceback searchable: false extensions: - .pytb + tm_scope: text.python.traceback + ace_mode: none QML: type: markup color: "#44a51c" extensions: - .qml + tm_scope: source.qml + ace_mode: none QMake: - lexer: Text only extensions: - .pro - .pri + interpreters: + - qmake + ace_mode: none R: type: programming color: "#198ce7" - lexer: S aliases: - R - Rscript + - splus extensions: - .r - .R @@ -1921,18 +2380,27 @@ R: - .Rprofile interpreters: - Rscript + ace_mode: r + +RAML: + type: data + lexer: YAML + ace_mode: yaml + tm_scope: source.yaml + color: "#77d9fb" + extensions: + - .raml RDoc: type: prose - lexer: Rd ace_mode: rdoc wrap: true extensions: - .rdoc + tm_scope: text.rdoc REALbasic: type: programming - lexer: VB.net extensions: - .rbbas - .rbfrm @@ -1940,38 +2408,49 @@ REALbasic: - .rbres - .rbtbar - .rbuistate + tm_scope: source.vbnet + ace_mode: none RHTML: type: markup group: HTML extensions: - .rhtml + tm_scope: text.html.erb + aliases: + - html+ruby + ace_mode: rhtml RMarkdown: type: prose - lexer: Text only wrap: true ace_mode: markdown extensions: - .rmd - .Rmd + tm_scope: none Racket: type: programming - lexer: Racket color: "#ae17ff" extensions: - .rkt - .rktd - .rktl - .scrbl + tm_scope: source.racket + ace_mode: lisp Ragel in Ruby Host: type: programming - lexer: Ragel in Ruby Host color: "#ff9c2e" extensions: - .rl + aliases: + - ragel-rb + - ragel-ruby + tm_scope: none + ace_mode: none Raw token data: search_term: raw @@ -1979,10 +2458,11 @@ Raw token data: - raw extensions: - .raw + tm_scope: none + ace_mode: none Rebol: type: programming - lexer: REBOL color: "#358a5b" extensions: - .reb @@ -1990,32 +2470,40 @@ Rebol: - .r2 - .r3 - .rebol + ace_mode: none Red: type: programming - lexer: Text only color: "#ee0000" extensions: - .red - .reds + aliases: + - red/system + tm_scope: none + ace_mode: none Redcode: extensions: - .cw + tm_scope: none + ace_mode: none RobotFramework: type: programming extensions: - .robot # - .txt + tm_scope: text.robot + ace_mode: none Rouge: type: programming - lexer: Clojure ace_mode: clojure color: "#cc0088" extensions: - .rg + tm_scope: source.clojure Ruby: type: programming @@ -2030,6 +2518,7 @@ Ruby: extensions: - .rb - .builder + - .fcgi - .gemspec - .god - .irbrc @@ -2046,6 +2535,8 @@ Ruby: - .watchr interpreters: - ruby + - macruby + - rake filenames: - .pryrc - Appraisals @@ -2067,16 +2558,19 @@ Rust: color: "#dea584" extensions: - .rs + ace_mode: rust SAS: type: programming color: "#1E90FF" - lexer: Text only extensions: - .sas + tm_scope: none + ace_mode: none SCSS: type: markup + tm_scope: source.scss group: CSS ace_mode: scss extensions: @@ -2085,13 +2579,15 @@ SCSS: SQF: type: programming color: "#FFCB1F" - lexer: C++ extensions: - .sqf - .hqf + tm_scope: source.sqf + ace_mode: none SQL: type: data + tm_scope: source.sql ace_mode: sql extensions: - .sql @@ -2103,23 +2599,26 @@ SQL: STON: type: data group: Smalltalk - lexer: JSON extensions: - .ston + tm_scope: source.json + ace_mode: lisp Sage: type: programming - lexer: Python group: Python extensions: - .sage + tm_scope: source.python + ace_mode: python Sass: type: markup + tm_scope: source.sass group: CSS extensions: - .sass - - .scss + ace_mode: sass Scala: type: programming @@ -2129,12 +2628,16 @@ Scala: - .scala - .sbt - .sc + interpreters: + - scala Scaml: group: HTML type: markup extensions: - .scaml + tm_scope: source.scaml + ace_mode: none Scheme: type: programming @@ -2150,6 +2653,7 @@ Scheme: - racket - bigloo - chicken + ace_mode: scheme Scilab: type: programming @@ -2157,19 +2661,20 @@ Scilab: - .sci - .sce - .tst + ace_mode: none Self: type: programming color: "#0579aa" - lexer: Text only extensions: - .self + tm_scope: none + ace_mode: none Shell: type: programming - lexer: Bash search_term: bash - color: "#5861ce" + color: "#89e051" aliases: - sh - bash @@ -2179,51 +2684,64 @@ Shell: - .bash - .bats - .cgi + - .command + - .fcgi + - .ksh - .tmux - .zsh interpreters: - bash - sh - zsh - filenames: - - Dockerfile + ace_mode: sh ShellSession: type: programming - lexer: Bash Session extensions: - .sh-session + aliases: + - bash session + - console + tm_scope: text.shell-session + ace_mode: sh Shen: type: programming color: "#120F14" - lexer: Text only extensions: - .shen + tm_scope: none + ace_mode: none Slash: type: programming color: "#007eff" extensions: - .sl + tm_scope: text.html.slash + ace_mode: none Slim: group: HTML type: markup - lexer: Slim color: "#ff8877" extensions: - .slim + ace_mode: none Smalltalk: type: programming color: "#596706" extensions: - .st + aliases: + - squeak + ace_mode: none Smarty: extensions: - .tpl + ace_mode: smarty SourcePawn: type: programming @@ -2232,12 +2750,15 @@ SourcePawn: - sourcemod extensions: - .sp + tm_scope: source.sp + ace_mode: none Squirrel: type: programming - lexer: C++ extensions: - .nut + tm_scope: source.c++ + ace_mode: c_cpp Standard ML: type: programming @@ -2249,10 +2770,11 @@ Standard ML: - .fun - .sig - .sml + tm_scope: source.ml + ace_mode: none Stata: type: programming - lexer: Text only extensions: - .do - .ado @@ -2261,47 +2783,54 @@ Stata: - .mata - .matah - .sthlp + ace_mode: none Stylus: type: markup group: CSS - lexer: Text only extensions: - .styl + tm_scope: none + ace_mode: stylus SuperCollider: type: programming color: "#46390b" - lexer: Text only extensions: - .scd + - .sc + tm_scope: none + ace_mode: none Swift: type: programming - lexer: Swift color: "#ffac45" extensions: - .swift + ace_mode: none SystemVerilog: type: programming color: "#343761" - lexer: systemverilog extensions: - .sv - .svh - .vh + ace_mode: verilog TOML: type: data extensions: - .toml + tm_scope: source.toml + ace_mode: toml TXL: type: programming - lexer: Text only extensions: - .txl + tm_scope: none + ace_mode: none Tcl: type: programming @@ -2310,6 +2839,10 @@ Tcl: - .tcl - .adp - .tm + interpreters: + - tclsh + - wish + ace_mode: tcl Tcsh: type: programming @@ -2317,11 +2850,13 @@ Tcsh: extensions: - .tcsh - .csh + tm_scope: source.shell + ace_mode: sh TeX: type: markup color: "#3D6117" - ace_mode: latex + ace_mode: tex wrap: true aliases: - latex @@ -2346,29 +2881,40 @@ Tea: type: markup extensions: - .tea + tm_scope: source.tea + ace_mode: none Textile: type: prose - lexer: Text only ace_mode: textile wrap: true extensions: - .textile + tm_scope: none + +Thrift: + type: programming + tm_scope: source.thrift + extensions: + - .thrift + ace_mode: none Turing: type: programming color: "#45f715" - lexer: Text only extensions: - .t - .tu + tm_scope: none + ace_mode: none Twig: type: markup group: PHP - lexer: HTML+Django/Jinja extensions: - .twig + tm_scope: text.html.twig + ace_mode: twig TypeScript: type: programming @@ -2377,34 +2923,36 @@ TypeScript: - ts extensions: - .ts + tm_scope: source.ts + ace_mode: typescript Unified Parallel C: type: programming group: C - lexer: C ace_mode: c_cpp color: "#755223" extensions: - .upc + tm_scope: source.c UnrealScript: type: programming color: "#a54c4d" - lexer: Java extensions: - .uc + tm_scope: source.java + ace_mode: java VCL: type: programming - lexer: Perl ace_mode: perl color: "#0298c3" extensions: - .vcl + tm_scope: source.perl VHDL: type: programming - lexer: vhdl color: "#543978" extensions: - .vhdl @@ -2415,6 +2963,7 @@ VHDL: - .vhs - .vht - .vhw + ace_mode: vhdl Vala: type: programming @@ -2422,14 +2971,15 @@ Vala: extensions: - .vala - .vapi + ace_mode: vala Verilog: type: programming - lexer: verilog color: "#848bf3" extensions: - .v - .veo + ace_mode: verilog VimL: type: programming @@ -2441,12 +2991,13 @@ VimL: - .vim filenames: - .vimrc - - vimrc + - _vimrc - gvimrc + - vimrc + ace_mode: none Visual Basic: type: programming - lexer: VB.net color: "#945db7" extensions: - .vb @@ -2457,19 +3008,26 @@ Visual Basic: - .vba - .vbhtml - .vbs + tm_scope: source.vbnet + aliases: + - vb.net + - vbnet + ace_mode: none Volt: - type: programming - lexer: D - color: "#0098db" - extensions: - - .volt + type: programming + color: "#0098db" + extensions: + - .volt + tm_scope: source.d + ace_mode: d XC: type: programming - lexer: C extensions: - .xc + tm_scope: source.c + ace_mode: c_cpp XML: type: markup @@ -2498,6 +3056,7 @@ XML: - .jelly - .kml - .launch + - .mm - .mxml - .nproj - .nuspec @@ -2525,6 +3084,7 @@ XML: - .vcxproj - .vxml - .wsdl + - .wsf - .wxi - .wxl - .wxs @@ -2540,14 +3100,20 @@ XML: filenames: - .classpath - .project + - Web.Debug.config + - Web.Release.config + - Web.config + - build.xml.dist + - packages.config - phpunit.xml.dist XProc: type: programming - lexer: XML extensions: - .xpl - .xproc + tm_scope: text.xml + ace_mode: xml XQuery: type: programming @@ -2558,11 +3124,13 @@ XQuery: - .xql - .xqm - .xqy + ace_mode: xquery XS: - lexer: C extensions: - .xs + tm_scope: source.c + ace_mode: c_cpp XSLT: type: programming @@ -2571,10 +3139,11 @@ XSLT: extensions: - .xslt - .xsl + tm_scope: text.xml.xsl + ace_mode: xml Xojo: type: programming - lexer: VB.net extensions: - .xojo_code - .xojo_menu @@ -2582,14 +3151,18 @@ Xojo: - .xojo_script - .xojo_toolbar - .xojo_window + tm_scope: source.vbnet + ace_mode: none Xtend: type: programming extensions: - .xtend + ace_mode: none YAML: type: data + tm_scope: source.yaml aliases: - yml extensions: @@ -2597,21 +3170,24 @@ YAML: - .reek - .rviz - .yaml + ace_mode: yaml Zephir: type: programming - lexer: PHP color: "#118f9e" extensions: - .zep + tm_scope: source.php.zephir + ace_mode: php Zimpl: type: programming - lexer: Text only extensions: - .zimpl - .zmpl - .zpl + tm_scope: none + ace_mode: none eC: type: programming @@ -2619,40 +3195,43 @@ eC: extensions: - .ec - .eh + tm_scope: none + ace_mode: none edn: type: data - lexer: Clojure ace_mode: clojure color: "#db5855" extensions: - .edn + tm_scope: source.clojure fish: type: programming group: Shell - lexer: Text only extensions: - .fish + tm_scope: none + ace_mode: none mupad: - lexer: MuPAD extensions: - .mu + ace_mode: none nesC: type: programming color: "#ffce3b" - lexer: nesC extensions: - .nc + ace_mode: none ooc: type: programming - lexer: Ooc color: "#b0b77e" extensions: - .ooc + ace_mode: none reStructuredText: type: prose @@ -2663,18 +3242,29 @@ reStructuredText: extensions: - .rst - .rest + ace_mode: none + +text: + type: prose + wrap: true + extensions: + - .txt + - .fr + tm_scope: none + ace_mode: none wisp: type: programming - lexer: Clojure ace_mode: clojure color: "#7582D1" extensions: - .wisp + tm_scope: source.clojure xBase: type: programming - lexer: Text only color: "#3a4040" extensions: - .prg + tm_scope: none + ace_mode: none diff --git a/lib/linguist/lazy_blob.rb b/lib/linguist/lazy_blob.rb index bb262241..9691bca5 100644 --- a/lib/linguist/lazy_blob.rb +++ b/lib/linguist/lazy_blob.rb @@ -1,8 +1,13 @@ require 'linguist/blob_helper' +require 'linguist/language' require 'rugged' module Linguist class LazyBlob + GIT_ATTR = ['linguist-language', 'linguist-vendored'] + GIT_ATTR_OPTS = { :priority => [:index], :skip_system => true } + GIT_ATTR_FLAGS = Rugged::Repository::Attributes.parse_opts(GIT_ATTR_OPTS) + include BlobHelper MAX_SIZE = 128 * 1024 @@ -19,6 +24,29 @@ module Linguist @mode = mode end + def git_attributes + @git_attributes ||= repository.fetch_attributes( + name, GIT_ATTR, GIT_ATTR_FLAGS) + end + + def vendored? + if attr = git_attributes['linguist-vendored'] + return boolean_attribute(attr) + else + return super + end + end + + def language + return @language if defined?(@language) + + @language = if lang = git_attributes['linguist-language'] + Language.find_by_name(lang) + else + super + end + end + def data load_blob! @data @@ -30,6 +58,12 @@ module Linguist end protected + + # Returns true if the attribute is present and not the string "false". + def boolean_attribute(attr) + attr != "false" + end + def load_blob! @data, @size = Rugged::Blob.to_buffer(repository, oid, MAX_SIZE) if @data.nil? end diff --git a/lib/linguist/repository.rb b/lib/linguist/repository.rb index a89c81e6..41e829c5 100644 --- a/lib/linguist/repository.rb +++ b/lib/linguist/repository.rb @@ -110,18 +110,37 @@ module Linguist if @old_commit_oid == @commit_oid @old_stats else - compute_stats(@old_commit_oid, @commit_oid, @old_stats) + compute_stats(@old_commit_oid, @old_stats) end end end - protected - def compute_stats(old_commit_oid, commit_oid, cache = nil) - file_map = cache ? cache.dup : {} - old_tree = old_commit_oid && Rugged::Commit.lookup(repository, old_commit_oid).tree - new_tree = Rugged::Commit.lookup(repository, commit_oid).tree + def read_index + attr_index = Rugged::Index.new + attr_index.read_tree(current_tree) + repository.index = attr_index + end - diff = Rugged::Tree.diff(repository, old_tree, new_tree) + def current_tree + @tree ||= Rugged::Commit.lookup(repository, @commit_oid).tree + end + + protected + + def compute_stats(old_commit_oid, cache = nil) + old_tree = old_commit_oid && Rugged::Commit.lookup(repository, old_commit_oid).tree + + read_index + + diff = Rugged::Tree.diff(repository, old_tree, current_tree) + + # Clear file map and fetch full diff if any .gitattributes files are changed + if cache && diff.each_delta.any? { |delta| File.basename(delta.new_file[:path]) == ".gitattributes" } + diff = Rugged::Tree.diff(repository, old_tree = nil, current_tree) + file_map = {} + else + file_map = cache ? cache.dup : {} + end diff.each_delta do |delta| old = delta.old_file[:path] diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index e8d2c55f..f2c2298d 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -8,7 +8,8 @@ ".ash" ], "APL": [ - ".apl" + ".apl", + ".dyalog" ], "ATS": [ ".atxt", @@ -40,6 +41,7 @@ ".aj" ], "Assembly": [ + ".a51", ".asm" ], "AutoHotkey": [ @@ -61,6 +63,8 @@ ".brs" ], "C": [ + ".C", + ".H", ".c", ".cats", ".h" @@ -73,6 +77,7 @@ ".cc", ".cpp", ".h", + ".hh", ".hpp", ".inl", ".ipp" @@ -95,6 +100,10 @@ "Cirru": [ ".cirru" ], + "Clean": [ + ".dcl", + ".icl" + ], "Clojure": [ ".cl2", ".clj", @@ -106,6 +115,7 @@ ".hl" ], "CoffeeScript": [ + ".cjsx", ".coffee" ], "ColdFusion": [ @@ -123,6 +133,9 @@ ".cp", ".cps" ], + "Cool": [ + ".cl" + ], "Coq": [ ".v" ], @@ -175,8 +188,22 @@ ".escript", ".script!" ], + "F#": [ + ".fs" + ], + "FORTRAN": [ + ".F", + ".f", + ".for" + ], "Forth": [ + ".F", + ".f", + ".for", ".forth", + ".fr", + ".frt", + ".fs", ".fth" ], "Frege": [ @@ -203,6 +230,7 @@ ".fp", ".frag", ".frg", + ".fs", ".glsl", ".vrx" ], @@ -213,6 +241,9 @@ ".gnu", ".gp" ], + "Golo": [ + ".golo" + ], "Gosu": [ ".gs", ".gst", @@ -222,9 +253,19 @@ "Grace": [ ".grace" ], + "Gradle": [ + ".gradle" + ], "Grammatical Framework": [ ".gf" ], + "Graph Modeling Language": [ + ".gml" + ], + "Graphviz (DOT)": [ + ".DOT", + ".dot" + ], "Groff": [ ".4" ], @@ -239,12 +280,17 @@ ], "HTML": [ ".html", - ".st" + ".st", + ".xht" ], "HTML+ERB": [ ".deface", ".erb" ], + "Hack": [ + ".hh", + ".php" + ], "Haml": [ ".deface", ".haml" @@ -300,6 +346,7 @@ ], "JavaScript": [ ".frag", + ".gs", ".js", ".jsb", ".script!", @@ -321,6 +368,9 @@ "LFE": [ ".lfe" ], + "LOLCODE": [ + ".lol" + ], "LSL": [ ".lsl" ], @@ -357,7 +407,11 @@ "LookML": [ ".lookml" ], + "LoomScript": [ + ".ls" + ], "Lua": [ + ".fcgi", ".pd_lua" ], "M": [ @@ -470,17 +524,23 @@ "Oxygene": [ ".oxygene" ], + "Oz": [ + ".oz" + ], "PAWN": [ ".pwn" ], "PHP": [ - ".module", + ".fcgi", ".php", ".script!" ], "Pan": [ ".pan" ], + "Papyrus": [ + ".psc" + ], "Parrot Assembly": [ ".pasm" ], @@ -502,7 +562,10 @@ ], "Perl6": [ ".p6", - ".pm6" + ".pl", + ".pm", + ".pm6", + ".t" ], "PigLatin": [ ".pig" @@ -530,6 +593,7 @@ "Prolog": [ ".ecl", ".pl", + ".pro", ".prolog", ".script!" ], @@ -547,6 +611,7 @@ ], "Python": [ ".cgi", + ".fcgi", ".py", ".pyde", ".pyp", @@ -564,6 +629,9 @@ ".rsx", ".script!" ], + "RAML": [ + ".raml" + ], "RDoc": [ ".rdoc" ], @@ -591,6 +659,7 @@ ".robot" ], "Ruby": [ + ".fcgi", ".pluginspec", ".rabl", ".rake", @@ -621,8 +690,7 @@ ".ston" ], "Sass": [ - ".sass", - ".scss" + ".sass" ], "Scala": [ ".sbt", @@ -644,6 +712,8 @@ "Shell": [ ".bash", ".cgi", + ".command", + ".fcgi", ".script!", ".sh", ".zsh" @@ -688,6 +758,7 @@ ".styl" ], "SuperCollider": [ + ".sc", ".scd" ], "Swift": [ @@ -748,6 +819,7 @@ ".filters", ".fsproj", ".ivy", + ".mm", ".nproj", ".nuspec", ".pluginspec", @@ -791,19 +863,106 @@ "fish": [ ".fish" ], + "text": [ + ".fr", + ".txt" + ], "wisp": [ ".wisp" ] }, "interpreters": { - + "Awk": [ + "awk" + ], + "Crystal": [ + "crystal" + ], + "Erlang": [ + "escript" + ], + "Gnuplot": [ + "gnuplot" + ], + "Groovy": [ + "groovy" + ], + "Ioke": [ + "ioke" + ], + "JavaScript": [ + "node" + ], + "Lua": [ + "lua" + ], + "Makefile": [ + "make" + ], + "NewLisp": [ + "newlisp" + ], + "Nu": [ + "nush" + ], + "PHP": [ + "php" + ], + "Parrot Assembly": [ + "parrot" + ], + "Parrot Internal Representation": [ + "parrot" + ], + "Perl": [ + "perl" + ], + "Perl6": [ + "perl6" + ], + "Prolog": [ + "swipl" + ], + "Python": [ + "python", + "python2" + ], + "QMake": [ + "qmake" + ], + "R": [ + "Rscript" + ], + "Ruby": [ + "macruby", + "rake", + "ruby" + ], + "Scala": [ + "scala" + ], + "Shell": [ + "bash", + "sh", + "zsh" + ] }, "filenames": { + "Ant Build System": [ + "ant.xml", + "build.xml" + ], "ApacheConf": [ ".htaccess", "apache2.conf", "httpd.conf" ], + "CMake": [ + "CMakeLists.txt" + ], + "Dockerfile": [ + "Dockerfile" + ], "INI": [ ".editorconfig", ".gitconfig" @@ -811,6 +970,9 @@ "Makefile": [ "Makefile" ], + "Maven POM": [ + "pom.xml" + ], "Nginx": [ "nginx.conf" ], @@ -827,6 +989,7 @@ ".pryrc", "Appraisals", "Capfile", + "Gemfile.lock", "Rakefile" ], "Shell": [ @@ -841,7 +1004,6 @@ ".zprofile", ".zshenv", ".zshrc", - "Dockerfile", "PKGBUILD", "bash_logout", "bash_profile", @@ -855,9 +1017,14 @@ "zshenv", "zshrc" ], + "Tcl": [ + "owh", + "starfield" + ], "VimL": [ ".gvimrc", - ".vimrc" + ".vimrc", + "_vimrc" ], "XML": [ ".cproject" @@ -871,8 +1038,8 @@ "exception.zep.php" ] }, - "tokens_total": 664410, - "languages_total": 925, + "tokens_total": 710735, + "languages_total": 1079, "tokens": { "ABAP": { "*/**": 1, @@ -1134,22 +1301,158 @@ "endclass.": 1 }, "AGS Script": { - "function": 54, - "initialize_control_panel": 2, - "(": 281, - ")": 282, + "//****************************************************************************************************": 8, + "#define": 2, + "DISTANCE": 25, + "//": 66, + "distance": 1, + "player": 13, + "walks": 1, + "in": 1, + "Tapping": 2, + "mode": 10, + "before": 1, + "he": 1, + "stops": 1, + "enum": 2, + "KeyboardMovement_Directions": 4, "{": 106, - "gPanel.Centre": 1, + "eKeyboardMovement_Stop": 9, + "eKeyboardMovement_DownLeft": 5, + "eKeyboardMovement_Down": 5, + "eKeyboardMovement_DownRight": 5, + "eKeyboardMovement_Left": 5, + "eKeyboardMovement_Right": 5, + "eKeyboardMovement_UpLeft": 5, + "eKeyboardMovement_Up": 5, + "eKeyboardMovement_UpRight": 5, + "}": 107, ";": 235, - "gRestartYN.Centre": 1, + "int": 18, + "KeyboardMovement_KeyDown": 5, + "down": 9, + "arrow": 9, + "KeyboardMovement_KeyLeft": 5, + "left": 4, + "KeyboardMovement_KeyRight": 5, + "right": 5, + "KeyboardMovement_KeyUp": 5, + "up": 4, + "KeyboardMovement_KeyDownRight": 3, + "PgDn": 2, + "(": 281, + "numpad": 8, + ")": 282, + "KeyboardMovement_KeyUpRight": 3, + "PgUp": 2, + "KeyboardMovement_KeyDownLeft": 3, + "End": 2, + "KeyboardMovement_KeyUpLeft": 3, + "Home": 2, + "KeyboardMovement_KeyStop": 3, + "KeyboardMovement_Modes": 4, + "KeyboardMovement_Mode": 4, + "eKeyboardMovement_None": 2, + "stores": 2, + "current": 8, + "keyboard": 1, + "control": 2, + "disabled": 5, + "by": 1, + "default": 1, + "KeyboardMovement_CurrentDirection": 7, + "walking": 1, + "direction": 22, + "of": 6, + "character": 11, + "static": 2, + "function": 54, + "KeyboardMovement": 2, + "SetMode": 2, + "repeatedly_execute": 2, + "-": 217, + "Pressing": 1, "if": 96, + "IsGamePaused": 4, + "true": 18, + "||": 12, + "eKeyboardMovement_Pressing": 2, + "IsInterfaceEnabled": 3, + "false": 26, + "player.on": 2, + "return": 8, + "game": 2, + "is": 10, + "paused": 2, + "module": 2, + "or": 8, + "interface": 3, + "hidden": 2, + "quit": 2, + "newdirection": 43, + "declare": 4, + "variable": 2, + "storing": 4, + "new": 19, + "get": 2, + "IsKeyPressed": 17, + "&&": 8, + "&": 4, + "arrows": 4, + "numeric": 2, + "pad": 2, + "held": 4, + "set": 7, + "to": 14, + "Down": 2, + "Right": 2, + "else": 44, + "none": 1, + "the": 15, + "above": 2, + "it": 1, + "stop": 7, + "regardless": 1, + "whether": 1, + "some": 1, + "are": 1, + "different": 2, + "from": 2, + "player.StopMoving": 3, + "Stop": 4, + "command": 4, + "movement": 2, + "NOT": 2, + "dx": 20, + "dy": 20, + "variables": 2, + "walk": 4, + "coordinates": 4, + "player.WalkStraight": 2, + "player.x": 2, + "+": 7, + "player.y": 2, + "eNoBlock": 2, + "update": 3, + "on_key_press": 2, + "keycode": 27, + "eKeyboardMovement_Tapping": 3, + "key": 2, + "pressed": 4, + "same": 1, + "as": 2, + "on_event": 1, + "EventType": 1, + "event": 2, + "data": 1, + "eEventLeaveRoom": 1, + "initialize_control_panel": 2, + "gPanel.Centre": 1, + "gRestartYN.Centre": 1, "IsSpeechVoxAvailable": 3, "lblVoice.Visible": 1, - "false": 26, "btnVoice.Visible": 1, "sldVoice.Visible": 1, - "}": 107, - "else": 44, "SetVoiceMode": 6, "eSpeechVoiceAndText": 4, "btnVoice.Text": 9, @@ -1158,9 +1461,7 @@ "lblGamma.Visible": 1, "//And": 1, "now": 1, - "set": 7, "all": 2, - "the": 15, "defaults": 1, "System.Volume": 5, "sldAudio.Value": 3, @@ -1172,14 +1473,9 @@ "sldGamma.Value": 3, "game_start": 1, "KeyboardMovement.SetMode": 1, - "eKeyboardMovement_Tapping": 3, - "repeatedly_execute": 2, - "IsGamePaused": 4, - "return": 8, "repeatedly_execute_always": 1, "show_inventory_window": 3, "gInventory.Visible": 2, - "true": 18, "mouse.Mode": 13, "eModeInteract": 3, "mouse.UseModeGraphic": 8, @@ -1199,27 +1495,19 @@ "close_save_game_dialog": 4, "mouse.UseDefaultGraphic": 9, "close_restore_game_dialog": 4, - "on_key_press": 2, "eKeyCode": 1, - "keycode": 27, "eKeyEscape": 5, - "&&": 8, "gRestartYN.Visible": 6, "//Use": 1, "ESC": 1, - "to": 14, "cancel": 1, "restart.": 1, "gPanel.Visible": 11, "eKeyReturn": 1, "RestartGame": 2, - "||": 12, - "IsInterfaceEnabled": 3, "eKeyCtrlQ": 1, "QuitGame": 3, - "//": 66, "Ctrl": 1, - "-": 217, "Q": 1, "eKeyF5": 1, "F5": 1, @@ -1246,7 +1534,6 @@ "we": 1, "do": 1, "here": 1, - "is": 10, "modes.": 1, "//If": 1, "you": 1, @@ -1254,7 +1541,6 @@ "something": 1, "happen": 1, "such": 1, - "as": 2, "GUI": 3, "buttons": 1, "highlighting": 1, @@ -1280,17 +1566,13 @@ "player.ActiveInventory": 2, "null": 2, "//...and": 1, - "player": 13, "has": 1, "a": 1, "selected": 1, "item": 1, - "mode": 10, "UseInv.": 1, "eModeUseinv": 2, "interface_click": 1, - "int": 18, - "interface": 3, "btnInvUp_Click": 1, "GUIControl": 31, "*control": 31, @@ -1300,7 +1582,6 @@ "invCustomInv.ScrollDown": 1, "btnInvOK_Click": 1, "They": 2, - "pressed": 4, "OK": 1, "close": 1, "btnInvSelect_Click": 1, @@ -1314,7 +1595,6 @@ "appearance": 1, "look": 1, "like": 1, - "arrow": 9, "btnIconInv_Click": 1, "btnIconCurInv_Click": 1, "btnIconSave_Click": 2, @@ -1357,7 +1637,6 @@ "btnCancelSave_OnClick": 1, "btnSaveGame_OnClick": 2, "gameSlotToSaveInto": 3, - "+": 7, "i": 5, "while": 1, "<": 1, @@ -1371,133 +1650,175 @@ "lstSaveGamesList_OnSelectionCh": 1, "lstSaveGamesList.SelectedIndex": 3, "txtNewSaveName_OnActivate": 1, - "control": 2, "btnDeleteSave_OnClick": 1, "DeleteSaveSlot": 1, - "//****************************************************************************************************": 8, - "#define": 2, - "DISTANCE": 25, - "distance": 1, - "walks": 1, - "in": 1, - "Tapping": 2, - "before": 1, - "he": 1, - "stops": 1, - "enum": 2, - "KeyboardMovement_Directions": 4, - "eKeyboardMovement_Stop": 9, - "eKeyboardMovement_DownLeft": 5, - "eKeyboardMovement_Down": 5, - "eKeyboardMovement_DownRight": 5, - "eKeyboardMovement_Left": 5, - "eKeyboardMovement_Right": 5, - "eKeyboardMovement_UpLeft": 5, - "eKeyboardMovement_Up": 5, - "eKeyboardMovement_UpRight": 5, - "KeyboardMovement_KeyDown": 5, - "down": 9, - "KeyboardMovement_KeyLeft": 5, - "left": 4, - "KeyboardMovement_KeyRight": 5, - "right": 5, - "KeyboardMovement_KeyUp": 5, - "up": 4, - "KeyboardMovement_KeyDownRight": 3, - "PgDn": 2, - "numpad": 8, - "KeyboardMovement_KeyUpRight": 3, - "PgUp": 2, - "KeyboardMovement_KeyDownLeft": 3, - "End": 2, - "KeyboardMovement_KeyUpLeft": 3, - "Home": 2, - "KeyboardMovement_KeyStop": 3, - "KeyboardMovement_Modes": 4, - "KeyboardMovement_Mode": 4, - "eKeyboardMovement_None": 2, - "stores": 2, - "current": 8, - "keyboard": 1, - "disabled": 5, - "by": 1, - "default": 1, - "KeyboardMovement_CurrentDirection": 7, - "walking": 1, - "direction": 22, - "of": 6, - "character": 11, - "static": 2, - "KeyboardMovement": 2, - "SetMode": 2, - "Pressing": 1, - "eKeyboardMovement_Pressing": 2, - "player.on": 2, - "game": 2, - "paused": 2, - "module": 2, - "or": 8, - "hidden": 2, - "quit": 2, - "newdirection": 43, - "declare": 4, - "variable": 2, - "storing": 4, - "new": 19, - "get": 2, - "IsKeyPressed": 17, - "&": 4, - "arrows": 4, - "numeric": 2, - "pad": 2, - "held": 4, - "Down": 2, - "Right": 2, - "none": 1, - "above": 2, - "it": 1, - "stop": 7, - "regardless": 1, - "whether": 1, - "some": 1, - "are": 1, - "different": 2, - "from": 2, - "player.StopMoving": 3, - "Stop": 4, - "command": 4, - "movement": 2, - "NOT": 2, - "dx": 20, - "dy": 20, - "variables": 2, - "walk": 4, - "coordinates": 4, - "player.WalkStraight": 2, - "player.x": 2, - "player.y": 2, - "eNoBlock": 2, - "update": 3, - "key": 2, - "same": 1, - "on_event": 1, - "EventType": 1, - "event": 2, - "data": 1, - "eEventLeaveRoom": 1, "KeyboardMovement_VERSION": 1, "struct": 1, "import": 1 }, "APL": { + "NameSpace": 1, + "UT": 1, + "sac": 1, + "expect_orig": 1, + "expect": 1, + "NS": 2, + "exception": 1, + "nexpect_orig": 1, + "nexpect": 1, + "{": 21, + "Z": 28, + "}": 21, + "Conf": 5, + "run": 1, + "Argument": 12, + ";": 25, + "PRE_test": 4, + "POST_test": 4, + "TEST_step": 6, + "COVER_step": 4, + "FromSpace": 9, + "load_display_if_not_already_loaded": 2, + "load_salt_scripts_into_current_namespace_if_configured": 2, + "RSI": 1, + "If": 10, + "NC": 4, + "has": 3, + "PROFILE": 2, + "EndIf": 10, + "is_function": 1, + "single_function_test_function": 2, + "COVER_file": 4, + "ElseIf": 3, + "is_list_of_functions": 1, + "list_of_functions_test_function": 2, + "is_file": 1, + "file_test_function": 2, + "(": 21, + "get_file_name": 2, + ")": 20, + "is_dir": 1, + "test_files": 2, + "test_files_in_dir": 1, + "test_dir_function": 2, + "generate_coverage_page": 1, + "#.": 1, + "CY": 1, + "#.UT.appdir": 3, + "SE.SALT.Load": 3, + "TestName": 2, + "run_ut": 3, + "ListOfNames": 2, + "t": 11, + "TS": 4, + "-": 50, + "print_passed_crashed_failed": 2, + "FilePath": 3, + "FileNS": 3, + "Functions": 3, + "TestFunctions": 4, + "FileNS.": 1, + "NL": 2, + "is_test": 1, + "/Functions": 1, + "/": 5, + "Else": 2, + "Test_files": 3, + "#.UT.run": 1, + "separator": 2, + "data": 1, + "cover_target": 1, + "clear": 1, + ".": 5, + "Coverage": 1, + "%": 3, + "": 1, + "": 1, + "http": 2, + "equiv=": 1, + "content=": 1, + "": 1, + "
": 1,
+      "
": 1, + "": 1, + "": 2, + "": 2, + "": 1, + "": 1, + "Page": 1, + "generated": 1, + "|": 2, + "cover_out": 1, + "cover_file": 1, + "UTF": 1, + "_TEST": 2, + ".dyalog": 1, + "Linux": 2, + "APLVersion": 2, + "yes": 2, + "test": 1, + "d": 1, + "&&": 1, + "echo": 2, + "||": 1, + "no": 1, + "gfa": 1, + "I": 3, + "kernel32": 1, + "GetFileAttributes*": 1, + "<": 1, + "find": 1, + "name": 1, + "*_tests.dyalog": 2, + "files": 1, + "Passed": 2, + "Crashed": 1, + "Failed": 1, + "Runtime": 1, + "m": 2, + "s": 2, + "ms": 2, + "CRASHED": 1, + "FAILED": 1, + "Expected": 1, + "Got": 1, + "gotterm": 6, + "term_to_text": 1, + "returned": 1, + "align_and_join_message_parts": 2, + "hdr": 5, + "exp": 5, + "expterm": 5, + "got": 5, + "Parts": 2, + "R1": 3, + "C1": 2, + "R2": 3, + "C2": 3, + "W": 7, + "/C1": 1, + "[": 1, + "]": 1, + "confparam": 4, + "in": 1, + "config": 4, + "/config": 1, + "EndNameSpace": 1, "You": 1, "can": 2, "try": 1, "this": 2, "at": 1, - "http": 1, "//tryapl.org/": 1, - "I": 2, "not": 1, "explain": 1, "how": 1, @@ -1505,82 +1826,94 @@ "suddenly": 1, "love": 1, "crypto": 1, - "-": 1, "language": 1, "Starts": 2, "Middles": 2, "Qualifiers": 2, "Finishes": 2, "rf": 2, - "{": 3, - "(": 1, - ")": 1, - "}": 3, "erf": 2, "deepak": 2 }, "ATS": { "//": 211, + "#define": 4, + "ATS_PACKNAME": 1, + "ATS_STALOADFLAG": 1, + "no": 2, + "static": 1, + "loading": 1, + "at": 2, + "run": 1, + "-": 49, + "time": 1, "#include": 16, + "castfn": 1, + "linset2list": 1, + "{": 142, + "a": 200, + "t0p": 31, + "}": 141, + "(": 562, + "xs": 82, + "set": 34, + "INV": 24, + ")": 567, + "<": 14, + "List0_vt": 5, "staload": 25, - "local": 10, + "UN": 3, + "_": 25, + "datavtype": 1, + "fork": 16, + "FORK": 3, + "of": 59, + "nphil": 13, + "assume": 2, + "fork_vtype": 3, + "implement": 55, + "fork_get_num": 4, + "f": 22, + "let": 34, + "val": 95, + "n": 51, "in": 48, "end": 73, - "of": 59, + "local": 10, + "the_forkarray": 2, + "typedef": 10, + "t": 1, + "channel": 11, + "array_tabulate": 1, + "fopr": 1, + "": 2, + "ch": 7, + "where": 6, + "UN.cast": 2, + "channel_create_exn": 2, + "": 2, + "i2sz": 4, + "channel_insert": 5, + "arrayref_tabulate": 1, + "NPHIL": 6, "[": 49, "]": 48, - "%": 7, - "{": 142, - "#": 7, - "#define": 4, - "NPHIL": 6, - "}": 141, - "typedef": 10, - "nphil": 13, - "natLt": 2, - "(": 562, - ")": 567, - "fun": 56, - "phil_left": 3, - "n": 51, - "phil_right": 3, - "phil_loop": 10, - "void": 14, - "cleaner_loop": 6, - "absvtype": 2, - "fork_vtype": 3, - "ptr": 2, - "vtypedef": 2, - "fork": 16, - "fork_get_num": 4, - "phil_dine": 3, - "lf": 5, - "rf": 5, - "phil_think": 3, - "cleaner_wash": 3, - "f": 22, - "cleaner_return": 4, "fork_changet": 5, - "channel": 11, + "the_forktray": 2, + "+": 20, "forktray_changet": 4, - "_": 25, "sortdef": 2, "ftype": 13, "type": 30, - "-": 49, "infixr": 2, - "a": 200, "b": 26, "": 2, "functor": 12, "F": 34, "list0": 9, "extern": 13, - "val": 95, "functor_list0": 7, - "implement": 55, "lam": 20, - "xs": 82, "list0_map": 2, "": 14, "": 3, @@ -1592,6 +1925,7 @@ "c": 3, "r": 25, "x": 48, + "fun": 56, "Yoneda_phi": 3, "Yoneda_psi": 3, "ftor": 9, @@ -1613,7 +1947,6 @@ "bool2string": 4, "string": 2, "case": 9, - "+": 20, "fprint_val": 2, "": 2, "out": 8, @@ -1626,27 +1959,69 @@ "fprintln": 3, "stdout_ref": 4, "main0": 3, - "ATS_PACKNAME": 1, - "ATS_STALOADFLAG": 1, - "no": 2, - "static": 1, - "loading": 1, - "at": 2, - "run": 1, - "time": 1, - "castfn": 1, - "linset2list": 1, - "t0p": 31, - "set": 34, - "INV": 24, - "<": 14, - "List0_vt": 5, + "%": 7, + "#": 7, + "natLt": 2, + "phil_left": 3, + "phil_right": 3, + "phil_loop": 10, + "void": 14, + "cleaner_loop": 6, + "absvtype": 2, + "ptr": 2, + "vtypedef": 2, + "phil_dine": 3, + "lf": 5, + "rf": 5, + "phil_think": 3, + "cleaner_wash": 3, + "cleaner_return": 4, + "nmod": 1, + "randsleep": 6, + "intGte": 1, + "ignoret": 2, + "sleep": 2, + "uInt": 1, + "rand": 1, + "mod": 1, + "println": 9, + "nl": 2, + "nr": 2, + "ch_lfork": 2, + "ch_rfork": 2, + "channel_takeout": 4, + "HX": 1, + "try": 1, + "to": 16, + "actively": 1, + "induce": 1, + "deadlock": 2, + "ch_forktray": 3, + "f0": 3, + "dynload": 3, + "mythread_create_cloptr": 6, + "llam": 6, + "while": 1, + "true": 5, + "CoYoneda": 7, + "CoYoneda_phi": 2, + "CoYoneda_psi": 3, + "int0": 4, + "I": 8, + "int": 2, + "int2bool": 2, + "i": 6, + "if": 7, + "then": 11, + "else": 7, + "myintlist0": 2, + "g0ofg1": 1, + "list": 1, "set_vtype": 3, "t@ype": 2, "compare_elt_elt": 4, "x1": 1, "x2": 1, - "int": 2, "linset_nil": 2, "linset_make_nil": 2, "linset_sing": 2, @@ -1689,286 +2064,21 @@ "linset_foreach_env": 3, "linset_listize": 2, "linset_listize1": 2, - "": 1, - "html": 1, - "PUBLIC": 1, - "W3C": 1, - "DTD": 2, - "XHTML": 1, - "1": 3, - "EN": 1, - "http": 2, - "www": 1, - "w3": 1, - "org": 1, - "TR": 1, - "xhtml11": 2, - "dtd": 1, - "": 1, - "xmlns=": 1, - "": 1, - "": 1, - "equiv=": 1, - "content=": 1, - "": 1, - "EFFECTIVATS": 1, - "DiningPhil2": 1, - "": 1, - "#patscode_style": 1, - "": 1, - "": 1, - "

": 1, - "Effective": 1, - "ATS": 2, - "Dining": 2, - "Philosophers": 2, - "

": 1, - "In": 2, - "this": 2, - "article": 2, - "I": 8, - "present": 1, - "an": 6, - "implementation": 3, - "slight": 1, - "variant": 1, - "the": 30, - "famous": 1, - "problem": 1, - "by": 4, - "Dijkstra": 1, - "that": 8, - "makes": 1, - "simple": 1, - "but": 1, - "convincing": 1, - "use": 1, - "linear": 2, - "types.": 1, - "

": 8, - "The": 8, - "Original": 2, - "Problem": 2, - "

": 8, - "There": 3, - "are": 7, - "five": 1, - "philosophers": 1, - "sitting": 1, - "around": 1, - "table": 3, - "and": 10, - "there": 3, - "also": 3, - "forks": 7, - "placed": 1, - "on": 8, - "such": 1, - "each": 2, - "is": 26, - "located": 2, - "between": 1, - "left": 3, - "hand": 6, - "philosopher": 5, - "right": 3, - "another": 1, - "philosopher.": 1, - "Each": 4, - "does": 1, - "following": 6, - "routine": 1, - "repeatedly": 1, - "thinking": 1, - "dining.": 1, - "order": 1, - "to": 16, - "dine": 1, - "needs": 2, - "first": 2, - "acquire": 1, - "two": 3, - "one": 3, - "his": 4, - "side": 2, - "other": 2, - "side.": 2, - "After": 2, - "finishing": 1, - "dining": 1, - "puts": 2, - "acquired": 1, - "onto": 1, - "A": 6, - "Variant": 1, - "twist": 1, - "added": 1, - "original": 1, - "version": 1, - "

": 1, - "used": 1, - "it": 2, - "becomes": 1, - "be": 9, - "put": 1, - "tray": 2, - "for": 15, - "dirty": 2, - "forks.": 1, - "cleaner": 2, - "who": 1, - "cleans": 1, - "then": 11, - "them": 2, - "back": 1, - "table.": 1, - "Channels": 1, - "Communication": 1, - "just": 1, - "shared": 1, - "queue": 1, - "fixed": 1, - "capacity.": 1, - "functions": 1, - "inserting": 1, - "element": 5, - "into": 3, - "taking": 1, - "given": 4, - "

": 7,
-      "class=": 6,
-      "#pats2xhtml_sats": 3,
-      "
": 7, - "If": 2, - "channel_insert": 5, - "called": 2, - "full": 4, - "caller": 2, - "blocked": 3, - "until": 2, - "taken": 1, - "channel.": 2, - "channel_takeout": 4, - "empty": 1, - "inserted": 1, - "Channel": 2, - "Fork": 3, - "Forks": 1, - "resources": 1, - "type.": 1, - "initially": 1, - "stored": 2, - "which": 2, - "can": 4, - "obtained": 2, - "calling": 2, - "function": 3, - "where": 6, - "defined": 1, - "natural": 1, - "numbers": 1, - "less": 1, - "than": 1, - ".": 14, - "channels": 4, - "storing": 3, - "chosen": 3, - "capacity": 3, - "reason": 1, - "store": 1, - "most": 1, - "guarantee": 1, - "these": 1, - "never": 2, - "so": 2, - "attempt": 1, - "made": 1, - "send": 1, - "signals": 1, - "awake": 1, - "callers": 1, - "supposedly": 1, - "being": 2, - "due": 1, - "Tray": 1, - "instead": 1, - "become": 1, - "as": 4, - "only": 1, - "total": 1, - "Philosopher": 1, - "Loop": 2, - "implemented": 2, - "loop": 2, - "#pats2xhtml_dats": 3, - "It": 2, - "should": 3, - "straighforward": 2, - "follow": 2, "code": 6, - "Cleaner": 1, - "finds": 1, - "number": 2, - "uses": 1, - "locate": 1, - "fork.": 1, - "Its": 1, - "actual": 1, - "follows": 1, - "now": 1, - "Testing": 1, - "entire": 1, - "files": 1, - "DiningPhil2.sats": 1, - "DiningPhil2.dats": 1, - "DiningPhil2_fork.dats": 1, - "DiningPhil2_thread.dats": 1, - "Makefile": 1, - "available": 1, - "compiling": 1, - "source": 1, - "excutable": 1, - "testing.": 1, - "One": 1, - "able": 1, - "encounter": 1, - "deadlock": 2, - "after": 1, - "running": 1, - "simulation": 1, - "while.": 1, - "
": 1, - "size=": 1, - "This": 1, - "written": 1, - "href=": 1, - "Hongwei": 1, - "Xi": 1, - "
": 1, - "": 1, - "": 1, - "main": 1, - "fprint_filsub": 1, - "UN": 3, "reuse": 2, - "assume": 2, "elt": 2, "list_vt_nil": 16, "list_vt_cons": 17, "list_vt_is_nil": 1, "list_vt_is_cons": 1, - "let": 34, "list_vt_length": 1, - "i2sz": 4, "aux": 4, "nat": 4, + ".": 14, "": 3, "list_vt": 7, "sgn": 9, - "if": 7, "false": 6, - "else": 7, - "true": 5, "list_vt_copy": 2, "list_vt_free": 1, "mynode_cons": 4, @@ -1988,8 +2098,10 @@ "recursive": 1, "n1": 4, "<=>": 1, + "1": 3, "mynode_make_elt": 4, "ans": 2, + "is": 26, "found": 1, "effmask_all": 3, "free@": 1, @@ -2027,52 +2139,256 @@ "linset_takeoutmin_ngc": 2, "unsnoc": 4, "pos": 1, + "and": 10, "fold@xs": 1, - "datavtype": 1, - "FORK": 3, - "the_forkarray": 2, - "t": 1, - "array_tabulate": 1, - "fopr": 1, - "": 2, - "ch": 7, - "UN.cast": 2, - "channel_create_exn": 2, - "": 2, - "arrayref_tabulate": 1, - "the_forktray": 2, - "CoYoneda": 7, - "CoYoneda_phi": 2, - "CoYoneda_psi": 3, - "int0": 4, - "int2bool": 2, - "i": 6, - "myintlist0": 2, - "g0ofg1": 1, - "list": 1, - "nmod": 1, - "randsleep": 6, - "intGte": 1, - "ignoret": 2, - "sleep": 2, - "uInt": 1, - "rand": 1, - "mod": 1, - "println": 9, - "nl": 2, - "nr": 2, - "ch_lfork": 2, - "ch_rfork": 2, - "HX": 1, - "try": 1, - "actively": 1, - "induce": 1, - "ch_forktray": 3, - "f0": 3, - "dynload": 3, - "mythread_create_cloptr": 6, - "llam": 6, - "while": 1 + "": 1, + "html": 1, + "PUBLIC": 1, + "W3C": 1, + "DTD": 2, + "XHTML": 1, + "EN": 1, + "http": 2, + "www": 1, + "w3": 1, + "org": 1, + "TR": 1, + "xhtml11": 2, + "dtd": 1, + "": 1, + "xmlns=": 1, + "": 1, + "": 1, + "equiv=": 1, + "content=": 1, + "": 1, + "EFFECTIVATS": 1, + "DiningPhil2": 1, + "": 1, + "#patscode_style": 1, + "": 1, + "": 1, + "

": 1, + "Effective": 1, + "ATS": 2, + "Dining": 2, + "Philosophers": 2, + "

": 1, + "In": 2, + "this": 2, + "article": 2, + "present": 1, + "an": 6, + "implementation": 3, + "slight": 1, + "variant": 1, + "the": 30, + "famous": 1, + "problem": 1, + "by": 4, + "Dijkstra": 1, + "that": 8, + "makes": 1, + "simple": 1, + "but": 1, + "convincing": 1, + "use": 1, + "linear": 2, + "types.": 1, + "

": 8, + "The": 8, + "Original": 2, + "Problem": 2, + "

": 8, + "There": 3, + "are": 7, + "five": 1, + "philosophers": 1, + "sitting": 1, + "around": 1, + "table": 3, + "there": 3, + "also": 3, + "forks": 7, + "placed": 1, + "on": 8, + "such": 1, + "each": 2, + "located": 2, + "between": 1, + "left": 3, + "hand": 6, + "philosopher": 5, + "right": 3, + "another": 1, + "philosopher.": 1, + "Each": 4, + "does": 1, + "following": 6, + "routine": 1, + "repeatedly": 1, + "thinking": 1, + "dining.": 1, + "order": 1, + "dine": 1, + "needs": 2, + "first": 2, + "acquire": 1, + "two": 3, + "one": 3, + "his": 4, + "side": 2, + "other": 2, + "side.": 2, + "After": 2, + "finishing": 1, + "dining": 1, + "puts": 2, + "acquired": 1, + "onto": 1, + "A": 6, + "Variant": 1, + "twist": 1, + "added": 1, + "original": 1, + "version": 1, + "

": 1, + "used": 1, + "it": 2, + "becomes": 1, + "be": 9, + "put": 1, + "tray": 2, + "for": 15, + "dirty": 2, + "forks.": 1, + "cleaner": 2, + "who": 1, + "cleans": 1, + "them": 2, + "back": 1, + "table.": 1, + "Channels": 1, + "Communication": 1, + "just": 1, + "shared": 1, + "queue": 1, + "fixed": 1, + "capacity.": 1, + "functions": 1, + "inserting": 1, + "element": 5, + "into": 3, + "taking": 1, + "given": 4, + "

": 7,
+      "class=": 6,
+      "#pats2xhtml_sats": 3,
+      "
": 7, + "If": 2, + "called": 2, + "full": 4, + "caller": 2, + "blocked": 3, + "until": 2, + "taken": 1, + "channel.": 2, + "empty": 1, + "inserted": 1, + "Channel": 2, + "Fork": 3, + "Forks": 1, + "resources": 1, + "type.": 1, + "initially": 1, + "stored": 2, + "which": 2, + "can": 4, + "obtained": 2, + "calling": 2, + "function": 3, + "defined": 1, + "natural": 1, + "numbers": 1, + "less": 1, + "than": 1, + "channels": 4, + "storing": 3, + "chosen": 3, + "capacity": 3, + "reason": 1, + "store": 1, + "most": 1, + "guarantee": 1, + "these": 1, + "never": 2, + "so": 2, + "attempt": 1, + "made": 1, + "send": 1, + "signals": 1, + "awake": 1, + "callers": 1, + "supposedly": 1, + "being": 2, + "due": 1, + "Tray": 1, + "instead": 1, + "become": 1, + "as": 4, + "only": 1, + "total": 1, + "Philosopher": 1, + "Loop": 2, + "implemented": 2, + "loop": 2, + "#pats2xhtml_dats": 3, + "It": 2, + "should": 3, + "straighforward": 2, + "follow": 2, + "Cleaner": 1, + "finds": 1, + "number": 2, + "uses": 1, + "locate": 1, + "fork.": 1, + "Its": 1, + "actual": 1, + "follows": 1, + "now": 1, + "Testing": 1, + "entire": 1, + "files": 1, + "DiningPhil2.sats": 1, + "DiningPhil2.dats": 1, + "DiningPhil2_fork.dats": 1, + "DiningPhil2_thread.dats": 1, + "Makefile": 1, + "available": 1, + "compiling": 1, + "source": 1, + "excutable": 1, + "testing.": 1, + "One": 1, + "able": 1, + "encounter": 1, + "after": 1, + "running": 1, + "simulation": 1, + "while.": 1, + "
": 1, + "size=": 1, + "This": 1, + "written": 1, + "href=": 1, + "Hongwei": 1, + "Xi": 1, + "": 1, + "": 1, + "": 1, + "main": 1, + "fprint_filsub": 1 }, "Agda": { "module": 3, @@ -2190,6 +2506,41 @@ "for": 7, "expect": 6, "Completeness": 1, + "examples/systems/file_system": 1, + "abstract": 2, + "Object": 10, + "Name": 2, + "File": 1, + "extends": 10, + "some": 3, + "d": 3, + "Dir": 8, + "this": 14, + "d.entries.contents": 1, + "entries": 3, + "DirEntry": 2, + "parent": 3, + "this.": 4, + "@contents.": 1, + "@entries": 1, + "e1": 2, + "e2": 2, + "e1.name": 1, + "e2.name": 1, + "@parent": 2, + "Root": 5, + "one": 8, + "Cur": 1, + "name": 1, + "contents": 2, + "OneParent_buggyVersion": 2, + "d.parent": 2, + "OneParent_correctVersion": 2, + "&&": 2, + "contents.d": 1, + "NoDirAliases": 3, + "o": 1, + "o.": 1, "examples/systems/views": 1, "open": 2, "util/ordering": 1, @@ -2199,7 +2550,6 @@ "util/relation": 1, "rel": 1, "Ref": 19, - "Object": 10, "t": 16, "b": 13, "v": 25, @@ -2218,13 +2568,11 @@ "been": 1, "invalidated": 1, "obj": 1, - "one": 8, "ViewType": 8, "anyviews": 2, "visualization": 1, "ViewType.views": 1, "Map": 2, - "extends": 10, "keys": 3, "map": 2, "s": 6, @@ -2240,7 +2588,6 @@ "Set": 2, "elts": 2, "SetRef": 5, - "abstract": 2, "KeySetView": 6, "State.views": 1, "IteratorView": 3, @@ -2279,8 +2626,6 @@ "viewFrame": 4, "post.dirty": 1, "pre.dirty": 1, - "some": 3, - "&&": 2, "allocates": 5, "&": 3, "post.refs": 1, @@ -2289,7 +2634,6 @@ "dom": 1, "<:>": 1, "setRefs": 1, - "this": 14, "MapRef.put": 1, "k": 5, "none": 4, @@ -2337,37 +2681,109 @@ "ViewType.pre.views": 2, "but": 1, "#s.obj": 1, - "<": 1, - "examples/systems/file_system": 1, - "Name": 2, - "File": 1, - "d": 3, - "Dir": 8, - "d.entries.contents": 1, - "entries": 3, - "DirEntry": 2, - "parent": 3, - "this.": 4, - "@contents.": 1, - "@entries": 1, - "e1": 2, - "e2": 2, - "e1.name": 1, - "e2.name": 1, - "@parent": 2, - "Root": 5, - "Cur": 1, - "name": 1, - "contents": 2, - "OneParent_buggyVersion": 2, - "d.parent": 2, - "OneParent_correctVersion": 2, - "contents.d": 1, - "NoDirAliases": 3, - "o": 1, - "o.": 1 + "<": 1 + }, + "Ant Build System": { + "": 2, + "version=": 2, + "encoding=": 2, + "": 2, + "name=": 64, + "": 2, + "": 32, + "file=": 38, + "": 2, + "property=": 4, + "": 2, + "": 34, + "location=": 32, + "": 30, + "depends=": 30, + "description=": 16, + "": 2, + "": 2, + "": 2 }, "ApacheConf": { + "ServerSignature": 1, + "Off": 1, + "RewriteCond": 15, + "%": 48, + "{": 16, + "REQUEST_METHOD": 1, + "}": 16, + "(": 16, + "HEAD": 1, + "|": 80, + "TRACE": 1, + "DELETE": 1, + "TRACK": 1, + ")": 17, + "[": 17, + "NC": 13, + "OR": 14, + "]": 17, + "THE_REQUEST": 1, + "r": 1, + "n": 1, + "A": 6, + "D": 6, + "HTTP_REFERER": 1, + "<|>": 6, + "C": 5, + "E": 5, + "HTTP_COOKIE": 1, + "REQUEST_URI": 1, + "/": 3, + ";": 2, + "<": 1, + ".": 7, + "HTTP_USER_AGENT": 5, + "java": 1, + "curl": 2, + "wget": 2, + "winhttp": 1, + "HTTrack": 1, + "clshttp": 1, + "archiver": 1, + "loader": 1, + "email": 1, + "harvest": 1, + "extract": 1, + "grab": 1, + "miner": 1, + "libwww": 1, + "-": 43, + "perl": 1, + "python": 1, + "nikto": 1, + "scan": 1, + "#Block": 1, + "mySQL": 1, + "injects": 1, + "QUERY_STRING": 5, + ".*": 3, + "*": 1, + "union": 1, + "select": 1, + "insert": 1, + "cast": 1, + "set": 1, + "declare": 1, + "drop": 1, + "update": 1, + "md5": 1, + "benchmark": 1, + "./": 1, + "localhost": 1, + "loopback": 1, + ".0": 2, + ".1": 1, + "a": 1, + "z0": 1, + "RewriteRule": 1, + "index.php": 1, + "F": 1, "#": 182, "ServerRoot": 2, "#Listen": 2, @@ -2556,7 +2972,6 @@ "#CustomLog": 2, "ScriptAlias": 1, "/cgi": 2, - "-": 43, "bin/": 2, "#Scriptsock": 2, "/var/run/apache2/cgisock": 1, @@ -2614,84 +3029,6 @@ "startup": 2, "builtin": 4, "connect": 2, - "ServerSignature": 1, - "Off": 1, - "RewriteCond": 15, - "%": 48, - "{": 16, - "REQUEST_METHOD": 1, - "}": 16, - "(": 16, - "HEAD": 1, - "|": 80, - "TRACE": 1, - "DELETE": 1, - "TRACK": 1, - ")": 17, - "[": 17, - "NC": 13, - "OR": 14, - "]": 17, - "THE_REQUEST": 1, - "r": 1, - "n": 1, - "A": 6, - "D": 6, - "HTTP_REFERER": 1, - "<|>": 6, - "C": 5, - "E": 5, - "HTTP_COOKIE": 1, - "REQUEST_URI": 1, - "/": 3, - ";": 2, - "<": 1, - ".": 7, - "HTTP_USER_AGENT": 5, - "java": 1, - "curl": 2, - "wget": 2, - "winhttp": 1, - "HTTrack": 1, - "clshttp": 1, - "archiver": 1, - "loader": 1, - "email": 1, - "harvest": 1, - "extract": 1, - "grab": 1, - "miner": 1, - "libwww": 1, - "perl": 1, - "python": 1, - "nikto": 1, - "scan": 1, - "#Block": 1, - "mySQL": 1, - "injects": 1, - "QUERY_STRING": 5, - ".*": 3, - "*": 1, - "union": 1, - "select": 1, - "insert": 1, - "cast": 1, - "set": 1, - "declare": 1, - "drop": 1, - "update": 1, - "md5": 1, - "benchmark": 1, - "./": 1, - "localhost": 1, - "loopback": 1, - ".0": 2, - ".1": 1, - "a": 1, - "z0": 1, - "RewriteRule": 1, - "index.php": 1, - "F": 1, "libexec/apache2/mod_authn_file.so": 1, "libexec/apache2/mod_authn_dbm.so": 1, "libexec/apache2/mod_authn_anon.so": 1, @@ -2799,93 +3136,110 @@ "Apex": { "global": 70, "class": 7, - "EmailUtils": 1, + "LanguageUtils": 1, "{": 219, "static": 83, - "void": 9, - "sendEmailWithStandardAttachments": 3, - "(": 481, - "List": 71, - "": 30, - "recipients": 11, + "final": 6, "String": 60, - "emailSubject": 10, - "body": 8, - "Boolean": 38, - "useHTML": 6, - "": 1, - "attachmentIDs": 2, - ")": 481, - "": 2, - "stdAttachments": 4, - "[": 102, - "SELECT": 1, - "id": 1, - "name": 2, - "FROM": 1, - "Attachment": 2, - "WHERE": 1, - "Id": 1, - "IN": 1, - "]": 102, + "HTTP_LANGUAGE_CODE_PARAMETER_KEY": 2, ";": 308, - "}": 219, - "": 3, - "fileAttachments": 5, + "DEFAULT_LANGUAGE_CODE": 3, + "Set": 6, + "": 30, + "SUPPORTED_LANGUAGE_CODES": 2, "new": 60, - "for": 24, - "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, - "false": 13, - "null": 92, - "sendHTMLEmail": 1, - "htmlBody": 2, - "true": 12, - "if": 91, - "return": 106, - "recipients.size": 1, - "Messaging.SingleEmailMessage": 3, - "mail": 2, - "//the": 2, - "email": 1, - "is": 5, - "not": 3, - "saved": 1, - "as": 1, - "an": 4, - "activity.": 1, - "mail.setSaveAsActivity": 1, - "mail.setToAddresses": 1, - "mail.setSubject": 1, - "mail.setBccSender": 1, - "mail.setUseSignature": 1, - "mail.setHtmlBody": 1, - "else": 25, - "mail.setPlainTextBody": 1, - "&&": 46, - "fileAttachments.size": 1, - "mail.setFileAttachments": 1, - "Messaging.sendEmail": 1, - "isValidEmailAddress": 2, - "str": 10, - "str.trim": 3, - ".length": 2, - "split": 5, - "str.split": 1, - "split.size": 2, - ".split": 1, - "isNotValidEmailAddress": 1, - "TwilioAPI": 2, + "//Chinese": 2, + "(": 481, + "Simplified": 1, + ")": 481, + "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, + "}": 219, "private": 10, + "Map": 33, + "": 29, + "DEFAULTS": 1, + "getLangCodeByHttpParam": 4, + "returnValue": 22, + "null": 92, + "LANGUAGE_CODE_SET": 1, + "getSuppLangCodeSet": 2, + "if": 91, + "ApexPages.currentPage": 4, + "&&": 46, + ".getParameters": 2, + "LANGUAGE_HTTP_PARAMETER": 7, + "StringUtils.lowerCase": 3, + "StringUtils.replaceChars": 2, + ".get": 4, + "//underscore": 1, + "//dash": 1, + "DEFAULTS.containsKey": 3, + "DEFAULTS.get": 3, + "StringUtils.isNotBlank": 1, + "SUPPORTED_LANGUAGE_CODES.contains": 2, + "return": 106, + "getLangCodeByBrowser": 4, + "LANGUAGES_FROM_BROWSER_AS_STRING": 2, + ".getHeaders": 1, + "List": 71, + "LANGUAGES_FROM_BROWSER_AS_LIST": 3, + "splitAndFilterAcceptLanguageHeader": 2, + "LANGUAGES_FROM_BROWSER_AS_LIST.size": 1, + "for": 24, + "languageFromBrowser": 6, + "getLangCodeByUser": 3, + "UserInfo.getLanguage": 1, + "getLangCodeByHttpParamOrIfNullThenBrowser": 1, + "StringUtils.defaultString": 4, + "getLangCodeByHttpParamOrIfNullThenUser": 1, + "getLangCodeByBrowserOrIfNullThenHttpParam": 1, + "getLangCodeByBrowserOrIfNullThenUser": 1, + "header": 2, + "returnList": 11, + "[": 102, + "]": 102, + "tokens": 3, + "StringUtils.split": 1, + "token": 7, + "token.contains": 1, + "token.substring": 1, + "token.indexOf": 1, + "returnList.add": 8, + "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, + "<": 32, + "translatedLanguageNames": 1, + "TwilioAPI": 2, "MissingTwilioConfigCustomSettingsException": 2, "extends": 1, "Exception": 1, @@ -2911,10 +3265,11 @@ "//": 11, "dummy": 2, "sid": 1, - "token": 7, + "else": 25, "TwilioConfig__c.getOrgDefaults": 1, "throw": 6, "@isTest": 1, + "void": 9, "test_TwilioAPI": 1, "System.assertEquals": 5, "TwilioAPI.getTwilioConfig": 2, @@ -2924,90 +3279,6 @@ ".getAccountSid": 1, ".getSid": 2, "TwilioAPI.getDefaultAccount": 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": 33, - "": 29, - "DEFAULTS": 1, - "getLangCodeByHttpParam": 4, - "returnValue": 22, - "LANGUAGE_CODE_SET": 1, - "getSuppLangCodeSet": 2, - "ApexPages.currentPage": 4, - ".getParameters": 2, - "LANGUAGE_HTTP_PARAMETER": 7, - "StringUtils.lowerCase": 3, - "StringUtils.replaceChars": 2, - ".get": 4, - "//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, - "returnList": 11, - "tokens": 3, - "StringUtils.split": 1, - "token.contains": 1, - "token.substring": 1, - "token.indexOf": 1, - "returnList.add": 8, - "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, - "<": 32, - "translatedLanguageNames": 1, "GeoUtils": 1, "generate": 1, "a": 6, @@ -3062,6 +3333,7 @@ "account": 2, "acct": 1, "form": 1, + "an": 4, "address": 1, "object": 1, "adr": 9, @@ -3079,6 +3351,7 @@ "system.assert": 1, "GeoUtils.generateFromContent": 1, "Account": 2, + "name": 2, "billingstreet": 1, "billingcity": 1, "billingstate": 1, @@ -3086,6 +3359,70 @@ "billingcountry": 1, "insert": 1, "system.assertEquals": 1, + "EmailUtils": 1, + "sendEmailWithStandardAttachments": 3, + "recipients": 11, + "emailSubject": 10, + "body": 8, + "Boolean": 38, + "useHTML": 6, + "": 1, + "attachmentIDs": 2, + "": 2, + "stdAttachments": 4, + "SELECT": 1, + "id": 1, + "FROM": 1, + "Attachment": 2, + "WHERE": 1, + "Id": 1, + "IN": 1, + "": 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, + "false": 13, + "sendHTMLEmail": 1, + "htmlBody": 2, + "true": 12, + "recipients.size": 1, + "Messaging.SingleEmailMessage": 3, + "mail": 2, + "//the": 2, + "email": 1, + "is": 5, + "not": 3, + "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, + "str": 10, + "str.trim": 3, + ".length": 2, + "split": 5, + "str.split": 1, + "split.size": 2, + ".split": 1, + "isNotValidEmailAddress": 1, "ArrayUtils": 1, "EMPTY_STRING_ARRAY": 1, "Integer": 34, @@ -3223,93 +3560,147 @@ "firstItem": 2 }, "AppleScript": { + "property": 7, + "type_list": 6, + "{": 32, + "}": 32, + "extension_list": 6, + "-": 57, + "html": 2, + "is": 40, + "not": 5, + "currently": 2, + "handled": 2, + "on": 18, + "run": 4, "tell": 40, "application": 16, - "activate": 3, - "set": 108, - "current": 3, - "pane": 4, "to": 128, - "end": 67, - "if": 50, - "UI": 1, - "elements": 1, - "enabled": 2, - "then": 28, - "tab": 1, - "group": 1, + "set": 108, + "FinderSelection": 4, + "the": 56, + "selection": 2, + "as": 27, + "alias": 8, + "list": 9, + "FS": 10, + "Ideally": 2, + "this": 2, + "could": 2, + "be": 2, + "passed": 2, + "open": 8, + "handler": 2, + "SelectionCount": 6, + "number": 6, "of": 72, - "window": 5, - "process": 5, - "click": 1, - "radio": 1, - "button": 4, - "delay": 3, - "get": 1, - "value": 1, - "text": 13, - "field": 1, + "count": 10, + "if": 50, + "then": 28, + "userPicksFolder": 6, + "(": 89, + ")": 88, "else": 14, - "display": 4, - "dialog": 4, - "property": 7, + "MyPath": 4, + "path": 6, + "me": 2, + "item": 13, + "If": 2, + "I": 2, + "m": 2, + "a": 4, + "double": 2, + "clicked": 2, + "droplet": 2, + "end": 67, + "these_items": 18, + "choose": 2, + "file": 6, + "with": 11, + "prompt": 2, + "type": 6, + "thesefiles": 2, + "item_info": 24, + "repeat": 19, + "i": 10, + "from": 9, + "this_item": 14, + "info": 4, + "for": 5, + "folder": 10, + "true": 8, + "processFolder": 8, + "false": 9, + "and": 7, + "in": 13, + "or": 6, + "name": 8, + "extension": 4, + "theFilePath": 8, + "string": 17, + "thePOSIXFilePath": 8, + "POSIX": 4, + "processFile": 8, + "process": 5, + "folders": 2, + "theFolder": 6, + "without": 2, + "invisibles": 2, + "text": 13, + "&": 63, + "need": 1, + "pass": 1, + "URL": 1, + "Terminal": 1, + "thePOSIXFileName": 6, + "try": 10, + "terminalCommand": 6, + "convertCommand": 4, + "newFileName": 4, + "do": 4, + "shell": 2, + "script": 2, "lowFontSize": 9, "highFontSize": 6, "messageText": 4, - "repeat": 19, "userInput": 4, - "&": 63, + "display": 4, + "dialog": 4, "return": 16, - "(": 89, - "as": 27, - "string": 17, - ")": 88, "default": 4, "answer": 3, "buttons": 3, - "{": 32, - "}": 32, - "the": 56, + "button": 4, "returned": 5, - "is": 40, "minimumFontSize": 4, "newFontSize": 6, "result": 2, "integer": 3, "greater": 5, "than": 6, - "or": 6, "equal": 3, - "-": 57, "theText": 3, - "not": 5, "exit": 1, "fontList": 2, + "activate": 3, "crazyTextMessage": 2, "make": 3, "new": 2, "outgoing": 2, "message": 2, - "with": 11, "properties": 2, "content": 2, "visible": 2, - "true": 8, "eachCharacter": 4, - "in": 13, "characters": 1, "font": 2, "some": 1, - "item": 13, "size": 5, "random": 4, - "number": 6, - "from": 9, "color": 1, "localMailboxes": 3, "every": 3, "mailbox": 2, - "count": 10, "messageCountDisplay": 5, "my": 3, "getMessageCountsForMailboxes": 4, @@ -3317,12 +3708,9 @@ "account": 1, "eachAccount": 3, "accountMailboxes": 3, - "name": 8, "outputMessage": 2, "subject": 1, - "on": 18, "theMailboxes": 2, - "list": 9, "mailboxes": 1, "returns": 2, "displayString": 4, @@ -3343,71 +3731,6 @@ "paddingLength": 2, "times": 1, "space": 1, - "type_list": 6, - "extension_list": 6, - "html": 2, - "currently": 2, - "handled": 2, - "run": 4, - "FinderSelection": 4, - "selection": 2, - "alias": 8, - "FS": 10, - "Ideally": 2, - "this": 2, - "could": 2, - "be": 2, - "passed": 2, - "open": 8, - "handler": 2, - "SelectionCount": 6, - "userPicksFolder": 6, - "MyPath": 4, - "path": 6, - "me": 2, - "If": 2, - "I": 2, - "m": 2, - "a": 4, - "double": 2, - "clicked": 2, - "droplet": 2, - "these_items": 18, - "choose": 2, - "file": 6, - "prompt": 2, - "type": 6, - "thesefiles": 2, - "item_info": 24, - "i": 10, - "this_item": 14, - "info": 4, - "for": 5, - "folder": 10, - "processFolder": 8, - "false": 9, - "and": 7, - "extension": 4, - "theFilePath": 8, - "thePOSIXFilePath": 8, - "POSIX": 4, - "processFile": 8, - "folders": 2, - "theFolder": 6, - "without": 2, - "invisibles": 2, - "need": 1, - "pass": 1, - "URL": 1, - "Terminal": 1, - "thePOSIXFileName": 6, - "try": 10, - "terminalCommand": 6, - "convertCommand": 4, - "newFileName": 4, - "do": 4, - "shell": 2, - "script": 2, "isVoiceOverRunning": 3, "isRunning": 3, "processes": 2, @@ -3415,6 +3738,7 @@ "isVoiceOverRunningWithAppleScript": 3, "isRunningWithAppleScript": 3, "AppleScript": 2, + "enabled": 2, "VoiceOver": 1, "x": 1, "bounds": 2, @@ -3422,6 +3746,7 @@ "cursor": 1, "error": 3, "currentDate": 3, + "current": 3, "date": 1, "amPM": 4, "currentHour": 9, @@ -3443,6 +3768,18 @@ "day": 1, "output": 1, "say": 1, + "delay": 3, + "pane": 4, + "UI": 1, + "elements": 1, + "tab": 1, + "group": 1, + "window": 5, + "click": 1, + "radio": 1, + "get": 1, + "value": 1, + "field": 1, "windowWidth": 3, "windowHeight": 3, "delimiters": 1, @@ -3478,13 +3815,6 @@ "Serial.print": 1 }, "AsciiDoc": { - "AsciiDoc": 3, - "Home": 1, - "Page": 1, - "Example": 1, - "Articles": 1, - "-": 4, - "Item": 6, "Document": 1, "Title": 1, "Doc": 1, @@ -3511,11 +3841,13 @@ ".Section": 1, "list": 1, "*": 4, + "Item": 6, "Gregory": 2, "Rom": 2, "has": 2, "written": 2, "an": 2, + "AsciiDoc": 3, "plugin": 2, "for": 2, "the": 2, @@ -3525,6 +3857,7 @@ "application.": 2, "https": 1, "//github.com/foo": 1, + "-": 4, "users/foo": 1, "vicmd": 1, "gif": 1, @@ -3542,49 +3875,74 @@ "lteren": 1, "Versionen": 1, "von": 1, - "Ruby": 1 + "Ruby": 1, + "Home": 1, + "Page": 1, + "Example": 1, + "Articles": 1 }, "AspectJ": { "package": 2, - "com.blogspot.miguelinlas3.aspectj.cache": 1, + "aspects.caching": 1, ";": 29, "import": 5, "java.util.Map": 2, + "public": 6, + "abstract": 3, + "aspect": 2, + "OptimizeRecursionCache": 2, + "{": 11, + "@SuppressWarnings": 3, + "(": 46, + ")": 46, + "private": 1, + "Map": 3, + "_cache": 2, + "getCache": 2, + "}": 11, + "pointcut": 3, + "operation": 4, + "Object": 15, + "o": 16, + "topLevelOperation": 4, + "&&": 2, + "cflowbelow": 1, + "before": 1, + "System.out.println": 5, + "+": 7, + "around": 2, + "cachedValue": 4, + "_cache.get": 1, + "if": 2, + "null": 1, + "return": 5, + "proceed": 2, + "after": 2, + "returning": 2, + "result": 3, + "_cache.put": 1, + "_cache.size": 1, + "com.blogspot.miguelinlas3.aspectj.cache": 1, "java.util.WeakHashMap": 1, "org.aspectj.lang.JoinPoint": 1, "com.blogspot.miguelinlas3.aspectj.cache.marker.Cachable": 1, - "public": 6, - "aspect": 2, "CacheAspect": 1, - "{": 11, - "pointcut": 3, "cache": 3, - "(": 46, "Cachable": 2, "cachable": 5, - ")": 46, "execution": 1, "@Cachable": 2, "*": 2, "..": 1, - "&&": 2, "@annotation": 1, - "Object": 15, - "around": 2, "String": 3, "evaluatedKey": 6, "this.evaluateKey": 1, "cachable.scriptKey": 1, "thisJoinPoint": 1, - "if": 2, "cache.containsKey": 1, - "System.out.println": 5, - "+": 7, - "return": 5, "this.cache.get": 1, - "}": 11, "value": 3, - "proceed": 2, "cache.put": 1, "protected": 2, "evaluateKey": 1, @@ -3603,33 +3961,12 @@ "scripting": 1, "in": 1, "annotation": 1, - "Map": 3, "": 2, "new": 1, - "WeakHashMap": 1, - "aspects.caching": 1, - "abstract": 3, - "OptimizeRecursionCache": 2, - "@SuppressWarnings": 3, - "private": 1, - "_cache": 2, - "getCache": 2, - "operation": 4, - "o": 16, - "topLevelOperation": 4, - "cflowbelow": 1, - "before": 1, - "cachedValue": 4, - "_cache.get": 1, - "null": 1, - "after": 2, - "returning": 2, - "result": 3, - "_cache.put": 1, - "_cache.size": 1 + "WeakHashMap": 1 }, "Assembly": { - ";": 3, + ";": 7, "flat": 1, "assembler": 2, "interface": 1, @@ -3716,7 +4053,7 @@ "find_command_start": 2, "lodsb": 11, "cmp": 31, - "h": 18, + "h": 23, "je": 25, "skip_quoted_name": 3, "skip_name": 2, @@ -3800,7 +4137,64 @@ "_GlobalMemoryStatus": 2, "dw": 14, "fixups": 1, - "discardable": 1 + "discardable": 1, + "ORG": 7, + "SJMP": 3, + "START": 2, + "LCALL": 9, + "INT0_ISR": 2, + "RETI": 5, + "Bh": 2, + "T0_ISR": 2, + "INT1_ISR": 2, + "T1_ISR": 2, + "UART_ISR": 2, + "MOV": 9, + "A": 7, + "#11111110b": 2, + "SETB": 3, + "IT0": 1, + "Set": 1, + "External": 2, + "Interrupt": 2, + "to": 1, + "be": 1, + "falling": 1, + "edge": 1, + "triggered": 1, + "EX0": 1, + "Enable": 2, + "Interrut": 1, + "EA": 1, + "LEFT": 3, + "CJNE": 2, + "#01111111b": 1, + "LOOP1": 2, + "JMP": 2, + "RIGHT": 3, + "P1": 4, + "RL": 1, + "DELAY": 5, + "LOOP2": 2, + "RR": 1, + "R1": 2, + "#3": 1, + "FLASH": 2, + "#00h": 1, + "#0FFh": 1, + "DJNZ": 4, + "RET": 6, + "R5": 2, + "#20": 1, + "R5*20": 1, + "mS": 1, + "D1": 2, + "R6": 2, + "#40": 1, + "D2": 2, + "R7": 2, + "#249": 1, + "END": 1 }, "AutoHotkey": { "MsgBox": 1, @@ -4189,9 +4583,33 @@ "F#5#A#10#18#2A#32#3E#47#4C#58#66#6F#78#8F#9B#A9#B7#BD#C5#CC": 1, "F#E3#E9#EF#F4#F9#103#10D#11B#12B#13F#152#163": 1, "C#Blitz3D": 3, + "result": 4, + "s.Sum3Obj": 2, + "Sum3Obj": 6, + "Handle": 2, + "MilliSecs": 4, + "Sum3_": 2, + "MakeSum3Obj": 2, + "Print": 13, + "Sum3": 2, + "WaitKey": 2, + "b": 7, + "c": 7, + "isActive": 4, + "Last": 1, + "Restore": 1, + "label": 1, + "Read": 1, + "foo": 1, + ".label": 1, + "Data": 1, + "a_": 2, + "a.Sum3Obj": 1, + "Object.Sum3Obj": 1, + "return_": 2, + "First": 1, "bk": 3, "PokeFloat": 3, - "Print": 13, "Bin": 4, "%": 6, "Shl": 7, @@ -4201,7 +4619,6 @@ "FloatToHalf": 3, "HalfToFloat": 1, "FToI": 2, - "WaitKey": 2, "Half": 1, "precision": 2, "bit": 2, @@ -4248,30 +4665,7 @@ "DoubleDiv": 1, "DoubleLT": 1, "DoubleGT": 1, - "F#1A#20#2F": 1, - "result": 4, - "s.Sum3Obj": 2, - "Sum3Obj": 6, - "Handle": 2, - "MilliSecs": 4, - "Sum3_": 2, - "MakeSum3Obj": 2, - "Sum3": 2, - "b": 7, - "c": 7, - "isActive": 4, - "Last": 1, - "Restore": 1, - "label": 1, - "Read": 1, - "foo": 1, - ".label": 1, - "Data": 1, - "a_": 2, - "a.Sum3Obj": 1, - "Object.Sum3Obj": 1, - "return_": 2, - "First": 1 + "F#1A#20#2F": 1 }, "BlitzMax": { "SuperStrict": 1, @@ -4301,108 +4695,16 @@ }, "Bluespec": { "package": 2, - "TbTL": 1, - ";": 156, - "import": 1, "TL": 6, - "*": 1, + ";": 156, "interface": 2, - "Lamp": 3, "method": 42, - "Bool": 32, - "changed": 2, "Action": 17, - "show_offs": 2, - "show_ons": 2, - "reset": 2, - "endinterface": 2, - "module": 3, - "mkLamp#": 1, - "(": 158, - "String": 1, - "name": 3, - "lamp": 5, - ")": 163, - "Reg#": 15, - "prev": 5, - "<": 44, - "-": 29, - "mkReg": 15, - "False": 9, - "if": 9, - "&&": 3, - "write": 2, - "+": 7, - "endmethod": 8, - "endmodule": 3, - "mkTest": 1, - "let": 1, - "dut": 2, - "sysTL": 3, - "Bit#": 1, - "ctr": 8, - "carN": 4, - "carS": 2, - "carE": 2, - "carW": 2, - "lamps": 15, - "[": 17, - "]": 17, - "mkLamp": 12, - "dut.lampRedNS": 1, - "dut.lampAmberNS": 1, - "dut.lampGreenNS": 1, - "dut.lampRedE": 1, - "dut.lampAmberE": 1, - "dut.lampGreenE": 1, - "dut.lampRedW": 1, - "dut.lampAmberW": 1, - "dut.lampGreenW": 1, - "dut.lampRedPed": 1, - "dut.lampAmberPed": 1, - "dut.lampGreenPed": 1, - "rule": 10, - "start": 1, - "dumpvars": 1, - "endrule": 10, - "detect_cars": 1, - "dut.set_car_state_N": 1, - "dut.set_car_state_S": 1, - "dut.set_car_state_E": 1, - "dut.set_car_state_W": 1, - "go": 1, - "True": 6, - "<=>": 3, - "12_000": 1, "ped_button_push": 4, - "stop": 1, - "display": 2, - "finish": 1, - "function": 10, - "do_offs": 2, - "l": 3, - "l.show_offs": 1, - "do_ons": 2, - "l.show_ons": 1, - "do_reset": 2, - "l.reset": 1, - "do_it": 4, - "f": 2, - "action": 3, - "for": 3, - "Integer": 3, - "i": 15, - "endaction": 3, - "endfunction": 7, - "any_changes": 2, - "b": 12, - "||": 7, - ".changed": 1, - "return": 9, - "show": 1, - "time": 1, - "endpackage": 2, + "(": 158, + ")": 163, "set_car_state_N": 2, + "Bool": 32, "x": 8, "set_car_state_S": 2, "set_car_state_E": 2, @@ -4419,6 +4721,7 @@ "lampRedPed": 2, "lampAmberPed": 2, "lampGreenPed": 2, + "endinterface": 2, "typedef": 3, "enum": 1, "{": 1, @@ -4439,6 +4742,8 @@ "UInt#": 2, "Time32": 9, "CtrSize": 3, + "module": 3, + "sysTL": 3, "allRedDelay": 2, "amberDelay": 2, "nsGreenDelay": 2, @@ -4446,27 +4751,43 @@ "pedGreenDelay": 1, "pedAmberDelay": 1, "clocks_per_sec": 2, + "Reg#": 15, "state": 21, + "<": 44, + "-": 29, + "mkReg": 15, "next_green": 8, "secs": 7, "ped_button_pushed": 4, + "False": 9, "car_present_N": 3, + "True": 6, "car_present_S": 3, "car_present_E": 4, "car_present_W": 4, "car_present_NS": 3, + "||": 7, "cycle_ctr": 6, + "rule": 10, "dec_cycle_ctr": 1, + "endrule": 10, "Rules": 5, "low_priority_rule": 2, "rules": 4, "inc_sec": 1, + "+": 7, "endrules": 4, + "function": 10, "next_state": 8, "ns": 4, + "action": 3, + "<=>": 3, "0": 2, + "endaction": 3, + "endfunction": 7, "green_seq": 7, "case": 2, + "return": 9, "endcase": 2, "car_present": 4, "make_from_green_rule": 5, @@ -4478,6 +4799,7 @@ "amber_state": 2, "ng": 2, "from_amber": 1, + "&&": 3, "hprs": 10, "7": 1, "1": 1, @@ -4487,12 +4809,84 @@ "5": 1, "6": 1, "fromAllRed": 2, + "if": 9, "else": 4, "noAction": 1, "high_priority_rules": 4, + "[": 17, + "]": 17, + "for": 3, + "Integer": 3, + "i": 15, "rJoin": 1, "addRules": 1, - "preempts": 1 + "preempts": 1, + "endmethod": 8, + "b": 12, + "endmodule": 3, + "endpackage": 2, + "TbTL": 1, + "import": 1, + "*": 1, + "Lamp": 3, + "changed": 2, + "show_offs": 2, + "show_ons": 2, + "reset": 2, + "mkLamp#": 1, + "String": 1, + "name": 3, + "lamp": 5, + "prev": 5, + "write": 2, + "mkTest": 1, + "let": 1, + "dut": 2, + "Bit#": 1, + "ctr": 8, + "carN": 4, + "carS": 2, + "carE": 2, + "carW": 2, + "lamps": 15, + "mkLamp": 12, + "dut.lampRedNS": 1, + "dut.lampAmberNS": 1, + "dut.lampGreenNS": 1, + "dut.lampRedE": 1, + "dut.lampAmberE": 1, + "dut.lampGreenE": 1, + "dut.lampRedW": 1, + "dut.lampAmberW": 1, + "dut.lampGreenW": 1, + "dut.lampRedPed": 1, + "dut.lampAmberPed": 1, + "dut.lampGreenPed": 1, + "start": 1, + "dumpvars": 1, + "detect_cars": 1, + "dut.set_car_state_N": 1, + "dut.set_car_state_S": 1, + "dut.set_car_state_E": 1, + "dut.set_car_state_W": 1, + "go": 1, + "12_000": 1, + "stop": 1, + "display": 2, + "finish": 1, + "do_offs": 2, + "l": 3, + "l.show_offs": 1, + "do_ons": 2, + "l.show_ons": 1, + "do_reset": 2, + "l.reset": 1, + "do_it": 4, + "f": 2, + "any_changes": 2, + ".changed": 1, + "show": 1, + "time": 1 }, "Brightscript": { "**": 17, @@ -4757,542 +5151,237 @@ "buttons": 1 }, "C": { - "#include": 154, - "": 1, - "": 2, - "": 8, - "": 4, - "": 2, - "//": 262, - "for": 88, - "rfUTF8_IsContinuationbyte": 1, - "": 3, - "malloc": 3, - "": 5, - "memcpy": 35, - "e.t.c.": 1, - "int32_t": 112, - "rfFReadLine_UTF8": 5, - "(": 6243, - "FILE*": 64, - "f": 184, - "char**": 7, - "utf8": 36, - "uint32_t*": 34, - "byteLength": 197, - "bufferSize": 6, - "char*": 167, - "eof": 53, - ")": 6245, - "{": 1531, - "bytesN": 98, - ";": 5465, - "uint32_t": 144, - "bIndex": 5, - "#ifdef": 66, - "RF_NEWLINE_CRLF": 1, - "char": 530, - "newLineFound": 1, - "false": 77, - "#endif": 243, - "*bufferSize": 1, - "RF_OPTION_FGETS_READBYTESN": 5, - "+": 551, - "RF_MALLOC": 47, - "tempBuff": 6, - "-": 1803, - "uint16_t": 12, - "RF_LF": 10, - "break": 244, - "}": 1547, - "while": 70, - "&&": 248, - "if": 1015, - "buff": 95, - "size": 120, - "RF_SUCCESS": 14, - "error": 96, - "RE_FILE_EOF": 22, - "EOF": 26, - "found": 20, - "*eofReached": 14, - "true": 73, - "LOG_ERROR": 64, - "return": 529, - "num": 24, - "c": 252, - "*": 261, - "RF_HEXEQ_UI": 7, - "[": 601, - "]": 601, - "rfFgetc_UTF32BE": 3, - "&": 442, - "else": 190, - "else//": 14, - "undo": 5, - "the": 91, - "peek": 5, - "ahead": 5, - "of": 44, - "file": 6, - "pointer": 5, - "fseek": 19, - "SEEK_CUR": 19, - "rfFgets_UTF32LE": 2, - "eofReached": 4, - "do": 21, - "rfFgetc_UTF32LE": 4, - "rfFgets_UTF16BE": 2, - "rfFgetc_UTF16BE": 4, - "<": 219, - "rfFgets_UTF16LE": 2, - "rfFgetc_UTF16LE": 4, - "rfFgets_UTF8": 2, - "rfFgetc_UTF8": 3, - "RF_HEXEQ_C": 9, - "fgetc": 9, - "check": 8, - "ferror": 2, - "RE_FILE_READ": 2, - "*ret": 20, - "cp": 12, - "c2": 13, - "c3": 9, - "c4": 5, - "i_READ_CHECK": 20, - "///": 4, - "success": 4, - "cc": 24, - "ret": 142, - "we": 10, - "need": 5, - "more": 2, - "bytes": 225, - "xC0": 3, - "||": 141, - "xC1": 1, - "RE_UTF8_INVALID_SEQUENCE_INVALID_BYTE": 6, - "RE_UTF8_INVALID_SEQUENCE_END": 6, - "rfUTF8_IsContinuationByte": 12, - "RE_UTF8_INVALID_SEQUENCE_CONBYTE": 6, - "decoded": 3, - "codepoint": 47, - "F": 38, - "|": 132, - "<<": 56, - "end": 48, - "case": 273, - "xE0": 2, - "xF": 5, - "to": 37, - "decode": 6, - "xF0": 2, - "RF_HEXGE_C": 1, - "xBF": 2, - "//invalid": 1, - "byte": 6, - "value": 9, - "are": 6, - "from": 16, - "xFF": 1, - "//if": 1, - "needing": 1, - "than": 5, - "*c": 69, - "swapE": 21, - "v1": 38, - "v2": 26, - "rfUTILS_Endianess": 24, - "RF_LITTLE_ENDIAN": 23, - "fread": 12, - "swap": 9, - "endianess": 40, - "needed": 10, - "rfUTILS_SwapEndianUS": 10, - "RF_HEXGE_US": 4, - "xD800": 8, - "RF_HEXLE_US": 4, - "xDFFF": 8, - "RF_HEXL_US": 8, - "RF_HEXG_US": 8, - "xDBFF": 4, - "RE_UTF16_INVALID_SEQUENCE": 20, - "RE_UTF16_NO_SURRPAIR": 2, - "xDC00": 4, - "user": 2, - "wants": 2, - "ff": 10, - "uint16_t*": 11, - "surrogate": 4, - "pair": 4, - "existence": 2, - "RF_BIG_ENDIAN": 10, - "rfUTILS_SwapEndianUI": 11, - "rfFback_UTF32BE": 2, - "i_FSEEK_CHECK": 14, - "rfFback_UTF32LE": 2, - "rfFback_UTF16BE": 2, - "rfFback_UTF16LE": 2, - "rfFback_UTF8": 2, - "int": 446, - "i": 410, - "switch": 46, - "depending": 1, - "on": 4, - "number": 19, - "read": 1, - "backwards": 1, - "default": 33, - "RE_UTF8_INVALID_SEQUENCE": 2, - "#ifndef": 89, - "HELLO_H": 2, - "#define": 920, - "void": 288, - "hello": 1, + "#include": 192, "": 5, - "": 2, - "": 3, - "": 2, - "ULLONG_MAX": 10, - "MIN": 3, - "#if": 92, - "HTTP_PARSER_DEBUG": 4, - "SET_ERRNO": 47, - "e": 4, - "parser": 334, - "http_errno": 11, - "error_lineno": 3, - "__LINE__": 50, - "#else": 94, - "CALLBACK_NOTIFY_": 3, - "FOR": 11, - "ER": 4, - "assert": 41, - "HTTP_PARSER_ERRNO": 10, - "HPE_OK": 10, - "settings": 6, - "on_##FOR": 4, - "HPE_CB_##FOR": 2, - "CALLBACK_NOTIFY": 10, - "p": 60, + "": 4, + "": 2, + "": 1, + "": 1, + "": 9, + "": 2, + "#ifdef": 70, + "__APPLE__": 2, + "#endif": 265, + "#if": 105, + "defined": 55, + "(": 6594, + ")": 6604, + "&&": 248, + "TARGET_OS_IPHONE": 1, + "#else": 107, + "extern": 41, + "char": 533, + "**environ": 1, + ";": 5912, + "static": 551, + "void": 324, + "uv__chld": 2, + "EV_P_": 1, + "ev_child*": 1, + "watcher": 4, + "int": 509, + "revents": 2, + "{": 1635, + "status": 57, + "-": 1863, + "rstatus": 1, + "exit_status": 3, + "term_signal": 3, + "uv_process_t": 1, + "*process": 1, "data": 69, - "CALLBACK_NOTIFY_NOADVANCE": 2, - "CALLBACK_DATA_": 4, - "LEN": 2, - "FOR##_mark": 7, - "NULL": 330, - "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, - "static": 455, - "const": 358, - "*method_strings": 1, - "XX": 63, - "name": 28, - "string": 18, - "#string": 1, - "HTTP_METHOD_MAP": 3, - "#undef": 7, - "tokens": 5, - "int8_t": 3, - "unhex": 3, - "HTTP_PARSER_STRICT": 5, - "uint8_t": 6, - "normal_url_char": 3, - "T": 3, - "enum": 30, - "state": 104, - "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, - "<=>": 16, - "header_states": 1, - "h_general": 23, - "0": 11, - "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": 11, - "classes": 1, - "depends": 1, - "strict": 2, - "mode": 11, - "define": 14, - "CR": 18, - "r": 58, - "LF": 21, - "n": 70, - "LOWER": 7, - "unsigned": 140, - "0x20": 1, - "IS_ALPHA": 5, - "z": 47, - "IS_NUM": 14, - "9": 1, - "IS_ALPHANUM": 3, - "IS_HEX": 2, - "TOKEN": 4, - "IS_URL_CHAR": 6, - "IS_HOST_CHAR": 4, - "0x80": 1, - "_": 3, - "endif": 6, - "start_state": 1, - "type": 36, - "HTTP_REQUEST": 7, - "cond": 1, - "HPE_STRICT": 1, - "goto": 159, - "HTTP_STRERROR_GEN": 3, - "s": 154, - "#n": 1, - "struct": 360, - "*name": 12, - "*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, - "size_t": 52, - "http_parser_execute": 2, - "http_parser_settings": 5, - "*settings": 2, - "*data": 12, - "len": 30, - "unhex_val": 7, - "*p": 9, - "*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, + "assert": 41, + "&": 467, + "process": 19, + "child_watcher": 5, + "EV_CHILD": 1, + "ev_child_stop": 2, + "EV_A_": 1, + "if": 1023, + "WIFEXITED": 1, + "WEXITSTATUS": 2, + "}": 1651, + "WIFSIGNALED": 2, + "WTERMSIG": 2, + "exit_cb": 3, + "uv__make_socketpair": 2, + "fds": 20, + "[": 1381, + "]": 1381, "flags": 89, - "content_length": 27, - "message_begin": 3, - "HTTP_RESPONSE": 3, - "HPE_INVALID_CONSTANT": 3, - "method": 39, - "HTTP_HEAD": 2, - "index": 58, - "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, - "sizeof": 71, - "header_value": 6, - "F_UPGRADE": 3, - "HPE_INVALID_CONTENT_LENGTH": 4, - "uint64_t": 8, - "t": 32, - "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": 2, - "HPE_UNKNOWN": 1, - "Does": 1, - "see": 2, - "an": 2, - "find": 1, - "message": 3, - "/": 9, - "http_should_keep_alive": 2, - "http_method_str": 1, - "m": 8, - "http_parser_init": 2, - "http_parser_type": 3, - "memset": 4, - "http_errno_name": 1, - "err": 38, - "/sizeof": 4, - ".name": 1, - "http_errno_description": 1, - ".description": 1, - "http_parser_parse_url": 2, - "*buf": 10, - "buflen": 3, - "is_connect": 4, - "http_parser_url": 3, - "*u": 2, - "http_parser_url_fields": 2, - "uf": 14, - "old_uf": 4, - "u": 18, - "port": 7, - "field_set": 5, - "UF_MAX": 3, - "buf": 57, + "SOCK_NONBLOCK": 2, + "fl": 8, + "SOCK_CLOEXEC": 1, + "UV__F_NONBLOCK": 5, + "|": 132, + "socketpair": 2, + "AF_UNIX": 2, + "SOCK_STREAM": 2, + "return": 584, + "errno": 20, + "EINVAL": 6, + "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, + "fd": 34, + "switch": 47, + "UV_IGNORE": 2, + "UV_CREATE_PIPE": 4, + "UV_INHERIT_FD": 3, + "UV_INHERIT_STREAM": 2, + "case": 273, + "data.stream": 7, + "NULL": 330, + "type": 38, + "UV_NAMED_PIPE": 2, + "data.fd": 1, + "else": 192, + "default": 33, + "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, + "||": 141, + "<": 231, + "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": 62, + "stdio_count": 7, + "int*": 22, + "pipes": 23, + "i": 457, + "options.flags": 4, + "UV_PROCESS_DETACHED": 2, + "setsid": 2, + "for": 98, + "+": 732, + "close_fd": 2, + "*": 508, + "use_fd": 7, + "open": 4, + "O_RDONLY": 1, + "O_RDWR": 2, + "perror": 5, + "_exit": 6, "continue": 20, - "UF_SCHEMA": 2, - "UF_HOST": 3, - "UF_PORT": 5, - "UF_PATH": 2, - "UF_QUERY": 2, - "UF_FRAGMENT": 2, - "field_data": 5, - ".len": 3, - ".off": 2, + "dup2": 4, + "options.cwd": 2, + "chdir": 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, + "#ifndef": 94, + "SPAWN_WAIT_EXEC": 5, + "uv_spawn": 1, + "uv_loop_t*": 1, + "loop": 9, + "uv_process_t*": 3, + "char**": 7, + "save_our_env": 3, + "options.stdio_count": 4, + "malloc": 3, + "sizeof": 71, + "signal_pipe": 7, + "struct": 362, + "pollfd": 1, + "pfd": 2, + "pid_t": 2, + "pid": 13, + "ENOMEM": 4, + "goto": 159, + "error": 96, + "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, + "do": 21, + "pfd.fd": 1, + "pfd.events": 1, + "POLLIN": 1, + "POLLHUP": 1, + "pfd.revents": 1, + "poll": 1, + "while": 70, + "EINTR": 1, + "ev_child_init": 1, + "ev_child_start": 1, + "ev": 7, + "child_watcher.data": 1, + "j": 222, + "free": 62, + "uv__set_sys_error": 2, + "uv_process_kill": 1, + "signum": 4, + "r": 58, + "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, + "BLOB_H": 2, + "#define": 929, + "const": 369, + "*blob_type": 2, + "blob": 6, + "object": 41, + "*lookup_blob": 2, + "unsigned": 140, + "*sha1": 16, + "parse_blob_buffer": 2, + "*item": 10, + "*buffer": 6, "long": 105, - "v": 11, - "strtoul": 2, - "xffff": 1, - "http_parser_pause": 2, - "paused": 3, - "HPE_PAUSED": 2, + "size": 120, + "HELLO_H": 2, + "hello": 1, "REFU_USTRING_H": 2, "": 1, "RF_MODULE_STRINGS//": 1, + "check": 8, + "the": 95, "strings": 5, + "are": 6, "included": 2, "as": 4, "a": 80, "module": 3, "": 2, "": 1, + "//": 281, "argument": 1, "count": 17, "": 2, @@ -5303,22 +5392,25 @@ "functionality": 1, "": 1, "unicode": 2, - "__cplusplus": 20, - "extern": 38, + "__cplusplus": 22, "opening": 2, "bracket": 4, "calling": 4, + "from": 16, "C": 14, "RF_CASE_IGNORE": 2, "RF_MATCH_WORD": 5, "RF_STRING_INDEX_OUT_OF_BOUNDS": 2, + "uint32_t": 144, "xFF0FFFF": 1, "rfUTF8_IsContinuationByte2": 1, "b__": 3, + "<=>": 16, "0xBF": 1, "pragma": 1, "pack": 2, "push": 1, + "1": 2, "internal": 4, "author": 1, "Lefteris": 1, @@ -5348,11 +5440,14 @@ "other": 16, "ref": 1, "RF_StringX": 2, + "to": 39, + "see": 2, "what": 1, "operations": 1, "can": 2, - "be": 6, + "be": 7, "performed": 1, + "on": 4, "extended": 3, "Strings": 2, "Functions": 1, @@ -5361,14 +5456,16 @@ "encoding": 14, "exists": 6, "but": 1, - "always": 2, + "always": 3, "at": 3, "Once": 1, "been": 1, "created": 1, - "it": 12, + "it": 13, "assumed": 1, "stream": 3, + "of": 45, + "bytes": 225, "inside": 2, "valid": 1, "since": 5, @@ -5402,6 +5499,7 @@ "clearer": 1, "should": 2, "not": 6, + "string": 20, "marked": 1, "notinherited": 1, "cppcode": 1, @@ -5414,11 +5512,14 @@ "*/": 1, "typedef": 191, "RF_String": 27, - "#pragma": 1, + "char*": 167, + "byteLength": 197, + "#pragma": 8, "pop": 1, "RF_IAMHERE_FOR_DOXYGEN": 22, "RF_String*": 222, "RFS_": 8, + "s": 154, "...": 127, "i_rfString_CreateLocal": 2, "__VA_ARGS__": 66, @@ -5461,16 +5562,18 @@ "i_SELECT_RF_STRING_INIT_NC1": 1, "i_SELECT_RF_STRING_INIT_NC0": 1, "rfString_Create_i": 2, + "int32_t": 112, "rfString_Init_i": 2, "rfString_Create_f": 2, - "float": 26, + "float": 231, + "f": 287, "rfString_Init_f": 2, "rfString_Create_UTF16": 2, + "endianess": 40, "rfString_Init_UTF16": 3, "rfString_Create_UTF32": 2, "rfString_Init_UTF32": 3, "//@": 1, - "defined": 42, "rfString_Assign": 2, "dest": 7, "void*": 135, @@ -5481,27 +5584,34 @@ "i_rfLMS_WRAP2": 5, "rfString_Assign_char": 2, "thisstr": 210, + "character": 11, "rfString_Destroy": 2, "rfString_Deinit": 3, "rfString_ToUTF8": 2, "i_STRING_": 2, "rfString_ToCstr": 2, + "uint16_t*": 11, "rfString_ToUTF16": 4, + "uint32_t*": 34, "length": 58, "rfString_ToUTF32": 4, "uint32_t*length": 1, "iteration": 6, + "/": 28, "rfString_Iterate_Start": 6, "string_": 9, "startCharacterPos_": 4, "characterUnicodeValue_": 4, "byteIndex_": 12, "j_": 6, + "rfUTF8_IsContinuationByte": 12, + "false": 77, "rfString_BytePosToCodePoint": 7, "rfString_Iterate_End": 4, "//Two": 1, "macros": 1, "accomplish": 1, + "an": 2, "any": 3, "given": 5, "going": 1, @@ -5509,6 +5619,7 @@ "This": 1, "macro": 2, "its": 1, + "end": 48, "pair.": 1, "rfString_IterateB_Start": 1, "characterPos_": 5, @@ -5518,6 +5629,7 @@ "rfString_IterateB_End": 1, "rfString_Length": 5, "rfString_GetChar": 2, + "c": 252, "bytepos": 12, "rfString_BytePosToCharPos": 4, "before": 4, @@ -5530,7 +5642,6 @@ "i_rfLMSX_WRAP2": 4, "rfString_Find": 3, "sstr": 39, - "options": 62, "i_rfString_Find": 5, "i_THISSTR_": 60, "i_SEARCHSTR_": 26, @@ -5550,13 +5661,15 @@ "i_SELECT_RF_STRING_FIND0": 1, "rfString_ToInt": 1, "int32_t*": 1, + "v": 25, "rfString_ToDouble": 1, "double*": 1, "rfString_Copy_OUT": 2, "src": 16, "rfString_Copy_IN": 2, - "dst": 15, + "dst": 16, "rfString_Copy_chars": 2, + "n": 74, "rfString_ScanfAfter": 2, "afterstr": 5, "format": 4, @@ -5581,6 +5694,7 @@ "sep": 3, "tokensN": 2, "RF_String**": 2, + "tokens": 5, "rfString_Between": 3, "lstr": 6, "rstr": 24, @@ -5656,7 +5770,7 @@ "i_SELECT_RF_STRING_BEFORE0": 1, "rfString_After": 4, "after": 6, - "out": 18, + "out": 20, "i_rfString_After": 5, "i_NPSELECT_RF_STRING_AFTER": 1, "i_NPSELECT_RF_STRING_AFTER1": 1, @@ -5699,6 +5813,7 @@ "rfString_Prepend": 2, "i_rfString_Prepend": 3, "rfString_Remove": 3, + "number": 19, "i_rfString_Remove": 6, "i_NPSELECT_RF_STRING_REMOVE": 1, "i_NPSELECT_RF_STRING_REMOVE1": 1, @@ -5719,6 +5834,7 @@ "rfString_PruneStart": 2, "rfString_PruneEnd": 2, "rfString_PruneMiddleB": 2, + "p": 60, "rfString_PruneMiddleF": 2, "rfString_Replace": 3, "i_rfString_Replace": 6, @@ -5741,6 +5857,8 @@ "rfString_Strip": 2, "i_rfString_Strip": 3, "rfString_Create_fUTF8": 2, + "FILE*": 64, + "eof": 53, "rfString_Init_fUTF8": 3, "rfString_Assign_fUTF8": 2, "rfString_Append_fUTF8": 2, @@ -5779,651 +5897,10 @@ "option": 9, "added": 1, "you": 1, + "need": 5, "them": 3, "#endif//": 1, "guards": 2, - "git_cache_init": 1, - "git_cache": 4, - "*cache": 4, - "git_cached_obj_freeptr": 1, - "free_ptr": 2, - "git__size_t_powerof2": 1, - "cache": 26, - "size_mask": 6, - "lru_count": 1, - "free_obj": 4, - "git_mutex_init": 1, - "lock": 6, - "nodes": 10, - "git__malloc": 3, - "git_cached_obj": 5, - "GITERR_CHECK_ALLOC": 3, - "git_cache_free": 1, - "git_cached_obj_decref": 3, - "git__free": 15, - "*git_cache_get": 1, - "git_oid": 7, - "*oid": 2, - "hash": 12, - "*node": 2, - "*result": 1, - "oid": 17, - "id": 13, - "git_mutex_lock": 2, - "node": 9, - "git_oid_cmp": 6, - "git_cached_obj_incref": 3, - "git_mutex_unlock": 2, - "*git_cache_try_store": 1, - "*_entry": 1, - "*entry": 2, - "_entry": 1, - "entry": 17, - "yajl_status_to_string": 1, - "yajl_status": 4, - "stat": 3, - "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, - "ctx": 16, - "allowComments": 4, - "validateUTF8": 3, - "hand": 28, - "afsBuffer": 3, - "realloc": 1, - "free": 62, - "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, - "handle": 10, - "yajl_bs_free": 1, - "yajl_buf_free": 1, - "yajl_lex_free": 1, - "YA_FREE": 2, - "yajl_parse": 2, - "jsonText": 4, - "jsonTextLen": 4, - "status": 57, - "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, - "": 1, - "": 3, - "stack": 6, - "READ_VSNPRINTF_ARGS": 5, - "rfUTF8_VerifySequence": 7, - "RF_FAILURE": 24, - "RE_STRING_INIT_FAILURE": 8, - "buffAllocated": 11, - "RF_OPTION_SOURCE_ENCODING": 30, - "characterLength": 16, - "*codepoints": 2, - "j": 206, - "rfLMS_MacroEvalPtr": 2, - "RF_LMS": 6, - "RF_UTF16_LE": 9, - "RF_UTF16_BE": 7, - "codepoints": 44, - "i/2": 2, - "#elif": 14, - "RF_UTF32_LE": 3, - "RF_UTF32_BE": 3, - "UTF16": 4, - "rfUTF16_Decode": 5, - "cleanup": 12, - "rfUTF16_Decode_swap": 5, - "RF_UTF16_BE//": 2, - "RF_UTF32_LE//": 2, - "copy": 4, - "UTF32": 4, - "into": 8, - "RF_UTF32_BE//": 2, - "": 2, - "in": 11, - "encode": 2, - "rfUTF8_Encode": 4, - "While": 2, - "attempting": 2, - "create": 2, - "sequence": 6, - "could": 2, - "properly": 2, - "encoded": 2, - "RE_UTF8_ENCODING": 2, - "End": 2, - "Non": 2, - "code=": 2, - "normally": 1, - "here": 5, - "buffer": 10, - "validity": 2, - "get": 4, - "Error": 2, - "Allocation": 2, - "due": 2, - "invalid": 2, - "rfLMS_Push": 4, - "Memory": 4, - "allocation": 3, - "Local": 2, - "Stack": 2, - "failed": 2, - "Insufficient": 2, - "space": 4, - "Consider": 2, - "compiling": 2, - "bigger": 3, - "Quitting": 2, - "proccess": 2, - "RE_LOCALMEMSTACK_INSUFFICIENT": 8, - "exit": 20, - "during": 1, - "RF_HEXLE_UI": 8, - "RF_HEXGE_UI": 6, - "C0": 3, - "ffff": 4, - "xFC0": 4, - "xF000": 2, - "xE": 2, - "F000": 2, - "C0000": 2, - "E": 11, - "RE_UTF8_INVALID_CODE_POINT": 2, - "numLen": 8, - "max": 4, - "most": 3, - "environment": 3, - "so": 4, - "chars": 3, - "will": 3, - "certainly": 3, - "fit": 3, - "sprintf": 10, - "strlen": 17, - "strcpy": 4, - "utf8ByteLength": 34, - "last": 1, - "utf": 1, - "null": 4, - "termination": 3, - "byteLength*2": 1, - "allocate": 1, - "same": 1, - "different": 1, - "RE_INPUT": 1, - "ends": 3, - "off": 8, - "codeBuffer": 9, - "xFEFF": 1, - "big": 14, - "endian": 20, - "xFFFE0000": 1, - "little": 7, - "according": 1, - "standard": 1, - "BOM": 1, - "means": 1, - "rfUTF32_Length": 1, - "sourceP": 2, - "RF_REALLOC": 9, - "<5)>": 1, - "bytesWritten": 2, - "charsN": 5, - "rfUTF8_Decode": 2, - "rfUTF16_Encode": 1, - "RF_STRING_ITERATE_START": 9, - "RF_STRING_ITERATE_END": 9, - "codePoint": 18, - "thisstrP": 32, - "charPos": 8, - "byteI": 7, - "s1P": 2, - "s2P": 2, - "strcmp": 20, - "sstrP": 6, - "optionsP": 11, - "*optionsP": 8, - "RF_BITFLAG_ON": 5, - "strstr": 2, - "exact": 6, - "": 1, - "0x5a": 1, - "match": 16, - "0x7a": 1, - "substring": 5, - "search": 1, - "loop": 9, - "zero": 2, - "equals": 1, - "then": 1, - "okay": 1, - "errno": 20, - "ERANGE": 1, - "RE_STRING_TOFLOAT_UNDERFLOW": 1, - "RE_STRING_TOFLOAT": 1, - "srcP": 6, - "bytePos": 23, - "terminate": 1, - "afterstrP": 2, - "*s": 3, - "sscanf": 1, - "<=0)>": 1, - "Counts": 1, - "how": 1, - "many": 1, - "times": 1, - "occurs": 1, - "sstr2": 2, - "move": 12, - "rfString_FindBytePos": 10, - "*tokensN": 1, - "lstrP": 1, - "rstrP": 5, - "temp": 11, - "start": 10, - "parNP": 6, - "*parNP": 2, - "minPos": 17, - "thisPos": 8, - "va_list": 3, - "argList": 8, - "va_start": 3, - "va_arg": 2, - "va_end": 3, - "afterP": 2, - "minPosLength": 3, - "go": 8, - "otherP": 4, - "strncat": 1, - "goes": 1, - "numberP": 1, - "*numberP": 1, - "occurences": 5, - "done": 1, - "<=thisstr->": 1, - "keepstrP": 2, - "keepLength": 2, - "charValue": 12, - "*keepChars": 1, - "charBLength": 5, - "keepChars": 4, - "*keepLength": 1, - "": 1, - "does": 1, - "back": 1, - "cover": 1, - "effectively": 1, - "gets": 1, - "deleted": 1, - "rfUTF8_FromCodepoint": 1, - "kind": 1, - "non": 1, - "clean": 1, - "way": 1, - "internally": 1, - "uses": 1, - "variable": 1, - "use": 1, - "determine": 1, - "current": 5, - "backs": 1, - "memmove": 2, - "by": 1, - "contiuing": 1, - "sure": 2, - "position": 1, - "won": 1, - "array": 1, - "nBytePos": 23, - "RF_STRING_ITERATEB_START": 2, - "RF_STRING_ITERATEB_END": 2, - "pBytePos": 15, - "indexing": 1, - "works": 1, - "pbytePos": 2, - "pth": 2, - "got": 1, - "numP": 1, - "*numP": 1, - "just": 1, - "finding": 1, - "foundN": 10, - "diff": 93, - "bSize": 4, - "bytePositions": 17, - "bSize*sizeof": 1, - "rfStringX_FromString_IN": 1, - "temp.bIndex": 2, - "temp.bytes": 1, - "temp.byteLength": 1, - "rfStringX_Deinit": 1, - "replace": 3, - "removed": 2, - "one": 2, - "orSize": 5, - "nSize": 4, - "number*diff": 1, - "strncpy": 3, - "smaller": 1, - "diff*number": 1, - "remove": 1, - "equal": 1, - "subP": 7, - "RF_String*sub": 2, - "noMatch": 8, - "*subValues": 2, - "subLength": 6, - "subValues": 8, - "*subLength": 2, - "lastBytePos": 4, - "testity": 2, - "res1": 2, - "res2": 2, - "unused": 3, - "FILE*f": 2, - "utf8BufferSize": 4, - "rfFReadLine_UTF16LE": 4, - "rfFReadLine_UTF16BE": 6, - "char*utf8": 3, - "rfFReadLine_UTF32LE": 4, - "<0)>": 1, - "Failure": 1, - "initialize": 1, - "reading": 1, - "Little": 1, - "Endian": 1, - "32": 1, - "bytesN=": 1, - "sP": 2, - "encodingP": 1, - "*utf32": 1, - "utf16": 11, - "*encodingP": 1, - "fwrite": 5, - "logging": 5, - "utf32": 10, - "i_WRITE_CHECK": 1, - "RE_FILE_WRITE": 1, - "syscalldef": 1, - "syscalldefs": 1, - "SYSCALL_OR_NUM": 3, - "SYS_restart_syscall": 1, - "MAKE_UINT16": 3, - "SYS_exit": 1, - "SYS_fork": 1, - "main": 3, - "printf": 4, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "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": 2, - "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, - "cpu_hotplug.refcount": 3, - "EXPORT_SYMBOL_GPL": 4, - "put_online_cpus": 2, - "unlikely": 54, - "wake_up_process": 1, - "cpu_hotplug_begin": 4, - "likely": 22, - "__set_current_state": 1, - "TASK_UNINTERRUPTIBLE": 1, - "schedule": 1, - "cpu_hotplug_done": 4, - "__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, - "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, - "*t": 2, - "find_lock_task_mm": 1, - "cpumask_clear_cpu": 5, - "mm_cpumask": 1, - "mm": 1, - "task_unlock": 1, - "rcu_read_unlock": 1, - "inline": 3, - "check_for_tasks": 2, - "write_lock_irq": 1, - "tasklist_lock": 2, - "task_cpu": 1, - "TASK_RUNNING": 1, - "utime": 1, - "stime": 1, - "printk": 12, - "KERN_WARNING": 3, - "comm": 1, - "task_pid_nr": 1, - "write_unlock_irq": 1, - "take_cpu_down_param": 3, - "mod": 13, - "*hcpu": 3, - "take_cpu_down": 2, - "*_param": 1, - "*param": 1, - "_param": 1, - "__cpu_disable": 1, - "CPU_DYING": 1, - "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, - "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, - "__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, - "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, - "PM_SUSPEND_PREPARE": 1, - "PM_HIBERNATION_PREPARE": 1, - "PM_POST_SUSPEND": 1, - "PM_POST_HIBERNATION": 1, - "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": 57, - "UL": 1, - "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, - "init_cpu_possible": 1, - "init_cpu_online": 1, "READLINE_READLINE_CATS": 3, "": 1, "atscntrb_readline_rl_library_version": 1, @@ -6433,538 +5910,1120 @@ "atscntrb_readline_readline": 1, "readline": 1, "ifndef": 2, - "*blob_type": 2, - "blob": 6, - "*lookup_blob": 2, - "*sha1": 16, - "object": 41, - "*obj": 9, - "lookup_object": 2, - "sha1": 20, - "obj": 48, - "create_object": 2, - "OBJ_BLOB": 3, - "alloc_blob_node": 1, - "sha1_to_hex": 8, - "typename": 2, - "parse_blob_buffer": 2, - "*item": 10, - "*buffer": 6, - "item": 24, - "object.parsed": 4, - "COMMIT_H": 2, - "commit_list": 35, - "commit": 59, - "*next": 6, - "*util": 1, - "indegree": 1, - "*parents": 4, - "tree": 3, - "*tree": 3, - "save_commit_buffer": 3, - "*commit_type": 2, - "decoration": 1, - "name_decoration": 3, - "*lookup_commit": 2, - "*lookup_commit_reference": 2, - "*lookup_commit_reference_gently": 2, - "quiet": 5, - "*lookup_commit_reference_by_name": 2, - "*lookup_commit_or_die": 2, - "*ref_name": 2, - "parse_commit_buffer": 3, - "parse_commit": 3, - "find_commit_subject": 2, - "*commit_buffer": 2, - "**subject": 2, - "*commit_list_insert": 1, - "**list": 5, - "**commit_list_append": 2, - "*commit": 10, - "**next": 2, - "commit_list_count": 1, - "*l": 1, - "*commit_list_insert_by_date": 1, - "commit_list_sort_by_date": 2, - "free_commit_list": 1, - "*list": 2, - "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": 7, - "*line_separator": 1, - "userformat_find_requirements": 1, + "http_parser_h": 2, + "HTTP_PARSER_VERSION_MAJOR": 1, + "HTTP_PARSER_VERSION_MINOR": 1, + "": 2, + "_WIN32": 3, + "__MINGW32__": 1, + "_MSC_VER": 5, + "__int8": 2, + "int8_t": 3, + "uint8_t": 8, + "__int16": 2, + "int16_t": 1, + "uint16_t": 12, + "__int32": 2, + "__int64": 3, + "uint64_t": 8, + "size_t": 64, + "ssize_t": 1, + "": 1, + "HTTP_PARSER_STRICT": 5, + "HTTP_PARSER_DEBUG": 4, + "HTTP_MAX_HEADER_SIZE": 2, + "*1024": 4, + "http_parser": 13, + "http_parser_settings": 5, + "HTTP_METHOD_MAP": 3, + "XX": 63, + "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, + "enum": 42, + "http_method": 4, + "num": 24, + "name": 28, + "HTTP_##name": 1, + "#undef": 7, + "http_parser_type": 3, + "HTTP_REQUEST": 7, + "HTTP_RESPONSE": 3, + "HTTP_BOTH": 1, + "F_CHUNKED": 11, + "<<": 56, + "F_CONNECTION_KEEP_ALIVE": 3, + "F_CONNECTION_CLOSE": 3, + "F_TRAILING": 3, + "F_UPGRADE": 3, + "F_SKIPBODY": 4, + "HTTP_ERRNO_MAP": 3, + "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_errno": 11, + "HTTP_PARSER_ERRNO": 10, + "HTTP_PARSER_ERRNO_LINE": 2, + "error_lineno": 3, + "state": 106, + "header_state": 42, + "index": 58, + "nread": 7, + "content_length": 27, + "short": 7, + "http_major": 11, + "http_minor": 11, + "status_code": 8, + "method": 39, + "upgrade": 3, + "*data": 12, + "http_cb": 3, + "on_message_begin": 1, + "http_data_cb": 4, + "on_url": 1, + "on_header_field": 1, + "on_header_value": 1, + "on_headers_complete": 3, + "on_body": 1, + "on_message_complete": 1, + "http_parser_url_fields": 2, + "UF_SCHEMA": 2, + "UF_HOST": 3, + "UF_PORT": 5, + "UF_PATH": 2, + "UF_QUERY": 2, + "UF_FRAGMENT": 2, + "UF_MAX": 3, + "http_parser_url": 3, + "field_set": 5, + "port": 7, + "off": 8, + "len": 30, + "field_data": 5, + "http_parser_init": 2, + "*parser": 9, + "http_parser_execute": 2, + "*settings": 2, + "http_should_keep_alive": 2, + "*http_method_str": 1, + "m": 84, + "*http_errno_name": 1, + "err": 43, + "*http_errno_description": 1, + "http_parser_parse_url": 2, + "*buf": 10, + "buflen": 3, + "is_connect": 4, + "*u": 2, + "http_parser_pause": 2, + "paused": 3, + "BOOTSTRAP_H": 2, + "__GNUC__": 9, + "*true": 1, + "*false": 1, + "*eof": 1, + "*empty_list": 1, + "*global_enviroment": 1, + "obj_type": 1, + "scm_bool": 1, + "scm_empty_list": 1, + "scm_eof": 1, + "scm_char": 1, + "scm_int": 1, + "scm_pair": 1, + "scm_symbol": 1, + "scm_prim_fun": 1, + "scm_lambda": 1, + "scm_str": 1, + "scm_file": 1, + "*eval_proc": 1, + "*maybe_add_begin": 1, + "*code": 2, + "init_enviroment": 1, + "*env": 4, + "eval_err": 1, + "*msg": 8, + "__attribute__": 2, + "noreturn": 1, + "define_var": 1, + "*var": 4, + "*val": 6, + "set_var": 1, + "*get_var": 1, + "*cond2nested_if": 1, + "*cond": 1, + "*let2lambda": 1, + "*let": 1, + "*and2nested_if": 1, + "*and": 1, + "*or2nested_if": 1, + "*or": 1, + "": 1, + "": 1, + "": 3, + "": 1, + "": 1, + "": 1, + "": 1, + "": 2, + "": 1, + "": 2, + "": 1, + "": 6, + "": 1, + "sharedObjectsStruct": 1, + "shared": 1, + "double": 126, + "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": 12, + "syslogLevelMap": 2, + "LOG_DEBUG": 1, + "LOG_INFO": 1, + "LOG_NOTICE": 1, + "LOG_WARNING": 1, + "*c": 69, + "FILE": 3, + "*fp": 3, + "buf": 57, + "rawmode": 2, + "REDIS_LOG_RAW": 2, + "xff": 3, + "server.verbosity": 4, + "fp": 13, + "server.logfile": 8, + "stdout": 5, + "fopen": 3, + "fprintf": 18, + "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, + "fflush": 2, + "fclose": 5, + "server.syslog_enabled": 3, + "syslog": 1, + "redisLog": 33, "*fmt": 2, - "*w": 2, - "format_commit_message": 1, - "*format": 2, - "*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, - "*a": 9, - "sort_in_topological_order": 1, - "list": 1, - "lifo": 1, - "commit_graft": 13, - "nr_parent": 3, - "parent": 7, - "FLEX_ARRAY": 1, - "*read_graft_line": 1, - "register_commit_graft": 2, - "*lookup_commit_graft": 1, - "*get_merge_bases": 1, - "*rev1": 1, - "*rev2": 1, - "*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": 2, - "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, - "single_parent": 1, - "parents": 4, - "next": 8, - "*reduce_heads": 1, - "commit_extra_header": 7, - "*key": 5, - "*value": 5, - "append_merge_tag_headers": 1, - "***tail": 1, - "commit_tree": 1, - "*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_desc": 3, - "merge_remote_util": 1, - "util": 3, - "*get_merge_parent": 1, - "parse_signed_commit": 1, - "*message": 1, - "*signature": 1, - "ATSHOME_LIBATS_DYNARRAY_CATS": 3, - "atslib_dynarray_memcpy": 1, - "atslib_dynarray_memmove": 1, - "PPC_SHA1": 1, - "git_hash_ctx": 7, - "SHA_CTX": 3, - "*git_hash_new_ctx": 1, - "*ctx": 5, - "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, - "": 1, - "_Included_jni_JniLayer": 2, - "JNIEXPORT": 6, - "jlong": 6, - "JNICALL": 6, - "Java_jni_JniLayer_jni_1layer_1initialize": 1, - "JNIEnv": 6, - "jobject": 6, - "jintArray": 1, - "jint": 7, - "Java_jni_JniLayer_jni_1layer_1mainloop": 1, - "Java_jni_JniLayer_jni_1layer_1set_1button": 1, - "Java_jni_JniLayer_jni_1layer_1set_1analog": 1, - "jfloat": 1, - "Java_jni_JniLayer_jni_1layer_1report_1analog_1chg": 1, - "Java_jni_JniLayer_jni_1layer_1kill": 1, - "*check_commit": 1, - "OBJ_COMMIT": 5, - "deref_tag": 1, - "parse_object": 1, - "check_commit": 2, - "lookup_commit_reference_gently": 1, - "lookup_commit_reference": 2, - "die": 5, - "ref_name": 2, - "hashcmp": 2, - "object.sha1": 8, - "warning": 1, - "alloc_commit_node": 1, - "get_sha1": 1, - "parse_commit_date": 2, - "*tail": 2, - "*dateptr": 1, - "tail": 12, + "va_list": 3, + "ap": 4, + "REDIS_MAX_LOGMSG_LEN": 1, + "va_start": 3, + "fmt": 4, + "vsnprintf": 1, + "va_end": 3, + "redisLogFromHandler": 2, + "server.daemonize": 5, + "O_APPEND": 2, + "O_CREAT": 2, + "O_WRONLY": 2, + "STDOUT_FILENO": 2, + "ll2string": 3, + "write": 7, + "strlen": 17, + "time": 10, + "oom": 3, + "REDIS_WARNING": 19, + "sleep": 2, + "abort": 1, + "ustime": 7, + "ust": 7, + "*1000000": 1, + "tv.tv_usec": 3, + "mstime": 5, + "/1000": 1, + "exitFromChild": 1, + "retcode": 3, + "COVERAGE_TEST": 1, + "exit": 20, + "dictVanillaFree": 1, + "*privdata": 8, + "DICT_NOTUSED": 6, + "privdata": 8, + "zfree": 2, + "val": 20, + "dictListDestructor": 2, + "listRelease": 1, + "list*": 1, + "dictSdsKeyCompare": 6, + "*key1": 4, + "*key2": 4, + "l1": 4, + "l2": 3, + "sdslen": 14, + "sds": 13, + "key1": 5, + "key2": 5, "memcmp": 6, - "dateptr": 2, - "**commit_graft": 1, - "commit_graft_alloc": 4, - "commit_graft_nr": 5, - "commit_graft_pos": 2, - "lo": 6, - "hi": 5, - "mi": 5, - "*graft": 3, - "cmp": 9, - "graft": 10, - "ignore_dups": 2, - "pos": 7, - "alloc_nr": 1, - "xrealloc": 2, - "*bufptr": 1, - "**pptr": 1, - "bufptr": 12, - "46": 1, - "5": 1, - "45": 1, - "bogus": 1, - "get_sha1_hex": 2, - "lookup_tree": 1, - "pptr": 5, - "lookup_commit_graft": 1, - "*new_parent": 2, - "48": 1, - "7": 1, - "47": 1, - "bad": 1, - "grafts_replace_parents": 1, - "new_parent": 6, - "lookup_commit": 2, - "commit_list_insert": 2, - "object_type": 1, - "read_sha1_file": 1, - "*eol": 1, - "commit_buffer": 1, - "b_date": 3, - "b": 66, - "a_date": 2, - "*commit_list_get_next": 1, - "commit_list_set_next": 1, - "llist_mergesort": 1, - "peel_to_type": 1, - "*desc": 1, - "desc": 5, - "xmalloc": 2, - "strdup": 1, - "*new": 1, - "new": 4, - "*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, - "diff_path_matches_pathspec": 3, - "git_diff_list": 17, - "*diff": 8, - "*path": 2, - "git_attr_fnmatch": 4, - "*match": 3, - "pathspec.length": 1, - "git_vector_foreach": 4, - "p_fnmatch": 1, - "pattern": 3, - "path": 20, - "FNM_NOMATCH": 1, - "GIT_ATTR_FNMATCH_HASWILD": 1, - "strncmp": 1, - "GIT_ATTR_FNMATCH_NEGATIVE": 1, - "git_diff_delta": 19, - "*diff_delta__alloc": 1, - "git_delta_t": 5, - "*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": 16, - "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, - "GIT_DELTA_MODIFIED": 3, - "old_file.mode": 2, - "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, - "new_oid": 3, - "git_oid_iszero": 2, - "*diff_strdup_prefix": 1, - "git_pool_strcat": 1, - "git_pool_strndup": 1, - "diff_delta__cmp": 3, - "*da": 1, - "*db": 3, - "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, - "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, - "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, - "onto": 7, - "deltas.length": 4, + "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": 5, "*o": 8, - "GIT_VECTOR_GET": 2, - "*f": 2, + "key": 10, + "dictGenHashFunction": 5, "o": 80, - "diff_delta__merge_like_cgit": 1, - "git_vector_swap": 1, - "git_pool_swap": 1, + "dictSdsHash": 4, + "dictSdsCaseHash": 2, + "dictGenCaseHashFunction": 1, + "dictEncObjKeyCompare": 4, + "robj*": 3, + "cmp": 9, + "REDIS_ENCODING_INT": 4, + "getDecodedObject": 3, + "dictEncObjHash": 4, + "REDIS_ENCODING_RAW": 1, + "hash": 12, + "dictType": 8, + "setDictType": 1, + "zsetDictType": 1, + "dbDictType": 2, + "keyptrDictType": 2, + "commandTableDictType": 2, + "hashDictType": 1, + "keylistDictType": 4, + "clusterNodesDictType": 1, + "htNeedsResize": 3, + "dict": 11, + "*dict": 5, + "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, + "break": 244, + "updateDictResizePolicy": 2, + "server.rdb_child_pid": 12, + "server.aof_child_pid": 10, + "dictEnableResize": 1, + "dictDisableResize": 1, + "activeExpireCycle": 2, + "start": 10, + "timelimit": 5, + "*REDIS_EXPIRELOOKUPS_TIME_PERC/REDIS_HZ/100": 1, + "expired": 4, + "redisDb": 3, + "*db": 3, + "db": 10, + "expires": 3, + "slots": 2, + "now": 5, + "num*100/slots": 1, + "REDIS_EXPIRELOOKUPS_PER_CRON": 2, + "dictEntry": 2, + "*de": 2, + "t": 32, + "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, + "REDIS_OPS_SEC_SAMPLES": 3, + "getOperationsPerSecond": 2, + "sum": 3, + "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": 3, + "listFirst": 2, + "listNodeValue": 3, + "run_with_period": 6, + "_ms_": 2, + "loops": 2, + "/REDIS_HZ": 2, + "serverCron": 2, + "aeEventLoop": 2, + "*eventLoop": 2, + "id": 14, + "*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, + "beforeSleep": 2, + "*ln": 3, + "server.unblocked_clients": 4, + "ln": 8, + "redisAssert": 1, + "value": 9, + "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, + "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, + "/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, + "strerror": 4, + "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, + "memset": 4, + "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, + "/sizeof": 4, + "*f": 2, + "sflags": 1, + "retval": 3, + "argv": 54, + "cmd": 46, + "arity": 3, + "argc": 26, + "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, + "strcmp": 20, + "addReplyBulk": 1, + "addReplyMultiBulkLen": 1, + "addReplyBulkLongLong": 2, + "bytesToHuman": 3, + "*s": 3, + "d": 16, + "sprintf": 10, + "n/": 3, + "LL*1024*1024": 2, + "LL*1024*1024*1024": 1, + "genRedisInfoString": 2, + "*section": 2, + "info": 64, + "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_MINOR__": 2, + "__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, + "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": 15, + "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, + "delta": 54, + "flushSlavesOutputBuffers": 1, + "linuxOvercommitMemoryValue": 2, + "fgets": 1, + "atoi": 3, + "linuxOvercommitMemoryWarning": 2, + "createPidFile": 2, + "daemonize": 2, + "STDIN_FILENO": 1, + "STDERR_FILENO": 2, + "printf": 4, + "usage": 2, + "stderr": 15, + "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, + "main": 3, + "**argv": 6, + "zmalloc_enable_thread_safeness": 1, + "srand": 1, + "dictSetHashFunctionSeed": 1, + "*configfile": 1, + "configfile": 2, + "sdscatrepr": 1, + "loadServerConfig": 1, + "loadAppendOnlyFile": 1, + "/1000000": 2, + "rdbLoad": 1, + "ENOENT": 3, + "aeSetBeforeSleepProc": 1, + "aeMain": 1, + "aeDeleteEventLoop": 1, + "ATSHOME_LIBATS_DYNARRAY_CATS": 3, + "": 5, + "atslib_dynarray_memcpy": 1, + "memcpy": 35, + "atslib_dynarray_memmove": 1, + "memmove": 2, "VALUE": 13, "rb_cRDiscount": 4, "rb_rdiscount_to_html": 2, @@ -6988,6 +7047,7 @@ "doc": 6, "mkd_document": 1, "res": 4, + "EOF": 26, "rb_str_cat": 4, "mkd_cleanup": 2, "rb_respond_to": 1, @@ -7011,16 +7071,487 @@ "rb_define_class": 1, "rb_cObject": 1, "rb_define_method": 2, + "strncasecmp": 2, + "_strnicmp": 1, + "REF_TABLE_SIZE": 1, + "BUFFER_BLOCK": 5, + "BUFFER_SPAN": 9, + "MKD_LI_END": 1, + "gperf_case_strncmp": 1, + "GPERF_DOWNCASE": 1, + "GPERF_CASE_STRNCMP": 1, + "link_ref": 2, + "*link": 1, + "*title": 1, + "*next": 6, + "sd_markdown": 6, + "tag": 1, + "tag_len": 3, + "w": 21, + "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": 14, + "opaque": 8, + "parse_table_row": 1, + "columns": 3, + "*col_data": 1, + "header_flag": 3, + "col": 28, + "*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, + "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, + "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, + "__2DGFX": 2, + "": 1, + "": 1, + "VGAPIX": 1, + "x": 95, + "y": 55, + "vgabasemem": 3, + "DPMI_REGS": 1, + "regs": 2, + "//void": 1, + "setvgabasemem": 1, + "drw_chdis": 4, + "mode": 15, + "draw_func_change_display": 1, + "drw_pix": 2, + "COLORS": 12, + "drw_line": 6, + "x0": 10, + "y0": 10, + "x1": 10, + "y1": 9, + "drw_rectl": 2, + "h": 12, + "drw_rectf": 2, + "drw_cirl": 1, + "rad": 3, + "drw_tex": 2, + "tex": 3, + "D_init": 2, + "D_exit": 2, + "save_commit_buffer": 3, + "*commit_type": 2, + "commit": 59, + "*check_commit": 1, + "*obj": 9, + "quiet": 5, + "obj": 48, + "OBJ_COMMIT": 5, + "sha1_to_hex": 8, + "sha1": 20, + "typename": 2, + "*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, + "lookup_commit_reference": 2, + "die": 5, + "_": 3, + "ref_name": 2, + "hashcmp": 2, + "object.sha1": 8, + "warning": 1, + "*lookup_commit": 2, + "lookup_object": 2, + "create_object": 2, + "alloc_commit_node": 1, + "*lookup_commit_reference_by_name": 2, + "*name": 12, + "*commit": 10, + "get_sha1": 1, + "parse_commit": 3, + "parse_commit_date": 2, + "*tail": 2, + "*dateptr": 1, + "tail": 12, + "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, + "*graft": 3, + "graft": 10, + "register_commit_graft": 2, + "ignore_dups": 2, + "pos": 7, + "alloc_nr": 1, + "xrealloc": 2, + "parse_commit_buffer": 3, + "buffer": 10, + "*bufptr": 1, + "parent": 7, + "commit_list": 35, + "**pptr": 1, + "item": 24, + "object.parsed": 4, + "bufptr": 12, + "46": 1, + "tree": 3, + "5": 1, + "45": 1, + "bogus": 1, + "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": 11, + "nr_parent": 3, + "grafts_replace_parents": 1, + "new_parent": 6, + "lookup_commit": 2, + "commit_list_insert": 2, + "next": 8, + "object_type": 1, + "ret": 142, + "read_sha1_file": 1, + "find_commit_subject": 2, + "*commit_buffer": 2, + "**subject": 2, + "*eol": 1, + "*p": 9, + "commit_buffer": 1, + "b_date": 3, + "b": 66, + "a_date": 2, + "*commit_list_get_next": 1, + "*a": 9, + "commit_list_set_next": 1, + "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, + "": 3, + "": 3, + "ULLONG_MAX": 10, + "MIN": 3, + "SET_ERRNO": 47, + "e": 4, + "parser": 334, + "__LINE__": 50, + "CALLBACK_NOTIFY_": 3, + "FOR": 11, + "ER": 4, + "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, + "#string": 1, + "unhex": 3, + "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": 11, + "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, + "classes": 1, + "depends": 1, + "strict": 2, + "define": 14, + "CR": 18, + "LF": 21, + "LOWER": 7, + "0x20": 1, + "IS_ALPHA": 5, + "z": 64, + "IS_NUM": 14, + "9": 1, + "IS_ALPHANUM": 3, + "IS_HEX": 2, + "TOKEN": 4, + "IS_URL_CHAR": 6, + "IS_HOST_CHAR": 4, + "0x80": 1, + "endif": 6, + "start_state": 1, + "cond": 1, + "HPE_STRICT": 1, + "HTTP_STRERROR_GEN": 3, + "#n": 1, + "*description": 1, + "http_strerror_tab": 7, + "http_message_needs_eof": 4, + "parse_url_char": 5, + "ch": 145, + "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, + "HPE_HEADER_OVERFLOW": 1, + "reexecute_byte": 7, + "HPE_CLOSED_CONNECTION": 1, + "message_begin": 3, + "HPE_INVALID_CONSTANT": 3, + "HTTP_HEAD": 2, + "STRICT_CHECK": 15, + "HPE_INVALID_VERSION": 12, + "HPE_INVALID_STATUS": 3, + "HPE_INVALID_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_value": 6, + "HPE_INVALID_CONTENT_LENGTH": 4, + "NEW_MESSAGE": 6, + "HPE_CB_headers_complete": 1, + "to_read": 6, + "body": 6, + "body_mark": 2, + "HPE_INVALID_CHUNK_SIZE": 2, + "HPE_INVALID_INTERNAL_STATE": 1, + "HPE_UNKNOWN": 1, + "Does": 1, + "find": 1, + "message": 3, + "http_method_str": 1, + "http_errno_name": 1, + ".name": 1, + "http_errno_description": 1, + ".description": 1, + "uf": 14, + "old_uf": 4, + "u": 21, + ".len": 3, + ".off": 2, + "xffff": 1, + "HPE_PAUSED": 2, "PY_SSIZE_T_CLEAN": 1, "Py_PYTHON_H": 1, "Python": 2, "headers": 1, + "needed": 10, "compile": 1, "extensions": 1, "please": 1, "install": 1, "development": 1, "Python.": 1, + "#elif": 14, "PY_VERSION_HEX": 11, "Cython": 1, "requires": 1, @@ -7071,7 +7602,6 @@ "PyErr_Warn": 1, "__PYX_BUILD_PY_SSIZE_T": 2, "Py_REFCNT": 1, - "ob": 14, "ob_refcnt": 1, "ob_type": 7, "Py_SIZE": 1, @@ -7084,6 +7614,7 @@ "itemsize": 1, "readonly": 1, "ndim": 2, + "*format": 2, "*shape": 1, "*strides": 1, "*suboffsets": 1, @@ -7103,7 +7634,6 @@ "PY_MAJOR_VERSION": 13, "__Pyx_BUILTIN_MODULE_NAME": 2, "__Pyx_PyCode_New": 2, - "k": 15, "l": 7, "fv": 4, "cell": 4, @@ -7121,6 +7651,7 @@ "CYTHON_PEP393_ENABLED": 2, "__Pyx_PyUnicode_READY": 2, "op": 8, + "likely": 22, "PyUnicode_IS_READY": 1, "_PyUnicode_Ready": 1, "__Pyx_PyUnicode_GET_LENGTH": 2, @@ -7213,6 +7744,7 @@ "PySequence_SetSlice": 2, "__Pyx_PySequence_DelSlice": 2, "PySequence_DelSlice": 2, + "unlikely": 54, "PyErr_SetString": 3, "PyExc_SystemError": 3, "tp_as_mapping": 3, @@ -7229,7 +7761,6 @@ "__Pyx_NAMESTR": 2, "__Pyx_DOCSTR": 2, "__Pyx_PyNumber_Divide": 2, - "y": 14, "PyNumber_TrueDivide": 1, "__Pyx_PyNumber_InPlaceDivide": 2, "PyNumber_InPlaceTrueDivide": 1, @@ -7244,12 +7775,11 @@ "PYREX_WITHOUT_ASSERTIONS": 1, "CYTHON_WITHOUT_ASSERTIONS": 1, "CYTHON_INLINE": 65, - "__GNUC__": 8, - "__inline__": 1, - "_MSC_VER": 5, + "__inline__": 95, "__inline": 1, "__STDC_VERSION__": 2, "L": 1, + "inline": 3, "CYTHON_UNUSED": 14, "**p": 1, "is_unicode": 1, @@ -7274,7 +7804,6 @@ "PyFloat_AS_DOUBLE": 1, "PyFloat_AsDouble": 2, "__pyx_PyFloat_AsFloat": 1, - "__GNUC_MINOR__": 2, "__builtin_expect": 2, "*__pyx_m": 1, "*__pyx_b": 1, @@ -7310,7 +7839,6 @@ "__Pyx_BufFmt_StackElem": 1, "root": 1, "__Pyx_BufFmt_StackElem*": 2, - "head": 3, "fmt_offset": 1, "new_count": 1, "enc_count": 1, @@ -7372,7 +7900,6 @@ "_Complex": 2, "real": 2, "imag": 2, - "double": 126, "__pyx_t_double_complex": 27, "__pyx_obj_7sklearn_12linear_model_8sgd_fast_LossFunction": 15, "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Regression": 11, @@ -7418,6 +7945,7 @@ "threshold": 2, "n_features": 2, "__pyx_vtabstruct_7sklearn_5utils_13weight_vector_WeightVector": 3, + "*w": 2, "*w_data_ptr": 1, "wscale": 1, "sq_norm": 1, @@ -7472,12 +8000,12 @@ "Py_XINCREF": 1, "Py_XDECREF": 1, "__Pyx_CLEAR": 1, - "tmp": 6, + "tmp": 18, "__Pyx_XCLEAR": 1, "*__Pyx_GetName": 1, - "*dict": 5, "__Pyx_ErrRestore": 1, "*type": 4, + "*value": 5, "*tb": 2, "__Pyx_ErrFetch": 1, "**type": 1, @@ -7487,6 +8015,7 @@ "*cause": 1, "__Pyx_RaiseArgtupleInvalid": 7, "func_name": 2, + "exact": 6, "num_min": 1, "num_max": 1, "num_found": 1, @@ -7506,8 +8035,8 @@ "dtype": 1, "nd": 1, "cast": 1, + "stack": 8, "__Pyx_SafeReleaseBuffer": 1, - "info": 64, "__Pyx_TypeTest": 1, "__Pyx_RaiseBufferFallbackError": 1, "*__Pyx_GetItemInt_Generic": 1, @@ -7547,6 +8076,7 @@ "strides": 1, "suboffsets": 1, "__Pyx_Buf_DimInfo": 2, + "refcount": 2, "pybuffer": 1, "__Pyx_Buffer": 2, "*rcbuffer": 1, @@ -7561,7 +8091,6 @@ "__Pyx_minusones": 1, "*__Pyx_Import": 1, "*from_list": 1, - "level": 12, "__Pyx_RaiseImportError": 1, "__Pyx_Print": 1, "__pyx_print": 1, @@ -7573,7 +8102,6 @@ ".imag": 3, "__real__": 1, "__imag__": 1, - "_WIN32": 3, "__Pyx_SET_CREAL": 2, "__Pyx_SET_CIMAG": 2, "__pyx_t_float_complex_from_parts": 1, @@ -7587,7 +8115,7 @@ "__Pyx_c_conjf": 3, "conj": 3, "__Pyx_c_absf": 3, - "abs": 2, + "abs": 5, "__Pyx_c_powf": 3, "pow": 2, "conjf": 1, @@ -7607,12 +8135,11 @@ "cabs": 1, "cpow": 1, "__Pyx_PyInt_AsUnsignedChar": 1, - "short": 6, "__Pyx_PyInt_AsUnsignedShort": 1, "__Pyx_PyInt_AsUnsignedInt": 1, "__Pyx_PyInt_AsChar": 1, "__Pyx_PyInt_AsShort": 1, - "signed": 5, + "signed": 6, "__Pyx_PyInt_AsSignedChar": 1, "__Pyx_PyInt_AsSignedShort": 1, "__Pyx_PyInt_AsSignedInt": 1, @@ -7654,6 +8181,7 @@ "c_line": 1, "py_line": 1, "__Pyx_InitStrings": 1, + "*t": 2, "*__pyx_ptype_7cpython_4type_type": 1, "*__pyx_ptype_5numpy_dtype": 1, "*__pyx_ptype_5numpy_flatiter": 1, @@ -7973,7 +8501,7 @@ "**__pyx_pyargnames": 3, "__pyx_n_s__p": 6, "__pyx_n_s__y": 6, - "values": 30, + "values": 67, "__pyx_kwds": 15, "kw_args": 15, "pos_args": 12, @@ -8000,6 +8528,1100 @@ "__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, "__pyx_base.__pyx_vtab": 1, "__pyx_base.loss": 1, + "PPC_SHA1": 1, + "git_hash_ctx": 7, + "SHA_CTX": 3, + "*git_hash_new_ctx": 1, + "*ctx": 5, + "git__malloc": 3, + "ctx": 16, + "SHA1_Init": 4, + "git_hash_free_ctx": 1, + "git__free": 15, + "git_hash_init": 1, + "git_hash_update": 1, + "SHA1_Update": 3, + "git_hash_final": 1, + "git_oid": 7, + "*out": 3, + "SHA1_Final": 3, + "git_hash_buf": 1, + "git_hash_vec": 1, + "git_buf_vec": 1, + "*vec": 1, + "vec": 2, + ".data": 1, + "_NME_WMAN_H": 2, + "START_HEAD": 2, + "NTS": 1, + "NWMan_event": 3, + "NSTRUCT": 2, + "NWMan": 2, + "bool": 19, + "init": 1, + "destroy": 1, + "create_window": 1, + "destroy_window": 1, + "swap_buffers": 1, + "next_event": 1, + "NWMan_event*": 1, + "event": 1, + "uint": 2, + "get_millis": 1, + "millis": 1, + "rshift_key": 1, + "lshift_key": 1, + "left_key": 1, + "right_key": 1, + "NENUM": 1, + "NWMan_event_type": 3, + "N_WMAN_MOUSE_MOVE": 1, + "N_WMAN_MOUSE_BUTTON": 1, + "N_WMAN_MOUSE_WHEEL": 1, + "N_WMAN_KEYBOARD": 1, + "N_WMAN_QUIT": 1, + "N_WMAN_RESIZE": 1, + "N_WMAN_FOCUS": 1, + "N_WMAN_MOUSE_LEFT": 1, + "N_WMAN_MOUSE_RIGHT": 1, + "N_WMAN_MOUSE_MIDDLE": 1, + "union": 1, + "NPos2i": 2, + "mouse_pos": 1, + "mouse_button": 1, + "mouse_wheel": 1, + "up": 1, + "down": 1, + "keyboard": 1, + "window_quit": 1, + "Will": 1, + "true": 74, + "WM_QUIT": 1, + "window_size": 1, + "window_focus": 1, + "NWMan_event_new": 1, + "NWMan_init": 1, + "NWMan_destroy": 1, + "N_WMan": 1, + "END_HEAD": 2, + "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, + "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, + "*line_separator": 1, + "userformat_find_requirements": 1, + "format_commit_message": 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": 9, + "*pop_commit": 1, + "**stack": 1, + "clear_commit_marks": 1, + "clear_commit_marks_for_object_array": 1, + "object_array": 2, + "sort_in_topological_order": 1, + "list": 1, + "lifo": 1, + "FLEX_ARRAY": 1, + "*read_graft_line": 1, + "*lookup_commit_graft": 1, + "*get_merge_bases": 1, + "*rev1": 1, + "*rev2": 1, + "cleanup": 12, + "*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": 2, + "shallow_flag": 1, + "not_shallow_flag": 1, + "is_descendant_of": 1, + "in_merge_bases": 1, + "interactive_add": 1, + "*prefix": 7, + "patch": 1, + "run_add_interactive": 1, + "*revision": 1, + "*patch_mode": 1, + "**pathspec": 1, + "single_parent": 1, + "*reduce_heads": 1, + "commit_extra_header": 7, + "append_merge_tag_headers": 1, + "***tail": 1, + "commit_tree": 1, + "*ret": 20, + "*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, + "_NMEX_NIGHTMARE_H": 2, + "//#define": 1, + "NMEX": 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, + "diff_path_matches_pathspec": 3, + "git_diff_list": 17, + "*diff": 8, + "*path": 2, + "git_attr_fnmatch": 4, + "*match": 3, + "diff": 93, + "pathspec.length": 1, + "git_vector_foreach": 4, + "match": 16, + "p_fnmatch": 1, + "pattern": 3, + "path": 20, + "FNM_NOMATCH": 1, + "GIT_ATTR_FNMATCH_HASWILD": 1, + "strncmp": 1, + "GIT_ATTR_FNMATCH_NEGATIVE": 1, + "git_diff_delta": 19, + "*diff_delta__alloc": 1, + "git_delta_t": 5, + "*delta": 6, + "git__calloc": 3, + "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, + "fail": 19, + "*diff_delta__merge_like_cgit": 1, + "*b": 6, + "*dup": 1, + "diff_delta__dup": 3, + "dup": 15, + "git_oid_cmp": 6, + "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, + "*entry": 2, + "GIT_DIFF_INCLUDE_IGNORED": 1, + "GIT_DIFF_INCLUDE_UNTRACKED": 1, + "entry": 17, + "diff_delta__alloc": 2, + "GITERR_CHECK_ALLOC": 3, + "GIT_DELTA_MODIFIED": 3, + "old_file.mode": 2, + "old_file.size": 1, + "file_size": 6, + "oid": 17, + "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": 11, + "new_oid": 3, + "git_oid_iszero": 2, + "*diff_strdup_prefix": 1, + "git_pool_strcat": 1, + "git_pool_strndup": 1, + "diff_delta__cmp": 3, + "*da": 1, + "da": 2, + "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": 9, + "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, + "*oid": 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, + "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, + "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, + "onto": 7, + "deltas.length": 4, + "GIT_VECTOR_GET": 2, + "diff_delta__merge_like_cgit": 1, + "git_vector_swap": 1, + "git_pool_swap": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "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, + "lock": 6, + "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": 5, + "cpu_hotplug.refcount": 3, + "EXPORT_SYMBOL_GPL": 4, + "put_online_cpus": 2, + "wake_up_process": 1, + "cpu_hotplug_begin": 4, + "__set_current_state": 1, + "TASK_UNINTERRUPTIBLE": 1, + "schedule": 1, + "cpu_hotplug_done": 4, + "__ref": 6, + "register_cpu_notifier": 2, + "notifier_block": 3, + "*nb": 3, + "raw_notifier_chain_register": 1, + "nb": 2, + "__cpu_notify": 6, + "*v": 3, + "nr_to_call": 2, + "*nr_calls": 1, + "__raw_notifier_call_chain": 1, + "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, + "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, + "TASK_RUNNING": 1, + "utime": 1, + "stime": 1, + "printk": 12, + "KERN_WARNING": 3, + "comm": 1, + "task_pid_nr": 1, + "write_unlock_irq": 1, + "take_cpu_down_param": 3, + "mod": 13, + "*hcpu": 3, + "take_cpu_down": 2, + "*_param": 1, + "*param": 1, + "_param": 1, + "__cpu_disable": 1, + "CPU_DYING": 1, + "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, + "CPU_DOWN_PREPARE": 1, + "CPU_DOWN_FAILED": 2, + "__func__": 2, + "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, + "__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, + "CONFIG_IA64": 1, + "cpu_to_node": 1, + "node_online": 1, + "mem_online_node": 1, + "pgdat": 3, + "NODE_DATA": 1, + "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, + "PM_SUSPEND_PREPARE": 1, + "PM_HIBERNATION_PREPARE": 1, + "PM_POST_SUSPEND": 1, + "PM_POST_HIBERNATION": 1, + "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, + "UL": 1, + "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, + "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, + "init_cpu_possible": 1, + "init_cpu_online": 1, + "": 2, + "": 2, + "": 1, + "READ_VSNPRINTF_ARGS": 5, + "rfUTF8_VerifySequence": 7, + "buff": 95, + "RF_FAILURE": 24, + "LOG_ERROR": 64, + "RE_STRING_INIT_FAILURE": 8, + "buffAllocated": 11, + "RF_MALLOC": 47, + "RF_OPTION_SOURCE_ENCODING": 30, + "characterLength": 16, + "*codepoints": 2, + "rfLMS_MacroEvalPtr": 2, + "RF_LMS": 6, + "RF_UTF16_LE": 9, + "RF_UTF16_BE": 7, + "codepoints": 44, + "i/2": 2, + "RF_UTF32_LE": 3, + "RF_UTF32_BE": 3, + "decode": 6, + "UTF16": 4, + "rfUTILS_Endianess": 24, + "RF_LITTLE_ENDIAN": 23, + "rfUTF16_Decode": 5, + "rfUTF16_Decode_swap": 5, + "RF_UTF16_BE//": 2, + "RF_UTF32_LE//": 2, + "copy": 4, + "UTF32": 4, + "into": 8, + "codepoint": 47, + "rfUTILS_SwapEndianUI": 11, + "RF_UTF32_BE//": 2, + "RF_BIG_ENDIAN": 10, + "": 2, + "than": 5, + "encode": 2, + "rfUTF8_Encode": 4, + "While": 2, + "attempting": 2, + "create": 2, + "byte": 6, + "sequence": 6, + "could": 2, + "properly": 2, + "encoded": 2, + "RE_UTF8_ENCODING": 2, + "End": 2, + "Non": 2, + "code=": 2, + "normally": 1, + "here": 5, + "we": 10, + "validity": 2, + "get": 4, + "Error": 2, + "Allocation": 2, + "due": 2, + "invalid": 2, + "rfLMS_Push": 4, + "Memory": 4, + "allocation": 3, + "Local": 2, + "Stack": 2, + "failed": 2, + "Insufficient": 2, + "space": 4, + "Consider": 2, + "compiling": 2, + "bigger": 3, + "Quitting": 2, + "proccess": 2, + "RE_LOCALMEMSTACK_INSUFFICIENT": 8, + "RE_UTF16_INVALID_SEQUENCE": 20, + "during": 1, + "RF_HEXLE_UI": 8, + "RF_HEXGE_UI": 6, + "ff": 10, + "F": 38, + "C0": 3, + "ffff": 4, + "xFC0": 4, + "xF000": 2, + "xE": 2, + "F000": 2, + "C0000": 2, + "E": 11, + "RE_UTF8_INVALID_CODE_POINT": 2, + "numLen": 8, + "max": 5, + "most": 3, + "environment": 3, + "so": 4, + "chars": 3, + "will": 3, + "certainly": 3, + "fit": 3, + "strcpy": 4, + "utf8ByteLength": 34, + "utf8": 36, + "last": 1, + "utf": 1, + "null": 4, + "termination": 3, + "byteLength*2": 1, + "allocate": 1, + "same": 1, + "else//": 14, + "different": 1, + "RE_INPUT": 1, + "ends": 3, + "swapE": 21, + "codeBuffer": 9, + "RF_HEXEQ_UI": 7, + "xFEFF": 1, + "big": 14, + "endian": 20, + "xFFFE0000": 1, + "little": 7, + "according": 1, + "standard": 1, + "BOM": 1, + "means": 1, + "rfUTF32_Length": 1, + "sourceP": 2, + "RF_REALLOC": 9, + "<5)>": 1, + "bytesWritten": 2, + "charsN": 5, + "rfUTF8_Decode": 2, + "rfUTF16_Encode": 1, + "RF_STRING_ITERATE_START": 9, + "RF_STRING_ITERATE_END": 9, + "codePoint": 18, + "RF_HEXEQ_C": 9, + "xC0": 3, + "xE0": 2, + "xF": 5, + "xF0": 2, + "thisstrP": 32, + "charPos": 8, + "byteI": 7, + "s1P": 2, + "s2P": 2, + "sstrP": 6, + "optionsP": 11, + "*optionsP": 8, + "found": 20, + "RF_BITFLAG_ON": 5, + "strstr": 2, + "": 1, + "0x5a": 1, + "0x7a": 1, + "substring": 5, + "search": 1, + "zero": 2, + "equals": 1, + "then": 1, + "okay": 1, + "RF_SUCCESS": 14, + "ERANGE": 1, + "RE_STRING_TOFLOAT_UNDERFLOW": 1, + "RE_STRING_TOFLOAT": 1, + "srcP": 6, + "bytePos": 23, + "terminate": 1, + "afterstrP": 2, + "sscanf": 1, + "<=0)>": 1, + "Counts": 1, + "how": 1, + "many": 1, + "times": 1, + "occurs": 1, + "sstr2": 2, + "move": 12, + "rfString_FindBytePos": 10, + "*tokensN": 1, + "lstrP": 1, + "rstrP": 5, + "parNP": 6, + "*parNP": 2, + "minPos": 17, + "thisPos": 8, + "argList": 8, + "va_arg": 2, + "afterP": 2, + "minPosLength": 3, + "go": 8, + "otherP": 4, + "strncat": 1, + "goes": 1, + "numberP": 1, + "*numberP": 1, + "occurences": 5, + "done": 1, + "<=thisstr->": 1, + "keepstrP": 2, + "keepLength": 2, + "charValue": 12, + "*keepChars": 1, + "charBLength": 5, + "keepChars": 4, + "*keepLength": 1, + "": 1, + "does": 1, + "back": 1, + "cover": 1, + "effectively": 1, + "gets": 1, + "deleted": 1, + "rfUTF8_FromCodepoint": 1, + "kind": 1, + "non": 1, + "clean": 1, + "way": 1, + "internally": 1, + "uses": 1, + "variable": 1, + "use": 1, + "determine": 1, + "backs": 1, + "by": 1, + "contiuing": 1, + "sure": 2, + "position": 1, + "won": 1, + "array": 1, + "nBytePos": 23, + "RF_STRING_ITERATEB_START": 2, + "RF_STRING_ITERATEB_END": 2, + "pBytePos": 15, + "indexing": 1, + "works": 1, + "pbytePos": 2, + "pth": 2, + "got": 1, + "numP": 1, + "*numP": 1, + "just": 1, + "finding": 1, + "foundN": 10, + "bSize": 4, + "bytePositions": 17, + "bSize*sizeof": 1, + "rfStringX_FromString_IN": 1, + "temp.bIndex": 2, + "temp.bytes": 1, + "temp.byteLength": 1, + "rfStringX_Deinit": 1, + "replace": 3, + "removed": 2, + "one": 2, + "orSize": 5, + "nSize": 4, + "number*diff": 1, + "strncpy": 3, + "smaller": 1, + "diff*number": 1, + "remove": 1, + "equal": 1, + "subP": 7, + "RF_String*sub": 2, + "noMatch": 8, + "*subValues": 2, + "subLength": 6, + "subValues": 8, + "*subLength": 2, + "lastBytePos": 4, + "testity": 2, + "res1": 2, + "res2": 2, + "bytesN": 98, + "bufferSize": 6, + "unused": 3, + "rfFReadLine_UTF8": 5, + "FILE*f": 2, + "utf8BufferSize": 4, + "rfFReadLine_UTF16LE": 4, + "rfFReadLine_UTF16BE": 6, + "char*utf8": 3, + "rfFReadLine_UTF32LE": 4, + "<0)>": 1, + "Failure": 1, + "initialize": 1, + "reading": 1, + "Little": 1, + "Endian": 1, + "32": 1, + "file": 6, + "bytesN=": 1, + "sP": 2, + "encodingP": 1, + "*utf32": 1, + "utf16": 11, + "*encodingP": 1, + "fwrite": 5, + "logging": 5, + "rfUTILS_SwapEndianUS": 10, + "utf32": 10, + "i_WRITE_CHECK": 1, + "RE_FILE_WRITE": 1, + "": 1, + "_Included_jni_JniLayer": 2, + "JNIEXPORT": 6, + "jlong": 6, + "JNICALL": 6, + "Java_jni_JniLayer_jni_1layer_1initialize": 1, + "JNIEnv": 6, + "jobject": 6, + "jintArray": 1, + "jint": 7, + "Java_jni_JniLayer_jni_1layer_1mainloop": 1, + "Java_jni_JniLayer_jni_1layer_1set_1button": 1, + "Java_jni_JniLayer_jni_1layer_1set_1analog": 1, + "jfloat": 1, + "Java_jni_JniLayer_jni_1layer_1report_1analog_1chg": 1, + "Java_jni_JniLayer_jni_1layer_1kill": 1, + "PQC_ENCRYPT_H": 2, + "": 1, + "": 1, + "ntru_encrypt_poly": 1, + "fmpz_poly_t": 6, + "msg_tern": 1, + "pub_key": 2, + "rnd": 2, + "ntru_params": 2, + "*params": 2, + "ntru_encrypt_string": 1, + "": 1, + "rfUTF8_IsContinuationbyte": 1, + "e.t.c.": 1, + "bIndex": 5, + "RF_NEWLINE_CRLF": 1, + "newLineFound": 1, + "*bufferSize": 1, + "RF_OPTION_FGETS_READBYTESN": 5, + "tempBuff": 6, + "RF_LF": 10, + "RE_FILE_EOF": 22, + "*eofReached": 14, + "rfFgetc_UTF32BE": 3, + "undo": 5, + "peek": 5, + "ahead": 5, + "pointer": 5, + "fseek": 19, + "SEEK_CUR": 19, + "rfFgets_UTF32LE": 2, + "eofReached": 4, + "rfFgetc_UTF32LE": 4, + "rfFgets_UTF16BE": 2, + "rfFgetc_UTF16BE": 4, + "rfFgets_UTF16LE": 2, + "rfFgetc_UTF16LE": 4, + "rfFgets_UTF8": 2, + "rfFgetc_UTF8": 3, + "fgetc": 9, + "ferror": 2, + "RE_FILE_READ": 2, + "cp": 12, + "c2": 13, + "c3": 9, + "c4": 5, + "i_READ_CHECK": 20, + "///": 4, + "success": 4, + "cc": 24, + "more": 2, + "xC1": 1, + "RE_UTF8_INVALID_SEQUENCE_INVALID_BYTE": 6, + "RE_UTF8_INVALID_SEQUENCE_END": 6, + "RE_UTF8_INVALID_SEQUENCE_CONBYTE": 6, + "decoded": 3, + "RF_HEXGE_C": 1, + "xBF": 2, + "//invalid": 1, + "xFF": 1, + "//if": 1, + "needing": 1, + "v1": 38, + "v2": 26, + "fread": 12, + "RF_HEXGE_US": 4, + "xD800": 8, + "RF_HEXLE_US": 4, + "xDFFF": 8, + "RF_HEXL_US": 8, + "RF_HEXG_US": 8, + "xDBFF": 4, + "RE_UTF16_NO_SURRPAIR": 2, + "xDC00": 4, + "user": 2, + "wants": 2, + "surrogate": 4, + "pair": 4, + "existence": 2, + "rfFback_UTF32BE": 2, + "i_FSEEK_CHECK": 14, + "rfFback_UTF32LE": 2, + "rfFback_UTF16BE": 2, + "rfFback_UTF16LE": 2, + "rfFback_UTF8": 2, + "depending": 1, + "read": 1, + "backwards": 1, + "RE_UTF8_INVALID_SEQUENCE": 2, + "__SUNPRO_C": 1, + "align": 1, + "ArrowLeft": 3, + "__aligned__": 1, "__wglew_h__": 2, "__WGLEW_H__": 1, "__wglext_h_": 2, @@ -8071,7 +9693,6 @@ "PFNWGLCREATEASSOCIATEDCONTEXTAMDPROC": 2, "PFNWGLCREATEASSOCIATEDCONTEXTATTRIBSAMDPROC": 2, "hShareContext": 2, - "int*": 22, "attribList": 2, "PFNWGLDELETEASSOCIATEDCONTEXTAMDPROC": 2, "hglrc": 5, @@ -8192,7 +9813,7 @@ "__WGLEW_ARB_multisample": 2, "WGL_ARB_pbuffer": 2, "WGL_DRAW_TO_PBUFFER_ARB": 1, - "D": 8, + "D": 9, "WGL_MAX_PBUFFER_PIXELS_ARB": 1, "WGL_MAX_PBUFFER_WIDTH_ARB": 1, "WGL_MAX_PBUFFER_HEIGHT_ARB": 1, @@ -8958,7 +10579,6 @@ "*denominator": 1, "PFNWGLGETSYNCVALUESOMLPROC": 2, "INT64*": 3, - "ust": 7, "INT64": 18, "*msc": 3, "*sbc": 3, @@ -8997,925 +10617,300 @@ "wglewGetContext": 4, "wglewIsSupported": 2, "wglewGetExtension": 1, - "BOOTSTRAP_H": 2, - "*true": 1, - "*false": 1, - "*eof": 1, - "*empty_list": 1, - "*global_enviroment": 1, - "obj_type": 1, - "scm_bool": 1, - "scm_empty_list": 1, - "scm_eof": 1, - "scm_char": 1, - "scm_int": 1, - "scm_pair": 1, - "scm_symbol": 1, - "scm_prim_fun": 1, - "scm_lambda": 1, - "scm_str": 1, - "scm_file": 1, - "*eval_proc": 1, - "*maybe_add_begin": 1, - "*code": 2, - "init_enviroment": 1, - "*env": 4, - "eval_err": 1, - "__attribute__": 1, - "noreturn": 1, - "define_var": 1, - "*var": 4, - "*val": 6, - "set_var": 1, - "*get_var": 1, - "*cond2nested_if": 1, - "*cond": 1, - "*let2lambda": 1, - "*let": 1, - "*and2nested_if": 1, - "*and": 1, - "*or2nested_if": 1, - "*or": 1, - "BLOB_H": 2, - "": 1, - "": 1, - "": 2, - "": 1, - "": 1, - "": 1, - "": 2, - "": 1, - "": 2, - "": 1, - "": 1, - "": 1, - "sharedObjectsStruct": 1, - "shared": 1, - "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, - "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, - "stdout": 5, - "fopen": 3, - "fprintf": 18, - "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, - "fflush": 2, - "fclose": 5, - "server.syslog_enabled": 3, - "syslog": 1, - "redisLog": 33, - "ap": 4, - "REDIS_MAX_LOGMSG_LEN": 1, - "vsnprintf": 1, - "redisLogFromHandler": 2, - "server.daemonize": 5, - "open": 4, - "O_APPEND": 2, - "O_CREAT": 2, - "O_WRONLY": 2, - "STDOUT_FILENO": 2, - "ll2string": 3, - "write": 7, - "time": 10, - "close": 13, - "oom": 3, - "REDIS_WARNING": 19, - "sleep": 1, - "abort": 1, - "ustime": 7, - "*1000000": 1, - "tv.tv_usec": 3, - "mstime": 5, - "/1000": 1, - "exitFromChild": 1, - "retcode": 3, - "COVERAGE_TEST": 1, - "_exit": 6, - "dictVanillaFree": 1, - "*privdata": 8, - "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, - "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, - "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, - "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, - "REDIS_OPS_SEC_SAMPLES": 3, - "getOperationsPerSecond": 2, - "sum": 3, - "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, - "listFirst": 2, - "listNodeValue": 3, - "run_with_period": 6, - "_ms_": 2, - "loops": 2, - "/REDIS_HZ": 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, - "pid_t": 2, - "pid": 13, - "wait3": 1, - "WNOHANG": 1, - "exitcode": 3, - "WEXITSTATUS": 2, - "bysignal": 4, - "WIFSIGNALED": 2, - "WTERMSIG": 2, - "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, - "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, - "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, - "/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, - "strerror": 4, - "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, - "*1024": 4, - "REDIS_MAXMEMORY_NO_EVICTION": 2, - "clusterInit": 1, - "scriptingInit": 1, - "slowlogInit": 1, - "bioInit": 1, - "numcommands": 5, - "sflags": 1, - "retval": 3, - "argv": 54, - "cmd": 46, - "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, - "kill": 4, - "SIGKILL": 2, - "rdbRemoveTempFile": 1, - "aof_fsync": 1, - "rdbSave": 1, - "addReplyBulk": 1, - "addReplyMultiBulkLen": 1, - "addReplyBulkLongLong": 2, - "bytesToHuman": 3, - "n/": 3, - "LL*1024*1024": 2, - "LL*1024*1024*1024": 1, - "genRedisInfoString": 2, - "*section": 2, - "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_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, - "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, - "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, - "__linux__": 3, - "linuxOvercommitMemoryValue": 2, - "fgets": 1, - "atoi": 3, - "linuxOvercommitMemoryWarning": 2, - "createPidFile": 2, - "daemonize": 2, - "fork": 2, - "setsid": 2, - "O_RDWR": 2, - "dup2": 4, - "STDIN_FILENO": 1, - "STDERR_FILENO": 2, - "usage": 2, - "stderr": 15, - "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, - "ENOENT": 3, - "aeSetBeforeSleepProc": 1, - "aeMain": 1, - "aeDeleteEventLoop": 1, + "set_vgabasemem": 2, + "ULONG": 1, + "vgabase": 3, + "SELECTOR": 1, + "asm": 1, + "mov": 1, + "ds": 1, + "dpmi_get_sel_base": 1, + "xa0000": 1, + "change": 2, + "display": 2, + "regs.b.ah": 1, + "seet": 1, + "theh": 1, + "moode": 1, + "regs.b.al": 1, + "like": 1, + "innit": 1, + "regs.h.flags": 1, + "Set": 2, + "dingoes": 1, + "kidneys": 1, + "FLAGS": 1, + "eh": 1, + "regs.h.ss": 1, + "Like": 1, + "totally": 1, + "set": 1, + "segment": 1, + "regs.h.sp": 1, + "tha": 1, + "pointaaaaahhhhh": 1, + "dpmi_simulate_real_interrupt": 1, + "*VGAPIX": 6, + "stp": 3, + "dx": 4, + "dy": 3, + "yi": 5, + "excrement": 1, + "drw_circl": 1, + "mang": 3, + "angle": 1, + "haha": 1, + "px": 4, + "py": 4, + "Yeah": 1, + "yeah": 1, + "I": 1, + "ll": 1, + "later": 1, + "cos": 15, + "*rad": 2, + "causes": 1, + "some": 1, + "really": 1, + "cools": 1, + "effects": 1, + "sin": 17, + "i*w": 1, + "j*w": 1, + "__GLK_MATRIX_4_H": 2, + "": 1, + "__ARM_NEON__": 13, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "Prototypes": 1, + "GLKMatrix4": 183, + "GLKMatrix4Identity": 3, + "GLKMatrix4Make": 2, + "m00": 6, + "m01": 6, + "m02": 6, + "m03": 6, + "m10": 6, + "m11": 6, + "m12": 6, + "m13": 6, + "m20": 6, + "m21": 6, + "m22": 6, + "m23": 6, + "m30": 6, + "m31": 6, + "m32": 6, + "m33": 6, + "GLKMatrix4MakeAndTranspose": 2, + "GLKMatrix4MakeWithArray": 2, + "GLKMatrix4MakeWithArrayAndTranspose": 2, + "GLKMatrix4MakeWithRows": 2, + "GLKVector4": 44, + "row0": 2, + "row1": 2, + "row2": 2, + "row3": 2, + "GLKMatrix4MakeWithColumns": 2, + "column0": 2, + "column1": 2, + "column2": 2, + "column3": 2, + "GLKMatrix4MakeWithQuaternion": 2, + "GLKQuaternion": 2, + "quaternion": 4, + "GLKMatrix4MakeTranslation": 2, + "tx": 8, + "ty": 8, + "tz": 8, + "GLKMatrix4MakeScale": 2, + "sx": 10, + "sy": 10, + "sz": 10, + "GLKMatrix4MakeRotation": 5, + "radians": 34, + "GLKMatrix4MakeXRotation": 3, + "GLKMatrix4MakeYRotation": 3, + "GLKMatrix4MakeZRotation": 3, + "GLKMatrix4MakePerspective": 2, + "fovyRadians": 3, + "aspect": 3, + "nearZ": 17, + "farZ": 15, + "GLKMatrix4MakeFrustum": 2, + "left": 8, + "right": 8, + "bottom": 8, + "top": 8, + "GLKMatrix4MakeOrtho": 2, + "GLKMatrix4MakeLookAt": 2, + "eyeX": 3, + "eyeY": 3, + "eyeZ": 3, + "centerX": 3, + "centerY": 3, + "centerZ": 3, + "upX": 3, + "upY": 3, + "upZ": 3, + "GLKMatrix3": 3, + "GLKMatrix4GetMatrix3": 2, + "matrix": 64, + "GLKMatrix2": 3, + "GLKMatrix4GetMatrix2": 2, + "GLKMatrix4GetRow": 2, + "row": 12, + "GLKMatrix4GetColumn": 2, + "column": 14, + "GLKMatrix4SetRow": 2, + "vector": 4, + "GLKMatrix4SetColumn": 2, + "GLKMatrix4Transpose": 2, + "GLKMatrix4Invert": 1, + "*isInvertible": 2, + "GLKMatrix4InvertAndTranspose": 1, + "GLKMatrix4Multiply": 8, + "matrixLeft": 21, + "matrixRight": 9, + "GLKMatrix4Add": 2, + "GLKMatrix4Subtract": 2, + "GLKMatrix4Translate": 2, + "GLKMatrix4TranslateWithVector3": 2, + "GLKVector3": 31, + "translationVector": 4, + "GLKMatrix4TranslateWithVector4": 2, + "GLKMatrix4Scale": 2, + "GLKMatrix4ScaleWithVector3": 2, + "scaleVector": 4, + "GLKMatrix4ScaleWithVector4": 2, + "GLKMatrix4Rotate": 2, + "GLKMatrix4RotateWithVector3": 2, + "axisVector": 4, + "GLKMatrix4RotateWithVector4": 2, + "GLKMatrix4RotateX": 2, + "GLKMatrix4RotateY": 2, + "GLKMatrix4RotateZ": 2, + "GLKMatrix4MultiplyVector3": 3, + "vectorRight": 8, + "GLKMatrix4MultiplyVector3WithTranslation": 3, + "GLKMatrix4MultiplyAndProjectVector3": 3, + "GLKMatrix4MultiplyVector3Array": 2, + "*vectors": 8, + "vectorCount": 12, + "GLKMatrix4MultiplyVector3ArrayWithTranslation": 2, + "GLKMatrix4MultiplyAndProjectVector3Array": 2, + "GLKMatrix4MultiplyVector4": 6, + "GLKMatrix4MultiplyVector4Array": 2, + "Implementations": 1, + "float32x4x4_t": 29, + "vld4q_f32": 2, + "row0.v": 4, + "row1.v": 4, + "row2.v": 4, + "row3.v": 4, + "m.val": 52, + "vld1q_f32": 6, + "column0.v": 5, + "column1.v": 5, + "column2.v": 5, + "column3.v": 5, + "GLKQuaternionNormalize": 1, + "quaternion.q": 4, + "_2x": 7, + "_2y": 5, + "_2z": 3, + "_2w": 7, + "m.m": 54, + "GLKVector3Normalize": 3, + "GLKVector3Make": 4, + "cosf": 4, + "cosp": 10, + "sinf": 4, + "v.v": 27, + "cotan": 3, + "tanf": 1, + "ral": 4, + "rsl": 6, + "tsb": 6, + "tab": 4, + "fan": 4, + "fsn": 6, + "cv": 2, + "uv": 2, + "GLKVector3Add": 1, + "GLKVector3Negate": 4, + "GLKVector3CrossProduct": 2, + "u.v": 3, + "n.v": 3, + "GLKVector3DotProduct": 3, + "matrix.m": 171, + "float32x4_t": 2, + "vector.v": 9, + "*dst": 1, + "vst1q_f32": 1, + "iMatrixLeft": 3, + "iMatrixRight": 3, + "vmulq_n_f32": 17, + "iMatrixLeft.val": 24, + "vgetq_lane_f32": 16, + "iMatrixRight.val": 24, + "vmlaq_n_f32": 12, + "matrixLeft.m": 112, + "matrixRight.m": 96, + "vaddq_f32": 7, + "vsubq_f32": 4, + "translationVector.v": 18, + "iMatrix": 4, + "iMatrix.val": 28, + "float32_t": 13, + "scaleVector.v": 30, + "rm": 12, + "axisVector.v": 6, + "v4": 3, + "GLKVector4Make": 3, + "vectorRight.v": 29, + "v4.v": 10, + "GLKVector3MultiplyScalar": 1, + "vectors": 8, + "REFU_IO_H": 2, + "xA": 1, + "RF_CR": 1, + "xD": 1, + "REFU_WIN32_VERSION": 1, + "i_PLUSB_WIN32": 2, + "foff_rft": 2, + "off64_t": 1, + "///Fseek": 1, + "Ftelll": 1, + "definitions": 1, + "rfFseek": 2, + "i_OFFSET_": 4, + "i_WHENCE_": 4, + "_fseeki64": 1, + "rfFtell": 2, + "_ftelli64": 1, + "fseeko64": 1, + "ftello64": 1, + "rfFReadLine_UTF32BE": 1, + "rfFgets_UTF32BE": 1, + "rfPopen": 2, + "command": 2, + "i_rfPopen": 2, + "i_CMD_": 2, + "i_MODE_": 2, + "rfPclose": 1, + "///closing": 1, + "#endif//include": 1, + "syscalldef": 1, + "syscalldefs": 1, + "SYSCALL_OR_NUM": 3, + "SYS_restart_syscall": 1, + "MAKE_UINT16": 3, + "SYS_exit": 1, + "SYS_fork": 1, "git_usage_string": 2, "git_more_info_string": 2, "N_": 1, @@ -9948,7 +10943,6 @@ "trace_argv_printf": 3, "*argcp": 4, "subdir": 3, - "chdir": 2, "die_errno": 3, "saved_errno": 1, "git_version_string": 1, @@ -9960,6 +10954,7 @@ "cmd_struct": 4, "run_builtin": 2, "help": 4, + "stat": 3, "st": 2, "setup_git_directory": 1, "nongit_ok": 2, @@ -10102,377 +11097,91 @@ "done_help": 3, "was_alias": 3, "help_unknown_cmd": 1, - "strncasecmp": 2, - "_strnicmp": 1, - "REF_TABLE_SIZE": 1, - "BUFFER_BLOCK": 5, - "BUFFER_SPAN": 9, - "MKD_LI_END": 1, - "gperf_case_strncmp": 1, - "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, - "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, - "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, - "REFU_IO_H": 2, - "xA": 1, - "RF_CR": 1, - "xD": 1, - "REFU_WIN32_VERSION": 1, - "i_PLUSB_WIN32": 2, - "__int64": 3, - "foff_rft": 2, - "": 2, - "off64_t": 1, - "///Fseek": 1, - "Ftelll": 1, - "definitions": 1, - "rfFseek": 2, - "i_OFFSET_": 4, - "i_WHENCE_": 4, - "_fseeki64": 1, - "rfFtell": 2, - "_ftelli64": 1, - "fseeko64": 1, - "ftello64": 1, - "rfFReadLine_UTF32BE": 1, - "rfFgets_UTF32BE": 1, - "rfPopen": 2, - "command": 2, - "i_rfPopen": 2, - "i_CMD_": 2, - "i_MODE_": 2, - "rfPclose": 1, - "///closing": 1, - "#endif//include": 1, - "http_parser_h": 2, - "HTTP_PARSER_VERSION_MAJOR": 1, - "HTTP_PARSER_VERSION_MINOR": 1, - "__MINGW32__": 1, - "__int8": 2, - "__int16": 2, - "int16_t": 1, - "__int32": 2, - "ssize_t": 1, - "": 1, - "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, - "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, - "*http_method_str": 1, - "*http_errno_name": 1, - "*http_errno_description": 1, - "": 1, - "": 1, - "__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, - "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, - "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, - "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, - "stdio_count": 7, - "options.flags": 4, - "UV_PROCESS_DETACHED": 2, - "close_fd": 2, - "use_fd": 7, - "O_RDONLY": 1, - "perror": 5, - "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, - "uv_process_t*": 3, - "save_our_env": 3, - "options.stdio_count": 4, - "signal_pipe": 7, - "pollfd": 1, - "pfd": 2, - "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, - "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, - "uv_err_t": 1, - "uv_kill": 1, - "uv__new_sys_error": 1, - "uv_ok_": 1, - "uv__process_close": 1, - "uv__handle_stop": 1 + "OBJ_BLOB": 3, + "alloc_blob_node": 1, + "git_cache_init": 1, + "git_cache": 4, + "*cache": 4, + "git_cached_obj_freeptr": 1, + "free_ptr": 2, + "git__size_t_powerof2": 1, + "cache": 26, + "size_mask": 6, + "lru_count": 1, + "free_obj": 4, + "git_mutex_init": 1, + "nodes": 10, + "git_cached_obj": 5, + "git_cache_free": 1, + "git_cached_obj_decref": 3, + "*git_cache_get": 1, + "*node": 2, + "*result": 1, + "git_mutex_lock": 2, + "node": 9, + "git_cached_obj_incref": 3, + "git_mutex_unlock": 2, + "*git_cache_try_store": 1, + "*_entry": 1, + "_entry": 1, + "yajl_status_to_string": 1, + "yajl_status": 4, + "statStr": 6, + "yajl_status_ok": 1, + "yajl_status_client_canceled": 1, + "yajl_status_insufficient_data": 1, + "yajl_status_error": 1, + "yajl_handle": 10, + "yajl_alloc": 1, + "yajl_callbacks": 1, + "callbacks": 3, + "yajl_parser_config": 1, + "config": 4, + "yajl_alloc_funcs": 3, + "afs": 8, + "allowComments": 4, + "validateUTF8": 3, + "hand": 28, + "afsBuffer": 3, + "realloc": 1, + "yajl_set_default_alloc_funcs": 1, + "YA_MALLOC": 1, + "yajl_handle_t": 1, + "alloc": 6, + "checkUTF8": 1, + "lexer": 4, + "yajl_lex_alloc": 1, + "bytesConsumed": 2, + "decodeBuf": 2, + "yajl_buf_alloc": 1, + "yajl_bs_init": 1, + "stateStack": 3, + "yajl_bs_push": 1, + "yajl_state_start": 1, + "yajl_reset_parser": 1, + "yajl_lex_realloc": 1, + "yajl_free": 1, + "yajl_bs_free": 1, + "yajl_buf_free": 1, + "yajl_lex_free": 1, + "YA_FREE": 2, + "yajl_parse": 2, + "jsonText": 4, + "jsonTextLen": 4, + "yajl_do_parse": 1, + "yajl_parse_complete": 1, + "yajl_get_error": 1, + "verbose": 2, + "yajl_render_error_string": 1, + "yajl_get_bytes_consumed": 1, + "yajl_free_error": 1 }, "C#": { - "using": 5, - "System": 1, - ";": 8, - "System.Collections.Generic": 1, - "System.Linq": 1, - "System.Text": 1, - "System.Threading.Tasks": 1, - "namespace": 1, - "LittleSampleApp": 1, - "{": 5, - "///": 4, - "": 1, - "Just": 1, - "what": 1, - "it": 2, - "says": 1, - "on": 1, - "the": 5, - "tin.": 1, - "A": 1, - "little": 1, - "sample": 1, - "application": 1, - "for": 4, - "Linguist": 1, - "to": 4, - "try": 1, - "out.": 1, - "": 1, - "class": 1, - "Program": 1, - "static": 1, - "void": 1, - "Main": 1, - "(": 3, - "string": 1, - "[": 1, - "]": 1, - "args": 1, - ")": 3, - "Console.WriteLine": 2, - "}": 5, "@": 1, + "{": 5, "ViewBag.Title": 1, + ";": 8, + "}": 5, "@section": 1, "featured": 1, "
": 1, @@ -10510,9 +11219,11 @@ "and": 6, "samples": 1, "": 1, + "to": 4, "help": 1, "you": 4, "get": 1, + "the": 5, "most": 1, "from": 1, "MVC.": 1, @@ -10556,6 +11267,7 @@ "control": 1, "over": 1, "markup": 1, + "for": 4, "enjoyable": 1, "agile": 1, "development.": 1, @@ -10583,6 +11295,7 @@ "your": 2, "coding": 1, "makes": 1, + "it": 2, "easy": 1, "install": 1, "update": 1, @@ -10603,47 +11316,3045 @@ "mix": 1, "price": 1, "applications.": 1, - "": 1 + "": 1, + "using": 5, + "System": 1, + "System.Collections.Generic": 1, + "System.Linq": 1, + "System.Text": 1, + "System.Threading.Tasks": 1, + "namespace": 1, + "LittleSampleApp": 1, + "///": 4, + "": 1, + "Just": 1, + "what": 1, + "says": 1, + "on": 1, + "tin.": 1, + "A": 1, + "little": 1, + "sample": 1, + "application": 1, + "Linguist": 1, + "try": 1, + "out.": 1, + "": 1, + "class": 1, + "Program": 1, + "static": 1, + "void": 1, + "Main": 1, + "(": 3, + "string": 1, + "[": 1, + "]": 1, + "args": 1, + ")": 3, + "Console.WriteLine": 2 }, "C++": { - "#include": 129, + "//": 315, + "#include": 132, + "namespace": 38, + "v8": 9, + "{": 736, + "internal": 47, + "V8_DECLARE_ONCE": 1, + "(": 3141, + "init_once": 2, + ")": 3144, + ";": 2837, + "bool": 114, + "V8": 21, + "is_running_": 6, + "false": 48, + "has_been_set_up_": 4, + "has_been_disposed_": 6, + "has_fatal_error_": 5, + "use_crankshaft_": 6, + "true": 49, + "List": 3, + "": 3, + "*": 183, + "call_completed_callbacks_": 16, + "NULL": 109, + "static": 263, + "LazyMutex": 1, + "entropy_mutex": 1, + "LAZY_MUTEX_INITIALIZER": 1, + "EntropySource": 3, + "entropy_source": 4, + "Initialize": 4, + "Deserializer*": 2, + "des": 3, + "FlagList": 1, + "EnforceFlagImplications": 1, + "InitializeOncePerProcess": 4, + "if": 359, + "i": 106, + "Isolate": 9, + "CurrentPerIsolateThreadData": 4, + "EnterDefaultIsolate": 1, + "}": 736, + "ASSERT": 17, + "-": 438, + "thread_id": 1, + ".Equals": 1, + "ThreadId": 1, + "Current": 5, + "isolate": 15, + "IsDead": 2, + "return": 240, + "Isolate*": 6, + "IsInitialized": 3, + "Init": 3, + "void": 251, + "SetFatalError": 2, + "TearDown": 5, + "IsDefaultIsolate": 1, + "||": 19, + "ElementsAccessor": 2, + "LOperand": 2, + "TearDownCaches": 1, + "RegisteredExtension": 1, + "UnregisterAll": 1, + "delete": 6, + "OS": 3, + "seed_random": 2, + "uint32_t*": 7, + "state": 33, + "for": 105, + "int": 218, + "<": 256, + "+": 80, + "FLAG_random_seed": 2, + "[": 295, + "]": 294, + "else": 58, + "uint32_t": 40, + "val": 4, + "ScopedLock": 1, + "lock": 5, + "entropy_mutex.Pointer": 1, + "reinterpret_cast": 8, + "": 19, + "char": 128, + "&": 222, + "sizeof": 15, + "random": 1, + "random_base": 3, + "xFFFF": 2, + "<<": 29, + "FFFF": 1, + "SetEntropySource": 2, + "source": 12, + "SetReturnAddressLocationResolver": 3, + "ReturnAddressLocationResolver": 2, + "resolver": 3, + "StackFrame": 1, + "Random": 3, + "Context*": 4, + "context": 8, + "IsGlobalContext": 1, + "ByteArray*": 1, + "seed": 2, + "random_seed": 1, + "": 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, + "Lazy": 1, + "init.": 1, + "new": 13, + "length": 10, + "at": 20, + "Add": 1, + "RemoveCallCompletedCallback": 2, + "Remove": 1, + "FireCallCompletedCallback": 2, + "HandleScopeImplementer*": 1, + "handle_scope_implementer": 5, + "CallDepthIsZero": 1, + "IncrementCallDepth": 1, + "DecrementCallDepth": 1, + "typedef": 50, + "union": 1, + "double": 25, + "double_value": 1, + "uint64_t": 8, + "uint64_t_value": 1, + "double_int_union": 2, + "Object*": 4, + "FillHeapNumberWithRandom": 2, + "heap_number": 4, + "r": 38, + "random_bits": 2, + "const": 172, + "binary_million": 3, + "r.double_value": 3, + "r.uint64_t_value": 1, + "|": 40, + "HeapNumber": 1, + "cast": 7, + "set_value": 1, + "InitializeOncePerProcessImpl": 3, + "SetUp": 4, + "FLAG_crankshaft": 1, + "Serializer": 1, + "enabled": 4, + "CPU": 5, + "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, + "#ifndef": 30, + "LIBCANIH": 2, + "#define": 344, + "": 2, + "": 2, + "": 1, + "": 1, + "int64": 1, + "unsigned": 22, + "long": 15, + "//#define": 1, + "DEBUG": 5, "#ifdef": 19, - "Q_OS_LINUX": 2, - "#endif": 110, - "": 1, + "dout": 2, + "cout": 2, + "#else": 35, + "cerr": 1, + "#endif": 111, + "using": 11, + "std": 56, + "libcanister": 2, + "//the": 8, + "canmem": 22, + "object": 3, + "is": 102, + "a": 157, + "generic": 1, + "memory": 15, + "container": 2, + "used": 17, + "commonly": 1, + "//throughout": 1, + "the": 541, + "canister": 14, + "framework": 1, + "to": 254, + "hold": 1, + "of": 215, + "uncertain": 1, + "//length": 1, + "which": 14, + "may": 9, + "or": 44, + "not": 29, + "contain": 1, + "null": 3, + "bytes.": 1, + "class": 44, + "public": 39, + "char*": 24, + "data": 26, + "raw": 2, + "block": 7, + "size": 13, + "absolute": 1, + "//creates": 3, + "an": 23, + "unallocated": 1, + "allocsize": 1, + "allocated": 2, + "blank": 1, + "strdata": 1, + "//automates": 1, + "creation": 1, + "zero": 5, + "limited": 2, + "canmems": 1, + "//cleans": 1, + "up": 18, + "zeromem": 1, + "//overwrites": 2, + "this": 57, + "fragmem": 1, + "with": 33, + "fragment": 2, + "notation": 1, + "countlen": 1, + "//counts": 1, + "strings": 1, + "and": 118, + "stores": 3, + "it": 19, + "in": 165, + "trim": 2, + "//removes": 1, + "any": 23, + "nulls": 1, + "from": 91, + "end": 23, + "string": 24, + "//returns": 2, + "singleton": 2, + "//contains": 2, + "information": 3, + "about": 6, + "caninfo": 2, + "path": 8, + "//physical": 1, + "internalname": 1, + "//a": 1, + "name": 25, + "numfiles": 1, + "number": 52, + "files": 6, + "//necessary": 1, + "use": 37, + "as": 28, + "type": 7, + "canfile": 7, + "//this": 1, + "holds": 2, + "definition": 3, + "within": 4, + "//canister": 1, + "canister*": 1, + "parent": 1, + "that": 36, + "file": 31, + "//internal": 1, + "id": 4, + "s": 26, + "//use": 1, + "their": 6, + "own.": 1, + "newline": 2, + "delimited": 2, + "list": 3, + "container.": 1, + "TOC": 1, + "info": 2, + "general": 1, + "canfiles": 1, + "recommended": 1, + "programs": 4, + "do": 13, + "modify": 1, + "//these": 1, + "directly": 2, + "but": 5, + "enforced.": 1, + "canfile*": 1, + "readonly": 3, + "//if": 1, + "then": 15, + "no": 7, + "write": 8, + "routines": 1, + "will": 15, + "anything": 1, + "//maximum": 1, + "have": 4, + "given": 16, + "//time": 1, + "change": 3, + "whatever": 1, + "suits": 1, + "your": 12, + "application.": 1, + "cachemax": 2, + "cachecnt": 1, + "//number": 1, + "cache": 2, + "should": 10, + "be": 35, + "modified": 3, + "//both": 1, + "initialize": 1, + "physical": 4, + "location": 6, + "fspath": 3, + "//destroys": 1, + "after": 18, + "flushing": 1, + "modded": 1, + "buffers": 3, + "course": 2, + "//open": 1, + "//does": 1, + "exist": 2, + "open": 6, + "//close": 1, + "flush": 1, + "all": 11, + "clean": 2, + "close": 7, + "//deletes": 1, + "inside": 1, + "delFile": 1, + "//pulls": 1, + "contents": 3, + "disk": 2, + "returns": 4, + "getFile": 1, + "does": 4, + "otherwise": 1, + "overwrites": 1, + "whether": 4, + "operation": 2, + "succeeded": 2, + "writeFile": 2, + "//get": 1, + "containing": 2, + "//list": 1, + "paths": 1, + "getTOC": 1, + "//brings": 1, + "back": 1, + "limit": 1, + "//important": 1, + "sCFID": 2, + "safe": 4, + "CFID": 2, + "we": 10, + "want": 5, + "avoid": 1, + "uncaching": 1, + "//really": 1, + "just": 2, + "internally": 1, + "can": 21, + "t": 15, + "harm.": 1, + "cacheclean": 1, + "dFlush": 1, + "enum": 18, + "PIC16F88Instruction": 2, + "ADDWF": 1, + "ANDWF": 1, + "CLRF": 1, + "CLRW": 1, + "COMF": 1, + "DECF": 1, + "DECFSZ": 1, + "INCF": 1, + "INCFSZ": 1, + "IORWF": 1, + "MOVF": 1, + "MOVWF": 1, + "NOP": 1, + "RLF": 1, + "RRF": 1, + "SUBWF": 1, + "SWAPF": 1, + "XORWF": 1, + "BCF": 1, + "BSF": 1, + "BTFSC": 1, + "BTFSS": 1, + "ADDLW": 1, + "ANDLW": 1, + "CALL": 1, + "CLRWDT": 1, + "GOTO": 1, + "IORLW": 1, + "MOVLW": 1, + "RETFIE": 1, + "RETLW": 1, + "RETURN": 1, + "SLEEP": 1, + "SUBLW": 1, + "XORLW": 1, + "PIC16F88": 2, + "ROM": 2, + "*ProgramMemory": 1, + "Step": 1, + "private": 20, + "uint8_t": 60, + "q": 1, + "nextIsNop": 1, + "trapped": 1, + "Memory": 2, + "*memory": 1, + "*program": 1, + "Stack": 1, + "": 1, + "8": 1, + "*CallStack": 1, + "Register": 3, + "": 1, + "*PC": 1, + "*WREG": 1, + "*PCL": 1, + "*STATUS": 1, + "*PCLATCH": 1, + "inst": 1, + "uint16_t": 4, + "instrWord": 1, + "DecodeInstruction": 1, + "ProcessInstruction": 1, + "GetBank": 1, + "GetMemoryContents": 1, + "partialAddress": 4, + "SetMemoryContents": 1, + "newVal": 1, + "CheckZero": 1, + "value": 52, + "StoreValue": 1, + "updateZero": 1, + "SetCarry": 1, + "GetPCHFinalBits": 1, + "": 1, + "": 1, + "": 1, + "EC_KEY_regenerate_key": 1, + "EC_KEY": 3, + "*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": 26, + "BN_CTX_new": 2, + "goto": 156, + "err": 26, + "pub_key": 6, + "EC_POINT_new": 4, + "group": 23, + "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": 4, + "ret": 24, + "*x": 1, + "*e": 1, + "*order": 1, + "*sor": 1, + "*eor": 1, + "*field": 1, + "*R": 1, + "*O": 1, + "*Q": 1, + "*rr": 1, + "*zero": 1, + "n": 28, + "/": 16, + "BN_CTX_start": 1, + "order": 14, + "BN_CTX_get": 8, + "EC_GROUP_get_order": 1, + "x": 86, + "BN_copy": 1, + "BN_mul_word": 1, + "BN_add": 1, + "ecsig": 3, + "field": 5, + "EC_GROUP_get_curve_GFp": 1, + "BN_cmp": 1, + "R": 6, + "EC_POINT_set_compressed_coordinates_GFp": 1, + "%": 7, + "O": 5, + "EC_POINT_is_at_infinity": 1, + "Q": 5, + "EC_GROUP_get_degree": 1, + "e": 15, + "BN_bin2bn": 3, + "msg": 1, + "*msglen": 1, + "BN_rshift": 1, + "BN_zero": 1, + "BN_mod_sub": 1, + "rr": 4, + "BN_mod_inverse": 1, + "sor": 3, + "BN_mod_mul": 2, + "eor": 3, + "BN_CTX_end": 1, + "CKey": 26, + "SetCompressedPubKey": 4, + "EC_KEY_set_conv_form": 1, + "pkey": 14, + "POINT_CONVERSION_COMPRESSED": 1, + "fCompressedPubKey": 5, + "Reset": 5, + "EC_KEY_new_by_curve_name": 2, + "NID_secp256k1": 2, + "throw": 4, + "key_error": 6, + "fSet": 7, + "b": 57, + "EC_KEY_dup": 1, + "b.pkey": 2, + "b.fSet": 2, + "operator": 10, + "EC_KEY_copy": 1, + "hash": 20, + "vchSig": 18, + "nSize": 2, + "vchSig.clear": 2, + "vchSig.resize": 2, + "Shrink": 1, + "fit": 1, + "actual": 1, + "SignCompact": 2, + "uint256": 10, + "vector": 16, + "fOk": 3, + "*sig": 2, + "ECDSA_do_sign": 1, + "sig": 11, + "nBitsR": 3, + "BN_num_bits": 2, + "nBitsS": 3, + "&&": 29, + "nRecId": 4, + "<4;>": 1, + "keyRec": 5, + "1": 4, + "GetPubKey": 5, + "break": 35, + "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": 23, + "key.SetCompactSignature": 1, + "key.GetPubKey": 1, + "IsValid": 4, + "fCompr": 3, + "CSecret": 4, + "secret": 2, + "GetSecret": 2, + "key2": 1, + "key2.SetSecret": 1, + "key2.GetPubKey": 1, + "PROTOBUF_protocol_2dbuffer_2eproto__INCLUDED": 3, + "": 4, + "": 2, "#if": 63, + "GOOGLE_PROTOBUF_VERSION": 1, + "#error": 9, + "This": 19, + "was": 6, + "generated": 2, + "by": 53, + "newer": 2, + "version": 38, + "protoc": 2, + "incompatible": 2, + "Protocol": 2, + "Buffer": 10, + "headers.": 3, + "Please": 4, + "update": 1, + "GOOGLE_PROTOBUF_MIN_PROTOC_VERSION": 1, + "older": 1, + "regenerate": 1, + "protoc.": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "persons": 4, + "protobuf_AddDesc_protocol_2dbuffer_2eproto": 6, + "protobuf_AssignDesc_protocol_2dbuffer_2eproto": 4, + "protobuf_ShutdownFile_protocol_2dbuffer_2eproto": 4, + "Person": 65, + "google": 72, + "protobuf": 72, + "Message": 7, + "virtual": 10, + "inline": 39, + "CopyFrom": 5, + "*this": 1, + "UnknownFieldSet": 2, + "unknown_fields": 7, + "_unknown_fields_": 5, + "UnknownFieldSet*": 1, + "mutable_unknown_fields": 4, + "Descriptor*": 3, + "descriptor": 15, + "default_instance": 3, + "Swap": 2, + "Person*": 7, + "other": 17, + "New": 6, + "MergeFrom": 9, + "Clear": 18, + "ByteSize": 2, + "MergePartialFromCodedStream": 2, + "io": 4, + "CodedInputStream*": 2, + "input": 12, + "SerializeWithCachedSizes": 2, + "CodedOutputStream*": 2, + "output": 21, + "uint8*": 4, + "SerializeWithCachedSizesToArray": 2, + "GetCachedSize": 1, + "_cached_size_": 7, + "SharedCtor": 4, + "SharedDtor": 3, + "SetCachedSize": 2, + "Metadata": 3, + "GetMetadata": 2, + "has_name": 6, + "clear_name": 2, + "kNameFieldNumber": 2, + "set_name": 7, + "size_t": 6, + "string*": 11, + "mutable_name": 3, + "release_name": 2, + "set_allocated_name": 2, + "set_has_name": 7, + "clear_has_name": 5, + "name_": 30, + "mutable": 1, + "uint32": 2, + "_has_bits_": 14, + "friend": 10, + "InitAsDefaultInstance": 3, + "default_instance_": 8, + "u": 9, + "kEmptyString": 12, + "clear": 3, + "*name_": 1, + "assign": 3, + "": 12, + "temp": 2, + "const_cast": 3, + "SWIG": 2, + "Bar": 3, + "protected": 5, + "*name": 7, + "hello": 3, + "V8_SCANNER_H_": 3, + "ParsingFlags": 1, + "kNoParsingFlags": 1, + "kLanguageModeMask": 4, + "kAllowLazy": 1, + "kAllowNativesSyntax": 1, + "kAllowModules": 1, + "STATIC_ASSERT": 5, + "CLASSIC_MODE": 2, + "STRICT_MODE": 2, + "EXTENDED_MODE": 2, + "HexValue": 2, + "uc32": 19, + "c": 72, + "static_cast": 14, + "detect": 3, + "x16": 1, + "x36.": 1, + "Utf16CharacterStream": 3, + "pos_": 6, + "Advance": 44, + "buffer_cursor_": 5, + "buffer_end_": 3, + "ReadBlock": 2, + "": 1, + "kEndOfInput": 2, + "pos": 12, + "SeekForward": 4, + "code_unit_count": 7, + "buffered_chars": 2, + "SlowSeekForward": 2, + "PushBack": 8, + "int32_t": 1, + "code_unit": 6, + "uc16*": 3, + "UnicodeCache": 3, + "unibrow": 11, + "Utf8InputBuffer": 2, + "<1024>": 2, + "Utf8Decoder": 2, + "StaticResource": 2, + "": 2, + "utf8_decoder": 1, + "utf8_decoder_": 2, + "IsIdentifierStart": 2, + "uchar": 4, + "kIsIdentifierStart.get": 1, + "IsIdentifierPart": 1, + "kIsIdentifierPart.get": 1, + "IsLineTerminator": 6, + "kIsLineTerminator.get": 1, + "IsWhiteSpace": 2, + "kIsWhiteSpace.get": 1, + "Predicate": 4, + "": 1, + "128": 4, + "kIsIdentifierStart": 1, + "": 1, + "kIsIdentifierPart": 1, + "": 1, + "kIsLineTerminator": 1, + "": 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, + "ExpandBuffer": 2, + "kMaxAsciiCharCodeU": 1, + "": 6, + "kASCIISize": 1, + "ConvertToUtf16": 2, + "*reinterpret_cast": 3, + "": 2, + "kUC16Size": 2, + "is_ascii": 3, + "Vector": 13, + "uc16": 5, + "utf16_literal": 3, + "backing_store_.start": 5, + "ascii_literal": 3, + "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, + "memcpy": 1, + "new_store.start": 3, + "new_content_size": 4, + "src": 2, + "": 1, + "dst": 2, + "Scanner": 16, + "LiteralScope": 4, + "explicit": 5, + "Scanner*": 2, + "self": 5, + "scanner_": 5, + "complete_": 4, + "StartLiteral": 2, + "DropLiteral": 2, + "Complete": 1, + "TerminateLiteral": 2, + "struct": 13, + "Location": 14, + "beg_pos": 5, + "end_pos": 4, + "invalid": 5, + "kNoOctalLocation": 1, + "UnicodeCache*": 4, + "scanner_contants": 1, + "Utf16CharacterStream*": 3, + "Token": 212, + "Value": 24, + "Next": 3, + "current_token": 1, + "current_.token": 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, + "next_.token": 3, + "peek_location": 1, + "next_.location": 1, + "next_literal_ascii_string": 1, + "next_.literal_chars": 13, + "next_literal_utf16_string": 1, + "is_next_literal_ascii": 1, + "next_literal_length": 1, + "unicode_cache": 3, + "unicode_cache_": 10, + "kCharacterLookaheadBufferSize": 3, + "ScanOctalEscape": 1, + "octal_position": 1, + "octal_pos_": 5, + "clear_octal_position": 1, + "HarmonyScoping": 1, + "harmony_scoping_": 4, + "SetHarmonyScoping": 1, + "scoping": 2, + "HarmonyModules": 1, + "harmony_modules_": 4, + "SetHarmonyModules": 1, + "modules": 2, + "HasAnyLineTerminatorBeforeNext": 1, + "has_line_terminator_before_next_": 9, + "has_multiline_comment_before_next_": 5, + "ScanRegExpPattern": 1, + "seen_equal": 1, + "ScanRegExpFlags": 1, + "IsIdentifier": 1, + "CharacterStream*": 1, + "buffer": 9, + "TokenDesc": 3, + "token": 64, + "LiteralBuffer*": 2, + "literal_chars": 1, + "free_buffer": 3, + "literal_buffer1_": 3, + "literal_buffer2_": 2, + "AddLiteralChar": 2, + "AddLiteralCharAdvance": 3, + "c0_": 64, + "source_": 7, + "ch": 5, + "Select": 49, + "tok": 2, + "next": 9, + "else_": 2, + "ScanHexNumber": 2, + "expected_length": 4, + "Scan": 5, + "SkipWhiteSpace": 4, + "SkipSingleLineComment": 6, + "SkipMultiLineComment": 3, + "ScanHtmlComment": 3, + "ScanDecimalDigits": 1, + "ScanNumber": 3, + "seen_period": 1, + "ScanIdentifierOrKeyword": 2, + "ScanIdentifierSuffix": 1, + "LiteralScope*": 1, + "literal": 2, + "ScanString": 3, + "ScanEscape": 2, + "ScanIdentifierUnicodeEscape": 1, + "ScanLiteralUnicodeEscape": 3, + "source_pos": 10, + "current_": 2, + "desc": 2, + "current": 26, + "returned": 5, + "next_": 3, + "one": 73, + "look": 1, + "ahead": 1, + "__THREADED_QUEUE_H__": 2, + "": 1, + "": 1, + "template": 1, + "": 1, + "T": 2, + "ThreadedQueue": 3, + "queue": 6, + "": 2, + "pthread_mutex_t": 1, + "queueMutex": 8, + "pthread_cond_t": 1, + "queueCond": 5, + "pthread_mutexattr_t": 1, + "mutexAttrs": 5, + "pthread_condattr_t": 1, + "condAttrs": 5, + "pthread_mutexattr_init": 1, + "pthread_mutexattr_settype": 1, + "PTHREAD_MUTEX_ERRORCHECK": 1, + "pthread_mutex_init": 1, + "pthread_mutexattr_destroy": 1, + "pthread_condattr_init": 1, + "pthread_condattr_setpshared": 1, + "PTHREAD_PROCESS_PRIVATE": 1, + "pthread_cond_init": 1, + "pthread_condattr_destroy": 1, + "pthread_cond_destroy": 1, + "pthread_mutex_destroy": 1, + "waitItems": 1, + "pthread_mutex_lock": 2, + "pthread_cond_wait": 1, + "pthread_mutex_unlock": 2, + "signalItems": 2, + "pthread_cond_broadcast": 1, + "push": 2, + "item": 2, + "": 2, + "Gui": 1, + "BITCOIN_KEY_H": 2, + "": 1, + "": 4, + "": 1, + "runtime_error": 2, + "str": 2, + "CKeyID": 5, + "uint160": 8, + "CScriptID": 3, + "CPubKey": 11, + "vchPubKey": 6, + "vchPubKeyIn": 2, + "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, + "IsCompressed": 2, + "Raw": 1, + "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": 2, + "main": 2, + "endl": 1, + "GDSDBREADER_H": 3, + "": 1, + "GDS_DIR": 1, + "level": 10, + "LEVEL_ONE": 1, + "LEVEL_TWO": 1, + "LEVEL_THREE": 1, + "dbDataStructure": 2, + "QString": 20, + "label": 1, + "quint32": 3, + "depth": 1, + "userIndex": 1, + "QByteArray": 1, + "COMPRESSED": 1, + "optimize": 1, + "ram": 1, + "space": 2, + "decompressed": 1, + "quint64": 1, + "uniqueID": 1, + "QVector": 2, + "": 1, + "nextItems": 1, + "": 1, + "nextItemsIndices": 1, + "dbDataStructure*": 1, + "father": 1, + "fatherIndex": 1, + "noFatherRoot": 1, + "Used": 2, + "tell": 1, + "node": 1, + "root": 1, + "so": 2, + "hasn": 1, + "argument": 1, + "overload.": 1, + "A": 7, + "stream": 6, + "myclass.label": 2, + "myclass.depth": 2, + "myclass.userIndex": 2, + "qCompress": 2, + "myclass.data": 4, + "myclass.uniqueID": 2, + "myclass.nextItemsIndices": 2, + "myclass.fatherIndex": 2, + "myclass.noFatherRoot": 2, + "myclass.fileName": 2, + "myclass.firstLineData": 4, + "myclass.linesNumbers": 2, + "QDataStream": 2, + "myclass": 1, + "//Don": 1, + "read": 21, + "either": 4, + "qUncompress": 2, + "__OG_MATH_INL__": 2, + "og": 1, + "OG_INLINE": 41, + "Math": 41, + "Abs": 1, + "MASK_SIGNED": 2, + "y": 16, + "float": 74, + "Fabs": 1, + "f": 104, + "uInt": 1, + "*pf": 1, + "": 1, + "pf": 1, + "fabsf": 1, + "Round": 1, + "floorf": 2, + "Floor": 1, + "Ceil": 1, + "ceilf": 1, + "Ftoi": 1, + "@todo": 1, + "needs": 4, + "testing": 2, + "note": 1, + "sse": 1, + "function": 19, + "cvttss2si": 2, + "OG_ASM_MSVC": 4, + "defined": 49, + "OG_FTOI_USE_SSE": 2, + "SysInfo": 2, + "cpu.general.SSE": 2, + "__asm": 8, + "eax": 5, + "mov": 6, + "fld": 4, + "fistp": 3, + "//__asm": 3, + "need": 6, + "O_o": 3, + "#elif": 7, + "OG_ASM_GNU": 4, + "__asm__": 4, + "__volatile__": 4, + "instead": 4, + "sure": 6, + "why": 3, + "did": 3, + "": 3, + "FtoiFast": 2, + "Ftol": 1, + "": 1, + "Fmod": 1, + "numerator": 2, + "denominator": 2, + "fmodf": 1, + "Modf": 2, + "modff": 2, + "Sqrt": 2, + "sqrtf": 2, + "InvSqrt": 1, + "OG_ASSERT": 4, + "RSqrt": 1, + "g": 2, + "guess": 1, + "f375a86": 1, + "": 1, + "Newtons": 1, + "calculation": 1, + "Log": 1, + "logf": 3, + "Log2": 1, + "INV_LN_2": 1, + "Log10": 1, + "INV_LN_10": 1, + "Pow": 1, + "base": 8, + "exp": 2, + "powf": 1, + "Exp": 1, + "expf": 1, + "IsPowerOfTwo": 4, + "faster": 3, + "two": 2, + "known": 1, + "methods": 2, + "moved": 1, + "beginning": 1, + "HigherPowerOfTwo": 4, + "LowerPowerOfTwo": 2, + "FloorPowerOfTwo": 1, + "CeilPowerOfTwo": 1, + "ClosestPowerOfTwo": 1, + "high": 5, + "low": 5, + "Digits": 1, + "digits": 6, + "step": 3, + "while": 17, + "Sin": 2, + "sinf": 1, + "ASin": 1, + "<=>": 2, + "0f": 2, + "HALF_PI": 2, + "asinf": 1, + "Cos": 2, + "cosf": 1, + "ACos": 1, + "PI": 1, + "acosf": 1, + "Tan": 1, + "tanf": 1, + "ATan": 2, + "atanf": 1, + "f1": 2, + "f2": 2, + "atan2f": 1, + "SinCos": 1, + "sometimes": 1, + "assembler": 1, + "waaayy": 1, + "_asm": 1, + "fsincos": 1, + "ecx": 2, + "edx": 2, + "fstp": 2, + "dword": 2, + "ptr": 6, + "asm": 1, + "than": 6, + "calling": 9, + "Deg2Rad": 1, + "DEG_TO_RAD": 1, + "Rad2Deg": 1, + "RAD_TO_DEG": 1, + "Square": 1, + "v": 10, + "Cube": 1, + "Sec2Ms": 1, + "sec": 2, + "Ms2Sec": 1, + "ms": 2, + "": 1, + "": 1, + "": 2, + "Env": 13, + "*env_instance": 1, + "*Env": 1, + "instance": 4, + "env_instance": 3, + "QObject": 2, + "QCoreApplication": 1, + "parse": 3, + "**envp": 1, + "**env": 1, + "**": 2, + "envvar": 2, + "indexOfEquals": 5, + "env": 3, + "envp": 4, + "*env": 1, + "envvar.indexOf": 1, + "continue": 2, + "envvar.left": 1, + "envvar.mid": 1, + "m_map.insert": 1, + "QVariantMap": 3, + "asVariantMap": 2, + "m_map": 2, + "Memory16F88": 2, + "map": 4, + "": 1, + "MemoryLocation": 1, + "memoryMap": 1, + "Dereference": 1, + "bank": 2, + "*Reference": 1, + "*operator": 1, + "ref": 33, + "///": 843, + "mainpage": 1, + "C": 6, + "library": 14, + "Broadcom": 3, + "BCM": 14, + "Raspberry": 6, + "Pi": 5, + "RPi": 17, + ".": 16, + "It": 7, + "provides": 3, + "access": 17, + "GPIO": 87, + "IO": 2, + "functions": 19, + "on": 55, + "chip": 9, + "allowing": 3, + "pins": 40, + "pin": 90, + "IDE": 4, + "plug": 3, + "board": 2, + "you": 29, + "control": 17, + "interface": 9, + "various": 4, + "external": 3, + "devices.": 1, + "reading": 3, + "digital": 2, + "inputs": 2, + "setting": 2, + "outputs": 1, + "SPI": 44, + "I2C": 29, + "accessing": 2, + "system": 13, + "timers.": 1, + "Pin": 65, + "event": 3, + "detection": 2, + "supported": 3, + "polling": 1, + "interrupts": 1, + "are": 36, + "compatible": 1, + "installs": 1, + "header": 7, + "non": 2, + "shared": 2, + "Linux": 2, + "based": 4, + "distro": 1, + "clearly": 1, + "except": 2, + "another": 1, + "The": 50, + "package": 1, + "documentation": 3, + "refers": 1, + "downloaded": 1, + "http": 11, + "//www.airspayce.com/mikem/bcm2835/bcm2835": 1, + "tar.gz": 1, + "You": 9, + "find": 2, + "latest": 2, + "//www.airspayce.com/mikem/bcm2835": 1, + "Several": 1, + "example": 3, + "provided.": 1, + "Based": 1, + "//elinux.org/RPi_Low": 1, + "level_peripherals": 1, + "//www.raspberrypi.org/wp": 1, + "content/uploads/2012/02/BCM2835": 1, + "ARM": 5, + "Peripherals.pdf": 1, + "//www.scribd.com/doc/101830961/GPIO": 2, + "Pads": 3, + "Control2": 2, + "also": 3, + "online": 1, + "help": 1, + "discussion": 1, + "//groups.google.com/group/bcm2835": 1, + "questions": 1, + "discussions": 1, + "topic.": 1, + "Do": 1, + "contact": 1, + "author": 3, + "unless": 1, + "discuss": 1, + "commercial": 1, + "licensing.": 1, + "Tested": 1, + "debian6": 1, + "wheezy": 3, + "raspbian": 3, + "Occidentalisv01": 2, + "CAUTION": 1, + "has": 29, + "been": 14, + "observed": 1, + "when": 22, + "enables": 3, + "such": 4, + "bcm2835_gpio_len": 5, + "pulled": 1, + "LOW": 8, + "cause": 1, + "temporary": 1, + "hangs": 1, + "Occidentalisv01.": 1, + "Reason": 1, + "yet": 1, + "determined": 1, + "suspect": 1, + "interrupt": 3, + "handler": 1, + "hitting": 1, + "hard": 1, + "loop": 2, + "those": 3, + "OSs.": 1, + "If": 11, + "must": 6, + "friends": 2, + "make": 6, + "disable": 2, + "bcm2835_gpio_cler_len": 1, + "use.": 1, + "par": 9, + "Installation": 1, + "consists": 1, + "single": 2, + "installed": 1, + "usual": 3, + "places": 1, + "install": 3, + "code": 12, + "#": 1, + "download": 2, + "say": 1, + "bcm2835": 7, + "xx.tar.gz": 2, + "tar": 1, + "zxvf": 1, + "cd": 1, + "xx": 2, + "./configure": 1, + "sudo": 2, + "endcode": 2, + "Physical": 21, + "Addresses": 6, + "bcm2835_peri_read": 3, + "bcm2835_peri_write": 3, + "bcm2835_peri_set_bits": 2, + "peripheral": 14, + "register": 17, + "functions.": 4, + "They": 1, + "designed": 3, + "addresses": 4, + "described": 1, + "section": 6, + "BCM2835": 2, + "Peripherals": 1, + "manual.": 1, + "range": 3, + "FFFFFF": 1, + "peripherals.": 1, + "bus": 4, + "peripherals": 2, + "set": 18, + "onto": 1, + "address": 13, + "starting": 1, + "E000000.": 1, + "Thus": 1, + "advertised": 1, + "manual": 8, + "Ennnnnn": 1, + "available": 6, + "nnnnnn.": 1, + "registers": 12, + "following": 2, + "externals": 1, + "bcm2835_gpio": 2, + "bcm2835_pwm": 2, + "bcm2835_clk": 2, + "bcm2835_pads": 2, + "bcm2835_spio0": 1, + "bcm2835_st": 1, + "bcm2835_bsc0": 1, + "bcm2835_bsc1": 1, + "Numbering": 1, + "numbering": 1, + "different": 5, + "inconsistent": 1, + "underlying": 4, + "numbering.": 1, + "//elinux.org/RPi_BCM2835_GPIOs": 1, + "some": 4, + "well": 1, + "power": 1, + "ground": 1, + "pins.": 1, + "Not": 4, + "header.": 1, + "Version": 40, + "P5": 6, + "connector": 1, + "V": 2, + "Gnd.": 1, + "passed": 4, + "_not_": 1, + "number.": 1, + "There": 1, + "symbolic": 1, + "definitions": 3, + "each": 7, + "convenience.": 1, + "See": 7, + "RPiGPIOPin.": 22, + "Pins": 2, + "bcm2835_spi_*": 1, + "allow": 5, + "SPI0": 17, + "send": 3, + "received": 3, + "Serial": 3, + "Peripheral": 6, + "Interface": 2, + "For": 6, + "more": 4, + "see": 14, + "//en.wikipedia.org/wiki/Serial_Peripheral_Interface_Bus": 1, + "When": 12, + "bcm2835_spi_begin": 3, + "called": 13, + "changes": 2, + "bahaviour": 1, + "default": 14, + "behaviour": 1, + "support": 4, + "SPI.": 1, + "While": 1, + "able": 2, + "through": 4, + "bcm2835_spi_gpio_write": 1, + "bcm2835_spi_end": 4, + "revert": 1, + "configured": 1, + "controled": 1, + "bcm2835_gpio_*": 1, + "calls.": 1, + "P1": 56, + "MOSI": 8, + "MISO": 6, + "CLK": 6, + "CE0": 5, + "CE1": 6, + "bcm2835_i2c_*": 2, + "BSC": 10, + "generically": 1, + "referred": 1, + "I": 4, + "//en.wikipedia.org/wiki/I": 1, + "C2": 1, + "B2C": 1, + "V2": 2, + "SDA": 3, + "SLC": 1, + "Real": 1, + "Time": 1, + "performance": 2, + "constraints": 2, + "user": 3, + "i.e.": 1, + "they": 2, + "run": 2, + "Such": 1, + "part": 1, + "kernel": 4, + "usually": 2, + "subject": 1, + "paging": 1, + "swapping": 2, + "things": 1, + "besides": 1, + "running": 1, + "program.": 1, + "means": 8, + "expect": 2, + "get": 5, + "real": 4, + "time": 10, + "timing": 3, + "programs.": 1, + "In": 2, + "particular": 1, + "there": 4, + "guarantee": 1, + "bcm2835_delay": 5, + "bcm2835_delayMicroseconds": 6, + "exactly": 2, + "requested.": 1, + "fact": 2, + "depending": 1, + "activity": 1, + "host": 1, + "etc": 1, + "might": 1, + "significantly": 1, + "longer": 1, + "delay": 9, + "times": 2, + "asked": 1, + "for.": 1, + "So": 1, + "please": 2, + "dont": 1, + "request.": 1, + "Arjan": 2, + "reports": 1, + "prevent": 4, + "sched_param": 1, + "sp": 4, + "memset": 3, + "sp.sched_priority": 1, + "sched_get_priority_max": 1, + "SCHED_FIFO": 2, + "sched_setscheduler": 1, + "mlockall": 1, + "MCL_CURRENT": 1, + "MCL_FUTURE": 1, + "Open": 2, + "Source": 2, + "Licensing": 2, + "GPL": 2, + "appropriate": 7, + "option": 1, + "share": 2, + "application": 2, + "everyone": 1, + "distribute": 1, + "give": 2, + "them": 1, + "right": 9, + "who": 1, + "uses": 4, + "it.": 3, + "wish": 2, + "software": 1, + "under": 2, + "contribute": 1, + "community": 1, + "accordance": 1, + "distributed.": 1, + "//www.gnu.org/copyleft/gpl.html": 1, + "COPYING": 1, + "Acknowledgements": 1, + "Some": 1, + "inspired": 2, + "Dom": 1, + "Gert.": 1, + "Alan": 1, + "Barr.": 1, + "Revision": 1, + "History": 1, + "Initial": 1, + "release": 1, + "Minor": 1, + "bug": 1, + "fixes": 1, + "Added": 11, + "bcm2835_spi_transfern": 3, + "Fixed": 4, + "problem": 2, + "prevented": 1, + "being": 4, + "used.": 2, + "Reported": 5, + "David": 1, + "Robinson.": 1, + "bcm2835_close": 4, + "deinit": 1, + "library.": 3, + "Suggested": 1, + "sar": 1, + "Ortiz": 1, + "Document": 1, + "Functions": 1, + "bcm2835_gpio_ren": 3, + "bcm2835_gpio_fen": 3, + "bcm2835_gpio_hen": 3, + "bcm2835_gpio_aren": 3, + "bcm2835_gpio_afen": 3, + "now": 4, + "only": 6, + "specified.": 1, + "Other": 1, + "were": 1, + "already": 1, + "previously": 10, + "stay": 1, + "enabled.": 1, + "bcm2835_gpio_clr_ren": 2, + "bcm2835_gpio_clr_fen": 2, + "bcm2835_gpio_clr_hen": 2, + "bcm2835_gpio_clr_len": 2, + "bcm2835_gpio_clr_aren": 2, + "bcm2835_gpio_clr_afen": 2, + "enable": 3, + "individual": 1, + "suggested": 3, + "Andreas": 1, + "Sundstrom.": 1, + "bcm2835_spi_transfernb": 2, + "write.": 1, + "Improvements": 3, + "barrier": 3, + "maddin.": 1, + "contributed": 1, + "mikew": 1, + "noticed": 1, + "mallocing": 1, + "mmaps": 1, + "/dev/mem.": 1, + "ve": 4, + "removed": 1, + "mallocs": 1, + "frees": 1, + "found": 1, + "nanosleep": 7, + "takes": 1, + "least": 2, + "us.": 1, + "link": 3, + "version.": 1, + "doc": 1, + "Also": 1, + "added": 2, + "define": 2, + "passwrd": 1, + "Gert": 1, + "says": 1, + "needed": 3, + "pad": 4, + "settings.": 1, + "Changed": 1, + "names": 3, + "collisions": 1, + "wiringPi.": 1, + "Macros": 2, + "delayMicroseconds": 3, + "disabled": 2, + "defining": 1, + "BCM2835_NO_DELAY_COMPATIBILITY": 2, + "incorrect": 2, + "mapping": 3, + "Hardware": 1, + "pointers": 2, + "initialisation": 2, + "externally": 1, + "bcm2835_spi0.": 1, + "Now": 4, + "compiles": 1, + "even": 2, + "CLOCK_MONOTONIC_RAW": 1, + "CLOCK_MONOTONIC": 3, + "instead.": 1, + "errors": 1, + "divider": 15, + "frequencies": 2, + "MHz": 14, + "clock.": 6, + "Ben": 1, + "Simpson.": 1, + "examples": 1, + "Mark": 5, + "Wolfe.": 1, + "bcm2835_gpio_set_multi": 2, + "bcm2835_gpio_clr_multi": 2, + "bcm2835_gpio_write_multi": 4, + "mask": 20, + "once.": 1, + "Requested": 2, + "Sebastian": 2, + "Loncar.": 2, + "bcm2835_gpio_write_mask.": 1, + "Changes": 1, + "timer": 2, + "counter": 1, + "clock_gettime": 1, + "improved": 1, + "accuracy.": 1, + "No": 2, + "lrt": 1, + "now.": 1, + "Contributed": 1, + "van": 1, + "Vught.": 1, + "Removed": 1, + "inlines": 1, + "previous": 6, + "patch": 1, + "since": 3, + "don": 1, + "seem": 1, + "work": 1, + "everywhere.": 1, + "olly.": 1, + "Patch": 2, + "Dootson": 2, + "/dev/mem": 4, + "granted.": 1, + "susceptible": 1, + "bit": 19, + "overruns.": 1, + "courtesy": 1, + "Jeremy": 1, + "Mortis.": 1, + "BCM2835_GPFEN0": 2, + "broke": 1, + "ability": 1, + "falling": 4, + "edge": 8, + "events.": 1, + "Dootson.": 2, + "bcm2835_i2c_set_baudrate": 2, + "bcm2835_i2c_read_register_rs.": 1, + "bcm2835_i2c_read": 4, + "bcm2835_i2c_write": 4, + "fix": 1, + "ocasional": 1, + "reads": 2, + "completing.": 1, + "Patched": 1, + "p": 6, + "atched": 1, + "his": 1, + "submitted": 1, + "load": 1, + "processes.": 1, + "Updated": 1, + "distribution": 1, + "details": 1, + "airspayce.com": 1, + "missing": 1, + "unmapmem": 1, + "pads": 7, + "leak.": 1, + "Hartmut": 1, + "Henkel.": 1, + "Mike": 1, + "McCauley": 1, + "mikem@airspayce.com": 1, + "DO": 1, + "NOT": 3, + "CONTACT": 1, + "THE": 2, + "AUTHOR": 1, + "DIRECTLY": 1, + "USE": 1, + "LISTS": 1, + "BCM2835_H": 3, + "": 2, + "defgroup": 7, + "constants": 1, + "Constants": 1, + "passing": 1, + "values": 3, + "here": 1, + "@": 14, + "HIGH": 12, + "volts": 2, + "pin.": 21, + "Speed": 1, + "core": 1, + "clock": 21, + "core_clk": 1, + "BCM2835_CORE_CLK_HZ": 1, + "Base": 17, + "Address": 10, + "BCM2835_PERI_BASE": 9, + "System": 10, + "Timer": 9, + "BCM2835_ST_BASE": 1, + "BCM2835_GPIO_PADS": 2, + "Clock/timer": 1, + "BCM2835_CLOCK_BASE": 1, + "BCM2835_GPIO_BASE": 6, + "BCM2835_SPI0_BASE": 1, + "BSC0": 2, + "BCM2835_BSC0_BASE": 1, + "PWM": 2, + "BCM2835_GPIO_PWM": 1, + "C000": 1, + "BSC1": 2, + "BCM2835_BSC1_BASE": 1, + "ST": 1, + "registers.": 10, + "Available": 8, + "bcm2835_init": 11, + "extern": 72, + "volatile": 13, + "*bcm2835_st": 1, + "*bcm2835_gpio": 1, + "*bcm2835_pwm": 1, + "*bcm2835_clk": 1, + "PADS": 1, + "*bcm2835_pads": 1, + "*bcm2835_spi0": 1, + "*bcm2835_bsc0": 1, + "*bcm2835_bsc1": 1, + "Size": 2, + "page": 5, + "BCM2835_PAGE_SIZE": 1, + "*1024": 2, + "BCM2835_BLOCK_SIZE": 1, + "offsets": 2, + "BCM2835_GPIO_BASE.": 1, + "Offsets": 1, + "into": 6, + "bytes": 29, + "per": 3, + "View": 1, + "BCM2835_GPFSEL0": 1, + "Function": 8, + "BCM2835_GPFSEL1": 1, + "BCM2835_GPFSEL2": 1, + "BCM2835_GPFSEL3": 1, + "BCM2835_GPFSEL4": 1, + "BCM2835_GPFSEL5": 1, + "BCM2835_GPSET0": 1, + "Output": 6, + "Set": 2, + "BCM2835_GPSET1": 1, + "BCM2835_GPCLR0": 1, + "BCM2835_GPCLR1": 1, + "BCM2835_GPLEV0": 1, + "Level": 2, + "BCM2835_GPLEV1": 1, + "BCM2835_GPEDS0": 1, + "Event": 11, + "Detect": 35, + "Status": 6, + "BCM2835_GPEDS1": 1, + "BCM2835_GPREN0": 1, + "Rising": 8, + "Edge": 16, + "Enable": 38, + "BCM2835_GPREN1": 1, + "Falling": 8, + "BCM2835_GPFEN1": 1, + "BCM2835_GPHEN0": 1, + "High": 4, + "BCM2835_GPHEN1": 1, + "BCM2835_GPLEN0": 1, + "Low": 5, + "BCM2835_GPLEN1": 1, + "BCM2835_GPAREN0": 1, + "Async.": 4, + "BCM2835_GPAREN1": 1, + "BCM2835_GPAFEN0": 1, + "BCM2835_GPAFEN1": 1, + "BCM2835_GPPUD": 1, + "Pull": 11, + "up/down": 10, + "BCM2835_GPPUDCLK0": 1, + "Clock": 11, + "BCM2835_GPPUDCLK1": 1, + "brief": 12, + "bcm2835PortFunction": 1, + "Port": 1, + "select": 9, + "modes": 1, + "bcm2835_gpio_fsel": 2, + "BCM2835_GPIO_FSEL_INPT": 1, + "b000": 1, + "Input": 2, + "BCM2835_GPIO_FSEL_OUTP": 1, + "b001": 1, + "BCM2835_GPIO_FSEL_ALT0": 1, + "b100": 1, + "Alternate": 6, + "BCM2835_GPIO_FSEL_ALT1": 1, + "b101": 1, + "BCM2835_GPIO_FSEL_ALT2": 1, + "b110": 1, + "BCM2835_GPIO_FSEL_ALT3": 1, + "b111": 2, + "BCM2835_GPIO_FSEL_ALT4": 1, + "b011": 1, + "BCM2835_GPIO_FSEL_ALT5": 1, + "b010": 1, + "BCM2835_GPIO_FSEL_MASK": 1, + "bits": 11, + "bcm2835FunctionSelect": 2, + "bcm2835PUDControl": 4, + "Pullup/Pulldown": 1, + "defines": 3, + "bcm2835_gpio_pud": 5, + "BCM2835_GPIO_PUD_OFF": 1, + "b00": 1, + "Off": 3, + "pull": 1, + "BCM2835_GPIO_PUD_DOWN": 1, + "b01": 1, + "Down": 1, + "BCM2835_GPIO_PUD_UP": 1, + "b10": 1, + "Up": 1, + "Pad": 11, + "BCM2835_PADS_GPIO_0_27": 1, + "BCM2835_PADS_GPIO_28_45": 1, + "BCM2835_PADS_GPIO_46_53": 1, + "Control": 6, + "masks": 1, + "BCM2835_PAD_PASSWRD": 1, + "Password": 1, + "BCM2835_PAD_SLEW_RATE_UNLIMITED": 1, + "Slew": 1, + "rate": 3, + "unlimited": 1, + "BCM2835_PAD_HYSTERESIS_ENABLED": 1, + "Hysteresis": 1, + "BCM2835_PAD_DRIVE_2mA": 1, + "mA": 8, + "drive": 8, + "BCM2835_PAD_DRIVE_4mA": 1, + "BCM2835_PAD_DRIVE_6mA": 1, + "BCM2835_PAD_DRIVE_8mA": 1, + "BCM2835_PAD_DRIVE_10mA": 1, + "BCM2835_PAD_DRIVE_12mA": 1, + "BCM2835_PAD_DRIVE_14mA": 1, + "BCM2835_PAD_DRIVE_16mA": 1, + "bcm2835PadGroup": 4, + "specification": 1, + "bcm2835_gpio_pad": 2, + "BCM2835_PAD_GROUP_GPIO_0_27": 1, + "BCM2835_PAD_GROUP_GPIO_28_45": 1, + "BCM2835_PAD_GROUP_GPIO_46_53": 1, + "Numbers": 1, + "Here": 1, + "terms": 4, + "numbers.": 1, + "These": 6, + "requiring": 1, + "bin": 1, + "connected": 1, + "adopt": 1, + "alternate": 7, + "function.": 3, + "slightly": 1, + "pinouts": 1, + "these": 1, + "RPI_V2_*.": 1, + "At": 1, + "bootup": 1, + "UART0_TXD": 3, + "UART0_RXD": 3, + "ie": 3, + "alt0": 1, + "respectively": 1, + "dedicated": 1, + "cant": 1, + "controlled": 1, + "independently": 1, + "RPI_GPIO_P1_03": 6, + "RPI_GPIO_P1_05": 6, + "RPI_GPIO_P1_07": 1, + "RPI_GPIO_P1_08": 1, + "defaults": 4, + "alt": 4, + "RPI_GPIO_P1_10": 1, + "RPI_GPIO_P1_11": 1, + "RPI_GPIO_P1_12": 1, + "RPI_GPIO_P1_13": 1, + "RPI_GPIO_P1_15": 1, + "RPI_GPIO_P1_16": 1, + "RPI_GPIO_P1_18": 1, + "RPI_GPIO_P1_19": 1, + "RPI_GPIO_P1_21": 1, + "RPI_GPIO_P1_22": 1, + "RPI_GPIO_P1_23": 1, + "RPI_GPIO_P1_24": 1, + "RPI_GPIO_P1_26": 1, + "RPI_V2_GPIO_P1_03": 1, + "RPI_V2_GPIO_P1_05": 1, + "RPI_V2_GPIO_P1_07": 1, + "RPI_V2_GPIO_P1_08": 1, + "RPI_V2_GPIO_P1_10": 1, + "RPI_V2_GPIO_P1_11": 1, + "RPI_V2_GPIO_P1_12": 1, + "RPI_V2_GPIO_P1_13": 1, + "RPI_V2_GPIO_P1_15": 1, + "RPI_V2_GPIO_P1_16": 1, + "RPI_V2_GPIO_P1_18": 1, + "RPI_V2_GPIO_P1_19": 1, + "RPI_V2_GPIO_P1_21": 1, + "RPI_V2_GPIO_P1_22": 1, + "RPI_V2_GPIO_P1_23": 1, + "RPI_V2_GPIO_P1_24": 1, + "RPI_V2_GPIO_P1_26": 1, + "RPI_V2_GPIO_P5_03": 1, + "RPI_V2_GPIO_P5_04": 1, + "RPI_V2_GPIO_P5_05": 1, + "RPI_V2_GPIO_P5_06": 1, + "RPiGPIOPin": 1, + "BCM2835_SPI0_CS": 1, + "Master": 12, + "BCM2835_SPI0_FIFO": 1, + "TX": 5, + "RX": 7, + "FIFOs": 1, + "BCM2835_SPI0_CLK": 1, + "Divider": 2, + "BCM2835_SPI0_DLEN": 1, + "Data": 9, + "Length": 2, + "BCM2835_SPI0_LTOH": 1, + "LOSSI": 1, + "mode": 24, + "TOH": 1, + "BCM2835_SPI0_DC": 1, + "DMA": 3, + "DREQ": 1, + "Controls": 1, + "BCM2835_SPI0_CS_LEN_LONG": 1, + "Long": 1, + "word": 7, + "Lossi": 2, + "DMA_LEN": 1, + "BCM2835_SPI0_CS_DMA_LEN": 1, + "BCM2835_SPI0_CS_CSPOL2": 1, + "Chip": 9, + "Polarity": 5, + "BCM2835_SPI0_CS_CSPOL1": 1, + "BCM2835_SPI0_CS_CSPOL0": 1, + "BCM2835_SPI0_CS_RXF": 1, + "RXF": 2, + "FIFO": 25, + "Full": 1, + "BCM2835_SPI0_CS_RXR": 1, + "RXR": 3, + "Reading": 1, + "full": 9, + "BCM2835_SPI0_CS_TXD": 1, + "TXD": 2, + "accept": 2, + "BCM2835_SPI0_CS_RXD": 1, + "RXD": 2, + "contains": 2, + "BCM2835_SPI0_CS_DONE": 1, + "Done": 3, + "transfer": 8, + "BCM2835_SPI0_CS_TE_EN": 1, + "Unused": 2, + "BCM2835_SPI0_CS_LMONO": 1, + "BCM2835_SPI0_CS_LEN": 1, + "LEN": 1, + "LoSSI": 1, + "BCM2835_SPI0_CS_REN": 1, + "REN": 1, + "Read": 3, + "BCM2835_SPI0_CS_ADCS": 1, + "ADCS": 1, + "Automatically": 1, + "Deassert": 1, + "BCM2835_SPI0_CS_INTR": 1, + "INTR": 1, + "Interrupt": 5, + "BCM2835_SPI0_CS_INTD": 1, + "INTD": 1, + "BCM2835_SPI0_CS_DMAEN": 1, + "DMAEN": 1, + "BCM2835_SPI0_CS_TA": 1, + "Transfer": 3, + "Active": 2, + "BCM2835_SPI0_CS_CSPOL": 1, + "BCM2835_SPI0_CS_CLEAR": 1, + "BCM2835_SPI0_CS_CLEAR_RX": 1, + "BCM2835_SPI0_CS_CLEAR_TX": 1, + "BCM2835_SPI0_CS_CPOL": 1, + "BCM2835_SPI0_CS_CPHA": 1, + "Phase": 1, + "BCM2835_SPI0_CS_CS": 1, + "bcm2835SPIBitOrder": 3, + "Bit": 1, + "Specifies": 5, + "ordering": 4, + "bcm2835_spi_setBitOrder": 2, + "BCM2835_SPI_BIT_ORDER_LSBFIRST": 1, + "LSB": 1, + "First": 2, + "BCM2835_SPI_BIT_ORDER_MSBFIRST": 1, + "MSB": 1, + "Specify": 2, + "bcm2835_spi_setDataMode": 2, + "BCM2835_SPI_MODE0": 1, + "CPOL": 4, + "CPHA": 4, + "BCM2835_SPI_MODE1": 1, + "BCM2835_SPI_MODE2": 1, + "BCM2835_SPI_MODE3": 1, + "bcm2835SPIMode": 2, + "bcm2835SPIChipSelect": 3, + "BCM2835_SPI_CS0": 1, + "BCM2835_SPI_CS1": 1, + "BCM2835_SPI_CS2": 1, + "CS1": 1, + "CS2": 1, + "asserted": 3, + "BCM2835_SPI_CS_NONE": 1, + "CS": 5, + "yourself": 1, + "bcm2835SPIClockDivider": 3, + "generate": 2, + "Figures": 1, + "below": 1, + "period": 1, + "frequency.": 1, + "divided": 2, + "nominal": 2, + "reported": 2, + "contrary": 1, + "shown": 1, + "confirmed": 1, + "measurement": 2, + "BCM2835_SPI_CLOCK_DIVIDER_65536": 1, + "us": 12, + "kHz": 10, + "BCM2835_SPI_CLOCK_DIVIDER_32768": 1, + "BCM2835_SPI_CLOCK_DIVIDER_16384": 1, + "BCM2835_SPI_CLOCK_DIVIDER_8192": 1, + "/51757813kHz": 1, + "BCM2835_SPI_CLOCK_DIVIDER_4096": 1, + "BCM2835_SPI_CLOCK_DIVIDER_2048": 1, + "BCM2835_SPI_CLOCK_DIVIDER_1024": 1, + "BCM2835_SPI_CLOCK_DIVIDER_512": 1, + "BCM2835_SPI_CLOCK_DIVIDER_256": 1, + "BCM2835_SPI_CLOCK_DIVIDER_128": 1, + "ns": 9, + "BCM2835_SPI_CLOCK_DIVIDER_64": 1, + "BCM2835_SPI_CLOCK_DIVIDER_32": 1, + "BCM2835_SPI_CLOCK_DIVIDER_16": 1, + "BCM2835_SPI_CLOCK_DIVIDER_8": 1, + "BCM2835_SPI_CLOCK_DIVIDER_4": 1, + "BCM2835_SPI_CLOCK_DIVIDER_2": 1, + "fastest": 1, + "BCM2835_SPI_CLOCK_DIVIDER_1": 1, + "same": 3, + "/65536": 1, + "BCM2835_BSC_C": 1, + "BCM2835_BSC_S": 1, + "BCM2835_BSC_DLEN": 1, + "BCM2835_BSC_A": 1, + "Slave": 1, + "BCM2835_BSC_FIFO": 1, + "BCM2835_BSC_DIV": 1, + "BCM2835_BSC_DEL": 1, + "Delay": 4, + "BCM2835_BSC_CLKT": 1, + "Stretch": 2, + "Timeout": 2, + "BCM2835_BSC_C_I2CEN": 1, + "BCM2835_BSC_C_INTR": 1, + "BCM2835_BSC_C_INTT": 1, + "BCM2835_BSC_C_INTD": 1, + "DONE": 2, + "BCM2835_BSC_C_ST": 1, + "Start": 4, + "BCM2835_BSC_C_CLEAR_1": 1, + "BCM2835_BSC_C_CLEAR_2": 1, + "BCM2835_BSC_C_READ": 1, + "BCM2835_BSC_S_CLKT": 1, + "stretch": 1, + "timeout": 5, + "BCM2835_BSC_S_ERR": 1, + "ACK": 1, + "error": 8, + "BCM2835_BSC_S_RXF": 1, + "BCM2835_BSC_S_TXE": 1, + "TXE": 1, + "BCM2835_BSC_S_RXD": 1, + "BCM2835_BSC_S_TXD": 1, + "BCM2835_BSC_S_RXR": 1, + "BCM2835_BSC_S_TXW": 1, + "TXW": 1, + "writing": 2, + "BCM2835_BSC_S_DONE": 1, + "BCM2835_BSC_S_TA": 1, + "BCM2835_BSC_FIFO_SIZE": 1, + "bcm2835I2CClockDivider": 3, + "BCM2835_I2C_CLOCK_DIVIDER_2500": 1, + "BCM2835_I2C_CLOCK_DIVIDER_626": 1, + "BCM2835_I2C_CLOCK_DIVIDER_150": 1, + "reset": 1, + "BCM2835_I2C_CLOCK_DIVIDER_148": 1, + "bcm2835I2CReasonCodes": 5, + "reason": 4, + "codes": 1, + "BCM2835_I2C_REASON_OK": 1, + "Success": 1, + "BCM2835_I2C_REASON_ERROR_NACK": 1, + "Received": 4, + "NACK": 1, + "BCM2835_I2C_REASON_ERROR_CLKT": 1, + "BCM2835_I2C_REASON_ERROR_DATA": 1, + "sent": 1, + "BCM2835_ST_CS": 1, + "Control/Status": 1, + "BCM2835_ST_CLO": 1, + "Counter": 4, + "Lower": 2, + "BCM2835_ST_CHI": 1, + "Upper": 1, + "BCM2835_PWM_CONTROL": 1, + "BCM2835_PWM_STATUS": 1, + "BCM2835_PWM0_RANGE": 1, + "BCM2835_PWM0_DATA": 1, + "BCM2835_PWM1_RANGE": 1, + "BCM2835_PWM1_DATA": 1, + "BCM2835_PWMCLK_CNTL": 1, + "BCM2835_PWMCLK_DIV": 1, + "BCM2835_PWM1_MS_MODE": 1, + "Run": 4, + "MS": 2, + "BCM2835_PWM1_USEFIFO": 1, + "BCM2835_PWM1_REVPOLAR": 1, + "Reverse": 2, + "polarity": 3, + "BCM2835_PWM1_OFFSTATE": 1, + "Ouput": 2, + "BCM2835_PWM1_REPEATFF": 1, + "Repeat": 2, + "last": 6, + "empty": 2, + "BCM2835_PWM1_SERIAL": 1, + "serial": 2, + "BCM2835_PWM1_ENABLE": 1, + "Channel": 2, + "BCM2835_PWM0_MS_MODE": 1, + "BCM2835_PWM0_USEFIFO": 1, + "BCM2835_PWM0_REVPOLAR": 1, + "BCM2835_PWM0_OFFSTATE": 1, + "BCM2835_PWM0_REPEATFF": 1, + "BCM2835_PWM0_SERIAL": 1, + "BCM2835_PWM0_ENABLE": 1, + "__cplusplus": 12, + "init": 2, + "Library": 1, + "management": 1, + "intialise": 1, + "Initialise": 1, + "opening": 1, + "getting": 1, + "device": 7, + "call": 4, + "successfully": 1, + "before": 7, + "bcm2835_set_debug": 2, + "fails": 1, + "returning": 1, + "result": 8, + "crashes": 1, + "failures.": 1, + "Prints": 1, + "messages": 1, + "stderr": 1, + "case": 34, + "errors.": 1, + "successful": 2, + "Close": 1, + "deallocating": 1, + "closing": 3, + "Sets": 24, + "debug": 6, + "prevents": 1, + "makes": 1, + "print": 5, + "out": 5, + "what": 2, + "would": 2, + "rather": 2, + "causes": 1, + "normal": 1, + "operation.": 2, + "Call": 2, + "param": 72, + "level.": 3, + "lowlevel": 2, + "provide": 1, + "generally": 1, + "Reads": 5, + "done": 3, + "twice": 3, + "therefore": 6, + "always": 3, + "precautions": 3, + "correct": 3, + "paddr": 10, + "from.": 6, + "etc.": 5, + "sa": 30, + "without": 3, + "occurred": 2, + "since.": 2, + "bcm2835_peri_read_nb": 1, + "Writes": 2, + "bcm2835_peri_write_nb": 1, + "Alters": 1, + "regsiter.": 1, + "valu": 1, + "alters": 1, + "deines": 1, + "according": 1, + "value.": 2, + "All": 1, + "unaffected.": 1, + "Use": 8, + "alter": 2, + "subset": 1, + "register.": 3, + "masked": 2, + "mask.": 1, + "Bitmask": 1, + "altered": 1, + "gpio": 1, + "interface.": 3, + "state.": 1, + "configures": 1, + "RPI_GPIO_P1_*": 21, + "Mode": 1, + "BCM2835_GPIO_FSEL_*": 1, + "specified": 27, + "HIGH.": 2, + "bcm2835_gpio_write": 3, + "bcm2835_gpio_set": 1, + "LOW.": 5, + "bcm2835_gpio_clr": 1, + "first": 13, + "Mask": 6, + "affect.": 4, + "eg": 5, + "Works": 1, + "output.": 1, + "bcm2835_gpio_lev": 1, + "Status.": 7, + "Tests": 1, + "detected": 7, + "requested": 1, + "flag": 3, + "bcm2835_gpio_set_eds": 2, + "status": 1, + "th": 1, + "true.": 2, + "bcm2835_gpio_eds": 1, + "effect": 3, + "clearing": 1, + "flag.": 1, + "afer": 1, + "seeing": 1, + "rising": 3, + "sets": 8, + "GPRENn": 2, + "synchronous": 2, + "detection.": 2, + "signal": 4, + "sampled": 6, + "looking": 2, + "pattern": 2, + "signal.": 2, + "suppressing": 2, + "glitches.": 2, + "Disable": 6, + "Asynchronous": 6, + "incoming": 2, + "As": 2, + "edges": 2, + "very": 2, + "short": 5, + "duration": 2, + "detected.": 2, + "bcm2835_gpio_pudclk": 3, + "resistor": 1, + "However": 3, + "convenient": 2, + "bcm2835_gpio_set_pud": 4, + "pud": 4, + "desired": 7, + "mode.": 4, + "One": 3, + "BCM2835_GPIO_PUD_*": 2, + "Clocks": 3, + "earlier": 1, + "remove": 2, + "group.": 2, + "BCM2835_PAD_GROUP_GPIO_*": 2, + "BCM2835_PAD_*": 2, + "bcm2835_gpio_set_pad": 1, + "Delays": 3, + "milliseconds.": 1, + "Uses": 4, + "until": 1, + "up.": 1, + "mercy": 2, + "From": 2, + "interval": 4, + "req": 2, + "exact": 2, + "multiple": 2, + "granularity": 2, + "rounded": 2, + "multiple.": 2, + "Furthermore": 2, + "sleep": 2, + "completes": 2, + "still": 3, + "becomes": 2, + "free": 4, + "once": 5, + "again": 2, + "execute": 3, + "thread.": 2, + "millis": 2, + "milliseconds": 1, + "microseconds.": 2, + "combination": 2, + "busy": 2, + "wait": 2, + "timers": 1, + "less": 1, + "microseconds": 6, + "Timer.": 1, + "RaspberryPi": 1, + "Your": 1, + "mileage": 1, + "vary.": 1, + "micros": 5, + "required": 2, + "bcm2835_gpio_write_mask": 1, + "clocking": 1, + "spi": 1, + "let": 2, + "device.": 2, + "operations.": 4, + "Forces": 2, + "ALT0": 2, + "funcitons": 1, + "complete": 3, + "End": 2, + "INPUT": 2, + "behaviour.": 2, + "NOTE": 1, + "effect.": 1, + "SPI0.": 1, + "Defaults": 1, + "BCM2835_SPI_BIT_ORDER_*": 1, + "speed.": 2, + "BCM2835_SPI_CLOCK_DIVIDER_*": 1, + "bcm2835_spi_setClockDivider": 1, + "polariy": 1, + "phase": 1, + "BCM2835_SPI_MODE*": 1, + "bcm2835_spi_transfer": 5, + "made": 1, + "selected": 13, + "during": 4, + "transfer.": 4, + "cs": 4, + "activate": 1, + "slave.": 7, + "BCM2835_SPI_CS*": 1, + "bcm2835_spi_chipSelect": 4, + "occurs": 1, + "currently": 12, + "active.": 1, + "transfers": 1, + "happening": 1, + "complement": 1, + "inactive": 1, + "affect": 1, + "active": 3, + "Whether": 1, + "bcm2835_spi_setChipSelectPolarity": 1, + "Transfers": 6, + "byte": 6, + "Asserts": 3, + "simultaneously": 3, + "clocks": 2, + "MISO.": 2, + "Returns": 2, + "polled": 2, + "Peripherls": 2, + "len": 15, + "slave": 8, + "placed": 1, + "rbuf.": 1, + "rbuf": 3, + "tbuf": 4, + "send.": 5, + "put": 1, + "Number": 8, + "send/received": 2, + "bcm2835_spi_transfernb.": 1, + "replaces": 1, + "transmitted": 1, + "buffer.": 1, + "buf": 14, + "replace": 1, + "eh": 2, + "bcm2835_spi_writenb": 1, + "i2c": 1, + "Philips": 1, + "bus/interface": 1, + "January": 1, + "SCL": 2, + "bcm2835_i2c_end": 3, + "bcm2835_i2c_begin": 1, + "address.": 2, + "addr": 2, + "bcm2835_i2c_setSlaveAddress": 4, + "BCM2835_I2C_CLOCK_DIVIDER_*": 1, + "bcm2835_i2c_setClockDivider": 2, + "converting": 1, + "baudrate": 4, + "parameter": 1, + "equivalent": 1, + "divider.": 1, + "standard": 2, + "khz": 1, + "corresponds": 1, + "its": 1, + "driver.": 1, + "Of": 1, + "nothing": 1, + "driver": 1, + "receive.": 2, + "received.": 2, + "Allows": 2, + "slaves": 1, + "require": 3, + "repeated": 1, + "start": 12, + "prior": 1, + "stop": 1, + "set.": 1, + "popular": 1, + "MPL3115A2": 1, + "pressure": 1, + "temperature": 1, + "sensor.": 1, + "Note": 1, + "combined": 1, + "better": 1, + "choice.": 1, + "Will": 1, + "regaddr": 2, + "bcm2835_i2c_read_register_rs": 1, + "st": 1, + "delays": 1, + "Counter.": 1, + "bcm2835_st_read": 1, + "offset.": 1, + "offset_micros": 2, + "Offset": 1, + "bcm2835_st_delay": 1, + "@example": 5, + "blink.c": 1, + "Blinks": 1, + "off": 1, + "input.c": 1, + "event.c": 1, + "Shows": 3, + "how": 3, + "spi.c": 1, + "spin.c": 1, + "ENV_H": 3, + "": 1, + "Q_OBJECT": 1, + "*instance": 1, + "#pragma": 3, + "Field": 2, + "Free": 1, + "Black": 1, + "White": 1, + "Illegal": 1, + "Player": 1, + "BOOST_ASIO_DETAIL_IMPL_EPOLL_REACTOR_IPP": 3, + "_MSC_VER": 7, + "": 1, + "BOOST_ASIO_HAS_EPOLL": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "BOOST_ASIO_HAS_TIMERFD": 19, + "": 1, + "boost": 18, + "asio": 14, + "detail": 5, + "epoll_reactor": 40, + "io_service": 6, + "service_base": 1, + "": 1, + "io_service_": 1, + "use_service": 1, + "": 1, + "mutex_": 13, + "interrupter_": 5, + "epoll_fd_": 20, + "do_epoll_create": 3, + "timer_fd_": 21, + "do_timerfd_create": 3, + "shutdown_": 10, + "epoll_event": 10, + "ev": 21, + "ev.events": 13, + "EPOLLIN": 8, + "EPOLLERR": 8, + "EPOLLET": 5, + "ev.data.ptr": 10, + "epoll_ctl": 12, + "EPOLL_CTL_ADD": 7, + "interrupter_.read_descriptor": 3, + "interrupter_.interrupt": 2, + "shutdown_service": 1, + "mutex": 16, + "scoped_lock": 16, + "lock.unlock": 1, + "op_queue": 6, + "": 6, + "ops": 10, + "descriptor_state*": 6, + "registered_descriptors_.first": 2, + "max_ops": 6, + "ops.push": 5, + "op_queue_": 12, + "registered_descriptors_.free": 2, + "timer_queues_.get_all_timers": 1, + "io_service_.abandon_operations": 1, + "fork_service": 1, + "fork_event": 1, + "fork_ev": 2, + "fork_child": 1, + "interrupter_.recreate": 1, + "update_timeout": 2, + "descriptors_lock": 3, + "registered_descriptors_mutex_": 3, + "registered_events_": 8, + "descriptor_": 5, + "error_code": 4, + "ec": 6, + "errno": 10, + "get_system_category": 3, + "throw_error": 2, + "init_task": 1, + "io_service_.init_task": 1, + "register_descriptor": 1, + "socket_type": 7, + "per_descriptor_data": 8, + "descriptor_data": 60, + "allocate_descriptor_state": 3, + "descriptor_lock": 7, + "reactor_": 7, + "EPOLLHUP": 3, + "EPOLLPRI": 3, + "register_internal_descriptor": 1, + "op_type": 8, + "reactor_op*": 5, + "op": 28, + ".push": 2, + "move_descriptor": 1, + "target_descriptor_data": 2, + "source_descriptor_data": 3, + "start_op": 1, + "is_continuation": 5, + "allow_speculative": 2, + "ec_": 4, + "bad_descriptor": 1, + "post_immediate_completion": 2, + ".empty": 5, + "read_op": 1, + "except_op": 1, + "perform": 2, + "descriptor_lock.unlock": 4, + "io_service_.post_immediate_completion": 2, + "write_op": 2, + "EPOLLOUT": 4, + "EPOLL_CTL_MOD": 3, + "io_service_.work_started": 2, + "cancel_ops": 1, + ".front": 3, + "operation_aborted": 2, + ".pop": 3, + "io_service_.post_deferred_completions": 3, + "deregister_descriptor": 1, + "EPOLL_CTL_DEL": 2, + "free_descriptor_state": 3, + "deregister_internal_descriptor": 1, + "get_timeout": 5, + "events": 8, + "num_events": 2, + "epoll_wait": 1, + "check_timers": 6, + "void*": 2, + ".data.ptr": 1, + "": 2, + "set_ready_events": 1, + ".events": 1, + "common_lock": 1, + "timer_queues_.get_ready_timers": 1, + "itimerspec": 5, + "new_timeout": 6, + "old_timeout": 4, + "flags": 4, + "timerfd_settime": 2, + "EPOLL_CLOEXEC": 4, + "fd": 15, + "epoll_create1": 1, + "EINVAL": 4, + "ENOSYS": 1, + "epoll_create": 1, + "epoll_size": 1, + "fcntl": 2, + "F_SETFD": 2, + "FD_CLOEXEC": 2, + "timerfd_create": 2, + "TFD_CLOEXEC": 1, + "registered_descriptors_.alloc": 1, + "do_add_timer_queue": 1, + "timer_queue_base": 2, + "timer_queues_.insert": 1, + "do_remove_timer_queue": 1, + "timer_queues_.erase": 1, + "timer_queues_.wait_duration_msec": 1, + "ts": 1, + "ts.it_interval.tv_sec": 1, + "ts.it_interval.tv_nsec": 1, + "usec": 5, + "timer_queues_.wait_duration_usec": 1, + "ts.it_value.tv_sec": 1, + "ts.it_value.tv_nsec": 1, + "TFD_TIMER_ABSTIME": 1, + "perform_io_cleanup_on_block_exit": 4, + "epoll_reactor*": 2, + "first_op_": 3, + "ops_.empty": 1, + "ops_": 2, + "operation*": 4, + "descriptor_state": 5, + "do_complete": 2, + "perform_io": 2, + "mutex_.lock": 1, + "io_cleanup": 1, + "adopt_lock": 1, + "j": 10, + "io_cleanup.ops_.push": 1, + "io_cleanup.first_op_": 2, + "io_cleanup.ops_.front": 1, + "io_cleanup.ops_.pop": 1, + "io_service_impl*": 1, + "owner": 3, + "bytes_transferred": 2, + "": 1, + "": 1, + "DEFAULT_DELIMITER": 1, + "CsvStreamer": 5, + "ofstream": 1, + "File": 1, + "row_buffer": 1, + "row": 12, + "flushed/written": 1, + "fields": 4, + "columns": 2, + "rows": 3, + "records": 2, + "including": 2, + "delimiter": 2, + "Delimiter": 1, + "character": 10, + "comma": 2, + "sanitize": 1, + "ready": 1, + "Empty": 1, + "CSV": 4, + "streamer...": 1, + "Same": 1, + "...": 1, + "Opens": 3, + "path/name": 3, + "Ensures": 1, + "closed": 1, + "saved": 1, + "delimiting": 1, + "add_field": 1, + "line": 11, + "adds": 1, + "save_fields": 1, + "save": 1, + "writes": 2, + "append": 8, + "Appends": 5, + "quoted": 1, + "leading/trailing": 1, + "spaces": 3, + "trimmed": 1, + "Like": 1, + "specify": 1, + "keep": 1, + "writeln": 1, + "Flushes": 1, + "Saves": 1, + "closes": 1, + "field_count": 1, + "Gets": 2, + "row_count": 1, + "QSCIPRINTER_H": 2, + "__APPLE__": 4, + "": 1, + "": 2, + "": 1, + "QT_BEGIN_NAMESPACE": 1, + "QRect": 2, + "QPainter": 2, + "QT_END_NAMESPACE": 1, + "QsciScintillaBase": 100, + "QsciPrinter": 9, + "sub": 2, + "Qt": 1, + "QPrinter": 3, + "text": 5, + "Scintilla": 2, + "document.": 8, + "further": 1, + "classed": 1, + "layout": 1, + "adding": 2, + "headers": 3, + "footers": 2, + "example.": 1, + "QSCINTILLA_EXPORT": 2, + "Constructs": 1, + "printer": 1, + "paint": 1, + "PrinterMode": 1, + "ScreenResolution": 1, + "Destroys": 1, + "instance.": 2, + "Format": 1, + "document": 16, + "drawn": 2, + "painter": 4, + "add": 3, + "customised": 2, + "graphics.": 2, + "drawing": 4, + "actually": 1, + "sized.": 1, + "area": 5, + "draw": 1, + "text.": 3, + "necessary": 1, + "reserve": 1, + "By": 1, + "relative": 2, + "printable": 1, + "page.": 13, + "setFullPage": 1, + "because": 2, + "printRange": 2, + "try": 1, + "over": 1, + "whole": 2, + "pagenr": 2, + "numbered": 1, + "formatPage": 1, + "Return": 3, + "points": 2, + "font": 2, + "printing.": 2, + "setMagnification": 2, + "magnification": 3, + "mag": 2, + "printing": 2, + "magnification.": 1, + "Print": 2, + "lines": 3, + "qsb.": 1, + "negative": 2, + "signifies": 2, + "error.": 1, + "*qsb": 1, + "wrap": 4, + "QsciScintilla": 7, + "WrapWord.": 1, + "setWrapMode": 2, + "WrapMode": 3, + "wrapMode": 2, + "wmode.": 1, + "wmode": 1, + "V8_V8_H_": 3, + "GOOGLE3": 2, + "NDEBUG": 4, + "#undef": 3, + "both": 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, + "rpc_init": 1, + "rpc_server_loop": 1, + "Q_OS_LINUX": 2, + "": 1, "QT_VERSION": 1, "QT_VERSION_CHECK": 1, - "(": 3102, - ")": 3105, - "#error": 9, "Something": 1, - "is": 102, "wrong": 1, - "with": 33, - "the": 541, "setup.": 1, - "Please": 4, "report": 3, - "to": 254, "mailing": 1, - "list": 3, - "int": 218, - "main": 2, "argc": 2, "char**": 2, "argv": 2, - "const": 172, - "envp": 4, - "{": 726, "google_breakpad": 1, "ExceptionHandler": 1, - "eh": 2, - "NULL": 109, "Utils": 4, "exceptionHandler": 2, - "true": 49, - ";": 2783, "qInstallMsgHandler": 1, "messageHandler": 2, "QApplication": 1, @@ -10659,193 +14370,500 @@ "app.setOrganizationDomain": 1, "app.setApplicationVersion": 1, "PHANTOMJS_VERSION_STRING": 1, - "Env": 13, - "instance": 4, - "-": 438, - "parse": 3, "Phantom": 1, "phantom": 1, - "if": 359, "phantom.execute": 1, "app.exec": 1, - "}": 726, - "return": 240, "phantom.returnValue": 1, - "#pragma": 3, - "once": 5, - "": 4, - "": 4, - "": 2, - "using": 11, - "namespace": 38, - "std": 53, - "#define": 343, - "DEFAULT_DELIMITER": 1, - "class": 40, - "CsvStreamer": 5, - "private": 16, - "ofstream": 1, - "file": 31, - "//": 315, - "File": 1, - "output": 21, - "stream": 6, - "vector": 16, - "row_buffer": 1, - "Buffer": 10, - "which": 14, - "stores": 3, - "a": 157, - "row": 12, - "s": 26, - "data": 26, - "before": 7, - "being": 4, - "flushed/written": 1, - "fields": 4, - "Number": 8, - "of": 215, - "columns": 2, - "long": 15, - "rows": 3, - "records": 2, - "including": 2, - "header": 7, - "char": 127, - "delimiter": 2, - "Delimiter": 1, - "character": 10, - "comma": 2, - "by": 53, - "default": 14, - "string": 24, - "sanitize": 1, - "Returns": 2, - "ready": 1, - "for": 105, - "into": 6, - "public": 33, - "Empty": 1, - "CSV": 4, - "streamer...": 1, - "be": 35, - "sure": 6, - "open": 6, - "writing": 2, - "Same": 1, - "as": 28, - "...": 1, - "Opens": 3, - "an": 23, - "given": 16, - "path/name": 3, - "Ensures": 1, - "closed": 1, - "and": 118, - "saved": 1, - "void": 241, - "delimiting": 1, - "add_field": 1, - "If": 11, - "still": 3, - "on": 55, - "first": 13, - "line": 11, - "adds": 1, - "new": 13, - "field": 5, - "save_fields": 1, - "Call": 2, - "this": 57, - "save": 1, - "all": 11, - "writes": 2, - "should": 10, - "through": 4, - "append": 8, - "Appends": 5, - "current": 26, - "next": 9, - "quoted": 1, - "only": 6, - "needed": 3, - "leading/trailing": 1, - "spaces": 3, - "are": 36, - "trimmed": 1, - "bool": 111, - "Like": 1, - "but": 5, - "can": 21, - "specify": 1, - "whether": 4, - "trim": 2, - "at": 20, - "either": 4, - "end": 23, - "false": 48, - "keep": 1, - "float": 74, - "number": 52, - "double": 25, - "writeln": 1, - "Flushes": 1, - "what": 2, - "was": 6, - "in": 165, - "buffer": 9, - "close": 7, - "Saves": 1, - "closes": 1, - "field_count": 1, - "Gets": 2, - "row_count": 1, - "NOT": 3, + "NINJA_METRICS_H_": 3, + "int64_t.": 1, + "Metrics": 2, + "module": 1, + "dumps": 1, + "stats": 2, + "actions.": 1, + "To": 1, + "METRIC_RECORD": 4, + "below.": 1, + "metrics": 2, + "hit": 1, + "path.": 2, + "count": 1, + "Total": 1, + "spent": 1, + "int64_t": 3, + "sum": 1, + "scoped": 1, + "recording": 1, + "metric": 2, + "across": 1, + "body": 1, + "macro.": 1, + "ScopedMetric": 4, + "Metric*": 4, + "metric_": 1, + "Timestamp": 1, + "started.": 1, + "platform": 2, + "dependent.": 1, + "start_": 1, + "prints": 1, + "report.": 1, + "NewMetric": 2, + "summary": 1, + "stdout.": 1, + "Report": 1, + "": 1, + "metrics_": 1, + "Get": 1, + "epoch.": 1, + "Epoch": 1, + "varies": 1, + "between": 1, + "platforms": 1, + "useful": 1, + "measuring": 1, + "elapsed": 1, + "time.": 1, + "GetTimeMillis": 1, + "simple": 1, + "stopwatch": 1, + "seconds": 1, + "Restart": 3, + "called.": 1, + "Stopwatch": 2, + "started_": 4, + "Seconds": 1, + "call.": 1, + "Elapsed": 1, + "": 1, + "primary": 1, + "metrics.": 1, + "top": 1, + "recorded": 1, + "metrics_h_metric": 2, + "g_metrics": 3, + "metrics_h_scoped": 1, + "Metrics*": 1, + "QSCICOMMAND_H": 2, + "": 1, + "": 1, + "QsciCommand": 7, + "represents": 1, + "editor": 1, + "command": 9, + "keys": 3, + "bound": 4, + "Methods": 1, + "provided": 1, + "binding.": 1, + "Each": 1, + "friendly": 2, + "description": 3, + "dialogs.": 1, + "commands": 1, + "assigned": 1, + "key.": 1, + "Command": 4, + "Move": 26, + "down": 12, + "line.": 33, + "LineDown": 1, + "SCI_LINEDOWN": 1, + "Extend": 33, + "selection": 39, + "LineDownExtend": 1, + "SCI_LINEDOWNEXTEND": 1, + "rectangular": 9, + "LineDownRectExtend": 1, + "SCI_LINEDOWNRECTEXTEND": 1, + "Scroll": 5, + "view": 2, + "LineScrollDown": 1, + "SCI_LINESCROLLDOWN": 1, + "LineUp": 1, + "SCI_LINEUP": 1, + "LineUpExtend": 1, + "SCI_LINEUPEXTEND": 1, + "LineUpRectExtend": 1, + "SCI_LINEUPRECTEXTEND": 1, + "LineScrollUp": 1, + "SCI_LINESCROLLUP": 1, + "ScrollToStart": 1, + "SCI_SCROLLTOSTART": 1, + "ScrollToEnd": 1, + "SCI_SCROLLTOEND": 1, + "vertically": 1, + "centre": 1, + "VerticalCentreCaret": 1, + "SCI_VERTICALCENTRECARET": 1, + "paragraph.": 4, + "ParaDown": 1, + "SCI_PARADOWN": 1, + "ParaDownExtend": 1, + "SCI_PARADOWNEXTEND": 1, + "ParaUp": 1, + "SCI_PARAUP": 1, + "ParaUpExtend": 1, + "SCI_PARAUPEXTEND": 1, + "left": 7, + "character.": 9, + "CharLeft": 1, + "SCI_CHARLEFT": 1, + "CharLeftExtend": 1, + "SCI_CHARLEFTEXTEND": 1, + "CharLeftRectExtend": 1, + "SCI_CHARLEFTRECTEXTEND": 1, + "CharRight": 1, + "SCI_CHARRIGHT": 1, + "CharRightExtend": 1, + "SCI_CHARRIGHTEXTEND": 1, + "CharRightRectExtend": 1, + "SCI_CHARRIGHTRECTEXTEND": 1, + "word.": 9, + "WordLeft": 1, + "SCI_WORDLEFT": 1, + "WordLeftExtend": 1, + "SCI_WORDLEFTEXTEND": 1, + "WordRight": 1, + "SCI_WORDRIGHT": 1, + "WordRightExtend": 1, + "SCI_WORDRIGHTEXTEND": 1, + "WordLeftEnd": 1, + "SCI_WORDLEFTEND": 1, + "WordLeftEndExtend": 1, + "SCI_WORDLEFTENDEXTEND": 1, + "WordRightEnd": 1, + "SCI_WORDRIGHTEND": 1, + "WordRightEndExtend": 1, + "SCI_WORDRIGHTENDEXTEND": 1, + "part.": 4, + "WordPartLeft": 1, + "SCI_WORDPARTLEFT": 1, + "WordPartLeftExtend": 1, + "SCI_WORDPARTLEFTEXTEND": 1, + "WordPartRight": 1, + "SCI_WORDPARTRIGHT": 1, + "WordPartRightExtend": 1, + "SCI_WORDPARTRIGHTEXTEND": 1, + "Home": 1, + "SCI_HOME": 1, + "HomeExtend": 1, + "SCI_HOMEEXTEND": 1, + "HomeRectExtend": 1, + "SCI_HOMERECTEXTEND": 1, + "displayed": 10, + "HomeDisplay": 1, + "SCI_HOMEDISPLAY": 1, + "HomeDisplayExtend": 1, + "SCI_HOMEDISPLAYEXTEND": 1, + "HomeWrap": 1, + "SCI_HOMEWRAP": 1, + "HomeWrapExtend": 1, + "SCI_HOMEWRAPEXTEND": 1, + "visible": 6, + "VCHome": 1, + "SCI_VCHOME": 1, + "VCHomeExtend": 1, + "SCI_VCHOMEEXTEND": 1, + "VCHomeRectExtend": 1, + "SCI_VCHOMERECTEXTEND": 1, + "VCHomeWrap": 1, + "SCI_VCHOMEWRAP": 1, + "VCHomeWrapExtend": 1, + "SCI_VCHOMEWRAPEXTEND": 1, + "LineEnd": 1, + "SCI_LINEEND": 1, + "LineEndExtend": 1, + "SCI_LINEENDEXTEND": 1, + "LineEndRectExtend": 1, + "SCI_LINEENDRECTEXTEND": 1, + "LineEndDisplay": 1, + "SCI_LINEENDDISPLAY": 1, + "LineEndDisplayExtend": 1, + "SCI_LINEENDDISPLAYEXTEND": 1, + "LineEndWrap": 1, + "SCI_LINEENDWRAP": 1, + "LineEndWrapExtend": 1, + "SCI_LINEENDWRAPEXTEND": 1, + "DocumentStart": 1, + "SCI_DOCUMENTSTART": 1, + "DocumentStartExtend": 1, + "SCI_DOCUMENTSTARTEXTEND": 1, + "DocumentEnd": 1, + "SCI_DOCUMENTEND": 1, + "DocumentEndExtend": 1, + "SCI_DOCUMENTENDEXTEND": 1, + "PageUp": 1, + "SCI_PAGEUP": 1, + "PageUpExtend": 1, + "SCI_PAGEUPEXTEND": 1, + "PageUpRectExtend": 1, + "SCI_PAGEUPRECTEXTEND": 1, + "PageDown": 1, + "SCI_PAGEDOWN": 1, + "PageDownExtend": 1, + "SCI_PAGEDOWNEXTEND": 1, + "PageDownRectExtend": 1, + "SCI_PAGEDOWNRECTEXTEND": 1, + "Stuttered": 4, + "move": 2, + "StutteredPageUp": 1, + "SCI_STUTTEREDPAGEUP": 1, + "extend": 2, + "StutteredPageUpExtend": 1, + "SCI_STUTTEREDPAGEUPEXTEND": 1, + "StutteredPageDown": 1, + "SCI_STUTTEREDPAGEDOWN": 1, + "StutteredPageDownExtend": 1, + "SCI_STUTTEREDPAGEDOWNEXTEND": 1, + "Delete": 10, + "SCI_CLEAR": 1, + "DeleteBack": 1, + "SCI_DELETEBACK": 1, + "DeleteBackNotLine": 1, + "SCI_DELETEBACKNOTLINE": 1, + "left.": 2, + "DeleteWordLeft": 1, + "SCI_DELWORDLEFT": 1, + "right.": 2, + "DeleteWordRight": 1, + "SCI_DELWORDRIGHT": 1, + "DeleteWordRightEnd": 1, + "SCI_DELWORDRIGHTEND": 1, + "DeleteLineLeft": 1, + "SCI_DELLINELEFT": 1, + "DeleteLineRight": 1, + "SCI_DELLINERIGHT": 1, + "LineDelete": 1, + "SCI_LINEDELETE": 1, + "Cut": 2, + "clipboard.": 5, + "LineCut": 1, + "SCI_LINECUT": 1, + "Copy": 2, + "LineCopy": 1, + "SCI_LINECOPY": 1, + "Transpose": 1, + "lines.": 1, + "LineTranspose": 1, + "SCI_LINETRANSPOSE": 1, + "Duplicate": 2, + "LineDuplicate": 1, + "SCI_LINEDUPLICATE": 1, + "SelectAll": 1, + "SCI_SELECTALL": 1, + "MoveSelectedLinesUp": 1, + "SCI_MOVESELECTEDLINESUP": 1, + "MoveSelectedLinesDown": 1, + "SCI_MOVESELECTEDLINESDOWN": 1, + "selection.": 1, + "SelectionDuplicate": 1, + "SCI_SELECTIONDUPLICATE": 1, + "Convert": 2, + "lower": 1, + "case.": 2, + "SelectionLowerCase": 1, + "SCI_LOWERCASE": 1, + "upper": 1, + "SelectionUpperCase": 1, + "SCI_UPPERCASE": 1, + "SelectionCut": 1, + "SCI_CUT": 1, + "SelectionCopy": 1, + "SCI_COPY": 1, + "Paste": 2, + "SCI_PASTE": 1, + "Toggle": 1, + "insert/overtype.": 1, + "EditToggleOvertype": 1, + "SCI_EDITTOGGLEOVERTYPE": 1, + "Insert": 2, + "dependent": 1, + "newline.": 1, + "Newline": 1, + "SCI_NEWLINE": 1, + "formfeed.": 1, + "Formfeed": 1, + "SCI_FORMFEED": 1, + "Indent": 1, + "Tab": 1, + "SCI_TAB": 1, + "De": 1, + "indent": 1, + "Backtab": 1, + "SCI_BACKTAB": 1, + "Cancel": 2, + "SCI_CANCEL": 1, + "Undo": 2, + "command.": 5, + "SCI_UNDO": 1, + "Redo": 2, + "SCI_REDO": 1, + "Zoom": 2, + "in.": 1, + "ZoomIn": 1, + "SCI_ZOOMIN": 1, + "out.": 1, + "ZoomOut": 1, + "SCI_ZOOMOUT": 1, + "executed": 1, + "scicmd": 2, + "Execute": 1, + "Binds": 2, + "binding": 3, + "removed.": 2, + "unchanged.": 1, + "Valid": 1, + "Key_Down": 1, + "Key_Up": 1, + "Key_Left": 1, + "Key_Right": 1, + "Key_Home": 1, + "Key_End": 1, + "Key_PageUp": 1, + "Key_PageDown": 1, + "Key_Delete": 1, + "Key_Insert": 1, + "Key_Escape": 1, + "Key_Backspace": 1, + "Key_Tab": 1, + "Key_Return.": 1, + "Keys": 1, + "SHIFT": 1, + "CTRL": 1, + "ALT": 1, + "META.": 1, + "setAlternateKey": 3, + "validKey": 3, + "setKey": 3, + "altkey": 3, + "alternateKey": 3, + "returned.": 4, + "qkey": 2, + "qaltkey": 2, + "valid": 2, + "QsciCommandSet": 1, + "*qs": 1, + "cmd": 1, + "*desc": 1, + "bindKey": 1, + "qk": 1, + "scik": 1, + "*qsCmd": 1, + "scikey": 1, + "scialtkey": 1, + "*descCmd": 1, + "INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "Person_descriptor_": 6, + "GeneratedMessageReflection*": 1, + "Person_reflection_": 4, + "FileDescriptor*": 1, + "DescriptorPool": 3, + "generated_pool": 2, + "FindFileByName": 1, + "GOOGLE_CHECK": 1, + "message_type": 1, + "Person_offsets_": 2, + "GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET": 3, + "GeneratedMessageReflection": 1, + "MessageFactory": 3, + "generated_factory": 1, + "GOOGLE_PROTOBUF_DECLARE_ONCE": 1, + "protobuf_AssignDescriptors_once_": 2, + "protobuf_AssignDescriptorsOnce": 4, + "GoogleOnceInit": 1, + "protobuf_RegisterTypes": 2, + "InternalRegisterGeneratedMessage": 1, + "already_here": 3, + "GOOGLE_PROTOBUF_VERIFY_VERSION": 1, + "InternalAddGeneratedFile": 1, + "InternalRegisterGeneratedFile": 1, + "OnShutdown": 1, + "StaticDescriptorInitializer_protocol_2dbuffer_2eproto": 2, + "static_descriptor_initializer_protocol_2dbuffer_2eproto_": 1, + "GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN": 2, + "GOOGLE_SAFE_CONCURRENT_WRITES_END": 2, + "*default_instance_": 1, + "xffu": 3, + "DO_": 4, + "EXPRESSION": 2, + "tag": 6, + "ReadTag": 1, + "switch": 3, + "WireFormatLite": 9, + "GetTagFieldNumber": 1, + "GetTagWireType": 2, + "WIRETYPE_LENGTH_DELIMITED": 1, + "ReadString": 1, + "WireFormat": 10, + "VerifyUTF8String": 3, + ".data": 3, + ".length": 3, + "PARSE": 1, + "handle_uninterpreted": 2, + "ExpectAtEnd": 1, + "WIRETYPE_END_GROUP": 1, + "SkipField": 1, + "SERIALIZE": 2, + "WriteString": 1, + "SerializeUnknownFields": 1, + "target": 6, + "WriteStringToArray": 1, + "SerializeUnknownFieldsToArray": 1, + "total_size": 5, + "StringSize": 1, + "ComputeUnknownFieldsSize": 1, + "GOOGLE_CHECK_NE": 2, + "dynamic_cast_if_available": 1, + "ReflectionOps": 1, + "Merge": 1, + "from._has_bits_": 1, + "from.has_name": 1, + "from.name": 1, + "from.unknown_fields": 1, + "swap": 3, + "_unknown_fields_.Swap": 1, + "metadata": 2, + "metadata.descriptor": 1, + "metadata.reflection": 1, "PY_SSIZE_T_CLEAN": 1, - "#ifndef": 29, "Py_PYTHON_H": 1, "Python": 1, - "headers": 3, "compile": 1, - "C": 6, "extensions": 1, - "please": 2, - "install": 3, "development": 1, - "version": 38, "Python.": 1, - "#else": 35, "": 1, "offsetof": 2, - "type": 7, "member": 2, - "size_t": 6, - "&": 203, "type*": 1, - "defined": 49, "WIN32": 2, - "&&": 29, "MS_WINDOWS": 2, "__stdcall": 2, "__cdecl": 2, "__fastcall": 2, "DL_IMPORT": 2, - "t": 15, "DL_EXPORT": 2, "PY_LONG_LONG": 5, "LONG_LONG": 1, "PY_VERSION_HEX": 9, - "<": 255, "METH_COEXIST": 1, "PyDict_CheckExact": 1, - "op": 28, "Py_TYPE": 4, "PyDict_Type": 1, "PyDict_Contains": 1, "d": 8, "o": 20, "PySequence_Contains": 1, - "typedef": 50, "Py_ssize_t": 17, "PY_SSIZE_T_MAX": 1, "INT_MAX": 1, @@ -10875,16 +14893,12 @@ "PyVarObject*": 1, "ob_size": 1, "PyVarObject_HEAD_INIT": 1, - "size": 13, "PyObject_HEAD_INIT": 1, "PyType_Modified": 1, - "struct": 13, "*buf": 1, "PyObject": 221, "*obj": 2, - "len": 15, "itemsize": 2, - "readonly": 3, "ndim": 2, "*format": 1, "*shape": 1, @@ -10897,7 +14911,6 @@ "PyBUF_FORMAT": 1, "PyBUF_ND": 2, "PyBUF_STRIDES": 5, - "|": 40, "PyBUF_C_CONTIGUOUS": 3, "PyBUF_F_CONTIGUOUS": 3, "PyBUF_ANY_CONTIGUOUS": 1, @@ -10906,7 +14919,6 @@ "__Pyx_BUILTIN_MODULE_NAME": 2, "Py_TPFLAGS_CHECKTYPES": 1, "Py_TPFLAGS_HAVE_INDEX": 1, - "||": 19, "Py_TPFLAGS_HAVE_NEWBUFFER": 1, "PyBaseString_Type": 1, "PyUnicode_Type": 2, @@ -10954,7 +14966,6 @@ "PySet_CheckExact": 2, "__Pyx_TypeCheck": 1, "PyTypeObject": 2, - "*": 183, "PyIntObject": 1, "PyLongObject": 2, "PyInt_Type": 1, @@ -10981,18 +14992,14 @@ "PyLong_AsUnsignedLongLongMask": 1, "PyBoolObject": 1, "__Pyx_PyNumber_Divide": 2, - "x": 86, - "y": 16, "PyNumber_TrueDivide": 1, "__Pyx_PyNumber_InPlaceDivide": 2, "PyNumber_InPlaceTrueDivide": 1, "PyNumber_Divide": 1, "PyNumber_InPlaceDivide": 1, "__Pyx_PySequence_GetSlice": 2, - "b": 57, "PySequence_GetSlice": 2, "__Pyx_PySequence_SetSlice": 2, - "value": 50, "PySequence_SetSlice": 2, "__Pyx_PySequence_DelSlice": 2, "PySequence_DelSlice": 2, @@ -11006,11 +15013,9 @@ "tp_name": 4, "PyMethod_New": 2, "func": 3, - "self": 5, "klass": 1, "PyInstanceMethod_New": 1, "__Pyx_GetAttrString": 2, - "n": 28, "PyObject_GetAttrString": 3, "__Pyx_SetAttrString": 2, "PyObject_SetAttrString": 2, @@ -11018,9 +15023,7 @@ "PyObject_DelAttrString": 2, "__Pyx_NAMESTR": 3, "__Pyx_DOCSTR": 3, - "__cplusplus": 12, "__PYX_EXTERN_C": 2, - "extern": 72, "_USE_MATH_DEFINES": 1, "": 1, "__PYX_HAVE_API__wrapper_inner": 1, @@ -11029,16 +15032,12 @@ "CYTHON_INLINE": 68, "__GNUC__": 5, "__inline__": 1, - "#elif": 7, - "_MSC_VER": 7, "__inline": 1, "__STDC_VERSION__": 2, "L": 1, - "inline": 39, "CYTHON_UNUSED": 7, "**p": 1, "*s": 1, - "char*": 24, "encoding": 1, "is_unicode": 1, "is_str": 1, @@ -11046,12 +15045,10 @@ "__Pyx_StringTabEntry": 1, "__Pyx_PyBytes_FromUString": 1, "__Pyx_PyBytes_AsUString": 1, - "unsigned": 22, "__Pyx_PyBool_FromLong": 1, "Py_INCREF": 3, "Py_True": 2, "Py_False": 2, - "static": 263, "__Pyx_PyObject_IsTrue": 8, "__Pyx_PyNumber_Int": 1, "__Pyx_PyIndex_AsSsize_t": 1, @@ -11077,11 +15074,8 @@ "": 1, "": 1, "__sun__": 1, - "#undef": 3, "fj": 1, "*__pyx_f": 1, - "[": 293, - "]": 292, "npy_int8": 1, "__pyx_t_5numpy_int8_t": 1, "npy_int16": 1, @@ -11122,7 +15116,6 @@ "complex": 2, "__pyx_t_float_complex": 27, "_Complex": 2, - "real": 4, "imag": 2, "__pyx_t_double_complex": 27, "npy_cfloat": 1, @@ -11143,13 +15136,9 @@ "m": 4, "PyImport_ImportModule": 1, "modname": 1, - "goto": 156, - "p": 6, - "r": 38, "PyLong_AsVoidPtr": 1, "Py_XDECREF": 3, "__Pyx_RefNannySetupContext": 13, - "name": 25, "*__pyx_refnanny": 1, "__Pyx_RefNanny": 6, "SetupContext": 1, @@ -11166,8 +15155,6 @@ "__Pyx_GIVEREF": 10, "GIVEREF": 1, "__Pyx_XDECREF": 26, - "do": 13, - "while": 17, "Py_DECREF": 1, "__Pyx_XGIVEREF": 7, "__Pyx_XGOTREF": 1, @@ -11175,7 +15162,6 @@ "*type": 3, "*__Pyx_GetName": 1, "*dict": 1, - "*name": 6, "__Pyx_ErrRestore": 1, "*value": 2, "*tb": 2, @@ -11211,11 +15197,9 @@ "__pyx_t_float_complex_from_parts": 1, "__Pyx_c_eqf": 2, "__Pyx_c_sumf": 2, - "+": 80, "__Pyx_c_difff": 2, "__Pyx_c_prodf": 2, "__Pyx_c_quotf": 2, - "/": 16, "__Pyx_c_negf": 2, "__Pyx_c_is_zerof": 3, "__Pyx_c_conjf": 3, @@ -11241,7 +15225,6 @@ "cabs": 1, "cpow": 1, "__Pyx_PyInt_AsUnsignedChar": 1, - "short": 5, "__Pyx_PyInt_AsUnsignedShort": 1, "__Pyx_PyInt_AsUnsignedInt": 1, "__Pyx_PyInt_AsChar": 1, @@ -11454,18 +15437,15 @@ "__pyx_v_info": 33, "__pyx_v_self": 16, "PyArray_NDIM": 1, - "sizeof": 15, "__pyx_L5": 6, "PyArray_CHKFLAGS": 2, "NPY_C_CONTIGUOUS": 1, - "else": 58, "__pyx_builtin_ValueError": 5, "__pyx_k_tuple_6": 1, "__pyx_L6": 6, "NPY_F_CONTIGUOUS": 1, "__pyx_k_tuple_8": 1, "__pyx_L7": 2, - "buf": 14, "PyArray_DATA": 1, "strides": 5, "malloc": 2, @@ -11512,7 +15492,6 @@ "__pyx_L2": 2, "__pyx_pf_5numpy_7ndarray_1__releasebuffer__": 2, "PyArray_HASFIELDS": 1, - "free": 4, "*__pyx_f_5numpy_PyArray_MultiIterNew1": 1, "*__pyx_v_a": 5, "PyArray_MultiIterNew": 5, @@ -11539,9 +15518,7 @@ "__pyx_v_fields": 7, "__pyx_v_childname": 4, "__pyx_v_new_offset": 5, - "names": 3, "PyTuple_GET_SIZE": 2, - "break": 35, "PyTuple_GET_ITEM": 3, "PyObject_GetItem": 1, "PyTuple_CheckExact": 1, @@ -11559,826 +15536,45 @@ "__pyx_k_tuple_16": 1, "__pyx_L10": 2, "Py_EQ": 6, - "": 2, - "rpc_init": 1, - "rpc_server_loop": 1, - "ENV_H": 3, - "": 1, - "": 2, - "QObject": 2, - "Q_OBJECT": 1, - "*instance": 1, - "**": 2, - "QVariantMap": 3, - "asVariantMap": 2, - "m_map": 2, - "v8": 9, - "internal": 47, - "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, - "": 3, - "call_completed_callbacks_": 16, - "LazyMutex": 1, - "entropy_mutex": 1, - "LAZY_MUTEX_INITIALIZER": 1, - "EntropySource": 3, - "entropy_source": 4, - "Initialize": 4, - "Deserializer*": 2, - "des": 3, - "FlagList": 1, - "EnforceFlagImplications": 1, - "InitializeOncePerProcess": 4, - "i": 106, - "Isolate": 9, - "CurrentPerIsolateThreadData": 4, - "EnterDefaultIsolate": 1, - "ASSERT": 17, - "thread_id": 1, - ".Equals": 1, - "ThreadId": 1, - "Current": 5, - "isolate": 15, - "IsDead": 2, - "Isolate*": 6, - "IsInitialized": 3, - "Init": 3, - "SetFatalError": 2, - "TearDown": 5, - "IsDefaultIsolate": 1, - "ElementsAccessor": 2, - "LOperand": 2, - "TearDownCaches": 1, - "RegisteredExtension": 1, - "UnregisterAll": 1, - "delete": 6, - "OS": 3, - "seed_random": 2, - "uint32_t*": 7, - "state": 33, - "FLAG_random_seed": 2, - "uint32_t": 39, - "val": 3, - "ScopedLock": 1, - "lock": 5, - "entropy_mutex.Pointer": 1, - "reinterpret_cast": 8, - "": 19, - "random": 1, - "random_base": 3, - "xFFFF": 2, - "<<": 29, - "FFFF": 1, - "SetEntropySource": 2, - "source": 12, - "SetReturnAddressLocationResolver": 3, - "ReturnAddressLocationResolver": 2, - "resolver": 3, - "StackFrame": 1, - "Random": 3, - "Context*": 4, - "context": 8, - "IsGlobalContext": 1, - "ByteArray*": 1, - "seed": 2, - "random_seed": 1, - "": 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, - "Lazy": 1, - "init.": 1, - "length": 10, - "Add": 1, - "RemoveCallCompletedCallback": 2, - "Remove": 1, - "FireCallCompletedCallback": 2, - "HandleScopeImplementer*": 1, - "handle_scope_implementer": 5, - "CallDepthIsZero": 1, - "IncrementCallDepth": 1, - "DecrementCallDepth": 1, - "union": 1, - "double_value": 1, - "uint64_t": 8, - "uint64_t_value": 1, - "double_int_union": 2, - "Object*": 4, - "FillHeapNumberWithRandom": 2, - "heap_number": 4, - "random_bits": 2, - "binary_million": 3, - "r.double_value": 3, - "r.uint64_t_value": 1, - "HeapNumber": 1, - "cast": 7, - "set_value": 1, - "InitializeOncePerProcessImpl": 3, - "SetUp": 4, - "FLAG_crankshaft": 1, - "Serializer": 1, - "enabled": 4, - "CPU": 5, - "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, - "": 2, + "UTILS_H": 3, + "": 1, + "": 1, + "": 1, + "QTemporaryFile": 1, + "showUsage": 1, + "QtMsgType": 1, + "dump_path": 1, + "minidump_id": 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, + "shouldn": 1, + "instantiated": 1, + "QTemporaryFile*": 2, + "m_tempHarness": 1, + "We": 1, + "ourselves": 1, + "m_tempWrapper": 1, "smallPrime_t": 1, - "BITCOIN_KEY_H": 2, - "": 1, - "": 1, - "EC_KEY": 3, - "definition": 3, - "key_error": 6, - "runtime_error": 2, - "explicit": 5, - "str": 2, - "CKeyID": 5, - "uint160": 8, - "CScriptID": 3, - "CPubKey": 11, - "vchPubKey": 6, - "friend": 10, - "CKey": 26, - "vchPubKeyIn": 2, - "operator": 10, - "a.vchPubKey": 3, - "b.vchPubKey": 3, - "IMPLEMENT_SERIALIZE": 1, - "READWRITE": 1, - "GetID": 1, - "Hash160": 1, - "uint256": 10, - "GetHash": 1, - "Hash": 1, - "vchPubKey.begin": 1, - "vchPubKey.end": 1, - "IsValid": 4, - "vchPubKey.size": 3, - "IsCompressed": 2, - "Raw": 1, - "secure_allocator": 2, - "CPrivKey": 3, - "CSecret": 4, - "protected": 4, - "EC_KEY*": 1, - "pkey": 14, - "fSet": 7, - "fCompressedPubKey": 5, - "SetCompressedPubKey": 4, - "Reset": 5, - "IsNull": 1, - "MakeNewKey": 1, - "fCompressed": 3, - "SetPrivKey": 1, - "vchPrivKey": 1, - "SetSecret": 1, - "vchSecret": 1, - "GetSecret": 2, - "GetPrivKey": 1, - "SetPubKey": 1, - "GetPubKey": 5, - "Sign": 2, - "hash": 20, - "vchSig": 18, - "SignCompact": 2, - "SetCompactSignature": 2, - "Verify": 2, - "VerifyCompact": 2, - "BOOST_ASIO_DETAIL_IMPL_EPOLL_REACTOR_IPP": 3, - "": 1, - "BOOST_ASIO_HAS_EPOLL": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "BOOST_ASIO_HAS_TIMERFD": 19, - "": 1, - "boost": 18, - "asio": 14, - "detail": 5, - "epoll_reactor": 40, - "io_service": 6, - "service_base": 1, - "": 1, - "io_service_": 1, - "use_service": 1, - "": 1, - "mutex_": 13, - "interrupter_": 5, - "epoll_fd_": 20, - "do_epoll_create": 3, - "timer_fd_": 21, - "do_timerfd_create": 3, - "shutdown_": 10, - "epoll_event": 10, - "ev": 21, - "ev.events": 13, - "EPOLLIN": 8, - "EPOLLERR": 8, - "EPOLLET": 5, - "ev.data.ptr": 10, - "epoll_ctl": 12, - "EPOLL_CTL_ADD": 7, - "interrupter_.read_descriptor": 3, - "interrupter_.interrupt": 2, - "shutdown_service": 1, - "mutex": 16, - "scoped_lock": 16, - "lock.unlock": 1, - "op_queue": 6, - "": 6, - "ops": 10, - "descriptor_state*": 6, - "registered_descriptors_.first": 2, - "max_ops": 6, - "ops.push": 5, - "op_queue_": 12, - "registered_descriptors_.free": 2, - "timer_queues_.get_all_timers": 1, - "io_service_.abandon_operations": 1, - "fork_service": 1, - "fork_event": 1, - "fork_ev": 2, - "fork_child": 1, - "interrupter_.recreate": 1, - "update_timeout": 2, - "descriptors_lock": 3, - "registered_descriptors_mutex_": 3, - "next_": 3, - "registered_events_": 8, - "result": 8, - "descriptor_": 5, - "system": 13, - "error_code": 4, - "ec": 6, - "errno": 10, - "error": 8, - "get_system_category": 3, - "throw_error": 2, - "init_task": 1, - "io_service_.init_task": 1, - "register_descriptor": 1, - "socket_type": 7, - "descriptor": 15, - "per_descriptor_data": 8, - "descriptor_data": 60, - "allocate_descriptor_state": 3, - "descriptor_lock": 7, - "reactor_": 7, - "EPOLLHUP": 3, - "EPOLLPRI": 3, - "register_internal_descriptor": 1, - "op_type": 8, - "reactor_op*": 5, - ".push": 2, - "move_descriptor": 1, - "target_descriptor_data": 2, - "source_descriptor_data": 3, - "start_op": 1, - "is_continuation": 5, - "allow_speculative": 2, - "ec_": 4, - "bad_descriptor": 1, - "post_immediate_completion": 2, - ".empty": 5, - "read_op": 1, - "except_op": 1, - "perform": 2, - "descriptor_lock.unlock": 4, - "io_service_.post_immediate_completion": 2, - "write_op": 2, - "EPOLLOUT": 4, - "EPOLL_CTL_MOD": 3, - "io_service_.work_started": 2, - "cancel_ops": 1, - ".front": 3, - "operation_aborted": 2, - ".pop": 3, - "io_service_.post_deferred_completions": 3, - "deregister_descriptor": 1, - "closing": 3, - "EPOLL_CTL_DEL": 2, - "free_descriptor_state": 3, - "deregister_internal_descriptor": 1, - "run": 2, - "block": 7, - "timeout": 5, - "get_timeout": 5, - "events": 8, - "num_events": 2, - "epoll_wait": 1, - "check_timers": 6, - "void*": 2, - "ptr": 6, - ".data.ptr": 1, - "static_cast": 14, - "": 2, - "set_ready_events": 1, - ".events": 1, - "common_lock": 1, - "timer_queues_.get_ready_timers": 1, - "itimerspec": 5, - "new_timeout": 6, - "old_timeout": 4, - "flags": 4, - "timerfd_settime": 2, - "interrupt": 3, - "EPOLL_CLOEXEC": 4, - "fd": 15, - "epoll_create1": 1, - "EINVAL": 4, - "ENOSYS": 1, - "epoll_create": 1, - "epoll_size": 1, - "fcntl": 2, - "F_SETFD": 2, - "FD_CLOEXEC": 2, - "timerfd_create": 2, - "CLOCK_MONOTONIC": 3, - "TFD_CLOEXEC": 1, - "registered_descriptors_.alloc": 1, - "do_add_timer_queue": 1, - "timer_queue_base": 2, - "queue": 4, - "timer_queues_.insert": 1, - "do_remove_timer_queue": 1, - "timer_queues_.erase": 1, - "timer_queues_.wait_duration_msec": 1, - "ts": 1, - "ts.it_interval.tv_sec": 1, - "ts.it_interval.tv_nsec": 1, - "usec": 5, - "timer_queues_.wait_duration_usec": 1, - "ts.it_value.tv_sec": 1, - "ts.it_value.tv_nsec": 1, - "%": 7, - "TFD_TIMER_ABSTIME": 1, - "perform_io_cleanup_on_block_exit": 4, - "epoll_reactor*": 2, - "first_op_": 3, - "ops_.empty": 1, - "ops_": 2, - "operation*": 4, - "descriptor_state": 5, - "operation": 2, - "do_complete": 2, - "perform_io": 2, - "mutex_.lock": 1, - "io_cleanup": 1, - "adopt_lock": 1, - "flag": 3, - "j": 10, - "io_cleanup.ops_.push": 1, - "io_cleanup.first_op_": 2, - "io_cleanup.ops_.front": 1, - "io_cleanup.ops_.pop": 1, - "io_service_impl*": 1, - "owner": 3, - "base": 8, - "bytes_transferred": 2, - "": 1, - "complete": 3, - "": 1, - "V8_V8_H_": 3, - "GOOGLE3": 2, - "DEBUG": 5, - "NDEBUG": 4, - "both": 1, - "set": 18, - "Deserializer": 1, - "AllStatic": 1, - "IsRunning": 1, - "UseCrankshaft": 1, - "FatalProcessOutOfMemory": 1, - "location": 6, - "take_snapshot": 1, - "enum": 17, - "NilValue": 1, - "kNullValue": 1, - "kUndefinedValue": 1, - "EqualityKind": 1, - "kStrictEquality": 1, - "kNonStrictEquality": 1, - "QSCICOMMAND_H": 2, - "__APPLE__": 4, - "": 1, - "": 2, - "": 1, - "QsciScintilla": 7, - "brief": 12, - "The": 50, - "QsciCommand": 7, - "represents": 1, - "editor": 1, - "command": 9, - "that": 36, - "may": 9, - "have": 4, - "one": 73, - "or": 44, - "two": 2, - "keys": 3, - "bound": 4, - "it.": 3, - "Methods": 1, - "provided": 1, - "change": 3, - "remove": 2, - "key": 23, - "binding.": 1, - "Each": 1, - "has": 29, - "user": 3, - "friendly": 2, - "description": 3, - "use": 37, - "mapping": 3, - "dialogs.": 1, - "QSCINTILLA_EXPORT": 2, - "This": 19, - "defines": 3, - "different": 5, - "commands": 1, - "assigned": 1, - "key.": 1, - "Command": 4, - "Move": 26, - "down": 12, - "line.": 33, - "LineDown": 1, - "QsciScintillaBase": 100, - "SCI_LINEDOWN": 1, - "Extend": 33, - "selection": 39, - "LineDownExtend": 1, - "SCI_LINEDOWNEXTEND": 1, - "rectangular": 9, - "LineDownRectExtend": 1, - "SCI_LINEDOWNRECTEXTEND": 1, - "Scroll": 5, - "view": 2, - "LineScrollDown": 1, - "SCI_LINESCROLLDOWN": 1, - "up": 18, - "LineUp": 1, - "SCI_LINEUP": 1, - "LineUpExtend": 1, - "SCI_LINEUPEXTEND": 1, - "LineUpRectExtend": 1, - "SCI_LINEUPRECTEXTEND": 1, - "LineScrollUp": 1, - "SCI_LINESCROLLUP": 1, - "start": 12, - "document.": 8, - "ScrollToStart": 1, - "SCI_SCROLLTOSTART": 1, - "ScrollToEnd": 1, - "SCI_SCROLLTOEND": 1, - "vertically": 1, - "centre": 1, - "VerticalCentreCaret": 1, - "SCI_VERTICALCENTRECARET": 1, - "paragraph.": 4, - "ParaDown": 1, - "SCI_PARADOWN": 1, - "ParaDownExtend": 1, - "SCI_PARADOWNEXTEND": 1, - "ParaUp": 1, - "SCI_PARAUP": 1, - "ParaUpExtend": 1, - "SCI_PARAUPEXTEND": 1, - "left": 7, - "character.": 9, - "CharLeft": 1, - "SCI_CHARLEFT": 1, - "CharLeftExtend": 1, - "SCI_CHARLEFTEXTEND": 1, - "CharLeftRectExtend": 1, - "SCI_CHARLEFTRECTEXTEND": 1, - "right": 9, - "CharRight": 1, - "SCI_CHARRIGHT": 1, - "CharRightExtend": 1, - "SCI_CHARRIGHTEXTEND": 1, - "CharRightRectExtend": 1, - "SCI_CHARRIGHTRECTEXTEND": 1, - "word.": 9, - "WordLeft": 1, - "SCI_WORDLEFT": 1, - "WordLeftExtend": 1, - "SCI_WORDLEFTEXTEND": 1, - "WordRight": 1, - "SCI_WORDRIGHT": 1, - "WordRightExtend": 1, - "SCI_WORDRIGHTEXTEND": 1, - "previous": 6, - "WordLeftEnd": 1, - "SCI_WORDLEFTEND": 1, - "WordLeftEndExtend": 1, - "SCI_WORDLEFTENDEXTEND": 1, - "WordRightEnd": 1, - "SCI_WORDRIGHTEND": 1, - "WordRightEndExtend": 1, - "SCI_WORDRIGHTENDEXTEND": 1, - "word": 7, - "part.": 4, - "WordPartLeft": 1, - "SCI_WORDPARTLEFT": 1, - "WordPartLeftExtend": 1, - "SCI_WORDPARTLEFTEXTEND": 1, - "WordPartRight": 1, - "SCI_WORDPARTRIGHT": 1, - "WordPartRightExtend": 1, - "SCI_WORDPARTRIGHTEXTEND": 1, - "document": 16, - "Home": 1, - "SCI_HOME": 1, - "HomeExtend": 1, - "SCI_HOMEEXTEND": 1, - "HomeRectExtend": 1, - "SCI_HOMERECTEXTEND": 1, - "displayed": 10, - "HomeDisplay": 1, - "SCI_HOMEDISPLAY": 1, - "HomeDisplayExtend": 1, - "SCI_HOMEDISPLAYEXTEND": 1, - "HomeWrap": 1, - "SCI_HOMEWRAP": 1, - "HomeWrapExtend": 1, - "SCI_HOMEWRAPEXTEND": 1, - "visible": 6, - "VCHome": 1, - "SCI_VCHOME": 1, - "VCHomeExtend": 1, - "SCI_VCHOMEEXTEND": 1, - "VCHomeRectExtend": 1, - "SCI_VCHOMERECTEXTEND": 1, - "VCHomeWrap": 1, - "SCI_VCHOMEWRAP": 1, - "VCHomeWrapExtend": 1, - "SCI_VCHOMEWRAPEXTEND": 1, - "LineEnd": 1, - "SCI_LINEEND": 1, - "LineEndExtend": 1, - "SCI_LINEENDEXTEND": 1, - "LineEndRectExtend": 1, - "SCI_LINEENDRECTEXTEND": 1, - "LineEndDisplay": 1, - "SCI_LINEENDDISPLAY": 1, - "LineEndDisplayExtend": 1, - "SCI_LINEENDDISPLAYEXTEND": 1, - "LineEndWrap": 1, - "SCI_LINEENDWRAP": 1, - "LineEndWrapExtend": 1, - "SCI_LINEENDWRAPEXTEND": 1, - "DocumentStart": 1, - "SCI_DOCUMENTSTART": 1, - "DocumentStartExtend": 1, - "SCI_DOCUMENTSTARTEXTEND": 1, - "DocumentEnd": 1, - "SCI_DOCUMENTEND": 1, - "DocumentEndExtend": 1, - "SCI_DOCUMENTENDEXTEND": 1, - "page.": 13, - "PageUp": 1, - "SCI_PAGEUP": 1, - "PageUpExtend": 1, - "SCI_PAGEUPEXTEND": 1, - "PageUpRectExtend": 1, - "SCI_PAGEUPRECTEXTEND": 1, - "PageDown": 1, - "SCI_PAGEDOWN": 1, - "PageDownExtend": 1, - "SCI_PAGEDOWNEXTEND": 1, - "PageDownRectExtend": 1, - "SCI_PAGEDOWNRECTEXTEND": 1, - "Stuttered": 4, - "move": 2, - "StutteredPageUp": 1, - "SCI_STUTTEREDPAGEUP": 1, - "extend": 2, - "StutteredPageUpExtend": 1, - "SCI_STUTTEREDPAGEUPEXTEND": 1, - "StutteredPageDown": 1, - "SCI_STUTTEREDPAGEDOWN": 1, - "StutteredPageDownExtend": 1, - "SCI_STUTTEREDPAGEDOWNEXTEND": 1, - "Delete": 10, - "SCI_CLEAR": 1, - "DeleteBack": 1, - "SCI_DELETEBACK": 1, - "not": 29, - "DeleteBackNotLine": 1, - "SCI_DELETEBACKNOTLINE": 1, - "left.": 2, - "DeleteWordLeft": 1, - "SCI_DELWORDLEFT": 1, - "right.": 2, - "DeleteWordRight": 1, - "SCI_DELWORDRIGHT": 1, - "DeleteWordRightEnd": 1, - "SCI_DELWORDRIGHTEND": 1, - "DeleteLineLeft": 1, - "SCI_DELLINELEFT": 1, - "DeleteLineRight": 1, - "SCI_DELLINERIGHT": 1, - "LineDelete": 1, - "SCI_LINEDELETE": 1, - "Cut": 2, - "clipboard.": 5, - "LineCut": 1, - "SCI_LINECUT": 1, - "Copy": 2, - "LineCopy": 1, - "SCI_LINECOPY": 1, - "Transpose": 1, - "lines.": 1, - "LineTranspose": 1, - "SCI_LINETRANSPOSE": 1, - "Duplicate": 2, - "LineDuplicate": 1, - "SCI_LINEDUPLICATE": 1, - "Select": 49, - "whole": 2, - "SelectAll": 1, - "SCI_SELECTALL": 1, - "selected": 13, - "lines": 3, - "MoveSelectedLinesUp": 1, - "SCI_MOVESELECTEDLINESUP": 1, - "MoveSelectedLinesDown": 1, - "SCI_MOVESELECTEDLINESDOWN": 1, - "selection.": 1, - "SelectionDuplicate": 1, - "SCI_SELECTIONDUPLICATE": 1, - "Convert": 2, - "lower": 1, - "case.": 2, - "SelectionLowerCase": 1, - "SCI_LOWERCASE": 1, - "upper": 1, - "SelectionUpperCase": 1, - "SCI_UPPERCASE": 1, - "SelectionCut": 1, - "SCI_CUT": 1, - "SelectionCopy": 1, - "SCI_COPY": 1, - "Paste": 2, - "from": 91, - "SCI_PASTE": 1, - "Toggle": 1, - "insert/overtype.": 1, - "EditToggleOvertype": 1, - "SCI_EDITTOGGLEOVERTYPE": 1, - "Insert": 2, - "platform": 2, - "dependent": 1, - "newline.": 1, - "Newline": 1, - "SCI_NEWLINE": 1, - "formfeed.": 1, - "Formfeed": 1, - "SCI_FORMFEED": 1, - "Indent": 1, - "level.": 3, - "Tab": 1, - "SCI_TAB": 1, - "De": 1, - "indent": 1, - "Backtab": 1, - "SCI_BACKTAB": 1, - "Cancel": 2, - "any": 23, - "operation.": 2, - "SCI_CANCEL": 1, - "Undo": 2, - "last": 6, - "command.": 5, - "SCI_UNDO": 1, - "Redo": 2, - "SCI_REDO": 1, - "Zoom": 2, - "in.": 1, - "ZoomIn": 1, - "SCI_ZOOMIN": 1, - "out.": 1, - "ZoomOut": 1, - "SCI_ZOOMOUT": 1, - "Return": 3, - "will": 15, - "executed": 1, - "instance.": 2, - "scicmd": 2, - "Execute": 1, - "execute": 3, - "Binds": 2, - "then": 15, - "binding": 3, - "removed.": 2, - "invalid": 5, - "unchanged.": 1, - "Valid": 1, - "control": 17, - "c": 72, - "Key_Down": 1, - "Key_Up": 1, - "Key_Left": 1, - "Key_Right": 1, - "Key_Home": 1, - "Key_End": 1, - "Key_PageUp": 1, - "Key_PageDown": 1, - "Key_Delete": 1, - "Key_Insert": 1, - "Key_Escape": 1, - "Key_Backspace": 1, - "Key_Tab": 1, - "Key_Return.": 1, - "Keys": 1, - "modified": 3, - "combination": 2, - "SHIFT": 1, - "CTRL": 1, - "ALT": 1, - "META.": 1, - "sa": 30, - "setAlternateKey": 3, - "validKey": 3, - "setKey": 3, - "alternate": 7, - "altkey": 3, - "alternateKey": 3, - "currently": 12, - "returned.": 4, - "qkey": 2, - "qaltkey": 2, - "valid": 2, - "QString": 20, - "QsciCommandSet": 1, - "*qs": 1, - "cmd": 1, - "*desc": 1, - "bindKey": 1, - "qk": 1, - "scik": 1, - "*qsCmd": 1, - "scikey": 1, - "scialtkey": 1, - "*descCmd": 1, - "Scanner": 16, - "UnicodeCache*": 4, - "unicode_cache": 3, - "unicode_cache_": 10, - "octal_pos_": 5, - "Location": 14, - "harmony_scoping_": 4, - "harmony_modules_": 4, - "Utf16CharacterStream*": 3, - "source_": 7, - "has_line_terminator_before_next_": 9, - "SkipWhiteSpace": 4, - "Scan": 5, - "uc32": 19, - "ScanHexNumber": 2, - "expected_length": 4, - "prevent": 4, "overflow": 1, - "digits": 6, - "c0_": 64, - "HexValue": 2, - "PushBack": 8, - "Advance": 44, - "STATIC_ASSERT": 5, - "Token": 212, "NUM_TOKENS": 1, - "byte": 6, "one_char_tokens": 2, "ILLEGAL": 120, "LPAREN": 2, @@ -12387,43 +15583,21 @@ "COLON": 2, "SEMICOLON": 2, "CONDITIONAL": 2, - "f": 104, "LBRACK": 2, "RBRACK": 2, "LBRACE": 2, "RBRACE": 2, "BIT_NOT": 2, - "e": 15, - "Value": 24, - "Next": 3, - "current_": 2, - "has_multiline_comment_before_next_": 5, - "token": 64, "": 1, - "pos": 12, - "source_pos": 10, - "next_.token": 3, "next_.location.beg_pos": 3, "next_.location.end_pos": 4, - "current_.token": 4, "IsByteOrderMark": 2, "xFEFF": 1, "xFFFE": 1, "start_position": 2, - "IsWhiteSpace": 2, - "IsLineTerminator": 6, - "SkipSingleLineComment": 6, - "continue": 2, "undo": 4, "WHITESPACE": 6, - "SkipMultiLineComment": 3, - "ch": 5, - "ScanHtmlComment": 3, "LT": 2, - "next_.literal_chars": 13, - "switch": 3, - "case": 34, - "ScanString": 3, "LTE": 1, "ASSIGN_SHL": 1, "SHL": 1, @@ -12459,31 +15633,19 @@ "ASSIGN_BIT_XOR": 1, "BIT_XOR": 1, "IsDecimalDigit": 2, - "ScanNumber": 3, "PERIOD": 1, - "IsIdentifierStart": 2, - "ScanIdentifierOrKeyword": 2, "EOS": 1, - "SeekForward": 4, "current_pos": 4, "ASSERT_EQ": 1, - "ScanEscape": 2, "IsCarriageReturn": 2, "IsLineFeed": 2, "fall": 2, - "u": 9, - "v": 10, - "xx": 2, "xxx": 1, "immediately": 1, - "because": 2, "octal": 1, "escape": 1, "quote": 3, "consume": 2, - "LiteralScope": 4, - "literal": 2, - ".": 16, "X": 2, "E": 3, "l": 1, @@ -12491,2325 +15653,40 @@ "keyword": 1, "Unescaped": 1, "in_character_class": 2, - "AddLiteralCharAdvance": 3, - "literal.Complete": 2, - "ScanLiteralUnicodeEscape": 3, - "Field": 2, - "Free": 1, - "Black": 1, - "White": 1, - "Illegal": 1, - "Player": 1, - "///": 843, - "mainpage": 1, - "library": 14, - "Broadcom": 3, - "BCM": 14, - "used": 17, - "Raspberry": 6, - "Pi": 5, - "RPi": 17, - "It": 7, - "provides": 3, - "access": 17, - "GPIO": 87, - "other": 17, - "IO": 2, - "functions": 19, - "chip": 9, - "allowing": 3, - "pins": 40, - "pin": 90, - "IDE": 4, - "plug": 3, - "board": 2, - "so": 2, - "you": 29, - "interface": 9, - "various": 4, - "external": 3, - "devices.": 1, - "reading": 3, - "digital": 2, - "inputs": 2, - "setting": 2, - "outputs": 1, - "SPI": 44, - "I2C": 29, - "accessing": 2, - "timers.": 1, - "Pin": 65, - "event": 3, - "detection": 2, - "supported": 3, - "polling": 1, - "interrupts": 1, - "compatible": 1, - "installs": 1, - "non": 2, - "shared": 2, - "Linux": 2, - "based": 4, - "distro": 1, - "clearly": 1, - "no": 7, - "except": 2, - "another": 1, - "package": 1, - "documentation": 3, - "refers": 1, - "downloaded": 1, - "http": 11, - "//www.airspayce.com/mikem/bcm2835/bcm2835": 1, - "tar.gz": 1, - "You": 9, - "find": 2, - "latest": 2, - "//www.airspayce.com/mikem/bcm2835": 1, - "Several": 1, - "example": 3, - "programs": 4, - "provided.": 1, - "Based": 1, - "//elinux.org/RPi_Low": 1, - "level_peripherals": 1, - "//www.raspberrypi.org/wp": 1, - "content/uploads/2012/02/BCM2835": 1, - "ARM": 5, - "Peripherals.pdf": 1, - "//www.scribd.com/doc/101830961/GPIO": 2, - "Pads": 3, - "Control2": 2, - "also": 3, - "online": 1, - "help": 1, - "discussion": 1, - "//groups.google.com/group/bcm2835": 1, - "group": 23, - "questions": 1, - "discussions": 1, - "topic.": 1, - "Do": 1, - "contact": 1, - "author": 3, - "directly": 2, - "unless": 1, - "it": 19, - "discuss": 1, - "commercial": 1, - "licensing.": 1, - "Tested": 1, - "debian6": 1, - "wheezy": 3, - "raspbian": 3, - "Occidentalisv01": 2, - "CAUTION": 1, - "been": 14, - "observed": 1, - "when": 22, - "detect": 3, - "enables": 3, - "such": 4, - "bcm2835_gpio_len": 5, - "pulled": 1, - "LOW": 8, - "cause": 1, - "temporary": 1, - "hangs": 1, - "Occidentalisv01.": 1, - "Reason": 1, - "yet": 1, - "determined": 1, - "suspect": 1, - "handler": 1, - "hitting": 1, - "hard": 1, - "loop": 2, - "those": 3, - "OSs.": 1, - "must": 6, - "friends": 2, - "make": 6, - "disable": 2, - "bcm2835_gpio_cler_len": 1, - "after": 18, - "use.": 1, - "par": 9, - "Installation": 1, - "consists": 1, - "single": 2, - "installed": 1, - "usual": 3, - "places": 1, - "code": 12, - "#": 1, - "download": 2, - "say": 1, - "bcm2835": 7, - "xx.tar.gz": 2, - "tar": 1, - "zxvf": 1, - "cd": 1, - "./configure": 1, - "sudo": 2, - "check": 4, - "endcode": 2, - "Physical": 21, - "Addresses": 6, - "bcm2835_peri_read": 3, - "bcm2835_peri_write": 3, - "bcm2835_peri_set_bits": 2, - "low": 5, - "level": 10, - "peripheral": 14, - "register": 17, - "functions.": 4, - "They": 1, - "designed": 3, - "physical": 4, - "addresses": 4, - "described": 1, - "section": 6, - "BCM2835": 2, - "Peripherals": 1, - "manual.": 1, - "range": 3, - "FFFFFF": 1, - "peripherals.": 1, - "bus": 4, - "peripherals": 2, - "map": 3, - "onto": 1, - "address": 13, - "starting": 1, - "E000000.": 1, - "Thus": 1, - "advertised": 1, - "manual": 8, - "Ennnnnn": 1, - "available": 6, - "nnnnnn.": 1, - "registers": 12, - "following": 2, - "externals": 1, - "bcm2835_gpio": 2, - "bcm2835_pwm": 2, - "bcm2835_clk": 2, - "bcm2835_pads": 2, - "bcm2835_spio0": 1, - "bcm2835_st": 1, - "bcm2835_bsc0": 1, - "bcm2835_bsc1": 1, - "Numbering": 1, - "numbering": 1, - "inconsistent": 1, - "underlying": 4, - "numbering.": 1, - "//elinux.org/RPi_BCM2835_GPIOs": 1, - "some": 4, - "well": 1, - "power": 1, - "ground": 1, - "pins.": 1, - "Not": 4, - "header.": 1, - "Version": 40, - "P5": 6, - "connector": 1, - "V": 2, - "Gnd.": 1, - "passed": 4, - "_not_": 1, - "number.": 1, - "There": 1, - "symbolic": 1, - "definitions": 3, - "each": 7, - "convenience.": 1, - "See": 7, - "ref": 32, - "RPiGPIOPin.": 22, - "Pins": 2, - "bcm2835_spi_*": 1, - "allow": 5, - "SPI0": 17, - "send": 3, - "received": 3, - "Serial": 3, - "Peripheral": 6, - "Interface": 2, - "For": 6, - "more": 4, - "information": 3, - "about": 6, - "see": 14, - "//en.wikipedia.org/wiki/Serial_Peripheral_Interface_Bus": 1, - "When": 12, - "bcm2835_spi_begin": 3, - "called": 13, - "changes": 2, - "bahaviour": 1, - "their": 6, - "behaviour": 1, - "order": 14, - "support": 4, - "SPI.": 1, - "While": 1, - "able": 2, - "bcm2835_spi_gpio_write": 1, - "bcm2835_spi_end": 4, - "revert": 1, - "configured": 1, - "controled": 1, - "bcm2835_gpio_*": 1, - "calls.": 1, - "P1": 56, - "MOSI": 8, - "MISO": 6, - "CLK": 6, - "CE0": 5, - "CE1": 6, - "bcm2835_i2c_*": 2, - "BSC": 10, - "generically": 1, - "referred": 1, - "I": 4, - "//en.wikipedia.org/wiki/I": 1, - "C2": 1, - "B2C": 1, - "V2": 2, - "SDA": 3, - "SLC": 1, - "Real": 1, - "Time": 1, - "performance": 2, - "constraints": 2, - "i.e.": 1, - "they": 2, - "Such": 1, - "part": 1, - "kernel": 4, - "usually": 2, - "subject": 1, - "paging": 1, - "swapping": 2, - "does": 4, - "things": 1, - "besides": 1, - "running": 1, - "your": 12, - "program.": 1, - "means": 8, - "expect": 2, - "get": 5, - "time": 10, - "timing": 3, - "programs.": 1, - "In": 2, - "particular": 1, - "there": 4, - "guarantee": 1, - "bcm2835_delay": 5, - "bcm2835_delayMicroseconds": 6, - "exactly": 2, - "requested.": 1, - "fact": 2, - "depending": 1, - "activity": 1, - "host": 1, - "etc": 1, - "might": 1, - "significantly": 1, - "longer": 1, - "delay": 9, - "times": 2, - "than": 6, - "asked": 1, - "for.": 1, - "So": 1, - "dont": 1, - "request.": 1, - "Arjan": 2, - "reports": 1, - "fragment": 2, - "sched_param": 1, - "sp": 4, - "memset": 3, - "sp.sched_priority": 1, - "sched_get_priority_max": 1, - "SCHED_FIFO": 2, - "sched_setscheduler": 1, - "mlockall": 1, - "MCL_CURRENT": 1, - "MCL_FUTURE": 1, - "Open": 2, - "Source": 2, - "Licensing": 2, - "GPL": 2, - "appropriate": 7, - "option": 1, - "want": 5, - "share": 2, - "application": 2, - "everyone": 1, - "distribute": 1, - "give": 2, - "them": 1, - "who": 1, - "uses": 4, - "wish": 2, - "software": 1, - "under": 2, - "contribute": 1, - "community": 1, - "accordance": 1, - "distributed.": 1, - "//www.gnu.org/copyleft/gpl.html": 1, - "COPYING": 1, - "Acknowledgements": 1, - "Some": 1, - "inspired": 2, - "Dom": 1, - "Gert.": 1, - "Alan": 1, - "Barr.": 1, - "Revision": 1, - "History": 1, - "Initial": 1, - "release": 1, - "Minor": 1, - "bug": 1, - "fixes": 1, - "Added": 11, - "bcm2835_spi_transfern": 3, - "Fixed": 4, - "problem": 2, - "prevented": 1, - "used.": 2, - "Reported": 5, - "David": 1, - "Robinson.": 1, - "bcm2835_close": 4, - "deinit": 1, - "library.": 3, - "Suggested": 1, - "sar": 1, - "Ortiz": 1, - "Document": 1, - "testing": 2, - "Functions": 1, - "bcm2835_gpio_ren": 3, - "bcm2835_gpio_fen": 3, - "bcm2835_gpio_hen": 3, - "bcm2835_gpio_aren": 3, - "bcm2835_gpio_afen": 3, - "now": 4, - "specified.": 1, - "Other": 1, - "were": 1, - "already": 1, - "previously": 10, - "stay": 1, - "enabled.": 1, - "bcm2835_gpio_clr_ren": 2, - "bcm2835_gpio_clr_fen": 2, - "bcm2835_gpio_clr_hen": 2, - "bcm2835_gpio_clr_len": 2, - "bcm2835_gpio_clr_aren": 2, - "bcm2835_gpio_clr_afen": 2, - "clear": 3, - "enable": 3, - "individual": 1, - "suggested": 3, - "Andreas": 1, - "Sundstrom.": 1, - "bcm2835_spi_transfernb": 2, - "buffers": 3, - "read": 21, - "write.": 1, - "Improvements": 3, - "barrier": 3, - "maddin.": 1, - "contributed": 1, - "mikew": 1, - "noticed": 1, - "mallocing": 1, - "memory": 14, - "mmaps": 1, - "/dev/mem.": 1, - "ve": 4, - "removed": 1, - "mallocs": 1, - "frees": 1, - "found": 1, - "calling": 9, - "nanosleep": 7, - "takes": 1, - "least": 2, - "us.": 1, - "need": 6, - "link": 3, - "version.": 1, - "doc": 1, - "Also": 1, - "added": 2, - "define": 2, - "passwrd": 1, - "Gert": 1, - "says": 1, - "pad": 4, - "settings.": 1, - "Changed": 1, - "collisions": 1, - "wiringPi.": 1, - "Macros": 2, - "delayMicroseconds": 3, - "disabled": 2, - "defining": 1, - "BCM2835_NO_DELAY_COMPATIBILITY": 2, - "incorrect": 2, - "New": 6, - "Hardware": 1, - "pointers": 2, - "initialisation": 2, - "externally": 1, - "bcm2835_spi0.": 1, - "Now": 4, - "compiles": 1, - "even": 2, - "CLOCK_MONOTONIC_RAW": 1, - "instead.": 1, - "errors": 1, - "divider": 15, - "frequencies": 2, - "MHz": 14, - "clock.": 6, - "Ben": 1, - "Simpson.": 1, - "examples": 1, - "Mark": 5, - "Wolfe.": 1, - "bcm2835_gpio_set_multi": 2, - "bcm2835_gpio_clr_multi": 2, - "bcm2835_gpio_write_multi": 4, - "mask": 20, - "once.": 1, - "Requested": 2, - "Sebastian": 2, - "Loncar.": 2, - "bcm2835_gpio_write_mask.": 1, - "Changes": 1, - "timer": 2, - "counter": 1, - "instead": 4, - "clock_gettime": 1, - "improved": 1, - "accuracy.": 1, - "No": 2, - "lrt": 1, - "now.": 1, - "Contributed": 1, - "van": 1, - "Vught.": 1, - "Removed": 1, - "inlines": 1, - "patch": 1, - "since": 3, - "don": 1, - "seem": 1, - "work": 1, - "everywhere.": 1, - "olly.": 1, - "Patch": 2, - "Dootson": 2, - "/dev/mem": 4, - "granted.": 1, - "susceptible": 1, - "bit": 19, - "overruns.": 1, - "courtesy": 1, - "Jeremy": 1, - "Mortis.": 1, - "BCM2835_GPFEN0": 2, - "broke": 1, - "ability": 1, - "falling": 4, - "edge": 8, - "events.": 1, - "Dootson.": 2, - "bcm2835_i2c_set_baudrate": 2, - "bcm2835_i2c_read_register_rs.": 1, - "bcm2835_i2c_read": 4, - "bcm2835_i2c_write": 4, - "fix": 1, - "ocasional": 1, - "reads": 2, - "completing.": 1, - "Patched": 1, - "atched": 1, - "his": 1, - "submitted": 1, - "high": 5, - "load": 1, - "processes.": 1, - "Updated": 1, - "distribution": 1, - "details": 1, - "airspayce.com": 1, - "missing": 1, - "unmapmem": 1, - "pads": 7, - "leak.": 1, - "Hartmut": 1, - "Henkel.": 1, - "Mike": 1, - "McCauley": 1, - "mikem@airspayce.com": 1, - "DO": 1, - "CONTACT": 1, - "THE": 2, - "AUTHOR": 1, - "DIRECTLY": 1, - "USE": 1, - "LISTS": 1, - "BCM2835_H": 3, - "defgroup": 7, - "constants": 1, - "Constants": 1, - "passing": 1, - "values": 3, - "here": 1, - "@": 14, - "HIGH": 12, - "volts": 2, - "pin.": 21, - "Speed": 1, - "core": 1, - "clock": 21, - "core_clk": 1, - "BCM2835_CORE_CLK_HZ": 1, - "Base": 17, - "Address": 10, - "BCM2835_PERI_BASE": 9, - "System": 10, - "Timer": 9, - "BCM2835_ST_BASE": 1, - "BCM2835_GPIO_PADS": 2, - "Clock/timer": 1, - "BCM2835_CLOCK_BASE": 1, - "BCM2835_GPIO_BASE": 6, - "BCM2835_SPI0_BASE": 1, - "BSC0": 2, - "BCM2835_BSC0_BASE": 1, - "PWM": 2, - "BCM2835_GPIO_PWM": 1, - "C000": 1, - "BSC1": 2, - "BCM2835_BSC1_BASE": 1, - "ST": 1, - "registers.": 10, - "Available": 8, - "bcm2835_init": 11, - "volatile": 13, - "*bcm2835_st": 1, - "*bcm2835_gpio": 1, - "*bcm2835_pwm": 1, - "*bcm2835_clk": 1, - "PADS": 1, - "*bcm2835_pads": 1, - "*bcm2835_spi0": 1, - "*bcm2835_bsc0": 1, - "*bcm2835_bsc1": 1, - "Size": 2, - "page": 5, - "BCM2835_PAGE_SIZE": 1, - "*1024": 2, - "BCM2835_BLOCK_SIZE": 1, - "offsets": 2, - "BCM2835_GPIO_BASE.": 1, - "Offsets": 1, - "bytes": 29, - "per": 3, - "Register": 1, - "View": 1, - "BCM2835_GPFSEL0": 1, - "Function": 8, - "BCM2835_GPFSEL1": 1, - "BCM2835_GPFSEL2": 1, - "BCM2835_GPFSEL3": 1, - "BCM2835_GPFSEL4": 1, - "BCM2835_GPFSEL5": 1, - "BCM2835_GPSET0": 1, - "Output": 6, - "Set": 2, - "BCM2835_GPSET1": 1, - "BCM2835_GPCLR0": 1, - "Clear": 18, - "BCM2835_GPCLR1": 1, - "BCM2835_GPLEV0": 1, - "Level": 2, - "BCM2835_GPLEV1": 1, - "BCM2835_GPEDS0": 1, - "Event": 11, - "Detect": 35, - "Status": 6, - "BCM2835_GPEDS1": 1, - "BCM2835_GPREN0": 1, - "Rising": 8, - "Edge": 16, - "Enable": 38, - "BCM2835_GPREN1": 1, - "Falling": 8, - "BCM2835_GPFEN1": 1, - "BCM2835_GPHEN0": 1, - "High": 4, - "BCM2835_GPHEN1": 1, - "BCM2835_GPLEN0": 1, - "Low": 5, - "BCM2835_GPLEN1": 1, - "BCM2835_GPAREN0": 1, - "Async.": 4, - "BCM2835_GPAREN1": 1, - "BCM2835_GPAFEN0": 1, - "BCM2835_GPAFEN1": 1, - "BCM2835_GPPUD": 1, - "Pull": 11, - "up/down": 10, - "BCM2835_GPPUDCLK0": 1, - "Clock": 11, - "BCM2835_GPPUDCLK1": 1, - "bcm2835PortFunction": 1, - "Port": 1, - "function": 19, - "select": 9, - "modes": 1, - "bcm2835_gpio_fsel": 2, - "BCM2835_GPIO_FSEL_INPT": 1, - "b000": 1, - "Input": 2, - "BCM2835_GPIO_FSEL_OUTP": 1, - "b001": 1, - "BCM2835_GPIO_FSEL_ALT0": 1, - "b100": 1, - "Alternate": 6, - "BCM2835_GPIO_FSEL_ALT1": 1, - "b101": 1, - "BCM2835_GPIO_FSEL_ALT2": 1, - "b110": 1, - "BCM2835_GPIO_FSEL_ALT3": 1, - "b111": 2, - "BCM2835_GPIO_FSEL_ALT4": 1, - "b011": 1, - "BCM2835_GPIO_FSEL_ALT5": 1, - "b010": 1, - "BCM2835_GPIO_FSEL_MASK": 1, - "bits": 11, - "bcm2835FunctionSelect": 2, - "bcm2835PUDControl": 4, - "Pullup/Pulldown": 1, - "bcm2835_gpio_pud": 5, - "BCM2835_GPIO_PUD_OFF": 1, - "b00": 1, - "Off": 3, - "pull": 1, - "BCM2835_GPIO_PUD_DOWN": 1, - "b01": 1, - "Down": 1, - "BCM2835_GPIO_PUD_UP": 1, - "b10": 1, - "Up": 1, - "Pad": 11, - "BCM2835_PADS_GPIO_0_27": 1, - "BCM2835_PADS_GPIO_28_45": 1, - "BCM2835_PADS_GPIO_46_53": 1, - "Control": 6, - "masks": 1, - "BCM2835_PAD_PASSWRD": 1, - "A": 7, - "Password": 1, - "BCM2835_PAD_SLEW_RATE_UNLIMITED": 1, - "Slew": 1, - "rate": 3, - "unlimited": 1, - "BCM2835_PAD_HYSTERESIS_ENABLED": 1, - "Hysteresis": 1, - "BCM2835_PAD_DRIVE_2mA": 1, - "mA": 8, - "drive": 8, - "BCM2835_PAD_DRIVE_4mA": 1, - "BCM2835_PAD_DRIVE_6mA": 1, - "BCM2835_PAD_DRIVE_8mA": 1, - "BCM2835_PAD_DRIVE_10mA": 1, - "BCM2835_PAD_DRIVE_12mA": 1, - "BCM2835_PAD_DRIVE_14mA": 1, - "BCM2835_PAD_DRIVE_16mA": 1, - "bcm2835PadGroup": 4, - "specification": 1, - "bcm2835_gpio_pad": 2, - "BCM2835_PAD_GROUP_GPIO_0_27": 1, - "BCM2835_PAD_GROUP_GPIO_28_45": 1, - "BCM2835_PAD_GROUP_GPIO_46_53": 1, - "Numbers": 1, - "Here": 1, - "we": 10, - "terms": 4, - "numbers.": 1, - "These": 6, - "requiring": 1, - "bin": 1, - "connected": 1, - "adopt": 1, - "function.": 3, - "slightly": 1, - "pinouts": 1, - "these": 1, - "RPI_V2_*.": 1, - "At": 1, - "bootup": 1, - "UART0_TXD": 3, - "UART0_RXD": 3, - "ie": 3, - "alt0": 1, - "respectively": 1, - "dedicated": 1, - "cant": 1, - "controlled": 1, - "independently": 1, - "RPI_GPIO_P1_03": 6, - "RPI_GPIO_P1_05": 6, - "RPI_GPIO_P1_07": 1, - "RPI_GPIO_P1_08": 1, - "defaults": 4, - "alt": 4, - "RPI_GPIO_P1_10": 1, - "RPI_GPIO_P1_11": 1, - "RPI_GPIO_P1_12": 1, - "RPI_GPIO_P1_13": 1, - "RPI_GPIO_P1_15": 1, - "RPI_GPIO_P1_16": 1, - "RPI_GPIO_P1_18": 1, - "RPI_GPIO_P1_19": 1, - "RPI_GPIO_P1_21": 1, - "RPI_GPIO_P1_22": 1, - "RPI_GPIO_P1_23": 1, - "RPI_GPIO_P1_24": 1, - "RPI_GPIO_P1_26": 1, - "RPI_V2_GPIO_P1_03": 1, - "RPI_V2_GPIO_P1_05": 1, - "RPI_V2_GPIO_P1_07": 1, - "RPI_V2_GPIO_P1_08": 1, - "RPI_V2_GPIO_P1_10": 1, - "RPI_V2_GPIO_P1_11": 1, - "RPI_V2_GPIO_P1_12": 1, - "RPI_V2_GPIO_P1_13": 1, - "RPI_V2_GPIO_P1_15": 1, - "RPI_V2_GPIO_P1_16": 1, - "RPI_V2_GPIO_P1_18": 1, - "RPI_V2_GPIO_P1_19": 1, - "RPI_V2_GPIO_P1_21": 1, - "RPI_V2_GPIO_P1_22": 1, - "RPI_V2_GPIO_P1_23": 1, - "RPI_V2_GPIO_P1_24": 1, - "RPI_V2_GPIO_P1_26": 1, - "RPI_V2_GPIO_P5_03": 1, - "RPI_V2_GPIO_P5_04": 1, - "RPI_V2_GPIO_P5_05": 1, - "RPI_V2_GPIO_P5_06": 1, - "RPiGPIOPin": 1, - "BCM2835_SPI0_CS": 1, - "Master": 12, - "BCM2835_SPI0_FIFO": 1, - "TX": 5, - "RX": 7, - "FIFOs": 1, - "BCM2835_SPI0_CLK": 1, - "Divider": 2, - "BCM2835_SPI0_DLEN": 1, - "Data": 9, - "Length": 2, - "BCM2835_SPI0_LTOH": 1, - "LOSSI": 1, - "mode": 24, - "TOH": 1, - "BCM2835_SPI0_DC": 1, - "DMA": 3, - "DREQ": 1, - "Controls": 1, - "BCM2835_SPI0_CS_LEN_LONG": 1, - "Long": 1, - "Lossi": 2, - "DMA_LEN": 1, - "BCM2835_SPI0_CS_DMA_LEN": 1, - "BCM2835_SPI0_CS_CSPOL2": 1, - "Chip": 9, - "Polarity": 5, - "BCM2835_SPI0_CS_CSPOL1": 1, - "BCM2835_SPI0_CS_CSPOL0": 1, - "BCM2835_SPI0_CS_RXF": 1, - "RXF": 2, - "FIFO": 25, - "Full": 1, - "BCM2835_SPI0_CS_RXR": 1, - "RXR": 3, - "needs": 4, - "Reading": 1, - "full": 9, - "BCM2835_SPI0_CS_TXD": 1, - "TXD": 2, - "accept": 2, - "BCM2835_SPI0_CS_RXD": 1, - "RXD": 2, - "contains": 2, - "BCM2835_SPI0_CS_DONE": 1, - "Done": 3, - "transfer": 8, - "BCM2835_SPI0_CS_TE_EN": 1, - "Unused": 2, - "BCM2835_SPI0_CS_LMONO": 1, - "BCM2835_SPI0_CS_LEN": 1, - "LEN": 1, - "LoSSI": 1, - "BCM2835_SPI0_CS_REN": 1, - "REN": 1, - "Read": 3, - "BCM2835_SPI0_CS_ADCS": 1, - "ADCS": 1, - "Automatically": 1, - "Deassert": 1, - "BCM2835_SPI0_CS_INTR": 1, - "INTR": 1, - "Interrupt": 5, - "BCM2835_SPI0_CS_INTD": 1, - "INTD": 1, - "BCM2835_SPI0_CS_DMAEN": 1, - "DMAEN": 1, - "BCM2835_SPI0_CS_TA": 1, - "Transfer": 3, - "Active": 2, - "BCM2835_SPI0_CS_CSPOL": 1, - "BCM2835_SPI0_CS_CLEAR": 1, - "BCM2835_SPI0_CS_CLEAR_RX": 1, - "BCM2835_SPI0_CS_CLEAR_TX": 1, - "BCM2835_SPI0_CS_CPOL": 1, - "BCM2835_SPI0_CS_CPHA": 1, - "Phase": 1, - "BCM2835_SPI0_CS_CS": 1, - "bcm2835SPIBitOrder": 3, - "Bit": 1, - "Specifies": 5, - "ordering": 4, - "bcm2835_spi_setBitOrder": 2, - "BCM2835_SPI_BIT_ORDER_LSBFIRST": 1, - "LSB": 1, - "First": 2, - "BCM2835_SPI_BIT_ORDER_MSBFIRST": 1, - "MSB": 1, - "Specify": 2, - "bcm2835_spi_setDataMode": 2, - "BCM2835_SPI_MODE0": 1, - "CPOL": 4, - "CPHA": 4, - "BCM2835_SPI_MODE1": 1, - "BCM2835_SPI_MODE2": 1, - "BCM2835_SPI_MODE3": 1, - "bcm2835SPIMode": 2, - "bcm2835SPIChipSelect": 3, - "BCM2835_SPI_CS0": 1, - "BCM2835_SPI_CS1": 1, - "BCM2835_SPI_CS2": 1, - "CS1": 1, - "CS2": 1, - "asserted": 3, - "BCM2835_SPI_CS_NONE": 1, - "CS": 5, - "yourself": 1, - "bcm2835SPIClockDivider": 3, - "generate": 2, - "Figures": 1, - "below": 1, - "period": 1, - "frequency.": 1, - "divided": 2, - "nominal": 2, - "reported": 2, - "contrary": 1, - "shown": 1, - "confirmed": 1, - "measurement": 2, - "BCM2835_SPI_CLOCK_DIVIDER_65536": 1, - "us": 12, - "kHz": 10, - "BCM2835_SPI_CLOCK_DIVIDER_32768": 1, - "BCM2835_SPI_CLOCK_DIVIDER_16384": 1, - "BCM2835_SPI_CLOCK_DIVIDER_8192": 1, - "/51757813kHz": 1, - "BCM2835_SPI_CLOCK_DIVIDER_4096": 1, - "BCM2835_SPI_CLOCK_DIVIDER_2048": 1, - "BCM2835_SPI_CLOCK_DIVIDER_1024": 1, - "BCM2835_SPI_CLOCK_DIVIDER_512": 1, - "BCM2835_SPI_CLOCK_DIVIDER_256": 1, - "BCM2835_SPI_CLOCK_DIVIDER_128": 1, - "ns": 9, - "BCM2835_SPI_CLOCK_DIVIDER_64": 1, - "BCM2835_SPI_CLOCK_DIVIDER_32": 1, - "BCM2835_SPI_CLOCK_DIVIDER_16": 1, - "BCM2835_SPI_CLOCK_DIVIDER_8": 1, - "BCM2835_SPI_CLOCK_DIVIDER_4": 1, - "BCM2835_SPI_CLOCK_DIVIDER_2": 1, - "fastest": 1, - "BCM2835_SPI_CLOCK_DIVIDER_1": 1, - "same": 3, - "/65536": 1, - "BCM2835_BSC_C": 1, - "BCM2835_BSC_S": 1, - "BCM2835_BSC_DLEN": 1, - "BCM2835_BSC_A": 1, - "Slave": 1, - "BCM2835_BSC_FIFO": 1, - "BCM2835_BSC_DIV": 1, - "BCM2835_BSC_DEL": 1, - "Delay": 4, - "BCM2835_BSC_CLKT": 1, - "Stretch": 2, - "Timeout": 2, - "BCM2835_BSC_C_I2CEN": 1, - "BCM2835_BSC_C_INTR": 1, - "BCM2835_BSC_C_INTT": 1, - "BCM2835_BSC_C_INTD": 1, - "DONE": 2, - "BCM2835_BSC_C_ST": 1, - "Start": 4, - "BCM2835_BSC_C_CLEAR_1": 1, - "BCM2835_BSC_C_CLEAR_2": 1, - "BCM2835_BSC_C_READ": 1, - "BCM2835_BSC_S_CLKT": 1, - "stretch": 1, - "BCM2835_BSC_S_ERR": 1, - "ACK": 1, - "BCM2835_BSC_S_RXF": 1, - "BCM2835_BSC_S_TXE": 1, - "TXE": 1, - "BCM2835_BSC_S_RXD": 1, - "BCM2835_BSC_S_TXD": 1, - "BCM2835_BSC_S_RXR": 1, - "BCM2835_BSC_S_TXW": 1, - "TXW": 1, - "BCM2835_BSC_S_DONE": 1, - "BCM2835_BSC_S_TA": 1, - "BCM2835_BSC_FIFO_SIZE": 1, - "bcm2835I2CClockDivider": 3, - "BCM2835_I2C_CLOCK_DIVIDER_2500": 1, - "BCM2835_I2C_CLOCK_DIVIDER_626": 1, - "BCM2835_I2C_CLOCK_DIVIDER_150": 1, - "reset": 1, - "BCM2835_I2C_CLOCK_DIVIDER_148": 1, - "bcm2835I2CReasonCodes": 5, - "reason": 4, - "codes": 1, - "BCM2835_I2C_REASON_OK": 1, - "Success": 1, - "BCM2835_I2C_REASON_ERROR_NACK": 1, - "Received": 4, - "NACK": 1, - "BCM2835_I2C_REASON_ERROR_CLKT": 1, - "BCM2835_I2C_REASON_ERROR_DATA": 1, - "sent": 1, - "BCM2835_ST_CS": 1, - "Control/Status": 1, - "BCM2835_ST_CLO": 1, - "Counter": 4, - "Lower": 2, - "BCM2835_ST_CHI": 1, - "Upper": 1, - "BCM2835_PWM_CONTROL": 1, - "BCM2835_PWM_STATUS": 1, - "BCM2835_PWM0_RANGE": 1, - "BCM2835_PWM0_DATA": 1, - "BCM2835_PWM1_RANGE": 1, - "BCM2835_PWM1_DATA": 1, - "BCM2835_PWMCLK_CNTL": 1, - "BCM2835_PWMCLK_DIV": 1, - "BCM2835_PWM1_MS_MODE": 1, - "Run": 4, - "MS": 2, - "BCM2835_PWM1_USEFIFO": 1, - "BCM2835_PWM1_REVPOLAR": 1, - "Reverse": 2, - "polarity": 3, - "BCM2835_PWM1_OFFSTATE": 1, - "Ouput": 2, - "BCM2835_PWM1_REPEATFF": 1, - "Repeat": 2, - "empty": 2, - "BCM2835_PWM1_SERIAL": 1, - "serial": 2, - "BCM2835_PWM1_ENABLE": 1, - "Channel": 2, - "BCM2835_PWM0_MS_MODE": 1, - "BCM2835_PWM0_USEFIFO": 1, - "BCM2835_PWM0_REVPOLAR": 1, - "BCM2835_PWM0_OFFSTATE": 1, - "BCM2835_PWM0_REPEATFF": 1, - "BCM2835_PWM0_SERIAL": 1, - "BCM2835_PWM0_ENABLE": 1, - "init": 2, - "Library": 1, - "management": 1, - "intialise": 1, - "Initialise": 1, - "opening": 1, - "getting": 1, - "device": 7, - "call": 4, - "successfully": 1, - "bcm2835_set_debug": 2, - "fails": 1, - "returning": 1, - "crashes": 1, - "failures.": 1, - "Prints": 1, - "messages": 1, - "stderr": 1, - "errors.": 1, - "successful": 2, - "Close": 1, - "deallocating": 1, - "allocated": 2, - "Sets": 24, - "debug": 6, - "prevents": 1, - "makes": 1, - "print": 5, - "out": 5, - "would": 2, - "rather": 2, - "causes": 1, - "normal": 1, - "param": 72, - "uint8_t": 43, - "lowlevel": 2, - "provide": 1, - "generally": 1, - "Reads": 5, - "done": 3, - "twice": 3, - "therefore": 6, - "always": 3, - "safe": 4, - "precautions": 3, - "correct": 3, - "paddr": 10, - "from.": 6, - "etc.": 5, - "without": 3, - "within": 4, - "occurred": 2, - "since.": 2, - "bcm2835_peri_read_nb": 1, - "Writes": 2, - "write": 8, - "bcm2835_peri_write_nb": 1, - "Alters": 1, - "regsiter.": 1, - "valu": 1, - "alters": 1, - "deines": 1, - "according": 1, - "value.": 2, - "All": 1, - "unaffected.": 1, - "Use": 8, - "alter": 2, - "subset": 1, - "register.": 3, - "masked": 2, - "mask.": 1, - "Bitmask": 1, - "altered": 1, - "gpio": 1, - "interface.": 3, - "input": 12, - "state.": 1, - "configures": 1, - "RPI_GPIO_P1_*": 21, - "Mode": 1, - "BCM2835_GPIO_FSEL_*": 1, - "specified": 27, - "HIGH.": 2, - "bcm2835_gpio_write": 3, - "bcm2835_gpio_set": 1, - "LOW.": 5, - "bcm2835_gpio_clr": 1, - "Mask": 6, - "affect.": 4, - "eg": 5, - "returns": 4, - "Works": 1, - "output.": 1, - "bcm2835_gpio_lev": 1, - "Status.": 7, - "Tests": 1, - "detected": 7, - "requested": 1, - "bcm2835_gpio_set_eds": 2, - "status": 1, - "th": 1, - "true.": 2, - "bcm2835_gpio_eds": 1, - "effect": 3, - "clearing": 1, - "flag.": 1, - "afer": 1, - "seeing": 1, - "rising": 3, - "sets": 8, - "GPRENn": 2, - "synchronous": 2, - "detection.": 2, - "signal": 4, - "sampled": 6, - "looking": 2, - "pattern": 2, - "signal.": 2, - "suppressing": 2, - "glitches.": 2, - "Disable": 6, - "Asynchronous": 6, - "incoming": 2, - "As": 2, - "edges": 2, - "very": 2, - "duration": 2, - "detected.": 2, - "bcm2835_gpio_pudclk": 3, - "resistor": 1, - "However": 3, - "convenient": 2, - "bcm2835_gpio_set_pud": 4, - "pud": 4, - "desired": 7, - "mode.": 4, - "One": 3, - "BCM2835_GPIO_PUD_*": 2, - "Clocks": 3, - "earlier": 1, - "group.": 2, - "BCM2835_PAD_GROUP_GPIO_*": 2, - "BCM2835_PAD_*": 2, - "bcm2835_gpio_set_pad": 1, - "Delays": 3, - "milliseconds.": 1, - "Uses": 4, - "until": 1, - "up.": 1, - "mercy": 2, - "From": 2, - "interval": 4, - "req": 2, - "exact": 2, - "multiple": 2, - "granularity": 2, - "rounded": 2, - "multiple.": 2, - "Furthermore": 2, - "sleep": 2, - "completes": 2, - "becomes": 2, - "again": 2, - "thread.": 2, - "millis": 2, - "milliseconds": 1, - "microseconds.": 2, - "busy": 2, - "wait": 2, - "timers": 1, - "less": 1, - "microseconds": 6, - "Timer.": 1, - "RaspberryPi": 1, - "Your": 1, - "mileage": 1, - "vary.": 1, - "micros": 5, - "required": 2, - "bcm2835_gpio_write_mask": 1, - "clocking": 1, - "spi": 1, - "let": 2, - "device.": 2, - "operations.": 4, - "Forces": 2, - "ALT0": 2, - "funcitons": 1, - "End": 2, - "returned": 5, - "INPUT": 2, - "behaviour.": 2, - "NOTE": 1, - "effect.": 1, - "SPI0.": 1, - "Defaults": 1, - "BCM2835_SPI_BIT_ORDER_*": 1, - "speed.": 2, - "BCM2835_SPI_CLOCK_DIVIDER_*": 1, - "bcm2835_spi_setClockDivider": 1, - "uint16_t": 2, - "polariy": 1, - "phase": 1, - "BCM2835_SPI_MODE*": 1, - "bcm2835_spi_transfer": 5, - "made": 1, - "during": 4, - "transfer.": 4, - "cs": 4, - "activate": 1, - "slave.": 7, - "BCM2835_SPI_CS*": 1, - "bcm2835_spi_chipSelect": 4, - "occurs": 1, - "active.": 1, - "transfers": 1, - "happening": 1, - "complement": 1, - "inactive": 1, - "affect": 1, - "active": 3, - "Whether": 1, - "bcm2835_spi_setChipSelectPolarity": 1, - "Transfers": 6, - "Asserts": 3, - "simultaneously": 3, - "clocks": 2, - "MISO.": 2, - "polled": 2, - "Peripherls": 2, - "slave": 8, - "placed": 1, - "rbuf.": 1, - "rbuf": 3, - "tbuf": 4, - "send.": 5, - "put": 1, - "send/received": 2, - "bcm2835_spi_transfernb.": 1, - "replaces": 1, - "transmitted": 1, - "buffer.": 1, - "replace": 1, - "contents": 3, - "bcm2835_spi_writenb": 1, - "i2c": 1, - "Philips": 1, - "bus/interface": 1, - "January": 1, - "SCL": 2, - "bcm2835_i2c_end": 3, - "bcm2835_i2c_begin": 1, - "address.": 2, - "addr": 2, - "bcm2835_i2c_setSlaveAddress": 4, - "BCM2835_I2C_CLOCK_DIVIDER_*": 1, - "bcm2835_i2c_setClockDivider": 2, - "converting": 1, - "baudrate": 4, - "parameter": 1, - "equivalent": 1, - "divider.": 1, - "standard": 2, - "khz": 1, - "corresponds": 1, - "its": 1, - "driver.": 1, - "Of": 1, - "course": 2, - "nothing": 1, - "driver": 1, - "receive.": 2, - "received.": 2, - "Allows": 2, - "slaves": 1, - "require": 3, - "repeated": 1, - "prior": 1, - "stop": 1, - "set.": 1, - "popular": 1, - "MPL3115A2": 1, - "pressure": 1, - "temperature": 1, - "sensor.": 1, - "Note": 1, - "combined": 1, - "better": 1, - "choice.": 1, - "Will": 1, - "regaddr": 2, - "containing": 2, - "bcm2835_i2c_read_register_rs": 1, - "st": 1, - "delays": 1, - "Counter.": 1, - "bcm2835_st_read": 1, - "offset.": 1, - "offset_micros": 2, - "Offset": 1, - "bcm2835_st_delay": 1, - "@example": 5, - "blink.c": 1, - "Blinks": 1, - "off": 1, - "input.c": 1, - "event.c": 1, - "Shows": 3, - "how": 3, - "spi.c": 1, - "spin.c": 1, - "V8_SCANNER_H_": 3, - "ParsingFlags": 1, - "kNoParsingFlags": 1, - "kLanguageModeMask": 4, - "kAllowLazy": 1, - "kAllowNativesSyntax": 1, - "kAllowModules": 1, - "CLASSIC_MODE": 2, - "STRICT_MODE": 2, - "EXTENDED_MODE": 2, - "x16": 1, - "x36.": 1, - "Utf16CharacterStream": 3, - "pos_": 6, - "virtual": 10, - "buffer_cursor_": 5, - "buffer_end_": 3, - "ReadBlock": 2, - "": 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, - "": 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, - "": 1, - "128": 4, - "kIsIdentifierStart": 1, - "": 1, - "kIsIdentifierPart": 1, - "": 1, - "kIsLineTerminator": 1, - "": 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, - "ExpandBuffer": 2, - "kMaxAsciiCharCodeU": 1, - "": 6, - "kASCIISize": 1, - "ConvertToUtf16": 2, - "*reinterpret_cast": 3, - "": 2, - "kUC16Size": 2, - "is_ascii": 3, - "Vector": 13, - "": 12, - "uc16": 5, - "utf16_literal": 3, - "backing_store_.start": 5, - "ascii_literal": 3, - "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, - "memcpy": 1, - "new_store.start": 3, - "new_content_size": 4, - "src": 2, - "": 1, - "dst": 2, - "Scanner*": 2, - "scanner_": 5, - "complete_": 4, - "StartLiteral": 2, - "DropLiteral": 2, - "Complete": 1, - "TerminateLiteral": 2, - "beg_pos": 5, - "end_pos": 4, - "kNoOctalLocation": 1, - "scanner_contants": 1, - "current_token": 1, - "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, - "TokenDesc": 3, - "LiteralBuffer*": 2, - "literal_chars": 1, - "free_buffer": 3, - "literal_buffer1_": 3, - "literal_buffer2_": 2, - "AddLiteralChar": 2, - "tok": 2, - "else_": 2, - "ScanDecimalDigits": 1, - "seen_period": 1, - "ScanIdentifierSuffix": 1, - "LiteralScope*": 1, - "ScanIdentifierUnicodeEscape": 1, - "desc": 2, - "look": 1, - "ahead": 1, - "INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION": 1, - "": 1, - "": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "persons": 4, - "google": 72, - "protobuf": 72, - "Descriptor*": 3, - "Person_descriptor_": 6, - "GeneratedMessageReflection*": 1, - "Person_reflection_": 4, - "protobuf_AssignDesc_protocol_2dbuffer_2eproto": 4, - "protobuf_AddDesc_protocol_2dbuffer_2eproto": 6, - "FileDescriptor*": 1, - "DescriptorPool": 3, - "generated_pool": 2, - "FindFileByName": 1, - "GOOGLE_CHECK": 1, - "message_type": 1, - "Person_offsets_": 2, - "GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET": 3, - "Person": 65, - "name_": 30, - "GeneratedMessageReflection": 1, - "default_instance_": 8, - "_has_bits_": 14, - "_unknown_fields_": 5, - "MessageFactory": 3, - "generated_factory": 1, - "GOOGLE_PROTOBUF_DECLARE_ONCE": 1, - "protobuf_AssignDescriptors_once_": 2, - "protobuf_AssignDescriptorsOnce": 4, - "GoogleOnceInit": 1, - "protobuf_RegisterTypes": 2, - "InternalRegisterGeneratedMessage": 1, - "default_instance": 3, - "protobuf_ShutdownFile_protocol_2dbuffer_2eproto": 4, - "already_here": 3, - "GOOGLE_PROTOBUF_VERIFY_VERSION": 1, - "InternalAddGeneratedFile": 1, - "InternalRegisterGeneratedFile": 1, - "InitAsDefaultInstance": 3, - "OnShutdown": 1, - "StaticDescriptorInitializer_protocol_2dbuffer_2eproto": 2, - "static_descriptor_initializer_protocol_2dbuffer_2eproto_": 1, - "kNameFieldNumber": 2, - "Message": 7, - "SharedCtor": 4, - "MergeFrom": 9, - "_cached_size_": 7, - "const_cast": 3, - "string*": 11, - "kEmptyString": 12, - "SharedDtor": 3, - "SetCachedSize": 2, - "GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN": 2, - "GOOGLE_SAFE_CONCURRENT_WRITES_END": 2, - "*default_instance_": 1, - "Person*": 7, - "xffu": 3, - "has_name": 6, - "mutable_unknown_fields": 4, - "MergePartialFromCodedStream": 2, - "io": 4, - "CodedInputStream*": 2, - "DO_": 4, - "EXPRESSION": 2, - "uint32": 2, - "tag": 6, - "ReadTag": 1, - "WireFormatLite": 9, - "GetTagFieldNumber": 1, - "GetTagWireType": 2, - "WIRETYPE_LENGTH_DELIMITED": 1, - "ReadString": 1, - "mutable_name": 3, - "WireFormat": 10, - "VerifyUTF8String": 3, - ".data": 3, - ".length": 3, - "PARSE": 1, - "handle_uninterpreted": 2, - "ExpectAtEnd": 1, - "WIRETYPE_END_GROUP": 1, - "SkipField": 1, - "SerializeWithCachedSizes": 2, - "CodedOutputStream*": 2, - "SERIALIZE": 2, - "WriteString": 1, - "unknown_fields": 7, - "SerializeUnknownFields": 1, - "uint8*": 4, - "SerializeWithCachedSizesToArray": 2, - "target": 6, - "WriteStringToArray": 1, - "SerializeUnknownFieldsToArray": 1, - "ByteSize": 2, - "total_size": 5, - "StringSize": 1, - "ComputeUnknownFieldsSize": 1, - "GOOGLE_CHECK_NE": 2, - "dynamic_cast_if_available": 1, - "ReflectionOps": 1, - "Merge": 1, - "from._has_bits_": 1, - "from.has_name": 1, - "set_name": 7, - "from.name": 1, - "from.unknown_fields": 1, - "CopyFrom": 5, - "Swap": 2, - "swap": 3, - "_unknown_fields_.Swap": 1, - "Metadata": 3, - "GetMetadata": 2, - "metadata": 2, - "metadata.descriptor": 1, - "metadata.reflection": 1, - "Bar": 2, - "hello": 2, - "NINJA_METRICS_H_": 3, - "int64_t.": 1, - "Metrics": 2, - "module": 1, - "dumps": 1, - "stats": 2, - "actions.": 1, - "To": 1, - "METRIC_RECORD": 4, - "below.": 1, - "metrics": 2, - "hit": 1, - "path.": 2, - "count": 1, - "Total": 1, - "spent": 1, - "int64_t": 3, - "sum": 1, - "scoped": 1, - "object": 3, - "recording": 1, - "metric": 2, - "across": 1, - "body": 1, - "Used": 2, - "macro.": 1, - "ScopedMetric": 4, - "Metric*": 4, - "metric_": 1, - "Timestamp": 1, - "started.": 1, - "dependent.": 1, - "start_": 1, - "singleton": 2, - "prints": 1, - "report.": 1, - "NewMetric": 2, - "Print": 2, - "summary": 1, - "stdout.": 1, - "Report": 1, - "": 1, - "metrics_": 1, - "Get": 1, - "relative": 2, - "epoch.": 1, - "Epoch": 1, - "varies": 1, - "between": 1, - "platforms": 1, - "useful": 1, - "measuring": 1, - "elapsed": 1, - "time.": 1, - "GetTimeMillis": 1, - "simple": 1, - "stopwatch": 1, - "seconds": 1, - "Restart": 3, - "called.": 1, - "Stopwatch": 2, - "started_": 4, - "Seconds": 1, - "call.": 1, - "Elapsed": 1, - "": 1, - "primary": 1, - "metrics.": 1, - "top": 1, - "recorded": 1, - "metrics_h_metric": 2, - "g_metrics": 3, - "metrics_h_scoped": 1, - "Metrics*": 1, - "": 2, - "cout": 2, - "endl": 1, - "__OG_MATH_INL__": 2, - "og": 1, - "OG_INLINE": 41, - "Math": 41, - "Abs": 1, - "MASK_SIGNED": 2, - "Fabs": 1, - "uInt": 1, - "*pf": 1, - "": 1, - "pf": 1, - "fabsf": 1, - "Round": 1, - "floorf": 2, - "Floor": 1, - "Ceil": 1, - "ceilf": 1, - "Ftoi": 1, - "@todo": 1, - "note": 1, - "sse": 1, - "cvttss2si": 2, - "OG_ASM_MSVC": 4, - "OG_FTOI_USE_SSE": 2, - "SysInfo": 2, - "cpu.general.SSE": 2, - "__asm": 8, - "eax": 5, - "mov": 6, - "fld": 4, - "fistp": 3, - "//__asm": 3, - "O_o": 3, - "OG_ASM_GNU": 4, - "__asm__": 4, - "__volatile__": 4, - "why": 3, - "id": 4, - "did": 3, - "": 3, - "FtoiFast": 2, - "Ftol": 1, - "": 1, - "Fmod": 1, - "numerator": 2, - "denominator": 2, - "fmodf": 1, - "Modf": 2, - "modff": 2, - "Sqrt": 2, - "sqrtf": 2, - "InvSqrt": 1, - "OG_ASSERT": 4, - "RSqrt": 1, - "g": 2, - "guess": 1, - "f375a86": 1, - "": 1, - "Newtons": 1, - "calculation": 1, - "Log": 1, - "logf": 3, - "Log2": 1, - "INV_LN_2": 1, - "Log10": 1, - "INV_LN_10": 1, - "Pow": 1, - "exp": 2, - "powf": 1, - "Exp": 1, - "expf": 1, - "IsPowerOfTwo": 4, - "faster": 3, - "known": 1, - "methods": 2, - "moved": 1, - "beginning": 1, - "HigherPowerOfTwo": 4, - "LowerPowerOfTwo": 2, - "FloorPowerOfTwo": 1, - "CeilPowerOfTwo": 1, - "ClosestPowerOfTwo": 1, - "Digits": 1, - "step": 3, - "Sin": 2, - "sinf": 1, - "ASin": 1, - "<=>": 2, - "1": 4, - "0f": 2, - "HALF_PI": 2, - "asinf": 1, - "Cos": 2, - "cosf": 1, - "ACos": 1, - "PI": 1, - "acosf": 1, - "Tan": 1, - "tanf": 1, - "ATan": 2, - "atanf": 1, - "f1": 2, - "f2": 2, - "atan2f": 1, - "SinCos": 1, - "sometimes": 1, - "assembler": 1, - "just": 2, - "waaayy": 1, - "_asm": 1, - "fsincos": 1, - "ecx": 2, - "edx": 2, - "fstp": 2, - "dword": 2, - "asm": 1, - "Deg2Rad": 1, - "DEG_TO_RAD": 1, - "Rad2Deg": 1, - "RAD_TO_DEG": 1, - "Square": 1, - "Cube": 1, - "Sec2Ms": 1, - "sec": 2, - "Ms2Sec": 1, - "ms": 2, - "UTILS_H": 3, - "": 1, - "": 1, - "": 1, - "QTemporaryFile": 1, - "showUsage": 1, - "QtMsgType": 1, - "*msg": 2, - "dump_path": 1, - "minidump_id": 1, - "succeeded": 2, - "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, - "shouldn": 1, - "instantiated": 1, - "QTemporaryFile*": 2, - "m_tempHarness": 1, - "We": 1, - "clean": 2, - "ourselves": 1, - "m_tempWrapper": 1, - "": 1, - "": 1, - "*env_instance": 1, - "*Env": 1, - "env_instance": 3, - "QCoreApplication": 1, - "**envp": 1, - "**env": 1, - "envvar": 2, - "indexOfEquals": 5, - "env": 3, - "*env": 1, - "envvar.indexOf": 1, - "envvar.left": 1, - "envvar.mid": 1, - "m_map.insert": 1, - "": 1, - "": 1, - "": 1, - "EC_KEY_regenerate_key": 1, - "*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": 26, - "BN_CTX_new": 2, - "err": 26, - "pub_key": 6, - "EC_POINT_new": 4, - "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, - "msglen": 2, - "recid": 3, - "ret": 24, - "*x": 1, - "*e": 1, - "*order": 1, - "*sor": 1, - "*eor": 1, - "*field": 1, - "*R": 1, - "*O": 1, - "*Q": 1, - "*rr": 1, - "*zero": 1, - "BN_CTX_start": 1, - "BN_CTX_get": 8, - "EC_GROUP_get_order": 1, - "BN_copy": 1, - "BN_mul_word": 1, - "BN_add": 1, - "ecsig": 3, - "EC_GROUP_get_curve_GFp": 1, - "BN_cmp": 1, - "R": 6, - "EC_POINT_set_compressed_coordinates_GFp": 1, - "O": 5, - "EC_POINT_is_at_infinity": 1, - "Q": 5, - "EC_GROUP_get_degree": 1, - "BN_bin2bn": 3, - "msg": 1, - "*msglen": 1, - "BN_rshift": 1, - "zero": 5, - "BN_zero": 1, - "BN_mod_sub": 1, - "rr": 4, - "BN_mod_inverse": 1, - "sor": 3, - "BN_mod_mul": 2, - "eor": 3, - "BN_CTX_end": 1, - "EC_KEY_set_conv_form": 1, - "POINT_CONVERSION_COMPRESSED": 1, - "EC_KEY_new_by_curve_name": 2, - "NID_secp256k1": 2, - "throw": 4, - "EC_KEY_dup": 1, - "b.pkey": 2, - "b.fSet": 2, - "EC_KEY_copy": 1, - "nSize": 2, - "vchSig.clear": 2, - "vchSig.resize": 2, - "Shrink": 1, - "fit": 1, - "actual": 1, - "fOk": 3, - "*sig": 2, - "ECDSA_do_sign": 1, - "sig": 11, - "nBitsR": 3, - "BN_num_bits": 2, - "nBitsS": 3, - "nRecId": 4, - "<4;>": 1, - "keyRec": 5, - "BN_bn2bin": 2, - "/8": 2, - "ECDSA_SIG_free": 2, - "vchSig.size": 2, - "nV": 6, - "<27>": 1, - "ECDSA_SIG_new": 1, - "EC_KEY_free": 1, - "ECDSA_verify": 1, - "key.SetCompactSignature": 1, - "key.GetPubKey": 1, - "fCompr": 3, - "secret": 2, - "key2": 1, - "key2.SetSecret": 1, - "key2.GetPubKey": 1, - "GDSDBREADER_H": 3, - "": 1, - "GDS_DIR": 1, - "LEVEL_ONE": 1, - "LEVEL_TWO": 1, - "LEVEL_THREE": 1, - "dbDataStructure": 2, - "label": 1, - "quint32": 3, - "depth": 1, - "userIndex": 1, - "QByteArray": 1, - "COMPRESSED": 1, - "optimize": 1, - "ram": 1, - "disk": 2, - "space": 2, - "decompressed": 1, - "quint64": 1, - "uniqueID": 1, - "QVector": 2, - "": 1, - "nextItems": 1, - "": 1, - "nextItemsIndices": 1, - "dbDataStructure*": 1, - "father": 1, - "fatherIndex": 1, - "noFatherRoot": 1, - "tell": 1, - "node": 1, - "root": 1, - "hasn": 1, - "argument": 1, - "overload.": 1, - "myclass.label": 2, - "myclass.depth": 2, - "myclass.userIndex": 2, - "qCompress": 2, - "myclass.data": 4, - "myclass.uniqueID": 2, - "myclass.nextItemsIndices": 2, - "myclass.fatherIndex": 2, - "myclass.noFatherRoot": 2, - "myclass.fileName": 2, - "myclass.firstLineData": 4, - "myclass.linesNumbers": 2, - "QDataStream": 2, - "myclass": 1, - "//Don": 1, - "qUncompress": 2, - "PROTOBUF_protocol_2dbuffer_2eproto__INCLUDED": 3, - "GOOGLE_PROTOBUF_VERSION": 1, - "generated": 2, - "newer": 2, - "protoc": 2, - "incompatible": 2, - "Protocol": 2, - "headers.": 3, - "update": 1, - "GOOGLE_PROTOBUF_MIN_PROTOC_VERSION": 1, - "older": 1, - "regenerate": 1, - "protoc.": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "*this": 1, - "UnknownFieldSet": 2, - "UnknownFieldSet*": 1, - "GetCachedSize": 1, - "clear_name": 2, - "release_name": 2, - "set_allocated_name": 2, - "set_has_name": 7, - "clear_has_name": 5, - "mutable": 1, - "*name_": 1, - "assign": 3, - "temp": 2, - "SWIG": 2, - "QSCIPRINTER_H": 2, - "": 1, - "": 1, - "QT_BEGIN_NAMESPACE": 1, - "QRect": 2, - "QPainter": 2, - "QT_END_NAMESPACE": 1, - "QsciPrinter": 9, - "sub": 2, - "Qt": 1, - "QPrinter": 3, - "text": 5, - "Scintilla": 2, - "further": 1, - "classed": 1, - "layout": 1, - "adding": 2, - "footers": 2, - "example.": 1, - "Constructs": 1, - "printer": 1, - "paint": 1, - "PrinterMode": 1, - "ScreenResolution": 1, - "Destroys": 1, - "Format": 1, - "drawn": 2, - "painter": 4, - "add": 3, - "customised": 2, - "graphics.": 2, - "drawing": 4, - "actually": 1, - "sized.": 1, - "area": 5, - "draw": 1, - "text.": 3, - "necessary": 1, - "reserve": 1, - "By": 1, - "printable": 1, - "setFullPage": 1, - "printRange": 2, - "try": 1, - "over": 1, - "pagenr": 2, - "numbered": 1, - "formatPage": 1, - "points": 2, - "font": 2, - "printing.": 2, - "setMagnification": 2, - "magnification": 3, - "mag": 2, - "printing": 2, - "magnification.": 1, - "qsb.": 1, - "negative": 2, - "signifies": 2, - "error.": 1, - "*qsb": 1, - "wrap": 4, - "WrapWord.": 1, - "setWrapMode": 2, - "WrapMode": 3, - "wrapMode": 2, - "wmode.": 1, - "wmode": 1, - "Gui": 1, - "LIBCANIH": 2, - "": 1, - "": 1, - "int64": 1, - "//#define": 1, - "dout": 2, - "cerr": 1, - "libcanister": 2, - "//the": 8, - "canmem": 22, - "generic": 1, - "container": 2, - "commonly": 1, - "//throughout": 1, - "canister": 14, - "framework": 1, - "hold": 1, - "uncertain": 1, - "//length": 1, - "contain": 1, - "null": 3, - "bytes.": 1, - "raw": 2, - "absolute": 1, - "//creates": 3, - "unallocated": 1, - "allocsize": 1, - "blank": 1, - "strdata": 1, - "//automates": 1, - "creation": 1, - "limited": 2, - "canmems": 1, - "//cleans": 1, - "zeromem": 1, - "//overwrites": 2, - "fragmem": 1, - "notation": 1, - "countlen": 1, - "//counts": 1, - "strings": 1, - "//removes": 1, - "nulls": 1, - "//returns": 2, - "//contains": 2, - "caninfo": 2, - "path": 8, - "//physical": 1, - "internalname": 1, - "//a": 1, - "numfiles": 1, - "files": 6, - "//necessary": 1, - "canfile": 7, - "//this": 1, - "holds": 2, - "//canister": 1, - "canister*": 1, - "parent": 1, - "//internal": 1, - "//use": 1, - "own.": 1, - "newline": 2, - "delimited": 2, - "container.": 1, - "TOC": 1, - "info": 2, - "general": 1, - "canfiles": 1, - "recommended": 1, - "modify": 1, - "//these": 1, - "enforced.": 1, - "canfile*": 1, - "//if": 1, - "routines": 1, - "anything": 1, - "//maximum": 1, - "//time": 1, - "whatever": 1, - "suits": 1, - "application.": 1, - "cachemax": 2, - "cachecnt": 1, - "//number": 1, - "cache": 2, - "//both": 1, - "initialize": 1, - "fspath": 3, - "//destroys": 1, - "flushing": 1, - "modded": 1, - "//open": 1, - "//does": 1, - "exist": 2, - "//close": 1, - "flush": 1, - "//deletes": 1, - "inside": 1, - "delFile": 1, - "//pulls": 1, - "getFile": 1, - "otherwise": 1, - "overwrites": 1, - "writeFile": 2, - "//get": 1, - "//list": 1, - "paths": 1, - "getTOC": 1, - "//brings": 1, - "back": 1, - "limit": 1, - "//important": 1, - "sCFID": 2, - "CFID": 2, - "avoid": 1, - "uncaching": 1, - "//really": 1, - "internally": 1, - "harm.": 1, - "cacheclean": 1, - "dFlush": 1 + "literal.Complete": 2 + }, + "CMake": { + "cmake_minimum_required": 1, + "(": 8, + "VERSION": 1, + ")": 8, + "project": 1, + "Foo": 1, + "set": 2, + "CMAKE_SKIP_RPATH": 1, + "TRUE": 1, + "CMAKE_INSTALL_PREFIX": 1, + "add_subdirectory": 1, + "bar": 1, + "add_executable": 1, + "foo": 3, + "foo.c": 1, + "target_link_libraries": 1, + "pthread": 1, + "install": 1, + "TARGETS": 1, + "DESTINATION": 1, + "bin": 1 }, "COBOL": { - "IDENTIFICATION": 2, - "DIVISION.": 4, - "PROGRAM": 2, - "-": 19, - "ID.": 2, - "hello.": 3, - "PROCEDURE": 2, - "DISPLAY": 2, - ".": 3, - "STOP": 2, - "RUN.": 2, "program": 1, + "-": 19, "id.": 1, + "hello.": 3, "procedure": 1, "division.": 1, "display": 1, + ".": 3, "stop": 1, "run.": 1, "COBOL": 7, @@ -14822,7 +15699,15 @@ "(": 5, ")": 5, "COMP.": 3, - "COMP2": 2 + "COMP2": 2, + "IDENTIFICATION": 2, + "DIVISION.": 4, + "PROGRAM": 2, + "ID.": 2, + "PROCEDURE": 2, + "DISPLAY": 2, + "STOP": 2, + "RUN.": 2 }, "CSS": { ".clearfix": 8, @@ -15573,20 +16458,19 @@ "backdrop.fade.in": 1 }, "Ceylon": { - "doc": 2, "by": 1, + "(": 5, + ")": 5, "shared": 5, "void": 1, "test": 1, - "(": 4, - ")": 4, "{": 3, "print": 1, ";": 4, "}": 3, "class": 1, "Test": 2, - "name": 4, + "name": 3, "satisfies": 1, "Comparable": 1, "": 1, @@ -15602,98 +16486,84 @@ }, "Chapel": { "//": 150, - "use": 5, - "Random": 1, - "Time": 2, - ";": 516, - "for": 36, - "random": 1, - "number": 1, - "generation": 1, - "and": 4, - "the": 10, - "Timer": 2, - "class": 1, - "var": 72, - "timer": 2, - "to": 9, - "time": 9, - "sort": 1, "config": 10, + "const": 59, "n": 16, - "int": 21, - "**15": 1, - "size": 1, - "of": 3, - "array": 4, - "be": 2, - "sorted": 1, - "thresh": 6, - "recursive": 1, - "depth": 1, - "serialize": 1, - "verbose": 7, - "print": 5, - "out": 1, - "this": 2, - "many": 1, - "elements": 3, - "in": 76, - "timing": 6, - "bool": 1, - "true": 5, - "set": 4, - "false": 4, - "disable": 1, - "A": 13, - "[": 920, - "]": 920, + ";": 516, + "pi": 1, + "solarMass": 7, + "*": 260, + "pi**2": 1, + "daysPerYear": 13, + "record": 1, + "body": 6, + "{": 122, + "var": 72, + "pos": 5, + "*real": 40, + "v": 9, + "mass": 12, "real": 60, - "numbers": 1, - "fillRandom": 1, + "does": 1, + "not": 1, + "change": 2, + "after": 1, + "it": 1, + "is": 1, + "set": 4, + "up": 1, + "}": 120, + "bodies": 8, + "[": 920, + "new": 7, "(": 626, ")": 626, - "if": 98, - "then": 80, - "writeln": 53, - "timer.start": 1, - "pqsort": 4, - "timer.stop": 1, - "timer.elapsed": 1, - "i": 250, - "do": 62, - "<": 42, - "-": 345, - "halt": 5, - "proc": 44, - "arr": 32, - "low": 12, - "arr.domain.low": 1, - "high": 14, - "arr.domain.high": 1, - "where": 2, - "arr.rank": 2, - "{": 122, - "bubbleSort": 2, - "return": 15, - "}": 120, - "const": 59, - "pivotVal": 9, - "findPivot": 2, - "pivotLoc": 3, - "partition": 2, - "serial": 1, - "cobegin": 1, + "e": 84, "+": 334, - "mid": 7, + "-": 345, + "]": 920, + "numbodies": 5, + "bodies.numElements": 1, + "proc": 44, + "main": 3, + "initSun": 2, + "writef": 2, + "energy": 5, + "for": 36, + "do": 62, + "advance": 2, + "p": 10, + "reduce": 2, + "b": 4, + "in": 76, + "b.v": 2, + "b.mass": 1, + ".v": 1, "/": 26, - "<=>": 7, - "ilo": 9, - "ihi": 6, - "while": 4, - "low..high": 2, + "dt": 14, + "i": 250, "j": 25, - "console": 1, + "updateVelocities": 2, + "inline": 5, + "ref": 19, + "b1": 2, + "b2": 2, + "dpos": 4, + "b1.pos": 2, + "b2.pos": 2, + "mag": 3, + "sqrt": 10, + "sumOfSquares": 4, + "**3": 1, + "b1.v": 2, + "b2.mass": 2, + "b2.v": 1, + "b1.mass": 3, + "b.pos": 1, + "return": 15, + "x": 111, + "**2": 6, + "use": 5, "BlockDist": 2, "CyclicDist": 1, "BlockCycDist": 1, @@ -15707,9 +16577,11 @@ "Block": 4, "boundingBox": 2, "BA": 3, + "int": 21, "forall": 43, "ba": 4, "here.id": 7, + "writeln": 53, "MyLocaleView": 5, "#numLocales": 1, "MyLocales": 5, @@ -15734,20 +16606,22 @@ "RA": 11, "ra": 4, "RA.numElements": 1, + "A": 13, "i*100": 1, "on": 7, "here": 3, "LocaleSpace.high": 3, "nl1": 2, "nl2": 2, + "if": 98, "numLocales": 5, + "then": 80, "else": 16, "numLocales/2": 1, "#nl1": 2, "#nl2": 1, "#nl1*nl2": 1, "DimReplicatedBlockcyclicSpace": 2, - "new": 7, "BlockCyclicDim": 1, "lowIdx": 1, "blockSize": 1, @@ -15755,6 +16629,69 @@ "locId1": 2, "drba": 2, "Helper": 2, + "print": 5, + "to": 9, + "the": 10, + "console": 1, + "Random": 1, + "Time": 2, + "random": 1, + "number": 1, + "generation": 1, + "and": 4, + "Timer": 2, + "class": 1, + "timer": 2, + "time": 9, + "sort": 1, + "**15": 1, + "size": 1, + "of": 3, + "array": 4, + "be": 2, + "sorted": 1, + "thresh": 6, + "recursive": 1, + "depth": 1, + "serialize": 1, + "verbose": 7, + "out": 1, + "this": 2, + "many": 1, + "elements": 3, + "timing": 6, + "bool": 1, + "true": 5, + "false": 4, + "disable": 1, + "numbers": 1, + "fillRandom": 1, + "timer.start": 1, + "pqsort": 4, + "timer.stop": 1, + "timer.elapsed": 1, + "<": 42, + "halt": 5, + "arr": 32, + "low": 12, + "arr.domain.low": 1, + "high": 14, + "arr.domain.high": 1, + "where": 2, + "arr.rank": 2, + "bubbleSort": 2, + "pivotVal": 9, + "findPivot": 2, + "pivotLoc": 3, + "partition": 2, + "serial": 1, + "cobegin": 1, + "mid": 7, + "<=>": 7, + "ilo": 9, + "ihi": 6, + "while": 4, + "low..high": 2, "get": 3, "routines": 1, "benchmarking": 1, @@ -15774,12 +16711,9 @@ "&&": 9, "luleshInit.filename": 1, "initialEnergy": 2, - "e": 84, "initial": 1, - "energy": 5, "value": 1, "showProgress": 3, - "dt": 14, "values": 1, "each": 1, "step": 1, @@ -15787,7 +16721,6 @@ "various": 1, "info": 1, "doTiming": 4, - "main": 3, "timestep": 1, "loop": 2, "printCoords": 2, @@ -15826,7 +16759,6 @@ "#numNodes": 1, "Elems": 45, "Nodes": 16, - "x": 111, "y": 107, "z": 107, "nodesPerElem": 6, @@ -15859,7 +16791,6 @@ "qqc_monoq": 2, "qqc": 1, "qqc2": 1, - "*": 260, "qqc**2": 1, "eosvmax": 14, "eosvmin": 9, @@ -15882,7 +16813,6 @@ "iter": 3, "yield": 3, "elemBC": 16, - "p": 10, "pressure": 1, "q": 13, "ql": 3, @@ -15890,7 +16820,6 @@ "term": 2, "qq": 3, "quadratic": 1, - "v": 9, "//relative": 1, "volume": 21, "vnew": 9, @@ -15908,7 +16837,6 @@ "length": 2, "ss": 2, "elemMass": 4, - "mass": 12, "xd": 8, "yd": 8, "zd": 8, @@ -15932,7 +16860,6 @@ "courant": 1, "constraint": 2, "dthydro": 1, - "change": 2, "cycle": 5, "iteration": 1, "count": 1, @@ -15974,7 +16901,6 @@ "x_local": 11, "y_local": 11, "z_local": 11, - "*real": 40, "localizeNeighborNodes": 6, "CalcElemVolume": 3, "neighbor": 2, @@ -15991,13 +16917,9 @@ "check": 3, "loc": 4, "maxloc": 1, - "reduce": 2, "zip": 1, "freeSurface": 3, "initFreeSurface": 1, - "b": 4, - "inline": 5, - "ref": 19, "noi": 4, "TripleProduct": 4, "x1": 1, @@ -16144,7 +17066,6 @@ "gz": 5, "area": 2, "charLength": 2, - "sqrt": 10, "CalcElemVelocityGradient": 2, "xvel": 25, "yvel": 25, @@ -16348,66 +17269,20 @@ "ssc": 18, "vhalf**2": 1, "q_tilde": 4, - "**2": 6, "enewc": 2, "pnewc": 2, "ssTmp": 4, "elemToNodesTuple": 1, "title": 2, - "string": 1, - "pi": 1, - "solarMass": 7, - "pi**2": 1, - "daysPerYear": 13, - "record": 1, - "body": 6, - "pos": 5, - "does": 1, - "not": 1, - "after": 1, - "it": 1, - "is": 1, - "up": 1, - "bodies": 8, - "numbodies": 5, - "bodies.numElements": 1, - "initSun": 2, - "writef": 2, - "advance": 2, - "b.v": 2, - "b.mass": 1, - ".v": 1, - "updateVelocities": 2, - "b1": 2, - "b2": 2, - "dpos": 4, - "b1.pos": 2, - "b2.pos": 2, - "mag": 3, - "sumOfSquares": 4, - "**3": 1, - "b1.v": 2, - "b2.mass": 2, - "b2.v": 1, - "b1.mass": 3, - "b.pos": 1 + "string": 1 }, "Cirru": { - "require": 1, - "./stdio.cr": 1, - "print": 38, - "string": 7, - "a": 22, - "int": 36, - "float": 1, - "bool": 6, - "true": 1, - "false": 1, - "yes": 1, - "no": 1, "set": 12, + "a": 22, "(": 20, + "int": 36, ")": 20, + "print": 38, "self": 2, "c": 9, "child": 1, @@ -16419,53 +17294,300 @@ "-": 4, "code": 4, "eval": 2, + "array": 14, + "string": 7, + "require": 1, + "./stdio.cr": 1, "f": 3, "block": 1, "b": 7, "call": 1, "nothing": 1, "map": 8, - "array": 14, "container": 3, - "m": 3 + "m": 3, + "float": 1, + "bool": 6, + "true": 1, + "false": 1, + "yes": 1, + "no": 1 + }, + "Clean": { + "definition": 4, + "module": 9, + "GenMap": 4, + "import": 10, + "StdGeneric": 4, + "generic": 2, + "gMap": 19, + "a": 55, + "b": 7, + ".a": 11, + "-": 66, + ".b": 4, + "derive": 4, + "c": 2, + "UNIT": 2, + "PAIR": 4, + "EITHER": 3, + "CONS": 4, + "FIELD": 4, + "OBJECT": 4, + "{": 17, + "}": 17, + "[": 93, + "]": 92, + "(": 132, + ")": 134, + "monadicSemantics": 1, + "StdEnv": 4, + "GenHylo": 2, + "Op": 6, + "Plus": 2, + "|": 48, + "Minus": 2, + "Times": 2, + "Rem": 3, + "Equal": 2, + "LessThan": 3, + "Var": 9, + "String": 1, + "ExpP": 3, + "Int": 33, + "Exp": 5, + "Fix": 9, + "StmP": 3, + "Assign": 3, + "If": 3, + "While": 3, + "Seq": 3, + "Cont": 4, + "Stm": 2, + "Env": 3, + "Sem": 11, + "empty": 2, + "v": 12, + ".": 6, + "rtn": 4, + "i": 14, + "e.": 4, + "e": 16, + "infixl": 4, + "x": 36, + "y": 11, + "e2": 2, + ".y": 1, + "_.": 1, + "read": 4, + "write": 3, + "w.": 1, + "if": 5, + "w": 4, + "class": 1, + "sem": 9, + "operator": 8, + "+": 14, + "rem": 2, + "<": 3, + "instance": 14, + "where": 12, + "cata": 4, + "phi": 12, + "n": 8, + "op": 5, + "v1.": 1, + "return": 1, + "o": 6, + "v1": 1, + "s1": 4, + "s2": 4, + "stm": 2, + "s": 49, + "//": 4, + "Here": 1, + "the": 3, + "*finally*": 1, + "pays": 1, + "off": 1, + "D": 1, + "int": 2, + "In": 9, + "var": 6, + "o2": 7, + "assign": 4, + "ifte": 1, + "while": 2, + "seq": 3, + "cont": 1, + "pEuclides": 2, + "Start": 3, + "fst": 1, + "program": 2, + "start": 4, + "_": 5, + "infixr": 1, + "f": 26, + "g": 10, + "implementation": 3, + "streams": 2, + "zero": 4, + "Real": 28, + "//Infinite": 1, + "row": 1, + "of": 3, + "zeroes": 1, + "represented": 1, + "as": 1, + "list": 3, + "to": 2, + "ease": 1, + "computation": 1, + "one": 5, + "t": 23, + "*": 13, + "/": 3, + "invert": 5, + "X": 3, + "/s": 2, + "pow": 5, + "shuffle": 6, + "s*t": 1, + "stack": 2, + "Stack": 28, + "newStack": 3, + "push": 3, + "pushes": 3, + "pop": 4, + "popn": 3, + "top": 4, + "topn": 3, + "elements": 3, + "count": 3, + "fsieve": 1, + "StdClass": 2, + ";": 1, + "RWS": 1, + "StdInt": 2, + "StdReal": 1, + "NrOfPrimes": 3, + "The": 1, + "sieve": 1, + "algorithm": 1, + "generate": 1, + "an": 1, + "infinite": 1, + "all": 1, + "primes.": 1, + "Primes": 3, + "pr": 6, + "Sieve": 8, + "prs": 6, + "IsPrime": 4, + "toInt": 1, + "sqrt": 1, + "toReal": 1, + "Bool": 1, + "r": 2, + "bd": 3, + "True": 1, + "False": 1, + "Select": 2, + "is": 1, + "used": 1, + "get": 1, + "th": 1, + "prime": 1, + "from": 1, + "primes": 1, + "generated": 1, + "by": 1, + "Primes.": 1, + "*/": 1, + "Out": 1, + "u": 6, + "<=>": 1, + "hylo": 1, + ".f": 1, + "ana": 1, + "StdArray": 1, + "StdFunc": 1, + "_Array": 1, + "fx": 2, + "fy": 2, + "fl": 3, + "fr": 3, + "LEFT": 2, + "RIGHT": 2, + "xs": 4, + "mapArray": 2, + "abort": 2, + "drop": 1, + "take": 1, + "length": 1 }, "Clojure": { "(": 258, - "deftest": 1, - "function": 1, - "-": 70, - "tests": 1, - "is": 7, - "count": 5, + "defn": 14, + "rand": 2, "[": 67, "]": 67, - ")": 259, - "false": 6, - "not": 9, - "true": 5, - "contains": 1, - "{": 17, - "foo": 6, - "bar": 4, - "}": 17, - "select": 1, - "keys": 2, - "baz": 4, - "vals": 1, - "filter": 2, - "fn": 3, - "x": 8, - "rem": 2, - "defn": 14, - "prime": 2, + "scm*": 1, "n": 9, + "random": 1, + "-": 70, + "real": 1, + ")": 259, + "clj": 1, + "ns": 2, + "c2.svg": 2, + "use": 3, + "c2.core": 2, + "only": 4, + "unify": 2, + "c2.maths": 2, + "Pi": 2, + "Tau": 2, + "radians": 2, + "per": 2, + "degree": 2, + "sin": 2, + "cos": 2, + "mean": 2, + "cljs": 3, + "require": 2, + "c2.dom": 1, + "as": 1, + "dom": 1, + ";": 353, + "Stub": 1, + "for": 4, + "float": 2, + "fn": 3, + "which": 2, + "does": 1, + "not": 9, + "exist": 1, + "on": 11, + "runtime": 1, + "def": 4, + "identity": 1, + "xy": 1, + "coordinates": 7, + "cond": 2, + "and": 8, + "vector": 1, + "count": 5, + "map": 3, + "x": 8, + "y": 1, + "prime": 2, "any": 3, "zero": 2, - "map": 3, "#": 14, + "rem": 2, "%": 6, "range": 3, - ";": 353, "while": 3, "stops": 1, "at": 2, @@ -16476,21 +17598,9 @@ "that": 1, "evaluates": 1, "to": 2, + "false": 6, "like": 1, "take": 1, - "for": 4, - "html": 2, - "head": 2, - "meta": 3, - "charset": 2, - "link": 2, - "rel": 2, - "href": 6, - "script": 1, - "src": 1, - "body": 2, - "div.nav": 1, - "p": 4, "defprotocol": 1, "ISound": 4, "sound": 5, @@ -16501,10 +17611,6 @@ "extend": 1, "type": 8, "default": 1, - "rand": 2, - "scm*": 1, - "random": 1, - "real": 1, "into": 3, "array": 3, "aseq": 8, @@ -16522,18 +17628,43 @@ "recur": 1, "next": 1, "inc": 2, + "html": 2, + "head": 2, + "meta": 3, + "{": 17, + "charset": 2, + "}": 17, + "link": 2, + "rel": 2, + "href": 6, + "script": 1, + "src": 1, + "body": 2, + "div.nav": 1, + "p": 4, + "deftest": 1, + "function": 1, + "tests": 1, + "is": 7, + "true": 5, + "contains": 1, + "foo": 6, + "bar": 4, + "select": 1, + "keys": 2, + "baz": 4, + "vals": 1, + "filter": 2, "Copyright": 1, "c": 1, "Alan": 1, "Dipert": 1, - "and": 8, "Micha": 1, "Niskin.": 1, "All": 1, "rights": 1, "reserved.": 1, "The": 1, - "use": 3, "distribution": 1, "terms": 2, "this": 6, @@ -16547,7 +17678,6 @@ "http": 2, "//opensource.org/licenses/eclipse": 1, "php": 1, - "which": 2, "can": 1, "be": 2, "found": 1, @@ -16578,7 +17708,6 @@ "clojure": 1, "exclude": 1, "nth": 2, - "require": 2, "tailrecursion.hoplon.reload": 1, "reload": 2, "all": 5, @@ -16595,7 +17724,6 @@ "route": 11, "state": 15, "editing": 13, - "def": 4, "mapvi": 2, "comp": 1, "vec": 2, @@ -16604,7 +17732,6 @@ "v": 15, "z": 4, "dec": 1, - "cond": 2, "neg": 1, "pop": 1, "pos": 1, @@ -16654,7 +17781,6 @@ "header": 1, "h1": 1, "form": 2, - "on": 11, "submit": 2, "val": 4, "value": 3, @@ -16688,290 +17814,32 @@ "footer": 2, "span": 2, "strong": 1, - "selected": 3, - "clj": 1, - "ns": 2, - "c2.svg": 2, - "c2.core": 2, - "only": 4, - "unify": 2, - "c2.maths": 2, - "Pi": 2, - "Tau": 2, - "radians": 2, - "per": 2, - "degree": 2, - "sin": 2, - "cos": 2, - "mean": 2, - "cljs": 3, - "c2.dom": 1, - "as": 1, - "dom": 1, - "Stub": 1, - "float": 2, - "does": 1, - "exist": 1, - "runtime": 1, - "identity": 1, - "xy": 1, - "coordinates": 7, - "vector": 1, - "y": 1 + "selected": 3 }, "CoffeeScript": { - "dnsserver": 1, - "require": 21, - "exports.Server": 1, - "class": 11, - "Server": 2, - "extends": 6, - "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, - "constructor": 6, - "(": 193, - "domain": 6, - "@rootAddress": 2, - ")": 196, - "-": 107, - "super": 4, - "@domain": 3, - "domain.toLowerCase": 1, - "@soa": 2, - "createSOA": 2, - "@on": 1, - "@handleRequest": 1, - "handleRequest": 1, - "req": 4, - "res": 3, - "question": 5, - "req.question": 1, - "subdomain": 10, - "@extractSubdomain": 1, - "question.name": 3, - "if": 102, - "and": 20, - "isARequest": 2, - "res.addRR": 2, - "subdomain.getAddress": 1, - "else": 53, - ".isEmpty": 1, - "isNSRequest": 2, - "true": 8, - "res.header.rcode": 1, - "res.send": 1, - "extractSubdomain": 1, - "name": 5, - "Subdomain.extract": 1, - "question.type": 2, - "is": 36, - "question.class": 2, - "mname": 2, - "rname": 2, - "serial": 2, - "parseInt": 5, - "new": 12, - "Date": 1, - ".getTime": 1, - "/": 44, - "refresh": 2, - "retry": 2, - "expire": 2, - "minimum": 2, - "dnsserver.createSOA": 1, - "exports.createServer": 1, - "address": 4, - "exports.Subdomain": 1, - "Subdomain": 4, - "@extract": 1, - "return": 29, - "unless": 19, - "name.toLowerCase": 1, - "offset": 4, - "name.length": 1, - "domain.length": 1, - "name.slice": 2, - "then": 24, - "null": 15, - "@for": 2, - "IPAddressSubdomain.pattern.test": 1, - "IPAddressSubdomain": 2, - "EncodedSubdomain.pattern.test": 1, - "EncodedSubdomain": 2, - "@subdomain": 1, - "@address": 2, - "@labels": 2, - ".split": 1, - "[": 134, - "]": 134, - "@length": 3, - "@labels.length": 1, - "isEmpty": 1, - "getAddress": 3, - "@pattern": 2, - "///": 12, - "|": 21, - ".": 13, - "{": 31, - "}": 34, - "@labels.slice": 1, - ".join": 2, - "a": 2, - "z0": 2, - "decode": 2, - "exports.encode": 1, - "encode": 1, - "ip": 2, - "value": 25, - "for": 14, - "byte": 2, - "index": 4, - "in": 32, - "ip.split": 1, - "+": 31, - "<<": 1, - "*": 21, - ".toString": 3, - "PATTERN": 1, - "exports.decode": 1, - "string": 9, - "PATTERN.test": 1, - "i": 8, - "ip.push": 1, - "&": 4, - "xFF": 1, - "ip.join": 1, "#": 35, - "async": 1, - "fs": 2, - "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, - "callback": 35, - "@state": 11, - "@readyCallbacks.push": 1, - "@initialize": 2, - "quit": 1, - "@quitCallbacks.push": 1, - "@terminate": 2, - "queryRestartFile": 1, - "fs.stat": 1, - "err": 20, - "stats": 1, - "@mtime": 5, - "false": 4, - "lastMtime": 2, - "stats.mtime.getTime": 1, - "isnt": 7, - "setPoolRunOnceFlag": 1, - "@statCallbacks.length": 1, - "alwaysRestart": 2, - "@pool.runOnce": 1, - "statCallback": 2, - "@statCallbacks.push": 1, - "loadScriptEnvironment": 1, - "env": 18, - "async.reduce": 1, - "filename": 6, - "script": 7, - "scriptExists": 2, - "loadRvmEnvironment": 1, - "rvmrcExists": 2, - "rvm": 1, - "@configuration.rvmPath": 1, - "rvmExists": 2, - "libexecPath": 1, - "before": 2, - ".trim": 1, - "loadEnvironment": 1, - "@queryRestartFile": 2, - "@loadScriptEnvironment": 1, - "@configuration.env": 1, - "@loadRvmEnvironment": 1, - "initialize": 1, - "@quit": 3, - "@loadEnvironment": 1, - "@logger.error": 3, - "err.message": 2, - "@pool": 2, - "nack.createPool": 1, - "size": 1, - ".POW_WORKERS": 1, - "@configuration.workers": 1, - "idle": 1, - ".POW_TIMEOUT": 1, - "@configuration.timeout": 1, - "@pool.stdout": 1, - "line": 6, - "@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, - "next": 3, - "resume": 2, - "@setPoolRunOnceFlag": 1, - "@restartIfNecessary": 1, - "req.proxyMetaVariables": 1, - "SERVER_PORT": 1, - "@configuration.dstPort.toString": 1, - "try": 3, - "@pool.proxy": 1, - "finally": 2, - "restart": 1, - "restartIfNecessary": 1, - "mtimeChanged": 2, - "@restart": 1, - "writeRvmBoilerplate": 1, - "powrc": 3, - "boilerplate": 2, - "@constructor.rvmBoilerplate": 1, - "fs.readFile": 1, - "contents": 2, - "contents.indexOf": 1, - "fs.writeFile": 1, - "@rvmBoilerplate": 1, + "{": 32, "Rewriter": 2, "INVERSES": 2, + "}": 35, + "require": 21, "count": 5, "starts": 1, "compact": 1, "last": 3, "exports.Lexer": 1, + "class": 11, "Lexer": 3, "tokenize": 1, + "(": 200, "code": 20, "opts": 1, + ")": 203, + "-": 114, + "if": 103, "WHITESPACE.test": 1, "code.replace": 1, + "/": 44, "r/g": 1, ".replace": 3, "TRAILING_SPACES": 2, @@ -16997,10 +17865,13 @@ "under": 1, "outdentation": 1, "@indents": 1, + "[": 136, + "]": 136, "stack": 4, "all": 1, "levels.": 1, "@ends": 1, + "for": 14, "pairing": 1, "up": 1, "tokens.": 1, @@ -17008,10 +17879,16 @@ "Stream": 1, "parsed": 1, "tokens": 5, + "in": 32, "form": 1, + "value": 25, + "line": 6, + ".": 13, + "i": 8, "while": 4, "@chunk": 9, "i..": 1, + "+": 31, "@identifierToken": 1, "@commentToken": 1, "@whitespaceToken": 1, @@ -17026,15 +17903,20 @@ "@error": 10, "tag": 33, "@ends.pop": 1, + "return": 29, "opts.rewrite": 1, + "is": 36, "off": 1, + "new": 12, ".rewrite": 1, "identifierToken": 1, + "unless": 19, "match": 23, "IDENTIFIER.exec": 1, "input": 1, "id": 16, "colon": 3, + "and": 20, "@tag": 3, "@token": 12, "id.length": 1, @@ -17046,10 +17928,12 @@ "COFFEE_KEYWORDS": 1, "id.toUpperCase": 1, "LINE_BREAK": 2, + "else": 53, "@seenFor": 4, "yes": 5, "UNARY": 4, "RELATION": 3, + "isnt": 7, "no": 3, "@value": 1, "@tokens.pop": 1, @@ -17061,6 +17945,7 @@ "COFFEE_ALIASES": 1, "switch": 7, "when": 16, + "then": 24, "input.length": 1, "numberToken": 1, "NUMBER.exec": 1, @@ -17076,11 +17961,14 @@ "octalLiteral": 2, "o": 4, "/.exec": 2, + "parseInt": 5, + ".toString": 3, "binaryLiteral": 2, "b": 1, "stringToken": 1, "@chunk.charAt": 3, "SIMPLESTR.exec": 1, + "string": 9, "MULTILINER": 2, "@balancedString": 1, "<": 6, @@ -17088,6 +17976,8 @@ "@interpolateString": 2, "@escapeLines": 1, "octalEsc": 1, + "|": 21, + "*": 21, "string.length": 1, "heredocToken": 1, "HEREDOC.exec": 1, @@ -17097,6 +17987,7 @@ "doc": 11, "@sanitizeHeredoc": 2, "indent": 7, + "null": 15, "<=>": 1, "indexOf": 1, "interpolateString": 1, @@ -17114,10 +18005,13 @@ "comment": 2, "here": 3, "herecomment": 4, + "true": 8, "Array": 1, + ".join": 2, "comment.length": 1, "jsToken": 1, "JSTOKEN.exec": 1, + "script": 7, "script.length": 1, "regexToken": 1, "HEREGEX.exec": 1, @@ -17169,6 +18063,7 @@ "attempt.length": 1, "indent.length": 1, "doc.replace": 2, + "///": 12, "///g": 1, "n/": 1, "tagParameters": 1, @@ -17194,6 +18089,8 @@ "OUTDENT": 1, "THROW": 1, "EXTENDS": 1, + "&": 4, + "false": 4, "delete": 1, "typeof": 2, "instanceof": 2, @@ -17201,7 +18098,11 @@ "break": 1, "debugger": 1, "do": 2, + "try": 3, "catch": 2, + "finally": 2, + "extends": 6, + "super": 4, "undefined": 1, "until": 1, "loop": 1, @@ -17253,7 +18154,7 @@ "range": 1, "splat": 1, "WHITESPACE": 1, - "###": 3, + "###": 4, "s*#": 1, "##": 1, ".*": 1, @@ -17286,6 +18187,170 @@ "BOOL": 1, "NOT_REGEX.concat": 1, "CALLABLE.concat": 1, + "opposite": 2, + "square": 4, + "x": 6, + "list": 2, + "math": 1, + "root": 1, + "Math.sqrt": 1, + "cube": 1, + "race": 1, + "winner": 2, + "runners...": 1, + "print": 1, + "runners": 1, + "alert": 4, + "elvis": 1, + "cubes": 1, + "math.cube": 1, + "num": 2, + "###*": 1, + "@cjsx": 1, + "React.DOM": 1, + "define": 1, + "React": 1, + "ExampleStore": 3, + "ExampleActions": 1, + "ReactExampleTable": 1, + "ReactExampleComponent": 1, + "React.createClass": 1, + "mixins": 1, + "ListenMixin": 1, + "getInitialState": 1, + "rows": 3, + "ExampleStore.getRows": 2, + "meta": 3, + "ExampleStore.getMeta": 2, + "componentWillMount": 1, + "@listenTo": 1, + "componentDidMount": 1, + "ExampleActions.getExampleData": 1, + "onStoreChange": 1, + "this.isMounted": 1, + "@setState": 1, + "componentWillUnmount": 1, + "@stopListening": 1, + "render": 1, + "
": 1, + "className=": 1, + "
": 2, + "": 1, + "@state.title": 1, + "": 1, + "": 1, + "rows=": 1, + "meta=": 1, + "
": 1, + "async": 1, + "fs": 2, + "nack": 1, + "bufferLines": 3, + "pause": 2, + "sourceScriptEnv": 3, + "join": 8, + "exists": 5, + "basename": 2, + "resolve": 2, + "module.exports": 1, + "RackApplication": 1, + "constructor": 6, + "@configuration": 1, + "@root": 8, + "@firstHost": 1, + "@logger": 1, + "@configuration.getLogger": 1, + "@readyCallbacks": 3, + "@quitCallbacks": 3, + "@statCallbacks": 3, + "ready": 1, + "callback": 35, + "@state": 11, + "@readyCallbacks.push": 1, + "@initialize": 2, + "quit": 1, + "@quitCallbacks.push": 1, + "@terminate": 2, + "queryRestartFile": 1, + "fs.stat": 1, + "err": 20, + "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, + "filename": 6, + "scriptExists": 2, + "loadRvmEnvironment": 1, + "rvmrcExists": 2, + "rvm": 1, + "@configuration.rvmPath": 1, + "rvmExists": 2, + "libexecPath": 1, + "before": 2, + ".trim": 1, + "loadEnvironment": 1, + "@queryRestartFile": 2, + "@loadScriptEnvironment": 1, + "@configuration.env": 1, + "@loadRvmEnvironment": 1, + "initialize": 1, + "@quit": 3, + "@loadEnvironment": 1, + "@logger.error": 3, + "err.message": 2, + "@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": 3, + "boilerplate": 2, + "@constructor.rvmBoilerplate": 1, + "fs.readFile": 1, + "contents": 2, + "contents.indexOf": 1, + "fs.writeFile": 1, + "@rvmBoilerplate": 1, "path": 3, "parser": 1, "vm": 1, @@ -17370,35 +18435,104 @@ "setInput": 1, "upcomingInput": 1, "parser.yy": 1, + "console.log": 1, "Animal": 3, "@name": 2, "move": 3, "meters": 2, - "alert": 4, "Snake": 2, "Horse": 2, "sam": 1, "tom": 1, "sam.move": 1, "tom.move": 1, - "console.log": 1, - "opposite": 2, - "square": 4, - "x": 6, - "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, + "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": 10, + "@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": 4, + "@extract": 1, + "name.toLowerCase": 1, + "offset": 4, + "name.length": 1, + "domain.length": 1, + "name.slice": 2, + "@for": 2, + "IPAddressSubdomain.pattern.test": 1, + "IPAddressSubdomain": 2, + "EncodedSubdomain.pattern.test": 1, + "EncodedSubdomain": 2, + "@subdomain": 1, + "@address": 2, + "@labels": 2, + ".split": 1, + "@length": 3, + "@labels.length": 1, + "isEmpty": 1, + "getAddress": 3, + "@pattern": 2, + "@labels.slice": 1, + "a": 2, + "z0": 2, + "decode": 2, + "exports.encode": 1, + "encode": 1, + "ip": 2, + "byte": 2, + "index": 4, + "ip.split": 1, + "<<": 1, + "PATTERN": 1, + "exports.decode": 1, + "PATTERN.test": 1, + "ip.push": 1, + "xFF": 1, + "ip.join": 1, "CoffeeScript": 1, "CoffeeScript.require": 1, "CoffeeScript.eval": 1, @@ -17481,28 +18615,6 @@ "comment": 1 }, "ColdFusion CFC": { - "": 1, - "": 2, - "name=": 4, - "access=": 2, - "returntype=": 2, - "": 2, - "type=": 2, - "required=": 2, - "": 2, - "this": 10, - "myVariable": 1, - "arguments": 2, - "arg1": 4, - "": 1, - "": 2, - "": 1, - "structKeyExists": 1, - "writeoutput": 1, - "Argument": 1, - "exists": 1, - "": 1, - "": 1, "component": 1, "extends": 1, "singleton": 1, @@ -17535,6 +18647,7 @@ "session.colorTestVar": 1, "application.colorTestVar": 1, "return": 11, + "this": 10, "}": 22, "clearAllCaches": 1, "boolean": 6, @@ -17638,6 +18751,7 @@ "closureTest": 1, "methodCall": 1, "param1": 2, + "arg1": 4, "arg2": 2, "StructliteralTest": 1, "foo": 3, @@ -17650,7 +18764,27 @@ "null": 2, "]": 2, "last": 1, - "arrayliteralTest": 1 + "arrayliteralTest": 1, + "": 1, + "": 2, + "name=": 4, + "access=": 2, + "returntype=": 2, + "": 2, + "type=": 2, + "required=": 2, + "": 2, + "myVariable": 1, + "arguments": 2, + "": 1, + "": 2, + "": 1, + "structKeyExists": 1, + "writeoutput": 1, + "Argument": 1, + "exists": 1, + "": 1, + "": 1 }, "Common Lisp": { ";": 162, @@ -17984,146 +19118,71 @@ }, "Component Pascal": { "MODULE": 2, - "ObxControls": 1, + "ObxFact": 1, ";": 123, "IMPORT": 2, - "Dialog": 1, - "Ports": 1, - "Properties": 1, - "Views": 1, - "CONST": 1, - "beginner": 5, - "advanced": 3, - "expert": 1, - "guru": 2, - "TYPE": 1, - "View": 6, - "POINTER": 2, - "TO": 2, - "RECORD": 2, - "(": 91, - "Views.View": 2, - ")": 94, - "size": 1, - "INTEGER": 10, - "END": 31, - "VAR": 9, - "data*": 1, - "class*": 1, - "list*": 1, - "Dialog.List": 1, - "width*": 1, - "predef": 12, - "ARRAY": 2, - "OF": 2, - "PROCEDURE": 12, - "SetList": 4, - "BEGIN": 13, - "IF": 11, - "data.class": 5, - "THEN": 12, - "data.list.SetLen": 3, - "data.list.SetItem": 11, - "ELSIF": 1, - "ELSE": 3, - "v": 6, - "CopyFromSimpleView": 2, - "source": 2, - "v.size": 10, - ".size": 1, - "Restore": 2, - "f": 1, - "Views.Frame": 1, - "l": 1, - "t": 1, - "r": 7, - "b": 1, - "[": 13, - "]": 13, - "f.DrawRect": 1, - "Ports.fill": 1, - "Ports.red": 1, - "HandlePropMsg": 2, - "msg": 2, - "Views.PropMessage": 1, - "WITH": 1, - "Properties.SizePref": 1, - "DO": 4, - "msg.w": 1, - "msg.h": 1, - "ClassNotify*": 1, - "op": 4, - "from": 2, - "to": 5, - "Dialog.changed": 2, - "OR": 4, - "&": 8, - "data.list.index": 3, - "data.width": 4, - "Dialog.Update": 2, - "data": 2, - "Dialog.UpdateList": 1, - "data.list": 1, - "ClassNotify": 1, - "ListNotify*": 1, - "ListNotify": 1, - "ListGuard*": 1, - "par": 2, - "Dialog.Par": 2, - "par.disabled": 1, - "ListGuard": 1, - "WidthGuard*": 1, - "par.readOnly": 1, - "#": 3, - "WidthGuard": 1, - "Open*": 1, - "NEW": 2, - "*": 1, - "Ports.mm": 1, - "Views.OpenAux": 1, - "Open": 1, - "ObxControls.": 1, - "ObxFact": 1, "Stores": 1, "Models": 1, "TextModels": 1, "TextControllers": 1, "Integers": 1, + "PROCEDURE": 12, "Read": 3, + "(": 91, + "r": 7, "TextModels.Reader": 2, + "VAR": 9, "x": 15, "Integers.Integer": 3, + ")": 94, "i": 17, "len": 5, "beg": 11, + "INTEGER": 10, "ch": 14, "CHAR": 3, "buf": 5, + "POINTER": 2, + "TO": 2, + "ARRAY": 2, + "OF": 2, + "BEGIN": 13, "r.ReadChar": 5, "WHILE": 3, "r.eot": 4, + "&": 8, "<=>": 1, + "DO": 4, "ReadChar": 1, + "END": 31, "ASSERT": 1, "eot": 1, "<": 8, + "OR": 4, "r.Pos": 2, "-": 1, "REPEAT": 3, "INC": 4, "UNTIL": 3, + "NEW": 2, "+": 1, "r.SetPos": 2, + "[": 13, + "]": 13, "X": 1, "Integers.ConvertFromString": 1, "Write": 3, "w": 4, "TextModels.Writer": 2, + "IF": 11, "Integers.Sign": 2, + "THEN": 12, "w.WriteChar": 3, "Integers.Digits10Of": 1, + "#": 3, "DEC": 1, "Integers.ThisDigit10": 1, + "ELSE": 3, "Compute*": 1, "end": 6, "n": 3, @@ -18155,718 +19214,827 @@ "w.SetAttr": 1, "Models.EndScript": 1, "Compute": 1, - "ObxFact.": 1 + "ObxFact.": 1, + "ObxControls": 1, + "Dialog": 1, + "Ports": 1, + "Properties": 1, + "Views": 1, + "CONST": 1, + "beginner": 5, + "advanced": 3, + "expert": 1, + "guru": 2, + "TYPE": 1, + "View": 6, + "RECORD": 2, + "Views.View": 2, + "size": 1, + "data*": 1, + "class*": 1, + "list*": 1, + "Dialog.List": 1, + "width*": 1, + "predef": 12, + "SetList": 4, + "data.class": 5, + "data.list.SetLen": 3, + "data.list.SetItem": 11, + "ELSIF": 1, + "v": 6, + "CopyFromSimpleView": 2, + "source": 2, + "v.size": 10, + ".size": 1, + "Restore": 2, + "f": 1, + "Views.Frame": 1, + "l": 1, + "t": 1, + "b": 1, + "f.DrawRect": 1, + "Ports.fill": 1, + "Ports.red": 1, + "HandlePropMsg": 2, + "msg": 2, + "Views.PropMessage": 1, + "WITH": 1, + "Properties.SizePref": 1, + "msg.w": 1, + "msg.h": 1, + "ClassNotify*": 1, + "op": 4, + "from": 2, + "to": 5, + "Dialog.changed": 2, + "data.list.index": 3, + "data.width": 4, + "Dialog.Update": 2, + "data": 2, + "Dialog.UpdateList": 1, + "data.list": 1, + "ClassNotify": 1, + "ListNotify*": 1, + "ListNotify": 1, + "ListGuard*": 1, + "par": 2, + "Dialog.Par": 2, + "par.disabled": 1, + "ListGuard": 1, + "WidthGuard*": 1, + "par.readOnly": 1, + "WidthGuard": 1, + "Open*": 1, + "*": 1, + "Ports.mm": 1, + "Views.OpenAux": 1, + "Open": 1, + "ObxControls.": 1 + }, + "Cool": { + "class": 7, + "List": 8, + "{": 27, + "isNil": 2, + "(": 30, + ")": 30, + "Bool": 5, + "true": 2, + "}": 27, + ";": 40, + "head": 2, + "Int": 15, + "abort": 2, + "tail": 2, + "self": 3, + "cons": 1, + "i": 7, + "new": 3, + "Cons": 2, + ".init": 1, + "inherits": 4, + "car": 3, + "-": 19, + "The": 2, + "element": 1, + "in": 3, + "this": 1, + "list": 2, + "cell": 1, + "cdr": 3, + "rest": 3, + "of": 2, + "the": 1, + "false": 3, + "init": 1, + "<": 9, + "Exhibit": 1, + "various": 1, + "language": 1, + "constructs": 1, + "Sample": 5, + "testCondition": 1, + "x": 3, + "if": 3, + "then": 3, + "else": 3, + "+": 1, + "*": 3, + "fi": 2, + "testLoop": 1, + "y": 7, + "while": 1, + "loop": 1, + "not": 1, + "condition": 1, + "/": 2, + "pool": 1, + "testAssign": 1, + "z": 2, + "testCase": 1, + "var": 2, + "SELF_TYPE": 2, + "io": 1, + "IO": 3, + "<->": 1, + "case": 1, + "a": 4, + "A": 3, + "io.out_string": 4, + "b": 3, + "B": 2, + "s": 1, + "o": 1, + "Object": 1, + "esac": 1, + "testLet": 1, + "let": 2, + "c": 2, + "Used": 1, + "to": 1, + "test": 1, + "subclasses": 1, + "C": 1, + "main": 2, + ".testLet": 1, + "example": 1, + "Main": 1, + "out_string": 1 }, "Coq": { "Require": 17, "Export": 10, - "Logic.": 1, + "Sorted.": 1, + "Mergesort.": 1, + "Basics.": 2, + "Module": 11, + "NatList.": 2, "Import": 11, "Playground1.": 5, - "Definition": 46, - "relation": 19, - "(": 1248, - "X": 191, - "Type": 86, - ")": 1249, - "-": 508, - "Prop.": 1, - "partial_function": 6, - "{": 39, - "}": 35, - "R": 54, - "forall": 248, - "x": 266, - "y1": 6, - "y2": 5, - "y2.": 3, - "Theorem": 115, - "next_nat_partial_function": 1, - "next_nat.": 1, - "Proof.": 208, - "unfold": 58, - "partial_function.": 5, - "intros": 258, - "P": 32, - "Q.": 2, - "inversion": 104, - "P.": 5, - "reflexivity.": 199, - "Qed.": 194, - "le_not_a_partial_function": 1, - "le": 1, - ".": 433, - "not.": 3, - "H.": 100, - "assert": 68, - "O": 98, - "S": 186, - "as": 77, - "Nonsense.": 4, - "Case": 51, - "apply": 340, - "H": 76, - "with": 223, - "O.": 5, - "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, - "a": 207, - "a.": 6, - "le_reflexive": 1, - "le.": 4, - "reflexive.": 1, - "n.": 44, - "transitive": 8, - "b": 89, - "c": 70, - "le_trans": 4, - "n": 369, - "m": 201, - "o": 25, - "Hnm": 3, - "Hmo.": 4, - "induction": 81, - "Hnm.": 3, - "IHHmo.": 1, - "lt_trans": 4, - "lt.": 2, - "transitive.": 1, - "le_S": 6, - "in": 221, - "Hm": 1, - "o.": 4, - "le_Sn_le": 2, - "<=>": 12, - "<": 76, - "m.": 21, - "le_S_n": 2, - "Sn_le_Sm__n_le_m.": 1, - "le_Sn_n": 5, - "Proof": 12, - "not": 1, - "IHn": 12, - "Qed": 23, - "TODO": 1, - "lt": 3, - "Hmo": 1, - "symmetric": 2, - "antisymmetric": 3, - "b.": 14, - "le_antisymmetric": 1, - "generalize": 13, - "dependent": 6, - "H1.": 31, - "H1": 18, - "H2.": 20, - "destruct": 94, - "Sn_le_Sm__n_le_m": 2, - "IHb": 1, - "rewrite": 241, - "|": 457, - "*.": 110, - "equivalence": 1, - "/": 41, - "order": 2, - "preorder": 1, - "le_order": 1, - "order.": 1, - "split.": 17, - "le_reflexive.": 1, - "le_antisymmetric.": 1, - "le_trans.": 1, "Inductive": 41, - "clos_refl_trans": 8, - "A": 113, - "rt_step": 1, - "y": 116, - "rt_refl": 1, - "rt_trans": 3, - "z": 14, - "z.": 6, - "next_nat_closure_is_le": 1, - "<->": 31, - "next_nat": 1, - "intro": 27, - "rt_refl.": 2, - "IHle.": 1, - "rt_step.": 2, - "nn.": 1, - "y.": 15, - "IHclos_refl_trans1.": 2, - "IHclos_refl_trans2.": 2, - "refl_step_closure": 11, - "Prop": 17, - "rsc_refl": 1, - "rsc_step": 4, - "Tactic": 9, - "Notation": 39, - "tactic": 9, - "first": 18, - "ident": 9, - ";": 375, - "[": 170, - "Case_aux": 38, - "]": 173, - "rsc_R": 2, - "r.": 3, - "rsc_refl.": 4, - "rsc_trans": 4, - "X.": 4, - "IHrefl_step_closure": 1, - "rtc_rsc_coincide": 1, - "IHrefl_step_closure.": 1, - "Lists.": 1, - "Basics.": 2, - "list": 78, - "nil": 46, - "cons": 26, - "Fixpoint": 36, - "length": 21, - "l": 379, + "natprod": 5, + "Type": 86, + "pair": 7, "nat": 108, + "-": 508, + "natprod.": 1, + "Definition": 46, + "fst": 3, + "(": 1248, + "p": 81, + ")": 1249, "match": 70, - "h": 14, - "t": 93, + "with": 223, + "|": 457, + "x": 266, + "y": 116, "end.": 52, - "app": 5, - "l1": 89, - "l2": 73, - "snoc": 9, - "v": 28, - "rev": 7, - "Implicit": 15, - "Arguments": 11, - "list123": 1, - "at": 17, - "level": 11, - "right": 2, - "associativity": 7, - "nil.": 2, - "..": 4, + "snd": 3, + "Notation": 39, + ".": 433, + "swap_pair": 1, + "Theorem": 115, + "surjective_pairing": 1, + "n": 369, "repeat": 11, "count": 7, + "r": 11, + "beq_nat": 24, + "v": 28, + "remove_one": 3, + "end": 16, "Example": 37, - "test_repeat1": 1, - "bool": 38, - "true": 68, - "nil_app": 1, - "l.": 26, - "rev_snoc": 1, + "test_remove_one1": 1, + "S": 186, + "O": 98, + "[": 170, + "]": 173, + "O.": 5, + "Proof.": 208, + "reflexivity.": 199, + "Qed.": 194, + "Fixpoint": 36, + "remove_all": 2, "s": 13, + "bag": 3, + "nil": 46, + "true": 68, + "false": 48, + "Case": 51, + "app_ass": 1, + "forall": 248, + "l1": 89, + "l2": 73, + "l3": 12, + "natlist": 7, + "+": 227, + "intros": 258, + "l3.": 1, + "induction": 81, + "as": 77, + "cons": 26, + "l": 379, + "remove_decreases_count": 1, + "ble_nat": 6, + "true.": 16, "s.": 4, "simpl.": 70, + "n.": 44, + "SCase": 24, + "rewrite": 241, + "ble_n_Sn.": 1, "IHs.": 2, - "snoc_with_append": 1, - "+": 227, - "v.": 1, - "l1.": 5, - "IHl1.": 1, - "prod": 3, - "Y": 38, - "pair": 7, - "Y.": 1, - "type_scope.": 1, - "fst": 3, - "p": 81, - "*": 59, - "snd": 3, - "combine": 3, - "lx": 4, - "ly": 4, - "_": 67, - "tx": 2, - "ty": 7, - "split": 14, - "tp": 2, - "end": 16, - "option": 6, + "natoption": 5, "Some": 21, "None": 9, + "natoption.": 1, "index": 3, - "xs": 7, + "a": 207, + "option_elim": 2, + "o": 25, + "d": 6, "hd_opt": 8, "test_hd_opt1": 2, + "None.": 2, "test_hd_opt2": 2, - "plus3": 2, - "plus": 10, - "prod_curry": 3, - "Z": 11, - "f": 108, - "prod_uncurry": 3, - "uncurry_uncurry": 1, - "curry_uncurry": 1, - "p.": 9, - "filter": 3, - "test": 4, + "option_elim_hd": 1, + "head": 1, + "l.": 26, + "destruct": 94, + "beq_natlist": 5, + "bool": 38, + "_": 67, + "v1": 7, + "r1": 2, + "v2": 2, + "r2": 2, "if": 10, "then": 9, "else": 9, - "countoddmembers": 1, - "beq_nat": 24, - "k": 7, - "fmostlytrue": 5, - "override": 5, - "ftrue": 1, - "false": 48, - "false.": 12, - "override_example1": 1, - "true.": 16, - "override_example2": 1, - "override_example3": 1, - "override_example4": 1, - "override_example": 1, - "constfun": 1, - "unfold_example_bad": 1, - "plus3.": 1, - "override_eq": 1, - "x.": 3, - "f.": 1, - "override.": 2, + "test_beq_natlist1": 1, + "test_beq_natlist2": 1, + "beq_natlist_refl": 1, + "<->": 31, "beq_nat_refl": 3, - "reflexivity": 16, - "override_neq": 1, - "x1": 11, - "x2": 3, - "k1": 5, - "k2": 4, - "x1.": 3, + "IHl.": 7, + "silly1": 1, + "m": 201, "eq1": 6, "eq2.": 9, + "apply": 340, + "eq2": 1, + "Qed": 23, + "silly2a": 1, + "q": 15, "eq1.": 5, - "eq_add_S": 2, - "eq.": 11, - "silly4": 1, - "silly5": 1, - "sillyex1": 1, - "j": 6, - "j.": 1, + "silly_ex": 1, + "evenb": 5, + "oddb": 5, + "silly3": 1, + "H.": 100, "symmetry.": 2, - "H0.": 24, - "silly6": 1, - "contra.": 19, - "silly7": 1, - "sillyex2": 1, - "beq_nat_eq": 2, - "SCase": 24, - "of": 4, - "assertion": 3, - "Hl.": 1, - "IHm": 2, - "eq": 4, - "simpl": 116, - "0": 5, - "SSCase": 3, - "IHl": 8, - "beq_nat_O_l": 1, - "beq_nat_O_r": 1, - "double_injective": 1, - "double": 2, - "IHl.": 7, - "fold_map": 2, - "fold": 1, - "fun": 17, - "total": 2, - "fold_map_correct": 1, - "map": 4, - "fold_map.": 1, - "forallb": 4, - "andb": 8, - "existsb": 3, - "orb": 8, - "existsb2": 2, - "negb": 10, - "existsb_correct": 1, - "existsb2.": 1, - "x0": 14, - "index_okx": 1, - "None.": 2, - "mumble": 5, - "mumble.": 1, - "grumble": 3, - "d": 6, - "e": 53, - "List": 2, - "Setoid": 1, - "Compare_dec": 1, - "Morphisms.": 2, - "ListNotations.": 1, - "Set": 4, - "Arguments.": 2, - "Section": 4, - "Permutation.": 2, - "Variable": 7, - "Type.": 3, - "Permutation": 38, - "perm_nil": 1, - "perm_skip": 1, - "Local": 7, + "rev_exercise": 1, + "rev_involutive.": 1, + "beq_nat_sym": 2, + "b": 89, + "b.": 14, + "IHn": 12, + "l1.": 5, + "End": 15, + "SfLib.": 2, + "STLC.": 1, + "ty": 7, + "ty_Bool": 10, + "ty_arrow": 7, + "ty.": 2, + "tm": 43, + "tm_var": 6, + "id": 7, + "tm_app": 7, + "tm_abs": 9, + "tm_true": 8, + "tm_false": 5, + "tm_if": 10, + "tm.": 3, + "Tactic": 9, + "tactic": 9, + "first": 18, + "ident": 9, + "c": 70, + ";": 375, + "Case_aux": 38, + "Id": 7, + "idB": 2, + "idBB": 2, + "idBBBB": 2, + "k": 7, + "value": 25, + "Prop": 17, + "v_abs": 1, + "T": 49, + "t": 93, + "t_true": 1, + "t_false": 1, + "tm_false.": 3, "Hint": 9, "Constructors": 3, - "Permutation_nil": 2, - "HF.": 3, - "remember": 12, - "@nil": 1, - "HF": 2, - "discriminate": 3, - "||": 1, - "auto.": 47, - "Permutation_nil_cons": 1, - "discriminate.": 2, - "Permutation_refl": 1, - "constructor.": 16, - "exact": 4, - "Permutation_sym": 1, - "Hperm": 7, - "perm_trans": 1, - "assumption.": 61, - "Permutation_trans": 4, - "Proper": 5, - "Logic.eq": 2, - "@Permutation": 5, - "iff": 1, - "@In": 1, - "red": 6, + "value.": 1, "subst": 7, - "eauto": 10, - "using": 18, - "Permutation_in.": 2, + "beq_id": 14, + "t2": 51, + "t1": 48, + "ST_App2": 1, + "t3": 6, + "where": 6, + "step": 9, + "stepmany": 4, + "refl_step_closure": 11, + "at": 17, + "level": 11, + "step.": 3, "Lemma": 51, - "Permutation_app_tail": 2, - "tl": 8, + "step_example3": 1, + "*": 59, + "idB.": 1, "eapply": 8, - "trivial.": 14, - "Permutation_app_head": 2, - "trivial": 15, - "app_comm_cons": 5, - "constructor": 6, - "assumption": 10, - "Permutation_app": 3, - "Hpermmm": 1, - "auto": 73, - "idtac": 1, - "try": 17, - "Global": 5, - "Instance": 7, - "@app": 1, - "now": 24, - "Permutation_app.": 1, - "Permutation_add_inside": 1, - "Permutation_cons_append": 1, - "Resolve": 5, - "Permutation_cons_append.": 3, - "Permutation_app_comm": 3, - "app_nil_r": 1, - "app_assoc": 2, - "Permutation_cons_app": 3, - "Permutation_middle": 2, - "Permutation_rev": 3, - "1": 1, - "@rev": 1, - "2": 1, - "Permutation_length": 2, - "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": 5, - "injection": 4, - "clear": 7, - "Permutation_nil_app_cons": 1, - "l3": 12, - "l4": 3, - "H0": 16, - "Hp": 5, - "IH": 3, - "intros.": 27, - "Permutation_middle.": 3, - "perm_swap.": 2, - "perm_swap": 1, - "eq_refl": 2, - "In_split": 1, - "Permutation_app_inv": 1, - "NoDup": 4, - "incl": 3, - "N.": 1, - "revert": 5, - "E": 7, - "Hx.": 5, - "Ha": 6, - "In": 6, - "Hy": 14, - "N": 1, - "Hal": 1, - "Hl": 1, - "exfalso.": 1, - "Hx": 20, - "NoDup_Permutation_bis": 2, - "inversion_clear": 6, - "H2": 12, - "intuition.": 2, - "Permutation_NoDup": 1, - "Permutation_map": 1, - "Hf": 15, - "Hy.": 3, - "subst.": 43, - "injective_bounded_surjective": 1, - "injective": 6, - "exists": 60, - "set": 1, - "seq": 2, - "in_map_iff.": 2, - "&": 21, - "in_seq": 4, - "arith": 4, - "NoDup_cardinal_incl": 1, - "injective_map_NoDup": 2, - "seq_NoDup": 1, - "map_length": 1, - "by": 7, - "in_map_iff": 1, - "nat_bijection_Permutation": 1, - "let": 3, - "BD.": 1, - "seq_NoDup.": 1, - "map_length.": 1, - "End": 15, - "Injection": 1, - "Permutation_alt": 1, - "Alternative": 1, - "characterization": 1, - "permutation": 43, - "via": 1, - "nth_error": 7, - "and": 1, - "nth": 2, - "Let": 8, - "adapt": 4, - "le_lt_dec": 9, - "pred": 3, - "adapt_injective": 1, - "adapt.": 2, - "EQ.": 2, - "LE": 11, - "LT": 14, - "Hf.": 1, - "Lt.le_lt_or_eq": 3, - "LE.": 3, - "EQ": 8, - "LT.": 5, - "Lt.S_pred": 3, - "elim": 21, - "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": 2, - "IHP2": 1, - "g": 6, - "Hg": 2, - "E.": 2, - "symmetry": 4, - "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, - "do": 4, - "congruence.": 1, - "Permutation_alt.": 1, - "Permutation_app_swap": 1, - "only": 3, - "parsing": 3, - "Omega": 1, - "Relations": 2, - "Multiset": 2, - "SetoidList.": 1, - "Permut.": 1, - "eqA": 29, + "rsc_step.": 2, + "ST_App1.": 2, + "ST_AppAbs.": 3, + "v_abs.": 2, + "rsc_refl.": 4, + "context": 1, + "partial_map": 4, + "Context.": 1, + "A": 113, + "option": 6, "A.": 6, + "empty": 3, + "{": 39, + "}": 35, + "fun": 17, + "extend": 1, + "Gamma": 10, + "has_type": 4, + "appears_free_in": 1, + "S.": 1, + "Proof": 12, + "auto.": 47, + "intros.": 27, + "generalize": 13, + "dependent": 6, + "HT": 1, + "T_Var.": 1, + "extend_neq": 1, + "in": 221, + "H2.": 20, + "assumption.": 61, + "Heqe.": 3, + "rename": 2, + "i": 11, + "into": 2, + "y.": 15, + "T_Abs.": 1, + "remember": 12, + "e.": 15, + "context_invariance...": 2, + "beq_id_eq": 4, + "subst.": 43, + "Hafi.": 2, + "unfold": 58, + "extend.": 2, + "IHt.": 1, + "x0": 14, + "Coiso1.": 2, + "Coiso2.": 3, + "eauto": 10, + "HeqCoiso1.": 1, + "HeqCoiso2.": 1, + "assert": 68, + "<": 76, + "beq_id_false_not_eq.": 1, + "ex_falso_quodlibet.": 1, + "H0.": 24, + "preservation": 1, + "HT.": 1, + "H1.": 31, + "inversion": 104, + "substitution_preserves_typing": 1, + "T11.": 4, + "HT1.": 1, + "T_App": 2, + "IHHT1.": 1, + "IHHT2.": 1, + "/": 41, + "exists": 60, + "t.": 4, + "tm_cases": 1, + "Ht": 1, + "Ht.": 3, + "right.": 9, + "IHt1": 2, + "T11": 2, + "IHt2": 3, + "H3.": 5, + "T0": 2, + "ST_App2.": 1, + "ty_Bool.": 1, + "T.": 9, + "IHt3": 1, + "t2.": 4, + "ST_IfTrue.": 1, + "t3.": 2, + "ST_IfFalse.": 1, + "ST_If.": 2, + "types_unique": 1, + "T1": 25, + "T12": 2, + "IHhas_type.": 1, + "IHhas_type1.": 1, + "IHhas_type2.": 1, + "List": 2, + "Multiset": 2, + "PermutSetoid": 1, + "Relations": 2, + "Sorting.": 1, + "Section": 4, + "defs.": 2, + "Variable": 7, + "Type.": 3, + "leA": 25, + "relation": 19, + "eqA": 29, + "Let": 8, + "gtA": 1, "Hypothesis": 7, - "eqA_equiv": 1, - "Equivalence": 2, - "eqA.": 1, + "leA_dec": 4, "eqA_dec": 26, + "leA_refl": 1, + "leA_trans": 2, + "z": 14, + "z.": 6, + "leA_antisym": 1, + "Resolve": 5, + "leA_refl.": 1, + "Immediate": 1, + "leA_antisym.": 1, "emptyBag": 4, "EmptyBag": 2, "singletonBag": 10, "SingletonBag": 2, "eqA_dec.": 2, - "list_contents": 30, - "multiset": 2, - "munion": 18, - "list_contents_app": 5, - "meq": 15, - "simple": 7, + "Tree": 24, + "Tree_Leaf": 9, + "Tree_Node": 11, + "Tree.": 1, + "leA_Tree": 16, + "True": 1, + "T2": 20, + "leA_Tree_Leaf": 5, + "Tree_Leaf.": 1, + "simpl": 116, + "auto": 73, "datatypes.": 47, - "meq_trans": 10, - "l0": 7, - "permut_refl": 1, - "permut_sym": 4, - "permut_trans": 5, - "permut_cons_eq": 3, - "meq_left": 1, - "meq_singleton": 1, - "permut_cons": 5, - "permut_app": 1, - "specialize": 6, - "a0.": 1, - "a0": 15, - "decide": 1, - "replace": 4, - "permut_add_inside_eq": 1, - "permut_add_cons_inside": 3, - "permut_add_inside": 1, - "permut_middle": 1, - "permut_refl.": 5, - "permut_sym_app": 1, - "permut_rev": 1, - "permut_add_cons_inside.": 1, - "app_nil_end": 1, - "results": 1, - "permut_conv_inv": 1, + "leA_Tree_Node": 1, + "G": 6, + "D": 9, + "is_heap": 18, + "nil_is_heap": 5, + "node_is_heap": 7, + "invert_heap": 3, + "T2.": 1, + "H": 76, + "is_heap_rect": 1, + "P": 32, + "simple": 7, + "PG": 2, + "PD": 2, + "PN.": 2, + "elim": 21, + "H1": 18, + "H2": 12, + "H3": 4, + "H4": 7, + "X0": 2, + "is_heap_rec": 1, + "Set": 4, + "X": 191, + "low_trans": 3, + "merge_lem": 3, + "list": 78, + "merge_exist": 5, + "Sorted": 5, + "meq": 15, + "list_contents": 30, + "munion": 18, + "HdRel": 4, "l2.": 8, - "plus_reg_l.": 1, - "permut_app_inv1": 1, - "list_contents_app.": 1, - "plus_reg_l": 1, - "multiplicity": 6, - "plus_comm": 3, - "plus_comm.": 3, - "Fact": 3, - "if_eqA_then": 1, - "B": 6, - "if_eqA_refl": 3, - "decide_left": 1, - "if_eqA": 1, - "contradict": 3, - "a2": 62, + "Morphisms.": 2, + "Instance": 7, + "Equivalence": 2, + "@meq": 4, + "constructor": 6, + "red.": 1, + "meq_trans.": 1, + "Defined.": 1, + "Proper": 5, + "@munion": 1, + "now": 24, + "meq_congr.": 1, + "merge": 5, + "fix": 2, + "revert": 5, + "a0": 15, + "l0": 7, + "Sorted_inv": 2, + "H0": 16, + "clear": 7, + "merge0.": 2, + "using": 18, + "cons_sort": 2, + "cons_leA": 2, + "m.": 21, + "munion_ass.": 2, + "cons_leA.": 2, + "@HdRel_inv": 2, + "trivial": 15, + "merge0": 1, + "setoid_rewrite": 2, + "munion_ass": 1, + "munion_comm.": 2, + "munion_comm": 1, + "contents": 12, + "multiset": 2, + "equiv_Tree": 1, + "insert_spec": 3, + "insert_exist": 4, + "insert": 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, + "exact": 4, + "nil_is_heap.": 1, + "meq_trans": 10, + "meq_right": 2, + "meq_sym": 2, + "flat_spec": 3, + "flat_exist": 3, + "heap_to_list": 2, + "h": 14, + "s1": 20, + "i1": 15, + "m1": 1, + "s2": 2, + "i2": 10, + "m2.": 1, + "meq_congr": 1, + "munion_rotate.": 1, + "treesort": 1, + "&": 21, + "permutation": 43, + "intro": 27, + "permutation.": 1, + "AExp.": 2, + "aexp": 30, + "ANum": 18, + "APlus": 14, + "AMinus": 9, + "AMult": 9, + "aexp.": 1, + "bexp": 22, + "BTrue": 10, + "BFalse": 11, + "BEq": 9, + "BLe": 9, + "BNot": 9, + "BAnd": 10, + "bexp.": 1, + "aeval": 46, + "e": 53, "a1": 56, - "A1": 2, - "if_eqA_rewrite_r": 1, - "A2": 4, - "Hxx": 1, - "multiplicity_InA": 4, - "InA": 8, - "right.": 9, - "multiplicity_InA_O": 2, - "multiplicity_InA_S": 1, - "multiplicity_NoDupA": 1, - "NoDupA": 3, - "NEQ": 1, - "omega": 7, - "is": 4, - "compatible": 1, - "permut_InA_InA": 3, - "e.": 15, - "multiplicity_InA.": 1, - "meq.": 2, - "permut_cons_InA": 3, - "permut_nil": 3, - "Abs": 2, - "permut_length_1": 1, - "permut_length_2": 1, + "a2": 62, + "test_aeval1": 1, + "beval": 16, "b1": 35, + "negb": 10, "b2": 23, - "left": 6, - "permut_length_1.": 2, - "@if_eqA_rewrite_l": 2, + "andb": 8, + "optimize_0plus": 15, + "e2": 54, + "e1": 58, + "test_optimize_0plus": 1, + "optimize_0plus_sound": 4, + "e1.": 1, + "SSCase": 3, + "IHe2.": 10, + "IHe1.": 11, + "aexp_cases": 3, + "try": 17, + "IHe1": 6, + "IHe2": 6, + "reflexivity": 16, + "optimize_0plus_all": 2, + "optimize_0plus_all_sound": 1, + "bexp_cases": 4, + "optimize_and": 5, + "optimize_and_sound": 1, + "IHe": 2, + "aevalR_first_try.": 2, + "aevalR": 18, + "E_Anum": 1, + "E_APlus": 2, + "n1": 45, + "n2": 41, + "E_AMinus": 2, + "E_AMult": 2, + "Reserved": 4, + "E_ANum": 1, + "bevalR": 11, + "E_BTrue": 1, + "E_BFalse": 1, + "E_BEq": 1, + "E_BLe": 1, + "E_BNot": 1, + "E_BAnd": 1, + "aeval_iff_aevalR": 9, + "split.": 17, + "IHa1": 1, + "IHa2": 1, + "beval_iff_bevalR": 1, + "*.": 110, + "IHbevalR": 1, + "IHbevalR1": 1, + "IHbevalR2": 1, + "a.": 6, + "constructor.": 16, + "IHa.": 1, + "IHa1.": 1, + "IHa2.": 1, + "silly_presburger_formula": 1, + "<=>": 12, + "3": 2, + "omega": 7, + "id.": 1, + "id1": 2, + "id2": 2, + "beq_id_refl": 1, + "i.": 2, + "beq_nat_refl.": 1, + "i2.": 8, + "i1.": 3, + "beq_nat_eq": 2, + "beq_id_false_not_eq": 1, + "C.": 3, + "n0": 5, + "beq_false_not_eq": 1, + "not_eq_beq_id_false": 1, + "false.": 12, + "not_eq_beq_false.": 1, + "AId": 4, + "com_cases": 1, + "SKIP": 5, + "IFB": 4, + "WHILE": 5, + "c1": 14, + "c2": 9, + "e3": 1, + "cl": 1, + "st": 113, + "E_IfTrue": 2, + "THEN": 3, + "ELSE": 3, + "FI": 3, + "E_WhileEnd": 2, + "DO": 4, + "END": 4, + "E_WhileLoop": 2, + "ceval_cases": 1, + "E_Skip": 1, + "E_Ass": 1, + "E_Seq": 1, + "E_IfFalse": 1, + "assignment": 1, + "command": 2, + "st1": 2, + "o.": 4, + "IHi1": 3, + "Heqst1": 1, + "Hceval.": 4, + "Hceval": 2, + "bval": 2, + "ceval_step": 3, + "ceval_step_more": 7, + "x1.": 3, "omega.": 7, - "permut_length": 1, - "InA_split": 1, - "h2": 1, - "t2": 51, - "plus_n_Sm": 1, - "f_equal.": 1, - "app_length": 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": 2, - "permutation_Permutation": 1, - "Forall2.": 1, - "pose": 2, - "proof": 1, - "IHA": 2, - "Forall2_app_inv_r": 1, - "Hl1": 1, - "Hl2": 1, - "Forall2_app": 1, - "Forall2_cons": 1, - "Heq": 8, - "Permutation_impl_permutation": 1, - "permut_eqA": 1, - "Permut_permut.": 1, - "permut_right": 1, - "permut_tran": 1, - "Module": 11, - "NatList.": 2, - "natprod": 5, - "natprod.": 1, - "swap_pair": 1, - "surjective_pairing": 1, - "r": 11, - "remove_one": 3, - "test_remove_one1": 1, - "remove_all": 2, - "bag": 3, - "app_ass": 1, - "natlist": 7, - "l3.": 1, - "remove_decreases_count": 1, - "ble_nat": 6, - "ble_n_Sn.": 1, - "natoption": 5, - "natoption.": 1, - "option_elim": 2, - "option_elim_hd": 1, - "head": 1, - "beq_natlist": 5, - "v1": 7, - "r1": 2, - "v2": 2, - "r2": 2, - "test_beq_natlist1": 1, - "test_beq_natlist2": 1, - "beq_natlist_refl": 1, - "silly1": 1, - "eq2": 1, - "silly2a": 1, - "q": 15, - "silly_ex": 1, - "evenb": 5, - "oddb": 5, - "silly3": 1, - "rev_exercise": 1, - "rev_involutive.": 1, - "beq_nat_sym": 2, + "x2.": 2, + "IHHce.": 2, + "%": 3, + "nat.": 4, + "IHHce1.": 1, + "IHHce2.": 1, + "plus2": 1, + "nx": 3, + "Y": 38, + "ny": 2, + "XtimesYinZ": 1, + "Z": 11, + "ny.": 1, + "loop": 2, + "contra.": 19, + "loopdef.": 1, + "Heqloopdef.": 8, + "contra1.": 1, + "IHcontra2.": 1, + "no_whiles": 15, + "com": 5, + "ct": 2, + "cf": 2, + "no_Whiles": 10, + "noWhilesSKIP": 1, + "noWhilesAss": 1, + "noWhilesSeq": 1, + "noWhilesIf": 1, + "no_whiles_eqv": 1, + "c.": 5, + "noWhilesSKIP.": 1, + "noWhilesAss.": 1, + "noWhilesSeq.": 1, + "IHc1.": 2, + "andb_true_elim1": 4, + "IHc2.": 2, + "andb_true_elim2": 4, + "noWhilesIf.": 1, + "andb_true_intro.": 2, + "no_whiles_terminate": 1, + "state": 6, + "st.": 7, + "update": 2, + "IHc1": 2, + "IHc2": 2, + "H5.": 1, + "x1": 11, + "r.": 3, + "symmetry": 4, + "Heqr.": 1, + "H4.": 2, + "Heqr": 3, + "H8.": 1, + "H10": 1, + "assumption": 10, + "beval_short_circuit": 5, + "beval_short_circuit_eqv": 1, + "sinstr": 8, + "SPush": 8, + "SLoad": 6, + "SPlus": 10, + "SMinus": 11, + "SMult": 11, + "sinstr.": 1, + "s_execute": 21, + "stack": 7, + "prog": 2, + "al": 3, + "bl": 3, + "s_execute1": 1, + "empty_state": 2, + "s_execute2": 1, + "s_compile": 36, + "s_compile1": 1, + "execute_theorem": 1, + "other": 20, + "other.": 4, + "app_ass.": 6, + "plus_comm": 3, + "mult_comm": 2, + "s_compile_correct": 1, + "app_nil_end.": 1, + "execute_theorem.": 1, "Eqdep_dec.": 1, "Arith.": 2, "eq_rect_eq_nat": 2, @@ -18878,29 +20046,39 @@ "Scheme": 1, "le_ind": 1, "q.": 2, + "replace": 4, "le_n": 4, - "n0": 5, "refl_equal": 4, "pattern": 2, "case": 2, + "trivial.": 14, "contradiction": 8, + "le_Sn_n": 5, + "le_S": 6, + "Heq": 8, "m0": 1, "HeqS": 3, + "injection": 4, "HeqS.": 2, "eq_rect_eq_nat.": 1, "IHp": 2, "dep_pair_intro": 2, + "Hx": 20, + "Hy": 14, "<=n),>": 1, "x=": 1, "exist": 7, + "Hy.": 3, "Heq.": 6, "le_uniqueness_proof": 1, "Hy0": 1, "card": 2, + "f": 108, "card_interval": 1, "<=n}>": 1, "proj1_sig": 1, "proj2_sig": 1, + "Hp": 5, "Hq": 3, "Hpq.": 1, "Hmn.": 1, @@ -18908,9 +20086,13 @@ "interval_dec": 1, "left.": 3, "dep_pair_intro.": 3, + "discriminate": 3, + "le_Sn_le": 2, "eq_S.": 1, "Hneq.": 2, "card_inj_aux": 1, + "g": 6, + "0": 5, "False.": 1, "Hfbound": 1, "Hfinj": 1, @@ -18919,8 +20101,13 @@ "Hfx": 2, "le_n_O_eq.": 2, "Hfbound.": 2, + "Hx.": 5, + "le_lt_dec": 9, "xSn": 21, + "pred": 3, + "is": 4, "bounded": 1, + "injective": 6, "Hlefx": 1, "Hgefx": 1, "Hlefy": 1, @@ -18950,10 +20137,13 @@ "Heqx": 4, "Hle.": 1, "le_not_lt": 1, + "lt_trans": 4, "lt_n_Sn.": 1, "Hlt.": 1, "lt_irrefl": 2, "lt_le_trans": 1, + "pose": 2, + "let": 3, "Hneqx": 1, "Hneqy": 1, "Heqg": 1, @@ -18967,109 +20157,173 @@ "card_inj": 1, "interval_dec.": 1, "card_interval.": 2, - "Sorted.": 1, - "Mergesort.": 1, - "PermutSetoid": 1, - "Sorting.": 1, - "defs.": 2, - "leA": 25, - "gtA": 1, - "leA_dec": 4, - "leA_refl": 1, - "leA_trans": 2, - "leA_antisym": 1, - "leA_refl.": 1, - "Immediate": 1, - "leA_antisym.": 1, - "Tree": 24, - "Tree_Leaf": 9, - "Tree_Node": 11, - "Tree.": 1, - "leA_Tree": 16, - "True": 1, - "T1": 25, - "T2": 20, - "leA_Tree_Leaf": 5, - "Tree_Leaf.": 1, - "leA_Tree_Node": 1, - "G": 6, - "D": 9, - "is_heap": 18, - "nil_is_heap": 5, - "node_is_heap": 7, - "invert_heap": 3, - "T2.": 1, - "is_heap_rect": 1, - "T": 49, - "T.": 9, - "PG": 2, - "PD": 2, - "PN.": 2, - "H3": 4, - "H4": 7, - "X0": 2, - "is_heap_rec": 1, - "low_trans": 3, - "merge_lem": 3, - "merge_exist": 5, - "Sorted": 5, - "HdRel": 4, - "@meq": 4, - "red.": 1, - "meq_trans.": 1, - "Defined.": 1, - "@munion": 1, - "meq_congr.": 1, - "merge": 5, - "fix": 2, - "rename": 2, - "into": 2, - "Sorted_inv": 2, - "merge0.": 2, - "cons_sort": 2, - "cons_leA": 2, - "munion_ass.": 2, - "cons_leA.": 2, - "@HdRel_inv": 2, - "merge0": 1, - "setoid_rewrite": 2, - "munion_ass": 1, - "munion_comm.": 2, - "munion_comm": 1, - "contents": 12, - "t1": 48, - "equiv_Tree": 1, - "insert_spec": 3, - "insert_exist": 4, - "insert": 2, - "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_is_heap.": 1, - "i": 11, - "meq_right": 2, - "meq_sym": 2, - "flat_spec": 3, - "flat_exist": 3, - "heap_to_list": 2, - "s1": 20, - "i1": 15, - "m1": 1, - "s2": 2, - "i2": 10, - "m2.": 1, - "meq_congr": 1, - "munion_rotate.": 1, - "treesort": 1, - "permutation.": 1, + "Imp.": 1, + "Relations.": 1, + "tm_const": 45, + "tm_plus": 30, + "SimpleArith0.": 2, + "eval": 8, + "SimpleArith1.": 2, + "left": 6, + "associativity": 7, + "E_Const": 2, + "E_Plus": 2, + "plus": 10, + "test_step_1": 1, + "ST_Plus1.": 2, + "ST_PlusConstConst.": 3, + "test_step_2": 1, + "ST_Plus2.": 2, + "step_deterministic": 1, + "partial_function": 6, + "partial_function.": 5, + "y1": 6, + "y2": 5, + "Hy1": 2, + "Hy2.": 2, + "y2.": 3, + "step_cases": 4, + "Hy2": 3, + "SCase.": 3, + "Hy1.": 5, + "IHHy1": 2, + "SimpleArith2.": 1, + "v_const": 4, + "ST_PlusConstConst": 3, + "ST_Plus1": 2, + "strong_progress": 2, + "R": 54, + "value_not_same_as_normal_form": 2, + "normal_form": 3, + "normal_form.": 2, + "v_funny.": 1, + "not.": 3, + "Temp1.": 1, + "Temp2.": 1, + "ST_Funny": 1, + "Temp3.": 1, + "Temp4.": 2, + "v_true": 1, + "v_false": 1, + "ST_IfTrue": 1, + "ST_IfFalse": 1, + "ST_If": 1, + "bool_step_prop4": 1, + "bool_step_prop4_holds": 1, + "bool_step_prop4.": 2, + "ST_ShortCut.": 1, + "IHt1.": 1, + "Temp5.": 1, + "normalizing": 1, + "H11": 2, + "H12": 2, + "H21": 3, + "H22": 2, + "nf_same_as_value": 3, + "H12.": 1, + "H22.": 1, + "H11.": 1, + "split": 14, + "rsc_trans": 4, + "stepmany_congr_1": 1, + "stepmany_congr2": 1, + "rsc_R": 2, + "eval__value": 1, + "HE.": 1, + "eval_cases": 1, + "HE": 1, + "v_const.": 1, + "Lists.": 1, + "X.": 4, + "length": 21, + "app": 5, + "snoc": 9, + "rev": 7, + "Implicit": 15, + "Arguments": 11, + "list123": 1, + "right": 2, + "nil.": 2, + "..": 4, + "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, + "tp": 2, + "xs": 7, + "plus3": 2, + "prod_curry": 3, + "prod_uncurry": 3, + "uncurry_uncurry": 1, + "curry_uncurry": 1, + "p.": 9, + "filter": 3, + "test": 4, + "countoddmembers": 1, + "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, + "x.": 3, + "f.": 1, + "override.": 2, + "override_neq": 1, + "x2": 3, + "k1": 5, + "k2": 4, + "eq_add_S": 2, + "eq.": 11, + "silly4": 1, + "silly5": 1, + "sillyex1": 1, + "j": 6, + "j.": 1, + "silly6": 1, + "silly7": 1, + "sillyex2": 1, + "of": 4, + "assertion": 3, + "Hl.": 1, + "IHm": 2, + "eq": 4, + "IHl": 8, + "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, + "map": 4, + "fold_map.": 1, + "forallb": 4, + "existsb": 3, + "orb": 8, + "existsb2": 2, + "existsb_correct": 1, + "existsb2.": 1, + "index_okx": 1, + "mumble": 5, + "mumble.": 1, + "grumble": 3, "day": 9, "monday": 5, "tuesday": 3, @@ -19098,7 +20352,6 @@ "test_andb32": 1, "test_andb33": 1, "test_andb34": 1, - "nat.": 4, "minustwo": 1, "test_oddb1": 1, "test_oddb2": 1, @@ -19123,10 +20376,10 @@ "plus_1_neq_0": 1, "plus_distr.": 1, "plus_rearrange": 1, + "plus_comm.": 3, "plus_swap": 2, "plus_assoc.": 4, "plus_swap.": 2, - "mult_comm": 2, "mult_0_r.": 4, "mult_distr": 1, "mult_1_distr.": 1, @@ -19140,7 +20393,6 @@ "mult_1_1": 1, "plus_0_r.": 1, "all3_spec": 1, - "c.": 5, "mult_plus_1": 1, "IHm.": 1, "mult_mult": 1, @@ -19149,7 +20401,6 @@ "mult_plus_distr_r": 1, "mult_mult.": 3, "plus_assoc": 1, - "H3.": 5, "mult_assoc": 1, "mult_plus_distr_r.": 1, "bin": 9, @@ -19159,341 +20410,314 @@ "incbin": 2, "bin2un": 3, "bin_comm": 1, - "SfLib.": 2, - "STLC.": 1, - "ty_Bool": 10, - "ty_arrow": 7, - "ty.": 2, - "tm": 43, - "tm_var": 6, - "id": 7, - "tm_app": 7, - "tm_abs": 9, - "tm_true": 8, - "tm_false": 5, - "tm_if": 10, - "tm.": 3, - "Id": 7, - "idB": 2, - "idBB": 2, - "idBBBB": 2, - "value": 25, - "v_abs": 1, - "t_true": 1, - "t_false": 1, - "tm_false.": 3, - "value.": 1, - "beq_id": 14, - "ST_App2": 1, - "t3": 6, - "where": 6, - "step": 9, - "stepmany": 4, - "step.": 3, - "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, - "beq_id_eq": 4, - "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, - "t.": 4, - "tm_cases": 1, - "Ht": 1, - "Ht.": 3, - "IHt1": 2, - "T11": 2, - "IHt2": 3, - "ST_App2.": 1, - "ty_Bool.": 1, - "IHt3": 1, - "t2.": 4, - "ST_IfTrue.": 1, - "t3.": 2, - "ST_IfFalse.": 1, - "ST_If.": 2, - "types_unique": 1, - "T12": 2, - "IHhas_type.": 1, - "IHhas_type1.": 1, - "IHhas_type2.": 1, - "Imp.": 1, - "Relations.": 1, - "tm_const": 45, - "tm_plus": 30, - "SimpleArith0.": 2, - "eval": 8, - "SimpleArith1.": 2, - "Reserved": 4, - "E_Const": 2, - "E_Plus": 2, - "n1": 45, - "n2": 41, - "test_step_1": 1, - "ST_Plus1.": 2, - "ST_PlusConstConst.": 3, - "test_step_2": 1, - "ST_Plus2.": 2, - "step_deterministic": 1, - "Hy1": 2, - "Hy2.": 2, - "step_cases": 4, - "Hy2": 3, - "SCase.": 3, - "Hy1.": 5, - "IHHy1": 2, - "SimpleArith2.": 1, - "v_const": 4, - "ST_PlusConstConst": 3, - "ST_Plus1": 2, - "strong_progress": 2, - "value_not_same_as_normal_form": 2, - "normal_form": 3, - "normal_form.": 2, - "v_funny.": 1, - "Temp1.": 1, - "Temp2.": 1, - "ST_Funny": 1, - "H4.": 2, - "Temp3.": 1, - "Temp4.": 2, - "v_true": 1, - "v_false": 1, - "ST_IfTrue": 1, - "ST_IfFalse": 1, - "ST_If": 1, - "bool_step_prop4": 1, - "bool_step_prop4_holds": 1, - "bool_step_prop4.": 2, - "ST_ShortCut.": 1, - "IHt1.": 1, - "Temp5.": 1, - "normalizing": 1, - "H11": 2, - "H12": 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, - "AExp.": 2, - "aexp": 30, - "ANum": 18, - "APlus": 14, - "AMinus": 9, - "AMult": 9, - "aexp.": 1, - "bexp": 22, - "BTrue": 10, - "BFalse": 11, - "BEq": 9, - "BLe": 9, - "BNot": 9, - "BAnd": 10, - "bexp.": 1, - "aeval": 46, - "test_aeval1": 1, - "beval": 16, - "optimize_0plus": 15, - "e2": 54, - "e1": 58, - "test_optimize_0plus": 1, - "optimize_0plus_sound": 4, - "e1.": 1, - "IHe2.": 10, - "IHe1.": 11, - "aexp_cases": 3, - "IHe1": 6, - "IHe2": 6, - "optimize_0plus_all": 2, - "optimize_0plus_all_sound": 1, - "bexp_cases": 4, - "optimize_and": 5, - "optimize_and_sound": 1, - "IHe": 2, - "aevalR_first_try.": 2, - "aevalR": 18, - "E_Anum": 1, - "E_APlus": 2, - "E_AMinus": 2, - "E_AMult": 2, - "E_ANum": 1, - "bevalR": 11, - "E_BTrue": 1, - "E_BFalse": 1, - "E_BEq": 1, - "E_BLe": 1, - "E_BNot": 1, - "E_BAnd": 1, - "aeval_iff_aevalR": 9, - "IHa1": 1, - "IHa2": 1, - "beval_iff_bevalR": 1, - "IHbevalR": 1, - "IHbevalR1": 1, - "IHbevalR2": 1, - "IHa.": 1, - "IHa1.": 1, - "IHa2.": 1, - "silly_presburger_formula": 1, - "3": 2, - "id.": 1, - "id1": 2, - "id2": 2, - "beq_id_refl": 1, - "i.": 2, - "beq_nat_refl.": 1, - "i2.": 8, - "i1.": 3, - "beq_id_false_not_eq": 1, - "C.": 3, - "beq_false_not_eq": 1, - "not_eq_beq_id_false": 1, - "not_eq_beq_false.": 1, - "AId": 4, - "com_cases": 1, - "SKIP": 5, - "IFB": 4, - "WHILE": 5, - "c1": 14, - "c2": 9, - "e3": 1, - "cl": 1, - "st": 113, - "E_IfTrue": 2, - "THEN": 3, - "ELSE": 3, - "FI": 3, - "E_WhileEnd": 2, - "DO": 4, - "END": 4, - "E_WhileLoop": 2, - "ceval_cases": 1, - "E_Skip": 1, - "E_Ass": 1, - "E_Seq": 1, - "E_IfFalse": 1, - "assignment": 1, - "command": 2, - "st1": 2, - "IHi1": 3, - "Heqst1": 1, - "Hceval.": 4, - "Hceval": 2, - "bval": 2, - "ceval_step": 3, - "ceval_step_more": 7, - "x2.": 2, - "IHHce.": 2, - "%": 3, - "IHHce1.": 1, - "IHHce2.": 1, - "plus2": 1, - "nx": 3, - "ny": 2, - "XtimesYinZ": 1, - "ny.": 1, - "loop": 2, - "loopdef.": 1, - "Heqloopdef.": 8, - "contra1.": 1, - "IHcontra2.": 1, - "no_whiles": 15, - "com": 5, - "ct": 2, - "cf": 2, - "no_Whiles": 10, - "noWhilesSKIP": 1, - "noWhilesAss": 1, - "noWhilesSeq": 1, - "noWhilesIf": 1, - "no_whiles_eqv": 1, - "noWhilesSKIP.": 1, - "noWhilesAss.": 1, - "noWhilesSeq.": 1, - "IHc1.": 2, - "andb_true_elim1": 4, - "IHc2.": 2, - "andb_true_elim2": 4, - "noWhilesIf.": 1, - "andb_true_intro.": 2, - "no_whiles_terminate": 1, - "state": 6, - "st.": 7, - "update": 2, - "IHc1": 2, - "IHc2": 2, - "H5.": 1, - "Heqr.": 1, - "Heqr": 3, - "H8.": 1, - "H10": 1, - "beval_short_circuit": 5, - "beval_short_circuit_eqv": 1, - "sinstr": 8, - "SPush": 8, - "SLoad": 6, - "SPlus": 10, - "SMinus": 11, - "SMult": 11, - "sinstr.": 1, - "s_execute": 21, - "stack": 7, - "prog": 2, - "al": 3, - "bl": 3, - "s_execute1": 1, - "empty_state": 2, - "s_execute2": 1, - "s_compile": 36, - "s_compile1": 1, - "execute_theorem": 1, - "other": 20, - "other.": 4, - "app_ass.": 6, - "s_compile_correct": 1, - "app_nil_end.": 1, - "execute_theorem.": 1 + "Logic.": 1, + "Prop.": 1, + "next_nat_partial_function": 1, + "next_nat.": 1, + "Q.": 2, + "P.": 5, + "le_not_a_partial_function": 1, + "le": 1, + "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, + "lt": 3, + "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, + "rsc_refl": 1, + "rsc_step": 4, + "IHrefl_step_closure": 1, + "rtc_rsc_coincide": 1, + "IHrefl_step_closure.": 1, + "Setoid": 1, + "Compare_dec": 1, + "ListNotations.": 1, + "Arguments.": 2, + "Permutation.": 2, + "Permutation": 38, + "perm_nil": 1, + "perm_skip": 1, + "Local": 7, + "Permutation_nil": 2, + "HF.": 3, + "@nil": 1, + "HF": 2, + "||": 1, + "Permutation_nil_cons": 1, + "discriminate.": 2, + "Permutation_refl": 1, + "Permutation_sym": 1, + "Hperm": 7, + "perm_trans": 1, + "Permutation_trans": 4, + "Logic.eq": 2, + "@Permutation": 5, + "iff": 1, + "@In": 1, + "red": 6, + "Permutation_in.": 2, + "Permutation_app_tail": 2, + "tl": 8, + "Permutation_app_head": 2, + "app_comm_cons": 5, + "Permutation_app": 3, + "Hpermmm": 1, + "idtac": 1, + "Global": 5, + "@app": 1, + "Permutation_app.": 1, + "Permutation_add_inside": 1, + "Permutation_cons_append": 1, + "Permutation_cons_append.": 3, + "Permutation_app_comm": 3, + "app_nil_r": 1, + "app_assoc": 2, + "Permutation_cons_app": 3, + "Permutation_middle": 2, + "Permutation_rev": 3, + "1": 1, + "@rev": 1, + "2": 1, + "Permutation_length": 2, + "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": 5, + "Permutation_nil_app_cons": 1, + "l4": 3, + "IH": 3, + "Permutation_middle.": 3, + "perm_swap.": 2, + "perm_swap": 1, + "eq_refl": 2, + "In_split": 1, + "Permutation_app_inv": 1, + "NoDup": 4, + "incl": 3, + "N.": 1, + "E": 7, + "Ha": 6, + "In": 6, + "N": 1, + "Hal": 1, + "Hl": 1, + "exfalso.": 1, + "NoDup_Permutation_bis": 2, + "inversion_clear": 6, + "intuition.": 2, + "Permutation_NoDup": 1, + "Permutation_map": 1, + "Hf": 15, + "injective_bounded_surjective": 1, + "set": 1, + "seq": 2, + "in_map_iff.": 2, + "in_seq": 4, + "arith": 4, + "NoDup_cardinal_incl": 1, + "injective_map_NoDup": 2, + "seq_NoDup": 1, + "map_length": 1, + "by": 7, + "in_map_iff": 1, + "nat_bijection_Permutation": 1, + "BD.": 1, + "seq_NoDup.": 1, + "map_length.": 1, + "Injection": 1, + "Permutation_alt": 1, + "Alternative": 1, + "characterization": 1, + "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.": 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": 2, + "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, + "do": 4, + "congruence.": 1, + "Permutation_alt.": 1, + "Permutation_app_swap": 1, + "only": 3, + "parsing": 3, + "Omega": 1, + "SetoidList.": 1, + "Permut.": 1, + "eqA_equiv": 1, + "eqA.": 1, + "list_contents_app": 5, + "permut_refl": 1, + "permut_sym": 4, + "permut_trans": 5, + "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, + "B": 6, + "if_eqA_refl": 3, + "decide_left": 1, + "if_eqA": 1, + "contradict": 3, + "A1": 2, + "if_eqA_rewrite_r": 1, + "A2": 4, + "Hxx": 1, + "multiplicity_InA": 4, + "InA": 8, + "multiplicity_InA_O": 2, + "multiplicity_InA_S": 1, + "multiplicity_NoDupA": 1, + "NoDupA": 3, + "NEQ": 1, + "compatible": 1, + "permut_InA_InA": 3, + "multiplicity_InA.": 1, + "meq.": 2, + "permut_cons_InA": 3, + "permut_nil": 3, + "Abs": 2, + "permut_length_1": 1, + "permut_length_2": 1, + "permut_length_1.": 2, + "@if_eqA_rewrite_l": 2, + "permut_length": 1, + "InA_split": 1, + "h2": 1, + "plus_n_Sm": 1, + "f_equal.": 1, + "app_length": 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": 2, + "permutation_Permutation": 1, + "Forall2.": 1, + "proof": 1, + "IHA": 2, + "Forall2_app_inv_r": 1, + "Hl1": 1, + "Hl2": 1, + "Forall2_app": 1, + "Forall2_cons": 1, + "Permutation_impl_permutation": 1, + "permut_eqA": 1, + "Permut_permut.": 1, + "permut_right": 1, + "permut_tran": 1 }, "Creole": { "Creole": 6, @@ -19585,21 +20809,32 @@ "distribution.": 1 }, "Crystal": { + "SHEBANG#!bin/crystal": 2, + "require": 2, + "describe": 2, + "do": 26, + "it": 21, + "run": 14, + "(": 201, + ")": 201, + ".to_i.should": 11, + "eq": 16, + "end": 135, + ".to_f32.should": 2, + ".to_b.should": 1, + "be_true": 1, "module": 1, "Crystal": 1, "class": 2, "ASTNode": 4, "def": 84, "transform": 81, - "(": 201, "transformer": 1, - ")": 201, "transformer.before_transform": 1, "self": 77, "node": 164, "transformer.transform": 1, "transformer.after_transform": 1, - "end": 135, "Transformer": 1, "before_transform": 1, "after_transform": 1, @@ -19609,7 +20844,6 @@ "]": 9, "of": 3, "node.expressions.each": 1, - "do": 26, "|": 8, "exp": 3, "new_exp": 3, @@ -19801,16 +21035,6 @@ "TupleIndexer": 1, "Attribute": 1, "exps.map": 1, - "SHEBANG#!bin/crystal": 2, - "require": 2, - "describe": 2, - "it": 21, - "run": 14, - ".to_i.should": 11, - "eq": 16, - ".to_f32.should": 2, - ".to_b.should": 1, - "be_true": 1, "assert_type": 7, "int32": 8, "union_of": 1, @@ -20162,6 +21386,86 @@ "d472341..8ad9ffb": 1, "+": 3 }, + "Dockerfile": { + "docker": 1, + "-": 27, + "version": 1, + "from": 1, + "ubuntu": 1, + "maintainer": 1, + "Solomon": 1, + "Hykes": 1, + "": 1, + "run": 13, + "apt": 6, + "get": 6, + "install": 6, + "y": 5, + "q": 2, + "curl": 2, + "git": 7, + "s": 1, + "https": 1, + "//go.googlecode.com/files/go1.1.1.linux": 1, + "amd64.tar.gz": 1, + "|": 1, + "tar": 1, + "v": 2, + "C": 1, + "/usr/local": 1, + "xz": 1, + "env": 4, + "PATH": 2, + "/usr/local/go/bin": 2, + "/usr/local/bin": 2, + "/usr/local/sbin": 2, + "/usr/bin": 2, + "/usr/sbin": 2, + "/bin": 2, + "/sbin": 2, + "GOPATH": 1, + "/go": 1, + "CGO_ENABLED": 1, + "cd": 5, + "/tmp": 1, + "&&": 9, + "echo": 2, + "t.go": 1, + "go": 2, + "test": 1, + "a": 1, + "i": 1, + "PKG": 12, + "github.com/kr/pty": 1, + "REV": 6, + "c699": 1, + ";": 3, + "clone": 3, + "http": 3, + "//": 3, + "/go/src/": 6, + "checkout": 3, + "f": 3, + "github.com/gorilla/context/": 1, + "d61e5": 1, + "github.com/gorilla/mux/": 1, + "b36453141c": 1, + "iptables": 1, + "/etc/apt/sources.list": 1, + "update": 1, + "lxc": 1, + "aufs": 1, + "tools": 1, + "add": 1, + ".": 1, + "/go/src/github.com/dotcloud/docker": 1, + "/go/src/github.com/dotcloud/docker/docker": 1, + "ldflags": 1, + "/go/bin": 1, + "cmd": 1, + "[": 1, + "]": 1 + }, "Dogescript": { "quiet": 1, "wow": 4, @@ -20184,6 +21488,34 @@ "module.exports": 1 }, "E": { + "pragma.syntax": 1, + "(": 65, + ")": 64, + "to": 27, + "send": 1, + "message": 4, + "{": 57, + "when": 2, + "friend": 4, + "<-receive(message))>": 1, + "chatUI.showMessage": 4, + "}": 57, + "catch": 2, + "prob": 2, + "receive": 1, + "receiveFriend": 2, + "friendRcvr": 2, + "bind": 2, + "save": 1, + "file": 3, + "file.setText": 1, + "makeURIFromObject": 1, + "chatController": 2, + "load": 1, + "getObjectFromURI": 1, + "file.getText": 1, + "<": 1, + "-": 2, "#File": 1, "objects": 1, "for": 3, @@ -20197,7 +21529,6 @@ "#Using": 2, "a": 4, "variable": 1, - "file": 3, "name": 4, "filePath": 2, "file3": 1, @@ -20206,7 +21537,6 @@ "]": 10, "single": 1, "character": 1, - "to": 27, "specify": 1, "Windows": 1, "drive": 1, @@ -20216,46 +21546,29 @@ "": 1, "file6": 1, "": 1, - "when": 2, - "(": 65, - "tempVow": 2, - ")": 64, - "-": 2, - "{": 57, - "#...use": 1, - "}": 57, - "catch": 2, - "prob": 2, - "#....": 1, - "report": 1, - "problem": 1, - "finally": 1, - "#....log": 1, - "event": 1, + "makeVehicle": 3, + "self": 1, + "vehicle": 2, + "milesTillEmpty": 1, + "return": 19, + "self.milesPerGallon": 1, + "*": 1, + "self.getFuelRemaining": 1, "makeCar": 4, "var": 6, - "x": 3, - "y": 3, + "fuelRemaining": 4, "car": 8, - "moveTo": 1, - "newX": 2, - "newY": 2, - "getX": 1, - "return": 19, - "getY": 1, - "setName": 1, - "newName": 2, - "getName": 1, - "sportsCar": 1, - "sportsCar.moveTo": 1, + "extends": 2, + "milesPerGallon": 2, + "getFuelRemaining": 2, + "makeJet": 1, + "jet": 3, "println": 2, "The": 2, - "sportsCar.getName": 1, - "is": 1, - "at": 1, - "X": 1, - "location": 1, - "sportsCar.getX": 1, + "can": 1, + "go": 1, + "car.milesTillEmpty": 1, + "miles.": 1, "makeVOCPair": 1, "brandName": 3, "String": 1, @@ -20301,41 +21614,32 @@ "false": 1, "__getAllegedType": 1, "null.__getAllegedType": 1, - "makeVehicle": 3, - "self": 1, - "vehicle": 2, - "milesTillEmpty": 1, - "self.milesPerGallon": 1, - "*": 1, - "self.getFuelRemaining": 1, - "fuelRemaining": 4, - "extends": 2, - "milesPerGallon": 2, - "getFuelRemaining": 2, - "makeJet": 1, - "jet": 3, - "can": 1, - "go": 1, - "car.milesTillEmpty": 1, - "miles.": 1, - "pragma.syntax": 1, - "send": 1, - "message": 4, - "friend": 4, - "<-receive(message))>": 1, - "chatUI.showMessage": 4, - "receive": 1, - "receiveFriend": 2, - "friendRcvr": 2, - "bind": 2, - "save": 1, - "file.setText": 1, - "makeURIFromObject": 1, - "chatController": 2, - "load": 1, - "getObjectFromURI": 1, - "file.getText": 1, - "<": 1 + "tempVow": 2, + "#...use": 1, + "#....": 1, + "report": 1, + "problem": 1, + "finally": 1, + "#....log": 1, + "event": 1, + "x": 3, + "y": 3, + "moveTo": 1, + "newX": 2, + "newY": 2, + "getX": 1, + "getY": 1, + "setName": 1, + "newName": 2, + "getName": 1, + "sportsCar": 1, + "sportsCar.moveTo": 1, + "sportsCar.getName": 1, + "is": 1, + "at": 1, + "X": 1, + "location": 1, + "sportsCar.getX": 1 }, "ECL": { "#option": 1, @@ -20449,16 +21753,9 @@ "visible=": 118, "active=": 125, "": 2, - "": 1, - "": 1, - "": 497, - "x1=": 630, - "y1=": 630, - "x2=": 630, - "y2=": 630, - "width=": 512, - "layer=": 822, - "": 1, + "": 1, + "xreflabel=": 1, + "xrefpart=": 1, "": 2, "": 4, "": 60, @@ -20467,11 +21764,68 @@ ";": 5567, "b": 64, "gt": 2770, + "Frames": 1, + "for": 5, + "Sheet": 2, + "and": 5, + "Layout": 1, + "/b": 64, + "": 60, + "": 4, + "": 3, + "": 1, + "": 1, + "": 497, + "x1=": 630, + "y1=": 630, + "x2=": 630, + "y2=": 630, + "width=": 512, + "layer=": 822, + "": 108, + "x=": 240, + "y=": 242, + "size=": 114, + "font=": 4, + "DRAWING_NAME": 1, + "": 108, + "LAST_DATE_TIME": 1, + "SHEET": 1, + "": 1, + "columns=": 1, + "rows=": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "prefix=": 1, + "uservalue=": 1, + "FRAME": 1, + "p": 65, + "DIN": 1, + "A4": 1, + "landscape": 1, + "with": 1, + "location": 1, + "doc.": 1, + "field": 1, + "": 1, + "": 1, + "symbol=": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 3, "Resistors": 2, "Capacitors": 4, "Inductors": 2, - "/b": 64, - "p": 65, "Based": 2, "on": 2, "the": 5, @@ -20498,14 +21852,12 @@ "to": 3, "IPC": 2, "specifications": 2, - "and": 5, "CECC": 2, "author": 3, "Created": 3, "by": 3, "librarian@cadsoft.de": 3, "/author": 3, - "for": 5, "Electrolyt": 2, "see": 4, "also": 2, @@ -20728,33 +22080,38 @@ "ALTERNATE": 2, "/tr": 2, "/table": 2, - "": 60, - "": 4, "": 53, "RESISTOR": 52, "": 64, - "x=": 240, - "y=": 242, "dx=": 64, "dy=": 64, - "": 108, - "size=": 114, "NAME": 52, - "": 108, "VALUE": 52, "": 132, "": 52, - "": 3, - "": 3, + "wave": 10, + "soldering": 10, + "Source": 2, + "//download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf": 2, + "MELF": 8, + "type": 20, + "grid": 20, + "mm": 20, + "curve=": 56, + "": 39, + "drill=": 41, + "shape=": 39, + "ratio=": 41, + "": 12, + "radius=": 12, + "": 1, + "": 1, + "": 1, "Pin": 1, "Header": 1, "Connectors": 1, "PIN": 1, "HEADER": 1, - "": 39, - "drill=": 41, - "shape=": 39, - "ratio=": 41, "": 1, "": 1, "": 1, @@ -20863,109 +22220,88 @@ "": 1, "": 1, "": 1, - "": 1, - "": 1, - "xreflabel=": 1, - "xrefpart=": 1, - "Frames": 1, - "Sheet": 2, - "Layout": 1, - "": 1, - "": 1, - "font=": 4, - "DRAWING_NAME": 1, - "LAST_DATE_TIME": 1, - "SHEET": 1, - "": 1, - "columns=": 1, - "rows=": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "prefix=": 1, - "uservalue=": 1, - "FRAME": 1, - "DIN": 1, - "A4": 1, - "landscape": 1, - "with": 1, - "location": 1, - "doc.": 1, - "field": 1, - "": 1, - "": 1, - "symbol=": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "wave": 10, - "soldering": 10, - "Source": 2, - "//download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf": 2, - "MELF": 8, - "type": 20, - "grid": 20, - "mm": 20, - "curve=": 56, - "": 12, - "radius=": 12 + "": 1 }, "Elm": { + "data": 1, + "Tree": 3, + "a": 5, + "Node": 8, + "(": 119, + ")": 116, + "|": 3, + "Empty": 8, + "empty": 2, + "singleton": 2, + "v": 8, + "insert": 4, + "x": 13, + "tree": 7, + "case": 5, + "of": 7, + "-": 11, + "y": 7, + "left": 7, + "right": 8, + "if": 2, + "then": 2, + "else": 2, + "<": 1, + "fromList": 3, + "xs": 9, + "foldl": 1, + "depth": 5, + "+": 14, + "max": 1, + "map": 11, + "f": 8, + "t1": 2, + "[": 31, + "]": 31, + "t2": 3, + "main": 3, + "flow": 4, + "down": 3, + "display": 4, + "name": 6, + "text": 4, + ".": 9, + "monospace": 1, + "toText": 6, + "concat": 1, + "show": 2, + "asText": 1, + "qsort": 4, + "lst": 6, + "filter": 2, + "<)x)>": 1, "import": 3, "List": 1, - "(": 119, "intercalate": 2, "intersperse": 3, - ")": 116, "Website.Skeleton": 1, "Website.ColorScheme": 1, "addFolder": 4, "folder": 2, - "lst": 6, "let": 2, "add": 2, - "x": 13, - "y": 7, - "+": 14, "in": 2, - "f": 8, "n": 2, - "xs": 9, - "map": 11, "elements": 2, - "[": 31, - "]": 31, "functional": 2, "reactive": 2, - "-": 11, "example": 3, - "name": 6, "loc": 2, "Text.link": 1, - "toText": 6, "toLinks": 2, "title": 2, "links": 2, - "flow": 4, - "right": 8, "width": 3, - "text": 4, "italic": 1, "bold": 2, - ".": 9, "Text.color": 1, "accent4": 1, "insertSpace": 2, - "case": 5, - "of": 7, "{": 1, "spacer": 2, ";": 1, @@ -20973,10 +22309,8 @@ "subsection": 2, "w": 7, "info": 2, - "down": 3, "words": 2, "markdown": 1, - "|": 3, "###": 1, "Basic": 1, "Examples": 1, @@ -20985,7 +22319,6 @@ "below": 1, "focuses": 1, "on": 1, - "a": 5, "single": 1, "function": 1, "or": 1, @@ -21002,43 +22335,11 @@ "content": 2, "exampleSets": 2, "plainText": 1, - "main": 3, "lift": 1, "skeleton": 1, - "Window.width": 1, - "asText": 1, - "qsort": 4, - "filter": 2, - "<)x)>": 1, - "data": 1, - "Tree": 3, - "Node": 8, - "Empty": 8, - "empty": 2, - "singleton": 2, - "v": 8, - "insert": 4, - "tree": 7, - "left": 7, - "if": 2, - "then": 2, - "else": 2, - "<": 1, - "fromList": 3, - "foldl": 1, - "depth": 5, - "max": 1, - "t1": 2, - "t2": 3, - "display": 4, - "monospace": 1, - "concat": 1, - "show": 2 + "Window.width": 1 }, "Emacs Lisp": { - "(": 156, - "print": 1, - ")": 144, ";": 333, "ess": 48, "-": 294, @@ -21050,7 +22351,9 @@ "inferior": 13, "interaction": 1, "Copyright": 1, + "(": 156, "C": 2, + ")": 144, "Vitalie": 3, "Spinu.": 1, "Filename": 1, @@ -21351,7 +22654,8 @@ "use": 1, "classes": 1, "screws": 1, - "egrep": 1 + "egrep": 1, + "print": 1 }, "EmberScript": { "class": 1, @@ -21384,38 +22688,7 @@ "Ember.Handlebars.helper": 1 }, "Erlang": { - "SHEBANG#!escript": 3, "%": 134, - "-": 262, - "*": 9, - "erlang": 5, - "smp": 1, - "enable": 1, - "sname": 1, - "factorial": 1, - "mnesia": 1, - "debug": 1, - "verbose": 1, - "main": 4, - "(": 236, - "[": 66, - "String": 2, - "]": 61, - ")": 230, - "try": 2, - "N": 6, - "list_to_integer": 1, - "F": 16, - "fac": 4, - "io": 5, - "format": 7, - "catch": 2, - "_": 52, - "usage": 3, - "end": 3, - ";": 56, - ".": 37, - "halt": 2, "For": 1, "each": 1, "header": 1, @@ -21436,11 +22709,17 @@ "fields": 4, "fields_atom": 4, "type": 6, + "-": 262, "module": 2, + "(": 236, "record_helper": 1, + ")": 230, + ".": 37, "export": 2, + "[": 66, "make/1": 1, "make/2": 1, + "]": 61, "make": 3, "HeaderFiles": 5, "atom_to_list": 18, @@ -21469,6 +22748,7 @@ "erl": 1, "list_to_binary": 1, "HeaderFile": 4, + "try": 2, "epp": 1, "parse_file": 1, "of": 9, @@ -21477,8 +22757,11 @@ "Tree": 4, "}": 109, "parse": 2, + ";": 56, "error": 4, "Error": 4, + "catch": 2, + "_": 52, "catched_error": 1, "end.": 3, "|": 25, @@ -21503,6 +22786,7 @@ "true": 3, "generate_fields_function": 2, "generate_fields_atom_function": 2, + "end": 3, "parse_field_name": 5, "record_field": 9, "atom": 9, @@ -21514,6 +22798,7 @@ "parse_field_name_atom": 5, "concat": 5, "_S": 3, + "F": 16, "S": 6, "concat_ext": 4, "parse_field": 6, @@ -21529,7 +22814,25 @@ "to_setter_getter_function": 5, "setter": 2, "getter": 2, - "main/1": 1, + "SHEBANG#!escript": 3, + "*": 9, + "erlang": 5, + "smp": 1, + "enable": 1, + "sname": 1, + "factorial": 1, + "mnesia": 1, + "debug": 1, + "verbose": 1, + "main": 4, + "String": 2, + "N": 6, + "list_to_integer": 1, + "fac": 4, + "io": 5, + "format": 7, + "usage": 3, + "halt": 2, "Mode": 1, "coding": 1, "utf": 1, @@ -21775,6 +23078,7 @@ "is_file": 1, "ExitCode": 2, "flush": 1, + "main/1": 1, "is": 1, "auto": 1, "generated": 1, @@ -21820,120 +23124,1022 @@ "NewParentObject": 2, "undefined.": 1 }, - "Forth": { - "-": 473, - "*": 9, - "forth": 2, - "Copyright": 3, - "Lars": 3, - "Brinkhoff": 3, - "Kernel": 4, - "#tib": 2, - "TODO": 12, - ".r": 1, - ".": 5, - "(": 88, - ")": 87, - "[": 16, - "char": 10, - "]": 15, - "parse": 5, - "type": 3, - ";": 61, - "immediate": 19, - "<": 14, - "n": 22, - "flag": 4, - "r": 18, - "x1": 5, - "x2": 5, - "R": 13, - "rot": 2, - "swap": 12, - "r@": 2, - "dup": 10, - "noname": 1, - "align": 2, - "here": 9, + "F#": { + "namespace": 7, + "Nessos.FsPickler.Json": 6, + "open": 34, + "System": 6, + "System.IO": 3, + "System.Text": 2, + "Newtonsoft.Json": 3, + "Nessos.FsPickler": 7, + "///": 50, + "": 13, + "Factory": 1, + "methods": 2, + "for": 9, + "the": 2, + "Json": 16, + "serialization": 1, + "format.": 2, + "": 13, + "type": 18, + "JsonPickleFormatProvider": 3, + "internal": 5, + "(": 254, + "indent": 11, + "omitHeader": 19, + ")": 256, + "as": 2, + "self": 1, + "let": 131, + "isCustomSeq": 5, + "isTopLevelSequence": 19, + "&&": 9, + "self.OmitHeader": 1, + "self.UseCustomTopLevelSequenceSeparator": 1, + "mutable": 5, + "sequenceSeparator": 5, + "member": 77, + "val": 4, + "Indent": 2, + "with": 18, + "get": 8, + "set": 9, + "OmitHeader": 3, + "UseCustomTopLevelSequenceSeparator": 1, + "false": 22, + "__.SequenceSeparator": 1, + "and": 5, + "sep": 6, + "if": 36, + "<": 32, + "null": 5, + "String.IsNullOrWhiteSpace": 1, + "then": 38, + "<->": 9, + "else": 24, + "invalidArg": 2, + "SequenceSeparator": 1, + "should": 4, + "be": 4, + "non": 2, + "whitespace": 2, + "interface": 4, + "ITextPickleFormatProvider": 1, + "__": 8, + "Name": 1, + "see": 1, + "discussion": 1, + "https": 1, + "github": 1, + "com": 1, + "nessos": 1, + "FsPickler": 8, + "issues": 1, + "17": 1, + "DefaultEncoding": 1, + "new": 52, + "UTF8Encoding": 1, + "Encoding": 1, + "__.CreateWriter": 2, + "stream": 6, + "encoding": 6, + "leaveOpen": 18, + "#if": 2, + "NET40": 2, + "raise": 11, + "<|>": 11, + "NotSupportedException": 3, + "not": 14, + "supported": 2, + "in": 15, + "NET": 2, + "40": 2, + "sw": 3, + "StreamWriter": 2, + "1024": 2, + "endif": 2, + "jw": 4, + "JsonTextWriter": 2, + "JsonPickleWriter": 3, + "_": 18, + "__.CreateReader": 2, + "sr": 3, + "StreamReader": 2, + "true": 15, + "jr": 4, + "JsonTextReader": 2, + "JsonPickleReader": 3, + "textWriter": 2, + "__.OmitHeader": 2, + "__.Indent": 1, + "textReader": 2, + "Nessos.FsPickler.Tests": 2, + "PerfUtil": 2, + "PerfUtil.NUnit": 1, + "NUnit.Framework": 1, + "[": 71, + "": 1, + "]": 71, + "PerfTester": 4, + "inherit": 7, + "NUnitPerf": 1, + "": 2, + "tests": 2, + "PerfTest.OfModuleMarker": 1, + "": 1, + "override": 4, + "__.PerfTests": 1, + "Serializer": 8, + "Comparison": 3, + "fsp": 4, + "FsPickler.initBinary": 3, + "bfs": 2, + "BinaryFormatterSerializer": 1, + "ndc": 2, + "NetDataContractSerializer": 1, + "jdn": 2, + "JsonDotNetSerializer": 1, + "bdn": 2, + "JsonDotNetBsonSerializer": 1, + "pbn": 2, + "ProtoBufSerializer": 1, + "ssj": 2, + "ServiceStackJsonSerializer": 1, + "sst": 2, + "ServiceStackTypeSerializer": 1, + "comparer": 6, + "WeightedComparer": 2, + "spaceFactor": 2, + "leastAcceptableImprovementFactor": 2, + "tester": 6, + "ImplementationComparer": 2, + "<_>": 4, + ";": 17, + "throwOnError": 3, + "warmup": 3, + "__.PerfTester": 3, + "Formats": 1, + "binary": 2, + "json": 5, + "FsPickler.initJson": 1, + "bson": 2, + "FsPickler.initBson": 1, + "xml": 2, + "FsPickler.initXml": 1, + "Past": 1, + "Versions": 1, + "persistResults": 2, + "persistenceFile": 2, + "version": 6, + "typeof": 2, + "": 1, + ".Assembly.GetName": 1, + ".Version": 1, + "PastImplementationComparer": 1, + "historyFile": 1, + "": 1, + "__.Persist": 1, + "tester.PersistCurrentResults": 1, + "System.Collections.Generic": 3, + "format": 4, + "serializer.": 1, + "jsonWriter": 26, + "JsonWriter": 1, + "indented": 2, + "separator": 2, + "do": 7, + "jsonWriter.Formatting": 1, + "-": 50, + "Formatting.Indented": 1, + "Formatting.None": 1, + "jsonWriter.CloseOutput": 1, + "isBsonWriter": 2, + "match": 7, + "Bson": 3, + "BsonWriter": 1, + "|": 56, + "depth": 35, + "isTopLevelSequenceHead": 4, + "currentValueIsNull": 4, + "arrayStack": 5, + "Stack": 4, + "": 4, + "arrayStack.Push": 5, + "Int32.MinValue": 2, + "omitTag": 45, + "||": 2, + "arrayStack.Peek": 2, + "IPickleFormatWriter": 1, + "__.BeginWriteRoot": 1, + "tag": 88, + "string": 44, + "jsonWriter.WriteStartObject": 2, + "writePrimitive": 23, + "jsonFormatVersion": 2, + "__.EndWriteRoot": 1, + "jsonWriter.WriteEnd": 1, + "__.BeginWriteObject": 1, + "flags": 3, + "ObjectFlags": 3, + "jsonWriter.WritePropertyName": 2, + "flags.HasFlag": 2, + "ObjectFlags.IsNull": 2, + "jsonWriter.WriteNull": 2, + "elif": 2, + "ObjectFlags.IsSequenceHeader": 1, + "jsonWriter.WriteStartArray": 1, + "+": 7, + "ObjectFlags.None": 2, + "flagCsv": 2, + "mkFlagCsv": 1, + "__.EndWriteObject": 1, + "1": 7, + "Peek": 1, + "0": 2, + "WriteEndArray": 1, + "Pop": 2, + "ignore": 11, + "jsonWriter.WriteEndObject": 1, + "__.SerializeUnionCaseNames": 2, + "__.PreferLengthPrefixInSequences": 2, + "__.WriteNextSequenceElement": 1, + "hasNext": 1, + "jsonWriter.WriteWhitespace": 1, + "__.WriteCachedObjectId": 1, + "id": 3, + "__.WriteBoolean": 1, + "value": 47, + "__.WriteByte": 1, + "__.WriteSByte": 1, + "__.WriteInt16": 1, + "__.WriteInt32": 1, + "__.WriteInt64": 1, + "__.WriteUInt16": 1, + "__.WriteUInt32": 1, + "__.WriteUInt64": 1, + "__.WriteSingle": 1, + "__.WriteDouble": 1, + "__.WriteDecimal": 1, + "__.WriteChar": 1, + "__.WriteString": 1, + "__.WriteBigInteger": 1, + "__.WriteGuid": 1, + "__.WriteTimeSpan": 1, + "__.WriteDate": 1, + "value.Ticks": 1, + "__.WriteBytes": 1, + "byte": 3, + "obj.ReferenceEquals": 1, + "jsonWriter.WriteValue": 1, + "__.IsPrimitiveArraySerializationSupported": 2, + "__.WritePrimitiveArray": 1, + "__.Dispose": 1, + "jsonWriter.Flush": 1, + "OAttribute": 1, + "System.Runtime.InteropServices.OptionalAttribute": 1, + "DAttribute": 1, + "System.Runtime.InteropServices.DefaultParameterValueAttribute": 1, + "pickler": 7, + "instance.": 5, + "JsonSerializer": 2, + "FsPicklerTextSerializer": 2, + "private": 2, + "Initializes": 3, + "a": 11, + "": 9, + "name=": 9, + "out": 2, + "pickles.": 4, + "": 9, + "omit": 2, + "header": 2, + "specify": 3, + "custom": 5, + "name": 3, + "converter.": 3, + "": 8, + "typeConverter": 12, + "defaultArg": 2, + "{": 5, + "}": 5, + "Gets": 4, + "or": 4, + "sets": 4, + "whether": 3, + "output": 1, + "indented.": 1, + "x.Indent": 1, + "x.format.Indent": 2, + "b": 4, + "headers": 1, + "ignored": 1, + "pickle": 5, + "x.OmitHeader": 1, + "x.format.OmitHeader": 2, + "that": 1, + "serves": 1, + "top": 2, + "level": 2, + "sequence": 1, + "separator.": 2, + "x.SequenceSeparator": 1, + "x.format.SequenceSeparator": 2, + "sequences": 1, + "serialized": 1, + "using": 1, + "x.UseCustomTopLevelSequenceSeparator": 1, + "x.format.UseCustomTopLevelSequenceSeparator": 2, + "e": 2, + "BSON": 1, + "BsonSerializer": 2, + "FsPicklerSerializer": 1, + "BsonPickleFormatProvider": 1, + "static": 3, + "methods.": 1, + "CreateJson": 1, + "CreateBson": 1, + "Nessos.FsPickler.Combinators": 1, + "pickling": 1, + "": 1, + "module": 3, + "jsonSerializer": 1, + "lazy": 1, + "FsPickler.CreateJson": 1, + "Pickles": 1, + "to": 1, + "Json.": 1, + "utilized": 1, + "pickler.": 1, + "input": 1, + "value.": 2, + "Pickler": 1, + "<'T>": 1, + "T": 4, + "bsonPickler.Value.UnPickle": 1, + "Sample": 1, + "Foo": 1, + "Bar": 1, + "Baz": 1, + "end": 3, + "Sample1": 1, + "xs": 2, + "int": 4, + "list": 1, + "List.map": 2, + "fun": 7, + "x": 4, + "String.concat": 1, + "System.Globalization": 1, + "System.Numerics": 1, + "deserializer": 1, + "jsonReader": 17, + "JsonReader": 1, + "jsonReader.CloseInput": 1, + "jsonReader.SupportMultipleContent": 1, + "isBsonReader": 4, + "BsonReader": 1, + "IPickleFormatReader": 1, + "__.BeginReadRoot": 1, + "jsonReader.Read": 2, + "jsonReader.TokenType": 5, + "JsonToken.StartObject": 1, + "FormatException": 6, + "jsonReader.MoveNext": 6, + "jsonReader.ReadPrimitiveAs": 21, + "": 15, + "v": 1, + "Version": 1, + "sprintf": 3, + "sTag": 3, + "InvalidPickleTypeException": 1, + "EndReadRoot": 1, + "Read": 6, + "__.BeginReadObject": 1, + "jsonReader.ReadProperty": 1, + "IsSequenceHeader": 2, + "TokenType": 3, + "JsonToken": 5, + "Null": 1, + "JsonToken.StartArray": 1, + "StartObject": 1, + "jsonReader.ValueAs": 8, + "csvFlags": 2, + "parseFlagCsv": 1, + "token": 4, + "expected": 2, + "start": 1, + "of": 2, + "object": 2, + "but": 2, + "was": 2, + "O": 2, + "EndReadObject": 1, + "JsonToken.Null": 2, + "JsonToken.EndObject": 1, + "EndArray": 1, + "arrayStack.Pop": 1, + "__.ReadNextSequenceElement": 1, + "JsonToken.None": 1, + "JsonToken.EndArray": 1, + "__.ReadCachedObjectId": 1, + "": 10, + "__.ReadBoolean": 1, + "": 1, + "__.ReadByte": 1, + "__.ReadSByte": 1, + "sbyte": 1, + "__.ReadInt16": 1, + "int16": 1, + "__.ReadInt32": 1, + "__.ReadInt64": 1, + "__.ReadUInt16": 1, + "uint16": 1, + "__.ReadUInt32": 1, + "uint32": 1, + "__.ReadUInt64": 1, + "uint64": 1, + "__.ReadSingle": 1, + "ReadProperty": 3, + "MoveNext": 2, + "Float": 4, + "": 2, + "single": 1, + "JsonToken.String": 2, + "Single.Parse": 1, + "CultureInfo.InvariantCulture": 2, + "float": 4, + "__.ReadDouble": 1, + "Double.Parse": 1, + "__.ReadChar": 1, + "__.ReadString": 1, + "__.ReadBigInteger": 1, + "BigInteger.Parse": 1, + "__.ReadGuid": 1, + "": 1, + "Guid.Parse": 1, + "__.ReadTimeSpan": 1, + "TimeSpan.Parse": 1, + "__.ReadDecimal": 1, + "decimal": 1, + "__.ReadDate": 1, + "ticks": 2, + "DateTime": 2, + "": 1, + "__.ReadBytes": 1, + "bytes": 2, + "": 1, + "base64": 2, + "Convert.FromBase64String": 1, + "__.ReadPrimitiveArray": 1, + "NotImplementedException": 1, + "Dispose": 1, + "IDisposable": 1, + ".Dispose": 1, + "Nessos.FsPickler.Tests.Serializer": 1, + "Nessos.FsPickler.Tests.TestTypes": 1, + "PerformanceTests": 1, + "Marker": 1, + "class": 1, + "guid": 2, + "Guid.NewGuid": 1, + "": 13, + "Value": 5, + "Guid": 1, + "s": 68, + "roundtrip": 34, + "date": 2, + "DateTime.Now": 2, + "": 9, + "String": 4, + "stringValue": 12, + "boxed": 2, + "box": 11, + "..": 9, + "Boxed": 1, + "Object": 1, + "fsClass": 2, + "Class": 5, + "Simple": 1, + "F#": 1, + "serializableClass": 2, + "SerializableClass": 2, + "ISerializable": 1, + "boxedClass": 2, + "Some": 6, + "Subtype": 1, + "Resolution": 1, + "floatArray": 2, + "Array.init": 3, + "i": 29, + "": 3, + "Array": 7, + "intArray": 2, + "Int": 3, + "stringArray": 2, + "": 9, + "kvarr": 2, + "Array.map": 1, + "Key": 2, + "Pairs": 1, + "duArray": 2, + "Something": 1, + "Discriminated": 1, + "Unions": 1, + "objArray": 2, + "option": 3, + "Objects": 1, + "array3D": 2, + "Array3D.init": 1, + "j": 2, + "k": 2, + "*": 3, + "Rank": 1, + "bclDict": 2, + "dict": 1, + ".NET": 4, + "Dictionary": 1, + "bclStack": 2, + "bclList": 2, + "List": 6, + "bclSet": 2, + "SortedSet": 1, + "Set": 2, + "smallTuple": 2, + "FSharp": 15, + "Tuple": 3, + "Small": 2, + "largeTuple": 2, + "Large": 2, + "intList": 2, + "stringList": 2, + "pairList": 2, + "nestedLst": 2, + "n": 10, + "Nested": 1, + "union": 2, + "SomethingElse": 1, + "Union": 1, + "record": 2, + "Record": 1, + "peano": 2, + "int2Peano": 1, + "Peano": 1, + "Rectype": 1, + "closure": 2, + "@": 4, + "Set.ofList": 1, + "Curried": 1, + "Function": 1, + "binTree": 2, + "mkTree": 1, + "Binary": 1, + "Tree": 1, + "intSet": 2, + "fsMap": 2, + "Seq.map": 2, + "Map.ofSeq": 1, + "Map": 2, + "testType": 2, + "ref": 1, + "Reflection": 1, + "Type": 1, + "quotationSmall": 2, + "<@>": 1, + "pown": 1, + "quotationLarge": 2, + "async": 2, + "rec": 1, + "fibAsync": 4, + "when": 2, + "return": 4, + "fn": 2, + "fnn": 2, + "values": 2, + "Async.Parallel": 1, + "Seq.sum": 1, + "Quotation": 2 + }, + "FORTRAN": { "c": 3, - "allot": 2, - "lastxt": 4, - "@": 13, - "SP": 1, - "+": 17, - "query": 1, - "tib": 1, - "source": 5, - "#source": 2, - "body": 1, - "true": 1, - "tuck": 2, - "x": 10, - "y": 5, - "over": 5, - "u.r": 1, - "u": 3, - "if": 9, - "drop": 4, - "false": 1, - "else": 6, - "then": 5, - "unused": 1, - "value": 1, - "create": 2, - "does": 5, - "within": 1, - "compile": 2, - "Forth2012": 2, - "core": 1, - "extension": 4, - "words.": 6, - "action": 1, - "of": 3, - "buffer": 2, - "defer": 2, - "name": 1, - "s": 4, + "comment": 8, + "*": 4, + "program": 3, + "main": 3, + "end": 12, + "subroutine": 3, + "foo": 4, + "(": 20, + "i": 12, + "x": 8, + "b": 8, + ")": 20, + "INTEGER": 4, + "REAL": 4, + "LOGICAL": 4, + "if": 6, + "i.ne.0": 3, + "then": 3, + "call": 3, + "bar": 4, + "-": 4, + "return": 6, + "double": 3, + "complex": 3, + "function": 3, + "baz": 8, + "d0": 8, + "PROGRAM": 1, + "MAIN": 1, + "END": 4, + "C": 1, + "SUBROUTINE": 1, + "IF": 2, + "i.NE.0": 1, + "THEN": 1, + "CALL": 1, + "RETURN": 2, + "DOUBLE": 1, + "COMPLEX": 1, + "FUNCTION": 1 + }, + "Forth": { + "immediate": 103, + "lastxt": 16, + "@": 50, + "dup": 35, + "c@": 13, + "negate": 5, + "swap": 41, + "c": 20, + ";": 237, + "source": 17, + "nip": 6, + "in": 9, + "Copyright": 8, + "Lars": 8, + "Brinkhoff": 8, + "char": 42, + "(": 238, + "-": 769, + ")": 233, + "bl": 17, + "word": 33, + "here": 38, + "+": 46, + "ahead": 10, + "resolve": 20, + "literal": 20, + "postpone": 68, + "nonimmediate": 5, + "caddr": 5, + "drop": 20, + "C": 45, + "find": 6, + "cells": 5, + "postponers": 5, + "execute": 6, + "unresolved": 20, + "orig": 25, + "chars": 5, + "n1": 6, + "n2": 6, + "else": 22, + "orig1": 5, + "orig2": 5, + "branch": 25, + "if": 25, + "flag": 8, + "then": 18, + "[": 49, + "]": 48, + "does": 26, + "dodoes_code": 5, + "over": 21, + "code": 15, + "r": 40, + "begin": 11, + "dest": 25, + "while": 10, + "x": 23, + "repeat": 10, + "until": 5, + "recurse": 5, + "compile": 6, + "pad": 15, + "addr": 41, + "parse": 18, + "n": 39, + "<": 24, + "r@": 6, + "TODO": 16, + "If": 5, + "necessary": 5, + "refill": 6, + "and": 14, + "keep": 5, + "parsing.": 5, + "string": 15, + "allot": 7, + "align": 6, + "cmove": 6, + "s": 20, + "state": 6, + "...": 12, + "R": 17, + "cr": 11, + "type": 7, + "abort": 15, + "": 5, + "Undefined": 5, + "ok": 5, + "Implements": 2, + "ENUM.": 1, + "Double": 1, + "DOES": 1, + "enum": 2, + "create": 8, + "rot": 5, + "But": 1, + "this": 1, + "is": 11, + "simpler.": 1, + "constant": 1, "HELLO": 4, + ".": 8, + "Assembler": 1, + "for": 2, + "x86.": 1, + "Adds": 1, + "to": 5, + "FORTH": 1, + "vocabulary": 3, + "ASSEMBLER": 2, + "CODE": 3, + "CODE.": 2, + "Creates": 1, + "with": 4, + "END": 1, + "x86": 1, + "opcodes.": 1, + "Conventional": 1, + "prefix": 1, + "syntax": 2, + "Addressing": 2, + "modes": 2, + "direct": 2, + "register": 2, + "": 1, + "indirect": 4, + "displacement": 1, + "indexed": 2, + "not": 3, + "supported": 1, + "yet": 1, + "require": 2, + "lib/common.fth": 1, + "search.fth": 1, + "assembler": 5, + "also": 2, + "definitions": 2, + "Access": 1, + "the": 9, + "target": 1, + "image.": 1, + "cell": 5, + "defer": 3, + "nop": 3, + "mrrm": 16, + "mod": 1, + "c0": 1, + "bits": 9, + "reg@": 1, + "@bits": 2, + "reg": 24, + "rm@": 4, + "rm": 10, + "lshift": 4, + "opcode": 17, + "rshift": 5, + "Write": 1, + "parts": 1, + "of": 4, + "instruction": 3, + "memory.": 1, + "ds": 12, + "d": 7, + "twobyte": 2, + "FF": 5, + "sib": 5, + "imm8": 6, + "imm": 13, + "imm16": 2, + "h": 1, + "imm32": 2, + "disp8": 2, + "disp": 5, + "disp32": 2, + "Set": 2, + "operand": 1, + "size.": 1, + "opsize": 6, + "op32": 2, + "SIB": 1, + "byte.": 1, + "addressing": 1, + "direct.": 1, + "reg1": 1, + "reg2": 2, + "off": 5, + "alu#": 9, + "sign": 1, + "extend": 1, + "mov#": 2, + "B0": 1, + "push#": 2, + "test#": 2, + "F6": 1, + "op": 53, + "Process": 1, + "one": 1, + "operand.": 1, + "All": 1, + "operands": 1, + "except": 1, + "a": 7, + "address": 1, + "have": 2, + "stack": 4, + "picture": 1, + "n*x": 1, + "xt": 1, + "Define": 1, + "formats.": 2, + "asm": 2, + "mnemonic": 1, + "u": 6, + "latestxt": 1, + "body": 2, + "Instruction": 2, + "format": 8, + "relative": 1, + "op8": 2, + "mnemonics.": 1, + "add": 1, + "or": 3, + "F44": 1, + "Todo": 1, + "other": 1, + "condition": 1, + "codes.": 1, + "FB6": 1, + "movzx": 1, + "FBE": 1, + "movsx": 1, + "adc": 1, + "sbb": 1, + "es": 1, + "sub": 1, + "E": 2, + "cs": 3, + "xor": 1, + "ss": 1, + "cmp": 1, + "push": 2, + "pop": 2, + "fs": 1, + "gs": 1, + "jcc": 1, + "test": 2, + "xchg": 1, + "mov": 3, + "D": 1, + "lea": 1, + "F/0": 1, + "C3": 1, + "ret": 1, + "C6/0": 1, + "r/m": 2, + "C7/0": 1, + "CD": 1, + "int": 1, + "E8": 1, + "call": 2, + "E9": 1, + "jmp": 3, + "EB": 1, + "rel8": 1, + "F0": 1, + "lock": 1, + "F2": 1, + "rep": 1, + "F3": 1, + "repz": 1, + "F4": 1, + "hlt": 1, + "F5": 1, + "cmc": 1, + "F610": 1, + "F618": 1, + "neg": 1, + "F8": 1, + "clc": 1, + "F9": 1, + "stc": 1, + "FA": 1, + "cli": 1, + "FB": 1, + "sti": 1, + "FC": 1, + "cld": 1, + "FD": 1, + "std": 1, + "FE": 1, + "inc": 1, + "dec": 1, + "sp": 2, + "mode": 1, + "displaced": 1, + "indirect.": 1, + "#": 1, + "idx": 1, + "idx#": 1, + "reg16": 2, + "reg8": 1, + "reg32": 1, + "Register": 1, + "names.": 1, + "al": 1, + "ax": 1, + "eax": 1, + "cl": 1, + "cx": 1, + "ecx": 1, + "dl": 1, + "dx": 1, + "edx": 1, + "bx": 1, + "ebx": 1, + "ah": 1, + "esp": 1, + "ch": 1, + "bp": 1, + "ebp": 1, + "dh": 1, + "si": 1, + "esi": 1, + "bh": 1, + "di": 1, + "edi": 1, + "Runtime": 1, + "defined": 2, + "elsewhere.": 1, + "base": 1, + "only": 1, + "forth": 3, + "Standard": 1, + "entry": 1, + "points.": 1, + "name": 2, + "header": 1, + "start": 2, + "reveal": 2, + "csp": 1, + "previous": 1, + "*": 10, "Tools": 2, + "words.": 7, ".s": 1, "emit": 2, "depth": 1, - "word": 9, "traverse": 1, "dictionary": 1, - "cr": 3, - "code": 3, - "assembler": 1, - "in": 4, + "extension": 4, "kernel": 1, "bye": 1, - "cs": 2, "pick": 1, "roll": 1, "editor": 1, "forget": 1, - "reveal": 1, - "state": 2, + "Kernel": 4, + "Forth2012": 2, "tools": 1, "nr": 1, "synonym": 1, "undefined": 2, - "bl": 4, - "find": 2, - "nip": 2, - "defined": 1, - "postpone": 14, - "invert": 1, - "addr": 11, + "invert": 2, "/cell": 2, - "cell": 2, + "tuck": 2, + "Simplifies": 1, + "compiling": 1, + "Usage": 1, + "foo": 2, + "bar": 1, "KataDiversion": 1, "Forth": 1, "utils": 1, "empty": 2, - "the": 7, - "stack": 3, "EMPTY": 1, "DEPTH": 2, "IF": 10, @@ -21943,8 +24149,6 @@ "THEN": 10, "power": 2, "**": 2, - "n1": 2, - "n2": 2, "n1_pow_n2": 1, "SWAP": 8, "DUP": 14, @@ -21967,13 +24171,11 @@ "i*2": 1, "/": 3, "kata": 1, - "test": 1, "given": 3, "N": 6, "has": 1, "two": 2, "adjacent": 2, - "bits": 3, "NOT": 3, "TWO": 3, "ADJACENT": 3, @@ -21988,7 +24190,6 @@ "LOG2": 1, "loop": 4, "end": 1, - "and": 3, "OR": 1, "INVERT": 1, "maximum": 1, @@ -21997,59 +24198,37 @@ "can": 2, "be": 2, "made": 2, - "with": 2, "MAX": 2, "NB": 3, "m": 2, "**n": 1, "numbers": 1, - "or": 1, "less": 1, - "have": 1, - "not": 1, "bits.": 1, "see": 1, "http": 1, "//www.codekata.com/2007/01/code_kata_fifte.html": 1, "HOW": 1, "MANY": 1, - "c@": 2, - "negate": 1, - "ahead": 2, - "resolve": 4, - "literal": 4, - "nonimmediate": 1, - "caddr": 1, - "C": 9, - "cells": 1, - "postponers": 1, - "execute": 1, - "unresolved": 4, - "orig": 5, - "chars": 1, - "orig1": 1, - "orig2": 1, - "branch": 5, - "dodoes_code": 1, - "begin": 2, - "dest": 5, - "while": 2, - "repeat": 2, - "until": 1, - "recurse": 1, - "pad": 3, - "If": 1, - "necessary": 1, - "refill": 2, - "keep": 1, - "parsing.": 1, - "string": 3, - "cmove": 1, - "...": 4, - "abort": 3, - "": 1, - "Undefined": 1, - "ok": 1, + "#tib": 2, + ".r": 1, + "x1": 5, + "x2": 5, + "noname": 1, + "SP": 1, + "query": 1, + "tib": 1, + "#source": 2, + "true": 1, + "y": 5, + "u.r": 1, + "false": 1, + "unused": 1, + "value": 1, + "within": 1, + "core": 1, + "action": 1, + "buffer": 2, "Block": 2, "variable": 3, "blk": 3, @@ -22070,61 +24249,259 @@ "list": 1, "bounds": 1, "do": 2, - "thru": 1 + "thru": 1, + "Bit": 1, + "arrays.": 1, + "u1": 1, + "u2": 1, + "bitmap": 1, + "erase": 1, + "bit@": 1, + "f": 2, + "bit": 5 }, "Frege": { - "package": 2, - "examples.Sudoku": 1, + "module": 2, + "examples.Concurrent": 1, "where": 39, "import": 7, - "Data.TreeMap": 1, + "System.Random": 1, + "Java.Net": 1, "(": 339, + "URL": 2, + ")": 345, + "Control.Concurrent": 1, + "as": 33, + "C": 6, + "main2": 1, + "args": 2, + "do": 38, + "m": 2, + "<": 84, + "-": 730, + "newEmptyMVar": 1, + "forkIO": 11, + "m.put": 3, + "replicateM_": 3, + "c": 33, + "m.take": 1, + "print": 25, + "println": 25, + "example1": 1, + "putChar": 2, + "example2": 2, + "s": 21, + "<->": 35, + "getLine": 2, + "case": 6, + "long": 4, + "of": 32, + "Right": 6, + "n": 38, + "setReminder": 3, + "Left": 5, + "_": 60, + "Long": 3, + "IO": 13, + "+": 200, + "show": 24, + "Thread.sleep": 4, + "L*n": 1, + "table": 1, + "mainPhil": 2, + "[": 120, + "fork1": 3, + "fork2": 3, + "fork3": 3, + "fork4": 3, + "fork5": 3, + "]": 116, + "mapM": 3, + "MVar": 3, + "new": 9, + "1": 2, + "5": 1, + "philosopher": 7, + "Kant": 1, + "Locke": 1, + "Wittgenstein": 1, + "Nozick": 1, + "Mises": 1, + "return": 17, + "String": 9, + "Int": 6, + "me": 13, + "left": 4, + "right": 4, + "g": 4, + "Random.newStdGen": 1, + "let": 8, + "phil": 4, + "tT": 2, + "g1": 2, + "Random.randomR": 2, + "L": 6, + "eT": 2, + "g2": 3, + "thinkTime": 3, + "*": 5, + "eatTime": 3, + "fl": 4, + "left.take": 1, + "rFork": 2, + "poll": 1, + "Just": 2, + "fr": 3, + "right.put": 1, + "left.put": 2, + "table.notifyAll": 2, + "Nothing": 2, + "table.wait": 1, + "inter": 3, + "InterruptedException": 4, + "catch": 2, + "getURL": 4, + "xx": 2, + "url": 1, + "URL.new": 1, + "con": 3, + "url.openConnection": 1, + "con.connect": 1, + "is": 24, + "con.getInputStream": 1, + "typ": 5, + "con.getContentType": 1, + "stderr.println": 3, + "ir": 2, + "InputStreamReader.new": 2, + "fromMaybe": 1, + "charset": 2, + "unsupportedEncoding": 3, + "br": 4, + "BufferedReader": 1, + "getLines": 1, + "InputStream": 1, + "UnsupportedEncodingException": 1, + "InputStreamReader": 1, + "x": 45, + "x.catched": 1, + "ctyp": 2, + "charset=": 1, + "m.group": 1, + "type": 8, + "SomeException": 2, + "Throwable": 1, + "main": 11, + "m1": 1, + "MVar.newEmpty": 3, + "m2": 1, + "m3": 2, + "r": 7, + "catchAll": 3, + ".": 41, + "m1.put": 1, + "m2.put": 1, + "m3.put": 1, + "r1": 2, + "m1.take": 1, + "r2": 3, + "m2.take": 1, + "r3": 3, + "take": 13, + "result": 11, + "ss": 8, + "mapM_": 5, + "putStrLn": 2, + "|": 62, + "x.getClass.getName": 1, + "y": 15, + "sum": 2, + "map": 49, + "length": 20, + "examples.CommandLineClock": 1, + "data": 3, + "Date": 5, + "native": 4, + "java.util.Date": 1, + "MutableIO": 1, + "toString": 2, + "Mutable": 1, + "ST": 1, + "d.toString": 1, + "action": 2, + "to": 13, + "give": 2, + "us": 1, + "the": 20, + "current": 4, + "time": 1, + "d": 3, + "java": 5, + "lang": 2, + "Thread": 2, + "sleep": 4, + "takes": 1, + "a": 99, + "and": 14, + "returns": 2, + "nothing": 2, + "but": 2, + "may": 1, + "throw": 1, + "an": 6, + "This": 2, + "without": 1, + "doubt": 1, + "public": 1, + "static": 1, + "void": 2, + "millis": 1, + "throws": 4, + "Encoded": 1, + "in": 22, + "Frege": 1, + "argument": 1, + "does": 2, + "defined": 1, + "frege": 1, + "Lang": 1, + "forever": 1, + "stdout.flush": 1, + "package": 2, + "examples.Sudoku": 1, + "Data.TreeMap": 1, "Tree": 4, "keys": 2, - ")": 345, "Data.List": 1, - "as": 33, "DL": 1, "hiding": 1, "find": 20, "union": 10, - "type": 8, "Element": 6, - "Int": 6, - "-": 730, "Zelle": 8, - "[": 120, - "]": 116, "set": 4, - "of": 32, "candidates": 18, "Position": 22, "Feld": 3, "Brett": 13, - "data": 3, "for": 25, "assumptions": 10, - "and": 14, "conclusions": 2, "Assumption": 21, "ISNOT": 14, - "|": 62, "IS": 16, "derive": 2, "Eq": 1, "Ord": 1, "instance": 1, "Show": 1, - "show": 24, "p": 72, "e": 15, "pname": 10, - "+": 200, "e.show": 2, "showcs": 5, "cs": 27, "joined": 4, - "map": 49, "Assumption.show": 1, "elements": 12, "all": 22, @@ -22132,9 +24509,7 @@ "..": 1, "positions": 16, "rowstarts": 4, - "a": 99, "row": 20, - "is": 24, "starting": 3, "colstarts": 3, "column": 2, @@ -22145,10 +24520,8 @@ "by": 3, "adding": 1, "upper": 2, - "left": 4, "position": 9, "results": 1, - "in": 22, "real": 1, "extract": 2, "field": 9, @@ -22162,19 +24535,15 @@ "b": 113, "snd": 20, "compute": 5, - "the": 20, "list": 7, "that": 18, "belong": 3, - "to": 13, "same": 8, "given": 3, "z..": 1, "z": 12, "quot": 1, - "*": 5, "col": 17, - "c": 33, "mod": 3, "ri": 2, "div": 3, @@ -22184,7 +24553,6 @@ "ci": 3, "index": 3, "middle": 2, - "right": 4, "check": 2, "if": 5, "candidate": 10, @@ -22197,7 +24565,6 @@ "solved": 1, "single": 9, "Bool": 2, - "_": 60, "true": 16, "false": 13, "unsolved": 10, @@ -22211,7 +24578,6 @@ "zip": 7, "repeat": 3, "containers": 6, - "String": 9, "PRINTING": 1, "printable": 1, "coordinate": 1, @@ -22221,27 +24587,18 @@ "packed": 1, "chr": 2, "ord": 6, - "print": 25, "board": 41, "printb": 4, - "mapM_": 5, "p1line": 2, - "println": 25, - "do": 38, "pfld": 4, "line": 2, "brief": 1, "no": 4, - ".": 41, "some": 2, - "x": 45, "zs": 1, "initial/final": 1, - "result": 11, "msg": 6, - "return": 17, "res012": 2, - "case": 6, "concatMap": 1, "a*100": 1, "b*10": 1, @@ -22252,9 +24609,7 @@ "about": 1, "what": 1, "done": 1, - "new": 9, "turnoff1": 3, - "IO": 13, "i": 16, "off": 11, "nc": 7, @@ -22262,17 +24617,14 @@ "newb": 7, "filter": 26, "notElem": 7, - "<->": 35, "turnoff": 11, "turnoffh": 1, "ps": 8, "foldM": 2, "toh": 2, "setto": 3, - "n": 38, "cname": 4, "nf": 2, - "<": 84, "SOLVING": 1, "STRATEGIES": 1, "reduce": 3, @@ -22280,7 +24632,6 @@ "contains": 1, "numbers": 1, "already": 1, - "This": 2, "finds": 1, "logs": 1, "NAKED": 5, @@ -22293,7 +24644,6 @@ "than": 2, "fields": 6, "are": 6, - "s": 21, "rcb": 16, "elem": 16, "collect": 1, @@ -22316,7 +24666,6 @@ "FOR": 11, "IN": 9, "occurs": 5, - "length": 20, "PAIRS": 8, "TRIPLES": 8, "QUADS": 2, @@ -22328,7 +24677,6 @@ "tuple": 2, "name": 2, "//": 8, - "let": 8, "u": 6, "fold": 7, "non": 2, @@ -22342,7 +24690,6 @@ "uniq": 4, "sort": 4, "common": 4, - "1": 2, "bs": 7, "undefined": 1, "cannot": 1, @@ -22361,8 +24708,6 @@ "intersection": 1, "we": 5, "occurences": 1, - "but": 2, - "an": 6, "XY": 2, "Wing": 2, "there": 6, @@ -22373,7 +24718,6 @@ "B": 5, "Z": 6, "shares": 2, - "C": 6, "reasoning": 1, "will": 4, "be": 9, @@ -22382,7 +24726,6 @@ "thus": 1, "see": 1, "xyWing": 2, - "y": 15, "rcba": 4, "share": 1, "b1": 11, @@ -22409,7 +24752,6 @@ "fish": 7, "fishname": 5, "rset": 4, - "take": 13, "certain": 1, "rflds": 2, "rowset": 1, @@ -22462,7 +24804,6 @@ "conclusion": 4, "THE": 1, "FIRST": 1, - "con": 3, "implication": 2, "ai": 2, "so": 1, @@ -22492,7 +24833,6 @@ "Liste": 1, "aller": 1, "Annahmen": 1, - "r": 7, "ein": 1, "bestimmtes": 1, "acstree": 3, @@ -22501,7 +24841,6 @@ "maybe": 1, "tree": 1, "lookup": 2, - "Just": 2, "error": 1, "performance": 1, "resons": 1, @@ -22531,22 +24870,18 @@ "available": 1, "strategies": 1, "until": 1, - "nothing": 2, "changes": 1, "anymore": 1, "Strategy": 1, "functions": 2, "supposed": 1, "applied": 1, - "give": 2, "changed": 1, "board.": 1, "strategy": 2, - "does": 2, "anything": 1, "alter": 1, "it": 2, - "returns": 2, "next": 1, "tried.": 1, "solve": 19, @@ -22586,11 +24921,9 @@ "<=>": 1, "0": 2, "ignored": 1, - "main": 11, "h": 1, "help": 1, "usage": 1, - "java": 5, "Sudoku": 2, "file": 4, "81": 3, @@ -22605,15 +24938,12 @@ "sudokuoftheday": 1, "pages": 1, "o": 1, - "d": 3, "php": 1, - "Right": 6, "click": 1, "puzzle": 1, "open": 1, "tab": 1, "Copy": 1, - "URL": 2, "address": 1, "your": 1, "browser": 1, @@ -22630,156 +24960,14 @@ "files": 2, "forM_": 1, "sudoku": 2, - "br": 4, "openReader": 1, "lines": 2, "BufferedReader.getLines": 1, "process": 5, - "ss": 8, - "mapM": 3, - "sum": 2, "candi": 2, "consider": 3, "acht": 4, - "stderr.println": 3, "neun": 2, - "module": 2, - "examples.Concurrent": 1, - "System.Random": 1, - "Java.Net": 1, - "Control.Concurrent": 1, - "main2": 1, - "args": 2, - "m": 2, - "newEmptyMVar": 1, - "forkIO": 11, - "m.put": 3, - "replicateM_": 3, - "m.take": 1, - "example1": 1, - "putChar": 2, - "example2": 2, - "getLine": 2, - "long": 4, - "setReminder": 3, - "Left": 5, - "Long": 3, - "Thread.sleep": 4, - "L*n": 1, - "table": 1, - "mainPhil": 2, - "fork1": 3, - "fork2": 3, - "fork3": 3, - "fork4": 3, - "fork5": 3, - "MVar": 3, - "5": 1, - "philosopher": 7, - "Kant": 1, - "Locke": 1, - "Wittgenstein": 1, - "Nozick": 1, - "Mises": 1, - "me": 13, - "g": 4, - "Random.newStdGen": 1, - "phil": 4, - "tT": 2, - "g1": 2, - "Random.randomR": 2, - "L": 6, - "eT": 2, - "g2": 3, - "thinkTime": 3, - "eatTime": 3, - "fl": 4, - "left.take": 1, - "rFork": 2, - "poll": 1, - "fr": 3, - "right.put": 1, - "left.put": 2, - "table.notifyAll": 2, - "Nothing": 2, - "table.wait": 1, - "inter": 3, - "InterruptedException": 4, - "catch": 2, - "getURL": 4, - "xx": 2, - "url": 1, - "URL.new": 1, - "url.openConnection": 1, - "con.connect": 1, - "con.getInputStream": 1, - "typ": 5, - "con.getContentType": 1, - "ir": 2, - "InputStreamReader.new": 2, - "fromMaybe": 1, - "charset": 2, - "unsupportedEncoding": 3, - "BufferedReader": 1, - "getLines": 1, - "InputStream": 1, - "UnsupportedEncodingException": 1, - "InputStreamReader": 1, - "x.catched": 1, - "ctyp": 2, - "charset=": 1, - "m.group": 1, - "SomeException": 2, - "Throwable": 1, - "m1": 1, - "MVar.newEmpty": 3, - "m2": 1, - "m3": 2, - "catchAll": 3, - "m1.put": 1, - "m2.put": 1, - "m3.put": 1, - "r1": 2, - "m1.take": 1, - "r2": 3, - "m2.take": 1, - "r3": 3, - "putStrLn": 2, - "x.getClass.getName": 1, - "examples.CommandLineClock": 1, - "Date": 5, - "native": 4, - "java.util.Date": 1, - "MutableIO": 1, - "toString": 2, - "Mutable": 1, - "ST": 1, - "d.toString": 1, - "action": 2, - "us": 1, - "current": 4, - "time": 1, - "lang": 2, - "Thread": 2, - "sleep": 4, - "takes": 1, - "may": 1, - "throw": 1, - "without": 1, - "doubt": 1, - "public": 1, - "static": 1, - "void": 2, - "millis": 1, - "throws": 4, - "Encoded": 1, - "Frege": 1, - "argument": 1, - "defined": 1, - "frege": 1, - "Lang": 1, - "forever": 1, - "stdout.flush": 1, "examples.SwingExamples": 1, "Java.Awt": 1, "ActionListener": 2, @@ -22856,6 +25044,16 @@ "G-code": { "e": 145, "-": 146, + "G28": 1, + "X0": 2, + "Y0": 2, + "G1": 17, + "X55": 3, + "Y5": 3, + "F2000": 1, + "Y180": 2, + "X180": 2, + "M0": 2, ";": 8, "RepRapPro": 1, "Ormerod": 1, @@ -22886,14 +25084,11 @@ ")": 1, "T0": 2, "Extruder": 1, - "G1": 17, "X50": 1, "F500": 2, - "X0": 2, "G4": 18, "P500": 6, "Y50": 1, - "Y0": 2, "Z20": 1, "F200": 2, "Z0": 1, @@ -22907,14 +25102,7 @@ "P0": 1, "S100": 2, "M140": 1, - "P5000": 12, - "M0": 2, - "G28": 1, - "X55": 3, - "Y5": 3, - "F2000": 1, - "Y180": 2, - "X180": 2 + "P5000": 12 }, "GAMS": { "*Basic": 1, @@ -23079,24 +25267,491 @@ "#############################################################################": 63, "##": 766, "#W": 4, - "example.gd": 2, + "vspc.gi": 1, + "GAP": 15, + "library": 2, + "Thomas": 2, + "Breuer": 2, + "#Y": 6, + "Copyright": 6, + "(": 721, + "C": 11, + ")": 722, + "Lehrstuhl": 2, + "D": 36, + "f": 11, + "r": 2, + "Mathematik": 2, + "RWTH": 2, + "Aachen": 2, + "Germany": 2, + "School": 2, + "Math": 2, + "and": 102, + "Comp.": 2, + "Sci.": 2, + "University": 4, + "of": 114, + "St": 2, + "Andrews": 2, + "Scotland": 2, + "The": 21, + "Group": 3, "This": 10, "file": 7, "contains": 7, + "generic": 1, + "methods": 4, + "for": 53, + "vector": 67, + "spaces.": 4, + "#M": 20, + "SetLeftActingDomain": 2, + "": 2, + "": 12, + "check": 5, + "whether": 5, + "the": 136, + "left": 15, + "acting": 8, + "domain": 17, + "external": 1, + "set": 6, + "knows": 1, + "that": 39, + "it": 8, + "is": 72, "a": 113, - "sample": 2, - "of": 114, - "GAP": 15, - "declaration": 1, - "file.": 3, - "DeclareProperty": 2, - "(": 721, - "IsLeftModule": 6, - ")": 722, + "division": 15, + "ring.": 3, + "used": 10, + "e.g.": 1, + "to": 37, + "tell": 1, + "free": 3, + "module": 2, + "over": 24, + "ring": 14, + "space.": 5, + "InstallOtherMethod": 3, + "[": 145, + "IsAttributeStoringRep": 2, + "IsLeftActedOnByRing": 2, + "IsObject": 1, + "]": 169, + "function": 37, + "extL": 2, + "if": 103, + "HasIsDivisionRing": 1, + "IsDivisionRing": 5, + "then": 128, + "SetIsLeftActedOnByDivisionRing": 1, + "true": 21, ";": 569, - "DeclareGlobalFunction": 5, + "fi": 91, + "TryNextMethod": 7, + "end": 34, + "IsLeftActedOnByDivisionRing": 4, + "": 42, + "InstallMethod": 18, + "IsExtLSet": 1, + "M": 7, + "IsIdenticalObj": 5, + "LeftActingDomain": 29, + "else": 25, + "return": 41, + "#F": 17, + "VectorSpace": 13, + "": 10, + "": 5, + "": 2, + "only": 5, + "difference": 1, + "between": 1, + "shall": 1, + "be": 24, + "space": 74, + "must": 6, + "InstallGlobalFunction": 5, + "arg": 16, + "Length": 14, + "or": 13, + "not": 49, + "Error": 7, + "CallFuncList": 1, + "FreeLeftModule": 1, + "AsSubspace": 5, + "": 38, + "": 10, + ".": 257, + "collection": 3, + "IsVectorSpace": 26, + "IsCollection": 3, + "V": 152, + "local": 16, + "newC": 7, + "IsSubset": 4, + "fail": 18, + "AsVectorSpace": 4, + "SetParent": 1, + "UseIsomorphismRelation": 2, + "UseSubsetRelation": 4, + "AsLeftModule": 6, + "View": 1, + "as": 23, + "F": 61, + "W": 32, + "#": 73, + "result": 9, + "base": 5, + "basis": 14, + "vectors": 16, + "field": 12, + "extension": 3, + "gen": 5, + "loop": 2, + "generators": 16, + "b": 8, + "gens": 16, + "newgens": 4, + "extended": 1, + "list": 16, + "Characteristic": 2, + "<": 17, + "elif": 21, + "BasisVectors": 4, + "Basis": 5, + "AsField": 2, + "in": 64, + "GeneratorsOfLeftModule": 9, + "do": 18, + "*": 12, + "od": 15, + "LeftModuleByGenerators": 5, + "Zero": 5, + "IsEmpty": 6, + "Add": 4, + "Intersection": 1, + "ViewObj": 4, + "view": 4, + "print": 1, + "known": 5, + "also": 3, + "dimension": 9, + "no.": 1, + "HasGeneratorsOfLeftModule": 2, + "Print": 24, + "HasDimension": 1, + "override": 1, + "method": 4, + "Dimension": 6, + "PrintObj": 5, + "HasZero": 1, + "/": 12, + "": 2, + "factor": 2, + "by": 14, + "subspace": 7, + "": 1, + "Subspace": 4, + "ImagesSource": 1, + "NaturalHomomorphismBySubspace": 1, + "Intersection2Spaces": 4, + "": 2, + "": 2, + "": 2, + "AsStructure": 3, + "Substructure": 3, + "Structure": 2, + "inters": 17, + "intersection": 5, + "coefficients": 3, + "gensV": 7, + "gensW": 7, + "VW": 3, + "sum": 1, + "B": 16, + "Intersection2": 4, + "IsFiniteDimensional": 2, + "Concatenation": 15, + "List": 6, + "x": 14, + "-": 67, + "Coefficients": 3, + "SumIntersectionMat": 1, + "LinearCombination": 2, + "HasParent": 2, + "Parent": 4, + "SetIsTrivial": 1, + "two": 13, + "spaces": 15, + "SubspaceNC": 2, + "ClosureLeftModule": 2, + "": 1, + "closure": 1, + "IsCollsElms": 1, + "HasBasis": 1, + "IsVector": 1, + "w": 3, + "#T": 6, + "why": 2, + "easily": 1, + "UseBasis": 1, + "Methods": 1, + "collections": 1, + "subspaces": 17, + "#R": 1, + "IsSubspacesVectorSpaceDefaultRep": 7, + "representation": 1, + "domains": 3, + "with": 24, + "components": 1, + "value": 9, + "either": 2, + "string": 6, + "which": 8, + "means": 1, + "all": 18, + "DeclareRepresentation": 1, + "IsComponentObjectRep": 1, + "IsSubspacesVectorSpace": 9, + "IsInt": 3, + ".dimension": 9, + ".structure": 9, + "Size": 5, + "number": 2, + "k": 17, + "dimensional": 5, + "n": 31, + "q": 20, + "elements": 7, + "prod_": 2, + "{": 21, + "i": 25, + "}": 21, + "frac": 3, + "We": 4, + "have": 3, + "recursion": 1, + "+": 9, + "sum_": 1, + "size": 12, + "qn": 10, + "qd": 10, + "ank": 6, + "..": 6, + "Int": 1, + "/2": 4, + "mod": 2, + "Enumerator": 2, + "Use": 1, + "iterator": 3, + "compute": 3, + "list.": 2, + "allowed": 1, + "iter": 17, + "elms": 4, + "Iterator": 5, + "while": 5, + "IsDoneIterator": 3, + "NextIterator": 5, + "necessary": 2, + "uses": 2, + "full": 2, + "row": 17, + "mechanism": 4, + "associated": 3, + "BindGlobal": 7, + ".associatedIterator": 3, + "next": 6, + ".basis": 2, + "rec": 20, + "structure": 4, + "associatedIterator": 2, + "ShallowCopy": 2, + "IteratorByFunctions": 1, + "IsDoneIterator_Subspaces": 1, + "NextIterator_Subspaces": 1, + "ShallowCopy_Subspaces": 1, + "Subspaces": 8, + "FullRowSpace": 5, + "": 1, + "dim": 2, + "IsFinite": 4, + "Objectify": 2, + "NewType": 2, + "CollectionsFamily": 2, + "FamilyObj": 2, + "IsSubspace": 3, + "": 6, + "U": 12, + "IsVectorSpaceHomomorphism": 3, + "": 2, + "IsGeneralMapping": 2, + "map": 4, + "S": 4, + "R": 5, + "Source": 1, + "false": 7, + "Range": 1, + "IsLinearMapping": 1, + "#E": 2, + "example.gd": 2, + "sample": 2, + "implementation": 1, + "file.": 3, + "SomeOperation": 1, + "": 2, + "performs": 1, + "some": 2, + "operation": 1, + "on": 5, + "SomeProperty": 1, + "IsLeftModule": 6, + "IsFreeLeftModule": 3, + "IsTrivial": 1, + "SomeGlobalFunction": 2, + "A": 9, + "global": 1, + "variadic": 1, + "funfion.": 1, + "SomeFunc": 1, + "y": 8, + "z": 3, + "func": 3, + "tmp": 20, + "j": 3, + "repeat": 1, + "until": 1, + "PackageInfo.g": 2, + "package": 10, + "cvec": 1, + "s": 4, + "template": 1, + "SetPackageInfo": 1, + "PackageName": 2, + "Subtitle": 1, + "Version": 1, + "Date": 1, + "dd/mm/yyyy": 1, + "format": 2, + "Information": 1, + "about": 3, + "authors": 1, + "maintainers.": 1, + "Persons": 1, + "LastName": 1, + "FirstNames": 1, + "IsAuthor": 1, + "IsMaintainer": 1, + "Email": 1, + "WWWHome": 1, + "PostalAddress": 1, + "Place": 1, + "Institution": 1, + "Status": 2, + "information.": 1, + "Currently": 1, + "following": 4, + "cases": 2, + "are": 14, + "recognized": 1, + "successfully": 2, + "refereed": 2, + "packages": 5, + "developers": 1, + "agreed": 1, + "distribute": 1, + "them": 1, + "core": 1, + "system": 1, + "development": 1, + "versions": 1, + "other": 4, + "You": 1, + "provide": 2, + "entries": 8, + "status": 1, + "because": 2, + "was": 1, + "#CommunicatedBy": 1, + "#AcceptDate": 1, + "PackageWWWHome": 1, + "README_URL": 1, + ".PackageWWWHome": 2, + "PackageInfoURL": 1, + "ArchiveURL": 1, + ".Version": 2, + "ArchiveFormats": 1, + "Here": 2, + "you": 3, + "short": 1, + "abstract": 1, + "explaining": 1, + "content": 1, + "HTML": 1, + "overview": 1, + "Web": 1, + "page": 1, + "an": 17, + "URL": 1, + "Webpage": 1, + "more": 3, + "detailed": 1, + "information": 1, + "than": 1, + "few": 1, + "lines": 1, + "less": 1, + "ok": 1, + "Please": 1, + "use": 5, + "specifing": 1, + "names.": 1, + "AbstractHTML": 1, + "PackageDoc": 1, + "BookName": 1, + "ArchiveURLSubset": 1, + "HTMLStart": 1, + "PDFFile": 1, + "SixFile": 1, + "LongTitle": 1, + "Dependencies": 1, + "NeededOtherPackages": 1, + "SuggestedOtherPackages": 1, + "ExternalConditions": 1, + "AvailabilityTest": 1, + "SHOW_STAT": 1, + "Filename": 8, + "DirectoriesPackagePrograms": 1, + "#Info": 1, + "InfoWarning": 1, + "*Optional*": 2, + "but": 1, + "recommended": 1, + "path": 1, + "relative": 1, + "root": 1, + "many": 1, + "tests": 1, + "functionality": 1, + "sensible.": 1, + "#TestFile": 1, + "can": 12, + "keyword": 1, + "related": 1, + "topic": 1, + "package.": 2, + "Keywords": 1, + "vspc.gd": 1, + "declares": 1, + "operations": 2, + "bases": 5, + "modules": 1, + "found": 1, + "lib/basis.gd": 1, "#C": 7, - "IsQuuxFrobnicator": 1, + "IsLeftOperatorRing": 1, "": 3, "": 28, "": 7, @@ -23104,100 +25759,361 @@ "Arg=": 33, "Type=": 7, "": 28, - "Tests": 1, - "whether": 5, - "R": 5, - "is": 72, - "quux": 1, - "frobnicator.": 1, "": 28, "": 28, "DeclareSynonym": 17, - "IsField": 1, - "and": 102, - "IsGroup": 1, + "IsLeftOperatorAdditiveGroup": 2, + "IsRing": 1, + "IsAssociativeLOpDProd": 2, + "really": 4, + "IsLeftOperatorRingWithOne": 2, + "IsRingWithOne": 1, + "IsLeftVectorSpace": 3, + "<#GAPDoc>": 17, + "Label=": 19, + "": 12, + "": 12, + "&": 37, + "see": 30, + "nbsp": 30, + "": 71, + "Func=": 40, + "Chapter": 3, + "Chap=": 3, + "

": 23, - "Whenever": 1, - "we": 3, - "talk": 1, - "about": 3, - "an": 17, - "": 42, - "F": 61, - "": 41, - "": 117, - "V": 152, - "": 117, - "additive": 1, - "group": 2, - "on": 5, - "which": 8, - "acts": 1, - "via": 6, - "multiplication": 1, - "from": 5, - "such": 4, - "that": 39, - "action": 4, - "addition": 1, - "are": 14, - "right": 2, - "distributive.": 1, - "accessed": 1, - "as": 23, - "value": 9, - "attribute": 2, - "Vector": 1, - "spaces": 15, - "always": 1, - "Filt=": 4, - "synonyms.": 1, - "<#/GAPDoc>": 17, - "IsLeftActedOnByDivisionRing": 4, - "InstallTrueMethod": 4, - "IsFreeLeftModule": 3, - "#F": 17, - "IsGaussianSpace": 10, - "": 14, - "filter": 3, - "Sect=": 6, - "row": 17, - "matrix": 5, - "field": 12, - "say": 1, - "indicates": 3, - "entries": 8, - "all": 18, - "vectors": 16, - "matrices": 5, - "respectively": 1, - "contained": 4, - "In": 3, - "case": 2, - "called": 1, - "Gaussian": 19, - "space.": 5, - "Bases": 1, - "computed": 2, - "using": 2, - "elimination": 5, - "given": 4, - "list": 16, - "generators.": 1, - "": 12, - "": 12, - "gap": 41, - "mats": 5, - "VectorSpace": 13, - "Rationals": 13, - "E": 2, - "element": 2, - "extension": 3, - "Field": 1, - "": 12, - "DeclareFilter": 1, - "IsFullMatrixModule": 1, - "IsFullRowModule": 1, - "IsDivisionRing": 5, - "": 12, - "nontrivial": 1, - "associative": 1, - "algebra": 2, - "multiplicative": 1, - "inverse": 1, - "each": 2, - "nonzero": 3, - "element.": 1, - "every": 1, - "possibly": 1, - "itself": 1, - "being": 2, - "thus": 1, - "property": 2, - "get": 1, - "because": 2, - "usually": 1, - "represented": 1, - "coefficients": 3, - "stored": 1, - "DeclareSynonymAttr": 4, - "IsMagmaWithInversesIfNonzero": 1, - "IsNonTrivial": 1, - "IsAssociative": 1, - "IsEuclideanRing": 1, - "#A": 7, - "GeneratorsOfLeftVectorSpace": 1, - "GeneratorsOfVectorSpace": 2, - "": 7, - "For": 10, - "Attr=": 10, - "returns": 14, - "generate": 1, - "FullRowSpace": 5, - "GeneratorsOfLeftOperatorAdditiveGroup": 2, - "CanonicalBasis": 3, - "If": 11, - "supports": 1, - "canonical": 6, - "basis": 14, - "otherwise": 2, - "": 3, - "": 3, - "returned.": 4, - "defining": 1, - "its": 2, - "uniquely": 1, - "determined": 1, - "by": 14, - "exist": 1, - "two": 13, - "same": 6, - "acting": 8, - "domain": 17, - "equality": 1, - "these": 5, - "decided": 1, - "comparing": 1, - "bases.": 1, - "exact": 1, - "meaning": 1, - "depends": 1, - "type": 2, - "Canonical": 1, - "defined": 3, - "example": 3, - "one": 11, - "designs": 1, - "new": 2, - "kind": 1, - "defines": 1, - "method": 4, - "installs": 1, - "must": 6, - "call": 1, - "On": 1, - "other": 4, - "hand": 1, - "probably": 2, - "should": 2, - "install": 1, - "simply": 2, - "calls": 1, - "": 10, - "CANONICAL_BASIS_FLAGS": 1, - "": 9, - "vecs": 4, - "B": 16, - "": 8, - "3": 5, - "generators": 16, - "BasisVectors": 4, - "DeclareAttribute": 4, - "IsRowSpace": 2, - "consists": 7, - "IsRowModule": 1, - "IsGaussianRowSpace": 1, - "scalars": 2, - "occur": 2, - "vectors.": 2, - "Thus": 3, - "use": 5, - "calculations.": 2, - "Otherwise": 3, - "non": 4, - "Gaussian.": 2, - "We": 4, - "need": 3, - "flag": 2, - "to": 37, - "write": 3, - "down": 2, - "methods": 4, - "delegate": 2, - "ones.": 2, - "IsNonGaussianRowSpace": 1, - "expresses": 2, - "so": 3, - "cannot": 2, - "used": 10, - "compute": 3, - "handled": 3, - "mechanism": 4, - "nice": 4, - "following": 4, - "way.": 2, - "Let": 4, - "K": 4, - "spanned": 4, - "Then": 1, - "/": 12, - "cap": 1, - "v": 5, - "replacing": 1, - "entry": 2, - "forming": 1, - "concatenation.": 1, - "So": 2, - "associated": 3, - "DeclareHandlingByNiceBasis": 2, - "IsMatrixSpace": 2, - "IsMatrixModule": 1, - "IsGaussianMatrixSpace": 1, - "IsNonGaussianMatrixSpace": 1, - "irrelevant": 1, - "concatenation": 1, - "rows": 1, - "necessarily": 1, - "NormedRowVectors": 2, - "normed": 1, - "finite": 5, - "those": 1, - "have": 3, - "first": 1, - "component.": 1, - "yields": 1, - "natural": 1, - "dimensional": 5, - "subspaces": 17, - "also": 3, - "GF": 22, - "*Z": 5, - "Z": 6, - "Action": 1, - "GL": 1, - "OnLines": 1, - "TrivialSubspace": 2, - "subspace": 7, - "zero": 4, - "triv": 2, - "0": 2, - "AsSet": 1, - "TrivialSubmodule": 1, - "": 5, - "": 2, - "collection": 3, - "gens": 16, - "elements": 7, - "optional": 3, - "argument": 1, - "specify": 3, - "empty.": 1, - "string": 6, - "known": 5, - "linearly": 3, - "independent": 3, - "particular": 1, - "dimension": 9, - "immediately": 2, - "set": 6, - "note": 2, - "formed": 1, - "argument.": 1, - "2": 1, - "Subspace": 4, - "generated": 1, - "SubspaceNC": 2, - "subset": 4, - "empty": 1, - "trivial": 1, - "parent": 3, - "returned": 3, - "does": 1, - "except": 1, - "it": 8, - "omits": 1, - "check": 5, - "both": 2, - "W": 32, - "1": 3, - "Submodule": 1, - "SubmoduleNC": 1, - "#O": 2, - "AsVectorSpace": 4, - "view": 4, - "": 2, - "domain.": 1, - "form": 2, - "Oper=": 6, - "smaller": 1, - "larger": 1, - "ring.": 3, - "Dimension": 6, - "LeftActingDomain": 29, - "9": 1, - "AsLeftModule": 6, - "AsSubspace": 5, - "": 6, - "U": 12, - "collection.": 1, - "/2": 4, - "Parent": 4, - "DeclareOperation": 2, - "IsCollection": 3, - "Intersection2Spaces": 4, - "": 2, - "": 2, - "": 2, - "takes": 1, - "arguments": 1, - "intersection": 5, - "domains": 3, - "different": 2, - "let": 1, - "their": 1, - "intersection.": 1, - "AsStruct": 2, - "equal": 1, - "either": 2, - "Substruct": 1, - "common": 1, - "Struct": 1, - "cases": 2, - "basis.": 1, - "handle": 1, - "intersections": 1, - "algebras": 2, - "ideals": 2, - "sided": 1, - "ideals.": 1, - "": 2, - "": 2, - "nonnegative": 2, - "integer": 2, - "length": 1, - "An": 2, - "alternative": 2, - "construct": 2, - "above": 2, - "FullRowModule": 2, - "FullMatrixSpace": 2, - "": 1, - "positive": 1, - "integers": 1, - "fact": 1, - "FullMatrixModule": 3, - "IsSubspacesVectorSpace": 9, - "fixed": 1, - "lies": 1, - "category": 1, - "Subspaces": 8, - "Size": 5, - "iter": 17, - "Iterator": 5, - "NextIterator": 5, - "DeclareCategory": 1, - "IsDomain": 1, - "#M": 20, - "IsFinite": 4, - "Returns": 1, - "only": 5, - "": 1, - "Called": 2, - "k": 17, - "Special": 1, - "provided": 1, - "domains.": 1, - "IsInt": 3, - "IsSubspace": 3, - "OrthogonalSpaceInFullRowSpace": 1, - "complement": 1, - "full": 2, - "#P": 1, - "IsVectorSpaceHomomorphism": 3, - "": 2, - "": 1, - "mapping": 2, - "homomorphism": 1, - "linear": 1, - "source": 2, - "range": 1, - "b": 8, - "s": 4, - "*": 12, - "hold": 1, - "IsGeneralMapping": 2, - "#E": 2, - "vspc.gi": 1, - "generic": 1, - "SetLeftActingDomain": 2, - "": 2, - "external": 1, - "knows": 1, - "e.g.": 1, - "tell": 1, - "InstallOtherMethod": 3, - "IsAttributeStoringRep": 2, - "IsLeftActedOnByRing": 2, - "IsObject": 1, - "extL": 2, - "HasIsDivisionRing": 1, - "SetIsLeftActedOnByDivisionRing": 1, - "TryNextMethod": 7, - "InstallMethod": 18, - "IsExtLSet": 1, - "M": 7, - "IsIdenticalObj": 5, - "difference": 1, - "between": 1, - "shall": 1, - "CallFuncList": 1, - "FreeLeftModule": 1, - "newC": 7, - "IsSubset": 4, - "SetParent": 1, - "UseIsomorphismRelation": 2, - "UseSubsetRelation": 4, - "View": 1, - "base": 5, - "gen": 5, - "loop": 2, - "newgens": 4, - "extended": 1, - "Characteristic": 2, - "Basis": 5, - "AsField": 2, - "GeneratorsOfLeftModule": 9, - "LeftModuleByGenerators": 5, - "Zero": 5, - "Intersection": 1, - "ViewObj": 4, - "print": 1, - "no.": 1, - "HasGeneratorsOfLeftModule": 2, - "HasDimension": 1, - "override": 1, - "PrintObj": 5, - "HasZero": 1, - "": 2, - "factor": 2, - "": 1, - "ImagesSource": 1, - "NaturalHomomorphismBySubspace": 1, - "AsStructure": 3, - "Substructure": 3, - "Structure": 2, - "inters": 17, - "gensV": 7, - "gensW": 7, - "VW": 3, - "sum": 1, - "Intersection2": 4, - "IsFiniteDimensional": 2, - "Coefficients": 3, - "SumIntersectionMat": 1, - "LinearCombination": 2, - "HasParent": 2, - "SetIsTrivial": 1, - "ClosureLeftModule": 2, - "": 1, - "closure": 1, - "IsCollsElms": 1, - "HasBasis": 1, - "IsVector": 1, - "w": 3, - "why": 2, - "easily": 1, - "UseBasis": 1, - "Methods": 1, - "collections": 1, - "#R": 1, - "IsSubspacesVectorSpaceDefaultRep": 7, - "representation": 1, - "components": 1, - "means": 1, - "DeclareRepresentation": 1, - "IsComponentObjectRep": 1, - ".dimension": 9, - ".structure": 9, - "number": 2, - "q": 20, - "prod_": 2, - "frac": 3, - "recursion": 1, - "sum_": 1, - "size": 12, - "qn": 10, - "qd": 10, - "ank": 6, - "Int": 1, - "mod": 2, - "Enumerator": 2, - "Use": 1, - "iterator": 3, - "list.": 2, - "allowed": 1, - "elms": 4, - "IsDoneIterator": 3, - "necessary": 2, - "uses": 2, - ".associatedIterator": 3, - "next": 6, - ".basis": 2, - "structure": 4, - "associatedIterator": 2, - "ShallowCopy": 2, - "IteratorByFunctions": 1, - "IsDoneIterator_Subspaces": 1, - "NextIterator_Subspaces": 1, - "ShallowCopy_Subspaces": 1, - "": 1, - "dim": 2, - "Objectify": 2, - "NewType": 2, - "CollectionsFamily": 2, - "FamilyObj": 2, - "map": 4, - "S": 4, - "Source": 1, - "Range": 1, - "IsLinearMapping": 1, - "PackageInfo.g": 2, - "cvec": 1, - "template": 1, - "SetPackageInfo": 1, - "Subtitle": 1, - "Version": 1, - "Date": 1, - "dd/mm/yyyy": 1, - "format": 2, - "Information": 1, - "authors": 1, - "maintainers.": 1, - "Persons": 1, - "LastName": 1, - "FirstNames": 1, - "IsAuthor": 1, - "IsMaintainer": 1, - "Email": 1, - "WWWHome": 1, - "PostalAddress": 1, - "Place": 1, - "Institution": 1, - "Status": 2, - "information.": 1, - "Currently": 1, - "recognized": 1, - "successfully": 2, - "refereed": 2, - "packages": 5, - "developers": 1, - "agreed": 1, - "distribute": 1, - "them": 1, - "core": 1, - "system": 1, - "development": 1, - "versions": 1, - "You": 1, - "provide": 2, - "status": 1, - "was": 1, - "#CommunicatedBy": 1, - "#AcceptDate": 1, - "PackageWWWHome": 1, - "README_URL": 1, - ".PackageWWWHome": 2, - "PackageInfoURL": 1, - "ArchiveURL": 1, - ".Version": 2, - "ArchiveFormats": 1, - "Here": 2, - "you": 3, - "short": 1, - "abstract": 1, - "explaining": 1, - "content": 1, - "HTML": 1, - "overview": 1, - "Web": 1, - "page": 1, - "URL": 1, - "Webpage": 1, - "more": 3, - "detailed": 1, - "information": 1, - "than": 1, - "few": 1, - "lines": 1, - "less": 1, - "ok": 1, - "Please": 1, - "specifing": 1, - "names.": 1, - "AbstractHTML": 1, - "PackageDoc": 1, - "BookName": 1, - "ArchiveURLSubset": 1, - "HTMLStart": 1, - "PDFFile": 1, - "SixFile": 1, - "LongTitle": 1, - "Dependencies": 1, - "NeededOtherPackages": 1, - "SuggestedOtherPackages": 1, - "ExternalConditions": 1, - "AvailabilityTest": 1, - "SHOW_STAT": 1, - "DirectoriesPackagePrograms": 1, - "#Info": 1, - "InfoWarning": 1, - "*Optional*": 2, - "but": 1, - "recommended": 1, - "path": 1, - "relative": 1, - "root": 1, - "many": 1, - "tests": 1, - "functionality": 1, - "sensible.": 1, - "#TestFile": 1, - "some": 2, - "keyword": 1, - "related": 1, - "topic": 1, - "package.": 2, - "Keywords": 1, "Magic.gd": 1, "SHEBANG#!#! @Description": 1, "SHEBANG#!#! This": 1, @@ -24212,24 +26411,13 @@ "SHEBANG#!#! @Returns": 1, "SHEBANG#!#! @Arguments": 1, "SHEBANG#!#! @ChapterInfo": 1, - "implementation": 1, - "SomeOperation": 1, - "": 2, - "performs": 1, - "operation": 1, - "SomeProperty": 1, - "IsTrivial": 1, - "SomeGlobalFunction": 2, - "global": 1, - "variadic": 1, - "funfion.": 1, - "SomeFunc": 1, - "y": 8, - "z": 3, - "func": 3, - "j": 3, - "repeat": 1, - "until": 1 + "declaration": 1, + "IsQuuxFrobnicator": 1, + "Tests": 1, + "quux": 1, + "frobnicator.": 1, + "IsField": 1, + "IsGroup": 1 }, "GAS": { ".cstring": 1, @@ -24289,53 +26477,197 @@ }, "GDScript": { "extends": 4, - "BaseClass": 1, + "Control": 1, "var": 86, - "a": 6, - "s": 4, - "arr": 1, - "[": 22, - "]": 22, - "dict": 1, - "{": 2, - "}": 2, + "score": 4, + "score_label": 2, + "null": 1, "const": 11, - "answer": 1, - "thename": 1, - "v2": 1, - "Vector2": 61, + "MAX_SHAPES": 2, + "block": 3, + "preload": 2, "(": 314, ")": 313, - "v3": 1, - "Vector3": 9, + "block_colors": 3, + "[": 22, + "Color": 7, + "]": 22, + "block_shapes": 4, + "Vector2": 61, + "-": 31, + "#": 18, + "I": 1, + "O": 1, + "S": 1, + "Z": 1, + "L": 1, + "J": 1, + "T": 1, + "block_rotations": 2, + "Matrix32": 4, + "width": 5, + "height": 6, + "cells": 8, + "{": 2, + "}": 2, + "piece_active": 7, + "false": 16, + "piece_shape": 8, + "piece_pos": 3, + "piece_rot": 5, "func": 19, - "some_function": 1, - "param1": 4, - "param2": 5, - "local_var": 2, - "if": 56, - "<": 14, - "print": 6, - "elif": 4, - "else": 11, + "piece_cell_xform": 4, + "p": 2, + "er": 4, + "r": 2, + "+": 24, + "%": 3, + "return": 14, + ".xform": 1, + "_draw": 1, + "sb": 2, + "get_stylebox": 1, + "use": 1, + "line": 1, + "edit": 1, + "bg": 1, + "draw_style_box": 1, + "Rect2": 5, + "get_size": 1, + ".grow": 1, + "bs": 3, + "block.get_size": 1, "for": 9, - "i": 7, + "y": 12, "in": 12, "range": 6, - "while": 1, - "-": 31, - "local_var2": 2, - "+": 24, - "return": 14, - "class": 1, - "Something": 1, - "_init": 1, - "lv": 10, - "Something.new": 1, - "lv.a": 1, + "x": 12, + "if": 56, + "draw_texture_rect": 2, + "*bs": 2, + "c": 6, + "piece_check_fit": 6, + "ofs": 2, + "pos": 4, + "pos.x": 2, + "<": 14, + "pos.y": 2, + "true": 11, + "new_piece": 3, + "randi": 1, + "width/2": 1, + "piece_pos.y": 2, + "not": 5, + "#game": 1, + "over": 1, + "#print": 1, + "game_over": 2, + "update": 7, + "test_collapse_rows": 2, + "accum_down": 6, + "i": 7, + "collapse": 3, + "else": 11, + "cells.erase": 1, + "accum_down*100": 1, + "score_label.set_text": 2, + "str": 1, + "get_node": 24, + ".set_text": 2, + "restart_pressed": 1, + "cells.clear": 1, + "piece_move_down": 2, + "piece_rotate": 2, + "adv": 2, + "_input": 1, + "ie": 1, + "ie.is_pressed": 1, + "ie.is_action": 4, + "piece_pos.x": 2, + "elif": 4, + "setup": 2, + "w": 3, + "h": 3, + "set_size": 1, + "*block.get_size": 1, + ".start": 1, + "_ready": 3, + "Initalization": 2, + "here": 2, + "set_process_input": 1, + "Node2D": 1, + "INITIAL_BALL_SPEED": 3, + "ball_speed": 2, + "screen_size": 2, + "#default": 1, + "ball": 3, + "direction": 6, + "pad_size": 4, + "PAD_SPEED": 1, + "_process": 1, + "delta": 8, + "get": 2, + "positio": 1, + "and": 16, + "pad": 3, + "rectangles": 1, + "ball_pos": 8, + ".get_pos": 5, + "left_rect": 1, + "pad_size*0.5": 2, + "right_rect": 1, + "#integrate": 1, + "new": 1, + "postion": 1, + "direction*ball_speed*delta": 1, + "#flip": 2, + "when": 2, + "touching": 2, + "roof": 1, + "or": 4, + "floor": 1, + "ball_pos.y": 1, + "direction.y": 5, + "<0)>": 1, + "screen_size.y": 3, + "change": 1, + "increase": 1, + "speed": 2, + "pads": 1, + "left_rect.has_point": 1, + "direction.x": 4, + "right_rect.has_point": 1, + "ball_speed*": 1, + "randf": 1, + "*2.0": 1, + "direction.normalized": 1, + "#check": 1, + "gameover": 1, + "ball_pos.x": 1, + "<0>": 1, + "screen_size.x": 1, + "screen_size*0.5": 1, + ".set_pos": 3, + "#move": 2, + "left": 1, + "left_pos": 2, + "left_pos.y": 4, + "Input.is_action_pressed": 4, + "PAD_SPEED*delta": 4, + "right": 1, + "right_pos": 2, + "right_pos.y": 4, + "get_viewport_rect": 1, + ".size": 1, + "actual": 1, + "size": 1, + ".get_texture": 1, + ".get_size": 1, + "set_process": 1, "RigidBody": 1, "#var": 1, "dir": 8, + "Vector3": 9, "ANIM_FLOOR": 2, "ANIM_AIR_UP": 2, "ANIM_AIR_DOWN": 2, @@ -24345,10 +26677,8 @@ "facing_dir": 2, "movement_dir": 3, "jumping": 5, - "false": 16, "turn_speed": 2, "keep_jump_inertia": 2, - "true": 11, "air_idle_deaccel": 2, "accel": 2, "deaccel": 2, @@ -24365,34 +26695,33 @@ "p_adjust_rate": 2, "current_gn": 2, "n": 2, - "#": 18, "normal": 1, "t": 2, "n.cross": 1, ".normalized": 2, - "x": 12, "n.dot": 1, - "y": 12, "t.dot": 1, "ang": 12, "atan2": 1, "abs": 1, "too": 1, "small": 1, + "s": 4, "sign": 1, "*": 15, "turn": 3, + "a": 6, "cos": 2, "sin": 1, "p_facing.length": 1, "_integrate_forces": 1, "state": 5, + "lv": 10, "state.get_linear_velocity": 1, "linear": 1, "velocity": 3, "g": 3, "state.get_total_gravity": 1, - "delta": 8, "state.get_step": 1, "d": 2, "delta*state.get_total_density": 1, @@ -24411,10 +26740,8 @@ "hv": 8, "horizontal": 3, "hdir": 7, - "direction": 6, "hspeed": 14, "length": 1, - "speed": 2, "floor_velocity": 5, "onfloor": 6, "get_contact_count": 2, @@ -24432,7 +26759,6 @@ "to": 3, "walk": 1, "cam_xform": 5, - "get_node": 24, "target": 1, "camera": 1, "get_global_transform": 1, @@ -24450,7 +26776,6 @@ "shoot": 1, "target_dir": 5, "sharp_turn": 2, - "and": 16, "rad2deg": 1, "acos": 1, "target_dir.dot": 1, @@ -24483,7 +26808,6 @@ "set_transform": 1, "Transform": 1, "origin": 1, - "not": 5, "7": 1, "sfx": 1, "play": 1, @@ -24496,7 +26820,6 @@ "pass": 2, "state.set_linear_velocity": 1, "bullet": 3, - "preload": 2, ".instance": 1, "bullet.set_transform": 1, ".get_global_transform": 2, @@ -24516,187 +26839,133 @@ ".transition_node_set_current": 1, "min": 1, "state.set_angular_velocity": 1, - "_ready": 3, - "Initalization": 2, - "here": 2, ".set_active": 1, - "Node2D": 1, - "INITIAL_BALL_SPEED": 3, - "ball_speed": 2, - "screen_size": 2, - "#default": 1, - "ball": 3, - "pad_size": 4, - "PAD_SPEED": 1, - "_process": 1, - "get": 2, - "positio": 1, - "pad": 3, - "rectangles": 1, - "ball_pos": 8, - ".get_pos": 5, - "left_rect": 1, - "Rect2": 5, - "pad_size*0.5": 2, - "right_rect": 1, - "#integrate": 1, - "new": 1, - "postion": 1, - "direction*ball_speed*delta": 1, - "#flip": 2, - "when": 2, - "touching": 2, - "roof": 1, - "or": 4, - "floor": 1, - "ball_pos.y": 1, - "direction.y": 5, - "<0)>": 1, - "screen_size.y": 3, - "change": 1, - "increase": 1, - "pads": 1, - "left_rect.has_point": 1, - "direction.x": 4, - "right_rect.has_point": 1, - "ball_speed*": 1, - "randf": 1, - "*2.0": 1, - "direction.normalized": 1, - "#check": 1, - "gameover": 1, - "ball_pos.x": 1, - "<0>": 1, - "screen_size.x": 1, - "screen_size*0.5": 1, - ".set_pos": 3, - "#move": 2, - "left": 1, - "left_pos": 2, - "left_pos.y": 4, - "Input.is_action_pressed": 4, - "PAD_SPEED*delta": 4, - "right": 1, - "right_pos": 2, - "right_pos.y": 4, - "get_viewport_rect": 1, - ".size": 1, - "actual": 1, - "size": 1, - ".get_texture": 1, - ".get_size": 1, - "set_process": 1, - "Control": 1, - "score": 4, - "score_label": 2, - "null": 1, - "MAX_SHAPES": 2, - "block": 3, - "block_colors": 3, - "Color": 7, - "block_shapes": 4, - "I": 1, - "O": 1, - "S": 1, - "Z": 1, - "L": 1, - "J": 1, - "T": 1, - "block_rotations": 2, - "Matrix32": 4, - "width": 5, - "height": 6, - "cells": 8, - "piece_active": 7, - "piece_shape": 8, - "piece_pos": 3, - "piece_rot": 5, - "piece_cell_xform": 4, - "p": 2, - "er": 4, - "r": 2, - "%": 3, - ".xform": 1, - "_draw": 1, - "sb": 2, - "get_stylebox": 1, - "use": 1, - "line": 1, - "edit": 1, - "bg": 1, - "draw_style_box": 1, - "get_size": 1, - ".grow": 1, - "bs": 3, - "block.get_size": 1, - "draw_texture_rect": 2, - "*bs": 2, - "c": 6, - "piece_check_fit": 6, - "ofs": 2, - "pos": 4, - "pos.x": 2, - "pos.y": 2, - "new_piece": 3, - "randi": 1, - "width/2": 1, - "piece_pos.y": 2, - "#game": 1, - "over": 1, - "#print": 1, - "game_over": 2, - "update": 7, - "test_collapse_rows": 2, - "accum_down": 6, - "collapse": 3, - "cells.erase": 1, - "accum_down*100": 1, - "score_label.set_text": 2, - "str": 1, - ".set_text": 2, - "restart_pressed": 1, - "cells.clear": 1, - "piece_move_down": 2, - "piece_rotate": 2, - "adv": 2, - "_input": 1, - "ie": 1, - "ie.is_pressed": 1, - "ie.is_action": 4, - "piece_pos.x": 2, - "setup": 2, - "w": 3, - "h": 3, - "set_size": 1, - "*block.get_size": 1, - ".start": 1, - "set_process_input": 1 + "BaseClass": 1, + "arr": 1, + "dict": 1, + "answer": 1, + "thename": 1, + "v2": 1, + "v3": 1, + "some_function": 1, + "param1": 4, + "param2": 5, + "local_var": 2, + "print": 6, + "while": 1, + "local_var2": 2, + "class": 1, + "Something": 1, + "_init": 1, + "Something.new": 1, + "lv.a": 1 }, "GLSL": { - "const": 19, - "int": 8, - "NUM_LIGHTS": 4, - ";": 391, - "vec3": 165, - "AMBIENT": 2, - "(": 437, - ")": 437, - "float": 105, - "MAX_DIST": 3, - "MAX_DIST_SQUARED": 3, - "*": 116, + "#version": 3, "uniform": 8, - "lightColor": 3, + "float": 107, + "kCoeff": 2, + "kCube": 2, + "uShift": 3, + "vShift": 3, + ";": 418, + "chroma_red": 2, + "chroma_green": 2, + "chroma_blue": 2, + "bool": 1, + "apply_disto": 4, + "sampler2D": 1, + "input1": 4, + "adsk_input1_w": 4, + "adsk_input1_h": 3, + "adsk_input1_aspect": 1, + "adsk_input1_frameratio": 5, + "adsk_result_w": 3, + "adsk_result_h": 2, + "distortion_f": 3, + "(": 484, + "r": 14, + ")": 484, + "{": 104, + "f": 17, + "+": 108, + "r*r": 1, + "*": 116, + "return": 47, + "}": 104, + "inverse_f": 2, + "vec3": 165, "[": 29, "]": 29, + "lut": 9, + "max_r": 2, + "sqrt": 6, + "incr": 2, + "/": 24, + "lut_r": 5, + "for": 7, + "int": 9, + "i": 38, + "<": 23, + "t": 44, + "if": 29, + ".z": 5, + "&&": 10, + "-": 108, + "mix": 2, + ".y": 2, + "aberrate": 4, + "chroma": 2, + "chromaticize_and_invert": 2, + "rgb_f": 5, + "void": 57, + "main": 8, + "vec2": 26, + "px": 4, + "uv": 12, + "gl_FragCoord.xy": 7, + "px.x": 2, + "px.y": 2, + "uv.x": 11, + "uv.y": 7, + "*2": 2, + "uv.x*uv.x": 1, + "uv.y*uv.y": 1, + "else": 1, + "rgb_uvs": 12, + "rgb_f.rr": 1, + "rgb_f.gg": 1, + "rgb_f.bb": 1, + "vec4": 77, + "sampled": 1, + "sampled.r": 1, + "texture2D": 6, + ".r": 3, + "sampled.g": 1, + ".g": 1, + "sampled.b": 1, + ".b": 1, + "gl_FragColor.rgba": 1, + "sampled.rgb": 1, + "mat4": 1, + "u_MVPMatrix": 2, + "attribute": 2, + "a_position": 1, + "a_color": 2, "varying": 6, + "v_color": 4, + "gl_Position": 1, + "pos": 43, + "const": 19, + "NUM_LIGHTS": 4, + "AMBIENT": 2, + "MAX_DIST": 3, + "MAX_DIST_SQUARED": 3, + "lightColor": 3, "fragmentNormal": 2, "cameraVector": 2, "lightVector": 4, - "void": 33, - "main": 7, - "{": 84, - "//": 38, + "//": 40, "initialize": 1, "diffuse/specular": 1, "lighting": 1, @@ -24714,19 +26983,13 @@ "through": 1, "each": 1, "light": 5, - "for": 7, - "i": 38, - "<": 23, - "+": 108, "calculate": 1, "distance": 1, "between": 1, "dist": 7, "min": 11, "dot": 30, - "/": 24, "distFactor": 3, - "-": 108, "lightDir": 3, "diffuseDot": 2, "clamp": 4, @@ -24734,20 +26997,45 @@ "specularColor": 2, "specularDot": 2, "pow": 3, - "}": 84, - "vec4": 77, "sample": 2, "gl_FragColor": 4, "sample.rgb": 1, "sample.a": 1, - "mat4": 1, - "u_MVPMatrix": 2, - "attribute": 2, - "a_position": 1, - "a_color": 2, - "v_color": 4, - "gl_Position": 1, - "pos": 43, + "static": 1, + "char*": 1, + "SimpleFragmentShader": 1, + "STRINGIFY": 1, + "FrontColor": 2, + "core": 2, + "cbar": 4, + "cfoo": 2, + "CB": 4, + "CD": 4, + "CA": 2, + "CC": 2, + "CBT": 10, + "CDT": 6, + "CAT": 2, + "CCT": 2, + "norA": 8, + "norB": 6, + "norC": 2, + "norD": 2, + "norE": 8, + "norF": 2, + "norG": 2, + "norH": 2, + "norI": 2, + "norcA": 4, + "norcB": 6, + "norcC": 4, + "norcD": 4, + "head": 2, + "of": 2, + "cycle": 4, + "norcE": 2, + "lead": 2, + "into": 2, "////": 4, "High": 1, "quality": 2, @@ -24810,16 +27098,13 @@ "tonemapping": 1, "mod289": 4, "x": 11, - "return": 47, "floor": 8, "permute": 4, "x*34.0": 1, "*x": 3, "taylorInvSqrt": 2, - "r": 14, "snoise": 7, "v": 8, - "vec2": 26, "C": 1, "/6.0": 1, "/3.0": 1, @@ -24930,7 +27215,6 @@ "to": 1, "reduce": 1, "aliasing": 1, - "sqrt": 6, "Calculate": 1, "from": 2, "heightmap": 1, @@ -24950,8 +27234,6 @@ "det": 11, "b*b": 2, "rad*rad": 2, - "if": 29, - "t": 44, "rdir*t": 1, "intersectCylinder": 1, "rdir2": 2, @@ -25024,7 +27306,6 @@ "dir.z": 1, "rayDir*res2.w": 1, "res2.w": 3, - "&&": 10, "leaves": 7, "e20": 3, "sway": 5, @@ -25061,10 +27342,8 @@ "sky": 5, "res.y": 2, "uvFact": 2, - "uv": 12, "n.x": 1, "tex": 6, - "texture2D": 6, "iChannel0": 3, ".rgb": 2, "e8": 1, @@ -25074,7 +27353,6 @@ "resPlants.xyz": 2, "pos.xz": 2, "leavesPos.xz": 2, - ".r": 3, "resLeaves.xyz": 2, "trace": 2, "resSand.xyz": 1, @@ -25093,14 +27371,11 @@ "reflect": 1, "refl": 3, "resWater.t": 1, - "mix": 2, - "px": 4, "rd": 1, "iResolution.yy": 1, "iResolution.x/iResolution.y*0.5": 1, "rd.x": 1, "rd.y": 1, - "gl_FragCoord.xy": 7, "*0.25": 4, "*0.5": 1, "Optimized": 1, @@ -25110,179 +27385,386 @@ "curve": 1, "col*exposure": 1, "x*": 2, - ".5": 1, - "#version": 2, - "core": 1, - "cbar": 2, - "cfoo": 1, - "CB": 2, - "CD": 2, - "CA": 1, - "CC": 1, - "CBT": 5, - "CDT": 3, - "CAT": 1, - "CCT": 1, - "norA": 4, - "norB": 3, - "norC": 1, - "norD": 1, - "norE": 4, - "norF": 1, - "norG": 1, - "norH": 1, - "norI": 1, - "norcA": 2, - "norcB": 3, - "norcC": 2, - "norcD": 2, - "head": 1, - "of": 1, - "cycle": 2, - "norcE": 1, - "lead": 1, - "into": 1, - "static": 1, - "char*": 1, - "SimpleFragmentShader": 1, - "STRINGIFY": 1, - "FrontColor": 2, - "kCoeff": 2, - "kCube": 2, - "uShift": 3, - "vShift": 3, - "chroma_red": 2, - "chroma_green": 2, - "chroma_blue": 2, - "bool": 1, - "apply_disto": 4, - "sampler2D": 1, - "input1": 4, - "adsk_input1_w": 4, - "adsk_input1_h": 3, - "adsk_input1_aspect": 1, - "adsk_input1_frameratio": 5, - "adsk_result_w": 3, - "adsk_result_h": 2, - "distortion_f": 3, - "f": 17, - "r*r": 1, - "inverse_f": 2, - "lut": 9, - "max_r": 2, - "incr": 2, - "lut_r": 5, - ".z": 5, - ".y": 2, - "aberrate": 4, - "chroma": 2, - "chromaticize_and_invert": 2, - "rgb_f": 5, - "px.x": 2, - "px.y": 2, - "uv.x": 11, - "uv.y": 7, - "*2": 2, - "uv.x*uv.x": 1, - "uv.y*uv.y": 1, - "else": 1, - "rgb_uvs": 12, - "rgb_f.rr": 1, - "rgb_f.gg": 1, - "rgb_f.bb": 1, - "sampled": 1, - "sampled.r": 1, - "sampled.g": 1, - ".g": 1, - "sampled.b": 1, - ".b": 1, - "gl_FragColor.rgba": 1, - "sampled.rgb": 1 + ".5": 1 }, "Game Maker Language": { "#define": 26, - "assert_true": 1, - "{": 300, - "if": 397, + "__http_init": 3, + "global.__HttpClient": 4, + "object_add": 1, "(": 1501, - "argument0": 28, ")": 1502, - "_assert_error_popup": 2, + ";": 1282, + "object_set_persistent": 1, + "true": 73, + "__http_split": 3, + "var": 79, + "text": 19, + "delimeter": 7, + "limit": 5, + "argument0": 28, "argument1": 10, + "argument2": 3, + "list": 36, + "count": 4, + "ds_list_create": 5, + "while": 15, + "string_pos": 20, + "{": 300, + "ds_list_add": 23, + "string_copy": 32, + "-": 212, "+": 206, + "string_length": 25, + "if": 397, + "and": 155, + "break": 58, + "}": 307, + "return": 56, + "__http_parse_url": 4, + "url": 62, + "map": 47, + "ds_map_create": 4, + "ds_map_add": 15, + "colonPos": 22, + "string_char_at": 13, + "slashPos": 13, + "else": 151, + "real": 14, + "queryPos": 12, + "ds_map_destroy": 6, + "__http_resolve_url": 2, + "baseUrl": 3, + "refUrl": 18, + "urlParts": 15, + "refUrlParts": 5, + "canParseRefUrl": 3, + "result": 11, + "ds_map_find_value": 22, + "or": 78, + "__http_resolve_path": 3, + "ds_map_replace": 3, + "ds_map_exists": 11, + "ds_map_delete": 1, + "path": 10, + "query": 4, + "relUrl": 1, + "__http_construct_url": 2, + "basePath": 4, + "refPath": 7, + "parts": 29, + "refParts": 5, + "lastPart": 3, + "ds_list_find_value": 9, + "ds_list_size": 11, + "ds_list_delete": 5, + "i": 95, + "for": 26, + "<": 39, + "ds_list_destroy": 4, + "part": 6, + "ds_list_replace": 3, + "continue": 4, + "__http_parse_hex": 2, + "hexString": 4, + "hexValues": 3, + "*": 18, + "digit": 4, + "string": 13, + "__http_prepare_request": 4, + "client": 33, + "headers": 11, + "parsed": 18, + "show_error": 2, + "with": 47, + "destroyed": 3, + "false": 85, + "CR": 10, + "chr": 3, + "LF": 5, + "CRLF": 17, + "socket": 40, + "tcp_connect": 1, + "state": 50, + "errored": 19, + "error": 18, + "linebuf": 33, + "line": 19, + "statusCode": 6, + "reasonPhrase": 2, + "responseBody": 19, + "buffer_create": 7, + "responseBodySize": 5, + "responseBodyProgress": 5, + "responseHeaders": 9, + "requestUrl": 2, + "requestHeaders": 2, + "write_string": 9, + "key": 17, + "ds_map_find_first": 1, + "is_string": 2, + "ds_map_find_next": 1, + "socket_send": 1, + "__http_parse_header": 3, + "ord": 16, + "headerValue": 9, + "string_lower": 3, + "headerName": 4, + "__http_client_step": 2, + "exit": 10, + "socket_has_error": 1, + "socket_error": 1, + "__http_client_destroy": 20, + "available": 7, + "tcp_receive_available": 1, + "switch": 9, + "case": 50, + "&&": 6, + "tcp_eof": 3, + "bytesRead": 6, + "c": 20, + "<=>": 3, + "1": 32, + "read_string": 9, + "Reached": 2, + "end": 11, + "of": 25, + "HTTP": 1, + "defines": 1, + "the": 62, + "sequence": 2, + "as": 1, + "marker": 1, + "all": 3, + "protocol": 3, + "elements": 1, + "except": 2, + "entity": 1, + "body": 2, + "see": 1, + "appendix": 1, + "19": 1, + "3": 1, + "tolerant": 1, + "applications": 1, + "Strip": 1, + "trailing": 1, + "First": 1, + "status": 2, + "code": 2, + "0": 21, + "The": 6, + "first": 3, + "a": 55, + "Response": 1, + "message": 1, + "is": 9, + "Status": 1, + "Line": 1, + "consisting": 1, + "version": 4, + "followed": 1, + "by": 5, + "numeric": 1, + "its": 1, + "associated": 1, + "textual": 1, + "phrase": 1, + "each": 18, + "element": 8, + "separated": 1, + "SP": 1, + "characters": 3, + "No": 3, + "allowed": 1, + "in": 21, + "final": 1, + "httpVer": 2, + "spacePos": 11, + "space": 4, + "response": 5, + "second": 2, + "Other": 1, + "Blank": 1, + "write": 1, + "remainder": 1, + "write_buffer_part": 3, + "Header": 1, + "Receiving": 1, + "write_buffer": 2, + "transfer": 6, + "encoding": 2, + "chunked": 4, + "Chunked": 1, + "let": 1, + "s": 6, + "decode": 36, + "it": 6, + "actualResponseBody": 8, + "actualResponseSize": 1, + "actualResponseBodySize": 3, + "Parse": 1, + "chunks": 1, + "chunk": 12, + "size": 7, + "extension": 3, + "data": 4, + "HEX": 1, + "buffer_bytes_left": 6, + "chunkSize": 11, + "Read": 1, + "byte": 2, + "We": 1, + "found": 21, + "semicolon": 1, + "beginning": 1, + "skip": 1, + "stuff": 2, + "header": 2, + "Doesn": 1, + "t": 23, + "did": 1, + "not": 63, + "buffer_destroy": 8, + "empty": 13, + "something": 1, + "up": 6, + "Parsing": 1, + "failed": 56, + "hex": 2, + "was": 1, + "hexadecimal": 1, + "Is": 1, + "bigger": 2, + "than": 1, + "remaining": 1, + "2": 2, + "responseHaders": 1, + "location": 4, + "resolved": 5, + "socket_destroy": 4, + "http_new_get": 1, + "variable_global_exists": 2, + "instance_create": 20, + "http_new_get_ex": 1, + "http_step": 1, + "client.errored": 3, + "||": 16, + "client.state": 3, + "http_status_code": 1, + "client.statusCode": 1, + "http_reason_phrase": 1, + "client.error": 1, + "client.reasonPhrase": 1, + "http_response_body": 1, + "client.responseBody": 1, + "http_response_body_size": 1, + "client.responseBodySize": 1, + "http_response_body_progress": 1, + "client.responseBodyProgress": 1, + "http_response_headers": 1, + "client.responseHeaders": 1, + "http_destroy": 1, + "instance_destroy": 7, + "hashList": 5, + "pluginname": 9, + "pluginhash": 4, + "realhash": 1, + "handle": 1, + "filesize": 1, + "progress": 1, + "tempfile": 1, + "tempdir": 1, + "lastContact": 2, + "isCached": 2, + "isDebug": 2, + "split": 1, + "checkpluginname": 1, + "show_message": 7, + "ds_list_find_index": 1, + "file_exists": 5, + "working_directory": 6, + ".zip": 3, + "ServerPluginsCache": 6, + "@": 5, + ".zip.tmp": 1, + ".tmp": 2, + "ServerPluginsDebug": 1, + "Warning": 2, + "server": 10, + "sent": 7, + "plugin": 6, + "being": 2, + "loaded": 2, + "from": 5, + "ServerPluginsDebug.": 2, + "Make": 2, + "sure": 2, + "clients": 1, + "have": 2, + "same": 6, + "they": 1, + "may": 2, + "be": 4, + "unable": 2, + "to": 62, + "connect.": 2, + "has": 2, + "you": 1, + "Downloading": 1, + "/": 5, + "last_plugin.log": 2, + "plugin.gml": 1, + "assert_true": 1, + "_assert_error_popup": 2, "string_repeat": 2, "_assert_newline": 2, - ";": 1282, - "}": 307, "assert_false": 1, "assert_equal": 1, "//Safe": 1, "equality": 1, "check": 1, "won": 1, - "t": 23, "support": 1, - "show_error": 2, "use": 4, - "show_message": 7, "instead": 1, "_assert_debug_value": 1, "//String": 1, - "is_string": 2, "os_browser": 1, "browser_not_a_browser": 1, - "return": 56, - "else": 151, "string_replace_all": 1, "//Numeric": 1, - "-": 212, "GMTuple": 1, "jso_encode_string": 1, - "failed": 56, - "to": 62, "encode": 8, "escape": 2, "character": 20, - "string": 13, "jso_encode_map": 4, - "empty": 13, - "map": 47, - "key": 17, "value": 13, "one": 42, - "element": 8, "key1": 3, "key2": 3, "multi": 7, "[": 99, "]": 103, "jso_encode_list": 3, - "list": 36, "nested": 27, "three": 36, "_jso_decode_string": 5, - "decode": 36, "an": 24, - "a": 55, "small": 1, - "The": 6, "quick": 2, "brown": 2, "fox": 2, "jumps": 3, "over": 2, - "the": 62, "lazy": 2, "dog.": 2, "simple": 1, - "with": 47, - "characters": 3, "Waahoo": 1, "negg": 1, "mixed": 1, "_jso_decode_boolean": 2, - "true": 73, - "false": 85, "_jso_decode_real": 11, "standard": 1, "zero": 4, @@ -25290,7 +27772,6 @@ "decimal": 1, "digits": 1, "positive": 7, - "real": 14, "number": 7, "negative": 7, "exponent": 4, @@ -25310,30 +27791,25 @@ "woohah": 8, "lists": 6, "mix": 4, - "up": 6, "_jso_decode_list": 14, "woo": 2, "maps": 37, "Empty": 4, "should": 25, "equal": 20, - "each": 18, "other.": 12, "junk": 2, "info": 1, "taxi": 1, "An": 4, - "not": 63, "filled": 4, "map.": 2, "A": 24, "B": 18, "C": 8, "Maps": 9, - "same": 6, "content": 4, "entered": 4, - "in": 21, "different": 12, "orders": 4, "D": 1, @@ -25341,10 +27817,8 @@ "values": 4, "six": 1, "corresponding": 4, - "of": 25, "types": 4, "other": 4, - "and": 155, "crash.": 4, "list.": 2, "Lists": 4, @@ -25357,7 +27831,6 @@ "single": 11, "argument": 10, "jso_map_lookup": 3, - "found": 21, "wrong": 10, "trap": 2, "jso_map_lookup_type": 3, @@ -25378,11 +27851,317 @@ "boolean": 3, "jso_cleanup_map": 1, "one_map": 1, - "var": 79, - "i": 95, + "xoffset": 5, + "view_xview": 3, + "yoffset": 5, + "view_yview": 3, + "xsize": 3, + "view_wview": 2, + "ysize": 3, + "view_hview": 2, + "distance_to_point": 3, + "xsize/2": 2, + "ysize/2": 2, + "xr": 19, + "yr": 19, + "round": 6, + "x": 76, + "y": 85, + "image_alpha": 10, + "cloakAlpha": 1, + "global.myself.team": 3, + "team": 13, + "canCloak": 1, + "cloakAlpha/2": 1, + "invisible": 1, + "stabbing": 2, + "power": 1, + "currentWeapon.stab.alpha": 1, + "player": 36, + "global.myself": 4, + "global.showHealthBar": 3, + "draw_set_alpha": 3, + "draw_healthbar": 1, + "hp*100/maxHp": 1, + "c_black": 1, + "c_red": 3, + "c_green": 1, + "mouse_x": 1, + "mouse_y": 1, + "<25)>": 1, + "cloak": 2, + "global": 8, + "myself": 2, + "draw_set_halign": 1, + "fa_center": 1, + "draw_set_valign": 1, + "fa_bottom": 1, + "team=": 1, + "draw_set_color": 2, + "c_blue": 2, + "draw_text": 4, + "35": 1, + "name": 9, + "showTeammateStats": 1, + "weapons": 3, + "Medigun": 2, + "50": 3, + "Superburst": 1, + "currentWeapon": 2, + "uberCharge": 1, + "20": 1, + "Shotgun": 1, + "Nuts": 1, + "N": 1, + "Bolts": 1, + "nutsNBolts": 1, + "Minegun": 1, + "Lobbed": 1, + "Mines": 1, + "lobbed": 1, + "TEAM_RED": 8, + "ubercolour": 6, + "TEAM_BLUE": 6, + "sprite": 12, + "overlaySprite": 6, + "zoomed": 1, + "SniperCrouchRedS": 1, + "SniperCrouchBlueS": 1, + "sniperCrouchOverlay": 1, + "sprite_index": 14, + "overlay": 1, + "omnomnomnom": 2, + "draw_sprite_ext_overlay": 7, + "omnomnomnomSprite": 2, + "omnomnomnomOverlay": 2, + "omnomnomnomindex": 4, + "image_xscale": 17, + "image_yscale": 14, + "image_angle": 14, + "c_white": 13, + "ubered": 7, + "7": 4, + "taunting": 2, + "tauntsprite": 2, + "tauntOverlay": 2, + "tauntindex": 2, + "humiliated": 1, + "draw_sprite_ext": 10, + "humiliationPoses": 1, + "floor": 11, + "animationImage": 9, + "humiliationOffset": 1, + "animationOffset": 6, + "burnDuration": 2, + "burnIntensity": 2, + "numFlames": 1, + "maxIntensity": 1, + "FlameS": 1, + "alarm": 13, + "random": 21, + "flameArray_x": 1, + "flameArray_y": 1, + "maxDuration": 1, + "demon": 4, + "demonX": 5, + "median": 2, + "demonY": 4, + "demonOffset": 4, + "demonDir": 2, + "abs": 9, + "dir": 3, + "demonFrame": 5, + "sprite_get_number": 1, + "*player.team": 2, + "dir*1": 2, + "downloadHandle": 3, + "tmpfile": 3, + "window_oldshowborder": 2, + "window_oldfullscreen": 2, + "timeLeft": 1, + "counter": 1, + "AudioControlPlaySong": 1, + "window_get_showborder": 1, + "window_get_fullscreen": 1, + "window_set_fullscreen": 2, + "window_set_showborder": 1, + "global.updaterBetaChannel": 3, + "UPDATE_SOURCE_BETA": 1, + "UPDATE_SOURCE": 1, + "temp_directory": 1, + "httpGet": 1, + "httpRequestStatus": 1, + "//": 11, + "download": 1, + "isn": 1, + "extract": 1, + "downloaded": 1, + "file": 2, + "now.": 1, + "extractzip": 1, + "execute_program": 1, + "game_end": 1, + "//draws": 1, + "draw": 3, + "facing": 17, + "RIGHT": 10, + "blinkToggle": 1, + "CLIMBING": 5, + "sPExit": 1, + "sDamselExit": 1, + "sTunnelExit": 1, + "global.hasJetpack": 4, + "whipping": 5, + "image_blend": 2, + "//draw_sprite": 1, + "draw_sprite": 9, + "sJetpackBack": 1, + "sJetpackRight": 1, + "sJetpackLeft": 1, + "redColor": 2, + "make_color_rgb": 1, + "holdArrow": 4, + "ARROW_NORM": 2, + "sArrowRight": 1, + "ARROW_BOMB": 2, + "holdArrowToggle": 2, + "sBombArrowRight": 2, + "LEFT": 7, + "sArrowLeft": 1, + "sBombArrowLeft": 2, + "playerId": 11, + "commandLimitRemaining": 4, + "variable_local_exists": 4, + "commandReceiveState": 1, + "commandReceiveExpectedBytes": 1, + "commandReceiveCommand": 1, + "player.socket": 12, + "tcp_receive": 3, + "player.commandReceiveExpectedBytes": 7, + "player.commandReceiveState": 7, + "player.commandReceiveCommand": 4, + "read_ubyte": 10, + "commandBytes": 2, + "commandBytesInvalidCommand": 1, + "commandBytesPrefixLength1": 1, + "commandBytesPrefixLength2": 1, + "default": 1, + "read_ushort": 2, + "PLAYER_LEAVE": 1, + "PLAYER_CHANGECLASS": 1, + "class": 8, + "getCharacterObject": 2, + "player.team": 8, + "player.object": 12, + "collision_point": 30, + "SpawnRoom": 2, + "instance_exists": 8, + "lastDamageDealer": 8, + "sendEventPlayerDeath": 4, + "noone": 7, + "BID_FAREWELL": 4, + "doEventPlayerDeath": 4, + "assistant": 16, + "secondToLastDamageDealer": 2, + "lastDamageDealer.object": 2, + "lastDamageDealer.object.healer": 4, + "FINISHED_OFF": 5, + "player.alarm": 4, + "<=0)>": 1, + "5": 5, + "checkClasslimits": 2, + "ServerPlayerChangeclass": 2, + "sendBuffer": 1, + "PLAYER_CHANGETEAM": 1, + "newTeam": 7, + "balance": 5, + "redSuperiority": 6, + "calculate": 1, + "which": 1, + "Player": 1, + "player.class": 15, + "TEAM_SPECTATOR": 1, + "global.Server_Respawntime": 3, + "newClass": 4, + "global.sendBuffer": 19, + "ServerPlayerChangeteam": 1, + "ServerBalanceTeams": 1, + "CHAT_BUBBLE": 2, + "bubbleImage": 5, + "global.aFirst": 1, + "write_ubyte": 20, + "setChatBubble": 1, + "BUILD_SENTRY": 2, + "CLASS_ENGINEER": 3, + "collision_circle": 1, + "player.object.x": 3, + "player.object.y": 3, + "Sentry": 1, + "player.object.nutsNBolts": 1, + "player.sentry": 2, + "player.object.onCabinet": 1, + "write_ushort": 2, + "global.serializeBuffer": 3, + "player.object.x*5": 1, + "player.object.y*5": 1, + "write_byte": 1, + "player.object.image_xscale": 2, + "buildSentry": 1, + "DESTROY_SENTRY": 1, + "DROP_INTEL": 1, + "player.object.intel": 1, + "sendEventDropIntel": 1, + "doEventDropIntel": 1, + "OMNOMNOMNOM": 2, + "player.humiliated": 1, + "player.object.taunting": 1, + "player.object.omnomnomnom": 1, + "player.object.canEat": 1, + "CLASS_HEAVY": 2, + "omnomnomnomend": 2, + "xscale": 1, + "TOGGLE_ZOOM": 2, + "CLASS_SNIPER": 3, + "toggleZoom": 1, + "PLAYER_CHANGENAME": 2, + "nameLength": 4, + "socket_receivebuffer_size": 3, + "MAX_PLAYERNAME_LENGTH": 2, + "KICK": 2, + "KICK_NAME": 1, + "current_time": 2, + "lastNamechange": 2, + "string_count": 2, + "INPUTSTATE": 1, + "keyState": 1, + "netAimDirection": 1, + "aimDirection": 1, + "netAimDirection*360/65536": 1, + "event_user": 1, + "REWARD_REQUEST": 1, + "player.rewardId": 1, + "player.challenge": 2, + "rewardCreateChallenge": 1, + "REWARD_CHALLENGE_CODE": 1, + "write_binstring": 1, + "REWARD_CHALLENGE_RESPONSE": 1, + "answer": 3, + "authbuffer": 1, + "read_binstring": 1, + "rewardAuthStart": 1, + "challenge": 1, + "rewardId": 1, + "PLUGIN_PACKET": 1, + "packetID": 3, + "buf": 5, + "success": 3, + "_PluginPacketPush": 1, + "KICK_BAD_PLUGIN_PACKET": 1, + "CLIENT_SETTINGS": 2, + "mirror": 4, + "player.queueJump": 1, "playerObject": 1, "playerID": 1, - "player": 36, "otherPlayerID": 1, "otherPlayer": 1, "sameVersion": 1, @@ -25390,49 +28169,33 @@ "plugins": 4, "pluginsRequired": 2, "usePlugins": 1, - "tcp_eof": 3, "global.serverSocket": 10, "gotServerHello": 2, - "instance_destroy": 7, - "exit": 10, "room": 1, "DownloadRoom": 1, "keyboard_check": 1, "vk_escape": 1, "downloadingMap": 2, - "while": 15, - "tcp_receive": 3, "min": 4, "downloadMapBytes": 2, "buffer_size": 2, "downloadMapBuffer": 6, - "write_buffer": 2, "write_buffer_to_file": 1, "downloadMapName": 3, - "buffer_destroy": 8, "roomchange": 2, "do": 1, - "switch": 9, - "read_ubyte": 10, - "case": 50, "HELLO": 1, "global.joinedServerName": 2, "receivestring": 4, "advertisedMapMd5": 1, "receiveCompleteMessage": 1, "global.tempBuffer": 3, - "string_pos": 20, - "or": 78, "Server": 3, - "sent": 7, "illegal": 2, - "name": 9, "This": 2, - "server": 10, "requires": 1, "following": 2, "play": 2, - "it": 6, "#": 3, "suggests": 1, "optional": 1, @@ -25442,19 +28205,15 @@ "plugins.": 1, "Maps/": 2, ".png": 2, - "s": 6, - "version": 4, "Enter": 1, "Password": 1, "Incorrect": 1, "Password.": 1, "Incompatible": 1, - "protocol": 3, "version.": 1, "Name": 1, "Exploit": 1, "Invalid": 2, - "plugin": 6, "packet": 3, "ID": 2, "There": 1, @@ -25462,11 +28221,9 @@ "too": 2, "many": 1, "connections": 1, - "from": 5, "your": 1, "IP": 1, "You": 1, - "have": 2, "been": 1, "kicked": 1, "server.": 1, @@ -25476,10 +28233,7 @@ "invalid": 1, "internal": 1, "#Exiting.": 1, - "/": 5, - "is": 9, "full.": 1, - "noone": 7, "ERROR": 1, "when": 1, "reading": 1, @@ -25487,39 +28241,256 @@ "such": 1, "unexpected": 1, "data.": 1, - "break": 58, "until": 1, - "//": 11, + "RoomChangeObserver": 1, + "set_little_endian_global": 1, + "file_delete": 3, + "backupFilename": 5, + "file_find_first": 1, + "file_find_next": 1, + "file_find_close": 1, + "customMapRotationFile": 7, + "restart": 4, + "//import": 1, + "wav": 1, + "files": 1, + "music": 1, + "global.MenuMusic": 3, + "sound_add": 3, + "choose": 8, + "global.IngameMusic": 3, + "global.FaucetMusic": 3, + "sound_volume": 3, + "global.HudCheck": 1, + "global.map_rotation": 19, + "global.CustomMapCollisionSprite": 1, + "window_set_region_scale": 1, + "ini_open": 2, + "global.playerName": 7, + "ini_read_string": 12, + "global.fullscreen": 3, + "ini_read_real": 65, + "global.useLobbyServer": 2, + "global.hostingPort": 2, + "global.music": 2, + "MUSIC_BOTH": 1, + "global.playerLimit": 4, + "//thy": 1, + "playerlimit": 1, + "shalt": 1, + "exceed": 1, + "global.dedicatedMode": 7, + "ini_write_real": 60, + "global.multiClientLimit": 2, + "global.particles": 2, + "PARTICLES_NORMAL": 1, + "global.gibLevel": 14, + "global.killCam": 3, + "global.monitorSync": 3, + "set_synchronization": 2, + "global.medicRadar": 2, + "global.showHealer": 2, + "global.showHealing": 2, + "global.showTeammateStats": 2, + "global.serverPluginsPrompt": 2, + "global.restartPrompt": 2, + "//user": 1, + "HUD": 1, + "settings": 1, + "global.timerPos": 2, + "global.killLogPos": 2, + "global.kothHudPos": 2, + "global.clientPassword": 1, + "global.shuffleRotation": 2, + "global.timeLimitMins": 2, + "max": 2, + "global.serverPassword": 2, + "global.mapRotationFile": 1, + "global.serverName": 2, + "global.welcomeMessage": 2, + "global.caplimit": 3, + "global.caplimitBkup": 1, + "global.autobalance": 2, + "global.Server_RespawntimeSec": 4, + "global.rewardKey": 1, + "unhex": 1, + "global.rewardId": 1, + "global.mapdownloadLimitBps": 2, + "isBetaVersion": 1, + "global.attemptPortForward": 2, + "global.serverPluginList": 3, + "global.serverPluginsRequired": 2, + "CrosshairFilename": 5, + "CrosshairRemoveBG": 4, + "global.queueJumping": 2, + "global.backgroundHash": 2, + "global.backgroundTitle": 2, + "global.backgroundURL": 2, + "global.backgroundShowVersion": 2, + "readClasslimitsFromIni": 1, + "global.currentMapArea": 1, + "global.totalMapAreas": 1, + "global.setupTimer": 1, + "global.serverPluginsInUse": 1, + "global.pluginPacketBuffers": 1, + "global.pluginPacketPlayers": 1, + "ini_write_string": 10, + "ini_key_delete": 1, + "global.classlimits": 10, + "CLASS_SCOUT": 1, + "CLASS_PYRO": 2, + "CLASS_SOLDIER": 2, + "CLASS_DEMOMAN": 1, + "CLASS_MEDIC": 2, + "CLASS_SPY": 1, + "CLASS_QUOTE": 3, + "//screw": 1, + "we": 5, + "will": 1, + "start": 1, + "//map_truefort": 1, + "//map_2dfort": 1, + "//map_conflict": 1, + "//map_classicwell": 1, + "//map_waterway": 1, + "//map_orange": 1, + "//map_dirtbowl": 1, + "//map_egypt": 1, + "//arena_montane": 1, + "//arena_lumberyard": 1, + "//gen_destroy": 1, + "//koth_valley": 1, + "//koth_corinth": 1, + "//koth_harvest": 1, + "//dkoth_atalia": 1, + "//dkoth_sixties": 1, + "//Server": 1, + "respawn": 1, + "time": 1, + "calculator.": 1, + "Converts": 1, + "frame.": 1, + "read": 1, + "multiply": 1, + "hehe": 1, + "global.mapchanging": 1, + "ini_close": 2, + "global.protocolUuid": 2, + "parseUuid": 2, + "PROTOCOL_UUID": 1, + "global.gg2lobbyId": 2, + "GG2_LOBBY_UUID": 1, + "initRewards": 1, + "IPRaw": 3, + "portRaw": 3, + "doubleCheck": 8, + "global.launchMap": 5, + "parameter_count": 1, + "parameter_string": 8, + "global.serverPort": 1, + "global.serverIP": 1, + "global.isHost": 1, + "Client": 1, + "global.customMapdesginated": 2, + "fileHandle": 6, + "mapname": 9, + "file_text_open_read": 1, + "file_text_eof": 1, + "file_text_read_string": 1, + "starts": 1, + "tab": 2, + "string_delete": 1, + "delete": 1, + "that": 2, + "comment": 1, + "starting": 1, + "file_text_readln": 1, + "file_text_close": 1, + "load": 1, + "ini": 1, + "section": 1, + "//Set": 1, + "rotation": 1, + "sort_list": 7, + "*maps": 1, + "ds_list_sort": 1, + "mod": 1, + "global.gg2Font": 2, + "font_add_sprite": 2, + "gg2FontS": 1, + "global.countFont": 1, + "countFontS": 1, + "draw_set_font": 1, + "cursor_sprite": 1, + "CrosshairS": 5, + "directory_exists": 2, + "directory_create": 2, + "AudioControl": 1, + "SSControl": 1, + "message_background": 1, + "popupBackgroundB": 1, + "message_button": 1, + "popupButtonS": 1, + "message_text_font": 1, + "message_button_font": 1, + "message_input_font": 1, + "//Key": 1, + "Mapping": 1, + "global.jump": 1, + "global.down": 1, + "global.left": 1, + "global.right": 1, + "global.attack": 1, + "MOUSE_LEFT": 1, + "global.special": 1, + "MOUSE_RIGHT": 1, + "global.taunt": 1, + "global.chat1": 1, + "global.chat2": 1, + "global.chat3": 1, + "global.medic": 1, + "global.drop": 1, + "global.changeTeam": 1, + "global.changeClass": 1, + "global.showScores": 1, + "vk_shift": 1, + "calculateMonthAndDay": 1, + "loadplugins": 1, + "registry_set_root": 1, + "HKLM": 1, + "global.NTKernelVersion": 1, + "registry_read_string_ext": 1, + "CurrentVersion": 1, + "SIC": 1, + "sprite_replace": 1, + "sprite_set_offset": 1, + "sprite_get_width": 1, + "/2": 2, + "sprite_get_height": 1, + "AudioControlToggleMute": 1, + "room_goto_fix": 2, + "Menu": 2, "global.levelType": 22, "//global.currLevel": 1, "global.currLevel": 22, - "<": 39, "global.hadDarkLevel": 4, "global.startRoomX": 1, "global.startRoomY": 1, "global.endRoomX": 1, "global.endRoomY": 1, "oGame.levelGen": 2, - "for": 26, "j": 14, "global.roomPath": 1, "k": 5, "global.lake": 3, - "<=>": 3, - "1": 32, "isLevel": 1, "999": 2, - "global": 8, "levelType": 2, - "2": 2, "16": 14, - "0": 21, "656": 3, "obj": 14, - "instance_create": 20, "oDark": 2, "invincible": 2, - "sprite_index": 14, "sDark": 1, "4": 2, "oTemple": 2, @@ -25571,7 +28542,6 @@ "global.temp2": 1, "isRoom": 3, "scrEntityGen": 1, - "instance_exists": 8, "oEntrance": 1, "global.customLevel": 1, "oEntrance.x": 1, @@ -25580,7 +28550,6 @@ "global.alienCraft": 1, "global.sacrificePit": 1, "oPlayer1": 1, - "alarm": 13, "scrSetupWalls": 3, "global.graphicsHigh": 1, "repeat": 7, @@ -25594,12 +28563,9 @@ "global.thiefLevel": 1, "isRealLevel": 1, "oExit": 1, - "x": 76, - "y": 85, "oShopkeeper": 1, "obj.status": 1, "oTreasure": 1, - "collision_point": 30, "oSolid": 14, "instance_place": 3, "oWater": 1, @@ -25609,9 +28575,7 @@ "global.temp3": 1, "victim": 10, "killer": 11, - "assistant": 16, "damageSource": 18, - "argument2": 3, "argument3": 1, "//*************************************": 6, "//*": 3, @@ -25622,14 +28586,12 @@ "victim.stats": 1, "DEATHS": 1, "WEAPON_KNIFE": 1, - "||": 16, "WEAPON_BACKSTAB": 1, "killer.stats": 8, "STABS": 2, "killer.roundStats": 8, "POINTS": 10, "victim.object.currentWeapon.object_index": 1, - "Medigun": 2, "victim.object.currentWeapon.uberReady": 1, "BONUS": 2, "KILLS": 2, @@ -25638,7 +28600,6 @@ "recordEventInLog": 1, "killer.team": 1, "killer.name": 2, - "global.myself": 4, "assistant.stats": 2, "ASSISTS": 2, "assistant.roundStats": 2, @@ -25648,14 +28609,6 @@ "victim.object.y": 3, "Spectator": 1, "Gibbing": 2, - "xoffset": 5, - "yoffset": 5, - "xsize": 3, - "ysize": 3, - "view_xview": 3, - "view_yview": 3, - "view_wview": 2, - "view_hview": 2, "randomize": 1, "victim.object": 2, "WEAPON_ROCKETLAUNCHER": 1, @@ -25665,25 +28618,13 @@ "WEAPON_REFLECTED_ROCKET": 1, "FINISHED_OFF_GIB": 2, "GENERATOR_EXPLOSION": 2, - "player.class": 15, - "CLASS_QUOTE": 3, - "global.gibLevel": 14, - "distance_to_point": 3, - "xsize/2": 2, - "ysize/2": 2, "hasReward": 4, - "*": 18, "createGib": 14, "PumpkinGib": 1, "hspeed": 14, "vspeed": 13, - "random": 21, - "choose": 8, "Gib": 1, - "player.team": 8, - "TEAM_BLUE": 6, "BlueClump": 1, - "TEAM_RED": 8, "RedClump": 1, "blood": 2, "BloodDrop": 1, @@ -25699,20 +28640,14 @@ "feet": 1, "Headgib": 1, "//Medic": 1, - "has": 2, "specially": 1, "colored": 1, - "CLASS_MEDIC": 2, "Hand": 3, "Feet": 1, "//Class": 1, "specific": 1, "gibs": 1, - "CLASS_PYRO": 2, "Accesory": 5, - "CLASS_SOLDIER": 2, - "CLASS_ENGINEER": 3, - "CLASS_SNIPER": 3, "playsound": 2, "deadbody": 2, "DeathSnd1": 1, @@ -25733,9 +28668,7 @@ "global.xmas": 1, "XmasHat": 1, "Deathcam": 1, - "global.killCam": 3, "KILL_BOX": 1, - "FINISHED_OFF": 5, "DeathCam": 1, "DeathCam.killedby": 1, "DeathCam.name": 1, @@ -25743,18 +28676,15 @@ "DeathCam.oldyview": 1, "DeathCam.lastDamageSource": 1, "DeathCam.team": 1, - "global.myself.team": 3, "__jso_gmt_tuple": 1, "//Position": 1, "address": 1, "table": 1, - "data": 4, "pos": 2, "addr_table": 2, "*argument_count": 1, "//Build": 1, "tuple": 1, - "by": 5, "ca": 1, "isstr": 1, "datastr": 1, @@ -25764,7 +28694,6 @@ "at": 23, "position": 16, "f": 5, - "end": 11, "JSON": 5, "string.": 5, "Cannot": 5, @@ -25782,7 +28711,6 @@ "Index": 1, "Recursive": 1, "abcdef": 1, - "hex": 2, "num": 1, "hangCountMax": 2, "//////////////////////////////////////": 2, @@ -25855,9 +28783,6 @@ "oIce": 1, "checkRun": 1, "runHeld": 3, - "whipping": 5, - "state": 50, - "CLIMBING": 5, "HANGING": 10, "approximatelyZero": 4, "xVel": 24, @@ -25869,12 +28794,7 @@ "SS_IsSoundPlaying": 2, "global.sndPush": 4, "playSound": 3, - "facing": 17, - "LEFT": 7, "runAcc": 2, - "abs": 9, - "floor": 11, - "RIGHT": 10, "/xVel": 1, "oCape": 2, "oCape.open": 6, @@ -25909,7 +28829,6 @@ "xVel/2": 3, "gravNorm": 7, "global.hasCape": 1, - "global.hasJetpack": 4, "jetpackFuel": 2, "fallTimer": 2, "global.hasJordans": 1, @@ -25918,7 +28837,6 @@ "global.sndJump": 1, "jumpTimeTotal": 2, "//let": 1, - "continue": 4, "jump": 1, "jumpTime/jumpTimeTotal": 1, "looking": 2, @@ -25935,7 +28853,6 @@ "because": 2, "high": 1, "yPrevHigh": 1, - "we": 5, "ll": 1, "move": 2, "correct": 1, @@ -25949,10 +28866,8 @@ "xVelInteger": 2, "/dist*0.9": 1, "//can": 1, - "be": 4, "changed": 1, "moveTo": 2, - "round": 6, "xVelInteger*ratio": 1, "yVelInteger*ratio": 1, "slopeChangeInY": 1, @@ -25971,14 +28886,12 @@ "upYPrev=": 1, "I": 1, "know": 1, - "that": 2, "this": 2, "doesn": 1, "seem": 1, "make": 1, "sense": 1, "variable": 1, - "all": 3, "works": 1, "correctly": 1, "after": 1, @@ -25986,7 +28899,6 @@ "y=": 1, "figures": 1, "what": 1, - "sprite": 12, "characterSprite": 1, "sets": 1, "previous": 2, @@ -26003,762 +28915,105 @@ "climbAnimSpeed": 1, "setCollisionBounds": 3, "8": 9, - "5": 5, "DUCKTOHANG": 1, "image_index": 1, - "limit": 5, "animation": 1, "always": 1, "looks": 1, - "good": 1, - "__http_init": 3, - "global.__HttpClient": 4, - "object_add": 1, - "object_set_persistent": 1, - "__http_split": 3, - "text": 19, - "delimeter": 7, - "count": 4, - "ds_list_create": 5, - "ds_list_add": 23, - "string_copy": 32, - "string_length": 25, - "__http_parse_url": 4, - "url": 62, - "ds_map_create": 4, - "ds_map_add": 15, - "colonPos": 22, - "string_char_at": 13, - "slashPos": 13, - "queryPos": 12, - "ds_map_destroy": 6, - "__http_resolve_url": 2, - "baseUrl": 3, - "refUrl": 18, - "urlParts": 15, - "refUrlParts": 5, - "canParseRefUrl": 3, - "result": 11, - "ds_map_find_value": 22, - "__http_resolve_path": 3, - "ds_map_replace": 3, - "ds_map_exists": 11, - "ds_map_delete": 1, - "path": 10, - "query": 4, - "relUrl": 1, - "__http_construct_url": 2, - "basePath": 4, - "refPath": 7, - "parts": 29, - "refParts": 5, - "lastPart": 3, - "ds_list_find_value": 9, - "ds_list_size": 11, - "ds_list_delete": 5, - "ds_list_destroy": 4, - "part": 6, - "ds_list_replace": 3, - "__http_parse_hex": 2, - "hexString": 4, - "hexValues": 3, - "digit": 4, - "__http_prepare_request": 4, - "client": 33, - "headers": 11, - "parsed": 18, - "destroyed": 3, - "CR": 10, - "chr": 3, - "LF": 5, - "CRLF": 17, - "socket": 40, - "tcp_connect": 1, - "errored": 19, - "error": 18, - "linebuf": 33, - "line": 19, - "statusCode": 6, - "reasonPhrase": 2, - "responseBody": 19, - "buffer_create": 7, - "responseBodySize": 5, - "responseBodyProgress": 5, - "responseHeaders": 9, - "requestUrl": 2, - "requestHeaders": 2, - "write_string": 9, - "ds_map_find_first": 1, - "ds_map_find_next": 1, - "socket_send": 1, - "__http_parse_header": 3, - "ord": 16, - "headerValue": 9, - "string_lower": 3, - "headerName": 4, - "__http_client_step": 2, - "socket_has_error": 1, - "socket_error": 1, - "__http_client_destroy": 20, - "available": 7, - "tcp_receive_available": 1, - "&&": 6, - "bytesRead": 6, - "c": 20, - "read_string": 9, - "Reached": 2, - "HTTP": 1, - "defines": 1, - "sequence": 2, - "as": 1, - "marker": 1, - "elements": 1, - "except": 2, - "entity": 1, - "body": 2, - "see": 1, - "appendix": 1, - "19": 1, - "3": 1, - "tolerant": 1, - "applications": 1, - "Strip": 1, - "trailing": 1, - "First": 1, - "status": 2, - "code": 2, - "first": 3, - "Response": 1, - "message": 1, - "Status": 1, - "Line": 1, - "consisting": 1, - "followed": 1, - "numeric": 1, - "its": 1, - "associated": 1, - "textual": 1, - "phrase": 1, - "separated": 1, - "SP": 1, - "No": 3, - "allowed": 1, - "final": 1, - "httpVer": 2, - "spacePos": 11, - "space": 4, - "response": 5, - "second": 2, - "Other": 1, - "Blank": 1, - "write": 1, - "remainder": 1, - "write_buffer_part": 3, - "Header": 1, - "Receiving": 1, - "transfer": 6, - "encoding": 2, - "chunked": 4, - "Chunked": 1, - "let": 1, - "actualResponseBody": 8, - "actualResponseSize": 1, - "actualResponseBodySize": 3, - "Parse": 1, - "chunks": 1, - "chunk": 12, - "size": 7, - "extension": 3, - "HEX": 1, - "buffer_bytes_left": 6, - "chunkSize": 11, - "Read": 1, - "byte": 2, - "We": 1, - "semicolon": 1, - "beginning": 1, - "skip": 1, - "stuff": 2, - "header": 2, - "Doesn": 1, - "did": 1, - "something": 1, - "Parsing": 1, - "was": 1, - "hexadecimal": 1, - "Is": 1, - "bigger": 2, - "than": 1, - "remaining": 1, - "responseHaders": 1, - "location": 4, - "resolved": 5, - "socket_destroy": 4, - "http_new_get": 1, - "variable_global_exists": 2, - "http_new_get_ex": 1, - "http_step": 1, - "client.errored": 3, - "client.state": 3, - "http_status_code": 1, - "client.statusCode": 1, - "http_reason_phrase": 1, - "client.error": 1, - "client.reasonPhrase": 1, - "http_response_body": 1, - "client.responseBody": 1, - "http_response_body_size": 1, - "client.responseBodySize": 1, - "http_response_body_progress": 1, - "client.responseBodyProgress": 1, - "http_response_headers": 1, - "client.responseHeaders": 1, - "http_destroy": 1, - "//draws": 1, - "draw": 3, - "image_xscale": 17, - "blinkToggle": 1, - "sPExit": 1, - "sDamselExit": 1, - "sTunnelExit": 1, - "draw_sprite_ext": 10, - "image_yscale": 14, - "image_angle": 14, - "image_blend": 2, - "image_alpha": 10, - "//draw_sprite": 1, - "draw_sprite": 9, - "sJetpackBack": 1, - "sJetpackRight": 1, - "sJetpackLeft": 1, - "redColor": 2, - "make_color_rgb": 1, - "holdArrow": 4, - "ARROW_NORM": 2, - "sArrowRight": 1, - "ARROW_BOMB": 2, - "holdArrowToggle": 2, - "sBombArrowRight": 2, - "sArrowLeft": 1, - "sBombArrowLeft": 2, - "RoomChangeObserver": 1, - "set_little_endian_global": 1, - "file_exists": 5, - "file_delete": 3, - "backupFilename": 5, - "file_find_first": 1, - "file_find_next": 1, - "file_find_close": 1, - "customMapRotationFile": 7, - "restart": 4, - "//import": 1, - "wav": 1, - "files": 1, - "music": 1, - "global.MenuMusic": 3, - "sound_add": 3, - "global.IngameMusic": 3, - "global.FaucetMusic": 3, - "sound_volume": 3, - "global.sendBuffer": 19, - "global.HudCheck": 1, - "global.map_rotation": 19, - "global.CustomMapCollisionSprite": 1, - "window_set_region_scale": 1, - "ini_open": 2, - "global.playerName": 7, - "ini_read_string": 12, - "string_count": 2, - "MAX_PLAYERNAME_LENGTH": 2, - "global.fullscreen": 3, - "ini_read_real": 65, - "global.useLobbyServer": 2, - "global.hostingPort": 2, - "global.music": 2, - "MUSIC_BOTH": 1, - "global.playerLimit": 4, - "//thy": 1, - "playerlimit": 1, - "shalt": 1, - "exceed": 1, - "global.dedicatedMode": 7, - "ini_write_real": 60, - "global.multiClientLimit": 2, - "global.particles": 2, - "PARTICLES_NORMAL": 1, - "global.monitorSync": 3, - "set_synchronization": 2, - "global.medicRadar": 2, - "global.showHealer": 2, - "global.showHealing": 2, - "global.showHealthBar": 3, - "global.showTeammateStats": 2, - "global.serverPluginsPrompt": 2, - "global.restartPrompt": 2, - "//user": 1, - "HUD": 1, - "settings": 1, - "global.timerPos": 2, - "global.killLogPos": 2, - "global.kothHudPos": 2, - "global.clientPassword": 1, - "global.shuffleRotation": 2, - "global.timeLimitMins": 2, - "max": 2, - "global.serverPassword": 2, - "global.mapRotationFile": 1, - "global.serverName": 2, - "global.welcomeMessage": 2, - "global.caplimit": 3, - "global.caplimitBkup": 1, - "global.autobalance": 2, - "global.Server_RespawntimeSec": 4, - "global.rewardKey": 1, - "unhex": 1, - "global.rewardId": 1, - "global.mapdownloadLimitBps": 2, - "global.updaterBetaChannel": 3, - "isBetaVersion": 1, - "global.attemptPortForward": 2, - "global.serverPluginList": 3, - "global.serverPluginsRequired": 2, - "CrosshairFilename": 5, - "CrosshairRemoveBG": 4, - "global.queueJumping": 2, - "global.backgroundHash": 2, - "global.backgroundTitle": 2, - "global.backgroundURL": 2, - "global.backgroundShowVersion": 2, - "readClasslimitsFromIni": 1, - "global.currentMapArea": 1, - "global.totalMapAreas": 1, - "global.setupTimer": 1, - "global.serverPluginsInUse": 1, - "global.pluginPacketBuffers": 1, - "global.pluginPacketPlayers": 1, - "ini_write_string": 10, - "ini_key_delete": 1, - "global.classlimits": 10, - "CLASS_SCOUT": 1, - "CLASS_HEAVY": 2, - "CLASS_DEMOMAN": 1, - "CLASS_SPY": 1, - "//screw": 1, - "will": 1, - "start": 1, - "//map_truefort": 1, - "//map_2dfort": 1, - "//map_conflict": 1, - "//map_classicwell": 1, - "//map_waterway": 1, - "//map_orange": 1, - "//map_dirtbowl": 1, - "//map_egypt": 1, - "//arena_montane": 1, - "//arena_lumberyard": 1, - "//gen_destroy": 1, - "//koth_valley": 1, - "//koth_corinth": 1, - "//koth_harvest": 1, - "//dkoth_atalia": 1, - "//dkoth_sixties": 1, - "//Server": 1, - "respawn": 1, - "time": 1, - "calculator.": 1, - "Converts": 1, - "frame.": 1, - "read": 1, - "multiply": 1, - "hehe": 1, - "global.Server_Respawntime": 3, - "global.mapchanging": 1, - "ini_close": 2, - "global.protocolUuid": 2, - "parseUuid": 2, - "PROTOCOL_UUID": 1, - "global.gg2lobbyId": 2, - "GG2_LOBBY_UUID": 1, - "initRewards": 1, - "IPRaw": 3, - "portRaw": 3, - "doubleCheck": 8, - "global.launchMap": 5, - "parameter_count": 1, - "parameter_string": 8, - "global.serverPort": 1, - "global.serverIP": 1, - "global.isHost": 1, - "Client": 1, - "global.customMapdesginated": 2, - "fileHandle": 6, - "mapname": 9, - "file_text_open_read": 1, - "file_text_eof": 1, - "file_text_read_string": 1, - "starts": 1, - "tab": 2, - "string_delete": 1, - "delete": 1, - "comment": 1, - "starting": 1, - "file_text_readln": 1, - "file_text_close": 1, - "load": 1, - "ini": 1, - "file": 2, - "section": 1, - "//Set": 1, - "rotation": 1, - "sort_list": 7, - "*maps": 1, - "ds_list_sort": 1, - "mod": 1, - "window_set_fullscreen": 2, - "global.gg2Font": 2, - "font_add_sprite": 2, - "gg2FontS": 1, - "global.countFont": 1, - "countFontS": 1, - "draw_set_font": 1, - "cursor_sprite": 1, - "CrosshairS": 5, - "directory_exists": 2, - "working_directory": 6, - "directory_create": 2, - "AudioControl": 1, - "SSControl": 1, - "message_background": 1, - "popupBackgroundB": 1, - "message_button": 1, - "popupButtonS": 1, - "message_text_font": 1, - "c_white": 13, - "message_button_font": 1, - "message_input_font": 1, - "//Key": 1, - "Mapping": 1, - "global.jump": 1, - "global.down": 1, - "global.left": 1, - "global.right": 1, - "global.attack": 1, - "MOUSE_LEFT": 1, - "global.special": 1, - "MOUSE_RIGHT": 1, - "global.taunt": 1, - "global.chat1": 1, - "global.chat2": 1, - "global.chat3": 1, - "global.medic": 1, - "global.drop": 1, - "global.changeTeam": 1, - "global.changeClass": 1, - "global.showScores": 1, - "vk_shift": 1, - "calculateMonthAndDay": 1, - "loadplugins": 1, - "registry_set_root": 1, - "HKLM": 1, - "global.NTKernelVersion": 1, - "registry_read_string_ext": 1, - "CurrentVersion": 1, - "SIC": 1, - "sprite_replace": 1, - "sprite_set_offset": 1, - "sprite_get_width": 1, - "/2": 2, - "sprite_get_height": 1, - "AudioControlToggleMute": 1, - "room_goto_fix": 2, - "Menu": 2, - "playerId": 11, - "commandLimitRemaining": 4, - "variable_local_exists": 4, - "commandReceiveState": 1, - "commandReceiveExpectedBytes": 1, - "commandReceiveCommand": 1, - "player.socket": 12, - "player.commandReceiveExpectedBytes": 7, - "player.commandReceiveState": 7, - "player.commandReceiveCommand": 4, - "commandBytes": 2, - "commandBytesInvalidCommand": 1, - "commandBytesPrefixLength1": 1, - "commandBytesPrefixLength2": 1, - "default": 1, - "read_ushort": 2, - "PLAYER_LEAVE": 1, - "PLAYER_CHANGECLASS": 1, - "class": 8, - "getCharacterObject": 2, - "player.object": 12, - "SpawnRoom": 2, - "lastDamageDealer": 8, - "sendEventPlayerDeath": 4, - "BID_FAREWELL": 4, - "doEventPlayerDeath": 4, - "secondToLastDamageDealer": 2, - "lastDamageDealer.object": 2, - "lastDamageDealer.object.healer": 4, - "player.alarm": 4, - "<=0)>": 1, - "checkClasslimits": 2, - "team": 13, - "ServerPlayerChangeclass": 2, - "sendBuffer": 1, - "PLAYER_CHANGETEAM": 1, - "newTeam": 7, - "balance": 5, - "redSuperiority": 6, - "calculate": 1, - "which": 1, - "Player": 1, - "TEAM_SPECTATOR": 1, - "newClass": 4, - "ServerPlayerChangeteam": 1, - "ServerBalanceTeams": 1, - "CHAT_BUBBLE": 2, - "bubbleImage": 5, - "global.aFirst": 1, - "write_ubyte": 20, - "setChatBubble": 1, - "BUILD_SENTRY": 2, - "collision_circle": 1, - "player.object.x": 3, - "player.object.y": 3, - "Sentry": 1, - "player.object.nutsNBolts": 1, - "player.sentry": 2, - "player.object.onCabinet": 1, - "write_ushort": 2, - "global.serializeBuffer": 3, - "player.object.x*5": 1, - "player.object.y*5": 1, - "write_byte": 1, - "player.object.image_xscale": 2, - "buildSentry": 1, - "DESTROY_SENTRY": 1, - "DROP_INTEL": 1, - "player.object.intel": 1, - "sendEventDropIntel": 1, - "doEventDropIntel": 1, - "OMNOMNOMNOM": 2, - "player.humiliated": 1, - "player.object.taunting": 1, - "player.object.omnomnomnom": 1, - "player.object.canEat": 1, - "omnomnomnom": 2, - "omnomnomnomindex": 4, - "omnomnomnomend": 2, - "xscale": 1, - "TOGGLE_ZOOM": 2, - "toggleZoom": 1, - "PLAYER_CHANGENAME": 2, - "nameLength": 4, - "socket_receivebuffer_size": 3, - "KICK": 2, - "KICK_NAME": 1, - "current_time": 2, - "lastNamechange": 2, - "INPUTSTATE": 1, - "keyState": 1, - "netAimDirection": 1, - "aimDirection": 1, - "netAimDirection*360/65536": 1, - "event_user": 1, - "REWARD_REQUEST": 1, - "player.rewardId": 1, - "player.challenge": 2, - "rewardCreateChallenge": 1, - "REWARD_CHALLENGE_CODE": 1, - "write_binstring": 1, - "REWARD_CHALLENGE_RESPONSE": 1, - "answer": 3, - "authbuffer": 1, - "read_binstring": 1, - "rewardAuthStart": 1, - "challenge": 1, - "rewardId": 1, - "PLUGIN_PACKET": 1, - "packetID": 3, - "buf": 5, - "success": 3, - "_PluginPacketPush": 1, - "KICK_BAD_PLUGIN_PACKET": 1, - "CLIENT_SETTINGS": 2, - "mirror": 4, - "player.queueJump": 1, - "hashList": 5, - "pluginname": 9, - "pluginhash": 4, - "realhash": 1, - "handle": 1, - "filesize": 1, - "progress": 1, - "tempfile": 1, - "tempdir": 1, - "lastContact": 2, - "isCached": 2, - "isDebug": 2, - "split": 1, - "checkpluginname": 1, - "ds_list_find_index": 1, - ".zip": 3, - "ServerPluginsCache": 6, - "@": 5, - ".zip.tmp": 1, - ".tmp": 2, - "ServerPluginsDebug": 1, - "Warning": 2, - "being": 2, - "loaded": 2, - "ServerPluginsDebug.": 2, - "Make": 2, - "sure": 2, - "clients": 1, - "they": 1, - "may": 2, - "unable": 2, - "connect.": 2, - "you": 1, - "Downloading": 1, - "last_plugin.log": 2, - "plugin.gml": 1, - "xr": 19, - "yr": 19, - "cloakAlpha": 1, - "canCloak": 1, - "cloakAlpha/2": 1, - "invisible": 1, - "stabbing": 2, - "power": 1, - "currentWeapon.stab.alpha": 1, - "draw_set_alpha": 3, - "draw_healthbar": 1, - "hp*100/maxHp": 1, - "c_black": 1, - "c_red": 3, - "c_green": 1, - "mouse_x": 1, - "mouse_y": 1, - "<25)>": 1, - "cloak": 2, - "myself": 2, - "draw_set_halign": 1, - "fa_center": 1, - "draw_set_valign": 1, - "fa_bottom": 1, - "team=": 1, - "draw_set_color": 2, - "c_blue": 2, - "draw_text": 4, - "35": 1, - "showTeammateStats": 1, - "weapons": 3, - "50": 3, - "Superburst": 1, - "currentWeapon": 2, - "uberCharge": 1, - "20": 1, - "Shotgun": 1, - "Nuts": 1, - "N": 1, - "Bolts": 1, - "nutsNBolts": 1, - "Minegun": 1, - "Lobbed": 1, - "Mines": 1, - "lobbed": 1, - "ubercolour": 6, - "overlaySprite": 6, - "zoomed": 1, - "SniperCrouchRedS": 1, - "SniperCrouchBlueS": 1, - "sniperCrouchOverlay": 1, - "overlay": 1, - "draw_sprite_ext_overlay": 7, - "omnomnomnomSprite": 2, - "omnomnomnomOverlay": 2, - "ubered": 7, - "7": 4, - "taunting": 2, - "tauntsprite": 2, - "tauntOverlay": 2, - "tauntindex": 2, - "humiliated": 1, - "humiliationPoses": 1, - "animationImage": 9, - "humiliationOffset": 1, - "animationOffset": 6, - "burnDuration": 2, - "burnIntensity": 2, - "numFlames": 1, - "maxIntensity": 1, - "FlameS": 1, - "flameArray_x": 1, - "flameArray_y": 1, - "maxDuration": 1, - "demon": 4, - "demonX": 5, - "median": 2, - "demonY": 4, - "demonOffset": 4, - "demonDir": 2, - "dir": 3, - "demonFrame": 5, - "sprite_get_number": 1, - "*player.team": 2, - "dir*1": 2, - "downloadHandle": 3, - "tmpfile": 3, - "window_oldshowborder": 2, - "window_oldfullscreen": 2, - "timeLeft": 1, - "counter": 1, - "AudioControlPlaySong": 1, - "window_get_showborder": 1, - "window_get_fullscreen": 1, - "window_set_showborder": 1, - "UPDATE_SOURCE_BETA": 1, - "UPDATE_SOURCE": 1, - "temp_directory": 1, - "httpGet": 1, - "httpRequestStatus": 1, - "download": 1, - "isn": 1, - "extract": 1, - "downloaded": 1, - "now.": 1, - "extractzip": 1, - "execute_program": 1, - "game_end": 1 + "good": 1 }, "Gnuplot": { "set": 98, - "dummy": 3, - "u": 25, - "v": 31, "label": 14, "at": 14, "-": 102, "left": 15, "norotate": 18, "back": 23, + "textcolor": 13, + "rgb": 8, "nopoint": 14, "offset": 25, "character": 22, + "lt": 15, + "style": 7, + "line": 4, + "linetype": 11, + "linecolor": 4, + "linewidth": 11, + "pointtype": 4, + "pointsize": 4, + "default": 4, + "pointinterval": 4, + "noxtics": 2, + "noytics": 2, + "title": 13, + "xlabel": 6, + "xrange": 3, + "[": 18, + "]": 18, + "noreverse": 13, + "nowriteback": 12, + "yrange": 4, + "bmargin": 1, + "unset": 2, + "colorbox": 3, + "plot": 3, + "cos": 9, + "(": 52, + "x": 7, + ")": 52, + "ls": 4, + ".2": 1, + ".4": 1, + ".6": 1, + ".8": 1, + "lc": 3, + "border": 3, + "dummy": 3, + "u": 25, + "v": 31, + "angles": 1, + "degrees": 1, + "parametric": 3, + "view": 3, + "samples": 3, + "isosamples": 3, + "mapping": 1, + "spherical": 1, + "noztics": 1, + "urange": 1, + "vrange": 1, + "cblabel": 1, + "cbrange": 1, + "user": 1, + "vertical": 2, + "origin": 1, + "screen": 2, + "size": 1, + "front": 1, + "bdefault": 1, + "splot": 3, + "*cos": 1, + "*sin": 1, + "sin": 3, + "notitle": 15, + "with": 3, + "lines": 2, + "using": 2, + "labels": 1, + "point": 1, + "pt": 2, + "lw": 1, + ".1": 1, + "font": 8, + "tc": 1, + "pal": 1, "arrow": 7, "from": 7, "to": 7, "head": 7, "nofilled": 7, - "linetype": 11, - "linewidth": 11, - "parametric": 3, - "view": 3, - "samples": 3, - "isosamples": 3, "hidden3d": 2, "trianglepattern": 2, "undefined": 2, @@ -26766,26 +29021,12 @@ "bentover": 2, "ztics": 2, "norangelimit": 3, - "title": 13, - "xlabel": 6, - "font": 8, - "textcolor": 13, - "lt": 15, - "xrange": 3, - "[": 18, - "]": 18, - "noreverse": 13, - "nowriteback": 12, "ylabel": 5, "rotate": 3, "by": 3, - "yrange": 4, "zlabel": 4, "zrange": 2, "sinc": 13, - "(": 52, - ")": 52, - "sin": 3, "sqrt": 4, "u**2": 4, "+": 6, @@ -26808,7 +29049,6 @@ "xmax": 1, "n": 1, "zbase": 2, - "splot": 3, ".5": 2, "*n": 1, "floor": 3, @@ -26817,40 +29057,23 @@ "%": 2, "u/3.*dx": 1, "/0": 1, - "notitle": 15, - "rgb": 8, - "style": 7, - "line": 4, - "linecolor": 4, - "pointtype": 4, - "pointsize": 4, - "default": 4, - "pointinterval": 4, - "noxtics": 2, - "noytics": 2, - "bmargin": 1, - "unset": 2, - "colorbox": 3, - "plot": 3, - "cos": 9, - "x": 7, - "ls": 4, - ".2": 1, - ".4": 1, - ".6": 1, - ".8": 1, - "lc": 3, "<": 10, + "SHEBANG#!gnuplot": 1, + "reset": 1, + "terminal": 1, + "png": 1, + "output": 1, + "#set": 2, + "xr": 1, + "yr": 1, "boxwidth": 1, "absolute": 1, "fill": 1, "solid": 1, - "border": 3, "key": 1, "inside": 1, "right": 1, "top": 1, - "vertical": 2, "Right": 1, "noenhanced": 1, "autotitles": 1, @@ -26868,64 +29091,467 @@ "nomirror": 1, "autojustify": 1, "i": 1, - "using": 2, "xtic": 1, "ti": 4, - "col": 4, - "SHEBANG#!gnuplot": 1, - "reset": 1, - "terminal": 1, - "png": 1, - "output": 1, - "#set": 2, - "xr": 1, - "yr": 1, - "pt": 2, - "angles": 1, - "degrees": 1, - "mapping": 1, - "spherical": 1, - "noztics": 1, - "urange": 1, - "vrange": 1, - "cblabel": 1, - "cbrange": 1, - "user": 1, - "origin": 1, - "screen": 2, - "size": 1, - "front": 1, - "bdefault": 1, - "*cos": 1, - "*sin": 1, - "with": 3, - "lines": 2, - "labels": 1, - "point": 1, - "lw": 1, - ".1": 1, - "tc": 1, - "pal": 1 + "col": 4 + }, + "Golo": { + "module": 27, + "samples.Decorators": 1, + "import": 32, + "java.util.LinkedList": 5, + "function": 87, + "simple_decorator": 1, + "|": 228, + "func": 12, + "{": 151, + "return": 28, + "a": 22, + "b": 14, + "-": 58, + "(": 642, + "+": 114, + ")": 644, + "}": 150, + "@simple_decorator": 1, + "simple_adder": 2, + "x": 19, + "y": 16, + "decorator_with_params": 1, + "param1": 2, + "param2": 2, + "@decorator_with_params": 1, + "parametrized_adder": 2, + "generic_decorator": 1, + "args...": 3, + "println": 170, + "args": 44, + "length": 8, + "invokeWithArguments": 6, + "@generic_decorator": 4, + "generic_adder0": 2, + "generic_adder1": 2, + "generic_adder2": 2, + "generic_adder3": 2, + "z": 2, + "list_sum_decorator": 1, + "this": 29, + "augment": 4, + "java.util.List": 2, + "@list_sum_decorator": 1, + "sum": 2, + "var": 5, + "acc": 6, + "foreach": 11, + "elem": 2, + "in": 11, + "main": 27, + "let": 91, + "list": 27, + "LinkedList": 4, + "add": 22, + "#": 18, + "samples.SwingActionListener": 1, + "java.awt.event": 1, + "javax.swing": 2, + "javax.swing.WindowConstants": 2, + "local": 27, + "listener": 2, + "handler": 2, + "asInterfaceInstance": 1, + "ActionListener.class": 2, + "frame": 10, + "JFrame": 2, + "setDefaultCloseOperation": 2, + "EXIT_ON_CLOSE": 2, + "button": 7, + "JButton": 1, + "setFont": 2, + "getFont": 2, + "deriveFont": 2, + "_F": 3, + "addActionListener": 3, + "event": 3, + "to": 3, + "getContentPane": 2, + "pack": 2, + "setVisible": 2, + "true": 4, + "CoinChange": 1, + "change": 9, + "money": 5, + "coins": 13, + "match": 2, + "when": 5, + "then": 5, + "<": 3, + "or": 1, + "isEmpty": 1, + "otherwise": 2, + "head": 1, + "tail": 1, + "append": 7, + "samples.Adapters": 1, + "list_sample": 2, + "fabric": 7, + "carbonCopy": 5, + "[": 33, + "]": 33, + "conf": 4, + "map": 10, + "super": 2, + "name": 9, + "if": 7, + "get": 16, + "else": 5, + "maker": 2, + "newInstance": 2, + "getClass": 3, + "runnable_sample": 2, + "result": 13, + "array": 2, + "for": 2, + "i": 20, + "set": 13, + "runner": 4, + "run": 7, + "toString": 5, + "oftype": 2, + "java.io.Serializable.class": 1, + "java.lang.Runnable.class": 1, + "AdapterFabric": 1, + "samples.DynamicEvaluation": 1, + "gololang.EvaluationEnvironment": 1, + "test_asModule": 2, + "env": 25, + "code": 12, + "mod": 6, + "asModule": 1, + "fun": 6, + "test_anonymousModule": 2, + "anonymousModule": 1, + "test_asFunction": 2, + "f": 9, + "asFunction": 1, + "test_def": 2, + "def": 1, + "test_run": 2, + "test_run_map": 2, + "values": 3, + "java.util.TreeMap": 1, + "EvaluationEnvironment": 1, + "samples.MaxInt": 1, + "max_int": 2, + "java.lang.Integer.MAX_VALUE": 1, + "EchoArgs": 1, + "arg": 2, + "range": 4, + "samples.CollectionLiterals": 1, + "play_with_tuples": 2, + "hello": 6, + "str": 2, + "print": 1, + "join": 3, + "play_with_literals": 2, + "data": 4, + "tuple": 1, + "vector": 1, + "each": 1, + "element": 8, + "samples.WebServer": 1, + "java.lang": 2, + "java.net.InetSocketAddress": 2, + "com.sun.net.httpserver": 2, + "com.sun.net.httpserver.HttpServer": 2, + "server": 8, + "HttpServer.create": 2, + "InetSocketAddress": 2, + "createContext": 3, + "exchange": 27, + "headers": 2, + "getResponseHeaders": 4, + "response": 6, + "StringBuilder": 1, + "getRequestURI": 1, + "java.util.Date": 1, + "sendResponseHeaders": 4, + "getResponseBody": 3, + "write": 3, + "getBytes": 3, + "close": 5, + "stop": 1, + "start": 10, + "samples.AsyncHelpers": 1, + "gololang.Async": 1, + "java.util.concurrent.TimeUnit": 1, + "java.util.concurrent.Executors": 1, + "fib": 15, + "n": 17, + "<=>": 3, + "1": 6, + "2": 3, + "executor": 11, + "newCachedThreadPool": 1, + "Let": 1, + "s": 1, + "do": 1, + "some": 1, + "useless": 1, + "asynchronous": 1, + "operations": 1, + "enqueue": 2, + "Thread": 5, + "sleep": 1, + "1000_L": 1, + "666": 1, + "onSet": 5, + "v": 22, + "onFail": 2, + "e": 42, + "cancel": 1, + "Thread.sleep": 4, + "_L": 6, + "fib_10": 3, + "promise": 5, + "fib_20": 3, + "fib_30": 3, + "fib_40": 3, + "futures": 2, + "future": 5, + "submit": 6, + "all": 1, + "results": 2, + "truth": 3, + "shutdown": 2, + "awaitTermination": 2, + "SECONDS": 1, + "hello.World": 1, + "MoreCoolContainers": 1, + "dyn": 7, + "DynamicVariable": 1, + "value": 8, + "t1": 3, + "withValue": 2, + "t2": 3, + "foo": 17, + "Observable": 1, + "onChange": 2, + "mapped": 2, + "samples.DynamicObjectPerson": 1, + "mrbean": 5, + "DynamicObject": 1, + "email": 3, + "define": 5, + "bean": 4, + "Closures": 1, + "sayHello": 3, + "who": 2, + "adder": 5, + "addToTen": 3, + "bindTo": 5, + "adding": 3, + "addingTen": 2, + "pump_it": 2, + "samples.Augmentations": 1, + "with": 4, + "java.util.Collection": 1, + "doToEach": 2, + "samples.ContextDecorator": 1, + "gololang.Decorators": 3, + "myContext": 3, + "defaultContext": 1, + "count": 4, + "require": 1, + "throw": 1, + "@withContext": 1, + "withContext": 1, + "*a": 2, + "try": 19, + "catch": 19, + "samples.PrepostDecorator": 1, + "isInteger": 4, + "isOfType": 1, + "Integer.class": 1, + "@checkResult": 1, + "isString": 2, + "andThen": 4, + "lengthIs": 1, + "@checkArguments": 4, + "isPositive": 3, + "myCheck": 1, + "checkArguments": 1, + "@myCheck": 1, + "inv": 3, + "/": 1, + "isPositiveInt": 2, + "mul": 3, + "*": 1, + "isNumber": 1, + "num": 7, + "isNotNull": 1, + "notnull": 3, + "null": 2, + "samples.MemoizeDecorator": 1, + "java.lang.System": 2, + "memo": 2, + "memoizer": 1, + "@memo": 1, + "System.currentTimeMillis": 4, + "duration": 5, + "run2": 2, + "sample.EnumsThreadState": 1, + "java.lang.Thread": 2, + "State": 1, + "new": 3, + "State.NEW": 1, + "ordinal": 2, + "State.values": 1, + "Matching": 1, + "what_it_could_be": 2, + "item": 10, + "contains": 1, + "startsWith": 3, + "samples.SwingHelloWorld": 1, + "label": 4, + "JLabel": 1, + "samples.LogDeco": 1, + "log1": 2, + "msg": 2, + "@log1": 2, + "bar": 2, + "@sayHello": 1, + "baz": 2, + "log2": 4, + "msgBefore": 2, + "msgAfter": 2, + "res": 2, + "@log2": 1, + "spam": 2, + "logEnterExit": 1, + "@logEnterExit": 1, + "egg": 2, + "strange_use": 2, + "StructDemo": 1, + "struct": 1, + "Point": 4, + "StructDemo.types.Point": 1, + "move": 2, + "offsetX": 4, + "offsetY": 4, + "relative": 2, + "p1": 15, + "p2": 3, + "p3": 4, + "frozenCopy": 2, + "p4": 3, + "hashCode": 4, + "members": 1, + "p5": 3, + "ImmutablePoint": 1, + "expected": 2, + "getMessage": 1, + "samples.Fibonacci": 1, + "System": 2, + "currentTimeMillis": 2, + "40": 1, + "took": 1, + "ms": 1, + "while": 2, + "DealingWithNull": 1, + "java.util": 1, + "contacts": 3, + "larry": 2, + "orIfNull": 3, + "street": 1, + "number": 1, + "samples.TemplatesChatWebapp": 1, + "java.io": 1, + "redirect": 2, + "respond": 2, + "body": 3, + "extract_post": 2, + "posts": 7, + "reader": 4, + "BufferedReader": 1, + "InputStreamReader": 1, + "getRequestBody": 1, + "line": 5, + "readLine": 2, + "isnt": 1, + "java.net.URLDecoder.decode": 1, + "substring": 1, + "index": 2, + "template": 2, + "getRequestMethod": 1, + "index_template": 2, + "index_tpl": 2, + "gololang.TemplateEngine": 1, + "compile": 1, + "java.util.concurrent.ConcurrentLinkedDeque": 1, + "Workers": 1, + "java.util.concurrent": 1, + "gololang.concurrent.workers.WorkerEnvironment": 1, + "pusher": 2, + "queue": 5, + "message": 4, + "offer": 1, + "generator": 2, + "port": 2, + "send": 3, + "WorkerEnvironment.builder": 1, + "withFixedThreadPool": 1, + "ConcurrentLinkedQueue": 1, + "pusherPort": 2, + "spawn": 3, + "generatorPort": 2, + "finishPort": 2, + "any": 1, + "reduce": 1, + "next": 2 }, "Gosu": { - "package": 2, + "<%!-->": 1, + "defined": 1, + "in": 3, + "Hello": 2, + "gst": 1, + "<": 2, + "%": 2, + "@": 1, + "params": 1, + "(": 122, + "users": 2, + "Collection": 1, + "": 1, + ")": 123, + "<%>": 2, + "for": 2, + "user": 1, + "{": 72, + "user.LastName": 1, + "}": 72, + "user.FirstName": 1, + "user.Department": 1, + "function": 16, + "hello": 1, + "print": 3, + "package": 3, "example": 2, - "uses": 2, + "uses": 8, "java.util.*": 1, "java.io.File": 1, - "class": 1, + "class": 2, "Person": 7, "extends": 1, "Contact": 1, "implements": 1, "IEmailable": 2, - "{": 28, - "var": 10, + "var": 17, "_name": 4, - "String": 6, + "String": 14, "_age": 3, "Integer": 3, - "as": 3, + "as": 7, "Age": 1, "_relationship": 2, "Relationship": 3, @@ -26934,43 +29560,38 @@ "delegate": 1, "_emailHelper": 2, "represents": 1, - "enum": 1, + "enum": 2, "FRIEND": 1, "FAMILY": 1, "BUSINESS_CONTACT": 1, - "}": 28, - "static": 7, + "static": 26, "ALL_PEOPLE": 2, - "new": 6, + "new": 8, "HashMap": 1, "": 1, - "(": 53, - ")": 54, - "construct": 1, - "name": 4, + "construct": 2, + "name": 12, "age": 4, "relationship": 2, "EmailHelper": 1, "this": 1, - "property": 2, - "get": 1, + "property": 13, + "get": 11, "Name": 3, - "return": 4, - "set": 1, + "return": 17, + "set": 2, "override": 1, - "function": 11, "getEmailName": 1, "incrementAge": 1, "+": 2, "@Deprecated": 1, "printPersonInfo": 1, - "print": 3, "addPerson": 4, "p": 5, - "if": 4, + "if": 19, "ALL_PEOPLE.containsKey": 2, ".Name": 1, - "throw": 1, + "throw": 5, "IllegalArgumentException": 1, "[": 4, "p.Name": 2, @@ -26979,10 +29600,8 @@ "contacts": 2, "List": 1, "": 1, - "for": 2, "contact": 3, - "in": 3, - "typeis": 1, + "typeis": 2, "and": 1, "not": 1, "contact.Name": 1, @@ -27010,7 +29629,7 @@ "Relationship.valueOf": 2, "loadFromFile": 1, "file": 3, - "File": 2, + "File": 3, "file.eachLine": 1, "line": 1, "line.HasContent": 1, @@ -27020,23 +29639,122 @@ "FileWriter": 1, "PersonCSVTemplate.renderToString": 1, "PersonCSVTemplate.render": 1, - "hello": 1, - "<%!-->": 1, - "defined": 1, - "Hello": 2, - "gst": 1, - "<": 1, - "%": 2, - "@": 1, - "params": 1, - "users": 2, - "Collection": 1, - "": 1, - "<%>": 2, - "user": 1, - "user.LastName": 1, - "user.FirstName": 1, - "user.Department": 1, + "ronin": 1, + "gw.util.concurrent.LockingLazyVar": 1, + "gw.lang.reflect.*": 1, + "java.lang.*": 1, + "java.io.*": 1, + "ronin.config.*": 1, + "org.slf4j.*": 1, + "Ronin": 1, + "_CONFIG": 13, + "IRoninConfig": 2, + "Config": 1, + "_CURRENT_REQUEST": 1, + "ThreadLocal": 1, + "": 1, + ";": 1, + "private": 1, + "internal": 2, + "init": 1, + "servlet": 3, + "RoninServlet": 3, + "m": 3, + "ApplicationMode": 2, + "src": 2, + "null": 15, + "cfg": 2, + "TypeSystem.getByFullNameIfValid": 2, + "defaultWarning": 3, + "false": 1, + "ctor": 2, + "cfg.TypeInfo.getConstructor": 1, + "ronin.config.ApplicationMode": 1, + "ronin.RoninServlet": 1, + "ctor.Constructor.newInstance": 1, + "else": 9, + "DefaultRoninConfig": 1, + "true": 2, + "roninLogger": 2, + "roninLogger.TypeInfo.getMethod": 1, + "ronin.config.LogLevel": 1, + ".CallHandler.handleCall": 1, + "LogLevel": 5, + "log": 2, + "level": 7, + "WARN": 2, + "Quartz.maybeStart": 1, + "ReloadManager.setSourceRoot": 1, + "CurrentRequest": 3, + "req": 2, + "RoninRequest": 2, + "_CURRENT_REQUEST.set": 1, + "//": 2, + "CurrentTrace": 1, + "Trace": 1, + ".Trace": 1, + "_CURRENT_REQUEST.get": 1, + "Mode": 1, + ".Mode": 1, + "TESTING": 1, + ".LogLevel": 1, + "DEBUG": 2, + "TraceEnabled": 1, + "boolean": 1, + "_CONFIG.TraceEnabled": 1, + "DefaultAction": 1, + ".DefaultAction": 1, + "DefaultController": 1, + "Type": 1, + ".DefaultController": 1, + ".RoninServlet": 1, + "ErrorHandler": 1, + "IErrorHandler": 1, + ".ErrorHandler": 1, + "LogHandler": 1, + "ILogHandler": 1, + ".LogHandler": 2, + "msg": 4, + "Object": 1, + "component": 7, + "exception": 7, + "java.lang.Throwable": 1, + "INFO": 2, + "msgStr": 9, + "block": 3, + "_CONFIG.LogHandler.log": 1, + "switch": 1, + "case": 6, + "TRACE": 1, + "LoggerFactory.getLogger": 5, + "Logger.ROOT_LOGGER_NAME": 5, + ".trace": 1, + "break": 5, + ".debug": 1, + ".info": 1, + ".warn": 1, + "ERROR": 1, + "FATAL": 1, + ".error": 1, + "CacheStore": 3, + "REQUEST": 3, + "SESSION": 3, + "APPLICATION": 3, + "cache": 1, + "": 2, + "value": 4, + "T": 2, + "store": 10, + "or": 2, + "_CONFIG.RequestCache.getValue": 1, + "_CONFIG.SessionCache.getValue": 1, + "_CONFIG.ApplicationCache.getValue": 1, + "invalidate": 1, + "_CONFIG.RequestCache.invalidate": 1, + "_CONFIG.SessionCache.invalidate": 1, + "_CONFIG.ApplicationCache.invalidate": 1, + "loadChanges": 1, + "ReloadManager.detectAndReloadChangedResources": 1, "enhancement": 1, "toPerson": 1, "vals": 4, @@ -27265,21 +29983,45 @@ "n": 4, "elseif": 1 }, + "Gradle": { + "apply": 4, + "plugin": 2, + "GreetingPlugin": 4, + "greeting.message": 1, + "class": 4, + "implements": 2, + "Plugin": 2, + "": 2, + "{": 9, + "void": 2, + "(": 6, + "Project": 2, + "project": 2, + ")": 6, + "project.extensions.create": 2, + "GreetingPluginExtension": 4, + "project.task": 2, + "<<": 2, + "println": 2, + "project.greeting.message": 1, + "}": 9, + "def": 1, + "String": 3, + "message": 3, + "greeting": 1, + "greeter": 2 + }, "Grammatical Framework": { "-": 594, - "#": 14, - "path": 14, - ".": 13, - "../lib/src/prelude": 1, "(": 256, "c": 73, ")": 256, - "Zofia": 1, - "Stankiewicz": 1, + "Rami": 1, + "Shashati": 1, "under": 33, "LGPL": 33, "concrete": 33, - "FoodsJpn": 1, + "FoodsPor": 1, "of": 89, "Foods": 34, "open": 23, @@ -27293,46 +30035,39 @@ "lincat": 28, "Comment": 31, "s": 365, - "Style": 3, "Str": 394, "}": 580, "Quality": 34, - "AdjUse": 4, - "t": 28, - "AdjType": 4, - "Kind": 33, + "Gender": 94, "Number": 207, + "Kind": 33, + "g": 132, "Item": 31, "n": 206, "lin": 28, "Pred": 30, "item": 36, "quality": 90, - "case": 44, - "quality.t": 3, - "IAdj": 4, - "table": 148, - "Plain": 3, "item.s": 24, "+": 480, - "quality.s": 50, - "APred": 8, - "Polite": 4, "copula": 33, "item.n": 29, - "NaAdj": 4, - "p": 11, + "quality.s": 50, + "item.g": 12, "This": 29, "det": 86, "Sg": 184, + "table": 148, + "Masc": 67, + "Fem": 65, "That": 29, "These": 28, "Pl": 182, "Those": 28, "Mod": 29, "kind": 115, - "Attr": 9, "kind.s": 46, + "kind.g": 38, "Wine": 29, "regNoun": 38, "Cheese": 29, @@ -27340,102 +30075,21 @@ "Pizza": 28, "Very": 29, "a": 57, + "a.s": 8, "Fresh": 29, - "adj": 38, + "mkAdjReg": 7, "Warm": 29, - "regAdj": 61, "Italian": 29, "Expensive": 29, "Delicious": 29, "Boring": 29, "param": 22, "|": 122, - "na": 1, - "adjectives": 2, - "have": 2, - "different": 1, - "forms": 2, - "as": 2, - "noun": 51, - "attributes": 1, - "and": 4, - "predicates": 2, - "for": 6, - "phrase": 1, - "types": 1, - "can": 1, - "form": 4, - "without": 1, - "the": 7, - "cannot": 1, "oper": 29, - "d": 6, - "cn": 11, - "cn.s": 8, - "sakana": 6, - "_": 68, - "chosenna": 2, - "chosen": 2, - "akai": 2, - "Aarne": 13, - "Ranta": 13, - "interface": 1, - "LexFoods": 12, - "Syntax": 7, - "wine_N": 7, - "N": 4, - "pizza_N": 7, - "cheese_N": 7, - "fish_N": 8, - "fresh_A": 7, - "A": 6, - "warm_A": 8, - "italian_A": 7, - "expensive_A": 7, - "delicious_A": 7, - "boring_A": 7, - "FoodsAmh": 1, - "instance": 5, - "LexFoodsFin": 2, - "SyntaxFin": 2, - "ParadigmsFin": 1, - "mkN": 46, - "mkA": 47, - "present": 7, - "Jordi": 2, - "Saludes": 2, - "FoodsCat": 1, - "FoodsI": 6, - "with": 5, - "SyntaxCat": 2, - "LexFoodsCat": 2, - "Krasimir": 1, - "Angelov": 1, - "FoodsBul": 1, - "Gender": 94, - "Masc": 67, - "Fem": 65, - "Neutr": 21, - "Agr": 3, - "ASg": 23, - "APl": 11, - "g": 132, - "qual": 8, - "item.a": 2, - "qual.s": 8, - "kind.g": 38, - "FoodsGer": 1, - "SyntaxGer": 2, - "LexFoodsGer": 2, - "Rami": 1, - "Shashati": 1, - "FoodsPor": 1, - "item.g": 12, - "a.s": 8, - "mkAdjReg": 7, "QualityT": 5, "Type": 9, "mkAdj": 27, + "_": 68, "bonito": 2, "bonita": 2, "bonitos": 2, @@ -27447,24 +30101,358 @@ "let": 8, "sozinh": 4, "Predef.tk": 2, + "for": 6, "gender": 2, "independent": 1, + "adjectives": 2, "adjUtil": 2, "util": 3, "uteis": 3, "smart": 1, "paradigm": 1, "adjcetives": 1, + "case": 44, "last": 3, "ItemT": 2, "KindT": 4, "num": 6, + "noun": 51, "noun.g": 3, "noun.s": 7, "animal": 2, "animais": 2, "gen": 4, "carro": 3, + "#": 14, + "path": 14, + ".": 13, + "present": 7, + "Aarne": 13, + "Ranta": 13, + "FoodsIta": 1, + "FoodsI": 6, + "with": 5, + "Syntax": 7, + "SyntaxIta": 2, + "LexFoods": 12, + "LexFoodsIta": 2, + "FoodsFin": 1, + "SyntaxFin": 2, + "LexFoodsFin": 2, + "Jordi": 2, + "Saludes": 2, + "FoodsCat": 1, + "SyntaxCat": 2, + "LexFoodsCat": 2, + "FoodsHin": 2, + "regN": 15, + "regAdj": 61, + "mkN": 46, + "p": 11, + "lark": 8, + "ms": 4, + "mp": 4, + "f": 16, + "acch": 6, + "../lib/src/prelude": 1, + "Zofia": 1, + "Stankiewicz": 1, + "FoodsJpn": 1, + "Style": 3, + "AdjUse": 4, + "t": 28, + "AdjType": 4, + "quality.t": 3, + "IAdj": 4, + "Plain": 3, + "APred": 8, + "Polite": 4, + "NaAdj": 4, + "Attr": 9, + "adj": 38, + "na": 1, + "have": 2, + "different": 1, + "forms": 2, + "as": 2, + "attributes": 1, + "and": 4, + "predicates": 2, + "phrase": 1, + "types": 1, + "can": 1, + "form": 4, + "without": 1, + "the": 7, + "cannot": 1, + "d": 6, + "cn": 11, + "cn.s": 8, + "sakana": 6, + "chosenna": 2, + "chosen": 2, + "akai": 2, + "FoodsEng": 1, + "language": 2, + "en_US": 1, + "man": 10, + "men": 10, + "car": 6, + "cold": 4, + "Dinesh": 1, + "Simkhada": 1, + "FoodsNep": 1, + "adjPl": 2, + "bor": 2, + "prelude": 2, + "Inese": 1, + "Bernsone": 1, + "FoodsLav": 1, + "SS": 6, + "Q": 5, + "Defin": 9, + "ss": 13, + "Q1": 5, + "Ind": 14, + "Def": 21, + "qual": 8, + "q": 10, + "spec": 2, + "qual.s": 8, + "Q2": 3, + "adjective": 22, + "specAdj": 2, + "m": 9, + "cn.g": 10, + "skaists": 5, + "skaista": 2, + "skaisti": 2, + "skaistas": 2, + "skaistais": 2, + "skaistaa": 2, + "skaistie": 2, + "skaistaas": 2, + "skaist": 8, + "init": 4, + "Adjective": 9, + "abstract": 1, + "startcat": 1, + "cat": 1, + "fun": 1, + "FoodsGer": 1, + "SyntaxGer": 2, + "LexFoodsGer": 2, + "John": 1, + "J.": 1, + "Camilleri": 1, + "FoodsMlt": 1, + "uniAdj": 2, + "Create": 6, + "an": 2, + "full": 1, + "function": 1, + "Params": 4, + "Sing": 4, + "Plural": 2, + "iswed": 2, + "sewda": 2, + "suwed": 3, + "Param": 2, + "frisk": 4, + "eg": 1, + "tal": 1, + "buzz": 1, + "uni": 4, + "Singular": 1, + "inherent": 1, + "ktieb": 2, + "kotba": 2, + "Copula": 1, + "is": 6, + "linking": 1, + "verb": 1, + "article": 3, + "taking": 1, + "into": 1, + "account": 1, + "first": 1, + "letter": 1, + "next": 1, + "word": 3, + "pre": 1, + "cons@": 1, + "cons": 1, + "determinant": 1, + "Sg/Pl": 1, + "string": 1, + "default": 1, + "to": 6, + "masc": 3, + "number": 2, + "instance": 5, + "LexFoodsSwe": 2, + "SyntaxSwe": 2, + "ParadigmsSwe": 1, + "wine_N": 7, + "pizza_N": 7, + "cheese_N": 7, + "fish_N": 8, + "fresh_A": 7, + "mkA": 47, + "warm_A": 8, + "italian_A": 7, + "expensive_A": 7, + "delicious_A": 7, + "boring_A": 7, + "Martha": 1, + "Dis": 1, + "Brandt": 1, + "FoodsIce": 1, + "Neutr": 21, + "more": 1, + "commonly": 1, + "used": 2, + "Iceland": 1, + "but": 1, + "Icelandic": 1, + "it": 2, + "defOrInd": 2, + "order": 1, + "given": 1, + "mSg": 1, + "fSg": 1, + "nSg": 1, + "mPl": 1, + "fPl": 1, + "nPl": 1, + "mSgDef": 1, + "f/nSgDef": 1, + "_PlDef": 1, + "fem": 2, + "neutr": 2, + "x1": 3, + "x9": 1, + "ferskur": 5, + "fersk": 11, + "ferskt": 2, + "ferskir": 2, + "ferskar": 2, + "fersk_pl": 2, + "ferski": 2, + "ferska": 2, + "fersku": 2, + "": 1, + "<": 10, + "alltenses": 3, + "Dana": 1, + "Dannells": 1, + "Licensed": 1, + "FoodsHeb": 2, + "Species": 8, + "mod": 7, + "Modified": 5, + "sp": 11, + "Indef": 6, + "T": 2, + "regAdj2": 3, + "F": 2, + "Noun": 9, + "Adj": 4, + "cn.mod": 2, + "gvina": 6, + "hagvina": 3, + "gvinot": 6, + "hagvinot": 3, + "defH": 7, + "replaceLastLetter": 7, + "tov": 6, + "tova": 3, + "tovim": 3, + "tovot": 3, + "c@": 3, + "italki": 3, + "italk": 4, + "Laurette": 2, + "Pretorius": 2, + "Sr": 2, + "&": 2, + "Jr": 2, + "Ansu": 2, + "Berg": 2, + "FoodsAfr": 1, + "Predef": 3, + "AdjAP": 10, + "Predic": 3, + "declNoun_e": 2, + "declNoun_aa": 2, + "declNoun_ss": 2, + "declNoun_s": 2, + "veryAdj": 2, + "smartAdj_e": 4, + "operations": 2, + "wyn": 1, + "kaas": 1, + "vis": 1, + "pizza": 1, + "x": 74, + "v": 6, + "tk": 1, + "y": 3, + "declAdj_e": 2, + "declAdj_g": 2, + "w": 15, + "declAdj_oog": 2, + "i": 2, + "x.s": 8, + "Katerina": 2, + "Bohmova": 2, + "FoodsCze": 1, + "ResCze": 2, + "NounPhrase": 3, + "regnfAdj": 2, + "ParadigmsGer": 1, + "feminine": 2, + "masculine": 4, + "ParadigmsCat": 1, + "M": 1, + "MorphoCat": 1, + "M.Masc": 2, + "FoodsPes": 1, + "optimize": 1, + "noexpand": 1, + "Add": 8, + "prep": 11, + "Indep": 4, + "kind.prep": 1, + "quality.prep": 1, + "at": 3, + "a.prep": 1, + "must": 1, + "be": 1, + "written": 1, + "x4": 2, + "pytzA": 3, + "pytzAy": 1, + "pytzAhA": 3, + "pr": 4, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "mrd": 8, + "tAzh": 8, + "tAzhy": 2, + "FoodsAmh": 1, + "Julia": 1, + "Hammar": 1, + "FoodsEpo": 1, + "vino": 3, + "nova": 3, + "Shafqat": 1, + "Virk": 1, + "FoodsUrd": 1, + "coupla": 2, "FoodsSpa": 1, "SyntaxSpa": 1, "StructuralSpa": 1, @@ -27483,108 +30471,17 @@ "mkCN": 20, "mkAP": 28, "very_AdA": 4, - "FoodsEng": 1, - "language": 2, - "en_US": 1, - "man": 10, - "men": 10, - "car": 6, - "cold": 4, - "ParadigmsCat": 1, - "M": 1, - "MorphoCat": 1, - "M.Masc": 2, - "Julia": 1, - "Hammar": 1, - "FoodsEpo": 1, - "SS": 6, - "ss": 13, - "vino": 3, - "nova": 3, - "Femke": 1, - "Johansson": 1, - "FoodsDut": 1, - "AForm": 4, - "AAttr": 3, - "f": 16, - "regadj": 6, - "wijn": 3, - "koud": 3, - "duur": 2, - "dure": 2, - "Katerina": 2, - "Bohmova": 2, - "resource": 1, - "ResCze": 2, - "NounPhrase": 3, - "Noun": 9, - "Adjective": 9, - "m": 9, - "ne": 2, - "cn.g": 10, - "muz": 2, - "muzi": 2, - "adjective": 22, - "msg": 3, - "fsg": 3, - "nsg": 3, - "mpl": 3, - "fpl": 3, - "npl": 3, - "mlad": 7, - "regnfAdj": 2, - "vynikajici": 7, - "FoodsSwe": 1, - "SyntaxSwe": 2, - "LexFoodsSwe": 2, - "**": 1, - "sv_SE": 1, - "FoodsPes": 1, - "optimize": 1, - "noexpand": 1, - "Add": 8, - "prep": 11, - "Indep": 4, - "kind.prep": 1, - "quality.prep": 1, - "regN": 15, - "at": 3, - "a.prep": 1, - "it": 2, - "must": 1, - "be": 1, - "written": 1, - "x1": 3, - "x4": 2, - "pytzA": 3, - "pytzAy": 1, - "pytzAhA": 3, - "pr": 4, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "mrd": 8, - "tAzh": 8, - "tAzhy": 2, - "../foods": 1, - "FoodsFre": 1, - "SyntaxFre": 1, - "ParadigmsFre": 1, - "masculine": 4, - "feminine": 2, - "FoodsHin": 2, - "lark": 8, - "ms": 4, - "mp": 4, - "acch": 6, - "ParadigmsSwe": 1, - "FoodsOri": 1, - "Vikash": 1, - "Rauniyar": 1, + "/GF/lib/src/prelude": 1, + "Nyamsuren": 1, + "Erdenebadrakh": 1, + "FoodsMon": 1, + "prefixSS": 1, + "incomplete": 1, + "this_Det": 2, + "that_Det": 2, + "these_Det": 2, + "those_Det": 2, "FoodsTur": 1, - "Predef": 3, "Case": 10, "softness": 4, "Softness": 5, @@ -27597,15 +30494,12 @@ "Turkish": 1, "if": 1, "subject": 1, - "is": 6, "not": 2, "human": 2, "being": 1, "then": 1, "singular": 1, - "used": 2, "regardless": 1, - "number": 2, "subject.": 1, "Since": 1, "all": 1, @@ -27615,7 +30509,6 @@ "non": 1, "do": 1, "need": 1, - "to": 6, "form.": 1, "quality.softness": 1, "quality.h": 1, @@ -27653,242 +30546,13 @@ "excluded": 1, "copula.": 1, "base": 4, - "c@": 3, "*": 1, - "John": 1, - "J.": 1, - "Camilleri": 1, - "FoodsMlt": 1, - "uniAdj": 2, - "Create": 6, - "an": 2, - "full": 1, - "function": 1, - "Params": 4, - "Sing": 4, - "Plural": 2, - "iswed": 2, - "sewda": 2, - "suwed": 3, - "Param": 2, - "frisk": 4, - "eg": 1, - "tal": 1, - "buzz": 1, - "uni": 4, - "Singular": 1, - "inherent": 1, - "ktieb": 2, - "kotba": 2, - "Copula": 1, - "linking": 1, - "verb": 1, - "article": 3, - "taking": 1, - "into": 1, - "account": 1, - "first": 1, - "letter": 1, - "next": 1, - "word": 3, - "pre": 1, - "cons@": 1, - "cons": 1, - "determinant": 1, - "Sg/Pl": 1, - "string": 1, - "default": 1, - "masc": 3, - "FoodsFin": 1, - "alltenses": 3, - "FoodsTha": 1, - "SyntaxTha": 1, - "LexiconTha": 1, - "ParadigmsTha": 1, - "R": 4, - "ResTha": 1, - "this_Det": 2, - "that_Det": 2, - "these_Det": 2, - "those_Det": 2, - "R.thword": 4, - "prelude": 2, - "Martha": 1, - "Dis": 1, - "Brandt": 1, - "FoodsIce": 1, - "Defin": 9, - "Ind": 14, - "Def": 21, - "more": 1, - "commonly": 1, - "Iceland": 1, - "but": 1, - "Icelandic": 1, - "defOrInd": 2, - "order": 1, - "given": 1, - "mSg": 1, - "fSg": 1, - "nSg": 1, - "mPl": 1, - "fPl": 1, - "nPl": 1, - "mSgDef": 1, - "f/nSgDef": 1, - "_PlDef": 1, - "fem": 2, - "neutr": 2, - "x9": 1, - "ferskur": 5, - "fersk": 11, - "ferskt": 2, - "ferskir": 2, - "ferskar": 2, - "fersk_pl": 2, - "ferski": 2, - "ferska": 2, - "fersku": 2, - "": 1, - "<": 10, - "Dana": 1, - "Dannells": 1, - "Licensed": 1, - "FoodsHeb": 2, - "Species": 8, - "mod": 7, - "Modified": 5, - "sp": 11, - "Indef": 6, - "T": 2, - "regAdj2": 3, - "F": 2, - "Adj": 4, - "cn.mod": 2, - "gvina": 6, - "hagvina": 3, - "gvinot": 6, - "hagvinot": 3, - "defH": 7, - "replaceLastLetter": 7, - "tov": 6, - "tova": 3, - "tovim": 3, - "tovot": 3, - "italki": 3, - "italk": 4, - "/GF/lib/src/prelude": 1, - "Nyamsuren": 1, - "Erdenebadrakh": 1, - "FoodsMon": 1, - "prefixSS": 1, - "x": 74, - "Inese": 1, - "Bernsone": 1, - "FoodsLav": 1, - "Q": 5, - "Q1": 5, - "q": 10, - "spec": 2, - "Q2": 3, - "specAdj": 2, - "skaists": 5, - "skaista": 2, - "skaisti": 2, - "skaistas": 2, - "skaistais": 2, - "skaistaa": 2, - "skaistie": 2, - "skaistaas": 2, - "skaist": 8, - "init": 4, - "Laurette": 2, - "Pretorius": 2, - "Sr": 2, - "&": 2, - "Jr": 2, - "Ansu": 2, - "Berg": 2, - "FoodsTsn": 1, - "NounClass": 28, - "w": 15, - "r": 9, - "b": 9, - "Bool": 5, - "p_form": 18, - "TType": 16, - "mkPredDescrCop": 2, - "item.c": 1, - "quality.p_form": 1, - "kind.w": 4, - "mkDemPron1": 3, + "FoodsChi": 1, + "quality.p": 2, "kind.c": 11, - "kind.q": 4, - "mkDemPron2": 3, - "mkMod": 2, - "Lexicon": 1, - "mkNounNC14_6": 2, - "mkNounNC9_10": 4, - "smartVery": 2, - "mkVarAdj": 2, - "mkOrdAdj": 4, - "mkPerAdj": 2, - "mkVerbRel": 2, - "NC9_10": 14, - "NC14_6": 14, - "P": 4, - "V": 4, - "ModV": 4, - "y": 3, - "y.b": 1, - "True": 3, - "y.w": 2, - "y.r": 2, - "y.c": 14, - "y.q": 4, - "smartQualRelPart": 5, - "x.t": 10, - "smartDescrCop": 5, - "x.s": 8, - "False": 3, - "mkVeryAdj": 2, - "x.p_form": 2, - "mkVeryVerb": 3, - "mkQualRelPart_PName": 2, - "mkQualRelPart": 2, - "mkDescrCop_PName": 2, - "mkDescrCop": 2, - "ParadigmsGer": 1, - "FoodsIta": 1, - "SyntaxIta": 2, - "LexFoodsIta": 2, - "incomplete": 1, - "FoodsCze": 1, - "Shafqat": 1, - "Virk": 1, - "FoodsUrd": 1, - "coupla": 2, - "FoodsAfr": 1, - "AdjAP": 10, - "Predic": 3, - "declNoun_e": 2, - "declNoun_aa": 2, - "declNoun_ss": 2, - "declNoun_s": 2, - "veryAdj": 2, - "smartAdj_e": 4, - "operations": 2, - "wyn": 1, - "kaas": 1, - "vis": 1, - "pizza": 1, - "v": 6, - "tk": 1, - "declAdj_e": 2, - "declAdj_g": 2, - "declAdj_oog": 2, - "i": 2, - "ParadigmsIta": 1, + "geKind": 5, + "longQuality": 8, + "mkKind": 2, "Ramona": 1, "Enache": 1, "FoodsRon": 1, @@ -27920,20 +30584,168 @@ "": 1, "": 1, "": 1, - "abstract": 1, - "startcat": 1, - "cat": 1, - "fun": 1, - "Dinesh": 1, - "Simkhada": 1, - "FoodsNep": 1, - "adjPl": 2, - "bor": 2, - "FoodsChi": 1, - "quality.p": 2, - "geKind": 5, - "longQuality": 8, - "mkKind": 2 + "Krasimir": 1, + "Angelov": 1, + "FoodsBul": 1, + "Agr": 3, + "ASg": 23, + "APl": 11, + "item.a": 2, + "ParadigmsIta": 1, + "FoodsSwe": 1, + "**": 1, + "sv_SE": 1, + "FoodsTha": 1, + "SyntaxTha": 1, + "LexiconTha": 1, + "ParadigmsTha": 1, + "R": 4, + "ResTha": 1, + "R.thword": 4, + "resource": 1, + "ne": 2, + "muz": 2, + "muzi": 2, + "msg": 3, + "fsg": 3, + "nsg": 3, + "mpl": 3, + "fpl": 3, + "npl": 3, + "mlad": 7, + "vynikajici": 7, + "ParadigmsFin": 1, + "Vikash": 1, + "Rauniyar": 1, + "FoodsTsn": 1, + "NounClass": 28, + "r": 9, + "b": 9, + "Bool": 5, + "p_form": 18, + "TType": 16, + "mkPredDescrCop": 2, + "item.c": 1, + "quality.p_form": 1, + "kind.w": 4, + "mkDemPron1": 3, + "kind.q": 4, + "mkDemPron2": 3, + "mkMod": 2, + "Lexicon": 1, + "mkNounNC14_6": 2, + "mkNounNC9_10": 4, + "smartVery": 2, + "mkVarAdj": 2, + "mkOrdAdj": 4, + "mkPerAdj": 2, + "mkVerbRel": 2, + "NC9_10": 14, + "NC14_6": 14, + "P": 4, + "V": 4, + "ModV": 4, + "y.b": 1, + "True": 3, + "y.w": 2, + "y.r": 2, + "y.c": 14, + "y.q": 4, + "smartQualRelPart": 5, + "x.t": 10, + "smartDescrCop": 5, + "False": 3, + "mkVeryAdj": 2, + "x.p_form": 2, + "mkVeryVerb": 3, + "mkQualRelPart_PName": 2, + "mkQualRelPart": 2, + "mkDescrCop_PName": 2, + "mkDescrCop": 2, + "FoodsOri": 1, + "Femke": 1, + "Johansson": 1, + "FoodsDut": 1, + "AForm": 4, + "AAttr": 3, + "regadj": 6, + "wijn": 3, + "koud": 3, + "duur": 2, + "dure": 2, + "../foods": 1, + "FoodsFre": 1, + "SyntaxFre": 1, + "ParadigmsFre": 1, + "interface": 1, + "N": 4, + "A": 6 + }, + "Graph Modeling Language": { + "graph": 1, + "[": 4, + "directed": 1, + "node": 2, + "id": 2, + "label": 2, + "value": 2, + "]": 4, + "edge": 1, + "source": 1, + "target": 1 + }, + "Graphviz (DOT)": { + "digraph": 2, + "G": 6, + "{": 2, + "edge": 2, + "[": 78, + "label": 75, + "]": 78, + ";": 100, + "graph": 2, + "ranksep": 2, + "T": 4, + "shape": 17, + "record": 17, + "S": 4, + "SPACE": 4, + "A": 4, + "H": 4, + "U": 4, + "L": 4, + "N": 4, + "I": 4, + "O": 4, + "F": 4, + "GF": 3, + "W": 4, + "Y": 4, + "B": 2, + "D": 4, + "BD": 3, + "WYBD": 3, + "GFWYBD": 3, + "-": 82, + "}": 2, + "node": 1, + "K": 2, + "_3": 2, + "_9": 2, + "_39": 3, + "X": 2, + "YX": 3, + "J": 2, + "JW": 3, + "YXJW": 3, + "M": 2, + "E": 2, + "DOT": 2, + "_1": 2, + "DOT1": 3, + "_7": 2, + "R": 2, + "C": 2 }, "Groff": { ".TH": 1, @@ -27955,14 +30767,16 @@ "baz.": 1 }, "Groovy": { - "SHEBANG#!groovy": 2, - "println": 3, "html": 3, "{": 9, "head": 2, - "component": 1, "title": 2, "}": 9, + "body": 1, + "p": 1, + "component": 1, + "SHEBANG#!groovy": 2, + "println": 3, "task": 1, "echoDirListViaAntBuilder": 1, "(": 7, @@ -28005,9 +30819,7 @@ "projectDir": 1, "removed.": 1, "it.toString": 1, - "-": 1, - "body": 1, - "p": 1 + "-": 1 }, "Groovy Server Pages": { "": 4, @@ -28029,6 +30841,10 @@ "": 4, "": 4, "": 4, + "Resources": 2, + "": 2, + "module=": 2, + "name=": 1, "<%@>": 1, "page": 2, "contentType=": 1, @@ -28044,111 +30860,46 @@ "Download": 1, "": 2, "": 2, - "Print": 1, - "Resources": 2, - "": 2, - "module=": 2, - "name=": 1 + "Print": 1 }, "HTML": { - "": 2, - "html": 1, - "PUBLIC": 2, - "W3C": 2, - "DTD": 3, - "XHTML": 1, - "1": 1, - "0": 2, - "Transitional": 1, - "EN": 2, - "http": 3, - "www": 2, - "w3": 2, - "org": 2, - "TR": 2, - "xhtml1": 2, - "transitional": 1, - "dtd": 2, - "": 2, - "xmlns=": 1, - "": 2, - "": 1, - "equiv=": 1, - "content=": 1, - "": 2, - "Related": 2, - "Pages": 2, - "": 2, - "": 1, - "href=": 9, - "rel=": 1, - "type=": 1, - "": 1, - "": 2, - "

": 10, - "class=": 22, - "": 8, - "Main": 1, - "Page": 1, - "": 8, - "&": 3, - "middot": 3, - ";": 3, - "Class": 2, - "Overview": 2, - "Hierarchy": 1, - "All": 1, - "Classes": 1, - "
": 11, - "Here": 1, - "is": 1, - "a": 4, - "list": 1, - "of": 5, - "all": 1, - "related": 1, - "documentation": 1, - "pages": 1, - "": 1, - "": 2, - "id=": 2, - "": 4, - "": 2, - "16": 1, - "The": 2, - "Layout": 1, - "System": 1, - "
": 4, - "": 2, - "src=": 2, - "alt=": 2, - "width=": 1, - "height=": 2, - "target=": 3, - "
": 1, - "Generated": 1, - "with": 1, - "Doxygen": 1, - "": 2, - "": 2, + "": 3, "HTML": 2, + "PUBLIC": 3, + "W3C": 3, + "DTD": 5, "4": 1, + "0": 3, "Frameset": 1, + "EN": 3, + "http": 4, + "www": 3, + "w3": 3, + "org": 3, + "TR": 3, "REC": 1, "html40": 1, "frameset": 1, + "dtd": 3, + "": 3, + "": 3, "Common_meta": 1, "(": 14, ")": 14, + "": 3, "Android": 5, "API": 7, "Differences": 2, "Report": 2, + "": 3, + "": 3, + "
": 11, + "class=": 22, "Header": 1, "

": 1, "

": 1, "

": 3, - "This": 1, + "This": 2, "document": 1, "details": 1, "the": 11, @@ -28173,14 +30924,17 @@ "an": 3, "change": 2, "includes": 1, + "a": 6, "brief": 1, "description": 1, + "of": 5, "explanation": 1, "suggested": 1, "workaround": 1, "where": 1, "available.": 1, "

": 3, + "The": 2, "differences": 2, "described": 1, "this": 2, @@ -28196,7 +30950,7 @@ "-": 1, "right": 1, "corner": 1, - "page.": 1, + "page.": 2, "compares": 1, "newer": 1, "older": 2, @@ -28205,7 +30959,7 @@ "any": 1, "relative": 1, "So": 1, - "example": 1, + "example": 2, "indicated": 1, "no": 1, "longer": 1, @@ -28216,8 +30970,12 @@ "about": 1, "SDK": 1, "see": 1, + "": 8, + "href=": 9, + "target=": 3, "product": 1, "site": 1, + "": 8, ".": 1, "if": 4, "no_delta": 1, @@ -28246,7 +31004,76 @@ "PackageAddedLink": 1, "SimpleTableRow": 2, "changed_packages": 2, - "PackageChangedLink": 1 + "PackageChangedLink": 1, + "
": 12, + "": 3, + "": 3, + "html": 2, + "XHTML": 4, + "1": 2, + "Strict": 1, + "xhtml1": 4, + "strict": 1, + "xmlns=": 2, + "is": 2, + "sample": 1, + "file": 1, + "": 1, + "": 2, + "id=": 3, + "Just": 1, + "simple": 1, + "": 1, + "": 1, + "test": 1, + "Transitional": 1, + "transitional": 1, + "": 1, + "equiv=": 1, + "content=": 1, + "Related": 2, + "Pages": 2, + "": 1, + "rel=": 1, + "Main": 1, + "Page": 1, + "&": 3, + "middot": 3, + ";": 3, + "Class": 2, + "Overview": 2, + "Hierarchy": 1, + "All": 1, + "Classes": 1, + "Here": 1, + "list": 1, + "all": 1, + "related": 1, + "documentation": 1, + "pages": 1, + "": 1, + "": 2, + "": 4, + "": 2, + "16": 1, + "Layout": 1, + "System": 1, + "
": 4, + "": 2, + "src=": 2, + "alt=": 2, + "width=": 1, + "height=": 2, + "
": 1, + "Generated": 1, + "with": 1, + "Doxygen": 1 }, "HTML+ERB": { "<%>": 12, @@ -28328,11 +31155,442 @@ ";": 1, "": 1 }, - "Haml": { - "%": 7, - "p": 1, + "Hack": { + "<": 25, + "hh": 23, + "//": 18, + "strict": 23, + "require_once": 24, + "_SERVER": 19, + "[": 28, + "]": 28, + ".": 28, + ";": 203, + "abstract": 13, + "class": 27, + "Controller": 3, + "{": 176, + "protected": 44, + "function": 106, + "__construct": 5, + "(": 290, + ")": 295, + "startup": 2, + "}": 182, + "getCSS": 3, + "Set": 10, + "": 12, + "getJS": 3, + "getTitle": 4, + "string": 65, + "render": 5, + "xhp": 19, + "final": 21, + "getHead": 2, + "css": 3, + "this": 32, + "-": 59, + "toVector": 2, + "map": 5, + "": 1, + "rel=": 1, + "type=": 5, + "href=": 16, + "js": 3, + "": 1, "": 1, "html": 1, "PUBLIC": 1, @@ -37839,9 +41507,13 @@ "equiv=": 1, "content=": 1, "": 1, + "{": 89, "shop.name": 2, + "}": 89, + "-": 4, "page_title": 1, "": 1, + "|": 31, "global_asset_url": 5, "stylesheet_tag": 3, "script_tag": 5, @@ -37850,29 +41522,48 @@ "content_for_header": 1, "": 1, "": 1, + "id=": 28, "

": 1, + "class=": 14, + "": 9, + "href=": 9, "Skip": 1, "to": 1, "navigation.": 1, + "": 9, "

": 1, + "%": 46, + "if": 5, "cart.item_count": 7, + "
": 23, + "style=": 5, + "

": 3, "There": 1, "pluralize": 3, + "in": 8, "title=": 3, "your": 1, "cart": 1, + "

": 3, "

": 1, "Your": 1, "subtotal": 1, "is": 1, "cart.total_price": 2, + "money": 5, ".": 3, "

": 1, + "for": 6, "item": 1, "cart.items": 1, "onMouseover=": 2, "onMouseout=": 2, + "": 4, + "src=": 5, + "
": 23, + "endfor": 6, "
": 2, + "endif": 5, "

": 1, "

": 1, "onclick=": 1, @@ -37883,12 +41574,16 @@ ")": 1, "
": 3, "content_for_layout": 1, + "
    ": 5, "link": 2, "linklists.main": 1, "menu.links": 1, + "
  • ": 5, "link.title": 2, "link_to": 2, "link.url": 2, + "
  • ": 5, + "
": 5, "tags": 1, "tag": 4, "collection.tags": 1, @@ -37906,7 +41601,50 @@ "by": 1, "Shopify": 1, "": 1, - "": 1 + "": 1, + "

": 1, + "We": 1, + "have": 1, + "wonderful": 1, + "products": 1, + "

": 1, + "image": 1, + "product.images": 1, + "forloop.first": 1, + "rel=": 2, + "alt=": 2, + "else": 1, + "product.title": 1, + "Vendor": 1, + "product.vendor": 1, + "link_to_vendor": 1, + "Type": 1, + "product.type": 1, + "link_to_type": 1, + "": 1, + "product.price_min": 1, + "product.price_varies": 1, + "product.price_max": 1, + "": 1, + "
": 1, + "action=": 1, + "method=": 1, + "": 1, + "": 1, + "type=": 2, + "
": 1, + "product.description": 1, + "": 1 }, "Literate Agda": { "documentclass": 1, @@ -38307,57 +42045,302 @@ "headlines.name": 1, "users.id": 1 }, - "Lua": { - "local": 11, - "FileModder": 10, - "pd.Class": 3, - "new": 3, + "LoomScript": { + "package": 2, + "{": 26, + "import": 4, + "loom.Application": 2, + ";": 78, + "loom2d.display.StageScaleMode": 1, + "loom2d.ui.SimpleLabel": 1, + "public": 15, + "class": 5, + "HelloWorld": 1, + "extends": 4, + "Application": 2, + "override": 2, + "function": 11, + "run": 2, "(": 56, ")": 56, + "void": 7, + "stage.scaleMode": 1, + "StageScaleMode.LETTERBOX": 1, + "centeredMessage": 2, + "simpleLabel": 2, + "this.getFullTypeName": 1, + "trace": 13, + "}": 26, + "private": 8, + "get": 2, + "SimpleLabel": 4, + "return": 4, + "stage.addChild": 1, + "new": 2, + "as": 2, + "label": 1, + "msg": 2, + "String": 12, + "label.text": 1, + "label.center": 1, + "label.x": 1, + "stage.stageWidth": 1, + "/": 5, + "label.y": 1, + "stage.stageHeight": 1, + "-": 8, + "label.height": 1, + "interface": 1, + "I": 2, + "C": 2, + "B": 5, + "implements": 1, + "final": 1, + "A": 6, + "delegate": 1, + "ToCompute": 2, + "s": 3, + "o": 1, + "Object": 3, + "Number": 11, + "enum": 1, + "Enumeration": 1, + "foo": 1, + "baz": 1, + "cat": 1, + "struct": 1, + "P": 4, + "var": 32, + "x": 1, + "y": 1, + "static": 2, + "operator": 1, + "a": 13, + "b": 5, + "a.x": 1, + "b.x": 1, + "a.y": 1, + "b.y": 1, + "SyntaxExercise": 1, + "classVar": 1, + "const": 1, + "CONST": 1, + "_a": 4, + "_d": 3, + "set": 1, + "value": 2, + "variousTypes": 1, + "defaultValue": 1, + "nil": 1, + "null": 2, + "b1": 1, + "Boolean": 5, + "true": 2, + "b2": 1, + "false": 1, + "n1": 1, + "n2": 1, + "n3": 1, + "xfed": 1, + "s1": 1, + "s2": 1, + "f1": 3, + "Function": 1, + "life": 1, + "universe": 1, + "...everything": 1, + "v1": 1, + "Vector.": 2, + "": 1, + "[": 2, + "]": 2, + "d1": 1, + "Dictionary.": 2, + "": 2, + "+": 10, + "variousOps": 1, + "%": 2, + "*": 3, + "d": 3, + "&&": 1, + "e": 1, + "|": 1, + "castable1": 1, + "is": 1, + "castable2": 1, + "cast": 1, + ".toString": 1, + "instanced": 1, + "instanceof": 1, + "variousFlow": 1, + "n": 3, + "Math.random": 3, + "if": 3, + "else": 2, + "flip": 1, + "for": 4, + "i": 10, + "<": 2, + "v": 3, + "": 1, + "each": 1, + "in": 3, + "key1": 2, + "key2": 2, + "while": 2, + "continue": 1, + "do": 1, + "switch": 1, + "Math.floor": 1, + "case": 2, + "break": 3, + "default": 1 + }, + "Lua": { + "-": 84, + "A": 1, + "simple": 1, + "counting": 1, + "object": 1, + "that": 1, + "increments": 1, + "an": 2, + "internal": 1, + "counter": 1, + "whenever": 1, + "it": 2, + "receives": 2, + "a": 6, + "bang": 3, + "at": 2, + "its": 4, + "first": 1, + "inlet": 2, + "or": 2, + "changes": 1, + "to": 14, + "whatever": 1, + "number": 3, + "second": 1, + "inlet.": 1, + "local": 16, + "HelloCounter": 4, + "pd.Class": 3, + "new": 3, + "(": 59, + ")": 59, "register": 3, "function": 16, "initialize": 3, "sel": 3, "atoms": 3, - "-": 60, + "self.inlets": 3, + "self.outlets": 3, + "self.num": 5, + "return": 3, + "true": 4, + "end": 26, + "in_1_bang": 2, + "self": 10, + "outlet": 10, + "{": 18, + "}": 18, + "+": 3, + "in_2_float": 2, + "f": 12, + "SHEBANG#!lua": 1, + "Generic": 1, + "WSAPI": 1, + "FastCGI": 1, + "launcher": 2, + "extracts": 1, + "application": 4, + "launch": 2, + "from": 4, + "SCRIPT_FILENAME/PATH_TRANSLATED": 1, + "each": 2, + "defined": 1, + "by": 1, + "script": 5, + "entry": 1, + "point": 3, + "gets": 1, + "isolated": 2, + "Lua": 4, + "VM": 2, + ";": 1, + "sequential": 1, + "requests": 1, + "the": 14, + "same": 2, + "go": 1, + "pcall": 1, + "require": 3, + "common": 1, + "fastcgi": 1, + "ONE_HOUR": 3, + "*": 2, + "ONE_DAY": 2, + "wsapi_loader": 2, + "common.make_loader": 1, + "isolate": 1, + "in": 8, + "own": 1, + "state": 2, + "filename": 3, + "nil": 1, + "if": 4, + "you": 2, + "want": 2, + "force": 1, + "of": 14, + "single": 2, + "name": 1, + "this": 1, + "reload": 2, + "false": 1, + "on": 2, + "every": 1, + "request": 1, + "period": 1, + "frequency": 1, + "staleness": 1, + "checks": 1, + "ttl": 1, + "time": 1, + "live": 1, + "for": 11, + "states": 1, + "vars": 1, + "order": 1, + "checking": 1, + "path": 1, + "fastcgi.run": 1, + "FileModder": 10, "Object": 1, "triggering": 1, - "bang": 3, "Incoming": 1, - "single": 1, "data": 2, "bytes": 3, - "from": 3, "[": 17, "binfile": 3, "]": 17, "Total": 1, - "in": 7, "file": 8, "route": 1, "buflength": 1, "Glitch": 3, "type": 2, - "point": 2, "Number": 4, - "of": 9, "times": 2, - "to": 8, "glitch": 2, - "a": 5, "Toggle": 1, - "for": 9, "randomized": 1, - "number": 3, "glitches": 3, "within": 2, - "the": 7, "bounds": 2, "Active": 1, - "filename": 2, - "self.inlets": 3, "To": 3, - "inlet": 2, "get": 1, "next": 1, "byte": 2, @@ -38365,24 +42348,19 @@ "buffer": 2, "FLOAT": 1, "write": 3, - "self.outlets": 3, "Currently": 1, "active": 2, "s": 5, "namedata": 1, "self.filedata": 4, - "{": 16, - "}": 16, "pattern": 1, "random": 3, - "or": 2, "splice": 1, "self.glitchtype": 5, "Minimum": 1, "image": 1, "self.glitchpoint": 6, "repeat": 1, - "on": 1, "given": 1, "self.randrepeat": 5, "Toggles": 1, @@ -38403,15 +42381,8 @@ "length": 1, "currently": 1, "self.buflength": 7, - "return": 3, - "true": 3, - "end": 26, - "in_1_bang": 2, "i": 10, "do": 8, - "self": 10, - "outlet": 10, - "if": 2, "then": 4, "plen": 2, "math.random": 8, @@ -38419,7 +42390,6 @@ "table.insert": 4, "%": 1, "#patbuffer": 1, - "+": 3, "elseif": 2, "randlimit": 4, "else": 1, @@ -38435,8 +42405,6 @@ "outname": 3, "..": 7, "pd.post": 1, - "in_2_float": 2, - "f": 12, "in_3_list": 1, "Shift": 1, "indexed": 2, @@ -38446,27 +42414,6 @@ "in_6_float": 1, "in_7_list": 1, "in_8_list": 1, - "A": 1, - "simple": 1, - "counting": 1, - "object": 1, - "that": 1, - "increments": 1, - "an": 1, - "internal": 1, - "counter": 1, - "whenever": 1, - "it": 2, - "receives": 2, - "at": 2, - "its": 2, - "first": 1, - "changes": 1, - "whatever": 1, - "second": 1, - "inlet.": 1, - "HelloCounter": 4, - "self.num": 5, "FileListParser": 5, "Base": 1, "File": 2, @@ -38486,239 +42433,71 @@ "in_3_float": 1 }, "M": { - ";": 1309, - "This": 26, - "function": 6, - "computes": 1, - "a": 130, - "factorial": 3, - "(": 2144, - "n": 197, - ")": 2152, - "new": 15, - "f": 93, - "set": 98, - "for": 77, - "do": 15, - "quit": 30, - ".": 815, - "-": 1605, - "f*n": 1, - "write": 59, - "main": 1, - "x": 96, - "y": 33, - "Comment": 1, - "this": 39, - "is": 88, - "comment": 4, - "block": 1, - "comments": 5, - "always": 2, "start": 26, - "with": 45, - "semicolon": 1, - "the": 223, - "next": 1, - "line": 14, - "while": 4, - "not": 39, - "legal": 1, - "blank": 1, - "whitespace": 2, - "alone": 1, - "valid": 2, + ";": 1309, + "exercise": 1, + "set": 98, + "car": 14, + "(": 2144, + ")": 2152, + "write": 59, + "@": 8, + "MD5": 6, + "Implementation": 1, "in": 80, - "routine": 6, - "**": 4, - "Comments": 1, - "can": 20, - "have": 21, - "any": 16, - "graphic": 3, - "character": 5, - "but": 19, - "no": 54, - "characters": 8, - "such": 1, - "as": 23, - "@#": 1, - "%": 207, - "&": 28, - "*": 6, - "_": 127, - "+": 189, - "{": 5, - "}": 5, - "[": 54, - "]": 15, - "|": 171, - "/": 3, - "<": 20, - "space": 1, - "considered": 1, - "even": 12, - "though": 1, - "you": 17, - "t": 12, - "see": 26, - "it.": 2, - "ASCII": 2, - "whose": 1, - "numeric": 8, - "code": 29, - "above": 3, - "and": 59, - "below": 1, - "are": 14, - "NOT": 2, - "allowed": 18, - "on": 17, - "routine.": 1, - "multiple": 1, - "semicolons": 1, - "okay": 1, - "that": 19, - "has": 7, - "tag": 2, - "must": 8, - "after": 3, - "bug": 2, - "does": 1, - "to": 74, - "or": 50, - "command": 11, - "it": 45, - "Tag1": 1, - "Tags": 2, - "an": 14, - "uppercase": 2, - "lowercase": 1, - "alphabetic": 2, - "be": 35, - "series": 2, - "of": 84, - "HELO": 1, - "most": 1, - "common": 1, - "label": 5, - "LABEL": 1, - "followed": 1, - "directly": 1, - "by": 35, - "open": 1, - "parenthesis": 2, - "formal": 1, - "list": 1, - "variables": 3, - "close": 1, - "ANOTHER": 1, - "X": 19, - "Normally": 1, - "subroutine": 1, - "would": 2, - "ended": 1, - "QUIT": 251, - "we": 1, - "taking": 1, - "advantage": 1, - "rule": 1, - "END": 1, - "implicit": 1, "M": 24, - "examples": 4, - "contrasting": 1, - "postconditionals": 1, - "IF": 9, - "commands": 1, - "post1": 1, - "postconditional": 3, - "b": 64, - "c": 113, - "I": 43, - "purposely": 4, - "TEST": 16, - "false": 5, - "post2": 1, - "": 3, - "variable": 8, - "a=": 3, - "smaller": 3, - "than": 4, - "b=": 4, - "special": 2, - "post": 1, - "condition": 1, - "if1": 2, - "if": 44, - "if2": 2, - "create": 6, - "student": 14, - "data": 43, - "zwrite": 1, - "order": 11, - "zewdAPI": 52, - "Enterprise": 5, - "Web": 5, - "Developer": 5, - "run": 2, - "time": 9, - "functions": 4, - "user": 27, - "APIs": 1, - "Product": 2, - "Build": 6, - "Date": 2, - "Fri": 1, - "Nov": 1, - "GT.M": 30, - "m_apache": 3, "Copyright": 12, - "M/Gateway": 4, - "Developments": 4, - "Ltd": 4, - "Reigate": 4, - "Surrey": 4, - "UK.": 4, - "All": 4, - "rights": 4, - "reserved.": 4, - "http": 13, - "//www.mgateway.com": 4, - "Email": 4, - "rtweed@mgateway.com": 4, + "C": 9, + "Piotr": 7, + "Koper": 7, + "": 7, + "This": 26, "program": 19, + "is": 88, "free": 15, "software": 12, + "you": 17, + "can": 20, "redistribute": 11, + "it": 45, "and/or": 11, "modify": 11, "under": 14, + "the": 223, "terms": 11, + "of": 84, "GNU": 33, "Affero": 33, "General": 33, "Public": 33, "License": 48, + "as": 23, "published": 11, + "by": 35, "Free": 11, "Software": 11, "Foundation": 11, "either": 13, "version": 16, + "or": 50, "at": 21, "your": 16, "option": 12, + "any": 16, "later": 11, "version.": 11, "distributed": 13, "hope": 11, + "that": 19, "will": 23, + "be": 35, "useful": 11, + "but": 19, "WITHOUT": 12, "ANY": 12, "WARRANTY": 11, "without": 11, + "even": 12, "implied": 11, "warranty": 11, "MERCHANTABILITY": 11, @@ -38728,772 +42507,521 @@ "PARTICULAR": 11, "PURPOSE.": 11, "See": 15, + "for": 77, "more": 13, "details.": 12, "You": 13, "should": 16, + "have": 21, "received": 11, + "a": 130, "copy": 13, "along": 11, + "with": 45, + "this": 39, "program.": 9, "If": 14, + "not": 39, + "see": 26, "": 11, - "getVersion": 1, - "zewdCompiler": 6, - "date": 1, - "getDate": 1, - "compilePage": 2, - "app": 13, - "page": 12, - "mode": 12, - "technology": 9, - "outputPath": 4, - "multilingual": 4, - "maxLines": 4, - "d": 381, - "g": 228, - "compileAll": 2, - "templatePageName": 2, - "autoTranslate": 2, - "language": 6, - "verbose": 2, - "zewdMgr": 1, - "startSession": 2, - "requestArray": 2, - "serverArray": 1, - "sessionArray": 5, - "filesArray": 1, - "zewdPHP": 8, - ".requestArray": 2, - ".serverArray": 1, - ".sessionArray": 3, - ".filesArray": 1, - "closeSession": 2, - "saveSession": 2, - "endOfPage": 2, - "prePageScript": 2, - "sessid": 146, - "releaseLock": 2, - "tokeniseURL": 2, - "url": 2, - "zewdCompiler16": 5, - "getSessid": 1, - "token": 21, - "i": 465, - "isTokenExpired": 2, - "p": 84, - "zewdSession": 39, - "initialiseSession": 1, - "k": 122, - "deleteSession": 2, - "changeApp": 1, - "appName": 4, - "setSessionValue": 6, - "setRedirect": 1, - "toPage": 1, - "e": 210, - "path": 4, + ".": 815, + "It": 2, + "works": 1, + "GT.M": 30, + "ZCHSET": 2, + "please": 1, + "don": 1, "s": 775, - "getRootURL": 1, - "l": 84, - "zewd": 17, - "trace": 24, - "_sessid_": 3, - "_token_": 1, - "_nextPage": 1, - "zcvt": 11, - "nextPage": 1, - "isNextPageTokenValid": 2, - "zewdCompiler13": 10, - "isCSP": 1, - "normaliseTextValue": 1, - "text": 6, - "replaceAll": 11, - "writeLine": 2, - "CacheTempBuffer": 2, - "j": 67, - "increment": 11, - "w": 127, - "displayOptions": 2, - "fieldName": 5, - "listName": 6, - "escape": 7, - "codeValue": 7, - "name": 121, - "nnvp": 1, - "nvp": 1, - "pos": 33, - "textValue": 6, - "value": 72, - "getSessionValue": 3, - "tr": 13, - "o": 51, - "q": 244, - "codeValueEsc": 7, - "textValueEsc": 7, - "htmlOutputEncode": 2, - "zewdAPI2": 5, - "_codeValueEsc_": 1, - "selected": 4, - "translationMode": 1, - "_appName": 1, - "typex": 1, - "type": 2, - "avoid": 1, - "Cache": 3, - "getPhraseIndex": 1, - "zewdCompiler5": 1, - "licensed": 1, - "setWarning": 2, - "isTemp": 11, - "setWLDSymbol": 1, - "Duplicate": 1, - "performance": 1, - "also": 4, - "wldAppName": 1, - "wldName": 1, - "wldSessid": 1, - "zzname": 1, - "zv": 6, - "extcErr": 1, - "mess": 3, - "namespace": 1, - "zt": 20, - "valueErr": 1, - "exportCustomTags": 2, - "tagList": 1, - "filepath": 10, - ".tagList": 1, - "exportAllCustomTags": 2, - "importCustomTags": 2, - "filePath": 2, - "zewdForm": 1, - "stripSpaces": 6, - "np": 17, - "obj": 6, - "prop": 6, - "setSessionObject": 3, - "allowJSONAccess": 1, - "sessionName": 30, - "access": 21, - "disallowJSONAccess": 1, - "JSONAccess": 1, - "existsInSession": 2, - "existsInSessionArray": 2, - "p1": 5, - "p2": 10, - "p3": 3, - "p4": 2, - "p5": 2, - "p6": 2, - "p7": 2, - "p8": 2, - "p9": 2, - "p10": 2, - "p11": 2, - "clearSessionArray": 1, - "arrayName": 35, - "setSessionArray": 1, - "itemName": 16, - "itemValue": 7, - "getSessionArray": 1, - "array": 22, - "clearArray": 2, + "only": 9, + "joke.": 1, + "Serves": 1, + "well": 2, + "reverse": 1, + "engineering": 1, + "example": 5, + "on": 17, + "obtaining": 1, + "boolean": 2, + "functions": 4, + "from": 16, + "integer": 1, + "addition": 1, + "modulo": 1, + "and": 59, + "division.": 1, + "md5": 2, + "msg": 6, + "http": 13, + "//en.wikipedia.org/wiki/MD5": 1, + "n": 197, "m": 37, - "getSessionArrayErr": 1, - "Come": 1, - "here": 4, - "error": 62, - "occurred": 2, - "addToSession": 2, - "@name": 4, - "mergeToSession": 1, - "mergeGlobalToSession": 2, - "globalName": 7, - "mergeGlobalFromSession": 2, - "mergeArrayToSession": 1, - "mergeArrayToSessionObject": 2, - ".array": 1, - "mergeArrayFromSession": 1, - "mergeFromSession": 1, - "deleteFromSession": 1, - "deleteFromSessionObject": 1, - "sessionNameExists": 1, - "getSessionArrayValue": 2, - "subscript": 7, - "exists": 6, - ".exists": 1, - "sessionArrayValueExists": 2, - "deleteSessionArrayValue": 2, - "Objects": 1, - "objectName": 13, - "propertyName": 3, - "propertyValue": 5, - "comma": 3, - "replace": 27, - "objectName_": 2, - "_propertyName": 2, - "_propertyName_": 2, - "_propertyValue_": 1, - "_p": 1, - "quoted": 1, - "string": 50, - "FromStr": 6, + "r": 88, + "k": 122, + "h": 39, + "i": 465, + "j": 67, + "b": 64, + "c": 113, + "d": 381, + "f": 93, + "g": 228, + "w": 127, + "t": 12, + "p": 84, + "q": 244, + "-": 1605, + "l": 84, + "#64": 1, + "+": 189, + "msg_": 1, + "_m_": 1, + "n64": 2, + "*8": 2, + "read": 2, + ".m": 11, + ".p": 1, + "<": 20, + "..": 28, + "...": 6, + "e": 210, + "*i": 3, + "#16": 3, + "xor": 4, + "rotate": 5, + "#4294967296": 6, + "n32h": 5, + "_": 127, + "bit": 5, + "x": 96, + "#2": 1, + "*2147483648": 2, + "a#2": 1, + "b#2": 1, + ".a": 1, + ".b": 1, + "rol": 1, + "a*": 1, + "**n": 1, + "c#4294967296": 1, + "*n": 1, + "n#256": 1, + "n#16": 2, + "ZDIOUT1": 1, + "Experimental": 1, + "FileMan": 1, + "file": 10, + "output": 49, + "to": 74, + "host": 2, + "The": 11, + "Open": 1, + "Source": 1, + "Electronic": 1, + "Health": 1, + "Record": 1, + "Agent": 1, + "Licensed": 1, + "Apache": 1, + "Version": 1, + "may": 3, + "use": 5, + "except": 1, + "compliance": 1, + "License.": 2, + "obtain": 2, + "//www.apache.org/licenses/LICENSE": 1, + "Unless": 1, + "required": 4, + "applicable": 1, + "law": 1, + "agreed": 1, + "writing": 4, + "an": 14, + "BASIS": 1, + "WARRANTIES": 1, + "OR": 2, + "CONDITIONS": 1, + "OF": 2, + "KIND": 1, + "express": 1, + "implied.": 1, + "specific": 3, + "language": 6, + "governing": 1, + "permissions": 2, + "limitations": 1, + "N": 19, + "W": 4, + "D": 64, + "ASKFILE": 1, + "Q": 58, + "FILE": 5, + "[": 54, + "ASKDIR": 1, + "DIR": 3, + "SAVEFILE": 2, + "Save": 1, + "given": 1, + "directory": 1, + "I": 43, + "CHECK": 1, + "FGR": 4, + "_FILE": 1, "S": 99, + "IO": 4, + "DIR_": 1, + "P": 68, + "E": 12, + "L": 1, + "FILENAME": 1, + "O": 24, + "U": 14, + "_IO_": 1, + "_P_": 1, + "NM": 1, + "contains": 2, + "non": 1, + "printing": 1, + "characters": 8, + "then": 2, + "must": 8, + "escaped": 1, + "evaluation": 1, + "RHS": 1, + "SET.": 1, + "TODO": 1, + "Caller": 1, + "define": 2, + "indentation": 1, + "level": 5, + "comment": 4, + "if": 44, + "first": 10, + "character": 5, + "value": 72, + "tab": 1, + "space.": 1, + "V": 2, + "part": 3, + "DataBallet.": 4, + "Laurent": 2, + "Parenteau": 2, + "": 2, + "DataBallet": 4, + "encode": 1, + "message": 8, + "Return": 1, + "base64": 6, + "URL": 2, + "Filename": 1, + "safe": 3, + "alphabet": 2, + "RFC": 1, + "new": 15, + "todrop": 2, + "Populate": 1, + "values": 4, + "only.": 1, + "zextract": 3, + "zlength": 3, + "quit": 30, + "MDB": 60, + "M/DB": 2, + "Mumps": 1, + "Emulation": 1, + "Amazon": 1, + "SimpleDB": 1, + "|": 171, + "M/Gateway": 4, + "Developments": 4, + "Ltd": 4, + "Reigate": 4, + "Surrey": 4, + "UK.": 4, + "All": 4, + "rights": 4, + "reserved.": 4, + "//www.mgateway.com": 4, + "Email": 4, + "rtweed@mgateway.com": 4, + "QUIT": 251, + "buildDate": 1, + "indexLength": 10, + "Note": 2, + "keyId": 108, + "been": 4, + "tested": 1, + "valid": 2, + "time": 9, + "these": 1, + "methods": 2, + "are": 14, + "called": 8, + "To": 2, + "Initialise": 2, + "service": 1, + "//192.168.1.xxx/mdb/test.mgwsi": 1, + "Action": 2, + "addUser": 2, + "userKeyId": 6, + "userSecretKey": 6, + "requestId": 17, + "boxUsage": 11, + "startTime": 21, + "stop": 20, + "init": 6, + ".startTime": 5, + "MDBUAF": 2, + "end": 33, + ".boxUsage": 22, + "createDomain": 1, + "domainName": 38, + "dn": 4, + "dnx": 3, + "id": 33, + "noOfDomains": 12, + "token": 21, + "tr": 13, + "MDBConfig": 1, + "getDomainId": 3, + "name": 121, + "found": 7, + "namex": 8, + "o": 51, + "buildItemNameIndex": 2, + "domainId": 53, + "itemId": 41, + "itemValue": 7, + "itemValuex": 3, + "countDomains": 2, + "key": 22, + "no": 54, + "deleteDomain": 2, + "listDomains": 1, + "maxNoOfDomains": 2, + "nextToken": 7, + "domainList": 3, + "fullName": 3, + "decodeBase64": 1, + "encodeBase64": 1, + "itemExists": 1, + "getItemId": 2, + "getAttributeValueId": 3, + "attribId": 36, + "valuex": 13, + "putAttributes": 2, + "itemName": 16, + "attributes": 32, + "replace": 27, + "valueId": 16, + "xvalue": 4, + "add": 5, + "Item": 1, + "Domain": 1, + "itemNamex": 4, + "increment": 11, + "error": 62, + "parseJSON": 1, + "zmwire": 53, + "attributesJSON": 1, + ".attributes": 5, + "attribute": 14, + "getAttributeId": 2, + "domain": 1, + "Not": 1, + "allowed": 18, + "than": 4, + "one": 5, + "same": 2, + "remove": 6, + "existing": 2, + "now": 1, + "name/value": 2, + "pair": 1, + "getAttributes": 2, + "suppressBoxUsage": 1, + "attrNo": 9, + "valueNo": 6, + "delete": 2, + "all": 8, + "item": 2, + "associated": 1, + "queryIndex": 1, + "records": 2, + "specified": 4, + "pairs": 2, + "vno": 2, + "left": 5, + "completely": 3, + "references": 1, + "pos": 33, + "maxNoOfItems": 3, + "itemList": 12, + "session": 1, + "identifier": 1, + "stored": 1, + "queryExpression": 16, + "%": 207, + "zewd": 17, + "ok": 14, + "relink": 1, + "zewdGTMRuntime": 1, + "CGIEVAR": 1, + "cgi": 1, + "data": 43, + "unescName": 5, + "urlDecode": 2, + "KEY": 36, + "response": 29, + "WebLink": 1, + "access": 21, + "entry": 5, + "point": 2, + "here": 4, + "action": 15, + "AWSAcessKeyId": 1, + "db": 9, + "hash": 1, + "itemsAndAttrs": 2, + "secretKey": 1, + "signatureMethod": 2, + "signatureVersion": 3, + "stringToSign": 2, + "rltKey": 2, + "trace": 24, + "_action_": 2, + "h_": 3, + "mdbKey": 2, + "errorResponse": 9, + "initialise": 3, + ".requestId": 7, + "createResponse": 4, + "installMDBM": 1, + "authenticate": 1, + "MDBSession": 1, + "createResponseStringToSign": 1, + "Security": 1, + "OK": 6, + "_db": 1, + "MDBAPI": 1, + "lineNo": 19, + "CacheTempEWD": 16, + "_db_": 1, + "db_": 1, + "_action": 1, + "resp": 5, + "metaData": 1, + "domainMetadata": 1, + ".metaData": 1, + "paramName": 8, + "paramValue": 5, + "_i_": 5, + "Query": 1, + "DomainName": 2, + "QueryExpression": 2, + "MaxNumberOfItems": 2, + "NextToken": 3, + "QueryWithAttributes": 1, + "AttributeName.": 2, + "Select": 2, + "SelectExpression": 1, + "entering": 1, + "runSelect.": 1, + "selectExpression": 3, + "finished": 1, + "runSelect": 3, + "count": 18, + "select": 3, + "*": 6, + "where": 6, + "order": 11, + "limit": 14, + "asc": 1, + "inValue": 6, + "str": 15, + "expr": 18, + "rel": 2, + "itemStack": 3, + "between": 2, + "<=\">": 1, + "lastWord=": 7, + "inAttr=": 5, + "expr=": 10, + "thisWord=": 7, + "inAttr": 2, + "c=": 28, + "1": 74, + "queryExpression=": 4, + "_queryExpression": 2, + "4": 5, + "null": 6, + "3": 6, + "isNull": 1, + "5": 1, + "8": 1, + "isNotNull": 1, + "9": 1, + "np": 17, + "offset": 6, + "prevName": 1, + "term": 10, + "np=": 1, + "diffNames": 6, + "_term": 3, + "expr_": 1, + "_orderBy": 1, + "runQuery": 2, + ".itemList": 4, + "escVals": 1, + "str_c": 2, + "invalid": 4, + "_x_": 1, + "query": 4, + "orderBy": 1, + "_query": 1, + "parseSelect": 1, + ".domainName": 2, + ".queryExpression": 1, + ".orderBy": 1, + ".limit": 1, + "replaceAll": 11, + "executeSelect": 1, + ".itemStack": 1, + "***": 2, + "listCopy": 3, + "numeric": 8, + "N.N": 12, + "N.N1": 4, + "escape": 7, + "externalSelect": 2, + "json": 9, + "_keyId_": 1, + "_selectExpression": 1, + "FromStr": 6, "ToStr": 4, "InText": 4, "old": 3, - "ok": 14, - "removeDocument": 1, - "zewdDOM": 3, - "instanceName": 2, - "clearXMLIndex": 1, - "zewdSchemaForm": 1, - "closeDOM": 1, - "makeTokenString": 1, - "length": 7, - "token_": 1, - "r": 88, + "string": 50, + "p1": 5, + "p2": 10, + "stripTrailingSpaces": 2, + "spaces": 3, "makeString": 3, + "string_spaces": 1, "char": 9, "len": 8, - "str": 15, - "convertDateToSeconds": 1, - "hdate": 7, - "Q": 58, - "hdate*86400": 1, - "convertSecondsToDate": 1, - "secs": 2, - "secs#86400": 1, - "getTokenExpiry": 2, - "h*86400": 1, - "h": 39, - "randChar": 1, - "R": 2, - "lowerCase": 2, - "stripLeadingSpaces": 2, - "stripTrailingSpaces": 2, - "d1": 7, - "zd": 1, - "yy": 19, - "dd": 4, - "<10>": 1, - "dd=": 2, - "mm=": 3, - "1": 74, - "d1=": 1, - "2": 14, - "p1=": 1, - "mm": 7, - "p2=": 1, - "yy=": 1, - "3": 6, - "dd_": 1, - "mm_": 1, - "inetTime": 1, - "Decode": 1, - "Internet": 1, - "Format": 1, - "Time": 1, - "from": 16, - "H": 1, - "format": 2, - "Offset": 1, - "relative": 1, - "GMT": 1, - "eg": 3, - "hh": 4, - "ss": 4, - "_hh": 1, - "time#3600": 1, - "_mm": 1, - "time#60": 1, - "_ss": 2, - "hh_": 1, - "_mm_": 1, - "openNewFile": 2, - "openFile": 2, - "openDOM": 2, - "#39": 1, - "<\",\"<\")>": 1, - "string=": 1, - "gt": 1, - "amp": 1, - "HTML": 1, - "quot": 2, - "stop": 20, - "no2": 1, - "p1_c_p2": 1, - "getIP": 2, - "Get": 2, - "own": 2, - "IP": 1, - "address": 1, - "ajaxErrorRedirect": 2, - "classExport": 2, - "className": 2, - "methods": 2, - ".methods": 1, - "strx": 2, - "disableEwdMgr": 1, - "enableEwdMgr": 1, - "enableWLDAccess": 1, - "disableWLDAccess": 1, - "isSSOValid": 2, - "sso": 2, - "username": 8, - "password": 8, - "zewdMgrAjax2": 1, - "uniqueId": 1, - "nodeOID": 2, - "filename": 2, - "linkToParentSession": 2, - "zewdCompiler20": 1, - "exportToGTM": 1, - "GMRGPNB0": 1, - "CISC/JH/RM": 1, - "NARRATIVE": 1, - "BUILDER": 1, - "TEXT": 5, - "GENERATOR": 1, - "cont.": 1, - "/20/91": 1, - "Text": 1, - "Generator": 1, - "Jan": 1, - "ENTRY": 2, - "WITH": 1, - "GMRGA": 1, - "SET": 3, - "TO": 6, - "POINT": 1, - "AT": 1, - "WHICH": 1, - "WANT": 1, - "START": 1, - "BUILDING": 1, - "GMRGE0": 11, - "GMRGADD": 4, - "D": 64, - "GMR": 6, - "GMRGA0": 11, - "GMRGPDA": 9, - "GMRGCSW": 2, - "NOW": 1, - "DTC": 1, - "GMRGB0": 9, - "O": 24, - "GMRGST": 6, - "GMRGPDT": 2, - "STAT": 8, - "GMRGRUT0": 3, - "GMRGF0": 3, - "GMRGSTAT": 8, - "P": 68, - "_GMRGB0_": 2, - "GMRD": 6, - "GMRGSSW": 3, - "SNT": 1, - "GMRGPNB1": 1, - "GMRGNAR": 8, - "GMRGPAR_": 2, - "_GMRGSPC_": 3, - "_GMRGRM": 2, - "_GMRGE0": 1, - "STORETXT": 1, - "GMRGRUT1": 1, - "GMRGSPC": 3, - "F": 10, - "GMRGD0": 7, - "ALIST": 1, - "G": 40, - "TMP": 26, - "J": 38, - "GMRGPLVL": 6, - "GMRGA0_": 1, - "_GMRGD0_": 1, - "_GMRGSSW_": 1, - "_GMRGADD": 1, - "GMRGI0": 6, - "start1": 2, - "entry": 5, - "sum": 15, - "start2": 1, - "PCRE": 23, - "Extension": 9, - "C": 9, - "Piotr": 7, - "Koper": 7, - "": 7, - "Examples": 4, - "pcre.m": 1, - "routines": 6, - "parameters": 1, - "all": 8, - "possible": 5, - "values": 4, - "options": 45, - "pcreexamples": 32, - "Initial": 2, - "release": 2, - "pkoper": 2, - "API": 7, - "The": 11, - "shining": 1, + "create": 6, "test": 6, - "Test": 1, - "subject": 24, - "match": 41, - "pcre": 59, - "Simple": 2, - ".n": 20, - "zwr": 17, - "Match": 4, - "named": 12, - "groups": 5, - "group": 4, - "limit": 14, - "output": 49, - "only": 9, - "patterns": 3, - "global": 26, - "Global": 8, - "grouped": 2, - "captured": 6, - "Just": 1, - "Change": 2, - "word": 3, - "Escape": 1, - "sequence": 1, - "More": 1, - "chars": 3, - "Low": 1, - "level": 5, - "api": 1, - "pattern": 21, - "offset": 6, - "ref": 41, - "count": 18, - "begin": 18, - "end": 33, - "Setup": 1, - "exception": 12, - "trap": 10, - "myexception2": 2, - "st_": 1, - "zl_": 2, - "case": 7, - "insensitive": 7, - "well": 2, - "stringified": 2, - "names": 3, - "extension": 3, - "Compile": 2, - "compile": 14, - ".pattern": 3, - ".options": 1, - "pass": 24, - "reference": 2, - "Run": 1, - "exec": 4, - ".ref": 13, - ".subject": 3, - ".offset": 1, - "To": 2, - "ovector": 25, - "ovecsize": 5, - "used.": 2, - "size": 3, - "where": 6, - "number": 5, - "capture": 10, - "strings": 1, - "submitted": 1, - "exact": 1, - "usable": 1, - "pairs": 2, - "integers": 1, - "way": 1, - "i*2": 3, - "ze": 8, - "what": 2, - "aa": 9, - "print": 8, - "b*": 7, - "/mg": 2, - "s/": 6, - "/Xy/g": 6, - "aaa": 1, - "nbb": 1, - ".*": 1, - "stack": 8, - "usage": 3, - "discover": 1, - "procedure": 2, - "stackusage": 3, - "Locale": 5, - "Support": 1, - "Polish": 1, - "been": 4, - "used": 6, - "example": 5, - "I18N": 2, - "support": 3, - "PCRE.": 1, - "encoded": 8, - "UTF": 17, - "Polish.": 1, - "second": 1, - "letter": 1, - "": 1, - "which": 4, - "ISO8859": 1, - "//en.wikipedia.org/wiki/Polish_code_pages": 1, - "complete": 1, - "listing": 1, - "Note": 2, - "CHAR": 1, - "different": 3, - "modes": 1, - "In": 1, - "return": 7, - "two": 2, - "octet": 4, - "probably": 1, - "expected": 1, - "result": 3, - "when": 11, - "working": 1, - "single": 2, - "ISO": 3, - "chars.": 1, - "Use": 1, - "zch": 7, - "prepared": 1, - "GTM": 8, - "E": 12, - "BADCHAR": 1, - "errors.": 1, - "Also": 1, - "others": 1, - "might": 1, - "expected.": 1, - "POSIX": 1, - "i.e.": 3, - "localization": 1, - "nolocale": 2, - "zchset": 2, - "isolocale": 2, - "utflocale": 2, - "environment": 7, - "LANG": 4, - "LC_CTYPE": 1, - "Set": 2, - "obtain": 2, - "results.": 1, - "envlocale": 2, - "ztrnlnm": 2, - "Notes": 1, - "Enabling": 1, - "native": 1, - "requires": 1, - "libicu": 2, - "gtm_chset": 1, - "gtm_icu_version": 1, - "recompiled": 1, - "object": 4, - "files": 4, - "Instructions": 1, - "Debian": 2, - "Install": 1, - "libicu48": 2, - "apt": 1, - "get": 2, - "install": 1, - "append": 1, - "setup": 3, - "chown": 1, - "gtm": 1, - "/opt/gtm": 1, - "Startup": 1, - "errors": 6, - "INVOBJ": 1, - "Cannot": 1, - "ZLINK": 1, - "file": 10, - "due": 1, - "unexpected": 1, - "Object": 1, - "compiled": 1, - "CHSET": 1, - "ZCHSET": 2, - "written": 3, - "startup": 1, - "correct": 1, - "like": 4, - "step": 8, - "above.": 1, - "Limits": 1, - "built": 1, - "limits": 6, - "internal": 3, - "matching": 4, - "recursion.": 1, - "Those": 1, - "prevent": 1, - "engine": 1, - "very": 2, - "long": 2, - "runs": 2, - "especially": 1, - "there": 2, - "matches": 10, - "paths": 2, - "tree": 1, - "checked.": 1, - "Functions": 1, - "using": 4, - "itself": 1, - "allows": 1, - "setting": 3, - "MATCH_LIMIT": 1, - "MATCH_LIMIT_RECURSION": 1, - "optional": 16, - "arguments": 1, - "mlimit": 20, - "reclimit": 19, - "locale": 24, - "subst": 3, - "first": 10, - "last": 4, - "specified": 4, - "library": 1, - "compilation": 2, - "defaults": 3, - "config": 3, - "Example": 1, - "longrun": 3, - "Equal": 1, - "corrected": 1, - "shortrun": 2, - "Enforced": 1, - "enforcedlimit": 2, - "Exception": 2, - "Handling": 1, - "Error": 1, - "conditions": 1, - "handled": 1, - "zc": 1, - "codes": 1, - "labels": 1, - "file.": 1, - "When": 2, - "neither": 1, - "nor": 1, - "et": 4, - "default": 6, - "handler": 9, - "within": 1, - "mechanism.": 1, - "out": 2, - "details": 5, - "depending": 1, - "caller": 1, - "re": 2, - "raise": 3, - "exception.": 1, - "lead": 1, - "writing": 4, - "called": 8, - "prompt": 1, - "place": 9, - "was": 5, - "terminating": 1, - "image.": 1, - "define": 2, - "pcreexamples.m": 2, - "handlers.": 1, - "Handler": 1, - "No": 17, - "nohandler": 4, - "ec": 10, - "COMPILE": 2, - "Pattern": 1, - "failed": 1, - "unmatched": 1, - "parentheses": 1, - "<-->": 1, - "HERE": 1, - "RTSLOC": 2, - "At": 2, - "source": 3, - "location": 5, - "SETECODE": 1, - "Non": 1, - "empty": 7, - "assigned": 1, - "ECODE": 1, - "defined": 2, - "32": 1, - "GT": 1, - "image": 1, - "terminated": 1, - "myexception1": 3, - "zt=": 1, - "mytrap1": 2, - "x=": 5, - "never": 4, - "ec=": 7, - "zg": 2, - "mytrap3": 1, - "U16392": 2, - "DETAILS": 1, - "executed": 1, - "frame": 1, - "called.": 1, - "deeper": 1, - "frames": 1, - "already": 1, - "dropped": 1, - "so": 4, - "err": 4, - "local": 1, - "available": 1, - "context.": 1, - "Thats": 1, - "why": 1, - "doesn": 1, - "change": 6, - "st": 6, - "unless": 1, - "cleared.": 1, - "Always": 1, - "clear": 6, - "handling": 2, - "done.": 2, - "Execute": 1, - "p5global": 1, - "p5replace": 1, - "p5lf": 1, - "p5nl": 1, - "newline": 1, - "utf8support": 1, - "myexception3": 1, - "simple": 2, - "statement": 3, - "statements": 1, - "contrasted": 1, - "if3": 1, - "else": 7, - "clause": 2, - "if4": 1, - "bodies": 1, - "zmwire": 53, "M/Wire": 4, "Protocol": 2, "Systems": 1, + "eg": 3, + "Cache": 3, "By": 1, + "default": 6, "server": 1, + "code": 29, + "runs": 2, "port": 4, "For": 3, "systems": 3, @@ -39502,7 +43030,7 @@ "xinetd": 2, "Edit": 1, "/etc/services": 1, - "add": 5, + "line": 14, "mwire": 2, "/tcp": 1, "#": 1, @@ -39510,28 +43038,35 @@ "Copy": 2, "/etc/xinetd.d/mwire": 1, "/usr/local/gtm/zmwire": 1, + "change": 6, "its": 1, - "permissions": 2, "executable": 1, "These": 2, - "may": 3, + "files": 4, "edited": 1, + "paths": 2, + "number": 5, "Restart": 1, + "using": 4, "sudo": 1, "/etc/init.d/xinetd": 1, "restart": 3, "On": 1, + "also": 4, "installed": 1, "MGWSI": 1, + "m_apache": 3, "provide": 1, - "MD5": 6, "hashing": 1, + "function": 6, "passwords": 1, "Alternatively": 1, "substitute": 1, "callout": 1, "choice": 1, "Daemon": 2, + "routine": 6, + "which": 4, "running": 1, "jobbed": 1, "process": 3, @@ -39541,15 +43076,18 @@ "editing": 2, "Stop": 1, "RESJOB": 1, + "it.": 2, "mwireVersion": 4, + "Build": 6, "mwireDate": 2, "July": 1, "_crlf": 22, "build": 2, "crlf": 6, - "response": 29, "_response_": 4, "_crlf_response_crlf": 4, + "zv": 6, + "command": 11, "authNeeded": 6, "input": 41, "cleardown": 2, @@ -39563,22 +43101,20 @@ "pid": 36, "monitor": 1, "input_crlf": 1, - "lineNo": 19, "zsy": 2, "_pid_": 1, "_pid": 1, "monitoroutput": 1, "logger": 17, - "initialise": 3, "tot": 2, "mwireLogger": 3, "info": 1, "response_": 1, "_count": 1, + "pass": 24, "setpassword": 1, "SETPASSWORD": 2, "secret": 2, - "OK": 6, "": 1, "role=": 1, "admin": 1, @@ -39590,22 +43126,29 @@ "subs": 8, "nsp": 1, "subs_": 2, + "quot": 2, "_data_": 3, "subscripts": 8, "_value_": 1, "_error_": 1, "kill": 3, "xx": 16, + "yy": 19, + "No": 17, + "global": 26, "method": 2, "Missing": 5, "JSON": 7, "transaction": 6, "document": 6, + "step": 8, "setJSON": 4, - "json": 9, + "globalName": 7, "GlobalName": 3, + "Global": 8, "setGlobal": 1, "zmwire_null_value": 1, + "]": 15, "Invalid": 1, "props": 1, "arr": 2, @@ -39616,18 +43159,20 @@ "##": 2, "decr": 1, "decrby": 1, + "subscript": 7, "direction": 1, + "{": 5, "subscriptValue": 1, "dataStatus": 1, "dataValue": 1, + "}": 5, "nextsubscript": 2, "reverseorder": 1, - "query": 4, "*2": 1, "queryget": 1, "xxyy": 2, "zz": 2, - "null": 6, + "exists": 6, "getallsubscripts": 1, "orderall": 1, "": 3, @@ -39635,18 +43180,17 @@ "escaping": 1, "world": 4, "foo": 2, - "CacheTempEWD": 16, "_gloRef": 1, + "zt": 20, "@x": 4, + "i*2": 3, "_crlf_": 1, "j_": 1, "params": 10, - "resp": 5, "_crlf_resp_crlf": 2, "_crlf_data_crlf": 2, "mergeto": 1, "dataLength": 4, - "key": 22, "keyLength": 6, "noOfRecs": 6, "MERGETO": 1, @@ -39654,23 +43198,24 @@ "*6": 1, "hello": 1, "": 2, + "length": 7, "means": 2, "put": 1, "top": 1, - "N.N": 12, "noOfRecs#2": 1, "noOfRecs/2": 1, - "_i_": 5, "gloRef1": 2, "gloRef1_": 2, "_gloRef1_key_": 1, "sub": 2, "literal": 2, "true": 2, - "boolean": 2, + "false": 5, + "variable": 8, "valquot_value_valquot": 1, "json_value_": 1, "subscripts1": 2, + "dd": 4, "subx": 3, "subNo": 1, "numsub": 1, @@ -39685,170 +43230,18 @@ "subs2_": 2, "value_c": 1, "lc": 3, - "N.N1": 4, "newString": 4, "newString_c": 1, "utfConvert": 1, "Unescape": 1, + "UTF": 17, "buf": 4, "c1": 4, "buf_c1_": 1, - "illustrate": 1, - "dynamic": 1, - "scope": 1, - "triangle1": 1, - "main2": 1, - "triangle2": 1, - "ZDIOUT1": 1, - "Experimental": 1, - "FileMan": 1, - "host": 2, - "Open": 1, - "Source": 1, - "Electronic": 1, - "Health": 1, - "Record": 1, - "Agent": 1, - "Licensed": 1, - "Apache": 1, - "Version": 1, - "use": 5, - "except": 1, - "compliance": 1, - "License.": 2, - "//www.apache.org/licenses/LICENSE": 1, - "Unless": 1, - "required": 4, - "applicable": 1, - "law": 1, - "agreed": 1, - "BASIS": 1, - "WARRANTIES": 1, - "OR": 2, - "CONDITIONS": 1, - "OF": 2, - "KIND": 1, - "express": 1, - "implied.": 1, - "specific": 3, - "governing": 1, - "limitations": 1, - "N": 19, - "W": 4, - "ASKFILE": 1, - "FILE": 5, - "ASKDIR": 1, - "DIR": 3, - "SAVEFILE": 2, - "Save": 1, - "given": 1, - "directory": 1, - "CHECK": 1, - "FGR": 4, - "_FILE": 1, - "IO": 4, - "DIR_": 1, - "L": 1, - "FILENAME": 1, - "U": 14, - "_IO_": 1, - "_P_": 1, - "NM": 1, - "contains": 2, - "non": 1, - "printing": 1, - "then": 2, - "escaped": 1, - "evaluation": 1, - "RHS": 1, - "SET.": 1, - "TODO": 1, - "Caller": 1, - "indentation": 1, - "tab": 1, - "space.": 1, - "V": 2, - "part": 3, - "DataBallet.": 4, - "Laurent": 2, - "Parenteau": 2, - "": 2, - "DataBallet": 4, - "decode": 1, - "val": 5, - "Decoded": 1, - "URL": 2, - "Encoded": 1, - "decoded": 3, - "zlength": 3, - "zextract": 3, - "decoded_": 1, - "safechar": 3, - "zchar": 1, - "encoded_c": 1, - "encoded_": 2, - "FUNC": 1, - "DH": 1, - "zascii": 1, - "zewdDemo": 1, - "Tutorial": 1, - "Wed": 1, - "Apr": 1, - "getLanguage": 1, - "getRequestValue": 1, - "login": 1, - "getTextValue": 4, - "getPasswordValue": 2, - "_username_": 1, - "_password": 1, - "logine": 1, - "message": 8, - "textid": 1, - "errorMessage": 1, - "ewdDemo": 8, - "clearList": 2, - "appendToList": 4, - "addUsername": 1, - "newUsername": 5, - "newUsername_": 1, - "setTextValue": 4, - "testValue": 1, - "getSelectValue": 3, - "_user": 1, - "getPassword": 1, - "setPassword": 1, - "getObjDetails": 1, - "_user_": 1, - "_data": 2, - "setRadioOn": 2, - "initialiseCheckbox": 2, - "setCheckboxOn": 3, - "createLanguageList": 1, - "setMultipleSelectOn": 2, - "clearTextArea": 2, - "textarea": 2, - "createTextArea": 1, - ".textarea": 1, - "userType": 4, - "setMultipleSelectValues": 1, - ".selected": 1, - "testField3": 3, - ".value": 1, - "testField2": 1, - "field3": 1, - "dateTime": 1, - "ax": 2, - "bx": 2, - "cx": 2, - "ay": 2, - "cy": 2, - "sumx": 3, - "sqrx": 3, - "sumxy": 5, - "x*x": 1, - "..": 28, - "x*y": 1, - "...": 6, + "compute": 2, + "Fibonacci": 1, + "series": 2, + "do": 15, "Mumtris": 3, "tetris": 1, "game": 1, @@ -39860,9 +43253,12 @@ "maximize": 1, "PuTTY": 1, "window": 1, + "so": 4, "report": 1, + "size": 3, "mumtris.": 1, "Try": 2, + "setting": 3, "ansi": 2, "compatible": 1, "cursor": 1, @@ -39874,11 +43270,11 @@ "lower": 1, "s.": 1, "That": 1, - "one": 5, "CPU": 1, - "It": 2, + "used": 6, "fall": 5, "lock": 2, + "clear": 6, "preview": 3, "over": 2, "exit": 3, @@ -39893,38 +43289,40 @@ "*c": 1, "<0&'d>": 1, "i=": 14, + "st": 6, "t10m": 1, "0": 23, "<0>": 2, "q=": 6, "d=": 1, - "c=": 28, "zb": 2, - "rotate": 5, "right": 3, - "left": 5, "fl=": 1, "gr=": 1, "hl": 2, "help": 2, "drop": 2, "hd=": 1, + "2": 14, "matrix": 2, + "stack": 8, "draw": 3, + "y": 33, "ticks": 2, "h=": 2, "1000000000": 1, + "b=": 4, "e=": 1, "t10m=": 1, "100": 2, "n=": 1, "ne=": 1, + "x=": 5, "y=": 3, "r=": 3, "collision": 6, "score": 5, "k=": 1, - "4": 5, "j=": 4, "<1))))>": 1, "800": 1, @@ -39946,7 +43344,7 @@ "driver": 1, "NL": 1, "some": 1, - "safe": 3, + "place": 9, "clearscreen": 1, "h/2": 3, "*w/2": 3, @@ -39971,207 +43369,462 @@ "rotateVersion": 2, "bottom": 1, "coordinate": 1, - "point": 2, "____": 1, "__": 2, "||": 1, - "Keith": 1, - "Lynch": 1, - "p#f": 1, - "*8": 2, - "MDB": 60, - "M/DB": 2, - "Mumps": 1, - "Emulation": 1, - "Amazon": 1, - "SimpleDB": 1, - "buildDate": 1, - "indexLength": 10, - "keyId": 108, - "tested": 1, - "these": 1, - "Initialise": 2, - "service": 1, - "//192.168.1.xxx/mdb/test.mgwsi": 1, - "Action": 2, - "addUser": 2, - "userKeyId": 6, - "userSecretKey": 6, - "requestId": 17, - "boxUsage": 11, - "startTime": 21, - "init": 6, - ".startTime": 5, - "MDBUAF": 2, - ".boxUsage": 22, - "createDomain": 1, - "domainName": 38, - "dn": 4, - "dnx": 3, - "id": 33, - "noOfDomains": 12, - "MDBConfig": 1, - "getDomainId": 3, - "found": 7, - "namex": 8, - "buildItemNameIndex": 2, - "domainId": 53, - "itemId": 41, - "itemValuex": 3, - "countDomains": 2, - "deleteDomain": 2, - "listDomains": 1, - "maxNoOfDomains": 2, - "nextToken": 7, - "domainList": 3, - "fullName": 3, - "decodeBase64": 1, - "encodeBase64": 1, - "itemExists": 1, - "getItemId": 2, - "getAttributeValueId": 3, - "attribId": 36, - "valuex": 13, - "putAttributes": 2, - "attributes": 32, - "valueId": 16, - "xvalue": 4, - "Item": 1, - "Domain": 1, - "itemNamex": 4, - "parseJSON": 1, - "attributesJSON": 1, - ".attributes": 5, - "attribute": 14, - "getAttributeId": 2, - "domain": 1, - "Not": 1, - "same": 2, - "remove": 6, - "existing": 2, - "now": 1, - "name/value": 2, - "pair": 1, - "getAttributes": 2, - "suppressBoxUsage": 1, - "attrNo": 9, - "valueNo": 6, - "delete": 2, - "item": 2, - "associated": 1, - "queryIndex": 1, - "records": 2, - "vno": 2, - "completely": 3, - "references": 1, - "maxNoOfItems": 3, - "itemList": 12, - "session": 1, - "identifier": 1, - "stored": 1, - "queryExpression": 16, - "relink": 1, - "zewdGTMRuntime": 1, - "CGIEVAR": 1, - "cgi": 1, - "unescName": 5, - "urlDecode": 2, - "KEY": 36, - "WebLink": 1, - "action": 15, - "AWSAcessKeyId": 1, - "db": 9, - "hash": 1, - "itemsAndAttrs": 2, - "secretKey": 1, - "signatureMethod": 2, - "signatureVersion": 3, - "stringToSign": 2, - "rltKey": 2, - "_action_": 2, - "h_": 3, - "mdbKey": 2, - "errorResponse": 9, - ".requestId": 7, - "createResponse": 4, - "installMDBM": 1, - "authenticate": 1, - "MDBSession": 1, - "createResponseStringToSign": 1, - "Security": 1, - "_db": 1, - "MDBAPI": 1, - "_db_": 1, - "db_": 1, - "_action": 1, - "metaData": 1, - "domainMetadata": 1, - ".metaData": 1, - "paramName": 8, - "paramValue": 5, - "Query": 1, - "DomainName": 2, - "QueryExpression": 2, - "MaxNumberOfItems": 2, - "NextToken": 3, - "QueryWithAttributes": 1, - "AttributeName.": 2, - "Select": 2, - "SelectExpression": 1, - "entering": 1, - "runSelect.": 1, - "selectExpression": 3, - "finished": 1, - "runSelect": 3, - "select": 3, - "asc": 1, - "inValue": 6, - "expr": 18, - "rel": 2, - "itemStack": 3, - "between": 2, - "<=\">": 1, - "lastWord=": 7, - "inAttr=": 5, - "expr=": 10, - "thisWord=": 7, - "inAttr": 2, - "queryExpression=": 4, - "_queryExpression": 2, - "isNull": 1, - "5": 1, - "8": 1, - "isNotNull": 1, - "9": 1, - "prevName": 1, - "term": 10, - "np=": 1, - "diffNames": 6, - "_term": 3, - "expr_": 1, - "_orderBy": 1, - "runQuery": 2, - ".itemList": 4, - "escVals": 1, - "str_c": 2, - "invalid": 4, - "_x_": 1, - "orderBy": 1, - "_query": 1, - "parseSelect": 1, - ".domainName": 2, - ".queryExpression": 1, - ".orderBy": 1, - ".limit": 1, - "executeSelect": 1, - ".itemStack": 1, - "***": 2, - "listCopy": 3, - "externalSelect": 2, - "_keyId_": 1, - "_selectExpression": 1, - "spaces": 3, - "string_spaces": 1, + "WVBRNOT": 1, + "HCIOFO/FT": 1, + "JR": 1, + "IHS/ANMC/MWR": 1, + "BROWSE": 1, + "NOTIFICATIONS": 1, + "/30/98": 1, + "WOMEN": 1, + "WVDATE": 8, + "WVENDDT1": 2, + "..S": 7, + "WVIEN": 13, + "..F": 2, + "WV": 8, + "WVXREF": 1, + "...S": 5, + "Y": 26, + "WVDFN": 6, + "IF": 9, + "SELECTING": 1, + "ONE": 2, + "CASE": 1, + "MANAGER": 1, + "AND": 3, + "THIS": 3, + "DOESN": 1, + "WVE": 2, + "": 2, + "STORE": 3, + "WVA": 2, + "PATIENT": 5, + "F": 10, + "WVBEGDT1": 1, + "NOTIFICATION": 1, + "IS": 3, + "NOT": 2, + "QUEUED.": 1, + ".I": 4, + "WVB": 4, + "OPEN": 1, + "ONLY": 1, + "ENTRY": 2, + "CLOSED.": 1, + ".Q": 1, + "&": 28, + "EP": 4, + "ALREADY": 1, + "SET": 3, + "FROM": 5, + "LL": 1, + "SORT": 3, + "ABOVE.": 1, + "DATE": 1, + "WVCHRT": 1, + "SSN": 1, + "WVUTL1": 2, + "SSN#": 1, + "WVNAME": 4, + "NAME": 3, + "WVACC": 4, + "ACCESSION#": 1, + "WVSTAT": 1, + "STATUS": 2, + "WVUTL4": 1, + "WVPRIO": 5, + "PRIORITY": 1, + "X": 19, + "WVCHRT_U_WVNAME_U_WVDATE_U_WVACC_U_WVSTAT_U_WVPRIO_U_WVIEN": 1, + "WVC": 4, + "TMP": 26, + "J": 38, + "COPYGBL": 3, + "COPY": 1, + "TO": 6, + "MAKE": 1, + "IT": 1, + "FLAT.": 1, + ".S": 6, + ".F": 2, + "...F": 1, + "....S": 1, + "DEQUEUE": 1, + "TASKMAN": 1, + "QUEUE": 1, + "PRINTOUT.": 1, + "SETVARS": 2, + "WVUTL5": 2, + "WVBRNOT1": 2, + "EXIT": 1, + "FOLLOW": 1, + "CALLED": 1, + "PROCEDURE": 1, + "FOLLOWUP": 1, + "MENU.": 1, + "WVBEGDT": 1, + "DT": 2, + "WVENDDT": 1, + "DEVICE": 1, + "WVBRNOT2": 1, + "WVPOP": 1, + "WVLOOP": 1, + "label1": 1, + "label": 5, + "start1": 2, + "sum": 15, + "start2": 1, + "student": 14, + "zwrite": 1, + "zewdDemo": 1, + "Tutorial": 1, + "page": 12, + "Product": 2, + "Enterprise": 5, + "Web": 5, + "Developer": 5, + "Date": 2, + "Wed": 1, + "Apr": 1, + "getLanguage": 1, + "sessid": 146, + "getRequestValue": 1, + "zewdAPI": 52, + "setSessionValue": 6, + "login": 1, + "username": 8, + "password": 8, + "getTextValue": 4, + "getPasswordValue": 2, + "_username_": 1, + "_password": 1, + "logine": 1, + "textid": 1, + "errorMessage": 1, + "ewdDemo": 8, + "clearList": 2, + "appendToList": 4, + "user": 27, + "addUsername": 1, + "newUsername": 5, + "newUsername_": 1, + "setTextValue": 4, + "testValue": 1, + "getSelectValue": 3, + "_user": 1, + "getPassword": 1, + "setPassword": 1, + "getObjDetails": 1, + "_user_": 1, + "_data": 2, + "setRadioOn": 2, + "initialiseCheckbox": 2, + "setCheckboxOn": 3, + "createLanguageList": 1, + "setMultipleSelectOn": 2, + "clearTextArea": 2, + "textarea": 2, + "createTextArea": 1, + ".textarea": 1, + "userType": 4, + "selected": 4, + "setMultipleSelectValues": 1, + ".selected": 1, + "testField3": 3, + ".value": 1, + "testField2": 1, + "field3": 1, + "dateTime": 1, + "if1": 2, + "simple": 2, + "statement": 3, + "if2": 2, + "statements": 1, + "contrasted": 1, + "": 3, + "a=": 3, + "smaller": 3, + "if3": 1, + "else": 7, + "clause": 2, + "if4": 1, + "bodies": 1, + "computes": 1, + "factorial": 3, + "f*n": 1, + "main": 1, + "run": 2, + "APIs": 1, + "Fri": 1, + "Nov": 1, + "getVersion": 1, + "zewdCompiler": 6, + "date": 1, + "getDate": 1, + "compilePage": 2, + "app": 13, + "mode": 12, + "technology": 9, + "outputPath": 4, + "multilingual": 4, + "maxLines": 4, + "compileAll": 2, + "templatePageName": 2, + "autoTranslate": 2, + "verbose": 2, + "zewdMgr": 1, + "startSession": 2, + "requestArray": 2, + "serverArray": 1, + "sessionArray": 5, + "filesArray": 1, + "zewdPHP": 8, + ".requestArray": 2, + ".serverArray": 1, + ".sessionArray": 3, + ".filesArray": 1, + "closeSession": 2, + "saveSession": 2, + "endOfPage": 2, + "prePageScript": 2, + "releaseLock": 2, + "tokeniseURL": 2, + "url": 2, + "zewdCompiler16": 5, + "getSessid": 1, + "isTokenExpired": 2, + "zewdSession": 39, + "initialiseSession": 1, + "deleteSession": 2, + "changeApp": 1, + "appName": 4, + "setRedirect": 1, + "toPage": 1, + "path": 4, + "getRootURL": 1, + "_sessid_": 3, + "_token_": 1, + "_nextPage": 1, + "zcvt": 11, + "nextPage": 1, + "isNextPageTokenValid": 2, + "zewdCompiler13": 10, + "isCSP": 1, + "normaliseTextValue": 1, + "text": 6, + "writeLine": 2, + "CacheTempBuffer": 2, + "displayOptions": 2, + "fieldName": 5, + "listName": 6, + "codeValue": 7, + "nnvp": 1, + "nvp": 1, + "textValue": 6, + "getSessionValue": 3, + "codeValueEsc": 7, + "textValueEsc": 7, + "htmlOutputEncode": 2, + "zewdAPI2": 5, + "_codeValueEsc_": 1, + "translationMode": 1, + "_appName": 1, + "typex": 1, + "type": 2, + "avoid": 1, + "bug": 2, + "getPhraseIndex": 1, + "zewdCompiler5": 1, + "licensed": 1, + "setWarning": 2, + "isTemp": 11, + "setWLDSymbol": 1, + "Duplicate": 1, + "performance": 1, + "wldAppName": 1, + "wldName": 1, + "wldSessid": 1, + "zzname": 1, + "extcErr": 1, + "mess": 3, + "namespace": 1, + "valueErr": 1, + "exportCustomTags": 2, + "tagList": 1, + "filepath": 10, + ".tagList": 1, + "exportAllCustomTags": 2, + "importCustomTags": 2, + "filePath": 2, + "zewdForm": 1, + "stripSpaces": 6, + "obj": 6, + "prop": 6, + "setSessionObject": 3, + "allowJSONAccess": 1, + "sessionName": 30, + "disallowJSONAccess": 1, + "JSONAccess": 1, + "existsInSession": 2, + "existsInSessionArray": 2, + "p3": 3, + "p4": 2, + "p5": 2, + "p6": 2, + "p7": 2, + "p8": 2, + "p9": 2, + "p10": 2, + "p11": 2, + "clearSessionArray": 1, + "arrayName": 35, + "setSessionArray": 1, + "getSessionArray": 1, + "array": 22, + "clearArray": 2, + "getSessionArrayErr": 1, + "Come": 1, + "occurred": 2, + "addToSession": 2, + "@name": 4, + "mergeToSession": 1, + "mergeGlobalToSession": 2, + "mergeGlobalFromSession": 2, + "mergeArrayToSession": 1, + "mergeArrayToSessionObject": 2, + ".array": 1, + "mergeArrayFromSession": 1, + "mergeFromSession": 1, + "deleteFromSession": 1, + "deleteFromSessionObject": 1, + "sessionNameExists": 1, + "getSessionArrayValue": 2, + ".exists": 1, + "sessionArrayValueExists": 2, + "deleteSessionArrayValue": 2, + "Objects": 1, + "objectName": 13, + "propertyName": 3, + "propertyValue": 5, + "comma": 3, + "objectName_": 2, + "_propertyName": 2, + "_propertyName_": 2, + "_propertyValue_": 1, + "_p": 1, + "quoted": 1, + "removeDocument": 1, + "zewdDOM": 3, + "instanceName": 2, + "clearXMLIndex": 1, + "zewdSchemaForm": 1, + "closeDOM": 1, + "makeTokenString": 1, + "token_": 1, + "convertDateToSeconds": 1, + "hdate": 7, + "hdate*86400": 1, + "convertSecondsToDate": 1, + "secs": 2, + "secs#86400": 1, + "getTokenExpiry": 2, + "h*86400": 1, + "randChar": 1, + "R": 2, + "lowerCase": 2, + "stripLeadingSpaces": 2, + "d1": 7, + "zd": 1, + "<10>": 1, + "dd=": 2, + "mm=": 3, + "d1=": 1, + "p1=": 1, + "mm": 7, + "p2=": 1, + "yy=": 1, + "dd_": 1, + "mm_": 1, + "inetTime": 1, + "Decode": 1, + "Internet": 1, + "Format": 1, + "Time": 1, + "H": 1, + "format": 2, + "Offset": 1, + "relative": 1, + "GMT": 1, + "hh": 4, + "ss": 4, + "_hh": 1, + "time#3600": 1, + "_mm": 1, + "time#60": 1, + "_ss": 2, + "hh_": 1, + "_mm_": 1, + "openNewFile": 2, + "openFile": 2, + "openDOM": 2, + "#39": 1, + "<\",\"<\")>": 1, + "string=": 1, + "gt": 1, + "amp": 1, + "HTML": 1, + "no2": 1, + "p1_c_p2": 1, + "getIP": 2, + "Get": 2, + "own": 2, + "IP": 1, + "address": 1, + "ajaxErrorRedirect": 2, + "classExport": 2, + "className": 2, + ".methods": 1, + "strx": 2, + "disableEwdMgr": 1, + "enableEwdMgr": 1, + "enableWLDAccess": 1, + "disableWLDAccess": 1, + "isSSOValid": 2, + "sso": 2, + "zewdMgrAjax2": 1, + "uniqueId": 1, + "nodeOID": 2, + "filename": 2, + "linkToParentSession": 2, + "zewdCompiler20": 1, + "exportToGTM": 1, + "decode": 1, + "val": 5, + "Decoded": 1, + "Encoded": 1, + "decoded": 3, + "decoded_": 1, + "safechar": 3, + "zchar": 1, + "encoded": 8, + "encoded_c": 1, + "encoded_": 2, + "FUNC": 1, + "DH": 1, + "zascii": 1, + "miles": 4, + "gallons": 4, + "miles/gallons": 1, + "computepesimist": 1, + "miles/": 1, + "computeoptimist": 1, + "/gallons": 1, + "PCRE": 23, + "Extension": 9, "trademark": 2, "Fidelity": 2, "Information": 2, @@ -40179,22 +43832,38 @@ "Inc.": 2, "//sourceforge.net/projects/fis": 2, "gtm/": 2, + "extension": 3, "tries": 1, "deliver": 1, "best": 2, + "possible": 5, "interface": 1, "providing": 1, + "support": 3, "arrays": 1, + "stringified": 2, "parameter": 1, + "names": 3, "simplified": 1, + "API": 7, "locales": 2, "exceptions": 1, "Perl5": 1, "Match.": 1, + "pcreexamples.m": 2, "comprehensive": 1, + "examples": 4, + "pcre": 59, + "routines": 6, + "usage": 3, "beginner": 1, "tips": 1, + "match": 41, + "limits": 6, + "exception": 12, + "handling": 2, "GT.M.": 1, + "out": 2, "known": 2, "book": 1, "regular": 1, @@ -40207,7 +43876,14 @@ "contact": 2, "me": 2, "questions": 2, + "comments": 5, + "Initial": 2, + "release": 2, + "pkoper": 2, "pcre.version": 1, + "config": 3, + "case": 7, + "insensitive": 7, "protect": 11, "erropt": 6, "isstring": 5, @@ -40215,36 +43891,67 @@ ".name": 1, ".erropt": 3, ".isstring": 1, + ".n": 20, + "ec": 10, + "compile": 14, + "pattern": 21, + "options": 45, + "locale": 24, + "mlimit": 20, + "reclimit": 19, + "optional": 16, "joined": 3, "Unix": 1, "pcre_maketables": 2, "cases": 1, "undefined": 1, + "environment": 7, + "defined": 2, + "variables": 3, + "LANG": 4, "LC_*": 1, + "Debian": 2, "tip": 1, "dpkg": 1, "reconfigure": 1, "enable": 1, "system": 1, "wide": 1, + "internal": 3, + "matching": 4, "calls": 1, "pcre_exec": 4, "execution": 2, "manual": 2, + "details": 5, "depth": 1, "recursion": 1, + "when": 11, "calling": 2, + "ref": 41, + "err": 4, "erroffset": 3, "pcre.compile": 1, + ".pattern": 3, + ".ref": 13, ".err": 1, ".erroffset": 1, + "exec": 4, + "subject": 24, "startoffset": 3, "octets": 2, "starts": 1, + "like": 4, + "chars": 3, "pcre.exec": 2, + ".subject": 3, "zl": 7, + "ec=": 7, + "ovector": 25, + "return": 7, "element": 1, "code=": 4, + "ovecsize": 5, "fullinfo": 3, "OPTIONS": 2, "SIZE": 1, @@ -40262,28 +43969,35 @@ "MINLENGTH": 1, "JIT": 1, "JITSIZE": 1, - "NAME": 3, "nametable": 4, "returns": 7, "index": 1, "indexed": 4, "substring": 1, + "begin": 18, "begin=": 3, "end=": 4, + "octet": 4, "UNICODE": 1, + "ze": 8, "begin_": 1, "_end": 1, "store": 6, + "above": 3, "stores": 1, + "captured": 6, "key=": 2, "gstore": 3, "round": 12, "byref": 5, "ref=": 3, "l=": 2, + "capture": 10, "indexes": 1, "extended": 1, "NAMED_ONLY": 2, + "named": 12, + "groups": 5, "OVECTOR": 2, "additional": 5, "namedonly": 9, @@ -40293,14 +44007,20 @@ "ovector=": 2, "NO_AUTO_CAPTURE": 2, "_capture_": 2, + "matches": 10, "s=": 4, "_s_": 1, "GROUPED": 1, + "group": 4, + "result": 3, + "patterns": 3, "pcredemo": 1, "pcreccp": 1, "cc": 1, + "procedure": 2, "Perl": 1, "utf8": 2, + "empty": 7, "skip": 6, "determine": 1, "them": 1, @@ -40324,6 +44044,7 @@ "advance": 1, "LF": 1, "CR": 1, + "was": 5, "CRLF": 1, "middle": 1, ".i": 2, @@ -40331,6 +44052,8 @@ ".round": 2, ".byref": 2, ".ovector": 2, + "subst": 3, + "last": 4, "occurrences": 1, "matched": 1, "back": 4, @@ -40339,23 +44062,38 @@ "substitution": 2, "begins": 1, "substituted": 2, + "defaults": 3, "ends": 1, "backref": 1, "boffset": 1, "prepare": 1, + "reference": 2, ".subst": 1, ".backref": 1, "silently": 1, "zco": 1, "": 1, + "s/": 6, + "b*": 7, + "/Xy/g": 6, + "print": 8, + "aa": 9, + "et": 4, "direct": 3, - "msg": 6, "take": 1, + "handler": 9, + "setup": 3, + "trap": 10, + "source": 3, + "location": 5, "argument": 1, "@ref": 2, - "@": 8, + "COMPILE": 2, + "has": 7, "meaning": 1, "zs": 2, + "re": 2, + "raise": 3, "XC": 1, "U16384": 1, "U16385": 1, @@ -40365,10 +44103,13 @@ "U16389": 1, "U16390": 1, "U16391": 1, + "U16392": 2, "U16393": 1, "NOTES": 1, "U16401": 2, + "never": 4, "raised": 2, + "i.e.": 3, "NOMATCH": 2, "ever": 1, "uncommon": 1, @@ -40401,10 +44142,347 @@ "U16425": 1, "U16426": 1, "U16427": 1, - "exercise": 1, - "car": 14, - "compute": 2, - "Fibonacci": 1, + "Comment": 1, + "block": 1, + "always": 2, + "semicolon": 1, + "next": 1, + "while": 4, + "legal": 1, + "blank": 1, + "whitespace": 2, + "alone": 1, + "**": 4, + "Comments": 1, + "graphic": 3, + "such": 1, + "@#": 1, + "/": 3, + "space": 1, + "considered": 1, + "though": 1, + "ASCII": 2, + "whose": 1, + "below": 1, + "routine.": 1, + "multiple": 1, + "semicolons": 1, + "okay": 1, + "tag": 2, + "after": 3, + "does": 1, + "Tag1": 1, + "Tags": 2, + "uppercase": 2, + "lowercase": 1, + "alphabetic": 2, + "HELO": 1, + "most": 1, + "common": 1, + "LABEL": 1, + "followed": 1, + "directly": 1, + "open": 1, + "parenthesis": 2, + "formal": 1, + "list": 1, + "close": 1, + "ANOTHER": 1, + "Normally": 1, + "subroutine": 1, + "would": 2, + "ended": 1, + "we": 1, + "taking": 1, + "advantage": 1, + "rule": 1, + "END": 1, + "implicit": 1, + "Examples": 4, + "pcre.m": 1, + "parameters": 1, + "pcreexamples": 32, + "shining": 1, + "Test": 1, + "Simple": 2, + "zwr": 17, + "Match": 4, + "grouped": 2, + "Just": 1, + "Change": 2, + "word": 3, + "Escape": 1, + "sequence": 1, + "More": 1, + "Low": 1, + "api": 1, + "Setup": 1, + "myexception2": 2, + "st_": 1, + "zl_": 2, + "Compile": 2, + ".options": 1, + "Run": 1, + ".offset": 1, + "used.": 2, + "strings": 1, + "submitted": 1, + "exact": 1, + "usable": 1, + "integers": 1, + "way": 1, + "what": 2, + "/mg": 2, + "aaa": 1, + "nbb": 1, + ".*": 1, + "discover": 1, + "stackusage": 3, + "Locale": 5, + "Support": 1, + "Polish": 1, + "I18N": 2, + "PCRE.": 1, + "Polish.": 1, + "second": 1, + "letter": 1, + "": 1, + "ISO8859": 1, + "//en.wikipedia.org/wiki/Polish_code_pages": 1, + "complete": 1, + "listing": 1, + "CHAR": 1, + "different": 3, + "modes": 1, + "In": 1, + "two": 2, + "probably": 1, + "expected": 1, + "working": 1, + "single": 2, + "ISO": 3, + "chars.": 1, + "Use": 1, + "zch": 7, + "prepared": 1, + "GTM": 8, + "BADCHAR": 1, + "errors.": 1, + "Also": 1, + "others": 1, + "might": 1, + "expected.": 1, + "POSIX": 1, + "localization": 1, + "nolocale": 2, + "zchset": 2, + "isolocale": 2, + "utflocale": 2, + "LC_CTYPE": 1, + "Set": 2, + "results.": 1, + "envlocale": 2, + "ztrnlnm": 2, + "Notes": 1, + "Enabling": 1, + "native": 1, + "requires": 1, + "libicu": 2, + "gtm_chset": 1, + "gtm_icu_version": 1, + "recompiled": 1, + "object": 4, + "Instructions": 1, + "Install": 1, + "libicu48": 2, + "apt": 1, + "get": 2, + "install": 1, + "append": 1, + "chown": 1, + "gtm": 1, + "/opt/gtm": 1, + "Startup": 1, + "errors": 6, + "INVOBJ": 1, + "Cannot": 1, + "ZLINK": 1, + "due": 1, + "unexpected": 1, + "TEXT": 5, + "Object": 1, + "compiled": 1, + "CHSET": 1, + "written": 3, + "startup": 1, + "correct": 1, + "above.": 1, + "Limits": 1, + "built": 1, + "recursion.": 1, + "Those": 1, + "prevent": 1, + "engine": 1, + "very": 2, + "long": 2, + "especially": 1, + "there": 2, + "tree": 1, + "checked.": 1, + "Functions": 1, + "itself": 1, + "allows": 1, + "MATCH_LIMIT": 1, + "MATCH_LIMIT_RECURSION": 1, + "arguments": 1, + "library": 1, + "compilation": 2, + "Example": 1, + "longrun": 3, + "Equal": 1, + "corrected": 1, + "shortrun": 2, + "Enforced": 1, + "enforcedlimit": 2, + "Exception": 2, + "Handling": 1, + "Error": 1, + "conditions": 1, + "handled": 1, + "zc": 1, + "codes": 1, + "labels": 1, + "file.": 1, + "When": 2, + "neither": 1, + "nor": 1, + "within": 1, + "mechanism.": 1, + "depending": 1, + "caller": 1, + "exception.": 1, + "lead": 1, + "prompt": 1, + "terminating": 1, + "image.": 1, + "handlers.": 1, + "Handler": 1, + "nohandler": 4, + "Pattern": 1, + "failed": 1, + "unmatched": 1, + "parentheses": 1, + "<-->": 1, + "HERE": 1, + "RTSLOC": 2, + "At": 2, + "SETECODE": 1, + "Non": 1, + "assigned": 1, + "ECODE": 1, + "32": 1, + "GT": 1, + "image": 1, + "terminated": 1, + "myexception1": 3, + "zt=": 1, + "mytrap1": 2, + "zg": 2, + "mytrap3": 1, + "DETAILS": 1, + "executed": 1, + "frame": 1, + "called.": 1, + "deeper": 1, + "frames": 1, + "already": 1, + "dropped": 1, + "local": 1, + "available": 1, + "context.": 1, + "Thats": 1, + "why": 1, + "doesn": 1, + "unless": 1, + "cleared.": 1, + "Always": 1, + "done.": 2, + "Execute": 1, + "p5global": 1, + "p5replace": 1, + "p5lf": 1, + "p5nl": 1, + "newline": 1, + "utf8support": 1, + "myexception3": 1, + "ax": 2, + "bx": 2, + "cx": 2, + "ay": 2, + "cy": 2, + "sumx": 3, + "sqrx": 3, + "sumxy": 5, + "x*x": 1, + "x*y": 1, + "Keith": 1, + "Lynch": 1, + "p#f": 1, + "GMRGPNB0": 1, + "CISC/JH/RM": 1, + "NARRATIVE": 1, + "BUILDER": 1, + "GENERATOR": 1, + "cont.": 1, + "/20/91": 1, + "Text": 1, + "Generator": 1, + "Jan": 1, + "WITH": 1, + "GMRGA": 1, + "POINT": 1, + "AT": 1, + "WHICH": 1, + "WANT": 1, + "START": 1, + "BUILDING": 1, + "GMRGE0": 11, + "GMRGADD": 4, + "GMR": 6, + "GMRGA0": 11, + "GMRGPDA": 9, + "GMRGCSW": 2, + "NOW": 1, + "DTC": 1, + "GMRGB0": 9, + "GMRGST": 6, + "GMRGPDT": 2, + "STAT": 8, + "GMRGRUT0": 3, + "GMRGF0": 3, + "GMRGSTAT": 8, + "_GMRGB0_": 2, + "GMRD": 6, + "GMRGSSW": 3, + "SNT": 1, + "GMRGPNB1": 1, + "GMRGNAR": 8, + "GMRGPAR_": 2, + "_GMRGSPC_": 3, + "_GMRGRM": 2, + "_GMRGE0": 1, + "STORETXT": 1, + "GMRGRUT1": 1, + "GMRGSPC": 3, + "GMRGD0": 7, + "ALIST": 1, + "G": 40, + "GMRGPLVL": 6, + "GMRGA0_": 1, + "_GMRGD0_": 1, + "_GMRGSSW_": 1, + "_GMRGADD": 1, + "GMRGI0": 6, "PXAI": 1, "ISL/JVS": 1, "ISA/KWP": 1, @@ -40414,7 +44492,6 @@ "RTN": 1, "/20/03": 1, "am": 1, - "PATIENT": 5, "CARE": 1, "ENCOUNTER": 2, "**15": 1, @@ -40474,7 +44551,6 @@ "PASSED": 4, "IN": 4, "FIELD": 2, - "FROM": 5, "WARNING2": 1, "WARNINGS": 2, "WARNING3": 1, @@ -40535,11 +44611,8 @@ "PRV": 1, "PROVIDER": 1, "AUPNVSIT": 1, - ".I": 4, - "..S": 7, "status": 2, "Secondary": 2, - ".S": 6, "..I": 2, "PXADI": 4, "NODE": 5, @@ -40587,128 +44660,7 @@ "primary": 1, "diagnosis": 1, "flag": 1, - ".F": 2, "..E": 1, - "...S": 5, - "label1": 1, - "miles": 4, - "gallons": 4, - "miles/gallons": 1, - "computepesimist": 1, - "miles/": 1, - "computeoptimist": 1, - "/gallons": 1, - "PRCAAPR": 1, - "WASH": 1, - "ISC@ALTOONA": 1, - "PA/RGY": 1, - "ACCOUNT": 1, - "PROFILE": 1, - "CONT": 1, - "/9/94": 1, - "AM": 1, - "Accounts": 1, - "Receivable": 1, - "**198": 1, - "Mar": 1, - "Per": 1, - "VHA": 1, - "Directive": 1, - "modified.": 1, - "PRCATY": 2, - "Y": 26, - "DEBT": 10, - "PRCADB": 5, - "PRCA": 14, - "COUNT": 2, - "OUT": 2, - "SEL": 1, - "BILL": 11, - "BAT": 8, - "TRAN": 5, - "DXS": 1, - "DTOUT": 2, - "DIROUT": 1, - "DIRUT": 1, - "DUOUT": 1, - "ASK": 3, - "DPTNOFZY": 2, - "DPTNOFZK": 2, - "DTIME": 1, - "UPPER": 1, - "VALM1": 1, - "RCD": 1, - "DISV": 2, - "NAM": 1, - "RCFN01": 1, - "COMP": 2, - "EN1": 1, - "PRCAATR": 1, - "Y_": 3, - "PRCADB_": 1, - "HDR": 1, - "PRCAAPR1": 3, - "HDR2": 1, - "DIS": 1, - "STAT1": 2, - "_PRCATY_": 1, - "COMP1": 2, - "RCY": 5, - "COMP2": 2, - "_STAT_": 1, - "_STAT": 1, - "payments": 1, - "_TRAN": 1, - "encode": 1, - "Return": 1, - "base64": 6, - "Filename": 1, - "alphabet": 2, - "RFC": 1, - "todrop": 2, - "Populate": 1, - "only.": 1, - "Implementation": 1, - "works": 1, - "please": 1, - "don": 1, - "joke.": 1, - "Serves": 1, - "reverse": 1, - "engineering": 1, - "obtaining": 1, - "integer": 1, - "addition": 1, - "modulo": 1, - "division.": 1, - "md5": 2, - "//en.wikipedia.org/wiki/MD5": 1, - "#64": 1, - "msg_": 1, - "_m_": 1, - "n64": 2, - "read": 2, - ".m": 11, - ".p": 1, - "*i": 3, - "#16": 3, - "xor": 4, - "#4294967296": 6, - "n32h": 5, - "bit": 5, - "#2": 1, - "*2147483648": 2, - "a#2": 1, - "b#2": 1, - ".a": 1, - ".b": 1, - "rol": 1, - "a*": 1, - "**n": 1, - "c#4294967296": 1, - "*n": 1, - "n#256": 1, - "n#16": 2, "Digest": 2, "OpenSSL": 3, "based": 1, @@ -40760,88 +44712,83 @@ "sha512": 1, "dss1": 1, "ripemd160": 1, - "WVBRNOT": 1, - "HCIOFO/FT": 1, - "JR": 1, - "IHS/ANMC/MWR": 1, - "BROWSE": 1, - "NOTIFICATIONS": 1, - "/30/98": 1, - "WOMEN": 1, - "WVDATE": 8, - "WVENDDT1": 2, - "WVIEN": 13, - "..F": 2, - "WV": 8, - "WVXREF": 1, - "WVDFN": 6, - "SELECTING": 1, - "ONE": 2, - "CASE": 1, - "MANAGER": 1, - "AND": 3, - "THIS": 3, - "DOESN": 1, - "WVE": 2, - "": 2, - "STORE": 3, - "WVA": 2, - "WVBEGDT1": 1, - "NOTIFICATION": 1, - "IS": 3, - "QUEUED.": 1, - "WVB": 4, - "OPEN": 1, - "ONLY": 1, - "CLOSED.": 1, - ".Q": 1, - "EP": 4, - "ALREADY": 1, - "LL": 1, - "SORT": 3, - "ABOVE.": 1, - "DATE": 1, - "WVCHRT": 1, - "SSN": 1, - "WVUTL1": 2, - "SSN#": 1, - "WVNAME": 4, - "WVACC": 4, - "ACCESSION#": 1, - "WVSTAT": 1, - "STATUS": 2, - "WVUTL4": 1, - "WVPRIO": 5, - "PRIORITY": 1, - "WVCHRT_U_WVNAME_U_WVDATE_U_WVACC_U_WVSTAT_U_WVPRIO_U_WVIEN": 1, - "WVC": 4, - "COPYGBL": 3, - "COPY": 1, - "MAKE": 1, - "IT": 1, - "FLAT.": 1, - "...F": 1, - "....S": 1, - "DEQUEUE": 1, - "TASKMAN": 1, - "QUEUE": 1, - "PRINTOUT.": 1, - "SETVARS": 2, - "WVUTL5": 2, - "WVBRNOT1": 2, - "EXIT": 1, - "FOLLOW": 1, - "CALLED": 1, - "PROCEDURE": 1, - "FOLLOWUP": 1, - "MENU.": 1, - "WVBEGDT": 1, - "DT": 2, - "WVENDDT": 1, - "DEVICE": 1, - "WVBRNOT2": 1, - "WVPOP": 1, - "WVLOOP": 1 + "contrasting": 1, + "postconditionals": 1, + "commands": 1, + "post1": 1, + "postconditional": 3, + "purposely": 4, + "TEST": 16, + "post2": 1, + "special": 2, + "post": 1, + "condition": 1, + "illustrate": 1, + "dynamic": 1, + "scope": 1, + "triangle1": 1, + "main2": 1, + "triangle2": 1, + "PRCAAPR": 1, + "WASH": 1, + "ISC@ALTOONA": 1, + "PA/RGY": 1, + "ACCOUNT": 1, + "PROFILE": 1, + "CONT": 1, + "/9/94": 1, + "AM": 1, + "Accounts": 1, + "Receivable": 1, + "**198": 1, + "Mar": 1, + "Per": 1, + "VHA": 1, + "Directive": 1, + "modified.": 1, + "PRCATY": 2, + "DEBT": 10, + "PRCADB": 5, + "PRCA": 14, + "COUNT": 2, + "OUT": 2, + "SEL": 1, + "BILL": 11, + "BAT": 8, + "TRAN": 5, + "DXS": 1, + "DTOUT": 2, + "DIROUT": 1, + "DIRUT": 1, + "DUOUT": 1, + "ASK": 3, + "DPTNOFZY": 2, + "DPTNOFZK": 2, + "DTIME": 1, + "UPPER": 1, + "VALM1": 1, + "RCD": 1, + "DISV": 2, + "NAM": 1, + "RCFN01": 1, + "COMP": 2, + "EN1": 1, + "PRCAATR": 1, + "Y_": 3, + "PRCADB_": 1, + "HDR": 1, + "PRCAAPR1": 3, + "HDR2": 1, + "DIS": 1, + "STAT1": 2, + "_PRCATY_": 1, + "COMP1": 2, + "RCY": 5, + "COMP2": 2, + "_STAT_": 1, + "_STAT": 1, + "payments": 1, + "_TRAN": 1 }, "MTML": { "<$mt:Var>": 15, @@ -40878,11 +44825,6 @@ "": 1 }, "Makefile": { - "SHEBANG#!make": 1, - "%": 1, - "ls": 1, - "-": 6, - "l": 1, "all": 1, "hello": 4, "main.o": 3, @@ -40890,6 +44832,7 @@ "hello.o": 3, "g": 4, "+": 8, + "-": 6, "o": 1, "main.cpp": 2, "c": 3, @@ -40898,7 +44841,11 @@ "clean": 1, "rm": 1, "rf": 1, - "*o": 1 + "*o": 1, + "SHEBANG#!make": 1, + "%": 1, + "ls": 1, + "l": 1 }, "Markdown": { "Tender": 1 @@ -40953,133 +44900,50 @@ "bazCompo": 1 }, "Mathematica": { - "Notebook": 2, + "Get": 1, "[": 307, + "]": 286, + "Notebook": 2, "{": 227, "Cell": 28, "CellGroupData": 8, + "BoxData": 19, + "RowBox": 34, + "}": 222, "CellChangeTimes": 13, "-": 134, "*": 19, - "}": 222, - "]": 286, - "BoxData": 19, - "NamespaceBox": 1, - "DynamicModuleBox": 1, - "Typeset": 7, - "q": 1, - "opts": 1, - "AppearanceElements": 1, - "Asynchronous": 1, - "All": 1, - "TimeConstraint": 1, - "Automatic": 9, - "Method": 2, - "elements": 1, - "pod1": 1, - "XMLElement": 13, - "False": 19, - "True": 7, - "FormBox": 4, - "TagBox": 9, - "GridBox": 2, - "PaneBox": 1, - "StyleBox": 4, - "CellContext": 5, - "TagBoxWrapper": 4, - "AstronomicalData": 1, - "Identity": 2, - "LineIndent": 4, - "LineSpacing": 2, - "GridBoxBackground": 1, - "GrayLevel": 17, + "SuperscriptBox": 1, + "MultilineFunction": 1, "None": 8, - "GridBoxItemSize": 2, - "ColumnsEqual": 2, - "RowsEqual": 2, - "GridBoxDividers": 1, - "GridBoxSpacings": 2, - "GridBoxAlignment": 1, - "Left": 1, - "Baseline": 1, - "AllowScriptLevelChange": 2, - "BaselinePosition": 2, - "Center": 1, - "AbsoluteThickness": 3, - "TraditionalForm": 3, - "PolynomialForm": 1, - "#": 2, - "TraditionalOrder": 1, - "&": 2, - "pod2": 1, - "RowBox": 34, - "LinebreakAdjustments": 2, - "FontFamily": 1, - "UnitFontFamily": 1, - "FontSize": 1, - "Smaller": 1, - "StripOnInput": 1, - "SyntaxForm": 2, - "Dot": 2, - "ZeroWidthTimes": 1, - "pod3": 1, - "TemplateBox": 1, + "Open": 7, + "NumberMarks": 3, + "False": 19, "GraphicsBox": 2, - "GraphicsComplexBox": 1, - "CompressedData": 9, - "EdgeForm": 2, - "Directive": 5, - "Opacity": 2, "Hue": 5, - "GraphicsGroupBox": 2, - "PolygonBox": 3, - "RGBColor": 3, "LineBox": 5, - "Dashing": 1, - "Small": 1, - "GridLines": 1, - "Dynamic": 1, - "Join": 1, - "Replace": 1, - "MousePosition": 1, - "Graphics": 1, - "Pattern": 2, - "CalculateUtilities": 5, - "GraphicsUtilities": 5, - "Private": 5, - "x": 2, - "Blank": 2, - "y": 2, - "Epilog": 1, - "CapForm": 1, - "Offset": 8, - "Scaled": 10, - "DynamicBox": 1, - "ToBoxes": 1, - "DynamicModule": 1, - "pt": 1, + "CompressedData": 9, + "AspectRatio": 1, + "NCache": 1, + "GoldenRatio": 1, "(": 2, - "NearestFunction": 1, - "Do": 1, - "If": 1, - "Length": 1, - "Divisors": 1, - "Binomial": 2, - "i": 3, - "+": 2, - "Print": 1, - ";": 42, - "Break": 1, - "Paclet": 1, - "Name": 1, - "Version": 1, - "MathematicaVersion": 1, - "Description": 1, - "Creator": 1, - "Extensions": 1, - "Language": 1, - "MainPage": 1, + ")": 1, + "Axes": 1, + "True": 7, + "AxesLabel": 1, + "AxesOrigin": 1, + "Method": 2, + "PlotRange": 1, + "PlotRangeClipping": 1, + "PlotRangePadding": 1, + "Scaled": 10, + "WindowSize": 1, + "WindowMargins": 1, + "Automatic": 9, + "FrontEndVersion": 1, + "StyleDefinitions": 1, "BeginPackage": 1, + ";": 42, "PossiblyTrueQ": 3, "usage": 22, "PossiblyFalseQ": 2, @@ -41137,53 +45001,235 @@ "Symbol": 2, "NumericQ": 1, "EndPackage": 1, - "SuperscriptBox": 1, - "MultilineFunction": 1, - "Open": 7, - "NumberMarks": 3, - "AspectRatio": 1, - "NCache": 1, - "GoldenRatio": 1, - ")": 1, - "Axes": 1, - "AxesLabel": 1, - "AxesOrigin": 1, - "PlotRange": 1, - "PlotRangeClipping": 1, - "PlotRangePadding": 1, - "WindowSize": 1, - "WindowMargins": 1, - "FrontEndVersion": 1, - "StyleDefinitions": 1, - "Get": 1 + "NamespaceBox": 1, + "DynamicModuleBox": 1, + "Typeset": 7, + "q": 1, + "opts": 1, + "AppearanceElements": 1, + "Asynchronous": 1, + "All": 1, + "TimeConstraint": 1, + "elements": 1, + "pod1": 1, + "XMLElement": 13, + "FormBox": 4, + "TagBox": 9, + "GridBox": 2, + "PaneBox": 1, + "StyleBox": 4, + "CellContext": 5, + "TagBoxWrapper": 4, + "AstronomicalData": 1, + "Identity": 2, + "LineIndent": 4, + "LineSpacing": 2, + "GridBoxBackground": 1, + "GrayLevel": 17, + "GridBoxItemSize": 2, + "ColumnsEqual": 2, + "RowsEqual": 2, + "GridBoxDividers": 1, + "GridBoxSpacings": 2, + "GridBoxAlignment": 1, + "Left": 1, + "Baseline": 1, + "AllowScriptLevelChange": 2, + "BaselinePosition": 2, + "Center": 1, + "AbsoluteThickness": 3, + "TraditionalForm": 3, + "PolynomialForm": 1, + "#": 2, + "TraditionalOrder": 1, + "&": 2, + "pod2": 1, + "LinebreakAdjustments": 2, + "FontFamily": 1, + "UnitFontFamily": 1, + "FontSize": 1, + "Smaller": 1, + "StripOnInput": 1, + "SyntaxForm": 2, + "Dot": 2, + "ZeroWidthTimes": 1, + "pod3": 1, + "TemplateBox": 1, + "GraphicsComplexBox": 1, + "EdgeForm": 2, + "Directive": 5, + "Opacity": 2, + "GraphicsGroupBox": 2, + "PolygonBox": 3, + "RGBColor": 3, + "Dashing": 1, + "Small": 1, + "GridLines": 1, + "Dynamic": 1, + "Join": 1, + "Replace": 1, + "MousePosition": 1, + "Graphics": 1, + "Pattern": 2, + "CalculateUtilities": 5, + "GraphicsUtilities": 5, + "Private": 5, + "x": 2, + "Blank": 2, + "y": 2, + "Epilog": 1, + "CapForm": 1, + "Offset": 8, + "DynamicBox": 1, + "ToBoxes": 1, + "DynamicModule": 1, + "pt": 1, + "NearestFunction": 1, + "Do": 1, + "If": 1, + "Length": 1, + "Divisors": 1, + "Binomial": 2, + "i": 3, + "+": 2, + "Print": 1, + "Break": 1, + "Paclet": 1, + "Name": 1, + "Version": 1, + "MathematicaVersion": 1, + "Description": 1, + "Creator": 1, + "Extensions": 1, + "Language": 1, + "MainPage": 1 }, "Matlab": { "function": 34, + "bicycle": 7, + "bicycle_state_space": 1, + "(": 1379, + "speed": 20, + "varargin": 25, + ")": 1380, + "%": 554, + "S": 5, + "dbstack": 1, + ";": 909, "[": 311, + "CURRENT_DIRECTORY": 2, + "]": 311, + "fileparts": 1, + ".file": 1, + "par": 7, + "par_text_to_struct": 4, + "filesep": 14, + "...": 162, + "A": 11, + "B": 9, + "C": 13, + "D": 7, + "whipple_pull_force_abcd": 2, + "states": 7, + "{": 157, + "}": 157, + "outputs": 10, + "inputs": 14, + "defaultSettings.states": 1, + "defaultSettings.inputs": 1, + "defaultSettings.outputs": 1, + "if": 52, + "size": 11, + "userSettings": 3, + "varargin_to_structure": 2, + "else": 23, + "struct": 1, + "end": 150, + "settings": 3, + "overwrite_settings": 2, + "defaultSettings": 3, + "minStates": 2, + "sum": 2, + "ismember": 15, + "settings.states": 3, + "<": 9, + "error": 16, + "keepStates": 2, + "find": 24, + "removeStates": 1, + "for": 78, + "row": 6, + "abs": 12, + "col": 5, + "e": 14, + "-": 673, + "s": 13, + "sprintf": 11, + "removeInputs": 2, + "settings.inputs": 1, + "keepOutputs": 2, + "settings.outputs": 1, + "It": 1, + "is": 7, + "not": 3, + "possible": 1, + "to": 9, + "keep": 1, + "output": 7, + "because": 1, + "it": 1, + "depends": 1, + "on": 13, + "input": 14, + "StateName": 1, + "OutputName": 1, + "InputName": 1, + "data": 27, + "load_data": 4, + "filename": 21, + "parser": 1, + "inputParser": 1, + "parser.addRequired": 1, + "parser.addParamValue": 3, + "true": 2, + "parser.parse": 1, + "args": 1, + "parser.Results": 1, + "raw": 1, + "load": 1, + "args.directory": 1, + "iddata": 1, + "raw.theta": 1, + "raw.theta_c": 1, + "args.sampleTime": 1, + "args.detrend": 1, + "detrend": 1, + "overrideSettings": 3, + "overrideNames": 2, + "fieldnames": 5, + "defaultNames": 2, + "notGiven": 5, + "setxor": 1, + "length": 49, + "i": 338, + "settings.": 1, + "defaultSettings.": 1, "x_T": 25, "y_T": 17, "vx_T": 22, "e_T": 7, "filter": 14, - "delta_e": 3, - "]": 311, - "Integrate_FTLE_Gawlick_ell": 1, - "(": 1379, + "Integrate_FILE": 1, "x_0": 45, "y_0": 29, "vx_0": 37, "e_0": 7, "T": 22, + "N": 9, "mu": 73, - "ecc": 2, - "nu": 2, "options": 14, - ")": 1380, - "%": 554, "Integrate": 6, "nx": 32, - "length": 49, - ";": 909, "ny": 29, "nvx": 32, "ne": 29, @@ -41191,188 +45237,48 @@ "zeros": 61, "vy_T": 12, "Look": 2, - "for": 78, "phisically": 2, "meaningful": 6, "points": 11, "meaningless": 2, "point": 14, - "useful": 9, - "ones": 6, "only": 7, "h": 19, "waitbar": 6, - "i": 338, "i/nx": 2, - "sprintf": 11, "j": 242, "parfor": 5, "k": 75, "l": 64, - "if": 52, - "-": 673, "sqrt": 14, - "*": 46, - "Omega": 7, - "/": 59, + "*Potential": 5, "+": 169, - "ecc*cos": 1, "*e_0": 3, "isreal": 8, "ci": 9, "t": 32, "Y": 19, + "te": 2, + "ye": 9, + "ie": 2, "ode45": 6, - "@f_ell": 1, - "abs": 12, - "end": 150, - "<": 9, - "Consider": 1, - "also": 1, - "negative": 1, - "time": 21, - "Compute": 3, - "the": 14, - "goodness": 1, - "of": 35, - "integration": 9, + "@f": 6, + "*": 46, + "Potential": 1, "close": 4, - "y": 25, - "average": 1, - "x": 46, - "m": 44, - "n": 102, - "size": 11, - "|": 2, - "&": 4, - "error": 16, - "sum": 2, - "/length": 1, - "data": 27, - "load_data": 4, - "filename": 21, - "guess.plantOne": 3, - "guess.plantTwo": 2, - "plantNum.plantOne": 2, - "plantNum.plantTwo": 2, - "sections": 13, - "{": 157, - "}": 157, - "secData.": 1, - "data.Ts": 6, - "kP1": 4, - "gainSlopeOffset": 6, - "eye": 9, - "kP2": 3, - "b": 12, - "strcmp": 24, - "||": 3, - "display": 10, - "else": 23, - "guess.": 2, - "result.": 2, - ".fit.par": 1, - "currentGuess": 2, - ".*": 2, - "warning": 1, - "randomGuess": 1, - "The": 6, - "self": 2, - "validation": 2, - "VAF": 2, - "is": 7, - "f.": 2, - "data/": 1, - "results.mat": 1, - "guess": 1, - "plantNum": 1, - "result": 5, - "plots/": 1, - ".png": 1, - "task": 1, - "plant": 4, - "order": 11, - "closed": 1, - "loop": 1, - "system": 2, - "u.": 1, - "gain": 1, - "guesses": 1, - "k1": 4, - "f": 13, - "k2": 3, - "k3": 3, - "k4": 4, - "identified": 1, - "gains": 12, - "...": 162, - ".vaf": 1, - "wnm": 11, - "zetanm": 5, - "generate_data": 5, - "bicycle": 7, - "ss": 3, - "data.modelPar.A": 1, - "data.modelPar.B": 1, - "data.modelPar.C": 1, - "data.modelPar.D": 1, - "bicycle.StateName": 2, - "bicycle.OutputName": 4, - "bicycle.InputName": 2, - "inputs": 14, - "outputs": 10, - "analytic": 3, - "system_state_space": 2, - "numeric": 2, - "data.system.A": 1, - "data.system.B": 1, - "data.system.C": 1, - "data.system.D": 1, - "numeric.StateName": 1, - "data.bicycle.states": 1, - "numeric.InputName": 1, - "data.bicycle.inputs": 1, - "numeric.OutputName": 1, - "data.bicycle.outputs": 1, - "figure": 17, - "pzplot": 1, - "hold": 23, - "all": 15, - "num": 24, - "den": 15, - "ss2tf": 2, - "analytic.A": 3, - "analytic.B": 1, - "analytic.C": 1, - "analytic.D": 1, - "mine": 1, - "tf": 18, - "find": 24, - "bode": 5, - "data.forceTF.PhiDot.num": 1, - "data.forceTF.PhiDot.den": 1, - "numeric.A": 2, - "numeric.B": 1, - "numeric.C": 1, - "numeric.D": 1, - "eig": 6, - "par": 7, - "par_text_to_struct": 4, - "A": 11, - "B": 9, - "C": 13, - "D": 7, - "whipple_pull_force_ABCD": 1, - "bottomRow": 1, - "prod": 3, "tic": 7, "clear": 13, + "all": 15, "Elements": 1, "grid": 1, "definition": 2, + "n": 102, "Dimensionless": 1, "integrating": 1, + "time": 21, "Choice": 2, + "of": 35, + "the": 14, "mass": 2, "parameter": 2, "Computation": 9, @@ -41393,6 +45299,7 @@ "total": 6, "energy": 8, "E_L1": 4, + "Omega": 7, "C_L1": 3, "*E_L1": 1, "from": 2, @@ -41401,6 +45308,7 @@ "Offset": 2, "as": 4, "in": 8, + "figure": 17, "Initial": 3, "conditions": 3, "range": 2, @@ -41415,11 +45323,13 @@ "vx_0.": 2, "E_cin": 4, "filtro": 15, + "ones": 6, "E_T": 11, "delta_E": 7, "a": 17, "matrix": 3, "numbers": 2, + "integration": 9, "steps": 2, "each": 2, "np": 8, @@ -41433,7 +45343,6 @@ "Setting": 1, "integrator": 2, "RelTol": 2, - "e": 14, "AbsTol": 2, "From": 1, "Short": 1, @@ -41441,7 +45350,6 @@ "Parallel": 2, "equations": 2, "motion": 2, - "S": 5, "r1": 3, "r2": 3, "g": 5, @@ -41458,7 +45366,6 @@ "positive": 2, "Kinetic": 2, "*T": 3, - "s": 13, "@f_reg": 1, "Saving": 4, "solutions": 2, @@ -41475,11 +45382,13 @@ "t_integrazione": 3, "toc": 5, "filtro_1": 12, + "||": 3, "FTLE": 14, "dphi": 12, "ftle": 10, "ftle_norm": 1, "ds_x": 1, + "/": 59, "ds_vx": 1, "La": 1, "direzione": 1, @@ -41502,11 +45411,11 @@ "*ds_x": 2, "*ds_vx": 2, "Manual": 2, - "to": 9, "visualize": 2, "/abs": 3, "*log": 2, "max": 9, + "eig": 6, "dphi*dphi": 1, "tempo": 4, "per": 5, @@ -41521,9 +45430,23 @@ "num2str": 10, "save": 2, "nome": 2, + "y": 25, + "average": 1, + "x": 46, + "m": 44, + "|": 2, + "&": 4, + "/length": 1, + "d": 12, + "d_mean": 3, + "d_std": 3, + "normalize": 1, + "mean": 2, + "repmat": 2, + "std": 1, + "d./": 1, "load_bikes": 2, "bikes": 24, - "input": 14, "speeds": 21, "speedNames": 12, "gains.Benchmark.Slow": 1, @@ -41550,69 +45473,226 @@ "gains.Yellow.Fast": 1, "gains.Yellowrev.Fast": 1, "data.": 6, + "generate_data": 5, "gains.": 1, - "ret": 3, - "matlab_function": 5, - "disp": 8, - "Transforming": 1, - "into": 1, - "Hamiltonian": 1, - "variables": 2, - "px_0": 2, - "py_0": 2, - "px_T": 4, - "py_T": 4, - "inf": 1, - "Jacobian": 3, - "@cr3bp_jac": 1, - "@fH": 1, - "EnergyH": 1, - "t_integr": 1, - "Back": 1, - "Inf": 1, - "_e": 1, - "_H": 1, + "Range": 1, + "E_0": 4, + "C_L1/2": 1, + "Y_0": 4, "dx": 6, - "adapting_structural_model": 2, - "u": 3, - "varargin": 25, - "aux": 3, - "elseif": 14, - "aux.pars": 3, - "Yp": 2, - "human": 1, - "aux.timeDelay": 2, - "c1": 5, - "aux.m": 3, - "aux.b": 3, - "c2": 5, + "dvx": 3, + "dy": 5, + "/2": 3, + "de": 4, + "Definition": 1, + "arrays": 1, + "In": 1, + "this": 2, + "approach": 1, + "useful": 9, + "pints": 1, + "are": 1, + "stored": 1, + "v_y": 3, + "vx": 2, + "vy": 2, + "Selection": 1, + "Data": 2, + "transfer": 1, + "GPU": 3, + "x_gpu": 3, + "gpuArray": 4, + "y_gpu": 3, + "vx_gpu": 3, + "vy_gpu": 3, + "Integration": 2, + "t0": 6, + "x_f": 3, + "y_f": 3, + "vx_f": 3, + "vy_f": 3, + "arrayfun": 2, + "@RKF45_FILE_gpu": 1, + "back": 1, + "CPU": 1, + "memory": 1, + "cleaning": 1, + "gather": 4, + "Construction": 1, + "computation": 2, + "X_T": 4, + "Y_T": 4, + "VX_T": 4, + "VY_T": 3, + "Compute": 3, + "filter_ftle": 11, + "Compute_FILE_gpu": 1, + "Plot": 1, + "results": 1, + "squeeze": 1, + "pcolor": 2, + "shading": 3, + "flat": 3, + "cross_validation": 1, + "hyper_parameter": 3, + "num_data": 2, + "K": 4, + "indices": 2, + "crossvalind": 1, + "errors": 4, + "test_idx": 4, + "train_idx": 3, + "x_train": 2, + "y_train": 2, + "w": 6, + "train": 1, + "x_test": 3, + "y_test": 3, + "calc_cost": 1, + "calc_error": 2, + "delta_e": 3, + "Integrate_FTLE_Gawlick_ell": 1, + "ecc": 2, + "nu": 2, + "ecc*cos": 1, + "@f_ell": 1, + "Consider": 1, + "also": 1, + "negative": 1, + "goodness": 1, + "x_min": 3, + "x_max": 3, + "y_min": 3, + "y_max": 3, + "how": 1, + "many": 1, + "measure": 1, + "unit": 1, + "both": 1, + "ds": 1, + "x_res": 7, + "*n": 2, + "y_res": 7, + "grid_x": 3, + "grid_y": 3, + "advected_x": 12, + "advected_y": 12, + "X": 6, + "@dg": 1, + "store": 4, + "advected": 2, + "positions": 2, + "they": 2, + "would": 2, + "appear": 2, + "coords": 2, + "sigma": 6, + "compute": 2, + "Jacobian": 3, + "phi": 13, + "*ds": 4, + "eigenvalue": 2, + "*phi": 2, + "log": 2, + "lambda_max": 2, + "plot": 26, + "field": 2, + "contourf": 2, + "location": 1, + "EastOutside": 1, + "axis": 5, + "equal": 2, + "f_x_t": 2, + "inline": 1, + "grid_min": 3, + "grid_max": 3, + "grid_width": 1, + "grid_spacing": 5, + "grid_width/": 1, + "*grid_width/": 4, + "colorbar": 1, "Yc": 5, + "plant": 4, "parallel": 2, + "choose_plant": 4, + "p": 7, + "num": 24, + "tf": 18, + "elseif": 14, + "display": 10, + "filtfcn": 2, + "statefcn": 2, + "makeFilter": 1, + "b": 12, + "v": 12, + "@iirFilter": 1, + "@getState": 1, + "yn": 2, + "iirFilter": 1, + "xn": 4, + "vOut": 2, + "getState": 1, + "Call": 2, + "matlab_function": 5, + "which": 2, + "resides": 2, + "same": 2, + "directory": 2, + "value1": 4, + "semicolon": 2, + "at": 3, + "line": 15, + "mandatory": 2, + "suppresses": 2, + "command": 2, + "line.": 2, + "value2": 4, + "result": 5, + "disp": 8, + "Conditions": 1, + "@cross_y": 1, + "ode113": 2, + "t1": 6, + "t2": 6, + "t3": 1, + "dataPlantOne": 3, + "data.Ts": 6, + "dataAdapting": 3, + "dataPlantTwo": 3, + "guessPlantOne": 4, + "resultPlantOne": 1, + "find_structural_gains": 2, + "yh": 2, + "fit": 6, + "x0": 4, + "compare": 3, + "resultPlantOne.fit": 1, + "guessPlantTwo": 3, + "resultPlantTwo": 1, + "resultPlantTwo.fit": 1, + "kP1": 4, + "resultPlantOne.fit.par": 1, + "kP2": 3, + "resultPlantTwo.fit.par": 1, + "gainSlopeOffset": 6, + "eye": 9, + "aux.pars": 3, + "uses": 1, + "tau": 1, + "through": 1, + "wfs": 1, + "aux.timeDelay": 2, "aux.plantFirst": 2, "aux.plantSecond": 2, - "Ys": 1, - "feedback": 1, - "tf2ss": 1, - "Ys.num": 1, - "Ys.den": 1, - "parser": 1, - "inputParser": 1, - "parser.addRequired": 1, - "parser.addParamValue": 3, - "true": 2, - "parser.parse": 1, - "args": 1, - "parser.Results": 1, - "raw": 1, - "load": 1, - "args.directory": 1, - "filesep": 14, - "iddata": 1, - "raw.theta": 1, - "raw.theta_c": 1, - "args.sampleTime": 1, - "args.detrend": 1, - "detrend": 1, + "plantOneSlopeOffset": 3, + "plantTwoSlopeOffset": 3, + "aux.m": 3, + "aux.b": 3, + "adapting_structural_model": 2, + "aux": 3, + "mod": 3, + "idnlgrey": 1, + "pem": 1, "create_ieee_paper_plots": 2, "rollData": 8, "global": 6, @@ -41639,11 +45719,13 @@ "set": 43, "gcf": 17, "freq": 12, + "hold": 23, "closedLoops": 1, "bikeData.closedLoops": 1, "bops": 7, "bodeoptions": 1, "bops.FreqUnits": 1, + "strcmp": 24, "gray": 7, "deltaNum": 2, "closedLoops.Delta.num": 1, @@ -41691,23 +45773,21 @@ "openLoops": 1, "bikeData.openLoops": 1, "openLoops.Phi.num": 1, + "den": 15, "openLoops.Phi.den": 1, "openLoops.Psi.num": 1, "openLoops.Psi.den": 1, "openLoops.Y.num": 1, "openLoops.Y.den": 1, "openBode": 3, - "line": 15, "wc": 14, "wShift": 5, - "on": 13, "bikeData.handlingMetric.num": 1, "bikeData.handlingMetric.den": 1, - "w": 6, "mag": 4, "phase": 2, + "bode": 5, "metricLine": 1, - "plot": 26, "Linewidth": 7, "Color": 13, "Linestyle": 6, @@ -41731,12 +45811,10 @@ "PaperPosition": 3, "PaperSize": 3, "rad/sec": 1, - "phi": 13, "Open": 1, "Loop": 1, "Bode": 1, "Diagrams": 1, - "at": 3, "m/s": 6, "Latex": 1, "type": 4, @@ -41767,6 +45845,7 @@ "free": 1, "@": 1, "handling.eps": 1, + "f": 13, "YTick": 1, "YTickLabel": 1, "Path": 1, @@ -41775,16 +45854,13 @@ "Lateral": 1, "Deviation": 1, "paths.eps": 1, - "d": 12, "like": 1, "plot.": 1, "names": 6, "prettyNames": 3, "units": 3, "index": 6, - "ismember": 15, "variable": 10, - "fieldnames": 5, "data.Browser": 1, "maxValue": 4, "oneSpeed": 3, @@ -41795,7 +45871,6 @@ "yShift": 16, "xShift": 3, "oneSpeed.time": 2, - "speed": 20, "oneSpeed.speed": 2, "distance": 6, "xAxis": 12, @@ -41824,7 +45899,6 @@ "w_a": 7, "h_a": 5, "ax": 15, - "axis": 5, "rollData.speed": 1, "rollData.time": 1, "path": 3, @@ -41853,7 +45927,6 @@ "nominalData.": 2, "bikeData.": 2, "twentyPercent.": 2, - "equal": 2, "leg1": 2, "bikeData.modelPar.": 1, "leg2": 2, @@ -41861,7 +45934,6 @@ "eVals": 5, "pathToParFile": 2, "str": 2, - "whipple_pull_force_abcd": 2, "eigenValues": 1, "zeroIndices": 3, "maxEvals": 4, @@ -41869,17 +45941,174 @@ "minLine": 4, "min": 1, "speedInd": 12, - "varargin_to_structure": 2, - "arguments": 7, - "mod": 3, - "ischar": 1, - "options.": 1, + "write_gains": 1, + "gains": 12, + "contents": 1, + "importdata": 1, + "speedsInFile": 5, + "contents.data": 2, + "gainsInFile": 3, + "sameSpeedIndices": 5, + "allGains": 4, + "allSpeeds": 4, + "order": 11, + "sort": 1, + "fid": 7, + "fopen": 2, + "contents.colheaders": 1, + "fclose": 2, + "wnm": 11, + "zetanm": 5, + "ss": 3, + "data.modelPar.A": 1, + "data.modelPar.B": 1, + "data.modelPar.C": 1, + "data.modelPar.D": 1, + "bicycle.StateName": 2, + "bicycle.OutputName": 4, + "bicycle.InputName": 2, + "analytic": 3, + "system_state_space": 2, + "numeric": 2, + "data.system.A": 1, + "data.system.B": 1, + "data.system.C": 1, + "data.system.D": 1, + "numeric.StateName": 1, + "data.bicycle.states": 1, + "numeric.InputName": 1, + "data.bicycle.inputs": 1, + "numeric.OutputName": 1, + "data.bicycle.outputs": 1, + "pzplot": 1, + "ss2tf": 2, + "analytic.A": 3, + "analytic.B": 1, + "analytic.C": 1, + "analytic.D": 1, + "mine": 1, + "data.forceTF.PhiDot.num": 1, + "data.forceTF.PhiDot.den": 1, + "numeric.A": 2, + "numeric.B": 1, + "numeric.C": 1, + "numeric.D": 1, + "whipple_pull_force_ABCD": 1, + "bottomRow": 1, + "prod": 3, "value": 2, "isterminal": 2, "direction": 2, "FIXME": 1, "largest": 1, "primary": 1, + "guess.plantOne": 3, + "guess.plantTwo": 2, + "plantNum.plantOne": 2, + "plantNum.plantTwo": 2, + "sections": 13, + "secData.": 1, + "guess.": 2, + "result.": 2, + ".fit.par": 1, + "currentGuess": 2, + ".*": 2, + "warning": 1, + "randomGuess": 1, + "The": 6, + "self": 2, + "validation": 2, + "VAF": 2, + "f.": 2, + "data/": 1, + "results.mat": 1, + "guess": 1, + "plantNum": 1, + "plots/": 1, + ".png": 1, + "task": 1, + "closed": 1, + "loop": 1, + "system": 2, + "u.": 1, + "gain": 1, + "guesses": 1, + "k1": 4, + "k2": 3, + "k3": 3, + "k4": 4, + "identified": 1, + ".vaf": 1, + "name": 4, + "convert_variable": 1, + "coordinates": 6, + "get_variables": 2, + "columns": 4, + "arguments": 7, + "ischar": 1, + "options.": 1, + "clc": 1, + "textscan": 1, + "strtrim": 2, + "vals": 2, + "regexp": 1, + "par.": 1, + "str2num": 1, + "lane_change": 1, + "start": 4, + "width": 3, + "slope": 3, + "pathLength": 3, + "single": 1, + "double": 1, + "Double": 1, + "lane": 4, + "change": 1, + "needs": 1, + "lane.": 1, + "laneLength": 4, + "startOfSlope": 3, + "endOfSlope": 1, + "<=>": 1, + "1": 1, + "downSlope": 3, + "c1": 5, + "roots": 3, + "*mu": 6, + "c2": 5, + "c3": 3, + "Earth": 2, + "Moon": 2, + "C_star": 1, + "C/2": 1, + "orbit": 1, + "Y0": 6, + "y0": 2, + "vx0": 2, + "vy0": 2, + "l0": 1, + "delta_E0": 1, + "Hill": 1, + "Edgecolor": 1, + "none": 1, + "ok": 2, + "sg": 1, + "sr": 1, + "tspan": 7, + "arg1": 1, + "arg": 2, + "RK4_par": 1, + "RK4": 3, + "z": 3, + "*vx_0": 1, + "u": 3, + "Yp": 2, + "human": 1, + "Ys": 1, + "feedback": 1, + "tf2ss": 1, + "Ys.num": 1, + "Ys.den": 1, "classdef": 1, "matlab_class": 2, "properties": 1, @@ -41900,250 +46129,6 @@ "yellow": 1, "black": 1, "white": 1, - "Earth": 2, - "Moon": 2, - "*Potential": 5, - "C_star": 1, - "C/2": 1, - "orbit": 1, - "t0": 6, - "Y0": 6, - "ode113": 2, - "@f": 6, - "x0": 4, - "y0": 2, - "vx0": 2, - "vy0": 2, - "l0": 1, - "delta_E0": 1, - "Hill": 1, - "Edgecolor": 1, - "none": 1, - "ok": 2, - "sg": 1, - "sr": 1, - "f_x_t": 2, - "inline": 1, - "grid_min": 3, - "grid_max": 3, - "grid_width": 1, - "grid_spacing": 5, - "grid_width/": 1, - "advected_x": 12, - "advected_y": 12, - "store": 4, - "advected": 2, - "positions": 2, - "they": 2, - "would": 2, - "appear": 2, - "coords": 2, - "sigma": 6, - "compute": 2, - "*grid_width/": 4, - "eigenvalue": 2, - "*phi": 2, - "log": 2, - "lambda_max": 2, - "field": 2, - "contourf": 2, - "colorbar": 1, - "Conditions": 1, - "N": 9, - "Integration": 2, - "@cross_y": 1, - "te": 2, - "ye": 9, - "ie": 2, - "tspan": 7, - "arg1": 1, - "arg": 2, - "X": 6, - "arrayfun": 2, - "RK4_par": 1, - "RK4": 3, - "Range": 1, - "E_0": 4, - "C_L1/2": 1, - "Y_0": 4, - "dvx": 3, - "dy": 5, - "/2": 3, - "de": 4, - "Definition": 1, - "arrays": 1, - "In": 1, - "this": 2, - "approach": 1, - "pints": 1, - "are": 1, - "stored": 1, - "v_y": 3, - "vx": 2, - "vy": 2, - "Selection": 1, - "Data": 2, - "transfer": 1, - "GPU": 3, - "x_gpu": 3, - "gpuArray": 4, - "y_gpu": 3, - "vx_gpu": 3, - "vy_gpu": 3, - "x_f": 3, - "y_f": 3, - "vx_f": 3, - "vy_f": 3, - "@RKF45_FILE_gpu": 1, - "back": 1, - "CPU": 1, - "memory": 1, - "cleaning": 1, - "gather": 4, - "Construction": 1, - "computation": 2, - "X_T": 4, - "Y_T": 4, - "VX_T": 4, - "VY_T": 3, - "filter_ftle": 11, - "Compute_FILE_gpu": 1, - "Plot": 1, - "results": 1, - "squeeze": 1, - "pcolor": 2, - "shading": 3, - "flat": 3, - "write_gains": 1, - "contents": 1, - "importdata": 1, - "speedsInFile": 5, - "contents.data": 2, - "gainsInFile": 3, - "sameSpeedIndices": 5, - "allGains": 4, - "allSpeeds": 4, - "sort": 1, - "fid": 7, - "fopen": 2, - "contents.colheaders": 1, - "fclose": 2, - "cross_validation": 1, - "hyper_parameter": 3, - "num_data": 2, - "K": 4, - "indices": 2, - "crossvalind": 1, - "errors": 4, - "test_idx": 4, - "train_idx": 3, - "x_train": 2, - "y_train": 2, - "train": 1, - "x_test": 3, - "y_test": 3, - "calc_cost": 1, - "calc_error": 2, - "mean": 2, - "textscan": 1, - "strtrim": 2, - "vals": 2, - "regexp": 1, - "v": 12, - "par.": 1, - "str2num": 1, - "Call": 2, - "which": 2, - "resides": 2, - "same": 2, - "directory": 2, - "value1": 4, - "semicolon": 2, - "not": 3, - "mandatory": 2, - "suppresses": 2, - "output": 7, - "command": 2, - "line.": 2, - "value2": 4, - "z": 3, - "*vx_0": 1, - "Integrate_FILE": 1, - "Potential": 1, - "d_mean": 3, - "d_std": 3, - "normalize": 1, - "repmat": 2, - "std": 1, - "d./": 1, - "bicycle_state_space": 1, - "dbstack": 1, - "CURRENT_DIRECTORY": 2, - "fileparts": 1, - ".file": 1, - "states": 7, - "defaultSettings.states": 1, - "defaultSettings.inputs": 1, - "defaultSettings.outputs": 1, - "userSettings": 3, - "struct": 1, - "settings": 3, - "overwrite_settings": 2, - "defaultSettings": 3, - "minStates": 2, - "settings.states": 3, - "keepStates": 2, - "removeStates": 1, - "row": 6, - "col": 5, - "removeInputs": 2, - "settings.inputs": 1, - "keepOutputs": 2, - "settings.outputs": 1, - "It": 1, - "possible": 1, - "keep": 1, - "because": 1, - "it": 1, - "depends": 1, - "StateName": 1, - "OutputName": 1, - "InputName": 1, - "roots": 3, - "*mu": 6, - "c3": 3, - "filtfcn": 2, - "statefcn": 2, - "makeFilter": 1, - "@iirFilter": 1, - "@getState": 1, - "yn": 2, - "iirFilter": 1, - "xn": 4, - "vOut": 2, - "getState": 1, - "choose_plant": 4, - "p": 7, - "clc": 1, - "x_min": 3, - "x_max": 3, - "y_min": 3, - "y_max": 3, - "how": 1, - "many": 1, - "measure": 1, - "unit": 1, - "both": 1, - "ds": 1, - "x_res": 7, - "*n": 2, - "y_res": 7, - "grid_x": 3, - "grid_y": 3, - "@dg": 1, - "*ds": 4, - "location": 1, - "EastOutside": 1, "fun": 5, "th": 1, "Runge": 1, @@ -42157,68 +46142,171 @@ "h/6*": 1, "*k2": 1, "*k3": 1, - "overrideSettings": 3, - "overrideNames": 2, - "defaultNames": 2, - "notGiven": 5, - "setxor": 1, - "settings.": 1, - "defaultSettings.": 1, - "lane_change": 1, - "start": 4, - "width": 3, - "slope": 3, - "pathLength": 3, - "single": 1, - "double": 1, - "Double": 1, - "lane": 4, - "change": 1, - "needs": 1, - "lane.": 1, - "laneLength": 4, - "startOfSlope": 3, - "endOfSlope": 1, - "<=>": 1, - "1": 1, - "downSlope": 3, - "name": 4, - "convert_variable": 1, - "coordinates": 6, - "get_variables": 2, - "columns": 4, - "t1": 6, - "t2": 6, - "t3": 1, - "dataPlantOne": 3, - "dataAdapting": 3, - "dataPlantTwo": 3, - "guessPlantOne": 4, - "resultPlantOne": 1, - "find_structural_gains": 2, - "yh": 2, - "fit": 6, - "compare": 3, - "resultPlantOne.fit": 1, - "guessPlantTwo": 3, - "resultPlantTwo": 1, - "resultPlantTwo.fit": 1, - "resultPlantOne.fit.par": 1, - "resultPlantTwo.fit.par": 1, - "uses": 1, - "tau": 1, - "through": 1, - "wfs": 1, - "plantOneSlopeOffset": 3, - "plantTwoSlopeOffset": 3, - "idnlgrey": 1, - "pem": 1 + "ret": 3, + "Transforming": 1, + "into": 1, + "Hamiltonian": 1, + "variables": 2, + "px_0": 2, + "py_0": 2, + "px_T": 4, + "py_T": 4, + "inf": 1, + "@cr3bp_jac": 1, + "@fH": 1, + "EnergyH": 1, + "t_integr": 1, + "Back": 1, + "Inf": 1, + "_e": 1, + "_H": 1 + }, + "Maven POM": { + "": 1, + "version=": 1, + "encoding=": 1, + "": 1, + "xmlns=": 1, + "xmlns": 1, + "xsi=": 1, + "xsi": 1, + "schemaLocation=": 1, + "": 1, + "": 1, + "": 28, + "renpengben": 1, + "": 28, + "": 28, + "spring4mvc": 3, + "-": 36, + "jpa": 4, + "": 28, + "": 1, + "war": 1, + "": 1, + "": 26, + "SNAPSHOT": 1, + "": 26, + "": 1, + "Maven": 1, + "Webapp": 1, + "": 1, + "": 1, + "https": 1, + "//renpengben.github.io": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "UTF": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "RELEASE": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "_3": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "Final": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 24, + "junit": 4, + "{": 24, + "junit.version": 1, + "}": 24, + "": 4, + "test": 3, + "": 4, + "": 24, + "org.slf4j": 2, + "slf4j": 2, + "api": 1, + "slf4j.version": 2, + "log4j12": 1, + "log4j": 2, + "log4j.version": 1, + "org.springframework": 13, + "spring": 14, + "core": 2, + "spring.version": 13, + "": 2, + "": 2, + "commons": 2, + "logging": 2, + "": 2, + "": 2, + "beans": 1, + "context": 2, + "aop": 1, + "expression": 1, + "tx": 1, + "aspects": 1, + "support": 1, + "jdbc": 1, + "orm": 1, + "web": 1, + "webmvc": 1, + "org.springframework.data": 1, + "data": 1, + "spring.data.jpa.version": 1, + "dep": 1, + "cglib": 2, + "nodep": 1, + "cglib.version": 1, + "org.hibernate": 3, + "hibernate": 4, + "hibernate.version": 2, + "entitymanager": 1, + "validator": 1, + "validator.version": 1, + "compile": 1, + "mysql": 2, + "connector": 1, + "java": 1, + "mysql.version": 1, + "runtime": 1, + "com.alibaba": 1, + "druid": 2, + "version": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "org.apache.maven.plugins": 1, + "maven": 1, + "compiler": 1, + "plugin": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1 }, "Max": { - "{": 126, - "}": 126, - "[": 163, - "]": 163, "max": 1, "v2": 1, ";": 39, @@ -42253,7 +46341,11 @@ "Hello": 1, "connect": 13, "fasten": 1, - "pop": 1 + "pop": 1, + "{": 126, + "}": 126, + "[": 163, + "]": 163 }, "MediaWiki": { "Overview": 1, @@ -42536,7 +46628,7 @@ "%": 416, "-": 6967, "module": 46, - "rot13_verbose.": 1, + "rot13_ralph.": 1, "interface.": 13, "import_module": 126, "io.": 8, @@ -42544,1327 +46636,52 @@ "main": 15, "(": 3351, "io__state": 4, - ")": 3351, - ".": 610, - "mode": 8, "di": 54, "uo": 58, + ")": 3351, "is": 246, "det.": 184, "implementation.": 12, - "char": 10, "int": 129, "require.": 6, - "rot13a/2": 1, - "A": 14, - "table": 1, - "to": 16, - "map": 7, - "the": 27, - "alphabetic": 2, - "characters": 1, - "their": 1, - "rot13": 11, - "equivalents": 1, - "fails": 1, - "if": 15, - "input": 1, - "not": 7, - "rot13a": 55, - "in": 510, - "out": 337, - "semidet.": 10, - "rot13/2": 1, - "Applies": 1, - "algorithm": 1, - "a": 10, - "character.": 1, - "Char": 12, - "RotChar": 8, - "TmpChar": 2, - "then": 3, - "else": 8, - "io__read_char": 1, - "Res": 8, + "io__read_byte": 1, + "Result": 4, "{": 27, "ok": 3, + "X": 9, "}": 28, - "io__write_char": 1, + "io__write_byte": 1, + "rot13": 11, ";": 913, "eof": 6, "error": 7, - "ErrorCode": 4, - "io__error_message": 2, - "ErrorMessage": 4, - "io__stderr_stream": 1, - "StdErr": 8, - "io__write_string": 2, - "io__nl": 1, - "hello.": 1, - "io": 6, - "IO": 4, - "io.write_string": 1, - "rot13_concise.": 1, - "state": 3, - "string.": 7, - "alphabet": 3, - "cycle": 4, - "rot_n": 2, - "N": 6, - "char_to_string": 1, - "CharString": 2, - "sub_string_search": 1, - "Index": 3, - "NewIndex": 2, - "+": 127, - "mod": 1, - "*": 20, - "//": 2, - "index_det": 1, - "read_char": 1, - "print": 3, - "error_message": 1, - "stderr_stream": 1, - "nl": 1, - "rot13_ralph.": 1, - "io__read_byte": 1, - "Result": 4, - "X": 9, - "io__write_byte": 1, "ErrNo": 2, + "io__error_message": 2, + ".": 610, "func": 24, "int.": 4, + "if": 15, "z": 1, + "then": 3, "Rot13": 2, + "A": 14, "<": 14, + "else": 8, "C": 34, + "+": 127, "rem": 1, - "ll_backend.code_info.": 1, - "check_hlds.type_util.": 2, - "hlds.code_model.": 1, - "hlds.hlds_data.": 2, - "hlds.hlds_goal.": 2, - "hlds.hlds_llds.": 1, - "hlds.hlds_module.": 2, - "hlds.hlds_pred.": 2, - "hlds.instmap.": 2, - "libs.globals.": 2, - "ll_backend.continuation_info.": 1, - "ll_backend.global_data.": 1, - "ll_backend.layout.": 1, - "ll_backend.llds.": 1, - "ll_backend.trace_gen.": 1, - "mdbcomp.prim_data.": 3, - "mdbcomp.goal_path.": 2, - "parse_tree.prog_data.": 2, - "parse_tree.set_of_var.": 2, - "assoc_list.": 3, - "bool.": 4, - "counter.": 1, - "list.": 4, - "map.": 3, - "maybe.": 3, - "set.": 4, - "set_tree234.": 1, - "term.": 3, - "backend_libs.builtin_ops.": 1, - "backend_libs.proc_label.": 1, - "hlds.arg_info.": 1, - "hlds.hlds_desc.": 1, - "hlds.hlds_rtti.": 2, "libs.options.": 3, - "libs.trace_params.": 1, - "ll_backend.code_util.": 1, - "ll_backend.opt_debug.": 1, - "ll_backend.var_locn.": 1, - "parse_tree.builtin_lib_types.": 2, - "parse_tree.prog_type.": 2, - "parse_tree.mercury_to_mercury.": 1, - "cord.": 1, - "pair.": 3, - "stack.": 1, - "varset.": 2, - "type": 57, - "code_info.": 1, - "code_info_init": 2, - "bool": 406, - "globals": 5, - "pred_id": 15, - "proc_id": 12, - "pred_info": 20, - "proc_info": 11, - "abs_follow_vars": 3, - "module_info": 26, - "static_cell_info": 4, - "const_struct_map": 3, - "resume_point_info": 11, - "trace_slot_info": 3, - "maybe": 20, - "containing_goal_map": 4, - "list": 82, - "string": 115, - "code_info": 208, - "get_globals": 5, - "get_exprn_opts": 2, - "exprn_opts": 3, - "get_module_info": 7, - "get_pred_id": 6, - "get_proc_id": 5, - "get_pred_info": 2, - "get_proc_info": 4, - "get_varset": 3, - "prog_varset": 14, - "get_var_types": 3, - "vartypes.": 1, - "get_maybe_trace_info": 2, - "trace_info": 3, - "get_emit_trail_ops": 2, - "add_trail_ops": 5, - "get_emit_region_ops": 2, - "add_region_ops": 6, - "get_forward_live_vars": 2, - "set_of_progvar": 10, - "set_forward_live_vars": 2, - "get_instmap": 4, - "instmap": 3, - "set_instmap": 3, - "get_par_conj_depth": 2, - "set_par_conj_depth": 2, - "get_label_counter": 3, - "counter": 6, - "get_succip_used": 2, - "get_layout_info": 4, - "proc_label_layout_info": 3, - "get_proc_trace_events": 2, - "set_proc_trace_events": 2, - "get_closure_layouts": 3, - "closure_proc_id_data": 4, - "get_max_reg_in_use_at_trace": 2, - "set_max_reg_in_use_at_trace": 2, - "get_created_temp_frame": 2, - "get_static_cell_info": 5, - "set_static_cell_info": 5, - "get_alloc_sites": 3, - "set_tree234": 3, - "alloc_site_info": 4, - "set_alloc_sites": 3, - "get_used_env_vars": 2, - "set": 16, - "set_used_env_vars": 2, - "get_opt_trail_ops": 2, - "get_opt_region_ops": 2, - "get_auto_comments": 2, - "get_lcmc_null": 2, - "get_containing_goal_map": 3, - "get_containing_goal_map_det": 2, - "get_const_struct_map": 2, - "add_out_of_line_code": 2, - "llds_code": 21, - "get_out_of_line_code": 2, - "get_var_slot_count": 2, - "set_maybe_trace_info": 3, - "get_opt_no_return_calls": 2, - "get_zombies": 2, - "set_zombies": 2, - "get_var_locn_info": 7, - "var_locn_info": 3, - "set_var_locn_info": 4, - "get_temps_in_use": 6, - "lval": 114, - "set_temps_in_use": 4, - "get_fail_info": 13, - "fail_info": 24, - "set_fail_info": 9, - "set_label_counter": 3, - "set_succip_used": 3, - "set_layout_info": 4, - "get_max_temp_slot_count": 2, - "set_max_temp_slot_count": 2, - "get_temp_content_map": 3, - "slot_contents": 4, - "set_temp_content_map": 2, - "get_persistent_temps": 3, - "set_persistent_temps": 2, - "set_closure_layouts": 3, - "get_closure_seq_counter": 3, - "set_closure_seq_counter": 3, - "set_created_temp_frame": 2, - "code_info_static": 26, - "code_info_loc_dep": 22, - "code_info_persistent": 44, - "cis_globals": 2, - "cis_exprn_opts": 2, - "cis_module_info": 2, - "cis_pred_id": 2, - "cis_proc_id": 2, - "cis_pred_info": 2, - "cis_proc_info": 2, - "cis_proc_label": 1, - "proc_label": 2, - "cis_varset": 2, - "cis_var_slot_count": 2, - "cis_maybe_trace_info": 3, - "cis_opt_no_resume_calls": 2, - "cis_emit_trail_ops": 2, - "cis_opt_trail_ops": 2, - "cis_emit_region_ops": 2, - "cis_opt_region_ops": 2, - "cis_auto_comments": 2, - "cis_lcmc_null": 2, - "cis_containing_goal_map": 2, - "cis_const_struct_map": 2, - "cild_forward_live_vars": 3, - "cild_instmap": 3, - "cild_zombies": 3, - "cild_var_locn_info": 3, - "cild_temps_in_use": 3, - "cild_fail_info": 3, - "cild_par_conj_depth": 3, - "cip_label_num_src": 3, - "cip_store_succip": 3, - "cip_label_info": 3, - "cip_proc_trace_events": 3, - "cip_stackslot_max": 3, - "cip_temp_contents": 3, - "cip_persistent_temps": 3, - "cip_closure_layout_seq": 3, - "cip_closure_layouts": 3, - "cip_max_reg_r_used": 3, - "cip_max_reg_f_used": 2, - "cip_created_temp_frame": 3, - "cip_static_cell_info": 3, - "cip_alloc_sites": 3, - "cip_used_env_vars": 3, - "cip_ts_string_table_size": 3, - "cip_ts_rev_string_table": 4, - "cip_out_of_line_code": 4, - "SaveSuccip": 2, - "Globals": 32, - "PredId": 50, - "ProcId": 31, - "PredInfo": 64, - "ProcInfo": 43, - "FollowVars": 6, - "ModuleInfo": 49, - "StaticCellInfo": 8, - "ConstStructMap": 2, - "ResumePoint": 13, - "TraceSlotInfo": 5, - "MaybeContainingGoalMap": 5, - "TSRevStringTable": 2, - "TSStringTableSize": 2, - "CodeInfo": 2, - "ProcLabel": 8, - "make_proc_label": 1, - "proc_info_get_initial_instmap": 1, - "InstMap": 6, - "proc_info_get_liveness_info": 1, - "Liveness": 4, - "CodeModel": 8, - "proc_info_interface_code_model": 2, - "build_input_arg_list": 1, - "ArgList": 2, - "proc_info_get_varset": 1, - "VarSet": 15, - "proc_info_get_vartypes": 2, - "VarTypes": 22, - "proc_info_get_stack_slots": 1, - "StackSlots": 5, - "ExprnOpts": 4, - "init_exprn_opts": 3, - "globals.lookup_bool_option": 18, - "use_float_registers": 5, - "UseFloatRegs": 6, - "yes": 144, - "FloatRegType": 3, - "reg_f": 1, - "no": 365, - "reg_r": 2, - "globals.get_trace_level": 1, - "TraceLevel": 5, - "eff_trace_level_is_none": 2, - "trace_fail_vars": 1, - "FailVars": 3, - "MaybeFailVars": 3, - "set_of_var.union": 3, - "EffLiveness": 3, - "init_var_locn_state": 1, - "VarLocnInfo": 12, - "stack.init": 1, - "ResumePoints": 14, - "allow_hijacks": 3, - "AllowHijack": 3, - "Hijack": 6, - "allowed": 6, - "not_allowed": 5, - "DummyFailInfo": 2, - "resume_point_unknown": 9, - "may_be_different": 7, - "not_inside_non_condition": 2, - "map.init": 7, - "TempContentMap": 4, - "set.init": 7, - "PersistentTemps": 4, - "TempsInUse": 8, - "Zombies": 2, - "set_of_var.init": 1, - "LayoutMap": 2, - "max_var_slot": 1, - "VarSlotMax": 2, - "trace_reserved_slots": 1, - "FixedSlots": 2, - "_": 149, - "int.max": 1, - "SlotMax": 2, - "opt_no_return_calls": 3, - "OptNoReturnCalls": 2, - "use_trail": 3, - "UseTrail": 2, - "disable_trail_ops": 3, - "DisableTrailOps": 2, - "EmitTrailOps": 3, - "do_not_add_trail_ops": 1, - "optimize_trail_usage": 3, - "OptTrailOps": 2, - "optimize_region_ops": 3, - "OptRegionOps": 2, - "region_analysis": 3, - "UseRegions": 3, - "EmitRegionOps": 3, - "do_not_add_region_ops": 1, - "auto_comments": 4, - "AutoComments": 2, - "optimize_constructor_last_call_null": 3, - "LCMCNull": 2, - "CodeInfo0": 2, - "init_fail_info": 2, - "will": 1, - "override": 1, - "this": 4, - "dummy": 2, - "value": 16, - "nested": 1, - "parallel": 3, - "conjunction": 1, - "depth": 1, - "counter.init": 2, - "[": 203, - "]": 203, - "set_tree234.init": 1, - "cord.empty": 1, - "init_maybe_trace_info": 3, - "CodeInfo1": 2, - "exprn_opts.": 1, - "gcc_non_local_gotos": 3, - "OptNLG": 3, - "NLG": 3, - "have_non_local_gotos": 1, - "do_not_have_non_local_gotos": 1, - "asm_labels": 3, - "OptASM": 3, - "ASM": 3, - "have_asm_labels": 1, - "do_not_have_asm_labels": 1, - "static_ground_cells": 3, - "OptSGCell": 3, - "SGCell": 3, - "have_static_ground_cells": 1, - "do_not_have_static_ground_cells": 1, - "unboxed_float": 3, - "OptUBF": 3, - "UBF": 3, - "have_unboxed_floats": 1, - "do_not_have_unboxed_floats": 1, - "OptFloatRegs": 3, - "do_not_use_float_registers": 1, - "static_ground_floats": 3, - "OptSGFloat": 3, - "SGFloat": 3, - "have_static_ground_floats": 1, - "do_not_have_static_ground_floats": 1, - "static_code_addresses": 3, - "OptStaticCodeAddr": 3, - "StaticCodeAddrs": 3, - "have_static_code_addresses": 1, - "do_not_have_static_code_addresses": 1, - "trace_level": 4, - "CI": 294, - "proc_info_get_has_tail_call_events": 1, - "HasTailCallEvents": 3, - "tail_call_events": 1, - "get_next_label": 5, - "TailRecLabel": 2, - "MaybeTailRecLabel": 3, - "no_tail_call_events": 1, - "trace_setup": 1, - "TraceInfo": 2, - "MaxRegR": 4, - "MaxRegF": 4, - "cip_max_reg_f_used.": 1, - "TI": 4, - "LV": 2, - "IM": 2, - "Zs": 2, - "EI": 2, - "FI": 2, - "LC": 2, - "SU": 2, - "LI": 2, - "PTE": 2, - "TM": 2, - "CM": 2, - "PT": 2, - "CLS": 2, - "CG": 2, - "MR": 4, - "MF": 1, - "MF.": 1, - "SCI": 2, - "ASI": 2, - "UEV": 2, - "ContainingGoalMap": 2, - "unexpected": 21, - "NewCode": 2, - "Code0": 2, - ".CI": 29, - "Code": 36, - "Code.": 1, - "get_stack_slots": 2, - "stack_slots": 1, - "get_follow_var_map": 2, - "abs_follow_vars_map": 1, - "get_next_non_reserved": 2, - "reg_type": 1, - "set_follow_vars": 4, - "pre_goal_update": 3, - "hlds_goal_info": 22, - "has_subgoals": 2, - "post_goal_update": 3, - "body_typeinfo_liveness": 4, - "variable_type": 3, - "prog_var": 58, - "mer_type.": 1, - "variable_is_of_dummy_type": 2, - "is_dummy_type.": 1, - "search_type_defn": 4, - "mer_type": 21, - "hlds_type_defn": 1, - "lookup_type_defn": 2, - "hlds_type_defn.": 1, - "lookup_cheaper_tag_test": 2, - "maybe_cheaper_tag_test.": 1, - "filter_region_vars": 2, - "set_of_progvar.": 2, - "get_proc_model": 2, - "code_model.": 1, - "get_headvars": 2, - "get_arginfo": 2, - "arg_info": 2, - "get_pred_proc_arginfo": 3, - "current_resume_point_vars": 2, - "variable_name": 2, - "make_proc_entry_label": 2, - "code_addr.": 1, - "label": 5, - "succip_is_used": 2, - "add_trace_layout_for_label": 2, - "term.context": 3, - "trace_port": 1, - "forward_goal_path": 1, - "user_event_info": 1, - "layout_label_info": 2, - "get_cur_proc_label": 4, - "get_next_closure_seq_no": 2, - "add_closure_layout": 2, - "add_threadscope_string": 2, - "get_threadscope_rev_string_table": 2, - "add_scalar_static_cell": 2, - "typed_rval": 1, - "data_id": 3, - "add_scalar_static_cell_natural_types": 2, - "rval": 3, - "add_vector_static_cell": 2, - "llds_type": 1, - "add_alloc_site_info": 2, - "prog_context": 1, - "alloc_site_id": 2, - "add_resume_layout_for_label": 2, - "var_locn_get_stack_slots": 1, - "FollowVarMap": 2, - "var_locn_get_follow_var_map": 1, - "RegType": 2, - "NextNonReserved": 2, - "var_locn_get_next_non_reserved": 1, - "VarLocnInfo0": 4, - "var_locn_set_follow_vars": 1, - "GoalInfo": 44, - "HasSubGoals": 3, - "goal_info_get_resume_point": 1, - "no_resume_point": 1, - "resume_point": 1, - "goal_info_get_follow_vars": 1, - "MaybeFollowVars": 3, - "goal_info_get_pre_deaths": 1, - "PreDeaths": 3, - "rem_forward_live_vars": 3, - "maybe_make_vars_forward_dead": 2, - "goal_info_get_pre_births": 1, - "PreBirths": 2, - "add_forward_live_vars": 2, - "does_not_have_subgoals": 2, - "goal_info_get_post_deaths": 2, - "PostDeaths": 5, - "goal_info_get_post_births": 1, - "PostBirths": 3, - "make_vars_forward_live": 1, - "InstMapDelta": 2, - "goal_info_get_instmap_delta": 1, - "InstMap0": 2, - "instmap.apply_instmap_delta": 1, - "TypeInfoLiveness": 2, - "module_info_pred_info": 6, - "body_should_use_typeinfo_liveness": 1, - "Var": 13, - "Type": 18, - "lookup_var_type": 3, - "IsDummy": 2, - "VarType": 2, - "check_dummy_type": 1, - "TypeDefn": 6, - "type_to_ctor_det": 1, - "TypeCtor": 2, - "module_info_get_type_table": 1, - "TypeTable": 2, - "search_type_ctor_defn": 1, - "TypeDefnPrime": 2, - "CheaperTagTest": 3, - "get_type_defn_body": 1, - "TypeBody": 2, - "hlds_du_type": 1, - "CheaperTagTestPrime": 2, - "no_cheaper_tag_test": 1, - "ForwardLiveVarsBeforeGoal": 6, - "RegionVars": 2, - "code_info.get_var_types": 1, - "set_of_var.filter": 1, - "is_region_var": 1, - "HeadVars": 20, - "module_info_pred_proc_info": 4, - "proc_info_get_headvars": 2, - "ArgInfo": 4, - "proc_info_arg_info": 1, - "ResumeVars": 4, - "FailInfo": 19, - "ResumePointStack": 2, - "stack.det_top": 5, - "ResumePointInfo": 2, - "pick_first_resume_point": 1, - "ResumeMap": 8, - "map.keys": 3, - "ResumeMapVarList": 2, - "set_of_var.list_to_set": 3, - "Name": 4, - "Varset": 2, - "varset.lookup_name": 2, - "Immed0": 3, - "CodeAddr": 2, - "Immed": 3, - "globals.lookup_int_option": 1, - "procs_per_c_function": 3, - "ProcsPerFunc": 2, - "CurPredId": 2, - "CurProcId": 2, - "proc": 2, - "make_entry_label": 1, - "Label": 8, - "C0": 4, - "counter.allocate": 2, - "internal_label": 3, - "Context": 20, - "Port": 2, - "IsHidden": 2, - "GoalPath": 2, - "MaybeSolverEventInfo": 2, - "Layout": 2, - "Internals0": 8, - "Exec": 5, - "trace_port_layout_info": 1, - "LabelNum": 8, - "entry_label": 2, - "map.search": 2, - "Internal0": 4, - "internal_layout_info": 6, - "Exec0": 3, - "Resume": 5, - "Return": 6, - "Internal": 8, - "map.det_update": 4, - "Internals": 6, - "map.det_insert": 3, - "LayoutInfo": 2, - "Resume0": 3, - "get_active_temps_data": 2, - "assoc_list": 1, - "Temps": 2, - "map.select": 1, - "TempsInUseContentMap": 2, - "map.to_assoc_list": 3, - "cis_proc_label.": 1, - "SeqNo": 2, - "ClosureLayout": 2, - "ClosureLayouts": 2, - "|": 38, - "String": 2, - "SlotNum": 2, - "Size0": 3, - "RevTable0": 2, - "Size": 4, - "RevTable": 3, - "RevTable.": 1, - "TableSize": 2, - "cip_ts_string_table_size.": 1, - "RvalsTypes": 2, - "DataAddr": 6, - "StaticCellInfo0": 6, - "global_data.add_scalar_static_cell": 1, - "Rvals": 2, - "global_data.add_scalar_static_cell_natural_types": 1, - "Types": 6, - "Vector": 2, - "global_data.add_vector_static_cell": 1, - "AllocId": 2, - "AllocSite": 3, - "AllocSites0": 2, - "set_tree234.insert": 1, - "AllocSites": 2, - "position_info.": 1, - "branch_end_info.": 1, - "branch_end": 4, - "branch_end_info": 7, - "remember_position": 3, - "position_info": 14, - "reset_to_position": 4, - "reset_resume_known": 2, - "generate_branch_end": 2, - "abs_store_map": 3, - "after_all_branches": 2, - "save_hp_in_branch": 2, - "pos_get_fail_info": 3, - "fail_info.": 2, - "LocDep": 6, - "cild_fail_info.": 1, - "CurCI": 2, - "NextCI": 2, - "Static": 2, - "Persistent": 2, - "NextCI0": 4, - "TempsInUse0": 4, - "set.union": 2, - "BranchStart": 2, - "BranchStartFailInfo": 2, - "BSResumeKnown": 2, - "CurFailInfo": 2, - "CurFailStack": 2, - "CurCurfMaxfr": 2, - "CurCondEnv": 2, - "CurHijack": 2, - "NewFailInfo": 2, - "StoreMap": 8, - "MaybeEnd0": 3, - "MaybeEnd": 6, - "AbsVarLocs": 3, - "assoc_list.values": 1, - "AbsLocs": 2, - "code_util.max_mentioned_abs_regs": 1, - "instmap_is_reachable": 1, - "VarLocs": 2, - "assoc_list.map_values_only": 2, - "abs_locn_to_lval": 2, - "place_vars": 1, - "remake_with_store_map": 4, - "empty": 9, - "EndCodeInfo1": 5, - "EndCodeInfo0": 3, - "FailInfo0": 13, - "FailInfo1": 2, - "ResumeKnown0": 5, - "CurfrMaxfr0": 2, - "CondEnv0": 3, - "Hijack0": 2, - "R": 2, - "ResumeKnown1": 2, - "CurfrMaxfr1": 2, - "CondEnv1": 2, - "Hijack1": 2, - "resume_point_known": 15, - "Redoip0": 3, - "Redoip1": 2, - "ResumeKnown": 21, - "expect": 15, - "unify": 21, - "must_be_equal": 11, - "CurfrMaxfr": 24, - "EndCodeInfoA": 2, - "TempsInUse1": 2, - "EndCodeInfo": 2, - "BranchEnd": 2, - "BranchEndCodeInfo": 2, - "BranchEndLocDep": 2, - "VarLocns": 2, - "VarLvals": 2, - "reinit_var_locn_state": 1, - "Slot": 2, - "Pos0": 2, - "Pos": 2, - "CI0": 2, - "CIStatic0": 2, - "CILocDep0": 2, - "CIPersistent0": 2, - "LocDep0": 2, - "CI1": 2, - "save_hp": 1, - "CI2": 2, - "CIStatic": 2, - "CIPersistent": 2, - "resume_map.": 1, - "resume_point_info.": 1, - "disj_hijack_info.": 1, - "prepare_for_disj_hijack": 2, - "code_model": 3, - "disj_hijack_info": 3, - "undo_disj_hijack": 2, - "ite_hijack_info.": 1, - "prepare_for_ite_hijack": 2, - "embedded_stack_frame_id": 3, - "ite_hijack_info": 3, - "ite_enter_then": 2, - "simple_neg_info.": 1, - "enter_simple_neg": 2, - "simple_neg_info": 3, - "leave_simple_neg": 2, - "det_commit_info.": 1, - "prepare_for_det_commit": 2, - "det_commit_info": 6, - "generate_det_commit": 2, - "semi_commit_info.": 1, - "prepare_for_semi_commit": 2, - "semi_commit_info": 6, - "generate_semi_commit": 2, - "effect_resume_point": 2, - "pop_resume_point": 1, - "top_resume_point": 1, - "set_resume_point_to_unknown": 1, - "set_resume_point_and_frame_to_unknown": 1, - "generate_failure": 2, - "fail_if_rval_is_false": 1, - "failure_is_direct_branch": 1, - "code_addr": 8, - "may_use_nondet_tailcall": 1, - "nondet_tail_call": 1, - "produce_vars": 1, - "resume_map": 9, - "flush_resume_vars_to_stack": 1, - "make_resume_point": 1, - "resume_locs": 1, - "generate_resume_point": 2, - "resume_point_vars": 1, - "resume_point_stack_addr": 2, - "stack": 1, - "curfr_vs_maxfr": 2, - "condition_env": 3, - "hijack_allowed": 2, - "orig_only": 2, - "stack_only": 2, - "orig_and_stack": 1, - "stack_and_orig": 1, - "redoip_update": 2, - "has_been_done": 5, - "wont_be_done.": 1, - "resume_point_unknown.": 1, - "may_be_different.": 1, - "inside_non_condition": 6, - "not_inside_non_condition.": 1, - "not_allowed.": 1, - "disj_no_hijack": 4, - "disj_temp_frame": 4, - "disj_quarter_hijack": 4, - "disj_half_hijack": 3, - "disj_full_hijack": 3, - "HijackInfo": 29, - "CondEnv": 12, - "Allow": 12, - "model_det": 2, - "model_semi": 3, - "singleton": 28, - "llds_instr": 64, - "comment": 5, - "model_non": 2, - "create_temp_frame": 4, - "do_fail": 6, - "stack.pop": 1, - "TopResumePoint": 6, - "RestResumePoints": 2, - "stack.is_empty": 1, - "wont_be_done": 2, - "acquire_temp_slot": 15, - "slot_lval": 14, - "redoip_slot": 30, - "curfr": 18, - "non_persistent_temp_slot": 15, - "RedoipSlot": 33, - "assign": 46, - "maxfr": 42, - "redofr_slot": 14, - "RedofrSlot": 17, - "from_list": 13, - "prevfr_slot": 3, - "pick_stack_resume_point": 3, - "StackLabel": 9, - "LabelConst": 4, - "const": 10, - "llconst_code_addr": 6, - "true": 3, - "ite_region_info": 5, - "ite_info": 3, - "ite_hijack_type": 2, - "ite_no_hijack": 3, - "ite_temp_frame": 3, - "ite_quarter_hijack": 3, - "ite_half_hijack": 3, - "ite_full_hijack": 3, - "CondCodeModel": 4, - "MaybeEmbeddedFrameId": 5, - "HijackType": 12, - "MaybeRegionInfo": 12, - "MaxfrSlot": 30, - "TempFrameCode": 4, - "MaxfrCode": 7, - "EmbeddedFrameId": 2, - "slot_success_record": 1, - "persistent_temp_slot": 1, - "SuccessRecordSlot": 6, - "InitSuccessCode": 3, - "llconst_false": 1, - "ITEResumePoint": 2, - "ThenCode": 10, - "ElseCode": 7, - "ResumePoints0": 5, - "stack.det_pop": 1, - "HijackResumeKnown": 2, - "OldCondEnv": 2, - "RegionInfo": 2, - "EmbeddedStackFrameId": 2, - "ITEStackResumeCodeAddr": 2, - "llconst_true": 1, - "AfterRegionOp": 3, - "if_val": 1, - "unop": 1, - "logical_not": 1, - "code_label": 2, - "use_and_maybe_pop_region_frame": 1, - "region_ite_nondet_cond_fail": 1, - "goto": 2, - "maybe_pick_stack_resume_point": 1, - "ResumeMap0": 2, - "make_fake_resume_map": 5, - "do_redo": 1, - "is_empty": 1, - "Vars": 10, - "Locns": 2, - "set.make_singleton_set": 1, - "reg": 1, - "pair": 7, - "region_commit_stack_frame": 5, - "AddTrailOps": 4, - "AddRegionOps": 5, - "CommitGoalInfo": 4, - "DetCommitInfo": 4, - "SaveMaxfrCode": 3, - "save_maxfr": 3, - "MaybeMaxfrSlot": 6, - "maybe_save_trail_info": 2, - "MaybeTrailSlots": 8, - "SaveTrailCode": 4, - "maybe_save_region_commit_frame": 4, - "MaybeRegionCommitFrameInfo": 8, - "SaveRegionCommitFrameCode": 2, - "SaveRegionCommitFrameCode.": 2, - "RestoreMaxfrCode": 3, - "restore_maxfr": 3, - "release_temp_slot": 1, - "maybe_restore_trail_info": 2, - "CommitTrailCode": 4, - "maybe_restore_region_commit_frame": 2, - "SuccessRegionCode": 3, - "_FailureRegionCode": 1, - "SuccessRegionCode.": 1, - "commit_hijack_info": 2, - "commit_temp_frame": 3, - "commit_quarter_hijack": 3, - "commit_half_hijack": 3, - "commit_full_hijack": 3, - "SemiCommitInfo": 4, - "clone_resume_point": 1, - "NewResumePoint": 4, - "stack.push": 1, - "StackLabelConst": 7, - "use_minimal_model_stack_copy_cut": 3, - "UseMinimalModelStackCopyCut": 4, - "Components": 4, - "foreign_proc_raw_code": 4, - "cannot_branch_away": 4, - "proc_affects_liveness": 2, - "live_lvals_info": 4, - "proc_does_not_affect_liveness": 2, - "MD": 4, - "proc_may_duplicate": 2, - "MarkCode": 3, - "foreign_proc_code": 2, - "proc_will_not_call_mercury": 2, - "HijackCode": 5, - "UseMinimalModel": 3, - "CutCode": 4, - "SuccessUndoCode": 5, - "FailureUndoCode": 5, - "AfterCommit": 2, - "ResumePointCode": 2, - "FailCode": 2, - "RestoreTrailCode": 2, - "FailureRegionCode": 2, - "SuccLabel": 3, - "GotoSuccLabel": 2, - "SuccLabelCode": 1, - "SuccessCode": 2, - "FailureCode": 2, - "SuccLabelCode.": 1, - "_ForwardLiveVarsBeforeGoal": 1, - "store.": 1, - "typeclass": 1, - "store": 52, - "T": 52, - "where": 8, - "S": 133, - "instance": 4, - "io.state": 3, - "some": 4, - "store.init": 2, - "generic_mutvar": 15, - "io_mutvar": 1, - "store_mutvar": 1, - "store.new_mutvar": 1, - "det": 21, - "store.copy_mutvar": 1, - "store.get_mutvar": 1, - "store.set_mutvar": 1, - "<=>": 5, - "new_cyclic_mutvar": 2, - "Func": 4, - "Mutvar": 23, - "Create": 1, - "new": 25, - "mutable": 3, - "variable": 1, - "whose": 2, - "initialized": 2, - "with": 5, - "returned": 1, - "from": 1, - "specified": 1, - "function": 3, - "The": 2, - "argument": 6, - "passed": 2, - "mutvar": 6, - "itself": 4, - "has": 4, - "yet": 1, - "been": 1, - "safe": 2, - "because": 1, - "does": 3, - "get": 2, - "so": 3, - "it": 1, - "can": 1, - "t": 5, - "examine": 1, - "uninitialized": 1, - "This": 2, - "predicate": 1, - "useful": 1, - "for": 8, - "creating": 1, - "self": 1, - "referential": 1, - "values": 1, - "such": 2, - "as": 5, - "circular": 1, - "linked": 1, - "lists": 1, - "For": 1, - "example": 1, - "clist": 2, - "node": 1, - "store.new_cyclic_mutvar": 1, - "generic_ref": 20, - "io_ref": 1, - "store_ref": 1, - "store.new_ref": 1, - "store.ref_functor": 1, - "store.arg_ref": 1, - "ArgT": 4, - "store.new_arg_ref": 3, - "store.set_ref": 1, - "store.set_ref_value": 1, - "store.copy_ref_value": 1, - "store.extract_ref_value": 1, - "Nasty": 1, - "performance": 2, - "hacks": 1, - "WARNING": 1, - "use": 1, - "of": 10, - "these": 1, - "procedures": 2, - "dangerous": 1, - "Use": 1, - "them": 1, - "only": 4, - "last": 1, - "resort": 1, - "critical": 1, - "and": 6, - "profiling": 5, - "shows": 1, - "that": 2, - "using": 1, - "versions": 1, - "bottleneck": 1, - "These": 1, - "may": 1, - "vanish": 1, - "future": 1, - "version": 3, - "Mercury": 1, - "unsafe_arg_ref": 1, - "same": 2, - "arg_ref": 12, - "unsafe_new_arg_ref": 1, - "new_arg_ref": 1, - "except": 1, - "they": 4, - "doesn": 1, - "check": 1, - "errors": 1, - "don": 3, - "work": 3, - "no_tag": 1, - "types": 3, - "exactly": 2, - "one": 2, - "functor": 2, - "which": 2, - "arguments": 2, - "occupy": 1, - "word": 2, - "other": 1, - "functors.": 1, - "store.unsafe_arg_ref": 1, - "store.unsafe_new_arg_ref": 1, - "implementation": 1, - "deconstruct": 2, - "require": 1, - "just": 1, - "real": 1, - "representation": 1, - "pragma": 41, - "foreign_type": 10, - "MR_Word": 24, - "can_pass_as_mercury_type": 5, - "equality": 5, - "store_equal": 7, - "comparison": 5, - "store_compare": 7, - "IL": 2, - "int32": 1, - "Java": 12, - "Erlang": 3, - "semidet": 2, - "attempt": 2, - "two": 2, - "stores": 2, - "comparison_result": 1, - "compare": 1, - "Mutvars": 1, - "references": 1, - "are": 1, - "each": 1, - "represented": 1, - "pointer": 1, - "single": 1, - "on": 1, - "heap": 1, - "private_builtin.ref": 2, - "ref": 2, - "store.do_init": 6, - "foreign_proc": 28, - "_S0": 16, - "will_not_call_mercury": 28, - "promise_pure": 30, - "will_not_modify_trail": 7, - "new_mutvar": 5, - "Val": 45, - "S0": 23, - "get_mutvar": 5, - "set_mutvar": 5, - "_S": 12, - "copy_mutvar": 1, - "Copy": 2, - "Value": 4, - "store.unsafe_new_uninitialized_mutvar": 1, - "unsafe_new_uninitialized_mutvar": 4, - "MR_offset_incr_hp_msg": 5, - "MR_SIZE_SLOT_SIZE": 10, - "1": 5, - "MR_ALLOC_ID": 5, - "2": 2, - "MR_define_size_slot": 5, - "0": 2, - "object": 21, - "MutVar": 4, - "Store": 5, - "apply": 1, - "Ref": 41, - "foreign_code": 2, - "public": 17, - "class": 4, - "Object": 9, - "referenced": 4, - "obj": 7, - "Specific": 2, - "field": 20, - "or": 2, - "null": 8, - "specify": 2, - "XXX": 3, - "GetFields": 2, - "return": 6, - "fields": 3, - "any": 2, - "particular": 2, - "order": 2, - "really": 2, - "usable": 2, - "System": 1, - "Reflection": 1, - "FieldInfo": 1, - "Constructors": 2, - "init": 8, - "num": 11, - "setField": 4, - "Set": 2, - "according": 2, - "given": 2, - "index": 2, - "void": 4, - "GetType": 1, - "reference": 4, - "getValue": 4, - "GetValue": 1, - "Update": 2, - "setValue": 2, - "SetValue": 1, - "java": 35, - "static": 1, - "lang": 28, - "getDeclaredFields": 2, - "reflect": 1, - "Field": 5, - "try": 3, - "getClass": 1, - "catch": 11, - "SecurityException": 1, - "se": 1, - "throw": 11, - "RuntimeException": 11, - "Security": 1, - "manager": 1, - "denied": 1, - "access": 3, - "ArrayIndexOutOfBoundsException": 1, - "e": 13, - "No": 1, - "Exception": 3, - "Unable": 3, - "getMessage": 3, - "IllegalAccessException": 2, - "inaccessible": 2, - "IllegalArgumentException": 2, - "mismatch": 2, - "NullPointerException": 2, - "new_ref": 4, - "ets": 3, - "insert": 1, - "copy_ref_value": 1, - "unsafe_ref_value": 6, - "store.unsafe_ref_value": 1, - "lookup": 1, - "ref_functor": 1, - "Functor": 6, - "Arity": 5, - "canonicalize": 1, - "foreign_decl": 1, - "include": 4, - "mercury_type_info": 1, - "h": 4, - "mercury_heap": 1, - "mercury_misc": 1, - "MR_fatal_error": 5, - "mercury_deconstruct": 1, - "MR_arg": 3, - "ArgNum": 7, - "ArgRef": 22, - "may_not_duplicate": 1, - "MR_TypeInfo": 10, - "type_info": 8, - "arg_type_info": 6, - "exp_arg_type_info": 6, - "MR_DuArgLocn": 2, - "arg_locn": 9, - "TypeInfo_for_T": 2, - "TypeInfo_for_ArgT": 2, - "MR_save_transient_registers": 2, - "MR_NONCANON_ABORT": 2, - "number": 2, - "range": 2, - "MR_compare_type_info": 2, - "MR_COMPARE_EQUAL": 2, - "wrong": 2, - "MR_restore_transient_registers": 2, - "NULL": 2, - "MR_arg_bits": 2, - "store.ref/2": 3, - "MR_arg_value": 2, - "C#": 6, - "store.Ref": 8, - "Ref.getValue": 6, - "*arg_ref": 1, - "*arg_locn": 1, - "&": 7, - "&&": 1, - "ValRef": 1, - "Ref.setValue": 3, - "ValRef.getValue": 2, - "*Ptr": 2, - "Ptr": 4, - "MR_strip_tag": 2, - "Arg": 6, "char.": 1, "getopt_io.": 1, + "set.": 4, "short_option": 36, + "char": 10, + "in": 510, "option": 9, + "out": 337, + "semidet.": 10, "long_option": 241, + "string": 115, "option_defaults": 2, "option_data": 2, "nondet.": 1, @@ -43873,11 +46690,15 @@ "option_table": 5, "maybe_option_table": 3, "inconsequential_options": 1, + "set": 16, "options_help": 1, + "io": 6, + "type": 57, "option_table_add_mercury_library_directory": 1, "option_table.": 2, "option_table_add_search_library_files_directory": 1, "quote_arg": 1, + "string.": 7, "inhibit_warnings": 4, "inhibit_accumulator_warnings": 3, "halt_at_warn": 3, @@ -43958,6 +46779,7 @@ "deduction/deforestation": 1, "debug_il_asm": 3, "il_asm": 1, + "IL": 2, "generation": 1, "via": 1, "asm": 1, @@ -44004,6 +46826,7 @@ "generate_item_version_numbers": 2, "generate_mmc_make_module_dependencies": 4, "assume_gmake": 3, + "trace_level": 4, "trace_optimized": 4, "trace_prof": 3, "trace_table_io": 3, @@ -44022,6 +46845,7 @@ "force_disable_ssdebug": 3, "generate_bytecode": 3, "line_numbers": 4, + "auto_comments": 4, "frameopt_comments": 3, "max_error_line_width": 3, "show_dependency_graph": 3, @@ -44062,6 +46886,7 @@ "il_only": 4, "compile_to_c": 4, "c": 1, + "java": 35, "java_only": 4, "csharp": 6, "csharp_only": 4, @@ -44071,6 +46896,7 @@ "erlang_only": 4, "exec_trace": 3, "decl_debug": 3, + "profiling": 5, "profile_time": 5, "profile_calls": 6, "time_profiling": 3, @@ -44099,7 +46925,9 @@ "record_term_sizes_as_cells": 2, "experimental_complexity": 2, "gc": 2, + "parallel": 3, "threadscope": 2, + "use_trail": 3, "trail_segments": 2, "use_minimal_model_stack_copy": 2, "use_minimal_model_own_stacks": 2, @@ -44123,12 +46951,16 @@ "bits_per_word": 2, "bytes_per_word": 2, "conf_low_tag_bits": 2, + "unboxed_float": 3, "unboxed_enums": 2, "unboxed_no_tag_types": 2, "sync_term_size": 2, "words": 1, + "gcc_non_local_gotos": 3, "gcc_global_registers": 2, + "asm_labels": 3, "pic_reg": 2, + "use_float_registers": 5, "highlevel_code": 3, "highlevel_data": 2, "gcc_nested_functions": 2, @@ -44146,6 +46978,7 @@ "agc_stack_layout": 2, "procid_stack_layout": 2, "trace_stack_layout": 2, + "body_typeinfo_liveness": 4, "can_compare_constants_as_ints": 2, "pretest_equality_cast_pointers": 2, "can_compare_compound_values": 2, @@ -44162,6 +46995,8 @@ "disable_minimal_model_stack_copy_pneg": 2, "disable_minimal_model_stack_copy_cut": 2, "use_minimal_model_stack_copy_pneg": 2, + "use_minimal_model_stack_copy_cut": 3, + "disable_trail_ops": 3, "size_region_ite_fixed": 2, "size_region_disj_fixed": 2, "size_region_semi_disj_fixed": 1, @@ -44198,10 +47033,12 @@ "fact_table_hash_percent_full": 2, "gcc_local_labels": 2, "prefer_switch": 2, + "opt_no_return_calls": 3, "opt_level": 3, "opt_level_number": 2, "opt_space": 2, "Default": 3, + "to": 16, "optimize": 3, "time.": 1, "intermodule_optimization": 2, @@ -44242,6 +47079,7 @@ "user_guided_type_specialization": 2, "introduce_accumulators": 2, "optimize_constructor_last_call_accumulator": 2, + "optimize_constructor_last_call_null": 3, "optimize_constructor_last_call": 2, "optimize_duplicate_calls": 2, "constant_propagation": 2, @@ -44272,6 +47110,8 @@ "deforestation_vars_threshold": 2, "deforestation_size_threshold": 2, "analyse_trail_usage": 2, + "optimize_trail_usage": 3, + "optimize_region_ops": 3, "analyse_mm_tabling": 2, "untuple": 2, "tuple": 2, @@ -44281,6 +47121,7 @@ "inline_par_builtins": 2, "always_specialize_in_dep_par_conjs": 2, "allow_some_paths_only_waits": 2, + "region_analysis": 3, "structure_sharing_analysis": 2, "structure_sharing_widening": 2, "structure_reuse_analysis": 2, @@ -44317,9 +47158,13 @@ "binary_switch_size": 2, "switch_single_rec_base_first": 2, "switch_multi_rec_base_first": 2, + "static_ground_cells": 3, + "static_ground_floats": 3, + "static_code_addresses": 3, "use_atomic_cells": 2, "middle_rec": 2, "simple_neg": 2, + "allow_hijacks": 3, "optimize_tailcalls": 2, "optimize_initializations": 2, "eliminate_local_vars": 2, @@ -44328,6 +47173,7 @@ "common_layout_data": 2, "Also": 1, "used": 2, + "for": 8, "MLDS": 2, "optimizations.": 1, "optimize_peep": 2, @@ -44349,6 +47195,7 @@ "layout_compression_limit": 2, "use_macro_for_redo_fail": 2, "emit_c_loops": 2, + "procs_per_c_function": 3, "everything_in_one_c_function": 2, "local_thread_engine_base": 2, "erlang_switch_on_strings_as_atoms": 2, @@ -44520,6 +47367,7 @@ "typecheck_ambiguity_warn_limit": 2, "typecheck_ambiguity_error_limit": 2, "help": 4, + "version": 3, "fullarch": 2, "cross_compiling": 2, "local_module_id": 2, @@ -44534,7 +47382,13 @@ "par_loop_control": 2, "par_loop_control_preserve_tail_recursion.": 1, "libs.handle_options.": 1, + "assoc_list.": 3, + "bool.": 4, "dir.": 1, + "list.": 4, + "map.": 3, + "maybe.": 3, + "pair.": 3, "option_category": 2, "warning_option": 2, "verbosity_option": 2, @@ -44555,10 +47409,19 @@ "_Category": 1, "OptionsList": 2, "list.member": 2, + "list": 82, + "pair": 7, + "mode": 8, "multi.": 1, + "[": 203, "bool_special": 7, + "bool": 406, + "no": 365, + "yes": 144, + "XXX": 3, "should": 1, "be": 1, + "]": 203, "accumulating": 49, "maybe_string": 6, "special": 17, @@ -44570,6 +47433,7 @@ "par_loop_control_preserve_tail_recursion": 1, "expr.": 1, "token": 5, + "num": 11, "parse": 1, "exprn/1": 1, "xx": 1, @@ -44578,12 +47442,15 @@ "exprn": 7, "Num": 18, "B": 8, + "*": 20, "factor": 6, "/": 1, + "//": 2, "Chars": 2, "Toks": 13, "Toks0": 11, "list__reverse": 1, + "|": 38, "Cs": 9, "char__is_whitespace": 1, "char__is_digit": 2, @@ -44593,6 +47460,1231 @@ "string__from_char_list": 1, "NumStr": 2, "string__det_to_int": 1, + "store.": 1, + "typeclass": 1, + "store": 52, + "T": 52, + "where": 8, + "S": 133, + "instance": 4, + "io.state": 3, + "some": 4, + "store.init": 2, + "generic_mutvar": 15, + "io_mutvar": 1, + "store_mutvar": 1, + "store.new_mutvar": 1, + "det": 21, + "store.copy_mutvar": 1, + "store.get_mutvar": 1, + "store.set_mutvar": 1, + "<=>": 5, + "new_cyclic_mutvar": 2, + "Func": 4, + "Mutvar": 23, + "Create": 1, + "a": 10, + "new": 25, + "mutable": 3, + "variable": 1, + "whose": 2, + "value": 16, + "initialized": 2, + "with": 5, + "the": 27, + "returned": 1, + "from": 1, + "specified": 1, + "function": 3, + "The": 2, + "argument": 6, + "passed": 2, + "mutvar": 6, + "itself": 4, + "has": 4, + "not": 7, + "yet": 1, + "been": 1, + "this": 4, + "safe": 2, + "because": 1, + "does": 3, + "get": 2, + "so": 3, + "it": 1, + "can": 1, + "t": 5, + "examine": 1, + "uninitialized": 1, + "This": 2, + "predicate": 1, + "useful": 1, + "creating": 1, + "self": 1, + "referential": 1, + "values": 1, + "such": 2, + "as": 5, + "circular": 1, + "linked": 1, + "lists": 1, + "For": 1, + "example": 1, + "clist": 2, + "node": 1, + "store.new_cyclic_mutvar": 1, + "generic_ref": 20, + "io_ref": 1, + "store_ref": 1, + "store.new_ref": 1, + "store.ref_functor": 1, + "store.arg_ref": 1, + "ArgT": 4, + "store.new_arg_ref": 3, + "store.set_ref": 1, + "store.set_ref_value": 1, + "store.copy_ref_value": 1, + "store.extract_ref_value": 1, + "Nasty": 1, + "performance": 2, + "hacks": 1, + "WARNING": 1, + "use": 1, + "of": 10, + "these": 1, + "procedures": 2, + "dangerous": 1, + "Use": 1, + "them": 1, + "only": 4, + "last": 1, + "resort": 1, + "critical": 1, + "and": 6, + "shows": 1, + "that": 2, + "using": 1, + "versions": 1, + "bottleneck": 1, + "These": 1, + "may": 1, + "vanish": 1, + "future": 1, + "Mercury": 1, + "unsafe_arg_ref": 1, + "same": 2, + "arg_ref": 12, + "unsafe_new_arg_ref": 1, + "new_arg_ref": 1, + "except": 1, + "they": 4, + "doesn": 1, + "check": 1, + "errors": 1, + "don": 3, + "work": 3, + "no_tag": 1, + "types": 3, + "exactly": 2, + "one": 2, + "functor": 2, + "which": 2, + "arguments": 2, + "occupy": 1, + "word": 2, + "other": 1, + "functors.": 1, + "store.unsafe_arg_ref": 1, + "store.unsafe_new_arg_ref": 1, + "implementation": 1, + "deconstruct": 2, + "require": 1, + "state": 3, + "just": 1, + "dummy": 2, + "real": 1, + "representation": 1, + "pragma": 41, + "foreign_type": 10, + "MR_Word": 24, + "can_pass_as_mercury_type": 5, + "equality": 5, + "store_equal": 7, + "comparison": 5, + "store_compare": 7, + "int32": 1, + "Java": 12, + "Erlang": 3, + "semidet": 2, + "_": 149, + "attempt": 2, + "unify": 21, + "two": 2, + "stores": 2, + "comparison_result": 1, + "compare": 1, + "Mutvars": 1, + "references": 1, + "are": 1, + "each": 1, + "represented": 1, + "pointer": 1, + "single": 1, + "on": 1, + "heap": 1, + "private_builtin.ref": 2, + "ref": 2, + "store.do_init": 6, + "foreign_proc": 28, + "_S0": 16, + "will_not_call_mercury": 28, + "promise_pure": 30, + "will_not_modify_trail": 7, + "new_mutvar": 5, + "Val": 45, + "S0": 23, + "get_mutvar": 5, + "set_mutvar": 5, + "_S": 12, + "copy_mutvar": 1, + "Copy": 2, + "Value": 4, + "store.unsafe_new_uninitialized_mutvar": 1, + "unsafe_new_uninitialized_mutvar": 4, + "MR_offset_incr_hp_msg": 5, + "MR_SIZE_SLOT_SIZE": 10, + "1": 5, + "MR_ALLOC_ID": 5, + "2": 2, + "MR_define_size_slot": 5, + "0": 2, + "object": 21, + "MutVar": 4, + "Store": 5, + "apply": 1, + "Ref": 41, + "foreign_code": 2, + "public": 17, + "class": 4, + "Object": 9, + "referenced": 4, + "obj": 7, + "Specific": 2, + "field": 20, + "or": 2, + "null": 8, + "specify": 2, + "GetFields": 2, + "return": 6, + "fields": 3, + "any": 2, + "particular": 2, + "order": 2, + "really": 2, + "usable": 2, + "System": 1, + "Reflection": 1, + "FieldInfo": 1, + "Constructors": 2, + "init": 8, + "setField": 4, + "Set": 2, + "according": 2, + "given": 2, + "index": 2, + "void": 4, + "GetType": 1, + "Return": 6, + "reference": 4, + "getValue": 4, + "GetValue": 1, + "Update": 2, + "setValue": 2, + "SetValue": 1, + "static": 1, + "lang": 28, + "getDeclaredFields": 2, + "reflect": 1, + "Field": 5, + "try": 3, + "getClass": 1, + "catch": 11, + "SecurityException": 1, + "se": 1, + "throw": 11, + "RuntimeException": 11, + "Security": 1, + "manager": 1, + "denied": 1, + "access": 3, + "ArrayIndexOutOfBoundsException": 1, + "e": 13, + "No": 1, + "Exception": 3, + "Unable": 3, + "getMessage": 3, + "IllegalAccessException": 2, + "inaccessible": 2, + "IllegalArgumentException": 2, + "mismatch": 2, + "NullPointerException": 2, + "new_ref": 4, + "ets": 3, + "insert": 1, + "copy_ref_value": 1, + "unsafe_ref_value": 6, + "store.unsafe_ref_value": 1, + "lookup": 1, + "ref_functor": 1, + "Functor": 6, + "Arity": 5, + "canonicalize": 1, + "foreign_decl": 1, + "include": 4, + "mercury_type_info": 1, + "h": 4, + "mercury_heap": 1, + "mercury_misc": 1, + "MR_fatal_error": 5, + "mercury_deconstruct": 1, + "MR_arg": 3, + "ArgNum": 7, + "ArgRef": 22, + "may_not_duplicate": 1, + "MR_TypeInfo": 10, + "type_info": 8, + "arg_type_info": 6, + "exp_arg_type_info": 6, + "const": 10, + "MR_DuArgLocn": 2, + "arg_locn": 9, + "TypeInfo_for_T": 2, + "TypeInfo_for_ArgT": 2, + "MR_save_transient_registers": 2, + "MR_NONCANON_ABORT": 2, + "number": 2, + "range": 2, + "MR_compare_type_info": 2, + "MR_COMPARE_EQUAL": 2, + "wrong": 2, + "MR_restore_transient_registers": 2, + "NULL": 2, + "MR_arg_bits": 2, + "store.ref/2": 3, + "MR_arg_value": 2, + "C#": 6, + "store.Ref": 8, + "Ref.getValue": 6, + "*arg_ref": 1, + "*arg_locn": 1, + "&": 7, + "&&": 1, + "ValRef": 1, + "Ref.setValue": 3, + "ValRef.getValue": 2, + "*Ptr": 2, + "Ptr": 4, + "MR_strip_tag": 2, + "Arg": 6, + "rot13_verbose.": 1, + "rot13a/2": 1, + "table": 1, + "map": 7, + "alphabetic": 2, + "characters": 1, + "their": 1, + "equivalents": 1, + "fails": 1, + "input": 1, + "rot13a": 55, + "rot13/2": 1, + "Applies": 1, + "algorithm": 1, + "character.": 1, + "Char": 12, + "RotChar": 8, + "TmpChar": 2, + "io__read_char": 1, + "Res": 8, + "io__write_char": 1, + "ErrorCode": 4, + "ErrorMessage": 4, + "io__stderr_stream": 1, + "StdErr": 8, + "io__write_string": 2, + "io__nl": 1, + "hello.": 1, + "IO": 4, + "io.write_string": 1, + "rot13_concise.": 1, + "alphabet": 3, + "cycle": 4, + "rot_n": 2, + "N": 6, + "char_to_string": 1, + "CharString": 2, + "sub_string_search": 1, + "Index": 3, + "NewIndex": 2, + "mod": 1, + "index_det": 1, + "read_char": 1, + "print": 3, + "error_message": 1, + "stderr_stream": 1, + "nl": 1, + "ll_backend.code_info.": 1, + "check_hlds.type_util.": 2, + "hlds.code_model.": 1, + "hlds.hlds_data.": 2, + "hlds.hlds_goal.": 2, + "hlds.hlds_llds.": 1, + "hlds.hlds_module.": 2, + "hlds.hlds_pred.": 2, + "hlds.instmap.": 2, + "libs.globals.": 2, + "ll_backend.continuation_info.": 1, + "ll_backend.global_data.": 1, + "ll_backend.layout.": 1, + "ll_backend.llds.": 1, + "ll_backend.trace_gen.": 1, + "mdbcomp.prim_data.": 3, + "mdbcomp.goal_path.": 2, + "parse_tree.prog_data.": 2, + "parse_tree.set_of_var.": 2, + "counter.": 1, + "set_tree234.": 1, + "term.": 3, + "backend_libs.builtin_ops.": 1, + "backend_libs.proc_label.": 1, + "hlds.arg_info.": 1, + "hlds.hlds_desc.": 1, + "hlds.hlds_rtti.": 2, + "libs.trace_params.": 1, + "ll_backend.code_util.": 1, + "ll_backend.opt_debug.": 1, + "ll_backend.var_locn.": 1, + "parse_tree.builtin_lib_types.": 2, + "parse_tree.prog_type.": 2, + "parse_tree.mercury_to_mercury.": 1, + "cord.": 1, + "stack.": 1, + "varset.": 2, + "code_info.": 1, + "code_info_init": 2, + "globals": 5, + "pred_id": 15, + "proc_id": 12, + "pred_info": 20, + "proc_info": 11, + "abs_follow_vars": 3, + "module_info": 26, + "static_cell_info": 4, + "const_struct_map": 3, + "resume_point_info": 11, + "trace_slot_info": 3, + "maybe": 20, + "containing_goal_map": 4, + "code_info": 208, + "get_globals": 5, + "get_exprn_opts": 2, + "exprn_opts": 3, + "get_module_info": 7, + "get_pred_id": 6, + "get_proc_id": 5, + "get_pred_info": 2, + "get_proc_info": 4, + "get_varset": 3, + "prog_varset": 14, + "get_var_types": 3, + "vartypes.": 1, + "get_maybe_trace_info": 2, + "trace_info": 3, + "get_emit_trail_ops": 2, + "add_trail_ops": 5, + "get_emit_region_ops": 2, + "add_region_ops": 6, + "get_forward_live_vars": 2, + "set_of_progvar": 10, + "set_forward_live_vars": 2, + "get_instmap": 4, + "instmap": 3, + "set_instmap": 3, + "get_par_conj_depth": 2, + "set_par_conj_depth": 2, + "get_label_counter": 3, + "counter": 6, + "get_succip_used": 2, + "get_layout_info": 4, + "proc_label_layout_info": 3, + "get_proc_trace_events": 2, + "set_proc_trace_events": 2, + "get_closure_layouts": 3, + "closure_proc_id_data": 4, + "get_max_reg_in_use_at_trace": 2, + "set_max_reg_in_use_at_trace": 2, + "get_created_temp_frame": 2, + "get_static_cell_info": 5, + "set_static_cell_info": 5, + "get_alloc_sites": 3, + "set_tree234": 3, + "alloc_site_info": 4, + "set_alloc_sites": 3, + "get_used_env_vars": 2, + "set_used_env_vars": 2, + "get_opt_trail_ops": 2, + "get_opt_region_ops": 2, + "get_auto_comments": 2, + "get_lcmc_null": 2, + "get_containing_goal_map": 3, + "get_containing_goal_map_det": 2, + "get_const_struct_map": 2, + "add_out_of_line_code": 2, + "llds_code": 21, + "get_out_of_line_code": 2, + "get_var_slot_count": 2, + "set_maybe_trace_info": 3, + "get_opt_no_return_calls": 2, + "get_zombies": 2, + "set_zombies": 2, + "get_var_locn_info": 7, + "var_locn_info": 3, + "set_var_locn_info": 4, + "get_temps_in_use": 6, + "lval": 114, + "set_temps_in_use": 4, + "get_fail_info": 13, + "fail_info": 24, + "set_fail_info": 9, + "set_label_counter": 3, + "set_succip_used": 3, + "set_layout_info": 4, + "get_max_temp_slot_count": 2, + "set_max_temp_slot_count": 2, + "get_temp_content_map": 3, + "slot_contents": 4, + "set_temp_content_map": 2, + "get_persistent_temps": 3, + "set_persistent_temps": 2, + "set_closure_layouts": 3, + "get_closure_seq_counter": 3, + "set_closure_seq_counter": 3, + "set_created_temp_frame": 2, + "code_info_static": 26, + "code_info_loc_dep": 22, + "code_info_persistent": 44, + "cis_globals": 2, + "cis_exprn_opts": 2, + "cis_module_info": 2, + "cis_pred_id": 2, + "cis_proc_id": 2, + "cis_pred_info": 2, + "cis_proc_info": 2, + "cis_proc_label": 1, + "proc_label": 2, + "cis_varset": 2, + "cis_var_slot_count": 2, + "cis_maybe_trace_info": 3, + "cis_opt_no_resume_calls": 2, + "cis_emit_trail_ops": 2, + "cis_opt_trail_ops": 2, + "cis_emit_region_ops": 2, + "cis_opt_region_ops": 2, + "cis_auto_comments": 2, + "cis_lcmc_null": 2, + "cis_containing_goal_map": 2, + "cis_const_struct_map": 2, + "cild_forward_live_vars": 3, + "cild_instmap": 3, + "cild_zombies": 3, + "cild_var_locn_info": 3, + "cild_temps_in_use": 3, + "cild_fail_info": 3, + "cild_par_conj_depth": 3, + "cip_label_num_src": 3, + "cip_store_succip": 3, + "cip_label_info": 3, + "cip_proc_trace_events": 3, + "cip_stackslot_max": 3, + "cip_temp_contents": 3, + "cip_persistent_temps": 3, + "cip_closure_layout_seq": 3, + "cip_closure_layouts": 3, + "cip_max_reg_r_used": 3, + "cip_max_reg_f_used": 2, + "cip_created_temp_frame": 3, + "cip_static_cell_info": 3, + "cip_alloc_sites": 3, + "cip_used_env_vars": 3, + "cip_ts_string_table_size": 3, + "cip_ts_rev_string_table": 4, + "cip_out_of_line_code": 4, + "SaveSuccip": 2, + "Globals": 32, + "PredId": 50, + "ProcId": 31, + "PredInfo": 64, + "ProcInfo": 43, + "FollowVars": 6, + "ModuleInfo": 49, + "StaticCellInfo": 8, + "ConstStructMap": 2, + "ResumePoint": 13, + "TraceSlotInfo": 5, + "MaybeContainingGoalMap": 5, + "TSRevStringTable": 2, + "TSStringTableSize": 2, + "CodeInfo": 2, + "ProcLabel": 8, + "make_proc_label": 1, + "proc_info_get_initial_instmap": 1, + "InstMap": 6, + "proc_info_get_liveness_info": 1, + "Liveness": 4, + "CodeModel": 8, + "proc_info_interface_code_model": 2, + "build_input_arg_list": 1, + "ArgList": 2, + "proc_info_get_varset": 1, + "VarSet": 15, + "proc_info_get_vartypes": 2, + "VarTypes": 22, + "proc_info_get_stack_slots": 1, + "StackSlots": 5, + "ExprnOpts": 4, + "init_exprn_opts": 3, + "globals.lookup_bool_option": 18, + "UseFloatRegs": 6, + "FloatRegType": 3, + "reg_f": 1, + "reg_r": 2, + "globals.get_trace_level": 1, + "TraceLevel": 5, + "eff_trace_level_is_none": 2, + "trace_fail_vars": 1, + "FailVars": 3, + "MaybeFailVars": 3, + "set_of_var.union": 3, + "EffLiveness": 3, + "init_var_locn_state": 1, + "VarLocnInfo": 12, + "stack.init": 1, + "ResumePoints": 14, + "AllowHijack": 3, + "Hijack": 6, + "allowed": 6, + "not_allowed": 5, + "DummyFailInfo": 2, + "resume_point_unknown": 9, + "may_be_different": 7, + "not_inside_non_condition": 2, + "map.init": 7, + "TempContentMap": 4, + "set.init": 7, + "PersistentTemps": 4, + "TempsInUse": 8, + "Zombies": 2, + "set_of_var.init": 1, + "LayoutMap": 2, + "max_var_slot": 1, + "VarSlotMax": 2, + "trace_reserved_slots": 1, + "FixedSlots": 2, + "int.max": 1, + "SlotMax": 2, + "OptNoReturnCalls": 2, + "UseTrail": 2, + "DisableTrailOps": 2, + "EmitTrailOps": 3, + "do_not_add_trail_ops": 1, + "OptTrailOps": 2, + "OptRegionOps": 2, + "UseRegions": 3, + "EmitRegionOps": 3, + "do_not_add_region_ops": 1, + "AutoComments": 2, + "LCMCNull": 2, + "CodeInfo0": 2, + "init_fail_info": 2, + "will": 1, + "override": 1, + "nested": 1, + "conjunction": 1, + "depth": 1, + "counter.init": 2, + "set_tree234.init": 1, + "cord.empty": 1, + "init_maybe_trace_info": 3, + "CodeInfo1": 2, + "exprn_opts.": 1, + "OptNLG": 3, + "NLG": 3, + "have_non_local_gotos": 1, + "do_not_have_non_local_gotos": 1, + "OptASM": 3, + "ASM": 3, + "have_asm_labels": 1, + "do_not_have_asm_labels": 1, + "OptSGCell": 3, + "SGCell": 3, + "have_static_ground_cells": 1, + "do_not_have_static_ground_cells": 1, + "OptUBF": 3, + "UBF": 3, + "have_unboxed_floats": 1, + "do_not_have_unboxed_floats": 1, + "OptFloatRegs": 3, + "do_not_use_float_registers": 1, + "OptSGFloat": 3, + "SGFloat": 3, + "have_static_ground_floats": 1, + "do_not_have_static_ground_floats": 1, + "OptStaticCodeAddr": 3, + "StaticCodeAddrs": 3, + "have_static_code_addresses": 1, + "do_not_have_static_code_addresses": 1, + "CI": 294, + "proc_info_get_has_tail_call_events": 1, + "HasTailCallEvents": 3, + "tail_call_events": 1, + "get_next_label": 5, + "TailRecLabel": 2, + "MaybeTailRecLabel": 3, + "no_tail_call_events": 1, + "trace_setup": 1, + "TraceInfo": 2, + "MaxRegR": 4, + "MaxRegF": 4, + "cip_max_reg_f_used.": 1, + "TI": 4, + "LV": 2, + "IM": 2, + "Zs": 2, + "EI": 2, + "FI": 2, + "LC": 2, + "SU": 2, + "LI": 2, + "PTE": 2, + "TM": 2, + "CM": 2, + "PT": 2, + "CLS": 2, + "CG": 2, + "MR": 4, + "MF": 1, + "MF.": 1, + "SCI": 2, + "ASI": 2, + "UEV": 2, + "ContainingGoalMap": 2, + "unexpected": 21, + "NewCode": 2, + "Code0": 2, + ".CI": 29, + "Code": 36, + "Code.": 1, + "get_stack_slots": 2, + "stack_slots": 1, + "get_follow_var_map": 2, + "abs_follow_vars_map": 1, + "get_next_non_reserved": 2, + "reg_type": 1, + "set_follow_vars": 4, + "pre_goal_update": 3, + "hlds_goal_info": 22, + "has_subgoals": 2, + "post_goal_update": 3, + "variable_type": 3, + "prog_var": 58, + "mer_type.": 1, + "variable_is_of_dummy_type": 2, + "is_dummy_type.": 1, + "search_type_defn": 4, + "mer_type": 21, + "hlds_type_defn": 1, + "lookup_type_defn": 2, + "hlds_type_defn.": 1, + "lookup_cheaper_tag_test": 2, + "maybe_cheaper_tag_test.": 1, + "filter_region_vars": 2, + "set_of_progvar.": 2, + "get_proc_model": 2, + "code_model.": 1, + "get_headvars": 2, + "get_arginfo": 2, + "arg_info": 2, + "get_pred_proc_arginfo": 3, + "current_resume_point_vars": 2, + "variable_name": 2, + "make_proc_entry_label": 2, + "code_addr.": 1, + "label": 5, + "succip_is_used": 2, + "add_trace_layout_for_label": 2, + "term.context": 3, + "trace_port": 1, + "forward_goal_path": 1, + "user_event_info": 1, + "layout_label_info": 2, + "get_cur_proc_label": 4, + "get_next_closure_seq_no": 2, + "add_closure_layout": 2, + "add_threadscope_string": 2, + "get_threadscope_rev_string_table": 2, + "add_scalar_static_cell": 2, + "typed_rval": 1, + "data_id": 3, + "add_scalar_static_cell_natural_types": 2, + "rval": 3, + "add_vector_static_cell": 2, + "llds_type": 1, + "add_alloc_site_info": 2, + "prog_context": 1, + "alloc_site_id": 2, + "add_resume_layout_for_label": 2, + "var_locn_get_stack_slots": 1, + "FollowVarMap": 2, + "var_locn_get_follow_var_map": 1, + "RegType": 2, + "NextNonReserved": 2, + "var_locn_get_next_non_reserved": 1, + "VarLocnInfo0": 4, + "var_locn_set_follow_vars": 1, + "GoalInfo": 44, + "HasSubGoals": 3, + "goal_info_get_resume_point": 1, + "no_resume_point": 1, + "resume_point": 1, + "goal_info_get_follow_vars": 1, + "MaybeFollowVars": 3, + "goal_info_get_pre_deaths": 1, + "PreDeaths": 3, + "rem_forward_live_vars": 3, + "maybe_make_vars_forward_dead": 2, + "goal_info_get_pre_births": 1, + "PreBirths": 2, + "add_forward_live_vars": 2, + "does_not_have_subgoals": 2, + "goal_info_get_post_deaths": 2, + "PostDeaths": 5, + "goal_info_get_post_births": 1, + "PostBirths": 3, + "make_vars_forward_live": 1, + "InstMapDelta": 2, + "goal_info_get_instmap_delta": 1, + "InstMap0": 2, + "instmap.apply_instmap_delta": 1, + "TypeInfoLiveness": 2, + "module_info_pred_info": 6, + "body_should_use_typeinfo_liveness": 1, + "Var": 13, + "Type": 18, + "lookup_var_type": 3, + "IsDummy": 2, + "VarType": 2, + "check_dummy_type": 1, + "TypeDefn": 6, + "type_to_ctor_det": 1, + "TypeCtor": 2, + "module_info_get_type_table": 1, + "TypeTable": 2, + "search_type_ctor_defn": 1, + "TypeDefnPrime": 2, + "CheaperTagTest": 3, + "get_type_defn_body": 1, + "TypeBody": 2, + "hlds_du_type": 1, + "CheaperTagTestPrime": 2, + "no_cheaper_tag_test": 1, + "ForwardLiveVarsBeforeGoal": 6, + "RegionVars": 2, + "code_info.get_var_types": 1, + "set_of_var.filter": 1, + "is_region_var": 1, + "HeadVars": 20, + "module_info_pred_proc_info": 4, + "proc_info_get_headvars": 2, + "ArgInfo": 4, + "proc_info_arg_info": 1, + "ResumeVars": 4, + "FailInfo": 19, + "ResumePointStack": 2, + "stack.det_top": 5, + "ResumePointInfo": 2, + "pick_first_resume_point": 1, + "ResumeMap": 8, + "map.keys": 3, + "ResumeMapVarList": 2, + "set_of_var.list_to_set": 3, + "Name": 4, + "Varset": 2, + "varset.lookup_name": 2, + "Immed0": 3, + "CodeAddr": 2, + "Immed": 3, + "globals.lookup_int_option": 1, + "ProcsPerFunc": 2, + "CurPredId": 2, + "CurProcId": 2, + "proc": 2, + "make_entry_label": 1, + "Label": 8, + "C0": 4, + "counter.allocate": 2, + "internal_label": 3, + "Context": 20, + "Port": 2, + "IsHidden": 2, + "GoalPath": 2, + "MaybeSolverEventInfo": 2, + "Layout": 2, + "Internals0": 8, + "Exec": 5, + "trace_port_layout_info": 1, + "LabelNum": 8, + "entry_label": 2, + "map.search": 2, + "Internal0": 4, + "internal_layout_info": 6, + "Exec0": 3, + "Resume": 5, + "Internal": 8, + "map.det_update": 4, + "Internals": 6, + "map.det_insert": 3, + "LayoutInfo": 2, + "Resume0": 3, + "get_active_temps_data": 2, + "assoc_list": 1, + "Temps": 2, + "map.select": 1, + "TempsInUseContentMap": 2, + "map.to_assoc_list": 3, + "cis_proc_label.": 1, + "SeqNo": 2, + "ClosureLayout": 2, + "ClosureLayouts": 2, + "String": 2, + "SlotNum": 2, + "Size0": 3, + "RevTable0": 2, + "Size": 4, + "RevTable": 3, + "RevTable.": 1, + "TableSize": 2, + "cip_ts_string_table_size.": 1, + "RvalsTypes": 2, + "DataAddr": 6, + "StaticCellInfo0": 6, + "global_data.add_scalar_static_cell": 1, + "Rvals": 2, + "global_data.add_scalar_static_cell_natural_types": 1, + "Types": 6, + "Vector": 2, + "global_data.add_vector_static_cell": 1, + "AllocId": 2, + "AllocSite": 3, + "AllocSites0": 2, + "set_tree234.insert": 1, + "AllocSites": 2, + "position_info.": 1, + "branch_end_info.": 1, + "branch_end": 4, + "branch_end_info": 7, + "remember_position": 3, + "position_info": 14, + "reset_to_position": 4, + "reset_resume_known": 2, + "generate_branch_end": 2, + "abs_store_map": 3, + "after_all_branches": 2, + "save_hp_in_branch": 2, + "pos_get_fail_info": 3, + "fail_info.": 2, + "LocDep": 6, + "cild_fail_info.": 1, + "CurCI": 2, + "NextCI": 2, + "Static": 2, + "Persistent": 2, + "NextCI0": 4, + "TempsInUse0": 4, + "set.union": 2, + "BranchStart": 2, + "BranchStartFailInfo": 2, + "BSResumeKnown": 2, + "CurFailInfo": 2, + "CurFailStack": 2, + "CurCurfMaxfr": 2, + "CurCondEnv": 2, + "CurHijack": 2, + "NewFailInfo": 2, + "StoreMap": 8, + "MaybeEnd0": 3, + "MaybeEnd": 6, + "AbsVarLocs": 3, + "assoc_list.values": 1, + "AbsLocs": 2, + "code_util.max_mentioned_abs_regs": 1, + "instmap_is_reachable": 1, + "VarLocs": 2, + "assoc_list.map_values_only": 2, + "abs_locn_to_lval": 2, + "place_vars": 1, + "remake_with_store_map": 4, + "empty": 9, + "EndCodeInfo1": 5, + "EndCodeInfo0": 3, + "FailInfo0": 13, + "FailInfo1": 2, + "ResumeKnown0": 5, + "CurfrMaxfr0": 2, + "CondEnv0": 3, + "Hijack0": 2, + "R": 2, + "ResumeKnown1": 2, + "CurfrMaxfr1": 2, + "CondEnv1": 2, + "Hijack1": 2, + "resume_point_known": 15, + "Redoip0": 3, + "Redoip1": 2, + "ResumeKnown": 21, + "expect": 15, + "must_be_equal": 11, + "CurfrMaxfr": 24, + "EndCodeInfoA": 2, + "TempsInUse1": 2, + "EndCodeInfo": 2, + "BranchEnd": 2, + "BranchEndCodeInfo": 2, + "BranchEndLocDep": 2, + "VarLocns": 2, + "VarLvals": 2, + "reinit_var_locn_state": 1, + "Slot": 2, + "Pos0": 2, + "Pos": 2, + "CI0": 2, + "CIStatic0": 2, + "CILocDep0": 2, + "CIPersistent0": 2, + "LocDep0": 2, + "CI1": 2, + "save_hp": 1, + "CI2": 2, + "CIStatic": 2, + "CIPersistent": 2, + "resume_map.": 1, + "resume_point_info.": 1, + "disj_hijack_info.": 1, + "prepare_for_disj_hijack": 2, + "code_model": 3, + "disj_hijack_info": 3, + "undo_disj_hijack": 2, + "ite_hijack_info.": 1, + "prepare_for_ite_hijack": 2, + "embedded_stack_frame_id": 3, + "ite_hijack_info": 3, + "ite_enter_then": 2, + "simple_neg_info.": 1, + "enter_simple_neg": 2, + "simple_neg_info": 3, + "leave_simple_neg": 2, + "det_commit_info.": 1, + "prepare_for_det_commit": 2, + "det_commit_info": 6, + "generate_det_commit": 2, + "semi_commit_info.": 1, + "prepare_for_semi_commit": 2, + "semi_commit_info": 6, + "generate_semi_commit": 2, + "effect_resume_point": 2, + "pop_resume_point": 1, + "top_resume_point": 1, + "set_resume_point_to_unknown": 1, + "set_resume_point_and_frame_to_unknown": 1, + "generate_failure": 2, + "fail_if_rval_is_false": 1, + "failure_is_direct_branch": 1, + "code_addr": 8, + "may_use_nondet_tailcall": 1, + "nondet_tail_call": 1, + "produce_vars": 1, + "resume_map": 9, + "flush_resume_vars_to_stack": 1, + "make_resume_point": 1, + "resume_locs": 1, + "generate_resume_point": 2, + "resume_point_vars": 1, + "resume_point_stack_addr": 2, + "stack": 1, + "curfr_vs_maxfr": 2, + "condition_env": 3, + "hijack_allowed": 2, + "orig_only": 2, + "stack_only": 2, + "orig_and_stack": 1, + "stack_and_orig": 1, + "redoip_update": 2, + "has_been_done": 5, + "wont_be_done.": 1, + "resume_point_unknown.": 1, + "may_be_different.": 1, + "inside_non_condition": 6, + "not_inside_non_condition.": 1, + "not_allowed.": 1, + "disj_no_hijack": 4, + "disj_temp_frame": 4, + "disj_quarter_hijack": 4, + "disj_half_hijack": 3, + "disj_full_hijack": 3, + "HijackInfo": 29, + "CondEnv": 12, + "Allow": 12, + "model_det": 2, + "model_semi": 3, + "singleton": 28, + "llds_instr": 64, + "comment": 5, + "model_non": 2, + "create_temp_frame": 4, + "do_fail": 6, + "stack.pop": 1, + "TopResumePoint": 6, + "RestResumePoints": 2, + "stack.is_empty": 1, + "wont_be_done": 2, + "acquire_temp_slot": 15, + "slot_lval": 14, + "redoip_slot": 30, + "curfr": 18, + "non_persistent_temp_slot": 15, + "RedoipSlot": 33, + "assign": 46, + "maxfr": 42, + "redofr_slot": 14, + "RedofrSlot": 17, + "from_list": 13, + "prevfr_slot": 3, + "pick_stack_resume_point": 3, + "StackLabel": 9, + "LabelConst": 4, + "llconst_code_addr": 6, + "true": 3, + "ite_region_info": 5, + "ite_info": 3, + "ite_hijack_type": 2, + "ite_no_hijack": 3, + "ite_temp_frame": 3, + "ite_quarter_hijack": 3, + "ite_half_hijack": 3, + "ite_full_hijack": 3, + "CondCodeModel": 4, + "MaybeEmbeddedFrameId": 5, + "HijackType": 12, + "MaybeRegionInfo": 12, + "MaxfrSlot": 30, + "TempFrameCode": 4, + "MaxfrCode": 7, + "EmbeddedFrameId": 2, + "slot_success_record": 1, + "persistent_temp_slot": 1, + "SuccessRecordSlot": 6, + "InitSuccessCode": 3, + "llconst_false": 1, + "ITEResumePoint": 2, + "ThenCode": 10, + "ElseCode": 7, + "ResumePoints0": 5, + "stack.det_pop": 1, + "HijackResumeKnown": 2, + "OldCondEnv": 2, + "RegionInfo": 2, + "EmbeddedStackFrameId": 2, + "ITEStackResumeCodeAddr": 2, + "llconst_true": 1, + "AfterRegionOp": 3, + "if_val": 1, + "unop": 1, + "logical_not": 1, + "code_label": 2, + "use_and_maybe_pop_region_frame": 1, + "region_ite_nondet_cond_fail": 1, + "goto": 2, + "maybe_pick_stack_resume_point": 1, + "ResumeMap0": 2, + "make_fake_resume_map": 5, + "do_redo": 1, + "is_empty": 1, + "Vars": 10, + "Locns": 2, + "set.make_singleton_set": 1, + "reg": 1, + "region_commit_stack_frame": 5, + "AddTrailOps": 4, + "AddRegionOps": 5, + "CommitGoalInfo": 4, + "DetCommitInfo": 4, + "SaveMaxfrCode": 3, + "save_maxfr": 3, + "MaybeMaxfrSlot": 6, + "maybe_save_trail_info": 2, + "MaybeTrailSlots": 8, + "SaveTrailCode": 4, + "maybe_save_region_commit_frame": 4, + "MaybeRegionCommitFrameInfo": 8, + "SaveRegionCommitFrameCode": 2, + "SaveRegionCommitFrameCode.": 2, + "RestoreMaxfrCode": 3, + "restore_maxfr": 3, + "release_temp_slot": 1, + "maybe_restore_trail_info": 2, + "CommitTrailCode": 4, + "maybe_restore_region_commit_frame": 2, + "SuccessRegionCode": 3, + "_FailureRegionCode": 1, + "SuccessRegionCode.": 1, + "commit_hijack_info": 2, + "commit_temp_frame": 3, + "commit_quarter_hijack": 3, + "commit_half_hijack": 3, + "commit_full_hijack": 3, + "SemiCommitInfo": 4, + "clone_resume_point": 1, + "NewResumePoint": 4, + "stack.push": 1, + "StackLabelConst": 7, + "UseMinimalModelStackCopyCut": 4, + "Components": 4, + "foreign_proc_raw_code": 4, + "cannot_branch_away": 4, + "proc_affects_liveness": 2, + "live_lvals_info": 4, + "proc_does_not_affect_liveness": 2, + "MD": 4, + "proc_may_duplicate": 2, + "MarkCode": 3, + "foreign_proc_code": 2, + "proc_will_not_call_mercury": 2, + "HijackCode": 5, + "UseMinimalModel": 3, + "CutCode": 4, + "SuccessUndoCode": 5, + "FailureUndoCode": 5, + "AfterCommit": 2, + "ResumePointCode": 2, + "FailCode": 2, + "RestoreTrailCode": 2, + "FailureRegionCode": 2, + "SuccLabel": 3, + "GotoSuccLabel": 2, + "SuccLabelCode": 1, + "SuccessCode": 2, + "FailureCode": 2, + "SuccLabelCode.": 1, + "_ForwardLiveVarsBeforeGoal": 1, "check_hlds.polymorphism.": 1, "hlds.": 1, "mdbcomp.": 1, @@ -46307,92 +50399,24 @@ }, "NSIS": { ";": 39, - "-": 205, - "x64.nsh": 1, - "A": 1, - "few": 1, - "simple": 1, - "macros": 1, - "to": 6, - "handle": 1, - "installations": 1, - "on": 6, - "x64": 1, - "machines.": 1, - "RunningX64": 4, - "checks": 1, - "if": 4, - "the": 4, - "installer": 1, - "is": 2, - "running": 1, - "x64.": 1, - "{": 8, - "If": 1, - "}": 8, - "MessageBox": 11, - "MB_OK": 8, - "EndIf": 1, - "DisableX64FSRedirection": 4, - "disables": 1, - "file": 4, - "system": 2, - "redirection.": 2, - "EnableX64FSRedirection": 4, - "enables": 1, - "SetOutPath": 3, - "SYSDIR": 1, - "File": 3, - "some.dll": 2, - "#": 3, - "extracts": 2, - "C": 2, - "Windows": 3, - "System32": 1, - "SysWOW64": 1, - "ifndef": 2, - "___X64__NSH___": 3, - "define": 4, - "include": 1, - "LogicLib.nsh": 1, - "macro": 3, - "_RunningX64": 1, - "_a": 1, - "_b": 1, - "_t": 2, - "_f": 2, - "insertmacro": 2, - "_LOGICLIB_TEMP": 3, - "System": 4, - "Call": 6, - "kernel32": 4, - "GetCurrentProcess": 1, - "(": 5, - ")": 5, - "i.s": 1, - "IsWow64Process": 1, - "*i.s": 1, - "Pop": 1, - "_": 1, - "macroend": 3, - "Wow64EnableWow64FsRedirection": 2, - "i0": 1, - "i1": 1, - "endif": 4, "bigtest.nsi": 1, "This": 2, "script": 1, "attempts": 1, + "to": 6, "test": 1, "most": 1, "of": 3, + "the": 4, "functionality": 1, "NSIS": 3, "exehead.": 1, + "-": 205, "ifdef": 2, "HAVE_UPX": 1, "packhdr": 1, "tmp.dat": 1, + "endif": 4, "NOCOMPRESS": 1, "SetCompress": 1, "off": 1, @@ -46401,6 +50425,7 @@ "Icon": 1, "OutFile": 1, "SetDateSave": 1, + "on": 6, "SetDatablockOptimize": 1, "CRCCheck": 1, "SilentInstall": 1, @@ -46425,8 +50450,10 @@ "instfiles": 2, "UninstPage": 2, "uninstConfirm": 1, + "ifndef": 2, "NOINSTTYPES": 1, "only": 1, + "if": 4, "not": 2, "defined": 1, "InstType": 6, @@ -46457,7 +50484,9 @@ "BigNSISTest": 8, "uninstall": 2, "strings": 1, + "SetOutPath": 3, "INSTDIR": 15, + "File": 3, "/a": 1, "CreateDirectory": 1, "recursively": 1, @@ -46471,6 +50500,8 @@ "SectionEnd": 5, "SectionIn": 4, "Start": 2, + "MessageBox": 11, + "MB_OK": 8, "MB_YESNO": 3, "IDYES": 2, "MyLabel": 2, @@ -46481,6 +50512,7 @@ "xdeadbeef": 1, "WriteRegBin": 1, "WriteINIStr": 5, + "Call": 6, "MyFunctionTest": 1, "DeleteINIStr": 1, "DeleteINISec": 1, @@ -46505,6 +50537,7 @@ "IDNO": 1, "NoOverwrite": 1, "skipped": 2, + "file": 4, "doesn": 2, "s": 1, "icon": 1, @@ -46513,10 +50546,12 @@ "and": 1, "give": 1, "hotkey": 1, + "(": 5, "Ctrl": 1, "+": 2, "Shift": 1, "Q": 2, + ")": 5, "CreateShortCut": 2, "SW_SHOWMINIMIZED": 1, "CONTROL": 1, @@ -46533,7 +50568,9 @@ "Hit": 1, "next": 1, "continue.": 1, + "{": 8, "NSISDIR": 1, + "}": 8, "Contrib": 1, "Graphics": 1, "Icons": 1, @@ -46542,6 +50579,7 @@ "Uninstall": 2, "Software": 1, "Microsoft": 1, + "Windows": 3, "CurrentVersion": 1, "silent.nsi": 1, "LogicLib.nsi": 1, @@ -46566,7 +50604,61 @@ "IDOK": 1, "t": 1, "exist": 1, - "NoErrorMsg": 1 + "NoErrorMsg": 1, + "x64.nsh": 1, + "A": 1, + "few": 1, + "simple": 1, + "macros": 1, + "handle": 1, + "installations": 1, + "x64": 1, + "machines.": 1, + "RunningX64": 4, + "checks": 1, + "installer": 1, + "is": 2, + "running": 1, + "x64.": 1, + "If": 1, + "EndIf": 1, + "DisableX64FSRedirection": 4, + "disables": 1, + "system": 2, + "redirection.": 2, + "EnableX64FSRedirection": 4, + "enables": 1, + "SYSDIR": 1, + "some.dll": 2, + "#": 3, + "extracts": 2, + "C": 2, + "System32": 1, + "SysWOW64": 1, + "___X64__NSH___": 3, + "define": 4, + "include": 1, + "LogicLib.nsh": 1, + "macro": 3, + "_RunningX64": 1, + "_a": 1, + "_b": 1, + "_t": 2, + "_f": 2, + "insertmacro": 2, + "_LOGICLIB_TEMP": 3, + "System": 4, + "kernel32": 4, + "GetCurrentProcess": 1, + "i.s": 1, + "IsWow64Process": 1, + "*i.s": 1, + "Pop": 1, + "_": 1, + "macroend": 3, + "Wow64EnableWow64FsRedirection": 2, + "i0": 1, + "i1": 1 }, "Nemerle": { "using": 1, @@ -46952,302 +51044,31 @@ "Nit": { "#": 196, "module": 18, - "procedural_array": 1, - "fun": 57, - "array_sum": 2, - "(": 448, - "a": 40, - "Array": 12, - "[": 106, - "Int": 47, - "]": 80, - ")": 448, - "do": 83, - "var": 157, - "sum": 12, + "print_arguments": 1, "for": 27, - "i": 20, + "a": 40, "in": 39, - "+": 39, - "end": 117, - "return": 54, - "array_sum_alt": 2, - "while": 4, - "<": 11, - "a.length": 1, - "print": 135, - "curl_mail": 1, - "import": 18, - "curl": 11, - "new": 164, - "Curl": 4, - "mail_request": 1, - "CurlMailRequest": 1, - "response": 5, - "mail_request.set_outgoing_server": 1, - "if": 89, - "isa": 12, - "CurlResponseFailed": 5, - "then": 81, - "mail_request.from": 1, - "mail_request.to": 1, - "mail_request.cc": 1, - "mail_request.bcc": 1, - "null": 39, - "headers_body": 4, - "HeaderMap": 3, - "mail_request.headers_body": 1, - "mail_request.body": 1, - "mail_request.subject": 1, - "mail_request.verbose": 1, - "false": 8, - "mail_request.execute": 1, - "else": 63, - "CurlMailResponseSuccess": 1, - "callback_monkey": 2, - "{": 14, - "#include": 2, - "": 1, - "": 1, - "typedef": 2, - "struct": 2, - "int": 4, - "id": 2, - ";": 34, - "age": 2, - "}": 14, - "CMonkey": 6, - "MonkeyActionCallable": 7, - "toCall": 6, - "Object": 7, - "message": 9, - "MonkeyAction": 5, - "//": 13, - "Method": 1, - "which": 4, - "reproduce": 3, - "callback": 11, - "answer": 1, - "Please": 1, - "note": 1, - "that": 2, - "function": 2, - "pointer": 2, - "is": 25, - "only": 6, - "used": 1, - "to": 18, - "the": 57, - "void": 3, - "cbMonkey": 2, - "*mkey": 2, - "callbackFunc": 2, - "CMonkey*": 1, - "MonkeyAction*": 1, - "*data": 3, - "sleep": 5, - "mkey": 2, - "data": 6, - "Back": 2, - "of": 31, - "background": 1, - "treatment": 1, - "will": 8, - "be": 9, - "redirected": 1, - "nit_monkey_callback_func": 2, - "To": 1, - "call": 3, - "your": 1, - "method": 17, - "signature": 1, - "must": 1, - "written": 2, - "like": 1, - "this": 2, - "": 1, - "Name": 1, - "_": 1, - "": 1, - "...": 1, - "MonkeyActionCallable_wokeUp": 1, - "-": 70, - "interface": 3, - "wokeUp": 4, - "sender": 3, - "Monkey": 4, - "abstract": 2, - "extern": 2, - "class": 20, - "*": 14, - "*monkey": 1, - "malloc": 2, - "sizeof": 2, - "monkey": 4, - "get": 1, - "defined": 4, - "Must": 1, - "as": 1, - "Nit/C": 1, - "because": 4, - "C": 4, - "inside": 1, - "wokeUpAction": 2, - "MonkeyActionCallable.wokeUp": 1, - "Allocating": 1, - "memory": 1, - "keep": 2, - "reference": 2, - "received": 1, - "parameters": 1, - "receiver": 1, - "Message": 1, - "Incrementing": 1, - "counter": 1, - "prevent": 1, - "from": 8, - "releasing": 1, - "MonkeyActionCallable_incr_ref": 1, - "Object_incr_ref": 1, - "Calling": 1, - "by": 5, - "passing": 1, - "Receiver": 1, - "Function": 1, - "object": 2, - "Datas": 1, - "recv": 12, - "&": 1, - "extern_methods": 1, - "redef": 30, - "enum": 3, - "Returns": 1, - "self": 41, - "th": 2, - "fibonnaci": 1, - "number": 7, - "implemented": 1, - "here": 1, - "optimization": 1, - "purposes": 2, - "fib": 5, - "Int_fib": 3, - "System": 1, - "seconds": 1, - "Return": 4, - "atan2l": 1, - "x": 16, - "libmath": 1, - "atan_with": 2, - "Float": 3, - "atan2": 1, - "This": 1, - "Nit": 2, - "methods": 2, - "code": 3, - "It": 1, - "use": 1, - "local": 1, - "operator": 1, - "to_s": 3, - "all": 3, - "objects": 1, - "String.to_cstring": 2, - "String": 14, - "an": 4, - "equivalent": 1, - "char*": 1, - "foo": 3, - "long": 2, - "recv_fib": 2, - "recv_plus_fib": 2, - "Int__plus": 1, - "nit_string": 2, - "Int_to_s": 1, - "char": 1, - "*c_string": 1, - "String_to_cstring": 1, - "printf": 1, - "c_string": 1, - "Equivalent": 1, - "but": 6, - "pure": 1, - "bar": 2, - "socket_client": 1, - "socket": 6, - "args.length": 3, - "s": 68, - "Socket.client": 1, "args": 9, - ".to_i": 2, - "s.connected": 1, - "s.write": 1, - "s.close": 1, - "template": 1, - "###": 2, - "Here": 2, - "definition": 1, - "specific": 1, - "templates": 2, - "TmplComposers": 2, - "super": 10, - "Template": 3, - "Short": 2, - "list": 10, - "composers": 4, - "TmplComposer": 3, - "Detailled": 1, - "composer_details": 2, - "TmplComposerDetail": 3, - "Add": 2, - "composer": 1, - "both": 1, - "lists": 2, - "add_composer": 1, - "firstname": 5, - "lastname": 6, - "birth": 5, - "death": 5, - "composers.add": 1, - "composer_details.add": 1, - "rendering": 3, - "add": 35, - "add_all": 2, - "name": 4, - "init": 6, - "self.name": 1, - "self.firstname": 1, - "self.lastname": 1, - "self.birth": 1, - "self.death": 1, - "simple": 1, - "usage": 3, - "f": 1, - "f.add_composer": 3, - "f.write_to": 1, - "stdout": 2, - "callback_chimpanze": 1, - "Chimpanze": 2, - "create": 1, - "Invoking": 1, - "take": 1, - "some": 1, - "time": 1, - "compute": 1, - "and": 10, - "back": 1, - "with": 2, - "information.": 1, - "Callback": 1, - "Interface": 1, - "monkey.wokeUpAction": 1, - "Inherit": 1, - "m": 5, - "m.create": 1, + "do": 83, + "print": 135, + "end": 117, "socket_server": 1, + "import": 18, + "socket": 6, + "if": 89, "args.is_empty": 1, + "then": 81, + "return": 54, + "var": 157, + "new": 164, "Socket.server": 1, + "(": 448, + "[": 106, + "]": 80, + ".to_i": 2, + ")": 448, "clients": 2, + "Array": 12, "Socket": 1, "max": 2, "loop": 2, @@ -47263,61 +51084,434 @@ "socket.accept": 1, "ns.write": 1, "ns.close": 1, - "fibonacci": 3, - "Calculate": 1, - "element": 1, - "sequence.": 1, - ".fibonacci": 2, - "exit": 3, - "args.first.to_i.fibonacci": 1, - "drop_privileges": 1, - "privileges": 1, - "opts": 1, - "OptionContext": 1, - "opt_ug": 2, - "OptionUserAndGroup.for_dropping_privileges": 1, - "opt_ug.mandatory": 1, - "opts.add_option": 1, - "opts.parse": 1, - "not": 12, - "opts.errors.is_empty": 1, - "opts.errors": 1, - "opts.usage": 1, - "user_group": 2, - "opt_ug.value": 1, + "int_stack": 1, + "class": 20, + "IntStack": 2, + "The": 11, + "head": 5, + "node": 10, + "of": 31, + "the": 57, + "list.": 4, + "Null": 1, + "means": 1, + "that": 2, + "stack": 3, + "is": 25, + "empty.": 4, + "private": 5, + "nullable": 11, + "ISNode": 4, + "null": 39, + "Add": 2, + "integer": 2, + "stack.": 2, + "fun": 57, + "push": 3, + "val": 5, + "Int": 47, + "self.head": 5, + "Remove": 1, + "and": 10, + "last": 2, + "pushed": 1, + "integer.": 1, + "Return": 4, + "pop": 2, + "Note": 7, + "followings": 2, + "are": 4, + "statically": 3, + "safe": 4, + "because": 4, + "previous": 4, + ".": 6, + "head.val": 1, + "head.next": 1, + "sum": 12, + "all": 3, + "integers": 1, + "sumall": 1, + "cur": 3, + "while": 4, + "condition": 1, + "+": 39, + "cur.val": 1, + "cur.next": 1, + "Because": 2, + "attributes": 1, + "have": 1, + "default": 2, + "value": 2, + "free": 2, + "constructor": 2, + "implicitly": 2, + "defined.": 2, + "stored": 1, + "node.": 1, + "next": 9, + "any.": 1, + "A": 1, + "l": 4, + "l.push": 4, + "l.sumall": 1, + "i": 20, + "l.pop": 5, + "following": 1, + "*": 14, + "or": 9, + "else": 63, + "gives": 2, + "so": 4, + "alternative": 1, + "gtk": 1, + "CalculatorContext": 7, + "result": 16, + "Float": 3, + "last_op": 4, + "Char": 7, + "current": 26, + "after_point": 12, + "push_op": 2, + "op": 11, + "apply_last_op_if_any": 2, + "self.result": 2, + "store": 1, + "prepare": 1, + "push_digit": 1, + "digit": 1, + "digit.to_f": 2, + "pow": 1, + "after_point.to_f": 1, + "self.after_point": 1, + "-": 70, + "self.current": 3, + "switch_to_decimals": 1, + "/": 4, + "CalculatorGui": 2, + "super": 10, + "GtkCallable": 1, + "win": 2, + "GtkWindow": 2, + "container": 3, + "GtkGrid": 2, + "lbl_disp": 3, + "GtkLabel": 2, + "but_eq": 3, + "GtkButton": 2, + "but_dot": 3, + "context": 9, + "redef": 30, + "signal": 1, + "sender": 3, + "user_data": 5, + "context.after_point": 1, + "after_point.abs": 1, + "isa": 12, + "an": 4, + "operation": 1, + "but_dot.sensitive": 2, + "false": 8, + "context.switch_to_decimals": 4, + "lbl_disp.text": 3, + "context.push_op": 15, + "s": 68, + "context.result.to_precision_native": 1, + "index": 7, + "s.length.times": 1, + "chiffre": 3, + "s.chars": 2, + "s.substring": 2, + "s.length": 2, + "number": 7, + "n": 16, + "context.push_digit": 25, + "context.current.to_precision_native": 1, + "init": 6, + "init_gtk": 1, + "win.add": 1, + "container.attach": 7, + "digits": 1, + "but": 6, + "GtkButton.with_label": 5, + "n.to_s": 1, + "but.request_size": 2, + "but.signal_connect": 2, + "self": 41, + "%": 3, + "/3": 1, + "operators": 2, + "r": 21, + "op.to_s": 1, + "but_eq.request_size": 1, + "but_eq.signal_connect": 1, + "but_dot.request_size": 1, + "but_dot.signal_connect": 1, + "#C": 1, + "but_c": 2, + "but_c.request_size": 1, + "but_c.signal_connect": 1, + "win.show_all": 1, + "context.result.to_precision": 6, "assert": 24, - "user_group.drop_privileges": 1, - "websocket_server": 1, - "websocket": 1, - "sock": 1, - "WebSocket": 1, - "msg": 8, - "sock.listener.eof": 2, - "sys.errno.strerror": 1, - "sock.accept": 2, - "sock.connected": 1, - "sys.stdin.poll_in": 1, - "gets": 1, + "#test": 2, + "multiple": 1, + "decimals": 1, + "button": 1, + ".environ": 3, + "app": 1, + "run_gtk": 1, + "opengles2_hello_triangle": 1, + "glesv2": 1, + "egl": 1, + "mnit_linux": 1, + "sdl": 1, + "x11": 1, + "exit": 3, + "window_width": 2, + "window_height": 2, + "##": 6, + "SDL": 2, + "sdl_display": 1, + "SDLDisplay": 1, + "sdl_wm_info": 1, + "SDLSystemWindowManagerInfo": 1, + "x11_window_handle": 2, + "sdl_wm_info.x11_window_handle": 1, + "X11": 1, + "x_display": 3, + "x_open_default_display": 1, + "EGL": 2, + "egl_display": 6, + "EGLDisplay": 1, + "egl_display.is_valid": 2, + "egl_display.initialize": 1, + "egl_display.error": 3, + "config_chooser": 1, + "EGLConfigChooser": 1, + "#config_chooser.surface_type_egl": 1, + "config_chooser.blue_size": 1, + "config_chooser.green_size": 1, + "config_chooser.red_size": 1, + "#config_chooser.alpha_size": 1, + "#config_chooser.depth_size": 1, + "#config_chooser.stencil_size": 1, + "#config_chooser.sample_buffers": 1, + "config_chooser.close": 1, + "configs": 3, + "config_chooser.choose": 1, + "not": 12, + "configs.is_empty": 1, + "config": 4, + "attribs": 1, + "config.attribs": 2, + "configs.first": 1, + "format": 1, + ".native_visual_id": 1, + "surface": 5, + "egl_display.create_window_surface": 1, + "surface.is_ok": 1, + "egl_display.create_context": 1, + "context.is_ok": 1, + "make_current_res": 2, + "egl_display.make_current": 2, + "width": 2, + "surface.attribs": 2, + ".width": 1, + "height": 2, + ".height": 1, + "egl_bind_opengl_es_api": 1, + "GLESv2": 1, + "assert_no_gl_error": 6, + "gl_shader_compiler": 1, + "gl_error.to_s": 1, + "program": 1, + "GLProgram": 1, + "program.is_ok": 1, + "program.info_log": 1, + "abort": 2, + "vertex_shader": 2, + "GLVertexShader": 1, + "vertex_shader.is_ok": 1, + "vertex_shader.source": 1, + "vertex_shader.compile": 1, + "vertex_shader.is_compiled": 1, + "fragment_shader": 2, + "GLFragmentShader": 1, + "fragment_shader.is_ok": 1, + "fragment_shader.source": 1, + "fragment_shader.compile": 1, + "fragment_shader.is_compiled": 1, + "program.attach_shader": 2, + "program.bind_attrib_location": 1, + "program.link": 1, + "program.is_linked": 1, + "vertices": 2, + "vertex_array": 1, + "VertexArray": 1, + "vertex_array.attrib_pointer": 1, + "gl_clear_color": 1, "printn": 10, - "sock.close": 1, - "sock.disconnect_client": 1, - "sock.write": 1, - "sock.can_read": 1, - "sock.read_line": 1, + "gl_viewport": 1, + "gl_clear_color_buffer": 1, + "program.use": 1, + "vertex_array.enable": 1, + "vertex_array.draw_arrays_triangles": 1, + "egl_display.swap_buffers": 1, + "program.delete": 1, + "vertex_shader.delete": 1, + "fragment_shader.delete": 1, + "EGLSurface.none": 2, + "EGLContext.none": 1, + "egl_display.destroy_context": 1, + "egl_display.destroy_surface": 1, + "sdl_display.destroy": 1, + "curl_mail": 1, + "curl": 11, + "Curl": 4, + "mail_request": 1, + "CurlMailRequest": 1, + "response": 5, + "mail_request.set_outgoing_server": 1, + "CurlResponseFailed": 5, + "mail_request.from": 1, + "mail_request.to": 1, + "mail_request.cc": 1, + "mail_request.bcc": 1, + "headers_body": 4, + "HeaderMap": 3, + "mail_request.headers_body": 1, + "mail_request.body": 1, + "mail_request.subject": 1, + "mail_request.verbose": 1, + "mail_request.execute": 1, + "CurlMailResponseSuccess": 1, + "socket_client": 1, + "args.length": 3, + "<": 11, + "Socket.client": 1, + "s.connected": 1, + "s.write": 1, + "s.close": 1, + "circular_list": 1, + "CircularList": 6, + "E": 15, + "Like": 1, + "standard": 1, + "LinkedList": 1, + "Sequence.": 1, + "Sequence": 1, + "first": 7, + "list": 10, + "any": 1, + "special": 1, + "case": 1, + "empty": 1, + "handled": 1, + "by": 5, + "CLNode": 6, + "iterator": 1, + "CircularListIterator": 2, + "self.node.item": 2, + "e": 4, + "new_node": 4, + "self.node": 13, + "one": 3, + "attach": 1, + "nodes": 3, + "correctly.": 2, + "old_last_node": 2, + "n.prev": 4, + "new_node.next": 1, + "new_node.prev": 1, + "old_last_node.next": 1, + "prev": 3, + "only": 6, + "n.item": 1, + "detach": 1, + "prev_prev": 2, + "prev.prev": 1, + "prev_prev.next": 1, + "prev.item": 1, + "unshift": 1, + "Circularity": 2, + "has": 3, + "benefits.": 2, + "self.node.prev": 1, + "shift": 1, + "self.node.next": 2, + "self.pop": 1, + "Move": 1, + "at": 2, + "position": 2, + "second": 1, + "etc.": 1, + "rotate": 1, + "n.next": 1, + "Sort": 1, + "using": 1, + "Josephus": 1, + "algorithm.": 1, + "josephus": 1, + "step": 2, + "res": 1, + "self.is_empty": 1, + "count": 2, + "self.rotate": 1, + "kill": 1, + "x": 16, + "self.shift": 1, + "res.add": 1, + "res.node": 1, + "item": 5, + "circular": 3, + "circularity": 1, + "there": 2, + "always": 1, + ";": 34, + "let": 1, + "it": 1, + "be": 9, + "Coherence": 1, + "between": 1, + "to": 18, + "maintained": 1, + "IndexedIterator": 1, + "pointed.": 1, + "Is": 1, + "iterated.": 1, + "is_ok": 1, + "Empty": 1, + "lists": 2, + "OK.": 2, + "Pointing": 1, + "again": 1, + "self.index": 3, + "self.list.node": 1, + "list.node": 1, + "self.list": 1, + "i.add_all": 1, + "i.first": 1, + "i.join": 3, + "i.push": 1, + "i.shift": 1, + "i.pop": 1, + "i.unshift": 1, + "i.josephus": 1, "draw_operation": 1, + "enum": 3, "n_chars": 1, + "{": 14, + "int": 4, "abs": 2, + "recv": 12, "log10f": 1, "float": 1, - "Char": 7, + "}": 14, "as_operator": 1, "b": 10, - "/": 4, - "%": 3, - "abort": 2, "override_dispc": 1, "Bool": 2, - "or": 9, "lines": 7, "Line": 53, "P": 51, @@ -47326,10 +51520,10 @@ "lines.add": 1, "q4": 4, "s/4": 1, - "l": 4, "lines.append": 1, "tl": 2, "tr": 2, + "String": 14, "hack": 3, "support": 1, "bug": 1, @@ -47368,10 +51562,8 @@ "disp_char": 6, "disp_size": 6, "disp_gap": 6, - ".environ": 3, "gets.to_i": 4, "gets.chars": 2, - "result": 16, "op_char.as_operator": 1, "len_a": 2, "a.n_chars": 1, @@ -47395,116 +51587,95 @@ "line_res": 3, "result.to_s": 1, "line_res.draw": 1, - "print_arguments": 1, - "html": 1, - "NitHomepage": 2, - "HTMLPage": 1, - "head": 5, - ".attr": 17, - ".text": 27, - "body": 1, - "open": 14, - ".add_class": 4, - "add_html": 7, - "close": 14, - "page": 1, - "page.write_to": 1, - "page.write_to_file": 1, - "gtk": 1, - "CalculatorContext": 7, - "nullable": 11, - "last_op": 4, - "current": 26, - "after_point": 12, - "push_op": 2, - "op": 11, - "apply_last_op_if_any": 2, - "self.result": 2, - "store": 1, - "next": 9, - "prepare": 1, - "push_digit": 1, - "digit": 1, - "digit.to_f": 2, - "pow": 1, - "after_point.to_f": 1, - "self.after_point": 1, - "self.current": 3, - "switch_to_decimals": 1, - "CalculatorGui": 2, - "GtkCallable": 1, - "win": 2, - "GtkWindow": 2, - "container": 3, - "GtkGrid": 2, - "lbl_disp": 3, - "GtkLabel": 2, - "but_eq": 3, - "GtkButton": 2, - "but_dot": 3, - "context": 9, - "signal": 1, - "user_data": 5, - "context.after_point": 1, - "after_point.abs": 1, - "operation": 1, - "but_dot.sensitive": 2, - "context.switch_to_decimals": 4, - "lbl_disp.text": 3, - "context.push_op": 15, - "context.result.to_precision_native": 1, - "index": 7, - "s.length.times": 1, - "chiffre": 3, - "s.chars": 2, - "s.substring": 2, - "s.length": 2, - "n": 16, - "context.push_digit": 25, - "context.current.to_precision_native": 1, - "init_gtk": 1, - "win.add": 1, - "container.attach": 7, - "digits": 1, - "GtkButton.with_label": 5, - "n.to_s": 1, - "but.request_size": 2, - "but.signal_connect": 2, - "/3": 1, - "operators": 2, - "r": 21, - "op.to_s": 1, - "but_eq.request_size": 1, - "but_eq.signal_connect": 1, - ".": 6, - "but_dot.request_size": 1, - "but_dot.signal_connect": 1, - "#C": 1, - "but_c": 2, - "but_c.request_size": 1, - "but_c.signal_connect": 1, - "win.show_all": 1, - "context.result.to_precision": 6, - "#test": 2, - "multiple": 1, - "decimals": 1, - "button": 1, - "app": 1, - "run_gtk": 1, + "extern_methods": 1, + "Returns": 1, + "th": 2, + "fibonnaci": 1, + "implemented": 1, + "here": 1, + "C": 4, + "optimization": 1, + "purposes": 2, + "fib": 5, + "Int_fib": 3, + "System": 1, + "call": 3, + "sleep": 5, + "seconds": 1, + "atan2l": 1, + "from": 8, + "libmath": 1, + "atan_with": 2, + "atan2": 1, + "This": 1, + "method": 17, + "callback": 11, + "Nit": 2, + "methods": 2, + "code": 3, + "It": 1, + "will": 8, + "use": 1, + "local": 1, + "operator": 1, + "to_s": 3, + "objects": 1, + "String.to_cstring": 2, + "equivalent": 1, + "char*": 1, + "foo": 3, + "long": 2, + "recv_fib": 2, + "recv_plus_fib": 2, + "Int__plus": 1, + "nit_string": 2, + "Int_to_s": 1, + "char": 1, + "*c_string": 1, + "String_to_cstring": 1, + "printf": 1, + "c_string": 1, + "Equivalent": 1, + "written": 2, + "pure": 1, + "bar": 2, + "websocket_server": 1, + "websocket": 1, + "sock": 1, + "WebSocket": 1, + "msg": 8, + "sock.listener.eof": 2, + "sys.errno.strerror": 1, + "sock.accept": 2, + "sock.connected": 1, + "sys.stdin.poll_in": 1, + "gets": 1, + "sock.close": 1, + "sock.disconnect_client": 1, + "sock.write": 1, + "sock.can_read": 1, + "sock.read_line": 1, + "fibonacci": 3, + "Calculate": 1, + "element": 1, + "sequence.": 1, + ".fibonacci": 2, + "usage": 3, + "args.first.to_i.fibonacci": 1, "clock_more": 1, "clock": 4, "Clock": 10, - "are": 4, "now": 1, "comparable": 1, "Comparable": 1, "Comparaison": 1, "make": 1, "sense": 1, + "with": 2, "other": 2, "type": 2, "OTHER": 1, - "Note": 7, + "abstract": 2, "Comparable.": 1, "All": 1, "rely": 1, @@ -47515,6 +51686,130 @@ "c2": 2, "c3": 1, "c1.minutes": 1, + "callback_monkey": 2, + "#include": 2, + "": 1, + "": 1, + "typedef": 2, + "struct": 2, + "id": 2, + "age": 2, + "CMonkey": 6, + "MonkeyActionCallable": 7, + "toCall": 6, + "Object": 7, + "message": 9, + "MonkeyAction": 5, + "//": 13, + "Method": 1, + "which": 4, + "reproduce": 3, + "answer": 1, + "Please": 1, + "note": 1, + "function": 2, + "pointer": 2, + "used": 1, + "void": 3, + "cbMonkey": 2, + "*mkey": 2, + "callbackFunc": 2, + "CMonkey*": 1, + "MonkeyAction*": 1, + "*data": 3, + "mkey": 2, + "data": 6, + "Back": 2, + "background": 1, + "treatment": 1, + "redirected": 1, + "nit_monkey_callback_func": 2, + "To": 1, + "your": 1, + "signature": 1, + "must": 1, + "like": 1, + "this": 2, + "": 1, + "Name": 1, + "_": 1, + "": 1, + "...": 1, + "MonkeyActionCallable_wokeUp": 1, + "interface": 3, + "wokeUp": 4, + "Monkey": 4, + "extern": 2, + "*monkey": 1, + "malloc": 2, + "sizeof": 2, + "monkey": 4, + "get": 1, + "defined": 4, + "Must": 1, + "as": 1, + "Nit/C": 1, + "inside": 1, + "wokeUpAction": 2, + "MonkeyActionCallable.wokeUp": 1, + "Allocating": 1, + "memory": 1, + "keep": 2, + "reference": 2, + "received": 1, + "parameters": 1, + "receiver": 1, + "Message": 1, + "Incrementing": 1, + "counter": 1, + "prevent": 1, + "releasing": 1, + "MonkeyActionCallable_incr_ref": 1, + "Object_incr_ref": 1, + "Calling": 1, + "passing": 1, + "Receiver": 1, + "Function": 1, + "object": 2, + "Datas": 1, + "&": 1, + "total": 1, + "minutes": 12, + "total_minutes": 2, + "read": 1, + "acces": 1, + "public": 1, + "write": 1, + "access": 1, + "private.": 1, + "hour": 3, + "set": 2, + "hour.": 1, + "m": 5, + "changed": 1, + "accordinlgy": 1, + "self.hours": 1, + "hours": 9, + "updated": 1, + "arrow": 2, + "interval": 1, + "hour_pos": 2, + "replace": 1, + "updated.": 1, + "reset": 1, + "hours*60": 1, + "self.reset": 1, + "test": 1, + "required": 1, + "Thanks": 1, + "adaptive": 1, + "typing": 1, + "no": 1, + "downcast": 1, + "i.e.": 1, + "c.minutes": 1, + "c.hours": 1, + "c2.minutes": 1, "curl_http": 1, "MyHttpFetcher": 2, "CurlCallbacks": 1, @@ -47536,11 +51831,9 @@ "Stream": 1, "Cf": 1, "No": 1, - "one": 3, "registered": 1, "stream_callback": 1, "buffer": 1, - "count": 2, "url": 2, "request": 1, "CurlHTTPRequest": 1, @@ -47565,291 +51858,90 @@ "CurlFileResponseSuccess": 1, "Program": 1, "logic": 1, - "total": 1, - "minutes": 12, - "total_minutes": 2, - "read": 1, - "acces": 1, - "public": 1, - "write": 1, - "access": 1, - "private.": 1, - "hour": 3, - "set": 2, - "hour.": 1, - "changed": 1, - "accordinlgy": 1, - "self.hours": 1, - "hours": 9, - "updated": 1, - "position": 2, - "arrow": 2, - "interval": 1, - "hour_pos": 2, - "replace": 1, - "updated.": 1, - "reset": 1, - "hours*60": 1, - "self.reset": 1, - "test": 1, - "required": 1, - "Thanks": 1, - "adaptive": 1, - "typing": 1, - "there": 2, - "no": 1, - "downcast": 1, - "i.e.": 1, - "safe": 4, - "c.minutes": 1, - "c.hours": 1, - "c2.minutes": 1, - "opengles2_hello_triangle": 1, - "glesv2": 1, - "egl": 1, - "mnit_linux": 1, - "sdl": 1, - "x11": 1, - "window_width": 2, - "window_height": 2, - "##": 6, - "SDL": 2, - "sdl_display": 1, - "SDLDisplay": 1, - "sdl_wm_info": 1, - "SDLSystemWindowManagerInfo": 1, - "x11_window_handle": 2, - "sdl_wm_info.x11_window_handle": 1, - "X11": 1, - "x_display": 3, - "x_open_default_display": 1, - "EGL": 2, - "egl_display": 6, - "EGLDisplay": 1, - "egl_display.is_valid": 2, - "egl_display.initialize": 1, - "egl_display.error": 3, - "config_chooser": 1, - "EGLConfigChooser": 1, - "#config_chooser.surface_type_egl": 1, - "config_chooser.blue_size": 1, - "config_chooser.green_size": 1, - "config_chooser.red_size": 1, - "#config_chooser.alpha_size": 1, - "#config_chooser.depth_size": 1, - "#config_chooser.stencil_size": 1, - "#config_chooser.sample_buffers": 1, - "config_chooser.close": 1, - "configs": 3, - "config_chooser.choose": 1, - "configs.is_empty": 1, - "config": 4, - "attribs": 1, - "config.attribs": 2, - "configs.first": 1, - "format": 1, - ".native_visual_id": 1, - "surface": 5, - "egl_display.create_window_surface": 1, - "surface.is_ok": 1, - "egl_display.create_context": 1, - "context.is_ok": 1, - "make_current_res": 2, - "egl_display.make_current": 2, - "width": 2, - "surface.attribs": 2, - ".width": 1, - "height": 2, - ".height": 1, - "egl_bind_opengl_es_api": 1, - "GLESv2": 1, - "assert_no_gl_error": 6, - "gl_shader_compiler": 1, - "gl_error.to_s": 1, - "program": 1, - "GLProgram": 1, - "program.is_ok": 1, - "program.info_log": 1, - "vertex_shader": 2, - "GLVertexShader": 1, - "vertex_shader.is_ok": 1, - "vertex_shader.source": 1, - "vertex_shader.compile": 1, - "vertex_shader.is_compiled": 1, - "fragment_shader": 2, - "GLFragmentShader": 1, - "fragment_shader.is_ok": 1, - "fragment_shader.source": 1, - "fragment_shader.compile": 1, - "fragment_shader.is_compiled": 1, - "program.attach_shader": 2, - "program.bind_attrib_location": 1, - "program.link": 1, - "program.is_linked": 1, - "vertices": 2, - "vertex_array": 1, - "VertexArray": 1, - "vertex_array.attrib_pointer": 1, - "gl_clear_color": 1, - "gl_viewport": 1, - "gl_clear_color_buffer": 1, - "program.use": 1, - "vertex_array.enable": 1, - "vertex_array.draw_arrays_triangles": 1, - "egl_display.swap_buffers": 1, - "program.delete": 1, - "vertex_shader.delete": 1, - "fragment_shader.delete": 1, - "EGLSurface.none": 2, - "EGLContext.none": 1, - "egl_display.destroy_context": 1, - "egl_display.destroy_surface": 1, - "sdl_display.destroy": 1, - "circular_list": 1, - "CircularList": 6, - "E": 15, - "Like": 1, - "standard": 1, - "LinkedList": 1, - "Sequence.": 1, - "Sequence": 1, - "The": 11, - "first": 7, - "node": 10, - "any": 1, - "special": 1, - "case": 1, - "empty": 1, - "handled": 1, - "private": 5, - "CLNode": 6, - "iterator": 1, - "CircularListIterator": 2, - "self.node.item": 2, - "push": 3, - "e": 4, - "new_node": 4, - "self.node": 13, - "so": 4, - "attach": 1, - "nodes": 3, - "correctly.": 2, - "old_last_node": 2, - "n.prev": 4, - "new_node.next": 1, - "new_node.prev": 1, - "old_last_node.next": 1, - "pop": 2, - "prev": 3, - "n.item": 1, - "detach": 1, - "prev_prev": 2, - "prev.prev": 1, - "prev_prev.next": 1, - "prev.item": 1, - "unshift": 1, - "Circularity": 2, - "has": 3, - "benefits.": 2, - "self.node.prev": 1, - "shift": 1, - "self.node.next": 2, - "self.pop": 1, - "Move": 1, - "at": 2, - "last": 2, - "second": 1, - "etc.": 1, - "rotate": 1, - "n.next": 1, - "Sort": 1, - "using": 1, - "Josephus": 1, - "algorithm.": 1, - "josephus": 1, - "step": 2, - "res": 1, - "self.is_empty": 1, - "self.rotate": 1, - "kill": 1, - "self.shift": 1, - "res.add": 1, - "res.node": 1, - "item": 5, - "circular": 3, - "list.": 4, - "Because": 2, - "circularity": 1, - "always": 1, - "default": 2, - "let": 1, - "it": 1, - "previous": 4, - "Coherence": 1, - "between": 1, - "maintained": 1, - "IndexedIterator": 1, - "pointed.": 1, - "Is": 1, - "empty.": 4, - "iterated.": 1, - "is_ok": 1, - "Empty": 1, - "OK.": 2, - "Pointing": 1, - "again": 1, - "self.index": 3, - "self.list.node": 1, - "list.node": 1, - "self.list": 1, - "i.add_all": 1, - "i.first": 1, - "i.join": 3, - "i.push": 1, - "i.shift": 1, - "i.pop": 1, - "i.unshift": 1, - "i.josephus": 1, - "int_stack": 1, - "IntStack": 2, - "Null": 1, - "means": 1, - "stack": 3, - "ISNode": 4, - "integer": 2, - "stack.": 2, - "val": 5, - "self.head": 5, - "Remove": 1, - "pushed": 1, - "integer.": 1, - "followings": 2, - "statically": 3, - "head.val": 1, - "head.next": 1, - "integers": 1, - "sumall": 1, - "cur": 3, - "condition": 1, - "cur.val": 1, - "cur.next": 1, - "attributes": 1, - "have": 1, - "value": 2, - "free": 2, - "constructor": 2, - "implicitly": 2, - "defined.": 2, - "stored": 1, - "node.": 1, - "any.": 1, - "A": 1, - "l.push": 4, - "l.sumall": 1, - "l.pop": 5, - "following": 1, - "gives": 2, - "alternative": 1 + "procedural_array": 1, + "array_sum": 2, + "array_sum_alt": 2, + "a.length": 1, + "html": 1, + "NitHomepage": 2, + "HTMLPage": 1, + "add": 35, + ".attr": 17, + ".text": 27, + "body": 1, + "open": 14, + ".add_class": 4, + "add_html": 7, + "close": 14, + "page": 1, + "page.write_to": 1, + "stdout": 2, + "page.write_to_file": 1, + "template": 1, + "###": 2, + "Here": 2, + "definition": 1, + "specific": 1, + "templates": 2, + "TmplComposers": 2, + "Template": 3, + "Short": 2, + "composers": 4, + "TmplComposer": 3, + "Detailled": 1, + "composer_details": 2, + "TmplComposerDetail": 3, + "composer": 1, + "both": 1, + "add_composer": 1, + "firstname": 5, + "lastname": 6, + "birth": 5, + "death": 5, + "composers.add": 1, + "composer_details.add": 1, + "rendering": 3, + "add_all": 2, + "name": 4, + "self.name": 1, + "self.firstname": 1, + "self.lastname": 1, + "self.birth": 1, + "self.death": 1, + "simple": 1, + "f": 1, + "f.add_composer": 3, + "f.write_to": 1, + "callback_chimpanze": 1, + "Chimpanze": 2, + "create": 1, + "Invoking": 1, + "take": 1, + "some": 1, + "time": 1, + "compute": 1, + "back": 1, + "information.": 1, + "Callback": 1, + "Interface": 1, + "monkey.wokeUpAction": 1, + "Inherit": 1, + "m.create": 1, + "drop_privileges": 1, + "privileges": 1, + "opts": 1, + "OptionContext": 1, + "opt_ug": 2, + "OptionUserAndGroup.for_dropping_privileges": 1, + "opt_ug.mandatory": 1, + "opts.add_option": 1, + "opts.parse": 1, + "opts.errors.is_empty": 1, + "opts.errors": 1, + "opts.usage": 1, + "user_group": 2, + "opt_ug.value": 1, + "user_group.drop_privileges": 1 }, "Nix": { "{": 8, @@ -47918,6 +52010,10 @@ "inherit": 1 }, "Nu": { + "SHEBANG#!nush": 1, + "(": 14, + "puts": 1, + ")": 14, ";": 22, "main.nu": 1, "Entry": 1, @@ -47927,9 +52023,7 @@ "Nu": 1, "program.": 1, "Copyright": 1, - "(": 14, "c": 1, - ")": 14, "Tim": 1, "Burks": 1, "Neon": 1, @@ -47977,9 +52071,7 @@ "event": 1, "loop": 1, "NSApplicationMain": 1, - "nil": 1, - "SHEBANG#!nush": 1, - "puts": 1 + "nil": 1 }, "OCaml": { "{": 11, @@ -48070,46 +52162,748 @@ }, "Objective-C": { "#import": 53, - "": 2, - "@interface": 23, - "FooAppDelegate": 2, - "NSObject": 5, - "": 1, - "{": 541, - "@private": 2, - "NSWindow": 2, - "*window": 2, - ";": 2003, - "}": 532, - "@property": 150, - "(": 2109, - "assign": 84, - ")": 2106, - "IBOutlet": 1, - "@end": 37, - "//": 317, - "///////////////////////////////////////////////////////////////////////////////////////////////////": 24, "@implementation": 13, - "MainMenuViewController": 2, + "SBJsonParser": 2, + "@synthesize": 7, + "maxDepth": 2, + ";": 2003, + "error": 75, "-": 595, + "(": 2109, "id": 170, - "initWithNibName": 3, - "NSString": 127, + ")": 2106, + "init": 34, + "{": 541, + "self": 500, + "[": 1227, + "super": 25, + "]": 1227, + "if": 297, + "self.maxDepth": 2, + "u": 4, + "return": 165, + "}": 532, + "#pragma": 44, + "mark": 42, + "Methods": 1, + "objectWithData": 7, + "NSData": 28, "*": 311, + "data": 27, + "self.error": 3, + "@": 258, + "nil": 131, + "SBJsonStreamParserAccumulator": 2, + "*accumulator": 1, + "alloc": 47, + "SBJsonStreamParserAdapter": 2, + "*adapter": 1, + "adapter.delegate": 1, + "accumulator": 1, + "SBJsonStreamParser": 2, + "*parser": 1, + "parser.maxDepth": 1, + "parser.delegate": 1, + "adapter": 1, + "switch": 3, + "parser": 3, + "parse": 1, + "case": 8, + "SBJsonStreamParserComplete": 1, + "accumulator.value": 1, + "break": 13, + "SBJsonStreamParserWaitingForData": 1, + "SBJsonStreamParserError": 1, + "parser.error": 1, + "objectWithString": 5, + "NSString": 127, + "repr": 5, + "dataUsingEncoding": 2, + "NSUTF8StringEncoding": 2, + "NSString*": 13, + "NSError**": 2, + "error_": 2, + "tmp": 3, + "NSDictionary": 37, + "*ui": 1, + "dictionaryWithObjectsAndKeys": 10, + "NSLocalizedDescriptionKey": 10, + "*error_": 1, + "NSError": 51, + "errorWithDomain": 6, + "code": 16, + "userInfo": 15, + "ui": 1, + "@end": 37, + "Foo": 2, + "//": 317, + "@interface": 23, + "MainMenuViewController": 2, + "TTTableViewController": 1, + "#define": 65, + "HEADER_Z_POSITION": 2, + "typedef": 47, + "struct": 20, + "CGFloat": 44, + "offset": 23, + "from": 18, + "beginning": 1, + "of": 34, + "section": 60, + "height": 19, + "TUITableViewRowInfo": 3, + "TUITableViewSection": 16, + "NSObject": 5, + "__unsafe_unretained": 2, + "TUITableView": 25, + "*_tableView": 1, + "weak": 2, + "TUIView": 17, + "*_headerView": 1, + "Not": 2, + "reusable": 1, + "similar": 1, + "to": 115, + "UITableView": 1, + "NSInteger": 56, + "sectionIndex": 23, + "NSUInteger": 93, + "numberOfRows": 13, + "sectionHeight": 9, + "sectionOffset": 8, + "*rowInfo": 1, + "@property": 150, + "strong": 4, + "readonly": 19, + "*headerView": 6, + "nonatomic": 40, + "assign": 84, + "initWithNumberOfRows": 2, + "n": 7, + "s": 35, + "tableView": 45, + "t": 15, + "_tableView": 3, + "rowInfo": 7, + "calloc": 5, + "sizeof": 13, + "void": 253, + "dealloc": 13, + "free": 4, + "_setupRowHeights": 2, + "*header": 1, + "header": 20, + "self.headerView": 2, + "+": 195, + "roundf": 2, + "header.frame.size.height": 1, + "for": 99, + "int": 55, + "i": 41, + "<": 56, + "h": 3, + "_tableView.delegate": 1, + "heightForRowAtIndexPath": 2, + "TUIFastIndexPath": 89, + "indexPathForRow": 11, + "inSection": 11, + ".offset": 2, + ".height": 4, + "rowHeight": 2, + "&&": 123, + "sectionRowOffset": 2, + "tableRowOffset": 2, + "headerHeight": 4, + "self.headerView.frame.size.height": 1, + "headerView": 14, + "_headerView": 8, + "_tableView.dataSource": 3, + "respondsToSelector": 8, + "@selector": 28, + "headerViewForSection": 6, + "_headerView.autoresizingMask": 1, + "TUIViewAutoresizingFlexibleWidth": 1, + "_headerView.layer.zPosition": 1, + "Private": 1, + "_updateSectionInfo": 2, + "_updateDerepeaterViews": 2, + "pullDownView": 1, + "_pullDownView": 4, + "initWithFrame": 12, + "CGRect": 41, + "frame": 38, + "style": 29, + "TUITableViewStyle": 4, + "_style": 8, + "_reusableTableCells": 5, + "NSMutableDictionary": 18, + "_visibleSectionHeaders": 6, + "NSMutableIndexSet": 6, + "_visibleItems": 14, + "_tableFlags.animateSelectionChanges": 3, + "TUITableViewStylePlain": 2, + "": 4, + "delegate": 29, + "setDelegate": 4, + "d": 11, + "_tableFlags.delegateTableViewWillDisplayCellForRowAtIndexPath": 1, + "willDisplayCell": 2, + "forRowAtIndexPath": 2, + "must": 6, + "call": 8, + "": 4, + "dataSource": 2, + "_dataSource": 6, + "setDataSource": 1, + "_tableFlags.dataSourceNumberOfSectionsInTableView": 2, + "numberOfSectionsInTableView": 3, + "BOOL": 137, + "animateSelectionChanges": 3, + "setAnimateSelectionChanges": 1, + "a": 78, + "numberOfSections": 10, + "_sectionInfo": 27, + "count": 99, + "numberOfRowsInSection": 9, + "objectAtIndex": 8, + "rectForHeaderOfSection": 4, + "*s": 3, + "y": 12, + "_contentHeight": 7, + "CGRectMake": 8, + "self.bounds.size.width": 4, + "CGRectZero": 5, + "rectForSection": 3, + "rectForRowAtIndexPath": 7, + "indexPath": 47, + "indexPath.section": 3, + "row": 36, + "indexPath.row": 1, + "*section": 8, + "in": 42, + "removeFromSuperview": 4, + "removeAllIndexes": 2, + "NSMutableArray": 31, + "*sections": 1, + "initWithCapacity": 2, + "bounds": 2, + ".size.height": 1, + "self.contentInset.top*2": 1, + "section.sectionOffset": 1, + "sections": 4, + "addObject": 16, + "self.contentInset.bottom": 1, + "_enqueueReusableCell": 2, + "TUITableViewCell": 23, + "cell": 21, + "*identifier": 1, + "cell.reuseIdentifier": 1, + "identifier": 7, + "*array": 9, + "objectForKey": 29, + "array": 84, + "setObject": 9, + "forKey": 9, + "dequeueReusableCellWithIdentifier": 2, + "*c": 1, + "lastObject": 1, + "c": 7, + "removeLastObject": 1, + "prepareForReuse": 1, + "else": 35, + "cellForRowAtIndexPath": 9, + "returns": 4, + "is": 77, + "not": 29, + "visible": 16, + "or": 18, + "index": 11, + "path": 11, + "out": 7, + "range": 8, + "NSArray": 27, + "visibleCells": 3, + "allValues": 1, + "static": 102, + "SortCells": 1, + "*a": 2, + "*b": 2, + "*ctx": 1, + "a.frame.origin.y": 2, + "b.frame.origin.y": 2, + "NSOrderedAscending": 4, + "NSOrderedDescending": 4, + "sortedVisibleCells": 2, + "*v": 2, + "v": 4, + "sortedArrayUsingComparator": 1, + "NSComparator": 1, + "NSComparisonResult": 1, + "INDEX_PATHS_FOR_VISIBLE_ROWS": 4, + "allKeys": 1, + "indexPathsForVisibleRows": 2, + "indexPathForCell": 2, + "*i": 4, + "*cell": 7, + "NSIndexSet": 4, + "indexesOfSectionsInRect": 2, + "rect": 10, + "*indexes": 2, + "CGRectIntersectsRect": 5, + "indexes": 4, + "addIndex": 3, + "indexesOfSectionHeadersInRect": 2, + "indexPathsForRowsInRect": 3, + "*indexPaths": 1, + "arrayWithCapacity": 2, + "*indexPath": 11, + "cellRect": 7, + "indexPaths": 2, + "indexPathForRowAtPoint": 2, + "CGPoint": 7, + "point": 11, + "CGRectContainsPoint": 1, + "indexPathForRowAtVerticalOffset": 2, + "cellRect.origin.y": 1, + "<=>": 15, + "origin": 1, + "size": 12, + "brief": 1, + "Obtain": 1, + "the": 197, + "whose": 2, + "at": 10, + "specified": 1, + "If": 30, + "valid": 5, + "no": 7, + "exists": 1, + "that": 23, + "negative": 1, + "value": 21, + "returned": 1, + "param": 1, + "location": 3, + "table": 7, + "view": 11, + "p": 3, + "indexOfSectionWithHeaderAtPoint": 2, + "0": 2, + "width": 1, + "frame.origin.y": 16, + "point.y": 1, + "frame.size.height": 15, + "indexOfSectionWithHeaderAtVerticalOffset": 2, + "section.headerView": 9, + "enumerateIndexPathsUsingBlock": 2, + "*stop": 7, + "block": 18, + "enumerateIndexPathsFromIndexPath": 4, + "toIndexPath": 12, + "withOptions": 4, + "usingBlock": 6, + "enumerateIndexPathsWithOptions": 2, + "NSEnumerationOptions": 4, + "options": 6, + "fromIndexPath": 6, + "sectionLowerBound": 2, + "fromIndexPath.section": 1, + "sectionUpperBound": 3, + "toIndexPath.section": 1, + "rowLowerBound": 2, + "fromIndexPath.row": 1, + "rowUpperBound": 3, + "toIndexPath.row": 1, + "irow": 3, + "start": 3, + "lower": 1, + "bound": 1, + "first": 9, + "iteration...": 1, + "rowCount": 3, + "j": 5, + "||": 42, + "stop": 4, + "FALSE": 2, + "&": 36, + "...then": 1, + "use": 26, + "zero": 1, + "subsequent": 2, + "iterations": 1, + "_topVisibleIndexPath": 1, + "*topVisibleIndex": 1, + "sortedArrayUsingSelector": 1, + "compare": 4, + "topVisibleIndex": 2, + "setFrame": 2, + "f": 8, + "_tableFlags.forceSaveScrollPosition": 1, + "setContentOffset": 2, + "_tableFlags.didFirstLayout": 1, + "prevent": 2, + "auto": 2, + "scroll": 3, + "top": 8, + "during": 4, + "layout": 3, + "we": 73, + "pinned": 5, + "state": 35, + "isKindOfClass": 2, + "TUITableViewSectionHeader": 5, + "class": 30, + ".pinnedToViewport": 2, + "TRUE": 1, + "pinnedHeader": 1, + "CGRectGetMaxY": 2, + "headerFrame": 4, + "pinnedHeader.frame.origin.y": 1, + "this": 50, + "intersecting": 1, + "with": 19, + "so": 15, + "push": 1, + "upwards.": 1, + "pinnedHeaderFrame": 2, + "pinnedHeader.frame": 2, + "pinnedHeaderFrame.origin.y": 1, + "notify": 3, + "it": 28, + "section.headerView.frame": 1, + "setNeedsLayout": 3, + "section.headerView.superview": 1, + "addSubview": 8, + "remove": 4, + "offscreen": 2, + "headers": 11, + "toRemove": 1, + "enumerateIndexesUsingBlock": 1, + "removeIndex": 1, + "_layoutCells": 3, + "visibleCellsNeedRelayout": 5, + "update": 6, + "remaining": 1, + "cells": 7, + "needed": 3, + "cell.frame": 1, + "cell.layer.zPosition": 1, + "visibleRect": 3, + "Example": 1, + "old": 5, + "new": 10, + "add": 5, + "*oldVisibleIndexPaths": 1, + "*newVisibleIndexPaths": 1, + "*indexPathsToRemove": 1, + "oldVisibleIndexPaths": 2, + "mutableCopy": 2, + "indexPathsToRemove": 2, + "removeObjectsInArray": 2, + "newVisibleIndexPaths": 2, + "*indexPathsToAdd": 1, + "indexPathsToAdd": 2, + "don": 2, + "on": 26, + "newly": 1, + "added": 5, + "_dragToReorderCell": 5, + "superview": 1, + "bringSubviewToFront": 1, + "CGSize": 5, + "self.contentSize": 3, + "headerViewRect": 3, + "s.height": 3, + "_headerView.frame.size.height": 2, + "visible.size.width": 3, + "_headerView.frame": 1, + "_headerView.hidden": 4, + "show": 2, + "NO": 30, + "YES": 62, + "pullDownRect": 4, + "_pullDownView.frame.size.height": 2, + "pullDownViewIsVisible": 3, + "_pullDownView.hidden": 4, + "_pullDownView.frame": 1, + "reloadDataMaintainingVisibleIndexPath": 2, + "relativeOffset": 5, + "_keepVisibleIndexPathForReload": 2, + "_relativeOffsetForReload": 2, + "reloadData": 3, + "self.delegate": 10, + "tableViewWillReloadData": 3, + "_selectedIndexPath": 9, + "need": 10, + "recycle": 1, + "all": 3, + "have": 15, + "them": 10, + "be": 49, + "regenerated": 3, + "layoutSubviews": 5, + "because": 1, + "same": 6, + "might": 4, + "different": 4, + "content": 5, + "dragged": 1, + "clear": 3, + "removeAllObjects": 1, + "any": 3, + "they": 6, + "should": 8, + "re": 9, + "when": 46, + "laid": 1, + "will": 57, + "next": 2, + "tableViewDidReloadData": 3, + "_tableFlags.layoutSubviewsReentrancyGuard": 3, + "setAnimationsEnabled": 1, + "CATransaction": 3, + "begin": 1, + "setDisableActions": 1, + "_preLayoutCells": 2, + "munge": 2, + "contentOffset": 2, + "_layoutSectionHeaders": 2, + "_tableFlags.derepeaterEnabled": 1, + "commit": 1, + "NSLog": 4, + "reloadLayout": 2, + "scrollToRowAtIndexPath": 3, + "atScrollPosition": 3, + "TUITableViewScrollPosition": 5, + "scrollPosition": 9, + "animated": 27, + "r": 6, + "target": 5, + "has": 6, + "its": 9, + "our": 6, + "selected": 2, + "being": 4, + "overlapped": 1, + "by": 12, + "r.size.height": 4, + "headerFrame.size.height": 1, + "TUITableViewScrollPositionNone": 2, + "do": 5, + "nothing": 2, + "TUITableViewScrollPositionTop": 2, + "r.origin.y": 1, + "v.size.height": 2, + "scrollRectToVisible": 2, + "TUITableViewScrollPositionToVisible": 3, + "default": 8, + "indexPathForSelectedRow": 4, + "indexPathForFirstRow": 2, + "indexPathForLastRow": 2, + "sec": 3, + "_makeRowAtIndexPathFirstResponder": 2, + "only": 12, + "accept": 2, + "responder": 2, + "made": 1, + "acceptsFirstResponder": 1, + "self.nsWindow": 3, + "makeFirstResponderIfNotAlreadyInResponderChain": 1, + "_indexPathShouldBeFirstResponder": 2, + "_futureMakeFirstResponderToken": 2, + "futureMakeFirstResponderRequestToken": 1, + "selectRowAtIndexPath": 3, + "*oldIndexPath": 1, + "isEqual": 4, + "oldIndexPath": 2, + "just": 4, + "deselectRowAtIndexPath": 3, + "may": 8, + "setSelected": 2, + "already": 4, + "setNeedsDisplay": 2, + "selection": 3, + "actually": 2, + "changes": 4, + "didSelectRowAtIndexPath": 3, + "NSResponder": 1, + "*firstResponder": 1, + "firstResponder": 3, + "didDeselectRowAtIndexPath": 3, + "indexPathForFirstVisibleRow": 2, + "*firstIndexPath": 1, + "firstIndexPath": 4, + "indexPathForLastVisibleRow": 2, + "*lastIndexPath": 5, + "lastIndexPath": 8, + "performKeyAction": 2, + "NSEvent": 3, + "event": 8, + "and": 44, + "repeative": 1, + "key": 32, + "press": 1, + "noCurrentSelection": 2, + "isARepeat": 1, + "TUITableViewCalculateNextIndexPathBlock": 3, + "selectValidIndexPath": 3, + "*startForNoSelection": 2, + "calculateNextIndexPath": 4, + "NSParameterAssert": 15, + "foundValidNextRow": 4, + "while": 11, + "*newIndexPath": 1, + "newIndexPath": 6, + "startForNoSelection": 1, + "_delegate": 2, + "shouldSelectRowAtIndexPath": 3, + "forEvent": 3, + "self.animateSelectionChanges": 1, + "charactersIgnoringModifiers": 1, + "characterAtIndex": 1, + "NSUpArrowFunctionKey": 1, + "lastIndexPath.section": 2, + "lastIndexPath.row": 2, + "rowsInSection": 7, + "NSDownArrowFunctionKey": 1, + "maintainContentOffsetAfterReload": 3, + "_tableFlags.maintainContentOffsetAfterReload": 2, + "setMaintainContentOffsetAfterReload": 1, + "newValue": 2, + "NSIndexPath": 5, + "indexPathWithIndexes": 1, + "length": 32, + "indexAtPosition": 2, + "FooAppDelegate": 2, + "window": 1, + "applicationDidFinishLaunching": 1, + "NSNotification": 2, + "aNotification": 1, + "#include": 18, + "": 1, + "": 2, + "": 2, + "": 1, + "": 1, + "#ifdef": 10, + "__OBJC__": 4, + "": 2, + "": 2, + "": 2, + "": 1, + "": 2, + "": 1, + "#endif": 59, + "__cplusplus": 2, + "extern": 6, + "#ifndef": 9, + "NSINTEGER_DEFINED": 3, + "#if": 41, + "defined": 16, + "__LP64__": 4, + "NS_BUILD_32_LIKE_64": 3, + "long": 71, + "unsigned": 62, + "NSIntegerMin": 3, + "LONG_MIN": 3, + "NSIntegerMax": 4, + "LONG_MAX": 3, + "NSUIntegerMax": 7, + "ULONG_MAX": 3, + "#else": 8, + "INT_MIN": 3, + "INT_MAX": 2, + "UINT_MAX": 3, + "_JSONKIT_H_": 3, + "__GNUC__": 14, + "__APPLE_CC__": 2, + "JK_DEPRECATED_ATTRIBUTE": 6, + "__attribute__": 3, + "deprecated": 1, + "JSONKIT_VERSION_MAJOR": 1, + "JSONKIT_VERSION_MINOR": 1, + "JKFlags": 5, + "enum": 17, + "JKParseOptionNone": 1, + "JKParseOptionStrict": 1, + "JKParseOptionComments": 2, + "<<": 16, + "JKParseOptionUnicodeNewlines": 2, + "JKParseOptionLooseUnicode": 2, + "JKParseOptionPermitTextAfterValidJSON": 2, + "JKParseOptionValidFlags": 1, + "|": 13, + "JKParseOptionFlags": 12, + "JKSerializeOptionNone": 3, + "JKSerializeOptionPretty": 2, + "JKSerializeOptionEscapeUnicode": 2, + "JKSerializeOptionEscapeForwardSlashes": 2, + "JKSerializeOptionValidFlags": 1, + "JKSerializeOptionFlags": 16, + "JKParseState": 18, + "Opaque": 1, + "internal": 2, + "private": 1, + "type.": 3, + "JSONDecoder": 2, + "*parseState": 16, + "decoder": 1, + "decoderWithParseOptions": 1, + "parseOptionFlags": 11, + "initWithParseOptions": 1, + "clearCache": 1, + "parseUTF8String": 2, + "const": 28, + "char": 19, + "string": 9, + "size_t": 23, + "Deprecated": 4, + "JSONKit": 11, + "v1.4.": 4, + "Use": 6, + "objectWithUTF8String": 4, + "instead.": 4, + "**": 27, + "parseJSONData": 2, + "jsonData": 6, + "mutableObjectWithUTF8String": 2, + "mutableObjectWithData": 2, + "////////////": 4, + "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": 3, + "JSONData": 3, + "Invokes": 2, + "JSONDataWithOptions": 8, + "includeQuotes": 6, + "serializeOptions": 14, + "JSONString": 3, + "JSONStringWithOptions": 8, + "serializeUnsupportedClassesUsingDelegate": 4, + "selector": 12, + "SEL": 19, + "__BLOCKS__": 1, + "JSONKitSerializingBlockAdditions": 2, + "serializeUnsupportedClassesUsingBlock": 4, + "object": 36, + "///////////////////////////////////////////////////////////////////////////////////////////////////": 24, + "initWithNibName": 3, "nibNameOrNil": 1, "bundle": 3, "NSBundle": 1, "nibBundleOrNil": 1, - "if": 297, - "self": 500, - "[": 1227, - "super": 25, - "nil": 131, - "]": 1227, "self.title": 2, - "@": 258, "//self.variableHeightRows": 1, - "YES": 62, "self.tableViewStyle": 1, "UITableViewStyleGrouped": 1, "self.dataSource": 1, @@ -48118,124 +52912,104 @@ "TTTableTextItem": 48, "itemWithText": 48, "URL": 48, - "return": 165, - "int": 55, + "": 2, + "": 1, + "@private": 2, + "NSWindow": 2, + "*window": 2, + "IBOutlet": 1, + "StyleViewController": 2, + "TTViewController": 1, + "TTStyle*": 7, + "_styleHighlight": 6, + "_styleDisabled": 6, + "_styleSelected": 6, + "_styleType": 6, "main": 8, "argc": 1, - "char": 19, "*argv": 1, - "NSLog": 4, - "Foo": 2, - "NSString*": 13, - "kTextStyleType": 2, - "kViewStyleType": 2, - "kImageStyleType": 2, - "StyleViewController": 2, - "initWithStyleName": 1, - "name": 7, - "styleType": 3, - "_style": 8, - "TTStyleSheet": 4, - "globalStyleSheet": 4, - "styleWithSelector": 4, - "retain": 73, - "_styleHighlight": 6, - "forState": 4, - "UIControlStateHighlighted": 1, - "_styleDisabled": 6, - "UIControlStateDisabled": 1, - "_styleSelected": 6, - "UIControlStateSelected": 1, - "_styleType": 6, - "copy": 4, - "void": 253, - "dealloc": 13, - "TT_RELEASE_SAFELY": 12, - "#pragma": 44, - "mark": 42, - "UIViewController": 2, - "addTextView": 5, - "title": 2, - "frame": 38, - "CGRect": 41, - "style": 29, - "TTStyle*": 7, - "textFrame": 3, - "TTRectInset": 3, - "UIEdgeInsetsMake": 3, - "StyleView*": 2, + "": 1, + "kFramePadding": 7, + "kElementSpacing": 3, + "kGroupSpacing": 5, + "PlaygroundViewController": 2, + "addHeader": 5, "text": 12, - "StyleView": 2, - "alloc": 47, - "initWithFrame": 12, - "text.text": 1, - "TTStyleContext*": 1, - "context": 4, - "TTStyleContext": 1, - "init": 34, - "context.frame": 1, - "context.delegate": 1, - "context.font": 1, + "yOffset": 42, + "UILabel*": 2, + "label": 6, + "UILabel": 2, + "label.text": 2, + "label.font": 3, "UIFont": 3, "systemFontOfSize": 2, - "systemFontSize": 1, - "CGSize": 5, - "size": 12, - "addToSize": 1, - "CGSizeZero": 1, - "size.width": 1, - "+": 195, - "size.height": 1, - "textFrame.size": 1, - "text.frame": 1, - "text.style": 1, - "text.backgroundColor": 1, - "UIColor": 3, - "colorWithRed": 3, - "green": 3, - "blue": 3, - "alpha": 3, - "text.autoresizingMask": 1, - "UIViewAutoresizingFlexibleWidth": 4, - "|": 13, - "UIViewAutoresizingFlexibleBottomMargin": 3, - "self.view": 4, - "addSubview": 8, - "addView": 5, - "viewFrame": 4, - "view": 11, - "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, - "loadView": 4, - "self.view.bounds": 2, - "frame.size.height": 15, - "/": 18, - "isEqualToString": 13, - "frame.origin.y": 16, - "else": 35, - "": 4, - "PlaygroundViewController": 2, - "UIScrollView*": 1, + "label.numberOfLines": 2, + "label.frame": 4, + "frame.origin.x": 3, + "frame.size.width": 4, + "sizeWithFont": 2, + "constrainedToSize": 2, + "CGSizeMake": 3, "_scrollView": 9, - "#if": 41, + "label.frame.size.height": 2, + "TT_RELEASE_SAFELY": 12, + "addText": 5, + "loadView": 4, + "UIScrollView": 1, + "self.view.bounds": 2, + "_scrollView.autoresizingMask": 1, + "UIViewAutoresizingFlexibleWidth": 4, + "UIViewAutoresizingFlexibleHeight": 1, + "self.view": 4, + "NSLocalizedString": 9, + "UIButton*": 1, + "button": 5, + "UIButton": 1, + "buttonWithType": 1, + "UIButtonTypeRoundedRect": 1, + "setTitle": 1, + "forState": 4, + "UIControlStateNormal": 1, + "addTarget": 1, + "action": 1, + "debugTestAction": 2, + "forControlEvents": 1, + "UIControlEventTouchUpInside": 1, + "sizeToFit": 1, + "button.frame": 2, + "stringWithFormat": 6, + "TTCurrentLocale": 2, + "displayNameForKey": 1, + "NSLocaleIdentifier": 1, + "localeIdentifier": 1, + "TTPathForBundleResource": 1, + "TTPathForDocumentsResource": 1, + "md5Hash": 1, + "setContentSize": 1, + "viewDidUnload": 2, + "viewDidAppear": 2, + "flashScrollIndicators": 1, + "DEBUG": 1, + "TTDPRINTMETHODNAME": 1, + "TTDPRINT": 9, + "TTMAXLOGLEVEL": 1, + "TTDERROR": 1, + "TTLOGLEVEL_ERROR": 1, + "TTDWARNING": 1, + "TTLOGLEVEL_WARNING": 1, + "TTDINFO": 1, + "TTLOGLEVEL_INFO": 1, + "TTDCONDITIONLOG": 3, + "true": 9, + "false": 3, + "rand": 1, + "%": 30, + "TTDASSERT": 2, "TARGET_OS_IPHONE": 11, "": 1, - "#else": 8, "": 1, - "#endif": 59, "*ASIHTTPRequestVersion": 2, - "static": 102, "*defaultUserAgent": 1, - "const": 28, "NetworkRequestErrorDomain": 12, "*ASIHTTPRequestRunLoopMode": 1, "CFOptionFlags": 1, @@ -48243,7 +53017,6 @@ "kCFStreamEventHasBytesAvailable": 1, "kCFStreamEventEndEncountered": 1, "kCFStreamEventErrorOccurred": 1, - "NSMutableArray": 31, "*sessionCredentialsStore": 1, "*sessionProxyCredentialsStore": 1, "NSRecursiveLock": 13, @@ -48262,15 +53035,12 @@ "clientCallBackInfo": 1, "handleNetworkEvent": 2, "*progressLock": 1, - "NSError": 51, "*ASIRequestCancelledError": 1, "*ASIRequestTimedOutError": 1, "*ASIAuthenticationError": 1, "*ASIUnableToCreateRequestError": 1, "*ASITooMuchRedirectionError": 1, "*bandwidthUsageTracker": 1, - "unsigned": 62, - "long": 71, "averageBandwidthUsedPerSecond": 2, "nextConnectionNumberToCreate": 1, "*persistentConnectionsPool": 1, @@ -48283,9 +53053,7 @@ "*bandwidthThrottlingLock": 1, "maxBandwidthPerSecond": 2, "ASIWWANBandwidthThrottleAmount": 2, - "BOOL": 137, "isBandwidthThrottled": 2, - "NO": 30, "shouldThrottleBandwidthForWWANOnly": 1, "*sessionCookiesLock": 1, "*delegateAuthenticationLock": 1, @@ -48326,7 +53094,6 @@ "NSInvocation": 4, "invocation": 4, "onTarget": 7, - "target": 5, "releasingObject": 2, "objectToRelease": 1, "hideNetworkActivityIndicatorAfterDelay": 1, @@ -48344,21 +53111,18 @@ "registerForNetworkReachabilityNotifications": 1, "unsubscribeFromNetworkReachabilityNotifications": 1, "reachabilityChanged": 1, - "NSNotification": 2, "note": 1, "NS_BLOCKS_AVAILABLE": 8, "performBlockOnMainThread": 2, "ASIBasicBlock": 15, - "block": 18, "releaseBlocksOnMainThread": 4, "releaseBlocks": 3, - "NSArray": 27, "blocks": 16, "callBlock": 1, "complete": 12, + "retain": 73, "*responseCookies": 3, "responseStatusCode": 3, - "nonatomic": 40, "*lastActivityTime": 2, "partialDownloadSize": 8, "uploadBufferSize": 6, @@ -48376,7 +53140,6 @@ "updatedProgress": 3, "needsRedirect": 3, "redirectCount": 2, - "NSData": 28, "*compressedPostBody": 1, "*compressedPostBodyFilePath": 1, "*authenticationRealm": 2, @@ -48386,7 +53149,6 @@ "retryCount": 3, "willRetryRequest": 1, "connectionCanBeReused": 4, - "NSMutableDictionary": 18, "*connectionInfo": 2, "*readStream": 1, "ASIAuthenticationState": 5, @@ -48408,8 +53170,8 @@ "setter": 2, "setSynchronous": 2, "isSynchronous": 2, + "/": 18, "initialize": 1, - "class": 30, "persistentConnectionsPool": 3, "connectionsLock": 3, "progressLock": 1, @@ -48418,15 +53180,9 @@ "sessionCredentialsLock": 1, "delegateAuthenticationLock": 1, "bandwidthUsageTracker": 1, - "initWithCapacity": 2, "ASIRequestTimedOutError": 1, "initWithDomain": 5, - "code": 16, "ASIRequestTimedOutErrorType": 2, - "userInfo": 15, - "NSDictionary": 37, - "dictionaryWithObjectsAndKeys": 10, - "NSLocalizedDescriptionKey": 10, "ASIAuthenticationError": 1, "ASIAuthenticationErrorType": 3, "ASIRequestCancelledError": 2, @@ -48461,7 +53217,6 @@ "setRequestCookies": 2, "autorelease": 21, "setDidStartSelector": 1, - "@selector": 28, "requestStarted": 3, "setDidReceiveResponseHeadersSelector": 1, "request": 113, @@ -48499,7 +53254,6 @@ "queue": 12, "postBody": 11, "compressedPostBody": 4, - "error": 75, "requestHeaders": 6, "requestCookies": 1, "downloadDestinationPath": 11, @@ -48541,9 +53295,7 @@ "dataDecompressor": 1, "userAgentString": 1, "*blocks": 1, - "array": 84, "completionBlock": 5, - "addObject": 16, "failureBlock": 5, "startedBlock": 5, "headersReceivedBlock": 5, @@ -48560,41 +53312,25 @@ "waitUntilDone": 4, "isMainThread": 2, "Blocks": 1, - "will": 57, - "be": 49, "released": 2, - "when": 46, - "this": 50, "method": 5, "exits": 1, "setup": 2, "addRequestHeader": 5, - "header": 20, - "value": 21, "setRequestHeaders": 2, "dictionaryWithCapacity": 2, - "setObject": 9, - "forKey": 9, "buildPostBody": 3, "haveBuiltPostBody": 3, "Are": 1, - "we": 73, "submitting": 1, - "the": 197, "body": 8, - "from": 18, - "a": 78, "file": 14, - "on": 26, "disk": 1, - "If": 30, "were": 5, "writing": 2, - "to": 115, "post": 2, "via": 5, "appendPostData": 3, - "or": 18, "appendPostDataFromFile": 3, "close": 5, "write": 4, @@ -48612,30 +53348,23 @@ "ASIDataCompressor": 2, "compressDataFromFile": 1, "toFile": 1, - "&": 36, "err": 8, "failWithError": 11, - "path": 11, "setPostLength": 3, "NSFileManager": 1, "attributesOfItemAtPath": 1, "fileSize": 1, - "errorWithDomain": 6, "ASIFileManagementError": 2, - "stringWithFormat": 6, "NSUnderlyingErrorKey": 3, "Otherwise": 2, - "have": 15, "an": 20, - "in": 42, "memory": 3, "*compressedBody": 1, "compressData": 1, "setCompressedPostBody": 1, "compressedBody": 1, - "length": 32, "postLength": 6, - "||": 42, + "isEqualToString": 13, "setHaveBuiltPostBody": 1, "setupPostBody": 3, "shouldStreamPostDataFromDisk": 4, @@ -48645,21 +53374,16 @@ "append": 1, "open": 2, "setPostBody": 1, - "data": 27, "bytes": 8, "maxLength": 3, "appendData": 2, "*stream": 1, "initWithFileAtPath": 1, - "NSUInteger": 93, "bytesRead": 5, - "while": 11, "hasBytesAvailable": 1, "buffer": 7, "*256": 1, "read": 3, - "sizeof": 13, - "break": 13, "dataWithBytes": 1, "lock": 19, "*m": 1, @@ -48667,13 +53391,8 @@ "m": 1, "newRequestMethod": 3, "*u": 1, - "u": 4, - "isEqual": 4, "NULL": 152, "setRedirectURL": 2, - "delegate": 29, - "d": 11, - "setDelegate": 4, "newDelegate": 6, "q": 2, "setQueue": 2, @@ -48708,8 +53427,6 @@ "responseEncoding": 3, "isResponseCompressed": 3, "*encoding": 1, - "objectForKey": 29, - "&&": 123, "rangeOfString": 1, ".location": 1, "NSNotFound": 1, @@ -48727,7 +53444,6 @@ "runLoopMode": 2, "beforeDate": 1, "distantFuture": 1, - "start": 3, "startAsynchronous": 2, "addOperation": 1, "concurrency": 1, @@ -48752,29 +53468,20 @@ "A": 4, "HEAD": 10, "generated": 3, - "by": 12, "ASINetworkQueue": 4, - "may": 8, "set": 24, "already.": 1, - "so": 15, - "should": 8, - "not": 29, "proceed.": 1, "setDidUseCachedResponse": 1, "Must": 1, - "call": 8, "before": 6, "create": 1, - "that": 23, "can": 20, "needs": 1, "mainRequest": 9, "ll": 6, - "already": 4, "CFHTTPMessageRef": 3, "Create": 1, - "new": 10, "HTTP": 9, "request.": 1, "CFHTTPMessageCreateRequest": 1, @@ -48785,35 +53492,24 @@ "kCFHTTPVersion1_0": 1, "kCFHTTPVersion1_1": 1, "//If": 2, - "is": 77, - "need": 10, "let": 8, "generate": 1, - "its": 9, - "headers": 11, - "first": 9, - "use": 26, - "them": 10, "buildRequestHeaders": 3, "Even": 1, - "with": 19, "still": 2, "give": 2, "subclasses": 2, "chance": 2, - "add": 5, "their": 3, "own": 3, "requests": 21, "ASIS3Request": 1, "does": 3, "downloadCache": 5, - "default": 8, "download": 9, "downloading": 5, "proxy": 11, "PAC": 7, - "and": 44, "once": 3, "process": 1, "@catch": 1, @@ -48822,6 +53518,7 @@ "*underlyingError": 1, "ASIUnhandledExceptionError": 3, "exception": 3, + "name": 7, "reason": 1, "NSLocalizedFailureReasonErrorKey": 1, "underlyingError": 1, @@ -48833,7 +53530,6 @@ "credentials": 35, "are": 15, "asked": 3, - "for": 99, "shouldPresentCredentialsBeforeChallenge": 4, "DEBUG_HTTP_AUTHENTICATION": 4, "*credentials": 1, @@ -48845,7 +53541,6 @@ "addBasicAuthenticationHeaderWithUsername": 2, "andPassword": 2, "See": 5, - "any": 3, "cached": 2, "session": 5, "store": 4, @@ -48853,7 +53548,6 @@ "findSessionAuthenticationCredentials": 2, "When": 15, "Authentication": 3, - "key": 32, "stored": 9, "after": 5, "challenge": 1, @@ -48863,7 +53557,6 @@ "NTLM": 6, "always": 2, "like": 1, - "s": 35, "CFHTTPMessageApplyCredentialDictionary": 2, "CFHTTPAuthenticationRef": 2, "CFDictionaryRef": 1, @@ -48873,12 +53566,8 @@ "previous": 2, "passed": 2, "happens": 4, - "%": 30, - "re": 9, "retrying": 1, - "it": 28, "using": 8, - "our": 6, "custom": 2, "measure": 1, "bandwidth": 3, @@ -48908,25 +53597,19 @@ "CFTypeRef": 1, "sslProperties": 2, "*certificates": 1, - "arrayWithCapacity": 2, - "count": 99, "The": 15, - "object": 36, "SecIdentityRef": 3, "certificates": 2, "ve": 7, "opened": 3, "*oldStream": 1, - "Use": 6, "persistent": 5, "connection": 17, "possible": 3, "shouldAttemptPersistentConnection": 2, "redirecting": 2, "current": 2, - "only": 12, "connecting": 2, - "same": 6, "server": 8, "host": 9, "intValue": 4, @@ -48935,7 +53618,6 @@ "Check": 1, "expired": 1, "timeIntervalSinceNow": 1, - "<": 56, "DEBUG_PERSISTENT_CONNECTIONS": 3, "removeObject": 2, "//Some": 1, @@ -48946,10 +53628,7 @@ "there": 1, "one": 1, "We": 7, - "just": 4, "make": 3, - "of": 34, - "old": 5, "http": 4, "//lists.apple.com/archives/Macnetworkprog/2006/Mar/msg00119.html": 1, "oldStream": 4, @@ -48967,16 +53646,13 @@ "Record": 1, "started": 1, "timeout": 6, - "nothing": 2, "setLastActivityTime": 1, "date": 3, "setStatusTimer": 2, "timerWithTimeInterval": 1, - "selector": 12, "repeats": 1, "addTimer": 1, "forMode": 1, - "must": 6, "here": 2, "sent": 6, "more": 5, @@ -48984,13 +53660,11 @@ "upload": 4, "safely": 1, "time": 9, - "out": 7, "totalBytesSent": 5, "***Black": 1, "magic": 1, "warning***": 1, "but": 5, - "no": 7, "reliable": 1, "way": 1, "track": 1, @@ -48998,7 +53672,6 @@ "KB": 4, "iPhone": 3, "Mac": 2, - "strong": 4, "very": 2, "slow.": 1, "secondsSinceLastActivity": 1, @@ -49010,15 +53683,12 @@ "told": 1, "us": 2, "performThrottling": 2, - "auto": 2, "retry": 3, "numberOfTimesToRetryOnTimeout": 2, "resuming": 1, - "update": 6, "Range": 1, "take": 1, "account": 1, - "t": 15, "currently": 4, "perhaps": 1, "uploaded": 2, @@ -49029,11 +53699,9 @@ "unsignedLongLongValue": 1, "middle": 1, "said": 1, - "might": 4, "resume": 2, "used": 16, "preset": 2, - "content": 5, "updateUploadProgress": 3, "updateDownloadProgress": 3, "NSProgressIndicator": 4, @@ -49064,7 +53732,6 @@ "setArgument": 4, "atIndex": 6, "argumentNumber": 1, - "SEL": 19, "callback": 3, "NSMethodSignature": 1, "*cbSignature": 1, @@ -49134,7 +53801,6 @@ "cookies": 5, "All": 2, "remain": 1, - "they": 6, "redirects": 2, "applyCookieHeader": 2, "redirected": 2, @@ -49147,14 +53813,12 @@ "This": 7, "means": 1, "manually": 1, - "added": 5, "redirect": 4, "those": 1, "global": 1, "But": 1, "safest": 1, "option": 1, - "different": 4, "responseCode": 1, "parseStringEncodingFromHeaders": 2, "Handle": 1, @@ -49225,91 +53889,14 @@ "received": 5, "ASIAuthenticationDialog": 2, "had": 1, - "": 1, - "CGFloat": 44, - "kFramePadding": 7, - "kElementSpacing": 3, - "kGroupSpacing": 5, - "addHeader": 5, - "yOffset": 42, - "UILabel*": 2, - "label": 6, - "UILabel": 2, - "CGRectZero": 5, - "label.text": 2, - "label.font": 3, - "label.numberOfLines": 2, - "label.frame": 4, - "frame.origin.x": 3, - "frame.size.width": 4, - "sizeWithFont": 2, - "constrainedToSize": 2, - "CGSizeMake": 3, - ".height": 4, - "label.frame.size.height": 2, - "addText": 5, - "UIScrollView": 1, - "_scrollView.autoresizingMask": 1, - "UIViewAutoresizingFlexibleHeight": 1, - "NSLocalizedString": 9, - "UIButton*": 1, - "button": 5, - "UIButton": 1, - "buttonWithType": 1, - "UIButtonTypeRoundedRect": 1, - "setTitle": 1, - "UIControlStateNormal": 1, - "addTarget": 1, - "action": 1, - "debugTestAction": 2, - "forControlEvents": 1, - "UIControlEventTouchUpInside": 1, - "sizeToFit": 1, - "button.frame": 2, - "TTCurrentLocale": 2, - "displayNameForKey": 1, - "NSLocaleIdentifier": 1, - "localeIdentifier": 1, - "TTPathForBundleResource": 1, - "TTPathForDocumentsResource": 1, - "dataUsingEncoding": 2, - "NSUTF8StringEncoding": 2, - "md5Hash": 1, - "setContentSize": 1, - "viewDidUnload": 2, - "viewDidAppear": 2, - "animated": 27, - "flashScrollIndicators": 1, - "#ifdef": 10, - "DEBUG": 1, - "TTDPRINTMETHODNAME": 1, - "TTDPRINT": 9, - "TTMAXLOGLEVEL": 1, - "TTDERROR": 1, - "TTLOGLEVEL_ERROR": 1, - "TTDWARNING": 1, - "TTLOGLEVEL_WARNING": 1, - "TTDINFO": 1, - "TTLOGLEVEL_INFO": 1, - "TTDCONDITIONLOG": 3, - "true": 9, - "false": 3, - "rand": 1, - "TTDASSERT": 2, - "@synthesize": 7, - "window": 1, - "applicationDidFinishLaunching": 1, - "aNotification": 1, - "TTViewController": 1, - "#include": 18, + "UIViewController": 2, + "UIScrollView*": 1, "": 2, "": 1, - "": 2, "": 1, "": 1, "": 1, "": 1, - "": 2, "": 1, "//#include": 1, "": 1, @@ -49318,26 +53905,19 @@ "": 1, "": 1, "//#import": 1, - "": 2, + "": 4, "": 1, - "": 2, - "": 2, "": 1, "": 1, - "": 2, - "#ifndef": 9, "__has_feature": 3, - "#define": 65, "x": 10, "JK_ENABLE_CF_TRANSFER_OWNERSHIP_CALLBACKS": 2, "#warning": 1, "As": 1, - "JSONKit": 11, "v1.4": 1, "longer": 2, "required.": 1, "It": 2, - "valid": 5, "option.": 1, "__OBJC_GC__": 1, "#error": 6, @@ -49351,9 +53931,7 @@ "Reference": 1, "Counting": 1, "ARC": 1, - "UINT_MAX": 3, "xffffffffU": 1, - "INT_MIN": 3, "fffffff": 1, "ULLONG_MAX": 1, "xffffffffffffffffULL": 1, @@ -49364,21 +53942,10 @@ "types": 2, "bits": 1, "respectively.": 1, - "defined": 16, - "__LP64__": 4, - "ULONG_MAX": 3, - "INT_MAX": 2, - "LONG_MAX": 3, - "LONG_MIN": 3, "WORD_BIT": 1, "LONG_BIT": 1, "bit": 1, "architectures.": 1, - "NSUIntegerMax": 7, - "NSIntegerMax": 4, - "NSIntegerMin": 3, - "NSInteger": 56, - "type.": 3, "SIZE_MAX": 1, "SSIZE_MAX": 1, "JK_HASH_INIT": 1, @@ -49386,7 +53953,6 @@ "JK_FAST_TRAILING_BYTES": 2, "JK_CACHE_SLOTS_BITS": 2, "JK_CACHE_SLOTS": 1, - "<<": 16, "JK_CACHE_PROBES": 1, "JK_INIT_CACHE_AGE": 1, "JK_TOKENBUFFER_SIZE": 1, @@ -49394,11 +53960,9 @@ "JK_JSONBUFFER_SIZE": 1, "JK_UTF8BUFFER_SIZE": 1, "JK_ENCODE_CACHE_SLOTS": 1, - "__GNUC__": 14, "JK_ATTRIBUTES": 15, "attr": 3, "...": 11, - "__attribute__": 3, "##__VA_ARGS__": 7, "JK_EXPECTED": 4, "cond": 12, @@ -49438,7 +54002,6 @@ "JKArray": 14, "JKDictionaryEnumerator": 4, "JKDictionary": 22, - "enum": 17, "JSONNumberStateStart": 1, "JSONNumberStateFinished": 1, "JSONNumberStateError": 1, @@ -49483,8 +54046,6 @@ "JKManagedBufferLocationMask": 1, "JKManagedBufferLocationShift": 1, "JKManagedBufferMustFree": 1, - "typedef": 47, - "JKFlags": 5, "JKManagedBufferFlags": 1, "JKObjectStackOnStack": 1, "JKObjectStackOnHeap": 1, @@ -49520,7 +54081,6 @@ "JKEncodeOptionStringObjTrimQuotes": 1, "JKEncodeOptionType": 2, "JKHash": 4, - "struct": 20, "JKTokenCacheItem": 2, "JKTokenCache": 2, "JKTokenValue": 2, @@ -49538,12 +54098,9 @@ "JKObjCImpCache": 2, "JKHashTableEntry": 21, "serializeObject": 1, - "options": 6, - "JKSerializeOptionFlags": 16, "optionFlags": 1, "encodeOption": 2, "JKSERIALIZER_BLOCKS_PROTO": 1, - "**": 27, "releaseState": 1, "keyHash": 21, "uint32_t": 1, @@ -49592,7 +54149,6 @@ "*objects": 5, "mutableCollection": 7, "_JKArrayInsertObjectAtIndex": 3, - "*array": 9, "newObject": 12, "objectIndex": 48, "_JKArrayReplaceObjectAtIndexWithObject": 3, @@ -49611,18 +54167,14 @@ "*_JKDictionaryHashTableEntryForKey": 2, "aKey": 13, "_JSONDecoderCleanup": 1, - "JSONDecoder": 2, "*decoder": 1, "_NSStringObjectFromJSONString": 1, "*jsonString": 1, - "JKParseOptionFlags": 12, - "parseOptionFlags": 11, "**error": 1, "jk_managedBuffer_release": 1, "*managedBuffer": 3, "jk_managedBuffer_setToStackBuffer": 1, "*ptr": 2, - "size_t": 23, "*jk_managedBuffer_resize": 1, "newSize": 1, "jk_objectStack_release": 1, @@ -49635,8 +54187,6 @@ "jk_objectStack_resize": 1, "newCount": 1, "jk_error": 1, - "JKParseState": 18, - "*parseState": 16, "*format": 7, "jk_parse_string": 1, "jk_parse_number": 1, @@ -49646,7 +54196,6 @@ "jk_parse_skip_whitespace": 1, "jk_parse_next_token": 1, "jk_error_parse_accept_or3": 1, - "state": 35, "*or1String": 1, "*or2String": 1, "*or3String": 1, @@ -49678,14 +54227,12 @@ "jk_encode_write1": 1, "es": 3, "dc": 3, - "f": 8, "_jk_encode_prettyPrint": 1, "jk_min": 1, "b": 4, "jk_max": 3, "jk_calculateHash": 1, "currentHash": 1, - "c": 7, "Class": 3, "_JKArrayClass": 5, "_JKArrayInstanceSize": 4, @@ -49696,7 +54243,6 @@ "_jk_NSNumberAllocImp": 2, "NSNumberInitWithUnsignedLongLongImp": 2, "_jk_NSNumberInitWithUnsignedLongLongImp": 2, - "extern": 6, "jk_collectionClassLoadTimeInitialization": 2, "constructor": 1, "NSAutoreleasePool": 2, @@ -49706,7 +54252,6 @@ "required": 2, "run": 1, "environment": 1, - "at": 10, "load": 1, "initialization": 1, "less": 1, @@ -49733,7 +54278,6 @@ "_cmd": 16, "NSCParameterAssert": 19, "objects": 58, - "calloc": 5, "Directly": 2, "allocate": 2, "instance": 2, @@ -49741,7 +54285,6 @@ "isa": 2, "malloc": 1, "memcpy": 2, - "<=>": 15, "*newObjects": 1, "newObjects": 2, "realloc": 1, @@ -49749,17 +54292,13 @@ "memset": 1, "memmove": 2, "atObject": 12, - "free": 4, - "NSParameterAssert": 15, "getObjects": 2, "objectsPtr": 3, - "range": 8, "NSRange": 1, "NSMaxRange": 4, "NSRangeException": 6, "range.location": 2, "range.length": 1, - "objectAtIndex": 8, "countByEnumeratingWithState": 2, "NSFastEnumerationState": 2, "stackbuf": 8, @@ -49794,7 +54333,6 @@ ".key": 11, "jk_dictionaryCapacities": 4, "bottom": 6, - "top": 8, "mid": 5, "tableSize": 2, "lround": 1, @@ -49822,7 +54360,6 @@ "keyEntry": 4, "CFEqual": 2, "CFHash": 1, - "table": 7, "would": 2, "found": 4, "now.": 1, @@ -49831,6 +54368,7 @@ "andKeys": 1, "arrayIdx": 5, "keyEnumerator": 1, + "copy": 4, "Why": 1, "earth": 1, "complain": 1, @@ -49844,10 +54382,7 @@ "ld": 2, "Invalid": 1, "character": 1, - "string": 9, "x.": 1, - "n": 7, - "r": 6, "F": 1, ".": 2, "e": 1, @@ -49855,108 +54390,63 @@ "token": 1, "wanted": 1, "Expected": 3, - "SBJsonParser": 2, - "maxDepth": 2, - "self.maxDepth": 2, - "Methods": 1, - "objectWithData": 7, - "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, - "switch": 3, - "parser": 3, - "parse": 1, - "case": 8, - "SBJsonStreamParserComplete": 1, - "accumulator.value": 1, - "SBJsonStreamParserWaitingForData": 1, - "SBJsonStreamParserError": 1, - "parser.error": 1, - "objectWithString": 5, - "repr": 5, - "NSError**": 2, - "error_": 2, - "tmp": 3, - "*ui": 1, - "*error_": 1, - "ui": 1, - "": 1, - "": 1, - "": 1, - "__OBJC__": 4, - "": 1, - "": 1, - "__cplusplus": 2, - "NSINTEGER_DEFINED": 3, - "NS_BUILD_32_LIKE_64": 3, - "_JSONKIT_H_": 3, - "__APPLE_CC__": 2, - "JK_DEPRECATED_ATTRIBUTE": 6, - "deprecated": 1, - "JSONKIT_VERSION_MAJOR": 1, - "JSONKIT_VERSION_MINOR": 1, - "JKParseOptionNone": 1, - "JKParseOptionStrict": 1, - "JKParseOptionComments": 2, - "JKParseOptionUnicodeNewlines": 2, - "JKParseOptionLooseUnicode": 2, - "JKParseOptionPermitTextAfterValidJSON": 2, - "JKParseOptionValidFlags": 1, - "JKSerializeOptionNone": 3, - "JKSerializeOptionPretty": 2, - "JKSerializeOptionEscapeUnicode": 2, - "JKSerializeOptionEscapeForwardSlashes": 2, - "JKSerializeOptionValidFlags": 1, - "Opaque": 1, - "internal": 2, - "private": 1, - "decoder": 1, - "decoderWithParseOptions": 1, - "initWithParseOptions": 1, - "clearCache": 1, - "parseUTF8String": 2, - "Deprecated": 4, - "v1.4.": 4, - "objectWithUTF8String": 4, - "instead.": 4, - "parseJSONData": 2, - "jsonData": 6, - "mutableObjectWithUTF8String": 2, - "mutableObjectWithData": 2, - "////////////": 4, - "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": 3, - "JSONData": 3, - "Invokes": 2, - "JSONDataWithOptions": 8, - "includeQuotes": 6, - "serializeOptions": 14, - "JSONString": 3, - "JSONStringWithOptions": 8, - "serializeUnsupportedClassesUsingDelegate": 4, - "__BLOCKS__": 1, - "JSONKitSerializingBlockAdditions": 2, - "serializeUnsupportedClassesUsingBlock": 4, + "*error": 3, + "NSData*": 1, + "jsonText": 1, + "kTextStyleType": 2, + "kViewStyleType": 2, + "kImageStyleType": 2, + "initWithStyleName": 1, + "styleType": 3, + "TTStyleSheet": 4, + "globalStyleSheet": 4, + "styleWithSelector": 4, + "UIControlStateHighlighted": 1, + "UIControlStateDisabled": 1, + "UIControlStateSelected": 1, + "addTextView": 5, + "title": 2, + "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, + "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, + "green": 3, + "blue": 3, + "alpha": 3, + "text.autoresizingMask": 1, + "UIViewAutoresizingFlexibleBottomMargin": 3, + "addView": 5, + "viewFrame": 4, + "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, "": 1, "": 1, "Necessary": 1, @@ -49999,10 +54489,8 @@ "stores": 1, "to.": 2, "again": 1, - "do": 5, "notified": 2, "various": 1, - "changes": 4, "ASIHTTPRequestDelegate": 1, "": 1, "Another": 1, @@ -50024,7 +54512,6 @@ "called": 3, "allowCompressedResponse": 3, "inform": 1, - "accept": 2, "compressed": 2, "automatically": 2, "decompress": 1, @@ -50044,7 +54531,6 @@ "apache": 1, "only.": 1, "downloaded": 6, - "location": 3, "*downloadDestinationPath": 2, "files": 5, "Once": 2, @@ -50062,7 +54548,6 @@ "failure": 1, "occurred": 1, "inspect": 1, - "*error": 3, "Username": 2, "*username": 2, "*password": 2, @@ -50087,13 +54572,11 @@ "apps": 1, "shouldPresentProxyAuthenticationDialog": 2, "*proxyCredentials": 2, - "during": 4, "Basic": 2, "*proxyAuthenticationScheme": 2, "Realm": 1, "eg": 2, "OK": 1, - "Not": 2, "etc": 1, "Description": 1, "Size": 3, @@ -50103,7 +54586,6 @@ "Last": 2, "incrementing": 2, "prevents": 1, - "being": 4, "inopportune": 1, "moment": 1, "Called": 6, @@ -50116,7 +54598,6 @@ "Location": 1, "shouldRedirect": 3, "then": 1, - "needed": 3, "restart": 1, "calling": 1, "redirectToURL": 2, @@ -50134,7 +54615,6 @@ "something": 1, "last": 1, "happened": 1, - "compare": 4, "Number": 1, "seconds": 2, "wait": 1, @@ -50145,7 +54625,6 @@ "according": 2, "how": 2, "much": 2, - "has": 6, "Also": 1, "see": 1, "comments": 1, @@ -50189,7 +54668,6 @@ "defaults": 2, "tell": 2, "loop": 1, - "stop": 4, "Incremented": 1, "every": 3, "redirects.": 1, @@ -50248,14 +54726,11 @@ "These": 1, "determine": 1, "whether": 1, - "subsequent": 2, - "all": 3, "match": 1, "An": 2, "determining": 1, "available": 1, "reference": 1, - "don": 2, "one.": 1, "closed": 1, "either": 1, @@ -50428,7 +54903,6 @@ "threading": 1, "*proxyHost": 1, "*proxyType": 1, - "readonly": 19, "*requestHeaders": 1, "*requestCredentials": 1, "*rawResponseData": 1, @@ -50439,385 +54913,6 @@ "*authenticationScheme": 1, "shouldPresentAuthenticationDialog": 1, "haveBuiltRequestHeaders": 1, - "HEADER_Z_POSITION": 2, - "offset": 23, - "beginning": 1, - "section": 60, - "height": 19, - "TUITableViewRowInfo": 3, - "TUITableViewSection": 16, - "__unsafe_unretained": 2, - "TUITableView": 25, - "*_tableView": 1, - "weak": 2, - "TUIView": 17, - "*_headerView": 1, - "reusable": 1, - "similar": 1, - "UITableView": 1, - "sectionIndex": 23, - "numberOfRows": 13, - "sectionHeight": 9, - "sectionOffset": 8, - "*rowInfo": 1, - "*headerView": 6, - "initWithNumberOfRows": 2, - "tableView": 45, - "_tableView": 3, - "rowInfo": 7, - "_setupRowHeights": 2, - "*header": 1, - "self.headerView": 2, - "roundf": 2, - "header.frame.size.height": 1, - "i": 41, - "h": 3, - "_tableView.delegate": 1, - "heightForRowAtIndexPath": 2, - "TUIFastIndexPath": 89, - "indexPathForRow": 11, - "inSection": 11, - ".offset": 2, - "rowHeight": 2, - "sectionRowOffset": 2, - "tableRowOffset": 2, - "headerHeight": 4, - "self.headerView.frame.size.height": 1, - "headerView": 14, - "_headerView": 8, - "_tableView.dataSource": 3, - "respondsToSelector": 8, - "headerViewForSection": 6, - "_headerView.autoresizingMask": 1, - "TUIViewAutoresizingFlexibleWidth": 1, - "_headerView.layer.zPosition": 1, - "Private": 1, - "_updateSectionInfo": 2, - "_updateDerepeaterViews": 2, - "pullDownView": 1, - "_pullDownView": 4, - "TUITableViewStyle": 4, - "_reusableTableCells": 5, - "_visibleSectionHeaders": 6, - "NSMutableIndexSet": 6, - "_visibleItems": 14, - "_tableFlags.animateSelectionChanges": 3, - "TUITableViewStylePlain": 2, - "": 4, - "_tableFlags.delegateTableViewWillDisplayCellForRowAtIndexPath": 1, - "willDisplayCell": 2, - "forRowAtIndexPath": 2, - "": 4, - "dataSource": 2, - "_dataSource": 6, - "setDataSource": 1, - "_tableFlags.dataSourceNumberOfSectionsInTableView": 2, - "numberOfSectionsInTableView": 3, - "animateSelectionChanges": 3, - "setAnimateSelectionChanges": 1, - "numberOfSections": 10, - "_sectionInfo": 27, - "numberOfRowsInSection": 9, - "rectForHeaderOfSection": 4, - "*s": 3, - "y": 12, - "_contentHeight": 7, - "CGRectMake": 8, - "self.bounds.size.width": 4, - "rectForSection": 3, - "rectForRowAtIndexPath": 7, - "indexPath": 47, - "indexPath.section": 3, - "row": 36, - "indexPath.row": 1, - "*section": 8, - "removeFromSuperview": 4, - "removeAllIndexes": 2, - "*sections": 1, - "bounds": 2, - ".size.height": 1, - "self.contentInset.top*2": 1, - "section.sectionOffset": 1, - "sections": 4, - "self.contentInset.bottom": 1, - "_enqueueReusableCell": 2, - "TUITableViewCell": 23, - "cell": 21, - "*identifier": 1, - "cell.reuseIdentifier": 1, - "identifier": 7, - "dequeueReusableCellWithIdentifier": 2, - "*c": 1, - "lastObject": 1, - "removeLastObject": 1, - "prepareForReuse": 1, - "cellForRowAtIndexPath": 9, - "returns": 4, - "visible": 16, - "index": 11, - "visibleCells": 3, - "allValues": 1, - "SortCells": 1, - "*a": 2, - "*b": 2, - "*ctx": 1, - "a.frame.origin.y": 2, - "b.frame.origin.y": 2, - "NSOrderedAscending": 4, - "NSOrderedDescending": 4, - "sortedVisibleCells": 2, - "*v": 2, - "v": 4, - "sortedArrayUsingComparator": 1, - "NSComparator": 1, - "NSComparisonResult": 1, - "INDEX_PATHS_FOR_VISIBLE_ROWS": 4, - "allKeys": 1, - "indexPathsForVisibleRows": 2, - "indexPathForCell": 2, - "*i": 4, - "*cell": 7, - "NSIndexSet": 4, - "indexesOfSectionsInRect": 2, - "rect": 10, - "*indexes": 2, - "CGRectIntersectsRect": 5, - "indexes": 4, - "addIndex": 3, - "indexesOfSectionHeadersInRect": 2, - "indexPathsForRowsInRect": 3, - "*indexPaths": 1, - "*indexPath": 11, - "cellRect": 7, - "indexPaths": 2, - "indexPathForRowAtPoint": 2, - "CGPoint": 7, - "point": 11, - "CGRectContainsPoint": 1, - "indexPathForRowAtVerticalOffset": 2, - "cellRect.origin.y": 1, - "origin": 1, - "brief": 1, - "Obtain": 1, - "whose": 2, - "specified": 1, - "exists": 1, - "negative": 1, - "returned": 1, - "param": 1, - "p": 3, - "indexOfSectionWithHeaderAtPoint": 2, - "0": 2, - "width": 1, - "point.y": 1, - "indexOfSectionWithHeaderAtVerticalOffset": 2, - "section.headerView": 9, - "enumerateIndexPathsUsingBlock": 2, - "*stop": 7, - "enumerateIndexPathsFromIndexPath": 4, - "toIndexPath": 12, - "withOptions": 4, - "usingBlock": 6, - "enumerateIndexPathsWithOptions": 2, - "NSEnumerationOptions": 4, - "fromIndexPath": 6, - "sectionLowerBound": 2, - "fromIndexPath.section": 1, - "sectionUpperBound": 3, - "toIndexPath.section": 1, - "rowLowerBound": 2, - "fromIndexPath.row": 1, - "rowUpperBound": 3, - "toIndexPath.row": 1, - "irow": 3, - "lower": 1, - "bound": 1, - "iteration...": 1, - "rowCount": 3, - "j": 5, - "FALSE": 2, - "...then": 1, - "zero": 1, - "iterations": 1, - "_topVisibleIndexPath": 1, - "*topVisibleIndex": 1, - "sortedArrayUsingSelector": 1, - "topVisibleIndex": 2, - "setFrame": 2, - "_tableFlags.forceSaveScrollPosition": 1, - "setContentOffset": 2, - "_tableFlags.didFirstLayout": 1, - "prevent": 2, - "scroll": 3, - "layout": 3, - "pinned": 5, - "isKindOfClass": 2, - "TUITableViewSectionHeader": 5, - ".pinnedToViewport": 2, - "TRUE": 1, - "pinnedHeader": 1, - "CGRectGetMaxY": 2, - "headerFrame": 4, - "pinnedHeader.frame.origin.y": 1, - "intersecting": 1, - "push": 1, - "upwards.": 1, - "pinnedHeaderFrame": 2, - "pinnedHeader.frame": 2, - "pinnedHeaderFrame.origin.y": 1, - "notify": 3, - "section.headerView.frame": 1, - "setNeedsLayout": 3, - "section.headerView.superview": 1, - "remove": 4, - "offscreen": 2, - "toRemove": 1, - "enumerateIndexesUsingBlock": 1, - "removeIndex": 1, - "_layoutCells": 3, - "visibleCellsNeedRelayout": 5, - "remaining": 1, - "cells": 7, - "cell.frame": 1, - "cell.layer.zPosition": 1, - "visibleRect": 3, - "Example": 1, - "*oldVisibleIndexPaths": 1, - "*newVisibleIndexPaths": 1, - "*indexPathsToRemove": 1, - "oldVisibleIndexPaths": 2, - "mutableCopy": 2, - "indexPathsToRemove": 2, - "removeObjectsInArray": 2, - "newVisibleIndexPaths": 2, - "*indexPathsToAdd": 1, - "indexPathsToAdd": 2, - "newly": 1, - "_dragToReorderCell": 5, - "superview": 1, - "bringSubviewToFront": 1, - "self.contentSize": 3, - "headerViewRect": 3, - "s.height": 3, - "_headerView.frame.size.height": 2, - "visible.size.width": 3, - "_headerView.frame": 1, - "_headerView.hidden": 4, - "show": 2, - "pullDownRect": 4, - "_pullDownView.frame.size.height": 2, - "pullDownViewIsVisible": 3, - "_pullDownView.hidden": 4, - "_pullDownView.frame": 1, - "reloadDataMaintainingVisibleIndexPath": 2, - "relativeOffset": 5, - "_keepVisibleIndexPathForReload": 2, - "_relativeOffsetForReload": 2, - "reloadData": 3, - "self.delegate": 10, - "tableViewWillReloadData": 3, - "_selectedIndexPath": 9, - "recycle": 1, - "regenerated": 3, - "layoutSubviews": 5, - "because": 1, - "dragged": 1, - "clear": 3, - "removeAllObjects": 1, - "laid": 1, - "next": 2, - "tableViewDidReloadData": 3, - "_tableFlags.layoutSubviewsReentrancyGuard": 3, - "setAnimationsEnabled": 1, - "CATransaction": 3, - "begin": 1, - "setDisableActions": 1, - "_preLayoutCells": 2, - "munge": 2, - "contentOffset": 2, - "_layoutSectionHeaders": 2, - "_tableFlags.derepeaterEnabled": 1, - "commit": 1, - "reloadLayout": 2, - "scrollToRowAtIndexPath": 3, - "atScrollPosition": 3, - "TUITableViewScrollPosition": 5, - "scrollPosition": 9, - "selected": 2, - "overlapped": 1, - "r.size.height": 4, - "headerFrame.size.height": 1, - "TUITableViewScrollPositionNone": 2, - "TUITableViewScrollPositionTop": 2, - "r.origin.y": 1, - "v.size.height": 2, - "scrollRectToVisible": 2, - "TUITableViewScrollPositionToVisible": 3, - "indexPathForSelectedRow": 4, - "indexPathForFirstRow": 2, - "indexPathForLastRow": 2, - "sec": 3, - "_makeRowAtIndexPathFirstResponder": 2, - "responder": 2, - "made": 1, - "acceptsFirstResponder": 1, - "self.nsWindow": 3, - "makeFirstResponderIfNotAlreadyInResponderChain": 1, - "_indexPathShouldBeFirstResponder": 2, - "_futureMakeFirstResponderToken": 2, - "futureMakeFirstResponderRequestToken": 1, - "selectRowAtIndexPath": 3, - "*oldIndexPath": 1, - "oldIndexPath": 2, - "deselectRowAtIndexPath": 3, - "setSelected": 2, - "setNeedsDisplay": 2, - "selection": 3, - "actually": 2, - "didSelectRowAtIndexPath": 3, - "NSResponder": 1, - "*firstResponder": 1, - "firstResponder": 3, - "didDeselectRowAtIndexPath": 3, - "indexPathForFirstVisibleRow": 2, - "*firstIndexPath": 1, - "firstIndexPath": 4, - "indexPathForLastVisibleRow": 2, - "*lastIndexPath": 5, - "lastIndexPath": 8, - "performKeyAction": 2, - "NSEvent": 3, - "event": 8, - "repeative": 1, - "press": 1, - "noCurrentSelection": 2, - "isARepeat": 1, - "TUITableViewCalculateNextIndexPathBlock": 3, - "selectValidIndexPath": 3, - "*startForNoSelection": 2, - "calculateNextIndexPath": 4, - "foundValidNextRow": 4, - "*newIndexPath": 1, - "newIndexPath": 6, - "startForNoSelection": 1, - "_delegate": 2, - "shouldSelectRowAtIndexPath": 3, - "forEvent": 3, - "self.animateSelectionChanges": 1, - "charactersIgnoringModifiers": 1, - "characterAtIndex": 1, - "NSUpArrowFunctionKey": 1, - "lastIndexPath.section": 2, - "lastIndexPath.row": 2, - "rowsInSection": 7, - "NSDownArrowFunctionKey": 1, - "maintainContentOffsetAfterReload": 3, - "_tableFlags.maintainContentOffsetAfterReload": 2, - "setMaintainContentOffsetAfterReload": 1, - "newValue": 2, - "NSIndexPath": 5, - "indexPathWithIndexes": 1, - "indexAtPosition": 2, "regular": 1, "TUITableViewStyleGrouped": 1, "grouped": 1, @@ -50883,337 +54978,22 @@ "": 1, "@required": 1, "canMoveRowAtIndexPath": 2, - "moveRowAtIndexPath": 2, - "TTTableViewController": 1, - "NSData*": 1, - "jsonText": 1 + "moveRowAtIndexPath": 2 }, "Objective-C++": { - "#include": 26, - "": 1, - "": 1, - "#if": 10, - "(": 612, - "defined": 1, - "OBJC_API_VERSION": 2, - ")": 610, - "&&": 12, - "static": 16, - "inline": 3, - "IMP": 4, - "method_setImplementation": 2, - "Method": 2, - "m": 3, - "i": 29, - "{": 151, - "oi": 2, - "-": 175, - "method_imp": 2, - ";": 494, - "return": 149, - "}": 148, - "#endif": 19, - "namespace": 1, - "WebCore": 1, - "ENABLE": 10, - "DRAG_SUPPORT": 7, - "const": 16, - "double": 1, - "EventHandler": 30, - "TextDragDelay": 1, - "RetainPtr": 4, - "": 4, - "&": 21, - "currentNSEventSlot": 6, - "DEFINE_STATIC_LOCAL": 1, - "event": 30, - "NSEvent": 21, - "*EventHandler": 2, - "currentNSEvent": 13, - ".get": 1, - "class": 14, - "CurrentEventScope": 14, - "WTF_MAKE_NONCOPYABLE": 1, - "public": 1, - "*": 34, - "private": 1, - "m_savedCurrentEvent": 3, - "#ifndef": 3, - "NDEBUG": 2, - "m_event": 3, - "*event": 11, - "ASSERT": 13, - "bool": 26, - "wheelEvent": 5, - "Page*": 7, - "page": 33, - "m_frame": 24, - "if": 104, - "false": 40, - "scope": 6, - "PlatformWheelEvent": 2, - "chrome": 8, - "platformPageClient": 4, - "handleWheelEvent": 2, - "wheelEvent.isAccepted": 1, - "PassRefPtr": 2, - "": 1, - "currentKeyboardEvent": 1, - "[": 268, - "NSApp": 5, - "currentEvent": 2, - "]": 266, - "switch": 4, - "type": 10, - "case": 25, - "NSKeyDown": 4, - "PlatformKeyboardEvent": 6, - "platformEvent": 2, - "platformEvent.disambiguateKeyDownEvent": 1, - "RawKeyDown": 1, - "KeyboardEvent": 2, - "create": 3, - "document": 6, - "defaultView": 2, - "NSKeyUp": 3, - "default": 3, - "keyEvent": 2, - "BEGIN_BLOCK_OBJC_EXCEPTIONS": 13, - "||": 18, - "END_BLOCK_OBJC_EXCEPTIONS": 13, - "void": 18, - "focusDocumentView": 1, - "FrameView*": 7, - "frameView": 4, - "view": 28, - "NSView": 14, - "*documentView": 1, - "documentView": 2, - "focusNSView": 1, - "focusController": 1, - "setFocusedFrame": 1, - "passWidgetMouseDownEventToWidget": 3, - "MouseEventWithHitTestResults": 7, - "RenderObject*": 2, - "target": 6, - "targetNode": 3, - "renderer": 7, - "isWidget": 2, - "passMouseDownEventToWidget": 3, - "toRenderWidget": 3, - "widget": 18, - "RenderWidget*": 1, - "renderWidget": 2, - "lastEventIsMouseUp": 2, - "*currentEventAfterHandlingMouseDown": 1, - "currentEventAfterHandlingMouseDown": 3, - "NSLeftMouseUp": 3, - "timestamp": 8, - "Widget*": 3, - "pWidget": 2, - "RefPtr": 1, - "": 1, - "LOG_ERROR": 1, - "true": 29, - "platformWidget": 6, - "*nodeView": 1, - "nodeView": 9, - "superview": 5, - "*view": 4, - "hitTest": 2, - "convertPoint": 2, - "locationInWindow": 4, - "fromView": 3, - "nil": 25, - "client": 3, - "firstResponder": 1, - "clickCount": 8, - "<=>": 1, - "1": 1, - "acceptsFirstResponder": 1, - "needsPanelToBecomeKey": 1, - "makeFirstResponder": 1, - "wasDeferringLoading": 3, - "defersLoading": 1, - "setDefersLoading": 2, - "m_sendingEventToSubview": 24, - "*outerView": 1, - "getOuterView": 1, - "beforeMouseDown": 1, - "outerView": 2, - "widget.get": 2, - "mouseDown": 2, - "afterMouseDown": 1, - "m_mouseDownView": 5, - "m_mouseDownWasInSubframe": 7, - "m_mousePressed": 2, - "findViewInSubviews": 3, - "*superview": 1, - "*target": 1, - "NSEnumerator": 1, - "*e": 1, - "subviews": 1, - "objectEnumerator": 1, - "*subview": 1, - "while": 4, - "subview": 3, - "e": 1, - "nextObject": 1, - "mouseDownViewIfStillGood": 3, - "*mouseDownView": 1, - "mouseDownView": 3, - "topFrameView": 3, - "*topView": 1, - "topView": 2, - "eventLoopHandleMouseDragged": 1, - "mouseDragged": 2, - "//": 7, - "eventLoopHandleMouseUp": 1, - "mouseUp": 2, - "passSubframeEventToSubframe": 4, - "Frame*": 5, - "subframe": 13, - "HitTestResult*": 2, - "hoveredNode": 5, - "NSLeftMouseDragged": 1, - "NSOtherMouseDragged": 1, - "NSRightMouseDragged": 1, - "dragController": 1, - "didInitiateDrag": 1, - "NSMouseMoved": 2, - "eventHandler": 6, - "handleMouseMoveEvent": 3, - "currentPlatformMouseEvent": 8, - "NSLeftMouseDown": 3, - "Node*": 1, - "node": 3, - "isFrameView": 2, - "handleMouseReleaseEvent": 3, - "originalNSScrollViewScrollWheel": 4, - "_nsScrollViewScrollWheelShouldRetainSelf": 3, - "selfRetainingNSScrollViewScrollWheel": 3, - "NSScrollView": 2, - "SEL": 2, - "nsScrollViewScrollWheelShouldRetainSelf": 2, - "isMainThread": 3, - "setNSScrollViewScrollWheelShouldRetainSelf": 3, - "shouldRetain": 2, - "method": 2, - "class_getInstanceMethod": 1, - "objc_getRequiredClass": 1, - "@selector": 4, - "scrollWheel": 2, - "reinterpret_cast": 1, - "": 1, - "*self": 1, - "selector": 2, - "shouldRetainSelf": 3, - "self": 70, - "retain": 1, - "release": 1, - "passWheelEventToWidget": 1, - "NSView*": 1, - "static_cast": 1, - "": 1, - "frame": 3, - "NSScrollWheel": 1, - "v": 6, - "loader": 1, - "resetMultipleFormSubmissionProtection": 1, - "handleMousePressEvent": 2, - "int": 36, - "%": 2, - "handleMouseDoubleClickEvent": 1, - "else": 11, - "sendFakeEventsAfterWidgetTracking": 1, - "*initiatingEvent": 1, - "eventType": 5, - "initiatingEvent": 22, - "*fakeEvent": 1, - "fakeEvent": 6, - "mouseEventWithType": 2, - "location": 3, - "modifierFlags": 6, - "windowNumber": 6, - "context": 6, - "eventNumber": 3, - "pressure": 3, - "postEvent": 3, - "atStart": 3, - "YES": 6, - "keyEventWithType": 1, - "characters": 3, - "charactersIgnoringModifiers": 2, - "isARepeat": 2, - "keyCode": 2, - "window": 1, - "convertScreenToBase": 1, - "mouseLocation": 1, - "mouseMoved": 2, - "frameHasPlatformWidget": 4, - "passMousePressEventToSubframe": 1, - "mev": 6, - "mev.event": 3, - "passMouseMoveEventToSubframe": 1, - "m_mouseDownMayStartDrag": 1, - "passMouseReleaseEventToSubframe": 1, - "PlatformMouseEvent": 5, - "*windowView": 1, - "windowView": 2, - "CONTEXT_MENUS": 2, - "sendContextMenuEvent": 2, - "eventMayStartDrag": 2, - "eventActivatedView": 1, - "m_activationEventNumber": 1, - "event.eventNumber": 1, - "": 1, - "createDraggingClipboard": 1, - "NSPasteboard": 2, - "*pasteboard": 1, - "pasteboardWithName": 1, - "NSDragPboard": 1, - "pasteboard": 2, - "declareTypes": 1, - "NSArray": 3, - "array": 2, - "owner": 15, - "ClipboardMac": 1, - "Clipboard": 1, - "DragAndDrop": 1, - "ClipboardWritable": 1, - "tabsToAllFormControls": 1, - "KeyboardEvent*": 1, - "KeyboardUIMode": 1, - "keyboardUIMode": 5, - "handlingOptionTab": 4, - "isKeyboardOptionTab": 1, - "KeyboardAccessTabsToLinks": 2, - "KeyboardAccessFull": 1, - "needsKeyboardEventDisambiguationQuirks": 2, - "Document*": 1, - "applicationIsSafari": 1, - "url": 2, - ".protocolIs": 2, - "Settings*": 1, - "settings": 5, - "DASHBOARD_SUPPORT": 1, - "usesDashboardBackwardCompatibilityMode": 1, - "unsigned": 2, - "accessKeyModifiers": 1, - "AXObjectCache": 1, - "accessibilityEnhancedUserInterfaceEnabled": 1, - "CtrlKey": 2, - "|": 3, - "AltKey": 1, "#import": 3, "": 1, "": 1, + "#if": 10, "#ifdef": 6, "OODEBUG": 1, "#define": 1, "OODEBUG_SQL": 4, + "#endif": 19, "OOOODatabase": 1, "OODB": 1, + ";": 494, + "static": 16, "NSString": 25, "*kOOObject": 1, "@": 28, @@ -51229,12 +55009,20 @@ "records": 1, "@implementation": 7, "+": 55, + "(": 612, "id": 19, + ")": 610, "record": 18, "OO_AUTORETURNS": 2, + "{": 151, + "return": 149, "OO_AUTORELEASE": 3, + "[": 268, + "self": 70, "alloc": 11, + "]": 266, "init": 4, + "}": 148, "insert": 7, "*record": 4, "insertWithParent": 1, @@ -51243,17 +55031,22 @@ "sharedInstance": 37, "copyJoinKeysFrom": 1, "to": 6, + "-": 175, "delete": 4, + "void": 18, "update": 4, "indate": 4, "upsert": 4, + "int": 36, "commit": 6, "rollback": 5, "setNilValueForKey": 1, + "*": 34, "key": 2, "OOReference": 2, "": 1, "zeroForNull": 4, + "if": 104, "NSNumber": 4, "numberWithInt": 1, "setValue": 1, @@ -51261,13 +55054,16 @@ "OOArray": 16, "": 14, "select": 21, + "nil": 25, "intoClass": 11, "joinFrom": 10, "cOOString": 15, "sql": 21, "selectRecordsRelatedTo": 1, + "class": 14, "importFrom": 1, "OOFile": 4, + "&": 21, "file": 2, "delimiter": 4, "delim": 4, @@ -51282,14 +55078,17 @@ "export": 1, "bindToView": 1, "OOView": 2, + "view": 28, "delegate": 4, "bindRecord": 1, "toView": 1, "updateFromView": 1, "updateRecord": 1, + "fromView": 3, "description": 6, "*metaData": 14, "metaDataForClass": 3, + "//": 7, "hack": 1, "required": 2, "where": 1, @@ -51367,6 +55166,7 @@ "initWithFormat": 3, "arguments": 3, "va_end": 3, + "const": 16, "objects": 4, "deleteArray": 2, "object": 13, @@ -51393,9 +55193,12 @@ "<": 5, "superClass": 5, "class_getName": 4, + "while": 4, "class_getSuperclass": 1, "respondsToSelector": 2, + "@selector": 4, "ooTableSql": 1, + "else": 11, "tableMetaDataForClass": 8, "break": 6, "delay": 1, @@ -51431,6 +55234,7 @@ "format": 1, "string": 1, "escape": 1, + "characters": 3, "Any": 1, "results": 3, "returned": 1, @@ -51438,12 +55242,14 @@ "placed": 1, "as": 1, "an": 1, + "array": 2, "dictionary": 1, "results.": 1, "*/": 1, "errcode": 12, "OOString": 6, "stringForSql": 2, + "&&": 12, "*aColumnName": 1, "**results": 1, "allKeys": 1, @@ -51463,9 +55269,11 @@ "NSLog": 4, "*joinValues": 1, "*adaptor": 7, + "||": 18, "": 1, "tablesRelatedByNaturalJoinFrom": 1, "tablesWithNaturalJoin": 5, + "i": 29, "**tablesWithNaturalJoin": 1, "*childMetaData": 1, "tableMetaDataByClassName": 3, @@ -51503,6 +55311,7 @@ "quote": 2, "commaQuote": 2, "": 1, + "YES": 6, "commited": 2, "updateCount": 2, "transaction": 2, @@ -51512,6 +55321,7 @@ "*transaction": 1, "d": 2, "": 1, + "#ifndef": 3, "OO_ARC": 1, "boxed": 1, "valueForKey": 1, @@ -51525,6 +55335,7 @@ "indexes": 1, "idx": 2, "implements": 1, + "owner": 15, ".directory": 1, ".mkdir": 1, "sqlite3_open": 1, @@ -51560,6 +55371,9 @@ "length": 4, "*type": 1, "objCType": 1, + "type": 10, + "switch": 4, + "case": 25, "sqlite3_bind_int": 1, "intValue": 3, "sqlite3_bind_int64": 1, @@ -51580,6 +55394,7 @@ "initWithDouble": 1, "sqlite3_column_double": 1, "SQLITE_TEXT": 1, + "unsigned": 2, "*bytes": 2, "sqlite3_column_text": 1, "NSMutableString": 1, @@ -51587,6 +55402,7 @@ "sqlite3_column_bytes": 2, "SQLITE_BLOB": 1, "sqlite3_column_blob": 1, + "default": 3, "out": 4, "awakeFromDB": 4, "instancesRespondToSelector": 1, @@ -51614,6 +55430,7 @@ "q": 1, "Q": 1, "f": 1, + "%": 2, "_": 2, "tag": 1, "A": 2, @@ -51630,13 +55447,288 @@ "stringValue": 4, "charValue": 1, "shortValue": 1, + "NSArray": 3, "OOReplace": 2, "reformat": 4, + "|": 3, "NSDictionary": 2, "__IPHONE_OS_VERSION_MIN_REQUIRED": 1, "UISwitch": 2, "text": 1, - "self.on": 1 + "self.on": 1, + "#include": 26, + "": 1, + "": 1, + "defined": 1, + "OBJC_API_VERSION": 2, + "inline": 3, + "IMP": 4, + "method_setImplementation": 2, + "Method": 2, + "m": 3, + "oi": 2, + "method_imp": 2, + "namespace": 1, + "WebCore": 1, + "ENABLE": 10, + "DRAG_SUPPORT": 7, + "double": 1, + "EventHandler": 30, + "TextDragDelay": 1, + "RetainPtr": 4, + "": 4, + "currentNSEventSlot": 6, + "DEFINE_STATIC_LOCAL": 1, + "event": 30, + "NSEvent": 21, + "*EventHandler": 2, + "currentNSEvent": 13, + ".get": 1, + "CurrentEventScope": 14, + "WTF_MAKE_NONCOPYABLE": 1, + "public": 1, + "private": 1, + "m_savedCurrentEvent": 3, + "NDEBUG": 2, + "m_event": 3, + "*event": 11, + "ASSERT": 13, + "bool": 26, + "wheelEvent": 5, + "Page*": 7, + "page": 33, + "m_frame": 24, + "false": 40, + "scope": 6, + "PlatformWheelEvent": 2, + "chrome": 8, + "platformPageClient": 4, + "handleWheelEvent": 2, + "wheelEvent.isAccepted": 1, + "PassRefPtr": 2, + "": 1, + "currentKeyboardEvent": 1, + "NSApp": 5, + "currentEvent": 2, + "NSKeyDown": 4, + "PlatformKeyboardEvent": 6, + "platformEvent": 2, + "platformEvent.disambiguateKeyDownEvent": 1, + "RawKeyDown": 1, + "KeyboardEvent": 2, + "create": 3, + "document": 6, + "defaultView": 2, + "NSKeyUp": 3, + "keyEvent": 2, + "BEGIN_BLOCK_OBJC_EXCEPTIONS": 13, + "END_BLOCK_OBJC_EXCEPTIONS": 13, + "focusDocumentView": 1, + "FrameView*": 7, + "frameView": 4, + "NSView": 14, + "*documentView": 1, + "documentView": 2, + "focusNSView": 1, + "focusController": 1, + "setFocusedFrame": 1, + "passWidgetMouseDownEventToWidget": 3, + "MouseEventWithHitTestResults": 7, + "RenderObject*": 2, + "target": 6, + "targetNode": 3, + "renderer": 7, + "isWidget": 2, + "passMouseDownEventToWidget": 3, + "toRenderWidget": 3, + "widget": 18, + "RenderWidget*": 1, + "renderWidget": 2, + "lastEventIsMouseUp": 2, + "*currentEventAfterHandlingMouseDown": 1, + "currentEventAfterHandlingMouseDown": 3, + "NSLeftMouseUp": 3, + "timestamp": 8, + "Widget*": 3, + "pWidget": 2, + "RefPtr": 1, + "": 1, + "LOG_ERROR": 1, + "true": 29, + "platformWidget": 6, + "*nodeView": 1, + "nodeView": 9, + "superview": 5, + "*view": 4, + "hitTest": 2, + "convertPoint": 2, + "locationInWindow": 4, + "client": 3, + "firstResponder": 1, + "clickCount": 8, + "<=>": 1, + "1": 1, + "acceptsFirstResponder": 1, + "needsPanelToBecomeKey": 1, + "makeFirstResponder": 1, + "wasDeferringLoading": 3, + "defersLoading": 1, + "setDefersLoading": 2, + "m_sendingEventToSubview": 24, + "*outerView": 1, + "getOuterView": 1, + "beforeMouseDown": 1, + "outerView": 2, + "widget.get": 2, + "mouseDown": 2, + "afterMouseDown": 1, + "m_mouseDownView": 5, + "m_mouseDownWasInSubframe": 7, + "m_mousePressed": 2, + "findViewInSubviews": 3, + "*superview": 1, + "*target": 1, + "NSEnumerator": 1, + "*e": 1, + "subviews": 1, + "objectEnumerator": 1, + "*subview": 1, + "subview": 3, + "e": 1, + "nextObject": 1, + "mouseDownViewIfStillGood": 3, + "*mouseDownView": 1, + "mouseDownView": 3, + "topFrameView": 3, + "*topView": 1, + "topView": 2, + "eventLoopHandleMouseDragged": 1, + "mouseDragged": 2, + "eventLoopHandleMouseUp": 1, + "mouseUp": 2, + "passSubframeEventToSubframe": 4, + "Frame*": 5, + "subframe": 13, + "HitTestResult*": 2, + "hoveredNode": 5, + "NSLeftMouseDragged": 1, + "NSOtherMouseDragged": 1, + "NSRightMouseDragged": 1, + "dragController": 1, + "didInitiateDrag": 1, + "NSMouseMoved": 2, + "eventHandler": 6, + "handleMouseMoveEvent": 3, + "currentPlatformMouseEvent": 8, + "NSLeftMouseDown": 3, + "Node*": 1, + "node": 3, + "isFrameView": 2, + "handleMouseReleaseEvent": 3, + "originalNSScrollViewScrollWheel": 4, + "_nsScrollViewScrollWheelShouldRetainSelf": 3, + "selfRetainingNSScrollViewScrollWheel": 3, + "NSScrollView": 2, + "SEL": 2, + "nsScrollViewScrollWheelShouldRetainSelf": 2, + "isMainThread": 3, + "setNSScrollViewScrollWheelShouldRetainSelf": 3, + "shouldRetain": 2, + "method": 2, + "class_getInstanceMethod": 1, + "objc_getRequiredClass": 1, + "scrollWheel": 2, + "reinterpret_cast": 1, + "": 1, + "*self": 1, + "selector": 2, + "shouldRetainSelf": 3, + "retain": 1, + "release": 1, + "passWheelEventToWidget": 1, + "NSView*": 1, + "static_cast": 1, + "": 1, + "frame": 3, + "NSScrollWheel": 1, + "v": 6, + "loader": 1, + "resetMultipleFormSubmissionProtection": 1, + "handleMousePressEvent": 2, + "handleMouseDoubleClickEvent": 1, + "sendFakeEventsAfterWidgetTracking": 1, + "*initiatingEvent": 1, + "eventType": 5, + "initiatingEvent": 22, + "*fakeEvent": 1, + "fakeEvent": 6, + "mouseEventWithType": 2, + "location": 3, + "modifierFlags": 6, + "windowNumber": 6, + "context": 6, + "eventNumber": 3, + "pressure": 3, + "postEvent": 3, + "atStart": 3, + "keyEventWithType": 1, + "charactersIgnoringModifiers": 2, + "isARepeat": 2, + "keyCode": 2, + "window": 1, + "convertScreenToBase": 1, + "mouseLocation": 1, + "mouseMoved": 2, + "frameHasPlatformWidget": 4, + "passMousePressEventToSubframe": 1, + "mev": 6, + "mev.event": 3, + "passMouseMoveEventToSubframe": 1, + "m_mouseDownMayStartDrag": 1, + "passMouseReleaseEventToSubframe": 1, + "PlatformMouseEvent": 5, + "*windowView": 1, + "windowView": 2, + "CONTEXT_MENUS": 2, + "sendContextMenuEvent": 2, + "eventMayStartDrag": 2, + "eventActivatedView": 1, + "m_activationEventNumber": 1, + "event.eventNumber": 1, + "": 1, + "createDraggingClipboard": 1, + "NSPasteboard": 2, + "*pasteboard": 1, + "pasteboardWithName": 1, + "NSDragPboard": 1, + "pasteboard": 2, + "declareTypes": 1, + "ClipboardMac": 1, + "Clipboard": 1, + "DragAndDrop": 1, + "ClipboardWritable": 1, + "tabsToAllFormControls": 1, + "KeyboardEvent*": 1, + "KeyboardUIMode": 1, + "keyboardUIMode": 5, + "handlingOptionTab": 4, + "isKeyboardOptionTab": 1, + "KeyboardAccessTabsToLinks": 2, + "KeyboardAccessFull": 1, + "needsKeyboardEventDisambiguationQuirks": 2, + "Document*": 1, + "applicationIsSafari": 1, + "url": 2, + ".protocolIs": 2, + "Settings*": 1, + "settings": 5, + "DASHBOARD_SUPPORT": 1, + "usesDashboardBackwardCompatibilityMode": 1, + "accessKeyModifiers": 1, + "AXObjectCache": 1, + "accessibilityEnhancedUserInterfaceEnabled": 1, + "CtrlKey": 2, + "AltKey": 1 }, "Omgrofl": { "lol": 14, @@ -51749,94 +55841,20 @@ "OpenEdge ABL": { "USING": 3, "Progress.Lang.*.": 3, - "INTERFACE": 1, - "email.SendEmailAlgorithm": 1, - "METHOD": 6, - "PUBLIC": 6, - "CHARACTER": 9, - "sendEmail": 2, - "(": 44, - "INPUT": 11, - "ipobjEmail": 1, - "AS": 21, - "email.Email": 2, - ")": 44, - ".": 14, - "END": 12, - "INTERFACE.": 1, - "DEFINE": 16, - "PARAMETER": 3, - "objSendEmailAlg": 2, - "email.SendEmailSocket": 1, - "NO": 13, - "-": 73, - "UNDO.": 12, - "VARIABLE": 12, - "vbuffer": 9, - "MEMPTR": 2, - "vstatus": 1, - "LOGICAL": 1, - "vState": 2, - "INTEGER": 6, - "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, - "RETURN": 7, - "FUNCTION.": 1, - "PROCEDURE": 2, - "newState": 2, - "INTEGER.": 1, - "pstring": 4, - "CHARACTER.": 1, - "newState.": 1, - "IF": 2, - "THEN": 2, - "RETURN.": 1, - "SET": 5, - "SIZE": 5, - "LENGTH": 3, - "+": 21, - "PUT": 1, - "STRING": 7, - "pstring.": 1, - "SELF": 4, - "WRITE": 1, - "PROCEDURE.": 2, - "ReadSocketResponse": 1, - "vlength": 5, - "str": 3, - "v": 1, - "MESSAGE": 2, - "GET": 3, - "BYTES": 2, - "AVAILABLE": 2, - "VIEW": 1, - "ALERT": 1, - "BOX.": 1, - "DO": 2, - "READ": 1, - "handleResponse": 1, - "END.": 2, "CLASS": 2, + "email.Email": 2, "USE": 2, + "-": 73, "WIDGET": 2, "POOL": 2, "&": 3, "SCOPED": 1, + "DEFINE": 16, "QUOTES": 1, "@#": 1, "%": 2, "*": 2, + "+": 21, "._MIME_BOUNDARY_.": 1, "#@": 1, "WIN": 1, @@ -51914,17 +55932,33 @@ "filename": 2, "ttAttachments.cFileName": 2, "cNewLine.": 1, + "RETURN": 7, "lcReturnData.": 1, + "END": 12, "METHOD.": 6, + "METHOD": 6, + "PUBLIC": 6, + "CHARACTER": 9, "send": 1, + "(": 44, + ")": 44, "objSendEmailAlgorithm": 1, + "sendEmail": 2, + "INPUT": 11, "THIS": 1, "OBJECT": 2, + ".": 14, "CLASS.": 2, + "INTERFACE": 1, + "email.SendEmailAlgorithm": 1, + "ipobjEmail": 1, + "AS": 21, + "INTERFACE.": 1, "email.Util": 1, "FINAL": 1, "PRIVATE": 1, "STATIC": 5, + "VARIABLE": 12, "cMonthMap": 2, "EXTENT": 1, "INITIAL": 1, @@ -51934,9 +55968,11 @@ "ipdttzDateTime": 6, "DATETIME": 3, "TZ": 2, + "STRING": 7, "DAY": 1, "MONTH": 1, "YEAR": 1, + "INTEGER": 6, "TRUNCATE": 2, "MTIME": 1, "/": 2, @@ -51950,8 +55986,11 @@ "ConvertDataToBase64": 1, "iplcNonEncodedData": 2, "lcPreBase64Data": 4, + "NO": 13, + "UNDO.": 12, "lcPostBase64Data": 3, "mptrPostBase64Data": 3, + "MEMPTR": 2, "i": 3, "COPY": 1, "LOB": 1, @@ -51960,10 +55999,63 @@ "mptrPostBase64Data.": 1, "BASE64": 1, "ENCODE": 1, + "SET": 5, + "SIZE": 5, + "DO": 2, + "LENGTH": 3, "BY": 1, + "ASSIGN": 2, "SUBSTRING": 1, "CHR": 2, - "lcPostBase64Data.": 1 + "END.": 2, + "lcPostBase64Data.": 1, + "PARAMETER": 3, + "objSendEmailAlg": 2, + "email.SendEmailSocket": 1, + "vbuffer": 9, + "vstatus": 1, + "LOGICAL": 1, + "vState": 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": 2, + "newState": 2, + "INTEGER.": 1, + "pstring": 4, + "CHARACTER.": 1, + "newState.": 1, + "IF": 2, + "THEN": 2, + "RETURN.": 1, + "PUT": 1, + "pstring.": 1, + "SELF": 4, + "WRITE": 1, + "PROCEDURE.": 2, + "ReadSocketResponse": 1, + "vlength": 5, + "str": 3, + "v": 1, + "MESSAGE": 2, + "GET": 3, + "BYTES": 2, + "AVAILABLE": 2, + "VIEW": 1, + "ALERT": 1, + "BOX.": 1, + "READ": 1, + "handleResponse": 1 }, "OpenSCAD": { "fn": 1, @@ -52188,171 +56280,12 @@ "it": 1 }, "Ox": { - "#include": 2, - "Kapital": 4, - "(": 119, - "L": 2, - "const": 4, - "N": 5, - "entrant": 8, - "exit": 2, - "KP": 14, - ")": 119, - "{": 22, - "StateVariable": 1, - ";": 91, - "this.entrant": 1, - "this.exit": 1, - "this.KP": 1, - "actual": 2, - "Kbar*vals/": 1, - "-": 31, - "upper": 3, - "log": 2, - ".Inf": 2, - "}": 22, - "Transit": 1, - "FeasA": 2, - "decl": 3, - "ent": 5, - "CV": 7, - "stayout": 3, - "[": 25, - "]": 25, - "exit.pos": 1, - "tprob": 5, - "sigu": 2, - "SigU": 2, - "if": 5, - "v": 2, - "&&": 1, - "return": 10, - "<0>": 1, - "ones": 1, - "probn": 2, - "Kbe": 2, - "/sigu": 1, - "Kb0": 2, - "+": 14, - "Kb2": 2, - "*upper": 1, - "/": 1, - "vals": 1, - "tprob.*": 1, - "zeros": 4, - ".*stayout": 1, - "FirmEntry": 6, - "Run": 1, - "Initialize": 3, - "GenerateSample": 2, - "BDP": 2, - "BayesianDP": 1, - "Rust": 1, - "Reachable": 2, - "sige": 2, - "new": 19, - "StDeviations": 1, - "<0.3,0.3>": 1, - "LaggedAction": 1, - "d": 2, - "array": 1, - "Kparams": 1, - "Positive": 4, - "Free": 1, - "Kb1": 1, - "Determined": 1, - "EndogenousStates": 1, - "K": 3, - "KN": 1, - "SetDelta": 1, - "Probability": 1, - "kcoef": 3, - "ecost": 3, - "Negative": 1, - "CreateSpaces": 1, - "Volume": 3, - "LOUD": 1, - "EM": 4, - "ValueIteration": 1, - "//": 17, - "Solve": 1, - "data": 4, - "DataSet": 1, - "Simulate": 1, - "DataN": 1, - "DataT": 1, - "FALSE": 1, - "Print": 1, - "ImaiJainChing": 1, - "delta": 1, - "*CV": 2, - "Utility": 1, - "u": 2, - "ent*CV": 1, - "*AV": 1, - "|": 1, - "ParallelObjective": 1, - "obj": 18, - "DONOTUSECLIENT": 2, - "isclass": 1, - "obj.p2p": 2, - "oxwarning": 1, - "obj.L": 1, - "P2P": 2, - "ObjClient": 4, - "ObjServer": 7, - "this.obj": 2, - "Execute": 4, - "basetag": 2, - "STOP_TAG": 1, - "iml": 1, - "obj.NvfuncTerms": 2, - "Nparams": 6, - "obj.nstruct": 2, - "Loop": 2, - "nxtmsgsz": 2, - "//free": 1, - "param": 1, - "length": 1, - "is": 1, - "no": 2, - "greater": 1, - "than": 1, - "QUIET": 2, - "println": 2, - "ID": 2, - "Server": 1, - "Recv": 1, - "ANY_TAG": 1, - "//receive": 1, - "the": 1, - "ending": 1, - "parameter": 1, - "vector": 1, - "Encode": 3, - "Buffer": 8, - "//encode": 1, - "it.": 1, - "Decode": 1, - "obj.nfree": 1, - "obj.cur.V": 1, - "vfunc": 2, - "CstrServer": 3, - "SepServer": 3, - "Lagrangian": 1, - "rows": 1, - "obj.cur": 1, - "Vec": 1, - "obj.Kvar.v": 1, - "imod": 1, - "Tag": 1, - "obj.K": 1, - "TRUE": 1, - "obj.Kvar": 1, - "PDF": 1, - "*": 5, "nldge": 1, "ParticleLogLikeli": 1, + "(": 119, + ")": 119, + "{": 22, + "decl": 3, "it": 5, "ip": 1, "mss": 3, @@ -52380,19 +56313,24 @@ "timefun": 1, "timeint": 1, "timeres": 1, + ";": 91, "GetData": 1, "m_asY": 1, "sqrt": 1, "*M_PI": 1, "m_cY": 1, + "*": 5, "determinant": 2, "m_mMSbE.": 2, + "//": 17, "covariance": 2, "invert": 2, "of": 2, "measurement": 1, "shocks": 1, "m_vSss": 1, + "+": 14, + "zeros": 4, "m_cPar": 4, "m_cS": 1, "start": 1, @@ -52426,6 +56364,9 @@ "evaluate": 1, "importance": 1, "weights": 2, + "-": 31, + "[": 25, + "]": 25, "observation": 1, "error": 1, "exp": 2, @@ -52436,14 +56377,19 @@ ".*my": 1, ".": 3, ".NaN": 1, + "no": 2, "can": 1, "happen": 1, "extrem": 1, "sumc": 1, + "if": 5, + "return": 10, + ".Inf": 2, "or": 1, "extremely": 1, "wrong": 1, "parameters": 1, + "log": 2, "dws/m_cPar": 1, "loglikelihood": 1, "contribution": 1, @@ -52457,7 +56403,153 @@ "in": 1, "c": 1, "on": 1, - "normalized": 1 + "normalized": 1, + "}": 22, + "#include": 2, + "ParallelObjective": 1, + "obj": 18, + "DONOTUSECLIENT": 2, + "isclass": 1, + "obj.p2p": 2, + "oxwarning": 1, + "obj.L": 1, + "new": 19, + "P2P": 2, + "ObjClient": 4, + "ObjServer": 7, + "this.obj": 2, + "Execute": 4, + "basetag": 2, + "STOP_TAG": 1, + "iml": 1, + "obj.NvfuncTerms": 2, + "Nparams": 6, + "obj.nstruct": 2, + "Loop": 2, + "nxtmsgsz": 2, + "//free": 1, + "param": 1, + "length": 1, + "is": 1, + "greater": 1, + "than": 1, + "Volume": 3, + "QUIET": 2, + "println": 2, + "ID": 2, + "Server": 1, + "Recv": 1, + "ANY_TAG": 1, + "//receive": 1, + "the": 1, + "ending": 1, + "parameter": 1, + "vector": 1, + "Encode": 3, + "Buffer": 8, + "//encode": 1, + "it.": 1, + "Decode": 1, + "obj.nfree": 1, + "obj.cur.V": 1, + "vfunc": 2, + "CstrServer": 3, + "SepServer": 3, + "Lagrangian": 1, + "rows": 1, + "obj.cur": 1, + "Vec": 1, + "obj.Kvar.v": 1, + "imod": 1, + "Tag": 1, + "obj.K": 1, + "TRUE": 1, + "obj.Kvar": 1, + "PDF": 1, + "Kapital": 4, + "L": 2, + "const": 4, + "N": 5, + "entrant": 8, + "exit": 2, + "KP": 14, + "StateVariable": 1, + "this.entrant": 1, + "this.exit": 1, + "this.KP": 1, + "actual": 2, + "Kbar*vals/": 1, + "upper": 3, + "Transit": 1, + "FeasA": 2, + "ent": 5, + "CV": 7, + "stayout": 3, + "exit.pos": 1, + "tprob": 5, + "sigu": 2, + "SigU": 2, + "v": 2, + "&&": 1, + "<0>": 1, + "ones": 1, + "probn": 2, + "Kbe": 2, + "/sigu": 1, + "Kb0": 2, + "Kb2": 2, + "*upper": 1, + "/": 1, + "vals": 1, + "tprob.*": 1, + ".*stayout": 1, + "FirmEntry": 6, + "Run": 1, + "Initialize": 3, + "GenerateSample": 2, + "BDP": 2, + "BayesianDP": 1, + "Rust": 1, + "Reachable": 2, + "sige": 2, + "StDeviations": 1, + "<0.3,0.3>": 1, + "LaggedAction": 1, + "d": 2, + "array": 1, + "Kparams": 1, + "Positive": 4, + "Free": 1, + "Kb1": 1, + "Determined": 1, + "EndogenousStates": 1, + "K": 3, + "KN": 1, + "SetDelta": 1, + "Probability": 1, + "kcoef": 3, + "ecost": 3, + "Negative": 1, + "CreateSpaces": 1, + "LOUD": 1, + "EM": 4, + "ValueIteration": 1, + "Solve": 1, + "data": 4, + "DataSet": 1, + "Simulate": 1, + "DataN": 1, + "DataT": 1, + "FALSE": 1, + "Print": 1, + "ImaiJainChing": 1, + "delta": 1, + "*CV": 2, + "Utility": 1, + "u": 2, + "ent*CV": 1, + "*AV": 1, + "|": 1 }, "Oxygene": { "": 1, @@ -52551,6 +56643,43 @@ "": 1, "": 1 }, + "Oz": { + "%": 1, + "declare": 1, + "fun": 5, + "{": 10, + "Sum": 2, + "N": 12, + "}": 10, + "local": 3, + "SumAux": 3, + "in": 4, + "Acc": 7, + "if": 3, + "then": 4, + "else": 3, + "-": 2, + "end": 12, + "Prime": 1, + "PrimeAcc": 4, + "(": 4, + ")": 4, + "false": 2, + "elseif": 1, + "true": 1, + "mod": 1, + "div": 1, + "Reverse": 1, + "L": 2, + "RevList": 3, + "NewCell": 1, + "nil": 1, + "for": 1, + "E": 2, + "do": 1, + "|": 1, + "@RevList": 2 + }, "PAWN": { "//": 22, "-": 1551, @@ -52711,424 +56840,12 @@ "Kick": 1 }, "PHP": { + "": 4, + "echo": 3, + "_SERVER": 1, + "_GET": 1, + "var": 1, "SHEBANG#!php": 4, - "<": 11, - "php": 14, - "echo": 2, - ";": 1383, - "": 3, - "CakePHP": 6, - "tm": 6, - "Rapid": 2, - "Development": 2, - "Framework": 2, - "http": 14, - "cakephp": 4, - "org": 10, - "Copyright": 5, - "2005": 4, - "2012": 4, - "Cake": 7, - "Software": 5, - "Foundation": 4, - "Inc": 4, - "cakefoundation": 4, - "Licensed": 2, - "under": 2, - "The": 4, - "MIT": 4, - "License": 4, - "Redistributions": 2, - "of": 10, - "files": 7, - "must": 2, - "retain": 2, - "the": 11, - "above": 2, - "copyright": 5, - "notice": 2, - "link": 10, - "Project": 2, - "package": 2, - "Controller": 4, - "since": 2, - "v": 17, - "0": 4, - "2": 2, - "9": 1, - "license": 6, - "www": 4, - "opensource": 2, - "licenses": 2, - "mit": 2, - "App": 20, - "uses": 46, - "CakeResponse": 2, - "Network": 1, - "ClassRegistry": 9, - "Utility": 6, - "ComponentCollection": 2, - "View": 9, - "CakeEvent": 13, - "Event": 6, - "CakeEventListener": 4, - "CakeEventManager": 5, - "Application": 3, - "controller": 3, - "class": 21, - "for": 8, - "organization": 1, - "business": 1, - "logic": 1, - "Provides": 1, - "basic": 1, - "functionality": 1, - "such": 1, - "as": 96, - "rendering": 1, - "views": 1, - "inside": 1, - "layouts": 1, - "automatic": 1, - "model": 34, - "availability": 1, - "redirection": 2, - "callbacks": 4, - "and": 5, - "more": 1, - "Controllers": 2, - "should": 1, - "provide": 1, - "a": 11, - "number": 1, - "action": 7, - "methods": 5, - "These": 1, - "are": 5, - "public": 202, - "on": 4, - "that": 2, - "not": 2, - "prefixed": 1, - "with": 5, - "_": 1, - "part": 10, - "Each": 1, - "serves": 1, - "an": 1, - "endpoint": 1, - "performing": 2, - "specific": 1, - "resource": 1, - "or": 9, - "collection": 3, - "resources": 1, - "For": 2, - "example": 2, - "adding": 1, - "editing": 1, - "new": 74, - "object": 14, - "listing": 1, - "set": 26, - "objects": 5, - "You": 2, - "can": 2, - "access": 1, - "request": 76, - "parameters": 4, - "using": 2, - "this": 928, - ".": 169, - "contains": 1, - "all": 11, - "POST": 1, - "GET": 1, - "FILES": 1, - "*": 25, - "were": 1, - "request.": 1, - "After": 1, - "required": 2, - "actions": 2, - "controllers": 2, - "responsible": 1, - "creating": 1, - "response.": 2, - "This": 1, - "usually": 1, - "takes": 1, - "form": 7, - "generated": 1, - "possibly": 1, - "to": 6, - "another": 1, - "action.": 1, - "In": 1, - "either": 1, - "case": 31, - "-": 1271, - "response": 33, - "allows": 1, - "you": 1, - "manipulate": 1, - "aspects": 1, - "created": 8, - "by": 2, - "Dispatcher": 1, - "based": 2, - "routing.": 1, - "By": 1, - "default": 9, - "use": 23, - "conventional": 1, - "names.": 1, - "/posts/index": 1, - "maps": 1, - "PostsController": 1, - "index": 5, - "(": 2416, - ")": 2417, - "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": 1, - "RequestHandlerComponent": 1, - "RequestHandler": 1, - "SecurityComponent": 1, - "Security": 1, - "SessionComponent": 1, - "Session": 1, - "@link": 2, - "//book.cakephp.org/2.0/en/controllers.html": 1, - "*/": 2, - "extends": 3, - "Object": 4, - "implements": 3, - "{": 974, - "name": 181, - "null": 164, - "true": 133, - "helpers": 1, - "array": 296, - "protected": 59, - "_responseClass": 1, - "viewPath": 3, - "layoutPath": 1, - "viewVars": 3, - "view": 5, - "layout": 5, - "autoRender": 6, - "autoLayout": 2, - "Components": 7, - "components": 1, - "viewClass": 10, - "ext": 1, - "plugin": 31, - "cacheAction": 1, - "false": 154, - "passedArgs": 2, - "scaffold": 2, - "modelClass": 25, - "modelKey": 2, - "validationErrors": 50, - "_mergeParent": 4, - "_eventManager": 12, - "function": 205, - "__construct": 8, - "if": 450, - "substr": 6, - "get_class": 4, - "}": 972, - "Inflector": 12, - "singularize": 4, - "underscore": 3, - "childMethods": 2, - "get_class_methods": 2, - "parentMethods": 2, - "array_diff": 3, - "instanceof": 8, - "CakeRequest": 5, - "setRequest": 2, - "parent": 14, - "__isset": 2, - "switch": 6, - "return": 305, - "is_array": 37, - "foreach": 94, - "list": 29, - "pluginSplit": 12, - "loadModel": 3, - "__get": 2, - "isset": 101, - "params": 34, - "[": 672, - "]": 672, - "load": 3, - "settings": 2, - "__set": 1, - "value": 53, - "camelize": 3, - "&&": 119, - "array_merge": 32, - "array_key_exists": 11, - "empty": 96, - "invokeAction": 1, - "try": 3, - "method": 31, - "ReflectionMethod": 2, - "_isPrivateAction": 2, - "throw": 19, - "PrivateActionException": 1, - "invokeArgs": 1, - "catch": 3, - "ReflectionException": 1, - "e": 18, - "_getScaffold": 2, - "MissingActionException": 1, - "privateAction": 4, - "||": 52, - "isPublic": 1, - "in_array": 26, - "prefixes": 4, - "strpos": 15, - "prefix": 2, - "explode": 9, - "Scaffold": 1, - "_mergeControllerVars": 2, - "pluginController": 9, - "pluginDot": 4, - "mergeParent": 2, - "is_subclass_of": 3, - "pluginVars": 3, - "appVars": 6, - "merge": 12, - "_mergeVars": 5, - "get_class_vars": 2, - "array_unshift": 2, - "_mergeUses": 3, - "else": 70, - "implementedEvents": 2, - "constructClasses": 1, - "init": 4, - "current": 4, - "getEventManager": 13, - "attach": 4, - "startupProcess": 1, - "dispatch": 11, - "shutdownProcess": 1, - "httpCodes": 3, - "code": 4, - "id": 82, - "MissingModelException": 1, - "redirect": 6, - "url": 18, - "status": 15, - "exit": 7, - "extract": 9, - "EXTR_OVERWRITE": 3, - "event": 35, - "//TODO": 1, - "Remove": 1, - "following": 1, - "line": 10, - "when": 1, - "events": 1, - "fully": 1, - "migrated": 1, - "break": 19, - "breakOn": 4, - "collectReturn": 1, - "isStopped": 4, - "result": 21, - "_parseBeforeRedirect": 2, - "function_exists": 4, - "session_write_close": 1, - "header": 3, - "is_string": 7, - "codes": 3, - "array_flip": 1, - "statusCode": 14, - "send": 1, - "_stop": 1, - "resp": 6, - "elseif": 31, - "compact": 8, - "one": 19, - "two": 6, - "data": 187, - "array_combine": 2, - "+": 12, - "setAction": 1, - "args": 5, - "func_get_args": 5, - "unset": 22, - "call_user_func_array": 3, - "&": 19, - "validate": 9, - "errors": 9, - "count": 32, - "validateErrors": 1, - "alias": 87, - "invalidFields": 2, - "render": 3, - "className": 27, - "models": 6, - "keys": 19, - "currentModel": 2, - "currentObject": 6, - "getObject": 1, - "is_a": 1, - "location": 1, - "body": 1, - "referer": 5, - "local": 2, - "disableCache": 2, - "flash": 1, - "message": 12, - "pause": 2, - "postConditions": 1, - "op": 9, - "bool": 5, - "exclusive": 2, - "cond": 5, - "arrayOp": 2, - "fields": 60, - "field": 88, - "key": 64, - "fieldOp": 11, - "continue": 7, - "strtoupper": 3, - "trim": 3, - "paginate": 3, - "scope": 2, - "whitelist": 14, - "beforeFilter": 1, - "beforeRender": 1, - "beforeRedirect": 1, - "afterFilter": 1, - "beforeScaffold": 2, - "_beforeScaffold": 1, - "afterScaffoldSave": 2, - "_afterScaffoldSave": 1, - "afterScaffoldSaveError": 2, - "_afterScaffoldSaveError": 1, - "scaffoldError": 2, - "_scaffoldError": 1, "": 1, "aMenuLinks": 1, "Array": 13, @@ -53139,96 +56856,151 @@ "About": 1, "me": 1, "about": 1, + "php": 14, "Contact": 1, "contacts": 1, + "<": 11, + ";": 1383, "namespace": 28, "Symfony": 24, "Component": 24, - "BrowserKit": 1, "DomCrawler": 5, - "Crawler": 2, - "Link": 3, + "use": 23, + "Field": 9, + "FormField": 3, + "class": 21, "Form": 4, - "Process": 1, - "PhpProcess": 2, - "abstract": 2, - "Client": 1, - "history": 15, - "cookieJar": 9, - "server": 20, - "crawler": 7, - "insulated": 7, - "followRedirects": 5, - "History": 2, - "CookieJar": 2, - "setServerParameters": 2, - "followRedirect": 4, - "Boolean": 4, - "insulate": 1, - "class_exists": 2, - "RuntimeException": 2, - "setServerParameter": 1, - "getServerParameter": 1, - "getHistory": 1, - "getCookieJar": 1, - "getCrawler": 1, - "getResponse": 1, - "getRequest": 1, - "click": 1, - "submit": 2, - "getMethod": 6, - "getUri": 8, - "values": 53, - "setValues": 2, - "getPhpValues": 2, - "getPhpFiles": 2, - "uri": 23, - "content": 4, - "changeHistory": 4, - "getAbsoluteUri": 2, - "isEmpty": 2, - "parse_url": 3, - "PHP_URL_HOST": 1, - "PHP_URL_SCHEME": 1, - "Request": 3, - "allValues": 1, - "filterRequest": 2, - "add": 7, - "doRequestInProcess": 2, - "doRequest": 2, - "filterResponse": 2, - "updateFromResponse": 1, - "getHeader": 2, - "createCrawlerFromContent": 2, - "getContent": 2, - "process": 10, - "getScript": 2, - "sys_get_temp_dir": 2, - "run": 4, - "isSuccessful": 1, - "preg_match": 6, - "getOutput": 3, - "getErrorOutput": 2, - "unserialize": 1, - "LogicException": 4, - "type": 62, - "addContent": 1, - "back": 2, - "requestFromRequest": 4, - "forward": 2, - "reload": 1, - "restart": 1, - "clear": 2, + "extends": 3, + "Link": 3, + "implements": 3, + "ArrayAccess": 1, + "{": 974, + "private": 24, + "button": 6, + "fields": 60, + "public": 202, + "function": 205, + "__construct": 8, + "(": 2416, + "DOMNode": 3, + "node": 42, "currentUri": 7, - "sprintf": 27, - "preg_replace": 4, - "path": 20, - "PHP_URL_PATH": 1, - "strrpos": 2, - "path.": 1, - "getParameters": 1, + "method": 31, + "null": 164, + ")": 2417, + "parent": 14, + "this": 928, + "-": 1271, + "initialize": 2, + "}": 972, + "getFormNode": 1, + "return": 305, + "setValues": 2, + "array": 296, + "values": 53, + "foreach": 94, + "as": 96, + "name": 181, + "value": 53, + "set": 26, + "getValues": 3, + "all": 11, + "field": 88, + "if": 450, + "isDisabled": 2, + "continue": 7, + "instanceof": 8, + "FileFormField": 3, + "&&": 119, + "hasValue": 1, + "[": 672, + "]": 672, + "getValue": 2, "getFiles": 3, - "getServer": 1, + "in_array": 26, + "getMethod": 6, + "files": 7, + "getPhpValues": 2, + "qs": 4, + "http_build_query": 3, + "parse_str": 2, + "getPhpFiles": 2, + "getUri": 8, + "uri": 23, + "queryString": 2, + "sep": 1, + "false": 154, + "strpos": 15, + ".": 169, + "sep.": 1, + "protected": 59, + "getRawUri": 1, + "getAttribute": 10, + "strtoupper": 3, + "has": 7, + "remove": 4, + "get": 12, + "add": 7, + "offsetExists": 1, + "offsetGet": 1, + "offsetSet": 1, + "offsetUnset": 1, + "setNode": 1, + "nodeName": 13, + "||": 52, + "do": 2, + "parentNode": 1, + "throw": 19, + "new": 74, + "LogicException": 4, + "while": 6, + "elseif": 31, + "sprintf": 27, + "FormFieldRegistry": 2, + "document": 6, + "DOMDocument": 2, + "importNode": 3, + "true": 133, + "root": 4, + "appendChild": 10, + "createElement": 6, + "xpath": 2, + "DOMXPath": 1, + "query": 102, + "hasAttribute": 1, + "InputFormField": 2, + "ChoiceFormField": 2, + "addChoice": 1, + "else": 70, + "TextareaFormField": 1, + "base": 8, + "segments": 13, + "getSegments": 4, + "getName": 14, + "target": 20, + "&": 19, + "is_array": 37, + "path": 20, + "array_shift": 5, + "count": 32, + "array_key_exists": 11, + "unset": 22, + "InvalidArgumentException": 9, + "try": 3, + "catch": 3, + "e": 18, + "self": 1, + "create": 13, + "k": 7, + "v": 17, + "setValue": 1, + "walk": 3, + "static": 6, + "registry": 4, + "output": 60, + "empty": 96, + "preg_match": 6, + "m": 5, "Console": 17, "Input": 6, "InputInterface": 4, @@ -53248,7 +57020,7 @@ "HelperSet": 3, "FormatterHelper": 2, "DialogHelper": 2, - "private": 24, + "Application": 3, "commands": 39, "wantHelps": 4, "runningCommand": 5, @@ -53261,21 +57033,23 @@ "getDefaultInputDefinition": 2, "getDefaultCommands": 2, "command": 41, + "run": 4, "input": 20, - "output": 60, + "statusCode": 14, "doRun": 2, "Exception": 1, "renderException": 3, + "getErrorOutput": 2, "getCode": 1, "is_numeric": 7, + "exit": 7, "getCommandName": 2, "hasParameterOption": 7, "setDecorated": 2, "setInteractive": 2, + "function_exists": 4, "getHelperSet": 3, - "has": 7, "inputStream": 2, - "get": 12, "getInputStream": 1, "posix_isatty": 1, "setVerbosity": 2, @@ -53290,13 +57064,13 @@ "messages": 16, "getOptions": 1, "option": 5, - "getName": 14, "getShortcut": 2, "getDescription": 3, "implode": 8, "PHP_EOL": 3, "setCatchExceptions": 1, "boolean": 4, + "Boolean": 4, "setAutoExit": 1, "setName": 1, "getVersion": 3, @@ -53306,7 +57080,8 @@ "setApplication": 2, "isEnabled": 1, "getAliases": 3, - "InvalidArgumentException": 9, + "alias": 87, + "isset": 101, "helpCommand": 3, "setCommand": 1, "getNamespaces": 3, @@ -53318,25 +57093,31 @@ "findNamespace": 4, "allNamespaces": 3, "n": 12, + "explode": 9, "found": 4, "i": 36, + "part": 10, "abbrevs": 31, - "static": 6, "getAbbreviations": 4, "array_map": 2, "p": 3, + "message": 12, "<=>": 3, "alternatives": 10, "findAlternativeNamespace": 2, "getAbbreviationSuggestions": 4, "searchName": 13, "pos": 3, + "strrpos": 2, + "substr": 6, "namespace.substr": 1, "suggestions": 2, "aliases": 8, "findAlternativeCommands": 2, "substr_count": 1, + "+": 12, "names": 3, + "for": 8, "len": 11, "strlen": 14, "abbrev": 4, @@ -53349,33 +57130,29 @@ "asXml": 2, "asDom": 2, "dom": 12, - "DOMDocument": 2, "formatOutput": 1, - "appendChild": 10, "xml": 5, - "createElement": 6, "commandsXML": 3, "setAttribute": 2, "namespacesXML": 3, "namespaceArrayXML": 4, "commandXML": 3, "createTextNode": 1, - "node": 42, "getElementsByTagName": 1, "item": 9, - "importNode": 3, "saveXml": 1, "string": 5, "encoding": 2, "mb_detect_encoding": 1, "mb_strlen": 1, - "do": 2, "title": 3, + "get_class": 4, "getTerminalWidth": 3, "PHP_INT_MAX": 1, "lines": 3, "preg_split": 1, "getMessage": 1, + "line": 10, "str_split": 1, "max": 2, "str_repeat": 2, @@ -53385,22 +57162,26 @@ "getVerbosity": 1, "trace": 12, "getTrace": 1, + "array_unshift": 2, "getFile": 2, "getLine": 2, + "type": 62, "file": 3, - "while": 6, "getPrevious": 1, "getSynopsis": 1, "defined": 5, "ansicon": 4, "getenv": 2, + "preg_replace": 4, "getSttyColumns": 3, "match": 4, "getTerminalHeight": 1, + "trim": 3, "getFirstArgument": 1, "REQUIRED": 1, "VALUE_NONE": 7, "descriptorspec": 2, + "process": 10, "proc_open": 1, "pipes": 4, "is_resource": 1, @@ -53409,6 +57190,7 @@ "fclose": 2, "proc_close": 1, "namespacedCommands": 5, + "key": 64, "ksort": 2, "limit": 3, "parts": 4, @@ -53416,6 +57198,7 @@ "array_slice": 1, "callback": 5, "findAlternatives": 3, + "collection": 3, "call_user_func": 2, "lev": 6, "levenshtein": 2, @@ -53423,18 +57206,195 @@ "/": 1, "asort": 1, "array_keys": 7, + "php_help": 1, + "arg": 1, + "switch": 6, + "case": 31, + "t": 26, + "url": 18, + "php_permission": 1, + "TRUE": 1, + "php_eval": 1, + "code": 4, + "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, + "eval": 1, + "ob_get_contents": 1, + "ob_end_clean": 1, + "_php_filter_tips": 1, + "filter": 1, + "format": 3, + "long": 2, + "FALSE": 2, + "base_url": 1, + "php_filter_info": 1, + "filters": 2, + "BrowserKit": 1, + "Crawler": 2, + "Process": 1, + "PhpProcess": 2, + "abstract": 2, + "Client": 1, + "history": 15, + "cookieJar": 9, + "server": 20, + "request": 76, + "response": 33, + "crawler": 7, + "insulated": 7, + "redirect": 6, + "followRedirects": 5, + "History": 2, + "CookieJar": 2, + "setServerParameters": 2, + "followRedirect": 4, + "insulate": 1, + "class_exists": 2, + "RuntimeException": 2, + "array_merge": 32, + "setServerParameter": 1, + "getServerParameter": 1, + "default": 9, + "getHistory": 1, + "getCookieJar": 1, + "getCrawler": 1, + "getResponse": 1, + "getRequest": 1, + "click": 1, + "link": 10, + "submit": 2, + "form": 7, + "parameters": 4, + "content": 4, + "changeHistory": 4, + "getAbsoluteUri": 2, + "isEmpty": 2, + "current": 4, + "parse_url": 3, + "PHP_URL_HOST": 1, + "PHP_URL_SCHEME": 1, + "Request": 3, + "allValues": 1, + "filterRequest": 2, + "doRequestInProcess": 2, + "doRequest": 2, + "filterResponse": 2, + "updateFromResponse": 1, + "getHeader": 2, + "createCrawlerFromContent": 2, + "getContent": 2, + "getScript": 2, + "sys_get_temp_dir": 2, + "isSuccessful": 1, + "getOutput": 3, + "unserialize": 1, + "addContent": 1, + "back": 2, + "requestFromRequest": 4, + "forward": 2, + "reload": 1, + "restart": 1, + "clear": 2, + "PHP_URL_PATH": 1, + "path.": 1, + "getParameters": 1, + "getServer": 1, + "Yii": 3, + "console": 3, + "bootstrap": 1, + "http": 14, + "www": 4, + "yiiframework": 2, + "com": 2, + "copyright": 5, + "Copyright": 5, + "c": 1, + "2008": 1, + "Software": 5, + "LLC": 1, + "license": 6, + "YII_DEBUG": 2, + "or": 9, + "define": 2, + "fcgi": 1, + "doesn": 1, + "have": 2, + "STDIN": 3, + "by": 2, + "fopen": 1, + "stdin": 1, + "r": 1, + "require": 3, + "__DIR__": 3, + "vendor": 2, + "yiisoft": 1, + "yii2": 1, + "yii": 2, + "autoload": 1, + "config": 3, + "application": 2, + "Object": 4, "relational": 2, "mapper": 2, "DBO": 2, "backed": 2, + "object": 14, + "data": 187, + "model": 34, "mapping": 1, "database": 2, "tables": 5, + "to": 6, + "Cake": 7, + "objects": 5, "PHP": 1, "versions": 1, "5": 1, + "CakePHP": 6, + "tm": 6, + "Rapid": 2, + "Development": 2, + "Framework": 2, + "cakephp": 4, + "org": 10, + "2005": 4, + "2012": 4, + "Foundation": 4, + "Inc": 4, + "cakefoundation": 4, + "Licensed": 2, + "under": 2, + "The": 4, + "MIT": 4, + "License": 4, + "Redistributions": 2, + "of": 10, + "must": 2, + "retain": 2, + "the": 11, + "above": 2, + "notice": 2, + "Project": 2, + "package": 2, "Model": 5, + "since": 2, + "0": 4, "10": 1, + "opensource": 2, + "licenses": 2, + "mit": 2, + "App": 20, + "uses": 46, + "ClassRegistry": 9, + "Utility": 6, "Validation": 1, "String": 5, "Set": 9, @@ -53442,26 +57402,40 @@ "ModelBehavior": 1, "ConnectionManager": 2, "Xml": 2, + "CakeEvent": 13, + "Event": 6, + "CakeEventListener": 4, + "CakeEventManager": 5, "Automatically": 1, "selects": 1, + "a": 11, "table": 21, + "based": 2, + "on": 4, "pluralized": 1, "lowercase": 1, "User": 1, + "*": 25, "is": 1, - "have": 2, + "required": 2, "at": 1, "least": 1, "primary": 3, "key.": 1, + "@package": 2, "Cake.Model": 1, + "@link": 2, "//book.cakephp.org/2.0/en/models.html": 1, + "*/": 2, "useDbConfig": 7, "useTable": 12, "displayField": 4, + "id": 82, "schemaName": 1, "primaryKey": 38, "_schema": 11, + "validate": 9, + "validationErrors": 50, "validationDomain": 1, "tablePrefix": 8, "tableToModel": 4, @@ -53472,6 +57446,7 @@ "hasAndBelongsToMany": 24, "actsAs": 2, "Behaviors": 6, + "whitelist": 14, "cacheSources": 7, "findQueryType": 3, "recursive": 9, @@ -53486,24 +57461,42 @@ "_insertID": 1, "_sourceConfigured": 1, "findMethods": 3, + "_eventManager": 12, "ds": 3, + "extract": 9, "addObject": 2, + "is_subclass_of": 3, + "merge": 12, "parentClass": 3, "get_parent_class": 1, + "_mergeVars": 5, + "Inflector": 12, "tableize": 2, "_createLinks": 3, + "init": 4, + "implementedEvents": 2, + "getEventManager": 13, + "attach": 4, "__call": 1, + "params": 34, + "result": 21, "dispatchMethod": 1, "getDataSource": 15, - "query": 102, - "k": 7, + "__isset": 2, + "className": 27, + "break": 19, "relation": 7, + "list": 29, + "plugin": 31, + "pluginSplit": 12, "assocKey": 13, "dynamic": 2, "isKeySet": 1, "AppModel": 1, "_constructLinkedModel": 2, "schema": 11, + "2": 2, + "__get": 2, "hasField": 7, "setDataSource": 2, "property_exists": 3, @@ -53512,8 +57505,12 @@ "assoc": 75, "assocName": 6, "unbindModel": 1, + "models": 6, "_generateAssociation": 2, "dynamicWith": 3, + "underscore": 3, + "singularize": 4, + "camelize": 3, "sort": 1, "setSource": 1, "tableName": 4, @@ -53523,9 +57520,10 @@ "listSources": 1, "strtolower": 1, "MissingTableException": 1, + "one": 19, + "two": 6, "is_object": 2, "SimpleXMLElement": 1, - "DOMNode": 3, "_normalizeXmlData": 3, "toArray": 1, "reverse": 1, @@ -53542,10 +57540,11 @@ "timeFields": 2, "date": 9, "val": 27, - "format": 3, "columns": 5, + "index": 5, "str_replace": 3, "describe": 1, + "is_string": 7, "getColumnTypes": 1, "trigger_error": 1, "__d": 1, @@ -53558,13 +57557,12 @@ "isVirtualField": 3, "hasMethod": 2, "getVirtualField": 1, - "create": 13, "filterKey": 2, "defaults": 6, "properties": 4, "read": 2, "conditions": 41, - "array_shift": 5, + "compact": 8, "saveField": 1, "options": 85, "save": 9, @@ -53577,12 +57575,18 @@ "colType": 4, "time": 3, "strtotime": 1, + "event": 35, + "breakOn": 4, + "dispatch": 11, "joined": 5, "x": 4, "y": 2, "success": 10, + "created": 8, "cache": 2, "_prepareUpdateFields": 2, + "array_combine": 2, + "bool": 5, "update": 2, "fInfo": 4, "isUUID": 5, @@ -53595,6 +57599,7 @@ "join": 22, "joinModel": 8, "keyInfo": 4, + "with": 5, "withModel": 4, "pluginName": 1, "dbMulti": 6, @@ -53608,9 +57613,11 @@ "associationForeignKey": 5, "links": 4, "oldLinks": 4, + "array_diff": 3, "delete": 9, "oldJoin": 4, "insertMulti": 1, + "keys": 19, "foreignKey": 11, "fkQuoted": 3, "escapeField": 6, @@ -53638,12 +57645,14 @@ "_return": 3, "recordData": 2, "cascade": 10, + "isStopped": 4, "_deleteDependent": 3, "_deleteLinks": 3, "_collectForeignKeys": 2, "savedAssociatons": 3, "deleteAll": 2, "records": 6, + "callbacks": 4, "ids": 8, "_id": 2, "getID": 2, @@ -53670,105 +57679,228 @@ "_findThreaded": 1, "nest": 1, "isUnique": 1, + "func_get_args": 5, "is_bool": 1, "sql": 1, - "php_help": 1, - "arg": 1, - "t": 26, - "php_permission": 1, - "TRUE": 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, - "eval": 1, - "ob_get_contents": 1, - "ob_end_clean": 1, - "_php_filter_tips": 1, - "filter": 1, - "long": 2, - "FALSE": 2, - "base_url": 1, - "php_filter_info": 1, - "filters": 2, - "Field": 9, - "FormField": 3, - "ArrayAccess": 1, - "button": 6, - "initialize": 2, - "getFormNode": 1, - "getValues": 3, - "isDisabled": 2, - "FileFormField": 3, - "hasValue": 1, - "getValue": 2, - "qs": 4, - "http_build_query": 3, - "parse_str": 2, - "queryString": 2, - "sep": 1, - "sep.": 1, - "getRawUri": 1, - "getAttribute": 10, - "remove": 4, - "offsetExists": 1, - "offsetGet": 1, - "offsetSet": 1, - "offsetUnset": 1, - "setNode": 1, - "nodeName": 13, - "parentNode": 1, - "FormFieldRegistry": 2, - "document": 6, - "root": 4, - "xpath": 2, - "DOMXPath": 1, - "hasAttribute": 1, - "InputFormField": 2, - "ChoiceFormField": 2, - "addChoice": 1, - "TextareaFormField": 1, - "base": 8, - "segments": 13, - "getSegments": 4, - "target": 20, - "self": 1, - "setValue": 1, - "walk": 3, - "registry": 4, - "m": 5, - "Yii": 3, - "console": 3, - "bootstrap": 1, - "yiiframework": 2, - "com": 2, - "c": 1, - "2008": 1, - "LLC": 1, - "YII_DEBUG": 2, - "define": 2, - "fcgi": 1, - "doesn": 1, - "STDIN": 3, - "fopen": 1, - "stdin": 1, - "r": 1, - "require": 3, - "__DIR__": 3, - "vendor": 2, - "yiisoft": 1, - "yii2": 1, - "yii": 2, - "autoload": 1, - "config": 3, - "application": 2 + "call_user_func_array": 3, + "errors": 9, + "invalidFields": 2, + "Controller": 4, + "9": 1, + "CakeResponse": 2, + "Network": 1, + "ComponentCollection": 2, + "View": 9, + "controller": 3, + "organization": 1, + "business": 1, + "logic": 1, + "Provides": 1, + "basic": 1, + "functionality": 1, + "such": 1, + "rendering": 1, + "views": 1, + "inside": 1, + "layouts": 1, + "automatic": 1, + "availability": 1, + "redirection": 2, + "and": 5, + "more": 1, + "Controllers": 2, + "should": 1, + "provide": 1, + "number": 1, + "action": 7, + "methods": 5, + "These": 1, + "are": 5, + "that": 2, + "not": 2, + "prefixed": 1, + "_": 1, + "Each": 1, + "serves": 1, + "an": 1, + "endpoint": 1, + "performing": 2, + "specific": 1, + "resource": 1, + "resources": 1, + "For": 2, + "example": 2, + "adding": 1, + "editing": 1, + "listing": 1, + "You": 2, + "can": 2, + "access": 1, + "using": 2, + "contains": 1, + "POST": 1, + "GET": 1, + "FILES": 1, + "were": 1, + "request.": 1, + "After": 1, + "actions": 2, + "controllers": 2, + "responsible": 1, + "creating": 1, + "response.": 2, + "This": 1, + "usually": 1, + "takes": 1, + "generated": 1, + "possibly": 1, + "another": 1, + "action.": 1, + "In": 1, + "either": 1, + "allows": 1, + "you": 1, + "manipulate": 1, + "aspects": 1, + "Dispatcher": 1, + "routing.": 1, + "By": 1, + "conventional": 1, + "names.": 1, + "/posts/index": 1, + "maps": 1, + "PostsController": 1, + "re": 1, + "map": 1, + "urls": 1, + "Router": 5, + "connect": 1, + "Cake.Controller": 1, + "@property": 8, + "AclComponent": 1, + "Acl": 1, + "AuthComponent": 1, + "Auth": 1, + "CookieComponent": 1, + "Cookie": 1, + "EmailComponent": 1, + "Email": 1, + "PaginatorComponent": 1, + "Paginator": 1, + "RequestHandlerComponent": 1, + "RequestHandler": 1, + "SecurityComponent": 1, + "Security": 1, + "SessionComponent": 1, + "Session": 1, + "//book.cakephp.org/2.0/en/controllers.html": 1, + "helpers": 1, + "_responseClass": 1, + "viewPath": 3, + "layoutPath": 1, + "viewVars": 3, + "view": 5, + "layout": 5, + "autoRender": 6, + "autoLayout": 2, + "Components": 7, + "components": 1, + "viewClass": 10, + "ext": 1, + "cacheAction": 1, + "passedArgs": 2, + "scaffold": 2, + "modelClass": 25, + "modelKey": 2, + "_mergeParent": 4, + "childMethods": 2, + "get_class_methods": 2, + "parentMethods": 2, + "CakeRequest": 5, + "setRequest": 2, + "loadModel": 3, + "load": 3, + "settings": 2, + "__set": 1, + "invokeAction": 1, + "ReflectionMethod": 2, + "_isPrivateAction": 2, + "PrivateActionException": 1, + "invokeArgs": 1, + "ReflectionException": 1, + "_getScaffold": 2, + "MissingActionException": 1, + "privateAction": 4, + "isPublic": 1, + "prefixes": 4, + "prefix": 2, + "Scaffold": 1, + "_mergeControllerVars": 2, + "pluginController": 9, + "pluginDot": 4, + "mergeParent": 2, + "pluginVars": 3, + "appVars": 6, + "get_class_vars": 2, + "_mergeUses": 3, + "constructClasses": 1, + "startupProcess": 1, + "shutdownProcess": 1, + "httpCodes": 3, + "MissingModelException": 1, + "status": 15, + "EXTR_OVERWRITE": 3, + "//TODO": 1, + "Remove": 1, + "following": 1, + "when": 1, + "events": 1, + "fully": 1, + "migrated": 1, + "collectReturn": 1, + "_parseBeforeRedirect": 2, + "session_write_close": 1, + "header": 3, + "codes": 3, + "array_flip": 1, + "send": 1, + "_stop": 1, + "resp": 6, + "setAction": 1, + "args": 5, + "validateErrors": 1, + "render": 3, + "currentModel": 2, + "currentObject": 6, + "getObject": 1, + "is_a": 1, + "location": 1, + "body": 1, + "referer": 5, + "local": 2, + "disableCache": 2, + "flash": 1, + "pause": 2, + "postConditions": 1, + "op": 9, + "exclusive": 2, + "cond": 5, + "arrayOp": 2, + "fieldOp": 11, + "paginate": 3, + "scope": 2, + "beforeFilter": 1, + "beforeRender": 1, + "beforeRedirect": 1, + "afterFilter": 1, + "beforeScaffold": 2, + "_beforeScaffold": 1, + "afterScaffoldSave": 2, + "_afterScaffoldSave": 1, + "afterScaffoldSaveError": 2, + "_afterScaffoldSaveError": 1, + "scaffoldError": 2, + "_scaffoldError": 1 }, "Pan": { "object": 1, @@ -53833,6 +57965,148 @@ "normally": 1, "again.": 1 }, + "Papyrus": { + "Scriptname": 3, + "vMFX_FXPlugin": 1, + "extends": 3, + "Quest": 2, + "vSCM_MetaQuestScript": 1, + "{": 2, + "Do": 1, + "initialization": 1, + "and": 1, + "track": 1, + "variables": 1, + "for": 1, + "scripts": 1, + "}": 2, + ";": 13, + "-": 42, + "Imports": 2, + "Import": 4, + "Utility": 2, + "Game": 2, + "Properties": 2, + "Actor": 9, + "Property": 7, + "PlayerRef": 3, + "Auto": 7, + "Float": 11, + "ModVersion": 10, + "Hidden": 2, + "String": 4, + "ModName": 3, + "Message": 2, + "vSCM_ModLoadedMSG": 1, + "vSCM_ModUpdatedMSG": 1, + "Variables": 2, + "_CurrentVersion": 10, + "_sCurrentVersion": 3, + "Bool": 2, + "_Running": 4, + "_ScriptLatency": 1, + "_StartTime": 1, + "_EndTime": 1, + "Events": 2, + "Event": 7, + "OnInit": 2, + "(": 74, + ")": 74, + "If": 7, + "DoUpkeep": 2, + "True": 7, + "EndIf": 7, + "EndEvent": 7, + "OnReset": 1, + "Debug.Trace": 18, + "OnGameReloaded": 1, + "Functions": 2, + "Function": 6, + "DelayedStart": 2, + "FIXME": 1, + "CHANGE": 1, + "THIS": 1, + "WHEN": 1, + "UPDATING": 1, + "GetVersionString": 3, + "sErrorMessage": 1, + "Wait": 4, + "RandomFloat": 1, + "+": 18, + "DoInit": 2, + "Else": 3, + "ElseIf": 1, + "<": 3, + "DoUpgrade": 2, + "Debug.MessageBox": 1, + "vSCM_ModUpdatedMSG.Show": 1, + "CheckForOrphans": 1, + "CheckForExtras": 2, + "UpdateConfig": 2, + "EndFunction": 6, + "vSCM_ModLoadedMSG.Show": 1, + "False": 8, + "fVersion": 3, + "Int": 4, + "Major": 4, + "Math.Floor": 1, + "as": 3, + "Minor": 4, + "*": 1, + "Return": 2, + "CAMTEST_OverShoulderME": 1, + "activemagiceffect": 1, + "Play": 1, + "with": 1, + "camera": 1, + "effects": 1, + "ActorBase": 1, + "CAMTEST_CameraActor": 2, + "Player": 6, + "Camera": 3, + "Target": 1, + "PosX": 1, + "PosY": 1, + "PosZ": 1, + "SpeedMult": 1, + "ObjectReference": 2, + "Mist": 1, + "Fog": 1, + "onEffectStart": 1, + "akTarget": 2, + "akCaster": 2, + "Player.PlaceActorAtMe": 1, + "Camera.EnableAI": 1, + "Camera.SetScale": 1, + "Camera.TranslateTo": 1, + "Player.X": 3, + "Player.Y": 3, + "Player.Z": 3, + "DisablePlayerControls": 1, + "abMovement": 1, + "true": 7, + "abFighting": 1, + "abCamSwitch": 1, + "abLooking": 1, + "abSneaking": 1, + "abMenu": 1, + "abActivate": 1, + "abJournalTabs": 1, + "false": 1, + "SetPlayerAIDriven": 2, + "ForceThirdPerson": 1, + "SetHUDCartMode": 2, + "SetInChargen": 2, + "SetCameraTarget": 2, + "ForceFirstPerson": 1, + "Camera.SplineTranslateTo": 2, + "Camera.GetHeadingAngle": 2, + "Camera.GetAngleZ": 2, + "Camera.SetLookAt": 1, + "EnablePlayerControls": 1, + "onUpdate": 1, + "onEffectFinish": 1 + }, "Parrot Assembly": { "SHEBANG#!parrot": 1, ".pcc_sub": 1, @@ -53848,14 +58122,32 @@ ".end": 1 }, "Pascal": { + "program": 1, + "gmail": 1, + ";": 122, + "uses": 3, + "Forms": 2, + "Unit2": 1, + "in": 2, "{": 25, - "Id": 1, + "Form2": 2, "}": 25, + "R": 1, + "*.res": 1, + "begin": 15, + "Application.Initialize": 1, + "Application.MainFormOnTaskbar": 1, + "True": 2, + "Application.CreateForm": 1, + "(": 39, + "TForm2": 1, + ")": 39, + "Application.Run": 1, + "end.": 3, + "Id": 1, "-": 230, "gtkextra.pp": 1, "GTK": 1, - "(": 39, - ")": 39, "widgetset": 1, "additional": 1, "gdk/gtk": 2, @@ -53896,14 +58188,12 @@ "See": 1, "COPYING.modifiedLGPL.txt": 1, "included": 1, - "in": 2, "this": 1, "distribution": 1, "details": 1, "about": 1, "license.": 1, "GtkExtra": 1, - ";": 122, "mode": 2, "objfpc": 2, "H": 2, @@ -53920,22 +58210,6 @@ "implementation": 2, "gtk1extra.inc": 1, "gtk2extra.inc": 1, - "end.": 3, - "program": 1, - "gmail": 1, - "uses": 3, - "Forms": 2, - "Unit2": 1, - "Form2": 2, - "R": 1, - "*.res": 1, - "begin": 15, - "Application.Initialize": 1, - "Application.MainFormOnTaskbar": 1, - "True": 2, - "Application.CreateForm": 1, - "TForm2": 1, - "Application.Run": 1, "custforms": 1, "Classes": 1, "SysUtils": 1, @@ -54063,1130 +58337,940 @@ "Finalization": 1 }, "Perl": { - "SHEBANG#!perl": 6, - "#": 106, + "package": 14, + "Plack": 25, + "Response": 16, + ";": 1376, "use": 88, "strict": 22, - ";": 1376, - "##": 79, - "Basic": 11, - "configuration": 3, - "options": 8, - "my": 458, - "BASE_DIR": 1, - "CONFIG_FILE": 2, - "Config": 1, - "-": 1075, - "file": 57, - "location": 5, - "DEBUG_LOG_FILE": 2, - "Specify": 2, - "where": 4, - "to": 101, - "create": 4, - "log": 4, - "and": 92, - "what": 15, - "filename": 72, - "(": 1137, - "must": 7, - "be": 39, - "writable": 2, - "by": 19, - "nagios": 3, - "user": 5, - ")": 1136, - "DEBUGLEVEL": 3, - "Nothing": 1, - "Errors": 1, - "Warnings": 1, - "Debug": 1, - "DEBUGOUTPUT": 8, - "STDERR": 5, - "STDOUT": 1, - "for": 88, - "cgi": 4, - "require": 13, - "Global": 1, - "vars": 1, - "DEBUG_TIMESTAMP": 5, - "Find": 1, - "out": 3, - "how": 2, - "program": 7, - "is": 74, - "run": 3, - "if": 322, - "ARGV": 5, - "[": 200, - "]": 196, - "eq": 62, - "{": 1394, - "t": 21, - "test": 1, - "print": 46, - "output": 40, - "errors": 4, - "console": 1, - "not": 56, - "c": 6, - "&": 27, - "read_config": 4, - "abort": 23, - "}": 1407, - "elsif": 26, - "p": 10, - "parse": 3, - "performance": 2, - "data": 5, - "when": 19, - "started": 1, - "parse_perfdata": 2, - "else": 71, - "exists": 31, - "ENV": 41, - "we": 9, - "are": 26, - "as": 40, - "a": 88, - "CGI": 10, - "script": 1, - "web": 9, - "browser": 1, - "run_as_cgi": 2, - "some": 2, - "help": 3, - "info": 1, - "sub": 232, - "logfile": 1, - "write": 5, - "blank": 2, - "wrote": 1, - "anything...": 1, - "debug": 39, - "exit": 19, - "Program": 1, - "called": 5, - "new": 56, - "graph_name": 18, - "param": 10, - "graph_iteration": 6, - "config": 67, - "display": 2, - "index": 2, - "of": 67, - "graphs": 3, - "display_htmltemplate": 3, - ".": 166, - "graph": 4, - "Display": 3, - "HTML": 6, - "page": 1, - "with": 28, - "all": 28, - "the": 153, - "r": 18, - "generate": 1, - "call": 4, - "rrdtool_cmdline": 11, - ".join": 5, - "@": 54, - "expand": 1, - "variables": 1, - "rrdarchive": 1, - "s/": 28, - "f/": 1, - "rrdarchive/g": 1, - "t_start": 4, - "t_start/g": 1, - "t_end": 4, - "e/": 1, - "t_end/g": 1, - "t_descr": 3, - "d/": 1, - "t_descr/g": 1, - "Call": 1, - "rrdtool": 3, - "should": 8, - "probably": 1, - "fixed": 1, - "it": 30, - "in": 40, - "better": 1, - "way": 3, - "like": 14, - "exec": 1, - "template": 3, - "do": 16, - "variable": 3, - "substitution": 1, - "other": 6, - "stuff": 1, - "@_": 45, - "open": 10, - "while": 33, - "": 1, - "All": 5, - "big": 2, - "regex..": 1, - "w": 7, - "+": 126, - "/my": 1, - "varname": 8, - "_": 104, - "return": 168, - "name": 60, - "ne": 11, - "current": 6, - "date": 3, - "time": 6, - "localtime": 2, - "||": 52, - "code": 10, - "different": 3, - "return_html": 4, - "foreach": 13, - "gn": 2, - "sort": 9, - "keys": 19, - "%": 82, - "return_html.": 2, - "escape": 1, - "slash": 1, - "since": 2, - "were": 2, - "inside": 1, - "an": 17, - "regex": 42, - "displaying": 1, - "actual": 1, - "images": 1, - "iteration_id": 2, - "unknown": 1, - "/eig": 1, - "i": 27, - "thought": 1, - "that": 35, - "would": 6, - "never": 2, - "end": 10, - "close": 22, - "Process": 1, - "incoming": 1, - "from": 20, - "check": 3, - "plugin": 1, - "insert": 1, - "values": 7, - "into": 8, - "rrd": 3, - "archives": 2, - "rrd_updates": 13, - "Provide": 1, - "more": 3, - "symbolic": 1, - "names": 3, - "same": 4, - "macros": 1, - "LASTCHECK": 1, - "HOSTNAME": 2, - "SERVICEDESCR": 2, - "SERVICESTATE": 1, - "OUTPUT": 2, - "PERFDATA": 2, - "split": 15, - "/": 82, - "|": 31, - "host_and_descr_found": 3, - "Loop": 4, - "through": 10, - "host_regexes": 1, - "host_regex": 5, - "service_description_regexes": 1, - "service_regex": 4, - "m/": 12, - "host_regex/i": 1, - "&&": 84, - "service_regex/i": 1, - "match": 24, - "InsertValue": 1, - "lines": 20, - "host": 1, - "service_description": 1, - "insert_value": 10, - "regexes": 4, - "output/perfdata": 1, - "regex_string": 1, - "on": 27, - "regex_string/": 2, - "push": 37, - "Insert": 1, - "value": 14, - "RRD": 3, - "calling": 1, - "may": 4, - "several": 1, - "archive": 9, - "rrdarchive_filename": 3, - "Create": 1, - "Archive": 1, - "according": 1, - "does": 11, - "exist": 5, - "e": 21, - "rrdarchive_filename.": 3, - "join": 7, - "rrdtool_cmdline.": 1, - "Check": 1, - "wheter": 1, - "Assemle": 1, - "command": 16, - "line": 21, - "result": 3, - "Read": 1, - "CONFIG": 2, - "line_counter": 2, - "": 1, - "chomp": 4, - "@args": 11, - "shellwords": 1, - "orig_confline": 1, - "args": 37, - "uc": 1, - "INSERTVALUE": 1, - "shift": 170, - "rrd_filename": 2, - "rrdcreatetemplate": 4, - "hostname_regex": 4, - "servicedescr_regex": 4, - "regex_template": 3, - ".*": 5, - "verify": 3, - "hostname": 2, - "service": 1, - "description": 2, - "s*": 1, - "#/": 1, - "comment": 1, - "or": 51, - "row": 1, - "nuthin": 1, - "RRDToolPath": 1, - "path": 29, - "PlotTemplate": 1, - "htmltemplate": 2, - "parameters..": 2, - "@params": 7, - "GraphTimeTemplate": 1, - "time_template": 2, - "@t_descr": 2, - "workaround": 1, - "used": 13, - "string": 6, - "RRDCreateTemplate": 1, - "ValueRegexTemplate": 1, - "template_name": 3, - "@regexes": 2, - "perfdata": 1, - "regex_what": 2, - "dsa_name": 2, - "RRDARCHIVEPATH": 1, - "HTMLTemplatePath": 1, - "GraphIndexTemplate": 1, - "GRAPH": 1, - "rrdfilename": 1, - "graphtimetemplate": 1, - "plottemplate": 1, - "x": 12, - "Write": 1, - "output/logging": 1, - "level": 3, - "msg": 5, - "timestamp": 1, - "scalar": 3, - "msg.": 2, "warnings": 19, - "Fast": 3, - "XML": 2, - "Hash": 11, - "XS": 2, - "File": 54, - "Spec": 13, - "FindBin": 1, - "qw": 35, - "Bin": 3, - "#use": 1, - "lib": 2, - "catdir": 3, - "..": 7, - "_stop": 4, - "request": 11, - "SIG": 3, - "unless": 39, - "defined": 54, - "nginx": 2, - "external": 2, - "fcgi": 2, - "Ext_Request": 1, - "FCGI": 1, - "Request": 11, - "*STDIN": 2, - "*STDOUT": 6, - "*STDERR": 1, - "int": 2, - "conv": 2, - "use_attr": 1, - "indent": 1, - "xml_decl": 1, - "tmpl_path": 2, - "tmpl": 5, - "nick": 1, - "tree": 2, - "example": 5, - "parent": 5, - "id": 6, - "third_party": 1, - "results": 8, - "artist_name": 2, - "venue": 2, - "event": 2, + "our": 34, + "VERSION": 15, "eval": 8, - "m": 17, - "zA": 1, - "Z0": 1, - "die": 38, - "catfile": 4, - "qq": 18, - "Content": 2, - "type": 69, - "application/xml": 1, - "charset": 2, - "utf": 2, - "n": 19, - "hash2xml": 1, - "text/html": 1, - "nError": 1, - "undef": 17, - "last": 17, - "M": 1, - "<": 15, - "system": 1, - "SHEBANG#!#! perl": 4, - "o": 17, - "Foo": 11, - "y": 8, - "package": 14, + "Util": 3, + "Accessor": 1, + "qw": 35, + "(": 1137, + "body": 30, + "status": 17, + ")": 1136, + "Carp": 11, + "Scalar": 2, + "HTTP": 16, + "Headers": 8, + "URI": 11, + "Escape": 6, + "sub": 232, + "code": 10, + "{": 1394, + "shift": 170, + "-": 1075, + "@_": 45, + "}": 1407, + "content": 8, + "new": 56, + "my": 458, + "class": 8, + "rc": 11, + "headers": 56, "self": 141, - "ref": 33, "bless": 7, - "App": 131, - "Ack": 136, - "Next": 27, - "Plugin": 2, + "if": 322, + "defined": 54, + "ref": 33, + "eq": 62, + "carp": 2, + "@": 54, + "%": 82, + "elsif": 26, + "return": 168, + "else": 71, + "||": 52, + "cookies": 9, + "+": 126, + "header": 17, + "#": 106, + "shortcut": 2, + "content_length": 4, + "content_type": 5, + "content_encoding": 5, + "location": 5, + "redirect": 1, + "url": 2, + "finalize": 5, + "croak": 3, + "unless": 39, + "clone": 1, + "_finalize_cookies": 2, + "[": 200, + "map": 10, + "k": 6, + "_": 104, + "v": 19, + "s/": 28, + "|": 31, + "]": 196, + "/chr": 1, + "/ge": 1, + "replace": 3, + "LWS": 1, + "with": 28, + "a": 88, + "single": 1, + "SP": 1, + "//g": 1, + "remove": 2, + "CR": 1, + "and": 92, + "LF": 1, + "since": 2, + "the": 153, + "char": 1, + "is": 74, + "invalid": 1, + "here": 2, + "header_field_names": 1, + "_body": 2, + "or": 51, + "blessed": 1, + "&&": 84, + "overload": 1, + "Method": 1, + "q": 5, + "can": 30, + "while": 33, + "name": 60, + "val": 26, + "each": 14, + "cookie": 6, + "_bake_cookie": 2, + "push_header": 1, + "value": 14, + "@cookie": 7, + "uri_escape": 3, + ".": 166, + "push": 37, + "domain": 3, + "path": 29, + "_date": 2, + "expires": 7, + "secure": 2, + "httponly": 1, + "join": 7, + "@MON": 1, + "Jan": 1, + "Feb": 1, + "Mar": 1, + "Apr": 1, + "May": 2, + "Jun": 1, + "Jul": 1, + "Aug": 1, + "Sep": 1, + "Oct": 1, + "Nov": 1, + "Dec": 1, + "@WDAY": 1, + "Sun": 1, + "Mon": 1, + "Tue": 1, + "Wed": 1, + "Thu": 1, + "Fri": 1, + "Sat": 1, + "/": 82, + "d": 9, + "sec": 2, + "min": 3, + "hour": 2, + "mday": 2, + "mon": 2, + "year": 3, + "wday": 2, + "gmtime": 1, + "sprintf": 1, + "WDAY": 1, + "MON": 1, + "__END__": 2, "head1": 36, "NAME": 6, - "A": 2, - "container": 1, - "functions": 2, - "ack": 38, - "VERSION": 15, - "Version": 1, - "cut": 28, - "our": 34, - "COPYRIGHT": 7, - "BEGIN": 7, - "fh": 28, - "types": 26, - "type_wanted": 20, - "mappings": 29, - "ignore_dirs": 12, - "input_from_pipe": 8, - "output_to_pipe": 12, - "dir_sep_chars": 10, - "is_cygwin": 6, - "is_windows": 12, - "Glob": 4, - "Getopt": 6, - "Long": 6, - "_MTN": 2, - "blib": 2, - "CVS": 5, - "RCS": 2, - "SCCS": 2, - "_darcs": 2, - "_sgbak": 2, - "_build": 2, - "actionscript": 2, - "mxml": 2, - "ada": 4, - "adb": 2, - "ads": 2, - "asm": 4, - "s": 35, - "batch": 2, - "bat": 2, - "cmd": 2, - "binary": 3, - "q": 5, - "Binary": 2, - "files": 42, - "Perl": 9, - "T": 2, - "op": 2, - "default": 19, - "off": 4, - "tt": 4, - "tt2": 2, - "ttml": 2, - "vb": 4, - "bas": 2, - "cls": 2, - "frm": 2, - "ctl": 2, - "resx": 2, - "verilog": 2, - "v": 19, - "vh": 2, - "sv": 2, - "vhdl": 4, - "vhd": 2, - "vim": 4, - "yaml": 4, - "yml": 2, - "xml": 6, - "dtd": 2, - "xsl": 2, - "xslt": 2, - "ent": 2, - "exts": 6, - "each": 14, - "ext": 14, - "mk": 2, - "mak": 2, - "STDIN": 2, - "O": 4, - "/MSWin32/": 2, - "quotemeta": 5, + "Portable": 2, + "object": 6, + "for": 88, + "PSGI": 10, + "response": 5, "SYNOPSIS": 6, - "If": 15, - "you": 44, - "want": 7, - "know": 4, - "about": 4, - "F": 24, - "": 13, - "see": 5, - "itself.": 3, - "No": 4, - "serviceable": 1, - "parts": 1, - "inside.": 1, - "this.": 1, - "FUNCTIONS": 1, - "head2": 34, - "read_ackrc": 4, - "Reads": 1, - "contents": 2, - ".ackrc": 1, - "returns": 4, - "arguments.": 1, - "@files": 12, - "ACKRC": 2, - "@dirs": 4, - "HOME": 4, - "USERPROFILE": 2, - "dir": 27, - "grep": 17, - "bsd_glob": 4, - "GLOB_TILDE": 2, - "@lines": 21, - "/./": 2, - "s*#/": 2, - "<$fh>": 4, - "//": 9, - "get_command_line_options": 4, - "Gets": 3, - "arguments": 2, - "specific": 2, - "tweaking.": 1, - "opt": 291, - "pager": 19, - "ACK_PAGER_COLOR": 7, - "ACK_PAGER": 5, - "getopt_specs": 6, - "after_context": 16, - "before_context": 18, - "val": 26, - "break": 14, - "count": 23, - "color": 38, - "ACK_COLOR_MATCH": 5, - "ACK_COLOR_FILENAME": 5, - "ACK_COLOR_LINENO": 4, - "column": 4, - "ignore": 7, - "this": 22, - "option": 7, - "handled": 2, - "beforehand": 2, - "f": 25, - "flush": 8, - "follow": 7, - "G": 11, - "heading": 18, - "h": 6, - "H": 6, - "invert_file_match": 8, - "l": 17, - "passthru": 9, - "print0": 7, - "Q": 7, - "show_types": 4, - "smart_case": 3, - "sort_files": 11, - "u": 10, - "remove_dir_sep": 7, - "delete": 10, - "print_version_statement": 2, - "show_help": 3, - "show_help_types": 2, - "Pod": 4, - "Usage": 4, - "pod2usage": 2, - "verbose": 2, - "exitval": 2, - "dummy": 2, - "wanted": 4, - "no//": 2, - "later": 2, - "Unknown": 2, - "unshift": 4, - "@ARGV": 12, - "ACK_OPTIONS": 5, - "def_types_from_ARGV": 5, - "filetypes_supported": 5, - "parser": 12, - "Parser": 4, - "configure": 4, - "getoptions": 4, - "to_screen": 10, - "defaults": 16, - "Win32": 9, - "Console": 2, - "ANSI": 3, - "key": 20, - "map": 10, - "@ret": 10, - "warn": 22, - "uniq": 4, - "@uniq": 2, - "<=>": 2, - "b": 6, - "numerical": 2, - "occurs": 2, - "only": 11, - "once": 4, - "Go": 1, - "look": 2, - "I": 68, - "<--type-set>": 1, - "foo=": 1, - "bar": 3, - "<--type-add>": 1, - "xml=": 1, - "Remove": 1, - "them": 5, - "add": 9, - "supported": 1, - "filetypes": 8, - "i.e.": 2, - "etc.": 3, - "@typedef": 8, - "td": 6, - "set": 12, - "Builtin": 4, - "cannot": 4, - "changed.": 4, - "delete_type": 5, - "Type": 2, - "creating": 3, - "...": 2, - "@exts": 8, - ".//": 2, - "Cannot": 4, - "append": 2, - "Removes": 1, - "internal": 1, - "structures": 1, - "containing": 5, - "information": 2, - "type_wanted.": 1, - "Internal": 2, - "error": 4, - "builtin": 2, - "ignoredir_filter": 5, - "Standard": 1, - "filter": 12, - "pass": 1, - "L": 34, - "": 1, - "descend_filter.": 1, - "It": 3, - "true": 3, - "directory": 8, - "any": 4, - "ones": 1, - "ignore.": 1, - "This": 27, - "removes": 1, - "trailing": 1, - "separator": 4, - "there": 6, - "one": 9, - "its": 2, - "argument": 1, - "Returns": 10, - "list": 10, - "<$filename>": 1, - "could": 2, - "be.": 1, - "For": 5, - "": 1, - "The": 22, - "filetype": 1, - "will": 9, - "C": 56, - "": 1, - "can": 30, - "skipped": 2, - "something": 3, - "avoid": 1, - "searching": 6, - "even": 4, - "under": 5, - "a.": 1, - "constant": 2, - "TEXT": 16, - "basename": 9, - "is_searchable": 8, - "lc_basename": 8, - "lc": 5, - "B": 76, - "header": 17, - "SHEBANG#!#!": 2, - "ruby": 3, - "lua": 2, - "erl": 2, - "hp": 2, - "ython": 2, - "d": 9, - "d.": 2, - "*": 8, - "b/": 4, - "ba": 2, - "k": 6, - "z": 2, - "sh": 2, - "/i": 2, - "search": 11, - "false": 1, - "regular": 3, - "expression": 9, - "found.": 4, - "www": 2, - "U": 2, - "tr/": 2, - "w/": 3, - "nOo_/": 2, - "_thpppt": 3, - "_get_thpppt": 3, - "_bar": 3, - "<<": 10, - "*I": 2, - "g": 7, - "#.": 6, - ".#": 4, - "I#": 2, - "#I": 6, - "#7": 4, - "results.": 2, - "interactively": 6, - "no": 22, - "Print": 6, - "between": 4, - "files.": 6, - "group": 2, - "Same": 8, - "nogroup": 2, - "noheading": 2, - "nobreak": 2, - "Highlight": 2, - "matching": 15, - "text": 6, - "redirected": 2, - "Windows": 4, - "colour": 2, - "COLOR": 6, - "lineno": 2, - "Set": 3, - "filenames": 7, - "matches": 7, - "numbers.": 2, - "Flush": 2, - "immediately": 2, - "non": 2, - "goes": 2, - "pipe": 4, - "finding": 2, - "Only": 7, - "found": 11, - "without": 3, - "searching.": 2, - "PATTERN": 8, - "specified.": 4, - "REGEX": 2, - "but": 4, - "REGEX.": 2, - "Sort": 2, - "lexically.": 3, - "invert": 2, - "Print/search": 2, - "handle": 3, - "g/": 2, - "G.": 2, - "show": 3, - "Show": 2, - "which": 7, - "has.": 2, - "inclusion/exclusion": 2, - "searched": 5, - "Ignores": 2, - ".svn": 3, - "ignored": 6, - "directories": 9, - "unrestricted": 2, - "Add/Remove": 2, - "dirs": 2, - "R": 2, - "recurse": 2, - "Recurse": 3, - "subdirectories": 2, - "END_OF_HELP": 2, - "VMS": 2, - "vd": 2, - "Term": 6, - "ANSIColor": 8, - "black": 3, - "on_yellow": 3, - "bold": 5, - "green": 3, - "yellow": 3, - "printing": 2, - "qr/": 13, - "last_output_line": 6, - "any_output": 10, - "keep_context": 8, - "@before": 16, - "before_starts_at_line": 10, - "after": 18, - "number": 4, - "still": 4, + "psgi_handler": 1, + "env": 76, "res": 59, - "next_text": 8, - "has_lines": 4, - "regex/": 9, - "next": 9, - "print_match_or_context": 13, - "max": 12, - "nmatches": 61, - "show_filename": 35, - "context_overall_output_count": 6, - "print_blank_line": 2, - "is_binary": 4, - "search_resource": 7, - "is_match": 7, - "starting_line_no": 1, - "match_start": 5, - "match_end": 3, - "Prints": 4, - "context": 1, - "around": 5, - "match.": 3, - "opts": 2, + "DESCRIPTION": 4, + "allows": 4, + "you": 44, + "way": 3, + "to": 101, + "create": 4, "array": 7, - "line_no": 12, - "show_column": 4, - "display_filename": 8, - "colored": 6, - "print_first_filename": 2, - "sep": 8, - "output_func": 8, - "print_separator": 2, - "print_filename": 2, - "display_line_no": 4, - "print_line_no": 2, - "regex/go": 2, - "regex/Term": 2, - "substr": 2, - "/eg": 2, - "z/": 2, - "K/": 2, - "z//": 2, - "print_column_no": 2, - "scope": 4, - "TOTAL_COUNT_SCOPE": 2, - "total_count": 10, - "get_total_count": 4, - "reset_total_count": 4, - "search_and_list": 8, - "Optimized": 1, - "version": 2, - "lines.": 3, - "ors": 11, - "record": 3, - "show_total": 6, - "print_count": 4, - "print_count0": 2, - "filetypes_supported_set": 9, - "True/False": 1, - "print_files": 4, - "iter": 23, - "returned": 3, - "iterator": 3, - "<$regex>": 1, - "<$one>": 1, - "stop": 1, - "first.": 1, - "<$ors>": 1, - "<\"\\n\">": 1, - "defines": 2, - "filename.": 1, - "print_files_with_matches": 4, - "was": 2, - "repo": 18, - "Repository": 11, - "next_resource": 6, - "print_matches": 4, - "tarballs_work": 4, - ".tar": 2, - ".gz": 2, - "Tar": 4, - "XXX": 4, - "Error": 2, - "checking": 2, - "needs_line_scan": 14, - "reset": 5, - "filetype_setup": 4, - "Minor": 1, - "housekeeping": 1, - "before": 1, - "go": 1, - "expand_filenames": 7, - "reference": 8, - "expanded": 3, - "globs": 1, - "EXPAND_FILENAMES_SCOPE": 4, - "argv": 12, - "attr": 6, - "pattern": 10, - "@results": 14, - "didn": 2, - "ve": 2, - "tried": 2, - "load": 2, - "GetAttributes": 2, - "attributes": 4, - "got": 2, - "get_starting_points": 4, - "starting": 2, - "@what": 14, - "reslash": 4, - "Assume": 2, - "start_point": 4, - "_match": 8, - "target": 6, - "invert_flag": 4, - "get_iterator": 4, - "Return": 2, - "starting_point": 10, - "g_regex": 4, - "file_filter": 12, - "g_regex/": 6, - "Maybe": 2, - "is_interesting": 4, - "descend_filter": 11, - "error_handler": 5, - "follow_symlinks": 6, - "set_up_pager": 3, - "Unable": 2, - "going": 1, - "pipe.": 1, - "exit_from_ack": 5, - "Exit": 1, - "application": 15, - "correct": 1, + "through": 10, + "simple": 2, + "API.": 1, + "METHODS": 2, + "over": 2, + "item": 44, + "Creates": 2, + "object.": 4, + "Sets": 2, + "gets": 2, "code.": 2, + "C": 56, + "": 1, + "an": 17, + "alias.": 2, + "of": 67, + "response.": 1, + "Setter": 2, + "take": 5, + "either": 2, + "hash": 11, + "L": 34, + "": 2, + "containing": 5, + "list": 10, + "headers.": 1, + "body_str": 1, + "io": 1, + "Gets": 3, + "sets": 4, + "body.": 1, + "string": 6, + "IO": 1, + "Handle": 1, + "like": 14, + "": 1, + "Note": 5, + "that": 35, + "this": 22, + "method": 8, + "doesn": 8, + "X": 2, + "Foo": 11, + "bar": 3, + "text/plain": 1, + "gzip": 1, + "t": 21, + "normalize": 1, + "given": 10, + "string.": 1, + "Users": 1, + "module": 2, + "have": 2, + "be": 39, + "responsible": 1, + "about": 4, + "properly": 1, + "encoding": 2, + "paths": 3, + "parameters.": 3, + "": 1, + "header.": 2, + "names": 3, + "their": 1, + "corresponding": 1, + "values": 7, + "are": 26, + "plain": 2, + "": 2, + "everything": 1, + "defaults": 16, + "reference": 8, + "contain": 3, + "keys": 19, + "such": 6, + "as": 40, + "": 1, + "": 2, + "": 1, + "": 1, + "": 1, + "integer": 1, + "epoch": 1, + "time": 6, + "B": 76, + "": 1, + "not": 56, + "convert": 1, + "formats": 1, + "<+3M>": 1, + "foo": 6, + "*": 8, + "Returns": 10, + "reference.": 1, + "back": 4, + "AUTHOR": 1, + "Tokuhiro": 2, + "Matsuno": 2, + "Tatsuhiko": 2, + "Miyagawa": 2, + "SEE": 4, + "ALSO": 4, + "": 2, + "cut": 28, + "SHEBANG#!perl": 6, + "print": 46, + "Request": 11, + "_001": 1, + "Hash": 11, + "MultiValue": 9, + "Body": 2, + "Upload": 2, + "TempBuffer": 2, + "_deprecated": 8, + "alt": 1, + "caller": 2, + "required": 2, + "address": 2, + "REMOTE_ADDR": 1, + "remote_host": 2, + "REMOTE_HOST": 1, + "protocol": 1, + "SERVER_PROTOCOL": 1, + "REQUEST_METHOD": 1, + "port": 1, + "SERVER_PORT": 2, + "user": 5, + "REMOTE_USER": 1, + "request_uri": 1, + "REQUEST_URI": 2, + "path_info": 4, + "PATH_INFO": 3, + "script_name": 1, + "SCRIPT_NAME": 2, + "scheme": 3, + "input": 9, + "CONTENT_LENGTH": 3, + "CONTENT_TYPE": 2, + "session": 1, + "session_options": 1, + "logger": 1, + "HTTP_COOKIE": 3, + "results": 8, + "@pairs": 2, + "grep": 17, + "split": 15, + "pair": 4, + "s": 35, + "//": 9, + "key": 20, + "uri_unescape": 1, + "exists": 31, + "query_parameters": 3, + "uri": 11, + "query_form": 2, + "_parse_request_body": 4, + "fh": 28, + "cl": 10, + "read": 6, + "seek": 4, + "raw_body": 1, + "field": 2, + "HTTPS": 1, + "_//": 1, + "CONTENT": 1, + "COOKIE": 1, + "/i": 2, + "referer": 3, + "user_agent": 3, + "body_parameters": 3, + "parameters": 8, + "do": 16, + "query": 4, + "flatten": 3, + "uploads": 5, + "hostname": 2, + "url_scheme": 1, + "params": 1, + "query_params": 1, + "body_params": 1, + "param": 10, + "wantarray": 3, + "get_all": 2, + "upload": 13, + "raw_uri": 1, + "base": 10, + "path_query": 1, + "_uri_base": 3, + "path_escape_class": 2, + "QUERY_STRING": 3, + "ne": 11, + "m": 17, + "canonical": 2, + "HTTP_HOST": 1, + "SERVER_NAME": 1, + "new_response": 4, + "require": 13, + "ct": 3, + "cleanup": 1, + "buffer": 9, + "spin": 2, + "chunk": 4, + "<": 15, + "length": 1, + "add": 9, + "rewind": 1, + "from_mixed": 2, + "@uploads": 3, + "@obj": 3, + "splice": 2, + "_make_upload": 2, + "copy": 4, + "request": 11, + "from": 20, + "app_or_middleware": 1, + "req": 28, + "provides": 1, + "consistent": 1, + "API": 2, + "objects": 2, + "across": 1, + "web": 9, + "server": 2, + "environments.": 1, + "CAVEAT": 1, + "intended": 1, + "used": 13, + "by": 19, + "middleware": 2, + "developers": 3, + "application": 15, + "framework": 2, + "rather": 2, + "than": 5, + "end": 10, + "users": 4, + "Writing": 2, + "your": 20, + "directly": 1, + "using": 5, + "certainly": 2, + "possible": 2, + "but": 4, + "recommended": 1, + "it": 30, + "Apache": 2, + "yet": 1, + "too": 1, + "low": 1, + "level.": 1, + "If": 15, + "re": 3, + "encouraged": 1, + "one": 9, + "frameworks": 2, + "support": 2, + "": 1, + "see": 5, + "modules": 1, + "": 1, + "provide": 1, + "higher": 1, + "level": 3, + "on": 27, + "top": 1, + "PSGI.": 1, + "Some": 1, + "methods": 4, + "in": 40, + "earlier": 1, + "versions": 1, + "deprecated": 1, + "version": 2, + "Take": 1, + "look": 2, + "at": 4, + "": 1, + "Unless": 1, "otherwise": 2, - "handed": 1, - "argument.": 1, - "rc": 11, + "noted": 1, + "all": 28, + "attributes": 4, + "": 1, + "passing": 1, + "accessor": 1, + "debug": 39, + "set.": 1, + "current": 6, + "request.": 1, + "uploads.": 2, + "The": 22, + "": 2, + "": 1, + "objects.": 1, + "Shortcut": 6, + "content_encoding.": 1, + "content_length.": 1, + "content_type.": 1, + "referer.": 1, + "user_agent.": 1, + "GET": 1, + "POST": 1, + "CGI.pm": 2, + "compatible": 1, + "method.": 1, + "This": 27, + "alternative": 1, + "accessing": 1, + "Unlike": 1, + "does": 11, + "I": 68, + "": 1, + "allow": 1, + "setting": 2, + "modifying": 1, + "@values": 1, + "@params": 7, + "A": 2, + "convenient": 1, + "access": 2, + "@fields": 1, + "filename": 72, + "": 3, + "Handy": 1, + "dependency": 1, + "easy": 1, + "subclassing": 1, + "duck": 1, + "typing": 1, + "well": 2, + "overriding": 1, + "generation": 1, + "middlewares.": 1, + "head2": 34, + "Parameters": 1, + "multiple": 5, + "i.e.": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "store": 1, + "means": 3, + "where": 4, + "": 1, + "scalars": 1, + "": 2, + "references": 1, + "so": 4, + "don": 2, + "ARRAY": 1, + "parse": 3, + "more": 3, + "twice": 1, + "efficiency.": 1, + "DISPATCHING": 1, + "wants": 1, + "dispatch": 1, + "route": 1, + "actions": 1, + "based": 2, + "sure": 1, + "<<": 10, + "because": 3, + "": 1, + "gives": 2, + "virtual": 1, + "regardless": 1, + "how": 2, + "mounted.": 1, + "hosted": 1, + "mod_perl": 3, + "CGI": 10, + "scripts": 1, + "even": 4, + "multiplexed": 1, + "tools": 1, + "": 1, + "good": 2, + "idea": 1, + "subclass": 1, + "define": 1, + "uri_for": 2, + "args": 37, + "So": 1, + "say": 1, + "link": 1, + "signoff": 1, + "": 1, + "empty.": 1, + "need": 5, + "older": 1, + "behavior": 3, + "just": 2, + "call": 4, + "instead.": 1, + "Cookie": 2, + "handling": 1, + "simplified": 1, + "always": 5, + "set": 12, + "decoding": 1, + "them": 5, + "totally": 1, + "up": 1, + "framework.": 1, + "Also": 1, + "": 1, + "now": 1, + "returns": 4, + "": 1, + "Simple": 1, + "which": 7, + "no": 22, + "longer": 1, + "write": 5, + "wacky": 1, + "undef": 17, + "instead": 4, + "simply": 1, + "AUTHORS": 2, + "Kazuhiro": 1, + "Osawa": 1, + "": 1, + "": 1, "LICENSE": 3, - "Copyright": 2, - "Andy": 2, - "Lester.": 2, + "library": 2, "free": 4, "software": 3, "redistribute": 4, "and/or": 4, "modify": 4, + "under": 5, + "same": 4, "terms": 4, - "Artistic": 2, - "License": 2, - "v2.0.": 2, - "End": 3, - "examples/benchmarks/fib.pl": 1, - "Fibonacci": 2, - "Benchmark": 1, - "DESCRIPTION": 4, - "Calculates": 1, - "Number": 1, - "": 1, - "unspecified": 1, - "fib": 4, - "N": 2, - "SEE": 4, - "ALSO": 4, - "": 1, + "Perl": 9, + "itself.": 3, + "pod": 1, + "Catalyst": 10, + "How": 1, + "work": 3, + "together": 2, + "": 3, + "specification": 3, + "defines": 2, + "interface": 1, + "between": 4, + "servers": 2, + "applications": 2, + "frameworks.": 1, + "It": 3, + "supports": 1, + "writing": 1, + "portable": 1, + "run": 3, + "various": 2, + "standalone": 1, + "FastCGI": 2, + "etc.": 3, + "": 3, + "implementation": 1, + "running": 1, + "applications.": 1, + "entire": 3, + "Engine": 1, + "XXXX": 1, + "classes": 2, + "handle": 3, + "environments": 1, + "e.g.": 2, + "has": 3, + "been": 1, + "changed": 1, + "done": 2, + "implementing": 1, + "manually": 2, + "creating": 3, + "": 1, + "file": 57, + "root": 1, + "application.": 1, + "Why": 3, + "would": 6, + "want": 7, + "own": 4, + ".psgi": 7, + "alternate": 1, + "": 1, + "command": 16, + "start": 7, + "extensions": 1, + "implement": 2, + "": 1, + "": 1, + "": 1, + "simplest": 1, + "<.psgi>": 1, + "called": 5, + "": 1, + "TestApp": 5, + "app": 2, + "psgi_app": 3, + "will": 9, + "apply": 3, + "number": 4, + "components": 2, + "automatically": 2, + "these": 4, + "": 1, + "applied": 1, + "psgi": 2, + "yourself.": 2, + "Details": 1, + "found": 11, + "below.": 1, + "Additional": 1, + "information": 2, + "files": 42, + "": 1, + "What": 1, + "generates": 2, + "default": 19, + "": 1, + "wrapped": 1, + "": 1, + "contains": 2, + "some": 2, + "engine": 1, + "specific": 2, + "fixes": 1, + "uniform": 1, + "behaviour": 2, + "contained": 1, + "": 1, + "": 1, + "override": 1, + "providing": 2, + "then": 4, + "none": 1, + "things": 2, + "returned": 3, + "when": 19, + "MyApp": 1, + "Thus": 1, + "any": 4, + "functionality": 1, + "ll": 1, + "An": 1, + "apply_default_middlewares": 2, + "supplied": 1, + "wrap": 1, + "middlewares": 1, + "file.": 3, + "auto": 1, + "generated": 1, + "looks": 2, + "something": 3, + "": 1, + "": 1, + "Contributors": 1, + "Catalyst.pm": 1, + "COPYRIGHT": 7, + "software.": 1, + "You": 4, "MAIN": 1, + "App": 131, + "Ack": 136, "main": 3, + "die": 38, "env_is_usable": 3, + "@ARGV": 12, + "last": 17, "th": 1, "pt": 1, - "env": 76, + "_thpppt": 3, + "_bar": 3, + "unshift": 4, + "read_ackrc": 4, "@keys": 2, "ACK_/": 1, + "ENV": 41, + "delete": 10, "@ENV": 1, "load_colors": 1, "ACK_SWITCHES": 1, + "warn": 22, + "show_help": 3, + "exit": 19, + "opt": 291, + "get_command_line_options": 4, + "flush": 8, "Unbuffer": 1, + "output": 40, "mode": 1, + "input_from_pipe": 8, + "f": 25, + "g": 7, + "l": 17, + "show_filename": 35, + "regex": 42, "build_regex": 3, "nargs": 2, "Resource": 5, + "Basic": 11, + "nmatches": 61, + "count": 23, + "search_and_list": 8, + "search_resource": 7, + "close": 22, + "exit_from_ack": 5, "file_matching": 2, + "lines": 20, "check_regex": 2, + "G": 11, + "what": 15, + "get_starting_points": 4, + "iter": 23, + "get_iterator": 4, + "filetype_setup": 4, + "set_up_pager": 3, + "pager": 19, + "print_files": 4, + "print_files_with_matches": 4, + "print_matches": 4, + "ack": 38, + "text": 6, "finder": 1, + "options": 8, + "PATTERN": 8, "FILE...": 1, "DIRECTORY...": 1, "designed": 1, "replacement": 1, "uses": 2, + "F": 24, "": 5, "searches": 1, "named": 3, - "input": 9, "FILEs": 1, "standard": 1, - "given": 10, + "match": 24, "PATTERN.": 1, "By": 2, "prints": 2, + "matching": 15, + "lines.": 3, "also": 7, + "searched": 5, + "without": 3, "actually": 1, + "searching": 6, "let": 1, - "take": 5, "advantage": 1, + "know": 4, ".wango": 1, + "": 13, "won": 1, "throw": 1, "away": 1, - "because": 3, + "there": 6, "times": 2, + "follow": 7, "symlinks": 1, - "than": 5, + "other": 6, "whatever": 1, + "starting": 2, + "directories": 9, + "were": 2, "specified": 3, "line.": 4, + "off": 4, "default.": 2, - "item": 44, "": 11, - "paths": 3, + "Only": 7, "included": 1, "search.": 1, - "entire": 3, "matched": 1, "against": 1, + "regular": 3, + "expression": 9, "shell": 4, "glob.": 1, "<-i>": 5, "<-w>": 2, "<-v>": 3, "<-Q>": 4, - "apply": 3, + "Print": 6, "relative": 1, + "matches": 7, + "option": 7, "convenience": 1, - "shortcut": 2, "<-f>": 6, "<--group>": 2, "<--nogroup>": 2, "groups": 1, "with.": 1, "interactively.": 1, + "result": 3, "per": 1, + "line": 21, "grep.": 2, "redirected.": 1, "<-H>": 1, "<--with-filename>": 1, + "match.": 3, "<-h>": 1, "<--no-filename>": 1, "Suppress": 1, "prefixing": 1, - "multiple": 5, + "filenames": 7, "searched.": 1, "<--help>": 1, "short": 1, + "help": 3, "statement.": 1, "<--ignore-case>": 1, "Ignore": 3, "case": 3, + "search": 11, "strings.": 1, "applies": 3, + "only": 11, + "regexes": 4, "<-g>": 5, "<-G>": 3, "options.": 4, + "ignore": 7, + "dir": 27, "": 2, + "directory": 8, + "CVS": 5, + ".svn": 3, "etc": 2, - "May": 2, + "ignored": 6, "directories.": 2, + "For": 5, + "example": 5, "mason": 1, - "users": 4, + "may": 4, "wish": 1, "include": 1, "<--ignore-dir=data>": 1, "<--noignore-dir>": 1, - "allows": 4, "normally": 1, "perhaps": 1, "research": 1, + "contents": 2, "<.svn/props>": 1, - "always": 5, - "simple": 2, + "must": 7, "name.": 1, "Nested": 1, "": 1, "NOT": 1, "supported.": 1, - "You": 4, - "need": 5, "specify": 1, "<--ignore-dir=foo>": 1, - "then": 4, - "foo": 6, "taken": 1, + "into": 8, "account": 1, "explicitly": 1, "": 2, - "file.": 3, "Multiple": 1, "<--line>": 1, "comma": 1, @@ -55199,16 +59283,14 @@ "matter": 1, "<-l>": 2, "<--files-with-matches>": 1, - "instead": 4, "text.": 1, "<-L>": 1, "<--files-without-matches>": 1, - "": 2, "equivalent": 2, "specifying": 1, + "Specify": 2, "explicitly.": 1, "helpful": 2, - "don": 2, "": 1, "via": 1, "": 4, @@ -55222,29 +59304,30 @@ "piping": 3, "does.": 2, "<--passthru>": 1, + "Prints": 4, "whether": 1, "they": 1, "expression.": 1, "Highlighting": 1, - "work": 3, + "still": 4, "though": 1, - "so": 4, "highlight": 1, "seeing": 1, "tail": 1, "/access.log": 1, + "passthru": 9, "<--print0>": 1, "works": 1, "conjunction": 1, + "c": 6, "null": 1, "byte": 1, "usual": 1, "newline.": 1, "dealing": 1, - "contain": 3, "whitespace": 1, - "e.g.": 2, "html": 1, + "print0": 7, "xargs": 2, "rm": 1, "<--literal>": 1, @@ -55255,8 +59338,7 @@ "<-r>": 1, "<-R>": 1, "<--recurse>": 1, - "just": 2, - "here": 2, + "Recurse": 3, "compatibility": 2, "turning": 1, "<--no-recurse>": 1, @@ -55264,7 +59346,6 @@ "<--smart-case>": 1, "<--no-smart-case>": 1, "strings": 1, - "contains": 2, "uppercase": 1, "characters.": 1, "similar": 1, @@ -55274,50 +59355,65 @@ "option.": 1, "<--sort-files>": 1, "Sorts": 1, + "lexically.": 3, "Use": 6, - "your": 20, "listings": 1, "deterministic": 1, "runs": 1, "<--show-types>": 1, "Outputs": 1, + "filetypes": 8, "associates": 1, "Works": 1, "<--thpppt>": 1, + "Display": 3, "important": 1, "Bill": 1, "Cat": 1, "logo.": 1, - "Note": 5, "exact": 1, "spelling": 1, "<--thpppppt>": 1, "important.": 1, + "skipped": 2, "make": 3, + "binary": 3, "perl": 9, + "ruby": 3, "php": 2, "python": 1, - "looks": 2, + "xml": 6, + "exist": 5, "location.": 1, + "ACK_OPTIONS": 5, + "variable": 3, "specifies": 1, "placed": 1, "front": 1, "explicit": 1, + "ACK_COLOR_FILENAME": 5, "Specifies": 4, + "color": 38, "recognized": 1, "clear": 2, + "reset": 5, "dark": 1, + "bold": 5, "underline": 1, "underscore": 2, "blink": 1, "reverse": 1, "concealed": 1, + "black": 3, "red": 1, + "green": 3, + "yellow": 3, "blue": 1, "magenta": 1, "on_black": 1, "on_red": 1, "on_green": 1, + "on_yellow": 3, "on_blue": 1, "on_magenta": 1, "on_cyan": 1, @@ -55327,12 +59423,12 @@ "Underline": 1, "reset.": 1, "alone": 1, - "sets": 4, "foreground": 1, "on_color": 1, "background": 1, "color.": 2, "<--color-filename>": 1, + "ACK_COLOR_MATCH": 5, "printed": 1, "<--color>": 1, "mode.": 1, @@ -55340,20 +59436,26 @@ "See": 1, "": 1, "specifications.": 1, - "such": 6, + "ACK_PAGER": 5, + "program": 7, "": 1, "": 1, "": 1, "send": 1, + "its": 2, "output.": 1, "except": 1, + "Windows": 4, "assume": 1, - "support": 2, "both": 1, + "specified.": 4, + "ACK_PAGER_COLOR": 7, "understands": 1, + "ANSI": 3, "sequences.": 1, - "back": 4, + "never": 2, "ACK": 2, + "&": 27, "OTHER": 1, "TOOLS": 1, "Vim": 3, @@ -55361,6 +59463,7 @@ "integrates": 1, "easily": 2, "editor.": 1, + "Set": 3, "<.vimrc>": 1, "grepprg": 1, "That": 3, @@ -55375,7 +59478,6 @@ "Phil": 1, "Jackson": 1, "put": 1, - "together": 2, "": 1, "extension": 1, "": 1, @@ -55385,36 +59487,44 @@ "who": 1, "writes": 1, "Shell": 2, + "Return": 2, "Code": 1, "greater": 1, "normal": 1, + "found.": 4, "<$?=256>": 1, "": 1, "backticks.": 1, + "errors": 4, "used.": 1, - "at": 4, "least": 1, "returned.": 1, "DEBUGGING": 1, "PROBLEMS": 1, - "gives": 2, - "re": 3, "expecting": 1, "forgotten": 1, "<--noenv>": 1, "<.ackrc>": 1, "remember.": 1, "Put": 1, + "type": 69, "definitions": 1, "it.": 1, "smart": 1, "too.": 1, + "sort": 9, "there.": 1, "working": 1, + "big": 2, "codesets": 1, + "files.": 6, + "tree": 2, "ideal": 1, "sending": 1, "": 1, + "p": 10, + "i": 27, + "e": 21, "prefer": 1, "doubt": 1, "day": 1, @@ -55428,16 +59538,16 @@ "loading": 1, "": 1, "took": 1, - "access": 2, + "log": 4, "scanned": 1, "twice.": 1, + "Q": 7, "aa.bb.cc.dd": 1, "/path/to/access.log": 1, "B5": 1, "troublesome.gif": 1, "first": 1, "finds": 2, - "Apache": 2, "IP.": 1, "second": 1, "troublesome": 1, @@ -55456,10 +59566,7 @@ "tips": 1, "here.": 1, "FAQ": 1, - "Why": 3, "isn": 1, - "doesn": 8, - "behavior": 3, "driven": 1, "filetype.": 1, "": 1, @@ -55469,28 +59576,20 @@ "you.": 1, "source": 2, "compiled": 1, - "object": 6, "control": 1, "metadata": 1, "wastes": 1, "lot": 1, "those": 2, - "well": 2, "returning": 1, - "things": 2, "great": 1, "did": 1, - "replace": 3, - "read": 6, + "No": 4, "only.": 1, - "has": 3, "perfectly": 1, - "good": 2, - "using": 5, "<-p>": 1, "<-n>": 1, "switches.": 1, - "certainly": 2, "select": 1, "update.": 1, "change": 1, @@ -55504,6 +59603,7 @@ "ack.": 2, "Yes": 1, "know.": 1, + "out": 3, "nothing": 1, "suggest": 1, "symlink": 1, @@ -55531,631 +59631,2188 @@ "Signes": 1, "Pete": 1, "Krawczyk.": 1, + "Copyright": 2, + "Andy": 2, + "Lester.": 2, + "Artistic": 2, + "License": 2, + "v2.0.": 2, + "File": 54, + "Next": 27, + "Spec": 13, "files_defaults": 3, "skip_dirs": 3, + "BEGIN": 7, + "file_filter": 12, + "descend_filter": 11, + "error_handler": 5, "CORE": 3, + "sort_files": 11, + "follow_symlinks": 6, "curdir": 1, "updir": 1, "__PACKAGE__": 1, "parms": 15, "@queue": 8, "_setup": 2, + "filter": 12, "fullpath": 12, - "splice": 2, "local": 5, - "wantarray": 3, + "next": 9, "_candidate_files": 2, + "iterator": 3, "sort_standard": 2, "cmp": 2, "sort_reverse": 1, + "reslash": 4, "@parts": 3, + "catfile": 4, "passed_parms": 6, - "copy": 4, "parm": 1, - "hash": 11, "badkey": 1, - "caller": 2, - "start": 7, "dh": 4, "opendir": 1, "@newfiles": 5, "sort_sub": 4, "readdir": 1, "has_stat": 3, + "catdir": 3, "closedir": 1, + "End": 3, + "*STDOUT": 6, + "types": 26, + "type_wanted": 20, + "mappings": 29, + "ignore_dirs": 12, + "output_to_pipe": 12, + "dir_sep_chars": 10, + "is_cygwin": 6, + "is_windows": 12, + "Glob": 4, + "Getopt": 6, + "Long": 6, + "_MTN": 2, + "blib": 2, + "RCS": 2, + "SCCS": 2, + "_darcs": 2, + "_sgbak": 2, + "_build": 2, + "actionscript": 2, + "mxml": 2, + "ada": 4, + "adb": 2, + "ads": 2, + "asm": 4, + "batch": 2, + "bat": 2, + "cmd": 2, + "Binary": 2, + "T": 2, + "op": 2, + "tt": 4, + "tt2": 2, + "ttml": 2, + "vb": 4, + "bas": 2, + "cls": 2, + "frm": 2, + "ctl": 2, + "resx": 2, + "verilog": 2, + "vh": 2, + "sv": 2, + "vhdl": 4, + "vhd": 2, + "vim": 4, + "yaml": 4, + "yml": 2, + "dtd": 2, + "xsl": 2, + "xslt": 2, + "ent": 2, + "exts": 6, + "ext": 14, + "mk": 2, + "mak": 2, + "STDIN": 2, + "O": 4, + "/MSWin32/": 2, + "quotemeta": 5, + "@files": 12, + "ACKRC": 2, + "@dirs": 4, + "HOME": 4, + "USERPROFILE": 2, + "bsd_glob": 4, + "GLOB_TILDE": 2, + "open": 10, + "@lines": 21, + "/./": 2, + "s*#/": 2, + "<$fh>": 4, + "chomp": 4, + "getopt_specs": 6, + "after_context": 16, + "before_context": 18, + "break": 14, + "ACK_COLOR_LINENO": 4, + "column": 4, + "handled": 2, + "beforehand": 2, + "heading": 18, + "h": 6, + "H": 6, + "invert_file_match": 8, + "n": 19, + "o": 17, + "show_types": 4, + "smart_case": 3, + "u": 10, + "w": 7, + "remove_dir_sep": 7, + "print_version_statement": 2, + "show_help_types": 2, + "Pod": 4, + "Usage": 4, + "pod2usage": 2, + "verbose": 2, + "exitval": 2, + "dummy": 2, + "wanted": 4, + "no//": 2, + "later": 2, + "qq": 18, + "Unknown": 2, + "def_types_from_ARGV": 5, + "filetypes_supported": 5, + "parser": 12, + "Parser": 4, + "configure": 4, + "getoptions": 4, + "to_screen": 10, + "Win32": 9, + "Console": 2, + "@ret": 10, + "..": 7, + "uniq": 4, + "@uniq": 2, + "<=>": 2, + "b": 6, + "numerical": 2, + "occurs": 2, + "once": 4, + "@typedef": 8, + "td": 6, + "Builtin": 4, + "cannot": 4, + "changed.": 4, + "delete_type": 5, + "Type": 2, + "...": 2, + "@exts": 8, + ".//": 2, + "Cannot": 4, + "append": 2, + "Internal": 2, + "error": 4, + "builtin": 2, + "ignoredir_filter": 5, + "constant": 2, + "TEXT": 16, + "basename": 9, + ".*": 5, + "is_searchable": 8, + "lc_basename": 8, + "lc": 5, + "r": 18, + "SHEBANG#!#!": 2, + "lua": 2, + "erl": 2, + "hp": 2, + "ython": 2, + "d.": 2, + "b/": 4, + "ba": 2, + "z": 2, + "sh": 2, "": 1, - "these": 4, "updated": 1, "update": 1, "message": 1, "bak": 1, "core": 1, "swp": 1, - "min": 3, "js": 1, "1": 1, "str": 12, + "w/": 3, "regex_is_lc": 2, + "qr/": 13, + "regex/": 9, "S": 1, ".*//": 1, "_my_program": 3, "Basename": 2, + "_get_thpppt": 3, + "y": 8, + "www": 2, + "U": 2, + "tr/": 2, + "x": 12, + "nOo_/": 2, + "*I": 2, + "#.": 6, + ".#": 4, + "I#": 2, + "#I": 6, + "#7": 4, + "results.": 2, + "interactively": 6, + "different": 3, + "group": 2, + "Same": 8, + "nogroup": 2, + "noheading": 2, + "nobreak": 2, + "Highlight": 2, + "redirected": 2, + "colour": 2, + "COLOR": 6, + "lineno": 2, + "numbers.": 2, + "Flush": 2, + "immediately": 2, + "non": 2, + "goes": 2, + "pipe": 4, + "finding": 2, + "searching.": 2, + "REGEX": 2, + "REGEX.": 2, + "Sort": 2, + "invert": 2, + "Print/search": 2, + "g/": 2, + "G.": 2, + "show": 3, + "Show": 2, + "has.": 2, + "inclusion/exclusion": 2, + "All": 5, + "Ignores": 2, + "unrestricted": 2, + "Add/Remove": 2, + "dirs": 2, + "R": 2, + "recurse": 2, + "subdirectories": 2, + "END_OF_HELP": 2, + "VMS": 2, + "vd": 2, + "Term": 6, + "ANSIColor": 8, + "printing": 2, + "last_output_line": 6, + "any_output": 10, + "keep_context": 8, + "@before": 16, + "before_starts_at_line": 10, + "after": 18, + "next_text": 8, + "has_lines": 4, + "should": 8, + "scalar": 3, + "m/": 12, + "print_match_or_context": 13, + "max": 12, + "context_overall_output_count": 6, + "print_blank_line": 2, + "is_binary": 4, + "opts": 2, + "is_match": 7, + "line_no": 12, + "match_start": 5, + "match_end": 3, + "show_column": 4, + "display_filename": 8, + "colored": 6, + "print_first_filename": 2, + "sep": 8, + "output_func": 8, + "print_separator": 2, + "print_filename": 2, + "display_line_no": 4, + "print_line_no": 2, + "regex/go": 2, + "regex/Term": 2, + "substr": 2, + "/eg": 2, + "z/": 2, + "K/": 2, + "z//": 2, + "print_column_no": 2, + "scope": 4, + "around": 5, + "TOTAL_COUNT_SCOPE": 2, + "total_count": 10, + "get_total_count": 4, + "reset_total_count": 4, + "ors": 11, + "record": 3, + "separator": 4, + "show_total": 6, + "print_count": 4, + "print_count0": 2, + "filetypes_supported_set": 9, + "repo": 18, + "Repository": 11, + "next_resource": 6, + "tarballs_work": 4, + ".tar": 2, + ".gz": 2, + "Tar": 4, + "XXX": 4, + "Error": 2, + "checking": 2, + "needs_line_scan": 14, + "EXPAND_FILENAMES_SCOPE": 4, + "expand_filenames": 7, + "argv": 12, + "attr": 6, + "foreach": 13, + "pattern": 10, + "@results": 14, + "didn": 2, + "ve": 2, + "tried": 2, + "load": 2, + "GetAttributes": 2, + "we": 9, + "got": 2, + "expanded": 3, + "@what": 14, + "Assume": 2, + "start_point": 4, + "_match": 8, + "target": 6, + "invert_flag": 4, + "starting_point": 10, + "g_regex": 4, + "g_regex/": 6, + "Maybe": 2, + "is_interesting": 4, + "msg": 5, + "Unable": 2, "FAIL": 12, - "Carp": 11, "confess": 2, + "Plugin": 2, "@ISA": 2, - "class": 8, "could_be_binary": 4, "opened": 1, + "id": 6, + "*STDIN": 2, "size": 5, "_000": 1, - "buffer": 9, "sysread": 1, "regex/m": 1, - "seek": 4, "readline": 1, "nexted": 3, - "pod": 1, - "Catalyst": 10, - "PSGI": 10, - "How": 1, - "": 3, - "specification": 3, - "interface": 1, - "servers": 2, - "based": 2, - "applications": 2, - "frameworks.": 1, - "supports": 1, - "writing": 1, - "portable": 1, - "various": 2, - "methods": 4, - "standalone": 1, - "server": 2, - "mod_perl": 3, - "FastCGI": 2, - "": 3, - "implementation": 1, - "running": 1, - "applications.": 1, - "Engine": 1, - "XXXX": 1, - "classes": 2, - "environments": 1, - "been": 1, - "changed": 1, - "done": 2, - "implementing": 1, - "possible": 2, - "manually": 2, - "": 1, - "root": 1, - "application.": 1, - "own": 4, - ".psgi": 7, - "Writing": 2, - "alternate": 1, - "": 1, - "extensions": 1, - "implement": 2, - "": 1, - "": 1, - "": 1, - "simplest": 1, - "<.psgi>": 1, - "": 1, - "TestApp": 5, - "app": 2, - "psgi_app": 3, - "middleware": 2, - "components": 2, - "automatically": 2, - "": 1, - "applied": 1, - "psgi": 2, - "yourself.": 2, - "Details": 1, - "below.": 1, - "Additional": 1, - "": 1, - "What": 1, - "generates": 2, - "": 1, - "setting": 2, - "wrapped": 1, - "": 1, - "engine": 1, - "fixes": 1, - "uniform": 1, - "behaviour": 2, - "contained": 1, - "over": 2, - "": 1, - "": 1, - "override": 1, - "providing": 2, - "none": 1, - "MyApp": 1, - "Thus": 1, - "functionality": 1, - "ll": 1, - "An": 1, - "apply_default_middlewares": 2, - "method": 8, - "supplied": 1, - "wrap": 1, - "middlewares": 1, - "means": 3, - "auto": 1, - "generated": 1, - "": 1, - "": 1, - "AUTHORS": 2, - "Contributors": 1, - "Catalyst.pm": 1, - "library": 2, - "software.": 1, - "Plack": 25, - "_001": 1, - "HTTP": 16, - "Headers": 8, - "MultiValue": 9, - "Body": 2, - "Upload": 2, - "TempBuffer": 2, - "URI": 11, - "Escape": 6, - "_deprecated": 8, - "alt": 1, - "carp": 2, - "croak": 3, - "required": 2, - "address": 2, - "REMOTE_ADDR": 1, - "remote_host": 2, - "REMOTE_HOST": 1, - "protocol": 1, - "SERVER_PROTOCOL": 1, - "REQUEST_METHOD": 1, - "port": 1, - "SERVER_PORT": 2, - "REMOTE_USER": 1, - "request_uri": 1, - "REQUEST_URI": 2, - "path_info": 4, - "PATH_INFO": 3, - "script_name": 1, - "SCRIPT_NAME": 2, - "scheme": 3, - "secure": 2, - "body": 30, - "content_length": 4, - "CONTENT_LENGTH": 3, - "content_type": 5, - "CONTENT_TYPE": 2, - "session": 1, - "session_options": 1, - "logger": 1, - "cookies": 9, - "HTTP_COOKIE": 3, - "@pairs": 2, - "pair": 4, - "uri_unescape": 1, - "query_parameters": 3, - "uri": 11, - "query_form": 2, - "content": 8, - "_parse_request_body": 4, - "cl": 10, - "raw_body": 1, - "headers": 56, - "field": 2, - "HTTPS": 1, - "_//": 1, - "CONTENT": 1, - "COOKIE": 1, - "content_encoding": 5, - "referer": 3, - "user_agent": 3, - "body_parameters": 3, - "parameters": 8, - "query": 4, - "flatten": 3, - "uploads": 5, - "url_scheme": 1, - "params": 1, - "query_params": 1, - "body_params": 1, - "cookie": 6, - "get_all": 2, - "upload": 13, - "raw_uri": 1, - "base": 10, - "path_query": 1, - "_uri_base": 3, - "path_escape_class": 2, - "uri_escape": 3, - "QUERY_STRING": 3, - "canonical": 2, - "HTTP_HOST": 1, - "SERVER_NAME": 1, - "new_response": 4, - "Response": 16, - "ct": 3, - "cleanup": 1, - "spin": 2, - "chunk": 4, - "length": 1, - "rewind": 1, - "from_mixed": 2, - "@uploads": 3, - "@obj": 3, - "_make_upload": 2, - "__END__": 2, - "Portable": 2, - "app_or_middleware": 1, - "req": 28, - "finalize": 5, - "": 2, - "provides": 1, - "consistent": 1, - "API": 2, - "objects": 2, - "across": 1, - "environments.": 1, - "CAVEAT": 1, - "module": 2, - "intended": 1, - "developers": 3, - "framework": 2, - "rather": 2, - "directly": 1, - "recommended": 1, - "yet": 1, - "too": 1, - "low": 1, - "level.": 1, - "encouraged": 1, - "frameworks": 2, - "": 1, - "modules": 1, - "": 1, - "provide": 1, - "higher": 1, - "top": 1, - "PSGI.": 1, - "METHODS": 2, - "Some": 1, - "earlier": 1, - "versions": 1, - "deprecated": 1, - "Take": 1, - "": 1, - "Unless": 1, - "noted": 1, - "": 1, - "passing": 1, - "accessor": 1, - "set.": 1, - "": 2, - "request.": 1, - "uploads.": 2, - "": 2, - "": 1, - "objects.": 1, - "Shortcut": 6, - "content_encoding.": 1, - "content_length.": 1, - "content_type.": 1, - "header.": 2, - "referer.": 1, - "user_agent.": 1, - "GET": 1, - "POST": 1, - "CGI.pm": 2, - "compatible": 1, - "method.": 1, - "alternative": 1, - "accessing": 1, - "parameters.": 3, - "Unlike": 1, - "": 1, - "allow": 1, - "modifying": 1, - "@values": 1, - "convenient": 1, - "@fields": 1, - "Creates": 2, - "": 3, - "object.": 4, - "Handy": 1, - "remove": 2, - "dependency": 1, - "easy": 1, - "subclassing": 1, - "duck": 1, - "typing": 1, - "overriding": 1, - "generation": 1, - "middlewares.": 1, - "Parameters": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "store": 1, - "plain": 2, - "": 1, - "scalars": 1, - "references": 1, - "ARRAY": 1, - "twice": 1, - "efficiency.": 1, - "DISPATCHING": 1, - "wants": 1, - "dispatch": 1, - "route": 1, - "actions": 1, - "sure": 1, - "": 1, - "virtual": 1, - "regardless": 1, - "mounted.": 1, - "hosted": 1, - "scripts": 1, - "multiplexed": 1, - "tools": 1, - "": 1, - "idea": 1, - "subclass": 1, - "define": 1, - "uri_for": 2, - "So": 1, - "say": 1, - "link": 1, - "signoff": 1, - "": 1, - "empty.": 1, - "older": 1, - "instead.": 1, - "Cookie": 2, - "handling": 1, - "simplified": 1, - "encoding": 2, - "decoding": 1, - "totally": 1, - "up": 1, - "framework.": 1, - "Also": 1, - "": 1, - "now": 1, - "": 1, - "Simple": 1, - "longer": 1, - "have": 2, - "wacky": 1, - "simply": 1, - "Tatsuhiko": 2, - "Miyagawa": 2, - "Kazuhiro": 1, - "Osawa": 1, - "Tokuhiro": 2, - "Matsuno": 2, - "": 1, - "": 1, + "##": 79, + "configuration": 3, + "BASE_DIR": 1, + "CONFIG_FILE": 2, + "Config": 1, + "DEBUG_LOG_FILE": 2, + "writable": 2, + "nagios": 3, + "DEBUGLEVEL": 3, + "Nothing": 1, + "Errors": 1, + "Warnings": 1, + "Debug": 1, + "DEBUGOUTPUT": 8, + "STDERR": 5, + "STDOUT": 1, + "cgi": 4, + "Global": 1, + "vars": 1, + "DEBUG_TIMESTAMP": 5, + "Find": 1, + "ARGV": 5, + "test": 1, + "console": 1, + "read_config": 4, + "abort": 23, + "performance": 2, + "data": 5, + "started": 1, + "parse_perfdata": 2, + "script": 1, + "browser": 1, + "run_as_cgi": 2, + "info": 1, + "logfile": 1, + "blank": 2, + "wrote": 1, + "anything...": 1, + "Program": 1, + "graph_name": 18, + "graph_iteration": 6, + "config": 67, + "display": 2, + "index": 2, + "graphs": 3, + "display_htmltemplate": 3, + "graph": 4, + "HTML": 6, + "page": 1, + "generate": 1, + "rrdtool_cmdline": 11, + ".join": 5, + "expand": 1, + "variables": 1, + "rrdarchive": 1, + "f/": 1, + "rrdarchive/g": 1, + "t_start": 4, + "t_start/g": 1, + "t_end": 4, + "e/": 1, + "t_end/g": 1, + "t_descr": 3, + "d/": 1, + "t_descr/g": 1, + "Call": 1, + "rrdtool": 3, + "probably": 1, + "fixed": 1, + "better": 1, + "exec": 1, + "template": 3, + "substitution": 1, + "stuff": 1, + "": 1, + "regex..": 1, + "/my": 1, + "varname": 8, + "date": 3, + "localtime": 2, + "return_html": 4, + "gn": 2, + "return_html.": 2, + "escape": 1, + "slash": 1, + "inside": 1, + "displaying": 1, + "actual": 1, + "images": 1, + "iteration_id": 2, + "unknown": 1, + "/eig": 1, + "thought": 1, + "Process": 1, + "incoming": 1, + "check": 3, + "plugin": 1, + "insert": 1, + "rrd": 3, + "archives": 2, + "rrd_updates": 13, + "Provide": 1, + "symbolic": 1, + "macros": 1, + "LASTCHECK": 1, + "HOSTNAME": 2, + "SERVICEDESCR": 2, + "SERVICESTATE": 1, + "OUTPUT": 2, + "PERFDATA": 2, + "host_and_descr_found": 3, + "Loop": 4, + "host_regexes": 1, + "host_regex": 5, + "service_description_regexes": 1, + "service_regex": 4, + "host_regex/i": 1, + "service_regex/i": 1, + "InsertValue": 1, + "host": 1, + "service_description": 1, + "insert_value": 10, + "output/perfdata": 1, + "regex_string": 1, + "regex_string/": 2, + "Insert": 1, + "RRD": 3, + "calling": 1, + "several": 1, + "archive": 9, + "rrdarchive_filename": 3, + "Create": 1, + "Archive": 1, + "according": 1, + "rrdarchive_filename.": 3, + "rrdtool_cmdline.": 1, + "Check": 1, + "wheter": 1, + "Assemle": 1, + "Read": 1, + "CONFIG": 2, + "line_counter": 2, + "": 1, + "@args": 11, + "shellwords": 1, + "orig_confline": 1, + "uc": 1, + "INSERTVALUE": 1, + "rrd_filename": 2, + "rrdcreatetemplate": 4, + "hostname_regex": 4, + "servicedescr_regex": 4, + "regex_template": 3, + "verify": 3, + "service": 1, + "description": 2, + "s*": 1, + "#/": 1, + "comment": 1, + "row": 1, + "nuthin": 1, + "RRDToolPath": 1, + "PlotTemplate": 1, + "htmltemplate": 2, + "parameters..": 2, + "GraphTimeTemplate": 1, + "time_template": 2, + "@t_descr": 2, + "workaround": 1, + "RRDCreateTemplate": 1, + "ValueRegexTemplate": 1, + "template_name": 3, + "@regexes": 2, + "perfdata": 1, + "regex_what": 2, + "dsa_name": 2, + "RRDARCHIVEPATH": 1, + "HTMLTemplatePath": 1, + "GraphIndexTemplate": 1, + "GRAPH": 1, + "rrdfilename": 1, + "graphtimetemplate": 1, + "plottemplate": 1, + "Write": 1, + "output/logging": 1, + "timestamp": 1, + "msg.": 2, + "SHEBANG#!#! perl": 4, + "examples/benchmarks/fib.pl": 1, + "Fibonacci": 2, + "Benchmark": 1, + "Calculates": 1, + "Number": 1, + "": 1, + "unspecified": 1, + "fib": 4, + "N": 2, + "": 1, "Test": 2, "Base": 1, "__DATA__": 1, "Strict": 1, + "container": 1, + "functions": 2, + "Version": 1, + "serviceable": 1, + "parts": 1, + "inside.": 1, + "this.": 1, + "FUNCTIONS": 1, + "Reads": 1, + ".ackrc": 1, + "arguments.": 1, + "arguments": 2, + "tweaking.": 1, + "Go": 1, + "<--type-set>": 1, + "foo=": 1, + "<--type-add>": 1, + "xml=": 1, + "Remove": 1, + "supported": 1, + "Removes": 1, + "internal": 1, + "structures": 1, + "type_wanted.": 1, + "Standard": 1, + "pass": 1, + "": 1, + "descend_filter.": 1, + "true": 3, + "ones": 1, + "ignore.": 1, + "removes": 1, + "trailing": 1, + "argument": 1, + "<$filename>": 1, + "could": 2, + "be.": 1, + "": 1, + "filetype": 1, + "": 1, + "avoid": 1, + "a.": 1, + "false": 1, + "starting_line_no": 1, + "context": 1, + "Optimized": 1, + "True/False": 1, + "<$regex>": 1, + "<$one>": 1, + "stop": 1, + "first.": 1, + "<$ors>": 1, + "<\"\\n\">": 1, + "filename.": 1, + "was": 2, + "Minor": 1, + "housekeeping": 1, + "before": 1, + "go": 1, + "globs": 1, + "going": 1, + "pipe.": 1, + "Exit": 1, + "correct": 1, + "handed": 1, + "argument.": 1, + "Fast": 3, + "XML": 2, + "XS": 2, + "FindBin": 1, + "Bin": 3, + "#use": 1, + "lib": 2, + "_stop": 4, + "SIG": 3, + "nginx": 2, + "external": 2, + "fcgi": 2, + "Ext_Request": 1, + "FCGI": 1, + "*STDERR": 1, + "int": 2, + "conv": 2, + "use_attr": 1, + "indent": 1, + "xml_decl": 1, + "tmpl_path": 2, + "tmpl": 5, + "nick": 1, + "parent": 5, + "third_party": 1, + "artist_name": 2, + "venue": 2, + "event": 2, + "zA": 1, + "Z0": 1, + "Content": 2, + "application/xml": 1, + "charset": 2, + "utf": 2, + "hash2xml": 1, + "text/html": 1, + "nError": 1, + "M": 1, + "system": 1, "Bar": 1, - "@array": 1, - "Util": 3, - "Accessor": 1, - "status": 17, - "Scalar": 2, - "redirect": 1, - "url": 2, - "clone": 1, - "_finalize_cookies": 2, - "/chr": 1, - "/ge": 1, - "LWS": 1, - "single": 1, - "SP": 1, - "//g": 1, - "CR": 1, - "LF": 1, - "char": 1, - "invalid": 1, - "header_field_names": 1, - "_body": 2, - "blessed": 1, - "overload": 1, - "Method": 1, - "_bake_cookie": 2, - "push_header": 1, - "@cookie": 7, - "domain": 3, - "_date": 2, - "expires": 7, - "httponly": 1, - "@MON": 1, - "Jan": 1, - "Feb": 1, - "Mar": 1, - "Apr": 1, - "Jun": 1, - "Jul": 1, - "Aug": 1, - "Sep": 1, - "Oct": 1, - "Nov": 1, - "Dec": 1, - "@WDAY": 1, - "Sun": 1, - "Mon": 1, - "Tue": 1, - "Wed": 1, - "Thu": 1, - "Fri": 1, - "Sat": 1, - "sec": 2, - "hour": 2, - "mday": 2, - "mon": 2, - "year": 3, - "wday": 2, - "gmtime": 1, - "sprintf": 1, - "WDAY": 1, - "MON": 1, - "response": 5, - "psgi_handler": 1, - "API.": 1, - "Sets": 2, - "gets": 2, - "": 1, - "alias.": 2, - "response.": 1, - "Setter": 2, - "either": 2, - "headers.": 1, - "body_str": 1, - "io": 1, - "body.": 1, - "IO": 1, - "Handle": 1, - "": 1, - "X": 2, - "text/plain": 1, - "gzip": 1, - "normalize": 1, - "string.": 1, - "Users": 1, - "responsible": 1, - "properly": 1, - "": 1, - "their": 1, - "corresponding": 1, - "": 2, - "everything": 1, - "": 1, - "": 2, - "": 1, - "": 1, - "": 1, - "integer": 1, - "epoch": 1, - "": 1, - "convert": 1, - "formats": 1, - "<+3M>": 1, - "reference.": 1, - "AUTHOR": 1 + "@array": 1 }, "Perl6": { - "token": 6, - "pod_formatting_code": 1, - "{": 29, - "": 1, - "<[A..Z]>": 1, - "*POD_IN_FORMATTINGCODE": 1, - "}": 27, - "": 1, - "[": 1, - "": 1, - "#": 13, - "N*": 1, - "SHEBANG#!perl": 1, - "use": 1, - "v6": 1, - ";": 19, - "my": 10, - "string": 7, - "if": 1, - "eq": 1, - "say": 10, - "regex": 2, + "my": 310, + "class": 32, + "Failure": 1, + "{": 623, + "...": 5, + "}": 617, + "role": 12, + "X": 47, + "Comp": 12, + "ControlFlow": 2, + "Exception": 13, + "has": 49, + "ex": 16, + ";": 1063, + "method": 61, + "backtrace": 1, + "(": 852, + ")": 871, + "Backtrace.new": 1, + "self": 19, + "multi": 6, + "Str": 29, + "D": 4, + "self.": 3, + "message.Str": 1, + "//": 6, + "gist": 5, + "str": 25, + "try": 12, + "message": 24, + "return": 71, + "if": 95, + "self.backtrace": 1, + "throw": 2, + "is": 271, + "hidden_from_backtrace": 10, + "nqp": 28, + "bindattr": 2, + "newexception": 1, + "unless": 18, + "isconcrete": 1, + "setpayload": 2, + "decont": 2, + "msg": 5, + "setmessage": 1, + "unbox_s": 1, + "msg.Str": 1, + "msg.defined": 1, + "rethrow": 2, + "resumable": 1, + "p6bool": 2, + "istrue": 1, + "atkey": 2, + "resume": 5, + "Mu": 7, + "else": 22, + "die": 12, + "fail": 5, + "self.throw": 1, + "Failure.new": 1, + "getlexcaller": 1, + "isnull": 1, + "-": 558, + "compile": 2, + "time": 11, + "False": 6, + "AdHoc": 1, + ".payload": 1, + ".payload.Str": 1, + "Numeric": 1, + ".payload.Numeric": 1, + "Method": 4, + "NotFound": 1, + ".method": 4, + ".typename": 2, + "Bool": 4, + ".private": 2, + "InvalidQualifier": 1, + ".invocant": 1, + ".qualifier": 1, + "type": 31, + "sub": 97, + "EXCEPTION": 1, + "|": 28, + "vm_ex": 5, + "shift": 3, + "p6argvmarray": 1, + "payload": 6, + "getpayload": 1, + "istype": 1, + "int": 1, + "getextype": 1, + "#": 57, + "parrot": 2, + "pir": 1, + "const": 1, + "EXCEPTION_METHOD_NOT_FOUND": 1, + "&&": 13, + "endif": 2, + "p6box_s": 1, + "getmessage": 1, + "/": 54, + ".*": 2, + ".": 27, + "+": 98, + "do": 2, + "NQPRoutine": 1, + "eval": 2, + "@END_PHASERS": 1, + "last": 8, + "loop": 3, + "construct": 4, + "next": 11, + "redo": 1, + "proceed": 1, + "when": 17, + "clause": 2, + "succeed": 1, + "take": 4, + "gather": 7, + "perl6": 1, + "handle": 3, + "exception": 1, + "control": 1, + ".from": 2, + ".to": 2, + ".name": 20, + ".target": 4, + ".path": 7, + "o": 10, + ".mode.fmt": 2, + "MSWin32": 4, + "t": 21, + "use": 55, + "unknown": 1, + "trait": 1, + "in": 24, + "a": 64, + ".declaring": 1, + "declaration.": 1, + "Can": 6, + ".type": 2, + ".subtype": 1, + "Argument": 2, + "": 2, + ".directive": 1, + ".char": 1, + "A": 15, + ".placeholder": 1, + "Variable": 2, + ".symbol": 4, + "@.suggestions": 3, + "[": 93, + "]": 92, + "used": 7, + "at": 4, + "line": 8, + "s": 10, + "@s.join": 1, + "symbol": 5, + "call": 7, + "it": 9, + ".new": 1, + "collides": 1, + "with": 30, + "constructor": 1, + ".when": 1, + "Parameter": 6, + "Default": 1, + "does": 23, + ".how": 1, + ".parameter": 7, + "Placeholder": 1, + ".right": 2, + "Twigil": 1, + ".twigil": 2, + "MultipleTypeConstraints": 1, + "WrongOrder": 1, + ".misplaced": 1, + ".after": 1, + "InvalidType": 1, + "@.suggestions.join": 1, + "Signature": 1, + "NameClash": 1, + "Private": 2, + "Permission": 1, + ".source": 2, + "package": 5, + ".calling": 1, + "Unqualified": 1, + "Bind": 5, + ".target.defined": 1, + "NativeType": 1, + "Slice": 2, + "ZenSlice": 1, + "Value": 1, + "Dynamic": 1, + ".what": 6, + "Syntax": 8, + "Name": 1, + "Null": 2, + "UnlessElse": 1, + "KeywordAsFunction": 1, + ".word": 1, + ".needparens": 2, + "Malformed": 2, + "Elsif": 1, + "qq": 11, + "In": 2, + "Perl": 3, + "please": 2, + "The": 7, + ".reserved": 1, + "reserved": 1, + ".instead": 1, + "not": 14, + "allowed": 5, + "on": 12, + "negated": 1, + "pair": 1, + "key": 7, + "Cannot": 14, + "declare": 3, + "numeric": 1, + "twigil": 1, + ".scope": 3, + "variable": 4, + "augment": 2, + "without": 2, + ".package": 2, + "because": 3, + "closed": 1, + "give": 1, + "arguments": 3, + "to": 45, + ".macro": 1, + "operator": 9, + "object.": 2, + "only": 3, + "supply": 1, + "an": 8, + "initialization": 1, + "value": 13, + "for": 111, + "single": 5, + "public": 1, + "attribute": 3, + "but": 6, + "this": 3, + "the": 33, + "case": 1, + "Opening": 1, + "bracket": 1, + "required": 1, + "comment": 3, + "begin": 6, + "pod": 106, + "Missing": 1, + ".join": 3, + "*PID": 1, + "*GID": 1, + "*EGID": 1, + "<'>": 1, + ".ors": 1, + "Unsupported": 2, + "of": 94, + "v": 10, + "%": 127, + "m": 4, + "where": 3, + "no": 4, + "object": 4, + "available": 5, + "Virtual": 1, + ".call": 1, + "may": 1, + "be": 10, + "partially": 1, + "constructed": 1, + "objects": 1, + ".variable": 1, + "Radix": 1, + ".radix": 1, + "out": 5, + "range": 3, + "Operators": 1, + "and": 21, + "are": 12, + "non": 3, + "associative": 1, + "require": 1, + "parenthesis": 1, + "Adverb": 1, + ".adverb": 1, + ".construct": 1, + "Unrecognized": 1, + "regex": 8, + "metacharacter": 1, + ".metachar": 1, + "must": 2, + "quoted": 2, + "match": 6, + "literally": 1, + "as": 8, + "invocant": 1, + "marker": 1, + "signature": 1, + "after": 3, + "first": 8, + "parameter": 2, + "add": 2, + "tokens": 1, + "category": 1, + "Preceding": 1, + "context": 1, + "expects": 1, + "term": 1, + "found": 1, + "infix": 2, + ".infix": 1, + "instead": 2, + "kind": 13, + "cannot": 4, + "have": 2, + "attributes": 1, + "you": 4, + "tried": 1, + "You": 1, + "here": 1, + "maybe": 2, + "routine": 8, + "PRE": 2, + "Precondition": 1, + "Postcondition": 1, + ".condition.trim": 1, + "Unable": 1, + "deduce": 1, + "sequence": 2, + ".sequence": 1, + "Routine": 2, + "Attempt": 1, + "outside": 1, + "any": 3, + ".expected.": 5, + "name": 42, + ".got.": 5, + "binding": 1, + "returning": 1, + "assignment": 1, + "Calling": 1, + "requires": 1, + "n": 13, + "will": 4, + "never": 1, + "work": 3, + "argument": 1, + "types": 3, + "Type": 1, + "check": 1, + "failed": 1, + ".action": 2, + "expected": 7, + "got": 19, + "modify": 1, + "immutable": 2, + ".redispatcher": 1, + "dynamic": 2, + "scope": 1, + "dispatcher": 5, + "container": 1, + "mix": 1, + "composable": 1, + ".rolish.": 1, + "into": 1, + ".target.": 2, + "inherit": 2, + "from": 16, + "unknown.": 1, + "nDid": 2, + "mean": 2, + "one": 4, + "these": 3, + "itself.": 1, + "already": 2, + "been": 1, + "exported": 1, + "Lists": 1, + "both": 1, + "side": 1, + "dwimmy": 1, + "hyperop": 1, + "&": 24, + ".operator.name": 1, + "same": 1, + "length": 2, + "left": 2, + ".left": 1, + "elems": 2, + "elements": 2, + "right": 2, + "coerce": 1, + ".thing.": 1, + "Set.": 1, + "To": 2, + "create": 2, + "element": 1, + "set": 1, + "pass": 5, + "function": 1, + "Invalid": 1, + "string": 14, + ".format": 1, + "Cannnot": 1, + "unit": 1, + ".unit": 1, + "Date.delta": 1, + "No": 3, + "compiler": 1, + "language": 5, + "Trying": 1, + "import": 2, + "following": 4, + "symbols": 1, + "missing": 2, + "convert": 1, + ".reason": 1, + "Divide": 1, + "by": 26, + "zero": 1, + "using": 3, + ".using": 1, + "pseudo": 1, + ".pseudo": 1, + "such": 2, + "index": 3, + ".aggregate.": 1, + ".index": 1, + "Ambiguous": 1, + "signatures": 2, + "all": 6, + "none": 1, + "access": 1, + "through": 1, + "CALLER": 1, + "declared": 1, + "c_ex": 10, + "TypeCheck": 3, + "Binding.new": 1, + ".throw": 7, + "": 1, + "Assignment.new": 1, + "Return.new": 2, + "": 1, + "Assignment": 1, + "RO.new.throw": 1, + "redispatcher": 2, + "NoDispatcher.new": 1, + "@ambiguous": 2, + "Multi": 2, + "Ambiguous.new": 1, + "NoMatch.new": 1, + "parrot_c_ex": 2, + "getattr": 1, + "EnumMap": 1, + "bindcurhllsym": 1, + "Test": 11, + "@results": 3, + "plan": 7, + "k": 9, + "copy": 2, + "x1": 4, + "x2": 4, + "x3": 4, + "x4": 5, + "x5": 4, + "B": 7, + "@": 17, + "<=>": 4, + "0": 2, + "results": 6, + "1": 3, + "i": 12, + "v6": 13, + "MIME": 2, + "Base64": 2, + "URI": 3, + "LWP": 1, + "Simple": 1, + "auth": 6, + "": 1, + "ver": 1, + "<0.085>": 1, + "our": 4, + "VERSION": 1, + "enum": 1, + "RequestType": 6, + "": 1, + "POST": 3, + ".default_encoding": 2, + ".class_default_encoding": 2, + "Buf": 4, + "crlf": 2, + "Buf.new": 2, + "http_header_end_marker": 2, + "Int": 6, + "constant": 1, + "default_stream_read_len": 3, + "*": 15, + "base64encode": 1, + "user": 5, + "mime": 1, + "new": 9, + "encoded": 2, + "mime.encode_base64": 1, + "get": 2, + "url": 21, + "self.request_shell": 3, + "GET": 1, + "post": 3, + "headers": 16, + "Any": 5, + "content": 25, + "request_shell": 1, + "rt": 5, + "scheme": 1, + "hostname": 4, + "port": 5, + "path": 17, + "self.parse_url": 1, + "": 1, + "": 1, + "": 1, + "base64enc": 1, + "self.base64encode": 1, + "": 1, + "": 1, + "content.defined": 2, + "content.encode.bytes": 1, + "status": 6, + "resp_headers": 12, + "resp_content": 9, + "self.make_request": 1, + "given": 8, + "<[12]>": 1, + "resp_headers.hash": 1, + "new_url": 3, + "": 1, + "#if": 1, + "redirects": 1, + "/200/": 1, + "": 4, + "": 3, + "<-[/;]>": 1, + "<[/]>": 1, + "": 2, + "<-[;]>": 2, + "eq": 17, + "||": 7, + "ecma": 1, + "java": 1, + "script": 1, + "json/": 1, + "charset": 4, + "/charset": 1, + "charset.Str": 1, + "resp_content.decode": 1, + "default": 5, + "parse_chunks": 1, + "Blob": 6, + "b": 39, + "rw": 10, + "IO": 4, + "Socket": 2, + "INET": 2, + "sock": 4, + "line_end_pos": 13, + "chunk_len": 8, + "chunk_start": 4, + "xx": 1, + "Blob.new": 1, + "while": 7, + "<": 15, + "b.bytes": 3, + "b.subbuf": 2, + "ne": 6, + ".decode": 2, + "<.xdigit>": 1, + ".Str": 1, + "True": 2, + "bytes": 2, + "say": 47, + "inner": 1, + "chunk": 13, + "subbuf": 2, + "2": 12, + "4": 9, + "remaining": 1, + "part": 1, + "len": 1, + "CRLF": 1, + "minus": 1, + "piece": 1, + "end": 6, + "buffer": 1, + "last_chunk_end_len": 4, + "sock.read": 7, + "min": 3, + "make_request": 1, + "host": 3, + "self.stringify_headers": 1, + "req_str": 3, + "rt.Stringy": 1, + "sock.send": 1, + "resp": 5, + "self.parse_response": 1, + "": 1, + "is_last_chunk": 4, + "resp_content_chunk": 3, + "self.parse_chunks": 2, + "next_chunk_start": 1, + "elsif": 6, + "": 3, + "resp_content.bytes": 2, + "bit": 1, + "hacky": 1, + "now": 4, + "should": 6, + "ok": 14, + "resp.bytes": 3, + "sock.close": 1, + "parse_response": 1, + "header": 3, + "header_end_pos": 7, + "resp.subbuf": 3, + "@header_lines": 2, + ".split": 2, + "r": 20, + "n/": 3, + "status_line": 2, + "@header_lines.shift": 1, + "header.item": 1, + ".item": 1, + "getprint": 1, + "self.get": 2, + "*OUT.write": 1, + "getstore": 1, + "filename": 4, + "defined": 5, + "fh": 6, + "open": 5, + "bin": 1, + "w": 4, + "fh.write": 1, + "fh.print": 1, + "fh.close": 1, + "parse_url": 1, + "u": 1, + "u.path_query": 1, + "user_info": 5, + "u.grammar.parse_result": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "u.scheme": 1, + "u.host": 2, + "u.port": 1, + "": 2, + "password": 1, + "Nil": 1, + "stringify_headers": 1, + "sort": 5, + "headers.keys": 1, + "_": 71, + "Bailador": 7, + "App": 1, + "Request": 2, + "Response": 1, + "Context": 1, + "HTTP": 2, + "Easy": 2, + "PSGI": 1, + "module": 4, + "app": 1, + "App.current": 1, + "file": 18, + "callframe": 1, + ".file": 1, + "slash": 4, + "file.rindex": 2, + "app.location": 2, + "file.substr": 1, + "route_to_regex": 2, + "route": 5, + "route.split": 1, + ".map": 9, + "_.substr": 1, + "q": 8, + "<-[\\/\\.]>": 1, + "parse_route": 4, + ".eval": 1, + "Pair": 2, + "x": 32, + "export": 21, + "p": 15, + "x.key": 2, + "x.value": 2, + "app.add_route": 2, + "request": 1, + "app.context.request": 1, + "content_type": 1, + "app.response.headers": 2, + "Cool": 1, + "code": 4, + "app.response.code": 1, + "template": 2, + "tmpl": 2, + "*@params": 1, + "app.template": 1, + "@params": 1, + "dispatch_request": 1, + "dispatch": 5, + "r.env": 1, + "env": 5, + "app.context.env": 1, + "app.find_route": 1, + "app.response.content": 2, + "r.value.": 2, + "match.list": 1, + "app.response": 1, + "psgi": 2, + ".psgi": 1, + "baile": 1, + "PSGI.new": 1, + ".app": 1, + ".run": 1, + "pugs": 25, + "emit": 5, + "MONKEY_TYPING": 1, + "description": 2, + "Tests": 2, + "statement": 2, + "This": 3, + "attempts": 1, + "test": 2, + "many": 1, + "variations": 1, + "possible": 1, + "##": 6, + "foreach": 1, + "times_run": 2, + "eval_dies_ok": 8, + "plain": 2, + "old": 1, + "w/out": 2, + "parens": 4, + "..": 20, + "todo": 15, + "niecza": 6, + "skip": 12, + "@a": 38, + "@b": 4, + "zip": 1, + "y": 10, + "d": 17, + ".sign": 1, + "around": 2, + "e": 17, + "f": 13, + ".lc": 2, + "variables": 1, + "topic": 4, + "j": 4, + "@array": 9, + "@array_k": 2, + "@array_l": 2, + "l": 9, + "@array_o": 2, + "@array_p": 2, + "@elems": 6, + "": 6, + "c": 52, + "push": 6, + "@e": 6, + "<1>": 9, + "3": 10, + "<->": 2, + "elem": 8, + "<2>": 3, + "5": 8, + "second": 4, + "<3>": 1, + "6": 3, + "@array_s": 3, + "@s": 4, + "@array_t": 3, + "@t": 5, + "val": 13, + "@array_v": 2, + "@v": 2, + "@array_v.values": 1, + "@array_kv": 2, + "@kv": 2, + "@array_kv.kv": 1, + "hash_v": 2, + "hash_v.values": 1, + "hash_kv": 2, + "kv": 2, + "hash_kv.kv": 1, + "TestClass": 1, + ".key": 5, + "@array1": 6, + "TestClass.new": 6, + "sum1": 6, + "@array1.map": 3, + "_.key": 4, + "#L": 1, + "S04/The": 1, + "C": 22, + "": 1, + "statement/implicit": 1, + "block": 20, + "read/write": 1, + "_.WHAT.gist": 3, + "Int.gist": 1, + "Array.gist": 2, + "h": 4, + "output": 13, + "grep": 5, + "@array.sort": 2, + "#my": 1, + "#is": 1, + "#diag": 1, + "rakudo": 3, + "x*": 2, + "<4>": 1, + "res": 5, + "Z": 7, + "q*": 1, + "w*": 1, + "e*": 1, + "r*": 1, + "Inf": 2, + "EVAL": 8, + "/C": 1, + "style/": 1, + "/for/": 1, + "/loop/": 1, + "parsed": 10, + "rt71268": 3, + "lives_ok": 2, + "diag": 3, + "foo": 6, + "#OK": 1, + "**": 3, + "@rt113026": 3, + "iter": 4, + "@rt113026.push": 1, + "7": 2, + "8": 1, + "9": 3, + "10": 1, + "dies_ok": 2, + "fmt": 1, + "Foo": 1, + "@.items": 3, + "check_items": 1, + "item": 11, + "self.check_items": 1, + ".say": 1, + "Foo.new": 1, + "items": 3, + ".foo": 1, + "BEGIN": 3, + "@*INC.push": 2, + "SHEBANG#!perl": 2, "http": 1, - "-": 3, "verb": 1, - "|": 9, - "multi": 2, - "line": 5, - "comment": 2, - "(": 16, - ")": 19, - "I": 1, - "there": 1, - "m": 2, + "I": 3, + "there": 2, "even": 1, "specialer": 1, - "does": 7, "nesting": 1, - "work": 1, - "<": 3, "trying": 1, "mixed": 1, "delimiters": 1, - "qq": 5, "": 1, "arbitrary": 2, "delimiter": 2, "Hooray": 1, - "q": 5, "": 1, - "with": 9, - "whitespace": 1, - "<<": 1, + "whitespace": 6, + "<<": 30, "more": 1, - "strings": 1, - "%": 1, - "hash": 1, + "strings": 2, + "hash": 4, "Hash.new": 1, - "begin": 1, - "pod": 1, - "Here": 1, - "t": 2, + "Here": 2, "highlighted": 1, "table": 1, - "Of": 1, - "role": 10, + "Of": 2, "things": 1, - "A": 3, - "single": 3, "declarator": 7, - "a": 8, "keyword": 7, - "like": 7, + "like": 10, "Another": 2, - "block": 2, "brace": 1, "More": 2, "blocks": 2, "don": 2, - "x": 2, - "foo": 3, "Rob": 1, "food": 1, - "match": 1, - "sub": 1, "something": 1, - "Str": 1, - "D": 1, - "value": 1, - "...": 1, - "s": 1, "some": 2, "stuff": 1, "chars": 1, - "/": 1, "": 1, "": 1, "roleq": 1, + "weather": 4, + "probability": 4, + "fib": 4, + "Card": 2, + "bend": 1, + "fold": 1, + "mutilate": 1, + "punch": 2, + "card": 2, + "actions": 5, + ".bend": 1, + ".fold": 1, + ".mutilate": 1, + "@list": 5, + "castle": 2, + "full": 2, + "vowels": 2, + "<[aeiou]>": 1, + "/phantom/": 1, + "#Test": 1, + "DNA": 1, + "liner": 1, + "result": 5, + "": 1, + "CG": 1, + ".pick.comb.pick": 1, + "map": 5, + "*sin": 1, + "_/2": 1, + "sprintf": 1, + "done": 2, + "kwid": 2, + "DESCRIPTION": 2, + "that": 3, + "List": 1, + "quoting": 1, + "parser": 1, + "properly": 2, + "ignores": 1, + "lists.": 1, + "becomes": 1, + "important": 1, + "your": 1, + "endings": 1, + "x0d": 1, + "x0a.": 1, + "Characters": 1, + "ignored": 1, + "x20": 1, + "Most": 1, + "likely": 1, + "more.": 1, + "James": 1, + "tells": 1, + "me": 1, + "maximum": 1, + "Unicode": 1, + "char": 1, + "x10FFFF": 1, + "so": 3, + "we": 1, + "simply": 1, + "re": 1, + "list": 4, + "via": 1, + "IsSpace": 1, + "or": 4, + "fly.": 1, + "course": 1, + "contain": 1, + "whitespace.": 1, + "<\\xA0>": 1, + "specifically": 1, + "": 1, + "character": 1, + "thus": 1, + "": 1, + "break": 1, + "list.": 1, + "PUGS_BACKEND": 1, + "skip_rest": 2, + "exit": 2, + "@separators": 1, + "@nonseparators": 1, + "xa0": 3, + "<$sep\">": 1, + "join": 5, + "sep": 3, + "<\">": 1, + "split": 2, + "really": 1, + "empty": 1, + "handling": 1, + "I.": 1, + "Multiple": 1, + "<-I>": 1, + "switches": 1, + "supposed": 1, + "prepend": 1, + "Ifoo": 1, + "Ibar": 1, + "make": 1, + "<@*INC>": 3, + "look": 1, + "bar": 1, + "Duplication": 1, + "directories": 1, + "command": 9, + "mirrored": 1, + "": 1, + "Ilib": 2, + "": 1, + "entries": 1, + "": 1, + "fragment": 1, + "@tests": 2, + "@tests*2": 1, + "redir": 2, + "*EXECUTABLE_NAME": 1, + "*OS": 1, + "": 1, + "mingw": 1, + "msys": 1, + "cygwin": 1, + "nonce": 2, + ".pick": 1, + "run_pugs": 3, + "tempfile": 3, + "run": 1, + "slurp": 3, + "unlink": 1, + "@dirs": 9, + "chomp": 2, + "substr": 4, + "@got": 8, + "@expected": 4, + "Pod": 18, + "HTML": 1, + "Escape": 1, + "lib": 1, + "Perl6": 7, + "TypeGraph": 4, + "Viz": 1, + "Documentable": 2, + "Registry": 1, + "*DEBUG": 5, + "tg": 3, + "methods": 8, + "footer": 4, + "html": 7, + "head": 2, + "": 2, + "rel=": 2, + "href=": 3, + "type=": 2, + "media=": 1, + "title=": 1, + "munge": 2, + "<[a..z]>": 2, + "m/": 6, + "<[A..Z]>": 3, + "<[[\\w'-]>": 1, + "p2h": 9, + "pod2html": 1, + "Block": 10, + "level": 11, + "leading": 2, + "confs": 3, + "@chunks": 5, + "": 1, + "caption": 1, + "thing": 3, + "pod.": 2, + "Iterable": 1, + "thing.perl": 1, + "thing.Str": 1, + "confs.perl": 1, + "pod.content.list": 1, + "@chunks.push": 3, + "c.indent": 1, + "Positional": 1, + "c.map": 1, + "*.": 1, + "@chunks.join": 1, + "recursive": 2, + "dir": 6, + "@todo": 2, + "@todo.shift": 1, + "f.f": 1, + "@todo.push": 1, + "f.path": 1, + "@pod": 3, + "Code": 1, + ".content.grep": 1, + "MAIN": 2, + "debug": 3, + "typegraph": 2, + "": 2, + "images": 3, + "op": 10, + "prefix": 1, + "postfix": 1, + "circumfix": 1, + "postcircumfix": 1, + "listop": 2, + "mkdir": 1, + ".IO": 1, + "@source": 5, + ".grep": 5, + ".f": 1, + "rx": 2, + ".pod": 2, + ".path.subst": 1, + ".subst": 2, + "g": 3, + "TypeGraph.new": 1, + "tg.sorted.kv.flat.reverse": 1, + "dr": 17, + "Registry.new": 1, + "num": 2, + "podname": 12, + ".value": 1, + "what": 13, + "printf": 1, + "file.path": 2, + "write": 20, + "dr.compose": 1, + "disambiguation": 4, + "files": 6, + "graph": 2, + "force": 3, + "search": 2, + "seen": 9, + "dr.lookup": 11, + "": 10, + ".list": 5, + "d.name": 2, + "print": 3, + "spurt": 10, + "chunks": 4, + "pod.content": 2, + "Heading": 4, + ".level": 2, + "b.level": 2, + "heading": 10, + ".content": 4, + "pre": 1, + "circum": 1, + "postcircum": 1, + "fix": 2, + "heading.split": 1, + "dr.add": 4, + "": 1, + "subkind": 6, + "complete": 4, + "": 1, + "pod.content.push": 11, + "Named.new": 3, + "link": 24, + "@mro": 2, + "t.mro": 1, + "@mro.shift": 1, + "current": 13, + "taken": 1, + "care": 1, + "t.roles": 1, + "r.name": 2, + "c.name": 2, + "c.roles": 1, + "s/": 2, + ".push": 4, + "counter": 4, + ".lines": 1, + "ms/": 1, + "counter.keys": 1, + "": 1, + "qualified": 2, + "": 1, + "origin": 1, + "*@elems": 1, + "@current": 8, + "@current.push": 2, + "title": 14, + "*@blocks": 1, + "Array.new": 1, + "Para.new": 3, + "@blocks.flat": 1, + "@content": 4, + "text": 5, + "FormattingCode.new": 1, + "Item.new": 1, + "Heading.new": 1, + "dest": 1, + "dest.e": 1, + "dest.modified": 1, + ".path.modified": 1, + "tg.sorted": 1, + "viz": 6, + "Viz.new": 2, + "viz.to": 4, + "format": 4, + "size": 3, + "group": 9, + "tg.sorted.classify": 1, + "": 1, + "tg.types": 2, + "": 1, + "group.kv": 1, + "@types": 2, + "dot": 1, + "hints": 3, + "rank": 1, + "type.name": 2, + "@items": 1, + "raw": 1, + "raw.substr": 1, + "@items.push": 4, + ".sort": 6, + "escape": 5, + "s.trans": 1, + "": 1, + "<\\\\/>": 1, + "label": 1, + "@items.join": 1, + "template.subst": 1, + "operator_disambiguation_file_written": 3, + "dr.grouped": 1, + ".kv": 2, + "p.elems": 1, + "p.": 1, + "Array": 1, + "p.origin": 2, + "p.url": 4, + "o.human": 4, + "o.name": 4, + "o.url": 4, + "p.map": 1, + ".origin": 2, + ".human": 4, + ".url": 7, + ".kind": 2, + ".classify": 1, + "@ops": 3, + "@ops.map": 1, + "doc": 1, + "doc.subkind": 1, + "doc.name": 1, + "doc.pod": 1, + "@docs": 2, + "": 1, + "@subkinds": 4, + ".subkind": 1, + ".defined": 1, + "@docs.map": 1, + ".origin.name": 2, + ".origin.url": 1, + ".pod.list": 1, + "state": 1, + "dt": 3, + "DateTime.now": 1, + "
": 1, + "id=": 1, + "

": 2, + "Generated": 1, + "sources": 1, + "perl6/doc": 1, + "github": 1, + "": 1, + "

": 2, + "progress": 1, + "document": 1, + "known": 1, + "incomplete.": 1, + "Your": 1, + "contribution": 1, + "appreciated.": 1, + "
": 1, + "ContainsUnicode": 1, + "uc": 1, + "@things": 2, + "separator": 2, + ".uc.join": 1, + "date": 95, + "year": 36, + "month": 27, + "day": 4, + "Date.new": 1, + "dtim": 36, + "DateTime.new": 2, + "hour": 2, + "minute": 1, + ".truncated": 15, + "week": 50, + "truncated": 1, + "dt.truncated": 1, + "truncated.gist": 1, + ".day": 56, + ".week.join": 18, + ".week": 12, + "number": 6, + ".weekday": 13, + ".days": 6, + "nok": 6, + ".is": 9, + "leap": 9, + "Spec": 2, + "Win32": 1, + "Unix": 1, + "<[\\/>": 1, + "notslash": 1, + "<-[\\/>": 1, + "driveletter": 1, + "<[A..Z>": 1, + "z": 1, + "UNCpath": 1, + "<$slash>": 8, + "<$notslash>": 3, + "volume_rx": 1, + "<$driveletter>": 4, + "<$UNCpath>": 2, + "canonpath": 1, + "parent": 3, + "canon": 2, + "cat": 2, + "catdir": 1, + "volume": 9, + "directory": 5, + "basename": 2, + "": 1, + "relative": 1, + "foo.txt": 1, + "volume.chars": 1, + "directory.chars": 1, + "vol": 4, + "self.splitpath": 5, + "base": 11, + "base.defined": 1, + "*CWD": 3, + "self.canonpath": 3, + "Cwd": 2, + "getdcwd": 2, + "self.is": 1, + "absolute": 1, + "self.rel2abs": 1, + "path_directories": 2, + "path_file": 2, + "base_volume": 2, + "base_directories": 2, + "nofile": 1, + "self.catpath": 1, + "self.catdir": 1, + "*@rest": 1, + "volume.": 1, + "subst": 3, + "JSON": 4, + "Tiny": 3, + "Grammar": 1, + "Q": 29, + "true": 5, + "false": 3, + "null": 1, + "E": 1, + "E66": 1, + "controls": 1, + "alpha": 1, + "abcdefghijklmnopqrstuvwyz": 1, + "ALPHA": 1, + "ABCDEFGHIJKLMNOPQRSTUVWYZ": 1, + "digit": 2, + "special": 1, + "@#": 1, + "./": 1, + "can": 2, + "rosebud": 1, + "Not": 1, + "too": 1, + "deep": 1, + "Pattern": 1, + "pass3": 1, + "outermost": 1, + "array.": 1, + "It": 2, + "glossary": 2, + "example": 1, + "GlossDiv": 1, + "S": 1, + "GlossList": 1, + "GlossEntry": 1, + "ID": 1, + "SGML": 3, + "SortAs": 1, + "GlossTerm": 1, + "Standard": 1, + "Generalized": 1, + "Markup": 1, + "Language": 1, + "Acronym": 1, + "Abbrev": 1, + "ISO": 1, + "GlossDef": 1, + "para": 1, + "meta": 1, + "markup": 3, + "languages": 1, + "DocBook.": 1, + "GlossSeeAlso": 1, + "GML": 1, + "XML": 1, + "GlossSee": 1, + "menu": 1, + "id": 1, + "File": 1, + "popup": 1, + "menuitem": 1, + "New": 1, + "onclick": 3, + "CreateNewDoc": 1, + "Open": 1, + "OpenDoc": 1, + "Close": 1, + "CloseDoc": 1, + "widget": 1, + "window": 1, + "Sample": 1, + "Konfabulator": 1, + "Widget": 1, + "main_window": 1, + "width": 3, + "height": 3, + "image": 1, + "src": 1, + "Images/Sun.png": 1, + "sun1": 1, + "hOffset": 2, + "vOffset": 2, + "alignment": 2, + "center": 2, + "data": 1, + "Click": 1, + "style": 1, + "bold": 3, + "text1": 1, + "onMouseUp": 1, + "sun1.opacity": 2, + "implement": 1, + "stinkin": 1, + "quote": 2, + "<[\"\\ttab\\tcharacter>": 1, + "unquoted_key": 1, + "@n": 2, + "desc": 6, + "n.*": 2, + "Grammar.parse": 2, + "test_lines": 3, + "@lines": 8, + "SHEBANG#!#!rakudo": 1, + "@lines.elems": 1, + "count": 3, + "fh.eof": 1, + "fh.get": 1, + "x.defined": 1, + "fh.lines": 2, + "token": 6, "stopper": 2, - "MAIN": 1, - "quote": 1, "backslash": 3, "sym": 3, "<\\\\>": 1, @@ -56163,10 +61820,7 @@ "": 1, "": 1, "": 1, - ".": 1, - "method": 2, "tweak_q": 1, - "v": 2, "self.panic": 2, "tweak_qq": 1, "b1": 1, @@ -56177,7 +61831,218 @@ "f1": 1, "Too": 2, "late": 2, - "for": 2 + "Math": 2, + "Model": 1, + "RungeKutta": 1, + "SVG": 3, + "Plot": 1, + ".derivatives": 2, + ".variables": 4, + ".initials": 4, + "@.captures": 3, + "inv": 2, + "derivatives.invert": 1, + "deriv": 7, + "names": 11, + "inv.keys": 1, + "keying": 1, + "values": 12, + ".results": 1, + "@.time": 1, + ".numeric": 2, + "error": 2, + "param": 3, + "c.signature.params": 1, + ".substr": 1, + "params": 3, + ".hash": 1, + "topo": 6, + "@vars": 4, + "@order": 2, + "inv.exists": 2, + ".variables.exists": 2, + "@order.push": 1, + "integrate": 2, + "resolution": 2, + "verbose": 2, + "d.key": 2, + ".initials.exists": 1, + "d.value": 1, + "

": 23, + "Whenever": 1, + "we": 3, + "talk": 1, + "": 41, + "": 117, + "": 117, + "additive": 1, + "group": 2, + "acts": 1, + "via": 6, + "multiplication": 1, + "from": 5, + "such": 4, + "this": 15, + "action": 4, + "addition": 1, + "right": 2, + "distributive.": 1, + "accessed": 1, + "attribute": 2, + "Vector": 1, + "always": 1, + "Filt=": 4, + "synonyms.": 1, + "<#/GAPDoc>": 17, + "InstallTrueMethod": 4, + "IsGaussianSpace": 10, + "": 14, + "filter": 3, + "Sect=": 6, + "matrix": 5, + "say": 1, + "indicates": 3, + "matrices": 5, + "respectively": 1, + "contained": 4, + "In": 3, + "case": 2, + "called": 1, + "Gaussian": 19, + "Bases": 1, + "computed": 2, + "using": 2, + "elimination": 5, + "given": 4, + "generators.": 1, + "": 12, + "": 12, + "gap": 41, + "mats": 5, + "Rationals": 13, + "E": 2, + "element": 2, + "Field": 1, + "": 12, + "DeclareFilter": 1, + "IsFullMatrixModule": 1, + "IsFullRowModule": 1, + "nontrivial": 1, + "associative": 1, + "algebra": 2, + "multiplicative": 1, + "inverse": 1, + "each": 2, + "nonzero": 3, + "element.": 1, + "every": 1, + "possibly": 1, + "itself": 1, + "Note": 3, + "being": 2, + "thus": 1, + "property": 2, + "get": 1, + "usually": 1, + "represented": 1, + "stored": 1, + "DeclareSynonymAttr": 4, + "IsMagmaWithInversesIfNonzero": 1, + "IsNonTrivial": 1, + "IsAssociative": 1, + "IsEuclideanRing": 1, + "#A": 7, + "GeneratorsOfLeftVectorSpace": 1, + "GeneratorsOfVectorSpace": 2, + "": 7, + "For": 10, + "Attr=": 10, + "returns": 14, + "generate": 1, + "GeneratorsOfLeftOperatorAdditiveGroup": 2, + "CanonicalBasis": 3, + "If": 11, + "supports": 1, + "canonical": 6, + "otherwise": 2, + "": 3, + "": 3, + "returned.": 4, + "defining": 1, + "its": 2, + "uniquely": 1, + "determined": 1, + "exist": 1, + "same": 6, + "equality": 1, + "these": 5, + "decided": 1, + "comparing": 1, + "bases.": 1, + "exact": 1, + "meaning": 1, + "depends": 1, + "type": 2, + "Canonical": 1, + "defined": 3, + "example": 3, + "one": 11, + "designs": 1, + "new": 2, + "kind": 1, + "defines": 1, + "installs": 1, + "call": 1, + "On": 1, + "hand": 1, + "probably": 2, + "should": 2, + "install": 1, + "simply": 2, + "calls": 1, + "CANONICAL_BASIS_FLAGS": 1, + "": 9, + "vecs": 4, + "": 8, + "3": 5, + "DeclareAttribute": 4, + "IsRowSpace": 2, + "consists": 7, + "IsRowModule": 1, + "IsGaussianRowSpace": 1, + "scalars": 2, + "occur": 2, + "vectors.": 2, + "Thus": 3, + "calculations.": 2, + "Otherwise": 3, + "non": 4, + "Gaussian.": 2, + "will": 5, + "need": 3, + "flag": 2, + "write": 3, + "down": 2, + "delegate": 2, + "ones.": 2, + "IsNonGaussianRowSpace": 1, + "expresses": 2, + "so": 3, + "cannot": 2, + "handled": 3, + "nice": 4, + "way.": 2, + "Let": 4, + "K": 4, + "spanned": 4, + "Then": 1, + "cap": 1, + "v": 5, + "replacing": 1, + "entry": 2, + "forming": 1, + "concatenation.": 1, + "So": 2, + "DeclareHandlingByNiceBasis": 2, + "IsMatrixSpace": 2, + "IsMatrixModule": 1, + "IsGaussianMatrixSpace": 1, + "IsNonGaussianMatrixSpace": 1, + "irrelevant": 1, + "concatenation": 1, + "rows": 1, + "necessarily": 1, + "NormedRowVectors": 2, + "normed": 1, + "finite": 5, + "those": 1, + "first": 1, + "component.": 1, + "yields": 1, + "natural": 1, + "GF": 22, + "*Z": 5, + "Z": 6, + "Action": 1, + "GL": 1, + "OnLines": 1, + "TrivialSubspace": 2, + "zero": 4, + "triv": 2, + "0": 2, + "AsSet": 1, + "TrivialSubmodule": 1, + "optional": 3, + "argument": 1, + "specify": 3, + "empty.": 1, + "linearly": 3, + "independent": 3, + "particular": 1, + "immediately": 2, + "note": 2, + "formed": 1, + "argument.": 1, + "2": 1, + "DeclareGlobalFunction": 5, + "generated": 1, + "subset": 4, + "empty": 1, + "trivial": 1, + "parent": 3, + "returned": 3, + "does": 1, + "except": 1, + "omits": 1, + "both": 2, + "1": 3, + "Submodule": 1, + "SubmoduleNC": 1, + "#O": 2, + "": 2, + "domain.": 1, + "form": 2, + "Oper=": 6, + "smaller": 1, + "larger": 1, + "9": 1, + "collection.": 1, + "DeclareOperation": 2, + "takes": 1, + "arguments": 1, + "different": 2, + "let": 1, + "their": 1, + "intersection.": 1, + "AsStruct": 2, + "equal": 1, + "Substruct": 1, + "common": 1, + "Struct": 1, + "basis.": 1, + "handle": 1, + "intersections": 1, + "algebras": 2, + "ideals": 2, + "sided": 1, + "ideals.": 1, + "": 2, + "": 2, + "nonnegative": 2, + "integer": 2, + "length": 1, + "An": 2, + "alternative": 2, + "construct": 2, + "above": 2, + "FullRowModule": 2, + "FullMatrixSpace": 2, + "": 1, + "positive": 1, + "integers": 1, + "m": 8, + "fact": 1, + "FullMatrixModule": 3, + "fixed": 1, + "lies": 1, + "category": 1, + "DeclareCategory": 1, + "IsDomain": 1, + "Returns": 1, + "": 1, + "Called": 2, + "Special": 1, + "provided": 1, + "domains.": 1, + "OrthogonalSpaceInFullRowSpace": 1, + "complement": 1, + "#P": 1, + "": 1, + "mapping": 2, + "homomorphism": 1, + "linear": 1, + "source": 2, + "range": 1, + "hold": 1, + "DeclareProperty": 2, "Magic.gi": 1, "AutoDoc": 4, - "package": 10, - "Copyright": 6, "Max": 2, "Horn": 2, "JLU": 2, "Giessen": 2, "Sebastian": 2, "Gutsche": 2, - "University": 4, "Kaiserslautern": 2, - "BindGlobal": 7, - "function": 37, "str": 8, "suffix": 3, - "local": 16, - "n": 31, - "m": 8, - "Length": 14, - "return": 41, - "{": 21, - "[": 145, - "-": 67, - "+": 9, - "]": 169, - "}": 21, - "end": 34, - "i": 25, - "while": 5, - "<": 17, - "do": 18, - "od": 15, - "if": 103, - "then": 128, - "fi": 91, "d": 16, - "tmp": 20, - "not": 49, "IsDirectoryPath": 1, "CreateDir": 2, - "#": 73, - "Note": 3, "currently": 1, "undocumented": 1, - "fail": 18, - "Error": 7, "LastSystemError": 1, ".message": 1, - "false": 7, - "true": 21, "pkg": 32, "subdirs": 2, "extensions": 1, "d_rel": 6, "files": 4, - "result": 9, - "for": 53, - "in": 64, "DirectoriesPackageLibrary": 2, - "IsEmpty": 6, "continue": 3, "Directory": 5, "DirectoryContents": 1, "Sort": 1, "AUTODOC_GetSuffix": 2, "IsReadableFile": 2, - "Filename": 8, - "Add": 4, "Make": 1, - "this": 15, "callable": 1, - "with": 24, - "the": 136, "package_name": 1, "AutoDocWorksheet.": 1, "Which": 1, - "will": 5, "create": 1, "worksheet": 1, - "InstallGlobalFunction": 5, - "arg": 16, "package_info": 3, "opt": 3, "scaffold": 12, @@ -23213,9 +26129,7 @@ "position_document_class": 7, "gapdoc_latex_option_record": 4, "LowercaseString": 3, - "rec": 20, "DirectoryCurrent": 1, - "else": 25, "PackageInfo": 1, "key": 3, "val": 4, @@ -23223,12 +26137,9 @@ "opt.": 1, "IsBound": 39, "opt.dir": 4, - "elif": 21, "IsString": 7, - "or": 13, "IsDirectory": 1, "AUTODOC_CreateDirIfMissing": 1, - "Print": 24, "opt.scaffold": 5, "package_info.AutoDoc": 3, "IsRecord": 7, @@ -23236,11 +26147,9 @@ "AUTODOC_APPEND_RECORD_WRITEONCE": 3, "AUTODOC_WriteOnce": 10, "opt.autodoc": 5, - "Concatenation": 15, "package_info.Dependencies.NeededOtherPackages": 1, "package_info.Dependencies.SuggestedOtherPackages": 1, "ForAny": 1, - "x": 14, "autodoc.files": 7, "autodoc.scan_dirs": 5, "autodoc.level": 3, @@ -23260,14 +26169,11 @@ "Set": 1, "Number": 1, "ListWithIdenticalEntries": 1, - "List": 6, - "f": 11, "DocumentationTree": 1, "autodoc.section_intros": 2, "AUTODOC_PROCESS_INTRO_STRINGS": 1, "Tree": 2, "AutoDocScanFiles": 1, - "PackageName": 2, "scaffold.TitlePage": 4, "scaffold.TitlePage.Title": 2, ".TitlePage.Title": 2, @@ -23279,7 +26185,6 @@ "scaffold.document_class": 7, "PositionSublist": 5, "GAPDoc2LaTeXProcs.Head": 14, - "..": 6, "scaffold.latex_header_file": 2, "StringFile": 2, "scaffold.gapdoc_latex_options": 4, @@ -23305,712 +26210,6 @@ "maketest.folder": 3, "maketest.scan_dir": 3, "CreateMakeTest": 1, - "vspc.gd": 1, - "library": 2, - "Thomas": 2, - "Breuer": 2, - "#Y": 6, - "C": 11, - "Lehrstuhl": 2, - "D": 36, - "r": 2, - "Mathematik": 2, - "RWTH": 2, - "Aachen": 2, - "Germany": 2, - "School": 2, - "Math": 2, - "Comp.": 2, - "Sci.": 2, - "St": 2, - "Andrews": 2, - "Scotland": 2, - "The": 21, - "Group": 3, - "declares": 1, - "operations": 2, - "vector": 67, - "spaces.": 4, - "bases": 5, - "free": 3, - "left": 15, - "modules": 1, - "can": 12, - "be": 24, - "found": 1, - "": 10, - "lib/basis.gd": 1, - ".": 257, - "IsLeftOperatorRing": 1, - "IsLeftOperatorAdditiveGroup": 2, - "IsRing": 1, - "IsAssociativeLOpDProd": 2, - "#T": 6, - "really": 4, - "IsLeftOperatorRingWithOne": 2, - "IsRingWithOne": 1, - "IsLeftVectorSpace": 3, - "": 38, - "IsVectorSpace": 26, - "<#GAPDoc>": 17, - "Label=": 19, - "A": 9, - "": 12, - "space": 74, - "": 12, - "&": 37, - "module": 2, - "see": 30, - "nbsp": 30, - "": 71, - "Func=": 40, - "over": 24, - "division": 15, - "ring": 14, - "Chapter": 3, - "Chap=": 3, - "