From 7c1716aa1ea0464185cb4a8904ee7f4d38511c04 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Dani=C3=ABl=20W=2E=20Crompton?=
Date: Fri, 6 Sep 2013 01:47:14 +0200
Subject: [PATCH 001/229] This pull request solves issue #674, see it for
details.
---
.gitignore | 1 +
lib/linguist/languages.yml | 2 +-
lib/linguist/samples.json | 4 +
samples/Pike/Error.pmod | 38 ++++
samples/Pike/FakeFile.pike | 360 +++++++++++++++++++++++++++++++++++++
5 files changed, 404 insertions(+), 1 deletion(-)
create mode 100644 samples/Pike/Error.pmod
create mode 100644 samples/Pike/FakeFile.pike
diff --git a/.gitignore b/.gitignore
index b844b143..d8647b47 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
Gemfile.lock
+.idea/
diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml
index 11e7a62d..83856098 100644
--- a/lib/linguist/languages.yml
+++ b/lib/linguist/languages.yml
@@ -1020,7 +1020,7 @@ Perl:
Pike:
type: programming
color: "#066ab2"
- lexer: C
+ lexer: Pike
primary_extension: .pike
extensions:
- .pmod
diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json
index b0c0f6bb..23d3c788 100644
--- a/lib/linguist/samples.json
+++ b/lib/linguist/samples.json
@@ -217,6 +217,10 @@
".php",
".script!"
],
+ "Pike": [
+ ".pmod",
+ ".pike"
+ ],
"PogoScript": [
".pogo"
],
diff --git a/samples/Pike/Error.pmod b/samples/Pike/Error.pmod
new file mode 100644
index 00000000..808ecb0e
--- /dev/null
+++ b/samples/Pike/Error.pmod
@@ -0,0 +1,38 @@
+#pike __REAL_VERSION__
+
+constant Generic = __builtin.GenericError;
+
+constant Index = __builtin.IndexError;
+
+constant BadArgument = __builtin.BadArgumentError;
+
+constant Math = __builtin.MathError;
+
+constant Resource = __builtin.ResourceError;
+
+constant Permission = __builtin.PermissionError;
+
+constant Decode = __builtin.DecodeError;
+
+constant Cpp = __builtin.CppError;
+
+constant Compilation = __builtin.CompilationError;
+
+constant MasterLoad = __builtin.MasterLoadError;
+
+constant ModuleLoad = __builtin.ModuleLoadError;
+
+//! Returns an Error object for any argument it receives. If the
+//! argument already is an Error object or is empty, it does nothing.
+object mkerror(mixed error)
+{
+ if (error == UNDEFINED)
+ return error;
+ if (objectp(error) && error->is_generic_error)
+ return error;
+ if (arrayp(error))
+ return Error.Generic(@error);
+ if (stringp(error))
+ return Error.Generic(error);
+ return Error.Generic(sprintf("%O", error));
+}
\ No newline at end of file
diff --git a/samples/Pike/FakeFile.pike b/samples/Pike/FakeFile.pike
new file mode 100644
index 00000000..48f3ea64
--- /dev/null
+++ b/samples/Pike/FakeFile.pike
@@ -0,0 +1,360 @@
+#pike __REAL_VERSION__
+
+//! A string wrapper that pretends to be a @[Stdio.File] object
+//! in addition to some features of a @[Stdio.FILE] object.
+
+
+//! This constant can be used to distinguish a FakeFile object
+//! from a real @[Stdio.File] object.
+constant is_fake_file = 1;
+
+protected string data;
+protected int ptr;
+protected int(0..1) r;
+protected int(0..1) w;
+protected int mtime;
+
+protected function read_cb;
+protected function read_oob_cb;
+protected function write_cb;
+protected function write_oob_cb;
+protected function close_cb;
+
+//! @seealso
+//! @[Stdio.File()->close()]
+int close(void|string direction) {
+ direction = lower_case(direction||"rw");
+ int cr = has_value(direction, "r");
+ int cw = has_value(direction, "w");
+
+ if(cr) {
+ r = 0;
+ }
+
+ if(cw) {
+ w = 0;
+ }
+
+ // FIXME: Close callback
+ return 1;
+}
+
+//! @decl void create(string data, void|string type, void|int pointer)
+//! @seealso
+//! @[Stdio.File()->create()]
+void create(string _data, void|string type, int|void _ptr) {
+ if(!_data) error("No data string given to FakeFile.\n");
+ data = _data;
+ ptr = _ptr;
+ mtime = time();
+ if(type) {
+ type = lower_case(type);
+ if(has_value(type, "r"))
+ r = 1;
+ if(has_value(type, "w"))
+ w = 1;
+ }
+ else
+ r = w = 1;
+}
+
+protected string make_type_str() {
+ string type = "";
+ if(r) type += "r";
+ if(w) type += "w";
+ return type;
+}
+
+//! @seealso
+//! @[Stdio.File()->dup()]
+this_program dup() {
+ return this_program(data, make_type_str(), ptr);
+}
+
+//! Always returns 0.
+//! @seealso
+//! @[Stdio.File()->errno()]
+int errno() { return 0; }
+
+//! Returns size and the creation time of the string.
+Stdio.Stat stat() {
+ Stdio.Stat st = Stdio.Stat();
+ st->size = sizeof(data);
+ st->mtime=st->ctime=mtime;
+ st->atime=time();
+ return st;
+}
+
+//! @seealso
+//! @[Stdio.File()->line_iterator()]
+String.SplitIterator line_iterator(int|void trim) {
+ if(trim)
+ return String.SplitIterator( data-"\r", '\n' );
+ return String.SplitIterator( data, '\n' );
+}
+
+protected mixed id;
+
+//! @seealso
+//! @[Stdio.File()->query_id()]
+mixed query_id() { return id; }
+
+//! @seealso
+//! @[Stdio.File()->set_id()]
+void set_id(mixed _id) { id = _id; }
+
+//! @seealso
+//! @[Stdio.File()->read_function()]
+function(:string) read_function(int nbytes) {
+ return lambda() { return read(nbytes); };
+}
+
+//! @seealso
+//! @[Stdio.File()->peek()]
+int(-1..1) peek(int|float|void timeout) {
+ if(!r) return -1;
+ if(ptr >= sizeof(data)) return 0;
+ return 1;
+}
+
+//! Always returns 0.
+//! @seealso
+//! @[Stdio.File()->query_address()]
+string query_address(void|int(0..1) is_local) { return 0; }
+
+//! @seealso
+//! @[Stdio.File()->read()]
+string read(void|int(0..) len, void|int(0..1) not_all) {
+ if(!r) return 0;
+ if (len < 0) error("Cannot read negative number of characters.\n");
+ int start=ptr;
+ ptr += len;
+ if(zero_type(len) || ptr>sizeof(data))
+ ptr = sizeof(data);
+
+ // FIXME: read callback
+ return data[start..ptr-1];
+}
+
+//! @seealso
+//! @[Stdio.FILE()->gets()]
+string gets() {
+ if(!r) return 0;
+ string ret;
+ sscanf(data,"%*"+(string)ptr+"s%[^\n]",ret);
+ if(ret)
+ {
+ ptr+=sizeof(ret)+1;
+ if(ptr>sizeof(data))
+ {
+ ptr=sizeof(data);
+ if(!sizeof(ret))
+ ret = 0;
+ }
+ }
+
+ // FIXME: read callback
+ return ret;
+}
+
+//! @seealso
+//! @[Stdio.FILE()->getchar()]
+int getchar() {
+ if(!r) return 0;
+ int c;
+ if(catch(c=data[ptr]))
+ c=-1;
+ else
+ ptr++;
+
+ // FIXME: read callback
+ return c;
+}
+
+//! @seealso
+//! @[Stdio.FILE()->unread()]
+void unread(string s) {
+ if(!r) return;
+ if(data[ptr-sizeof(s)..ptr-1]==s)
+ ptr-=sizeof(s);
+ else
+ {
+ data=s+data[ptr..];
+ ptr=0;
+ }
+}
+
+//! @seealso
+//! @[Stdio.File()->seek()]
+int seek(int pos, void|int mult, void|int add) {
+ if(mult)
+ pos = pos*mult+add;
+ if(pos<0)
+ {
+ pos = sizeof(data)+pos;
+ if( pos < 0 )
+ pos = 0;
+ }
+ ptr = pos;
+ if( ptr > strlen( data ) )
+ ptr = strlen(data);
+ return ptr;
+}
+
+//! Always returns 1.
+//! @seealso
+//! @[Stdio.File()->sync()]
+int(1..1) sync() { return 1; }
+
+//! @seealso
+//! @[Stdio.File()->tell()]
+int tell() { return ptr; }
+
+//! @seealso
+//! @[Stdio.File()->truncate()]
+int(0..1) truncate(int length) {
+ data = data[..length-1];
+ return sizeof(data)==length;
+}
+
+//! @seealso
+//! @[Stdio.File()->write()]
+int(-1..) write(string|array(string) str, mixed ... extra) {
+ if(!w) return -1;
+ if(arrayp(str)) str=str*"";
+ if(sizeof(extra)) str=sprintf(str, @extra);
+
+ if(ptr==sizeof(data)) {
+ data += str;
+ ptr = sizeof(data);
+ }
+ else if(sizeof(str)==1)
+ data[ptr++] = str[0];
+ else {
+ data = data[..ptr-1] + str + data[ptr+sizeof(str)..];
+ ptr += sizeof(str);
+ }
+
+ // FIXME: write callback
+ return sizeof(str);
+}
+
+//! @seealso
+//! @[Stdio.File()->set_blocking]
+void set_blocking() {
+ close_cb = 0;
+ read_cb = 0;
+ read_oob_cb = 0;
+ write_cb = 0;
+ write_oob_cb = 0;
+}
+
+//! @seealso
+//! @[Stdio.File()->set_blocking_keep_callbacks]
+void set_blocking_keep_callbacks() { }
+
+//! @seealso
+//! @[Stdio.File()->set_blocking]
+void set_nonblocking(function rcb, function wcb, function ccb,
+ function rocb, function wocb) {
+ read_cb = rcb;
+ write_cb = wcb;
+ close_cb = ccb;
+ read_oob_cb = rocb;
+ write_oob_cb = wocb;
+}
+
+//! @seealso
+//! @[Stdio.File()->set_blocking_keep_callbacks]
+void set_nonblocking_keep_callbacks() { }
+
+
+//! @seealso
+//! @[Stdio.File()->set_close_callback]
+void set_close_callback(function cb) { close_cb = cb; }
+
+//! @seealso
+//! @[Stdio.File()->set_read_callback]
+void set_read_callback(function cb) { read_cb = cb; }
+
+//! @seealso
+//! @[Stdio.File()->set_read_oob_callback]
+void set_read_oob_callback(function cb) { read_oob_cb = cb; }
+
+//! @seealso
+//! @[Stdio.File()->set_write_callback]
+void set_write_callback(function cb) { write_cb = cb; }
+
+//! @seealso
+//! @[Stdio.File()->set_write_oob_callback]
+void set_write_oob_callback(function cb) { write_oob_cb = cb; }
+
+
+//! @seealso
+//! @[Stdio.File()->query_close_callback]
+function query_close_callback() { return close_cb; }
+
+//! @seealso
+//! @[Stdio.File()->query_read_callback]
+function query_read_callback() { return read_cb; }
+
+//! @seealso
+//! @[Stdio.File()->query_read_oob_callback]
+function query_read_oob_callback() { return read_oob_cb; }
+
+//! @seealso
+//! @[Stdio.File()->query_write_callback]
+function query_write_callback() { return write_cb; }
+
+//! @seealso
+//! @[Stdio.File()->query_write_oob_callback]
+function query_write_oob_callback() { return write_oob_cb; }
+
+string _sprintf(int t) {
+ return t=='O' && sprintf("%O(%d,%O)", this_program, sizeof(data),
+ make_type_str());
+}
+
+
+// FakeFile specials.
+
+//! A FakeFile can be casted to a string.
+mixed cast(string to) {
+ switch(to) {
+ case "string": return data;
+ case "object": return this;
+ }
+ error("Can not cast object to %O.\n", to);
+}
+
+//! Sizeof on a FakeFile returns the size of its contents.
+int(0..) _sizeof() {
+ return sizeof(data);
+}
+
+//! @ignore
+
+#define NOPE(X) mixed X (mixed ... args) { error("This is a FakeFile. %s is not available.\n", #X); }
+NOPE(assign);
+NOPE(async_connect);
+NOPE(connect);
+NOPE(connect_unix);
+NOPE(open);
+NOPE(open_socket);
+NOPE(pipe);
+NOPE(tcgetattr);
+NOPE(tcsetattr);
+
+// Stdio.Fd
+NOPE(dup2);
+NOPE(lock); // We could implement this
+NOPE(mode); // We could implement this
+NOPE(proxy); // We could implement this
+NOPE(query_fd);
+NOPE(read_oob);
+NOPE(set_close_on_exec);
+NOPE(set_keepalive);
+NOPE(trylock); // We could implement this
+NOPE(write_oob);
+
+//! @endignore
\ No newline at end of file
From bcefa61fe0c4f73cee254340e8b9f28858daf47a Mon Sep 17 00:00:00 2001
From: Daniel Standage
Date: Thu, 14 Nov 2013 22:29:41 -0500
Subject: [PATCH 002/229] Added new Rscript code
---
samples/R/expr-dist | 101 ++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 101 insertions(+)
create mode 100755 samples/R/expr-dist
diff --git a/samples/R/expr-dist b/samples/R/expr-dist
new file mode 100755
index 00000000..1f7ab280
--- /dev/null
+++ b/samples/R/expr-dist
@@ -0,0 +1,101 @@
+#!/usr/bin/env Rscript
+
+# Copyright (c) 2013 Daniel S. Standage, released under MIT license
+#
+# expr-dist: plot distributions of expression values before and after
+# normalization; visually confirm that normalization worked
+# as expected
+#
+# Program input is a matrix of expression values, each row corresponding to a
+# molecule (gene, transcript, etc) and each row corresponding to that molecule's
+# expression level or abundance. The program expects the rows and columns to be
+# named, and was tested primarily on output produced by the
+# 'rsem-generate-data-matrix' script distributed with the RSEM package.
+#
+# The program plots the distributions of the logged expression values by sample
+# as provided, then normalizes the values, and finally plots the distribution of
+# the logged normalized expression values by sample. The expectation is that all
+# samples' distributions will have a similar shape but different medians prior
+# to normalization, and that post normalization they will all have an identical
+# median to facilitate cross-sample comparison.
+
+
+# MedianNorm function borrowed from the EBSeq library version 1.1.6
+# See http://www.bioconductor.org/packages/devel/bioc/html/EBSeq.html
+MedianNorm <- function(data)
+{
+ geomeans <- exp( rowMeans(log(data)) )
+ apply(data, 2, function(cnts) median((cnts/geomeans)[geomeans > 0]))
+}
+
+library("getopt")
+print_usage <- function(file=stderr())
+{
+ cat("
+expr-dist: see source code for full description
+Usage: expr-dist [options] < expr-matrix.txt
+ Options:
+ -h|--help: print this help message and exit
+ -o|--out: STRING prefix for output files; default is 'expr-dist'
+ -r|--res: INT resolution (dpi) of generated graphics; default is 150
+ -t|--height: INT height (pixels) of generated graphics; default is 1200
+ -w|--width: INT width (pixels) of generated graphics; default is 1200
+ -y|--ylim: REAL the visible range of the Y axis depends on the first
+ distribution plotted; if other distributions are getting
+ cut off, use this setting to override the default\n\n")
+}
+
+spec <- matrix( c("help", 'h', 0, "logical",
+ "out", 'o', 1, "character",
+ "res", 'r', 1, "integer",
+ "height", 't', 1, "integer",
+ "width", 'w', 1, "integer",
+ "ylim", 'y', 1, "double"),
+ byrow=TRUE, ncol=4)
+opt <- getopt(spec)
+if(!is.null(opt$help))
+{
+ print_usage(file=stdout())
+ q(status=1)
+}
+if(is.null(opt$height)) { opt$height <- 1200 }
+if(is.null(opt$out)) { opt$out <- "expr-dist" }
+if(is.null(opt$res)) { opt$res <- 150 }
+if(is.null(opt$width)) { opt$width <- 1200 }
+if(!is.null(opt$ylim)) { opt$ylim <- c(0, opt$ylim) }
+
+# Load data, determine number of samples
+data <- read.table(file("stdin"), header=TRUE, sep="\t", quote="")
+nsamp <- dim(data)[2] - 1
+data <- data[,1:nsamp+1]
+
+# Plot distribution of expression values before normalization
+outfile <- sprintf("%s-median.png", opt$out)
+png(outfile, height=opt$height, width=opt$width, res=opt$res)
+h <- hist(log(data[,1]), plot=FALSE)
+plot(h$mids, h$density, type="l", col=rainbow(nsamp)[1], main="",
+ xlab="Log expression value", ylab="Proportion of molecules", ylim=opt$ylim)
+for(i in 2:nsamp)
+{
+ h <- hist(log(data[,i]), plot=FALSE)
+ lines(h$mids, h$density, col=rainbow(nsamp)[i])
+}
+devnum <- dev.off()
+
+# Normalize by median
+size.factors <- MedianNorm(data.matrix(data))
+data.norm <- t(apply(data, 1, function(x){ x / size.factors }))
+
+# Plot distribution of normalized expression values
+outfile <- sprintf("%s-median-norm.png", opt$out)
+png(outfile, height=opt$height, width=opt$width, res=opt$res)
+h <- hist(log(data.norm[,1]), plot=FALSE)
+plot(h$mids, h$density, type="l", col=rainbow(nsamp)[1], main="",
+ xlab="Log normalized expression value", ylab="Proportion of molecules",
+ ylim=opt$ylim)
+for(i in 2:nsamp)
+{
+ h <- hist(log(data.norm[,i]), plot=FALSE)
+ lines(h$mids, h$density, col=rainbow(nsamp)[i])
+}
+devnum <- dev.off()
From dfeaaaa17e95dae259a2b9b71a1d450974cf64af Mon Sep 17 00:00:00 2001
From: Daniel Standage
Date: Thu, 14 Nov 2013 22:47:05 -0500
Subject: [PATCH 003/229] Move file location based on Travis error message
---
samples/R/{ => filenames}/expr-dist | 0
1 file changed, 0 insertions(+), 0 deletions(-)
rename samples/R/{ => filenames}/expr-dist (100%)
diff --git a/samples/R/expr-dist b/samples/R/filenames/expr-dist
similarity index 100%
rename from samples/R/expr-dist
rename to samples/R/filenames/expr-dist
From edf19a0941dbe5db242707b614bfe8fc6e2bc1d8 Mon Sep 17 00:00:00 2001
From: Daniel Standage
Date: Thu, 14 Nov 2013 23:00:19 -0500
Subject: [PATCH 004/229] Does adding Rscript as an alias help?
---
lib/linguist/languages.yml | 2 ++
1 file changed, 2 insertions(+)
diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml
index 014c5304..334af6ef 100644
--- a/lib/linguist/languages.yml
+++ b/lib/linguist/languages.yml
@@ -1235,6 +1235,8 @@ R:
color: "#198ce7"
lexer: S
primary_extension: .r
+ aliases:
+ - Rscript
extensions:
- .R
filenames:
From 3ecc1f883cb7731bc7dbb0c9cc0b46c7951c9b9e Mon Sep 17 00:00:00 2001
From: Eric Lofgren
Date: Tue, 3 Dec 2013 14:48:55 -0500
Subject: [PATCH 005/229] Basic SAS
Just an entry for SAS with the basic .sas file extension and two
examples.
---
lib/linguist/languages.yml | 5 +++++
samples/SAS/data.sas | 17 +++++++++++++++++
samples/SAS/proc.sas | 15 +++++++++++++++
3 files changed, 37 insertions(+)
create mode 100644 samples/SAS/data.sas
create mode 100644 samples/SAS/proc.sas
diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml
index 17545309..b99844f5 100644
--- a/lib/linguist/languages.yml
+++ b/lib/linguist/languages.yml
@@ -1353,6 +1353,11 @@ Rust:
color: "#dea584"
primary_extension: .rs
+SAS:
+ type: programming
+ color: "#1E90FF"
+ primary_extension: .sas
+
SCSS:
type: markup
group: CSS
diff --git a/samples/SAS/data.sas b/samples/SAS/data.sas
new file mode 100644
index 00000000..e4e9bb07
--- /dev/null
+++ b/samples/SAS/data.sas
@@ -0,0 +1,17 @@
+/* Example DATA step code for linguist */
+
+libname source 'C:\path\to\file'
+
+data work.working_copy;
+ set source.original_file.sas7bdat;
+run;
+
+data work.working_copy;
+ set work.working_copy;
+ if Purge = 1 then delete;
+run;
+
+data work.working_copy;
+ set work.working_copy;
+ if ImportantVariable = . then MissingFlag = 1;
+run;
\ No newline at end of file
diff --git a/samples/SAS/proc.sas b/samples/SAS/proc.sas
new file mode 100644
index 00000000..80cc1676
--- /dev/null
+++ b/samples/SAS/proc.sas
@@ -0,0 +1,15 @@
+/* PROC examples for Linguist */
+
+proc surveyselect data=work.data out=work.boot method=urs reps=20000 seed=2156 sampsize=28 outhits;
+ samplingunit Site;
+run;
+
+PROC MI data=work.boot out=work.bootmi nimpute=30 seed=5686 round = 1;
+ By Replicate;
+ VAR Variable1 Variable2;
+run;
+
+proc logistic data=work.bootmi descending;
+ By Replicate _Imputation_;
+ model Outcome = Variable1 Variable2 / risklimits;
+run;
\ No newline at end of file
From 5fb6f34d8a0eae531974fcc55a7495596481193d Mon Sep 17 00:00:00 2001
From: Pat Pannuto
Date: Thu, 5 Dec 2013 14:55:00 -0500
Subject: [PATCH 006/229] Add misser lexer entry for nesC to languages.yml
The nesC entry in the languages.yml file was missing a lexer entry
and thus wasn't getting picked up. This adds the required lexer line.
---
lib/linguist/languages.yml | 1 +
1 file changed, 1 insertion(+)
diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml
index 8fac5414..14355256 100644
--- a/lib/linguist/languages.yml
+++ b/lib/linguist/languages.yml
@@ -1734,6 +1734,7 @@ mupad:
nesC:
type: programming
color: "#ffce3b"
+ lexer: nesc
primary_extension: .nc
ooc:
From 89795ebd1facab3f37cda30248e3fec6b7eed288 Mon Sep 17 00:00:00 2001
From: elofgren
Date: Thu, 5 Dec 2013 17:33:20 -0500
Subject: [PATCH 007/229] bundle fix
Lets see if this fixes the failing tests
---
lib/linguist/samples.json | 58 +++++++++++++++++++++++++++++++++++++--
1 file changed, 55 insertions(+), 3 deletions(-)
diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json
index ac4fabfd..361099da 100644
--- a/lib/linguist/samples.json
+++ b/lib/linguist/samples.json
@@ -323,6 +323,9 @@
"Rust": [
".rs"
],
+ "SAS": [
+ ".sas"
+ ],
"Sass": [
".sass",
".scss"
@@ -477,8 +480,8 @@
".gemrc"
]
},
- "tokens_total": 423589,
- "languages_total": 488,
+ "tokens_total": 423682,
+ "languages_total": 490,
"tokens": {
"ABAP": {
"*/**": 1,
@@ -38793,6 +38796,53 @@
"running_threads2": 2,
"port2.recv": 1
},
+ "SAS": {
+ "libname": 1,
+ "source": 1,
+ "data": 6,
+ "work.working_copy": 5,
+ ";": 22,
+ "set": 3,
+ "source.original_file.sas7bdat": 1,
+ "run": 6,
+ "if": 2,
+ "Purge": 1,
+ "then": 2,
+ "delete": 1,
+ "ImportantVariable": 1,
+ ".": 1,
+ "MissingFlag": 1,
+ "proc": 2,
+ "surveyselect": 1,
+ "work.data": 1,
+ "out": 2,
+ "work.boot": 2,
+ "method": 1,
+ "urs": 1,
+ "reps": 1,
+ "seed": 2,
+ "sampsize": 1,
+ "outhits": 1,
+ "samplingunit": 1,
+ "Site": 1,
+ "PROC": 1,
+ "MI": 1,
+ "work.bootmi": 2,
+ "nimpute": 1,
+ "round": 1,
+ "By": 2,
+ "Replicate": 2,
+ "VAR": 1,
+ "Variable1": 2,
+ "Variable2": 2,
+ "logistic": 1,
+ "descending": 1,
+ "_Imputation_": 1,
+ "model": 1,
+ "Outcome": 1,
+ "/": 1,
+ "risklimits": 1
+ },
"Sass": {
"blue": 7,
"#3bbfce": 2,
@@ -43457,6 +43507,7 @@
"RobotFramework": 483,
"Ruby": 3862,
"Rust": 3566,
+ "SAS": 93,
"Sass": 56,
"Scala": 420,
"Scaml": 4,
@@ -43583,6 +43634,7 @@
"RobotFramework": 3,
"Ruby": 17,
"Rust": 1,
+ "SAS": 2,
"Sass": 2,
"Scala": 3,
"Scaml": 1,
@@ -43614,5 +43666,5 @@
"Xtend": 2,
"YAML": 1
},
- "md5": "8a3ac1f1219fa2ba31eb0e5d6a22ee58"
+ "md5": "90558028ff3acc7def2df99638aba7fc"
}
\ No newline at end of file
From aa78060e41d079f68be7973cee1e7bef6f51e370 Mon Sep 17 00:00:00 2001
From: waddlesplash
Date: Tue, 10 Dec 2013 10:23:13 -0500
Subject: [PATCH 008/229] Adding QMake (Make-like) language.
Mostly because the file extension conflicts with that of Prolog.
---
lib/linguist/languages.yml | 6 +
lib/linguist/samples.json | 9869 +++++++++++++++++++----------------
samples/QMake/complex.pro | 30 +
samples/QMake/functions.pri | 8 +
samples/QMake/qmake.script! | 2 +
samples/QMake/simple.pro | 17 +
6 files changed, 5449 insertions(+), 4483 deletions(-)
create mode 100644 samples/QMake/complex.pro
create mode 100644 samples/QMake/functions.pri
create mode 100644 samples/QMake/qmake.script!
create mode 100644 samples/QMake/simple.pro
diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml
index 4838d2e2..ad4f4c97 100644
--- a/lib/linguist/languages.yml
+++ b/lib/linguist/languages.yml
@@ -1296,6 +1296,12 @@ QML:
color: "#44a51c"
primary_extension: .qml
+QMake:
+ primary_extension: .pro
+ lexer: Text only
+ extensions:
+ - .pri
+
R:
type: programming
color: "#198ce7"
diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json
index 83f5d00d..04af4454 100644
--- a/lib/linguist/samples.json
+++ b/lib/linguist/samples.json
@@ -15,6 +15,11 @@
"Arduino": [
".ino"
],
+ "AsciiDoc": [
+ ".adoc",
+ ".asc",
+ ".asciidoc"
+ ],
"AutoHotkey": [
".ahk"
],
@@ -34,12 +39,6 @@
".c",
".h"
],
- "C++": [
- ".cc",
- ".cpp",
- ".h",
- ".hpp"
- ],
"Ceylon": [
".ceylon"
],
@@ -67,6 +66,9 @@
"Coq": [
".v"
],
+ "Creole": [
+ ".creole"
+ ],
"CSS": [
".css"
],
@@ -103,10 +105,6 @@
"fish": [
".fish"
],
- "Forth": [
- ".forth",
- ".fth"
- ],
"GAS": [
".s"
],
@@ -152,7 +150,8 @@
".script!"
],
"JSON": [
- ".json"
+ ".json",
+ ".lock"
],
"Julia": [
".jl"
@@ -163,12 +162,6 @@
"KRL": [
".krl"
],
- "Lasso": [
- ".las",
- ".lasso",
- ".lasso9",
- ".ldml"
- ],
"Less": [
".less"
],
@@ -210,12 +203,12 @@
".maxpat",
".mxt"
],
+ "MediaWiki": [
+ ".mediawiki"
+ ],
"Monkey": [
".monkey"
],
- "MoonScript": [
- ".moon"
- ],
"Nemerle": [
".n"
],
@@ -254,6 +247,9 @@
".cls",
".p"
],
+ "Org": [
+ ".org"
+ ],
"Oxygene": [
".oxygene",
".pas"
@@ -299,6 +295,11 @@
".py",
".script!"
],
+ "QMake": [
+ ".pri",
+ ".pro",
+ ".script!"
+ ],
"R": [
".R",
".script!"
@@ -309,6 +310,28 @@
"Ragel in Ruby Host": [
".rl"
],
+ "RDoc": [
+ ".rdoc"
+ ],
+ "C++": [
+ ".cc",
+ ".cpp",
+ ".h",
+ ".hpp"
+ ],
+ "Forth": [
+ ".forth",
+ ".fth"
+ ],
+ "Lasso": [
+ ".las",
+ ".lasso",
+ ".lasso9",
+ ".ldml"
+ ],
+ "MoonScript": [
+ ".moon"
+ ],
"Rebol": [
".r"
],
@@ -482,8 +505,8 @@
".gemrc"
]
},
- "tokens_total": 424139,
- "languages_total": 488,
+ "tokens_total": 426040,
+ "languages_total": 500,
"tokens": {
"ABAP": {
"*/**": 1,
@@ -1912,6 +1935,73 @@
"loop": 1,
"Serial.print": 1
},
+ "AsciiDoc": {
+ "Gregory": 2,
+ "Rom": 2,
+ "has": 2,
+ "written": 2,
+ "an": 2,
+ "AsciiDoc": 3,
+ "plugin": 2,
+ "for": 2,
+ "the": 2,
+ "Redmine": 2,
+ "project": 2,
+ "management": 2,
+ "application.": 2,
+ "https": 1,
+ "//github.com/foo": 1,
+ "-": 4,
+ "users/foo": 1,
+ "vicmd": 1,
+ "gif": 1,
+ "tag": 1,
+ "rom": 2,
+ "[": 2,
+ "]": 2,
+ "end": 1,
+ "berschrift": 1,
+ "*": 4,
+ "Codierungen": 1,
+ "sind": 1,
+ "verr": 1,
+ "ckt": 1,
+ "auf": 1,
+ "lteren": 1,
+ "Versionen": 1,
+ "von": 1,
+ "Ruby": 1,
+ "Home": 1,
+ "Page": 1,
+ "Example": 1,
+ "Articles": 1,
+ "Item": 6,
+ "Document": 1,
+ "Title": 1,
+ "Doc": 1,
+ "Writer": 1,
+ "": 1,
+ "idprefix": 1,
+ "id_": 1,
+ "Preamble": 1,
+ "paragraph.": 4,
+ "NOTE": 1,
+ "This": 1,
+ "is": 1,
+ "test": 1,
+ "only": 1,
+ "a": 1,
+ "test.": 1,
+ "Section": 3,
+ "A": 2,
+ "*Section": 3,
+ "A*": 2,
+ "Subsection": 1,
+ "B": 2,
+ "B*": 1,
+ ".Section": 1,
+ "list": 1
+ },
"AutoHotkey": {
"MsgBox": 1,
"Hello": 1,
@@ -5535,175 +5625,11 @@
"aeSetBeforeSleepProc": 1,
"aeMain": 1,
"aeDeleteEventLoop": 1,
- "": 1,
- "": 2,
"": 2,
- "//": 257,
- "rfUTF8_IsContinuationbyte": 1,
- "e.t.c.": 1,
- "rfFReadLine_UTF8": 5,
- "FILE*": 64,
- "utf8": 36,
- "uint32_t*": 34,
- "byteLength": 197,
- "bufferSize": 6,
- "eof": 53,
- "bytesN": 98,
- "bIndex": 5,
- "RF_NEWLINE_CRLF": 1,
- "newLineFound": 1,
- "*bufferSize": 1,
- "RF_OPTION_FGETS_READBYTESN": 5,
- "RF_MALLOC": 47,
- "tempBuff": 6,
- "RF_LF": 10,
- "buff": 95,
- "RF_SUCCESS": 14,
- "RE_FILE_EOF": 22,
- "found": 20,
- "*eofReached": 14,
- "LOG_ERROR": 64,
- "RF_HEXEQ_UI": 7,
- "rfFgetc_UTF32BE": 3,
- "else//": 14,
- "undo": 5,
- "peek": 5,
- "ahead": 5,
- "file": 6,
- "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,
- "RF_HEXEQ_C": 9,
- "fgetc": 9,
- "check": 8,
- "RE_FILE_READ": 2,
- "cp": 12,
- "c2": 13,
- "c3": 9,
- "c4": 5,
- "i_READ_CHECK": 20,
- "///": 4,
- "success": 4,
- "cc": 24,
- "we": 10,
- "more": 2,
- "bytes": 225,
- "xC0": 3,
- "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,
- "xE0": 2,
- "xF": 5,
- "decode": 6,
- "xF0": 2,
- "RF_HEXGE_C": 1,
- "xBF": 2,
- "//invalid": 1,
- "byte": 6,
- "are": 6,
- "xFF": 1,
- "//if": 1,
- "needing": 1,
- "than": 5,
- "swapE": 21,
- "v1": 38,
- "v2": 26,
- "rfUTILS_Endianess": 24,
- "RF_LITTLE_ENDIAN": 23,
- "fread": 12,
- "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,
- "depending": 1,
- "number": 19,
- "read": 1,
- "backwards": 1,
- "RE_UTF8_INVALID_SEQUENCE": 2,
- "REFU_IO_H": 2,
- "": 2,
- "opening": 2,
- "bracket": 4,
- "calling": 4,
- "C": 14,
- "xA": 1,
- "RF_CR": 1,
- "xD": 1,
- "REFU_WIN32_VERSION": 1,
- "i_PLUSB_WIN32": 2,
- "foff_rft": 2,
- "off64_t": 1,
- "///Fseek": 1,
- "and": 15,
- "Ftelll": 1,
- "definitions": 1,
- "rfFseek": 2,
- "i_FILE_": 16,
- "i_OFFSET_": 4,
- "i_WHENCE_": 4,
- "_fseeki64": 1,
- "rfFtell": 2,
- "_ftelli64": 1,
- "fseeko64": 1,
- "ftello64": 1,
- "i_DECLIMEX_": 121,
- "rfFReadLine_UTF16BE": 6,
- "rfFReadLine_UTF16LE": 4,
- "rfFReadLine_UTF32BE": 1,
- "rfFReadLine_UTF32LE": 4,
- "rfFgets_UTF32BE": 1,
- "RF_IAMHERE_FOR_DOXYGEN": 22,
- "rfPopen": 2,
- "command": 2,
- "i_rfPopen": 2,
- "i_CMD_": 2,
- "i_MODE_": 2,
- "i_rfLMS_WRAP2": 5,
- "rfPclose": 1,
- "stream": 3,
- "///closing": 1,
- "#endif//include": 1,
- "guards": 2,
+ "": 2,
"": 1,
"": 2,
+ "//": 257,
"local": 5,
"stack": 6,
"memory": 4,
@@ -5712,11 +5638,16 @@
"rfString_Create": 4,
"i_rfString_Create": 3,
"READ_VSNPRINTF_ARGS": 5,
+ "byteLength": 197,
"rfUTF8_VerifySequence": 7,
+ "buff": 95,
"RF_FAILURE": 24,
+ "LOG_ERROR": 64,
"RE_STRING_INIT_FAILURE": 8,
"buffAllocated": 11,
+ "RF_MALLOC": 47,
"RF_String": 27,
+ "bytes": 225,
"i_NVrfString_Create": 3,
"i_rfString_CreateLocal1": 3,
"RF_OPTION_SOURCE_ENCODING": 30,
@@ -5732,7 +5663,10 @@
"#elif": 14,
"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,
@@ -5740,13 +5674,19 @@
"copy": 4,
"UTF32": 4,
"into": 8,
+ "codepoint": 47,
+ "rfUTILS_SwapEndianUI": 11,
+ "uint32_t*": 34,
"RF_UTF32_BE//": 2,
+ "RF_BIG_ENDIAN": 10,
"": 2,
"any": 3,
"other": 16,
+ "than": 5,
"UTF": 17,
"8": 15,
"encode": 2,
+ "and": 15,
"them": 3,
"rfUTF8_Encode": 4,
"While": 2,
@@ -5754,6 +5694,7 @@
"create": 2,
"temporary": 4,
"given": 5,
+ "byte": 6,
"sequence": 6,
"could": 2,
"not": 6,
@@ -5767,7 +5708,9 @@
"normally": 1,
"since": 5,
"here": 5,
+ "we": 10,
"have": 2,
+ "check": 8,
"validity": 2,
"get": 4,
"Error": 2,
@@ -5792,6 +5735,7 @@
"Quitting": 2,
"proccess": 2,
"RE_LOCALMEMSTACK_INSUFFICIENT": 8,
+ "RE_UTF16_INVALID_SEQUENCE": 20,
"i_NVrfString_CreateLocal": 3,
"during": 1,
"rfString_Init": 3,
@@ -5801,6 +5745,8 @@
"rfString_Init_cp": 3,
"RF_HEXLE_UI": 8,
"RF_HEXGE_UI": 6,
+ "ff": 10,
+ "F": 38,
"C0": 3,
"ffff": 4,
"xFC0": 4,
@@ -5827,8 +5773,10 @@
"rfString_Create_f": 2,
"rfString_Init_f": 2,
"rfString_Create_UTF16": 2,
+ "endianess": 40,
"rfString_Init_UTF16": 3,
"utf8ByteLength": 34,
+ "utf8": 36,
"last": 1,
"utf": 1,
"null": 4,
@@ -5837,12 +5785,15 @@
"allocate": 1,
"same": 1,
"as": 4,
+ "else//": 14,
"different": 1,
"RE_INPUT": 1,
"ends": 3,
"rfString_Create_UTF32": 2,
"rfString_Init_UTF32": 3,
+ "swapE": 21,
"codeBuffer": 9,
+ "RF_HEXEQ_UI": 7,
"xFEFF": 1,
"big": 14,
"endian": 20,
@@ -5870,6 +5821,7 @@
"i_NVrfString_Init_nc": 3,
"rfString_Destroy": 2,
"rfString_Deinit": 3,
+ "uint16_t*": 11,
"rfString_ToUTF16": 4,
"charsN": 5,
"rfUTF8_Decode": 2,
@@ -5883,12 +5835,18 @@
"codePoint": 18,
"RF_STRING_INDEX_OUT_OF_BOUNDS": 2,
"rfString_BytePosToCodePoint": 7,
+ "RF_HEXEQ_C": 9,
+ "xC0": 3,
+ "xE0": 2,
+ "xF": 5,
+ "xF0": 2,
"rfString_BytePosToCharPos": 4,
"thisstrP": 32,
"bytepos": 12,
"before": 4,
"charPos": 8,
"byteI": 7,
+ "rfUTF8_IsContinuationByte": 12,
"i_rfString_Equal": 3,
"s1P": 2,
"s2P": 2,
@@ -5897,6 +5855,7 @@
"optionsP": 11,
"sstr": 39,
"*optionsP": 8,
+ "found": 20,
"RF_BITFLAG_ON": 5,
"RF_CASE_IGNORE": 2,
"strstr": 2,
@@ -5910,9 +5869,11 @@
"zero": 2,
"equals": 1,
"then": 1,
+ "are": 6,
"okay": 1,
"rfString_Equal": 4,
"RFS_": 8,
+ "RF_SUCCESS": 14,
"ERANGE": 1,
"RE_STRING_TOFLOAT_UNDERFLOW": 1,
"RE_STRING_TOFLOAT": 1,
@@ -5939,6 +5900,7 @@
"sstr2": 2,
"move": 12,
"rfString_FindBytePos": 10,
+ "i_DECLIMEX_": 121,
"rfString_Tokenize": 2,
"sep": 3,
"tokensN": 2,
@@ -5976,6 +5938,7 @@
"goes": 1,
"i_rfString_Remove": 6,
"numberP": 1,
+ "number": 19,
"*numberP": 1,
"occurences": 5,
"done": 1,
@@ -6038,6 +6001,7 @@
"rfString_PruneMiddleF": 2,
"got": 1,
"all": 2,
+ "needed": 10,
"i_rfString_Replace": 6,
"numP": 1,
"*numP": 1,
@@ -6081,8 +6045,13 @@
"res2": 2,
"rfString_StripEnd": 3,
"rfString_Create_fUTF8": 2,
+ "FILE*": 64,
+ "eof": 53,
"rfString_Init_fUTF8": 3,
+ "bytesN": 98,
+ "bufferSize": 6,
"unused": 3,
+ "rfFReadLine_UTF8": 5,
"rfString_Assign_fUTF8": 2,
"FILE*f": 2,
"utf8BufferSize": 4,
@@ -6091,11 +6060,14 @@
"rfString_Append": 5,
"rfString_Create_fUTF16": 2,
"rfString_Init_fUTF16": 3,
+ "rfFReadLine_UTF16LE": 4,
+ "rfFReadLine_UTF16BE": 6,
"rfString_Assign_fUTF16": 2,
"rfString_Append_fUTF16": 2,
"char*utf8": 3,
"rfString_Create_fUTF32": 2,
"rfString_Init_fUTF32": 3,
+ "rfFReadLine_UTF32LE": 4,
"<0)>": 1,
"Failure": 1,
"initialize": 1,
@@ -6103,6 +6075,7 @@
"Little": 1,
"Endian": 1,
"32": 1,
+ "file": 6,
"bytesN=": 1,
"rfString_Assign_fUTF32": 2,
"rfString_Append_fUTF32": 2,
@@ -6114,6 +6087,7 @@
"*encodingP": 1,
"fwrite": 5,
"logging": 5,
+ "rfUTILS_SwapEndianUS": 10,
"utf32": 10,
"i_WRITE_CHECK": 1,
"RE_FILE_WRITE": 1,
@@ -6122,12 +6096,17 @@
"RF_MODULE_STRINGS//": 1,
"included": 2,
"module": 3,
+ "": 2,
"": 1,
"argument": 1,
"wrapping": 1,
"functionality": 1,
"": 1,
"unicode": 2,
+ "opening": 2,
+ "bracket": 4,
+ "calling": 4,
+ "C": 14,
"xFF0FFFF": 1,
"rfUTF8_IsContinuationByte2": 1,
"b__": 3,
@@ -6167,6 +6146,7 @@
"been": 1,
"created": 1,
"assumed": 1,
+ "stream": 3,
"valid": 1,
"every": 1,
"performs": 1,
@@ -6201,6 +6181,7 @@
"*/": 1,
"#pragma": 1,
"pop": 1,
+ "RF_IAMHERE_FOR_DOXYGEN": 22,
"i_rfString_CreateLocal": 2,
"__VA_ARGS__": 66,
"RP_SELECT_FUNC_IF_NARGIS": 5,
@@ -6226,6 +6207,7 @@
"rfString_Assign": 2,
"i_DESTINATION_": 2,
"i_SOURCE_": 2,
+ "i_rfLMS_WRAP2": 5,
"rfString_ToUTF8": 2,
"i_STRING_": 2,
"rfString_ToCstr": 2,
@@ -6419,6 +6401,7 @@
"i_SELECT_RF_STRING_FWRITE": 1,
"i_SELECT_RF_STRING_FWRITE3": 1,
"i_STR_": 8,
+ "i_FILE_": 16,
"i_ENCODING_": 4,
"i_SELECT_RF_STRING_FWRITE2": 1,
"i_SELECT_RF_STRING_FWRITE1": 1,
@@ -6434,6 +6417,113 @@
"added": 1,
"you": 1,
"#endif//": 1,
+ "guards": 2,
+ "": 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,
+ "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,
+ "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,
"PY_SSIZE_T_CLEAN": 1,
"Py_PYTHON_H": 1,
"Python": 2,
@@ -8463,2289 +8553,6 @@
"yajl_get_bytes_consumed": 1,
"yajl_free_error": 1
},
- "C++": {
- "class": 34,
- "Bar": 2,
- "{": 550,
- "protected": 4,
- "char": 122,
- "*name": 6,
- ";": 2290,
- "public": 27,
- "void": 150,
- "hello": 2,
- "(": 2422,
- ")": 2424,
- "}": 549,
- "#include": 106,
- "": 1,
- "": 1,
- "": 2,
- "static": 260,
- "Env": 13,
- "*env_instance": 1,
- "*": 159,
- "NULL": 108,
- "*Env": 1,
- "instance": 4,
- "if": 295,
- "env_instance": 3,
- "new": 9,
- "return": 147,
- "QObject": 2,
- "QCoreApplication": 1,
- "parse": 3,
- "const": 166,
- "**envp": 1,
- "**env": 1,
- "**": 2,
- "QString": 20,
- "envvar": 2,
- "name": 21,
- "value": 18,
- "int": 144,
- "indexOfEquals": 5,
- "for": 18,
- "env": 3,
- "envp": 4,
- "*env": 1,
- "+": 50,
- "envvar.indexOf": 1,
- "continue": 2,
- "envvar.left": 1,
- "envvar.mid": 1,
- "m_map.insert": 1,
- "QVariantMap": 3,
- "asVariantMap": 2,
- "m_map": 2,
- "#ifndef": 23,
- "ENV_H": 3,
- "#define": 190,
- "": 1,
- "Q_OBJECT": 1,
- "*instance": 1,
- "private": 12,
- "#endif": 82,
- "//": 238,
- "GDSDBREADER_H": 3,
- "": 1,
- "GDS_DIR": 1,
- "enum": 6,
- "level": 1,
- "LEVEL_ONE": 1,
- "LEVEL_TWO": 1,
- "LEVEL_THREE": 1,
- "dbDataStructure": 2,
- "label": 1,
- "quint32": 3,
- "depth": 1,
- "userIndex": 1,
- "QByteArray": 1,
- "data": 2,
- "This": 6,
- "is": 35,
- "COMPRESSED": 1,
- "optimize": 1,
- "ram": 1,
- "and": 14,
- "disk": 1,
- "space": 2,
- "decompressed": 1,
- "quint64": 1,
- "uniqueID": 1,
- "QVector": 2,
- "": 1,
- "nextItems": 1,
- "": 1,
- "nextItemsIndices": 1,
- "dbDataStructure*": 1,
- "father": 1,
- "fatherIndex": 1,
- "bool": 99,
- "noFatherRoot": 1,
- "Used": 1,
- "to": 75,
- "tell": 1,
- "this": 22,
- "node": 1,
- "the": 178,
- "root": 1,
- "so": 1,
- "hasn": 1,
- "t": 13,
- "in": 9,
- "argument": 1,
- "list": 2,
- "of": 48,
- "an": 3,
- "operator": 10,
- "overload.": 1,
- "A": 1,
- "friend": 10,
- "stream": 5,
- "<<": 18,
- "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,
- "&": 146,
- "myclass": 1,
- "//Don": 1,
- "read": 1,
- "it": 2,
- "either": 1,
- "qUncompress": 2,
- "": 1,
- "using": 1,
- "namespace": 26,
- "std": 49,
- "main": 2,
- "cout": 1,
- "endl": 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": 12,
- "EC_POINT_mul": 3,
- "priv_key": 2,
- "EC_KEY_set_private_key": 1,
- "EC_KEY_set_public_key": 2,
- "EC_POINT_free": 4,
- "BN_CTX_free": 2,
- "ECDSA_SIG_recover_key_GFp": 3,
- "ECDSA_SIG": 3,
- "*ecsig": 1,
- "unsigned": 20,
- "*msg": 2,
- "msglen": 2,
- "recid": 3,
- "check": 2,
- "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,
- "i": 47,
- "/": 13,
- "-": 225,
- "BN_CTX_start": 1,
- "order": 8,
- "BN_CTX_get": 8,
- "EC_GROUP_get_order": 1,
- "x": 44,
- "BN_copy": 1,
- "BN_mul_word": 1,
- "BN_add": 1,
- "ecsig": 3,
- "r": 36,
- "field": 3,
- "EC_GROUP_get_curve_GFp": 1,
- "BN_cmp": 1,
- "R": 6,
- "EC_POINT_set_compressed_coordinates_GFp": 1,
- "%": 4,
- "O": 5,
- "EC_POINT_is_at_infinity": 1,
- "Q": 5,
- "EC_GROUP_get_degree": 1,
- "e": 14,
- "BN_bin2bn": 3,
- "msg": 1,
- "*msglen": 1,
- "BN_rshift": 1,
- "zero": 3,
- "BN_zero": 1,
- "BN_mod_sub": 1,
- "rr": 4,
- "BN_mod_inverse": 1,
- "sor": 3,
- "BN_mod_mul": 2,
- "s": 9,
- "eor": 3,
- "BN_CTX_end": 1,
- "CKey": 26,
- "SetCompressedPubKey": 4,
- "EC_KEY_set_conv_form": 1,
- "pkey": 14,
- "POINT_CONVERSION_COMPRESSED": 1,
- "fCompressedPubKey": 5,
- "true": 39,
- "Reset": 5,
- "false": 42,
- "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,
- "EC_KEY_copy": 1,
- "hash": 20,
- "sizeof": 14,
- "vchSig": 18,
- "[": 201,
- "]": 201,
- "nSize": 2,
- "vchSig.clear": 2,
- "vchSig.resize": 2,
- "Shrink": 1,
- "fit": 1,
- "actual": 1,
- "size": 9,
- "SignCompact": 2,
- "uint256": 10,
- "vector": 14,
- "": 19,
- "fOk": 3,
- "*sig": 2,
- "ECDSA_do_sign": 1,
- "char*": 14,
- "sig": 11,
- "nBitsR": 3,
- "BN_num_bits": 2,
- "nBitsS": 3,
- "<": 53,
- "&&": 23,
- "nRecId": 4,
- "<4;>": 1,
- "keyRec": 5,
- "1": 2,
- "GetPubKey": 5,
- "break": 34,
- "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,
- "BITCOIN_KEY_H": 2,
- "": 1,
- "": 2,
- "": 1,
- "definition": 1,
- "runtime_error": 2,
- "explicit": 3,
- "string": 10,
- "str": 2,
- "CKeyID": 5,
- "uint160": 8,
- "CScriptID": 3,
- "CPubKey": 11,
- "vchPubKey": 6,
- "vchPubKeyIn": 2,
- "a": 84,
- "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,
- "||": 17,
- "IsCompressed": 2,
- "Raw": 1,
- "typedef": 38,
- "secure_allocator": 2,
- "CPrivKey": 3,
- "EC_KEY*": 1,
- "IsNull": 1,
- "MakeNewKey": 1,
- "fCompressed": 3,
- "SetPrivKey": 1,
- "vchPrivKey": 1,
- "SetSecret": 1,
- "vchSecret": 1,
- "GetPrivKey": 1,
- "SetPubKey": 1,
- "Sign": 1,
- "#ifdef": 16,
- "Q_OS_LINUX": 2,
- "": 1,
- "#if": 44,
- "QT_VERSION": 1,
- "QT_VERSION_CHECK": 1,
- "#error": 9,
- "Something": 1,
- "wrong": 1,
- "with": 6,
- "setup.": 1,
- "Please": 3,
- "report": 2,
- "mailing": 1,
- "argc": 2,
- "char**": 2,
- "argv": 2,
- "google_breakpad": 1,
- "ExceptionHandler": 1,
- "eh": 1,
- "Utils": 4,
- "exceptionHandler": 2,
- "qInstallMsgHandler": 1,
- "messageHandler": 2,
- "QApplication": 1,
- "app": 1,
- "STATIC_BUILD": 1,
- "Q_INIT_RESOURCE": 2,
- "WebKit": 1,
- "InspectorBackendStub": 1,
- "app.setWindowIcon": 1,
- "QIcon": 1,
- "app.setApplicationName": 1,
- "app.setOrganizationName": 1,
- "app.setOrganizationDomain": 1,
- "app.setApplicationVersion": 1,
- "PHANTOMJS_VERSION_STRING": 1,
- "Phantom": 1,
- "phantom": 1,
- "phantom.execute": 1,
- "app.exec": 1,
- "phantom.returnValue": 1,
- "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,
- "internal": 46,
- "GeneratedMessageReflection*": 1,
- "Person_reflection_": 4,
- "protobuf_AssignDesc_protocol_2dbuffer_2eproto": 4,
- "protobuf_AddDesc_protocol_2dbuffer_2eproto": 6,
- "FileDescriptor*": 1,
- "file": 6,
- "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,
- "inline": 39,
- "protobuf_AssignDescriptorsOnce": 4,
- "GoogleOnceInit": 1,
- "protobuf_RegisterTypes": 2,
- "InternalRegisterGeneratedMessage": 1,
- "default_instance": 3,
- "protobuf_ShutdownFile_protocol_2dbuffer_2eproto": 4,
- "delete": 6,
- "already_here": 3,
- "GOOGLE_PROTOBUF_VERIFY_VERSION": 1,
- "InternalAddGeneratedFile": 1,
- "InternalRegisterGeneratedFile": 1,
- "InitAsDefaultInstance": 3,
- "OnShutdown": 1,
- "struct": 8,
- "StaticDescriptorInitializer_protocol_2dbuffer_2eproto": 2,
- "static_descriptor_initializer_protocol_2dbuffer_2eproto_": 1,
- "_MSC_VER": 3,
- "kNameFieldNumber": 2,
- "Message": 7,
- "SharedCtor": 4,
- "from": 25,
- "MergeFrom": 9,
- "_cached_size_": 7,
- "const_cast": 3,
- "string*": 11,
- "kEmptyString": 12,
- "memset": 2,
- "SharedDtor": 3,
- "SetCachedSize": 2,
- "GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN": 2,
- "GOOGLE_SAFE_CONCURRENT_WRITES_END": 2,
- "descriptor": 2,
- "*default_instance_": 1,
- "Person*": 7,
- "New": 4,
- "Clear": 5,
- "xffu": 3,
- "has_name": 6,
- "clear": 2,
- "mutable_unknown_fields": 4,
- "MergePartialFromCodedStream": 2,
- "io": 4,
- "CodedInputStream*": 2,
- "input": 6,
- "DO_": 4,
- "EXPRESSION": 2,
- "uint32": 2,
- "tag": 6,
- "while": 11,
- "ReadTag": 1,
- "switch": 3,
- "WireFormatLite": 9,
- "GetTagFieldNumber": 1,
- "case": 33,
- "GetTagWireType": 2,
- "WIRETYPE_LENGTH_DELIMITED": 1,
- "ReadString": 1,
- "mutable_name": 3,
- "WireFormat": 10,
- "VerifyUTF8String": 3,
- ".data": 3,
- ".length": 3,
- "PARSE": 1,
- "else": 46,
- "handle_uninterpreted": 2,
- "ExpectAtEnd": 1,
- "default": 4,
- "WIRETYPE_END_GROUP": 1,
- "SkipField": 1,
- "#undef": 3,
- "SerializeWithCachedSizes": 2,
- "CodedOutputStream*": 2,
- "output": 5,
- "SERIALIZE": 2,
- "WriteString": 1,
- "unknown_fields": 7,
- ".empty": 3,
- "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,
- "source": 9,
- "dynamic_cast_if_available": 1,
- "": 12,
- "ReflectionOps": 1,
- "Merge": 1,
- "from._has_bits_": 1,
- "from.has_name": 1,
- "set_name": 7,
- "from.name": 1,
- "from.unknown_fields": 1,
- "CopyFrom": 5,
- "IsInitialized": 3,
- "Swap": 2,
- "other": 7,
- "swap": 3,
- "_unknown_fields_.Swap": 1,
- "Metadata": 3,
- "GetMetadata": 2,
- "metadata": 2,
- "metadata.descriptor": 1,
- "metadata.reflection": 1,
- "PROTOBUF_protocol_2dbuffer_2eproto__INCLUDED": 3,
- "": 1,
- "GOOGLE_PROTOBUF_VERSION": 1,
- "was": 3,
- "generated": 2,
- "by": 5,
- "newer": 2,
- "version": 4,
- "protoc": 2,
- "which": 2,
- "incompatible": 2,
- "your": 3,
- "Protocol": 2,
- "Buffer": 2,
- "headers.": 3,
- "update": 1,
- "GOOGLE_PROTOBUF_MIN_PROTOC_VERSION": 1,
- "older": 1,
- "regenerate": 1,
- "protoc.": 1,
- "": 1,
- "": 1,
- "": 1,
- "": 1,
- "": 1,
- "virtual": 10,
- "*this": 1,
- "UnknownFieldSet": 2,
- "UnknownFieldSet*": 1,
- "GetCachedSize": 1,
- "clear_name": 2,
- "size_t": 5,
- "release_name": 2,
- "set_allocated_name": 2,
- "set_has_name": 7,
- "clear_has_name": 5,
- "mutable": 1,
- "u": 9,
- "|": 8,
- "*name_": 1,
- "assign": 3,
- "reinterpret_cast": 7,
- "temp": 2,
- "SWIG": 2,
- "QSCICOMMAND_H": 2,
- "__APPLE__": 4,
- "extern": 4,
- "": 1,
- "": 2,
- "": 1,
- "QsciScintilla": 7,
- "brief": 2,
- "The": 8,
- "QsciCommand": 7,
- "represents": 1,
- "editor": 1,
- "command": 9,
- "that": 7,
- "may": 2,
- "have": 1,
- "one": 42,
- "or": 10,
- "two": 1,
- "keys": 3,
- "bound": 4,
- "it.": 2,
- "Methods": 1,
- "are": 3,
- "provided": 1,
- "change": 1,
- "remove": 1,
- "binding.": 1,
- "Each": 1,
- "has": 2,
- "user": 2,
- "friendly": 2,
- "description": 3,
- "use": 1,
- "mapping": 1,
- "dialogs.": 1,
- "QSCINTILLA_EXPORT": 2,
- "defines": 1,
- "different": 1,
- "commands": 1,
- "can": 3,
- "be": 9,
- "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": 13,
- "LineUp": 1,
- "SCI_LINEUP": 1,
- "LineUpExtend": 1,
- "SCI_LINEUPEXTEND": 1,
- "LineUpRectExtend": 1,
- "SCI_LINEUPRECTEXTEND": 1,
- "LineScrollUp": 1,
- "SCI_LINESCROLLUP": 1,
- "start": 11,
- "document.": 8,
- "ScrollToStart": 1,
- "SCI_SCROLLTOSTART": 1,
- "end": 18,
- "ScrollToEnd": 1,
- "SCI_SCROLLTOEND": 1,
- "vertically": 1,
- "centre": 1,
- "current": 9,
- "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": 8,
- "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": 5,
- "WordLeftEnd": 1,
- "SCI_WORDLEFTEND": 1,
- "WordLeftEndExtend": 1,
- "SCI_WORDLEFTENDEXTEND": 1,
- "next": 6,
- "WordRightEnd": 1,
- "SCI_WORDRIGHTEND": 1,
- "WordRightEndExtend": 1,
- "SCI_WORDRIGHTENDEXTEND": 1,
- "word": 6,
- "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,
- "first": 8,
- "visible": 6,
- "character": 8,
- "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": 1,
- "at": 4,
- "DeleteBackNotLine": 1,
- "SCI_DELETEBACKNOTLINE": 1,
- "left.": 2,
- "DeleteWordLeft": 1,
- "SCI_DELWORDLEFT": 1,
- "right.": 2,
- "DeleteWordRight": 1,
- "SCI_DELWORDRIGHT": 1,
- "DeleteWordRightEnd": 1,
- "SCI_DELWORDRIGHTEND": 1,
- "line": 10,
- "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": 33,
- "whole": 2,
- "SelectAll": 1,
- "SCI_SELECTALL": 1,
- "selected": 2,
- "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,
- "SCI_PASTE": 1,
- "Toggle": 1,
- "insert/overtype.": 1,
- "EditToggleOvertype": 1,
- "SCI_EDITTOGGLEOVERTYPE": 1,
- "Insert": 2,
- "platform": 1,
- "dependent": 1,
- "newline.": 1,
- "Newline": 1,
- "SCI_NEWLINE": 1,
- "formfeed.": 1,
- "Formfeed": 1,
- "SCI_FORMFEED": 1,
- "Indent": 1,
- "level.": 2,
- "Tab": 1,
- "SCI_TAB": 1,
- "De": 1,
- "indent": 1,
- "Backtab": 1,
- "SCI_BACKTAB": 1,
- "Cancel": 2,
- "any": 5,
- "operation.": 1,
- "SCI_CANCEL": 1,
- "Undo": 2,
- "last": 4,
- "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": 2,
- "executed": 1,
- "instance.": 2,
- "scicmd": 2,
- "Execute": 1,
- "execute": 1,
- "Binds": 2,
- "If": 4,
- "then": 6,
- "binding": 3,
- "removed.": 2,
- "invalid": 5,
- "unchanged.": 1,
- "Valid": 1,
- "control": 1,
- "c": 50,
- "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": 2,
- "combination": 1,
- "SHIFT": 1,
- "CTRL": 1,
- "ALT": 1,
- "META.": 1,
- "sa": 8,
- "setAlternateKey": 3,
- "validKey": 3,
- "setKey": 3,
- "alternate": 3,
- "altkey": 3,
- "alternateKey": 3,
- "currently": 2,
- "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,
- "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,
- "able": 1,
- "print": 4,
- "text": 5,
- "Scintilla": 2,
- "further": 1,
- "classed": 1,
- "alter": 1,
- "layout": 1,
- "adding": 2,
- "headers": 3,
- "footers": 2,
- "example.": 1,
- "Constructs": 1,
- "printer": 1,
- "paint": 1,
- "device": 1,
- "mode": 4,
- "mode.": 1,
- "PrinterMode": 1,
- "ScreenResolution": 1,
- "Destroys": 1,
- "Format": 1,
- "page": 4,
- "example": 1,
- "before": 1,
- "drawn": 2,
- "on": 1,
- "painter": 4,
- "used": 4,
- "add": 3,
- "customised": 2,
- "graphics.": 2,
- "drawing": 4,
- "actually": 1,
- "being": 2,
- "rather": 1,
- "than": 1,
- "sized.": 1,
- "methods": 1,
- "must": 1,
- "only": 1,
- "called": 1,
- "when": 5,
- "true.": 1,
- "area": 5,
- "draw": 1,
- "text.": 3,
- "should": 1,
- "necessary": 1,
- "reserve": 1,
- "By": 1,
- "relative": 1,
- "printable": 1,
- "Use": 1,
- "setFullPage": 1,
- "because": 2,
- "calling": 1,
- "printRange": 2,
- "you": 1,
- "want": 2,
- "try": 1,
- "over": 1,
- "pagenr": 2,
- "number": 3,
- "numbered": 1,
- "formatPage": 1,
- "points": 2,
- "each": 2,
- "font": 2,
- "printing.": 2,
- "setMagnification": 2,
- "magnification": 3,
- "mag": 2,
- "Sets": 2,
- "printing": 2,
- "magnification.": 1,
- "Print": 1,
- "range": 1,
- "qsb.": 1,
- "negative": 2,
- "signifies": 2,
- "returned": 2,
- "there": 1,
- "no": 1,
- "error.": 1,
- "*qsb": 1,
- "wrap": 4,
- "WrapWord.": 1,
- "setWrapMode": 2,
- "WrapMode": 3,
- "wrapMode": 2,
- "wmode.": 1,
- "wmode": 1,
- "v8": 9,
- "Scanner": 16,
- "UnicodeCache*": 4,
- "unicode_cache": 3,
- "unicode_cache_": 10,
- "octal_pos_": 5,
- "Location": 14,
- "harmony_scoping_": 4,
- "harmony_modules_": 4,
- "Initialize": 4,
- "Utf16CharacterStream*": 3,
- "source_": 7,
- "Init": 3,
- "has_line_terminator_before_next_": 9,
- "SkipWhiteSpace": 4,
- "Scan": 5,
- "uc32": 19,
- "ScanHexNumber": 2,
- "expected_length": 4,
- "ASSERT": 17,
- "prevent": 1,
- "overflow": 1,
- "digits": 3,
- "c0_": 64,
- "d": 8,
- "HexValue": 2,
- "j": 4,
- "PushBack": 8,
- "Advance": 44,
- "STATIC_ASSERT": 5,
- "Token": 212,
- "NUM_TOKENS": 1,
- "byte": 1,
- "one_char_tokens": 2,
- "ILLEGAL": 120,
- "LPAREN": 2,
- "RPAREN": 2,
- "COMMA": 2,
- "COLON": 2,
- "SEMICOLON": 2,
- "CONDITIONAL": 2,
- "f": 5,
- "LBRACK": 2,
- "RBRACK": 2,
- "LBRACE": 2,
- "RBRACE": 2,
- "BIT_NOT": 2,
- "Value": 23,
- "Next": 3,
- "current_": 2,
- "next_": 2,
- "has_multiline_comment_before_next_": 5,
- "static_cast": 7,
- "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,
- "undo": 4,
- "WHITESPACE": 6,
- "SkipMultiLineComment": 3,
- "ch": 5,
- "ScanHtmlComment": 3,
- "LT": 2,
- "next_.literal_chars": 13,
- "do": 4,
- "ScanString": 3,
- "LTE": 1,
- "ASSIGN_SHL": 1,
- "SHL": 1,
- "GTE": 1,
- "ASSIGN_SAR": 1,
- "ASSIGN_SHR": 1,
- "SHR": 1,
- "SAR": 1,
- "GT": 1,
- "EQ_STRICT": 1,
- "EQ": 1,
- "ASSIGN": 1,
- "NE_STRICT": 1,
- "NE": 1,
- "NOT": 1,
- "INC": 1,
- "ASSIGN_ADD": 1,
- "ADD": 1,
- "DEC": 1,
- "ASSIGN_SUB": 1,
- "SUB": 1,
- "ASSIGN_MUL": 1,
- "MUL": 1,
- "ASSIGN_MOD": 1,
- "MOD": 1,
- "ASSIGN_DIV": 1,
- "DIV": 1,
- "AND": 1,
- "ASSIGN_BIT_AND": 1,
- "BIT_AND": 1,
- "OR": 1,
- "ASSIGN_BIT_OR": 1,
- "BIT_OR": 1,
- "ASSIGN_BIT_XOR": 1,
- "BIT_XOR": 1,
- "IsDecimalDigit": 2,
- "ScanNumber": 3,
- "PERIOD": 1,
- "IsIdentifierStart": 2,
- "ScanIdentifierOrKeyword": 2,
- "EOS": 1,
- "SeekForward": 4,
- "current_pos": 4,
- "ASSERT_EQ": 1,
- "ScanEscape": 2,
- "IsCarriageReturn": 2,
- "IsLineFeed": 2,
- "fall": 2,
- "through": 2,
- "v": 3,
- "xx": 1,
- "xxx": 1,
- "error": 1,
- "immediately": 1,
- "octal": 1,
- "escape": 1,
- "quote": 3,
- "consume": 2,
- "LiteralScope": 4,
- "literal": 2,
- ".": 2,
- "X": 2,
- "E": 3,
- "l": 1,
- "p": 5,
- "w": 1,
- "y": 13,
- "keyword": 1,
- "Unescaped": 1,
- "in_character_class": 2,
- "AddLiteralCharAdvance": 3,
- "literal.Complete": 2,
- "ScanLiteralUnicodeEscape": 3,
- "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,
- "detect": 1,
- "x16": 1,
- "x36.": 1,
- "Utf16CharacterStream": 3,
- "pos_": 6,
- "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,
- "uint32_t": 8,
- "ExpandBuffer": 2,
- "kMaxAsciiCharCodeU": 1,
- "": 6,
- "kASCIISize": 1,
- "ConvertToUtf16": 2,
- "*reinterpret_cast": 1,
- "": 2,
- "kUC16Size": 2,
- "is_ascii": 3,
- "Vector": 13,
- "uc16": 5,
- "utf16_literal": 3,
- "backing_store_.start": 5,
- "ascii_literal": 3,
- "length": 8,
- "kInitialCapacity": 2,
- "kGrowthFactory": 2,
- "kMinConversionSlack": 1,
- "kMaxGrowth": 2,
- "MB": 1,
- "NewCapacity": 3,
- "min_capacity": 2,
- "capacity": 3,
- "Max": 1,
- "new_capacity": 2,
- "Min": 1,
- "new_store": 6,
- "memcpy": 1,
- "new_store.start": 3,
- "new_content_size": 4,
- "src": 2,
- "": 1,
- "dst": 2,
- "Scanner*": 2,
- "self": 5,
- "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,
- "location": 4,
- "current_.location": 2,
- "literal_ascii_string": 1,
- "ASSERT_NOT_NULL": 9,
- "current_.literal_chars": 11,
- "literal_utf16_string": 1,
- "is_literal_ascii": 1,
- "literal_length": 1,
- "literal_contains_escapes": 1,
- "source_length": 3,
- "location.end_pos": 1,
- "location.beg_pos": 1,
- "STRING": 1,
- "peek": 1,
- "peek_location": 1,
- "next_.location": 1,
- "next_literal_ascii_string": 1,
- "next_literal_utf16_string": 1,
- "is_next_literal_ascii": 1,
- "next_literal_length": 1,
- "kCharacterLookaheadBufferSize": 3,
- "ScanOctalEscape": 1,
- "octal_position": 1,
- "clear_octal_position": 1,
- "HarmonyScoping": 1,
- "SetHarmonyScoping": 1,
- "scoping": 2,
- "HarmonyModules": 1,
- "SetHarmonyModules": 1,
- "modules": 2,
- "HasAnyLineTerminatorBeforeNext": 1,
- "ScanRegExpPattern": 1,
- "seen_equal": 1,
- "ScanRegExpFlags": 1,
- "IsIdentifier": 1,
- "CharacterStream*": 1,
- "buffer": 1,
- "TokenDesc": 3,
- "LiteralBuffer*": 2,
- "literal_chars": 1,
- "free_buffer": 3,
- "literal_buffer1_": 3,
- "literal_buffer2_": 2,
- "AddLiteralChar": 2,
- "tok": 2,
- "else_": 2,
- "ScanDecimalDigits": 1,
- "seen_period": 1,
- "ScanIdentifierSuffix": 1,
- "LiteralScope*": 1,
- "ScanIdentifierUnicodeEscape": 1,
- "desc": 2,
- "as": 1,
- "look": 1,
- "ahead": 1,
- "UTILS_H": 3,
- "": 1,
- "": 1,
- "": 1,
- "QTemporaryFile": 1,
- "showUsage": 1,
- "QtMsgType": 1,
- "type": 6,
- "dump_path": 1,
- "minidump_id": 1,
- "void*": 1,
- "context": 8,
- "succeeded": 1,
- "QVariant": 1,
- "coffee2js": 1,
- "script": 1,
- "injectJsInFrame": 2,
- "jsFilePath": 5,
- "libraryPath": 5,
- "QWebFrame": 4,
- "*targetFrame": 4,
- "startingScript": 2,
- "Encoding": 3,
- "jsFileEnc": 2,
- "readResourceFileUtf8": 1,
- "resourceFilePath": 1,
- "loadJSForDebug": 2,
- "autorun": 2,
- "cleanupFromDebug": 1,
- "findScript": 1,
- "jsFromScriptFile": 1,
- "scriptPath": 1,
- "enc": 1,
- "shouldn": 1,
- "instantiated": 1,
- "QTemporaryFile*": 2,
- "m_tempHarness": 1,
- "We": 1,
- "make": 1,
- "sure": 1,
- "clean": 1,
- "after": 1,
- "ourselves": 1,
- "m_tempWrapper": 1,
- "V8_DECLARE_ONCE": 1,
- "init_once": 2,
- "V8": 21,
- "is_running_": 6,
- "has_been_set_up_": 4,
- "has_been_disposed_": 6,
- "has_fatal_error_": 5,
- "use_crankshaft_": 6,
- "List": 3,
- "": 3,
- "call_completed_callbacks_": 16,
- "LazyMutex": 1,
- "entropy_mutex": 1,
- "LAZY_MUTEX_INITIALIZER": 1,
- "EntropySource": 3,
- "entropy_source": 4,
- "Deserializer*": 2,
- "des": 3,
- "FlagList": 1,
- "EnforceFlagImplications": 1,
- "InitializeOncePerProcess": 4,
- "Isolate": 9,
- "CurrentPerIsolateThreadData": 4,
- "EnterDefaultIsolate": 1,
- "thread_id": 1,
- ".Equals": 1,
- "ThreadId": 1,
- "Current": 5,
- "isolate": 15,
- "IsDead": 2,
- "Isolate*": 6,
- "SetFatalError": 2,
- "TearDown": 5,
- "IsDefaultIsolate": 1,
- "ElementsAccessor": 2,
- "LOperand": 2,
- "TearDownCaches": 1,
- "RegisteredExtension": 1,
- "UnregisterAll": 1,
- "OS": 3,
- "seed_random": 2,
- "uint32_t*": 2,
- "state": 15,
- "FLAG_random_seed": 2,
- "val": 3,
- "ScopedLock": 1,
- "lock": 1,
- "entropy_mutex.Pointer": 1,
- "random": 1,
- "random_base": 3,
- "xFFFF": 2,
- "FFFF": 1,
- "SetEntropySource": 2,
- "SetReturnAddressLocationResolver": 3,
- "ReturnAddressLocationResolver": 2,
- "resolver": 3,
- "StackFrame": 1,
- "Random": 3,
- "Context*": 4,
- "IsGlobalContext": 1,
- "ByteArray*": 1,
- "seed": 2,
- "random_seed": 1,
- "": 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,
- "Add": 1,
- "RemoveCallCompletedCallback": 2,
- "Remove": 1,
- "FireCallCompletedCallback": 2,
- "HandleScopeImplementer*": 1,
- "handle_scope_implementer": 5,
- "CallDepthIsZero": 1,
- "IncrementCallDepth": 1,
- "DecrementCallDepth": 1,
- "union": 1,
- "double": 23,
- "double_value": 1,
- "uint64_t": 2,
- "uint64_t_value": 1,
- "double_int_union": 2,
- "Object*": 4,
- "FillHeapNumberWithRandom": 2,
- "heap_number": 4,
- "random_bits": 2,
- "binary_million": 3,
- "r.double_value": 3,
- "r.uint64_t_value": 1,
- "HeapNumber": 1,
- "cast": 1,
- "set_value": 1,
- "InitializeOncePerProcessImpl": 3,
- "SetUp": 4,
- "FLAG_crankshaft": 1,
- "Serializer": 1,
- "enabled": 1,
- "CPU": 2,
- "SupportsCrankshaft": 1,
- "PostSetUp": 1,
- "RuntimeProfiler": 1,
- "GlobalSetUp": 1,
- "FLAG_stress_compaction": 1,
- "FLAG_force_marking_deque_overflows": 1,
- "FLAG_gc_global": 1,
- "FLAG_max_new_space_size": 1,
- "kPageSizeBits": 1,
- "SetUpCaches": 1,
- "SetUpJSCallerSavedCodeData": 1,
- "SamplerRegistry": 1,
- "ExternalReference": 1,
- "CallOnce": 1,
- "V8_V8_H_": 3,
- "defined": 21,
- "GOOGLE3": 2,
- "DEBUG": 3,
- "NDEBUG": 4,
- "both": 1,
- "set": 1,
- "Deserializer": 1,
- "AllStatic": 1,
- "IsRunning": 1,
- "UseCrankshaft": 1,
- "FatalProcessOutOfMemory": 1,
- "take_snapshot": 1,
- "NilValue": 1,
- "kNullValue": 1,
- "kUndefinedValue": 1,
- "EqualityKind": 1,
- "kStrictEquality": 1,
- "kNonStrictEquality": 1,
- "PY_SSIZE_T_CLEAN": 1,
- "Py_PYTHON_H": 1,
- "Python": 1,
- "needed": 1,
- "compile": 1,
- "C": 1,
- "extensions": 1,
- "please": 1,
- "install": 1,
- "development": 1,
- "Python.": 1,
- "#else": 24,
- "": 1,
- "offsetof": 2,
- "member": 2,
- "type*": 1,
- "WIN32": 2,
- "MS_WINDOWS": 2,
- "__stdcall": 2,
- "__cdecl": 2,
- "__fastcall": 2,
- "DL_IMPORT": 2,
- "DL_EXPORT": 2,
- "PY_LONG_LONG": 5,
- "LONG_LONG": 1,
- "PY_VERSION_HEX": 9,
- "METH_COEXIST": 1,
- "PyDict_CheckExact": 1,
- "op": 6,
- "Py_TYPE": 4,
- "PyDict_Type": 1,
- "PyDict_Contains": 1,
- "o": 20,
- "PySequence_Contains": 1,
- "Py_ssize_t": 17,
- "PY_SSIZE_T_MAX": 1,
- "INT_MAX": 1,
- "PY_SSIZE_T_MIN": 1,
- "INT_MIN": 1,
- "PY_FORMAT_SIZE_T": 1,
- "PyInt_FromSsize_t": 2,
- "z": 46,
- "PyInt_FromLong": 13,
- "PyInt_AsSsize_t": 2,
- "PyInt_AsLong": 2,
- "PyNumber_Index": 1,
- "PyNumber_Int": 1,
- "PyIndex_Check": 1,
- "PyNumber_Check": 1,
- "PyErr_WarnEx": 1,
- "category": 2,
- "message": 2,
- "stacklevel": 1,
- "PyErr_Warn": 1,
- "Py_REFCNT": 1,
- "ob": 6,
- "PyObject*": 16,
- "ob_refcnt": 1,
- "ob_type": 7,
- "Py_SIZE": 1,
- "PyVarObject*": 1,
- "ob_size": 1,
- "PyVarObject_HEAD_INIT": 1,
- "PyObject_HEAD_INIT": 1,
- "PyType_Modified": 1,
- "*buf": 1,
- "PyObject": 221,
- "*obj": 2,
- "len": 1,
- "itemsize": 2,
- "readonly": 2,
- "ndim": 2,
- "*format": 1,
- "*shape": 1,
- "*strides": 1,
- "*suboffsets": 1,
- "*internal": 1,
- "Py_buffer": 5,
- "PyBUF_SIMPLE": 1,
- "PyBUF_WRITABLE": 1,
- "PyBUF_FORMAT": 1,
- "PyBUF_ND": 2,
- "PyBUF_STRIDES": 5,
- "PyBUF_C_CONTIGUOUS": 3,
- "PyBUF_F_CONTIGUOUS": 3,
- "PyBUF_ANY_CONTIGUOUS": 1,
- "PyBUF_INDIRECT": 1,
- "PY_MAJOR_VERSION": 10,
- "__Pyx_BUILTIN_MODULE_NAME": 2,
- "Py_TPFLAGS_CHECKTYPES": 1,
- "Py_TPFLAGS_HAVE_INDEX": 1,
- "Py_TPFLAGS_HAVE_NEWBUFFER": 1,
- "PyBaseString_Type": 1,
- "PyUnicode_Type": 2,
- "PyStringObject": 2,
- "PyUnicodeObject": 1,
- "PyString_Type": 2,
- "PyString_Check": 2,
- "PyUnicode_Check": 1,
- "PyString_CheckExact": 2,
- "PyUnicode_CheckExact": 1,
- "PyBytesObject": 1,
- "PyBytes_Type": 1,
- "PyBytes_Check": 1,
- "PyBytes_CheckExact": 1,
- "PyBytes_FromString": 2,
- "PyString_FromString": 1,
- "PyBytes_FromStringAndSize": 1,
- "PyString_FromStringAndSize": 1,
- "PyBytes_FromFormat": 1,
- "PyString_FromFormat": 1,
- "PyBytes_DecodeEscape": 1,
- "PyString_DecodeEscape": 1,
- "PyBytes_AsString": 2,
- "PyString_AsString": 1,
- "PyBytes_AsStringAndSize": 1,
- "PyString_AsStringAndSize": 1,
- "PyBytes_Size": 1,
- "PyString_Size": 1,
- "PyBytes_AS_STRING": 1,
- "PyString_AS_STRING": 1,
- "PyBytes_GET_SIZE": 1,
- "PyString_GET_SIZE": 1,
- "PyBytes_Repr": 1,
- "PyString_Repr": 1,
- "PyBytes_Concat": 1,
- "PyString_Concat": 1,
- "PyBytes_ConcatAndDel": 1,
- "PyString_ConcatAndDel": 1,
- "PySet_Check": 1,
- "obj": 42,
- "PyObject_TypeCheck": 3,
- "PySet_Type": 2,
- "PyFrozenSet_Check": 1,
- "PyFrozenSet_Type": 1,
- "PySet_CheckExact": 2,
- "__Pyx_TypeCheck": 1,
- "PyTypeObject": 2,
- "PyIntObject": 1,
- "PyLongObject": 2,
- "PyInt_Type": 1,
- "PyLong_Type": 1,
- "PyInt_Check": 1,
- "PyLong_Check": 1,
- "PyInt_CheckExact": 1,
- "PyLong_CheckExact": 1,
- "PyInt_FromString": 1,
- "PyLong_FromString": 1,
- "PyInt_FromUnicode": 1,
- "PyLong_FromUnicode": 1,
- "PyLong_FromLong": 1,
- "PyInt_FromSize_t": 1,
- "PyLong_FromSize_t": 1,
- "PyLong_FromSsize_t": 1,
- "PyLong_AsLong": 1,
- "PyInt_AS_LONG": 1,
- "PyLong_AS_LONG": 1,
- "PyLong_AsSsize_t": 1,
- "PyInt_AsUnsignedLongMask": 1,
- "PyLong_AsUnsignedLongMask": 1,
- "PyInt_AsUnsignedLongLongMask": 1,
- "PyLong_AsUnsignedLongLongMask": 1,
- "PyBoolObject": 1,
- "__Pyx_PyNumber_Divide": 2,
- "PyNumber_TrueDivide": 1,
- "__Pyx_PyNumber_InPlaceDivide": 2,
- "PyNumber_InPlaceTrueDivide": 1,
- "PyNumber_Divide": 1,
- "PyNumber_InPlaceDivide": 1,
- "__Pyx_PySequence_GetSlice": 2,
- "PySequence_GetSlice": 2,
- "__Pyx_PySequence_SetSlice": 2,
- "PySequence_SetSlice": 2,
- "__Pyx_PySequence_DelSlice": 2,
- "PySequence_DelSlice": 2,
- "unlikely": 69,
- "PyErr_SetString": 4,
- "PyExc_SystemError": 3,
- "likely": 15,
- "tp_as_mapping": 3,
- "PyErr_Format": 4,
- "PyExc_TypeError": 5,
- "tp_name": 4,
- "PyMethod_New": 2,
- "func": 3,
- "klass": 1,
- "PyInstanceMethod_New": 1,
- "__Pyx_GetAttrString": 2,
- "PyObject_GetAttrString": 3,
- "__Pyx_SetAttrString": 2,
- "PyObject_SetAttrString": 2,
- "__Pyx_DelAttrString": 2,
- "PyObject_DelAttrString": 2,
- "__Pyx_NAMESTR": 3,
- "__Pyx_DOCSTR": 3,
- "__cplusplus": 10,
- "__PYX_EXTERN_C": 2,
- "_USE_MATH_DEFINES": 1,
- "": 1,
- "__PYX_HAVE_API__wrapper_inner": 1,
- "PYREX_WITHOUT_ASSERTIONS": 1,
- "CYTHON_WITHOUT_ASSERTIONS": 1,
- "CYTHON_INLINE": 68,
- "__GNUC__": 5,
- "__inline__": 1,
- "#elif": 3,
- "__inline": 1,
- "__STDC_VERSION__": 2,
- "L": 1,
- "CYTHON_UNUSED": 7,
- "**p": 1,
- "*s": 1,
- "long": 5,
- "encoding": 1,
- "is_unicode": 1,
- "is_str": 1,
- "intern": 1,
- "__Pyx_StringTabEntry": 1,
- "__Pyx_PyBytes_FromUString": 1,
- "__Pyx_PyBytes_AsUString": 1,
- "__Pyx_PyBool_FromLong": 1,
- "Py_INCREF": 3,
- "Py_True": 2,
- "Py_False": 2,
- "__Pyx_PyObject_IsTrue": 8,
- "__Pyx_PyNumber_Int": 1,
- "__Pyx_PyIndex_AsSsize_t": 1,
- "__Pyx_PyInt_FromSize_t": 1,
- "__Pyx_PyInt_AsSize_t": 1,
- "__pyx_PyFloat_AsDouble": 3,
- "PyFloat_CheckExact": 1,
- "PyFloat_AS_DOUBLE": 1,
- "PyFloat_AsDouble": 1,
- "__GNUC_MINOR__": 1,
- "__builtin_expect": 2,
- "*__pyx_m": 1,
- "*__pyx_b": 1,
- "*__pyx_empty_tuple": 1,
- "*__pyx_empty_bytes": 1,
- "__pyx_lineno": 80,
- "__pyx_clineno": 80,
- "__pyx_cfilenm": 1,
- "__FILE__": 2,
- "*__pyx_filename": 1,
- "CYTHON_CCOMPLEX": 12,
- "_Complex_I": 3,
- "": 1,
- "": 1,
- "__sun__": 1,
- "fj": 1,
- "*__pyx_f": 1,
- "npy_int8": 1,
- "__pyx_t_5numpy_int8_t": 1,
- "npy_int16": 1,
- "__pyx_t_5numpy_int16_t": 1,
- "npy_int32": 1,
- "__pyx_t_5numpy_int32_t": 1,
- "npy_int64": 1,
- "__pyx_t_5numpy_int64_t": 1,
- "npy_uint8": 1,
- "__pyx_t_5numpy_uint8_t": 1,
- "npy_uint16": 1,
- "__pyx_t_5numpy_uint16_t": 1,
- "npy_uint32": 1,
- "__pyx_t_5numpy_uint32_t": 1,
- "npy_uint64": 1,
- "__pyx_t_5numpy_uint64_t": 1,
- "npy_float32": 1,
- "__pyx_t_5numpy_float32_t": 1,
- "npy_float64": 1,
- "__pyx_t_5numpy_float64_t": 1,
- "npy_long": 1,
- "__pyx_t_5numpy_int_t": 1,
- "npy_longlong": 1,
- "__pyx_t_5numpy_long_t": 1,
- "npy_intp": 10,
- "__pyx_t_5numpy_intp_t": 1,
- "npy_uintp": 1,
- "__pyx_t_5numpy_uintp_t": 1,
- "npy_ulong": 1,
- "__pyx_t_5numpy_uint_t": 1,
- "npy_ulonglong": 1,
- "__pyx_t_5numpy_ulong_t": 1,
- "npy_double": 2,
- "__pyx_t_5numpy_float_t": 1,
- "__pyx_t_5numpy_double_t": 1,
- "npy_longdouble": 1,
- "__pyx_t_5numpy_longdouble_t": 1,
- "complex": 2,
- "float": 7,
- "__pyx_t_float_complex": 27,
- "_Complex": 2,
- "real": 2,
- "imag": 2,
- "__pyx_t_double_complex": 27,
- "npy_cfloat": 1,
- "__pyx_t_5numpy_cfloat_t": 1,
- "npy_cdouble": 2,
- "__pyx_t_5numpy_cdouble_t": 1,
- "npy_clongdouble": 1,
- "__pyx_t_5numpy_clongdouble_t": 1,
- "__pyx_t_5numpy_complex_t": 1,
- "CYTHON_REFNANNY": 3,
- "__Pyx_RefNannyAPIStruct": 4,
- "*__Pyx_RefNanny": 1,
- "__Pyx_RefNannyImportAPI": 1,
- "*modname": 1,
- "*m": 1,
- "*p": 1,
- "*r": 1,
- "m": 4,
- "PyImport_ImportModule": 1,
- "modname": 1,
- "PyLong_AsVoidPtr": 1,
- "Py_XDECREF": 3,
- "__Pyx_RefNannySetupContext": 13,
- "*__pyx_refnanny": 1,
- "__Pyx_RefNanny": 6,
- "SetupContext": 1,
- "__LINE__": 84,
- "__Pyx_RefNannyFinishContext": 12,
- "FinishContext": 1,
- "__pyx_refnanny": 5,
- "__Pyx_INCREF": 36,
- "INCREF": 1,
- "__Pyx_DECREF": 66,
- "DECREF": 1,
- "__Pyx_GOTREF": 60,
- "GOTREF": 1,
- "__Pyx_GIVEREF": 10,
- "GIVEREF": 1,
- "__Pyx_XDECREF": 26,
- "Py_DECREF": 1,
- "__Pyx_XGIVEREF": 7,
- "__Pyx_XGOTREF": 1,
- "__Pyx_TypeTest": 4,
- "*type": 3,
- "*__Pyx_GetName": 1,
- "*dict": 1,
- "__Pyx_ErrRestore": 1,
- "*value": 2,
- "*tb": 2,
- "__Pyx_ErrFetch": 1,
- "**type": 1,
- "**value": 1,
- "**tb": 1,
- "__Pyx_Raise": 8,
- "__Pyx_RaiseNoneNotIterableError": 1,
- "__Pyx_RaiseNeedMoreValuesError": 1,
- "index": 2,
- "__Pyx_RaiseTooManyValuesError": 1,
- "expected": 1,
- "__Pyx_UnpackTupleError": 2,
- "*__Pyx_Import": 1,
- "*from_list": 1,
- "__Pyx_Print": 1,
- "__pyx_print": 1,
- "__pyx_print_kwargs": 1,
- "__Pyx_PrintOne": 4,
- "*o": 1,
- "*__Pyx_PyInt_to_py_Py_intptr_t": 1,
- "Py_intptr_t": 1,
- "__Pyx_CREAL": 4,
- ".real": 3,
- "__Pyx_CIMAG": 4,
- ".imag": 3,
- "__real__": 1,
- "__imag__": 1,
- "_WIN32": 1,
- "__Pyx_SET_CREAL": 2,
- "__Pyx_SET_CIMAG": 2,
- "__pyx_t_float_complex_from_parts": 1,
- "__Pyx_c_eqf": 2,
- "__Pyx_c_sumf": 2,
- "__Pyx_c_difff": 2,
- "__Pyx_c_prodf": 2,
- "__Pyx_c_quotf": 2,
- "__Pyx_c_negf": 2,
- "__Pyx_c_is_zerof": 3,
- "__Pyx_c_conjf": 3,
- "conj": 3,
- "__Pyx_c_absf": 3,
- "abs": 2,
- "__Pyx_c_powf": 3,
- "pow": 2,
- "conjf": 1,
- "cabsf": 1,
- "cpowf": 1,
- "__pyx_t_double_complex_from_parts": 1,
- "__Pyx_c_eq": 2,
- "__Pyx_c_sum": 2,
- "__Pyx_c_diff": 2,
- "__Pyx_c_prod": 2,
- "__Pyx_c_quot": 2,
- "__Pyx_c_neg": 2,
- "__Pyx_c_is_zero": 3,
- "__Pyx_c_conj": 3,
- "__Pyx_c_abs": 3,
- "__Pyx_c_pow": 3,
- "cabs": 1,
- "cpow": 1,
- "__Pyx_PyInt_AsUnsignedChar": 1,
- "short": 3,
- "__Pyx_PyInt_AsUnsignedShort": 1,
- "__Pyx_PyInt_AsUnsignedInt": 1,
- "__Pyx_PyInt_AsChar": 1,
- "__Pyx_PyInt_AsShort": 1,
- "__Pyx_PyInt_AsInt": 1,
- "signed": 5,
- "__Pyx_PyInt_AsSignedChar": 1,
- "__Pyx_PyInt_AsSignedShort": 1,
- "__Pyx_PyInt_AsSignedInt": 1,
- "__Pyx_PyInt_AsLongDouble": 1,
- "__Pyx_PyInt_AsUnsignedLong": 1,
- "__Pyx_PyInt_AsUnsignedLongLong": 1,
- "__Pyx_PyInt_AsLong": 1,
- "__Pyx_PyInt_AsLongLong": 1,
- "__Pyx_PyInt_AsSignedLong": 1,
- "__Pyx_PyInt_AsSignedLongLong": 1,
- "__Pyx_WriteUnraisable": 3,
- "__Pyx_ExportFunction": 1,
- "*__pyx_f_5numpy_PyArray_MultiIterNew2": 2,
- "*__pyx_f_5numpy_PyArray_MultiIterNew3": 2,
- "*__pyx_f_5numpy_PyArray_MultiIterNew4": 2,
- "*__pyx_f_5numpy_PyArray_MultiIterNew5": 2,
- "*__pyx_f_5numpy__util_dtypestring": 2,
- "PyArray_Descr": 6,
- "__pyx_f_5numpy_set_array_base": 1,
- "PyArrayObject": 19,
- "*__pyx_f_5numpy_get_array_base": 1,
- "inner_work_1d": 2,
- "inner_work_2d": 2,
- "__Pyx_MODULE_NAME": 1,
- "__pyx_module_is_main_wrapper_inner": 1,
- "*__pyx_builtin_ValueError": 1,
- "*__pyx_builtin_range": 1,
- "*__pyx_builtin_RuntimeError": 1,
- "__pyx_k_1": 1,
- "__pyx_k_2": 1,
- "__pyx_k_3": 1,
- "__pyx_k_5": 1,
- "__pyx_k_7": 1,
- "__pyx_k_9": 1,
- "__pyx_k_11": 1,
- "__pyx_k_12": 1,
- "__pyx_k_15": 1,
- "__pyx_k__B": 2,
- "__pyx_k__H": 2,
- "__pyx_k__I": 2,
- "__pyx_k__L": 2,
- "__pyx_k__O": 2,
- "__pyx_k__Q": 2,
- "__pyx_k__b": 2,
- "__pyx_k__d": 2,
- "__pyx_k__f": 2,
- "__pyx_k__g": 2,
- "__pyx_k__h": 2,
- "__pyx_k__i": 2,
- "__pyx_k__l": 2,
- "__pyx_k__q": 2,
- "__pyx_k__Zd": 2,
- "__pyx_k__Zf": 2,
- "__pyx_k__Zg": 2,
- "__pyx_k__np": 1,
- "__pyx_k__buf": 1,
- "__pyx_k__obj": 1,
- "__pyx_k__base": 1,
- "__pyx_k__ndim": 1,
- "__pyx_k__ones": 1,
- "__pyx_k__descr": 1,
- "__pyx_k__names": 1,
- "__pyx_k__numpy": 1,
- "__pyx_k__range": 1,
- "__pyx_k__shape": 1,
- "__pyx_k__fields": 1,
- "__pyx_k__format": 1,
- "__pyx_k__strides": 1,
- "__pyx_k____main__": 1,
- "__pyx_k____test__": 1,
- "__pyx_k__itemsize": 1,
- "__pyx_k__readonly": 1,
- "__pyx_k__type_num": 1,
- "__pyx_k__byteorder": 1,
- "__pyx_k__ValueError": 1,
- "__pyx_k__suboffsets": 1,
- "__pyx_k__work_module": 1,
- "__pyx_k__RuntimeError": 1,
- "__pyx_k__pure_py_test": 1,
- "__pyx_k__wrapper_inner": 1,
- "__pyx_k__do_awesome_work": 1,
- "*__pyx_kp_s_1": 1,
- "*__pyx_kp_u_11": 1,
- "*__pyx_kp_u_12": 1,
- "*__pyx_kp_u_15": 1,
- "*__pyx_kp_s_2": 1,
- "*__pyx_kp_s_3": 1,
- "*__pyx_kp_u_5": 1,
- "*__pyx_kp_u_7": 1,
- "*__pyx_kp_u_9": 1,
- "*__pyx_n_s__RuntimeError": 1,
- "*__pyx_n_s__ValueError": 1,
- "*__pyx_n_s____main__": 1,
- "*__pyx_n_s____test__": 1,
- "*__pyx_n_s__base": 1,
- "*__pyx_n_s__buf": 1,
- "*__pyx_n_s__byteorder": 1,
- "*__pyx_n_s__descr": 1,
- "*__pyx_n_s__do_awesome_work": 1,
- "*__pyx_n_s__fields": 1,
- "*__pyx_n_s__format": 1,
- "*__pyx_n_s__itemsize": 1,
- "*__pyx_n_s__names": 1,
- "*__pyx_n_s__ndim": 1,
- "*__pyx_n_s__np": 1,
- "*__pyx_n_s__numpy": 1,
- "*__pyx_n_s__obj": 1,
- "*__pyx_n_s__ones": 1,
- "*__pyx_n_s__pure_py_test": 1,
- "*__pyx_n_s__range": 1,
- "*__pyx_n_s__readonly": 1,
- "*__pyx_n_s__shape": 1,
- "*__pyx_n_s__strides": 1,
- "*__pyx_n_s__suboffsets": 1,
- "*__pyx_n_s__type_num": 1,
- "*__pyx_n_s__work_module": 1,
- "*__pyx_n_s__wrapper_inner": 1,
- "*__pyx_int_5": 1,
- "*__pyx_int_15": 1,
- "*__pyx_k_tuple_4": 1,
- "*__pyx_k_tuple_6": 1,
- "*__pyx_k_tuple_8": 1,
- "*__pyx_k_tuple_10": 1,
- "*__pyx_k_tuple_13": 1,
- "*__pyx_k_tuple_14": 1,
- "*__pyx_k_tuple_16": 1,
- "__pyx_v_num_x": 4,
- "*__pyx_v_data_ptr": 2,
- "*__pyx_v_answer_ptr": 2,
- "__pyx_v_nd": 6,
- "*__pyx_v_dims": 2,
- "__pyx_v_typenum": 6,
- "*__pyx_v_data_np": 2,
- "__pyx_v_sum": 6,
- "__pyx_t_1": 154,
- "*__pyx_t_2": 4,
- "*__pyx_t_3": 4,
- "*__pyx_t_4": 3,
- "__pyx_t_5": 75,
- "__pyx_kp_s_1": 1,
- "__pyx_filename": 79,
- "__pyx_f": 79,
- "__pyx_L1_error": 88,
- "__pyx_v_dims": 4,
- "NPY_DOUBLE": 3,
- "__pyx_t_2": 120,
- "PyArray_SimpleNewFromData": 2,
- "__pyx_v_data_ptr": 2,
- "Py_None": 38,
- "__pyx_ptype_5numpy_ndarray": 2,
- "__pyx_v_data_np": 10,
- "__Pyx_GetName": 4,
- "__pyx_m": 4,
- "__pyx_n_s__work_module": 3,
- "__pyx_t_3": 113,
- "PyObject_GetAttr": 4,
- "__pyx_n_s__do_awesome_work": 3,
- "PyTuple_New": 4,
- "PyTuple_SET_ITEM": 4,
- "__pyx_t_4": 35,
- "PyObject_Call": 11,
- "PyErr_Occurred": 2,
- "__pyx_v_answer_ptr": 2,
- "__pyx_L0": 24,
- "__pyx_v_num_y": 2,
- "__pyx_kp_s_2": 1,
- "*__pyx_pf_13wrapper_inner_pure_py_test": 2,
- "*__pyx_self": 2,
- "*unused": 2,
- "PyMethodDef": 1,
- "__pyx_mdef_13wrapper_inner_pure_py_test": 1,
- "PyCFunction": 1,
- "__pyx_pf_13wrapper_inner_pure_py_test": 1,
- "METH_NOARGS": 1,
- "*__pyx_v_data": 1,
- "*__pyx_r": 7,
- "*__pyx_t_1": 8,
- "__pyx_self": 2,
- "__pyx_v_data": 7,
- "__pyx_kp_s_3": 1,
- "__pyx_n_s__np": 1,
- "__pyx_n_s__ones": 1,
- "__pyx_k_tuple_4": 1,
- "__pyx_r": 39,
- "__Pyx_AddTraceback": 7,
- "__pyx_pf_5numpy_7ndarray___getbuffer__": 2,
- "*__pyx_v_self": 4,
- "*__pyx_v_info": 4,
- "__pyx_v_flags": 4,
- "__pyx_v_copy_shape": 5,
- "__pyx_v_i": 6,
- "__pyx_v_ndim": 6,
- "__pyx_v_endian_detector": 6,
- "__pyx_v_little_endian": 8,
- "__pyx_v_t": 29,
- "*__pyx_v_f": 2,
- "*__pyx_v_descr": 2,
- "__pyx_v_offset": 9,
- "__pyx_v_hasfields": 4,
- "__pyx_t_6": 40,
- "__pyx_t_7": 9,
- "*__pyx_t_8": 1,
- "*__pyx_t_9": 1,
- "__pyx_v_info": 33,
- "__pyx_v_self": 16,
- "PyArray_NDIM": 1,
- "__pyx_L5": 6,
- "PyArray_CHKFLAGS": 2,
- "NPY_C_CONTIGUOUS": 1,
- "__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": 1,
- "PyArray_DATA": 1,
- "strides": 5,
- "malloc": 2,
- "shape": 3,
- "PyArray_STRIDES": 2,
- "PyArray_DIMS": 2,
- "__pyx_L8": 2,
- "suboffsets": 1,
- "PyArray_ITEMSIZE": 1,
- "PyArray_ISWRITEABLE": 1,
- "__pyx_v_f": 31,
- "descr": 2,
- "__pyx_v_descr": 10,
- "PyDataType_HASFIELDS": 2,
- "__pyx_L11": 7,
- "type_num": 2,
- "byteorder": 4,
- "__pyx_k_tuple_10": 1,
- "__pyx_L13": 2,
- "NPY_BYTE": 2,
- "__pyx_L14": 18,
- "NPY_UBYTE": 2,
- "NPY_SHORT": 2,
- "NPY_USHORT": 2,
- "NPY_INT": 2,
- "NPY_UINT": 2,
- "NPY_LONG": 1,
- "NPY_ULONG": 1,
- "NPY_LONGLONG": 1,
- "NPY_ULONGLONG": 1,
- "NPY_FLOAT": 1,
- "NPY_LONGDOUBLE": 1,
- "NPY_CFLOAT": 1,
- "NPY_CDOUBLE": 1,
- "NPY_CLONGDOUBLE": 1,
- "NPY_OBJECT": 1,
- "__pyx_t_8": 16,
- "PyNumber_Remainder": 1,
- "__pyx_kp_u_11": 1,
- "format": 6,
- "__pyx_L12": 2,
- "__pyx_t_9": 7,
- "__pyx_f_5numpy__util_dtypestring": 1,
- "__pyx_L2": 2,
- "__pyx_pf_5numpy_7ndarray_1__releasebuffer__": 2,
- "PyArray_HASFIELDS": 1,
- "free": 2,
- "*__pyx_f_5numpy_PyArray_MultiIterNew1": 1,
- "*__pyx_v_a": 5,
- "PyArray_MultiIterNew": 5,
- "__pyx_v_a": 5,
- "*__pyx_v_b": 4,
- "__pyx_v_b": 4,
- "*__pyx_v_c": 3,
- "__pyx_v_c": 3,
- "*__pyx_v_d": 2,
- "__pyx_v_d": 2,
- "*__pyx_v_e": 1,
- "__pyx_v_e": 1,
- "*__pyx_v_end": 1,
- "*__pyx_v_offset": 1,
- "*__pyx_v_child": 1,
- "*__pyx_v_fields": 1,
- "*__pyx_v_childname": 1,
- "*__pyx_v_new_offset": 1,
- "*__pyx_v_t": 1,
- "*__pyx_t_5": 1,
- "__pyx_t_10": 7,
- "*__pyx_t_11": 1,
- "__pyx_v_child": 8,
- "__pyx_v_fields": 7,
- "__pyx_v_childname": 4,
- "__pyx_v_new_offset": 5,
- "names": 2,
- "PyTuple_GET_SIZE": 2,
- "PyTuple_GET_ITEM": 3,
- "PyObject_GetItem": 1,
- "fields": 1,
- "PyTuple_CheckExact": 1,
- "tuple": 3,
- "__pyx_ptype_5numpy_dtype": 1,
- "__pyx_v_end": 2,
- "PyNumber_Subtract": 2,
- "PyObject_RichCompare": 8,
- "__pyx_int_15": 1,
- "Py_LT": 2,
- "__pyx_builtin_RuntimeError": 2,
- "__pyx_k_tuple_13": 1,
- "__pyx_k_tuple_14": 1,
- "elsize": 1,
- "__pyx_k_tuple_16": 1,
- "__pyx_L10": 2,
- "Py_EQ": 6
- },
"Ceylon": {
"doc": 2,
"by": 1,
@@ -13031,6 +10838,95 @@
"IHhas_type1.": 1,
"IHhas_type2.": 1
},
+ "Creole": {
+ "Creole": 6,
+ "is": 3,
+ "a": 2,
+ "-": 5,
+ "to": 2,
+ "HTML": 1,
+ "converter": 2,
+ "for": 1,
+ "the": 5,
+ "lightweight": 1,
+ "markup": 1,
+ "language": 1,
+ "(": 5,
+ "http": 4,
+ "//wikicreole.org/": 1,
+ ")": 5,
+ ".": 1,
+ "Github": 1,
+ "uses": 1,
+ "this": 1,
+ "render": 1,
+ "*.creole": 1,
+ "files.": 1,
+ "Project": 1,
+ "page": 1,
+ "on": 2,
+ "github": 1,
+ "*": 5,
+ "//github.com/minad/creole": 1,
+ "Travis": 1,
+ "CI": 1,
+ "https": 1,
+ "//travis": 1,
+ "ci.org/minad/creole": 1,
+ "RDOC": 1,
+ "//rdoc.info/projects/minad/creole": 1,
+ "INSTALLATION": 1,
+ "{": 6,
+ "gem": 1,
+ "install": 1,
+ "creole": 1,
+ "}": 6,
+ "SYNOPSIS": 1,
+ "require": 1,
+ "html": 1,
+ "Creole.creolize": 1,
+ "BUGS": 1,
+ "If": 1,
+ "you": 1,
+ "found": 1,
+ "bug": 1,
+ "please": 1,
+ "report": 1,
+ "it": 1,
+ "at": 1,
+ "project": 1,
+ "s": 1,
+ "tracker": 1,
+ "GitHub": 1,
+ "//github.com/minad/creole/issues": 1,
+ "AUTHORS": 1,
+ "Lars": 2,
+ "Christensen": 2,
+ "larsch": 1,
+ "Daniel": 2,
+ "Mendler": 1,
+ "minad": 1,
+ "LICENSE": 1,
+ "Copyright": 1,
+ "c": 1,
+ "Mendler.": 1,
+ "It": 1,
+ "free": 1,
+ "software": 1,
+ "and": 1,
+ "may": 1,
+ "be": 1,
+ "redistributed": 1,
+ "under": 1,
+ "terms": 1,
+ "specified": 1,
+ "in": 1,
+ "README": 1,
+ "file": 1,
+ "of": 1,
+ "Ruby": 1,
+ "distribution.": 1
+ },
"CSS": {
".clearfix": 8,
"{": 1661,
@@ -15119,258 +13015,6 @@
"stat": 2,
"rm": 1
},
- "Forth": {
- "(": 88,
- "Block": 2,
- "words.": 6,
- ")": 87,
- "variable": 3,
- "blk": 3,
- "current": 5,
- "-": 473,
- "block": 8,
- "n": 22,
- "addr": 11,
- ";": 61,
- "buffer": 2,
- "evaluate": 1,
- "extended": 3,
- "semantics": 3,
- "flush": 1,
- "load": 2,
- "...": 4,
- "dup": 10,
- "save": 2,
- "input": 2,
- "in": 4,
- "@": 13,
- "source": 5,
- "#source": 2,
- "interpret": 1,
- "restore": 1,
- "buffers": 2,
- "update": 1,
- "extension": 4,
- "empty": 2,
- "scr": 2,
- "list": 1,
- "bounds": 1,
- "do": 2,
- "i": 5,
- "emit": 2,
- "loop": 4,
- "refill": 2,
- "thru": 1,
- "x": 10,
- "y": 5,
- "+": 17,
- "swap": 12,
- "*": 9,
- "forth": 2,
- "Copyright": 3,
- "Lars": 3,
- "Brinkhoff": 3,
- "Kernel": 4,
- "#tib": 2,
- "TODO": 12,
- ".r": 1,
- ".": 5,
- "[": 16,
- "char": 10,
- "]": 15,
- "parse": 5,
- "type": 3,
- "immediate": 19,
- "<": 14,
- "flag": 4,
- "r": 18,
- "x1": 5,
- "x2": 5,
- "R": 13,
- "rot": 2,
- "r@": 2,
- "noname": 1,
- "align": 2,
- "here": 9,
- "c": 3,
- "allot": 2,
- "lastxt": 4,
- "SP": 1,
- "query": 1,
- "tib": 1,
- "body": 1,
- "true": 1,
- "tuck": 2,
- "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,
- "action": 1,
- "of": 3,
- "defer": 2,
- "name": 1,
- "s": 4,
- "c@": 2,
- "negate": 1,
- "nip": 2,
- "bl": 4,
- "word": 9,
- "ahead": 2,
- "resolve": 4,
- "literal": 4,
- "postpone": 14,
- "nonimmediate": 1,
- "caddr": 1,
- "C": 9,
- "find": 2,
- "cells": 1,
- "postponers": 1,
- "execute": 1,
- "unresolved": 4,
- "orig": 5,
- "chars": 1,
- "n1": 2,
- "n2": 2,
- "orig1": 1,
- "orig2": 1,
- "branch": 5,
- "dodoes_code": 1,
- "code": 3,
- "begin": 2,
- "dest": 5,
- "while": 2,
- "repeat": 2,
- "until": 1,
- "recurse": 1,
- "pad": 3,
- "If": 1,
- "necessary": 1,
- "and": 3,
- "keep": 1,
- "parsing.": 1,
- "string": 3,
- "cmove": 1,
- "state": 2,
- "cr": 3,
- "abort": 3,
- "": 1,
- "Undefined": 1,
- "ok": 1,
- "HELLO": 4,
- "KataDiversion": 1,
- "Forth": 1,
- "utils": 1,
- "the": 7,
- "stack": 3,
- "EMPTY": 1,
- "DEPTH": 2,
- "IF": 10,
- "BEGIN": 3,
- "DROP": 5,
- "UNTIL": 3,
- "THEN": 10,
- "power": 2,
- "**": 2,
- "n1_pow_n2": 1,
- "SWAP": 8,
- "DUP": 14,
- "DO": 2,
- "OVER": 2,
- "LOOP": 2,
- "NIP": 4,
- "compute": 1,
- "highest": 1,
- "below": 1,
- "N.": 1,
- "e.g.": 2,
- "MAXPOW2": 2,
- "log2_n": 1,
- "ABORT": 1,
- "ELSE": 7,
- "|": 4,
- "I": 5,
- "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,
- "BITS": 3,
- "bool": 1,
- "uses": 1,
- "following": 1,
- "algorithm": 1,
- "return": 5,
- "A": 5,
- "X": 5,
- "LOG2": 1,
- "end": 1,
- "OR": 1,
- "INVERT": 1,
- "maximum": 1,
- "number": 4,
- "which": 3,
- "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,
- "Tools": 2,
- ".s": 1,
- "depth": 1,
- "traverse": 1,
- "dictionary": 1,
- "assembler": 1,
- "kernel": 1,
- "bye": 1,
- "cs": 2,
- "pick": 1,
- "roll": 1,
- "editor": 1,
- "forget": 1,
- "reveal": 1,
- "tools": 1,
- "nr": 1,
- "synonym": 1,
- "undefined": 2,
- "defined": 1,
- "invert": 1,
- "/cell": 2,
- "cell": 2
- },
"GAS": {
".cstring": 1,
"LC0": 2,
@@ -23188,10 +20832,10 @@
"logger": 2
},
"JSON": {
- "{": 17,
- "}": 17,
- "[": 2,
- "]": 2,
+ "{": 73,
+ "[": 17,
+ "]": 17,
+ "}": 73,
"true": 3
},
"Julia": {
@@ -23379,870 +21023,6 @@
")": 1,
";": 1
},
- "Lasso": {
- "<": 7,
- "LassoScript": 1,
- "//": 169,
- "JSON": 2,
- "Encoding": 1,
- "and": 52,
- "Decoding": 1,
- "Copyright": 1,
- "-": 2248,
- "LassoSoft": 1,
- "Inc.": 1,
- " ": 1,
- " ": 1,
- "": 1,
- "This": 5,
- "tag": 11,
- "is": 35,
- "now": 23,
- "incorporated": 1,
- "in": 46,
- "Lasso": 15,
- "If": 4,
- "(": 640,
- "Lasso_TagExists": 1,
- ")": 639,
- "False": 1,
- ";": 573,
- "Define_Tag": 1,
- "Namespace": 1,
- "Required": 1,
- "Optional": 1,
- "Local": 7,
- "Map": 3,
- "r": 8,
- "n": 30,
- "t": 8,
- "f": 2,
- "b": 2,
- "output": 30,
- "newoptions": 1,
- "options": 2,
- "array": 20,
- "set": 10,
- "list": 4,
- "queue": 2,
- "priorityqueue": 2,
- "stack": 2,
- "pair": 1,
- "map": 23,
- "[": 22,
- "]": 23,
- "literal": 3,
- "string": 59,
- "integer": 30,
- "decimal": 5,
- "boolean": 4,
- "null": 26,
- "date": 23,
- "temp": 12,
- "object": 7,
- "{": 18,
- "}": 18,
- "client_ip": 1,
- "client_address": 1,
- "__jsonclass__": 6,
- "deserialize": 2,
- "": 3,
- " ": 3,
- "Decode_JSON": 2,
- "Decode_": 1,
- "value": 14,
- "consume_string": 1,
- "ibytes": 9,
- "unescapes": 1,
- "u": 1,
- "UTF": 4,
- "%": 14,
- "QT": 4,
- "TZ": 2,
- "T": 3,
- "consume_token": 1,
- "obytes": 3,
- "delimit": 7,
- "true": 12,
- "false": 8,
- ".": 5,
- "consume_array": 1,
- "consume_object": 1,
- "key": 3,
- "val": 1,
- "native": 2,
- "comment": 2,
- "http": 6,
- "//www.lassosoft.com/json": 1,
- "start": 5,
- "Literal": 2,
- "String": 1,
- "Object": 2,
- "JSON_RPCCall": 1,
- "RPCCall": 1,
- "JSON_": 1,
- "method": 7,
- "params": 11,
- "id": 7,
- "host": 6,
- "//localhost/lassoapps.8/rpc/rpc.lasso": 1,
- "request": 2,
- "result": 6,
- "JSON_Records": 3,
- "KeyField": 1,
- "ReturnField": 1,
- "ExcludeField": 1,
- "Fields": 1,
- "_fields": 1,
- "fields": 2,
- "No": 1,
- "found": 5,
- "for": 65,
- "_keyfield": 4,
- "keyfield": 4,
- "ID": 1,
- "_index": 1,
- "_return": 1,
- "returnfield": 1,
- "_exclude": 1,
- "excludefield": 1,
- "_records": 1,
- "_record": 1,
- "_temp": 1,
- "_field": 1,
- "_output": 1,
- "error_msg": 15,
- "error_code": 11,
- "found_count": 11,
- "rows": 1,
- "#_records": 1,
- "Return": 7,
- "@#_output": 1,
- "/Define_Tag": 1,
- "/If": 3,
- "define": 20,
- "trait_json_serialize": 2,
- "trait": 1,
- "require": 1,
- "asString": 3,
- "json_serialize": 18,
- "e": 13,
- "bytes": 8,
- "+": 146,
- "#e": 13,
- "Replace": 19,
- "&": 21,
- "json_literal": 1,
- "asstring": 4,
- "format": 7,
- "gmt": 1,
- "|": 13,
- "trait_forEach": 1,
- "local": 116,
- "foreach": 1,
- "#output": 50,
- "#delimit": 7,
- "#1": 3,
- "return": 75,
- "with": 25,
- "pr": 1,
- "eachPair": 1,
- "select": 1,
- "#pr": 2,
- "first": 12,
- "second": 8,
- "join": 5,
- "json_object": 2,
- "foreachpair": 1,
- "any": 14,
- "serialize": 1,
- "json_consume_string": 3,
- "while": 9,
- "#temp": 19,
- "#ibytes": 17,
- "export8bits": 6,
- "#obytes": 5,
- "import8bits": 4,
- "Escape": 1,
- "/while": 7,
- "unescape": 1,
- "//Replace": 1,
- "if": 76,
- "BeginsWith": 1,
- "&&": 30,
- "EndsWith": 1,
- "Protect": 1,
- "serialization_reader": 1,
- "xml": 1,
- "read": 1,
- "/Protect": 1,
- "else": 32,
- "size": 24,
- "or": 6,
- "regexp": 1,
- "d": 2,
- "Z": 1,
- "matches": 1,
- "Format": 1,
- "yyyyMMdd": 2,
- "HHmmssZ": 1,
- "HHmmss": 1,
- "/if": 53,
- "json_consume_token": 2,
- "marker": 4,
- "Is": 1,
- "also": 5,
- "end": 2,
- "of": 24,
- "token": 1,
- "//............................................................................": 2,
- "string_IsNumeric": 1,
- "json_consume_array": 3,
- "While": 1,
- "Discard": 1,
- "whitespace": 3,
- "Else": 7,
- "insert": 18,
- "#key": 12,
- "json_consume_object": 2,
- "Loop_Abort": 1,
- "/While": 1,
- "Find": 3,
- "isa": 25,
- "First": 4,
- "find": 57,
- "Second": 1,
- "json_deserialize": 1,
- "removeLeading": 1,
- "bom_utf8": 1,
- "Reset": 1,
- "on": 1,
- "provided": 1,
- "**/": 1,
- "type": 63,
- "parent": 5,
- "public": 1,
- "onCreate": 1,
- "...": 3,
- "..onCreate": 1,
- "#rest": 1,
- "json_rpccall": 1,
- "#id": 2,
- "#host": 4,
- "Lasso_UniqueID": 1,
- "Include_URL": 1,
- "PostParams": 1,
- "Encode_JSON": 1,
- "#method": 1,
- "#params": 5,
- "": 6,
- "2009": 14,
- "09": 10,
- "04": 8,
- "JS": 126,
- "Added": 40,
- "content_body": 14,
- "compatibility": 4,
- "pre": 4,
- "8": 6,
- "5": 4,
- "05": 4,
- "07": 6,
- "timestamp": 4,
- "to": 98,
- "knop_cachestore": 4,
- "maxage": 2,
- "parameter": 8,
- "knop_cachefetch": 4,
- "Corrected": 8,
- "construction": 2,
- "cache_name": 2,
- "internally": 2,
- "the": 86,
- "knop_cache": 2,
- "tags": 14,
- "so": 16,
- "it": 20,
- "will": 12,
- "work": 6,
- "correctly": 2,
- "at": 10,
- "site": 4,
- "root": 2,
- "2008": 6,
- "11": 8,
- "dummy": 2,
- "knop_debug": 4,
- "ctype": 2,
- "be": 38,
- "able": 14,
- "transparently": 2,
- "without": 4,
- "L": 2,
- "Debug": 2,
- "24": 2,
- "knop_stripbackticks": 2,
- "01": 4,
- "28": 2,
- "Cache": 2,
- "name": 32,
- "used": 12,
- "when": 10,
- "using": 8,
- "session": 4,
- "storage": 8,
- "2007": 6,
- "12": 8,
- "knop_cachedelete": 2,
- "Created": 4,
- "03": 2,
- "knop_foundrows": 2,
- "condition": 4,
- "returning": 2,
- "normal": 2,
- "For": 2,
- "lasso_tagexists": 4,
- "define_tag": 48,
- "namespace=": 12,
- "__html_reply__": 4,
- "define_type": 14,
- "debug": 2,
- "_unknowntag": 6,
- "onconvert": 2,
- "stripbackticks": 2,
- "description=": 2,
- "priority=": 2,
- "required=": 2,
- "input": 2,
- "split": 2,
- "@#output": 2,
- "/define_tag": 36,
- "description": 34,
- "namespace": 16,
- "priority": 8,
- "Johan": 2,
- "S": 2,
- "lve": 2,
- "#charlist": 6,
- "current": 10,
- "time": 8,
- "a": 52,
- "mixed": 2,
- "up": 4,
- "as": 26,
- "seed": 6,
- "#seed": 36,
- "convert": 4,
- "this": 14,
- "base": 6,
- "conversion": 4,
- "get": 12,
- "#base": 8,
- "/": 6,
- "over": 2,
- "new": 14,
- "chunk": 2,
- "millisecond": 2,
- "math_random": 2,
- "lower": 2,
- "upper": 2,
- "__lassoservice_ip__": 2,
- "response_localpath": 8,
- "removetrailing": 8,
- "response_filepath": 8,
- "//tagswap.net/found_rows": 2,
- "action_statement": 2,
- "string_findregexp": 8,
- "#sql": 42,
- "ignorecase": 12,
- "||": 8,
- "maxrecords_value": 2,
- "inaccurate": 2,
- "must": 4,
- "accurate": 2,
- "Default": 2,
- "usually": 2,
- "fastest.": 2,
- "Can": 2,
- "not": 10,
- "GROUP": 4,
- "BY": 6,
- "example.": 2,
- "normalize": 4,
- "around": 2,
- "FROM": 2,
- "expression": 6,
- "string_replaceregexp": 8,
- "replace": 8,
- "ReplaceOnlyOne": 2,
- "substring": 6,
- "remove": 6,
- "ORDER": 2,
- "statement": 4,
- "since": 4,
- "causes": 4,
- "problems": 2,
- "field": 26,
- "aliases": 2,
- "we": 2,
- "can": 14,
- "simple": 2,
- "later": 2,
- "query": 4,
- "contains": 2,
- "use": 10,
- "SQL_CALC_FOUND_ROWS": 2,
- "which": 2,
- "much": 2,
- "slower": 2,
- "see": 16,
- "//bugs.mysql.com/bug.php": 2,
- "removeleading": 2,
- "inline": 4,
- "sql": 2,
- "exit": 2,
- "here": 2,
- "normally": 2,
- "/inline": 2,
- "fallback": 4,
- "required": 10,
- "optional": 36,
- "local_defined": 26,
- "knop_seed": 2,
- "#RandChars": 4,
- "Get": 2,
- "Math_Random": 2,
- "Min": 2,
- "Max": 2,
- "Size": 2,
- "#value": 14,
- "#numericValue": 4,
- "length": 8,
- "#cryptvalue": 10,
- "#anyChar": 2,
- "Encrypt_Blowfish": 2,
- "decrypt_blowfish": 2,
- "String_Remove": 2,
- "StartPosition": 2,
- "EndPosition": 2,
- "Seed": 2,
- "String_IsAlphaNumeric": 2,
- "self": 72,
- "_date_msec": 4,
- "/define_type": 4,
- "seconds": 4,
- "default": 4,
- "store": 4,
- "all": 6,
- "page": 14,
- "vars": 8,
- "specified": 8,
- "iterate": 12,
- "keys": 6,
- "var": 38,
- "#item": 10,
- "#type": 26,
- "#data": 14,
- "/iterate": 12,
- "//fail_if": 6,
- "session_id": 6,
- "#session": 10,
- "session_addvar": 4,
- "#cache_name": 72,
- "duration": 4,
- "#expires": 4,
- "server_name": 6,
- "initiate": 10,
- "thread": 6,
- "RW": 6,
- "lock": 24,
- "global": 40,
- "Thread_RWLock": 6,
- "create": 6,
- "reference": 10,
- "@": 8,
- "writing": 6,
- "#lock": 12,
- "writelock": 4,
- "check": 6,
- "cache": 4,
- "unlock": 6,
- "writeunlock": 4,
- "#maxage": 4,
- "cached": 8,
- "data": 12,
- "too": 4,
- "old": 4,
- "reading": 2,
- "readlock": 2,
- "readunlock": 2,
- "ignored": 2,
- "//##################################################################": 4,
- "knoptype": 2,
- "All": 4,
- "Knop": 6,
- "custom": 8,
- "types": 10,
- "should": 4,
- "have": 6,
- "identify": 2,
- "registered": 2,
- "knop": 6,
- "isknoptype": 2,
- "knop_knoptype": 2,
- "prototype": 4,
- "version": 4,
- "14": 4,
- "Base": 2,
- "framework": 2,
- "Contains": 2,
- "common": 4,
- "member": 10,
- "Used": 2,
- "boilerplate": 2,
- "creating": 4,
- "other": 4,
- "instance": 8,
- "variables": 2,
- "are": 4,
- "available": 2,
- "well": 2,
- "CHANGE": 4,
- "NOTES": 4,
- "Syntax": 4,
- "adjustments": 4,
- "9": 2,
- "Changed": 6,
- "error": 22,
- "numbers": 2,
- "added": 10,
- "even": 2,
- "language": 10,
- "already": 2,
- "exists.": 2,
- "improved": 4,
- "reporting": 2,
- "messages": 6,
- "such": 2,
- "from": 6,
- "bad": 2,
- "database": 14,
- "queries": 2,
- "error_lang": 2,
- "provide": 2,
- "knop_lang": 8,
- "add": 12,
- "localized": 2,
- "except": 2,
- "knop_base": 8,
- "html": 4,
- "xhtml": 28,
- "help": 10,
- "nicely": 2,
- "formatted": 2,
- "output.": 2,
- "Centralized": 2,
- "knop_base.": 2,
- "Moved": 6,
- "codes": 2,
- "improve": 2,
- "documentation.": 2,
- "It": 2,
- "always": 2,
- "an": 8,
- "parameter.": 2,
- "trace": 2,
- "tagtime": 4,
- "was": 6,
- "nav": 4,
- "earlier": 2,
- "varname": 4,
- "retreive": 2,
- "variable": 8,
- "that": 18,
- "stored": 2,
- "in.": 2,
- "automatically": 2,
- "sense": 2,
- "doctype": 6,
- "exists": 2,
- "buffer.": 2,
- "The": 6,
- "performance.": 2,
- "internal": 2,
- "html.": 2,
- "Introduced": 2,
- "_knop_data": 10,
- "general": 2,
- "level": 2,
- "caching": 2,
- "between": 2,
- "different": 2,
- "objects.": 2,
- "TODO": 2,
- "option": 2,
- "Google": 2,
- "Code": 2,
- "Wiki": 2,
- "working": 2,
- "properly": 4,
- "run": 2,
- "by": 12,
- "atbegin": 2,
- "handler": 2,
- "explicitly": 2,
- "*/": 2,
- "entire": 4,
- "ms": 2,
- "defined": 4,
- "each": 8,
- "instead": 4,
- "avoid": 2,
- "recursion": 2,
- "properties": 4,
- "#endslash": 10,
- "#tags": 2,
- "#t": 2,
- "doesn": 4,
- "p": 2,
- "Parameters": 4,
- "nParameters": 2,
- "Internal.": 2,
- "Finds": 2,
- "out": 2,
- "used.": 2,
- "Looks": 2,
- "unless": 2,
- "array.": 2,
- "variable.": 2,
- "Looking": 2,
- "#xhtmlparam": 4,
- "plain": 2,
- "#doctype": 4,
- "copy": 4,
- "standard": 2,
- "code": 2,
- "errors": 12,
- "error_data": 12,
- "form": 2,
- "grid": 2,
- "lang": 2,
- "user": 4,
- "#error_lang": 12,
- "addlanguage": 4,
- "strings": 6,
- "@#errorcodes": 2,
- "#error_lang_custom": 2,
- "#custom_language": 10,
- "once": 4,
- "one": 2,
- "#custom_string": 4,
- "#errorcodes": 4,
- "#error_code": 10,
- "message": 6,
- "getstring": 2,
- "test": 2,
- "known": 2,
- "lasso": 2,
- "knop_timer": 2,
- "knop_unique": 2,
- "look": 2,
- "#varname": 6,
- "loop_abort": 2,
- "tag_name": 2,
- "#timer": 2,
- "#trace": 4,
- "merge": 2,
- "#eol": 8,
- "2010": 4,
- "23": 4,
- "Custom": 2,
- "interact": 2,
- "databases": 2,
- "Supports": 4,
- "both": 2,
- "MySQL": 2,
- "FileMaker": 2,
- "datasources": 2,
- "2012": 4,
- "06": 2,
- "10": 2,
- "SP": 4,
- "Fix": 2,
- "precision": 2,
- "bug": 2,
- "6": 2,
- "0": 2,
- "1": 2,
- "renderfooter": 2,
- "15": 2,
- "Add": 2,
- "support": 6,
- "Thanks": 2,
- "Ric": 2,
- "Lewis": 2,
- "settable": 4,
- "removed": 2,
- "table": 6,
- "nextrecord": 12,
- "deprecation": 2,
- "warning": 2,
- "corrected": 2,
- "verification": 2,
- "index": 4,
- "before": 4,
- "calling": 2,
- "resultset_count": 6,
- "break": 2,
- "versions": 2,
- "fixed": 4,
- "incorrect": 2,
- "debug_trace": 2,
- "addrecord": 4,
- "how": 2,
- "keyvalue": 10,
- "returned": 6,
- "adding": 2,
- "records": 4,
- "inserting": 2,
- "generated": 2,
- "suppressed": 2,
- "specifying": 2,
- "saverecord": 8,
- "deleterecord": 4,
- "case.": 2,
- "recorddata": 6,
- "no": 2,
- "longer": 2,
- "touch": 2,
- "current_record": 2,
- "zero": 2,
- "access": 2,
- "occurrence": 2,
- "same": 4,
- "returns": 4,
- "knop_databaserows": 2,
- "inlinename.": 4,
- "next.": 2,
- "remains": 2,
- "supported": 2,
- "backwards": 2,
- "compatibility.": 2,
- "resets": 2,
- "record": 20,
- "pointer": 8,
- "reaching": 2,
- "last": 4,
- "honors": 2,
- "incremented": 2,
- "recordindex": 4,
- "specific": 2,
- "found.": 2,
- "getrecord": 8,
- "REALLY": 2,
- "works": 4,
- "keyvalues": 4,
- "double": 2,
- "oops": 4,
- "I": 4,
- "thought": 2,
- "but": 2,
- "misplaced": 2,
- "paren...": 2,
- "corresponding": 2,
- "resultset": 2,
- "/resultset": 2,
- "through": 2,
- "handling": 2,
- "better": 2,
- "knop_user": 4,
- "keeplock": 4,
- "updates": 2,
- "datatype": 2,
- "knop_databaserow": 2,
- "iterated.": 2,
- "When": 2,
- "iterating": 2,
- "row": 2,
- "values.": 2,
- "Addedd": 2,
- "increments": 2,
- "recordpointer": 2,
- "called": 2,
- "until": 2,
- "reached.": 2,
- "Returns": 2,
- "long": 2,
- "there": 2,
- "more": 2,
- "records.": 2,
- "Useful": 2,
- "loop": 2,
- "example": 2,
- "below": 2,
- "Implemented": 2,
- "reset": 2,
- "query.": 2,
- "shortcut": 2,
- "Removed": 2,
- "onassign": 2,
- "touble": 2,
- "Extended": 2,
- "field_names": 2,
- "names": 4,
- "db": 2,
- "objects": 2,
- "never": 2,
- "been": 2,
- "optionally": 2,
- "supports": 2,
- "sql.": 2,
- "Make": 2,
- "sure": 2,
- "SQL": 2,
- "includes": 2,
- "relevant": 2,
- "lockfield": 2,
- "locking": 4,
- "capturesearchvars": 2,
- "mysteriously": 2,
- "after": 2,
- "operations": 2,
- "caused": 2,
- "errors.": 2,
- "flag": 2,
- "save": 2,
- "locked": 2,
- "releasing": 2,
- "Adding": 2,
- "progress.": 2,
- "Done": 2,
- "oncreate": 2,
- "getrecord.": 2,
- "documentation": 2,
- "most": 2,
- "existing": 2,
- "it.": 2,
- "Faster": 2,
- "than": 2,
- "scratch.": 2,
- "shown_first": 2,
- "again": 2,
- "hoping": 2,
- "s": 2,
- "only": 2,
- "captured": 2,
- "update": 2,
- "uselimit": 2,
- "querys": 2,
- "LIMIT": 2,
- "still": 2,
- "gets": 2,
- "proper": 2,
- "searchresult": 2,
- "separate": 2,
- "COUNT": 2
- },
"Less": {
"@blue": 4,
"#3bbfce": 1,
@@ -25131,48 +21911,34 @@
"in_8_list": 1
},
"M": {
- "%": 203,
- "zewdAPI": 52,
+ "start": 24,
";": 1275,
- "Enterprise": 5,
- "Web": 5,
- "Developer": 5,
- "run": 2,
- "-": 1604,
- "time": 9,
- "functions": 4,
- "and": 56,
- "user": 27,
- "APIs": 1,
- "Product": 2,
+ "create": 6,
+ "student": 14,
+ "data": 43,
+ "set": 98,
"(": 2142,
- "Build": 6,
")": 2150,
- "Date": 2,
- "Fri": 1,
- "Nov": 1,
- "|": 170,
+ "zwrite": 1,
+ "write": 59,
+ "order": 11,
+ "x": 96,
"for": 77,
- "GT.M": 30,
- "m_apache": 3,
- "Copyright": 12,
- "c": 113,
- "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,
+ "do": 15,
+ "quit": 30,
+ ".": 814,
"This": 26,
- "program": 19,
+ "file": 10,
"is": 81,
+ "part": 3,
+ "of": 80,
+ "DataBallet.": 4,
+ "Copyright": 12,
+ "C": 9,
+ "Laurent": 2,
+ "Parenteau": 2,
+ "": 2,
+ "DataBallet": 4,
"free": 15,
"software": 12,
"you": 16,
@@ -25184,7 +21950,6 @@
"under": 14,
"the": 217,
"terms": 11,
- "of": 80,
"GNU": 33,
"Affero": 33,
"General": 33,
@@ -25237,438 +22002,48 @@
"copy": 13,
"along": 11,
"with": 43,
- "this": 38,
- "program.": 9,
"If": 14,
"not": 37,
"see": 25,
" ": 11,
- ".": 814,
- "QUIT": 249,
- "_": 126,
- "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,
- "n": 197,
- "path": 4,
- "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,
- "line": 9,
- "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,
- "+": 188,
- "f": 93,
- "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,
- "bug": 1,
- "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,
- "[": 53,
- "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,
- "set": 98,
- "m": 37,
- "getSessionArrayErr": 1,
- "Come": 1,
- "here": 4,
- "if": 44,
- "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,
- "x": 96,
- "replace": 27,
- "objectName_": 2,
- "_propertyName": 2,
- "_propertyName_": 2,
- "_propertyValue_": 1,
- "_p": 1,
- "quoted": 1,
- "string": 50,
- "FromStr": 6,
- "S": 99,
- "ToStr": 4,
- "InText": 4,
- "old": 3,
- "new": 15,
- "ok": 14,
- "removeDocument": 1,
- "zewdDOM": 3,
- "instanceName": 2,
- "clearXMLIndex": 1,
- "zewdSchemaForm": 1,
- "closeDOM": 1,
- "makeTokenString": 1,
- "length": 7,
- "token_": 1,
- "r": 88,
- "makeString": 3,
- "char": 9,
- "len": 8,
- "create": 6,
- "characters": 4,
- "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,
- "I": 43,
- "<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,
- "to": 73,
- "GMT": 1,
- "eg": 3,
- "hh": 4,
- "ss": 4,
- "<": 19,
- "_hh": 1,
- "time#3600": 1,
- "_mm": 1,
- "time#60": 1,
- "_ss": 2,
- "hh_": 1,
- "_mm_": 1,
- "openNewFile": 2,
- "openFile": 2,
- "openDOM": 2,
- "&": 27,
- "#39": 1,
- "<\",\"<\")>": 1,
- "string=": 1,
- "gt": 1,
- "amp": 1,
- "HTML": 1,
- "quot": 2,
- "stop": 20,
- "no": 53,
- "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,
- "routine": 4,
- "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,
- "pass": 24,
- "getSelectValue": 3,
- "_user": 1,
- "getPassword": 1,
- "setPassword": 1,
- "getObjDetails": 1,
- "data": 43,
- "_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,
- "must": 7,
- "null": 6,
- "dateTime": 1,
- "start": 24,
- "student": 14,
- "zwrite": 1,
- "write": 59,
- "order": 11,
- "do": 15,
- "quit": 30,
- "file": 10,
- "part": 3,
- "DataBallet.": 4,
- "C": 9,
- "Laurent": 2,
- "Parenteau": 2,
- "": 2,
- "DataBallet": 4,
"encode": 1,
+ "message": 8,
"Return": 1,
"base64": 6,
"URL": 2,
+ "and": 56,
"Filename": 1,
"safe": 3,
"alphabet": 2,
"RFC": 1,
+ "new": 15,
"todrop": 2,
+ "i": 465,
"Populate": 1,
"values": 4,
"on": 15,
"first": 10,
"use": 5,
"only.": 1,
+ "if": 44,
"zextract": 3,
"zlength": 3,
+ "-": 1604,
+ "GT.M": 30,
"Digest": 2,
"Extension": 9,
"Piotr": 7,
"Koper": 7,
"": 7,
+ "program": 19,
+ "this": 38,
+ "program.": 9,
"trademark": 2,
"Fidelity": 2,
"Information": 2,
"Services": 2,
"Inc.": 2,
+ "http": 13,
"//sourceforge.net/projects/fis": 2,
"gtm/": 2,
"simple": 2,
@@ -25686,6 +22061,9 @@
"//www.openssl.org/docs/crypto/EVP_DigestInit.html": 1,
"The": 11,
"return": 7,
+ "value": 72,
+ "from": 16,
+ "&": 27,
"digest.init": 3,
"usually": 1,
"when": 11,
@@ -25701,20 +22079,27 @@
"fail.": 1,
"Please": 2,
"feel": 2,
+ "to": 73,
"contact": 2,
"me": 2,
"questions": 2,
"comments": 4,
+ "m": 37,
"returns": 7,
"ASCII": 1,
"HEX": 1,
"all": 8,
"one": 5,
+ "n": 197,
+ "c": 113,
+ "d": 381,
+ "s": 775,
"digest.update": 2,
".c": 2,
".m": 11,
"digest.final": 2,
".d": 1,
+ "q": 244,
"init": 6,
"alg": 3,
"context": 1,
@@ -25722,6 +22107,7 @@
"try": 1,
"etc": 1,
"returned": 1,
+ "error": 62,
"occurs": 1,
"e.g.": 2,
"unknown": 1,
@@ -25737,6 +22123,7 @@
"frees": 1,
"memory": 1,
"allocated": 1,
+ "also": 4,
".digest": 1,
"algorithms": 1,
"availability": 1,
@@ -25761,6 +22148,7 @@
"variables": 2,
"triangle1": 1,
"sum": 15,
+ "+": 188,
"main2": 1,
"y": 33,
"triangle2": 1,
@@ -25772,10 +22160,12 @@
"start1": 2,
"entry": 5,
"label": 4,
+ "<": 19,
"start2": 1,
"function": 6,
"computes": 1,
"factorial": 3,
+ "f": 93,
"f*n": 1,
"main": 1,
"GMRGPNB0": 1,
@@ -25800,17 +22190,21 @@
"WANT": 1,
"START": 1,
"BUILDING": 1,
+ "S": 99,
"GMRGE0": 11,
"GMRGADD": 4,
+ "Q": 58,
"D": 64,
"GMR": 6,
"GMRGA0": 11,
"GMRGPDA": 9,
"GMRGCSW": 2,
"NOW": 1,
+ "%": 203,
"DTC": 1,
"GMRGB0": 9,
"O": 24,
+ "I": 43,
"GMRGST": 6,
"GMRGPDT": 2,
"STAT": 8,
@@ -25819,8 +22213,10 @@
"GMRGSTAT": 8,
"P": 68,
"_GMRGB0_": 2,
+ "_": 126,
"GMRD": 6,
"GMRGSSW": 3,
+ "[": 53,
"SNT": 1,
"GMRGPNB1": 1,
"GMRGNAR": 8,
@@ -25878,12 +22274,21 @@
"engineering": 1,
"obtaining": 1,
"boolean": 2,
+ "functions": 4,
"integer": 1,
"addition": 1,
"modulo": 1,
"division.": 1,
"//en.wikipedia.org/wiki/MD5": 1,
+ "r": 88,
+ "k": 122,
+ "h": 39,
+ "j": 67,
+ "g": 228,
+ "w": 127,
"t": 11,
+ "p": 84,
+ "l": 84,
"#64": 1,
"msg_": 1,
"_m_": 1,
@@ -25893,6 +22298,7 @@
".p": 1,
"..": 28,
"...": 6,
+ "e": 210,
"*i": 3,
"#16": 3,
"xor": 4,
@@ -25919,14 +22325,31 @@
"Emulation": 1,
"Amazon": 1,
"SimpleDB": 1,
+ "|": 170,
+ "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": 249,
"buildDate": 1,
"indexLength": 10,
"Note": 2,
"keyId": 108,
"been": 4,
"tested": 1,
+ "must": 7,
"valid": 1,
+ "time": 9,
"these": 1,
+ "methods": 2,
"are": 11,
"called": 8,
"To": 2,
@@ -25940,6 +22363,7 @@
"requestId": 17,
"boxUsage": 11,
"startTime": 21,
+ "stop": 20,
".startTime": 5,
"MDBUAF": 2,
"end": 33,
@@ -25950,16 +22374,22 @@
"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": 53,
"deleteDomain": 2,
"listDomains": 1,
"maxNoOfDomains": 2,
@@ -25974,13 +22404,16 @@
"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,
"parseJSON": 1,
"zmwire": 53,
"attributesJSON": 1,
@@ -26011,12 +22444,15 @@
"left": 5,
"completely": 3,
"references": 1,
+ "pos": 33,
"maxNoOfItems": 3,
"itemList": 12,
"session": 1,
"identifier": 1,
"stored": 1,
"queryExpression": 16,
+ "zewd": 17,
+ "ok": 14,
"relink": 1,
"zewdGTMRuntime": 1,
"CGIEVAR": 1,
@@ -26026,7 +22462,9 @@
"KEY": 36,
"response": 29,
"WebLink": 1,
+ "access": 21,
"point": 2,
+ "here": 4,
"action": 15,
"AWSAcessKeyId": 1,
"db": 9,
@@ -26037,6 +22475,7 @@
"signatureVersion": 3,
"stringToSign": 2,
"rltKey": 2,
+ "trace": 24,
"_action_": 2,
"h_": 3,
"mdbKey": 2,
@@ -26085,6 +22524,7 @@
"limit": 14,
"asc": 1,
"inValue": 6,
+ "str": 15,
"expr": 18,
"rel": 2,
"itemStack": 3,
@@ -26096,14 +22536,18 @@
"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,
"np=": 1,
@@ -26124,6 +22568,7 @@
".queryExpression": 1,
".orderBy": 1,
".limit": 1,
+ "replaceAll": 11,
"executeSelect": 1,
".itemStack": 1,
"***": 2,
@@ -26131,12 +22576,25 @@
"numeric": 6,
"N.N": 12,
"N.N1": 4,
+ "escape": 7,
"externalSelect": 2,
"json": 9,
"_keyId_": 1,
"_selectExpression": 1,
+ "FromStr": 6,
+ "ToStr": 4,
+ "InText": 4,
+ "old": 3,
+ "string": 50,
+ "p1": 5,
+ "p2": 10,
+ "stripTrailingSpaces": 2,
"spaces": 3,
+ "makeString": 3,
"string_spaces": 1,
+ "char": 9,
+ "len": 8,
+ "characters": 4,
"test": 6,
"miles": 4,
"gallons": 4,
@@ -26208,6 +22666,7 @@
"help": 2,
"drop": 2,
"hd=": 1,
+ "2": 14,
"matrix": 2,
"stack": 8,
"draw": 3,
@@ -26393,6 +22852,7 @@
"exec": 4,
"subject": 24,
"startoffset": 3,
+ "length": 7,
"octets": 2,
"starts": 1,
"like": 4,
@@ -26440,6 +22900,7 @@
"above": 2,
"stores": 1,
"captured": 6,
+ "array": 22,
"key=": 2,
"gstore": 3,
"round": 12,
@@ -26484,6 +22945,7 @@
"check": 2,
"UTF8": 2,
"double": 1,
+ "line": 9,
"utf8=": 1,
"crlf=": 3,
"NL_CRLF": 1,
@@ -26501,6 +22963,7 @@
"LF": 1,
"CR": 1,
"CRLF": 1,
+ "mode": 12,
"middle": 1,
".i": 2,
".match": 2,
@@ -26536,6 +22999,7 @@
"print": 8,
"aa": 9,
"et": 4,
+ "zt": 20,
"direct": 3,
"take": 1,
"default": 6,
@@ -26624,6 +23088,7 @@
"zl_": 2,
"Compile": 2,
".options": 1,
+ "pass": 24,
"Run": 1,
".offset": 1,
"used.": 2,
@@ -26633,6 +23098,7 @@
"exact": 1,
"usable": 1,
"integers": 1,
+ "Get": 2,
"way": 1,
"i*2": 3,
"what": 2,
@@ -26647,6 +23113,7 @@
"Locale": 5,
"Support": 1,
"Polish": 1,
+ "language": 6,
"I18N": 2,
"PCRE.": 1,
"Polish.": 1,
@@ -26708,6 +23175,7 @@
"get": 2,
"install": 1,
"append": 1,
+ "user": 27,
"chown": 1,
"gtm": 1,
"/opt/gtm": 1,
@@ -26718,6 +23186,7 @@
"ZLINK": 1,
"due": 1,
"unexpected": 1,
+ "format": 2,
"Object": 1,
"compiled": 1,
"CHSET": 1,
@@ -26750,6 +23219,7 @@
"library": 1,
"compilation": 2,
"Example": 1,
+ "run": 2,
"longrun": 3,
"Equal": 1,
"corrected": 1,
@@ -26772,13 +23242,16 @@
"mechanism.": 1,
"depending": 1,
"caller": 1,
+ "type": 2,
"exception.": 1,
"lead": 1,
"writing": 4,
"prompt": 1,
+ "routine": 4,
"terminating": 1,
"image.": 1,
"define": 2,
+ "own": 2,
"handlers.": 1,
"Handler": 1,
"No": 17,
@@ -26890,6 +23363,7 @@
"DPTNOFZY": 2,
"DPTNOFZK": 2,
"K": 5,
+ "R": 2,
"DTIME": 1,
"UPPER": 1,
"VALM1": 1,
@@ -26933,6 +23407,7 @@
"ENCOUNTER": 2,
"**15": 1,
"Aug": 1,
+ "Build": 6,
"DATA2PCE": 1,
"PXADATA": 7,
"PXAPKG": 9,
@@ -27011,6 +23486,7 @@
"Order": 1,
"#100": 1,
"process": 3,
+ "occurred": 2,
"processed": 1,
"could": 1,
"incorrectly": 1,
@@ -27265,6 +23741,8 @@
"M/Wire": 4,
"Protocol": 2,
"Systems": 1,
+ "eg": 3,
+ "Cache": 3,
"By": 1,
"server": 1,
"port": 4,
@@ -27290,6 +23768,7 @@
"On": 1,
"installed": 1,
"MGWSI": 1,
+ "m_apache": 3,
"provide": 1,
"hashing": 1,
"passwords": 1,
@@ -27312,6 +23791,7 @@
"_crlf": 22,
"_response_": 4,
"_crlf_response_crlf": 4,
+ "zv": 6,
"authNeeded": 6,
"input": 41,
"cleardown": 2,
@@ -27349,18 +23829,21 @@
"subs": 8,
"nsp": 1,
"subs_": 2,
+ "quot": 2,
"_data_": 3,
"subscripts": 8,
"_value_": 1,
"_error_": 1,
"kill": 3,
"xx": 16,
+ "yy": 19,
"method": 2,
"Missing": 5,
"JSON": 7,
"transaction": 6,
"document": 6,
"setJSON": 4,
+ "globalName": 7,
"GlobalName": 3,
"setGlobal": 1,
"zmwire_null_value": 1,
@@ -27374,6 +23857,7 @@
"##": 2,
"decr": 1,
"decrby": 1,
+ "subscript": 7,
"direction": 1,
"subscriptValue": 1,
"dataStatus": 1,
@@ -27384,6 +23868,7 @@
"queryget": 1,
"xxyy": 2,
"zz": 2,
+ "exists": 6,
"getallsubscripts": 1,
"orderall": 1,
"": 3,
@@ -27418,6 +23903,7 @@
"valquot_value_valquot": 1,
"json_value_": 1,
"subscripts1": 2,
+ "dd": 4,
"subx": 3,
"subNo": 1,
"numsub": 1,
@@ -27437,7 +23923,301 @@
"Unescape": 1,
"buf": 4,
"c1": 4,
- "buf_c1_": 1
+ "buf_c1_": 1,
+ "zewdAPI": 52,
+ "Enterprise": 5,
+ "Web": 5,
+ "Developer": 5,
+ "APIs": 1,
+ "Product": 2,
+ "Date": 2,
+ "Fri": 1,
+ "Nov": 1,
+ "getVersion": 1,
+ "zewdCompiler": 6,
+ "date": 1,
+ "getDate": 1,
+ "compilePage": 2,
+ "app": 13,
+ "page": 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,
+ "sessid": 146,
+ "releaseLock": 2,
+ "tokeniseURL": 2,
+ "url": 2,
+ "zewdCompiler16": 5,
+ "getSessid": 1,
+ "isTokenExpired": 2,
+ "zewdSession": 39,
+ "initialiseSession": 1,
+ "deleteSession": 2,
+ "changeApp": 1,
+ "appName": 4,
+ "setSessionValue": 6,
+ "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,
+ "selected": 4,
+ "translationMode": 1,
+ "_appName": 1,
+ "typex": 1,
+ "avoid": 1,
+ "bug": 1,
+ "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,
+ "clearArray": 2,
+ "getSessionArrayErr": 1,
+ "Come": 1,
+ "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,
+ "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,
+ "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,
+ "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,
+ "username": 8,
+ "password": 8,
+ "zewdMgrAjax2": 1,
+ "uniqueId": 1,
+ "nodeOID": 2,
+ "filename": 2,
+ "linkToParentSession": 2,
+ "zewdCompiler20": 1,
+ "exportToGTM": 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,
+ "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
},
"Makefile": {
"all": 1,
@@ -27466,52 +24246,96 @@
"Tender": 1
},
"Matlab": {
- "function": 34,
+ "data": 27,
+ "load_data": 4,
+ "(": 1379,
+ ")": 1380,
+ ";": 909,
+ "t0": 6,
+ "t1": 6,
+ "t2": 6,
+ "t3": 1,
+ "dataPlantOne": 3,
+ "/": 59,
+ "data.Ts": 6,
+ "dataAdapting": 3,
+ "dataPlantTwo": 3,
+ "end": 150,
+ "guessPlantOne": 4,
"[": 311,
+ "]": 311,
+ "%": 554,
+ "resultPlantOne": 1,
+ "find_structural_gains": 2,
+ "yh": 2,
+ "fit": 6,
+ "x0": 4,
+ "compare": 3,
+ "resultPlantOne.fit": 1,
+ "display": 10,
+ "sprintf": 11,
+ "guessPlantTwo": 3,
+ "resultPlantTwo": 1,
+ "resultPlantTwo.fit": 1,
+ "kP1": 4,
+ "resultPlantOne.fit.par": 1,
+ "kP2": 3,
+ "resultPlantTwo.fit.par": 1,
+ "gainSlopeOffset": 6,
+ "*": 46,
+ "eye": 9,
+ "aux.pars": 3,
+ "this": 2,
+ "only": 7,
+ "uses": 1,
+ "tau": 1,
+ "through": 1,
+ "wfs": 1,
+ "aux.timeDelay": 2,
+ "true": 2,
+ "aux.plantFirst": 2,
+ "s": 13,
+ "aux.plantSecond": 2,
+ "+": 169,
+ "plantOneSlopeOffset": 3,
+ "plantTwoSlopeOffset": 3,
+ "aux.m": 3,
+ "aux.b": 3,
"dx": 6,
"y": 25,
- "]": 311,
"adapting_structural_model": 2,
- "(": 1379,
+ "ones": 6,
+ "{": 157,
+ "aux": 3,
+ "}": 157,
+ "mod": 3,
+ "idnlgrey": 1,
+ "...": 162,
+ "zeros": 61,
+ "pem": 1,
+ "function": 34,
"t": 32,
"x": 46,
"u": 3,
"varargin": 25,
- ")": 1380,
- "%": 554,
"size": 11,
- "aux": 3,
- "{": 157,
- "end": 150,
- "}": 157,
- ";": 909,
"m": 44,
- "zeros": 61,
"b": 12,
"for": 78,
"i": 338,
"if": 52,
- "+": 169,
"elseif": 14,
"else": 23,
- "display": 10,
- "aux.pars": 3,
".*": 2,
"Yp": 2,
"human": 1,
- "aux.timeDelay": 2,
"c1": 5,
- "aux.m": 3,
- "*": 46,
- "aux.b": 3,
"e": 14,
"-": 673,
"c2": 5,
"Yc": 5,
"parallel": 2,
"plant": 4,
- "aux.plantFirst": 2,
- "aux.plantSecond": 2,
"Ys": 1,
"feedback": 1,
"A": 11,
@@ -27539,7 +24363,6 @@
"par": 7,
"par_text_to_struct": 4,
"filesep": 14,
- "...": 162,
"whipple_pull_force_abcd": 2,
"states": 7,
"outputs": 10,
@@ -27563,8 +24386,6 @@
"row": 6,
"abs": 12,
"col": 5,
- "s": 13,
- "sprintf": 11,
"removeInputs": 2,
"settings.inputs": 1,
"keepOutputs": 2,
@@ -27603,12 +24424,10 @@
"get_variables": 2,
"columns": 4,
"create_ieee_paper_plots": 2,
- "data": 27,
"rollData": 8,
"global": 6,
"goldenRatio": 12,
"sqrt": 14,
- "/": 59,
"exist": 1,
"mkdir": 1,
"linestyles": 15,
@@ -27873,7 +24692,6 @@
"eig": 6,
"real": 3,
"zeroIndices": 3,
- "ones": 6,
"maxEvals": 4,
"maxLine": 7,
"minLine": 4,
@@ -27969,44 +24787,6 @@
"grid_width/": 1,
"*grid_width/": 4,
"colorbar": 1,
- "load_data": 4,
- "t0": 6,
- "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,
- "this": 2,
- "only": 7,
- "uses": 1,
- "tau": 1,
- "through": 1,
- "wfs": 1,
- "true": 2,
- "plantOneSlopeOffset": 3,
- "plantTwoSlopeOffset": 3,
- "mod": 3,
- "idnlgrey": 1,
- "pem": 1,
"guess.plantOne": 3,
"guess.plantTwo": 2,
"plantNum.plantOne": 2,
@@ -28046,11 +24826,6 @@
"identified": 1,
"gains": 12,
".vaf": 1,
- "Elements": 1,
- "grid": 1,
- "definition": 2,
- "Dimensionless": 1,
- "integrating": 1,
"Choice": 2,
"mass": 2,
"parameter": 2,
@@ -28073,9 +24848,6 @@
"energy": 8,
"E_L1": 4,
"Omega": 7,
- "C_L1": 3,
- "*E_L1": 1,
- "Szebehely": 1,
"E": 8,
"Offset": 2,
"Initial": 3,
@@ -28092,13 +24864,18 @@
"*Omega": 5,
"vx_0.": 2,
"E_cin": 4,
+ "Transforming": 1,
+ "into": 1,
+ "Hamiltonian": 1,
+ "variables": 2,
+ "px_0": 2,
+ "py_0": 2,
"x_T": 25,
"y_T": 17,
- "vx_T": 22,
- "vy_T": 12,
+ "px_T": 4,
+ "py_T": 4,
"filtro": 15,
"E_T": 11,
- "delta_E": 7,
"a": 17,
"matrix": 3,
"numbers": 2,
@@ -28113,17 +24890,72 @@
"tolerance": 2,
"setting": 4,
"energy_tol": 6,
- "Setting": 1,
+ "inf": 1,
"options": 14,
+ "odeset": 4,
+ "@cr3bp_jac": 1,
+ "Parallel": 2,
+ "equations": 2,
+ "motion": 2,
+ "isreal": 8,
+ "Check": 6,
+ "velocity": 2,
+ "positive": 2,
+ "Kinetic": 2,
+ "Y": 19,
+ "@fH": 1,
+ "Saving": 4,
+ "solutions": 2,
+ "final": 2,
+ "difference": 2,
+ "with": 2,
+ "EnergyH": 1,
+ "delta_E": 7,
+ "conservation": 2,
+ "position": 2,
+ "point": 14,
+ "interesting": 4,
+ "non": 2,
+ "sense": 2,
+ "bad": 4,
+ "t_integrazione": 3,
+ "t_integr": 1,
+ "Back": 1,
+ "vx_T": 22,
+ "vy_T": 12,
+ "dphi": 12,
+ "ftle": 10,
+ "Manual": 2,
+ "visualize": 2,
+ "Inf": 1,
+ "*log": 2,
+ "tempo": 4,
+ "integrare": 2,
+ ".2f": 5,
+ "calcolare": 2,
+ "var_": 2,
+ "_": 2,
+ "var_xvx_": 2,
+ "ode00": 2,
+ "_n": 2,
+ "_e": 1,
+ "_H": 1,
+ "save": 2,
+ "nome": 2,
+ "Elements": 1,
+ "grid": 1,
+ "definition": 2,
+ "Dimensionless": 1,
+ "integrating": 1,
+ "C_L1": 3,
+ "*E_L1": 1,
+ "Szebehely": 1,
+ "Setting": 1,
"integrator": 2,
"RelTol": 2,
"AbsTol": 2,
"From": 1,
"Short": 1,
- "odeset": 4,
- "Parallel": 2,
- "equations": 2,
- "motion": 2,
"h": 19,
"waitbar": 6,
"r1": 3,
@@ -28133,30 +24965,9 @@
"y_0.": 2,
"./": 1,
"mu./": 1,
- "isreal": 8,
- "Check": 6,
- "velocity": 2,
- "positive": 2,
- "Kinetic": 2,
- "Y": 19,
"@f_reg": 1,
- "Saving": 4,
- "solutions": 2,
- "final": 2,
- "difference": 2,
- "with": 2,
- "conservation": 2,
- "position": 2,
- "point": 14,
- "interesting": 4,
- "non": 2,
- "sense": 2,
- "bad": 4,
"close": 4,
- "t_integrazione": 3,
"filtro_1": 12,
- "dphi": 12,
- "ftle": 10,
"ftle_norm": 1,
"ds_x": 1,
"ds_vx": 1,
@@ -28180,38 +24991,7 @@
"x2": 1,
"*ds_x": 2,
"*ds_vx": 2,
- "Manual": 2,
- "visualize": 2,
- "*log": 2,
"dphi*dphi": 1,
- "tempo": 4,
- "integrare": 2,
- ".2f": 5,
- "calcolare": 2,
- "var_": 2,
- "_": 2,
- "var_xvx_": 2,
- "ode00": 2,
- "_n": 2,
- "save": 2,
- "nome": 2,
- "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,
"Range": 1,
"E_0": 4,
"C_L1/2": 1,
@@ -28563,6 +25343,283 @@
"fasten": 1,
"pop": 1
},
+ "MediaWiki": {
+ "Overview": 1,
+ "The": 17,
+ "GDB": 15,
+ "Tracepoint": 4,
+ "Analysis": 1,
+ "feature": 3,
+ "is": 9,
+ "an": 3,
+ "extension": 1,
+ "to": 12,
+ "the": 72,
+ "Tracing": 3,
+ "and": 20,
+ "Monitoring": 1,
+ "Framework": 1,
+ "that": 4,
+ "allows": 2,
+ "visualization": 1,
+ "analysis": 1,
+ "of": 8,
+ "C/C": 10,
+ "+": 20,
+ "tracepoint": 5,
+ "data": 5,
+ "collected": 2,
+ "by": 10,
+ "stored": 1,
+ "a": 12,
+ "log": 1,
+ "file.": 1,
+ "Getting": 1,
+ "Started": 1,
+ "can": 9,
+ "be": 18,
+ "installed": 2,
+ "from": 8,
+ "Eclipse": 1,
+ "update": 2,
+ "site": 1,
+ "selecting": 1,
+ ".": 8,
+ "requires": 1,
+ "version": 1,
+ "or": 8,
+ "later": 1,
+ "on": 3,
+ "local": 1,
+ "host.": 1,
+ "executable": 3,
+ "program": 1,
+ "must": 3,
+ "found": 1,
+ "in": 15,
+ "path.": 1,
+ "Trace": 9,
+ "Perspective": 1,
+ "To": 1,
+ "open": 1,
+ "perspective": 2,
+ "select": 5,
+ "includes": 1,
+ "following": 1,
+ "views": 2,
+ "default": 2,
+ "*": 6,
+ "This": 7,
+ "view": 7,
+ "shows": 7,
+ "projects": 1,
+ "workspace": 2,
+ "used": 1,
+ "create": 1,
+ "manage": 1,
+ "projects.": 1,
+ "running": 1,
+ "Postmortem": 5,
+ "Debugger": 4,
+ "instances": 1,
+ "displays": 2,
+ "thread": 1,
+ "stack": 2,
+ "trace": 17,
+ "associated": 1,
+ "with": 4,
+ "tracepoint.": 3,
+ "status": 1,
+ "debugger": 1,
+ "navigation": 1,
+ "records.": 1,
+ "console": 1,
+ "output": 1,
+ "Debugger.": 1,
+ "editor": 7,
+ "area": 2,
+ "contains": 1,
+ "editors": 1,
+ "when": 1,
+ "opened.": 1,
+ "[": 11,
+ "Image": 2,
+ "images/GDBTracePerspective.png": 1,
+ "]": 11,
+ "Collecting": 2,
+ "Data": 4,
+ "outside": 2,
+ "scope": 1,
+ "this": 5,
+ "feature.": 1,
+ "It": 1,
+ "done": 2,
+ "command": 1,
+ "line": 2,
+ "using": 3,
+ "CDT": 3,
+ "debug": 1,
+ "component": 1,
+ "within": 1,
+ "Eclipse.": 1,
+ "See": 1,
+ "FAQ": 2,
+ "entry": 2,
+ "#References": 2,
+ "|": 2,
+ "References": 3,
+ "section.": 2,
+ "Importing": 2,
+ "Some": 1,
+ "information": 1,
+ "section": 1,
+ "redundant": 1,
+ "LTTng": 3,
+ "User": 3,
+ "Guide.": 1,
+ "For": 1,
+ "further": 1,
+ "details": 1,
+ "see": 1,
+ "Guide": 2,
+ "Creating": 1,
+ "Project": 1,
+ "In": 5,
+ "right": 3,
+ "-": 8,
+ "click": 8,
+ "context": 4,
+ "menu.": 4,
+ "dialog": 1,
+ "name": 2,
+ "your": 2,
+ "project": 2,
+ "tracing": 1,
+ "folder": 5,
+ "Browse": 2,
+ "enter": 2,
+ "source": 2,
+ "directory.": 1,
+ "Select": 1,
+ "file": 6,
+ "tree.": 1,
+ "Optionally": 1,
+ "set": 1,
+ "type": 2,
+ "Click": 1,
+ "Alternatively": 1,
+ "drag": 1,
+ "&": 1,
+ "dropped": 1,
+ "any": 2,
+ "external": 1,
+ "manager.": 1,
+ "Selecting": 2,
+ "Type": 1,
+ "Right": 2,
+ "imported": 1,
+ "choose": 2,
+ "step": 1,
+ "omitted": 1,
+ "if": 1,
+ "was": 2,
+ "selected": 3,
+ "at": 3,
+ "import.": 1,
+ "will": 6,
+ "updated": 2,
+ "icon": 1,
+ "images/gdb_icon16.png": 1,
+ "Executable": 1,
+ "created": 1,
+ "identified": 1,
+ "so": 2,
+ "launched": 1,
+ "properly.": 1,
+ "path": 1,
+ "press": 1,
+ "recognized": 1,
+ "as": 1,
+ "executable.": 1,
+ "Visualizing": 1,
+ "Opening": 1,
+ "double": 1,
+ "it": 3,
+ "opened": 2,
+ "Events": 5,
+ "instance": 1,
+ "launched.": 1,
+ "If": 2,
+ "available": 1,
+ "code": 1,
+ "corresponding": 1,
+ "first": 1,
+ "record": 2,
+ "also": 2,
+ "editor.": 2,
+ "At": 1,
+ "point": 1,
+ "recommended": 1,
+ "relocate": 1,
+ "not": 1,
+ "hidden": 1,
+ "Viewing": 1,
+ "table": 1,
+ "shown": 1,
+ "one": 1,
+ "row": 1,
+ "for": 2,
+ "each": 1,
+ "record.": 2,
+ "column": 6,
+ "sequential": 1,
+ "number.": 1,
+ "number": 2,
+ "assigned": 1,
+ "collection": 1,
+ "time": 2,
+ "method": 1,
+ "where": 1,
+ "set.": 1,
+ "run": 1,
+ "Searching": 1,
+ "filtering": 1,
+ "entering": 1,
+ "regular": 1,
+ "expression": 1,
+ "header.": 1,
+ "Navigating": 1,
+ "records": 1,
+ "keyboard": 1,
+ "mouse.": 1,
+ "show": 1,
+ "current": 1,
+ "navigated": 1,
+ "clicking": 1,
+ "buttons.": 1,
+ "updated.": 1,
+ "http": 4,
+ "//wiki.eclipse.org/index.php/Linux_Tools_Project/LTTng2/User_Guide": 1,
+ "//wiki.eclipse.org/CDT/User/FAQ#How_can_I_trace_my_application_using_C.2FC.2B.2B_Tracepoints.3F": 1,
+ "How": 1,
+ "I": 1,
+ "my": 1,
+ "application": 1,
+ "Tracepoints": 1,
+ "Updating": 1,
+ "Document": 1,
+ "document": 2,
+ "maintained": 1,
+ "collaborative": 1,
+ "wiki.": 1,
+ "you": 1,
+ "wish": 1,
+ "modify": 1,
+ "please": 1,
+ "visit": 1,
+ "//wiki.eclipse.org/index.php/Linux_Tools_Project/GDB_Tracepoint_Analysis/User_Guide": 1,
+ "//wiki.eclipse.org/Linux_Tools_Project/GDB_Tracepoint_Analysis/User_Guide": 1
+ },
"Monkey": {
"Strict": 1,
"sample": 1,
@@ -28677,280 +25734,6 @@
"&": 1,
"c": 1
},
- "MoonScript": {
- "types": 2,
- "require": 5,
- "util": 2,
- "data": 1,
- "import": 5,
- "reversed": 2,
- "unpack": 22,
- "from": 4,
- "ntype": 16,
- "mtype": 3,
- "build": 7,
- "smart_node": 7,
- "is_slice": 2,
- "value_is_singular": 3,
- "insert": 18,
- "table": 2,
- "NameProxy": 14,
- "LocalName": 2,
- "destructure": 1,
- "local": 1,
- "implicitly_return": 2,
- "class": 4,
- "Run": 8,
- "new": 2,
- "(": 54,
- "@fn": 1,
- ")": 54,
- "self": 2,
- "[": 79,
- "]": 79,
- "call": 3,
- "state": 2,
- "self.fn": 1,
- "-": 51,
- "transform": 2,
- "the": 4,
- "last": 6,
- "stm": 16,
- "is": 2,
- "a": 4,
- "list": 6,
- "of": 1,
- "stms": 4,
- "will": 1,
- "puke": 1,
- "on": 1,
- "group": 1,
- "apply_to_last": 6,
- "fn": 3,
- "find": 2,
- "real": 1,
- "exp": 17,
- "last_exp_id": 3,
- "for": 20,
- "i": 15,
- "#stms": 1,
- "if": 43,
- "and": 8,
- "break": 1,
- "return": 11,
- "in": 18,
- "ipairs": 3,
- "else": 22,
- "body": 26,
- "sindle": 1,
- "expression/statement": 1,
- "is_singular": 2,
- "false": 2,
- "#body": 1,
- "true": 4,
- "find_assigns": 2,
- "out": 9,
- "{": 135,
- "}": 136,
- "thing": 4,
- "*body": 2,
- "switch": 7,
- "when": 12,
- "table.insert": 3,
- "extract": 1,
- "names": 16,
- "hoist_declarations": 1,
- "assigns": 5,
- "hoist": 1,
- "plain": 1,
- "old": 1,
- "*find_assigns": 1,
- "name": 31,
- "*names": 3,
- "type": 5,
- "after": 1,
- "runs": 1,
- "idx": 4,
- "while": 3,
- "do": 2,
- "+": 2,
- "expand_elseif_assign": 2,
- "ifstm": 5,
- "#ifstm": 1,
- "case": 13,
- "split": 4,
- "constructor_name": 2,
- "with_continue_listener": 4,
- "continue_name": 13,
- "nil": 8,
- "@listen": 1,
- "unless": 6,
- "@put_name": 2,
- "build.group": 14,
- "@splice": 1,
- "lines": 2,
- "Transformer": 2,
- "@transformers": 3,
- "@seen_nodes": 3,
- "setmetatable": 1,
- "__mode": 1,
- "scope": 4,
- "node": 68,
- "...": 10,
- "transformer": 3,
- "res": 3,
- "or": 6,
- "bind": 1,
- "@transform": 2,
- "__call": 1,
- "can_transform": 1,
- "construct_comprehension": 2,
- "inner": 2,
- "clauses": 4,
- "current_stms": 7,
- "_": 10,
- "clause": 4,
- "t": 10,
- "iter": 2,
- "elseif": 1,
- "cond": 11,
- "error": 4,
- "..t": 1,
- "Statement": 2,
- "root_stms": 1,
- "@": 1,
- "assign": 9,
- "values": 10,
- "bubble": 1,
- "cascading": 2,
- "transformed": 2,
- "#values": 1,
- "value": 7,
- "@transform.statement": 2,
- "types.cascading": 1,
- "ret": 16,
- "types.is_value": 1,
- "destructure.has_destructure": 2,
- "destructure.split_assign": 1,
- "continue": 1,
- "@send": 1,
- "build.assign_one": 11,
- "export": 1,
- "they": 1,
- "are": 1,
- "included": 1,
- "#node": 3,
- "cls": 5,
- "cls.name": 1,
- "build.assign": 3,
- "update": 1,
- "op": 2,
- "op_final": 3,
- "match": 1,
- "..op": 1,
- "not": 2,
- "source": 7,
- "stubs": 1,
- "real_names": 4,
- "build.chain": 7,
- "base": 8,
- "stub": 4,
- "*stubs": 2,
- "source_name": 3,
- "comprehension": 1,
- "action": 4,
- "decorated": 1,
- "dec": 6,
- "wrapped": 4,
- "fail": 5,
- "..": 1,
- "build.declare": 1,
- "*stm": 1,
- "expand": 1,
- "destructure.build_assign": 2,
- "build.do": 2,
- "apply": 1,
- "decorator": 1,
- "mutate": 1,
- "all": 1,
- "bodies": 1,
- "body_idx": 3,
- "with": 3,
- "block": 2,
- "scope_name": 5,
- "named_assign": 2,
- "assign_name": 1,
- "@set": 1,
- "foreach": 1,
- "node.iter": 1,
- "destructures": 5,
- "node.names": 3,
- "proxy": 2,
- "next": 1,
- "node.body": 9,
- "index_name": 3,
- "list_name": 6,
- "slice_var": 3,
- "bounds": 3,
- "slice": 7,
- "#list": 1,
- "table.remove": 2,
- "max_tmp_name": 5,
- "index": 2,
- "conds": 3,
- "exp_name": 3,
- "convert": 1,
- "into": 1,
- "statment": 1,
- "convert_cond": 2,
- "case_exps": 3,
- "cond_exp": 5,
- "first": 3,
- "if_stm": 5,
- "*conds": 1,
- "if_cond": 4,
- "parent_assign": 3,
- "parent_val": 1,
- "apart": 1,
- "properties": 4,
- "statements": 4,
- "item": 3,
- "tuple": 8,
- "*item": 1,
- "constructor": 7,
- "*properties": 1,
- "key": 3,
- "parent_cls_name": 5,
- "base_name": 4,
- "self_name": 4,
- "cls_name": 1,
- "build.fndef": 3,
- "args": 3,
- "arrow": 1,
- "then": 2,
- "constructor.arrow": 1,
- "real_name": 6,
- "#real_name": 1,
- "build.table": 2,
- "look": 1,
- "up": 1,
- "object": 1,
- "class_lookup": 3,
- "cls_mt": 2,
- "out_body": 1,
- "make": 1,
- "sure": 1,
- "we": 1,
- "don": 1,
- "string": 1,
- "parens": 2,
- "colon_stub": 1,
- "super": 1,
- "dot": 1,
- "varargs": 2,
- "arg_list": 1,
- "Value": 1
- },
"Nemerle": {
"using": 1,
"System.Console": 1,
@@ -32683,6 +29466,206 @@
"CHR": 2,
"lcPostBase64Data.": 1
},
+ "Org": {
+ "#": 13,
+ "+": 13,
+ "OPTIONS": 1,
+ "H": 1,
+ "num": 1,
+ "nil": 4,
+ "toc": 2,
+ "n": 1,
+ "@": 1,
+ "t": 10,
+ "|": 4,
+ "-": 30,
+ "f": 2,
+ "*": 3,
+ "TeX": 1,
+ "LaTeX": 1,
+ "skip": 1,
+ "d": 2,
+ "(": 11,
+ "HIDE": 1,
+ ")": 11,
+ "tags": 2,
+ "not": 1,
+ "in": 2,
+ "STARTUP": 1,
+ "align": 1,
+ "fold": 1,
+ "nodlcheck": 1,
+ "hidestars": 1,
+ "oddeven": 1,
+ "lognotestate": 1,
+ "SEQ_TODO": 1,
+ "TODO": 1,
+ "INPROGRESS": 1,
+ "i": 1,
+ "WAITING": 1,
+ "w@": 1,
+ "DONE": 1,
+ "CANCELED": 1,
+ "c@": 1,
+ "TAGS": 1,
+ "Write": 1,
+ "w": 1,
+ "Update": 1,
+ "u": 1,
+ "Fix": 1,
+ "Check": 1,
+ "c": 1,
+ "TITLE": 1,
+ "org": 10,
+ "ruby": 6,
+ "AUTHOR": 1,
+ "Brian": 1,
+ "Dewey": 1,
+ "EMAIL": 1,
+ "bdewey@gmail.com": 1,
+ "LANGUAGE": 1,
+ "en": 1,
+ "PRIORITIES": 1,
+ "A": 1,
+ "C": 1,
+ "B": 1,
+ "CATEGORY": 1,
+ "worg": 1,
+ "{": 1,
+ "Back": 1,
+ "to": 8,
+ "Worg": 1,
+ "rubygems": 2,
+ "ve": 1,
+ "already": 1,
+ "created": 1,
+ "a": 4,
+ "site.": 1,
+ "Make": 1,
+ "sure": 1,
+ "you": 2,
+ "have": 1,
+ "installed": 1,
+ "sudo": 1,
+ "gem": 1,
+ "install": 1,
+ ".": 1,
+ "You": 1,
+ "need": 1,
+ "register": 1,
+ "new": 2,
+ "Webby": 3,
+ "filter": 3,
+ "handle": 1,
+ "mode": 2,
+ "content.": 2,
+ "makes": 1,
+ "this": 2,
+ "easy.": 1,
+ "In": 1,
+ "the": 6,
+ "lib/": 1,
+ "folder": 1,
+ "of": 2,
+ "your": 2,
+ "site": 1,
+ "create": 1,
+ "file": 1,
+ "orgmode.rb": 1,
+ "BEGIN_EXAMPLE": 2,
+ "require": 1,
+ "Filters.register": 1,
+ "do": 2,
+ "input": 3,
+ "Orgmode": 2,
+ "Parser.new": 1,
+ ".to_html": 1,
+ "end": 1,
+ "END_EXAMPLE": 1,
+ "This": 2,
+ "code": 1,
+ "creates": 1,
+ "that": 1,
+ "will": 1,
+ "use": 1,
+ "parser": 1,
+ "translate": 1,
+ "into": 1,
+ "HTML.": 1,
+ "Create": 1,
+ "For": 1,
+ "example": 1,
+ "title": 2,
+ "Parser": 1,
+ "created_at": 1,
+ "status": 2,
+ "Under": 1,
+ "development": 1,
+ "erb": 1,
+ "orgmode": 3,
+ "<%=>": 2,
+ "page": 2,
+ "Status": 1,
+ "Description": 1,
+ "Helpful": 1,
+ "Ruby": 1,
+ "routines": 1,
+ "for": 3,
+ "parsing": 1,
+ "files.": 1,
+ "The": 3,
+ "most": 1,
+ "significant": 1,
+ "thing": 2,
+ "library": 1,
+ "does": 1,
+ "today": 1,
+ "is": 5,
+ "convert": 1,
+ "files": 1,
+ "textile.": 1,
+ "Currently": 1,
+ "cannot": 1,
+ "much": 1,
+ "customize": 1,
+ "conversion.": 1,
+ "supplied": 1,
+ "textile": 1,
+ "conversion": 1,
+ "optimized": 1,
+ "extracting": 1,
+ "from": 1,
+ "orgfile": 1,
+ "as": 1,
+ "opposed": 1,
+ "History": 1,
+ "**": 1,
+ "Version": 1,
+ "first": 1,
+ "output": 2,
+ "HTML": 2,
+ "gets": 1,
+ "class": 1,
+ "now": 1,
+ "indented": 1,
+ "Proper": 1,
+ "support": 1,
+ "multi": 1,
+ "paragraph": 2,
+ "list": 1,
+ "items.": 1,
+ "See": 1,
+ "part": 1,
+ "last": 1,
+ "bullet.": 1,
+ "Fixed": 1,
+ "bugs": 1,
+ "wouldn": 1,
+ "s": 1,
+ "all": 1,
+ "there": 1,
+ "it": 1
+ },
"Oxygene": {
"": 1,
"DefaultTargets=": 1,
@@ -37140,6 +34123,70 @@
"e.args": 1,
"socket.EAI_NONAME": 1
},
+ "QMake": {
+ "QT": 4,
+ "+": 13,
+ "core": 2,
+ "gui": 2,
+ "greaterThan": 1,
+ "(": 8,
+ "QT_MAJOR_VERSION": 1,
+ ")": 8,
+ "widgets": 1,
+ "contains": 2,
+ "QT_CONFIG": 2,
+ "opengl": 2,
+ "|": 1,
+ "opengles2": 1,
+ "{": 6,
+ "}": 6,
+ "else": 2,
+ "DEFINES": 1,
+ "QT_NO_OPENGL": 1,
+ "TEMPLATE": 2,
+ "app": 2,
+ "win32": 2,
+ "TARGET": 3,
+ "BlahApp": 1,
+ "RC_FILE": 1,
+ "Resources/winres.rc": 1,
+ "blahapp": 1,
+ "include": 1,
+ "functions.pri": 1,
+ "SOURCES": 2,
+ "file.cpp": 2,
+ "HEADERS": 2,
+ "file.h": 2,
+ "FORMS": 2,
+ "file.ui": 1,
+ "RESOURCES": 1,
+ "res.qrc": 1,
+ "exists": 1,
+ ".git/HEAD": 1,
+ "system": 2,
+ "git": 1,
+ "rev": 1,
+ "-": 1,
+ "parse": 1,
+ "HEAD": 1,
+ "rev.txt": 2,
+ "echo": 1,
+ "ThisIsNotAGitRepo": 1,
+ "SHEBANG#!qmake": 1,
+ "message": 1,
+ "This": 1,
+ "is": 1,
+ "QMake.": 1,
+ "CONFIG": 1,
+ "qt": 1,
+ "simpleapp": 1,
+ "file2.c": 1,
+ "This/Is/Folder/file3.cpp": 1,
+ "file2.h": 1,
+ "This/Is/Folder/file3.h": 1,
+ "This/Is/Folder/file3.ui": 1,
+ "Test.ui": 1
+ },
"R": {
"SHEBANG#!Rscript": 1,
"ParseDates": 2,
@@ -37441,6 +34488,3850 @@
"my_ts..": 1,
"SimpleTokenizer.new": 1
},
+ "RDoc": {
+ "RDoc": 7,
+ "-": 9,
+ "Ruby": 4,
+ "Documentation": 2,
+ "System": 1,
+ "home": 1,
+ "https": 3,
+ "//github.com/rdoc/rdoc": 1,
+ "rdoc": 7,
+ "http": 1,
+ "//docs.seattlerb.org/rdoc": 1,
+ "bugs": 1,
+ "//github.com/rdoc/rdoc/issues": 1,
+ "code": 1,
+ "quality": 1,
+ "{": 1,
+ " ": 1,
+ "src=": 1,
+ "alt=": 1,
+ "}": 1,
+ "[": 3,
+ "//codeclimate.com/github/rdoc/rdoc": 1,
+ "]": 3,
+ "Description": 1,
+ "produces": 1,
+ "HTML": 1,
+ "and": 9,
+ "command": 4,
+ "line": 1,
+ "documentation": 8,
+ "for": 9,
+ "projects.": 1,
+ "includes": 1,
+ "the": 12,
+ "+": 8,
+ "ri": 1,
+ "tools": 1,
+ "generating": 1,
+ "displaying": 1,
+ "from": 1,
+ "line.": 1,
+ "Generating": 1,
+ "Once": 1,
+ "installed": 1,
+ "you": 3,
+ "can": 2,
+ "create": 1,
+ "using": 1,
+ "options": 1,
+ "names...": 1,
+ "For": 1,
+ "an": 1,
+ "up": 1,
+ "to": 4,
+ "date": 1,
+ "option": 1,
+ "summary": 1,
+ "type": 2,
+ "help": 1,
+ "A": 1,
+ "typical": 1,
+ "use": 1,
+ "might": 1,
+ "be": 3,
+ "generate": 1,
+ "a": 5,
+ "package": 1,
+ "of": 2,
+ "source": 2,
+ "(": 3,
+ "such": 1,
+ "as": 1,
+ "itself": 1,
+ ")": 3,
+ ".": 2,
+ "This": 2,
+ "generates": 1,
+ "all": 1,
+ "C": 1,
+ "files": 2,
+ "in": 4,
+ "below": 1,
+ "current": 1,
+ "directory.": 1,
+ "These": 1,
+ "will": 1,
+ "stored": 1,
+ "tree": 1,
+ "starting": 1,
+ "subdirectory": 1,
+ "doc": 1,
+ "You": 2,
+ "make": 2,
+ "this": 1,
+ "slightly": 1,
+ "more": 1,
+ "useful": 1,
+ "your": 1,
+ "readers": 1,
+ "by": 1,
+ "having": 1,
+ "index": 1,
+ "page": 1,
+ "contain": 1,
+ "primary": 1,
+ "file.": 1,
+ "In": 1,
+ "our": 1,
+ "case": 1,
+ "we": 1,
+ "could": 1,
+ "#": 1,
+ "rdoc/rdoc": 1,
+ "s": 1,
+ "OK": 1,
+ "file": 1,
+ "bug": 1,
+ "report": 1,
+ "anything": 1,
+ "t": 1,
+ "figure": 1,
+ "out": 1,
+ "how": 1,
+ "produce": 1,
+ "output": 1,
+ "like": 1,
+ "that": 1,
+ "is": 4,
+ "probably": 1,
+ "bug.": 1,
+ "License": 1,
+ "Copyright": 1,
+ "c": 2,
+ "Dave": 1,
+ "Thomas": 1,
+ "The": 1,
+ "Pragmatic": 1,
+ "Programmers.": 1,
+ "Portions": 2,
+ "Eric": 1,
+ "Hodel.": 1,
+ "copyright": 1,
+ "others": 1,
+ "see": 1,
+ "individual": 1,
+ "LEGAL.rdoc": 1,
+ "details.": 1,
+ "free": 1,
+ "software": 2,
+ "may": 1,
+ "redistributed": 1,
+ "under": 1,
+ "terms": 1,
+ "specified": 1,
+ "LICENSE.rdoc.": 1,
+ "Warranty": 1,
+ "provided": 1,
+ "without": 2,
+ "any": 1,
+ "express": 1,
+ "or": 1,
+ "implied": 2,
+ "warranties": 2,
+ "including": 1,
+ "limitation": 1,
+ "merchantability": 1,
+ "fitness": 1,
+ "particular": 1,
+ "purpose.": 1
+ },
+ "C++": {
+ "class": 34,
+ "Bar": 2,
+ "{": 550,
+ "protected": 4,
+ "char": 122,
+ "*name": 6,
+ ";": 2290,
+ "public": 27,
+ "void": 150,
+ "hello": 2,
+ "(": 2422,
+ ")": 2424,
+ "}": 549,
+ "#include": 106,
+ "": 1,
+ "": 1,
+ "": 2,
+ "static": 260,
+ "Env": 13,
+ "*env_instance": 1,
+ "*": 159,
+ "NULL": 108,
+ "*Env": 1,
+ "instance": 4,
+ "if": 295,
+ "env_instance": 3,
+ "new": 9,
+ "return": 147,
+ "QObject": 2,
+ "QCoreApplication": 1,
+ "parse": 3,
+ "const": 166,
+ "**envp": 1,
+ "**env": 1,
+ "**": 2,
+ "QString": 20,
+ "envvar": 2,
+ "name": 21,
+ "value": 18,
+ "int": 144,
+ "indexOfEquals": 5,
+ "for": 18,
+ "env": 3,
+ "envp": 4,
+ "*env": 1,
+ "+": 50,
+ "envvar.indexOf": 1,
+ "continue": 2,
+ "envvar.left": 1,
+ "envvar.mid": 1,
+ "m_map.insert": 1,
+ "QVariantMap": 3,
+ "asVariantMap": 2,
+ "m_map": 2,
+ "#ifndef": 23,
+ "ENV_H": 3,
+ "#define": 190,
+ "": 1,
+ "Q_OBJECT": 1,
+ "*instance": 1,
+ "private": 12,
+ "#endif": 82,
+ "//": 238,
+ "GDSDBREADER_H": 3,
+ "": 1,
+ "GDS_DIR": 1,
+ "enum": 6,
+ "level": 1,
+ "LEVEL_ONE": 1,
+ "LEVEL_TWO": 1,
+ "LEVEL_THREE": 1,
+ "dbDataStructure": 2,
+ "label": 1,
+ "quint32": 3,
+ "depth": 1,
+ "userIndex": 1,
+ "QByteArray": 1,
+ "data": 2,
+ "This": 6,
+ "is": 35,
+ "COMPRESSED": 1,
+ "optimize": 1,
+ "ram": 1,
+ "and": 14,
+ "disk": 1,
+ "space": 2,
+ "decompressed": 1,
+ "quint64": 1,
+ "uniqueID": 1,
+ "QVector": 2,
+ "": 1,
+ "nextItems": 1,
+ "": 1,
+ "nextItemsIndices": 1,
+ "dbDataStructure*": 1,
+ "father": 1,
+ "fatherIndex": 1,
+ "bool": 99,
+ "noFatherRoot": 1,
+ "Used": 1,
+ "to": 75,
+ "tell": 1,
+ "this": 22,
+ "node": 1,
+ "the": 178,
+ "root": 1,
+ "so": 1,
+ "hasn": 1,
+ "t": 13,
+ "in": 9,
+ "argument": 1,
+ "list": 2,
+ "of": 48,
+ "an": 3,
+ "operator": 10,
+ "overload.": 1,
+ "A": 1,
+ "friend": 10,
+ "stream": 5,
+ "<<": 18,
+ "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,
+ "&": 146,
+ "myclass": 1,
+ "//Don": 1,
+ "read": 1,
+ "it": 2,
+ "either": 1,
+ "qUncompress": 2,
+ "": 1,
+ "using": 1,
+ "namespace": 26,
+ "std": 49,
+ "main": 2,
+ "cout": 1,
+ "endl": 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": 12,
+ "EC_POINT_mul": 3,
+ "priv_key": 2,
+ "EC_KEY_set_private_key": 1,
+ "EC_KEY_set_public_key": 2,
+ "EC_POINT_free": 4,
+ "BN_CTX_free": 2,
+ "ECDSA_SIG_recover_key_GFp": 3,
+ "ECDSA_SIG": 3,
+ "*ecsig": 1,
+ "unsigned": 20,
+ "*msg": 2,
+ "msglen": 2,
+ "recid": 3,
+ "check": 2,
+ "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,
+ "i": 47,
+ "/": 13,
+ "-": 225,
+ "BN_CTX_start": 1,
+ "order": 8,
+ "BN_CTX_get": 8,
+ "EC_GROUP_get_order": 1,
+ "x": 44,
+ "BN_copy": 1,
+ "BN_mul_word": 1,
+ "BN_add": 1,
+ "ecsig": 3,
+ "r": 36,
+ "field": 3,
+ "EC_GROUP_get_curve_GFp": 1,
+ "BN_cmp": 1,
+ "R": 6,
+ "EC_POINT_set_compressed_coordinates_GFp": 1,
+ "%": 4,
+ "O": 5,
+ "EC_POINT_is_at_infinity": 1,
+ "Q": 5,
+ "EC_GROUP_get_degree": 1,
+ "e": 14,
+ "BN_bin2bn": 3,
+ "msg": 1,
+ "*msglen": 1,
+ "BN_rshift": 1,
+ "zero": 3,
+ "BN_zero": 1,
+ "BN_mod_sub": 1,
+ "rr": 4,
+ "BN_mod_inverse": 1,
+ "sor": 3,
+ "BN_mod_mul": 2,
+ "s": 9,
+ "eor": 3,
+ "BN_CTX_end": 1,
+ "CKey": 26,
+ "SetCompressedPubKey": 4,
+ "EC_KEY_set_conv_form": 1,
+ "pkey": 14,
+ "POINT_CONVERSION_COMPRESSED": 1,
+ "fCompressedPubKey": 5,
+ "true": 39,
+ "Reset": 5,
+ "false": 42,
+ "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,
+ "EC_KEY_copy": 1,
+ "hash": 20,
+ "sizeof": 14,
+ "vchSig": 18,
+ "[": 201,
+ "]": 201,
+ "nSize": 2,
+ "vchSig.clear": 2,
+ "vchSig.resize": 2,
+ "Shrink": 1,
+ "fit": 1,
+ "actual": 1,
+ "size": 9,
+ "SignCompact": 2,
+ "uint256": 10,
+ "vector": 14,
+ "": 19,
+ "fOk": 3,
+ "*sig": 2,
+ "ECDSA_do_sign": 1,
+ "char*": 14,
+ "sig": 11,
+ "nBitsR": 3,
+ "BN_num_bits": 2,
+ "nBitsS": 3,
+ "<": 53,
+ "&&": 23,
+ "nRecId": 4,
+ "<4;>": 1,
+ "keyRec": 5,
+ "1": 2,
+ "GetPubKey": 5,
+ "break": 34,
+ "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,
+ "BITCOIN_KEY_H": 2,
+ "": 1,
+ "": 2,
+ "": 1,
+ "definition": 1,
+ "runtime_error": 2,
+ "explicit": 3,
+ "string": 10,
+ "str": 2,
+ "CKeyID": 5,
+ "uint160": 8,
+ "CScriptID": 3,
+ "CPubKey": 11,
+ "vchPubKey": 6,
+ "vchPubKeyIn": 2,
+ "a": 84,
+ "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,
+ "||": 17,
+ "IsCompressed": 2,
+ "Raw": 1,
+ "typedef": 38,
+ "secure_allocator": 2,
+ "CPrivKey": 3,
+ "EC_KEY*": 1,
+ "IsNull": 1,
+ "MakeNewKey": 1,
+ "fCompressed": 3,
+ "SetPrivKey": 1,
+ "vchPrivKey": 1,
+ "SetSecret": 1,
+ "vchSecret": 1,
+ "GetPrivKey": 1,
+ "SetPubKey": 1,
+ "Sign": 1,
+ "#ifdef": 16,
+ "Q_OS_LINUX": 2,
+ "": 1,
+ "#if": 44,
+ "QT_VERSION": 1,
+ "QT_VERSION_CHECK": 1,
+ "#error": 9,
+ "Something": 1,
+ "wrong": 1,
+ "with": 6,
+ "setup.": 1,
+ "Please": 3,
+ "report": 2,
+ "mailing": 1,
+ "argc": 2,
+ "char**": 2,
+ "argv": 2,
+ "google_breakpad": 1,
+ "ExceptionHandler": 1,
+ "eh": 1,
+ "Utils": 4,
+ "exceptionHandler": 2,
+ "qInstallMsgHandler": 1,
+ "messageHandler": 2,
+ "QApplication": 1,
+ "app": 1,
+ "STATIC_BUILD": 1,
+ "Q_INIT_RESOURCE": 2,
+ "WebKit": 1,
+ "InspectorBackendStub": 1,
+ "app.setWindowIcon": 1,
+ "QIcon": 1,
+ "app.setApplicationName": 1,
+ "app.setOrganizationName": 1,
+ "app.setOrganizationDomain": 1,
+ "app.setApplicationVersion": 1,
+ "PHANTOMJS_VERSION_STRING": 1,
+ "Phantom": 1,
+ "phantom": 1,
+ "phantom.execute": 1,
+ "app.exec": 1,
+ "phantom.returnValue": 1,
+ "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,
+ "internal": 46,
+ "GeneratedMessageReflection*": 1,
+ "Person_reflection_": 4,
+ "protobuf_AssignDesc_protocol_2dbuffer_2eproto": 4,
+ "protobuf_AddDesc_protocol_2dbuffer_2eproto": 6,
+ "FileDescriptor*": 1,
+ "file": 6,
+ "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,
+ "inline": 39,
+ "protobuf_AssignDescriptorsOnce": 4,
+ "GoogleOnceInit": 1,
+ "protobuf_RegisterTypes": 2,
+ "InternalRegisterGeneratedMessage": 1,
+ "default_instance": 3,
+ "protobuf_ShutdownFile_protocol_2dbuffer_2eproto": 4,
+ "delete": 6,
+ "already_here": 3,
+ "GOOGLE_PROTOBUF_VERIFY_VERSION": 1,
+ "InternalAddGeneratedFile": 1,
+ "InternalRegisterGeneratedFile": 1,
+ "InitAsDefaultInstance": 3,
+ "OnShutdown": 1,
+ "struct": 8,
+ "StaticDescriptorInitializer_protocol_2dbuffer_2eproto": 2,
+ "static_descriptor_initializer_protocol_2dbuffer_2eproto_": 1,
+ "_MSC_VER": 3,
+ "kNameFieldNumber": 2,
+ "Message": 7,
+ "SharedCtor": 4,
+ "from": 25,
+ "MergeFrom": 9,
+ "_cached_size_": 7,
+ "const_cast": 3,
+ "string*": 11,
+ "kEmptyString": 12,
+ "memset": 2,
+ "SharedDtor": 3,
+ "SetCachedSize": 2,
+ "GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN": 2,
+ "GOOGLE_SAFE_CONCURRENT_WRITES_END": 2,
+ "descriptor": 2,
+ "*default_instance_": 1,
+ "Person*": 7,
+ "New": 4,
+ "Clear": 5,
+ "xffu": 3,
+ "has_name": 6,
+ "clear": 2,
+ "mutable_unknown_fields": 4,
+ "MergePartialFromCodedStream": 2,
+ "io": 4,
+ "CodedInputStream*": 2,
+ "input": 6,
+ "DO_": 4,
+ "EXPRESSION": 2,
+ "uint32": 2,
+ "tag": 6,
+ "while": 11,
+ "ReadTag": 1,
+ "switch": 3,
+ "WireFormatLite": 9,
+ "GetTagFieldNumber": 1,
+ "case": 33,
+ "GetTagWireType": 2,
+ "WIRETYPE_LENGTH_DELIMITED": 1,
+ "ReadString": 1,
+ "mutable_name": 3,
+ "WireFormat": 10,
+ "VerifyUTF8String": 3,
+ ".data": 3,
+ ".length": 3,
+ "PARSE": 1,
+ "else": 46,
+ "handle_uninterpreted": 2,
+ "ExpectAtEnd": 1,
+ "default": 4,
+ "WIRETYPE_END_GROUP": 1,
+ "SkipField": 1,
+ "#undef": 3,
+ "SerializeWithCachedSizes": 2,
+ "CodedOutputStream*": 2,
+ "output": 5,
+ "SERIALIZE": 2,
+ "WriteString": 1,
+ "unknown_fields": 7,
+ ".empty": 3,
+ "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,
+ "source": 9,
+ "dynamic_cast_if_available": 1,
+ "": 12,
+ "ReflectionOps": 1,
+ "Merge": 1,
+ "from._has_bits_": 1,
+ "from.has_name": 1,
+ "set_name": 7,
+ "from.name": 1,
+ "from.unknown_fields": 1,
+ "CopyFrom": 5,
+ "IsInitialized": 3,
+ "Swap": 2,
+ "other": 7,
+ "swap": 3,
+ "_unknown_fields_.Swap": 1,
+ "Metadata": 3,
+ "GetMetadata": 2,
+ "metadata": 2,
+ "metadata.descriptor": 1,
+ "metadata.reflection": 1,
+ "PROTOBUF_protocol_2dbuffer_2eproto__INCLUDED": 3,
+ "": 1,
+ "GOOGLE_PROTOBUF_VERSION": 1,
+ "was": 3,
+ "generated": 2,
+ "by": 5,
+ "newer": 2,
+ "version": 4,
+ "protoc": 2,
+ "which": 2,
+ "incompatible": 2,
+ "your": 3,
+ "Protocol": 2,
+ "Buffer": 2,
+ "headers.": 3,
+ "update": 1,
+ "GOOGLE_PROTOBUF_MIN_PROTOC_VERSION": 1,
+ "older": 1,
+ "regenerate": 1,
+ "protoc.": 1,
+ "": 1,
+ "": 1,
+ "": 1,
+ "": 1,
+ "": 1,
+ "virtual": 10,
+ "*this": 1,
+ "UnknownFieldSet": 2,
+ "UnknownFieldSet*": 1,
+ "GetCachedSize": 1,
+ "clear_name": 2,
+ "size_t": 5,
+ "release_name": 2,
+ "set_allocated_name": 2,
+ "set_has_name": 7,
+ "clear_has_name": 5,
+ "mutable": 1,
+ "u": 9,
+ "|": 8,
+ "*name_": 1,
+ "assign": 3,
+ "reinterpret_cast": 7,
+ "temp": 2,
+ "SWIG": 2,
+ "QSCICOMMAND_H": 2,
+ "__APPLE__": 4,
+ "extern": 4,
+ "": 1,
+ "": 2,
+ "": 1,
+ "QsciScintilla": 7,
+ "brief": 2,
+ "The": 8,
+ "QsciCommand": 7,
+ "represents": 1,
+ "editor": 1,
+ "command": 9,
+ "that": 7,
+ "may": 2,
+ "have": 1,
+ "one": 42,
+ "or": 10,
+ "two": 1,
+ "keys": 3,
+ "bound": 4,
+ "it.": 2,
+ "Methods": 1,
+ "are": 3,
+ "provided": 1,
+ "change": 1,
+ "remove": 1,
+ "binding.": 1,
+ "Each": 1,
+ "has": 2,
+ "user": 2,
+ "friendly": 2,
+ "description": 3,
+ "use": 1,
+ "mapping": 1,
+ "dialogs.": 1,
+ "QSCINTILLA_EXPORT": 2,
+ "defines": 1,
+ "different": 1,
+ "commands": 1,
+ "can": 3,
+ "be": 9,
+ "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": 13,
+ "LineUp": 1,
+ "SCI_LINEUP": 1,
+ "LineUpExtend": 1,
+ "SCI_LINEUPEXTEND": 1,
+ "LineUpRectExtend": 1,
+ "SCI_LINEUPRECTEXTEND": 1,
+ "LineScrollUp": 1,
+ "SCI_LINESCROLLUP": 1,
+ "start": 11,
+ "document.": 8,
+ "ScrollToStart": 1,
+ "SCI_SCROLLTOSTART": 1,
+ "end": 18,
+ "ScrollToEnd": 1,
+ "SCI_SCROLLTOEND": 1,
+ "vertically": 1,
+ "centre": 1,
+ "current": 9,
+ "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": 8,
+ "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": 5,
+ "WordLeftEnd": 1,
+ "SCI_WORDLEFTEND": 1,
+ "WordLeftEndExtend": 1,
+ "SCI_WORDLEFTENDEXTEND": 1,
+ "next": 6,
+ "WordRightEnd": 1,
+ "SCI_WORDRIGHTEND": 1,
+ "WordRightEndExtend": 1,
+ "SCI_WORDRIGHTENDEXTEND": 1,
+ "word": 6,
+ "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,
+ "first": 8,
+ "visible": 6,
+ "character": 8,
+ "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": 1,
+ "at": 4,
+ "DeleteBackNotLine": 1,
+ "SCI_DELETEBACKNOTLINE": 1,
+ "left.": 2,
+ "DeleteWordLeft": 1,
+ "SCI_DELWORDLEFT": 1,
+ "right.": 2,
+ "DeleteWordRight": 1,
+ "SCI_DELWORDRIGHT": 1,
+ "DeleteWordRightEnd": 1,
+ "SCI_DELWORDRIGHTEND": 1,
+ "line": 10,
+ "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": 33,
+ "whole": 2,
+ "SelectAll": 1,
+ "SCI_SELECTALL": 1,
+ "selected": 2,
+ "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,
+ "SCI_PASTE": 1,
+ "Toggle": 1,
+ "insert/overtype.": 1,
+ "EditToggleOvertype": 1,
+ "SCI_EDITTOGGLEOVERTYPE": 1,
+ "Insert": 2,
+ "platform": 1,
+ "dependent": 1,
+ "newline.": 1,
+ "Newline": 1,
+ "SCI_NEWLINE": 1,
+ "formfeed.": 1,
+ "Formfeed": 1,
+ "SCI_FORMFEED": 1,
+ "Indent": 1,
+ "level.": 2,
+ "Tab": 1,
+ "SCI_TAB": 1,
+ "De": 1,
+ "indent": 1,
+ "Backtab": 1,
+ "SCI_BACKTAB": 1,
+ "Cancel": 2,
+ "any": 5,
+ "operation.": 1,
+ "SCI_CANCEL": 1,
+ "Undo": 2,
+ "last": 4,
+ "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": 2,
+ "executed": 1,
+ "instance.": 2,
+ "scicmd": 2,
+ "Execute": 1,
+ "execute": 1,
+ "Binds": 2,
+ "If": 4,
+ "then": 6,
+ "binding": 3,
+ "removed.": 2,
+ "invalid": 5,
+ "unchanged.": 1,
+ "Valid": 1,
+ "control": 1,
+ "c": 50,
+ "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": 2,
+ "combination": 1,
+ "SHIFT": 1,
+ "CTRL": 1,
+ "ALT": 1,
+ "META.": 1,
+ "sa": 8,
+ "setAlternateKey": 3,
+ "validKey": 3,
+ "setKey": 3,
+ "alternate": 3,
+ "altkey": 3,
+ "alternateKey": 3,
+ "currently": 2,
+ "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,
+ "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,
+ "able": 1,
+ "print": 4,
+ "text": 5,
+ "Scintilla": 2,
+ "further": 1,
+ "classed": 1,
+ "alter": 1,
+ "layout": 1,
+ "adding": 2,
+ "headers": 3,
+ "footers": 2,
+ "example.": 1,
+ "Constructs": 1,
+ "printer": 1,
+ "paint": 1,
+ "device": 1,
+ "mode": 4,
+ "mode.": 1,
+ "PrinterMode": 1,
+ "ScreenResolution": 1,
+ "Destroys": 1,
+ "Format": 1,
+ "page": 4,
+ "example": 1,
+ "before": 1,
+ "drawn": 2,
+ "on": 1,
+ "painter": 4,
+ "used": 4,
+ "add": 3,
+ "customised": 2,
+ "graphics.": 2,
+ "drawing": 4,
+ "actually": 1,
+ "being": 2,
+ "rather": 1,
+ "than": 1,
+ "sized.": 1,
+ "methods": 1,
+ "must": 1,
+ "only": 1,
+ "called": 1,
+ "when": 5,
+ "true.": 1,
+ "area": 5,
+ "draw": 1,
+ "text.": 3,
+ "should": 1,
+ "necessary": 1,
+ "reserve": 1,
+ "By": 1,
+ "relative": 1,
+ "printable": 1,
+ "Use": 1,
+ "setFullPage": 1,
+ "because": 2,
+ "calling": 1,
+ "printRange": 2,
+ "you": 1,
+ "want": 2,
+ "try": 1,
+ "over": 1,
+ "pagenr": 2,
+ "number": 3,
+ "numbered": 1,
+ "formatPage": 1,
+ "points": 2,
+ "each": 2,
+ "font": 2,
+ "printing.": 2,
+ "setMagnification": 2,
+ "magnification": 3,
+ "mag": 2,
+ "Sets": 2,
+ "printing": 2,
+ "magnification.": 1,
+ "Print": 1,
+ "range": 1,
+ "qsb.": 1,
+ "negative": 2,
+ "signifies": 2,
+ "returned": 2,
+ "there": 1,
+ "no": 1,
+ "error.": 1,
+ "*qsb": 1,
+ "wrap": 4,
+ "WrapWord.": 1,
+ "setWrapMode": 2,
+ "WrapMode": 3,
+ "wrapMode": 2,
+ "wmode.": 1,
+ "wmode": 1,
+ "v8": 9,
+ "Scanner": 16,
+ "UnicodeCache*": 4,
+ "unicode_cache": 3,
+ "unicode_cache_": 10,
+ "octal_pos_": 5,
+ "Location": 14,
+ "harmony_scoping_": 4,
+ "harmony_modules_": 4,
+ "Initialize": 4,
+ "Utf16CharacterStream*": 3,
+ "source_": 7,
+ "Init": 3,
+ "has_line_terminator_before_next_": 9,
+ "SkipWhiteSpace": 4,
+ "Scan": 5,
+ "uc32": 19,
+ "ScanHexNumber": 2,
+ "expected_length": 4,
+ "ASSERT": 17,
+ "prevent": 1,
+ "overflow": 1,
+ "digits": 3,
+ "c0_": 64,
+ "d": 8,
+ "HexValue": 2,
+ "j": 4,
+ "PushBack": 8,
+ "Advance": 44,
+ "STATIC_ASSERT": 5,
+ "Token": 212,
+ "NUM_TOKENS": 1,
+ "byte": 1,
+ "one_char_tokens": 2,
+ "ILLEGAL": 120,
+ "LPAREN": 2,
+ "RPAREN": 2,
+ "COMMA": 2,
+ "COLON": 2,
+ "SEMICOLON": 2,
+ "CONDITIONAL": 2,
+ "f": 5,
+ "LBRACK": 2,
+ "RBRACK": 2,
+ "LBRACE": 2,
+ "RBRACE": 2,
+ "BIT_NOT": 2,
+ "Value": 23,
+ "Next": 3,
+ "current_": 2,
+ "next_": 2,
+ "has_multiline_comment_before_next_": 5,
+ "static_cast": 7,
+ "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,
+ "undo": 4,
+ "WHITESPACE": 6,
+ "SkipMultiLineComment": 3,
+ "ch": 5,
+ "ScanHtmlComment": 3,
+ "LT": 2,
+ "next_.literal_chars": 13,
+ "do": 4,
+ "ScanString": 3,
+ "LTE": 1,
+ "ASSIGN_SHL": 1,
+ "SHL": 1,
+ "GTE": 1,
+ "ASSIGN_SAR": 1,
+ "ASSIGN_SHR": 1,
+ "SHR": 1,
+ "SAR": 1,
+ "GT": 1,
+ "EQ_STRICT": 1,
+ "EQ": 1,
+ "ASSIGN": 1,
+ "NE_STRICT": 1,
+ "NE": 1,
+ "NOT": 1,
+ "INC": 1,
+ "ASSIGN_ADD": 1,
+ "ADD": 1,
+ "DEC": 1,
+ "ASSIGN_SUB": 1,
+ "SUB": 1,
+ "ASSIGN_MUL": 1,
+ "MUL": 1,
+ "ASSIGN_MOD": 1,
+ "MOD": 1,
+ "ASSIGN_DIV": 1,
+ "DIV": 1,
+ "AND": 1,
+ "ASSIGN_BIT_AND": 1,
+ "BIT_AND": 1,
+ "OR": 1,
+ "ASSIGN_BIT_OR": 1,
+ "BIT_OR": 1,
+ "ASSIGN_BIT_XOR": 1,
+ "BIT_XOR": 1,
+ "IsDecimalDigit": 2,
+ "ScanNumber": 3,
+ "PERIOD": 1,
+ "IsIdentifierStart": 2,
+ "ScanIdentifierOrKeyword": 2,
+ "EOS": 1,
+ "SeekForward": 4,
+ "current_pos": 4,
+ "ASSERT_EQ": 1,
+ "ScanEscape": 2,
+ "IsCarriageReturn": 2,
+ "IsLineFeed": 2,
+ "fall": 2,
+ "through": 2,
+ "v": 3,
+ "xx": 1,
+ "xxx": 1,
+ "error": 1,
+ "immediately": 1,
+ "octal": 1,
+ "escape": 1,
+ "quote": 3,
+ "consume": 2,
+ "LiteralScope": 4,
+ "literal": 2,
+ ".": 2,
+ "X": 2,
+ "E": 3,
+ "l": 1,
+ "p": 5,
+ "w": 1,
+ "y": 13,
+ "keyword": 1,
+ "Unescaped": 1,
+ "in_character_class": 2,
+ "AddLiteralCharAdvance": 3,
+ "literal.Complete": 2,
+ "ScanLiteralUnicodeEscape": 3,
+ "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,
+ "detect": 1,
+ "x16": 1,
+ "x36.": 1,
+ "Utf16CharacterStream": 3,
+ "pos_": 6,
+ "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,
+ "uint32_t": 8,
+ "ExpandBuffer": 2,
+ "kMaxAsciiCharCodeU": 1,
+ "": 6,
+ "kASCIISize": 1,
+ "ConvertToUtf16": 2,
+ "*reinterpret_cast": 1,
+ "": 2,
+ "kUC16Size": 2,
+ "is_ascii": 3,
+ "Vector": 13,
+ "uc16": 5,
+ "utf16_literal": 3,
+ "backing_store_.start": 5,
+ "ascii_literal": 3,
+ "length": 8,
+ "kInitialCapacity": 2,
+ "kGrowthFactory": 2,
+ "kMinConversionSlack": 1,
+ "kMaxGrowth": 2,
+ "MB": 1,
+ "NewCapacity": 3,
+ "min_capacity": 2,
+ "capacity": 3,
+ "Max": 1,
+ "new_capacity": 2,
+ "Min": 1,
+ "new_store": 6,
+ "memcpy": 1,
+ "new_store.start": 3,
+ "new_content_size": 4,
+ "src": 2,
+ "": 1,
+ "dst": 2,
+ "Scanner*": 2,
+ "self": 5,
+ "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,
+ "location": 4,
+ "current_.location": 2,
+ "literal_ascii_string": 1,
+ "ASSERT_NOT_NULL": 9,
+ "current_.literal_chars": 11,
+ "literal_utf16_string": 1,
+ "is_literal_ascii": 1,
+ "literal_length": 1,
+ "literal_contains_escapes": 1,
+ "source_length": 3,
+ "location.end_pos": 1,
+ "location.beg_pos": 1,
+ "STRING": 1,
+ "peek": 1,
+ "peek_location": 1,
+ "next_.location": 1,
+ "next_literal_ascii_string": 1,
+ "next_literal_utf16_string": 1,
+ "is_next_literal_ascii": 1,
+ "next_literal_length": 1,
+ "kCharacterLookaheadBufferSize": 3,
+ "ScanOctalEscape": 1,
+ "octal_position": 1,
+ "clear_octal_position": 1,
+ "HarmonyScoping": 1,
+ "SetHarmonyScoping": 1,
+ "scoping": 2,
+ "HarmonyModules": 1,
+ "SetHarmonyModules": 1,
+ "modules": 2,
+ "HasAnyLineTerminatorBeforeNext": 1,
+ "ScanRegExpPattern": 1,
+ "seen_equal": 1,
+ "ScanRegExpFlags": 1,
+ "IsIdentifier": 1,
+ "CharacterStream*": 1,
+ "buffer": 1,
+ "TokenDesc": 3,
+ "LiteralBuffer*": 2,
+ "literal_chars": 1,
+ "free_buffer": 3,
+ "literal_buffer1_": 3,
+ "literal_buffer2_": 2,
+ "AddLiteralChar": 2,
+ "tok": 2,
+ "else_": 2,
+ "ScanDecimalDigits": 1,
+ "seen_period": 1,
+ "ScanIdentifierSuffix": 1,
+ "LiteralScope*": 1,
+ "ScanIdentifierUnicodeEscape": 1,
+ "desc": 2,
+ "as": 1,
+ "look": 1,
+ "ahead": 1,
+ "UTILS_H": 3,
+ "": 1,
+ "": 1,
+ "": 1,
+ "QTemporaryFile": 1,
+ "showUsage": 1,
+ "QtMsgType": 1,
+ "type": 6,
+ "dump_path": 1,
+ "minidump_id": 1,
+ "void*": 1,
+ "context": 8,
+ "succeeded": 1,
+ "QVariant": 1,
+ "coffee2js": 1,
+ "script": 1,
+ "injectJsInFrame": 2,
+ "jsFilePath": 5,
+ "libraryPath": 5,
+ "QWebFrame": 4,
+ "*targetFrame": 4,
+ "startingScript": 2,
+ "Encoding": 3,
+ "jsFileEnc": 2,
+ "readResourceFileUtf8": 1,
+ "resourceFilePath": 1,
+ "loadJSForDebug": 2,
+ "autorun": 2,
+ "cleanupFromDebug": 1,
+ "findScript": 1,
+ "jsFromScriptFile": 1,
+ "scriptPath": 1,
+ "enc": 1,
+ "shouldn": 1,
+ "instantiated": 1,
+ "QTemporaryFile*": 2,
+ "m_tempHarness": 1,
+ "We": 1,
+ "make": 1,
+ "sure": 1,
+ "clean": 1,
+ "after": 1,
+ "ourselves": 1,
+ "m_tempWrapper": 1,
+ "V8_DECLARE_ONCE": 1,
+ "init_once": 2,
+ "V8": 21,
+ "is_running_": 6,
+ "has_been_set_up_": 4,
+ "has_been_disposed_": 6,
+ "has_fatal_error_": 5,
+ "use_crankshaft_": 6,
+ "List": 3,
+ "": 3,
+ "call_completed_callbacks_": 16,
+ "LazyMutex": 1,
+ "entropy_mutex": 1,
+ "LAZY_MUTEX_INITIALIZER": 1,
+ "EntropySource": 3,
+ "entropy_source": 4,
+ "Deserializer*": 2,
+ "des": 3,
+ "FlagList": 1,
+ "EnforceFlagImplications": 1,
+ "InitializeOncePerProcess": 4,
+ "Isolate": 9,
+ "CurrentPerIsolateThreadData": 4,
+ "EnterDefaultIsolate": 1,
+ "thread_id": 1,
+ ".Equals": 1,
+ "ThreadId": 1,
+ "Current": 5,
+ "isolate": 15,
+ "IsDead": 2,
+ "Isolate*": 6,
+ "SetFatalError": 2,
+ "TearDown": 5,
+ "IsDefaultIsolate": 1,
+ "ElementsAccessor": 2,
+ "LOperand": 2,
+ "TearDownCaches": 1,
+ "RegisteredExtension": 1,
+ "UnregisterAll": 1,
+ "OS": 3,
+ "seed_random": 2,
+ "uint32_t*": 2,
+ "state": 15,
+ "FLAG_random_seed": 2,
+ "val": 3,
+ "ScopedLock": 1,
+ "lock": 1,
+ "entropy_mutex.Pointer": 1,
+ "random": 1,
+ "random_base": 3,
+ "xFFFF": 2,
+ "FFFF": 1,
+ "SetEntropySource": 2,
+ "SetReturnAddressLocationResolver": 3,
+ "ReturnAddressLocationResolver": 2,
+ "resolver": 3,
+ "StackFrame": 1,
+ "Random": 3,
+ "Context*": 4,
+ "IsGlobalContext": 1,
+ "ByteArray*": 1,
+ "seed": 2,
+ "random_seed": 1,
+ "": 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,
+ "Add": 1,
+ "RemoveCallCompletedCallback": 2,
+ "Remove": 1,
+ "FireCallCompletedCallback": 2,
+ "HandleScopeImplementer*": 1,
+ "handle_scope_implementer": 5,
+ "CallDepthIsZero": 1,
+ "IncrementCallDepth": 1,
+ "DecrementCallDepth": 1,
+ "union": 1,
+ "double": 23,
+ "double_value": 1,
+ "uint64_t": 2,
+ "uint64_t_value": 1,
+ "double_int_union": 2,
+ "Object*": 4,
+ "FillHeapNumberWithRandom": 2,
+ "heap_number": 4,
+ "random_bits": 2,
+ "binary_million": 3,
+ "r.double_value": 3,
+ "r.uint64_t_value": 1,
+ "HeapNumber": 1,
+ "cast": 1,
+ "set_value": 1,
+ "InitializeOncePerProcessImpl": 3,
+ "SetUp": 4,
+ "FLAG_crankshaft": 1,
+ "Serializer": 1,
+ "enabled": 1,
+ "CPU": 2,
+ "SupportsCrankshaft": 1,
+ "PostSetUp": 1,
+ "RuntimeProfiler": 1,
+ "GlobalSetUp": 1,
+ "FLAG_stress_compaction": 1,
+ "FLAG_force_marking_deque_overflows": 1,
+ "FLAG_gc_global": 1,
+ "FLAG_max_new_space_size": 1,
+ "kPageSizeBits": 1,
+ "SetUpCaches": 1,
+ "SetUpJSCallerSavedCodeData": 1,
+ "SamplerRegistry": 1,
+ "ExternalReference": 1,
+ "CallOnce": 1,
+ "V8_V8_H_": 3,
+ "defined": 21,
+ "GOOGLE3": 2,
+ "DEBUG": 3,
+ "NDEBUG": 4,
+ "both": 1,
+ "set": 1,
+ "Deserializer": 1,
+ "AllStatic": 1,
+ "IsRunning": 1,
+ "UseCrankshaft": 1,
+ "FatalProcessOutOfMemory": 1,
+ "take_snapshot": 1,
+ "NilValue": 1,
+ "kNullValue": 1,
+ "kUndefinedValue": 1,
+ "EqualityKind": 1,
+ "kStrictEquality": 1,
+ "kNonStrictEquality": 1,
+ "PY_SSIZE_T_CLEAN": 1,
+ "Py_PYTHON_H": 1,
+ "Python": 1,
+ "needed": 1,
+ "compile": 1,
+ "C": 1,
+ "extensions": 1,
+ "please": 1,
+ "install": 1,
+ "development": 1,
+ "Python.": 1,
+ "#else": 24,
+ "": 1,
+ "offsetof": 2,
+ "member": 2,
+ "type*": 1,
+ "WIN32": 2,
+ "MS_WINDOWS": 2,
+ "__stdcall": 2,
+ "__cdecl": 2,
+ "__fastcall": 2,
+ "DL_IMPORT": 2,
+ "DL_EXPORT": 2,
+ "PY_LONG_LONG": 5,
+ "LONG_LONG": 1,
+ "PY_VERSION_HEX": 9,
+ "METH_COEXIST": 1,
+ "PyDict_CheckExact": 1,
+ "op": 6,
+ "Py_TYPE": 4,
+ "PyDict_Type": 1,
+ "PyDict_Contains": 1,
+ "o": 20,
+ "PySequence_Contains": 1,
+ "Py_ssize_t": 17,
+ "PY_SSIZE_T_MAX": 1,
+ "INT_MAX": 1,
+ "PY_SSIZE_T_MIN": 1,
+ "INT_MIN": 1,
+ "PY_FORMAT_SIZE_T": 1,
+ "PyInt_FromSsize_t": 2,
+ "z": 46,
+ "PyInt_FromLong": 13,
+ "PyInt_AsSsize_t": 2,
+ "PyInt_AsLong": 2,
+ "PyNumber_Index": 1,
+ "PyNumber_Int": 1,
+ "PyIndex_Check": 1,
+ "PyNumber_Check": 1,
+ "PyErr_WarnEx": 1,
+ "category": 2,
+ "message": 2,
+ "stacklevel": 1,
+ "PyErr_Warn": 1,
+ "Py_REFCNT": 1,
+ "ob": 6,
+ "PyObject*": 16,
+ "ob_refcnt": 1,
+ "ob_type": 7,
+ "Py_SIZE": 1,
+ "PyVarObject*": 1,
+ "ob_size": 1,
+ "PyVarObject_HEAD_INIT": 1,
+ "PyObject_HEAD_INIT": 1,
+ "PyType_Modified": 1,
+ "*buf": 1,
+ "PyObject": 221,
+ "*obj": 2,
+ "len": 1,
+ "itemsize": 2,
+ "readonly": 2,
+ "ndim": 2,
+ "*format": 1,
+ "*shape": 1,
+ "*strides": 1,
+ "*suboffsets": 1,
+ "*internal": 1,
+ "Py_buffer": 5,
+ "PyBUF_SIMPLE": 1,
+ "PyBUF_WRITABLE": 1,
+ "PyBUF_FORMAT": 1,
+ "PyBUF_ND": 2,
+ "PyBUF_STRIDES": 5,
+ "PyBUF_C_CONTIGUOUS": 3,
+ "PyBUF_F_CONTIGUOUS": 3,
+ "PyBUF_ANY_CONTIGUOUS": 1,
+ "PyBUF_INDIRECT": 1,
+ "PY_MAJOR_VERSION": 10,
+ "__Pyx_BUILTIN_MODULE_NAME": 2,
+ "Py_TPFLAGS_CHECKTYPES": 1,
+ "Py_TPFLAGS_HAVE_INDEX": 1,
+ "Py_TPFLAGS_HAVE_NEWBUFFER": 1,
+ "PyBaseString_Type": 1,
+ "PyUnicode_Type": 2,
+ "PyStringObject": 2,
+ "PyUnicodeObject": 1,
+ "PyString_Type": 2,
+ "PyString_Check": 2,
+ "PyUnicode_Check": 1,
+ "PyString_CheckExact": 2,
+ "PyUnicode_CheckExact": 1,
+ "PyBytesObject": 1,
+ "PyBytes_Type": 1,
+ "PyBytes_Check": 1,
+ "PyBytes_CheckExact": 1,
+ "PyBytes_FromString": 2,
+ "PyString_FromString": 1,
+ "PyBytes_FromStringAndSize": 1,
+ "PyString_FromStringAndSize": 1,
+ "PyBytes_FromFormat": 1,
+ "PyString_FromFormat": 1,
+ "PyBytes_DecodeEscape": 1,
+ "PyString_DecodeEscape": 1,
+ "PyBytes_AsString": 2,
+ "PyString_AsString": 1,
+ "PyBytes_AsStringAndSize": 1,
+ "PyString_AsStringAndSize": 1,
+ "PyBytes_Size": 1,
+ "PyString_Size": 1,
+ "PyBytes_AS_STRING": 1,
+ "PyString_AS_STRING": 1,
+ "PyBytes_GET_SIZE": 1,
+ "PyString_GET_SIZE": 1,
+ "PyBytes_Repr": 1,
+ "PyString_Repr": 1,
+ "PyBytes_Concat": 1,
+ "PyString_Concat": 1,
+ "PyBytes_ConcatAndDel": 1,
+ "PyString_ConcatAndDel": 1,
+ "PySet_Check": 1,
+ "obj": 42,
+ "PyObject_TypeCheck": 3,
+ "PySet_Type": 2,
+ "PyFrozenSet_Check": 1,
+ "PyFrozenSet_Type": 1,
+ "PySet_CheckExact": 2,
+ "__Pyx_TypeCheck": 1,
+ "PyTypeObject": 2,
+ "PyIntObject": 1,
+ "PyLongObject": 2,
+ "PyInt_Type": 1,
+ "PyLong_Type": 1,
+ "PyInt_Check": 1,
+ "PyLong_Check": 1,
+ "PyInt_CheckExact": 1,
+ "PyLong_CheckExact": 1,
+ "PyInt_FromString": 1,
+ "PyLong_FromString": 1,
+ "PyInt_FromUnicode": 1,
+ "PyLong_FromUnicode": 1,
+ "PyLong_FromLong": 1,
+ "PyInt_FromSize_t": 1,
+ "PyLong_FromSize_t": 1,
+ "PyLong_FromSsize_t": 1,
+ "PyLong_AsLong": 1,
+ "PyInt_AS_LONG": 1,
+ "PyLong_AS_LONG": 1,
+ "PyLong_AsSsize_t": 1,
+ "PyInt_AsUnsignedLongMask": 1,
+ "PyLong_AsUnsignedLongMask": 1,
+ "PyInt_AsUnsignedLongLongMask": 1,
+ "PyLong_AsUnsignedLongLongMask": 1,
+ "PyBoolObject": 1,
+ "__Pyx_PyNumber_Divide": 2,
+ "PyNumber_TrueDivide": 1,
+ "__Pyx_PyNumber_InPlaceDivide": 2,
+ "PyNumber_InPlaceTrueDivide": 1,
+ "PyNumber_Divide": 1,
+ "PyNumber_InPlaceDivide": 1,
+ "__Pyx_PySequence_GetSlice": 2,
+ "PySequence_GetSlice": 2,
+ "__Pyx_PySequence_SetSlice": 2,
+ "PySequence_SetSlice": 2,
+ "__Pyx_PySequence_DelSlice": 2,
+ "PySequence_DelSlice": 2,
+ "unlikely": 69,
+ "PyErr_SetString": 4,
+ "PyExc_SystemError": 3,
+ "likely": 15,
+ "tp_as_mapping": 3,
+ "PyErr_Format": 4,
+ "PyExc_TypeError": 5,
+ "tp_name": 4,
+ "PyMethod_New": 2,
+ "func": 3,
+ "klass": 1,
+ "PyInstanceMethod_New": 1,
+ "__Pyx_GetAttrString": 2,
+ "PyObject_GetAttrString": 3,
+ "__Pyx_SetAttrString": 2,
+ "PyObject_SetAttrString": 2,
+ "__Pyx_DelAttrString": 2,
+ "PyObject_DelAttrString": 2,
+ "__Pyx_NAMESTR": 3,
+ "__Pyx_DOCSTR": 3,
+ "__cplusplus": 10,
+ "__PYX_EXTERN_C": 2,
+ "_USE_MATH_DEFINES": 1,
+ "": 1,
+ "__PYX_HAVE_API__wrapper_inner": 1,
+ "PYREX_WITHOUT_ASSERTIONS": 1,
+ "CYTHON_WITHOUT_ASSERTIONS": 1,
+ "CYTHON_INLINE": 68,
+ "__GNUC__": 5,
+ "__inline__": 1,
+ "#elif": 3,
+ "__inline": 1,
+ "__STDC_VERSION__": 2,
+ "L": 1,
+ "CYTHON_UNUSED": 7,
+ "**p": 1,
+ "*s": 1,
+ "long": 5,
+ "encoding": 1,
+ "is_unicode": 1,
+ "is_str": 1,
+ "intern": 1,
+ "__Pyx_StringTabEntry": 1,
+ "__Pyx_PyBytes_FromUString": 1,
+ "__Pyx_PyBytes_AsUString": 1,
+ "__Pyx_PyBool_FromLong": 1,
+ "Py_INCREF": 3,
+ "Py_True": 2,
+ "Py_False": 2,
+ "__Pyx_PyObject_IsTrue": 8,
+ "__Pyx_PyNumber_Int": 1,
+ "__Pyx_PyIndex_AsSsize_t": 1,
+ "__Pyx_PyInt_FromSize_t": 1,
+ "__Pyx_PyInt_AsSize_t": 1,
+ "__pyx_PyFloat_AsDouble": 3,
+ "PyFloat_CheckExact": 1,
+ "PyFloat_AS_DOUBLE": 1,
+ "PyFloat_AsDouble": 1,
+ "__GNUC_MINOR__": 1,
+ "__builtin_expect": 2,
+ "*__pyx_m": 1,
+ "*__pyx_b": 1,
+ "*__pyx_empty_tuple": 1,
+ "*__pyx_empty_bytes": 1,
+ "__pyx_lineno": 80,
+ "__pyx_clineno": 80,
+ "__pyx_cfilenm": 1,
+ "__FILE__": 2,
+ "*__pyx_filename": 1,
+ "CYTHON_CCOMPLEX": 12,
+ "_Complex_I": 3,
+ "": 1,
+ "": 1,
+ "__sun__": 1,
+ "fj": 1,
+ "*__pyx_f": 1,
+ "npy_int8": 1,
+ "__pyx_t_5numpy_int8_t": 1,
+ "npy_int16": 1,
+ "__pyx_t_5numpy_int16_t": 1,
+ "npy_int32": 1,
+ "__pyx_t_5numpy_int32_t": 1,
+ "npy_int64": 1,
+ "__pyx_t_5numpy_int64_t": 1,
+ "npy_uint8": 1,
+ "__pyx_t_5numpy_uint8_t": 1,
+ "npy_uint16": 1,
+ "__pyx_t_5numpy_uint16_t": 1,
+ "npy_uint32": 1,
+ "__pyx_t_5numpy_uint32_t": 1,
+ "npy_uint64": 1,
+ "__pyx_t_5numpy_uint64_t": 1,
+ "npy_float32": 1,
+ "__pyx_t_5numpy_float32_t": 1,
+ "npy_float64": 1,
+ "__pyx_t_5numpy_float64_t": 1,
+ "npy_long": 1,
+ "__pyx_t_5numpy_int_t": 1,
+ "npy_longlong": 1,
+ "__pyx_t_5numpy_long_t": 1,
+ "npy_intp": 10,
+ "__pyx_t_5numpy_intp_t": 1,
+ "npy_uintp": 1,
+ "__pyx_t_5numpy_uintp_t": 1,
+ "npy_ulong": 1,
+ "__pyx_t_5numpy_uint_t": 1,
+ "npy_ulonglong": 1,
+ "__pyx_t_5numpy_ulong_t": 1,
+ "npy_double": 2,
+ "__pyx_t_5numpy_float_t": 1,
+ "__pyx_t_5numpy_double_t": 1,
+ "npy_longdouble": 1,
+ "__pyx_t_5numpy_longdouble_t": 1,
+ "complex": 2,
+ "float": 7,
+ "__pyx_t_float_complex": 27,
+ "_Complex": 2,
+ "real": 2,
+ "imag": 2,
+ "__pyx_t_double_complex": 27,
+ "npy_cfloat": 1,
+ "__pyx_t_5numpy_cfloat_t": 1,
+ "npy_cdouble": 2,
+ "__pyx_t_5numpy_cdouble_t": 1,
+ "npy_clongdouble": 1,
+ "__pyx_t_5numpy_clongdouble_t": 1,
+ "__pyx_t_5numpy_complex_t": 1,
+ "CYTHON_REFNANNY": 3,
+ "__Pyx_RefNannyAPIStruct": 4,
+ "*__Pyx_RefNanny": 1,
+ "__Pyx_RefNannyImportAPI": 1,
+ "*modname": 1,
+ "*m": 1,
+ "*p": 1,
+ "*r": 1,
+ "m": 4,
+ "PyImport_ImportModule": 1,
+ "modname": 1,
+ "PyLong_AsVoidPtr": 1,
+ "Py_XDECREF": 3,
+ "__Pyx_RefNannySetupContext": 13,
+ "*__pyx_refnanny": 1,
+ "__Pyx_RefNanny": 6,
+ "SetupContext": 1,
+ "__LINE__": 84,
+ "__Pyx_RefNannyFinishContext": 12,
+ "FinishContext": 1,
+ "__pyx_refnanny": 5,
+ "__Pyx_INCREF": 36,
+ "INCREF": 1,
+ "__Pyx_DECREF": 66,
+ "DECREF": 1,
+ "__Pyx_GOTREF": 60,
+ "GOTREF": 1,
+ "__Pyx_GIVEREF": 10,
+ "GIVEREF": 1,
+ "__Pyx_XDECREF": 26,
+ "Py_DECREF": 1,
+ "__Pyx_XGIVEREF": 7,
+ "__Pyx_XGOTREF": 1,
+ "__Pyx_TypeTest": 4,
+ "*type": 3,
+ "*__Pyx_GetName": 1,
+ "*dict": 1,
+ "__Pyx_ErrRestore": 1,
+ "*value": 2,
+ "*tb": 2,
+ "__Pyx_ErrFetch": 1,
+ "**type": 1,
+ "**value": 1,
+ "**tb": 1,
+ "__Pyx_Raise": 8,
+ "__Pyx_RaiseNoneNotIterableError": 1,
+ "__Pyx_RaiseNeedMoreValuesError": 1,
+ "index": 2,
+ "__Pyx_RaiseTooManyValuesError": 1,
+ "expected": 1,
+ "__Pyx_UnpackTupleError": 2,
+ "*__Pyx_Import": 1,
+ "*from_list": 1,
+ "__Pyx_Print": 1,
+ "__pyx_print": 1,
+ "__pyx_print_kwargs": 1,
+ "__Pyx_PrintOne": 4,
+ "*o": 1,
+ "*__Pyx_PyInt_to_py_Py_intptr_t": 1,
+ "Py_intptr_t": 1,
+ "__Pyx_CREAL": 4,
+ ".real": 3,
+ "__Pyx_CIMAG": 4,
+ ".imag": 3,
+ "__real__": 1,
+ "__imag__": 1,
+ "_WIN32": 1,
+ "__Pyx_SET_CREAL": 2,
+ "__Pyx_SET_CIMAG": 2,
+ "__pyx_t_float_complex_from_parts": 1,
+ "__Pyx_c_eqf": 2,
+ "__Pyx_c_sumf": 2,
+ "__Pyx_c_difff": 2,
+ "__Pyx_c_prodf": 2,
+ "__Pyx_c_quotf": 2,
+ "__Pyx_c_negf": 2,
+ "__Pyx_c_is_zerof": 3,
+ "__Pyx_c_conjf": 3,
+ "conj": 3,
+ "__Pyx_c_absf": 3,
+ "abs": 2,
+ "__Pyx_c_powf": 3,
+ "pow": 2,
+ "conjf": 1,
+ "cabsf": 1,
+ "cpowf": 1,
+ "__pyx_t_double_complex_from_parts": 1,
+ "__Pyx_c_eq": 2,
+ "__Pyx_c_sum": 2,
+ "__Pyx_c_diff": 2,
+ "__Pyx_c_prod": 2,
+ "__Pyx_c_quot": 2,
+ "__Pyx_c_neg": 2,
+ "__Pyx_c_is_zero": 3,
+ "__Pyx_c_conj": 3,
+ "__Pyx_c_abs": 3,
+ "__Pyx_c_pow": 3,
+ "cabs": 1,
+ "cpow": 1,
+ "__Pyx_PyInt_AsUnsignedChar": 1,
+ "short": 3,
+ "__Pyx_PyInt_AsUnsignedShort": 1,
+ "__Pyx_PyInt_AsUnsignedInt": 1,
+ "__Pyx_PyInt_AsChar": 1,
+ "__Pyx_PyInt_AsShort": 1,
+ "__Pyx_PyInt_AsInt": 1,
+ "signed": 5,
+ "__Pyx_PyInt_AsSignedChar": 1,
+ "__Pyx_PyInt_AsSignedShort": 1,
+ "__Pyx_PyInt_AsSignedInt": 1,
+ "__Pyx_PyInt_AsLongDouble": 1,
+ "__Pyx_PyInt_AsUnsignedLong": 1,
+ "__Pyx_PyInt_AsUnsignedLongLong": 1,
+ "__Pyx_PyInt_AsLong": 1,
+ "__Pyx_PyInt_AsLongLong": 1,
+ "__Pyx_PyInt_AsSignedLong": 1,
+ "__Pyx_PyInt_AsSignedLongLong": 1,
+ "__Pyx_WriteUnraisable": 3,
+ "__Pyx_ExportFunction": 1,
+ "*__pyx_f_5numpy_PyArray_MultiIterNew2": 2,
+ "*__pyx_f_5numpy_PyArray_MultiIterNew3": 2,
+ "*__pyx_f_5numpy_PyArray_MultiIterNew4": 2,
+ "*__pyx_f_5numpy_PyArray_MultiIterNew5": 2,
+ "*__pyx_f_5numpy__util_dtypestring": 2,
+ "PyArray_Descr": 6,
+ "__pyx_f_5numpy_set_array_base": 1,
+ "PyArrayObject": 19,
+ "*__pyx_f_5numpy_get_array_base": 1,
+ "inner_work_1d": 2,
+ "inner_work_2d": 2,
+ "__Pyx_MODULE_NAME": 1,
+ "__pyx_module_is_main_wrapper_inner": 1,
+ "*__pyx_builtin_ValueError": 1,
+ "*__pyx_builtin_range": 1,
+ "*__pyx_builtin_RuntimeError": 1,
+ "__pyx_k_1": 1,
+ "__pyx_k_2": 1,
+ "__pyx_k_3": 1,
+ "__pyx_k_5": 1,
+ "__pyx_k_7": 1,
+ "__pyx_k_9": 1,
+ "__pyx_k_11": 1,
+ "__pyx_k_12": 1,
+ "__pyx_k_15": 1,
+ "__pyx_k__B": 2,
+ "__pyx_k__H": 2,
+ "__pyx_k__I": 2,
+ "__pyx_k__L": 2,
+ "__pyx_k__O": 2,
+ "__pyx_k__Q": 2,
+ "__pyx_k__b": 2,
+ "__pyx_k__d": 2,
+ "__pyx_k__f": 2,
+ "__pyx_k__g": 2,
+ "__pyx_k__h": 2,
+ "__pyx_k__i": 2,
+ "__pyx_k__l": 2,
+ "__pyx_k__q": 2,
+ "__pyx_k__Zd": 2,
+ "__pyx_k__Zf": 2,
+ "__pyx_k__Zg": 2,
+ "__pyx_k__np": 1,
+ "__pyx_k__buf": 1,
+ "__pyx_k__obj": 1,
+ "__pyx_k__base": 1,
+ "__pyx_k__ndim": 1,
+ "__pyx_k__ones": 1,
+ "__pyx_k__descr": 1,
+ "__pyx_k__names": 1,
+ "__pyx_k__numpy": 1,
+ "__pyx_k__range": 1,
+ "__pyx_k__shape": 1,
+ "__pyx_k__fields": 1,
+ "__pyx_k__format": 1,
+ "__pyx_k__strides": 1,
+ "__pyx_k____main__": 1,
+ "__pyx_k____test__": 1,
+ "__pyx_k__itemsize": 1,
+ "__pyx_k__readonly": 1,
+ "__pyx_k__type_num": 1,
+ "__pyx_k__byteorder": 1,
+ "__pyx_k__ValueError": 1,
+ "__pyx_k__suboffsets": 1,
+ "__pyx_k__work_module": 1,
+ "__pyx_k__RuntimeError": 1,
+ "__pyx_k__pure_py_test": 1,
+ "__pyx_k__wrapper_inner": 1,
+ "__pyx_k__do_awesome_work": 1,
+ "*__pyx_kp_s_1": 1,
+ "*__pyx_kp_u_11": 1,
+ "*__pyx_kp_u_12": 1,
+ "*__pyx_kp_u_15": 1,
+ "*__pyx_kp_s_2": 1,
+ "*__pyx_kp_s_3": 1,
+ "*__pyx_kp_u_5": 1,
+ "*__pyx_kp_u_7": 1,
+ "*__pyx_kp_u_9": 1,
+ "*__pyx_n_s__RuntimeError": 1,
+ "*__pyx_n_s__ValueError": 1,
+ "*__pyx_n_s____main__": 1,
+ "*__pyx_n_s____test__": 1,
+ "*__pyx_n_s__base": 1,
+ "*__pyx_n_s__buf": 1,
+ "*__pyx_n_s__byteorder": 1,
+ "*__pyx_n_s__descr": 1,
+ "*__pyx_n_s__do_awesome_work": 1,
+ "*__pyx_n_s__fields": 1,
+ "*__pyx_n_s__format": 1,
+ "*__pyx_n_s__itemsize": 1,
+ "*__pyx_n_s__names": 1,
+ "*__pyx_n_s__ndim": 1,
+ "*__pyx_n_s__np": 1,
+ "*__pyx_n_s__numpy": 1,
+ "*__pyx_n_s__obj": 1,
+ "*__pyx_n_s__ones": 1,
+ "*__pyx_n_s__pure_py_test": 1,
+ "*__pyx_n_s__range": 1,
+ "*__pyx_n_s__readonly": 1,
+ "*__pyx_n_s__shape": 1,
+ "*__pyx_n_s__strides": 1,
+ "*__pyx_n_s__suboffsets": 1,
+ "*__pyx_n_s__type_num": 1,
+ "*__pyx_n_s__work_module": 1,
+ "*__pyx_n_s__wrapper_inner": 1,
+ "*__pyx_int_5": 1,
+ "*__pyx_int_15": 1,
+ "*__pyx_k_tuple_4": 1,
+ "*__pyx_k_tuple_6": 1,
+ "*__pyx_k_tuple_8": 1,
+ "*__pyx_k_tuple_10": 1,
+ "*__pyx_k_tuple_13": 1,
+ "*__pyx_k_tuple_14": 1,
+ "*__pyx_k_tuple_16": 1,
+ "__pyx_v_num_x": 4,
+ "*__pyx_v_data_ptr": 2,
+ "*__pyx_v_answer_ptr": 2,
+ "__pyx_v_nd": 6,
+ "*__pyx_v_dims": 2,
+ "__pyx_v_typenum": 6,
+ "*__pyx_v_data_np": 2,
+ "__pyx_v_sum": 6,
+ "__pyx_t_1": 154,
+ "*__pyx_t_2": 4,
+ "*__pyx_t_3": 4,
+ "*__pyx_t_4": 3,
+ "__pyx_t_5": 75,
+ "__pyx_kp_s_1": 1,
+ "__pyx_filename": 79,
+ "__pyx_f": 79,
+ "__pyx_L1_error": 88,
+ "__pyx_v_dims": 4,
+ "NPY_DOUBLE": 3,
+ "__pyx_t_2": 120,
+ "PyArray_SimpleNewFromData": 2,
+ "__pyx_v_data_ptr": 2,
+ "Py_None": 38,
+ "__pyx_ptype_5numpy_ndarray": 2,
+ "__pyx_v_data_np": 10,
+ "__Pyx_GetName": 4,
+ "__pyx_m": 4,
+ "__pyx_n_s__work_module": 3,
+ "__pyx_t_3": 113,
+ "PyObject_GetAttr": 4,
+ "__pyx_n_s__do_awesome_work": 3,
+ "PyTuple_New": 4,
+ "PyTuple_SET_ITEM": 4,
+ "__pyx_t_4": 35,
+ "PyObject_Call": 11,
+ "PyErr_Occurred": 2,
+ "__pyx_v_answer_ptr": 2,
+ "__pyx_L0": 24,
+ "__pyx_v_num_y": 2,
+ "__pyx_kp_s_2": 1,
+ "*__pyx_pf_13wrapper_inner_pure_py_test": 2,
+ "*__pyx_self": 2,
+ "*unused": 2,
+ "PyMethodDef": 1,
+ "__pyx_mdef_13wrapper_inner_pure_py_test": 1,
+ "PyCFunction": 1,
+ "__pyx_pf_13wrapper_inner_pure_py_test": 1,
+ "METH_NOARGS": 1,
+ "*__pyx_v_data": 1,
+ "*__pyx_r": 7,
+ "*__pyx_t_1": 8,
+ "__pyx_self": 2,
+ "__pyx_v_data": 7,
+ "__pyx_kp_s_3": 1,
+ "__pyx_n_s__np": 1,
+ "__pyx_n_s__ones": 1,
+ "__pyx_k_tuple_4": 1,
+ "__pyx_r": 39,
+ "__Pyx_AddTraceback": 7,
+ "__pyx_pf_5numpy_7ndarray___getbuffer__": 2,
+ "*__pyx_v_self": 4,
+ "*__pyx_v_info": 4,
+ "__pyx_v_flags": 4,
+ "__pyx_v_copy_shape": 5,
+ "__pyx_v_i": 6,
+ "__pyx_v_ndim": 6,
+ "__pyx_v_endian_detector": 6,
+ "__pyx_v_little_endian": 8,
+ "__pyx_v_t": 29,
+ "*__pyx_v_f": 2,
+ "*__pyx_v_descr": 2,
+ "__pyx_v_offset": 9,
+ "__pyx_v_hasfields": 4,
+ "__pyx_t_6": 40,
+ "__pyx_t_7": 9,
+ "*__pyx_t_8": 1,
+ "*__pyx_t_9": 1,
+ "__pyx_v_info": 33,
+ "__pyx_v_self": 16,
+ "PyArray_NDIM": 1,
+ "__pyx_L5": 6,
+ "PyArray_CHKFLAGS": 2,
+ "NPY_C_CONTIGUOUS": 1,
+ "__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": 1,
+ "PyArray_DATA": 1,
+ "strides": 5,
+ "malloc": 2,
+ "shape": 3,
+ "PyArray_STRIDES": 2,
+ "PyArray_DIMS": 2,
+ "__pyx_L8": 2,
+ "suboffsets": 1,
+ "PyArray_ITEMSIZE": 1,
+ "PyArray_ISWRITEABLE": 1,
+ "__pyx_v_f": 31,
+ "descr": 2,
+ "__pyx_v_descr": 10,
+ "PyDataType_HASFIELDS": 2,
+ "__pyx_L11": 7,
+ "type_num": 2,
+ "byteorder": 4,
+ "__pyx_k_tuple_10": 1,
+ "__pyx_L13": 2,
+ "NPY_BYTE": 2,
+ "__pyx_L14": 18,
+ "NPY_UBYTE": 2,
+ "NPY_SHORT": 2,
+ "NPY_USHORT": 2,
+ "NPY_INT": 2,
+ "NPY_UINT": 2,
+ "NPY_LONG": 1,
+ "NPY_ULONG": 1,
+ "NPY_LONGLONG": 1,
+ "NPY_ULONGLONG": 1,
+ "NPY_FLOAT": 1,
+ "NPY_LONGDOUBLE": 1,
+ "NPY_CFLOAT": 1,
+ "NPY_CDOUBLE": 1,
+ "NPY_CLONGDOUBLE": 1,
+ "NPY_OBJECT": 1,
+ "__pyx_t_8": 16,
+ "PyNumber_Remainder": 1,
+ "__pyx_kp_u_11": 1,
+ "format": 6,
+ "__pyx_L12": 2,
+ "__pyx_t_9": 7,
+ "__pyx_f_5numpy__util_dtypestring": 1,
+ "__pyx_L2": 2,
+ "__pyx_pf_5numpy_7ndarray_1__releasebuffer__": 2,
+ "PyArray_HASFIELDS": 1,
+ "free": 2,
+ "*__pyx_f_5numpy_PyArray_MultiIterNew1": 1,
+ "*__pyx_v_a": 5,
+ "PyArray_MultiIterNew": 5,
+ "__pyx_v_a": 5,
+ "*__pyx_v_b": 4,
+ "__pyx_v_b": 4,
+ "*__pyx_v_c": 3,
+ "__pyx_v_c": 3,
+ "*__pyx_v_d": 2,
+ "__pyx_v_d": 2,
+ "*__pyx_v_e": 1,
+ "__pyx_v_e": 1,
+ "*__pyx_v_end": 1,
+ "*__pyx_v_offset": 1,
+ "*__pyx_v_child": 1,
+ "*__pyx_v_fields": 1,
+ "*__pyx_v_childname": 1,
+ "*__pyx_v_new_offset": 1,
+ "*__pyx_v_t": 1,
+ "*__pyx_t_5": 1,
+ "__pyx_t_10": 7,
+ "*__pyx_t_11": 1,
+ "__pyx_v_child": 8,
+ "__pyx_v_fields": 7,
+ "__pyx_v_childname": 4,
+ "__pyx_v_new_offset": 5,
+ "names": 2,
+ "PyTuple_GET_SIZE": 2,
+ "PyTuple_GET_ITEM": 3,
+ "PyObject_GetItem": 1,
+ "fields": 1,
+ "PyTuple_CheckExact": 1,
+ "tuple": 3,
+ "__pyx_ptype_5numpy_dtype": 1,
+ "__pyx_v_end": 2,
+ "PyNumber_Subtract": 2,
+ "PyObject_RichCompare": 8,
+ "__pyx_int_15": 1,
+ "Py_LT": 2,
+ "__pyx_builtin_RuntimeError": 2,
+ "__pyx_k_tuple_13": 1,
+ "__pyx_k_tuple_14": 1,
+ "elsize": 1,
+ "__pyx_k_tuple_16": 1,
+ "__pyx_L10": 2,
+ "Py_EQ": 6
+ },
+ "Forth": {
+ "(": 88,
+ "Block": 2,
+ "words.": 6,
+ ")": 87,
+ "variable": 3,
+ "blk": 3,
+ "current": 5,
+ "-": 473,
+ "block": 8,
+ "n": 22,
+ "addr": 11,
+ ";": 61,
+ "buffer": 2,
+ "evaluate": 1,
+ "extended": 3,
+ "semantics": 3,
+ "flush": 1,
+ "load": 2,
+ "...": 4,
+ "dup": 10,
+ "save": 2,
+ "input": 2,
+ "in": 4,
+ "@": 13,
+ "source": 5,
+ "#source": 2,
+ "interpret": 1,
+ "restore": 1,
+ "buffers": 2,
+ "update": 1,
+ "extension": 4,
+ "empty": 2,
+ "scr": 2,
+ "list": 1,
+ "bounds": 1,
+ "do": 2,
+ "i": 5,
+ "emit": 2,
+ "loop": 4,
+ "refill": 2,
+ "thru": 1,
+ "x": 10,
+ "y": 5,
+ "+": 17,
+ "swap": 12,
+ "*": 9,
+ "forth": 2,
+ "Copyright": 3,
+ "Lars": 3,
+ "Brinkhoff": 3,
+ "Kernel": 4,
+ "#tib": 2,
+ "TODO": 12,
+ ".r": 1,
+ ".": 5,
+ "[": 16,
+ "char": 10,
+ "]": 15,
+ "parse": 5,
+ "type": 3,
+ "immediate": 19,
+ "<": 14,
+ "flag": 4,
+ "r": 18,
+ "x1": 5,
+ "x2": 5,
+ "R": 13,
+ "rot": 2,
+ "r@": 2,
+ "noname": 1,
+ "align": 2,
+ "here": 9,
+ "c": 3,
+ "allot": 2,
+ "lastxt": 4,
+ "SP": 1,
+ "query": 1,
+ "tib": 1,
+ "body": 1,
+ "true": 1,
+ "tuck": 2,
+ "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,
+ "action": 1,
+ "of": 3,
+ "defer": 2,
+ "name": 1,
+ "s": 4,
+ "c@": 2,
+ "negate": 1,
+ "nip": 2,
+ "bl": 4,
+ "word": 9,
+ "ahead": 2,
+ "resolve": 4,
+ "literal": 4,
+ "postpone": 14,
+ "nonimmediate": 1,
+ "caddr": 1,
+ "C": 9,
+ "find": 2,
+ "cells": 1,
+ "postponers": 1,
+ "execute": 1,
+ "unresolved": 4,
+ "orig": 5,
+ "chars": 1,
+ "n1": 2,
+ "n2": 2,
+ "orig1": 1,
+ "orig2": 1,
+ "branch": 5,
+ "dodoes_code": 1,
+ "code": 3,
+ "begin": 2,
+ "dest": 5,
+ "while": 2,
+ "repeat": 2,
+ "until": 1,
+ "recurse": 1,
+ "pad": 3,
+ "If": 1,
+ "necessary": 1,
+ "and": 3,
+ "keep": 1,
+ "parsing.": 1,
+ "string": 3,
+ "cmove": 1,
+ "state": 2,
+ "cr": 3,
+ "abort": 3,
+ "": 1,
+ "Undefined": 1,
+ "ok": 1,
+ "HELLO": 4,
+ "KataDiversion": 1,
+ "Forth": 1,
+ "utils": 1,
+ "the": 7,
+ "stack": 3,
+ "EMPTY": 1,
+ "DEPTH": 2,
+ "IF": 10,
+ "BEGIN": 3,
+ "DROP": 5,
+ "UNTIL": 3,
+ "THEN": 10,
+ "power": 2,
+ "**": 2,
+ "n1_pow_n2": 1,
+ "SWAP": 8,
+ "DUP": 14,
+ "DO": 2,
+ "OVER": 2,
+ "LOOP": 2,
+ "NIP": 4,
+ "compute": 1,
+ "highest": 1,
+ "below": 1,
+ "N.": 1,
+ "e.g.": 2,
+ "MAXPOW2": 2,
+ "log2_n": 1,
+ "ABORT": 1,
+ "ELSE": 7,
+ "|": 4,
+ "I": 5,
+ "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,
+ "BITS": 3,
+ "bool": 1,
+ "uses": 1,
+ "following": 1,
+ "algorithm": 1,
+ "return": 5,
+ "A": 5,
+ "X": 5,
+ "LOG2": 1,
+ "end": 1,
+ "OR": 1,
+ "INVERT": 1,
+ "maximum": 1,
+ "number": 4,
+ "which": 3,
+ "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,
+ "Tools": 2,
+ ".s": 1,
+ "depth": 1,
+ "traverse": 1,
+ "dictionary": 1,
+ "assembler": 1,
+ "kernel": 1,
+ "bye": 1,
+ "cs": 2,
+ "pick": 1,
+ "roll": 1,
+ "editor": 1,
+ "forget": 1,
+ "reveal": 1,
+ "tools": 1,
+ "nr": 1,
+ "synonym": 1,
+ "undefined": 2,
+ "defined": 1,
+ "invert": 1,
+ "/cell": 2,
+ "cell": 2
+ },
+ "Lasso": {
+ "<": 7,
+ "LassoScript": 1,
+ "//": 169,
+ "JSON": 2,
+ "Encoding": 1,
+ "and": 52,
+ "Decoding": 1,
+ "Copyright": 1,
+ "-": 2248,
+ "LassoSoft": 1,
+ "Inc.": 1,
+ " ": 1,
+ " ": 1,
+ "": 1,
+ "This": 5,
+ "tag": 11,
+ "is": 35,
+ "now": 23,
+ "incorporated": 1,
+ "in": 46,
+ "Lasso": 15,
+ "If": 4,
+ "(": 640,
+ "Lasso_TagExists": 1,
+ ")": 639,
+ "False": 1,
+ ";": 573,
+ "Define_Tag": 1,
+ "Namespace": 1,
+ "Required": 1,
+ "Optional": 1,
+ "Local": 7,
+ "Map": 3,
+ "r": 8,
+ "n": 30,
+ "t": 8,
+ "f": 2,
+ "b": 2,
+ "output": 30,
+ "newoptions": 1,
+ "options": 2,
+ "array": 20,
+ "set": 10,
+ "list": 4,
+ "queue": 2,
+ "priorityqueue": 2,
+ "stack": 2,
+ "pair": 1,
+ "map": 23,
+ "[": 22,
+ "]": 23,
+ "literal": 3,
+ "string": 59,
+ "integer": 30,
+ "decimal": 5,
+ "boolean": 4,
+ "null": 26,
+ "date": 23,
+ "temp": 12,
+ "object": 7,
+ "{": 18,
+ "}": 18,
+ "client_ip": 1,
+ "client_address": 1,
+ "__jsonclass__": 6,
+ "deserialize": 2,
+ "": 3,
+ " ": 3,
+ "Decode_JSON": 2,
+ "Decode_": 1,
+ "value": 14,
+ "consume_string": 1,
+ "ibytes": 9,
+ "unescapes": 1,
+ "u": 1,
+ "UTF": 4,
+ "%": 14,
+ "QT": 4,
+ "TZ": 2,
+ "T": 3,
+ "consume_token": 1,
+ "obytes": 3,
+ "delimit": 7,
+ "true": 12,
+ "false": 8,
+ ".": 5,
+ "consume_array": 1,
+ "consume_object": 1,
+ "key": 3,
+ "val": 1,
+ "native": 2,
+ "comment": 2,
+ "http": 6,
+ "//www.lassosoft.com/json": 1,
+ "start": 5,
+ "Literal": 2,
+ "String": 1,
+ "Object": 2,
+ "JSON_RPCCall": 1,
+ "RPCCall": 1,
+ "JSON_": 1,
+ "method": 7,
+ "params": 11,
+ "id": 7,
+ "host": 6,
+ "//localhost/lassoapps.8/rpc/rpc.lasso": 1,
+ "request": 2,
+ "result": 6,
+ "JSON_Records": 3,
+ "KeyField": 1,
+ "ReturnField": 1,
+ "ExcludeField": 1,
+ "Fields": 1,
+ "_fields": 1,
+ "fields": 2,
+ "No": 1,
+ "found": 5,
+ "for": 65,
+ "_keyfield": 4,
+ "keyfield": 4,
+ "ID": 1,
+ "_index": 1,
+ "_return": 1,
+ "returnfield": 1,
+ "_exclude": 1,
+ "excludefield": 1,
+ "_records": 1,
+ "_record": 1,
+ "_temp": 1,
+ "_field": 1,
+ "_output": 1,
+ "error_msg": 15,
+ "error_code": 11,
+ "found_count": 11,
+ "rows": 1,
+ "#_records": 1,
+ "Return": 7,
+ "@#_output": 1,
+ "/Define_Tag": 1,
+ "/If": 3,
+ "define": 20,
+ "trait_json_serialize": 2,
+ "trait": 1,
+ "require": 1,
+ "asString": 3,
+ "json_serialize": 18,
+ "e": 13,
+ "bytes": 8,
+ "+": 146,
+ "#e": 13,
+ "Replace": 19,
+ "&": 21,
+ "json_literal": 1,
+ "asstring": 4,
+ "format": 7,
+ "gmt": 1,
+ "|": 13,
+ "trait_forEach": 1,
+ "local": 116,
+ "foreach": 1,
+ "#output": 50,
+ "#delimit": 7,
+ "#1": 3,
+ "return": 75,
+ "with": 25,
+ "pr": 1,
+ "eachPair": 1,
+ "select": 1,
+ "#pr": 2,
+ "first": 12,
+ "second": 8,
+ "join": 5,
+ "json_object": 2,
+ "foreachpair": 1,
+ "any": 14,
+ "serialize": 1,
+ "json_consume_string": 3,
+ "while": 9,
+ "#temp": 19,
+ "#ibytes": 17,
+ "export8bits": 6,
+ "#obytes": 5,
+ "import8bits": 4,
+ "Escape": 1,
+ "/while": 7,
+ "unescape": 1,
+ "//Replace": 1,
+ "if": 76,
+ "BeginsWith": 1,
+ "&&": 30,
+ "EndsWith": 1,
+ "Protect": 1,
+ "serialization_reader": 1,
+ "xml": 1,
+ "read": 1,
+ "/Protect": 1,
+ "else": 32,
+ "size": 24,
+ "or": 6,
+ "regexp": 1,
+ "d": 2,
+ "Z": 1,
+ "matches": 1,
+ "Format": 1,
+ "yyyyMMdd": 2,
+ "HHmmssZ": 1,
+ "HHmmss": 1,
+ "/if": 53,
+ "json_consume_token": 2,
+ "marker": 4,
+ "Is": 1,
+ "also": 5,
+ "end": 2,
+ "of": 24,
+ "token": 1,
+ "//............................................................................": 2,
+ "string_IsNumeric": 1,
+ "json_consume_array": 3,
+ "While": 1,
+ "Discard": 1,
+ "whitespace": 3,
+ "Else": 7,
+ "insert": 18,
+ "#key": 12,
+ "json_consume_object": 2,
+ "Loop_Abort": 1,
+ "/While": 1,
+ "Find": 3,
+ "isa": 25,
+ "First": 4,
+ "find": 57,
+ "Second": 1,
+ "json_deserialize": 1,
+ "removeLeading": 1,
+ "bom_utf8": 1,
+ "Reset": 1,
+ "on": 1,
+ "provided": 1,
+ "**/": 1,
+ "type": 63,
+ "parent": 5,
+ "public": 1,
+ "onCreate": 1,
+ "...": 3,
+ "..onCreate": 1,
+ "#rest": 1,
+ "json_rpccall": 1,
+ "#id": 2,
+ "#host": 4,
+ "Lasso_UniqueID": 1,
+ "Include_URL": 1,
+ "PostParams": 1,
+ "Encode_JSON": 1,
+ "#method": 1,
+ "#params": 5,
+ "": 6,
+ "2009": 14,
+ "09": 10,
+ "04": 8,
+ "JS": 126,
+ "Added": 40,
+ "content_body": 14,
+ "compatibility": 4,
+ "pre": 4,
+ "8": 6,
+ "5": 4,
+ "05": 4,
+ "07": 6,
+ "timestamp": 4,
+ "to": 98,
+ "knop_cachestore": 4,
+ "maxage": 2,
+ "parameter": 8,
+ "knop_cachefetch": 4,
+ "Corrected": 8,
+ "construction": 2,
+ "cache_name": 2,
+ "internally": 2,
+ "the": 86,
+ "knop_cache": 2,
+ "tags": 14,
+ "so": 16,
+ "it": 20,
+ "will": 12,
+ "work": 6,
+ "correctly": 2,
+ "at": 10,
+ "site": 4,
+ "root": 2,
+ "2008": 6,
+ "11": 8,
+ "dummy": 2,
+ "knop_debug": 4,
+ "ctype": 2,
+ "be": 38,
+ "able": 14,
+ "transparently": 2,
+ "without": 4,
+ "L": 2,
+ "Debug": 2,
+ "24": 2,
+ "knop_stripbackticks": 2,
+ "01": 4,
+ "28": 2,
+ "Cache": 2,
+ "name": 32,
+ "used": 12,
+ "when": 10,
+ "using": 8,
+ "session": 4,
+ "storage": 8,
+ "2007": 6,
+ "12": 8,
+ "knop_cachedelete": 2,
+ "Created": 4,
+ "03": 2,
+ "knop_foundrows": 2,
+ "condition": 4,
+ "returning": 2,
+ "normal": 2,
+ "For": 2,
+ "lasso_tagexists": 4,
+ "define_tag": 48,
+ "namespace=": 12,
+ "__html_reply__": 4,
+ "define_type": 14,
+ "debug": 2,
+ "_unknowntag": 6,
+ "onconvert": 2,
+ "stripbackticks": 2,
+ "description=": 2,
+ "priority=": 2,
+ "required=": 2,
+ "input": 2,
+ "split": 2,
+ "@#output": 2,
+ "/define_tag": 36,
+ "description": 34,
+ "namespace": 16,
+ "priority": 8,
+ "Johan": 2,
+ "S": 2,
+ "lve": 2,
+ "#charlist": 6,
+ "current": 10,
+ "time": 8,
+ "a": 52,
+ "mixed": 2,
+ "up": 4,
+ "as": 26,
+ "seed": 6,
+ "#seed": 36,
+ "convert": 4,
+ "this": 14,
+ "base": 6,
+ "conversion": 4,
+ "get": 12,
+ "#base": 8,
+ "/": 6,
+ "over": 2,
+ "new": 14,
+ "chunk": 2,
+ "millisecond": 2,
+ "math_random": 2,
+ "lower": 2,
+ "upper": 2,
+ "__lassoservice_ip__": 2,
+ "response_localpath": 8,
+ "removetrailing": 8,
+ "response_filepath": 8,
+ "//tagswap.net/found_rows": 2,
+ "action_statement": 2,
+ "string_findregexp": 8,
+ "#sql": 42,
+ "ignorecase": 12,
+ "||": 8,
+ "maxrecords_value": 2,
+ "inaccurate": 2,
+ "must": 4,
+ "accurate": 2,
+ "Default": 2,
+ "usually": 2,
+ "fastest.": 2,
+ "Can": 2,
+ "not": 10,
+ "GROUP": 4,
+ "BY": 6,
+ "example.": 2,
+ "normalize": 4,
+ "around": 2,
+ "FROM": 2,
+ "expression": 6,
+ "string_replaceregexp": 8,
+ "replace": 8,
+ "ReplaceOnlyOne": 2,
+ "substring": 6,
+ "remove": 6,
+ "ORDER": 2,
+ "statement": 4,
+ "since": 4,
+ "causes": 4,
+ "problems": 2,
+ "field": 26,
+ "aliases": 2,
+ "we": 2,
+ "can": 14,
+ "simple": 2,
+ "later": 2,
+ "query": 4,
+ "contains": 2,
+ "use": 10,
+ "SQL_CALC_FOUND_ROWS": 2,
+ "which": 2,
+ "much": 2,
+ "slower": 2,
+ "see": 16,
+ "//bugs.mysql.com/bug.php": 2,
+ "removeleading": 2,
+ "inline": 4,
+ "sql": 2,
+ "exit": 2,
+ "here": 2,
+ "normally": 2,
+ "/inline": 2,
+ "fallback": 4,
+ "required": 10,
+ "optional": 36,
+ "local_defined": 26,
+ "knop_seed": 2,
+ "#RandChars": 4,
+ "Get": 2,
+ "Math_Random": 2,
+ "Min": 2,
+ "Max": 2,
+ "Size": 2,
+ "#value": 14,
+ "#numericValue": 4,
+ "length": 8,
+ "#cryptvalue": 10,
+ "#anyChar": 2,
+ "Encrypt_Blowfish": 2,
+ "decrypt_blowfish": 2,
+ "String_Remove": 2,
+ "StartPosition": 2,
+ "EndPosition": 2,
+ "Seed": 2,
+ "String_IsAlphaNumeric": 2,
+ "self": 72,
+ "_date_msec": 4,
+ "/define_type": 4,
+ "seconds": 4,
+ "default": 4,
+ "store": 4,
+ "all": 6,
+ "page": 14,
+ "vars": 8,
+ "specified": 8,
+ "iterate": 12,
+ "keys": 6,
+ "var": 38,
+ "#item": 10,
+ "#type": 26,
+ "#data": 14,
+ "/iterate": 12,
+ "//fail_if": 6,
+ "session_id": 6,
+ "#session": 10,
+ "session_addvar": 4,
+ "#cache_name": 72,
+ "duration": 4,
+ "#expires": 4,
+ "server_name": 6,
+ "initiate": 10,
+ "thread": 6,
+ "RW": 6,
+ "lock": 24,
+ "global": 40,
+ "Thread_RWLock": 6,
+ "create": 6,
+ "reference": 10,
+ "@": 8,
+ "writing": 6,
+ "#lock": 12,
+ "writelock": 4,
+ "check": 6,
+ "cache": 4,
+ "unlock": 6,
+ "writeunlock": 4,
+ "#maxage": 4,
+ "cached": 8,
+ "data": 12,
+ "too": 4,
+ "old": 4,
+ "reading": 2,
+ "readlock": 2,
+ "readunlock": 2,
+ "ignored": 2,
+ "//##################################################################": 4,
+ "knoptype": 2,
+ "All": 4,
+ "Knop": 6,
+ "custom": 8,
+ "types": 10,
+ "should": 4,
+ "have": 6,
+ "identify": 2,
+ "registered": 2,
+ "knop": 6,
+ "isknoptype": 2,
+ "knop_knoptype": 2,
+ "prototype": 4,
+ "version": 4,
+ "14": 4,
+ "Base": 2,
+ "framework": 2,
+ "Contains": 2,
+ "common": 4,
+ "member": 10,
+ "Used": 2,
+ "boilerplate": 2,
+ "creating": 4,
+ "other": 4,
+ "instance": 8,
+ "variables": 2,
+ "are": 4,
+ "available": 2,
+ "well": 2,
+ "CHANGE": 4,
+ "NOTES": 4,
+ "Syntax": 4,
+ "adjustments": 4,
+ "9": 2,
+ "Changed": 6,
+ "error": 22,
+ "numbers": 2,
+ "added": 10,
+ "even": 2,
+ "language": 10,
+ "already": 2,
+ "exists.": 2,
+ "improved": 4,
+ "reporting": 2,
+ "messages": 6,
+ "such": 2,
+ "from": 6,
+ "bad": 2,
+ "database": 14,
+ "queries": 2,
+ "error_lang": 2,
+ "provide": 2,
+ "knop_lang": 8,
+ "add": 12,
+ "localized": 2,
+ "except": 2,
+ "knop_base": 8,
+ "html": 4,
+ "xhtml": 28,
+ "help": 10,
+ "nicely": 2,
+ "formatted": 2,
+ "output.": 2,
+ "Centralized": 2,
+ "knop_base.": 2,
+ "Moved": 6,
+ "codes": 2,
+ "improve": 2,
+ "documentation.": 2,
+ "It": 2,
+ "always": 2,
+ "an": 8,
+ "parameter.": 2,
+ "trace": 2,
+ "tagtime": 4,
+ "was": 6,
+ "nav": 4,
+ "earlier": 2,
+ "varname": 4,
+ "retreive": 2,
+ "variable": 8,
+ "that": 18,
+ "stored": 2,
+ "in.": 2,
+ "automatically": 2,
+ "sense": 2,
+ "doctype": 6,
+ "exists": 2,
+ "buffer.": 2,
+ "The": 6,
+ "performance.": 2,
+ "internal": 2,
+ "html.": 2,
+ "Introduced": 2,
+ "_knop_data": 10,
+ "general": 2,
+ "level": 2,
+ "caching": 2,
+ "between": 2,
+ "different": 2,
+ "objects.": 2,
+ "TODO": 2,
+ "option": 2,
+ "Google": 2,
+ "Code": 2,
+ "Wiki": 2,
+ "working": 2,
+ "properly": 4,
+ "run": 2,
+ "by": 12,
+ "atbegin": 2,
+ "handler": 2,
+ "explicitly": 2,
+ "*/": 2,
+ "entire": 4,
+ "ms": 2,
+ "defined": 4,
+ "each": 8,
+ "instead": 4,
+ "avoid": 2,
+ "recursion": 2,
+ "properties": 4,
+ "#endslash": 10,
+ "#tags": 2,
+ "#t": 2,
+ "doesn": 4,
+ "p": 2,
+ "Parameters": 4,
+ "nParameters": 2,
+ "Internal.": 2,
+ "Finds": 2,
+ "out": 2,
+ "used.": 2,
+ "Looks": 2,
+ "unless": 2,
+ "array.": 2,
+ "variable.": 2,
+ "Looking": 2,
+ "#xhtmlparam": 4,
+ "plain": 2,
+ "#doctype": 4,
+ "copy": 4,
+ "standard": 2,
+ "code": 2,
+ "errors": 12,
+ "error_data": 12,
+ "form": 2,
+ "grid": 2,
+ "lang": 2,
+ "user": 4,
+ "#error_lang": 12,
+ "addlanguage": 4,
+ "strings": 6,
+ "@#errorcodes": 2,
+ "#error_lang_custom": 2,
+ "#custom_language": 10,
+ "once": 4,
+ "one": 2,
+ "#custom_string": 4,
+ "#errorcodes": 4,
+ "#error_code": 10,
+ "message": 6,
+ "getstring": 2,
+ "test": 2,
+ "known": 2,
+ "lasso": 2,
+ "knop_timer": 2,
+ "knop_unique": 2,
+ "look": 2,
+ "#varname": 6,
+ "loop_abort": 2,
+ "tag_name": 2,
+ "#timer": 2,
+ "#trace": 4,
+ "merge": 2,
+ "#eol": 8,
+ "2010": 4,
+ "23": 4,
+ "Custom": 2,
+ "interact": 2,
+ "databases": 2,
+ "Supports": 4,
+ "both": 2,
+ "MySQL": 2,
+ "FileMaker": 2,
+ "datasources": 2,
+ "2012": 4,
+ "06": 2,
+ "10": 2,
+ "SP": 4,
+ "Fix": 2,
+ "precision": 2,
+ "bug": 2,
+ "6": 2,
+ "0": 2,
+ "1": 2,
+ "renderfooter": 2,
+ "15": 2,
+ "Add": 2,
+ "support": 6,
+ "Thanks": 2,
+ "Ric": 2,
+ "Lewis": 2,
+ "settable": 4,
+ "removed": 2,
+ "table": 6,
+ "nextrecord": 12,
+ "deprecation": 2,
+ "warning": 2,
+ "corrected": 2,
+ "verification": 2,
+ "index": 4,
+ "before": 4,
+ "calling": 2,
+ "resultset_count": 6,
+ "break": 2,
+ "versions": 2,
+ "fixed": 4,
+ "incorrect": 2,
+ "debug_trace": 2,
+ "addrecord": 4,
+ "how": 2,
+ "keyvalue": 10,
+ "returned": 6,
+ "adding": 2,
+ "records": 4,
+ "inserting": 2,
+ "generated": 2,
+ "suppressed": 2,
+ "specifying": 2,
+ "saverecord": 8,
+ "deleterecord": 4,
+ "case.": 2,
+ "recorddata": 6,
+ "no": 2,
+ "longer": 2,
+ "touch": 2,
+ "current_record": 2,
+ "zero": 2,
+ "access": 2,
+ "occurrence": 2,
+ "same": 4,
+ "returns": 4,
+ "knop_databaserows": 2,
+ "inlinename.": 4,
+ "next.": 2,
+ "remains": 2,
+ "supported": 2,
+ "backwards": 2,
+ "compatibility.": 2,
+ "resets": 2,
+ "record": 20,
+ "pointer": 8,
+ "reaching": 2,
+ "last": 4,
+ "honors": 2,
+ "incremented": 2,
+ "recordindex": 4,
+ "specific": 2,
+ "found.": 2,
+ "getrecord": 8,
+ "REALLY": 2,
+ "works": 4,
+ "keyvalues": 4,
+ "double": 2,
+ "oops": 4,
+ "I": 4,
+ "thought": 2,
+ "but": 2,
+ "misplaced": 2,
+ "paren...": 2,
+ "corresponding": 2,
+ "resultset": 2,
+ "/resultset": 2,
+ "through": 2,
+ "handling": 2,
+ "better": 2,
+ "knop_user": 4,
+ "keeplock": 4,
+ "updates": 2,
+ "datatype": 2,
+ "knop_databaserow": 2,
+ "iterated.": 2,
+ "When": 2,
+ "iterating": 2,
+ "row": 2,
+ "values.": 2,
+ "Addedd": 2,
+ "increments": 2,
+ "recordpointer": 2,
+ "called": 2,
+ "until": 2,
+ "reached.": 2,
+ "Returns": 2,
+ "long": 2,
+ "there": 2,
+ "more": 2,
+ "records.": 2,
+ "Useful": 2,
+ "loop": 2,
+ "example": 2,
+ "below": 2,
+ "Implemented": 2,
+ "reset": 2,
+ "query.": 2,
+ "shortcut": 2,
+ "Removed": 2,
+ "onassign": 2,
+ "touble": 2,
+ "Extended": 2,
+ "field_names": 2,
+ "names": 4,
+ "db": 2,
+ "objects": 2,
+ "never": 2,
+ "been": 2,
+ "optionally": 2,
+ "supports": 2,
+ "sql.": 2,
+ "Make": 2,
+ "sure": 2,
+ "SQL": 2,
+ "includes": 2,
+ "relevant": 2,
+ "lockfield": 2,
+ "locking": 4,
+ "capturesearchvars": 2,
+ "mysteriously": 2,
+ "after": 2,
+ "operations": 2,
+ "caused": 2,
+ "errors.": 2,
+ "flag": 2,
+ "save": 2,
+ "locked": 2,
+ "releasing": 2,
+ "Adding": 2,
+ "progress.": 2,
+ "Done": 2,
+ "oncreate": 2,
+ "getrecord.": 2,
+ "documentation": 2,
+ "most": 2,
+ "existing": 2,
+ "it.": 2,
+ "Faster": 2,
+ "than": 2,
+ "scratch.": 2,
+ "shown_first": 2,
+ "again": 2,
+ "hoping": 2,
+ "s": 2,
+ "only": 2,
+ "captured": 2,
+ "update": 2,
+ "uselimit": 2,
+ "querys": 2,
+ "LIMIT": 2,
+ "still": 2,
+ "gets": 2,
+ "proper": 2,
+ "searchresult": 2,
+ "separate": 2,
+ "COUNT": 2
+ },
+ "MoonScript": {
+ "types": 2,
+ "require": 5,
+ "util": 2,
+ "data": 1,
+ "import": 5,
+ "reversed": 2,
+ "unpack": 22,
+ "from": 4,
+ "ntype": 16,
+ "mtype": 3,
+ "build": 7,
+ "smart_node": 7,
+ "is_slice": 2,
+ "value_is_singular": 3,
+ "insert": 18,
+ "table": 2,
+ "NameProxy": 14,
+ "LocalName": 2,
+ "destructure": 1,
+ "local": 1,
+ "implicitly_return": 2,
+ "class": 4,
+ "Run": 8,
+ "new": 2,
+ "(": 54,
+ "@fn": 1,
+ ")": 54,
+ "self": 2,
+ "[": 79,
+ "]": 79,
+ "call": 3,
+ "state": 2,
+ "self.fn": 1,
+ "-": 51,
+ "transform": 2,
+ "the": 4,
+ "last": 6,
+ "stm": 16,
+ "is": 2,
+ "a": 4,
+ "list": 6,
+ "of": 1,
+ "stms": 4,
+ "will": 1,
+ "puke": 1,
+ "on": 1,
+ "group": 1,
+ "apply_to_last": 6,
+ "fn": 3,
+ "find": 2,
+ "real": 1,
+ "exp": 17,
+ "last_exp_id": 3,
+ "for": 20,
+ "i": 15,
+ "#stms": 1,
+ "if": 43,
+ "and": 8,
+ "break": 1,
+ "return": 11,
+ "in": 18,
+ "ipairs": 3,
+ "else": 22,
+ "body": 26,
+ "sindle": 1,
+ "expression/statement": 1,
+ "is_singular": 2,
+ "false": 2,
+ "#body": 1,
+ "true": 4,
+ "find_assigns": 2,
+ "out": 9,
+ "{": 135,
+ "}": 136,
+ "thing": 4,
+ "*body": 2,
+ "switch": 7,
+ "when": 12,
+ "table.insert": 3,
+ "extract": 1,
+ "names": 16,
+ "hoist_declarations": 1,
+ "assigns": 5,
+ "hoist": 1,
+ "plain": 1,
+ "old": 1,
+ "*find_assigns": 1,
+ "name": 31,
+ "*names": 3,
+ "type": 5,
+ "after": 1,
+ "runs": 1,
+ "idx": 4,
+ "while": 3,
+ "do": 2,
+ "+": 2,
+ "expand_elseif_assign": 2,
+ "ifstm": 5,
+ "#ifstm": 1,
+ "case": 13,
+ "split": 4,
+ "constructor_name": 2,
+ "with_continue_listener": 4,
+ "continue_name": 13,
+ "nil": 8,
+ "@listen": 1,
+ "unless": 6,
+ "@put_name": 2,
+ "build.group": 14,
+ "@splice": 1,
+ "lines": 2,
+ "Transformer": 2,
+ "@transformers": 3,
+ "@seen_nodes": 3,
+ "setmetatable": 1,
+ "__mode": 1,
+ "scope": 4,
+ "node": 68,
+ "...": 10,
+ "transformer": 3,
+ "res": 3,
+ "or": 6,
+ "bind": 1,
+ "@transform": 2,
+ "__call": 1,
+ "can_transform": 1,
+ "construct_comprehension": 2,
+ "inner": 2,
+ "clauses": 4,
+ "current_stms": 7,
+ "_": 10,
+ "clause": 4,
+ "t": 10,
+ "iter": 2,
+ "elseif": 1,
+ "cond": 11,
+ "error": 4,
+ "..t": 1,
+ "Statement": 2,
+ "root_stms": 1,
+ "@": 1,
+ "assign": 9,
+ "values": 10,
+ "bubble": 1,
+ "cascading": 2,
+ "transformed": 2,
+ "#values": 1,
+ "value": 7,
+ "@transform.statement": 2,
+ "types.cascading": 1,
+ "ret": 16,
+ "types.is_value": 1,
+ "destructure.has_destructure": 2,
+ "destructure.split_assign": 1,
+ "continue": 1,
+ "@send": 1,
+ "build.assign_one": 11,
+ "export": 1,
+ "they": 1,
+ "are": 1,
+ "included": 1,
+ "#node": 3,
+ "cls": 5,
+ "cls.name": 1,
+ "build.assign": 3,
+ "update": 1,
+ "op": 2,
+ "op_final": 3,
+ "match": 1,
+ "..op": 1,
+ "not": 2,
+ "source": 7,
+ "stubs": 1,
+ "real_names": 4,
+ "build.chain": 7,
+ "base": 8,
+ "stub": 4,
+ "*stubs": 2,
+ "source_name": 3,
+ "comprehension": 1,
+ "action": 4,
+ "decorated": 1,
+ "dec": 6,
+ "wrapped": 4,
+ "fail": 5,
+ "..": 1,
+ "build.declare": 1,
+ "*stm": 1,
+ "expand": 1,
+ "destructure.build_assign": 2,
+ "build.do": 2,
+ "apply": 1,
+ "decorator": 1,
+ "mutate": 1,
+ "all": 1,
+ "bodies": 1,
+ "body_idx": 3,
+ "with": 3,
+ "block": 2,
+ "scope_name": 5,
+ "named_assign": 2,
+ "assign_name": 1,
+ "@set": 1,
+ "foreach": 1,
+ "node.iter": 1,
+ "destructures": 5,
+ "node.names": 3,
+ "proxy": 2,
+ "next": 1,
+ "node.body": 9,
+ "index_name": 3,
+ "list_name": 6,
+ "slice_var": 3,
+ "bounds": 3,
+ "slice": 7,
+ "#list": 1,
+ "table.remove": 2,
+ "max_tmp_name": 5,
+ "index": 2,
+ "conds": 3,
+ "exp_name": 3,
+ "convert": 1,
+ "into": 1,
+ "statment": 1,
+ "convert_cond": 2,
+ "case_exps": 3,
+ "cond_exp": 5,
+ "first": 3,
+ "if_stm": 5,
+ "*conds": 1,
+ "if_cond": 4,
+ "parent_assign": 3,
+ "parent_val": 1,
+ "apart": 1,
+ "properties": 4,
+ "statements": 4,
+ "item": 3,
+ "tuple": 8,
+ "*item": 1,
+ "constructor": 7,
+ "*properties": 1,
+ "key": 3,
+ "parent_cls_name": 5,
+ "base_name": 4,
+ "self_name": 4,
+ "cls_name": 1,
+ "build.fndef": 3,
+ "args": 3,
+ "arrow": 1,
+ "then": 2,
+ "constructor.arrow": 1,
+ "real_name": 6,
+ "#real_name": 1,
+ "build.table": 2,
+ "look": 1,
+ "up": 1,
+ "object": 1,
+ "class_lookup": 3,
+ "cls_mt": 2,
+ "out_body": 1,
+ "make": 1,
+ "sure": 1,
+ "we": 1,
+ "don": 1,
+ "string": 1,
+ "parens": 2,
+ "colon_stub": 1,
+ "super": 1,
+ "dot": 1,
+ "varargs": 2,
+ "arg_list": 1,
+ "Value": 1
+ },
"Rebol": {
"REBOL": 1,
"[": 3,
@@ -39500,48 +40391,14 @@
"esac": 7,
"done": 8,
"exit": 10,
- "/usr/bin/clear": 2,
"##": 28,
- "if": 39,
- "z": 12,
- "then": 41,
- "export": 25,
- "SCREENDIR": 2,
- "fi": 34,
- "PATH": 14,
- "/usr/local/bin": 6,
- "/usr/local/sbin": 6,
- "/usr/xpg4/bin": 4,
- "/usr/sbin": 6,
- "/usr/bin": 8,
- "/usr/sfw/bin": 4,
- "/usr/ccs/bin": 4,
- "/usr/openwin/bin": 4,
- "/opt/mysql/current/bin": 4,
- "MANPATH": 2,
- "/usr/local/man": 2,
- "/usr/share/man": 2,
- "Random": 2,
- "ENV...": 2,
- "TERM": 4,
- "COLORTERM": 2,
- "CLICOLOR": 2,
- "#": 53,
- "can": 3,
- "be": 3,
- "set": 21,
- "to": 33,
- "anything": 2,
- "actually": 2,
- "DISPLAY": 2,
- "r": 17,
- "&&": 65,
- ".": 5,
"function": 6,
"ls": 6,
"command": 5,
"Fh": 2,
"l": 8,
+ "#": 53,
+ "to": 33,
"list": 3,
"long": 2,
"format...": 2,
@@ -39664,10 +40521,12 @@
"v": 11,
"readonly": 4,
"unset": 10,
+ "export": 25,
"and": 5,
"shell": 4,
"variables": 2,
"setopt": 8,
+ "set": 21,
"options": 8,
"helptopic": 2,
"help": 5,
@@ -39734,6 +40593,38 @@
"ping": 2,
"histappend": 2,
"PROMPT_COMMAND": 2,
+ "PATH": 14,
+ "/usr/local/bin": 6,
+ "/usr/local/sbin": 6,
+ "/usr/xpg4/bin": 4,
+ "/usr/sbin": 6,
+ "/usr/bin": 8,
+ "/usr/sfw/bin": 4,
+ "/usr/ccs/bin": 4,
+ "/usr/openwin/bin": 4,
+ "/opt/mysql/current/bin": 4,
+ "/usr/bin/clear": 2,
+ "if": 39,
+ "z": 12,
+ "then": 41,
+ "SCREENDIR": 2,
+ "fi": 34,
+ "MANPATH": 2,
+ "/usr/local/man": 2,
+ "/usr/share/man": 2,
+ "Random": 2,
+ "ENV...": 2,
+ "TERM": 4,
+ "COLORTERM": 2,
+ "CLICOLOR": 2,
+ "can": 3,
+ "be": 3,
+ "anything": 2,
+ "actually": 2,
+ "DISPLAY": 2,
+ "r": 17,
+ "&&": 65,
+ ".": 5,
"umask": 2,
"path": 13,
"/opt/local/bin": 2,
@@ -43622,19 +44513,20 @@
"Apex": 4408,
"AppleScript": 1862,
"Arduino": 20,
+ "AsciiDoc": 103,
"AutoHotkey": 3,
"Awk": 544,
"BlitzBasic": 2065,
"Bluespec": 1298,
"Brightscript": 579,
"C": 58858,
- "C++": 21308,
"Ceylon": 50,
"Clojure": 510,
"COBOL": 90,
"CoffeeScript": 2951,
"Common Lisp": 103,
"Coq": 18259,
+ "Creole": 134,
"CSS": 43867,
"Cuda": 290,
"Dart": 68,
@@ -43646,7 +44538,6 @@
"Emacs Lisp": 1756,
"Erlang": 2928,
"fish": 636,
- "Forth": 1516,
"GAS": 133,
"GLSL": 3766,
"Gosu": 413,
@@ -43660,11 +44551,10 @@
"Jade": 3,
"Java": 8987,
"JavaScript": 76934,
- "JSON": 41,
+ "JSON": 183,
"Julia": 247,
"Kotlin": 155,
"KRL": 25,
- "Lasso": 9849,
"Less": 39,
"LFE": 1711,
"Literate Agda": 478,
@@ -43678,8 +44568,8 @@
"Markdown": 1,
"Matlab": 11942,
"Max": 714,
+ "MediaWiki": 766,
"Monkey": 207,
- "MoonScript": 1718,
"Nemerle": 17,
"NetLogo": 243,
"Nginx": 179,
@@ -43692,6 +44582,7 @@
"Opa": 28,
"OpenCL": 144,
"OpenEdge ABL": 762,
+ "Org": 358,
"Oxygene": 555,
"Parrot Assembly": 6,
"Parrot Internal Representation": 5,
@@ -43704,9 +44595,15 @@
"Prolog": 4040,
"Protocol Buffer": 63,
"Python": 5715,
+ "QMake": 119,
"R": 175,
"Racket": 331,
"Ragel in Ruby Host": 593,
+ "RDoc": 279,
+ "C++": 21308,
+ "Forth": 1516,
+ "Lasso": 9849,
+ "MoonScript": 1718,
"Rebol": 11,
"RobotFramework": 483,
"Ruby": 3862,
@@ -43749,19 +44646,20 @@
"Apex": 6,
"AppleScript": 7,
"Arduino": 1,
+ "AsciiDoc": 3,
"AutoHotkey": 1,
"Awk": 1,
"BlitzBasic": 3,
"Bluespec": 2,
"Brightscript": 1,
"C": 26,
- "C++": 19,
"Ceylon": 1,
"Clojure": 7,
"COBOL": 4,
"CoffeeScript": 9,
"Common Lisp": 1,
"Coq": 12,
+ "Creole": 1,
"CSS": 2,
"Cuda": 2,
"Dart": 1,
@@ -43773,7 +44671,6 @@
"Emacs Lisp": 2,
"Erlang": 5,
"fish": 3,
- "Forth": 7,
"GAS": 1,
"GLSL": 3,
"Gosu": 5,
@@ -43787,11 +44684,10 @@
"Jade": 1,
"Java": 6,
"JavaScript": 20,
- "JSON": 3,
+ "JSON": 4,
"Julia": 1,
"Kotlin": 1,
"KRL": 1,
- "Lasso": 4,
"Less": 1,
"LFE": 4,
"Literate Agda": 1,
@@ -43805,8 +44701,8 @@
"Markdown": 1,
"Matlab": 39,
"Max": 3,
+ "MediaWiki": 1,
"Monkey": 1,
- "MoonScript": 1,
"Nemerle": 1,
"NetLogo": 1,
"Nginx": 1,
@@ -43819,6 +44715,7 @@
"Opa": 2,
"OpenCL": 2,
"OpenEdge ABL": 5,
+ "Org": 1,
"Oxygene": 2,
"Parrot Assembly": 1,
"Parrot Internal Representation": 1,
@@ -43831,9 +44728,15 @@
"Prolog": 6,
"Protocol Buffer": 1,
"Python": 7,
+ "QMake": 4,
"R": 2,
"Racket": 2,
"Ragel in Ruby Host": 3,
+ "RDoc": 1,
+ "C++": 19,
+ "Forth": 7,
+ "Lasso": 4,
+ "MoonScript": 1,
"Rebol": 1,
"RobotFramework": 3,
"Ruby": 17,
@@ -43869,5 +44772,5 @@
"Xtend": 2,
"YAML": 1
},
- "md5": "000e8e3491187dfff9cd69405f10d8ab"
+ "md5": "3b94c2e2a38e812cdf16b2e91e51695b"
}
\ No newline at end of file
diff --git a/samples/QMake/complex.pro b/samples/QMake/complex.pro
new file mode 100644
index 00000000..6f6a5317
--- /dev/null
+++ b/samples/QMake/complex.pro
@@ -0,0 +1,30 @@
+# This QMake file is complex, as it usese
+# boolean operators and function calls
+
+QT += core gui
+greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
+
+# We could use some OpenGL right now
+contains(QT_CONFIG, opengl) | contains(QT_CONFIG, opengles2) {
+ QT += opengl
+} else {
+ DEFINES += QT_NO_OPENGL
+}
+
+TEMPLATE = app
+win32 {
+ TARGET = BlahApp
+ RC_FILE = Resources/winres.rc
+}
+!win32 { TARGET = blahapp }
+
+# Let's add a PRI file!
+include(functions.pri)
+
+SOURCES += file.cpp
+
+HEADERS += file.h
+
+FORMS += file.ui
+
+RESOURCES += res.qrc
diff --git a/samples/QMake/functions.pri b/samples/QMake/functions.pri
new file mode 100644
index 00000000..ef1541a5
--- /dev/null
+++ b/samples/QMake/functions.pri
@@ -0,0 +1,8 @@
+# QMake include file that calls some functions
+# and does nothing else...
+
+exists(.git/HEAD) {
+ system(git rev-parse HEAD >rev.txt)
+} else {
+ system(echo ThisIsNotAGitRepo >rev.txt)
+}
diff --git a/samples/QMake/qmake.script! b/samples/QMake/qmake.script!
new file mode 100644
index 00000000..297139da
--- /dev/null
+++ b/samples/QMake/qmake.script!
@@ -0,0 +1,2 @@
+#!/usr/bin/qmake
+message(This is QMake.)
diff --git a/samples/QMake/simple.pro b/samples/QMake/simple.pro
new file mode 100644
index 00000000..3bdf5ab8
--- /dev/null
+++ b/samples/QMake/simple.pro
@@ -0,0 +1,17 @@
+# Simple QMake file
+
+CONFIG += qt
+QT += core gui
+TEMPLATE = app
+TARGET = simpleapp
+
+SOURCES += file.cpp \
+ file2.c \
+ This/Is/Folder/file3.cpp
+
+HEADERS += file.h \
+ file2.h \
+ This/Is/Folder/file3.h
+
+FORMS += This/Is/Folder/file3.ui \
+ Test.ui
From df342798b00d4905983b3b8a5fad98e2ff96d6f7 Mon Sep 17 00:00:00 2001
From: Andrew Plotkin
Date: Sun, 19 Jan 2014 01:19:24 -0500
Subject: [PATCH 009/229] YAML file recognition for Inform 7, an interactive
fiction design language.
The team account https://github.com/i7 has several active Inform 7 projects.
---
lib/linguist/languages.yml | 6 ++++++
samples/Inform 7/Trivial Extension.i7x | 6 ++++++
samples/Inform 7/story.ni | 12 ++++++++++++
3 files changed, 24 insertions(+)
create mode 100644 samples/Inform 7/Trivial Extension.i7x
create mode 100644 samples/Inform 7/story.ni
diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml
index 340c7682..4a4df48f 100644
--- a/lib/linguist/languages.yml
+++ b/lib/linguist/languages.yml
@@ -767,6 +767,12 @@ Idris:
extensions:
- .lidr
+Inform 7:
+ type: programming
+ primary_extension: .ni
+ extensions:
+ - .i7x
+
Inno Setup:
primary_extension: .iss
lexer: Text only
diff --git a/samples/Inform 7/Trivial Extension.i7x b/samples/Inform 7/Trivial Extension.i7x
new file mode 100644
index 00000000..1aae1b85
--- /dev/null
+++ b/samples/Inform 7/Trivial Extension.i7x
@@ -0,0 +1,6 @@
+Version 1 of Trivial Extension by Andrew Plotkin begins here.
+
+A cow is a kind of animal. A cow can be purple.
+
+Trivial Extension ends here.
+
diff --git a/samples/Inform 7/story.ni b/samples/Inform 7/story.ni
new file mode 100644
index 00000000..f8873369
--- /dev/null
+++ b/samples/Inform 7/story.ni
@@ -0,0 +1,12 @@
+"Test Case" by Andrew Plotkin.
+
+Include Trivial Extension by Andrew Plotkin.
+
+The Kitchen is a room.
+
+[This kitchen is modelled after the one in Zork, although it lacks the detail to establish this to the player.]
+
+A purple cow called Gelett is in the Kitchen.
+
+Instead of examining Gelett:
+ say "You'd rather see than be one."
From 028f2ab92cd8abb0bf9a0dc7772c5938af8061be Mon Sep 17 00:00:00 2001
From: Andrew Plotkin
Date: Mon, 20 Jan 2014 00:00:16 -0500
Subject: [PATCH 010/229] Inform has long lines, so we line wrap.
---
lib/linguist/languages.yml | 1 +
1 file changed, 1 insertion(+)
diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml
index 4a4df48f..1941ede8 100644
--- a/lib/linguist/languages.yml
+++ b/lib/linguist/languages.yml
@@ -769,6 +769,7 @@ Idris:
Inform 7:
type: programming
+ wrap: true
primary_extension: .ni
extensions:
- .i7x
From 0eea2bd7bb5de7eaa7e9989871a3d48a93c5dae6 Mon Sep 17 00:00:00 2001
From: Baptiste Fontaine
Date: Mon, 3 Feb 2014 15:27:40 +0100
Subject: [PATCH 011/229] E language with samples
---
lib/linguist/languages.yml | 5 +
lib/linguist/samples.json | 207 ++++++++++++++++++++++++++++++++++++-
samples/E/Extends.E | 31 ++++++
samples/E/Functions.E | 21 ++++
samples/E/Guards.E | 69 +++++++++++++
samples/E/IO.E | 14 +++
samples/E/Promises.E | 9 ++
samples/E/minChat.E | 18 ++++
8 files changed, 371 insertions(+), 3 deletions(-)
create mode 100644 samples/E/Extends.E
create mode 100644 samples/E/Functions.E
create mode 100644 samples/E/Guards.E
create mode 100644 samples/E/IO.E
create mode 100644 samples/E/Promises.E
create mode 100644 samples/E/minChat.E
diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml
index 302ffe14..e10c3d09 100644
--- a/lib/linguist/languages.yml
+++ b/lib/linguist/languages.yml
@@ -476,6 +476,11 @@ Dylan:
color: "#3ebc27"
primary_extension: .dylan
+E:
+ type: programming
+ color: "#ccce35"
+ primary_extension: .E
+
Ecere Projects:
type: data
group: JavaScript
diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json
index ed92145a..310a4458 100644
--- a/lib/linguist/samples.json
+++ b/lib/linguist/samples.json
@@ -52,6 +52,9 @@
"Ceylon": [
".ceylon"
],
+ "Cirru": [
+ ".cirru"
+ ],
"Clojure": [
".cl2",
".clj",
@@ -95,6 +98,9 @@
"DM": [
".dm"
],
+ "E": [
+ ".E"
+ ],
"ECL": [
".ecl"
],
@@ -535,8 +541,8 @@
".gemrc"
]
},
- "tokens_total": 445429,
- "languages_total": 523,
+ "tokens_total": 446274,
+ "languages_total": 538,
"tokens": {
"ABAP": {
"*/**": 1,
@@ -12715,6 +12721,43 @@
"<=>": 1,
"other.name": 1
},
+ "Cirru": {
+ "print": 38,
+ "array": 14,
+ "int": 36,
+ "string": 7,
+ "set": 12,
+ "f": 3,
+ "block": 1,
+ "(": 20,
+ "a": 22,
+ "b": 7,
+ "c": 9,
+ ")": 20,
+ "call": 1,
+ "bool": 6,
+ "true": 1,
+ "false": 1,
+ "yes": 1,
+ "no": 1,
+ "map": 8,
+ "m": 3,
+ "float": 1,
+ "require": 1,
+ "./stdio.cr": 1,
+ "self": 2,
+ "child": 1,
+ "under": 2,
+ "parent": 1,
+ "get": 4,
+ "x": 2,
+ "just": 4,
+ "-": 4,
+ "code": 4,
+ "eval": 2,
+ "nothing": 1,
+ "container": 3
+ },
"Clojure": {
"(": 83,
"defn": 4,
@@ -16024,6 +16067,160 @@
"#undef": 1,
"Undefine": 1
},
+ "E": {
+ "def": 24,
+ "makeVehicle": 3,
+ "(": 65,
+ "self": 1,
+ ")": 64,
+ "{": 57,
+ "vehicle": 2,
+ "to": 27,
+ "milesTillEmpty": 1,
+ "return": 19,
+ "self.milesPerGallon": 1,
+ "*": 1,
+ "self.getFuelRemaining": 1,
+ "}": 57,
+ "makeCar": 4,
+ "var": 6,
+ "fuelRemaining": 4,
+ "car": 8,
+ "extends": 2,
+ "milesPerGallon": 2,
+ "getFuelRemaining": 2,
+ "makeJet": 1,
+ "jet": 3,
+ "println": 2,
+ "The": 2,
+ "can": 1,
+ "go": 1,
+ "car.milesTillEmpty": 1,
+ "miles.": 1,
+ "name": 4,
+ "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,
+ "makeVOCPair": 1,
+ "brandName": 3,
+ "String": 1,
+ "near": 6,
+ "myTempContents": 6,
+ "none": 2,
+ "brand": 5,
+ "__printOn": 4,
+ "out": 4,
+ "TextWriter": 4,
+ "void": 5,
+ "out.print": 4,
+ "ProveAuth": 2,
+ "<$brandName>": 3,
+ "prover": 1,
+ "getBrand": 4,
+ "coerce": 2,
+ "specimen": 2,
+ "optEjector": 3,
+ "sealedBox": 2,
+ "offerContent": 1,
+ "CheckAuth": 2,
+ "checker": 3,
+ "template": 1,
+ "match": 4,
+ "[": 10,
+ "get": 2,
+ "authList": 2,
+ "any": 2,
+ "]": 10,
+ "specimenBox": 2,
+ "null": 1,
+ "if": 2,
+ "specimenBox.__respondsTo": 1,
+ "specimenBox.offerContent": 1,
+ "else": 1,
+ "for": 3,
+ "auth": 3,
+ "in": 1,
+ "throw.eject": 1,
+ "Unmatched": 1,
+ "authorization": 1,
+ "__respondsTo": 2,
+ "_": 3,
+ "true": 1,
+ "false": 1,
+ "__getAllegedType": 1,
+ "null.__getAllegedType": 1,
+ "#File": 1,
+ "objects": 1,
+ "hardwired": 1,
+ "files": 1,
+ "file1": 1,
+ "": 1,
+ "file2": 1,
+ "": 1,
+ "#Using": 2,
+ "a": 4,
+ "variable": 1,
+ "file": 3,
+ "filePath": 2,
+ "file3": 1,
+ "": 1,
+ "single": 1,
+ "character": 1,
+ "specify": 1,
+ "Windows": 1,
+ "drive": 1,
+ "file4": 1,
+ "": 1,
+ "file5": 1,
+ "": 1,
+ "file6": 1,
+ "": 1,
+ "pragma.syntax": 1,
+ "send": 1,
+ "message": 4,
+ "when": 2,
+ "friend": 4,
+ "<-receive(message))>": 1,
+ "chatUI.showMessage": 4,
+ "catch": 2,
+ "prob": 2,
+ "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,
+ "-": 2,
+ "tempVow": 2,
+ "#...use": 1,
+ "#....": 1,
+ "report": 1,
+ "problem": 1,
+ "finally": 1,
+ "#....log": 1,
+ "event": 1
+ },
"ECL": {
"#option": 1,
"(": 32,
@@ -47799,6 +47996,7 @@
"C#": 278,
"C++": 31181,
"Ceylon": 50,
+ "Cirru": 244,
"Clojure": 510,
"COBOL": 90,
"CoffeeScript": 2951,
@@ -47810,6 +48008,7 @@
"Dart": 74,
"Diff": 16,
"DM": 169,
+ "E": 601,
"ECL": 281,
"edn": 227,
"Elm": 628,
@@ -47941,6 +48140,7 @@
"C#": 2,
"C++": 27,
"Ceylon": 1,
+ "Cirru": 9,
"Clojure": 7,
"COBOL": 4,
"CoffeeScript": 9,
@@ -47952,6 +48152,7 @@
"Dart": 1,
"Diff": 1,
"DM": 1,
+ "E": 6,
"ECL": 1,
"edn": 1,
"Elm": 3,
@@ -48066,5 +48267,5 @@
"Xtend": 2,
"YAML": 1
},
- "md5": "a46f14929a6e9e4356fda95beb035439"
+ "md5": "09d83474428d52300e1b368b738c226c"
}
\ No newline at end of file
diff --git a/samples/E/Extends.E b/samples/E/Extends.E
new file mode 100644
index 00000000..002a9105
--- /dev/null
+++ b/samples/E/Extends.E
@@ -0,0 +1,31 @@
+# from
+# http://wiki.erights.org/wiki/Walnut/Ordinary_Programming/Objects_and_Functions
+def makeVehicle(self) {
+ def vehicle {
+ to milesTillEmpty() {
+ return self.milesPerGallon() * self.getFuelRemaining()
+ }
+ }
+ return vehicle
+}
+
+def makeCar() {
+ var fuelRemaining := 20
+ def car extends makeVehicle(car) {
+ to milesPerGallon() {return 19}
+ to getFuelRemaining() {return fuelRemaining}
+ }
+ return car
+}
+
+def makeJet() {
+ var fuelRemaining := 2000
+ def jet extends makeVehicle(jet) {
+ to milesPerGallon() {return 2}
+ to getFuelRemaining() {return fuelRemaining}
+ }
+ return jet
+}
+
+def car := makeCar()
+println(`The car can go ${car.milesTillEmpty()} miles.`)
diff --git a/samples/E/Functions.E b/samples/E/Functions.E
new file mode 100644
index 00000000..086e4f7a
--- /dev/null
+++ b/samples/E/Functions.E
@@ -0,0 +1,21 @@
+# from
+# http://wiki.erights.org/wiki/Walnut/Ordinary_Programming/Objects_and_Functions
+def makeCar(var name) {
+ var x := 0
+ var y := 0
+ def car {
+ to moveTo(newX,newY) {
+ x := newX
+ y := newY
+ }
+ to getX() {return x}
+ to getY() {return y}
+ to setName(newName) {name := newName}
+ to getName() {return name}
+ }
+ return car
+}
+# Now use the makeCar function to make a car, which we will move and print
+def sportsCar := makeCar("Ferrari")
+sportsCar.moveTo(10,20)
+println(`The car ${sportsCar.getName()} is at X location ${sportsCar.getX()}`)
diff --git a/samples/E/Guards.E b/samples/E/Guards.E
new file mode 100644
index 00000000..e3e841ae
--- /dev/null
+++ b/samples/E/Guards.E
@@ -0,0 +1,69 @@
+# from
+# http://wiki.erights.org/wiki/Walnut/Advanced_Topics/Build_your_Own_Guards
+def makeVOCPair(brandName :String) :near {
+
+ var myTempContents := def none {}
+
+ def brand {
+ to __printOn(out :TextWriter) :void {
+ out.print(brandName)
+ }
+ }
+
+ def ProveAuth {
+ to __printOn(out :TextWriter) :void {
+ out.print(`<$brandName prover>`)
+ }
+ to getBrand() :near { return brand }
+ to coerce(specimen, optEjector) :near {
+ def sealedBox {
+ to getBrand() :near { return brand }
+ to offerContent() :void {
+ myTempContents := specimen
+ }
+ }
+ return sealedBox
+ }
+ }
+ def CheckAuth {
+ to __printOn(out :TextWriter) :void {
+ out.print(`<$brandName checker template>`)
+ }
+ to getBrand() :near { return brand }
+ match [`get`, authList :any[]] {
+ def checker {
+ to __printOn(out :TextWriter) :void {
+ out.print(`<$brandName checker>`)
+ }
+ to getBrand() :near { return brand }
+ to coerce(specimenBox, optEjector) :any {
+ myTempContents := null
+ if (specimenBox.__respondsTo("offerContent", 0)) {
+ # XXX Using __respondsTo/2 here is a kludge
+ specimenBox.offerContent()
+ } else {
+ myTempContents := specimenBox
+ }
+ for auth in authList {
+ if (auth == myTempContents) {
+ return auth
+ }
+ }
+ myTempContents := none
+ throw.eject(optEjector,
+ `Unmatched $brandName authorization`)
+ }
+ }
+ }
+ match [`__respondsTo`, [`get`, _]] {
+ true
+ }
+ match [`__respondsTo`, [_, _]] {
+ false
+ }
+ match [`__getAllegedType`, []] {
+ null.__getAllegedType()
+ }
+ }
+ return [ProveAuth, CheckAuth]
+}
diff --git a/samples/E/IO.E b/samples/E/IO.E
new file mode 100644
index 00000000..e96e41ad
--- /dev/null
+++ b/samples/E/IO.E
@@ -0,0 +1,14 @@
+# E sample from
+# http://wiki.erights.org/wiki/Walnut/Ordinary_Programming/InputOutput
+#File objects for hardwired files:
+def file1 :=
+def file2 :=
+
+#Using a variable for a file name:
+def filePath := "c:\\docs\\myFile.txt"
+def file3 := [filePath]
+
+#Using a single character to specify a Windows drive
+def file4 :=
+def file5 :=
+def file6 :=
diff --git a/samples/E/Promises.E b/samples/E/Promises.E
new file mode 100644
index 00000000..ae03c6ec
--- /dev/null
+++ b/samples/E/Promises.E
@@ -0,0 +1,9 @@
+# E snippet from
+# http://wiki.erights.org/wiki/Walnut/Distributed_Computing/Promises
+when (tempVow) -> {
+ #...use tempVow
+} catch prob {
+ #.... report problem
+} finally {
+ #....log event
+}
diff --git a/samples/E/minChat.E b/samples/E/minChat.E
new file mode 100644
index 00000000..b422a71e
--- /dev/null
+++ b/samples/E/minChat.E
@@ -0,0 +1,18 @@
+# from
+# http://wiki.erights.org/wiki/Walnut/Secure_Distributed_Computing/Auditing_minChat
+pragma.syntax("0.9")
+to send(message) {
+ when (friend<-receive(message)) -> {
+ chatUI.showMessage("self", message)
+ } catch prob {chatUI.showMessage("system", "connection lost")}
+}
+to receive(message) {chatUI.showMessage("friend", message)}
+to receiveFriend(friendRcvr) {
+ bind friend := friendRcvr
+ chatUI.showMessage("system", "friend has arrived")
+}
+to save(file) {file.setText(makeURIFromObject(chatController))}
+to load(file) {
+ bind friend := getObjectFromURI(file.getText())
+ friend <- receiveFriend(chatController)
+}
From ef42680646eb47b76e00068ffd78d4b3700e5d3f Mon Sep 17 00:00:00 2001
From: Chriztian Steinmeier
Date: Tue, 4 Feb 2014 23:26:02 +0100
Subject: [PATCH 012/229] Add Kit entry in languages.yml
---
lib/linguist/languages.yml | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml
index 302ffe14..eb98d136 100644
--- a/lib/linguist/languages.yml
+++ b/lib/linguist/languages.yml
@@ -880,6 +880,11 @@ Julia:
primary_extension: .jl
color: "#a270ba"
+Kit:
+ type: markup
+ ace_mode: html
+ primary_extension: .kit
+
KRL:
lexer: Text only
type: programming
From f4fd6ed94ee67868661653ae147692598ca504ac Mon Sep 17 00:00:00 2001
From: Chriztian Steinmeier
Date: Tue, 4 Feb 2014 23:26:25 +0100
Subject: [PATCH 013/229] Add sample file for Kit language
---
samples/Kit/demo.kit | 8 ++++++++
1 file changed, 8 insertions(+)
create mode 100644 samples/Kit/demo.kit
diff --git a/samples/Kit/demo.kit b/samples/Kit/demo.kit
new file mode 100644
index 00000000..7c948f16
--- /dev/null
+++ b/samples/Kit/demo.kit
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
From 43825c342671e93f6d414c218bd1746b72862908 Mon Sep 17 00:00:00 2001
From: Chriztian Steinmeier
Date: Tue, 4 Feb 2014 23:50:44 +0100
Subject: [PATCH 014/229] Update samples.json
---
lib/linguist/samples.json | 61 +++++++++++++++++++++++++++++++++++++--
1 file changed, 58 insertions(+), 3 deletions(-)
diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json
index ed92145a..0c45e5e7 100644
--- a/lib/linguist/samples.json
+++ b/lib/linguist/samples.json
@@ -52,6 +52,9 @@
"Ceylon": [
".ceylon"
],
+ "Cirru": [
+ ".cirru"
+ ],
"Clojure": [
".cl2",
".clj",
@@ -179,6 +182,9 @@
"Julia": [
".jl"
],
+ "Kit": [
+ ".kit"
+ ],
"Kotlin": [
".kt"
],
@@ -535,8 +541,8 @@
".gemrc"
]
},
- "tokens_total": 445429,
- "languages_total": 523,
+ "tokens_total": 445679,
+ "languages_total": 533,
"tokens": {
"ABAP": {
"*/**": 1,
@@ -12715,6 +12721,43 @@
"<=>": 1,
"other.name": 1
},
+ "Cirru": {
+ "print": 38,
+ "array": 14,
+ "int": 36,
+ "string": 7,
+ "set": 12,
+ "f": 3,
+ "block": 1,
+ "(": 20,
+ "a": 22,
+ "b": 7,
+ "c": 9,
+ ")": 20,
+ "call": 1,
+ "bool": 6,
+ "true": 1,
+ "false": 1,
+ "yes": 1,
+ "no": 1,
+ "map": 8,
+ "m": 3,
+ "float": 1,
+ "require": 1,
+ "./stdio.cr": 1,
+ "self": 2,
+ "child": 1,
+ "under": 2,
+ "parent": 1,
+ "get": 4,
+ "x": 2,
+ "just": 4,
+ "-": 4,
+ "code": 4,
+ "eval": 2,
+ "nothing": 1,
+ "container": 3
+ },
"Clojure": {
"(": 83,
"defn": 4,
@@ -25566,6 +25609,14 @@
"end": 3,
"return": 1
},
+ "Kit": {
+ "": 1,
+ "": 1,
+ " ": 1,
+ "": 1,
+ "
": 1,
+ " ": 1
+ },
"Kotlin": {
"package": 1,
"addressbook": 1,
@@ -47799,6 +47850,7 @@
"C#": 278,
"C++": 31181,
"Ceylon": 50,
+ "Cirru": 244,
"Clojure": 510,
"COBOL": 90,
"CoffeeScript": 2951,
@@ -47835,6 +47887,7 @@
"JSON": 183,
"JSON5": 57,
"Julia": 247,
+ "Kit": 6,
"Kotlin": 155,
"KRL": 25,
"Lasso": 9849,
@@ -47941,6 +47994,7 @@
"C#": 2,
"C++": 27,
"Ceylon": 1,
+ "Cirru": 9,
"Clojure": 7,
"COBOL": 4,
"CoffeeScript": 9,
@@ -47977,6 +48031,7 @@
"JSON": 4,
"JSON5": 2,
"Julia": 1,
+ "Kit": 1,
"Kotlin": 1,
"KRL": 1,
"Lasso": 4,
@@ -48066,5 +48121,5 @@
"Xtend": 2,
"YAML": 1
},
- "md5": "a46f14929a6e9e4356fda95beb035439"
+ "md5": "e15665f251898e9707bd69413c0e5485"
}
\ No newline at end of file
From 681561229ea5243dcf78d06c8a3060abb687dd6f Mon Sep 17 00:00:00 2001
From: Baptiste Fontaine
Date: Wed, 5 Feb 2014 00:53:00 +0100
Subject: [PATCH 015/229] E has no lexer
---
lib/linguist/languages.yml | 1 +
1 file changed, 1 insertion(+)
diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml
index e10c3d09..5583b7b7 100644
--- a/lib/linguist/languages.yml
+++ b/lib/linguist/languages.yml
@@ -479,6 +479,7 @@ Dylan:
E:
type: programming
color: "#ccce35"
+ lexer: Text only
primary_extension: .E
Ecere Projects:
From 0eebd42d72c5a95719c6d7cbdaf22decd83cd986 Mon Sep 17 00:00:00 2001
From: Dave Jones
Date: Mon, 17 Feb 2014 00:09:22 +0000
Subject: [PATCH 016/229] Make SQL a programming language
Because it is (see https://github.com/waveform80/db2utils which hilariously claims to be 79% written in C!)
---
lib/linguist/languages.yml | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml
index 15ece00e..1bdfc4af 100644
--- a/lib/linguist/languages.yml
+++ b/lib/linguist/languages.yml
@@ -1532,9 +1532,8 @@ SCSS:
primary_extension: .scss
SQL:
- type: data
+ type: programming
ace_mode: sql
- searchable: false
primary_extension: .sql
Sage:
From e2b1fe3641708c57be3b903bca3d591a401b526c Mon Sep 17 00:00:00 2001
From: Dave Hughes
Date: Mon, 17 Feb 2014 01:11:23 +0000
Subject: [PATCH 017/229] Amend tests to ensure SQL *is* searchable
---
test/test_language.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/test/test_language.rb b/test/test_language.rb
index 41ee2a72..ebcc13bc 100644
--- a/test/test_language.rb
+++ b/test/test_language.rb
@@ -213,7 +213,7 @@ class TestLanguage < Test::Unit::TestCase
def test_searchable
assert Language['Ruby'].searchable?
assert !Language['Gettext Catalog'].searchable?
- assert !Language['SQL'].searchable?
+ assert Language['SQL'].searchable?
end
def test_find_by_name
From a2690b7dac01280591d880ee0fd8eec124925b7f Mon Sep 17 00:00:00 2001
From: Albert Lyu
Date: Wed, 26 Feb 2014 13:07:20 -0600
Subject: [PATCH 018/229] Add D3.js to the vendored list
Followed the commit pattern of a3e1420476c8dec309895e6bbde01a2101d0e1ed
---
lib/linguist/vendor.yml | 3 +++
test/test_blob.rb | 4 ++++
2 files changed, 7 insertions(+)
diff --git a/lib/linguist/vendor.yml b/lib/linguist/vendor.yml
index 3609b466..8077344e 100644
--- a/lib/linguist/vendor.yml
+++ b/lib/linguist/vendor.yml
@@ -98,6 +98,9 @@
# AngularJS
- (^|/)angular([^.]*)(\.min)?\.js$
+# D3.js
+- (^|/)d3([^.]*)(\.min)?\.js$
+
## Python ##
# django
diff --git a/test/test_blob.rb b/test/test_blob.rb
index 9f56265b..8399a747 100644
--- a/test/test_blob.rb
+++ b/test/test_blob.rb
@@ -303,6 +303,10 @@ class TestBlob < Test::Unit::TestCase
assert blob("public/javascripts/angular.js").vendored?
assert blob("public/javascripts/angular.min.js").vendored?
+ # D3.js
+ assert blob("public/javascripts/d3.v3.js").vendored?
+ assert blob("public/javascripts/d3.v3.min.js").vendored?
+
# Fabric
assert blob("fabfile.py").vendored?
From 10903e7e38c693fc6efa0a947e65689f472bcc22 Mon Sep 17 00:00:00 2001
From: Chriztian Steinmeier
Date: Tue, 11 Mar 2014 22:37:46 +0100
Subject: [PATCH 019/229] Add missing lexer to Kit language
---
lib/linguist/languages.yml | 1 +
1 file changed, 1 insertion(+)
diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml
index eb98d136..8f07c744 100644
--- a/lib/linguist/languages.yml
+++ b/lib/linguist/languages.yml
@@ -882,6 +882,7 @@ Julia:
Kit:
type: markup
+ lexer: html
ace_mode: html
primary_extension: .kit
From d394e8db2150322b4714ab9db5c34673886fb627 Mon Sep 17 00:00:00 2001
From: Andrew Plotkin
Date: Wed, 12 Mar 2014 14:44:13 -0400
Subject: [PATCH 020/229] Added a lexer definition (text only). I may build an
Inform 7 highlighter/lexer someday, but not this week.
---
lib/linguist/languages.yml | 1 +
1 file changed, 1 insertion(+)
diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml
index 99d702e7..03fb9676 100644
--- a/lib/linguist/languages.yml
+++ b/lib/linguist/languages.yml
@@ -809,6 +809,7 @@ Idris:
Inform 7:
type: programming
+ lexer: Text only
wrap: true
primary_extension: .ni
extensions:
From 869cf8ba114e1134685c4348847ad60dc44a6e68 Mon Sep 17 00:00:00 2001
From: Albert Lyu
Date: Thu, 13 Mar 2014 16:20:04 -0500
Subject: [PATCH 021/229] Update D3.js in vendored list
---
lib/linguist/vendor.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/linguist/vendor.yml b/lib/linguist/vendor.yml
index 8077344e..e4967ccf 100644
--- a/lib/linguist/vendor.yml
+++ b/lib/linguist/vendor.yml
@@ -99,7 +99,7 @@
- (^|/)angular([^.]*)(\.min)?\.js$
# D3.js
-- (^|/)d3([^.]*)(\.min)?\.js$
+- (^|\/)d3(\.v\d+)?([^.]*)(\.min)?\.js$
## Python ##
From dc1b0e3c48af0619ed94cf2b9aeaa2e35816708c Mon Sep 17 00:00:00 2001
From: Brett Weir
Date: Thu, 13 Mar 2014 14:49:11 -0700
Subject: [PATCH 022/229] Added Propeller Spin language to languages.yml
---
lib/linguist/languages.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml
index 01f4b4cd..f0203b39 100644
--- a/lib/linguist/languages.yml
+++ b/lib/linguist/languages.yml
@@ -1366,6 +1366,12 @@ Prolog:
- .ecl
- .pl
+Propeller Spin:
+ type: programming
+ lexer: Text only
+ color: "#2b446d"
+ primary_extension: .spin
+
Protocol Buffer:
type: markup
aliases:
From ee3c9bcdbdf5389ad412decabfd57c3ae0d69d24 Mon Sep 17 00:00:00 2001
From: Michael Hendricks
Date: Mon, 17 Mar 2014 08:56:45 -0600
Subject: [PATCH 023/229] Add misclassified Prolog samples
These two files are incorrectly classified as Perl. They should be
classified as Prolog. There are many distinctive tokens in each file
which clearly differentiate between Perl and Prolog.
---
samples/Prolog/format_spec.pl | 260 ++++++++++++++++++++++++++++++++++
samples/Prolog/func.pl | 194 +++++++++++++++++++++++++
2 files changed, 454 insertions(+)
create mode 100644 samples/Prolog/format_spec.pl
create mode 100644 samples/Prolog/func.pl
diff --git a/samples/Prolog/format_spec.pl b/samples/Prolog/format_spec.pl
new file mode 100644
index 00000000..1508f3a3
--- /dev/null
+++ b/samples/Prolog/format_spec.pl
@@ -0,0 +1,260 @@
+:- module(format_spec, [ format_error/2
+ , format_spec/2
+ , format_spec//1
+ , spec_arity/2
+ , spec_types/2
+ ]).
+
+:- use_module(library(dcg/basics), [eos//0, integer//1, string_without//2]).
+:- use_module(library(error)).
+:- use_module(library(when), [when/2]).
+
+% TODO loading this module is optional
+% TODO it's for my own convenience during development
+%:- use_module(library(mavis)).
+
+%% format_error(+Goal, -Error:string) is nondet.
+%
+% True if Goal exhibits an Error in its format string. The
+% Error string describes what is wrong with Goal. Iterates each
+% error on backtracking.
+%
+% Goal may be one of the following predicates:
+%
+% * format/2
+% * format/3
+% * debug/3
+format_error(format(Format,Args), Error) :-
+ format_error_(Format, Args,Error).
+format_error(format(_,Format,Args), Error) :-
+ format_error_(Format,Args,Error).
+format_error(debug(_,Format,Args), Error) :-
+ format_error_(Format,Args,Error).
+
+format_error_(Format,Args,Error) :-
+ format_spec(Format, Spec),
+ !,
+ is_list(Args),
+ spec_types(Spec, Types),
+ types_error(Args, Types, Error).
+format_error_(Format,_,Error) :-
+ % \+ format_spec(Format, _),
+ format(string(Error), "Invalid format string: ~q", [Format]).
+
+types_error(Args, Types, Error) :-
+ length(Types, TypesLen),
+ length(Args, ArgsLen),
+ TypesLen =\= ArgsLen,
+ !,
+ format( string(Error)
+ , "Wrong argument count. Expected ~d, got ~d"
+ , [TypesLen, ArgsLen]
+ ).
+types_error(Args, Types, Error) :-
+ types_error_(Args, Types, Error).
+
+types_error_([Arg|_],[Type|_],Error) :-
+ ground(Arg),
+ \+ is_of_type(Type,Arg),
+ message_to_string(error(type_error(Type,Arg),_Location),Error).
+types_error_([_|Args],[_|Types],Error) :-
+ types_error_(Args, Types, Error).
+
+
+% check/0 augmentation
+:- multifile check:checker/2.
+:- dynamic check:checker/2.
+check:checker(format_spec:checker, "format/2 strings and arguments").
+
+:- dynamic format_fail/3.
+
+checker :-
+ prolog_walk_code([ module_class([user])
+ , infer_meta_predicates(false)
+ , autoload(false) % format/{2,3} are always loaded
+ , undefined(ignore)
+ , trace_reference(_)
+ , on_trace(check_format)
+ ]),
+ retract(format_fail(Goal,Location,Error)),
+ print_message(warning, format_error(Goal,Location,Error)),
+ fail. % iterate all errors
+checker. % succeed even if no errors are found
+
+check_format(Module:Goal, _Caller, Location) :-
+ predicate_property(Module:Goal, imported_from(Source)),
+ memberchk(Source, [system,prolog_debug]),
+ can_check(Goal),
+ format_error(Goal, Error),
+ assert(format_fail(Goal, Location, Error)),
+ fail.
+check_format(_,_,_). % succeed to avoid printing goals
+
+% true if format_error/2 can check this goal
+can_check(Goal) :-
+ once(clause(format_error(Goal,_),_)).
+
+prolog:message(format_error(Goal,Location,Error)) -->
+ prolog:message_location(Location),
+ ['~n In goal: ~q~n ~s'-[Goal,Error]].
+
+
+%% format_spec(-Spec)//
+%
+% DCG for parsing format strings. It doesn't yet generate format
+% strings from a spec. See format_spec/2 for details.
+format_spec([]) -->
+ eos.
+format_spec([escape(Numeric,Modifier,Action)|Rest]) -->
+ "~",
+ numeric_argument(Numeric),
+ modifier_argument(Modifier),
+ action(Action),
+ format_spec(Rest).
+format_spec([text(String)|Rest]) -->
+ { when((ground(String);ground(Codes)),string_codes(String, Codes)) },
+ string_without("~", Codes),
+ { Codes \= [] },
+ format_spec(Rest).
+
+
+%% format_spec(+Format, -Spec:list) is semidet.
+%
+% Parse a format string. Each element of Spec is one of the following:
+%
+% * `text(Text)` - text sent to the output as is
+% * `escape(Num,Colon,Action)` - a format escape
+%
+% `Num` represents the optional numeric portion of an esape. `Colon`
+% represents the optional colon in an escape. `Action` is an atom
+% representing the action to be take by this escape.
+format_spec(Format, Spec) :-
+ when((ground(Format);ground(Codes)),text_codes(Format, Codes)),
+ once(phrase(format_spec(Spec), Codes, [])).
+
+%% spec_arity(+FormatSpec, -Arity:positive_integer) is det.
+%
+% True if FormatSpec requires format/2 to have Arity arguments.
+spec_arity(Spec, Arity) :-
+ spec_types(Spec, Types),
+ length(Types, Arity).
+
+
+%% spec_types(+FormatSpec, -Types:list(type)) is det.
+%
+% True if FormatSpec requires format/2 to have arguments of Types. Each
+% value of Types is a type as described by error:has_type/2. This
+% notion of types is compatible with library(mavis).
+spec_types(Spec, Types) :-
+ phrase(spec_types(Spec), Types).
+
+spec_types([]) -->
+ [].
+spec_types([Item|Items]) -->
+ item_types(Item),
+ spec_types(Items).
+
+item_types(text(_)) -->
+ [].
+item_types(escape(Numeric,_,Action)) -->
+ numeric_types(Numeric),
+ action_types(Action).
+
+numeric_types(number(_)) -->
+ [].
+numeric_types(character(_)) -->
+ [].
+numeric_types(star) -->
+ [number].
+numeric_types(nothing) -->
+ [].
+
+action_types(Action) -->
+ { atom_codes(Action, [Code]) },
+ { action_types(Code, Types) },
+ phrase(Types).
+
+
+%% text_codes(Text:text, Codes:codes).
+text_codes(Var, Codes) :-
+ var(Var),
+ !,
+ string_codes(Var, Codes).
+text_codes(Atom, Codes) :-
+ atom(Atom),
+ !,
+ atom_codes(Atom, Codes).
+text_codes(String, Codes) :-
+ string(String),
+ !,
+ string_codes(String, Codes).
+text_codes(Codes, Codes) :-
+ is_of_type(codes, Codes).
+
+
+numeric_argument(number(N)) -->
+ integer(N).
+numeric_argument(character(C)) -->
+ "`",
+ [C].
+numeric_argument(star) -->
+ "*".
+numeric_argument(nothing) -->
+ "".
+
+
+modifier_argument(colon) -->
+ ":".
+modifier_argument(no_colon) -->
+ \+ ":".
+
+
+action(Action) -->
+ [C],
+ { is_action(C) },
+ { atom_codes(Action, [C]) }.
+
+
+%% is_action(+Action:integer) is semidet.
+%% is_action(-Action:integer) is multi.
+%
+% True if Action is a valid format/2 action character. Iterates all
+% acceptable action characters, if Action is unbound.
+is_action(Action) :-
+ action_types(Action, _).
+
+%% action_types(?Action:integer, ?Types:list(type))
+%
+% True if Action consumes arguments matching Types. An action (like
+% `~`), which consumes no arguments, has `Types=[]`. For example,
+%
+% ?- action_types(0'~, Types).
+% Types = [].
+% ?- action_types(0'a, Types).
+% Types = [atom].
+action_types(0'~, []).
+action_types(0'a, [atom]).
+action_types(0'c, [integer]). % specifically, a code
+action_types(0'd, [integer]).
+action_types(0'D, [integer]).
+action_types(0'e, [float]).
+action_types(0'E, [float]).
+action_types(0'f, [float]).
+action_types(0'g, [float]).
+action_types(0'G, [float]).
+action_types(0'i, [any]).
+action_types(0'I, [integer]).
+action_types(0'k, [any]).
+action_types(0'n, []).
+action_types(0'N, []).
+action_types(0'p, [any]).
+action_types(0'q, [any]).
+action_types(0'r, [integer]).
+action_types(0'R, [integer]).
+action_types(0's, [text]).
+action_types(0'@, [callable]).
+action_types(0't, []).
+action_types(0'|, []).
+action_types(0'+, []).
+action_types(0'w, [any]).
+action_types(0'W, [any, list]).
diff --git a/samples/Prolog/func.pl b/samples/Prolog/func.pl
new file mode 100644
index 00000000..944514e2
--- /dev/null
+++ b/samples/Prolog/func.pl
@@ -0,0 +1,194 @@
+:- module(func, [ op(675, xfy, ($))
+ , op(650, xfy, (of))
+ , ($)/2
+ , (of)/2
+ ]).
+:- use_module(library(list_util), [xfy_list/3]).
+:- use_module(library(function_expansion)).
+:- use_module(library(arithmetic)).
+:- use_module(library(error)).
+
+
+% true if the module whose terms are being read has specifically
+% imported library(func).
+wants_func :-
+ prolog_load_context(module, Module),
+ Module \== func, % we don't want func sugar ourselves
+ predicate_property(Module:of(_,_),imported_from(func)).
+
+
+%% compile_function(+Term, -In, -Out, -Goal) is semidet.
+%
+% True if Term represents a function from In to Out
+% implemented by calling Goal. This multifile hook is
+% called by $/2 and of/2 to convert a term into a goal.
+% It's used at compile time for macro expansion.
+% It's used at run time to handle functions which aren't
+% known at compile time.
+% When called as a hook, Term is guaranteed to be =nonvar=.
+%
+% For example, to treat library(assoc) terms as functions which
+% map a key to a value, one might define:
+%
+% :- multifile compile_function/4.
+% compile_function(Assoc, Key, Value, Goal) :-
+% is_assoc(Assoc),
+% Goal = get_assoc(Key, Assoc, Value).
+%
+% Then one could write:
+%
+% list_to_assoc([a-1, b-2, c-3], Assoc),
+% Two = Assoc $ b,
+:- multifile compile_function/4.
+compile_function(Var, _, _, _) :-
+ % variables storing functions must be evaluated at run time
+ % and can't be compiled, a priori, into a goal
+ var(Var),
+ !,
+ fail.
+compile_function(Expr, In, Out, Out is Expr) :-
+ % arithmetic expression of one variable are simply evaluated
+ \+ string(Expr), % evaluable/1 throws exception with strings
+ arithmetic:evaluable(Expr),
+ term_variables(Expr, [In]).
+compile_function(F, In, Out, func:Goal) :-
+ % composed functions
+ function_composition_term(F),
+ user:function_expansion(F, func:Functor, true),
+ Goal =.. [Functor,In,Out].
+compile_function(F, In, Out, Goal) :-
+ % string interpolation via format templates
+ format_template(F),
+ ( atom(F) ->
+ Goal = format(atom(Out), F, In)
+ ; string(F) ->
+ Goal = format(string(Out), F, In)
+ ; error:has_type(codes, F) ->
+ Goal = format(codes(Out), F, In)
+ ; fail % to be explicit
+ ).
+compile_function(Dict, In, Out, Goal) :-
+ is_dict(Dict),
+ Goal = get_dict(In, Dict, Out).
+
+%% $(+Function, +Argument) is det.
+%
+% Apply Function to an Argument. A Function is any predicate
+% whose final argument generates output and whose penultimate argument
+% accepts input.
+%
+% This is realized by expanding function application to chained
+% predicate calls at compile time. Function application itself can
+% be chained.
+%
+% ==
+% Reversed = reverse $ sort $ [c,d,b].
+% ==
+:- meta_predicate $(2,+).
+$(_,_) :-
+ throw(error(permission_error(call, predicate, ($)/2),
+ context(_, '$/2 must be subject to goal expansion'))).
+
+user:function_expansion($(F,X), Y, Goal) :-
+ wants_func,
+ ( func:compile_function(F, X, Y, Goal) ->
+ true
+ ; var(F) -> Goal = % defer until run time
+ ( func:compile_function(F, X, Y, P) ->
+ call(P)
+ ; call(F, X, Y)
+ )
+ ; Goal = call(F, X, Y)
+ ).
+
+
+%% of(+F, +G) is det.
+%
+% Creates a new function by composing F and G. The functions are
+% composed at compile time to create a new, compiled predicate which
+% behaves like a function. Function composition can be chained.
+% Composed functions can also be applied with $/2.
+%
+% ==
+% Reversed = reverse of sort $ [c,d,b].
+% ==
+:- meta_predicate of(2,2).
+of(_,_).
+
+
+%% format_template(Format) is semidet.
+%
+% True if Format is a template string suitable for format/3.
+% The current check is very naive and should be improved.
+format_template(Format) :-
+ atom(Format), !,
+ atom_codes(Format, Codes),
+ format_template(Codes).
+format_template(Format) :-
+ string(Format),
+ !,
+ string_codes(Format, Codes),
+ format_template(Codes).
+format_template(Format) :-
+ error:has_type(codes, Format),
+ memberchk(0'~, Format). % ' fix syntax highlighting
+
+
+% True if the argument is a function composition term
+function_composition_term(of(_,_)).
+
+% Converts a function composition term into a list of functions to compose
+functions_to_compose(Term, Funcs) :-
+ functor(Term, Op, 2),
+ Op = (of),
+ xfy_list(Op, Term, Funcs).
+
+% Thread a state variable through a list of functions. This is similar
+% to a DCG expansion, but much simpler.
+thread_state([], [], Out, Out).
+thread_state([F|Funcs], [Goal|Goals], In, Out) :-
+ ( compile_function(F, In, Tmp, Goal) ->
+ true
+ ; var(F) ->
+ instantiation_error(F)
+ ; F =.. [Functor|Args],
+ append(Args, [In, Tmp], NewArgs),
+ Goal =.. [Functor|NewArgs]
+ ),
+ thread_state(Funcs, Goals, Tmp, Out).
+
+user:function_expansion(Term, func:Functor, true) :-
+ wants_func,
+ functions_to_compose(Term, Funcs),
+ debug(func, 'building composed function for: ~w', [Term]),
+ variant_sha1(Funcs, Sha),
+ format(atom(Functor), 'composed_function_~w', [Sha]),
+ debug(func, ' name: ~s', [Functor]),
+ ( func:current_predicate(Functor/2) ->
+ debug(func, ' composed predicate already exists', [])
+ ; true ->
+ reverse(Funcs, RevFuncs),
+ thread_state(RevFuncs, Threaded, In, Out),
+ xfy_list(',', Body, Threaded),
+ Head =.. [Functor, In, Out],
+ func:assert(Head :- Body),
+ func:compile_predicates([Functor/2])
+ ).
+
+
+% support foo(x,~,y) evaluation
+user:function_expansion(Term, Output, Goal) :-
+ wants_func,
+ compound(Term),
+
+ % has a single ~ argument
+ setof( X
+ , ( arg(X,Term,Arg), Arg == '~' )
+ , [N]
+ ),
+
+ % replace ~ with a variable
+ Term =.. [Name|Args0],
+ nth1(N, Args0, ~, Rest),
+ nth1(N, Args, Output, Rest),
+ Goal =.. [Name|Args].
From a3aaa1ec4d7e91bf7c2c297e9abbe422e3a849f4 Mon Sep 17 00:00:00 2001
From: Aleks Kissinger
Date: Wed, 2 Apr 2014 12:41:54 +0100
Subject: [PATCH 024/229] included sample and extension .ML extension for
Standard ML files
---
lib/linguist/languages.yml | 1 +
lib/linguist/samples.json | 654 +++++++++++++++++++++++++++++++++----
samples/Standard ML/Foo.ML | 75 +++++
3 files changed, 668 insertions(+), 62 deletions(-)
create mode 100644 samples/Standard ML/Foo.ML
diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml
index 6eb2a378..103ab9a9 100644
--- a/lib/linguist/languages.yml
+++ b/lib/linguist/languages.yml
@@ -1667,6 +1667,7 @@ Standard ML:
- sml
primary_extension: .sml
extensions:
+ - .ML
- .fun
Stylus:
diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json
index 6d26388a..35ce56ba 100644
--- a/lib/linguist/samples.json
+++ b/lib/linguist/samples.json
@@ -237,6 +237,9 @@
"Markdown": [
".md"
],
+ "Mask": [
+ ".mask"
+ ],
"Matlab": [
".m"
],
@@ -417,6 +420,9 @@
".sh",
".zsh"
],
+ "Shen": [
+ ".shen"
+ ],
"Slash": [
".sl"
],
@@ -424,6 +430,7 @@
".nut"
],
"Standard ML": [
+ ".ML",
".fun",
".sig",
".sml"
@@ -488,6 +495,9 @@
],
"Xtend": [
".xtend"
+ ],
+ "YAML": [
+ ".yml"
]
},
"interpreters": {
@@ -551,8 +561,8 @@
".gemrc"
]
},
- "tokens_total": 450556,
- "languages_total": 548,
+ "tokens_total": 454311,
+ "languages_total": 554,
"tokens": {
"ABAP": {
"*/**": 1,
@@ -30365,6 +30375,55 @@
"Markdown": {
"Tender": 1
},
+ "Mask": {
+ "header": 1,
+ "{": 10,
+ "img": 1,
+ ".logo": 1,
+ "src": 1,
+ "alt": 1,
+ "logo": 1,
+ ";": 3,
+ "h4": 1,
+ "if": 1,
+ "(": 3,
+ "currentUser": 1,
+ ")": 3,
+ ".account": 1,
+ "a": 1,
+ "href": 1,
+ "}": 10,
+ ".view": 1,
+ "ul": 1,
+ "for": 1,
+ "user": 1,
+ "index": 1,
+ "of": 1,
+ "users": 1,
+ "li.user": 1,
+ "data": 1,
+ "-": 3,
+ "id": 1,
+ ".name": 1,
+ ".count": 1,
+ ".date": 1,
+ "countdownComponent": 1,
+ "input": 1,
+ "type": 1,
+ "text": 1,
+ "dualbind": 1,
+ "value": 1,
+ "button": 1,
+ "x": 2,
+ "signal": 1,
+ "h5": 1,
+ "animation": 1,
+ "slot": 1,
+ "@model": 1,
+ "@next": 1,
+ "footer": 1,
+ "bazCompo": 1
+ },
"Matlab": {
"function": 34,
"[": 311,
@@ -44077,6 +44136,440 @@
"foodforthought.jpg": 1,
"name##*fo": 1
},
+ "Shen": {
+ "*": 47,
+ "graph.shen": 1,
+ "-": 747,
+ "a": 30,
+ "library": 3,
+ "for": 12,
+ "graph": 52,
+ "definition": 1,
+ "and": 16,
+ "manipulation": 1,
+ "Copyright": 2,
+ "(": 267,
+ "C": 6,
+ ")": 250,
+ "Eric": 2,
+ "Schulte": 2,
+ "***": 5,
+ "License": 2,
+ "Redistribution": 2,
+ "use": 2,
+ "in": 13,
+ "source": 4,
+ "binary": 4,
+ "forms": 2,
+ "with": 8,
+ "or": 2,
+ "without": 2,
+ "modification": 2,
+ "are": 7,
+ "permitted": 2,
+ "provided": 4,
+ "that": 3,
+ "the": 29,
+ "following": 6,
+ "conditions": 6,
+ "met": 2,
+ "Redistributions": 4,
+ "of": 20,
+ "code": 2,
+ "must": 4,
+ "retain": 2,
+ "above": 4,
+ "copyright": 4,
+ "notice": 4,
+ "this": 4,
+ "list": 32,
+ "disclaimer.": 2,
+ "form": 2,
+ "reproduce": 2,
+ "disclaimer": 2,
+ "documentation": 2,
+ "and/or": 2,
+ "other": 2,
+ "materials": 2,
+ "distribution.": 2,
+ "THIS": 4,
+ "SOFTWARE": 4,
+ "IS": 2,
+ "PROVIDED": 2,
+ "BY": 2,
+ "THE": 10,
+ "COPYRIGHT": 4,
+ "HOLDERS": 2,
+ "AND": 8,
+ "CONTRIBUTORS": 4,
+ "ANY": 8,
+ "EXPRESS": 2,
+ "OR": 16,
+ "IMPLIED": 4,
+ "WARRANTIES": 4,
+ "INCLUDING": 6,
+ "BUT": 4,
+ "NOT": 4,
+ "LIMITED": 4,
+ "TO": 4,
+ "OF": 16,
+ "MERCHANTABILITY": 2,
+ "FITNESS": 2,
+ "FOR": 4,
+ "A": 32,
+ "PARTICULAR": 2,
+ "PURPOSE": 2,
+ "ARE": 2,
+ "DISCLAIMED.": 2,
+ "IN": 6,
+ "NO": 2,
+ "EVENT": 2,
+ "SHALL": 2,
+ "HOLDER": 2,
+ "BE": 2,
+ "LIABLE": 2,
+ "DIRECT": 2,
+ "INDIRECT": 2,
+ "INCIDENTAL": 2,
+ "SPECIAL": 2,
+ "EXEMPLARY": 2,
+ "CONSEQUENTIAL": 2,
+ "DAMAGES": 2,
+ "PROCUREMENT": 2,
+ "SUBSTITUTE": 2,
+ "GOODS": 2,
+ "SERVICES": 2,
+ ";": 12,
+ "LOSS": 2,
+ "USE": 4,
+ "DATA": 2,
+ "PROFITS": 2,
+ "BUSINESS": 2,
+ "INTERRUPTION": 2,
+ "HOWEVER": 2,
+ "CAUSED": 2,
+ "ON": 2,
+ "THEORY": 2,
+ "LIABILITY": 4,
+ "WHETHER": 2,
+ "CONTRACT": 2,
+ "STRICT": 2,
+ "TORT": 2,
+ "NEGLIGENCE": 2,
+ "OTHERWISE": 2,
+ "ARISING": 2,
+ "WAY": 2,
+ "OUT": 2,
+ "EVEN": 2,
+ "IF": 2,
+ "ADVISED": 2,
+ "POSSIBILITY": 2,
+ "SUCH": 2,
+ "DAMAGE.": 2,
+ "Commentary": 2,
+ "Graphs": 1,
+ "represented": 1,
+ "as": 2,
+ "two": 1,
+ "dictionaries": 1,
+ "one": 2,
+ "vertices": 17,
+ "edges.": 1,
+ "It": 1,
+ "is": 5,
+ "important": 1,
+ "to": 16,
+ "note": 1,
+ "dictionary": 3,
+ "implementation": 1,
+ "used": 2,
+ "able": 1,
+ "accept": 1,
+ "arbitrary": 1,
+ "data": 17,
+ "structures": 1,
+ "keys.": 1,
+ "This": 1,
+ "structure": 2,
+ "technically": 1,
+ "encodes": 1,
+ "hypergraphs": 1,
+ "generalization": 1,
+ "graphs": 1,
+ "which": 1,
+ "each": 1,
+ "edge": 32,
+ "may": 1,
+ "contain": 2,
+ "any": 1,
+ "number": 12,
+ ".": 1,
+ "Examples": 1,
+ "regular": 1,
+ "G": 25,
+ "hypergraph": 1,
+ "H": 3,
+ "corresponding": 1,
+ "given": 4,
+ "below.": 1,
+ "": 3,
+ "Vertices": 11,
+ "Edges": 9,
+ "+": 33,
+ "Graph": 65,
+ "hash": 8,
+ "|": 103,
+ "key": 9,
+ "value": 17,
+ "b": 13,
+ "c": 11,
+ "g": 19,
+ "[": 93,
+ "]": 91,
+ "d": 12,
+ "e": 14,
+ "f": 10,
+ "Hypergraph": 1,
+ "h": 3,
+ "i": 3,
+ "j": 2,
+ "associated": 1,
+ "edge/vertex": 1,
+ "@p": 17,
+ "V": 48,
+ "#": 4,
+ "E": 20,
+ "edges": 17,
+ "M": 4,
+ "vertex": 29,
+ "associations": 1,
+ "size": 2,
+ "all": 3,
+ "stored": 1,
+ "dict": 39,
+ "sizeof": 4,
+ "int": 1,
+ "indices": 1,
+ "into": 1,
+ "&": 1,
+ "Edge": 11,
+ "dicts": 3,
+ "entry": 2,
+ "storage": 2,
+ "Vertex": 3,
+ "Code": 1,
+ "require": 2,
+ "sequence": 2,
+ "datatype": 1,
+ "dictoinary": 1,
+ "vector": 4,
+ "symbol": 1,
+ "package": 2,
+ "add": 25,
+ "has": 5,
+ "neighbors": 8,
+ "connected": 21,
+ "components": 8,
+ "partition": 7,
+ "bipartite": 3,
+ "included": 2,
+ "from": 3,
+ "take": 2,
+ "drop": 2,
+ "while": 2,
+ "range": 1,
+ "flatten": 1,
+ "filter": 2,
+ "complement": 1,
+ "seperate": 1,
+ "zip": 1,
+ "indexed": 1,
+ "reduce": 3,
+ "mapcon": 3,
+ "unique": 3,
+ "frequencies": 1,
+ "shuffle": 1,
+ "pick": 1,
+ "remove": 2,
+ "first": 2,
+ "interpose": 1,
+ "subset": 3,
+ "cartesian": 1,
+ "product": 1,
+ "<-dict>": 5,
+ "contents": 1,
+ "keys": 3,
+ "vals": 1,
+ "make": 10,
+ "define": 34,
+ "X": 4,
+ "<-address>": 5,
+ "0": 1,
+ "create": 1,
+ "specified": 1,
+ "sizes": 2,
+ "}": 22,
+ "Vertsize": 2,
+ "Edgesize": 2,
+ "let": 9,
+ "absvector": 1,
+ "do": 8,
+ "address": 5,
+ "defmacro": 3,
+ "macro": 3,
+ "return": 4,
+ "taking": 1,
+ "optional": 1,
+ "N": 7,
+ "vert": 12,
+ "1": 1,
+ "2": 3,
+ "{": 15,
+ "get": 3,
+ "Value": 3,
+ "if": 8,
+ "tuple": 3,
+ "fst": 3,
+ "error": 7,
+ "string": 3,
+ "resolve": 6,
+ "Vector": 2,
+ "Index": 2,
+ "Place": 6,
+ "nth": 1,
+ "<-vector>": 2,
+ "Vert": 5,
+ "Val": 5,
+ "trap": 4,
+ "snd": 2,
+ "map": 5,
+ "lambda": 1,
+ "w": 4,
+ "B": 2,
+ "Data": 2,
+ "w/o": 5,
+ "D": 4,
+ "update": 5,
+ "an": 3,
+ "s": 1,
+ "Vs": 4,
+ "Store": 6,
+ "<": 4,
+ "limit": 2,
+ "VertLst": 2,
+ "/.": 4,
+ "Contents": 5,
+ "adjoin": 2,
+ "length": 5,
+ "EdgeID": 3,
+ "EdgeLst": 2,
+ "p": 1,
+ "boolean": 4,
+ "Return": 1,
+ "Already": 5,
+ "New": 5,
+ "Reachable": 2,
+ "difference": 3,
+ "append": 1,
+ "including": 1,
+ "itself": 1,
+ "fully": 1,
+ "Acc": 2,
+ "true": 1,
+ "_": 1,
+ "VS": 4,
+ "Component": 6,
+ "ES": 3,
+ "Con": 8,
+ "verts": 4,
+ "cons": 1,
+ "place": 3,
+ "partitions": 1,
+ "element": 2,
+ "simple": 3,
+ "CS": 3,
+ "Neighbors": 3,
+ "empty": 1,
+ "intersection": 1,
+ "check": 1,
+ "tests": 1,
+ "set": 1,
+ "chris": 6,
+ "patton": 2,
+ "eric": 1,
+ "nobody": 2,
+ "fail": 1,
+ "when": 1,
+ "wrapper": 1,
+ "function": 1,
+ "html.shen": 1,
+ "html": 2,
+ "generation": 1,
+ "functions": 1,
+ "shen": 1,
+ "The": 1,
+ "standard": 1,
+ "lisp": 1,
+ "conversion": 1,
+ "tool": 1,
+ "suite.": 1,
+ "Follows": 1,
+ "some": 1,
+ "convertions": 1,
+ "Clojure": 1,
+ "tasks": 1,
+ "stuff": 1,
+ "todo1": 1,
+ "today": 1,
+ "attributes": 1,
+ "AS": 1,
+ "load": 1,
+ "JSON": 1,
+ "Lexer": 1,
+ "Read": 1,
+ "stream": 1,
+ "characters": 4,
+ "Whitespace": 4,
+ "not": 1,
+ "strings": 2,
+ "should": 2,
+ "be": 2,
+ "discarded.": 1,
+ "preserved": 1,
+ "Strings": 1,
+ "can": 1,
+ "escaped": 1,
+ "double": 1,
+ "quotes.": 1,
+ "e.g.": 2,
+ "whitespacep": 2,
+ "ASCII": 2,
+ "Space.": 1,
+ "All": 1,
+ "others": 1,
+ "whitespace": 7,
+ "table.": 1,
+ "Char": 4,
+ "member": 1,
+ "replace": 3,
+ "@s": 4,
+ "Suffix": 4,
+ "where": 2,
+ "Prefix": 2,
+ "fetch": 1,
+ "until": 1,
+ "unescaped": 1,
+ "doublequote": 1,
+ "c#34": 5,
+ "WhitespaceChar": 2,
+ "Chars": 4,
+ "strip": 2,
+ "chars": 2,
+ "tokenise": 1,
+ "JSONString": 2,
+ "CharList": 2,
+ "explode": 1
+ },
"Slash": {
"<%>": 1,
"class": 11,
@@ -44203,67 +44696,67 @@
"newplayer.MoveTo": 1
},
"Standard ML": {
+ "structure": 15,
+ "LazyBase": 4,
+ "LAZY_BASE": 5,
+ "struct": 13,
+ "type": 6,
+ "a": 78,
+ "exception": 2,
+ "Undefined": 6,
+ "fun": 60,
+ "delay": 6,
+ "f": 46,
+ "force": 18,
+ "(": 840,
+ ")": 845,
+ "val": 147,
+ "undefined": 2,
+ "fn": 127,
+ "raise": 6,
+ "end": 55,
+ "LazyMemoBase": 4,
+ "datatype": 29,
+ "|": 226,
+ "Done": 2,
+ "of": 91,
+ "lazy": 13,
+ "unit": 7,
+ "-": 20,
+ "let": 44,
+ "open": 9,
+ "B": 2,
+ "inject": 5,
+ "x": 74,
+ "isUndefined": 4,
+ "ignore": 3,
+ ";": 21,
+ "false": 32,
+ "handle": 4,
+ "true": 36,
+ "toString": 4,
+ "if": 51,
+ "then": 51,
+ "else": 51,
+ "eqBy": 5,
+ "p": 10,
+ "y": 50,
+ "eq": 3,
+ "op": 2,
+ "compare": 8,
+ "Ops": 3,
+ "map": 3,
+ "Lazy": 2,
+ "LazyFn": 4,
+ "LazyMemo": 2,
"signature": 2,
- "LAZY_BASE": 3,
"sig": 2,
- "type": 5,
- "a": 74,
- "lazy": 12,
- "-": 19,
- ")": 826,
- "end": 52,
"LAZY": 1,
"bool": 9,
- "val": 143,
- "inject": 3,
- "toString": 3,
- "(": 822,
"string": 14,
- "eq": 2,
"*": 9,
- "eqBy": 3,
- "compare": 7,
"order": 2,
- "map": 2,
"b": 58,
- "structure": 10,
- "Ops": 2,
- "LazyBase": 2,
- "struct": 9,
- "exception": 1,
- "Undefined": 3,
- "fun": 51,
- "delay": 3,
- "f": 37,
- "force": 9,
- "undefined": 1,
- "fn": 124,
- "raise": 5,
- "LazyMemoBase": 2,
- "datatype": 28,
- "|": 225,
- "Done": 1,
- "of": 90,
- "unit": 6,
- "let": 43,
- "open": 8,
- "B": 1,
- "x": 59,
- "isUndefined": 2,
- "ignore": 2,
- ";": 20,
- "false": 31,
- "handle": 3,
- "true": 35,
- "if": 50,
- "then": 50,
- "else": 50,
- "p": 6,
- "y": 44,
- "op": 1,
- "Lazy": 1,
- "LazyFn": 2,
- "LazyMemo": 1,
"functor": 2,
"Main": 1,
"S": 2,
@@ -48459,7 +48952,7 @@
},
"YAML": {
"gem": 1,
- "-": 16,
+ "-": 25,
"local": 1,
"gen": 1,
"rdoc": 2,
@@ -48471,7 +48964,40 @@
"numbers": 1,
"gempath": 1,
"/usr/local/rubygems": 1,
- "/home/gavin/.rubygems": 1
+ "/home/gavin/.rubygems": 1,
+ "http_interactions": 1,
+ "request": 1,
+ "method": 1,
+ "get": 1,
+ "uri": 1,
+ "http": 1,
+ "//example.com/": 1,
+ "body": 3,
+ "headers": 2,
+ "{": 1,
+ "}": 1,
+ "response": 2,
+ "status": 1,
+ "code": 1,
+ "message": 1,
+ "OK": 1,
+ "Content": 2,
+ "Type": 1,
+ "text/html": 1,
+ ";": 1,
+ "charset": 1,
+ "utf": 1,
+ "Length": 1,
+ "This": 1,
+ "is": 1,
+ "the": 1,
+ "http_version": 1,
+ "recorded_at": 1,
+ "Tue": 1,
+ "Nov": 1,
+ "GMT": 1,
+ "recorded_with": 1,
+ "VCR": 1
}
},
"language_tokens": {
@@ -48544,6 +49070,7 @@
"M": 23373,
"Makefile": 50,
"Markdown": 1,
+ "Mask": 74,
"Matlab": 11942,
"Max": 714,
"MediaWiki": 766,
@@ -48594,9 +49121,10 @@
"Scilab": 69,
"SCSS": 39,
"Shell": 3744,
+ "Shen": 3472,
"Slash": 187,
"Squirrel": 130,
- "Standard ML": 6405,
+ "Standard ML": 6567,
"Stylus": 76,
"SuperCollider": 133,
"Tea": 3,
@@ -48617,7 +49145,7 @@
"XQuery": 801,
"XSLT": 44,
"Xtend": 399,
- "YAML": 30
+ "YAML": 77
},
"languages": {
"ABAP": 1,
@@ -48689,6 +49217,7 @@
"M": 28,
"Makefile": 2,
"Markdown": 1,
+ "Mask": 1,
"Matlab": 39,
"Max": 3,
"MediaWiki": 1,
@@ -48739,9 +49268,10 @@
"Scilab": 3,
"SCSS": 1,
"Shell": 37,
+ "Shen": 3,
"Slash": 1,
"Squirrel": 1,
- "Standard ML": 4,
+ "Standard ML": 5,
"Stylus": 1,
"SuperCollider": 1,
"Tea": 1,
@@ -48762,7 +49292,7 @@
"XQuery": 1,
"XSLT": 1,
"Xtend": 2,
- "YAML": 1
+ "YAML": 2
},
- "md5": "cfe1841f5e4b2ab14a1ad53ad64523b8"
+ "md5": "4508fdb043a1f43e9a2250f9b4216e5a"
}
\ No newline at end of file
diff --git a/samples/Standard ML/Foo.ML b/samples/Standard ML/Foo.ML
new file mode 100644
index 00000000..2bbb789e
--- /dev/null
+++ b/samples/Standard ML/Foo.ML
@@ -0,0 +1,75 @@
+
+structure LazyBase:> LAZY_BASE =
+ struct
+ type 'a lazy = unit -> 'a
+
+ exception Undefined
+
+ fun delay f = f
+
+ fun force f = f()
+
+ val undefined = fn () => raise Undefined
+ end
+
+structure LazyMemoBase:> LAZY_BASE =
+ struct
+
+ datatype 'a susp = NotYet of unit -> 'a
+ | Done of 'a
+
+ type 'a lazy = unit -> 'a susp ref
+
+ exception Undefined
+
+ fun delay f =
+ let
+ val r = ref (NotYet f)
+ in
+ fn () => r
+ end
+
+ fun force f =
+ case f() of
+ ref (Done x) => x
+ | r as ref (NotYet f') =>
+ let
+ val a = f'()
+ in
+ r := Done a
+ ; a
+ end
+
+ val undefined = fn () => raise Undefined
+ end
+
+functor LazyFn(B: LAZY_BASE): LAZY' =
+ struct
+
+ open B
+
+ fun inject x = delay (fn () => x)
+
+ fun isUndefined x =
+ (ignore (force x)
+ ; false)
+ handle Undefined => true
+
+ fun toString f x = if isUndefined x then "_|_" else f (force x)
+
+ fun eqBy p (x,y) = p(force x,force y)
+ fun eq (x,y) = eqBy op= (x,y)
+ fun compare p (x,y) = p(force x,force y)
+
+ structure Ops =
+ struct
+ val ! = force
+ val ? = inject
+ end
+
+ fun map f x = delay (fn () => f (force x))
+
+ end
+
+structure Lazy' = LazyFn(LazyBase)
+structure LazyMemo = LazyFn(LazyMemoBase)
From a22ba5659637c920e424dcc2ecc13995a1f1e966 Mon Sep 17 00:00:00 2001
From: Mikulas
Date: Thu, 3 Apr 2014 10:02:06 +0200
Subject: [PATCH 025/229] Added support for Latte
---
lib/linguist/languages.yml | 7 +
samples/Latte/layout.latte | 59 +++++++++
samples/Latte/template.latte | 243 +++++++++++++++++++++++++++++++++++
3 files changed, 309 insertions(+)
create mode 100644 samples/Latte/layout.latte
create mode 100644 samples/Latte/template.latte
diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml
index 6eb2a378..0102e2e2 100644
--- a/lib/linguist/languages.yml
+++ b/lib/linguist/languages.yml
@@ -945,6 +945,13 @@ Lasso:
color: "#2584c3"
primary_extension: .lasso
+Latte:
+ type: markup
+ color: "#A8FF97"
+ group: HTML
+ lexer: Smarty
+ primary_extension: .latte
+
Less:
type: markup
group: CSS
diff --git a/samples/Latte/layout.latte b/samples/Latte/layout.latte
new file mode 100644
index 00000000..5e94975f
--- /dev/null
+++ b/samples/Latte/layout.latte
@@ -0,0 +1,59 @@
+{**
+ * @param string $basePath web base path
+ * @param string $robots tell robots how to index the content of a page (optional)
+ * @param array $flashes flash messages
+ *}
+
+
+
+
+
+
+
+
+
+
+ {ifset $title}{$title} › {/ifset}Translation report
+
+
+
+
+
+
+ {block #head}{/block}
+
+
+
+
+
+ {block #navbar}
+ {include _navbar.latte}
+ {/block}
+
+
+
+
+ {include _flash.latte, flash => $flash}
+
+
+
+ {include #content}
+
+
+
+
+
+ {block #scripts}{/block}
+
+
diff --git a/samples/Latte/template.latte b/samples/Latte/template.latte
new file mode 100644
index 00000000..1718045a
--- /dev/null
+++ b/samples/Latte/template.latte
@@ -0,0 +1,243 @@
+{var $title => "âš {$new->title}"}
+{define author}
+
+
+ {$author->name|trim}
+
+
+ {$author->estimatedTimeTranslated|secondsToTime}{*
+ *} {if $author->joined}, {/if}
+ {if $author->joined}joined {$author->joined|timeAgo}{/if}{*
+ *}{ifset $postfix}, {$postfix}{/ifset}
+{/define}
+{block #scripts}
+
+{/block}
+{block #content}
+
+{if isset($old)}
+ Diffing revision #{$old->revision} and #{$new->revision}
+{else}
+ First revision
+{/if}
+
+{var $editor = $user->loggedIn && $new->language === 'cs'}
+{var $rev = $new->video->siteRevision}
+
+
+
+ published {$new->publishedAt|timeAgo} {*
+ *}{ifset $old},
+
+ {$new->textChange * 100|number} % text change{*
+ *} {*
+ *}{if $new->timeChange},
+
+ {$new->timeChange * 100|number} % timing change
+
+ {/if}
+ {/ifset}
+
+ {cache $new->id, expires => '+4 hours'}
+
+ {if isset($old) && $old->author->name !== $new->author->name}
+ {include author, author => $old->author, class => 'author-old'}
+ —
+ {include author, author => $new->author, class => 'author-new'}
+ {elseif isset($old)}
+ {include author, author => $new->author, class => 'author-new', postfix => 'authored both revisions'}
+ {else}
+ {include author, author => $new->author, class => 'author-new'}
+ {/if}
+
+ {/cache}
+
+ {var $threshold = 10}
+ {cache $new->id}
+ {var $done = $new->timeTranslated}
+ {var $outOf = $new->video->canonicalTimeTranslated}
+ {if $outOf}
+
+ Only {$done|time} translated out of {$outOf|time},
+ {(1-$done/$outOf) * 100|number} % ({$outOf - $done|time}) left
+
+
+ Seems complete: {$done|time} translated out of {$outOf|time}
+
+ {elseif $done}
+
+ Although {$done|time} is translated, there are no English subtitles for comparison.
+
+ {/if}
+ {/cache}
+
+ {if $editor}
+ {var $ksid = $new->video->siteId}
+ {if $ksid}
+
+ Video on khanovaskola.cz
+ {if $new->revision === $rev}
+ (on this revision)
+ {elseif $new->revision > $rev}
+ (on older revision #{$rev})
+ {else}
+ (on newer revision #{$rev})
+ {/if}
+
+ {/if}
+ {/if}
+
+
{$diffs->title|noescape}
+
{$diffs->description|noescape}
+
+
+ {$line->text|noescape}
+
+
+
+
+
+
+
+
+ {if $editor}
+ {if $new->approved}
+
+ Revision has been approved{if $new->editor} by {$new->editor->name}{/if}.
+
+
+
+ Edit on Amara
+
+
+ on Khan Academy
+
+
+ {elseif $new->incomplete}
+
+ Revision has been marked as incomplete by {if $new->editor}{$new->editor->name}{/if}.
+
+ {include editButton}
+ {include kaButton}
+
+ {* else $new->status === UNSET: *}
+ {elseif $new->video->siteId}
+
+ {include kaButton}
+
+ {else}
+
+ {include kaButton}
+
+
Filed under category:
+ {foreach $new->video->categories as $list}
+ — {$list|implode:' › '}{sep} {/sep}
+ {/foreach}
+
+ {/if}
+ {/if}
+
+
+
All revisions:
+
+ {foreach $new->video->getRevisionsIn($new->language) as $revision}
+
+
+ #{$revision->revision}
+
+
+
+
+ {$revision->author->name}
+
+
+
+
+ {$revision->publishedAt|timeAgo}
+
+
+
+ {* vars $outOf, $threshold already set *}
+ {default $outOf = $new->video->canonicalTimeTranslated}
+ {if $outOf} {* ignore if canonical time not set *}
+ {var $done = $revision->timeTranslated}
+
+ {$done/$outOf * 100|number} %
+
+
+ ~100 %
+
+ {/if}
+
+
+ {if $revision->incomplete || $revision->approved}
+ {var $i = $revision->incomplete}
+
+ {if $i}incomplete{else}approved{/if}
+
+ {/if}
+
+ {if $user->loggedIn && $revision->comments->count()}
+
+
+
+
+
+ {/if}
+ {if $user->loggedIn && $new->id === $revision->id}
+
+
+
+ {form commentForm}
+
+ {/form}
+
+ {/if}
+
+ {/foreach}
+
+
+
+
From 9ae0bdbb434aa8f2a92b4c805712fa0f99e03b1c Mon Sep 17 00:00:00 2001
From: Julian Gehring
Date: Thu, 3 Apr 2014 21:29:18 +0200
Subject: [PATCH 026/229] Add R package ignores to vendor.yml
Ignore vignette and external data directories which contain no R source code
---
lib/linguist/vendor.yml | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/lib/linguist/vendor.yml b/lib/linguist/vendor.yml
index 135f367c..53f66bc0 100644
--- a/lib/linguist/vendor.yml
+++ b/lib/linguist/vendor.yml
@@ -182,3 +182,7 @@
# .DS_Store's
- .[Dd][Ss]_[Ss]tore$
+
+# R packages
+- vignettes/
+- inst/extdata/
From 9b8823ab3c4fbc592522b633f49bcc3f65975bc2 Mon Sep 17 00:00:00 2001
From: MK
Date: Fri, 11 Apr 2014 10:18:20 -0400
Subject: [PATCH 027/229] Added Buildr 'Buildfile' and 'buildfile'
All other options (as listed at https://github.com/apache/buildr/blob/master/lib/buildr/core/application.rb#L110) are already covered by other things here.
---
lib/linguist/languages.yml | 2 ++
1 file changed, 2 insertions(+)
diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml
index 6eb2a378..3e101649 100644
--- a/lib/linguist/languages.yml
+++ b/lib/linguist/languages.yml
@@ -1544,12 +1544,14 @@ Ruby:
filenames:
- Appraisals
- Berksfile
+ - Buildfile
- Gemfile
- Gemfile.lock
- Guardfile
- Podfile
- Thorfile
- Vagrantfile
+ - buildfile
Rust:
type: programming
From 96561c24be3f6a31fc85e252d0637b3afd0af7d5 Mon Sep 17 00:00:00 2001
From: Steven Normore
Date: Wed, 16 Apr 2014 16:59:26 -0400
Subject: [PATCH 028/229] change golang color to #3399ff
---
lib/linguist/languages.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml
index 95b94f20..f658640f 100644
--- a/lib/linguist/languages.yml
+++ b/lib/linguist/languages.yml
@@ -669,7 +669,7 @@ Glyph:
Go:
type: programming
- color: "#a89b4d"
+ color: "#3399ff"
primary_extension: .go
Gosu:
From 3d4b682d6320113e68e4ffbd9577c324658eebab Mon Sep 17 00:00:00 2001
From: Jasen Borisov
Date: Thu, 17 Apr 2014 17:04:12 +0900
Subject: [PATCH 029/229] Add .vshader, .fshader, .gshader files for GLSL.
---
lib/linguist/languages.yml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml
index 95b94f20..e89019bf 100644
--- a/lib/linguist/languages.yml
+++ b/lib/linguist/languages.yml
@@ -637,6 +637,9 @@ GLSL:
- .geom
- .glslv
- .shader
+ - .vshader
+ - .fshader
+ - .gshader
- .vert
Genshi:
From 5606916d99792dc552b41ac2bcc0425bde2aec94 Mon Sep 17 00:00:00 2001
From: Jasen Borisov
Date: Thu, 17 Apr 2014 20:50:37 +0900
Subject: [PATCH 030/229] Oops, looks like this has to be alphabetical...
---
lib/linguist/languages.yml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml
index e89019bf..611d931c 100644
--- a/lib/linguist/languages.yml
+++ b/lib/linguist/languages.yml
@@ -634,13 +634,13 @@ GLSL:
extensions:
- .fp
- .frag
+ - .fshader
- .geom
- .glslv
- - .shader
- - .vshader
- - .fshader
- .gshader
+ - .shader
- .vert
+ - .vshader
Genshi:
primary_extension: .kid
From 9f49efef0ac9029916c6b6800cf3dbbc9acb149c Mon Sep 17 00:00:00 2001
From: Paul Chaignon
Date: Tue, 22 Apr 2014 10:34:19 +0200
Subject: [PATCH 031/229] New file extensions and samples for SQL
---
lib/linguist/languages.yml | 5 +
samples/SQL/AvailableInSearchSel.prc | 19 +++
samples/SQL/db.sql | 225 +++++++++++++++++++++++++++
samples/SQL/filial.tab | 22 +++
samples/SQL/object-update.udf | 8 +
samples/SQL/suspendedtoday.viw | 6 +
6 files changed, 285 insertions(+)
create mode 100644 samples/SQL/AvailableInSearchSel.prc
create mode 100644 samples/SQL/db.sql
create mode 100644 samples/SQL/filial.tab
create mode 100644 samples/SQL/object-update.udf
create mode 100644 samples/SQL/suspendedtoday.viw
diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml
index d77f5622..473b657e 100644
--- a/lib/linguist/languages.yml
+++ b/lib/linguist/languages.yml
@@ -1681,6 +1681,11 @@ SQL:
ace_mode: sql
searchable: false
primary_extension: .sql
+ extensions:
+ - .prc
+ - .tab
+ - .udf
+ - .viw
Sage:
type: programming
diff --git a/samples/SQL/AvailableInSearchSel.prc b/samples/SQL/AvailableInSearchSel.prc
new file mode 100644
index 00000000..b37a89c5
--- /dev/null
+++ b/samples/SQL/AvailableInSearchSel.prc
@@ -0,0 +1,19 @@
+IF EXISTS (SELECT * FROM DBO.SYSOBJECTS WHERE ID = OBJECT_ID(N'dbo.AvailableInSearchSel') AND OBJECTPROPERTY(id, N'IsProcedure') = 1)
+ DROP PROCEDURE dbo.AvailableInSearchSel
+GO
+CREATE Procedure AvailableInSearchSel
+AS
+
+ SELECT '-1',
+ 'Select...'
+ UNION ALL
+ SELECT '1',
+ 'Yes'
+ UNION ALL
+ SELECT '0',
+ 'No'
+GO
+IF DB_NAME() = 'Diebold' BEGIN
+ GRANT EXECUTE ON dbo.AvailableInSearchSel TO [rv]
+END
+GO
diff --git a/samples/SQL/db.sql b/samples/SQL/db.sql
new file mode 100644
index 00000000..860dcb0f
--- /dev/null
+++ b/samples/SQL/db.sql
@@ -0,0 +1,225 @@
+SHOW WARNINGS;
+--
+-- Table structure for table `articles`
+--
+CREATE TABLE IF NOT EXISTS `articles` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `title` varchar(255) DEFAULT NULL,
+ `content` longtext,
+ `date_posted` datetime NOT NULL,
+ `created_by` varchar(255) NOT NULL,
+ `last_modified` datetime DEFAULT NULL,
+ `last_modified_by` varchar(255) DEFAULT NULL,
+ `ordering` int(10) DEFAULT '0',
+ `is_published` int(1) DEFAULT '1',
+ PRIMARY KEY (`id`)
+);
+
+--
+-- Dumping data for table `articles`
+--
+
+INSERT INTO `articles` (`title`, `content`, `date_posted`, `created_by`, `last_modified`, `last_modified_by`, `ordering`, `is_published`) VALUES
+('Welcome', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed interdum, felis ac pellentesque feugiat, massa enim sagittis elit, sed dignissim sem ligula non nisl. Sed pulvinar nunc nec eros aliquet non tempus diam vehicula. Nunc tincidunt, leo ut interdum tristique, quam ligula porttitor tellus, at tincidunt magna enim nec arcu. Nunc tempor egestas libero. Vivamus nulla ligula, vehicula vitae mattis quis, laoreet eget urna. Proin eget est quis urna venenatis dictum nec vel lectus. Nullam sit amet vehicula leo. Sed commodo, orci vitae facilisis accumsan, arcu justo sagittis risus, quis aliquet purus neque eu odio. Mauris lectus orci, tincidunt in varius quis, dictum sed nibh. Quisque dapibus mollis blandit. Donec vel tellus nisl, sed scelerisque felis. Praesent ut eros tortor, sed molestie nunc. Duis eu massa at justo iaculis gravida.
\r\nIn adipiscing dictum risus a tincidunt. Sed nisi ipsum, rutrum sed ornare in, bibendum at augue. Integer ornare semper varius. Integer luctus vehicula elementum. Donec cursus elit quis erat laoreet elementum. Praesent eget justo purus, vitae accumsan massa. Ut tristique, mauris non dignissim luctus, velit justo sollicitudin odio, vel rutrum purus enim eu felis. In adipiscing elementum sagittis. Nam sed dui ante. Nunc laoreet hendrerit nisl vitae porta. Praesent sit amet ligula et nisi vulputate volutpat. Maecenas venenatis iaculis sapien sit amet auctor. Curabitur euismod venenatis velit non tempor. Cras vel sapien purus, mollis fermentum nulla. Mauris sed elementum enim. Donec ultrices urna at justo adipiscing rutrum.
', '2012-08-09 01:19:59', 'admin',NULL, NULL, 0, 1);
+
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table `challenges`
+--
+
+CREATE TABLE IF NOT EXISTS `challenges` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `title` varchar(255) DEFAULT NULL,
+ `pkg_name` varchar(255) NOT NULL,
+ `description` text,
+ `author` varchar(255) NOT NULL,
+ `category` varchar(255) NOT NULL,
+ `date_posted` datetime NOT NULL,
+ `visibility` varchar(255) DEFAULT 'private',
+ `publish` int(10) DEFAULT '0',
+ `abstract` varchar(255) DEFAULT NULL,
+ `level` varchar(255) DEFAULT NULL,
+ `duration` int(11) DEFAULT NULL,
+ `goal` varchar(255) DEFAULT NULL,
+ `solution` varchar(255) DEFAULT NULL,
+ `availability` varchar(255) DEFAULT 'private',
+ `default_points` int(11) DEFAULT NULL,
+ `default_duration` int(11) DEFAULT NULL,
+ PRIMARY KEY (`id`)
+);
+
+--
+-- Dumping data for table `challenges`
+--
+
+INSERT INTO `challenges` (`title`, `pkg_name`, `description`, `author`, `category`, `date_posted`, `visibility`, `publish`, `abstract`, `level`, `duration`, `goal`, `solution`, `availability`, `default_points`, `default_duration`) VALUES
+('Challenge 1', 'ch001', 'Our agents (hackers) informed us that there reasonable suspicion \r\nthat the site of this Logistics Company is a blind \r\nfor a human organs'' smuggling organisation. This organisation attracts its \r\nvictims through advertisments for jobs with very high salaries. They choose those ones who \r\ndo not have many relatives, they assasinate them and then sell their organs to very rich \r\nclients, at very high prices. These employees are registered in the secret \r\nfiles of the company as "special clients"! One of our agents has been hired \r\nas by the particular company. Unfortunately, since 01/01/2007 he has gone missing. \r\n We know that our agent is alive, but we cannot contact him. Last time he \r\ncommunicated with us, he mentioned that we could contact him at the e-mail address the \r\ncompany has supplied him with, should there a problem arise. The problem is \r\nthat when we last talked to him, he had not a company e-mail address yet, but he told us \r\nthat his e-mail can be found through the company''s site. The only thing we \r\nremember is that he was hired on Friday the 13th! You have to find his e-mail \r\naddress and send it to us by using the central communication panel of the company''s \r\nsite. Good luck!!!', 'Andreas Venieris,\n Konstantinos Papapanagiotou,\n \n Anastasios Stasinopoulos,\n Vasilios Vlachos,\n Alexandros \nPapanikolaou', 'web', '2012-08-09 00:23:14', 'public', 1, NULL, '1', 60, NULL, NULL, 'public', 1, 60),
+('Challenge 2', 'ch002', 'Your Country needs your help for finding the password of an enemy \r\n\r\nsite that contains useful information, which if is not acquired on time, peace in our \r\n\r\narea will be at stake. \n You must therefore succeed in finding the \r\n\r\npassword of this military SITE . Good luck!', 'Andreas Venieris,\n Konstantinos Papapanagiotou,\n Anastasios \r\n\r\nStasinopoulos,\n Vasilios Vlachos,\n Alexandros Papanikolaou', 'web', '0000-00-00 00:00:00', 'public', 1, NULL, '1', 60, NULL, NULL, 'public', 1, 60),
+('Challenge 3', 'ch003', 'XSS permits a malevolent user to inject his own code in vulnerable \r\n\r\nweb pages. According to the OWASP 2010 Top 10 Application Security Risks, XSS attacks \r\n\r\nrank 2nd in the "most dangerous" list. Your objective is to make an alert \r\n\r\nbox appear HERE bearing the message: \r\n\r\n"XSS! ".', 'Andreas Venieris,\n Konstantinos Papapanagiotou,\n \r\n\r\n Anastasios Stasinopoulos,\n Vasilios Vlachos,\n Alexandros \r\n\r\nPapanikolaou', 'web', '2012-08-09 00:24:46', 'public', 1, NULL, '1', 60, NULL, NULL, 'public', 1, 60),
+('Challenge 4', 'ch004', 'A hacker informed us that this site suffers from an XSS-like type of vulnerability. Unfortunately, he \r\n\r\nlost the notes he had written regarding how exactly did he exploit the aforementioned \r\n\r\nvulnerability. Your objective is to make an alert box appear, bearing the message \r\n\r\n"XSS! ". It should be noted, however, that this site has some protection \r\n\r\nagainst such attacks.', 'Andreas Venieris,\n Konstantinos Papapanagiotou,\n \r\n\r\nAnastasios Stasinopoulos,\n Vasilios Vlachos,\n Alexandros \r\n\r\nPapanikolaou', 'web', '2012-08-09 00:25:25', 'public', 1, NULL, '1', 60, NULL, NULL, 'public', 1, 60),
+('Challenge 5', 'ch005', 'You need to get access to the contents of this SITE . In order to achieve this, however, you \r\n\r\nmust buy the "p0wnBrowser" web browser. Since it is too expensive, you will have to \r\n\r\n"fool" the system in some way, so that it let you read the site''s contents.', 'Andreas \r\n\r\nVenieris,\n Konstantinos Papapanagiotou,\n Anastasios Stasinopoulos,\n \r\n\r\nVasilios Vlachos,\n Alexandros Papanikolaou', 'web', '2012-08-09 00:26:09', 'public', 1, NULL, '1', 60, NULL, NULL, 'public', 1, 60),
+('Challenge 6', 'ch006', 'In this assignment you must prove your... knightly skills! Real \r\n\r\nknights have not disappeared.They still exist, keeping their secrets well hidden. \r\n\r\nYour mission is to infiltrate their SITE . \r\n\r\nThere is a small problem, however... We don''t know the password! Perhaps you could \r\n\r\nfind it? Let''s see! g00d luck dudes!', 'Andreas Venieris,\n Konstantinos \r\n\r\nPapapanagiotou,\n Anastasios Stasinopoulos,\n Vasilios Vlachos,\n \r\n\r\nAlexandros Papanikolaou', 'web', '2012-08-09 00:26:52', 'public', 1, NULL, '1', 60, NULL, NULL, 'public', 1, 60),
+('Challenge 7', 'ch007', 'A good friend of mine studies at Acme University, in the Computer Science and Telecomms Department . \r\n\r\nUnfortunately, her grades are not that good. You are now thinking "This is big news!"... \r\n\r\nHmmm, maybe not. What is big news, however, is this: The network administrator asked for \r\n\r\n3,000 euros to change her marks into A''s. This is obviously a case of administrative \r\n\r\nauthority abuse. Hence... a good chance for D-phase and public exposure... I need to \r\n\r\nget into the site as admin and upload an index.htm file in the web-root directory, that \r\n\r\nwill present all required evidence for the University''s latest "re-marking" practices!\r\n\r\n I only need you to find the admin password for me... Good \r\n\r\nLuck!', 'Andreas Venieris,\n Konstantinos Papapanagiotou,\n Anastasios \r\n\r\nStasinopoulos,\n Vasilios Vlachos,\n Alexandros Papanikolaou', 'web', '0000-00-00 00:00:00', 'public', 1, NULL, '1', 60, NULL, NULL, 'public', 1, 60),
+('Challenge 8', 'ch008', 'You have managed, after several tries, to install a backdoor shell \r\n\r\n(Locus7Shell) to trytohack.gr The \r\n\r\nproblem is that, in order to execute the majority of the commands (on the machine running \r\n\r\nthe backdoor) you must have super-user rights (root). Your aim is to obtain \r\n\r\nroot rights.', 'Andreas Venieris,\n Konstantinos Papapanagiotou,\n Anastasios \r\n\r\nStasinopoulos,\n Vasilios Vlachos,\n Alexandros Papanikolaou', 'web', '0000-00-00 00:00:00', 'public', 1, NULL, '1', 60, NULL, NULL, 'public', 1, 60),
+('Challenge 9', 'ch009', 'A friend of yours has set up a news blog at slagoff.com . However, he is kind of worried \r\n\r\nregarding the security of the news that gets posted on the blog and has asked you to check \r\n\r\nhow secure it is. Your objective is to determine whether any vulnerabilities \r\n\r\nexist that, if exploited, can grant access to the blog''s server. Hint: A \r\n\r\nspecially-tailored backdoor shell can be found at "http://www.really_nasty_hacker.com/shell.txt ".', 'Andreas Venieris,\n \r\n\r\nKonstantinos Papapanagiotou,\n Anastasios Stasinopoulos,\n Vasilios Vlachos,\r\n\r\n\n Alexandros Papanikolaou', 'web', '2012-08-09 00:31:31', 'public', 1, NULL, '1', 60, NULL, NULL, 'public', 1, 60),
+('Challenge 10', 'ch010', 'Would you like to become an active hacker ? How about \r\n\r\nbecoming a member of the world''s largest hacker group: The n1nJ4.n4x0rZ.CreW! \r\n\r\n Before you can join though, you ''ll have to prove yourself worthy by passing the \r\n\r\ntest that can be found at: http://n1nj4h4x0rzcr3w.com If you succeed in completing the challenge, \r\n\r\nyou will get a serial number, which you will use for obtaining the password that will \r\n\r\nenable you to join the group. Your objective is to bypass the authentication \r\n\r\nmechanism, find the serial number and be supplied with your own username and password from \r\n\r\n the admin team of the site.', 'Andreas Venieris,\n Konstantinos Papapanagiotou,\n \r\n\r\n Anastasios Stasinopoulos,\n Vasilios Vlachos,\n Alexandros \r\n\r\nPapanikolaou', 'web', '2012-08-09 00:32:07', 'public', 1, NULL, '1', 60, NULL, NULL, 'public', 1, 60),
+('Example Template For Challenge xml Files creation', 'example', 'Insert some text describing the scenario of the challenge(what the users are supposed to do and if there is any fictional story)
', 'Name or email or both', 'In what category does your challenge belong?(web? crypto? networks?)', '2012-10-16 22:35:01', 'private', 0, NULL, '1', 60, NULL, NULL, 'private', 1, 0),
+('cookiEng', 'cookiEng', 'Hello, we have heard that you are one of the best hackers in our country. We need your services. You must visit an underground site and find the right password. With this password we will cancel 100k+ illegal gun and drug deals!\n The good news are that we have the directory where the password is stored. Its here \\\"/t0psec.php\\\".\n The bad news are that we have no access there. Only the administrator does. Go and find the password for us! Good luck!
', 'Nikos Danopoulos', 'web', '2012-08-09 00:32:07', 'public', 1, NULL, '1', 60, NULL, NULL, 'public', 1, 60),
+('Izon Challenge', 'izon', 'After the mysterious disappearance of your best friend, you are contacted by an unknown individual who claims to have information about your friend. This individual identifies himself as \"Mister Jax\" and claims that is a former colleague of your friend.
Your friend was working at Izon Corporation, a weapons manufactured and government contractor as a systems engineer. Mister Jax didn\'t tell you his role in Izon, but wants you to pass through a series of tests to infiltrate Izon\'s web security to find the truth about your friend
After much consideration you agree with Mister Jax and he, remotely, sets up your computer to look like as if it is a part of Izon\'s Virtual Private Network in order to access their site. He also said that he\'ll guide you while you work your way to uncover the truth about your lost friend
Here is a copy of Mister Jax\'s last email:
The task is simple: You get in, get your information and get out.\r\nYour friend was either a dumb programmer or a brilliant one, he left\r\nmany holes to be exploited in order to gain higher access to the site.\r\nI\'ll be guiding you with tips while you try to hack through Izon\'s site.\r\nThere are four tasks, some related to each other, some not.\r\nYou need to use your skills to overcome the obstacles, knowledge will come along.\r\nSixty minutes will suffice. When they\'re over, I won\'t be able to offer any\r\ncover to you, and you\'ll be compromised, with unknown consequences, I\'m afraid.\r\nI\'ll be seeing you there.\r\n\r\ - Jax
Once you get in, you\'ll have sixty minutes to complete this challenge. Use common sense, remember that the most obvious place hides the most important stuff and try to behave as if you were hacking a real system.
Good Luck!
', 'Vasileios Mplanas', 'web', '2014-03-27 00:00:00', 'public', 1, NULL, '1', 60, NULL, NULL, 'public', 10, 60);
+-- --------------------------------------------------------
+
+--
+-- Table structure for table `challenge_attempts`
+--
+
+CREATE TABLE IF NOT EXISTS `challenge_attempts` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `user_id` int(11) NOT NULL,
+ `challenge_id` int(11) NOT NULL,
+ `time` datetime NOT NULL,
+ `status` varchar(255) NOT NULL,
+ PRIMARY KEY (`id`)
+);
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table `challenge_attempt_count`
+--
+
+CREATE TABLE IF NOT EXISTS `challenge_attempt_count` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `user_id` int(11) NOT NULL,
+ `challenge_id` int(11) NOT NULL,
+ `tries` int(11) DEFAULT NULL,
+ PRIMARY KEY (`id`),
+ UNIQUE KEY `user_id` (`user_id`),
+ UNIQUE KEY `challenge_id` (`challenge_id`)
+);
+-- --------------------------------------------------------
+
+--
+-- Table structure for table `classes`
+--
+
+CREATE TABLE IF NOT EXISTS `classes` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `name` varchar(255) NOT NULL,
+ `date_created` datetime NOT NULL,
+ `archive` int(1) DEFAULT '0',
+ PRIMARY KEY (`id`)
+);
+
+--
+-- Dumping data for table `classes`
+--
+
+INSERT INTO `classes` (`name`, `date_created`, `archive`) VALUES
+('Sample Class', '2012-08-09 00:43:48', 0),
+('fooClass', '2012-10-16 22:32:43', 0);
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table `class_challenges`
+--
+
+CREATE TABLE IF NOT EXISTS `class_challenges` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `challenge_id` int(11) NOT NULL,
+ `class_id` int(11) NOT NULL,
+ `date_created` datetime NOT NULL,
+ PRIMARY KEY (`id`)
+);
+
+--
+-- Dumping data for table `class_challenges`
+--
+
+INSERT INTO `class_challenges` (`challenge_id`, `class_id`, `date_created`) VALUES
+(1, 1, '2012-08-09 01:01:07'),
+(2, 1, '2012-08-09 01:01:07'),
+(3, 1, '2012-08-09 01:01:07'),
+(4, 1, '2012-08-09 01:01:07'),
+(5, 1, '2012-08-09 01:01:07'),
+(6, 1, '2012-08-09 01:01:07'),
+(7, 1, '2012-08-09 01:01:07'),
+(9, 1, '2012-08-09 01:01:07'),
+(10, 1, '2012-08-09 01:01:07'),
+(1, 2, '2012-10-16 22:32:49'),
+(4, 2, '2012-10-16 22:32:52'),
+(9, 2, '2012-10-16 22:32:53'),
+(10, 2, '2012-10-16 22:32:55'),
+(8, 2, '2012-10-16 22:32:58');
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table `class_memberships`
+--
+
+CREATE TABLE IF NOT EXISTS `class_memberships` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `user_id` int(11) NOT NULL,
+ `class_id` int(11) NOT NULL,
+ `date_created` datetime NOT NULL,
+ PRIMARY KEY (`user_id`,`class_id`),
+ UNIQUE KEY `id` (`id`)
+);
+
+--
+-- Dumping data for table `class_memberships`
+--
+
+INSERT INTO `class_memberships` (`user_id`, `class_id`, `date_created`) VALUES
+( 1, 1, '2012-08-09 00:59:00'),
+( 2, 1, '2012-08-09 00:59:00'),
+( 3, 1, '2012-08-09 00:59:00'),
+( 4, 2, '2012-10-16 22:33:07'),
+( 5, 2, '2012-10-16 22:33:13');
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table `users`
+--
+
+CREATE TABLE IF NOT EXISTS `users` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `username` varchar(255) NOT NULL,
+ `full_name` varchar(255) NOT NULL,
+ `email` varchar(100) NOT NULL,
+ `password` varchar(255) NOT NULL,
+ `joined` datetime NOT NULL,
+ `last_visit` datetime DEFAULT NULL,
+ `is_activated` int(1) DEFAULT '0',
+ `type` int(10) DEFAULT '0',
+ `token` int(10) DEFAULT '0',
+ PRIMARY KEY (`username`),
+ UNIQUE KEY `id` (`id`)
+);
+
+--
+-- Dumping data for table `users`
+--
+
+INSERT INTO `users` (`username`, `full_name`, `email`, `password`, `joined`, `last_visit`, `is_activated`, `type`, `token`) VALUES
+('bar', 'mr. bar', 'bar@owasp.com', '$P$BJ8UtXZYqS/Lokm8zFMwcxO8dq797P.', '2012-10-16 22:12:52', '2012-10-16 22:22:39', 0, 0, 0),
+('foo', 'mr. foo', 'foo@owasp.com', '$P$BxCHeVG1RMF06UxwRbrVQtPA1yOwAq.', '2012-10-16 22:12:34', '2012-10-16 22:59:29', 0, 0, 0),
+('sensei', 'waspy sifu', 'waspy@owasp.sifu', '$P$Bj/JtLJJR3bUD0LLWXL2UW9DuRVo0I.', '2012-10-16 22:36:06', '2012-10-16 22:37:04', 1, 2, 0);
+
+--
+-- Table structure for table `user_has_challenge_token`
+--
+DROP TABLE IF EXISTS `user_has_challenge_token`;
+CREATE TABLE IF NOT EXISTS `user_has_challenge_token` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `user_id` varchar(512) NOT NULL,
+ `challenge_id` varchar(512) NOT NULL,
+ `token` varchar(256) NOT NULL,
+ PRIMARY KEY (`id`)
+);
+
+SHOW WARNINGS;
diff --git a/samples/SQL/filial.tab b/samples/SQL/filial.tab
new file mode 100644
index 00000000..44140e9e
--- /dev/null
+++ b/samples/SQL/filial.tab
@@ -0,0 +1,22 @@
+create table FILIAL
+(
+ id NUMBER not null,
+ title_ua VARCHAR2(128) not null,
+ title_ru VARCHAR2(128) not null,
+ title_eng VARCHAR2(128) not null,
+ remove_date DATE,
+ modify_date DATE,
+ modify_user VARCHAR2(128)
+)
+;
+alter table FILIAL
+ add constraint PK_ID primary key (ID);
+grant select on FILIAL to ATOLL;
+grant select on FILIAL to CRAMER2GIS;
+grant select on FILIAL to DMS;
+grant select on FILIAL to HPSM2GIS;
+grant select on FILIAL to PLANMONITOR;
+grant select on FILIAL to SIEBEL;
+grant select on FILIAL to VBIS;
+grant select on FILIAL to VPORTAL;
+
diff --git a/samples/SQL/object-update.udf b/samples/SQL/object-update.udf
new file mode 100644
index 00000000..4b4a6d6e
--- /dev/null
+++ b/samples/SQL/object-update.udf
@@ -0,0 +1,8 @@
+
+if not exists(select * from sysobjects where name = '%object_name%' and type in (N'FN', N'IF', N'TF', N'FS', N'FT'))
+ exec('create FUNCTION dbo.%object_name%() returns int as begin return null end')
+GO
+
+%object_ddl%
+
+go
diff --git a/samples/SQL/suspendedtoday.viw b/samples/SQL/suspendedtoday.viw
new file mode 100644
index 00000000..f9de6e6d
--- /dev/null
+++ b/samples/SQL/suspendedtoday.viw
@@ -0,0 +1,6 @@
+use translog;
+DROP VIEW IF EXISTS `suspendedtoday`;
+
+create view suspendedtoday as
+select * from suspended
+where datediff(datetime, now()) = 0;
From d8cc60a026bea2336d33fad8b2e18874dcb87db7 Mon Sep 17 00:00:00 2001
From: Sebastian Godelet
Date: Tue, 22 Apr 2014 14:02:53 +0200
Subject: [PATCH 032/229] fix moocode, add ace_mode for Mercury
---
lib/linguist/languages.yml | 2 +
lib/linguist/samples.json | 110630 +++++++++++++------------
samples/Moocode/moocode_toolkit.moo | 2196 +
3 files changed, 57747 insertions(+), 55081 deletions(-)
create mode 100644 samples/Moocode/moocode_toolkit.moo
diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml
index d77f5622..5af20d40 100644
--- a/lib/linguist/languages.yml
+++ b/lib/linguist/languages.yml
@@ -1185,6 +1185,7 @@ Mercury:
primary_extension: .mercury
# Mercury's syntax is not prolog syntax, but they do share the lexer
lexer: Prolog
+ ace_mode: prolog
extensions:
- .m
- .moo
@@ -1210,6 +1211,7 @@ Monkey:
primary_extension: .monkey
Moocode:
+ type: programming
lexer: MOOCode
primary_extension: .moo
diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json
index fe136b2f..ed26af32 100644
--- a/lib/linguist/samples.json
+++ b/lib/linguist/samples.json
@@ -1,169 +1,117 @@
{
"extnames": {
- "ABAP": [
- ".abap"
+ "Groovy": [
+ ".gradle",
+ ".script!"
],
- "Agda": [
- ".agda"
+ "Grammatical Framework": [
+ ".gf"
],
- "Alloy": [
- ".als"
+ "Elm": [
+ ".elm"
],
- "Apex": [
- ".cls"
+ "Gnuplot": [
+ ".gnu",
+ ".gp"
],
- "AppleScript": [
- ".applescript"
+ "SourcePawn": [
+ ".sp"
],
- "Arduino": [
- ".ino"
+ "Markdown": [
+ ".md"
+ ],
+ "Hy": [
+ ".hy"
+ ],
+ "Groovy Server Pages": [
+ ".gsp"
+ ],
+ "VHDL": [
+ ".vhd"
+ ],
+ "Awk": [
+ ".awk"
+ ],
+ "JSON": [
+ ".json",
+ ".lock"
+ ],
+ "OpenCL": [
+ ".cl"
+ ],
+ "Handlebars": [
+ ".handlebars",
+ ".hbs"
+ ],
+ "XSLT": [
+ ".xslt"
+ ],
+ "LiveScript": [
+ ".ls"
],
"AsciiDoc": [
".adoc",
".asc",
".asciidoc"
],
- "AspectJ": [
- ".aj"
+ "JavaScript": [
+ ".js",
+ ".script!"
],
- "ATS": [
- ".atxt",
- ".dats",
- ".hats",
- ".sats"
+ "Oxygene": [
+ ".oxygene"
],
- "AutoHotkey": [
- ".ahk"
+ "SuperCollider": [
+ ".scd"
],
- "Awk": [
- ".awk"
- ],
- "BlitzBasic": [
- ".bb"
- ],
- "Bluespec": [
- ".bsv"
- ],
- "Brightscript": [
- ".brs"
- ],
- "C": [
- ".c",
- ".cats",
- ".h"
- ],
- "C#": [
- ".cs",
- ".cshtml"
- ],
- "C++": [
- ".cc",
- ".cpp",
- ".h",
- ".hpp",
- ".inl"
- ],
- "Ceylon": [
- ".ceylon"
- ],
- "Cirru": [
- ".cirru"
- ],
- "Clojure": [
- ".cl2",
- ".clj",
- ".cljc",
- ".cljs",
- ".cljscm",
- ".cljx",
- ".hic"
- ],
- "COBOL": [
- ".cbl",
- ".ccp",
- ".cob",
- ".cpy"
- ],
- "CoffeeScript": [
- ".coffee"
- ],
- "Common Lisp": [
- ".lisp"
- ],
- "Coq": [
- ".v"
- ],
- "Creole": [
- ".creole"
- ],
- "CSS": [
- ".css"
- ],
- "Cuda": [
- ".cu",
- ".cuh"
- ],
- "Dart": [
- ".dart"
- ],
- "Diff": [
- ".patch"
+ "Alloy": [
+ ".als"
],
"DM": [
".dm"
],
- "Dogescript": [
- ".djs"
+ "Less": [
+ ".less"
],
- "Eagle": [
- ".brd",
- ".sch"
+ "CSS": [
+ ".css"
],
- "ECL": [
- ".ecl"
+ "Coq": [
+ ".v"
],
- "edn": [
- ".edn"
+ "XC": [
+ ".xc"
],
- "Elm": [
- ".elm"
+ "XML": [
+ ".ant",
+ ".ivy",
+ ".xml"
],
- "Emacs Lisp": [
- ".el"
+ "OCaml": [
+ ".eliom",
+ ".ml"
],
- "Erlang": [
- ".erl",
- ".escript",
+ "Python": [
+ ".py",
".script!"
],
- "fish": [
- ".fish"
+ "Logos": [
+ ".xm"
],
- "Forth": [
- ".forth",
- ".fth"
+ "JSON5": [
+ ".json5"
],
- "Frege": [
- ".fr"
+ "wisp": [
+ ".wisp"
],
- "Game Maker Language": [
- ".gml"
+ "Creole": [
+ ".creole"
],
- "GAP": [
- ".g",
- ".gd",
- ".gi"
+ "MediaWiki": [
+ ".mediawiki"
],
- "GAS": [
- ".s"
- ],
- "GLSL": [
- ".fp",
- ".glsl"
- ],
- "Gnuplot": [
- ".gnu",
- ".gp"
+ "Idris": [
+ ".idr"
],
"Gosu": [
".gs",
@@ -171,196 +119,12 @@
".gsx",
".vark"
],
- "Grammatical Framework": [
- ".gf"
- ],
- "Groovy": [
- ".gradle",
- ".script!"
- ],
- "Groovy Server Pages": [
- ".gsp"
- ],
- "Haml": [
- ".haml"
- ],
- "Handlebars": [
- ".handlebars",
- ".hbs"
- ],
- "Hy": [
- ".hy"
- ],
- "IDL": [
- ".dlm",
- ".pro"
- ],
- "Idris": [
- ".idr"
- ],
- "Ioke": [
- ".ik"
- ],
- "Jade": [
- ".jade"
- ],
- "Java": [
- ".java"
- ],
- "JavaScript": [
- ".js",
- ".script!"
- ],
- "JSON": [
- ".json",
- ".lock"
- ],
- "JSON5": [
- ".json5"
- ],
- "JSONiq": [
- ".jq"
- ],
- "JSONLD": [
- ".jsonld"
- ],
- "Julia": [
- ".jl"
- ],
- "Kotlin": [
- ".kt"
- ],
- "KRL": [
- ".krl"
- ],
- "Lasso": [
- ".las",
- ".lasso",
- ".lasso9",
- ".ldml"
- ],
- "Less": [
- ".less"
- ],
- "LFE": [
- ".lfe"
- ],
- "Literate Agda": [
- ".lagda"
- ],
- "Literate CoffeeScript": [
- ".litcoffee"
- ],
- "LiveScript": [
- ".ls"
- ],
- "Logos": [
- ".xm"
- ],
- "Logtalk": [
- ".lgt"
- ],
- "Lua": [
- ".pd_lua"
- ],
- "M": [
- ".m"
- ],
- "Makefile": [
- ".script!"
- ],
- "Markdown": [
- ".md"
- ],
- "Mask": [
- ".mask"
- ],
- "Mathematica": [
- ".m"
- ],
- "Matlab": [
- ".m"
- ],
- "Max": [
- ".maxhelp",
- ".maxpat",
- ".mxt"
- ],
- "MediaWiki": [
- ".mediawiki"
- ],
- "Mercury": [
- ".m",
- ".moo"
- ],
- "Monkey": [
- ".monkey"
- ],
- "Moocode": [
- ".moo"
- ],
- "MoonScript": [
- ".moon"
- ],
- "Nemerle": [
- ".n"
- ],
- "NetLogo": [
- ".nlogo"
- ],
- "Nimrod": [
- ".nim"
- ],
- "NSIS": [
- ".nsh",
- ".nsi"
- ],
- "Nu": [
- ".nu",
- ".script!"
- ],
- "Objective-C": [
- ".h",
- ".m"
- ],
- "Objective-C++": [
- ".mm"
- ],
- "OCaml": [
- ".eliom",
- ".ml"
- ],
- "Omgrofl": [
- ".omgrofl"
+ "fish": [
+ ".fish"
],
"Opa": [
".opa"
],
- "OpenCL": [
- ".cl"
- ],
- "OpenEdge ABL": [
- ".cls",
- ".p"
- ],
- "Org": [
- ".org"
- ],
- "Oxygene": [
- ".oxygene"
- ],
- "Parrot Assembly": [
- ".pasm"
- ],
- "Parrot Internal Representation": [
- ".pir"
- ],
- "Pascal": [
- ".dpr"
- ],
- "PAWN": [
- ".pwn"
- ],
"Perl": [
".fcgi",
".pl",
@@ -368,60 +132,222 @@
".script!",
".t"
],
- "Perl6": [
- ".p6",
- ".pm6"
+ "UnrealScript": [
+ ".uc"
],
- "PHP": [
- ".module",
- ".php",
+ "Literate Agda": [
+ ".lagda"
+ ],
+ "RobotFramework": [
+ ".robot"
+ ],
+ "Scala": [
+ ".sbt",
+ ".sc",
".script!"
],
- "Pod": [
- ".pod"
- ],
- "PogoScript": [
- ".pogo"
- ],
"PostScript": [
".ps"
],
- "PowerShell": [
- ".ps1",
- ".psm1"
+ "Lasso": [
+ ".las",
+ ".lasso",
+ ".lasso9",
+ ".ldml"
],
- "Processing": [
- ".pde"
+ "Verilog": [
+ ".v"
+ ],
+ "Diff": [
+ ".patch"
+ ],
+ "KRL": [
+ ".krl"
+ ],
+ "Sass": [
+ ".sass",
+ ".scss"
+ ],
+ "Cuda": [
+ ".cu",
+ ".cuh"
+ ],
+ "GAP": [
+ ".g",
+ ".gd",
+ ".gi"
],
"Prolog": [
".ecl",
".pl",
".prolog"
],
- "Protocol Buffer": [
- ".proto"
+ "Game Maker Language": [
+ ".gml"
],
- "PureScript": [
- ".purs"
+ "C": [
+ ".c",
+ ".cats",
+ ".h"
],
- "Python": [
- ".py",
- ".script!"
+ "Ragel in Ruby Host": [
+ ".rl"
+ ],
+ "Mask": [
+ ".mask"
+ ],
+ "ECL": [
+ ".ecl"
+ ],
+ "YAML": [
+ ".yml"
],
"R": [
".R",
".rsx",
".script!"
],
+ "Nemerle": [
+ ".n"
+ ],
+ "Pascal": [
+ ".dpr"
+ ],
"Racket": [
".scrbl"
],
- "Ragel in Ruby Host": [
- ".rl"
+ "Tea": [
+ ".tea"
+ ],
+ "PAWN": [
+ ".pwn"
+ ],
+ "Agda": [
+ ".agda"
+ ],
+ "OpenEdge ABL": [
+ ".cls",
+ ".p"
+ ],
+ "Org": [
+ ".org"
+ ],
+ "Turing": [
+ ".t"
+ ],
+ "ABAP": [
+ ".abap"
+ ],
+ "Moocode": [
+ ".moo"
+ ],
+ "Java": [
+ ".java"
+ ],
+ "Omgrofl": [
+ ".omgrofl"
+ ],
+ "GAS": [
+ ".s"
+ ],
+ "Monkey": [
+ ".monkey"
+ ],
+ "PureScript": [
+ ".purs"
+ ],
+ "Dogescript": [
+ ".djs"
+ ],
+ "C++": [
+ ".cc",
+ ".cpp",
+ ".h",
+ ".hpp",
+ ".inl"
+ ],
+ "Kotlin": [
+ ".kt"
+ ],
+ "Haml": [
+ ".haml"
+ ],
+ "Pod": [
+ ".pod"
+ ],
+ "AppleScript": [
+ ".applescript"
+ ],
+ "Common Lisp": [
+ ".lisp"
+ ],
+ "ATS": [
+ ".atxt",
+ ".dats",
+ ".hats",
+ ".sats"
],
"RDoc": [
".rdoc"
],
+ "COBOL": [
+ ".cbl",
+ ".ccp",
+ ".cob",
+ ".cpy"
+ ],
+ "Ioke": [
+ ".ik"
+ ],
+ "Perl6": [
+ ".p6",
+ ".pm6"
+ ],
+ "Objective-C": [
+ ".h",
+ ".m"
+ ],
+ "NetLogo": [
+ ".nlogo"
+ ],
+ "Emacs Lisp": [
+ ".el"
+ ],
+ "Logtalk": [
+ ".lgt"
+ ],
+ "Brightscript": [
+ ".brs"
+ ],
+ "PogoScript": [
+ ".pogo"
+ ],
+ "Parrot Internal Representation": [
+ ".pir"
+ ],
+ "Jade": [
+ ".jade"
+ ],
+ "Max": [
+ ".maxhelp",
+ ".maxpat",
+ ".mxt"
+ ],
+ "AspectJ": [
+ ".aj"
+ ],
+ "Rust": [
+ ".rs"
+ ],
+ "ShellSession": [
+ ".sh-session"
+ ],
+ "BlitzBasic": [
+ ".bb"
+ ],
+ "Literate CoffeeScript": [
+ ".litcoffee"
+ ],
"Rebol": [
".r",
".r2",
@@ -429,11 +355,11 @@
".reb",
".rebol"
],
- "RMarkdown": [
- ".rmd"
+ "AutoHotkey": [
+ ".ahk"
],
- "RobotFramework": [
- ".robot"
+ "TypeScript": [
+ ".ts"
],
"Ruby": [
".pluginspec",
@@ -442,58 +368,36 @@
".rb",
".script!"
],
- "Rust": [
- ".rs"
+ "Processing": [
+ ".pde"
],
- "Sass": [
- ".sass",
- ".scss"
+ "Zephir": [
+ ".zep"
],
- "Scala": [
- ".sbt",
- ".sc",
+ "RMarkdown": [
+ ".rmd"
+ ],
+ "Stylus": [
+ ".styl"
+ ],
+ "Bluespec": [
+ ".bsv"
+ ],
+ "Mercury": [
+ ".m",
+ ".moo"
+ ],
+ "Frege": [
+ ".fr"
+ ],
+ "Erlang": [
+ ".erl",
+ ".escript",
".script!"
],
- "Scaml": [
- ".scaml"
- ],
- "Scheme": [
- ".sld",
- ".sps"
- ],
- "Scilab": [
- ".sce",
- ".sci",
- ".tst"
- ],
- "SCSS": [
- ".scss"
- ],
- "Shell": [
- ".bash",
- ".script!",
- ".sh",
- ".zsh"
- ],
- "ShellSession": [
- ".sh-session"
- ],
- "Shen": [
- ".shen"
- ],
- "Slash": [
- ".sl"
- ],
- "SourcePawn": [
- ".sp"
- ],
- "Squirrel": [
- ".nut"
- ],
- "Standard ML": [
- ".fun",
- ".sig",
- ".sml"
+ "NSIS": [
+ ".nsh",
+ ".nsi"
],
"Stata": [
".ado",
@@ -504,80 +408,176 @@
".matah",
".sthlp"
],
- "Stylus": [
- ".styl"
- ],
- "SuperCollider": [
- ".scd"
- ],
- "SystemVerilog": [
- ".sv",
- ".svh",
- ".vh"
- ],
"Tcl": [
".tm"
],
- "Tea": [
- ".tea"
+ "Arduino": [
+ ".ino"
],
- "TeX": [
+ "Apex": [
".cls"
],
- "Turing": [
- ".t"
+ "Nimrod": [
+ ".nim"
],
"TXL": [
".txl"
],
- "TypeScript": [
- ".ts"
+ "Lua": [
+ ".pd_lua"
],
- "UnrealScript": [
- ".uc"
+ "MoonScript": [
+ ".moon"
],
- "Verilog": [
- ".v"
+ "Eagle": [
+ ".brd",
+ ".sch"
],
- "VHDL": [
- ".vhd"
+ "Objective-C++": [
+ ".mm"
],
"Visual Basic": [
".cls",
".vb",
".vbhtml"
],
- "Volt": [
- ".volt"
+ "CoffeeScript": [
+ ".coffee"
],
- "wisp": [
- ".wisp"
+ "Scilab": [
+ ".sce",
+ ".sci",
+ ".tst"
],
- "XC": [
- ".xc"
+ "Standard ML": [
+ ".fun",
+ ".sig",
+ ".sml"
],
- "XML": [
- ".ant",
- ".ivy",
- ".xml"
+ "Shen": [
+ ".shen"
+ ],
+ "Cirru": [
+ ".cirru"
+ ],
+ "LFE": [
+ ".lfe"
+ ],
+ "Forth": [
+ ".forth",
+ ".fth"
],
"XProc": [
".xpl"
],
+ "M": [
+ ".m"
+ ],
+ "Slash": [
+ ".sl"
+ ],
+ "Clojure": [
+ ".cl2",
+ ".clj",
+ ".cljc",
+ ".cljs",
+ ".cljscm",
+ ".cljx",
+ ".hic"
+ ],
+ "JSONiq": [
+ ".jq"
+ ],
+ "C#": [
+ ".cs",
+ ".cshtml"
+ ],
+ "IDL": [
+ ".dlm",
+ ".pro"
+ ],
+ "Parrot Assembly": [
+ ".pasm"
+ ],
+ "TeX": [
+ ".cls"
+ ],
+ "SCSS": [
+ ".scss"
+ ],
+ "JSONLD": [
+ ".jsonld"
+ ],
+ "PowerShell": [
+ ".ps1",
+ ".psm1"
+ ],
+ "Julia": [
+ ".jl"
+ ],
+ "GLSL": [
+ ".fp",
+ ".glsl"
+ ],
+ "PHP": [
+ ".module",
+ ".php",
+ ".script!"
+ ],
+ "Ceylon": [
+ ".ceylon"
+ ],
+ "Dart": [
+ ".dart"
+ ],
+ "Nu": [
+ ".nu",
+ ".script!"
+ ],
+ "Matlab": [
+ ".m"
+ ],
+ "Makefile": [
+ ".script!"
+ ],
+ "Shell": [
+ ".bash",
+ ".script!",
+ ".sh",
+ ".zsh"
+ ],
+ "Scaml": [
+ ".scaml"
+ ],
+ "SystemVerilog": [
+ ".sv",
+ ".svh",
+ ".vh"
+ ],
"XQuery": [
".xqm"
],
- "XSLT": [
- ".xslt"
+ "Mathematica": [
+ ".m"
+ ],
+ "Volt": [
+ ".volt"
+ ],
+ "edn": [
+ ".edn"
+ ],
+ "Squirrel": [
+ ".nut"
],
"Xtend": [
".xtend"
],
- "YAML": [
- ".yml"
+ "Protocol Buffer": [
+ ".proto"
],
- "Zephir": [
- ".zep"
+ "Scheme": [
+ ".sld",
+ ".sps"
]
},
"interpreters": {
@@ -589,6 +589,24 @@
"apache2.conf",
"httpd.conf"
],
+ "VimL": [
+ ".gvimrc",
+ ".vimrc"
+ ],
+ "Perl": [
+ "ack"
+ ],
+ "YAML": [
+ ".gemrc"
+ ],
+ "Nginx": [
+ "nginx.conf"
+ ],
+ "Ruby": [
+ "Appraisals",
+ "Capfile",
+ "Rakefile"
+ ],
"INI": [
".editorconfig",
".gitconfig"
@@ -596,17 +614,6 @@
"Makefile": [
"Makefile"
],
- "Nginx": [
- "nginx.conf"
- ],
- "Perl": [
- "ack"
- ],
- "Ruby": [
- "Appraisals",
- "Capfile",
- "Rakefile"
- ],
"Shell": [
".bash_logout",
".bash_profile",
@@ -632,650 +639,1447 @@
"zprofile",
"zshenv",
"zshrc"
- ],
- "VimL": [
- ".gvimrc",
- ".vimrc"
- ],
- "YAML": [
- ".gemrc"
]
},
- "tokens_total": 575811,
- "languages_total": 680,
+ "tokens_total": 580952,
+ "languages_total": 681,
"tokens": {
- "ABAP": {
- "*/**": 1,
- "*": 56,
- "The": 2,
- "MIT": 2,
- "License": 1,
- "(": 8,
- ")": 8,
- "Copyright": 1,
- "c": 3,
- "Ren": 1,
- "van": 1,
- "Mil": 1,
- "Permission": 1,
- "is": 2,
- "hereby": 1,
- "granted": 1,
- "free": 1,
- "of": 6,
- "charge": 1,
- "to": 10,
- "any": 1,
- "person": 1,
- "obtaining": 1,
- "a": 1,
- "copy": 2,
- "this": 2,
- "software": 1,
- "and": 3,
- "associated": 1,
- "documentation": 1,
- "files": 4,
- "the": 10,
- "deal": 1,
- "in": 3,
- "Software": 3,
- "without": 2,
- "restriction": 1,
- "including": 1,
- "limitation": 1,
- "rights": 1,
- "use": 1,
- "modify": 1,
- "merge": 1,
- "publish": 1,
- "distribute": 1,
- "sublicense": 1,
- "and/or": 1,
- "sell": 1,
- "copies": 2,
- "permit": 1,
- "persons": 1,
- "whom": 1,
- "furnished": 1,
- "do": 4,
- "so": 1,
- "subject": 1,
- "following": 1,
- "conditions": 1,
- "above": 1,
- "copyright": 1,
- "notice": 2,
- "permission": 1,
- "shall": 1,
- "be": 1,
- "included": 1,
- "all": 1,
- "or": 1,
- "substantial": 1,
- "portions": 1,
- "Software.": 1,
- "THE": 6,
- "SOFTWARE": 2,
- "IS": 1,
- "PROVIDED": 1,
- "WITHOUT": 1,
- "WARRANTY": 1,
- "OF": 4,
- "ANY": 2,
- "KIND": 1,
- "EXPRESS": 1,
- "OR": 7,
- "IMPLIED": 1,
- "INCLUDING": 1,
- "BUT": 1,
- "NOT": 1,
- "LIMITED": 1,
- "TO": 2,
- "WARRANTIES": 1,
- "MERCHANTABILITY": 1,
- "FITNESS": 1,
- "FOR": 2,
- "A": 1,
- "PARTICULAR": 1,
- "PURPOSE": 1,
- "AND": 1,
- "NONINFRINGEMENT.": 1,
- "IN": 4,
- "NO": 1,
- "EVENT": 1,
- "SHALL": 1,
- "AUTHORS": 1,
- "COPYRIGHT": 1,
- "HOLDERS": 1,
- "BE": 1,
- "LIABLE": 1,
- "CLAIM": 1,
- "DAMAGES": 1,
- "OTHER": 2,
- "LIABILITY": 1,
- "WHETHER": 1,
- "AN": 1,
- "ACTION": 1,
- "CONTRACT": 1,
- "TORT": 1,
- "OTHERWISE": 1,
- "ARISING": 1,
- "FROM": 1,
- "OUT": 1,
- "CONNECTION": 1,
- "WITH": 1,
- "USE": 1,
- "DEALINGS": 1,
- "SOFTWARE.": 1,
- "*/": 1,
- "-": 978,
- "CLASS": 2,
- "CL_CSV_PARSER": 6,
- "DEFINITION": 2,
- "class": 2,
- "cl_csv_parser": 2,
- "definition": 1,
- "public": 3,
- "inheriting": 1,
- "from": 1,
- "cl_object": 1,
- "final": 1,
- "create": 1,
- ".": 9,
- "section.": 3,
- "not": 3,
- "include": 3,
- "other": 3,
- "source": 3,
- "here": 3,
- "type": 11,
- "pools": 1,
- "abap": 1,
- "methods": 2,
- "constructor": 2,
- "importing": 1,
- "delegate": 1,
- "ref": 1,
- "if_csv_parser_delegate": 1,
- "csvstring": 1,
- "string": 1,
- "separator": 1,
- "skip_first_line": 1,
- "abap_bool": 2,
- "parse": 2,
- "raising": 1,
- "cx_csv_parse_error": 2,
- "protected": 1,
- "private": 1,
- "constants": 1,
- "_textindicator": 1,
- "value": 2,
- "IMPLEMENTATION": 2,
- "implementation.": 1,
- "": 2,
- "+": 9,
- "|": 7,
- "Instance": 2,
- "Public": 1,
- "Method": 2,
- "CONSTRUCTOR": 1,
- "[": 5,
- "]": 5,
- "DELEGATE": 1,
- "TYPE": 5,
- "REF": 1,
- "IF_CSV_PARSER_DELEGATE": 1,
- "CSVSTRING": 1,
- "STRING": 1,
- "SEPARATOR": 1,
- "C": 1,
- "SKIP_FIRST_LINE": 1,
- "ABAP_BOOL": 1,
- " ": 2,
- "method": 2,
- "constructor.": 1,
- "super": 1,
- "_delegate": 1,
- "delegate.": 1,
- "_csvstring": 2,
- "csvstring.": 1,
- "_separator": 1,
- "separator.": 1,
- "_skip_first_line": 1,
- "skip_first_line.": 1,
- "endmethod.": 2,
- "Get": 1,
- "lines": 4,
- "data": 3,
- "is_first_line": 1,
- "abap_true.": 2,
- "standard": 2,
- "table": 3,
- "string.": 3,
- "_lines": 1,
- "field": 1,
- "symbols": 1,
- "": 3,
- "loop": 1,
- "at": 2,
- "assigning": 1,
- "Parse": 1,
- "line": 1,
- "values": 2,
- "_parse_line": 2,
- "Private": 1,
- "_LINES": 1,
- "<": 1,
- "RETURNING": 1,
- "STRINGTAB": 1,
- "_lines.": 1,
- "split": 1,
- "cl_abap_char_utilities": 1,
- "cr_lf": 1,
- "into": 6,
- "returning.": 1,
- "Space": 2,
- "concatenate": 4,
- "csvvalue": 6,
- "csvvalue.": 5,
- "else.": 4,
- "char": 2,
- "endif.": 6,
- "This": 1,
- "indicates": 1,
- "an": 1,
- "error": 1,
- "CSV": 1,
- "formatting": 1,
- "text_ended": 1,
- "message": 2,
- "e003": 1,
- "csv": 1,
- "msg.": 2,
- "raise": 1,
- "exception": 1,
- "exporting": 1,
- "endwhile.": 2,
- "append": 2,
- "csvvalues.": 2,
- "clear": 1,
- "pos": 2,
- "endclass.": 1
- },
- "Agda": {
- "module": 3,
- "NatCat": 1,
- "where": 2,
- "open": 2,
- "import": 2,
- "Relation.Binary.PropositionalEquality": 1,
- "-": 21,
- "If": 1,
- "you": 2,
- "can": 1,
- "show": 1,
- "that": 1,
- "a": 1,
- "relation": 1,
- "only": 1,
- "ever": 1,
- "has": 1,
- "one": 1,
- "inhabitant": 5,
- "get": 1,
- "the": 1,
- "category": 1,
- "laws": 1,
- "for": 1,
- "free": 1,
- "EasyCategory": 3,
- "(": 36,
- "obj": 4,
- "Set": 2,
- ")": 36,
- "_": 6,
- "{": 10,
- "x": 34,
- "y": 28,
- "z": 18,
- "}": 10,
- "id": 9,
- "single": 4,
- "r": 26,
- "s": 29,
- "assoc": 2,
- "w": 4,
- "t": 6,
- "Data.Nat": 1,
- "same": 5,
- ".0": 2,
- "n": 14,
- "refl": 6,
- ".": 5,
- "suc": 6,
- "m": 6,
- "cong": 1,
- "trans": 5,
- ".n": 1,
- "zero": 1,
- "Nat": 1
- },
- "Alloy": {
- "module": 3,
- "examples/systems/file_system": 1,
- "abstract": 2,
- "sig": 20,
- "Object": 10,
- "{": 54,
- "}": 60,
- "Name": 2,
- "File": 1,
- "extends": 10,
- "some": 3,
- "d": 3,
- "Dir": 8,
- "|": 19,
- "this": 14,
- "in": 19,
- "d.entries.contents": 1,
- "entries": 3,
- "set": 10,
- "DirEntry": 2,
- "parent": 3,
- "lone": 6,
- "this.": 4,
- "@contents.": 1,
- "@entries": 1,
- "all": 16,
- "e1": 2,
- "e2": 2,
- "e1.name": 1,
- "e2.name": 1,
- "@parent": 2,
- "Root": 5,
- "one": 8,
- "no": 8,
- "Cur": 1,
+ "Groovy": {
+ "SHEBANG#!groovy": 1,
+ "println": 2,
+ "task": 1,
+ "echoDirListViaAntBuilder": 1,
+ "(": 7,
+ ")": 7,
+ "{": 3,
+ "description": 1,
+ "//Docs": 1,
+ "http": 1,
+ "//ant.apache.org/manual/Types/fileset.html": 1,
+ "//Echo": 1,
+ "the": 3,
+ "Gradle": 1,
+ "project": 1,
"name": 1,
- "contents": 2,
- "pred": 16,
- "OneParent_buggyVersion": 2,
- "-": 41,
- "d.parent": 2,
- "OneParent_correctVersion": 2,
- "(": 12,
- "&&": 2,
- "contents.d": 1,
- ")": 9,
- "NoDirAliases": 3,
- "o": 1,
- "o.": 1,
- "check": 6,
- "for": 7,
- "expect": 6,
- "examples/systems/marksweepgc": 1,
- "Node": 10,
- "HeapState": 5,
- "left": 3,
- "right": 1,
- "marked": 1,
- "freeList": 1,
- "clearMarks": 1,
- "[": 82,
- "hs": 16,
- ".marked": 3,
- ".right": 4,
- "hs.right": 3,
- "fun": 1,
- "reachable": 1,
- "n": 5,
- "]": 80,
- "+": 14,
- "n.": 1,
- "hs.left": 2,
- "mark": 1,
- "from": 2,
- "hs.reachable": 1,
- "setFreeList": 1,
- ".freeList.*": 3,
- ".left": 5,
- "hs.marked": 1,
- "GC": 1,
- "root": 5,
- "assert": 3,
- "Soundness1": 2,
- "h": 9,
- "live": 3,
- "h.reachable": 1,
- "h.right": 1,
- "Soundness2": 2,
- ".reachable": 2,
- "h.GC": 1,
- ".freeList": 1,
- "Completeness": 1,
- "examples/systems/views": 1,
- "open": 2,
- "util/ordering": 1,
- "State": 16,
- "as": 2,
- "so": 1,
- "util/relation": 1,
- "rel": 1,
- "Ref": 19,
- "t": 16,
- "b": 13,
- "v": 25,
- "views": 2,
- "when": 1,
- "is": 1,
- "view": 2,
- "of": 3,
- "type": 1,
- "backing": 1,
- "dirty": 3,
- "contains": 1,
- "refs": 7,
- "that": 1,
- "have": 1,
- "been": 1,
- "invalidated": 1,
- "obj": 1,
- "ViewType": 8,
- "anyviews": 2,
- "visualization": 1,
- "ViewType.views": 1,
- "Map": 2,
- "keys": 3,
- "map": 2,
- "s": 6,
- "Ref.map": 1,
- "s.refs": 3,
- "MapRef": 4,
- "fact": 4,
- "State.obj": 3,
- "Iterator": 2,
- "done": 3,
- "lastRef": 2,
- "IteratorRef": 5,
- "Set": 2,
- "elts": 2,
- "SetRef": 5,
- "KeySetView": 6,
- "State.views": 1,
- "IteratorView": 3,
- "s.views": 2,
- "handle": 1,
- "possibility": 1,
- "modifying": 1,
- "an": 1,
- "object": 1,
- "and": 1,
- "its": 1,
- "at": 1,
- "once": 1,
- "*": 1,
- "should": 1,
- "we": 1,
- "limit": 1,
- "frame": 1,
- "conds": 1,
+ "via": 1,
+ "ant": 1,
+ "echo": 1,
+ "plugin": 1,
+ "ant.echo": 3,
+ "message": 1,
+ "project.name": 1,
+ "path": 2,
+ "//Gather": 1,
+ "list": 1,
+ "of": 1,
+ "files": 1,
+ "in": 1,
+ "a": 1,
+ "subdirectory": 1,
+ "ant.fileScanner": 1,
+ "fileset": 1,
+ "dir": 1,
+ "}": 3,
+ ".each": 1,
+ "//Print": 1,
+ "each": 1,
+ "file": 1,
"to": 1,
- "non": 1,
- "*/": 1,
- "modifies": 5,
- "pre": 15,
- "post": 14,
- "rs": 4,
- "let": 5,
- "vr": 1,
- "pre.views": 8,
- "mods": 3,
- "rs.*vr": 1,
- "r": 3,
- "pre.refs": 6,
- "pre.obj": 10,
- "post.obj": 7,
- "viewFrame": 4,
- "post.dirty": 1,
- "pre.dirty": 1,
- "allocates": 5,
- "&": 3,
- "post.refs": 1,
- ".map": 3,
- ".elts": 3,
- "dom": 1,
- "<:>": 1,
- "setRefs": 1,
- "MapRef.put": 1,
- "k": 5,
- "none": 4,
- "post.views": 4,
- "SetRef.iterator": 1,
- "iterRef": 4,
- "i": 7,
- "i.left": 3,
- "i.done": 1,
- "i.lastRef": 1,
- "IteratorRef.remove": 1,
- ".lastRef": 2,
- "IteratorRef.next": 1,
- "ref": 3,
- "IteratorRef.hasNext": 1,
- "s.obj": 1,
- "zippishOK": 2,
- "ks": 6,
- "vs": 6,
- "m": 4,
- "ki": 2,
- "vi": 2,
- "s0": 4,
- "so/first": 1,
- "s1": 4,
- "so/next": 7,
- "s2": 6,
- "s3": 4,
- "s4": 4,
- "s5": 4,
- "s6": 4,
- "s7": 2,
- "precondition": 2,
- "s0.dirty": 1,
- "ks.iterator": 1,
- "vs.iterator": 1,
- "ki.hasNext": 1,
- "vi.hasNext": 1,
- "ki.this/next": 1,
- "vi.this/next": 1,
- "m.put": 1,
- "ki.remove": 1,
- "vi.remove": 1,
- "State.dirty": 1,
- "ViewType.pre.views": 2,
+ "screen": 1,
+ "with": 1,
+ "CWD": 1,
+ "projectDir": 1,
+ "removed.": 1,
+ "it.toString": 1,
+ "-": 1
+ },
+ "Grammatical Framework": {
+ "-": 594,
+ "#": 14,
+ "path": 14,
+ ".": 13,
+ "prelude": 2,
+ "(": 256,
+ "c": 73,
+ ")": 256,
+ "Martha": 1,
+ "Dis": 1,
+ "Brandt": 1,
+ "under": 33,
+ "LGPL": 33,
+ "concrete": 33,
+ "FoodsIce": 1,
+ "of": 89,
+ "Foods": 34,
+ "open": 23,
+ "Prelude": 11,
+ "in": 32,
+ "{": 579,
+ "flags": 32,
+ "coding": 29,
+ "utf8": 29,
+ ";": 1399,
+ "lincat": 28,
+ "Comment": 31,
+ "SS": 6,
+ "Quality": 34,
+ "s": 365,
+ "Gender": 94,
+ "Number": 207,
+ "Defin": 9,
+ "Str": 394,
+ "}": 580,
+ "Kind": 33,
+ "g": 132,
+ "Item": 31,
+ "n": 206,
+ "lin": 28,
+ "Pred": 30,
+ "item": 36,
+ "quality": 90,
+ "ss": 13,
+ "item.s": 24,
+ "+": 480,
+ "copula": 33,
+ "item.n": 29,
+ "quality.s": 50,
+ "item.g": 12,
+ "Ind": 14,
+ "This": 29,
+ "That": 29,
+ "det": 86,
+ "Sg": 184,
+ "These": 28,
+ "Those": 28,
+ "Pl": 182,
+ "Mod": 29,
+ "kind": 115,
+ "kind.g": 38,
+ "Def": 21,
+ "kind.s": 46,
+ "Wine": 29,
+ "noun": 51,
+ "Neutr": 21,
+ "Cheese": 29,
+ "Masc": 67,
+ "Fish": 29,
+ "the": 7,
+ "word": 3,
+ "is": 6,
+ "more": 1,
+ "commonly": 1,
+ "used": 2,
+ "Iceland": 1,
"but": 1,
- "#s.obj": 1,
- "<": 1
+ "Icelandic": 1,
+ "for": 6,
+ "it": 2,
+ "Pizza": 28,
+ "Fem": 65,
+ "Very": 29,
+ "qual": 8,
+ "defOrInd": 2,
+ "qual.s": 8,
+ "Fresh": 29,
+ "regAdj": 61,
+ "Warm": 29,
+ "Boring": 29,
+ "order": 1,
+ "given": 1,
+ "adj": 38,
+ "forms": 2,
+ "mSg": 1,
+ "fSg": 1,
+ "nSg": 1,
+ "mPl": 1,
+ "fPl": 1,
+ "nPl": 1,
+ "mSgDef": 1,
+ "f/nSgDef": 1,
+ "_PlDef": 1,
+ "Italian": 29,
+ "adjective": 22,
+ "Expensive": 29,
+ "Delicious": 29,
+ "param": 22,
+ "|": 122,
+ "oper": 29,
+ "masc": 3,
+ "fem": 2,
+ "neutr": 2,
+ "cn": 11,
+ "case": 44,
+ "cn.g": 10,
+ "cn.s": 8,
+ "man": 10,
+ "men": 10,
+ "table": 148,
+ "x1": 3,
+ "_": 68,
+ "x9": 1,
+ "ferskur": 5,
+ "fersk": 11,
+ "ferskt": 2,
+ "ferskir": 2,
+ "ferskar": 2,
+ "fersk_pl": 2,
+ "ferski": 2,
+ "ferska": 2,
+ "fersku": 2,
+ "t": 28,
+ "": 1,
+ "<": 10,
+ "let": 8,
+ "Predef.tk": 2,
+ "present": 7,
+ "Aarne": 13,
+ "Ranta": 13,
+ "FoodsGer": 1,
+ "FoodsI": 6,
+ "with": 5,
+ "Syntax": 7,
+ "SyntaxGer": 2,
+ "LexFoods": 12,
+ "LexFoodsGer": 2,
+ "Krasimir": 1,
+ "Angelov": 1,
+ "FoodsBul": 1,
+ "Agr": 3,
+ "ASg": 23,
+ "APl": 11,
+ "a": 57,
+ "item.a": 2,
+ "Femke": 1,
+ "Johansson": 1,
+ "FoodsDut": 1,
+ "AForm": 4,
+ "APred": 8,
+ "AAttr": 3,
+ "regNoun": 38,
+ "f": 16,
+ "a.s": 8,
+ "regadj": 6,
+ "noun.s": 7,
+ "wijn": 3,
+ "koud": 3,
+ "duur": 2,
+ "dure": 2,
+ "FoodsOri": 1,
+ "../foods": 1,
+ "FoodsFre": 1,
+ "SyntaxFre": 1,
+ "ParadigmsFre": 1,
+ "Utt": 4,
+ "NP": 4,
+ "CN": 4,
+ "AP": 4,
+ "mkUtt": 4,
+ "mkCl": 4,
+ "mkNP": 16,
+ "this_QuantSg": 2,
+ "that_QuantSg": 2,
+ "these_QuantPl": 2,
+ "those_QuantPl": 2,
+ "mkCN": 20,
+ "mkAP": 28,
+ "very_AdA": 4,
+ "mkN": 46,
+ "masculine": 4,
+ "feminine": 2,
+ "mkA": 47,
+ "instance": 5,
+ "LexFoodsIta": 2,
+ "SyntaxIta": 2,
+ "ParadigmsIta": 1,
+ "wine_N": 7,
+ "pizza_N": 7,
+ "cheese_N": 7,
+ "fish_N": 8,
+ "fresh_A": 7,
+ "warm_A": 8,
+ "italian_A": 7,
+ "expensive_A": 7,
+ "delicious_A": 7,
+ "boring_A": 7,
+ "FoodsEng": 1,
+ "language": 2,
+ "en_US": 1,
+ "car": 6,
+ "cold": 4,
+ "Inese": 1,
+ "Bernsone": 1,
+ "FoodsLav": 1,
+ "Q": 5,
+ "Q1": 5,
+ "q": 10,
+ "spec": 2,
+ "Q2": 3,
+ "specAdj": 2,
+ "m": 9,
+ "skaists": 5,
+ "skaista": 2,
+ "skaisti": 2,
+ "skaistas": 2,
+ "skaistais": 2,
+ "skaistaa": 2,
+ "skaistie": 2,
+ "skaistaas": 2,
+ "skaist": 8,
+ "init": 4,
+ "Adjective": 9,
+ "Type": 9,
+ "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,
+ "regular": 2,
+ "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,
+ "pre": 1,
+ "cons@": 1,
+ "cons": 1,
+ "determinant": 1,
+ "Sg/Pl": 1,
+ "string": 1,
+ "default": 1,
+ "to": 6,
+ "gender": 2,
+ "number": 2,
+ "Katerina": 2,
+ "Bohmova": 2,
+ "FoodsCze": 1,
+ "ResCze": 2,
+ "Noun": 9,
+ "NounPhrase": 3,
+ "regnfAdj": 2,
+ "FoodsFin": 1,
+ "SyntaxFin": 2,
+ "LexFoodsFin": 2,
+ "FoodsIta": 1,
+ "FoodsChi": 1,
+ "p": 11,
+ "quality.p": 2,
+ "kind.c": 11,
+ "geKind": 5,
+ "longQuality": 8,
+ "mkKind": 2,
+ "FoodsAmh": 1,
+ "FoodsTur": 1,
+ "Predef": 3,
+ "Case": 10,
+ "softness": 4,
+ "Softness": 5,
+ "h": 4,
+ "Harmony": 5,
+ "Reason": 1,
+ "excluding": 1,
+ "plural": 3,
+ "form": 4,
+ "In": 1,
+ "Turkish": 1,
+ "if": 1,
+ "subject": 1,
+ "not": 2,
+ "human": 2,
+ "being": 1,
+ "then": 1,
+ "singular": 1,
+ "regardless": 1,
+ "subject.": 1,
+ "Since": 1,
+ "all": 1,
+ "possible": 1,
+ "subjects": 1,
+ "are": 1,
+ "non": 1,
+ "do": 1,
+ "need": 1,
+ "have": 2,
+ "form.": 1,
+ "quality.softness": 1,
+ "quality.h": 1,
+ "quality.c": 1,
+ "Nom": 9,
+ "Gen": 5,
+ "a.c": 1,
+ "a.softness": 1,
+ "a.h": 1,
+ "I_Har": 4,
+ "Ih_Har": 4,
+ "U_Har": 4,
+ "Uh_Har": 4,
+ "Ih": 1,
+ "Uh": 1,
+ "Soft": 3,
+ "Hard": 3,
+ "num": 6,
+ "overload": 1,
+ "mkn": 1,
+ "peynir": 2,
+ "peynirler": 2,
+ "[": 2,
+ "]": 2,
+ "sarap": 2,
+ "saraplar": 2,
+ "sarabi": 2,
+ "saraplari": 2,
+ "italyan": 4,
+ "ca": 2,
+ "getSoftness": 2,
+ "getHarmony": 2,
+ "See": 1,
+ "comment": 1,
+ "at": 3,
+ "lines": 1,
+ "and": 4,
+ "excluded": 1,
+ "copula.": 1,
+ "base": 4,
+ "c@": 3,
+ "*": 1,
+ "interface": 1,
+ "N": 4,
+ "A": 6,
+ "Rami": 1,
+ "Shashati": 1,
+ "FoodsPor": 1,
+ "mkAdjReg": 7,
+ "QualityT": 5,
+ "mkAdj": 27,
+ "bonito": 2,
+ "bonita": 2,
+ "bonitos": 2,
+ "bonitas": 2,
+ "pattern": 1,
+ "adjSozinho": 2,
+ "sozinho": 3,
+ "sozinh": 4,
+ "independent": 1,
+ "adjectives": 2,
+ "adjUtil": 2,
+ "util": 3,
+ "uteis": 3,
+ "smart": 1,
+ "paradigm": 1,
+ "adjcetives": 1,
+ "last": 3,
+ "ItemT": 2,
+ "KindT": 4,
+ "noun.g": 3,
+ "animal": 2,
+ "animais": 2,
+ "gen": 4,
+ "carro": 3,
+ "Shafqat": 1,
+ "Virk": 1,
+ "FoodsUrd": 1,
+ "coupla": 2,
+ "x": 74,
+ "ParadigmsFin": 1,
+ "LexFoodsSwe": 2,
+ "SyntaxSwe": 2,
+ "ParadigmsSwe": 1,
+ "Ramona": 1,
+ "Enache": 1,
+ "FoodsRon": 1,
+ "NGender": 6,
+ "NMasc": 2,
+ "NFem": 3,
+ "NNeut": 2,
+ "mkTab": 5,
+ "mkNoun": 5,
+ "getAgrGender": 3,
+ "acesta": 2,
+ "aceasta": 2,
+ "gg": 3,
+ "det.s": 1,
+ "peste": 2,
+ "pesti": 2,
+ "x4": 2,
+ "scump": 2,
+ "scumpa": 2,
+ "scumpi": 2,
+ "scumpe": 2,
+ "": 1,
+ "": 1,
+ "": 1,
+ "": 1,
+ "": 1,
+ "ng": 1,
+ "": 1,
+ "": 1,
+ "": 1,
+ "": 1,
+ "": 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,
+ "ParadigmsGer": 1,
+ "Jordi": 2,
+ "Saludes": 2,
+ "FoodsCat": 1,
+ "SyntaxCat": 2,
+ "LexFoodsCat": 2,
+ "/GF/lib/src/prelude": 1,
+ "Nyamsuren": 1,
+ "Erdenebadrakh": 1,
+ "FoodsMon": 1,
+ "prefixSS": 1,
+ "d": 6,
+ "Julia": 1,
+ "Hammar": 1,
+ "FoodsEpo": 1,
+ "vino": 3,
+ "nova": 3,
+ "ParadigmsCat": 1,
+ "M": 1,
+ "MorphoCat": 1,
+ "M.Masc": 2,
+ "resource": 1,
+ "ne": 2,
+ "muz": 2,
+ "muzi": 2,
+ "msg": 3,
+ "fsg": 3,
+ "nsg": 3,
+ "mpl": 3,
+ "fpl": 3,
+ "npl": 3,
+ "mlad": 7,
+ "vynikajici": 7,
+ "incomplete": 1,
+ "Laurette": 2,
+ "Pretorius": 2,
+ "Sr": 2,
+ "&": 2,
+ "Jr": 2,
+ "Ansu": 2,
+ "Berg": 2,
+ "FoodsAfr": 1,
+ "AdjAP": 10,
+ "Predic": 3,
+ "Attr": 9,
+ "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,
+ "y": 3,
+ "declAdj_e": 2,
+ "declAdj_g": 2,
+ "w": 15,
+ "declAdj_oog": 2,
+ "i": 2,
+ "x.s": 8,
+ "FoodsSpa": 1,
+ "SyntaxSpa": 1,
+ "StructuralSpa": 1,
+ "ParadigmsSpa": 1,
+ "../lib/src/prelude": 1,
+ "Zofia": 1,
+ "Stankiewicz": 1,
+ "FoodsJpn": 1,
+ "Style": 3,
+ "AdjUse": 4,
+ "AdjType": 4,
+ "quality.t": 3,
+ "IAdj": 4,
+ "Plain": 3,
+ "Polite": 4,
+ "NaAdj": 4,
+ "na": 1,
+ "different": 1,
+ "as": 2,
+ "attributes": 1,
+ "predicates": 2,
+ "phrase": 1,
+ "types": 1,
+ "can": 1,
+ "without": 1,
+ "cannot": 1,
+ "sakana": 6,
+ "chosenna": 2,
+ "chosen": 2,
+ "akai": 2,
+ "FoodsHin": 2,
+ "regN": 15,
+ "lark": 8,
+ "ms": 4,
+ "mp": 4,
+ "acch": 6,
+ "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,
+ "FoodsPes": 1,
+ "optimize": 1,
+ "noexpand": 1,
+ "Add": 8,
+ "prep": 11,
+ "Indep": 4,
+ "kind.prep": 1,
+ "quality.prep": 1,
+ "a.prep": 1,
+ "must": 1,
+ "be": 1,
+ "written": 1,
+ "pytzA": 3,
+ "pytzAy": 1,
+ "pytzAhA": 3,
+ "pr": 4,
+ "": 1,
+ "": 1,
+ "": 1,
+ "": 1,
+ "": 1,
+ "mrd": 8,
+ "tAzh": 8,
+ "tAzhy": 2,
+ "FoodsSwe": 1,
+ "**": 1,
+ "sv_SE": 1,
+ "Vikash": 1,
+ "Rauniyar": 1,
+ "Dinesh": 1,
+ "Simkhada": 1,
+ "FoodsNep": 1,
+ "adjPl": 2,
+ "bor": 2,
+ "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,
+ "abstract": 1,
+ "startcat": 1,
+ "cat": 1,
+ "fun": 1
+ },
+ "Elm": {
+ "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,
+ "}": 1,
+ "subsection": 2,
+ "w": 7,
+ "info": 2,
+ "down": 3,
+ "words": 2,
+ "markdown": 1,
+ "|": 3,
+ "###": 1,
+ "Basic": 1,
+ "Examples": 1,
+ "Each": 1,
+ "listed": 1,
+ "below": 1,
+ "focuses": 1,
+ "on": 1,
+ "a": 5,
+ "single": 1,
+ "function": 1,
+ "or": 1,
+ "concept.": 1,
+ "These": 1,
+ "examples": 1,
+ "demonstrate": 1,
+ "all": 1,
+ "the": 1,
+ "basic": 1,
+ "building": 1,
+ "blocks": 1,
+ "Elm.": 1,
+ "content": 2,
+ "exampleSets": 2,
+ "plainText": 1,
+ "main": 3,
+ "lift": 1,
+ "skeleton": 1,
+ "Window.width": 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,
+ "asText": 1,
+ "qsort": 4,
+ "filter": 2,
+ "<)x)>": 1
+ },
+ "Gnuplot": {
+ "set": 98,
+ "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,
+ "dummy": 3,
+ "u": 25,
+ "v": 31,
+ "arrow": 7,
+ "from": 7,
+ "to": 7,
+ "head": 7,
+ "nofilled": 7,
+ "parametric": 3,
+ "view": 3,
+ "samples": 3,
+ "isosamples": 3,
+ "hidden3d": 2,
+ "trianglepattern": 2,
+ "undefined": 2,
+ "altdiagonal": 2,
+ "bentover": 2,
+ "ztics": 2,
+ "norangelimit": 3,
+ "font": 8,
+ "ylabel": 5,
+ "rotate": 3,
+ "by": 3,
+ "zlabel": 4,
+ "zrange": 2,
+ "sinc": 13,
+ "sin": 3,
+ "sqrt": 4,
+ "u**2": 4,
+ "+": 6,
+ "v**2": 4,
+ "/": 2,
+ "GPFUN_sinc": 2,
+ "xx": 2,
+ "dx": 2,
+ "x0": 4,
+ "x1": 4,
+ "x2": 4,
+ "x3": 4,
+ "x4": 4,
+ "x5": 4,
+ "x6": 4,
+ "x7": 4,
+ "x8": 4,
+ "x9": 4,
+ "splot": 3,
+ "<": 10,
+ "notitle": 15,
+ "border": 3,
+ "angles": 1,
+ "degrees": 1,
+ "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,
+ "*cos": 1,
+ "*sin": 1,
+ "with": 3,
+ "lines": 2,
+ "using": 2,
+ "labels": 1,
+ "point": 1,
+ "pt": 2,
+ "lw": 1,
+ ".1": 1,
+ "tc": 1,
+ "pal": 1,
+ "xmin": 3,
+ "xmax": 1,
+ "n": 1,
+ "zbase": 2,
+ ".5": 2,
+ "*n": 1,
+ "floor": 3,
+ "u/3": 1,
+ "*dx": 1,
+ "%": 2,
+ "u/3.*dx": 1,
+ "/0": 1,
+ "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,
+ "key": 1,
+ "inside": 1,
+ "right": 1,
+ "top": 1,
+ "Right": 1,
+ "noenhanced": 1,
+ "autotitles": 1,
+ "nobox": 1,
+ "histogram": 1,
+ "clustered": 1,
+ "gap": 1,
+ "datafile": 1,
+ "missing": 1,
+ "data": 1,
+ "histograms": 1,
+ "xtics": 3,
+ "in": 1,
+ "scale": 1,
+ "nomirror": 1,
+ "autojustify": 1,
+ "i": 1,
+ "xtic": 1,
+ "ti": 4,
+ "col": 4
+ },
+ "SourcePawn": {
+ "//#define": 1,
+ "DEBUG": 2,
+ "#if": 1,
+ "defined": 1,
+ "#define": 7,
+ "assert": 2,
+ "(": 233,
+ "%": 18,
+ ")": 234,
+ "if": 44,
+ "ThrowError": 2,
+ ";": 213,
+ "assert_msg": 2,
+ "#else": 1,
+ "#endif": 1,
+ "#pragma": 1,
+ "semicolon": 1,
+ "#include": 3,
+ "": 1,
+ "": 1,
+ "": 1,
+ "public": 21,
+ "Plugin": 1,
+ "myinfo": 1,
+ "{": 73,
+ "name": 7,
+ "author": 1,
+ "description": 1,
+ "version": 1,
+ "SOURCEMOD_VERSION": 1,
+ "url": 1,
+ "}": 71,
+ "new": 62,
+ "Handle": 51,
+ "g_Cvar_Winlimit": 5,
+ "INVALID_HANDLE": 56,
+ "g_Cvar_Maxrounds": 5,
+ "g_Cvar_Fraglimit": 6,
+ "g_Cvar_Bonusroundtime": 6,
+ "g_Cvar_StartTime": 3,
+ "g_Cvar_StartRounds": 5,
+ "g_Cvar_StartFrags": 3,
+ "g_Cvar_ExtendTimeStep": 2,
+ "g_Cvar_ExtendRoundStep": 2,
+ "g_Cvar_ExtendFragStep": 2,
+ "g_Cvar_ExcludeMaps": 3,
+ "g_Cvar_IncludeMaps": 2,
+ "g_Cvar_NoVoteMode": 2,
+ "g_Cvar_Extend": 2,
+ "g_Cvar_DontChange": 2,
+ "g_Cvar_EndOfMapVote": 8,
+ "g_Cvar_VoteDuration": 3,
+ "g_Cvar_RunOff": 2,
+ "g_Cvar_RunOffPercent": 2,
+ "g_VoteTimer": 7,
+ "g_RetryTimer": 4,
+ "g_MapList": 8,
+ "g_NominateList": 7,
+ "g_NominateOwners": 7,
+ "g_OldMapList": 7,
+ "g_NextMapList": 2,
+ "g_VoteMenu": 1,
+ "g_Extends": 2,
+ "g_TotalRounds": 7,
+ "bool": 10,
+ "g_HasVoteStarted": 7,
+ "g_WaitingForVote": 4,
+ "g_MapVoteCompleted": 9,
+ "g_ChangeMapAtRoundEnd": 6,
+ "g_ChangeMapInProgress": 4,
+ "g_mapFileSerial": 3,
+ "-": 12,
+ "g_NominateCount": 3,
+ "MapChange": 4,
+ "g_ChangeTime": 1,
+ "g_NominationsResetForward": 3,
+ "g_MapVoteStartedForward": 2,
+ "MAXTEAMS": 4,
+ "g_winCount": 4,
+ "[": 19,
+ "]": 19,
+ "VOTE_EXTEND": 1,
+ "VOTE_DONTCHANGE": 1,
+ "OnPluginStart": 1,
+ "LoadTranslations": 2,
+ "arraySize": 5,
+ "ByteCountToCells": 1,
+ "PLATFORM_MAX_PATH": 6,
+ "CreateArray": 5,
+ "CreateConVar": 15,
+ "_": 18,
+ "true": 26,
+ "RegAdminCmd": 2,
+ "Command_Mapvote": 2,
+ "ADMFLAG_CHANGEMAP": 2,
+ "Command_SetNextmap": 2,
+ "FindConVar": 4,
+ "||": 15,
+ "decl": 5,
+ "String": 11,
+ "folder": 5,
+ "GetGameFolderName": 1,
+ "sizeof": 6,
+ "strcmp": 3,
+ "HookEvent": 6,
+ "Event_TeamPlayWinPanel": 3,
+ "Event_TFRestartRound": 2,
+ "else": 5,
+ "Event_RoundEnd": 3,
+ "Event_PlayerDeath": 2,
+ "AutoExecConfig": 1,
+ "//Change": 1,
+ "the": 5,
+ "mp_bonusroundtime": 1,
+ "max": 1,
+ "so": 1,
+ "that": 2,
+ "we": 2,
+ "have": 2,
+ "time": 9,
+ "to": 4,
+ "display": 2,
+ "vote": 6,
+ "//If": 1,
+ "you": 1,
+ "a": 1,
+ "during": 2,
+ "bonus": 2,
+ "good": 1,
+ "defaults": 1,
+ "are": 1,
+ "duration": 1,
+ "and": 1,
+ "mp_bonustime": 1,
+ "SetConVarBounds": 1,
+ "ConVarBound_Upper": 1,
+ "CreateGlobalForward": 2,
+ "ET_Ignore": 2,
+ "Param_String": 1,
+ "Param_Cell": 1,
+ "APLRes": 1,
+ "AskPluginLoad2": 1,
+ "myself": 1,
+ "late": 1,
+ "error": 1,
+ "err_max": 1,
+ "RegPluginLibrary": 1,
+ "CreateNative": 9,
+ "Native_NominateMap": 1,
+ "Native_RemoveNominationByMap": 1,
+ "Native_RemoveNominationByOwner": 1,
+ "Native_InitiateVote": 1,
+ "Native_CanVoteStart": 2,
+ "Native_CheckVoteDone": 2,
+ "Native_GetExcludeMapList": 2,
+ "Native_GetNominatedMapList": 2,
+ "Native_EndOfMapVoteEnabled": 2,
+ "return": 23,
+ "APLRes_Success": 1,
+ "OnConfigsExecuted": 1,
+ "ReadMapList": 1,
+ "MAPLIST_FLAG_CLEARARRAY": 1,
+ "|": 1,
+ "MAPLIST_FLAG_MAPSFOLDER": 1,
+ "LogError": 2,
+ "CreateNextVote": 1,
+ "SetupTimeleftTimer": 3,
+ "false": 8,
+ "ClearArray": 2,
+ "for": 9,
+ "i": 13,
+ "<": 5,
+ "+": 12,
+ "&&": 5,
+ "GetConVarInt": 10,
+ "GetConVarFloat": 2,
+ "<=>": 1,
+ "Warning": 1,
+ "Bonus": 1,
+ "Round": 1,
+ "Time": 2,
+ "shorter": 1,
+ "than": 1,
+ "Vote": 4,
+ "Votes": 1,
+ "round": 1,
+ "may": 1,
+ "not": 1,
+ "complete": 1,
+ "OnMapEnd": 1,
+ "map": 27,
+ "GetCurrentMap": 1,
+ "PushArrayString": 3,
+ "GetArraySize": 8,
+ "RemoveFromArray": 3,
+ "OnClientDisconnect": 1,
+ "client": 9,
+ "index": 8,
+ "FindValueInArray": 1,
+ "oldmap": 4,
+ "GetArrayString": 3,
+ "Call_StartForward": 1,
+ "Call_PushString": 1,
+ "Call_PushCell": 1,
+ "GetArrayCell": 2,
+ "Call_Finish": 1,
+ "Action": 3,
+ "args": 3,
+ "ReplyToCommand": 2,
+ "Plugin_Handled": 4,
+ "GetCmdArg": 1,
+ "IsMapValid": 1,
+ "ShowActivity": 1,
+ "LogAction": 1,
+ "SetNextMap": 1,
+ "OnMapTimeLeftChanged": 1,
+ "GetMapTimeLeft": 1,
+ "startTime": 4,
+ "*": 1,
+ "GetConVarBool": 6,
+ "InitiateVote": 8,
+ "MapChange_MapEnd": 6,
+ "KillTimer": 1,
+ "//g_VoteTimer": 1,
+ "CreateTimer": 3,
+ "float": 2,
+ "Timer_StartMapVote": 3,
+ "TIMER_FLAG_NO_MAPCHANGE": 4,
+ "data": 8,
+ "CreateDataTimer": 1,
+ "WritePackCell": 2,
+ "ResetPack": 1,
+ "timer": 2,
+ "Plugin_Stop": 2,
+ "mapChange": 2,
+ "ReadPackCell": 2,
+ "hndl": 2,
+ "event": 11,
+ "const": 4,
+ "dontBroadcast": 4,
+ "Timer_ChangeMap": 2,
+ "bluescore": 2,
+ "GetEventInt": 7,
+ "redscore": 2,
+ "StrEqual": 1,
+ "CheckMaxRounds": 3,
+ "switch": 1,
+ "case": 2,
+ "CheckWinLimit": 4,
+ "//We": 1,
+ "need": 2,
+ "do": 1,
+ "nothing": 1,
+ "on": 1,
+ "winning_team": 1,
+ "this": 1,
+ "indicates": 1,
+ "stalemate.": 1,
+ "default": 1,
+ "winner": 9,
+ "//": 3,
+ "Nuclear": 1,
+ "Dawn": 1,
+ "SetFailState": 1,
+ "winner_score": 2,
+ "winlimit": 3,
+ "roundcount": 2,
+ "maxrounds": 3,
+ "fragger": 3,
+ "GetClientOfUserId": 1,
+ "GetClientFrags": 1,
+ "when": 2,
+ "inputlist": 1,
+ "IsVoteInProgress": 1,
+ "Can": 1,
+ "t": 7,
+ "be": 1,
+ "excluded": 1,
+ "from": 1,
+ "as": 2,
+ "they": 1,
+ "weren": 1,
+ "nominationsToAdd": 1,
+ "Change": 2,
+ "Extend": 2,
+ "Map": 5,
+ "Voting": 7,
+ "next": 5,
+ "has": 5,
+ "started.": 1,
+ "SM": 5,
+ "Nextmap": 5,
+ "Started": 1,
+ "Current": 2,
+ "Extended": 1,
+ "finished.": 3,
+ "The": 1,
+ "current": 1,
+ "been": 1,
+ "extended.": 1,
+ "Stays": 1,
+ "was": 3,
+ "Finished": 1,
+ "s.": 1,
+ "Runoff": 2,
+ "Starting": 2,
+ "indecisive": 1,
+ "beginning": 1,
+ "runoff": 1,
+ "T": 3,
+ "Dont": 1,
+ "because": 1,
+ "outside": 1,
+ "request": 1,
+ "inputarray": 1,
+ "plugin": 5,
+ "numParams": 5,
+ "CanVoteStart": 1,
+ "array": 3,
+ "GetNativeCell": 3,
+ "size": 2,
+ "maparray": 3,
+ "ownerarray": 3,
+ "If": 1,
+ "optional": 1,
+ "parameter": 1,
+ "an": 1,
+ "owner": 1,
+ "list": 1,
+ "passed": 1,
+ "then": 1,
+ "fill": 1,
+ "out": 1,
+ "well": 1,
+ "PushArrayCell": 1
+ },
+ "Markdown": {
+ "Tender": 1
+ },
+ "Hy": {
+ ";": 4,
+ "Fibonacci": 1,
+ "example": 2,
+ "in": 2,
+ "Hy.": 2,
+ "(": 28,
+ "defn": 2,
+ "fib": 4,
+ "[": 10,
+ "n": 5,
+ "]": 10,
+ "if": 2,
+ "<": 1,
+ ")": 28,
+ "+": 1,
+ "-": 10,
+ "__name__": 1,
+ "for": 2,
+ "x": 3,
+ "print": 1,
+ "The": 1,
+ "concurrent.futures": 2,
+ "import": 1,
+ "ThreadPoolExecutor": 2,
+ "as": 3,
+ "completed": 2,
+ "random": 1,
+ "randint": 2,
+ "sh": 1,
+ "sleep": 2,
+ "task": 2,
+ "to": 2,
+ "do": 2,
+ "with": 1,
+ "executor": 2,
+ "setv": 1,
+ "jobs": 2,
+ "list": 1,
+ "comp": 1,
+ ".submit": 1,
+ "range": 1,
+ "future": 2,
+ ".result": 1
+ },
+ "Groovy Server Pages": {
+ "": 4,
+ "": 4,
+ " ": 4,
+ "http": 3,
+ "equiv=": 3,
+ "content=": 4,
+ "": 4,
+ "Testing": 3,
+ "with": 3,
+ "SiteMesh": 2,
+ "and": 2,
+ "{": 1,
+ "example": 1,
+ "}": 1,
+ " ": 4,
+ "": 4,
+ "": 4,
+ "": 4,
+ "": 4,
+ "Resources": 2,
+ "name=": 1,
+ "": 2,
+ "module=": 2,
+ "<%@>": 1,
+ "page": 2,
+ "contentType=": 1,
+ "Using": 1,
+ "directive": 1,
+ "tag": 1,
+ "": 2,
+ "Print": 1
},
"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,
@@ -1464,6 +2268,7 @@
"#CustomLog": 2,
"ScriptAlias": 1,
"/cgi": 2,
+ "-": 43,
"bin/": 2,
"#Scriptsock": 2,
"/var/run/apache2/cgisock": 1,
@@ -1521,6 +2326,84 @@
"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,
@@ -1625,1397 +2508,34 @@
"/private/etc/apache2/extra/httpd": 11,
"/private/etc/apache2/other/*.conf": 1
},
- "Apex": {
- "global": 70,
- "class": 7,
- "ArrayUtils": 1,
- "{": 219,
- "static": 83,
- "String": 60,
- "[": 102,
- "]": 102,
- "EMPTY_STRING_ARRAY": 1,
- "new": 60,
- "}": 219,
- ";": 308,
- "Integer": 34,
- "MAX_NUMBER_OF_ELEMENTS_IN_LIST": 5,
- "get": 4,
- "return": 106,
- "List": 71,
- "": 30,
- "objectToString": 1,
- "(": 481,
- "": 22,
- "objects": 3,
- ")": 481,
- "strings": 3,
- "null": 92,
- "if": 91,
- "objects.size": 1,
- "for": 24,
- "Object": 23,
- "obj": 3,
- "instanceof": 1,
- "strings.add": 1,
- "reverse": 2,
- "anArray": 14,
- "i": 55,
- "j": 10,
- "anArray.size": 2,
- "-": 18,
- "tmp": 6,
- "while": 8,
- "+": 75,
- "SObject": 19,
- "lowerCase": 1,
- "strs": 9,
- "returnValue": 22,
- "strs.size": 3,
- "str": 10,
- "returnValue.add": 3,
- "str.toLowerCase": 1,
- "upperCase": 1,
- "str.toUpperCase": 1,
- "trim": 1,
- "str.trim": 3,
- "mergex": 2,
- "array1": 8,
- "array2": 9,
- "merged": 6,
- "array1.size": 4,
- "array2.size": 2,
- "<": 32,
- "": 19,
- "sObj": 4,
- "merged.add": 2,
- "Boolean": 38,
- "isEmpty": 7,
- "objectArray": 17,
- "true": 12,
- "objectArray.size": 6,
- "isNotEmpty": 4,
- "pluck": 1,
- "fieldName": 3,
- "||": 12,
- "fieldName.trim": 2,
- ".length": 2,
- "plucked": 3,
- ".get": 4,
- "toString": 3,
- "void": 9,
- "assertArraysAreEqual": 2,
- "expected": 16,
- "actual": 16,
- "//check": 2,
- "to": 4,
- "see": 2,
- "one": 2,
- "param": 2,
- "is": 5,
- "but": 2,
- "the": 4,
- "other": 2,
- "not": 3,
- "System.assert": 6,
- "&&": 46,
- "ArrayUtils.toString": 12,
- "expected.size": 4,
- "actual.size": 2,
- "merg": 2,
- "list1": 15,
- "list2": 9,
- "returnList": 11,
- "list1.size": 6,
- "list2.size": 2,
- "throw": 6,
- "IllegalArgumentException": 5,
- "elmt": 8,
- "returnList.add": 8,
- "subset": 6,
- "aList": 4,
- "count": 10,
- "startIndex": 9,
- "<=>": 2,
- "size": 2,
- "1": 2,
- "list1.get": 2,
- "//": 11,
- "//LIST/ARRAY": 1,
- "SORTING": 1,
- "//FOR": 2,
- "FORCE.COM": 1,
- "PRIMITIVES": 1,
- "Double": 1,
- "ID": 1,
- "etc.": 1,
- "qsort": 18,
- "theList": 72,
- "PrimitiveComparator": 2,
- "sortAsc": 24,
- "ObjectComparator": 3,
- "comparator": 14,
- "theList.size": 2,
- "SALESFORCE": 1,
- "OBJECTS": 1,
- "sObjects": 1,
- "ISObjectComparator": 3,
- "private": 10,
- "lo0": 6,
- "hi0": 8,
- "lo": 42,
- "hi": 50,
- "else": 25,
- "comparator.compare": 12,
- "prs": 8,
- "pivot": 14,
- "/": 4,
- "BooleanUtils": 1,
- "isFalse": 1,
- "bool": 32,
- "false": 13,
- "isNotFalse": 1,
- "isNotTrue": 1,
- "isTrue": 1,
- "negate": 1,
- "toBooleanDefaultIfNull": 1,
- "defaultVal": 2,
- "toBoolean": 2,
- "value": 10,
- "strToBoolean": 1,
- "StringUtils.equalsIgnoreCase": 1,
- "//Converts": 1,
- "an": 4,
- "int": 1,
- "a": 6,
- "boolean": 1,
- "specifying": 1,
- "//the": 2,
- "conversion": 1,
- "values.": 1,
- "//Returns": 1,
- "//Throws": 1,
- "trueValue": 2,
- "falseValue": 2,
- "toInteger": 1,
- "toStringYesNo": 1,
- "toStringYN": 1,
- "trueString": 2,
- "falseString": 2,
- "xor": 1,
- "boolArray": 4,
- "boolArray.size": 1,
- "firstItem": 2,
- "EmailUtils": 1,
- "sendEmailWithStandardAttachments": 3,
- "recipients": 11,
- "emailSubject": 10,
- "body": 8,
- "useHTML": 6,
- "": 1,
- "attachmentIDs": 2,
- "": 2,
- "stdAttachments": 4,
- "SELECT": 1,
- "id": 1,
- "name": 2,
- "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,
- "sendHTMLEmail": 1,
- "htmlBody": 2,
- "recipients.size": 1,
- "Messaging.SingleEmailMessage": 3,
- "mail": 2,
- "email": 1,
- "saved": 1,
- "as": 1,
- "activity.": 1,
- "mail.setSaveAsActivity": 1,
- "mail.setToAddresses": 1,
- "mail.setSubject": 1,
- "mail.setBccSender": 1,
- "mail.setUseSignature": 1,
- "mail.setHtmlBody": 1,
- "mail.setPlainTextBody": 1,
- "fileAttachments.size": 1,
- "mail.setFileAttachments": 1,
- "Messaging.sendEmail": 1,
- "isValidEmailAddress": 2,
- "split": 5,
- "str.split": 1,
- "split.size": 2,
- ".split": 1,
- "isNotValidEmailAddress": 1,
- "public": 10,
- "GeoUtils": 1,
- "generate": 1,
- "KML": 1,
- "string": 7,
- "given": 2,
- "page": 1,
- "reference": 1,
- "call": 1,
- "getContent": 1,
- "then": 1,
- "cleanup": 1,
- "output.": 1,
- "generateFromContent": 1,
- "PageReference": 2,
- "pr": 1,
- "ret": 7,
- "try": 1,
- "pr.getContent": 1,
- ".toString": 1,
- "ret.replaceAll": 4,
- "content": 1,
- "produces": 1,
- "quote": 1,
- "chars": 1,
- "we": 1,
- "need": 1,
- "escape": 1,
- "these": 2,
- "in": 1,
- "node": 1,
- "catch": 1,
- "exception": 1,
- "e": 2,
- "system.debug": 2,
- "must": 1,
+ "VHDL": {
+ "-": 2,
+ "VHDL": 1,
+ "example": 1,
+ "file": 1,
+ "library": 1,
+ "ieee": 1,
+ ";": 7,
"use": 1,
- "ALL": 1,
- "since": 1,
- "many": 1,
- "line": 1,
- "may": 1,
- "also": 1,
- "Map": 33,
- "": 2,
- "geo_response": 1,
- "accountAddressString": 2,
- "account": 2,
- "acct": 1,
- "form": 1,
- "address": 1,
- "object": 1,
- "adr": 9,
- "acct.billingstreet": 1,
- "acct.billingcity": 1,
- "acct.billingstate": 1,
- "acct.billingpostalcode": 2,
- "acct.billingcountry": 2,
- "adr.replaceAll": 4,
- "testmethod": 1,
- "t1": 1,
- "pageRef": 3,
- "Page.kmlPreviewTemplate": 1,
- "Test.setCurrentPage": 1,
- "system.assert": 1,
- "GeoUtils.generateFromContent": 1,
- "Account": 2,
- "billingstreet": 1,
- "billingcity": 1,
- "billingstate": 1,
- "billingpostalcode": 1,
- "billingcountry": 1,
- "insert": 1,
- "system.assertEquals": 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,
- "": 29,
- "DEFAULTS": 1,
- "getLangCodeByHttpParam": 4,
- "LANGUAGE_CODE_SET": 1,
- "getSuppLangCodeSet": 2,
- "ApexPages.currentPage": 4,
- ".getParameters": 2,
- "LANGUAGE_HTTP_PARAMETER": 7,
- "StringUtils.lowerCase": 3,
- "StringUtils.replaceChars": 2,
- "//underscore": 1,
- "//dash": 1,
- "DEFAULTS.containsKey": 3,
- "DEFAULTS.get": 3,
- "StringUtils.isNotBlank": 1,
- "SUPPORTED_LANGUAGE_CODES.contains": 2,
- "getLangCodeByBrowser": 4,
- "LANGUAGES_FROM_BROWSER_AS_STRING": 2,
- ".getHeaders": 1,
- "LANGUAGES_FROM_BROWSER_AS_LIST": 3,
- "splitAndFilterAcceptLanguageHeader": 2,
- "LANGUAGES_FROM_BROWSER_AS_LIST.size": 1,
- "languageFromBrowser": 6,
- "getLangCodeByUser": 3,
- "UserInfo.getLanguage": 1,
- "getLangCodeByHttpParamOrIfNullThenBrowser": 1,
- "StringUtils.defaultString": 4,
- "getLangCodeByHttpParamOrIfNullThenUser": 1,
- "getLangCodeByBrowserOrIfNullThenHttpParam": 1,
- "getLangCodeByBrowserOrIfNullThenUser": 1,
- "header": 2,
- "tokens": 3,
- "StringUtils.split": 1,
- "token": 7,
- "token.contains": 1,
- "token.substring": 1,
- "token.indexOf": 1,
- "StringUtils.length": 1,
- "StringUtils.substring": 1,
- "langCodes": 2,
- "langCode": 3,
- "langCodes.add": 1,
- "getLanguageName": 1,
- "displayLanguageCode": 13,
- "languageCode": 2,
- "translatedLanguageNames.get": 2,
- "filterLanguageCode": 4,
- "getAllLanguages": 3,
- "translatedLanguageNames.containsKey": 1,
- "translatedLanguageNames": 1,
- "TwilioAPI": 2,
- "MissingTwilioConfigCustomSettingsException": 2,
- "extends": 1,
- "Exception": 1,
- "TwilioRestClient": 5,
- "client": 2,
- "getDefaultClient": 2,
- "TwilioConfig__c": 5,
- "twilioCfg": 7,
- "getTwilioConfig": 3,
- "TwilioAPI.client": 2,
- "twilioCfg.AccountSid__c": 3,
- "twilioCfg.AuthToken__c": 3,
- "TwilioAccount": 1,
- "getDefaultAccount": 1,
- ".getAccount": 2,
- "TwilioCapability": 2,
- "createCapability": 1,
- "createClient": 1,
- "accountSid": 2,
- "authToken": 2,
- "Test.isRunningTest": 1,
- "dummy": 2,
- "sid": 1,
- "TwilioConfig__c.getOrgDefaults": 1,
- "@isTest": 1,
- "test_TwilioAPI": 1,
- "System.assertEquals": 5,
- "TwilioAPI.getTwilioConfig": 2,
- ".AccountSid__c": 1,
- ".AuthToken__c": 1,
- "TwilioAPI.getDefaultClient": 2,
- ".getAccountSid": 1,
- ".getSid": 2,
- "TwilioAPI.getDefaultAccount": 1
- },
- "AppleScript": {
- "set": 108,
- "windowWidth": 3,
- "to": 128,
- "windowHeight": 3,
- "delay": 3,
- "AppleScript": 2,
- "s": 3,
- "text": 13,
- "item": 13,
- "delimiters": 1,
- "tell": 40,
- "application": 16,
- "screen_width": 2,
- "(": 89,
- "do": 4,
- "JavaScript": 2,
- "in": 13,
- "document": 2,
- ")": 88,
- "screen_height": 2,
- "end": 67,
- "myFrontMost": 3,
- "name": 8,
- "of": 72,
- "first": 1,
- "processes": 2,
- "whose": 1,
- "frontmost": 1,
- "is": 40,
- "true": 8,
- "{": 32,
- "desktopTop": 2,
- "desktopLeft": 1,
- "desktopRight": 1,
- "desktopBottom": 1,
- "}": 32,
- "bounds": 2,
- "desktop": 1,
- "try": 10,
- "process": 5,
- "w": 5,
- "h": 4,
- "size": 5,
- "drawer": 2,
- "window": 5,
- "on": 18,
- "error": 3,
- "position": 1,
- "-": 57,
- "/": 2,
- "property": 7,
- "type_list": 6,
- "extension_list": 6,
- "html": 2,
- "not": 5,
- "currently": 2,
- "handled": 2,
- "run": 4,
- "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,
- "count": 10,
- "if": 50,
- "then": 28,
- "userPicksFolder": 6,
- "else": 14,
- "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,
- "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,
- "processFolder": 8,
- "false": 9,
- "and": 7,
- "or": 6,
- "extension": 4,
- "theFilePath": 8,
- "string": 17,
- "thePOSIXFilePath": 8,
- "POSIX": 4,
- "processFile": 8,
- "folders": 2,
- "theFolder": 6,
- "without": 2,
- "invisibles": 2,
- "&": 63,
- "thePOSIXFileName": 6,
- "terminalCommand": 6,
- "convertCommand": 4,
- "newFileName": 4,
- "shell": 2,
- "script": 2,
- "need": 1,
- "pass": 1,
- "URL": 1,
- "Terminal": 1,
- "localMailboxes": 3,
- "every": 3,
- "mailbox": 2,
- "greater": 5,
- "than": 6,
- "messageCountDisplay": 5,
- "return": 16,
- "my": 3,
- "getMessageCountsForMailboxes": 4,
- "everyAccount": 2,
- "account": 1,
- "eachAccount": 3,
- "accountMailboxes": 3,
- "outputMessage": 2,
- "make": 3,
- "new": 2,
- "outgoing": 2,
- "message": 2,
- "properties": 2,
- "content": 2,
- "subject": 1,
- "visible": 2,
- "font": 2,
- "theMailboxes": 2,
- "mailboxes": 1,
- "returns": 2,
- "displayString": 4,
- "eachMailbox": 4,
- "mailboxName": 2,
- "messageCount": 2,
- "messages": 1,
- "unreadCount": 2,
- "unread": 1,
- "padString": 3,
- "theString": 4,
- "fieldLength": 5,
- "integer": 3,
- "stringLength": 4,
- "length": 1,
- "paddedString": 5,
- "character": 2,
- "less": 1,
- "equal": 3,
- "paddingLength": 2,
- "times": 1,
- "space": 1,
- "lowFontSize": 9,
- "highFontSize": 6,
- "messageText": 4,
- "userInput": 4,
- "display": 4,
- "dialog": 4,
- "default": 4,
- "answer": 3,
- "buttons": 3,
- "button": 4,
- "returned": 5,
- "minimumFontSize": 4,
- "newFontSize": 6,
- "result": 2,
- "theText": 3,
- "exit": 1,
- "fontList": 2,
- "activate": 3,
- "crazyTextMessage": 2,
- "eachCharacter": 4,
- "characters": 1,
- "some": 1,
- "random": 4,
- "color": 1,
- "current": 3,
- "pane": 4,
- "UI": 1,
- "elements": 1,
- "enabled": 2,
- "tab": 1,
- "group": 1,
- "click": 1,
- "radio": 1,
- "get": 1,
- "value": 1,
- "field": 1,
- "isVoiceOverRunning": 3,
- "isRunning": 3,
- "contains": 1,
- "isVoiceOverRunningWithAppleScript": 3,
- "isRunningWithAppleScript": 3,
- "VoiceOver": 1,
- "x": 1,
- "vo": 1,
- "cursor": 1,
- "currentDate": 3,
- "date": 1,
- "amPM": 4,
- "currentHour": 9,
- "minutes": 2,
- "<": 2,
- "below": 1,
- "sound": 1,
- "nice": 1,
- "currentMinutes": 4,
- "ensure": 1,
- "nn": 2,
- "gets": 1,
- "AM": 1,
- "readjust": 1,
- "hour": 1,
- "time": 1,
- "currentTime": 3,
- "day": 1,
- "output": 1,
- "say": 1
- },
- "Arduino": {
- "void": 2,
- "setup": 1,
- "(": 4,
- ")": 4,
- "{": 2,
- "Serial.begin": 1,
- ";": 2,
- "}": 2,
- "loop": 1,
- "Serial.print": 1
- },
- "AsciiDoc": {
- "Gregory": 2,
- "Rom": 2,
- "has": 2,
- "written": 2,
- "an": 2,
- "AsciiDoc": 3,
- "plugin": 2,
- "for": 2,
- "the": 2,
- "Redmine": 2,
- "project": 2,
- "management": 2,
- "application.": 2,
- "https": 1,
- "//github.com/foo": 1,
- "-": 4,
- "users/foo": 1,
- "vicmd": 1,
- "gif": 1,
- "tag": 1,
- "rom": 2,
- "[": 2,
- "]": 2,
- "end": 1,
- "berschrift": 1,
- "*": 4,
- "Codierungen": 1,
- "sind": 1,
- "verr": 1,
- "ckt": 1,
- "auf": 1,
- "lteren": 1,
- "Versionen": 1,
- "von": 1,
- "Ruby": 1,
- "Home": 1,
- "Page": 1,
- "Example": 1,
- "Articles": 1,
- "Item": 6,
- "Document": 1,
- "Title": 1,
- "Doc": 1,
- "Writer": 1,
- "": 1,
- "idprefix": 1,
- "id_": 1,
- "Preamble": 1,
- "paragraph.": 4,
- "NOTE": 1,
- "This": 1,
- "is": 1,
- "test": 1,
- "only": 1,
- "a": 1,
- "test.": 1,
- "Section": 3,
- "A": 2,
- "*Section": 3,
- "A*": 2,
- "Subsection": 1,
- "B": 2,
- "B*": 1,
- ".Section": 1,
- "list": 1
- },
- "AspectJ": {
- "package": 2,
- "com.blogspot.miguelinlas3.aspectj.cache": 1,
- ";": 29,
- "import": 5,
- "java.util.Map": 2,
- "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,
- "key": 2,
- "JoinPoint": 1,
- "joinPoint": 1,
- "//": 1,
- "TODO": 1,
- "add": 1,
- "some": 1,
- "smart": 1,
- "staff": 1,
- "to": 1,
- "allow": 1,
- "simple": 1,
- "scripting": 1,
+ "ieee.std_logic_1164.all": 1,
+ "entity": 2,
+ "inverter": 2,
+ "is": 2,
+ "port": 1,
+ "(": 1,
+ "a": 2,
"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
- },
- "ATS": {
- "//": 211,
- "#include": 16,
- "staload": 25,
- "_": 25,
- "sortdef": 2,
- "ftype": 13,
- "type": 30,
- "-": 49,
- "infixr": 2,
- "(": 562,
- ")": 567,
- "typedef": 10,
- "a": 200,
- "b": 26,
- "": 2,
- "functor": 12,
- "F": 34,
- "{": 142,
- "}": 141,
- "list0": 9,
- "extern": 13,
- "val": 95,
- "functor_list0": 7,
- "implement": 55,
- "f": 22,
- "lam": 20,
- "xs": 82,
- "list0_map": 2,
- "": 14,
- "": 3,
- "datatype": 4,
- "CoYoneda": 7,
- "r": 25,
- "of": 59,
- "fun": 56,
- "CoYoneda_phi": 2,
- "CoYoneda_psi": 3,
- "ftor": 9,
- "fx": 8,
- "x": 48,
- "int0": 4,
- "I": 8,
- "int": 2,
- "bool": 27,
- "True": 7,
- "|": 22,
- "False": 8,
- "boxed": 2,
- "boolean": 2,
- "bool2string": 4,
- "string": 2,
- "case": 9,
- "+": 20,
- "fprint_val": 2,
- "": 2,
- "out": 8,
- "fprint": 3,
- "int2bool": 2,
- "i": 6,
- "let": 34,
- "in": 48,
- "if": 7,
- "then": 11,
- "else": 7,
- "end": 73,
- "myintlist0": 2,
- "g0ofg1": 1,
- "list": 1,
- "myboolist0": 9,
- "fprintln": 3,
- "stdout_ref": 4,
- "main0": 3,
- "UN": 3,
- "phil_left": 3,
- "n": 51,
- "phil_right": 3,
- "nmod": 1,
- "NPHIL": 6,
- "randsleep": 6,
- "intGte": 1,
- "void": 14,
- "ignoret": 2,
- "sleep": 2,
- "UN.cast": 2,
- "uInt": 1,
- "rand": 1,
- "mod": 1,
- "phil_think": 3,
- "println": 9,
- "phil_dine": 3,
- "lf": 5,
- "rf": 5,
- "phil_loop": 10,
- "nl": 2,
- "nr": 2,
- "ch_lfork": 2,
- "fork_changet": 5,
- "ch_rfork": 2,
- "channel_takeout": 4,
- "HX": 1,
- "try": 1,
- "to": 16,
- "actively": 1,
- "induce": 1,
- "deadlock": 2,
- "ch_forktray": 3,
- "forktray_changet": 4,
- "channel_insert": 5,
- "[": 49,
- "]": 48,
- "cleaner_wash": 3,
- "fork_get_num": 4,
- "cleaner_return": 4,
- "ch": 7,
- "cleaner_loop": 6,
- "f0": 3,
- "dynload": 3,
- "local": 10,
- "mythread_create_cloptr": 6,
- "llam": 6,
- "while": 1,
- "true": 5,
- "%": 7,
- "#": 7,
- "#define": 4,
- "nphil": 13,
- "natLt": 2,
- "absvtype": 2,
- "fork_vtype": 3,
- "ptr": 2,
- "vtypedef": 2,
- "fork": 16,
- "channel": 11,
- "datavtype": 1,
- "FORK": 3,
- "assume": 2,
- "the_forkarray": 2,
- "t": 1,
- "array_tabulate": 1,
- "fopr": 1,
- "": 2,
- "where": 6,
- "channel_create_exn": 2,
- "": 2,
- "i2sz": 4,
- "arrayref_tabulate": 1,
- "the_forktray": 2,
- "set_vtype": 3,
- "t@ype": 2,
- "set": 34,
- "t0p": 31,
- "compare_elt_elt": 4,
- "x1": 1,
- "x2": 1,
- "<": 14,
- "linset_nil": 2,
- "linset_make_nil": 2,
- "linset_sing": 2,
- "": 16,
- "linset_make_sing": 2,
- "linset_make_list": 1,
- "List": 1,
- "INV": 24,
- "linset_is_nil": 2,
- "linset_isnot_nil": 2,
- "linset_size": 2,
- "size_t": 1,
- "linset_is_member": 3,
- "x0": 22,
- "linset_isnot_member": 1,
- "linset_copy": 2,
- "linset_free": 2,
- "linset_insert": 3,
- "&": 17,
- "linset_takeout": 1,
- "res": 9,
- "opt": 6,
- "endfun": 1,
- "linset_takeout_opt": 1,
- "Option_vt": 4,
- "linset_remove": 2,
- "linset_choose": 3,
- "linset_choose_opt": 1,
- "linset_takeoutmax": 1,
- "linset_takeoutmax_opt": 1,
- "linset_takeoutmin": 1,
- "linset_takeoutmin_opt": 1,
- "fprint_linset": 3,
- "sep": 1,
- "FILEref": 2,
- "overload": 1,
- "with": 1,
- "env": 11,
- "vt0p": 2,
- "linset_foreach": 3,
- "fwork": 3,
- "linset_foreach_env": 3,
- "linset_listize": 2,
- "List0_vt": 5,
- "linset_listize1": 2,
- "code": 6,
- "reuse": 2,
- "elt": 2,
- "list_vt_nil": 16,
- "list_vt_cons": 17,
- "list_vt_is_nil": 1,
- "list_vt_is_cons": 1,
- "list_vt_length": 1,
- "aux": 4,
- "nat": 4,
- ".": 14,
- "": 3,
- "list_vt": 7,
- "sgn": 9,
- "false": 6,
- "list_vt_copy": 2,
- "list_vt_free": 1,
- "mynode_cons": 4,
- "nx": 22,
- "mynode1": 6,
- "xs1": 15,
- "UN.castvwtp0": 8,
- "List1_vt": 5,
- "@list_vt_cons": 5,
- "xs2": 3,
- "prval": 20,
- "UN.cast2void": 5,
- ";": 4,
- "fold@": 8,
- "ins": 3,
- "tail": 1,
- "recursive": 1,
- "n1": 4,
- "<=>": 1,
- "1": 3,
- "mynode_make_elt": 4,
- "ans": 2,
- "is": 26,
- "found": 1,
- "effmask_all": 3,
- "free@": 1,
- "xs1_": 3,
- "rem": 1,
- "*": 2,
- "opt_some": 1,
- "opt_none": 1,
- "list_vt_foreach": 1,
- "": 3,
- "list_vt_foreach_env": 1,
- "mynode_null": 5,
- "mynode": 3,
- "null": 1,
- "the_null_ptr": 1,
- "mynode_free": 1,
- "nx2": 4,
- "mynode_get_elt": 1,
- "nx1": 7,
- "UN.castvwtp1": 2,
- "mynode_set_elt": 1,
- "l": 3,
- "__assert": 2,
- "praxi": 1,
- "mynode_getfree_elt": 1,
- "linset_takeout_ngc": 2,
- "takeout": 3,
- "mynode0": 1,
- "pf_x": 6,
- "view@x": 3,
- "pf_xs1": 6,
- "view@xs1": 3,
- "linset_takeoutmax_ngc": 2,
- "xs_": 4,
- "@list_vt_nil": 1,
- "linset_takeoutmin_ngc": 2,
- "unsnoc": 4,
- "pos": 1,
- "and": 10,
- "fold@xs": 1,
- "ATS_PACKNAME": 1,
- "ATS_STALOADFLAG": 1,
- "no": 2,
- "static": 1,
- "loading": 1,
- "at": 2,
- "run": 1,
- "time": 1,
- "castfn": 1,
- "linset2list": 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,
- "option0": 3,
- "functor_option0": 2,
- "option0_map": 1,
- "functor_homres": 2,
- "c": 3,
- "Yoneda_phi": 3,
- "Yoneda_psi": 3,
- "m": 4,
- "mf": 4,
- "natrans": 3,
- "G": 2,
- "Yoneda_phi_nat": 2,
- "Yoneda_psi_nat": 2,
- "list_t": 1,
- "g0ofg1_list": 1,
- "Yoneda_bool_list0": 3,
- "myboolist1": 2
- },
- "AutoHotkey": {
- "MsgBox": 1,
- "Hello": 1,
- "World": 1
+ "std_logic": 2,
+ "b": 2,
+ "out": 1,
+ ")": 1,
+ "end": 2,
+ "architecture": 2,
+ "rtl": 1,
+ "of": 1,
+ "begin": 1,
+ "<": 1,
+ "not": 1
},
"Awk": {
"SHEBANG#!awk": 1,
@@ -3130,24375 +2650,265 @@
"fragments": 1,
"END": 1
},
- "BlitzBasic": {
- "Local": 34,
- "bk": 3,
- "CreateBank": 5,
- "(": 125,
- ")": 126,
- "PokeFloat": 3,
- "-": 24,
- "Print": 13,
- "Bin": 4,
- "PeekInt": 4,
- "%": 6,
- "Shl": 7,
- "f": 5,
- "ff": 1,
- "+": 11,
- "Hex": 2,
- "FloatToHalf": 3,
- "HalfToFloat": 1,
- "FToI": 2,
- "WaitKey": 2,
- "End": 58,
- ";": 57,
- "Half": 1,
- "precision": 2,
- "bit": 2,
- "arithmetic": 2,
- "library": 2,
- "Global": 2,
- "Half_CBank_": 13,
- "Function": 101,
- "f#": 3,
- "If": 25,
- "Then": 18,
- "Return": 36,
- "HalfToFloat#": 1,
- "h": 4,
- "signBit": 6,
- "exponent": 22,
- "fraction": 9,
- "fBits": 8,
- "And": 8,
- "<": 18,
- "Shr": 3,
- "F": 3,
- "FF": 2,
- "ElseIf": 1,
- "Or": 4,
- "PokeInt": 2,
- "PeekFloat": 1,
- "F800000": 1,
- "FFFFF": 1,
- "Abs": 1,
- "*": 2,
- "Sgn": 1,
- "Else": 7,
- "EndIf": 7,
- "HalfAdd": 1,
- "l": 84,
- "r": 12,
- "HalfSub": 1,
- "HalfMul": 1,
- "HalfDiv": 1,
- "HalfLT": 1,
- "HalfGT": 1,
- "Double": 2,
- "DoubleOut": 1,
- "[": 2,
- "]": 2,
- "Double_CBank_": 1,
- "DoubleToFloat#": 1,
- "d": 1,
- "FloatToDouble": 1,
- "IntToDouble": 1,
- "i": 49,
- "SefToDouble": 1,
- "s": 12,
- "e": 4,
- "DoubleAdd": 1,
- "DoubleSub": 1,
- "DoubleMul": 1,
- "DoubleDiv": 1,
- "DoubleLT": 1,
- "DoubleGT": 1,
- "IDEal": 3,
- "Editor": 3,
- "Parameters": 3,
- "F#1A#20#2F": 1,
- "C#Blitz3D": 3,
- "linked": 2,
- "list": 32,
- "container": 1,
- "class": 1,
- "with": 3,
- "thanks": 1,
- "to": 11,
- "MusicianKool": 3,
- "for": 3,
- "concept": 1,
- "and": 9,
- "issue": 1,
- "fixes": 1,
- "Type": 8,
- "LList": 3,
- "Field": 10,
- "head_.ListNode": 1,
- "tail_.ListNode": 1,
- "ListNode": 8,
- "pv_.ListNode": 1,
- "nx_.ListNode": 1,
- "Value": 37,
- "Iterator": 2,
- "l_.LList": 1,
- "cn_.ListNode": 1,
- "cni_": 8,
- "Create": 4,
- "a": 46,
- "new": 4,
- "object": 2,
- "CreateList.LList": 1,
- "l.LList": 20,
- "New": 11,
- "head_": 35,
- "tail_": 34,
- "nx_": 33,
- "caps": 1,
- "pv_": 27,
- "These": 1,
- "make": 1,
- "it": 1,
- "more": 1,
- "or": 4,
- "less": 1,
- "safe": 1,
- "iterate": 2,
- "freely": 1,
- "Free": 1,
- "all": 3,
- "elements": 4,
- "not": 4,
- "any": 1,
- "values": 4,
- "FreeList": 1,
- "ClearList": 2,
- "Delete": 6,
- "Remove": 7,
- "the": 52,
- "from": 15,
- "does": 1,
- "free": 1,
- "n.ListNode": 12,
- "While": 7,
- "n": 54,
- "nx.ListNode": 1,
- "nx": 1,
- "Wend": 6,
- "Count": 1,
- "number": 1,
- "of": 16,
- "in": 4,
- "slow": 3,
- "ListLength": 2,
- "i.Iterator": 6,
- "GetIterator": 3,
- "elems": 4,
- "EachIn": 5,
- "True": 4,
- "if": 2,
- "contains": 1,
- "given": 7,
- "value": 16,
- "ListContains": 1,
- "ListFindNode": 2,
- "Null": 15,
- "intvalues": 1,
- "bank": 8,
- "ListFromBank.LList": 1,
- "CreateList": 2,
- "size": 4,
- "BankSize": 1,
- "p": 7,
- "For": 6,
- "To": 6,
- "Step": 2,
- "ListAddLast": 2,
- "Next": 7,
- "containing": 3,
- "ListToBank": 1,
- "Swap": 1,
- "contents": 1,
- "two": 1,
- "objects": 1,
- "SwapLists": 1,
- "l1.LList": 1,
- "l2.LList": 1,
- "tempH.ListNode": 1,
- "l1": 4,
- "tempT.ListNode": 1,
- "l2": 4,
- "tempH": 1,
- "tempT": 1,
- "same": 1,
- "as": 2,
- "first": 5,
- "CopyList.LList": 1,
- "lo.LList": 1,
- "ln.LList": 1,
- "lo": 1,
- "ln": 2,
- "Reverse": 1,
- "order": 1,
- "ReverseList": 1,
- "n1.ListNode": 1,
- "n2.ListNode": 1,
- "tmp.ListNode": 1,
- "n1": 5,
- "n2": 6,
- "tmp": 4,
- "Search": 1,
- "retrieve": 1,
- "node": 8,
- "ListFindNode.ListNode": 1,
- "Append": 1,
- "end": 5,
- "fast": 2,
- "return": 7,
- "ListAddLast.ListNode": 1,
- "Attach": 1,
- "start": 13,
- "ListAddFirst.ListNode": 1,
- "occurence": 1,
- "ListRemove": 1,
- "RemoveListNode": 6,
- "element": 4,
- "at": 5,
- "position": 4,
- "backwards": 2,
- "negative": 2,
- "index": 13,
- "ValueAtIndex": 1,
- "ListNodeAtIndex": 3,
- "invalid": 1,
- "ListNodeAtIndex.ListNode": 1,
- "Beyond": 1,
- "valid": 2,
- "Negative": 1,
- "count": 1,
- "backward": 1,
- "Before": 3,
- "Replace": 1,
- "added": 2,
- "by": 3,
- "ReplaceValueAtIndex": 1,
- "RemoveNodeAtIndex": 1,
- "tval": 3,
- "Retrieve": 2,
- "ListFirst": 1,
- "last": 2,
- "ListLast": 1,
- "its": 2,
- "ListRemoveFirst": 1,
- "val": 6,
- "ListRemoveLast": 1,
- "Insert": 3,
- "into": 2,
- "before": 2,
- "specified": 2,
- "InsertBeforeNode.ListNode": 1,
- "bef.ListNode": 1,
- "bef": 7,
- "after": 1,
- "then": 1,
- "InsertAfterNode.ListNode": 1,
- "aft.ListNode": 1,
- "aft": 7,
- "Get": 1,
- "an": 4,
- "iterator": 4,
- "use": 1,
- "loop": 2,
- "This": 1,
- "function": 1,
- "means": 1,
- "that": 1,
- "most": 1,
- "programs": 1,
- "won": 1,
- "available": 1,
- "moment": 1,
- "l_": 7,
- "Exit": 1,
- "there": 1,
- "wasn": 1,
- "t": 1,
- "create": 1,
- "one": 1,
- "cn_": 12,
- "No": 1,
- "especial": 1,
- "reason": 1,
- "why": 1,
- "this": 2,
- "has": 1,
- "be": 1,
- "anything": 1,
- "but": 1,
- "meh": 1,
- "Use": 1,
- "argument": 1,
- "over": 1,
- "members": 1,
- "Still": 1,
- "items": 1,
- "Disconnect": 1,
- "having": 1,
- "reached": 1,
- "False": 3,
- "currently": 1,
- "pointed": 1,
- "IteratorRemove": 1,
- "temp.ListNode": 1,
- "temp": 1,
- "Call": 1,
- "breaking": 1,
- "out": 1,
- "disconnect": 1,
- "IteratorBreak": 1,
- "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,
- "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
- },
- "Bluespec": {
- "package": 2,
- "TbTL": 1,
- ";": 156,
- "import": 1,
- "TL": 6,
- "*": 1,
- "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,
+ "JSON": {
+ "{": 73,
+ "}": 73,
"[": 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,
- "set_car_state_N": 2,
- "x": 8,
- "set_car_state_S": 2,
- "set_car_state_E": 2,
- "set_car_state_W": 2,
- "lampRedNS": 2,
- "lampAmberNS": 2,
- "lampGreenNS": 2,
- "lampRedE": 2,
- "lampAmberE": 2,
- "lampGreenE": 2,
- "lampRedW": 2,
- "lampAmberW": 2,
- "lampGreenW": 2,
- "lampRedPed": 2,
- "lampAmberPed": 2,
- "lampGreenPed": 2,
- "typedef": 3,
- "enum": 1,
- "{": 1,
- "AllRed": 4,
- "GreenNS": 9,
- "AmberNS": 5,
- "GreenE": 8,
- "AmberE": 5,
- "GreenW": 8,
- "AmberW": 5,
- "GreenPed": 4,
- "AmberPed": 3,
- "}": 1,
- "TLstates": 11,
- "deriving": 1,
- "Eq": 1,
- "Bits": 1,
- "UInt#": 2,
- "Time32": 9,
- "CtrSize": 3,
- "allRedDelay": 2,
- "amberDelay": 2,
- "nsGreenDelay": 2,
- "ewGreenDelay": 3,
- "pedGreenDelay": 1,
- "pedAmberDelay": 1,
- "clocks_per_sec": 2,
- "state": 21,
- "next_green": 8,
- "secs": 7,
- "ped_button_pushed": 4,
- "car_present_N": 3,
- "car_present_S": 3,
- "car_present_E": 4,
- "car_present_W": 4,
- "car_present_NS": 3,
- "cycle_ctr": 6,
- "dec_cycle_ctr": 1,
- "Rules": 5,
- "low_priority_rule": 2,
- "rules": 4,
- "inc_sec": 1,
- "endrules": 4,
- "next_state": 8,
- "ns": 4,
- "0": 2,
- "green_seq": 7,
- "case": 2,
- "endcase": 2,
- "car_present": 4,
- "make_from_green_rule": 5,
- "green_state": 2,
- "delay": 2,
- "car_is_present": 2,
- "from_green": 1,
- "make_from_amber_rule": 5,
- "amber_state": 2,
- "ng": 2,
- "from_amber": 1,
- "hprs": 10,
- "7": 1,
- "1": 1,
- "2": 1,
- "3": 1,
- "4": 1,
- "5": 1,
- "6": 1,
- "fromAllRed": 2,
- "else": 4,
- "noAction": 1,
- "high_priority_rules": 4,
- "rJoin": 1,
- "addRules": 1,
- "preempts": 1
+ "true": 3
},
- "Brightscript": {
- "**": 17,
- "Simple": 1,
- "Grid": 2,
- "Screen": 2,
- "Demonstration": 1,
- "App": 1,
- "Copyright": 1,
- "(": 32,
- "c": 1,
- ")": 31,
- "Roku": 1,
- "Inc.": 1,
- "All": 3,
- "Rights": 1,
- "Reserved.": 1,
- "************************************************************": 2,
- "Sub": 2,
- "Main": 1,
- "set": 2,
- "to": 10,
- "go": 1,
- "time": 1,
- "get": 1,
- "started": 1,
- "while": 4,
- "gridstyle": 7,
- "<": 1,
- "print": 7,
- ";": 10,
- "screen": 5,
- "preShowGridScreen": 2,
- "showGridScreen": 2,
- "end": 2,
- "End": 4,
- "Set": 1,
- "the": 17,
- "configurable": 1,
- "theme": 3,
- "attributes": 2,
- "for": 10,
- "application": 1,
- "Configure": 1,
- "custom": 1,
- "overhang": 1,
- "and": 4,
- "Logo": 1,
- "are": 2,
- "artwork": 2,
- "colors": 1,
- "offsets": 1,
- "specific": 1,
- "app": 1,
- "******************************************************": 4,
- "Screens": 1,
- "can": 2,
- "make": 1,
- "slight": 1,
- "adjustments": 1,
- "default": 1,
- "individual": 1,
- "attributes.": 1,
- "these": 1,
- "greyscales": 1,
- "theme.GridScreenBackgroundColor": 1,
- "theme.GridScreenMessageColor": 1,
- "theme.GridScreenRetrievingColor": 1,
- "theme.GridScreenListNameColor": 1,
- "used": 1,
- "in": 3,
- "theme.CounterTextLeft": 1,
- "theme.CounterSeparator": 1,
- "theme.CounterTextRight": 1,
- "theme.GridScreenLogoHD": 1,
- "theme.GridScreenLogoOffsetHD_X": 1,
- "theme.GridScreenLogoOffsetHD_Y": 1,
- "theme.GridScreenOverhangHeightHD": 1,
- "theme.GridScreenLogoSD": 1,
- "theme.GridScreenOverhangHeightSD": 1,
- "theme.GridScreenLogoOffsetSD_X": 1,
- "theme.GridScreenLogoOffsetSD_Y": 1,
- "theme.GridScreenFocusBorderSD": 1,
- "theme.GridScreenFocusBorderHD": 1,
- "use": 1,
- "your": 1,
- "own": 1,
- "description": 1,
- "background": 1,
- "theme.GridScreenDescriptionOffsetSD": 1,
- "theme.GridScreenDescriptionOffsetHD": 1,
- "return": 5,
- "Function": 5,
- "Perform": 1,
- "any": 1,
- "startup/initialization": 1,
- "stuff": 1,
- "prior": 1,
- "style": 6,
- "as": 2,
- "string": 3,
- "As": 3,
- "Object": 2,
- "m.port": 3,
- "CreateObject": 2,
- "screen.SetMessagePort": 1,
- "screen.": 1,
- "The": 1,
- "will": 3,
- "show": 1,
- "retreiving": 1,
- "categoryList": 4,
- "getCategoryList": 1,
- "[": 3,
- "]": 4,
- "+": 1,
- "screen.setupLists": 1,
- "categoryList.count": 2,
- "screen.SetListNames": 1,
- "StyleButtons": 3,
- "getGridControlButtons": 1,
- "screen.SetContentList": 2,
- "i": 3,
- "-": 15,
- "getShowsForCategoryItem": 1,
- "screen.Show": 1,
- "true": 1,
- "msg": 3,
- "wait": 1,
- "getmessageport": 1,
- "does": 1,
- "not": 2,
- "work": 1,
- "on": 1,
- "gridscreen": 1,
- "type": 2,
- "if": 3,
- "then": 3,
- "msg.GetMessage": 1,
- "msg.GetIndex": 3,
- "msg.getData": 2,
- "msg.isListItemFocused": 1,
- "else": 1,
- "msg.isListItemSelected": 1,
- "row": 2,
- "selection": 3,
- "yes": 1,
- "so": 2,
- "we": 3,
- "come": 1,
- "back": 1,
- "with": 2,
- "new": 1,
- ".Title": 1,
- "endif": 1,
- "**********************************************************": 1,
- "this": 3,
- "function": 1,
- "passing": 1,
- "an": 1,
- "roAssociativeArray": 2,
- "be": 2,
- "sufficient": 1,
- "springboard": 2,
- "display": 2,
- "add": 1,
- "code": 1,
- "create": 1,
- "now": 1,
- "do": 1,
- "nothing": 1,
- "Return": 1,
- "list": 1,
- "of": 5,
- "categories": 1,
- "filter": 1,
- "all": 1,
- "categories.": 1,
- "just": 2,
- "static": 1,
- "data": 2,
- "example.": 1,
- "********************************************************************": 1,
- "ContentMetaData": 1,
- "objects": 1,
- "shows": 1,
- "category.": 1,
- "For": 1,
- "example": 1,
- "cheat": 1,
- "but": 2,
- "ideally": 1,
- "you": 1,
- "dynamically": 1,
- "content": 2,
- "each": 1,
- "category": 1,
- "is": 1,
- "dynamic": 1,
- "s": 1,
- "one": 3,
- "small": 1,
- "step": 1,
- "a": 4,
- "man": 1,
- "giant": 1,
- "leap": 1,
- "mankind.": 1,
- "http": 14,
- "//upload.wikimedia.org/wikipedia/commons/1/1e/Apollo_11_first_step.jpg": 2,
- "I": 2,
- "have": 2,
- "Dream": 1,
- "PG": 1,
- "dream": 1,
- "that": 1,
- "my": 1,
- "four": 1,
- "little": 1,
- "children": 1,
- "day": 1,
- "live": 1,
- "nation": 1,
- "where": 1,
- "they": 1,
- "judged": 1,
- "by": 2,
- "color": 1,
- "their": 2,
- "skin": 1,
- "character.": 1,
- "//upload.wikimedia.org/wikipedia/commons/8/81/Martin_Luther_King_": 2,
- "_March_on_Washington.jpg": 2,
- "Flat": 6,
- "Movie": 2,
- "HD": 6,
- "x2": 4,
- "SD": 5,
- "Netflix": 1,
- "//upload.wikimedia.org/wikipedia/commons/4/43/Gold_star_on_blue.gif": 2,
- "Landscape": 1,
- "x3": 6,
- "Channel": 1,
- "Store": 1,
- "//upload.wikimedia.org/wikipedia/commons/thumb/9/96/Dunkery_Hill.jpg/800px": 2,
- "Dunkery_Hill.jpg": 2,
- "Portrait": 1,
- "x4": 1,
- "posters": 3,
- "//upload.wikimedia.org/wikipedia/commons/9/9f/Kane_George_Gurnett.jpg": 2,
- "Square": 1,
- "x1": 1,
- "//upload.wikimedia.org/wikipedia/commons/thumb/d/de/SQUARE_SHAPE.svg/536px": 2,
- "SQUARE_SHAPE.svg.png": 2,
- "x9": 1,
- "//upload.wikimedia.org/wikipedia/commons/thumb/2/22/": 2,
- "%": 8,
- "C3": 4,
- "cran_TV_plat.svg/200px": 2,
- "cran_TV_plat.svg.png": 2,
- "}": 1,
- "buttons": 1
- },
- "C": {
- "#include": 154,
- "const": 358,
- "char": 530,
- "*blob_type": 2,
- ";": 5465,
- "struct": 360,
- "blob": 6,
- "*lookup_blob": 2,
- "(": 6243,
- "unsigned": 140,
- "*sha1": 16,
- ")": 6245,
- "{": 1531,
- "object": 41,
- "*obj": 9,
- "lookup_object": 2,
- "sha1": 20,
- "if": 1015,
- "obj": 48,
- "return": 529,
- "create_object": 2,
- "OBJ_BLOB": 3,
- "alloc_blob_node": 1,
- "-": 1803,
- "type": 36,
- "error": 96,
- "sha1_to_hex": 8,
- "typename": 2,
- "NULL": 330,
- "}": 1547,
- "*": 261,
- "int": 446,
- "parse_blob_buffer": 2,
- "*item": 10,
- "void": 288,
- "*buffer": 6,
- "long": 105,
- "size": 120,
- "item": 24,
- "object.parsed": 4,
- "#ifndef": 89,
- "BLOB_H": 2,
- "#define": 920,
- "extern": 38,
- "#endif": 243,
- "BOOTSTRAP_H": 2,
- "": 8,
- "__GNUC__": 8,
- "typedef": 191,
- "*true": 1,
- "*false": 1,
- "*eof": 1,
- "*empty_list": 1,
- "*global_enviroment": 1,
- "enum": 30,
- "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": 7,
- "__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,
- "git_cache_init": 1,
- "git_cache": 4,
- "*cache": 4,
- "size_t": 52,
- "git_cached_obj_freeptr": 1,
- "free_ptr": 2,
- "<": 219,
- "git__size_t_powerof2": 1,
- "cache": 26,
- "size_mask": 6,
- "lru_count": 1,
- "free_obj": 4,
- "git_mutex_init": 1,
- "&": 442,
- "lock": 6,
- "nodes": 10,
- "git__malloc": 3,
- "sizeof": 71,
- "git_cached_obj": 5,
- "GITERR_CHECK_ALLOC": 3,
- "memset": 4,
- "git_cache_free": 1,
- "i": 410,
- "for": 88,
- "+": 551,
- "[": 601,
- "]": 601,
- "git_cached_obj_decref": 3,
- "git__free": 15,
- "*git_cache_get": 1,
- "git_oid": 7,
- "*oid": 2,
- "uint32_t": 144,
- "hash": 12,
- "*node": 2,
- "*result": 1,
- "memcpy": 35,
- "oid": 17,
- "id": 13,
- "git_mutex_lock": 2,
- "node": 9,
- "&&": 248,
- "git_oid_cmp": 6,
- "git_cached_obj_incref": 3,
- "result": 48,
- "git_mutex_unlock": 2,
- "*git_cache_try_store": 1,
- "*_entry": 1,
- "*entry": 2,
- "_entry": 1,
- "entry": 17,
- "else": 190,
- "save_commit_buffer": 3,
- "*commit_type": 2,
- "static": 455,
- "commit": 59,
- "*check_commit": 1,
- "quiet": 5,
- "OBJ_COMMIT": 5,
- "*lookup_commit_reference_gently": 2,
- "deref_tag": 1,
- "parse_object": 1,
- "check_commit": 2,
- "*lookup_commit_reference": 2,
- "lookup_commit_reference_gently": 1,
- "*lookup_commit_or_die": 2,
- "*ref_name": 2,
- "*c": 69,
- "lookup_commit_reference": 2,
- "c": 252,
- "die": 5,
- "_": 3,
- "ref_name": 2,
- "hashcmp": 2,
- "object.sha1": 8,
- "warning": 1,
- "*lookup_commit": 2,
- "alloc_commit_node": 1,
- "*lookup_commit_reference_by_name": 2,
- "*name": 12,
- "*commit": 10,
- "get_sha1": 1,
- "name": 28,
- "||": 141,
- "parse_commit": 3,
- "parse_commit_date": 2,
- "*buf": 10,
- "*tail": 2,
- "*dateptr": 1,
- "buf": 57,
- "tail": 12,
- "memcmp": 6,
- "while": 70,
- "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,
- "/": 9,
- "*graft": 3,
- "cmp": 9,
- "graft": 10,
- "register_commit_graft": 2,
- "ignore_dups": 2,
- "pos": 7,
- "free": 62,
- "alloc_nr": 1,
- "xrealloc": 2,
- "parse_commit_buffer": 3,
- "buffer": 10,
- "*bufptr": 1,
- "parent": 7,
- "commit_list": 35,
- "**pptr": 1,
- "<=>": 16,
- "bufptr": 12,
- "46": 1,
- "tree": 3,
- "5": 1,
- "45": 1,
- "n": 70,
- "bogus": 1,
- "s": 154,
- "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,
- "continue": 20,
- "new_parent": 6,
- "lookup_commit": 2,
- "commit_list_insert": 2,
- "next": 8,
- "date": 5,
- "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,
- "a": 80,
- "b_date": 3,
- "b": 66,
- "a_date": 2,
- "*commit_list_get_next": 1,
- "*a": 9,
- "commit_list_set_next": 1,
- "*next": 6,
- "commit_list_sort_by_date": 2,
- "**list": 5,
- "*list": 2,
- "llist_mergesort": 1,
- "peel_to_type": 1,
- "util": 3,
- "merge_remote_desc": 3,
- "*desc": 1,
- "desc": 5,
- "xmalloc": 2,
- "strdup": 1,
- "**commit_list_append": 2,
- "**next": 2,
- "*new": 1,
- "new": 4,
- "COMMIT_H": 2,
- "*util": 1,
- "indegree": 1,
- "*parents": 4,
- "*tree": 3,
- "decoration": 1,
- "name_decoration": 3,
- "*commit_list_insert": 1,
- "commit_list_count": 1,
- "*l": 1,
- "*commit_list_insert_by_date": 1,
- "free_commit_list": 1,
- "cmit_fmt": 3,
- "CMIT_FMT_RAW": 1,
- "CMIT_FMT_MEDIUM": 2,
- "CMIT_FMT_DEFAULT": 1,
- "CMIT_FMT_SHORT": 1,
- "CMIT_FMT_FULL": 1,
- "CMIT_FMT_FULLER": 1,
- "CMIT_FMT_ONELINE": 1,
- "CMIT_FMT_EMAIL": 1,
- "CMIT_FMT_USERFORMAT": 1,
- "CMIT_FMT_UNSPECIFIED": 1,
- "pretty_print_context": 6,
- "fmt": 4,
- "abbrev": 1,
- "*subject": 1,
- "*after_subject": 1,
- "preserve_subject": 1,
- "date_mode": 2,
- "date_mode_explicit": 1,
- "need_8bit_cte": 2,
- "show_notes": 1,
- "reflog_walk_info": 1,
- "*reflog_info": 1,
- "*output_encoding": 2,
- "userformat_want": 2,
- "notes": 1,
- "has_non_ascii": 1,
- "*text": 1,
- "rev_info": 2,
- "*logmsg_reencode": 1,
- "*reencode_commit_message": 1,
- "**encoding_p": 1,
- "get_commit_format": 1,
- "*arg": 1,
- "*format_subject": 1,
- "strbuf": 12,
- "*sb": 7,
- "*line_separator": 1,
- "userformat_find_requirements": 1,
- "*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,
- "sort_in_topological_order": 1,
- "**": 6,
- "list": 1,
- "lifo": 1,
- "FLEX_ARRAY": 1,
- "*read_graft_line": 1,
- "len": 30,
- "*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,
- "argc": 26,
- "**argv": 6,
- "*prefix": 7,
- "patch": 1,
- "run_add_interactive": 1,
- "*revision": 1,
- "*patch_mode": 1,
- "**pathspec": 1,
- "inline": 3,
- "single_parent": 1,
- "*reduce_heads": 1,
- "commit_extra_header": 7,
- "*key": 5,
- "*value": 5,
- "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,
- "": 1,
- "": 1,
- "": 1,
- "": 1,
- "": 1,
- "": 1,
- "": 1,
- "": 1,
- "": 1,
- "": 1,
- "": 1,
- "": 1,
- "": 1,
- "": 1,
- "": 1,
- "": 1,
- "#ifdef": 66,
- "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,
- "current": 5,
- "cpu_hotplug.refcount": 3,
- "EXPORT_SYMBOL_GPL": 4,
- "put_online_cpus": 2,
- "unlikely": 54,
- "wake_up_process": 1,
- "cpu_hotplug_begin": 4,
- "likely": 22,
- "break": 244,
- "__set_current_state": 1,
- "TASK_UNINTERRUPTIBLE": 1,
- "schedule": 1,
- "cpu_hotplug_done": 4,
- "#else": 94,
- "__ref": 6,
- "register_cpu_notifier": 2,
- "notifier_block": 3,
- "*nb": 3,
- "raw_notifier_chain_register": 1,
- "nb": 2,
- "__cpu_notify": 6,
- "val": 20,
- "*v": 3,
- "nr_to_call": 2,
- "*nr_calls": 1,
- "__raw_notifier_call_chain": 1,
- "v": 11,
- "nr_calls": 9,
- "notifier_to_errno": 1,
- "cpu_notify": 5,
- "cpu_notify_nofail": 4,
- "BUG_ON": 4,
- "EXPORT_SYMBOL": 8,
- "unregister_cpu_notifier": 2,
- "raw_notifier_chain_unregister": 1,
- "clear_tasks_mm_cpumask": 1,
- "cpu": 57,
- "WARN_ON": 1,
- "cpu_online": 5,
- "rcu_read_lock": 1,
- "for_each_process": 2,
- "p": 60,
- "*t": 2,
- "t": 32,
- "find_lock_task_mm": 1,
- "cpumask_clear_cpu": 5,
- "mm_cpumask": 1,
- "mm": 1,
- "task_unlock": 1,
- "rcu_read_unlock": 1,
- "check_for_tasks": 2,
- "write_lock_irq": 1,
- "tasklist_lock": 2,
- "task_cpu": 1,
- "state": 104,
- "TASK_RUNNING": 1,
- "utime": 1,
- "stime": 1,
- "printk": 12,
- "KERN_WARNING": 3,
- "comm": 1,
- "task_pid_nr": 1,
- "flags": 89,
- "write_unlock_irq": 1,
- "take_cpu_down_param": 3,
- "mod": 13,
- "*hcpu": 3,
- "take_cpu_down": 2,
- "*_param": 1,
- "*param": 1,
- "_param": 1,
- "err": 38,
- "__cpu_disable": 1,
- "CPU_DYING": 1,
- "|": 132,
- "param": 2,
- "hcpu": 10,
- "_cpu_down": 3,
- "tasks_frozen": 4,
- "CPU_TASKS_FROZEN": 2,
- "tcd_param": 2,
- ".mod": 1,
- ".hcpu": 1,
- "num_online_cpus": 2,
- "EBUSY": 3,
- "EINVAL": 6,
- "CPU_DOWN_PREPARE": 1,
- "CPU_DOWN_FAILED": 2,
- "__func__": 2,
- "goto": 159,
- "out_release": 3,
- "__stop_machine": 1,
- "cpumask_of": 1,
- "idle_cpu": 1,
- "cpu_relax": 1,
- "__cpu_die": 1,
- "CPU_DEAD": 1,
- "CPU_POST_DEAD": 1,
- "cpu_down": 2,
- "out": 18,
- "__cpuinit": 3,
- "_cpu_up": 3,
- "*idle": 1,
- "cpu_present": 1,
- "idle": 4,
- "idle_thread_get": 1,
- "IS_ERR": 1,
- "PTR_ERR": 1,
- "CPU_UP_PREPARE": 1,
- "out_notify": 3,
- "__cpu_up": 1,
- "CPU_ONLINE": 1,
- "CPU_UP_CANCELED": 1,
- "cpu_up": 2,
- "CONFIG_MEMORY_HOTPLUG": 2,
- "nid": 5,
- "pg_data_t": 1,
- "*pgdat": 1,
- "cpu_possible": 1,
- "KERN_ERR": 5,
- "#if": 92,
- "defined": 42,
- "CONFIG_IA64": 1,
- "cpu_to_node": 1,
- "node_online": 1,
- "mem_online_node": 1,
- "pgdat": 3,
- "NODE_DATA": 1,
- "ENOMEM": 4,
- "node_zonelists": 1,
- "_zonerefs": 1,
- "zone": 1,
- "zonelists_mutex": 2,
- "build_all_zonelists": 1,
- "CONFIG_PM_SLEEP_SMP": 2,
- "cpumask_var_t": 1,
- "frozen_cpus": 9,
- "__weak": 4,
- "arch_disable_nonboot_cpus_begin": 2,
- "arch_disable_nonboot_cpus_end": 2,
- "disable_nonboot_cpus": 1,
- "first_cpu": 3,
- "cpumask_first": 1,
- "cpu_online_mask": 3,
- "cpumask_clear": 2,
- "for_each_online_cpu": 1,
- "cpumask_set_cpu": 5,
- "arch_enable_nonboot_cpus_begin": 2,
- "arch_enable_nonboot_cpus_end": 2,
- "enable_nonboot_cpus": 1,
- "cpumask_empty": 1,
- "KERN_INFO": 2,
- "for_each_cpu": 1,
- "__init": 2,
- "alloc_frozen_cpus": 2,
- "alloc_cpumask_var": 1,
- "GFP_KERNEL": 1,
- "__GFP_ZERO": 1,
- "core_initcall": 2,
- "cpu_hotplug_disable_before_freeze": 2,
- "cpu_hotplug_enable_after_thaw": 2,
- "cpu_hotplug_pm_callback": 2,
- "action": 2,
- "*ptr": 1,
- "switch": 46,
- "case": 273,
- "PM_SUSPEND_PREPARE": 1,
- "PM_HIBERNATION_PREPARE": 1,
- "PM_POST_SUSPEND": 1,
- "PM_POST_HIBERNATION": 1,
- "default": 33,
- "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,
- "<<": 56,
- "MASK_DECLARE_2": 3,
- "MASK_DECLARE_4": 3,
- "MASK_DECLARE_8": 9,
- "cpu_bit_bitmap": 2,
- "BITS_PER_LONG": 2,
- "BITS_TO_LONGS": 1,
- "NR_CPUS": 2,
- "DECLARE_BITMAP": 6,
- "cpu_all_bits": 2,
- "CPU_BITS_ALL": 2,
- "CONFIG_INIT_ALL_POSSIBLE": 1,
- "cpu_possible_bits": 6,
- "CONFIG_NR_CPUS": 5,
- "__read_mostly": 5,
- "cpumask": 7,
- "*const": 4,
- "cpu_possible_mask": 2,
- "to_cpumask": 15,
- "cpu_online_bits": 5,
- "cpu_present_bits": 5,
- "cpu_present_mask": 2,
- "cpu_active_bits": 4,
- "cpu_active_mask": 2,
- "set_cpu_possible": 1,
- "bool": 6,
- "possible": 2,
- "set_cpu_present": 1,
- "present": 2,
- "set_cpu_online": 1,
- "online": 2,
- "set_cpu_active": 1,
- "active": 2,
- "init_cpu_present": 1,
- "*src": 3,
- "cpumask_copy": 3,
- "src": 16,
- "init_cpu_possible": 1,
- "init_cpu_online": 1,
- "*diff_prefix_from_pathspec": 1,
- "git_strarray": 2,
- "*pathspec": 2,
- "git_buf": 3,
- "prefix": 34,
- "GIT_BUF_INIT": 3,
- "*scan": 2,
- "git_buf_common_prefix": 1,
- "pathspec": 15,
- "scan": 4,
- "prefix.ptr": 2,
- "git__iswildcard": 1,
- "git_buf_truncate": 1,
- "prefix.size": 1,
- "git_buf_detach": 1,
- "git_buf_free": 4,
- "diff_pathspec_is_interesting": 2,
- "*str": 1,
- "count": 17,
- "false": 77,
- "true": 73,
- "str": 162,
- "strings": 5,
- "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,
- "length": 58,
- "GIT_ATTR_FNMATCH_NEGATIVE": 1,
- "git_diff_delta": 19,
- "*diff_delta__alloc": 1,
- "git_delta_t": 5,
- "status": 57,
- "*delta": 6,
- "git__calloc": 3,
- "delta": 54,
- "old_file.path": 12,
- "git_pool_strdup": 3,
- "pool": 12,
- "new_file.path": 6,
- "opts.flags": 8,
- "GIT_DIFF_REVERSE": 3,
- "GIT_DELTA_ADDED": 4,
- "GIT_DELTA_DELETED": 7,
- "*diff_delta__dup": 1,
- "*d": 1,
- "git_pool": 4,
- "*pool": 3,
- "d": 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,
- "assert": 41,
- "GIT_DELTA_MODIFIED": 3,
- "old_file.mode": 2,
- "mode": 11,
- "old_file.size": 1,
- "file_size": 6,
- "old_file.flags": 2,
- "GIT_DIFF_FILE_VALID_OID": 4,
- "git_vector_insert": 4,
- "deltas": 8,
- "diff_delta__from_two": 2,
- "*old_entry": 1,
- "*new_entry": 1,
- "*new_oid": 1,
- "GIT_DIFF_INCLUDE_UNMODIFIED": 1,
- "*temp": 1,
- "old_entry": 5,
- "new_entry": 5,
- "temp": 11,
- "new_oid": 3,
- "git_oid_iszero": 2,
- "*diff_strdup_prefix": 1,
- "strlen": 17,
- "git_pool_strcat": 1,
- "git_pool_strndup": 1,
- "diff_delta__cmp": 3,
- "*da": 1,
- "*db": 3,
- "strcmp": 20,
- "da": 2,
- "db": 10,
- "config_bool": 5,
- "git_config": 3,
- "*cfg": 2,
- "defvalue": 2,
- "git_config_get_bool": 1,
- "cfg": 6,
- "giterr_clear": 1,
- "*git_diff_list_alloc": 1,
- "git_repository": 7,
- "*repo": 7,
- "git_diff_options": 7,
- "*opts": 6,
- "repo": 23,
- "git_vector_init": 3,
- "git_pool_init": 2,
- "git_repository_config__weakptr": 1,
- "diffcaps": 13,
- "GIT_DIFFCAPS_HAS_SYMLINKS": 2,
- "GIT_DIFFCAPS_ASSUME_UNCHANGED": 2,
- "GIT_DIFFCAPS_TRUST_EXEC_BIT": 2,
- "GIT_DIFFCAPS_TRUST_CTIME": 2,
- "opts": 24,
- "opts.pathspec": 2,
- "opts.old_prefix": 4,
- "diff_strdup_prefix": 2,
- "old_prefix": 2,
- "DIFF_OLD_PREFIX_DEFAULT": 1,
- "opts.new_prefix": 4,
- "new_prefix": 2,
- "DIFF_NEW_PREFIX_DEFAULT": 1,
- "*swap": 1,
- "swap": 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,
- "full_path": 3,
- "git_buf_joinpath": 1,
- "git_repository_workdir": 1,
- "S_ISLNK": 2,
- "git_odb__hashlink": 1,
- "full_path.ptr": 2,
- "git__is_sizet": 1,
- "giterr_set": 1,
- "GITERR_OS": 1,
- "fd": 34,
- "git_futils_open_ro": 1,
- "git_odb__hashfd": 1,
- "GIT_OBJ_BLOB": 1,
- "p_close": 1,
- "EXEC_BIT_MASK": 3,
- "maybe_modified": 2,
- "git_iterator": 8,
- "*old_iter": 2,
- "*oitem": 2,
- "*new_iter": 2,
- "*nitem": 2,
- "noid": 4,
- "*use_noid": 1,
- "omode": 8,
- "oitem": 29,
- "nmode": 10,
- "nitem": 32,
- "GIT_UNUSED": 1,
- "old_iter": 8,
- "S_ISREG": 1,
- "GIT_MODE_TYPE": 3,
- "GIT_MODE_PERMS_MASK": 1,
- "flags_extended": 2,
- "GIT_IDXENTRY_INTENT_TO_ADD": 1,
- "GIT_IDXENTRY_SKIP_WORKTREE": 1,
- "new_iter": 13,
- "GIT_ITERATOR_WORKDIR": 2,
- "ctime.seconds": 2,
- "mtime.seconds": 2,
- "GIT_DIFFCAPS_USE_DEV": 1,
- "dev": 2,
- "ino": 2,
- "uid": 2,
- "gid": 2,
- "S_ISGITLINK": 1,
- "git_submodule": 1,
- "*sub": 1,
- "GIT_DIFF_IGNORE_SUBMODULES": 1,
- "git_submodule_lookup": 1,
- "sub": 12,
- "ignore": 1,
- "GIT_SUBMODULE_IGNORE_ALL": 1,
- "use_noid": 2,
- "diff_from_iterators": 5,
- "**diff_ptr": 1,
- "ignore_prefix": 6,
- "git_diff_list_alloc": 1,
- "old_src": 1,
- "new_src": 3,
- "git_iterator_current": 2,
- "git_iterator_advance": 5,
- "delta_type": 8,
- "git_buf_len": 1,
- "git__prefixcmp": 2,
- "git_buf_cstr": 1,
- "S_ISDIR": 1,
- "GIT_DIFF_RECURSE_UNTRACKED_DIRS": 1,
- "git_iterator_current_is_ignored": 2,
- "git_buf_sets": 1,
- "git_iterator_advance_into_directory": 1,
- "git_iterator_free": 4,
- "*diff_ptr": 2,
- "git_diff_tree_to_tree": 1,
- "git_tree": 4,
- "*old_tree": 3,
- "*new_tree": 1,
- "**diff": 4,
- "diff_prefix_from_pathspec": 4,
- "old_tree": 5,
- "new_tree": 2,
- "git_iterator_for_tree_range": 4,
- "git_diff_index_to_tree": 1,
- "git_iterator_for_index_range": 2,
- "git_diff_workdir_to_index": 1,
- "git_iterator_for_workdir_range": 2,
- "git_diff_workdir_to_tree": 1,
- "git_diff_merge": 1,
- "*onto": 1,
- "*from": 1,
- "onto_pool": 7,
- "git_vector": 1,
- "onto_new": 6,
- "j": 206,
- "onto": 7,
- "from": 16,
- "deltas.length": 4,
- "*o": 8,
- "GIT_VECTOR_GET": 2,
- "*f": 2,
- "f": 184,
- "o": 80,
- "diff_delta__merge_like_cgit": 1,
- "git_vector_swap": 1,
- "git_pool_swap": 1,
- "ATSHOME_LIBATS_DYNARRAY_CATS": 3,
- "": 5,
- "atslib_dynarray_memcpy": 1,
- "atslib_dynarray_memmove": 1,
- "memmove": 2,
- "//": 262,
- "ifndef": 2,
- "git_usage_string": 2,
- "git_more_info_string": 2,
- "N_": 1,
- "startup_info": 3,
- "git_startup_info": 2,
- "use_pager": 8,
- "pager_config": 3,
- "*cmd": 5,
- "want": 3,
- "pager_command_config": 2,
- "*data": 12,
- "data": 69,
- "prefixcmp": 3,
- "var": 7,
- "cmd": 46,
- "git_config_maybe_bool": 1,
- "value": 9,
- "xstrdup": 2,
- "check_pager_config": 3,
- "c.cmd": 1,
- "c.want": 2,
- "c.value": 3,
- "pager_program": 1,
- "commit_pager_choice": 4,
- "setenv": 1,
- "setup_pager": 1,
- "handle_options": 2,
- "***argv": 2,
- "*argc": 1,
- "*envchanged": 1,
- "**orig_argv": 1,
- "*argv": 6,
- "new_argv": 7,
- "option_count": 1,
- "alias_command": 4,
- "trace_argv_printf": 3,
- "*argcp": 4,
- "subdir": 3,
- "chdir": 2,
- "die_errno": 3,
- "errno": 20,
- "saved_errno": 1,
- "git_version_string": 1,
- "GIT_VERSION": 1,
- "RUN_SETUP": 81,
- "RUN_SETUP_GENTLY": 16,
- "USE_PAGER": 3,
- "NEED_WORK_TREE": 18,
- "cmd_struct": 4,
- "option": 9,
- "run_builtin": 2,
- "help": 4,
- "stat": 3,
- "st": 2,
- "argv": 54,
- "setup_git_directory": 1,
- "nongit_ok": 2,
- "setup_git_directory_gently": 1,
- "have_repository": 1,
- "trace_repo_setup": 1,
- "setup_work_tree": 1,
- "fn": 5,
- "fstat": 1,
- "fileno": 1,
- "stdout": 5,
- "S_ISFIFO": 1,
- "st.st_mode": 2,
- "S_ISSOCK": 1,
- "fflush": 2,
- "ferror": 2,
- "fclose": 5,
- "handle_internal_command": 3,
- "commands": 3,
- "cmd_add": 2,
- "cmd_annotate": 1,
- "cmd_apply": 1,
- "cmd_archive": 1,
- "cmd_bisect__helper": 1,
- "cmd_blame": 2,
- "cmd_branch": 1,
- "cmd_bundle": 1,
- "cmd_cat_file": 1,
- "cmd_check_attr": 1,
- "cmd_check_ref_format": 1,
- "cmd_checkout": 1,
- "cmd_checkout_index": 1,
- "cmd_cherry": 1,
- "cmd_cherry_pick": 1,
- "cmd_clean": 1,
- "cmd_clone": 1,
- "cmd_column": 1,
- "cmd_commit": 1,
- "cmd_commit_tree": 1,
- "cmd_config": 1,
- "cmd_count_objects": 1,
- "cmd_describe": 1,
- "cmd_diff": 1,
- "cmd_diff_files": 1,
- "cmd_diff_index": 1,
- "cmd_diff_tree": 1,
- "cmd_fast_export": 1,
- "cmd_fetch": 1,
- "cmd_fetch_pack": 1,
- "cmd_fmt_merge_msg": 1,
- "cmd_for_each_ref": 1,
- "cmd_format_patch": 1,
- "cmd_fsck": 2,
- "cmd_gc": 1,
- "cmd_get_tar_commit_id": 1,
- "cmd_grep": 1,
- "cmd_hash_object": 1,
- "cmd_help": 1,
- "cmd_index_pack": 1,
- "cmd_init_db": 2,
- "cmd_log": 1,
- "cmd_ls_files": 1,
- "cmd_ls_remote": 2,
- "cmd_ls_tree": 1,
- "cmd_mailinfo": 1,
- "cmd_mailsplit": 1,
- "cmd_merge": 1,
- "cmd_merge_base": 1,
- "cmd_merge_file": 1,
- "cmd_merge_index": 1,
- "cmd_merge_ours": 1,
- "cmd_merge_recursive": 4,
- "cmd_merge_tree": 1,
- "cmd_mktag": 1,
- "cmd_mktree": 1,
- "cmd_mv": 1,
- "cmd_name_rev": 1,
- "cmd_notes": 1,
- "cmd_pack_objects": 1,
- "cmd_pack_redundant": 1,
- "cmd_pack_refs": 1,
- "cmd_patch_id": 1,
- "cmd_prune": 1,
- "cmd_prune_packed": 1,
- "cmd_push": 1,
- "cmd_read_tree": 1,
- "cmd_receive_pack": 1,
- "cmd_reflog": 1,
- "cmd_remote": 1,
- "cmd_remote_ext": 1,
- "cmd_remote_fd": 1,
- "cmd_replace": 1,
- "cmd_repo_config": 1,
- "cmd_rerere": 1,
- "cmd_reset": 1,
- "cmd_rev_list": 1,
- "cmd_rev_parse": 1,
- "cmd_revert": 1,
- "cmd_rm": 1,
- "cmd_send_pack": 1,
- "cmd_shortlog": 1,
- "cmd_show": 1,
- "cmd_show_branch": 1,
- "cmd_show_ref": 1,
- "cmd_status": 1,
- "cmd_stripspace": 1,
- "cmd_symbolic_ref": 1,
- "cmd_tag": 1,
- "cmd_tar_tree": 1,
- "cmd_unpack_file": 1,
- "cmd_unpack_objects": 1,
- "cmd_update_index": 1,
- "cmd_update_ref": 1,
- "cmd_update_server_info": 1,
- "cmd_upload_archive": 1,
- "cmd_upload_archive_writer": 1,
- "cmd_var": 1,
- "cmd_verify_pack": 1,
- "cmd_verify_tag": 1,
- "cmd_version": 1,
- "cmd_whatchanged": 1,
- "cmd_write_tree": 1,
- "ext": 4,
- "STRIP_EXTENSION": 1,
- "*argv0": 1,
- "argv0": 2,
- "ARRAY_SIZE": 1,
- "exit": 20,
- "execv_dashed_external": 2,
- "STRBUF_INIT": 1,
- "*tmp": 1,
- "strbuf_addf": 1,
- "tmp": 6,
- "cmd.buf": 1,
- "run_command_v_opt": 1,
- "RUN_SILENT_EXEC_FAILURE": 1,
- "RUN_CLEAN_ON_EXIT": 1,
- "ENOENT": 3,
- "strbuf_release": 1,
- "run_argv": 2,
- "done_alias": 4,
- "argcp": 2,
- "handle_alias": 1,
- "main": 3,
- "git_extract_argv0_path": 1,
- "git_setup_gettext": 1,
- "printf": 4,
- "list_common_cmds_help": 1,
- "setup_path": 1,
- "done_help": 3,
- "was_alias": 3,
- "fprintf": 18,
- "stderr": 15,
- "help_unknown_cmd": 1,
- "strerror": 4,
- "PPC_SHA1": 1,
- "git_hash_ctx": 7,
- "SHA_CTX": 3,
- "*git_hash_new_ctx": 1,
- "*ctx": 5,
- "ctx": 16,
- "SHA1_Init": 4,
- "git_hash_free_ctx": 1,
- "git_hash_init": 1,
- "git_hash_update": 1,
- "SHA1_Update": 3,
- "git_hash_final": 1,
- "*out": 3,
- "SHA1_Final": 3,
- "git_hash_buf": 1,
- "git_hash_vec": 1,
- "git_buf_vec": 1,
- "*vec": 1,
- "vec": 2,
- ".data": 1,
- ".len": 3,
- "HELLO_H": 2,
- "hello": 1,
- "": 5,
- "": 2,
- "": 3,
- "": 3,
- "": 2,
- "ULLONG_MAX": 10,
- "MIN": 3,
- "HTTP_PARSER_DEBUG": 4,
- "SET_ERRNO": 47,
- "e": 4,
- "do": 21,
- "parser": 334,
- "http_errno": 11,
- "error_lineno": 3,
- "__LINE__": 50,
- "CALLBACK_NOTIFY_": 3,
- "FOR": 11,
- "ER": 4,
- "HTTP_PARSER_ERRNO": 10,
- "HPE_OK": 10,
- "settings": 6,
- "on_##FOR": 4,
- "HPE_CB_##FOR": 2,
- "CALLBACK_NOTIFY": 10,
- "CALLBACK_NOTIFY_NOADVANCE": 2,
- "CALLBACK_DATA_": 4,
- "LEN": 2,
- "FOR##_mark": 7,
- "CALLBACK_DATA": 10,
- "CALLBACK_DATA_NOADVANCE": 6,
- "MARK": 7,
- "PROXY_CONNECTION": 4,
- "CONNECTION": 4,
- "CONTENT_LENGTH": 4,
- "TRANSFER_ENCODING": 4,
- "UPGRADE": 4,
- "CHUNKED": 4,
- "KEEP_ALIVE": 4,
- "CLOSE": 4,
- "*method_strings": 1,
- "XX": 63,
- "num": 24,
- "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,
- "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,
- "character": 11,
- "classes": 1,
- "depends": 1,
- "on": 4,
- "strict": 2,
- "define": 14,
- "CR": 18,
- "r": 58,
- "LF": 21,
- "LOWER": 7,
- "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,
- "endif": 6,
- "start_state": 1,
- "HTTP_REQUEST": 7,
- "cond": 1,
- "HPE_STRICT": 1,
- "HTTP_STRERROR_GEN": 3,
- "#n": 1,
- "*description": 1,
- "http_strerror_tab": 7,
- "HTTP_ERRNO_MAP": 3,
- "http_message_needs_eof": 4,
- "http_parser": 13,
- "*parser": 9,
- "parse_url_char": 5,
- "ch": 145,
- "http_parser_execute": 2,
- "http_parser_settings": 5,
- "*settings": 2,
- "unhex_val": 7,
- "*header_field_mark": 1,
- "*header_value_mark": 1,
- "*url_mark": 1,
- "*body_mark": 1,
- "message_complete": 7,
- "HPE_INVALID_EOF_STATE": 1,
- "header_field_mark": 2,
- "header_value_mark": 2,
- "url_mark": 2,
- "nread": 7,
- "HTTP_MAX_HEADER_SIZE": 2,
- "HPE_HEADER_OVERFLOW": 1,
- "reexecute_byte": 7,
- "HPE_CLOSED_CONNECTION": 1,
- "content_length": 27,
- "message_begin": 3,
- "HTTP_RESPONSE": 3,
- "HPE_INVALID_CONSTANT": 3,
- "method": 39,
- "HTTP_HEAD": 2,
- "index": 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,
- "header_value": 6,
- "F_UPGRADE": 3,
- "HPE_INVALID_CONTENT_LENGTH": 4,
- "uint64_t": 8,
- "F_CONNECTION_KEEP_ALIVE": 3,
- "F_CONNECTION_CLOSE": 3,
- "F_CHUNKED": 11,
- "F_TRAILING": 3,
- "NEW_MESSAGE": 6,
- "upgrade": 3,
- "on_headers_complete": 3,
- "F_SKIPBODY": 4,
- "HPE_CB_headers_complete": 1,
- "to_read": 6,
- "body": 6,
- "body_mark": 2,
- "HPE_INVALID_CHUNK_SIZE": 2,
- "HPE_INVALID_INTERNAL_STATE": 1,
- "1": 2,
- "HPE_UNKNOWN": 1,
- "Does": 1,
- "the": 91,
- "need": 5,
- "to": 37,
- "see": 2,
- "an": 2,
- "EOF": 26,
- "find": 1,
- "end": 48,
- "of": 44,
- "message": 3,
- "http_should_keep_alive": 2,
- "http_method_str": 1,
- "m": 8,
- "http_parser_init": 2,
- "http_parser_type": 3,
- "http_errno_name": 1,
- "/sizeof": 4,
- ".name": 1,
- "http_errno_description": 1,
- ".description": 1,
- "http_parser_parse_url": 2,
- "buflen": 3,
- "is_connect": 4,
- "http_parser_url": 3,
- "*u": 2,
- "http_parser_url_fields": 2,
- "uf": 14,
- "old_uf": 4,
- "u": 18,
- "port": 7,
- "field_set": 5,
- "UF_MAX": 3,
- "UF_SCHEMA": 2,
- "UF_HOST": 3,
- "UF_PORT": 5,
- "UF_PATH": 2,
- "UF_QUERY": 2,
- "UF_FRAGMENT": 2,
- "field_data": 5,
- ".off": 2,
- "xffff": 1,
- "uint16_t": 12,
- "http_parser_pause": 2,
- "paused": 3,
- "HPE_PAUSED": 2,
- "http_parser_h": 2,
- "__cplusplus": 20,
- "HTTP_PARSER_VERSION_MAJOR": 1,
- "HTTP_PARSER_VERSION_MINOR": 1,
- "": 2,
- "_WIN32": 3,
- "__MINGW32__": 1,
- "_MSC_VER": 5,
- "__int8": 2,
- "__int16": 2,
- "int16_t": 1,
- "__int32": 2,
- "int32_t": 112,
- "__int64": 3,
- "int64_t": 2,
- "ssize_t": 1,
- "": 1,
- "*1024": 4,
- "DELETE": 2,
- "GET": 2,
- "HEAD": 2,
- "POST": 2,
- "PUT": 2,
- "CONNECT": 2,
- "OPTIONS": 2,
- "TRACE": 2,
- "COPY": 2,
- "LOCK": 2,
- "MKCOL": 2,
- "MOVE": 2,
- "PROPFIND": 2,
- "PROPPATCH": 2,
- "SEARCH": 3,
- "UNLOCK": 2,
- "REPORT": 2,
- "MKACTIVITY": 2,
- "CHECKOUT": 2,
- "MERGE": 2,
- "MSEARCH": 1,
- "M": 1,
- "NOTIFY": 2,
- "SUBSCRIBE": 2,
- "UNSUBSCRIBE": 2,
- "PATCH": 2,
- "PURGE": 2,
- "HTTP_##name": 1,
- "HTTP_BOTH": 1,
- "OK": 1,
- "CB_message_begin": 1,
- "CB_url": 1,
- "CB_header_field": 1,
- "CB_header_value": 1,
- "CB_headers_complete": 1,
- "CB_body": 1,
- "CB_message_complete": 1,
- "INVALID_EOF_STATE": 1,
- "HEADER_OVERFLOW": 1,
- "CLOSED_CONNECTION": 1,
- "INVALID_VERSION": 1,
- "INVALID_STATUS": 1,
- "INVALID_METHOD": 1,
- "INVALID_URL": 1,
- "INVALID_HOST": 1,
- "INVALID_PORT": 1,
- "INVALID_PATH": 1,
- "INVALID_QUERY_STRING": 1,
- "INVALID_FRAGMENT": 1,
- "LF_EXPECTED": 1,
- "INVALID_HEADER_TOKEN": 1,
- "INVALID_CONTENT_LENGTH": 1,
- "INVALID_CHUNK_SIZE": 1,
- "INVALID_CONSTANT": 1,
- "INVALID_INTERNAL_STATE": 1,
- "STRICT": 1,
- "PAUSED": 1,
- "UNKNOWN": 1,
- "HTTP_ERRNO_GEN": 3,
- "HPE_##n": 1,
- "HTTP_PARSER_ERRNO_LINE": 2,
- "short": 6,
- "http_cb": 3,
- "on_message_begin": 1,
- "http_data_cb": 4,
- "on_url": 1,
- "on_header_field": 1,
- "on_header_value": 1,
- "on_body": 1,
- "on_message_complete": 1,
- "off": 8,
- "*http_method_str": 1,
- "*http_errno_name": 1,
- "*http_errno_description": 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,
- "strncasecmp": 2,
- "_strnicmp": 1,
- "REF_TABLE_SIZE": 1,
- "BUFFER_BLOCK": 5,
- "BUFFER_SPAN": 9,
- "MKD_LI_END": 1,
- "gperf_case_strncmp": 1,
- "s1": 6,
- "s2": 6,
- "GPERF_DOWNCASE": 1,
- "GPERF_CASE_STRNCMP": 1,
- "link_ref": 2,
- "*link": 1,
- "*title": 1,
- "sd_markdown": 6,
- "tag": 1,
- "tag_len": 3,
- "w": 6,
- "is_empty": 4,
- "htmlblock_end": 3,
- "*curtag": 2,
- "*rndr": 4,
- "start_of_line": 2,
- "tag_size": 3,
- "curtag": 8,
- "end_tag": 4,
- "block_lines": 3,
- "htmlblock_end_tag": 1,
- "rndr": 25,
- "parse_htmlblock": 1,
- "*ob": 3,
- "do_render": 4,
- "tag_end": 7,
- "work": 4,
- "find_block_tag": 1,
- "work.size": 5,
- "cb.blockhtml": 6,
- "ob": 14,
- "opaque": 8,
- "parse_table_row": 1,
- "columns": 3,
- "*col_data": 1,
- "header_flag": 3,
- "col": 9,
- "*row_work": 1,
- "cb.table_cell": 3,
- "cb.table_row": 2,
- "row_work": 4,
- "rndr_newbuf": 2,
- "cell_start": 5,
- "cell_end": 6,
- "*cell_work": 1,
- "cell_work": 3,
- "_isspace": 3,
- "parse_inline": 1,
- "col_data": 2,
- "rndr_popbuf": 2,
- "empty_cell": 2,
- "parse_table_header": 1,
- "*columns": 2,
- "**column_data": 1,
- "pipes": 23,
- "header_end": 7,
- "under_end": 1,
- "*column_data": 1,
- "calloc": 1,
- "beg": 10,
- "doc_size": 6,
- "document": 9,
- "UTF8_BOM": 1,
- "is_ref": 1,
- "md": 18,
- "refs": 2,
- "expand_tabs": 1,
- "text": 22,
- "bufputc": 2,
- "bufgrow": 1,
- "MARKDOWN_GROW": 1,
- "cb.doc_header": 2,
- "parse_block": 1,
- "cb.doc_footer": 2,
- "bufrelease": 3,
- "free_link_refs": 1,
- "work_bufs": 8,
- ".size": 2,
- "sd_markdown_free": 1,
- "*md": 1,
- ".asize": 2,
- ".item": 2,
- "stack_free": 2,
- "sd_version": 1,
- "*ver_major": 2,
- "*ver_minor": 2,
- "*ver_revision": 2,
- "SUNDOWN_VER_MAJOR": 1,
- "SUNDOWN_VER_MINOR": 1,
- "SUNDOWN_VER_REVISION": 1,
- "": 4,
- "": 2,
- "": 1,
- "": 1,
- "": 2,
- "__APPLE__": 2,
- "TARGET_OS_IPHONE": 1,
- "**environ": 1,
- "uv__chld": 2,
- "EV_P_": 1,
- "ev_child*": 1,
- "watcher": 4,
- "revents": 2,
- "rstatus": 1,
- "exit_status": 3,
- "term_signal": 3,
- "uv_process_t": 1,
- "*process": 1,
- "process": 19,
- "child_watcher": 5,
- "EV_CHILD": 1,
- "ev_child_stop": 2,
- "EV_A_": 1,
- "WIFEXITED": 1,
- "WEXITSTATUS": 2,
- "WIFSIGNALED": 2,
- "WTERMSIG": 2,
- "exit_cb": 3,
- "uv__make_socketpair": 2,
- "fds": 20,
- "SOCK_NONBLOCK": 2,
- "fl": 8,
- "SOCK_CLOEXEC": 1,
- "UV__F_NONBLOCK": 5,
- "socketpair": 2,
- "AF_UNIX": 2,
- "SOCK_STREAM": 2,
- "uv__cloexec": 4,
- "uv__nonblock": 5,
- "uv__make_pipe": 2,
- "__linux__": 3,
- "UV__O_CLOEXEC": 1,
- "UV__O_NONBLOCK": 1,
- "uv__pipe2": 1,
- "ENOSYS": 1,
- "pipe": 1,
- "uv__process_init_stdio": 2,
- "uv_stdio_container_t*": 4,
- "container": 17,
- "writable": 8,
- "UV_IGNORE": 2,
- "UV_CREATE_PIPE": 4,
- "UV_INHERIT_FD": 3,
- "UV_INHERIT_STREAM": 2,
- "data.stream": 7,
- "UV_NAMED_PIPE": 2,
- "data.fd": 1,
- "uv__process_stdio_flags": 2,
- "uv_pipe_t*": 1,
- "ipc": 1,
- "UV_STREAM_READABLE": 2,
- "UV_STREAM_WRITABLE": 2,
- "uv__process_open_stream": 2,
- "child_fd": 3,
- "close": 13,
- "uv__stream_open": 1,
- "uv_stream_t*": 2,
- "uv__process_close_stream": 2,
- "uv__stream_close": 1,
- "uv__process_child_init": 2,
- "uv_process_options_t": 2,
- "options": 62,
- "stdio_count": 7,
- "int*": 22,
- "options.flags": 4,
- "UV_PROCESS_DETACHED": 2,
- "setsid": 2,
- "close_fd": 2,
- "use_fd": 7,
- "open": 4,
- "O_RDONLY": 1,
- "O_RDWR": 2,
- "perror": 5,
- "_exit": 6,
- "dup2": 4,
- "options.cwd": 2,
- "UV_PROCESS_SETGID": 2,
- "setgid": 1,
- "options.gid": 1,
- "UV_PROCESS_SETUID": 2,
- "setuid": 1,
- "options.uid": 1,
- "environ": 4,
- "options.env": 1,
- "execvp": 1,
- "options.file": 2,
- "options.args": 1,
- "SPAWN_WAIT_EXEC": 5,
- "uv_spawn": 1,
- "uv_loop_t*": 1,
- "loop": 9,
- "uv_process_t*": 3,
- "char**": 7,
- "save_our_env": 3,
- "options.stdio_count": 4,
- "malloc": 3,
- "signal_pipe": 7,
- "pollfd": 1,
- "pfd": 2,
- "pid_t": 2,
- "pid": 13,
- "UV_PROCESS_WINDOWS_VERBATIM_ARGUMENTS": 1,
- "uv__handle_init": 1,
- "uv_handle_t*": 1,
- "UV_PROCESS": 1,
- "counters.process_init": 1,
- "uv__handle_start": 1,
- "options.exit_cb": 1,
- "options.stdio": 3,
- "fork": 2,
- "pfd.fd": 1,
- "pfd.events": 1,
- "POLLIN": 1,
- "POLLHUP": 1,
- "pfd.revents": 1,
- "poll": 1,
- "EINTR": 1,
- "ev_child_init": 1,
- "ev_child_start": 1,
- "ev": 2,
- "child_watcher.data": 1,
- "uv__set_sys_error": 2,
- "uv_process_kill": 1,
- "signum": 4,
- "kill": 4,
- "uv_err_t": 1,
- "uv_kill": 1,
- "uv__new_sys_error": 1,
- "uv_ok_": 1,
- "uv__process_close": 1,
- "handle": 10,
- "uv__handle_stop": 1,
- "VALUE": 13,
- "rb_cRDiscount": 4,
- "rb_rdiscount_to_html": 2,
- "self": 9,
- "*res": 2,
- "szres": 8,
- "encoding": 14,
- "rb_funcall": 14,
- "rb_intern": 15,
- "rb_str_buf_new": 2,
- "Check_Type": 2,
- "T_STRING": 2,
- "rb_rdiscount__get_flags": 3,
- "MMIOT": 2,
- "*doc": 2,
- "mkd_string": 2,
- "RSTRING_PTR": 2,
- "RSTRING_LEN": 2,
- "mkd_compile": 2,
- "doc": 6,
- "mkd_document": 1,
- "res": 4,
- "rb_str_cat": 4,
- "mkd_cleanup": 2,
- "rb_respond_to": 1,
- "rb_rdiscount_toc_content": 2,
- "mkd_toc": 1,
- "ruby_obj": 11,
- "MKD_TABSTOP": 1,
- "MKD_NOHEADER": 1,
- "Qtrue": 10,
- "MKD_NOPANTS": 1,
- "MKD_NOHTML": 1,
- "MKD_TOC": 1,
- "MKD_NOIMAGE": 1,
- "MKD_NOLINKS": 1,
- "MKD_NOTABLES": 1,
- "MKD_STRICT": 1,
- "MKD_AUTOLINK": 1,
- "MKD_SAFELINK": 1,
- "MKD_NO_EXT": 1,
- "Init_rdiscount": 1,
- "rb_define_class": 1,
- "rb_cObject": 1,
- "rb_define_method": 2,
- "READLINE_READLINE_CATS": 3,
- "": 1,
- "atscntrb_readline_rl_library_version": 1,
- "char*": 167,
- "rl_library_version": 1,
- "atscntrb_readline_rl_readline_version": 1,
- "rl_readline_version": 1,
- "atscntrb_readline_readline": 1,
- "readline": 1,
- "": 1,
- "": 1,
- "": 1,
- "": 1,
- "": 1,
- "": 1,
- "": 2,
- "": 1,
- "": 1,
- "": 3,
- "": 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,
- "FILE": 3,
- "*fp": 3,
- "rawmode": 2,
- "REDIS_LOG_RAW": 2,
- "xff": 3,
- "server.verbosity": 4,
- "fp": 13,
- "server.logfile": 8,
- "fopen": 3,
- "msg": 10,
- "timeval": 4,
- "tv": 8,
- "gettimeofday": 4,
- "strftime": 1,
- "localtime": 1,
- "tv.tv_sec": 4,
- "snprintf": 2,
- "tv.tv_usec/1000": 1,
- "getpid": 7,
- "server.syslog_enabled": 3,
- "syslog": 1,
- "redisLog": 33,
- "...": 127,
- "va_list": 3,
- "ap": 4,
- "REDIS_MAX_LOGMSG_LEN": 1,
- "va_start": 3,
- "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,
- "time": 10,
- "oom": 3,
- "REDIS_WARNING": 19,
- "sleep": 1,
- "abort": 1,
- "ustime": 7,
- "ust": 7,
- "*1000000": 1,
- "tv.tv_usec": 3,
- "mstime": 5,
- "/1000": 1,
- "exitFromChild": 1,
- "retcode": 3,
- "COVERAGE_TEST": 1,
- "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,
- "*dict": 5,
- "used": 10,
- "dictSlots": 3,
- "dictSize": 10,
- "DICT_HT_INITIAL_SIZE": 2,
- "used*100/size": 1,
- "REDIS_HT_MINFILL": 1,
- "tryResizeHashTables": 2,
- "server.dbnum": 8,
- "server.db": 23,
- ".dict": 9,
- "dictResize": 2,
- ".expires": 8,
- "incrementallyRehash": 2,
- "dictIsRehashing": 2,
- "dictRehashMilliseconds": 2,
- "updateDictResizePolicy": 2,
- "server.rdb_child_pid": 12,
- "server.aof_child_pid": 10,
- "dictEnableResize": 1,
- "dictDisableResize": 1,
- "activeExpireCycle": 2,
- "iteration": 6,
- "start": 10,
- "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,
- "head": 3,
- "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,
- "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,
- "listDelNode": 1,
- "REDIS_UNBLOCKED": 1,
- "server.current_client": 3,
- "processInputBuffer": 1,
- "createSharedObjects": 2,
- "shared.crlf": 2,
- "createObject": 31,
- "REDIS_STRING": 31,
- "sdsnew": 27,
- "shared.ok": 3,
- "shared.err": 1,
- "shared.emptybulk": 1,
- "shared.czero": 1,
- "shared.cone": 1,
- "shared.cnegone": 1,
- "shared.nullbulk": 1,
- "shared.emptymultibulk": 1,
- "shared.pong": 2,
- "shared.queued": 2,
- "shared.wrongtypeerr": 1,
- "shared.nokeyerr": 1,
- "shared.syntaxerr": 2,
- "shared.sameobjecterr": 1,
- "shared.outofrangeerr": 1,
- "shared.noscripterr": 1,
- "shared.loadingerr": 2,
- "shared.slowscripterr": 2,
- "shared.masterdownerr": 2,
- "shared.bgsaveerr": 2,
- "shared.roslaveerr": 2,
- "shared.oomerr": 2,
- "shared.space": 1,
- "shared.colon": 1,
- "shared.plus": 1,
- "REDIS_SHARED_SELECT_CMDS": 1,
- "shared.select": 1,
- "sdscatprintf": 24,
- "sdsempty": 8,
- "shared.messagebulk": 1,
- "shared.pmessagebulk": 1,
- "shared.subscribebulk": 1,
- "shared.unsubscribebulk": 1,
- "shared.psubscribebulk": 1,
- "shared.punsubscribebulk": 1,
- "shared.del": 1,
- "shared.rpop": 1,
- "shared.lpop": 1,
- "REDIS_SHARED_INTEGERS": 1,
- "shared.integers": 2,
- "void*": 135,
- "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,
- "oldlimit": 5,
- "limit.rlim_cur": 2,
- "limit.rlim_max": 1,
- "setrlimit": 1,
- "initServer": 2,
- "signal": 2,
- "SIGHUP": 1,
- "SIG_IGN": 2,
- "SIGPIPE": 1,
- "setupSignalHandlers": 2,
- "openlog": 1,
- "LOG_PID": 1,
- "LOG_NDELAY": 1,
- "LOG_NOWAIT": 1,
- "listCreate": 6,
- "server.clients_to_close": 1,
- "server.monitors": 2,
- "server.el": 7,
- "aeCreateEventLoop": 1,
- "zmalloc": 2,
- "*server.dbnum": 1,
- "anetTcpServer": 1,
- "server.neterr": 4,
- "ANET_ERR": 2,
- "unlink": 3,
- "anetUnixServer": 1,
- ".blocking_keys": 1,
- ".watched_keys": 1,
- ".id": 1,
- "server.pubsub_channels": 2,
- "server.pubsub_patterns": 4,
- "listSetFreeMethod": 1,
- "freePubsubPattern": 1,
- "listSetMatchMethod": 1,
- "listMatchPubsubPattern": 1,
- "aofRewriteBufferReset": 1,
- "server.aof_buf": 3,
- "server.rdb_save_time_last": 2,
- "server.rdb_save_time_start": 2,
- "server.stat_numconnections": 2,
- "server.stat_evictedkeys": 3,
- "server.stat_starttime": 2,
- "server.stat_keyspace_misses": 2,
- "server.stat_keyspace_hits": 2,
- "server.stat_fork_time": 2,
- "server.stat_rejected_conn": 2,
- "server.lastbgsave_status": 3,
- "server.stop_writes_on_bgsave_err": 2,
- "aeCreateTimeEvent": 1,
- "aeCreateFileEvent": 2,
- "AE_READABLE": 2,
- "acceptTcpHandler": 1,
- "AE_ERR": 2,
- "acceptUnixHandler": 1,
- "REDIS_AOF_ON": 2,
- "LL*": 1,
- "REDIS_MAXMEMORY_NO_EVICTION": 2,
- "clusterInit": 1,
- "scriptingInit": 1,
- "slowlogInit": 1,
- "bioInit": 1,
- "numcommands": 5,
- "sflags": 1,
- "retval": 3,
- "arity": 3,
- "addReplyErrorFormat": 1,
- "authenticated": 3,
- "proc": 14,
- "addReplyError": 6,
- "getkeys_proc": 1,
- "firstkey": 1,
- "hashslot": 3,
- "server.cluster.state": 1,
- "REDIS_CLUSTER_OK": 1,
- "ask": 3,
- "clusterNode": 1,
- "*n": 1,
- "getNodeByQuery": 1,
- "server.cluster.myself": 1,
- "addReplySds": 3,
- "ip": 4,
- "freeMemoryIfNeeded": 2,
- "REDIS_CMD_DENYOOM": 1,
- "REDIS_ERR": 5,
- "REDIS_CMD_WRITE": 2,
- "REDIS_REPL_CONNECTED": 3,
- "tolower": 2,
- "REDIS_MULTI": 1,
- "queueMultiCommand": 1,
- "call": 1,
- "REDIS_CALL_FULL": 1,
- "save": 2,
- "REDIS_SHUTDOWN_SAVE": 1,
- "nosave": 2,
- "REDIS_SHUTDOWN_NOSAVE": 1,
- "SIGKILL": 2,
- "rdbRemoveTempFile": 1,
- "aof_fsync": 1,
- "rdbSave": 1,
- "addReplyBulk": 1,
- "addReplyMultiBulkLen": 1,
- "addReplyBulkLongLong": 2,
- "bytesToHuman": 3,
- "*s": 3,
- "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,
- "float": 26,
- "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,
- "flushSlavesOutputBuffers": 1,
- "linuxOvercommitMemoryValue": 2,
- "fgets": 1,
- "atoi": 3,
- "linuxOvercommitMemoryWarning": 2,
- "createPidFile": 2,
- "daemonize": 2,
- "STDIN_FILENO": 1,
- "STDERR_FILENO": 2,
- "version": 4,
- "usage": 2,
- "redisAsciiArt": 2,
- "*16": 2,
- "ascii_logo": 1,
- "sigtermHandler": 2,
- "sig": 2,
- "sigaction": 6,
- "act": 6,
- "sigemptyset": 2,
- "act.sa_mask": 2,
- "act.sa_flags": 2,
- "act.sa_handler": 1,
- "SIGTERM": 1,
- "HAVE_BACKTRACE": 1,
- "SA_NODEFER": 1,
- "SA_RESETHAND": 1,
- "SA_SIGINFO": 1,
- "act.sa_sigaction": 1,
- "sigsegvHandler": 1,
- "SIGSEGV": 1,
- "SIGBUS": 1,
- "SIGFPE": 1,
- "SIGILL": 1,
- "memtest": 2,
- "megabytes": 1,
- "passes": 1,
- "zmalloc_enable_thread_safeness": 1,
- "srand": 1,
- "dictSetHashFunctionSeed": 1,
- "*configfile": 1,
- "configfile": 2,
- "sdscatrepr": 1,
- "loadServerConfig": 1,
- "loadAppendOnlyFile": 1,
- "/1000000": 2,
- "rdbLoad": 1,
- "aeSetBeforeSleepProc": 1,
- "aeMain": 1,
- "aeDeleteEventLoop": 1,
- "": 1,
- "": 2,
- "": 2,
- "rfUTF8_IsContinuationbyte": 1,
- "e.t.c.": 1,
- "rfFReadLine_UTF8": 5,
- "FILE*": 64,
- "utf8": 36,
- "uint32_t*": 34,
- "byteLength": 197,
- "bufferSize": 6,
- "eof": 53,
- "bytesN": 98,
- "bIndex": 5,
- "RF_NEWLINE_CRLF": 1,
- "newLineFound": 1,
- "*bufferSize": 1,
- "RF_OPTION_FGETS_READBYTESN": 5,
- "RF_MALLOC": 47,
- "tempBuff": 6,
- "RF_LF": 10,
- "buff": 95,
- "RF_SUCCESS": 14,
- "RE_FILE_EOF": 22,
- "found": 20,
- "*eofReached": 14,
- "LOG_ERROR": 64,
- "RF_HEXEQ_UI": 7,
- "rfFgetc_UTF32BE": 3,
- "else//": 14,
- "undo": 5,
- "peek": 5,
- "ahead": 5,
- "file": 6,
- "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,
- "RF_HEXEQ_C": 9,
- "fgetc": 9,
- "check": 8,
- "RE_FILE_READ": 2,
- "cp": 12,
- "c2": 13,
- "c3": 9,
- "c4": 5,
- "i_READ_CHECK": 20,
- "///": 4,
- "success": 4,
- "cc": 24,
- "we": 10,
- "more": 2,
- "bytes": 225,
- "xC0": 3,
- "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,
- "xE0": 2,
- "xF": 5,
- "decode": 6,
- "xF0": 2,
- "RF_HEXGE_C": 1,
- "xBF": 2,
- "//invalid": 1,
- "byte": 6,
- "are": 6,
- "xFF": 1,
- "//if": 1,
- "needing": 1,
- "than": 5,
- "swapE": 21,
- "v1": 38,
- "v2": 26,
- "rfUTILS_Endianess": 24,
- "RF_LITTLE_ENDIAN": 23,
- "fread": 12,
- "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,
- "depending": 1,
- "number": 19,
- "read": 1,
- "backwards": 1,
- "RE_UTF8_INVALID_SEQUENCE": 2,
- "REFU_IO_H": 2,
- "": 2,
- "opening": 2,
- "bracket": 4,
- "calling": 4,
- "C": 14,
- "xA": 1,
- "RF_CR": 1,
- "xD": 1,
- "REFU_WIN32_VERSION": 1,
- "i_PLUSB_WIN32": 2,
- "foff_rft": 2,
- "off64_t": 1,
- "///Fseek": 1,
- "and": 15,
- "Ftelll": 1,
- "definitions": 1,
- "rfFseek": 2,
- "i_FILE_": 16,
- "i_OFFSET_": 4,
- "i_WHENCE_": 4,
- "_fseeki64": 1,
- "rfFtell": 2,
- "_ftelli64": 1,
- "fseeko64": 1,
- "ftello64": 1,
- "i_DECLIMEX_": 121,
- "rfFReadLine_UTF16BE": 6,
- "rfFReadLine_UTF16LE": 4,
- "rfFReadLine_UTF32BE": 1,
- "rfFReadLine_UTF32LE": 4,
- "rfFgets_UTF32BE": 1,
- "RF_IAMHERE_FOR_DOXYGEN": 22,
- "rfPopen": 2,
- "command": 2,
- "i_rfPopen": 2,
- "i_CMD_": 2,
- "i_MODE_": 2,
- "i_rfLMS_WRAP2": 5,
- "rfPclose": 1,
- "stream": 3,
- "///closing": 1,
- "#endif//include": 1,
- "guards": 2,
- "": 1,
- "": 2,
- "local": 5,
- "stack": 6,
- "memory": 4,
- "RF_OPTION_DEFAULT_ARGUMENTS": 24,
- "RF_String*": 222,
- "rfString_Create": 4,
- "i_rfString_Create": 3,
- "READ_VSNPRINTF_ARGS": 5,
- "rfUTF8_VerifySequence": 7,
- "RF_FAILURE": 24,
- "RE_STRING_INIT_FAILURE": 8,
- "buffAllocated": 11,
- "RF_String": 27,
- "i_NVrfString_Create": 3,
- "i_rfString_CreateLocal1": 3,
- "RF_OPTION_SOURCE_ENCODING": 30,
- "RF_UTF8": 8,
- "characterLength": 16,
- "*codepoints": 2,
- "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,
- "rfUTF16_Decode_swap": 5,
- "RF_UTF16_BE//": 2,
- "RF_UTF32_LE//": 2,
- "copy": 4,
- "UTF32": 4,
- "into": 8,
- "RF_UTF32_BE//": 2,
- "": 2,
- "any": 3,
- "other": 16,
- "UTF": 17,
- "8": 15,
- "encode": 2,
- "them": 3,
- "rfUTF8_Encode": 4,
- "While": 2,
- "attempting": 2,
- "create": 2,
- "temporary": 4,
- "given": 5,
- "sequence": 6,
- "could": 2,
- "not": 6,
- "be": 6,
- "properly": 2,
- "encoded": 2,
- "RE_UTF8_ENCODING": 2,
- "End": 2,
- "Non": 2,
- "code=": 2,
- "normally": 1,
- "since": 5,
- "here": 5,
- "have": 2,
- "validity": 2,
- "get": 4,
- "Error": 2,
- "at": 3,
- "String": 11,
- "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,
- "library": 3,
- "with": 9,
- "bigger": 3,
- "Quitting": 2,
- "proccess": 2,
- "RE_LOCALMEMSTACK_INSUFFICIENT": 8,
- "i_NVrfString_CreateLocal": 3,
- "during": 1,
- "rfString_Init": 3,
- "i_rfString_Init": 3,
- "i_NVrfString_Init": 3,
- "rfString_Create_cp": 2,
- "rfString_Init_cp": 3,
- "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,
- "rfString_Create_i": 2,
- "numLen": 8,
- "max": 4,
- "is": 17,
- "most": 3,
- "environment": 3,
- "so": 4,
- "chars": 3,
- "will": 3,
- "certainly": 3,
- "fit": 3,
- "it": 12,
- "strcpy": 4,
- "rfString_Init_i": 2,
- "rfString_Create_f": 2,
- "rfString_Init_f": 2,
- "rfString_Create_UTF16": 2,
- "rfString_Init_UTF16": 3,
- "utf8ByteLength": 34,
- "last": 1,
- "utf": 1,
- "null": 4,
- "termination": 3,
- "byteLength*2": 1,
- "allocate": 1,
- "same": 1,
- "as": 4,
- "different": 1,
- "RE_INPUT": 1,
- "ends": 3,
- "rfString_Create_UTF32": 2,
- "rfString_Init_UTF32": 3,
- "codeBuffer": 9,
- "xFEFF": 1,
- "big": 14,
- "endian": 20,
- "xFFFE0000": 1,
- "little": 7,
- "according": 1,
- "standard": 1,
- "no": 4,
- "BOM": 1,
- "means": 1,
- "rfUTF32_Length": 1,
- "i_rfString_Assign": 3,
- "dest": 7,
- "sourceP": 2,
- "source": 8,
- "RF_REALLOC": 9,
- "rfString_Assign_char": 2,
- "<5)>": 1,
- "rfString_Create_nc": 3,
- "i_rfString_Create_nc": 3,
- "bytesWritten": 2,
- "i_NVrfString_Create_nc": 3,
- "rfString_Init_nc": 4,
- "i_rfString_Init_nc": 3,
- "i_NVrfString_Init_nc": 3,
- "rfString_Destroy": 2,
- "rfString_Deinit": 3,
- "rfString_ToUTF16": 4,
- "charsN": 5,
- "rfUTF8_Decode": 2,
- "rfUTF16_Encode": 1,
- "rfString_ToUTF32": 4,
- "rfString_Length": 5,
- "RF_STRING_ITERATE_START": 9,
- "RF_STRING_ITERATE_END": 9,
- "rfString_GetChar": 2,
- "thisstr": 210,
- "codePoint": 18,
- "RF_STRING_INDEX_OUT_OF_BOUNDS": 2,
- "rfString_BytePosToCodePoint": 7,
- "rfString_BytePosToCharPos": 4,
- "thisstrP": 32,
- "bytepos": 12,
- "before": 4,
- "charPos": 8,
- "byteI": 7,
- "i_rfString_Equal": 3,
- "s1P": 2,
- "s2P": 2,
- "i_rfString_Find": 5,
- "sstrP": 6,
- "optionsP": 11,
- "sstr": 39,
- "*optionsP": 8,
- "RF_BITFLAG_ON": 5,
- "RF_CASE_IGNORE": 2,
- "strstr": 2,
- "RF_MATCH_WORD": 5,
- "exact": 6,
- "": 1,
- "0x5a": 1,
- "0x7a": 1,
- "substring": 5,
- "search": 1,
- "zero": 2,
- "equals": 1,
- "then": 1,
- "okay": 1,
- "rfString_Equal": 4,
- "RFS_": 8,
- "ERANGE": 1,
- "RE_STRING_TOFLOAT_UNDERFLOW": 1,
- "RE_STRING_TOFLOAT": 1,
- "rfString_Copy_OUT": 2,
- "srcP": 6,
- "rfString_Copy_IN": 2,
- "dst": 15,
- "rfString_Copy_chars": 2,
- "bytePos": 23,
- "terminate": 1,
- "i_rfString_ScanfAfter": 3,
- "afterstrP": 2,
- "format": 4,
- "afterstr": 5,
- "sscanf": 1,
- "<=0)>": 1,
- "Counts": 1,
- "how": 1,
- "many": 1,
- "times": 1,
- "occurs": 1,
- "inside": 2,
- "i_rfString_Count": 5,
- "sstr2": 2,
- "move": 12,
- "rfString_FindBytePos": 10,
- "rfString_Tokenize": 2,
- "sep": 3,
- "tokensN": 2,
- "RF_String**": 2,
- "*tokensN": 1,
- "rfString_Count": 4,
- "lstr": 6,
- "lstrP": 1,
- "rstr": 24,
- "rstrP": 5,
- "rfString_After": 4,
- "rfString_Beforev": 4,
- "parNP": 6,
- "i_rfString_Beforev": 16,
- "parN": 10,
- "*parNP": 2,
- "minPos": 17,
- "thisPos": 8,
- "argList": 8,
- "va_arg": 2,
- "i_rfString_Before": 5,
- "i_rfString_After": 5,
- "afterP": 2,
- "after": 6,
- "rfString_Afterv": 4,
- "i_rfString_Afterv": 16,
- "minPosLength": 3,
- "go": 8,
- "i_rfString_Append": 3,
- "otherP": 4,
- "strncat": 1,
- "rfString_Append_i": 2,
- "rfString_Append_f": 2,
- "i_rfString_Prepend": 3,
- "goes": 1,
- "i_rfString_Remove": 6,
- "numberP": 1,
- "*numberP": 1,
- "occurences": 5,
- "done": 1,
- "<=thisstr->": 1,
- "i_rfString_KeepOnly": 3,
- "keepstrP": 2,
- "keepLength": 2,
- "charValue": 12,
- "*keepChars": 1,
- "keepstr": 5,
- "exists": 6,
- "charBLength": 5,
- "keepChars": 4,
- "*keepLength": 1,
- "rfString_Iterate_Start": 6,
- "rfString_Iterate_End": 4,
- "": 1,
- "does": 1,
- "exist": 2,
- "back": 1,
- "cover": 1,
- "that": 9,
- "effectively": 1,
- "gets": 1,
- "deleted": 1,
- "rfUTF8_FromCodepoint": 1,
- "this": 5,
- "kind": 1,
- "non": 1,
- "clean": 1,
- "way": 1,
- "macro": 2,
- "internally": 1,
- "uses": 1,
- "byteIndex_": 12,
- "variable": 1,
- "use": 1,
- "determine": 1,
- "backs": 1,
- "by": 1,
- "contiuing": 1,
- "make": 3,
- "sure": 2,
- "position": 1,
- "won": 1,
- "array": 1,
- "rfString_PruneStart": 2,
- "nBytePos": 23,
- "rfString_PruneEnd": 2,
- "RF_STRING_ITERATEB_START": 2,
- "RF_STRING_ITERATEB_END": 2,
- "rfString_PruneMiddleB": 2,
- "pBytePos": 15,
- "indexing": 1,
- "works": 1,
- "pbytePos": 2,
- "pth": 2,
- "include": 6,
- "rfString_PruneMiddleF": 2,
- "got": 1,
- "all": 2,
- "i_rfString_Replace": 6,
- "numP": 1,
- "*numP": 1,
- "RF_StringX": 2,
- "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,
- "i_rfString_StripStart": 3,
- "subP": 7,
- "RF_String*sub": 2,
- "noMatch": 8,
- "*subValues": 2,
- "subLength": 6,
- "subValues": 8,
- "*subLength": 2,
- "i_rfString_StripEnd": 3,
- "lastBytePos": 4,
- "testity": 2,
- "i_rfString_Strip": 3,
- "res1": 2,
- "rfString_StripStart": 3,
- "res2": 2,
- "rfString_StripEnd": 3,
- "rfString_Create_fUTF8": 2,
- "rfString_Init_fUTF8": 3,
- "unused": 3,
- "rfString_Assign_fUTF8": 2,
- "FILE*f": 2,
- "utf8BufferSize": 4,
- "function": 6,
- "rfString_Append_fUTF8": 2,
- "rfString_Append": 5,
- "rfString_Create_fUTF16": 2,
- "rfString_Init_fUTF16": 3,
- "rfString_Assign_fUTF16": 2,
- "rfString_Append_fUTF16": 2,
- "char*utf8": 3,
- "rfString_Create_fUTF32": 2,
- "rfString_Init_fUTF32": 3,
- "<0)>": 1,
- "Failure": 1,
- "initialize": 1,
- "reading": 1,
- "Little": 1,
- "Endian": 1,
- "32": 1,
- "bytesN=": 1,
- "rfString_Assign_fUTF32": 2,
- "rfString_Append_fUTF32": 2,
- "i_rfString_Fwrite": 5,
- "sP": 2,
- "encodingP": 1,
- "*utf32": 1,
- "utf16": 11,
- "*encodingP": 1,
- "fwrite": 5,
- "logging": 5,
- "utf32": 10,
- "i_WRITE_CHECK": 1,
- "RE_FILE_WRITE": 1,
- "REFU_USTRING_H": 2,
- "": 1,
- "RF_MODULE_STRINGS//": 1,
- "included": 2,
- "module": 3,
- "": 1,
- "argument": 1,
- "wrapping": 1,
- "functionality": 1,
- "": 1,
- "unicode": 2,
- "xFF0FFFF": 1,
- "rfUTF8_IsContinuationByte2": 1,
- "b__": 3,
- "0xBF": 1,
- "pragma": 1,
- "pack": 2,
- "push": 1,
- "internal": 4,
- "author": 1,
- "Lefteris": 1,
- "09": 1,
- "12": 1,
- "2010": 1,
- "endinternal": 1,
- "brief": 1,
- "A": 11,
- "representation": 2,
- "The": 1,
- "Refu": 2,
- "Unicode": 1,
- "has": 2,
- "two": 1,
- "versions": 1,
- "One": 1,
- "ref": 1,
- "what": 1,
- "operations": 1,
- "can": 2,
- "performed": 1,
- "extended": 3,
- "Strings": 2,
- "Functions": 1,
- "convert": 1,
- "but": 1,
- "always": 2,
- "Once": 1,
- "been": 1,
- "created": 1,
- "assumed": 1,
- "valid": 1,
- "every": 1,
- "performs": 1,
- "unless": 1,
- "otherwise": 1,
- "specified": 1,
- "All": 1,
- "functions": 2,
- "which": 1,
- "isinherited": 1,
- "StringX": 2,
- "their": 1,
- "description": 1,
- "safely": 1,
- "specific": 1,
- "or": 1,
- "needs": 1,
- "manipulate": 1,
- "Extended": 1,
- "To": 1,
- "documentation": 1,
- "even": 1,
- "clearer": 1,
- "should": 2,
- "marked": 1,
- "notinherited": 1,
- "cppcode": 1,
- "constructor": 1,
- "i_StringCHandle": 1,
- "@endcpp": 1,
- "@endinternal": 1,
- "*/": 1,
- "#pragma": 1,
- "pop": 1,
- "i_rfString_CreateLocal": 2,
- "__VA_ARGS__": 66,
- "RP_SELECT_FUNC_IF_NARGIS": 5,
- "i_SELECT_RF_STRING_CREATE": 1,
- "i_SELECT_RF_STRING_CREATE1": 1,
- "i_SELECT_RF_STRING_CREATE0": 1,
- "///Internal": 1,
- "creates": 1,
- "i_SELECT_RF_STRING_CREATELOCAL": 1,
- "i_SELECT_RF_STRING_CREATELOCAL1": 1,
- "i_SELECT_RF_STRING_CREATELOCAL0": 1,
- "i_SELECT_RF_STRING_INIT": 1,
- "i_SELECT_RF_STRING_INIT1": 1,
- "i_SELECT_RF_STRING_INIT0": 1,
- "code": 6,
- "i_SELECT_RF_STRING_CREATE_NC": 1,
- "i_SELECT_RF_STRING_CREATE_NC1": 1,
- "i_SELECT_RF_STRING_CREATE_NC0": 1,
- "i_SELECT_RF_STRING_INIT_NC": 1,
- "i_SELECT_RF_STRING_INIT_NC1": 1,
- "i_SELECT_RF_STRING_INIT_NC0": 1,
- "//@": 1,
- "rfString_Assign": 2,
- "i_DESTINATION_": 2,
- "i_SOURCE_": 2,
- "rfString_ToUTF8": 2,
- "i_STRING_": 2,
- "rfString_ToCstr": 2,
- "uint32_t*length": 1,
- "string_": 9,
- "startCharacterPos_": 4,
- "characterUnicodeValue_": 4,
- "j_": 6,
- "//Two": 1,
- "macros": 1,
- "accomplish": 1,
- "going": 1,
- "backwards.": 1,
- "This": 1,
- "its": 1,
- "pair.": 1,
- "rfString_IterateB_Start": 1,
- "characterPos_": 5,
- "b_index_": 6,
- "c_index_": 3,
- "rfString_IterateB_End": 1,
- "i_STRING1_": 2,
- "i_STRING2_": 2,
- "i_rfLMSX_WRAP2": 4,
- "rfString_Find": 3,
- "i_THISSTR_": 60,
- "i_SEARCHSTR_": 26,
- "i_OPTIONS_": 28,
- "i_rfLMS_WRAP3": 4,
- "i_RFI8_": 54,
- "RF_SELECT_FUNC_IF_NARGGT": 10,
- "i_NPSELECT_RF_STRING_FIND": 1,
- "i_NPSELECT_RF_STRING_FIND1": 1,
- "RF_COMPILE_ERROR": 33,
- "i_NPSELECT_RF_STRING_FIND0": 1,
- "RF_SELECT_FUNC": 10,
- "i_SELECT_RF_STRING_FIND": 1,
- "i_SELECT_RF_STRING_FIND2": 1,
- "i_SELECT_RF_STRING_FIND3": 1,
- "i_SELECT_RF_STRING_FIND1": 1,
- "i_SELECT_RF_STRING_FIND0": 1,
- "rfString_ToInt": 1,
- "int32_t*": 1,
- "rfString_ToDouble": 1,
- "double*": 1,
- "rfString_ScanfAfter": 2,
- "i_AFTERSTR_": 8,
- "i_FORMAT_": 2,
- "i_VAR_": 2,
- "i_rfLMSX_WRAP4": 11,
- "i_NPSELECT_RF_STRING_COUNT": 1,
- "i_NPSELECT_RF_STRING_COUNT1": 1,
- "i_NPSELECT_RF_STRING_COUNT0": 1,
- "i_SELECT_RF_STRING_COUNT": 1,
- "i_SELECT_RF_STRING_COUNT2": 1,
- "i_rfLMSX_WRAP3": 5,
- "i_SELECT_RF_STRING_COUNT3": 1,
- "i_SELECT_RF_STRING_COUNT1": 1,
- "i_SELECT_RF_STRING_COUNT0": 1,
- "rfString_Between": 3,
- "i_rfString_Between": 4,
- "i_NPSELECT_RF_STRING_BETWEEN": 1,
- "i_NPSELECT_RF_STRING_BETWEEN1": 1,
- "i_NPSELECT_RF_STRING_BETWEEN0": 1,
- "i_SELECT_RF_STRING_BETWEEN": 1,
- "i_SELECT_RF_STRING_BETWEEN4": 1,
- "i_LEFTSTR_": 6,
- "i_RIGHTSTR_": 6,
- "i_RESULT_": 12,
- "i_rfLMSX_WRAP5": 9,
- "i_SELECT_RF_STRING_BETWEEN5": 1,
- "i_SELECT_RF_STRING_BETWEEN3": 1,
- "i_SELECT_RF_STRING_BETWEEN2": 1,
- "i_SELECT_RF_STRING_BETWEEN1": 1,
- "i_SELECT_RF_STRING_BETWEEN0": 1,
- "i_NPSELECT_RF_STRING_BEFOREV": 1,
- "i_NPSELECT_RF_STRING_BEFOREV1": 1,
- "RF_SELECT_FUNC_IF_NARGGT2": 2,
- "i_LIMSELECT_RF_STRING_BEFOREV": 1,
- "i_NPSELECT_RF_STRING_BEFOREV0": 1,
- "i_LIMSELECT_RF_STRING_BEFOREV1": 1,
- "i_LIMSELECT_RF_STRING_BEFOREV0": 1,
- "i_SELECT_RF_STRING_BEFOREV": 1,
- "i_SELECT_RF_STRING_BEFOREV5": 1,
- "i_ARG1_": 56,
- "i_ARG2_": 56,
- "i_ARG3_": 56,
- "i_ARG4_": 56,
- "i_RFUI8_": 28,
- "i_SELECT_RF_STRING_BEFOREV6": 1,
- "i_rfLMSX_WRAP6": 2,
- "i_SELECT_RF_STRING_BEFOREV7": 1,
- "i_rfLMSX_WRAP7": 2,
- "i_SELECT_RF_STRING_BEFOREV8": 1,
- "i_rfLMSX_WRAP8": 2,
- "i_SELECT_RF_STRING_BEFOREV9": 1,
- "i_rfLMSX_WRAP9": 2,
- "i_SELECT_RF_STRING_BEFOREV10": 1,
- "i_rfLMSX_WRAP10": 2,
- "i_SELECT_RF_STRING_BEFOREV11": 1,
- "i_rfLMSX_WRAP11": 2,
- "i_SELECT_RF_STRING_BEFOREV12": 1,
- "i_rfLMSX_WRAP12": 2,
- "i_SELECT_RF_STRING_BEFOREV13": 1,
- "i_rfLMSX_WRAP13": 2,
- "i_SELECT_RF_STRING_BEFOREV14": 1,
- "i_rfLMSX_WRAP14": 2,
- "i_SELECT_RF_STRING_BEFOREV15": 1,
- "i_rfLMSX_WRAP15": 2,
- "i_SELECT_RF_STRING_BEFOREV16": 1,
- "i_rfLMSX_WRAP16": 2,
- "i_SELECT_RF_STRING_BEFOREV17": 1,
- "i_rfLMSX_WRAP17": 2,
- "i_SELECT_RF_STRING_BEFOREV18": 1,
- "i_rfLMSX_WRAP18": 2,
- "rfString_Before": 3,
- "i_NPSELECT_RF_STRING_BEFORE": 1,
- "i_NPSELECT_RF_STRING_BEFORE1": 1,
- "i_NPSELECT_RF_STRING_BEFORE0": 1,
- "i_SELECT_RF_STRING_BEFORE": 1,
- "i_SELECT_RF_STRING_BEFORE3": 1,
- "i_SELECT_RF_STRING_BEFORE4": 1,
- "i_SELECT_RF_STRING_BEFORE2": 1,
- "i_SELECT_RF_STRING_BEFORE1": 1,
- "i_SELECT_RF_STRING_BEFORE0": 1,
- "i_NPSELECT_RF_STRING_AFTER": 1,
- "i_NPSELECT_RF_STRING_AFTER1": 1,
- "i_NPSELECT_RF_STRING_AFTER0": 1,
- "i_SELECT_RF_STRING_AFTER": 1,
- "i_SELECT_RF_STRING_AFTER3": 1,
- "i_OUTSTR_": 6,
- "i_SELECT_RF_STRING_AFTER4": 1,
- "i_SELECT_RF_STRING_AFTER2": 1,
- "i_SELECT_RF_STRING_AFTER1": 1,
- "i_SELECT_RF_STRING_AFTER0": 1,
- "i_NPSELECT_RF_STRING_AFTERV": 1,
- "i_NPSELECT_RF_STRING_AFTERV1": 1,
- "i_LIMSELECT_RF_STRING_AFTERV": 1,
- "i_NPSELECT_RF_STRING_AFTERV0": 1,
- "i_LIMSELECT_RF_STRING_AFTERV1": 1,
- "i_LIMSELECT_RF_STRING_AFTERV0": 1,
- "i_SELECT_RF_STRING_AFTERV": 1,
- "i_SELECT_RF_STRING_AFTERV5": 1,
- "i_SELECT_RF_STRING_AFTERV6": 1,
- "i_SELECT_RF_STRING_AFTERV7": 1,
- "i_SELECT_RF_STRING_AFTERV8": 1,
- "i_SELECT_RF_STRING_AFTERV9": 1,
- "i_SELECT_RF_STRING_AFTERV10": 1,
- "i_SELECT_RF_STRING_AFTERV11": 1,
- "i_SELECT_RF_STRING_AFTERV12": 1,
- "i_SELECT_RF_STRING_AFTERV13": 1,
- "i_SELECT_RF_STRING_AFTERV14": 1,
- "i_SELECT_RF_STRING_AFTERV15": 1,
- "i_SELECT_RF_STRING_AFTERV16": 1,
- "i_SELECT_RF_STRING_AFTERV17": 1,
- "i_SELECT_RF_STRING_AFTERV18": 1,
- "i_OTHERSTR_": 4,
- "rfString_Prepend": 2,
- "rfString_Remove": 3,
- "i_NPSELECT_RF_STRING_REMOVE": 1,
- "i_NPSELECT_RF_STRING_REMOVE1": 1,
- "i_NPSELECT_RF_STRING_REMOVE0": 1,
- "i_SELECT_RF_STRING_REMOVE": 1,
- "i_SELECT_RF_STRING_REMOVE2": 1,
- "i_REPSTR_": 16,
- "i_RFUI32_": 8,
- "i_SELECT_RF_STRING_REMOVE3": 1,
- "i_NUMBER_": 12,
- "i_SELECT_RF_STRING_REMOVE4": 1,
- "i_SELECT_RF_STRING_REMOVE1": 1,
- "i_SELECT_RF_STRING_REMOVE0": 1,
- "rfString_KeepOnly": 2,
- "I_KEEPSTR_": 2,
- "rfString_Replace": 3,
- "i_NPSELECT_RF_STRING_REPLACE": 1,
- "i_NPSELECT_RF_STRING_REPLACE1": 1,
- "i_NPSELECT_RF_STRING_REPLACE0": 1,
- "i_SELECT_RF_STRING_REPLACE": 1,
- "i_SELECT_RF_STRING_REPLACE3": 1,
- "i_SELECT_RF_STRING_REPLACE4": 1,
- "i_SELECT_RF_STRING_REPLACE5": 1,
- "i_SELECT_RF_STRING_REPLACE2": 1,
- "i_SELECT_RF_STRING_REPLACE1": 1,
- "i_SELECT_RF_STRING_REPLACE0": 1,
- "i_SUBSTR_": 6,
- "rfString_Strip": 2,
- "rfString_Fwrite": 2,
- "i_NPSELECT_RF_STRING_FWRITE": 1,
- "i_NPSELECT_RF_STRING_FWRITE1": 1,
- "i_NPSELECT_RF_STRING_FWRITE0": 1,
- "i_SELECT_RF_STRING_FWRITE": 1,
- "i_SELECT_RF_STRING_FWRITE3": 1,
- "i_STR_": 8,
- "i_ENCODING_": 4,
- "i_SELECT_RF_STRING_FWRITE2": 1,
- "i_SELECT_RF_STRING_FWRITE1": 1,
- "i_SELECT_RF_STRING_FWRITE0": 1,
- "rfString_Fwrite_fUTF8": 1,
- "closing": 1,
- "#error": 4,
- "Attempted": 1,
- "manipulation": 1,
- "flag": 1,
- "off.": 1,
- "Rebuild": 1,
- "added": 1,
- "you": 1,
- "#endif//": 1,
- "PY_SSIZE_T_CLEAN": 1,
- "Py_PYTHON_H": 1,
- "Python": 2,
- "headers": 1,
- "compile": 1,
- "extensions": 1,
- "please": 1,
- "install": 1,
- "development": 1,
- "Python.": 1,
- "PY_VERSION_HEX": 11,
- "Cython": 1,
- "requires": 1,
- ".": 1,
- "offsetof": 2,
- "member": 2,
- "type*": 1,
- "WIN32": 2,
- "MS_WINDOWS": 2,
- "__stdcall": 2,
- "__cdecl": 2,
- "__fastcall": 2,
- "DL_IMPORT": 2,
- "DL_EXPORT": 2,
- "PY_LONG_LONG": 5,
- "LONG_LONG": 1,
- "Py_HUGE_VAL": 2,
- "HUGE_VAL": 1,
- "PYPY_VERSION": 1,
- "CYTHON_COMPILING_IN_PYPY": 3,
- "CYTHON_COMPILING_IN_CPYTHON": 6,
- "Py_ssize_t": 35,
- "PY_SSIZE_T_MAX": 1,
- "INT_MAX": 1,
- "PY_SSIZE_T_MIN": 1,
- "INT_MIN": 1,
- "PY_FORMAT_SIZE_T": 1,
- "CYTHON_FORMAT_SSIZE_T": 2,
- "PyInt_FromSsize_t": 6,
- "PyInt_FromLong": 3,
- "PyInt_AsSsize_t": 3,
- "__Pyx_PyInt_AsInt": 2,
- "PyNumber_Index": 1,
- "PyNumber_Check": 2,
- "PyFloat_Check": 2,
- "PyNumber_Int": 1,
- "PyErr_Format": 4,
- "PyExc_TypeError": 4,
- "Py_TYPE": 7,
- "tp_name": 4,
- "PyObject*": 24,
- "__Pyx_PyIndex_Check": 3,
- "PyComplex_Check": 1,
- "PyIndex_Check": 2,
- "PyErr_WarnEx": 1,
- "category": 2,
- "stacklevel": 1,
- "PyErr_Warn": 1,
- "__PYX_BUILD_PY_SSIZE_T": 2,
- "Py_REFCNT": 1,
- "ob_refcnt": 1,
- "ob_type": 7,
- "Py_SIZE": 1,
- "PyVarObject*": 1,
- "ob_size": 1,
- "PyVarObject_HEAD_INIT": 1,
- "PyObject_HEAD_INIT": 1,
- "PyType_Modified": 1,
- "PyObject": 276,
- "itemsize": 1,
- "readonly": 1,
- "ndim": 2,
- "*shape": 1,
- "*strides": 1,
- "*suboffsets": 1,
- "*internal": 1,
- "Py_buffer": 6,
- "PyBUF_SIMPLE": 1,
- "PyBUF_WRITABLE": 3,
- "PyBUF_FORMAT": 3,
- "PyBUF_ND": 2,
- "PyBUF_STRIDES": 6,
- "PyBUF_C_CONTIGUOUS": 1,
- "PyBUF_F_CONTIGUOUS": 1,
- "PyBUF_ANY_CONTIGUOUS": 1,
- "PyBUF_INDIRECT": 2,
- "PyBUF_RECORDS": 1,
- "PyBUF_FULL": 1,
- "PY_MAJOR_VERSION": 13,
- "__Pyx_BUILTIN_MODULE_NAME": 2,
- "__Pyx_PyCode_New": 2,
- "l": 7,
- "fv": 4,
- "cell": 4,
- "fline": 4,
- "lnos": 4,
- "PyCode_New": 2,
- "PY_MINOR_VERSION": 1,
- "PyUnicode_FromString": 2,
- "PyUnicode_Decode": 1,
- "Py_TPFLAGS_CHECKTYPES": 1,
- "Py_TPFLAGS_HAVE_INDEX": 1,
- "Py_TPFLAGS_HAVE_NEWBUFFER": 1,
- "PyUnicode_KIND": 1,
- "CYTHON_PEP393_ENABLED": 2,
- "__Pyx_PyUnicode_READY": 2,
- "op": 8,
- "PyUnicode_IS_READY": 1,
- "_PyUnicode_Ready": 1,
- "__Pyx_PyUnicode_GET_LENGTH": 2,
- "PyUnicode_GET_LENGTH": 1,
- "__Pyx_PyUnicode_READ_CHAR": 2,
- "PyUnicode_READ_CHAR": 1,
- "__Pyx_PyUnicode_READ": 2,
- "PyUnicode_READ": 1,
- "PyUnicode_GET_SIZE": 1,
- "Py_UCS4": 2,
- "PyUnicode_AS_UNICODE": 1,
- "Py_UNICODE*": 1,
- "PyBaseString_Type": 1,
- "PyUnicode_Type": 2,
- "PyStringObject": 2,
- "PyUnicodeObject": 1,
- "PyString_Type": 2,
- "PyString_Check": 2,
- "PyUnicode_Check": 1,
- "PyString_CheckExact": 2,
- "PyUnicode_CheckExact": 1,
- "PyBytesObject": 1,
- "PyBytes_Type": 1,
- "PyBytes_Check": 1,
- "PyBytes_CheckExact": 1,
- "PyBytes_FromString": 2,
- "PyString_FromString": 2,
- "PyBytes_FromStringAndSize": 1,
- "PyString_FromStringAndSize": 1,
- "PyBytes_FromFormat": 1,
- "PyString_FromFormat": 1,
- "PyBytes_DecodeEscape": 1,
- "PyString_DecodeEscape": 1,
- "PyBytes_AsString": 2,
- "PyString_AsString": 1,
- "PyBytes_AsStringAndSize": 1,
- "PyString_AsStringAndSize": 1,
- "PyBytes_Size": 1,
- "PyString_Size": 1,
- "PyBytes_AS_STRING": 1,
- "PyString_AS_STRING": 1,
- "PyBytes_GET_SIZE": 1,
- "PyString_GET_SIZE": 1,
- "PyBytes_Repr": 1,
- "PyString_Repr": 1,
- "PyBytes_Concat": 1,
- "PyString_Concat": 1,
- "PyBytes_ConcatAndDel": 1,
- "PyString_ConcatAndDel": 1,
- "PySet_Check": 1,
- "PyObject_TypeCheck": 3,
- "PySet_Type": 2,
- "PyFrozenSet_Check": 1,
- "PyFrozenSet_Type": 1,
- "PySet_CheckExact": 2,
- "__Pyx_TypeCheck": 1,
- "PyTypeObject": 25,
- "PyIntObject": 1,
- "PyLongObject": 2,
- "PyInt_Type": 1,
- "PyLong_Type": 1,
- "PyInt_Check": 1,
- "PyLong_Check": 1,
- "PyInt_CheckExact": 1,
- "PyLong_CheckExact": 1,
- "PyInt_FromString": 1,
- "PyLong_FromString": 1,
- "PyInt_FromUnicode": 1,
- "PyLong_FromUnicode": 1,
- "PyLong_FromLong": 1,
- "PyInt_FromSize_t": 1,
- "PyLong_FromSize_t": 1,
- "PyLong_FromSsize_t": 1,
- "PyInt_AsLong": 2,
- "PyLong_AsLong": 1,
- "PyInt_AS_LONG": 1,
- "PyLong_AS_LONG": 1,
- "PyLong_AsSsize_t": 1,
- "PyInt_AsUnsignedLongMask": 1,
- "PyLong_AsUnsignedLongMask": 1,
- "PyInt_AsUnsignedLongLongMask": 1,
- "PyLong_AsUnsignedLongLongMask": 1,
- "PyBoolObject": 1,
- "Py_hash_t": 1,
- "__Pyx_PyInt_FromHash_t": 2,
- "__Pyx_PyInt_AsHash_t": 2,
- "__Pyx_PySequence_GetSlice": 2,
- "PySequence_GetSlice": 2,
- "__Pyx_PySequence_SetSlice": 2,
- "PySequence_SetSlice": 2,
- "__Pyx_PySequence_DelSlice": 2,
- "PySequence_DelSlice": 2,
- "PyErr_SetString": 3,
- "PyExc_SystemError": 3,
- "tp_as_mapping": 3,
- "PyMethod_New": 2,
- "func": 3,
- "klass": 1,
- "PyInstanceMethod_New": 1,
- "__Pyx_GetAttrString": 2,
- "PyObject_GetAttrString": 2,
- "__Pyx_SetAttrString": 2,
- "PyObject_SetAttrString": 2,
- "__Pyx_DelAttrString": 2,
- "PyObject_DelAttrString": 2,
- "__Pyx_NAMESTR": 2,
- "__Pyx_DOCSTR": 2,
- "__Pyx_PyNumber_Divide": 2,
- "y": 14,
- "PyNumber_TrueDivide": 1,
- "__Pyx_PyNumber_InPlaceDivide": 2,
- "PyNumber_InPlaceTrueDivide": 1,
- "PyNumber_Divide": 1,
- "PyNumber_InPlaceDivide": 1,
- "__PYX_EXTERN_C": 3,
- "_USE_MATH_DEFINES": 1,
- "__PYX_HAVE__sklearn__linear_model__sgd_fast": 1,
- "__PYX_HAVE_API__sklearn__linear_model__sgd_fast": 1,
- "_OPENMP": 1,
- "": 1,
- "PYREX_WITHOUT_ASSERTIONS": 1,
- "CYTHON_WITHOUT_ASSERTIONS": 1,
- "CYTHON_INLINE": 65,
- "__inline__": 1,
- "__inline": 1,
- "__STDC_VERSION__": 2,
- "L": 1,
- "CYTHON_UNUSED": 14,
- "**p": 1,
- "is_unicode": 1,
- "is_str": 1,
- "intern": 1,
- "__Pyx_StringTabEntry": 2,
- "__Pyx_PyBytes_FromUString": 1,
- "__Pyx_PyBytes_AsUString": 1,
- "__Pyx_Owned_Py_None": 1,
- "Py_INCREF": 10,
- "Py_None": 8,
- "__Pyx_PyBool_FromLong": 1,
- "Py_True": 2,
- "Py_False": 2,
- "__Pyx_PyObject_IsTrue": 1,
- "__Pyx_PyNumber_Int": 1,
- "__Pyx_PyIndex_AsSsize_t": 1,
- "__Pyx_PyInt_FromSize_t": 1,
- "__Pyx_PyInt_AsSize_t": 1,
- "__pyx_PyFloat_AsDouble": 12,
- "PyFloat_CheckExact": 1,
- "PyFloat_AS_DOUBLE": 1,
- "PyFloat_AsDouble": 2,
- "__pyx_PyFloat_AsFloat": 1,
- "__builtin_expect": 2,
- "*__pyx_m": 1,
- "*__pyx_b": 1,
- "*__pyx_empty_tuple": 1,
- "*__pyx_empty_bytes": 1,
- "__pyx_lineno": 58,
- "__pyx_clineno": 58,
- "__pyx_cfilenm": 1,
- "__FILE__": 4,
- "*__pyx_filename": 7,
- "CYTHON_CCOMPLEX": 12,
- "_Complex_I": 3,
- "": 1,
- "": 1,
- "__sun__": 1,
- "fj": 1,
- "*__pyx_f": 1,
- "IS_UNSIGNED": 1,
- "__Pyx_StructField_": 2,
- "__PYX_BUF_FLAGS_PACKED_STRUCT": 1,
- "__Pyx_StructField_*": 1,
- "fields": 1,
- "arraysize": 1,
- "typegroup": 1,
- "is_unsigned": 1,
- "__Pyx_TypeInfo": 2,
- "__Pyx_TypeInfo*": 2,
- "offset": 1,
- "__Pyx_StructField": 2,
- "__Pyx_StructField*": 1,
- "field": 1,
- "parent_offset": 1,
- "__Pyx_BufFmt_StackElem": 1,
- "root": 1,
- "__Pyx_BufFmt_StackElem*": 2,
- "fmt_offset": 1,
- "new_count": 1,
- "enc_count": 1,
- "struct_alignment": 1,
- "is_complex": 1,
- "enc_type": 1,
- "new_packmode": 1,
- "enc_packmode": 1,
- "is_valid_array": 1,
- "__Pyx_BufFmt_Context": 1,
- "npy_int8": 1,
- "__pyx_t_5numpy_int8_t": 1,
- "npy_int16": 1,
- "__pyx_t_5numpy_int16_t": 1,
- "npy_int32": 1,
- "__pyx_t_5numpy_int32_t": 4,
- "npy_int64": 1,
- "__pyx_t_5numpy_int64_t": 1,
- "npy_uint8": 1,
- "__pyx_t_5numpy_uint8_t": 1,
- "npy_uint16": 1,
- "__pyx_t_5numpy_uint16_t": 1,
- "npy_uint32": 1,
- "__pyx_t_5numpy_uint32_t": 1,
- "npy_uint64": 1,
- "__pyx_t_5numpy_uint64_t": 1,
- "npy_float32": 1,
- "__pyx_t_5numpy_float32_t": 1,
- "npy_float64": 1,
- "__pyx_t_5numpy_float64_t": 4,
- "npy_long": 1,
- "__pyx_t_5numpy_int_t": 1,
- "npy_longlong": 2,
- "__pyx_t_5numpy_long_t": 1,
- "__pyx_t_5numpy_longlong_t": 1,
- "npy_ulong": 1,
- "__pyx_t_5numpy_uint_t": 1,
- "npy_ulonglong": 2,
- "__pyx_t_5numpy_ulong_t": 1,
- "__pyx_t_5numpy_ulonglong_t": 1,
- "npy_intp": 1,
- "__pyx_t_5numpy_intp_t": 1,
- "npy_uintp": 1,
- "__pyx_t_5numpy_uintp_t": 1,
- "npy_double": 2,
- "__pyx_t_5numpy_float_t": 1,
- "__pyx_t_5numpy_double_t": 1,
- "npy_longdouble": 1,
- "__pyx_t_5numpy_longdouble_t": 1,
- "__pyx_t_7sklearn_5utils_13weight_vector_DOUBLE": 2,
- "__pyx_t_7sklearn_5utils_13weight_vector_INTEGER": 1,
- "__pyx_t_7sklearn_5utils_11seq_dataset_DOUBLE": 7,
- "__pyx_t_7sklearn_5utils_11seq_dataset_INTEGER": 7,
- "__pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 4,
- "__pyx_t_7sklearn_12linear_model_8sgd_fast_INTEGER": 3,
- "std": 8,
- "complex": 2,
- "__pyx_t_float_complex": 27,
- "_Complex": 2,
- "real": 2,
- "imag": 2,
- "__pyx_t_double_complex": 27,
- "__pyx_obj_7sklearn_12linear_model_8sgd_fast_LossFunction": 15,
- "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Regression": 11,
- "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Huber": 6,
- "__pyx_obj_7sklearn_5utils_11seq_dataset_SequentialDataset": 5,
- "__pyx_obj_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 6,
- "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Classification": 7,
- "__pyx_obj_7sklearn_5utils_11seq_dataset_CSRDataset": 2,
- "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Log": 5,
- "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Hinge": 6,
- "__pyx_obj_7sklearn_5utils_11seq_dataset_ArrayDataset": 2,
- "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 6,
- "__pyx_obj_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 5,
- "__pyx_obj_7sklearn_5utils_13weight_vector_WeightVector": 3,
- "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 5,
- "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 6,
- "npy_cfloat": 1,
- "__pyx_t_5numpy_cfloat_t": 1,
- "npy_cdouble": 2,
- "__pyx_t_5numpy_cdouble_t": 1,
- "npy_clongdouble": 1,
- "__pyx_t_5numpy_clongdouble_t": 1,
- "__pyx_t_5numpy_complex_t": 1,
- "PyObject_HEAD": 3,
- "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_LossFunction": 5,
- "*__pyx_vtab": 3,
- "__pyx_base": 18,
- "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_SequentialDataset": 4,
- "n_samples": 1,
- "epsilon": 2,
- "current_index": 2,
- "stride": 2,
- "*X_data_ptr": 2,
- "*X_indptr_ptr": 1,
- "*X_indices_ptr": 1,
- "*Y_data_ptr": 2,
- "PyArrayObject": 8,
- "*feature_indices": 2,
- "*feature_indices_ptr": 2,
- "*index": 2,
- "*index_data_ptr": 2,
- "*sample_weight_data": 2,
- "threshold": 2,
- "n_features": 2,
- "__pyx_vtabstruct_7sklearn_5utils_13weight_vector_WeightVector": 3,
- "*w_data_ptr": 1,
- "wscale": 1,
- "sq_norm": 1,
- "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_SequentialDataset": 1,
- "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_ArrayDataset": 2,
- "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_ArrayDataset": 1,
- "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_CSRDataset": 2,
- "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_CSRDataset": 1,
- "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 2,
- "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Regression": 3,
- "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1,
- "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 2,
- "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1,
- "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Huber": 2,
- "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Huber": 1,
- "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Hinge": 2,
- "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Classification": 1,
- "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Hinge": 1,
- "*__pyx_vtabptr_7sklearn_5utils_13weight_vector_WeightVector": 1,
- "CYTHON_REFNANNY": 3,
- "__Pyx_RefNannyAPIStruct": 3,
- "*__Pyx_RefNanny": 1,
- "*__Pyx_RefNannyImportAPI": 1,
- "*modname": 1,
- "__Pyx_RefNannyDeclarations": 11,
- "*__pyx_refnanny": 1,
- "WITH_THREAD": 1,
- "__Pyx_RefNannySetupContext": 12,
- "acquire_gil": 4,
- "PyGILState_STATE": 1,
- "__pyx_gilstate_save": 2,
- "PyGILState_Ensure": 1,
- "__pyx_refnanny": 8,
- "__Pyx_RefNanny": 8,
- "SetupContext": 3,
- "PyGILState_Release": 1,
- "__Pyx_RefNannyFinishContext": 14,
- "FinishContext": 1,
- "__Pyx_INCREF": 6,
- "INCREF": 1,
- "__Pyx_DECREF": 20,
- "DECREF": 1,
- "__Pyx_GOTREF": 24,
- "GOTREF": 1,
- "__Pyx_GIVEREF": 9,
- "GIVEREF": 1,
- "__Pyx_XINCREF": 2,
- "__Pyx_XDECREF": 20,
- "__Pyx_XGOTREF": 2,
- "__Pyx_XGIVEREF": 5,
- "Py_DECREF": 2,
- "Py_XINCREF": 1,
- "Py_XDECREF": 1,
- "__Pyx_CLEAR": 1,
- "__Pyx_XCLEAR": 1,
- "*__Pyx_GetName": 1,
- "__Pyx_ErrRestore": 1,
- "*type": 4,
- "*tb": 2,
- "__Pyx_ErrFetch": 1,
- "**type": 1,
- "**value": 1,
- "**tb": 1,
- "__Pyx_Raise": 4,
- "*cause": 1,
- "__Pyx_RaiseArgtupleInvalid": 7,
- "func_name": 2,
- "num_min": 1,
- "num_max": 1,
- "num_found": 1,
- "__Pyx_RaiseDoubleKeywordsError": 1,
- "kw_name": 1,
- "__Pyx_ParseOptionalKeywords": 4,
- "*kwds": 1,
- "**argnames": 1,
- "*kwds2": 1,
- "*values": 1,
- "num_pos_args": 1,
- "function_name": 1,
- "__Pyx_ArgTypeTest": 1,
- "none_allowed": 1,
- "__Pyx_GetBufferAndValidate": 1,
- "Py_buffer*": 2,
- "dtype": 1,
- "nd": 1,
- "cast": 1,
- "__Pyx_SafeReleaseBuffer": 1,
- "__Pyx_TypeTest": 1,
- "__Pyx_RaiseBufferFallbackError": 1,
- "*__Pyx_GetItemInt_Generic": 1,
- "*r": 7,
- "PyObject_GetItem": 1,
- "__Pyx_GetItemInt_List": 1,
- "to_py_func": 6,
- "__Pyx_GetItemInt_List_Fast": 1,
- "__Pyx_GetItemInt_Generic": 6,
- "*__Pyx_GetItemInt_List_Fast": 1,
- "PyList_GET_SIZE": 5,
- "PyList_GET_ITEM": 3,
- "PySequence_GetItem": 3,
- "__Pyx_GetItemInt_Tuple": 1,
- "__Pyx_GetItemInt_Tuple_Fast": 1,
- "*__Pyx_GetItemInt_Tuple_Fast": 1,
- "PyTuple_GET_SIZE": 14,
- "PyTuple_GET_ITEM": 15,
- "__Pyx_GetItemInt": 1,
- "__Pyx_GetItemInt_Fast": 2,
- "PyList_CheckExact": 1,
- "PyTuple_CheckExact": 1,
- "PySequenceMethods": 1,
- "*m": 1,
- "tp_as_sequence": 1,
- "sq_item": 2,
- "sq_length": 2,
- "PySequence_Check": 1,
- "__Pyx_RaiseTooManyValuesError": 1,
- "expected": 2,
- "__Pyx_RaiseNeedMoreValuesError": 1,
- "__Pyx_RaiseNoneNotIterableError": 1,
- "__Pyx_IterFinish": 1,
- "__Pyx_IternextUnpackEndCheck": 1,
- "*retval": 1,
- "shape": 1,
- "strides": 1,
- "suboffsets": 1,
- "__Pyx_Buf_DimInfo": 2,
- "pybuffer": 1,
- "__Pyx_Buffer": 2,
- "*rcbuffer": 1,
- "diminfo": 1,
- "__Pyx_LocalBuf_ND": 1,
- "__Pyx_GetBuffer": 2,
- "*view": 2,
- "__Pyx_ReleaseBuffer": 2,
- "PyObject_GetBuffer": 1,
- "PyBuffer_Release": 1,
- "__Pyx_zeros": 1,
- "__Pyx_minusones": 1,
- "*__Pyx_Import": 1,
- "*from_list": 1,
- "__Pyx_RaiseImportError": 1,
- "__Pyx_Print": 1,
- "__pyx_print": 1,
- "__pyx_print_kwargs": 1,
- "__Pyx_PrintOne": 1,
- "__Pyx_CREAL": 4,
- ".real": 3,
- "__Pyx_CIMAG": 4,
- ".imag": 3,
- "__real__": 1,
- "__imag__": 1,
- "__Pyx_SET_CREAL": 2,
- "__Pyx_SET_CIMAG": 2,
- "__pyx_t_float_complex_from_parts": 1,
- "__Pyx_c_eqf": 2,
- "__Pyx_c_sumf": 2,
- "__Pyx_c_difff": 2,
- "__Pyx_c_prodf": 2,
- "__Pyx_c_quotf": 2,
- "__Pyx_c_negf": 2,
- "__Pyx_c_is_zerof": 3,
- "__Pyx_c_conjf": 3,
- "conj": 3,
- "__Pyx_c_absf": 3,
- "abs": 2,
- "__Pyx_c_powf": 3,
- "pow": 2,
- "conjf": 1,
- "cabsf": 1,
- "cpowf": 1,
- "__pyx_t_double_complex_from_parts": 1,
- "__Pyx_c_eq": 2,
- "__Pyx_c_sum": 2,
- "__Pyx_c_diff": 2,
- "__Pyx_c_prod": 2,
- "__Pyx_c_quot": 2,
- "__Pyx_c_neg": 2,
- "__Pyx_c_is_zero": 3,
- "__Pyx_c_conj": 3,
- "__Pyx_c_abs": 3,
- "__Pyx_c_pow": 3,
- "cabs": 1,
- "cpow": 1,
- "__Pyx_PyInt_AsUnsignedChar": 1,
- "__Pyx_PyInt_AsUnsignedShort": 1,
- "__Pyx_PyInt_AsUnsignedInt": 1,
- "__Pyx_PyInt_AsChar": 1,
- "__Pyx_PyInt_AsShort": 1,
- "signed": 5,
- "__Pyx_PyInt_AsSignedChar": 1,
- "__Pyx_PyInt_AsSignedShort": 1,
- "__Pyx_PyInt_AsSignedInt": 1,
- "__Pyx_PyInt_AsLongDouble": 1,
- "__Pyx_PyInt_AsUnsignedLong": 1,
- "__Pyx_PyInt_AsUnsignedLongLong": 1,
- "__Pyx_PyInt_AsLong": 1,
- "__Pyx_PyInt_AsLongLong": 1,
- "__Pyx_PyInt_AsSignedLong": 1,
- "__Pyx_PyInt_AsSignedLongLong": 1,
- "__Pyx_WriteUnraisable": 4,
- "clineno": 1,
- "lineno": 1,
- "*filename": 2,
- "__Pyx_check_binary_version": 1,
- "__Pyx_SetVtable": 1,
- "*vtable": 1,
- "__Pyx_PyIdentifier_FromString": 3,
- "*__Pyx_ImportModule": 1,
- "*__Pyx_ImportType": 1,
- "*module_name": 1,
- "*class_name": 1,
- "__Pyx_GetVtable": 1,
- "code_line": 4,
- "PyCodeObject*": 2,
- "code_object": 2,
- "__Pyx_CodeObjectCacheEntry": 1,
- "__Pyx_CodeObjectCache": 2,
- "max_count": 1,
- "__Pyx_CodeObjectCacheEntry*": 2,
- "entries": 2,
- "__pyx_code_cache": 1,
- "__pyx_bisect_code_objects": 1,
- "PyCodeObject": 1,
- "*__pyx_find_code_object": 1,
- "__pyx_insert_code_object": 1,
- "__Pyx_AddTraceback": 7,
- "*funcname": 1,
- "c_line": 1,
- "py_line": 1,
- "__Pyx_InitStrings": 1,
- "*__pyx_ptype_7cpython_4type_type": 1,
- "*__pyx_ptype_5numpy_dtype": 1,
- "*__pyx_ptype_5numpy_flatiter": 1,
- "*__pyx_ptype_5numpy_broadcast": 1,
- "*__pyx_ptype_5numpy_ndarray": 1,
- "*__pyx_ptype_5numpy_ufunc": 1,
- "*__pyx_f_5numpy__util_dtypestring": 1,
- "PyArray_Descr": 1,
- "*__pyx_ptype_7sklearn_5utils_13weight_vector_WeightVector": 1,
- "*__pyx_ptype_7sklearn_5utils_11seq_dataset_SequentialDataset": 1,
- "*__pyx_ptype_7sklearn_5utils_11seq_dataset_ArrayDataset": 1,
- "*__pyx_ptype_7sklearn_5utils_11seq_dataset_CSRDataset": 1,
- "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_LossFunction": 1,
- "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Regression": 1,
- "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Classification": 1,
- "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 1,
- "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Hinge": 1,
- "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1,
- "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Log": 1,
- "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 1,
- "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Huber": 1,
- "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1,
- "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 1,
- "__pyx_f_7sklearn_12linear_model_8sgd_fast_max": 1,
- "__pyx_f_7sklearn_12linear_model_8sgd_fast_min": 1,
- "__pyx_f_7sklearn_12linear_model_8sgd_fast_sqnorm": 1,
- "__pyx_f_7sklearn_12linear_model_8sgd_fast_l1penalty": 1,
- "__Pyx_TypeInfo_nn___pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 1,
- "__Pyx_MODULE_NAME": 1,
- "__pyx_module_is_main_sklearn__linear_model__sgd_fast": 1,
- "*__pyx_builtin_NotImplementedError": 1,
- "*__pyx_builtin_range": 1,
- "*__pyx_builtin_ValueError": 1,
- "*__pyx_builtin_RuntimeError": 1,
- "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 2,
- "*__pyx_v_self": 52,
- "__pyx_v_p": 46,
- "__pyx_v_y": 46,
- "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 2,
- "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 2,
- "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_2dloss": 1,
- "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_loss": 1,
- "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_2dloss": 1,
- "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_loss": 1,
- "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_2dloss": 1,
- "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_4__reduce__": 1,
- "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge___init__": 1,
- "__pyx_v_threshold": 2,
- "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_2loss": 1,
- "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_4dloss": 1,
- "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_6__reduce__": 1,
- "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge___init__": 1,
- "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_2loss": 1,
- "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_4dloss": 1,
- "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_6__reduce__": 1,
- "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_loss": 1,
- "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_2dloss": 1,
- "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_4__reduce__": 1,
- "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_loss": 1,
- "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_2dloss": 1,
- "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_4__reduce__": 1,
- "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber___init__": 1,
- "__pyx_v_c": 1,
- "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_2loss": 1,
- "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_4dloss": 1,
- "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_6__reduce__": 1,
- "__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive___init__": 1,
- "__pyx_v_epsilon": 2,
- "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_2loss": 1,
- "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_4dloss": 1,
- "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_6__reduce__": 1,
- "__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive___init__": 1,
- "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_2loss": 1,
- "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_4dloss": 1,
- "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_6__reduce__": 1,
- "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_plain_sgd": 1,
- "*__pyx_self": 1,
- "*__pyx_v_weights": 1,
- "__pyx_v_intercept": 1,
- "*__pyx_v_loss": 1,
- "__pyx_v_penalty_type": 1,
- "__pyx_v_alpha": 1,
- "__pyx_v_C": 1,
- "__pyx_v_rho": 1,
- "*__pyx_v_dataset": 1,
- "__pyx_v_n_iter": 1,
- "__pyx_v_fit_intercept": 1,
- "__pyx_v_verbose": 1,
- "__pyx_v_shuffle": 1,
- "*__pyx_v_seed": 1,
- "__pyx_v_weight_pos": 1,
- "__pyx_v_weight_neg": 1,
- "__pyx_v_learning_rate": 1,
- "__pyx_v_eta0": 1,
- "__pyx_v_power_t": 1,
- "__pyx_v_t": 1,
- "__pyx_v_intercept_decay": 1,
- "__pyx_pf_5numpy_7ndarray___getbuffer__": 1,
- "*__pyx_v_info": 2,
- "__pyx_v_flags": 1,
- "__pyx_pf_5numpy_7ndarray_2__releasebuffer__": 1,
- "__pyx_k_1": 1,
- "__pyx_k_2": 1,
- "__pyx_k_3": 1,
- "__pyx_k_4": 1,
- "__pyx_k_6": 1,
- "__pyx_k_8": 1,
- "__pyx_k_10": 1,
- "__pyx_k_12": 1,
- "__pyx_k_13": 1,
- "__pyx_k_16": 1,
- "__pyx_k_20": 1,
- "__pyx_k_21": 1,
- "__pyx_k__B": 1,
- "__pyx_k__C": 1,
- "__pyx_k__H": 1,
- "__pyx_k__I": 1,
- "__pyx_k__L": 1,
- "__pyx_k__O": 1,
- "__pyx_k__Q": 1,
- "__pyx_k__b": 1,
- "__pyx_k__c": 1,
- "__pyx_k__d": 1,
- "__pyx_k__f": 1,
- "__pyx_k__g": 1,
- "__pyx_k__h": 1,
- "__pyx_k__i": 1,
- "__pyx_k__l": 1,
- "__pyx_k__p": 1,
- "__pyx_k__q": 1,
- "__pyx_k__t": 1,
- "__pyx_k__u": 1,
- "__pyx_k__w": 1,
- "__pyx_k__y": 1,
- "__pyx_k__Zd": 1,
- "__pyx_k__Zf": 1,
- "__pyx_k__Zg": 1,
- "__pyx_k__np": 1,
- "__pyx_k__any": 1,
- "__pyx_k__eta": 1,
- "__pyx_k__rho": 1,
- "__pyx_k__sys": 1,
- "__pyx_k__eta0": 1,
- "__pyx_k__loss": 1,
- "__pyx_k__seed": 1,
- "__pyx_k__time": 1,
- "__pyx_k__xnnz": 1,
- "__pyx_k__alpha": 1,
- "__pyx_k__count": 1,
- "__pyx_k__dloss": 1,
- "__pyx_k__dtype": 1,
- "__pyx_k__epoch": 1,
- "__pyx_k__isinf": 1,
- "__pyx_k__isnan": 1,
- "__pyx_k__numpy": 1,
- "__pyx_k__order": 1,
- "__pyx_k__range": 1,
- "__pyx_k__shape": 1,
- "__pyx_k__zeros": 1,
- "__pyx_k__n_iter": 1,
- "__pyx_k__update": 1,
- "__pyx_k__dataset": 1,
- "__pyx_k__epsilon": 1,
- "__pyx_k__float64": 1,
- "__pyx_k__nonzero": 1,
- "__pyx_k__power_t": 1,
- "__pyx_k__shuffle": 1,
- "__pyx_k__sumloss": 1,
- "__pyx_k__t_start": 1,
- "__pyx_k__verbose": 1,
- "__pyx_k__weights": 1,
- "__pyx_k____main__": 1,
- "__pyx_k____test__": 1,
- "__pyx_k__is_hinge": 1,
- "__pyx_k__intercept": 1,
- "__pyx_k__n_samples": 1,
- "__pyx_k__plain_sgd": 1,
- "__pyx_k__threshold": 1,
- "__pyx_k__x_ind_ptr": 1,
- "__pyx_k__ValueError": 1,
- "__pyx_k__n_features": 1,
- "__pyx_k__q_data_ptr": 1,
- "__pyx_k__weight_neg": 1,
- "__pyx_k__weight_pos": 1,
- "__pyx_k__x_data_ptr": 1,
- "__pyx_k__RuntimeError": 1,
- "__pyx_k__class_weight": 1,
- "__pyx_k__penalty_type": 1,
- "__pyx_k__fit_intercept": 1,
- "__pyx_k__learning_rate": 1,
- "__pyx_k__sample_weight": 1,
- "__pyx_k__intercept_decay": 1,
- "__pyx_k__NotImplementedError": 1,
- "*__pyx_kp_s_1": 1,
- "*__pyx_kp_u_10": 1,
- "*__pyx_kp_u_12": 1,
- "*__pyx_kp_u_13": 1,
- "*__pyx_kp_u_16": 1,
- "*__pyx_kp_s_2": 1,
- "*__pyx_kp_s_20": 1,
- "*__pyx_n_s_21": 1,
- "*__pyx_kp_s_3": 1,
- "*__pyx_kp_s_4": 1,
- "*__pyx_kp_u_6": 1,
- "*__pyx_kp_u_8": 1,
- "*__pyx_n_s__C": 1,
- "*__pyx_n_s__NotImplementedError": 1,
- "*__pyx_n_s__RuntimeError": 1,
- "*__pyx_n_s__ValueError": 1,
- "*__pyx_n_s____main__": 1,
- "*__pyx_n_s____test__": 1,
- "*__pyx_n_s__alpha": 1,
- "*__pyx_n_s__any": 1,
- "*__pyx_n_s__c": 1,
- "*__pyx_n_s__class_weight": 1,
- "*__pyx_n_s__count": 1,
- "*__pyx_n_s__dataset": 1,
- "*__pyx_n_s__dloss": 1,
- "*__pyx_n_s__dtype": 1,
- "*__pyx_n_s__epoch": 1,
- "*__pyx_n_s__epsilon": 1,
- "*__pyx_n_s__eta": 1,
- "*__pyx_n_s__eta0": 1,
- "*__pyx_n_s__fit_intercept": 1,
- "*__pyx_n_s__float64": 1,
- "*__pyx_n_s__i": 1,
- "*__pyx_n_s__intercept": 1,
- "*__pyx_n_s__intercept_decay": 1,
- "*__pyx_n_s__is_hinge": 1,
- "*__pyx_n_s__isinf": 1,
- "*__pyx_n_s__isnan": 1,
- "*__pyx_n_s__learning_rate": 1,
- "*__pyx_n_s__loss": 1,
- "*__pyx_n_s__n_features": 1,
- "*__pyx_n_s__n_iter": 1,
- "*__pyx_n_s__n_samples": 1,
- "*__pyx_n_s__nonzero": 1,
- "*__pyx_n_s__np": 1,
- "*__pyx_n_s__numpy": 1,
- "*__pyx_n_s__order": 1,
- "*__pyx_n_s__p": 1,
- "*__pyx_n_s__penalty_type": 1,
- "*__pyx_n_s__plain_sgd": 1,
- "*__pyx_n_s__power_t": 1,
- "*__pyx_n_s__q": 1,
- "*__pyx_n_s__q_data_ptr": 1,
- "*__pyx_n_s__range": 1,
- "*__pyx_n_s__rho": 1,
- "*__pyx_n_s__sample_weight": 1,
- "*__pyx_n_s__seed": 1,
- "*__pyx_n_s__shape": 1,
- "*__pyx_n_s__shuffle": 1,
- "*__pyx_n_s__sumloss": 1,
- "*__pyx_n_s__sys": 1,
- "*__pyx_n_s__t": 1,
- "*__pyx_n_s__t_start": 1,
- "*__pyx_n_s__threshold": 1,
- "*__pyx_n_s__time": 1,
- "*__pyx_n_s__u": 1,
- "*__pyx_n_s__update": 1,
- "*__pyx_n_s__verbose": 1,
- "*__pyx_n_s__w": 1,
- "*__pyx_n_s__weight_neg": 1,
- "*__pyx_n_s__weight_pos": 1,
- "*__pyx_n_s__weights": 1,
- "*__pyx_n_s__x_data_ptr": 1,
- "*__pyx_n_s__x_ind_ptr": 1,
- "*__pyx_n_s__xnnz": 1,
- "*__pyx_n_s__y": 1,
- "*__pyx_n_s__zeros": 1,
- "*__pyx_int_15": 1,
- "*__pyx_k_tuple_5": 1,
- "*__pyx_k_tuple_7": 1,
- "*__pyx_k_tuple_9": 1,
- "*__pyx_k_tuple_11": 1,
- "*__pyx_k_tuple_14": 1,
- "*__pyx_k_tuple_15": 1,
- "*__pyx_k_tuple_17": 1,
- "*__pyx_k_tuple_18": 1,
- "*__pyx_k_codeobj_19": 1,
- "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 3,
- "*__pyx_args": 9,
- "*__pyx_kwds": 9,
- "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1,
- "__pyx_skip_dispatch": 6,
- "__pyx_r": 39,
- "*__pyx_t_1": 6,
- "*__pyx_t_2": 3,
- "*__pyx_t_3": 3,
- "*__pyx_t_4": 3,
- "__pyx_t_5": 12,
- "__pyx_v_self": 15,
- "tp_dictoffset": 3,
- "__pyx_t_1": 69,
- "PyObject_GetAttr": 3,
- "__pyx_n_s__loss": 2,
- "__pyx_filename": 51,
- "__pyx_f": 42,
- "__pyx_L1_error": 33,
- "PyCFunction_Check": 3,
- "PyCFunction_GET_FUNCTION": 3,
- "PyCFunction": 3,
- "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 1,
- "__pyx_t_2": 21,
- "PyFloat_FromDouble": 9,
- "__pyx_t_3": 39,
- "__pyx_t_4": 27,
- "PyTuple_New": 3,
- "PyTuple_SET_ITEM": 6,
- "PyObject_Call": 6,
- "PyErr_Occurred": 9,
- "__pyx_L0": 18,
- "__pyx_builtin_NotImplementedError": 3,
- "__pyx_empty_tuple": 3,
- "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1,
- "*__pyx_r": 6,
- "**__pyx_pyargnames": 3,
- "__pyx_n_s__p": 6,
- "__pyx_n_s__y": 6,
- "values": 30,
- "__pyx_kwds": 15,
- "kw_args": 15,
- "pos_args": 12,
- "__pyx_args": 21,
- "__pyx_L5_argtuple_error": 12,
- "PyDict_Size": 3,
- "PyDict_GetItem": 6,
- "__pyx_L3_error": 18,
- "__pyx_pyargnames": 3,
- "__pyx_L4_argument_unpacking_done": 6,
- "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1,
- "__pyx_vtab": 2,
- "loss": 1,
- "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 3,
- "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_dloss": 1,
- "__pyx_n_s__dloss": 1,
- "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 1,
- "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1,
- "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1,
- "dloss": 1,
- "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 3,
- "__pyx_f_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1,
- "__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 1,
- "__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1,
- "__pyx_base.__pyx_vtab": 1,
- "__pyx_base.loss": 1,
- "syscalldef": 1,
- "syscalldefs": 1,
- "SYSCALL_OR_NUM": 3,
- "SYS_restart_syscall": 1,
- "MAKE_UINT16": 3,
- "SYS_exit": 1,
- "SYS_fork": 1,
- "__wglew_h__": 2,
- "__WGLEW_H__": 1,
- "__wglext_h_": 2,
- "wglext.h": 1,
- "wglew.h": 1,
- "WINAPI": 119,
- "": 1,
- "GLEW_STATIC": 1,
- "WGL_3DFX_multisample": 2,
- "WGL_SAMPLE_BUFFERS_3DFX": 1,
- "WGL_SAMPLES_3DFX": 1,
- "WGLEW_3DFX_multisample": 1,
- "WGLEW_GET_VAR": 49,
- "__WGLEW_3DFX_multisample": 2,
- "WGL_3DL_stereo_control": 2,
- "WGL_STEREO_EMITTER_ENABLE_3DL": 1,
- "WGL_STEREO_EMITTER_DISABLE_3DL": 1,
- "WGL_STEREO_POLARITY_NORMAL_3DL": 1,
- "WGL_STEREO_POLARITY_INVERT_3DL": 1,
- "BOOL": 84,
- "PFNWGLSETSTEREOEMITTERSTATE3DLPROC": 2,
- "HDC": 65,
- "hDC": 33,
- "UINT": 30,
- "uState": 1,
- "wglSetStereoEmitterState3DL": 1,
- "WGLEW_GET_FUN": 120,
- "__wglewSetStereoEmitterState3DL": 2,
- "WGLEW_3DL_stereo_control": 1,
- "__WGLEW_3DL_stereo_control": 2,
- "WGL_AMD_gpu_association": 2,
- "WGL_GPU_VENDOR_AMD": 1,
- "F00": 1,
- "WGL_GPU_RENDERER_STRING_AMD": 1,
- "F01": 1,
- "WGL_GPU_OPENGL_VERSION_STRING_AMD": 1,
- "F02": 1,
- "WGL_GPU_FASTEST_TARGET_GPUS_AMD": 1,
- "A2": 2,
- "WGL_GPU_RAM_AMD": 1,
- "A3": 2,
- "WGL_GPU_CLOCK_AMD": 1,
- "A4": 2,
- "WGL_GPU_NUM_PIPES_AMD": 1,
- "A5": 3,
- "WGL_GPU_NUM_SIMD_AMD": 1,
- "A6": 2,
- "WGL_GPU_NUM_RB_AMD": 1,
- "A7": 2,
- "WGL_GPU_NUM_SPI_AMD": 1,
- "A8": 2,
- "VOID": 6,
- "PFNWGLBLITCONTEXTFRAMEBUFFERAMDPROC": 2,
- "HGLRC": 14,
- "dstCtx": 1,
- "GLint": 18,
- "srcX0": 1,
- "srcY0": 1,
- "srcX1": 1,
- "srcY1": 1,
- "dstX0": 1,
- "dstY0": 1,
- "dstX1": 1,
- "dstY1": 1,
- "GLbitfield": 1,
- "mask": 1,
- "GLenum": 8,
- "filter": 1,
- "PFNWGLCREATEASSOCIATEDCONTEXTAMDPROC": 2,
- "PFNWGLCREATEASSOCIATEDCONTEXTATTRIBSAMDPROC": 2,
- "hShareContext": 2,
- "attribList": 2,
- "PFNWGLDELETEASSOCIATEDCONTEXTAMDPROC": 2,
- "hglrc": 5,
- "PFNWGLGETCONTEXTGPUIDAMDPROC": 2,
- "PFNWGLGETCURRENTASSOCIATEDCONTEXTAMDPROC": 2,
- "PFNWGLGETGPUIDSAMDPROC": 2,
- "maxCount": 1,
- "UINT*": 6,
- "ids": 1,
- "INT": 3,
- "PFNWGLGETGPUINFOAMDPROC": 2,
- "property": 1,
- "dataType": 1,
- "PFNWGLMAKEASSOCIATEDCONTEXTCURRENTAMDPROC": 2,
- "wglBlitContextFramebufferAMD": 1,
- "__wglewBlitContextFramebufferAMD": 2,
- "wglCreateAssociatedContextAMD": 1,
- "__wglewCreateAssociatedContextAMD": 2,
- "wglCreateAssociatedContextAttribsAMD": 1,
- "__wglewCreateAssociatedContextAttribsAMD": 2,
- "wglDeleteAssociatedContextAMD": 1,
- "__wglewDeleteAssociatedContextAMD": 2,
- "wglGetContextGPUIDAMD": 1,
- "__wglewGetContextGPUIDAMD": 2,
- "wglGetCurrentAssociatedContextAMD": 1,
- "__wglewGetCurrentAssociatedContextAMD": 2,
- "wglGetGPUIDsAMD": 1,
- "__wglewGetGPUIDsAMD": 2,
- "wglGetGPUInfoAMD": 1,
- "__wglewGetGPUInfoAMD": 2,
- "wglMakeAssociatedContextCurrentAMD": 1,
- "__wglewMakeAssociatedContextCurrentAMD": 2,
- "WGLEW_AMD_gpu_association": 1,
- "__WGLEW_AMD_gpu_association": 2,
- "WGL_ARB_buffer_region": 2,
- "WGL_FRONT_COLOR_BUFFER_BIT_ARB": 1,
- "WGL_BACK_COLOR_BUFFER_BIT_ARB": 1,
- "WGL_DEPTH_BUFFER_BIT_ARB": 1,
- "WGL_STENCIL_BUFFER_BIT_ARB": 1,
- "HANDLE": 14,
- "PFNWGLCREATEBUFFERREGIONARBPROC": 2,
- "iLayerPlane": 5,
- "uType": 1,
- "PFNWGLDELETEBUFFERREGIONARBPROC": 2,
- "hRegion": 3,
- "PFNWGLRESTOREBUFFERREGIONARBPROC": 2,
- "width": 3,
- "height": 3,
- "xSrc": 1,
- "ySrc": 1,
- "PFNWGLSAVEBUFFERREGIONARBPROC": 2,
- "wglCreateBufferRegionARB": 1,
- "__wglewCreateBufferRegionARB": 2,
- "wglDeleteBufferRegionARB": 1,
- "__wglewDeleteBufferRegionARB": 2,
- "wglRestoreBufferRegionARB": 1,
- "__wglewRestoreBufferRegionARB": 2,
- "wglSaveBufferRegionARB": 1,
- "__wglewSaveBufferRegionARB": 2,
- "WGLEW_ARB_buffer_region": 1,
- "__WGLEW_ARB_buffer_region": 2,
- "WGL_ARB_create_context": 2,
- "WGL_CONTEXT_DEBUG_BIT_ARB": 1,
- "WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB": 1,
- "WGL_CONTEXT_MAJOR_VERSION_ARB": 1,
- "WGL_CONTEXT_MINOR_VERSION_ARB": 1,
- "WGL_CONTEXT_LAYER_PLANE_ARB": 1,
- "WGL_CONTEXT_FLAGS_ARB": 1,
- "ERROR_INVALID_VERSION_ARB": 1,
- "ERROR_INVALID_PROFILE_ARB": 1,
- "PFNWGLCREATECONTEXTATTRIBSARBPROC": 2,
- "wglCreateContextAttribsARB": 1,
- "__wglewCreateContextAttribsARB": 2,
- "WGLEW_ARB_create_context": 1,
- "__WGLEW_ARB_create_context": 2,
- "WGL_ARB_create_context_profile": 2,
- "WGL_CONTEXT_CORE_PROFILE_BIT_ARB": 1,
- "WGL_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB": 1,
- "WGL_CONTEXT_PROFILE_MASK_ARB": 1,
- "WGLEW_ARB_create_context_profile": 1,
- "__WGLEW_ARB_create_context_profile": 2,
- "WGL_ARB_create_context_robustness": 2,
- "WGL_CONTEXT_ROBUST_ACCESS_BIT_ARB": 1,
- "WGL_LOSE_CONTEXT_ON_RESET_ARB": 1,
- "WGL_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB": 1,
- "WGL_NO_RESET_NOTIFICATION_ARB": 1,
- "WGLEW_ARB_create_context_robustness": 1,
- "__WGLEW_ARB_create_context_robustness": 2,
- "WGL_ARB_extensions_string": 2,
- "PFNWGLGETEXTENSIONSSTRINGARBPROC": 2,
- "hdc": 16,
- "wglGetExtensionsStringARB": 1,
- "__wglewGetExtensionsStringARB": 2,
- "WGLEW_ARB_extensions_string": 1,
- "__WGLEW_ARB_extensions_string": 2,
- "WGL_ARB_framebuffer_sRGB": 2,
- "WGL_FRAMEBUFFER_SRGB_CAPABLE_ARB": 1,
- "A9": 2,
- "WGLEW_ARB_framebuffer_sRGB": 1,
- "__WGLEW_ARB_framebuffer_sRGB": 2,
- "WGL_ARB_make_current_read": 2,
- "ERROR_INVALID_PIXEL_TYPE_ARB": 1,
- "ERROR_INCOMPATIBLE_DEVICE_CONTEXTS_ARB": 1,
- "PFNWGLGETCURRENTREADDCARBPROC": 2,
- "PFNWGLMAKECONTEXTCURRENTARBPROC": 2,
- "hDrawDC": 2,
- "hReadDC": 2,
- "wglGetCurrentReadDCARB": 1,
- "__wglewGetCurrentReadDCARB": 2,
- "wglMakeContextCurrentARB": 1,
- "__wglewMakeContextCurrentARB": 2,
- "WGLEW_ARB_make_current_read": 1,
- "__WGLEW_ARB_make_current_read": 2,
- "WGL_ARB_multisample": 2,
- "WGL_SAMPLE_BUFFERS_ARB": 1,
- "WGL_SAMPLES_ARB": 1,
- "WGLEW_ARB_multisample": 1,
- "__WGLEW_ARB_multisample": 2,
- "WGL_ARB_pbuffer": 2,
- "WGL_DRAW_TO_PBUFFER_ARB": 1,
- "D": 8,
- "WGL_MAX_PBUFFER_PIXELS_ARB": 1,
- "WGL_MAX_PBUFFER_WIDTH_ARB": 1,
- "WGL_MAX_PBUFFER_HEIGHT_ARB": 1,
- "WGL_PBUFFER_LARGEST_ARB": 1,
- "WGL_PBUFFER_WIDTH_ARB": 1,
- "WGL_PBUFFER_HEIGHT_ARB": 1,
- "WGL_PBUFFER_LOST_ARB": 1,
- "DECLARE_HANDLE": 6,
- "HPBUFFERARB": 12,
- "PFNWGLCREATEPBUFFERARBPROC": 2,
- "iPixelFormat": 6,
- "iWidth": 2,
- "iHeight": 2,
- "piAttribList": 4,
- "PFNWGLDESTROYPBUFFERARBPROC": 2,
- "hPbuffer": 14,
- "PFNWGLGETPBUFFERDCARBPROC": 2,
- "PFNWGLQUERYPBUFFERARBPROC": 2,
- "iAttribute": 8,
- "piValue": 8,
- "PFNWGLRELEASEPBUFFERDCARBPROC": 2,
- "wglCreatePbufferARB": 1,
- "__wglewCreatePbufferARB": 2,
- "wglDestroyPbufferARB": 1,
- "__wglewDestroyPbufferARB": 2,
- "wglGetPbufferDCARB": 1,
- "__wglewGetPbufferDCARB": 2,
- "wglQueryPbufferARB": 1,
- "__wglewQueryPbufferARB": 2,
- "wglReleasePbufferDCARB": 1,
- "__wglewReleasePbufferDCARB": 2,
- "WGLEW_ARB_pbuffer": 1,
- "__WGLEW_ARB_pbuffer": 2,
- "WGL_ARB_pixel_format": 2,
- "WGL_NUMBER_PIXEL_FORMATS_ARB": 1,
- "WGL_DRAW_TO_WINDOW_ARB": 1,
- "WGL_DRAW_TO_BITMAP_ARB": 1,
- "WGL_ACCELERATION_ARB": 1,
- "WGL_NEED_PALETTE_ARB": 1,
- "WGL_NEED_SYSTEM_PALETTE_ARB": 1,
- "WGL_SWAP_LAYER_BUFFERS_ARB": 1,
- "WGL_SWAP_METHOD_ARB": 1,
- "WGL_NUMBER_OVERLAYS_ARB": 1,
- "WGL_NUMBER_UNDERLAYS_ARB": 1,
- "WGL_TRANSPARENT_ARB": 1,
- "WGL_SHARE_DEPTH_ARB": 1,
- "WGL_SHARE_STENCIL_ARB": 1,
- "WGL_SHARE_ACCUM_ARB": 1,
- "WGL_SUPPORT_GDI_ARB": 1,
- "WGL_SUPPORT_OPENGL_ARB": 1,
- "WGL_DOUBLE_BUFFER_ARB": 1,
- "WGL_STEREO_ARB": 1,
- "WGL_PIXEL_TYPE_ARB": 1,
- "WGL_COLOR_BITS_ARB": 1,
- "WGL_RED_BITS_ARB": 1,
- "WGL_RED_SHIFT_ARB": 1,
- "WGL_GREEN_BITS_ARB": 1,
- "WGL_GREEN_SHIFT_ARB": 1,
- "WGL_BLUE_BITS_ARB": 1,
- "WGL_BLUE_SHIFT_ARB": 1,
- "WGL_ALPHA_BITS_ARB": 1,
- "B": 9,
- "WGL_ALPHA_SHIFT_ARB": 1,
- "WGL_ACCUM_BITS_ARB": 1,
- "WGL_ACCUM_RED_BITS_ARB": 1,
- "WGL_ACCUM_GREEN_BITS_ARB": 1,
- "WGL_ACCUM_BLUE_BITS_ARB": 1,
- "WGL_ACCUM_ALPHA_BITS_ARB": 1,
- "WGL_DEPTH_BITS_ARB": 1,
- "WGL_STENCIL_BITS_ARB": 1,
- "WGL_AUX_BUFFERS_ARB": 1,
- "WGL_NO_ACCELERATION_ARB": 1,
- "WGL_GENERIC_ACCELERATION_ARB": 1,
- "WGL_FULL_ACCELERATION_ARB": 1,
- "WGL_SWAP_EXCHANGE_ARB": 1,
- "WGL_SWAP_COPY_ARB": 1,
- "WGL_SWAP_UNDEFINED_ARB": 1,
- "WGL_TYPE_RGBA_ARB": 1,
- "WGL_TYPE_COLORINDEX_ARB": 1,
- "WGL_TRANSPARENT_RED_VALUE_ARB": 1,
- "WGL_TRANSPARENT_GREEN_VALUE_ARB": 1,
- "WGL_TRANSPARENT_BLUE_VALUE_ARB": 1,
- "WGL_TRANSPARENT_ALPHA_VALUE_ARB": 1,
- "WGL_TRANSPARENT_INDEX_VALUE_ARB": 1,
- "PFNWGLCHOOSEPIXELFORMATARBPROC": 2,
- "piAttribIList": 2,
- "FLOAT": 4,
- "*pfAttribFList": 2,
- "nMaxFormats": 2,
- "*piFormats": 2,
- "*nNumFormats": 2,
- "PFNWGLGETPIXELFORMATATTRIBFVARBPROC": 2,
- "nAttributes": 4,
- "piAttributes": 4,
- "*pfValues": 2,
- "PFNWGLGETPIXELFORMATATTRIBIVARBPROC": 2,
- "*piValues": 2,
- "wglChoosePixelFormatARB": 1,
- "__wglewChoosePixelFormatARB": 2,
- "wglGetPixelFormatAttribfvARB": 1,
- "__wglewGetPixelFormatAttribfvARB": 2,
- "wglGetPixelFormatAttribivARB": 1,
- "__wglewGetPixelFormatAttribivARB": 2,
- "WGLEW_ARB_pixel_format": 1,
- "__WGLEW_ARB_pixel_format": 2,
- "WGL_ARB_pixel_format_float": 2,
- "WGL_TYPE_RGBA_FLOAT_ARB": 1,
- "A0": 3,
- "WGLEW_ARB_pixel_format_float": 1,
- "__WGLEW_ARB_pixel_format_float": 2,
- "WGL_ARB_render_texture": 2,
- "WGL_BIND_TO_TEXTURE_RGB_ARB": 1,
- "WGL_BIND_TO_TEXTURE_RGBA_ARB": 1,
- "WGL_TEXTURE_FORMAT_ARB": 1,
- "WGL_TEXTURE_TARGET_ARB": 1,
- "WGL_MIPMAP_TEXTURE_ARB": 1,
- "WGL_TEXTURE_RGB_ARB": 1,
- "WGL_TEXTURE_RGBA_ARB": 1,
- "WGL_NO_TEXTURE_ARB": 2,
- "WGL_TEXTURE_CUBE_MAP_ARB": 1,
- "WGL_TEXTURE_1D_ARB": 1,
- "WGL_TEXTURE_2D_ARB": 1,
- "WGL_MIPMAP_LEVEL_ARB": 1,
- "WGL_CUBE_MAP_FACE_ARB": 1,
- "WGL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB": 1,
- "WGL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB": 1,
- "WGL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB": 1,
- "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB": 1,
- "WGL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB": 1,
- "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB": 1,
- "WGL_FRONT_LEFT_ARB": 1,
- "WGL_FRONT_RIGHT_ARB": 1,
- "WGL_BACK_LEFT_ARB": 1,
- "WGL_BACK_RIGHT_ARB": 1,
- "WGL_AUX0_ARB": 1,
- "WGL_AUX1_ARB": 1,
- "WGL_AUX2_ARB": 1,
- "WGL_AUX3_ARB": 1,
- "WGL_AUX4_ARB": 1,
- "WGL_AUX5_ARB": 1,
- "WGL_AUX6_ARB": 1,
- "WGL_AUX7_ARB": 1,
- "WGL_AUX8_ARB": 1,
- "WGL_AUX9_ARB": 1,
- "PFNWGLBINDTEXIMAGEARBPROC": 2,
- "iBuffer": 2,
- "PFNWGLRELEASETEXIMAGEARBPROC": 2,
- "PFNWGLSETPBUFFERATTRIBARBPROC": 2,
- "wglBindTexImageARB": 1,
- "__wglewBindTexImageARB": 2,
- "wglReleaseTexImageARB": 1,
- "__wglewReleaseTexImageARB": 2,
- "wglSetPbufferAttribARB": 1,
- "__wglewSetPbufferAttribARB": 2,
- "WGLEW_ARB_render_texture": 1,
- "__WGLEW_ARB_render_texture": 2,
- "WGL_ATI_pixel_format_float": 2,
- "WGL_TYPE_RGBA_FLOAT_ATI": 1,
- "GL_RGBA_FLOAT_MODE_ATI": 1,
- "GL_COLOR_CLEAR_UNCLAMPED_VALUE_ATI": 1,
- "WGLEW_ATI_pixel_format_float": 1,
- "__WGLEW_ATI_pixel_format_float": 2,
- "WGL_ATI_render_texture_rectangle": 2,
- "WGL_TEXTURE_RECTANGLE_ATI": 1,
- "WGLEW_ATI_render_texture_rectangle": 1,
- "__WGLEW_ATI_render_texture_rectangle": 2,
- "WGL_EXT_create_context_es2_profile": 2,
- "WGL_CONTEXT_ES2_PROFILE_BIT_EXT": 1,
- "WGLEW_EXT_create_context_es2_profile": 1,
- "__WGLEW_EXT_create_context_es2_profile": 2,
- "WGL_EXT_depth_float": 2,
- "WGL_DEPTH_FLOAT_EXT": 1,
- "WGLEW_EXT_depth_float": 1,
- "__WGLEW_EXT_depth_float": 2,
- "WGL_EXT_display_color_table": 2,
- "GLboolean": 53,
- "PFNWGLBINDDISPLAYCOLORTABLEEXTPROC": 2,
- "GLushort": 3,
- "PFNWGLCREATEDISPLAYCOLORTABLEEXTPROC": 2,
- "PFNWGLDESTROYDISPLAYCOLORTABLEEXTPROC": 2,
- "PFNWGLLOADDISPLAYCOLORTABLEEXTPROC": 2,
- "GLushort*": 1,
- "table": 1,
- "GLuint": 9,
- "wglBindDisplayColorTableEXT": 1,
- "__wglewBindDisplayColorTableEXT": 2,
- "wglCreateDisplayColorTableEXT": 1,
- "__wglewCreateDisplayColorTableEXT": 2,
- "wglDestroyDisplayColorTableEXT": 1,
- "__wglewDestroyDisplayColorTableEXT": 2,
- "wglLoadDisplayColorTableEXT": 1,
- "__wglewLoadDisplayColorTableEXT": 2,
- "WGLEW_EXT_display_color_table": 1,
- "__WGLEW_EXT_display_color_table": 2,
- "WGL_EXT_extensions_string": 2,
- "PFNWGLGETEXTENSIONSSTRINGEXTPROC": 2,
- "wglGetExtensionsStringEXT": 1,
- "__wglewGetExtensionsStringEXT": 2,
- "WGLEW_EXT_extensions_string": 1,
- "__WGLEW_EXT_extensions_string": 2,
- "WGL_EXT_framebuffer_sRGB": 2,
- "WGL_FRAMEBUFFER_SRGB_CAPABLE_EXT": 1,
- "WGLEW_EXT_framebuffer_sRGB": 1,
- "__WGLEW_EXT_framebuffer_sRGB": 2,
- "WGL_EXT_make_current_read": 2,
- "ERROR_INVALID_PIXEL_TYPE_EXT": 1,
- "PFNWGLGETCURRENTREADDCEXTPROC": 2,
- "PFNWGLMAKECONTEXTCURRENTEXTPROC": 2,
- "wglGetCurrentReadDCEXT": 1,
- "__wglewGetCurrentReadDCEXT": 2,
- "wglMakeContextCurrentEXT": 1,
- "__wglewMakeContextCurrentEXT": 2,
- "WGLEW_EXT_make_current_read": 1,
- "__WGLEW_EXT_make_current_read": 2,
- "WGL_EXT_multisample": 2,
- "WGL_SAMPLE_BUFFERS_EXT": 1,
- "WGL_SAMPLES_EXT": 1,
- "WGLEW_EXT_multisample": 1,
- "__WGLEW_EXT_multisample": 2,
- "WGL_EXT_pbuffer": 2,
- "WGL_DRAW_TO_PBUFFER_EXT": 1,
- "WGL_MAX_PBUFFER_PIXELS_EXT": 1,
- "WGL_MAX_PBUFFER_WIDTH_EXT": 1,
- "WGL_MAX_PBUFFER_HEIGHT_EXT": 1,
- "WGL_OPTIMAL_PBUFFER_WIDTH_EXT": 1,
- "WGL_OPTIMAL_PBUFFER_HEIGHT_EXT": 1,
- "WGL_PBUFFER_LARGEST_EXT": 1,
- "WGL_PBUFFER_WIDTH_EXT": 1,
- "WGL_PBUFFER_HEIGHT_EXT": 1,
- "HPBUFFEREXT": 6,
- "PFNWGLCREATEPBUFFEREXTPROC": 2,
- "PFNWGLDESTROYPBUFFEREXTPROC": 2,
- "PFNWGLGETPBUFFERDCEXTPROC": 2,
- "PFNWGLQUERYPBUFFEREXTPROC": 2,
- "PFNWGLRELEASEPBUFFERDCEXTPROC": 2,
- "wglCreatePbufferEXT": 1,
- "__wglewCreatePbufferEXT": 2,
- "wglDestroyPbufferEXT": 1,
- "__wglewDestroyPbufferEXT": 2,
- "wglGetPbufferDCEXT": 1,
- "__wglewGetPbufferDCEXT": 2,
- "wglQueryPbufferEXT": 1,
- "__wglewQueryPbufferEXT": 2,
- "wglReleasePbufferDCEXT": 1,
- "__wglewReleasePbufferDCEXT": 2,
- "WGLEW_EXT_pbuffer": 1,
- "__WGLEW_EXT_pbuffer": 2,
- "WGL_EXT_pixel_format": 2,
- "WGL_NUMBER_PIXEL_FORMATS_EXT": 1,
- "WGL_DRAW_TO_WINDOW_EXT": 1,
- "WGL_DRAW_TO_BITMAP_EXT": 1,
- "WGL_ACCELERATION_EXT": 1,
- "WGL_NEED_PALETTE_EXT": 1,
- "WGL_NEED_SYSTEM_PALETTE_EXT": 1,
- "WGL_SWAP_LAYER_BUFFERS_EXT": 1,
- "WGL_SWAP_METHOD_EXT": 1,
- "WGL_NUMBER_OVERLAYS_EXT": 1,
- "WGL_NUMBER_UNDERLAYS_EXT": 1,
- "WGL_TRANSPARENT_EXT": 1,
- "WGL_TRANSPARENT_VALUE_EXT": 1,
- "WGL_SHARE_DEPTH_EXT": 1,
- "WGL_SHARE_STENCIL_EXT": 1,
- "WGL_SHARE_ACCUM_EXT": 1,
- "WGL_SUPPORT_GDI_EXT": 1,
- "WGL_SUPPORT_OPENGL_EXT": 1,
- "WGL_DOUBLE_BUFFER_EXT": 1,
- "WGL_STEREO_EXT": 1,
- "WGL_PIXEL_TYPE_EXT": 1,
- "WGL_COLOR_BITS_EXT": 1,
- "WGL_RED_BITS_EXT": 1,
- "WGL_RED_SHIFT_EXT": 1,
- "WGL_GREEN_BITS_EXT": 1,
- "WGL_GREEN_SHIFT_EXT": 1,
- "WGL_BLUE_BITS_EXT": 1,
- "WGL_BLUE_SHIFT_EXT": 1,
- "WGL_ALPHA_BITS_EXT": 1,
- "WGL_ALPHA_SHIFT_EXT": 1,
- "WGL_ACCUM_BITS_EXT": 1,
- "WGL_ACCUM_RED_BITS_EXT": 1,
- "WGL_ACCUM_GREEN_BITS_EXT": 1,
- "WGL_ACCUM_BLUE_BITS_EXT": 1,
- "WGL_ACCUM_ALPHA_BITS_EXT": 1,
- "WGL_DEPTH_BITS_EXT": 1,
- "WGL_STENCIL_BITS_EXT": 1,
- "WGL_AUX_BUFFERS_EXT": 1,
- "WGL_NO_ACCELERATION_EXT": 1,
- "WGL_GENERIC_ACCELERATION_EXT": 1,
- "WGL_FULL_ACCELERATION_EXT": 1,
- "WGL_SWAP_EXCHANGE_EXT": 1,
- "WGL_SWAP_COPY_EXT": 1,
- "WGL_SWAP_UNDEFINED_EXT": 1,
- "WGL_TYPE_RGBA_EXT": 1,
- "WGL_TYPE_COLORINDEX_EXT": 1,
- "PFNWGLCHOOSEPIXELFORMATEXTPROC": 2,
- "PFNWGLGETPIXELFORMATATTRIBFVEXTPROC": 2,
- "PFNWGLGETPIXELFORMATATTRIBIVEXTPROC": 2,
- "wglChoosePixelFormatEXT": 1,
- "__wglewChoosePixelFormatEXT": 2,
- "wglGetPixelFormatAttribfvEXT": 1,
- "__wglewGetPixelFormatAttribfvEXT": 2,
- "wglGetPixelFormatAttribivEXT": 1,
- "__wglewGetPixelFormatAttribivEXT": 2,
- "WGLEW_EXT_pixel_format": 1,
- "__WGLEW_EXT_pixel_format": 2,
- "WGL_EXT_pixel_format_packed_float": 2,
- "WGL_TYPE_RGBA_UNSIGNED_FLOAT_EXT": 1,
- "WGLEW_EXT_pixel_format_packed_float": 1,
- "__WGLEW_EXT_pixel_format_packed_float": 2,
- "WGL_EXT_swap_control": 2,
- "PFNWGLGETSWAPINTERVALEXTPROC": 2,
- "PFNWGLSWAPINTERVALEXTPROC": 2,
- "interval": 1,
- "wglGetSwapIntervalEXT": 1,
- "__wglewGetSwapIntervalEXT": 2,
- "wglSwapIntervalEXT": 1,
- "__wglewSwapIntervalEXT": 2,
- "WGLEW_EXT_swap_control": 1,
- "__WGLEW_EXT_swap_control": 2,
- "WGL_I3D_digital_video_control": 2,
- "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_FRAMEBUFFER_I3D": 1,
- "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_VALUE_I3D": 1,
- "WGL_DIGITAL_VIDEO_CURSOR_INCLUDED_I3D": 1,
- "WGL_DIGITAL_VIDEO_GAMMA_CORRECTED_I3D": 1,
- "PFNWGLGETDIGITALVIDEOPARAMETERSI3DPROC": 2,
- "PFNWGLSETDIGITALVIDEOPARAMETERSI3DPROC": 2,
- "wglGetDigitalVideoParametersI3D": 1,
- "__wglewGetDigitalVideoParametersI3D": 2,
- "wglSetDigitalVideoParametersI3D": 1,
- "__wglewSetDigitalVideoParametersI3D": 2,
- "WGLEW_I3D_digital_video_control": 1,
- "__WGLEW_I3D_digital_video_control": 2,
- "WGL_I3D_gamma": 2,
- "WGL_GAMMA_TABLE_SIZE_I3D": 1,
- "WGL_GAMMA_EXCLUDE_DESKTOP_I3D": 1,
- "PFNWGLGETGAMMATABLEI3DPROC": 2,
- "iEntries": 2,
- "USHORT*": 2,
- "puRed": 2,
- "USHORT": 4,
- "*puGreen": 2,
- "*puBlue": 2,
- "PFNWGLGETGAMMATABLEPARAMETERSI3DPROC": 2,
- "PFNWGLSETGAMMATABLEI3DPROC": 2,
- "PFNWGLSETGAMMATABLEPARAMETERSI3DPROC": 2,
- "wglGetGammaTableI3D": 1,
- "__wglewGetGammaTableI3D": 2,
- "wglGetGammaTableParametersI3D": 1,
- "__wglewGetGammaTableParametersI3D": 2,
- "wglSetGammaTableI3D": 1,
- "__wglewSetGammaTableI3D": 2,
- "wglSetGammaTableParametersI3D": 1,
- "__wglewSetGammaTableParametersI3D": 2,
- "WGLEW_I3D_gamma": 1,
- "__WGLEW_I3D_gamma": 2,
- "WGL_I3D_genlock": 2,
- "WGL_GENLOCK_SOURCE_MULTIVIEW_I3D": 1,
- "WGL_GENLOCK_SOURCE_EXTERNAL_SYNC_I3D": 1,
- "WGL_GENLOCK_SOURCE_EXTERNAL_FIELD_I3D": 1,
- "WGL_GENLOCK_SOURCE_EXTERNAL_TTL_I3D": 1,
- "WGL_GENLOCK_SOURCE_DIGITAL_SYNC_I3D": 1,
- "WGL_GENLOCK_SOURCE_DIGITAL_FIELD_I3D": 1,
- "WGL_GENLOCK_SOURCE_EDGE_FALLING_I3D": 1,
- "WGL_GENLOCK_SOURCE_EDGE_RISING_I3D": 1,
- "WGL_GENLOCK_SOURCE_EDGE_BOTH_I3D": 1,
- "PFNWGLDISABLEGENLOCKI3DPROC": 2,
- "PFNWGLENABLEGENLOCKI3DPROC": 2,
- "PFNWGLGENLOCKSAMPLERATEI3DPROC": 2,
- "uRate": 2,
- "PFNWGLGENLOCKSOURCEDELAYI3DPROC": 2,
- "uDelay": 2,
- "PFNWGLGENLOCKSOURCEEDGEI3DPROC": 2,
- "uEdge": 2,
- "PFNWGLGENLOCKSOURCEI3DPROC": 2,
- "uSource": 2,
- "PFNWGLGETGENLOCKSAMPLERATEI3DPROC": 2,
- "PFNWGLGETGENLOCKSOURCEDELAYI3DPROC": 2,
- "PFNWGLGETGENLOCKSOURCEEDGEI3DPROC": 2,
- "PFNWGLGETGENLOCKSOURCEI3DPROC": 2,
- "PFNWGLISENABLEDGENLOCKI3DPROC": 2,
- "BOOL*": 3,
- "pFlag": 3,
- "PFNWGLQUERYGENLOCKMAXSOURCEDELAYI3DPROC": 2,
- "uMaxLineDelay": 1,
- "*uMaxPixelDelay": 1,
- "wglDisableGenlockI3D": 1,
- "__wglewDisableGenlockI3D": 2,
- "wglEnableGenlockI3D": 1,
- "__wglewEnableGenlockI3D": 2,
- "wglGenlockSampleRateI3D": 1,
- "__wglewGenlockSampleRateI3D": 2,
- "wglGenlockSourceDelayI3D": 1,
- "__wglewGenlockSourceDelayI3D": 2,
- "wglGenlockSourceEdgeI3D": 1,
- "__wglewGenlockSourceEdgeI3D": 2,
- "wglGenlockSourceI3D": 1,
- "__wglewGenlockSourceI3D": 2,
- "wglGetGenlockSampleRateI3D": 1,
- "__wglewGetGenlockSampleRateI3D": 2,
- "wglGetGenlockSourceDelayI3D": 1,
- "__wglewGetGenlockSourceDelayI3D": 2,
- "wglGetGenlockSourceEdgeI3D": 1,
- "__wglewGetGenlockSourceEdgeI3D": 2,
- "wglGetGenlockSourceI3D": 1,
- "__wglewGetGenlockSourceI3D": 2,
- "wglIsEnabledGenlockI3D": 1,
- "__wglewIsEnabledGenlockI3D": 2,
- "wglQueryGenlockMaxSourceDelayI3D": 1,
- "__wglewQueryGenlockMaxSourceDelayI3D": 2,
- "WGLEW_I3D_genlock": 1,
- "__WGLEW_I3D_genlock": 2,
- "WGL_I3D_image_buffer": 2,
- "WGL_IMAGE_BUFFER_MIN_ACCESS_I3D": 1,
- "WGL_IMAGE_BUFFER_LOCK_I3D": 1,
- "PFNWGLASSOCIATEIMAGEBUFFEREVENTSI3DPROC": 2,
- "HANDLE*": 3,
- "pEvent": 1,
- "LPVOID": 3,
- "*pAddress": 1,
- "DWORD": 5,
- "*pSize": 1,
- "PFNWGLCREATEIMAGEBUFFERI3DPROC": 2,
- "dwSize": 1,
- "uFlags": 1,
- "PFNWGLDESTROYIMAGEBUFFERI3DPROC": 2,
- "pAddress": 2,
- "PFNWGLRELEASEIMAGEBUFFEREVENTSI3DPROC": 2,
- "LPVOID*": 1,
- "wglAssociateImageBufferEventsI3D": 1,
- "__wglewAssociateImageBufferEventsI3D": 2,
- "wglCreateImageBufferI3D": 1,
- "__wglewCreateImageBufferI3D": 2,
- "wglDestroyImageBufferI3D": 1,
- "__wglewDestroyImageBufferI3D": 2,
- "wglReleaseImageBufferEventsI3D": 1,
- "__wglewReleaseImageBufferEventsI3D": 2,
- "WGLEW_I3D_image_buffer": 1,
- "__WGLEW_I3D_image_buffer": 2,
- "WGL_I3D_swap_frame_lock": 2,
- "PFNWGLDISABLEFRAMELOCKI3DPROC": 2,
- "PFNWGLENABLEFRAMELOCKI3DPROC": 2,
- "PFNWGLISENABLEDFRAMELOCKI3DPROC": 2,
- "PFNWGLQUERYFRAMELOCKMASTERI3DPROC": 2,
- "wglDisableFrameLockI3D": 1,
- "__wglewDisableFrameLockI3D": 2,
- "wglEnableFrameLockI3D": 1,
- "__wglewEnableFrameLockI3D": 2,
- "wglIsEnabledFrameLockI3D": 1,
- "__wglewIsEnabledFrameLockI3D": 2,
- "wglQueryFrameLockMasterI3D": 1,
- "__wglewQueryFrameLockMasterI3D": 2,
- "WGLEW_I3D_swap_frame_lock": 1,
- "__WGLEW_I3D_swap_frame_lock": 2,
- "WGL_I3D_swap_frame_usage": 2,
- "PFNWGLBEGINFRAMETRACKINGI3DPROC": 2,
- "PFNWGLENDFRAMETRACKINGI3DPROC": 2,
- "PFNWGLGETFRAMEUSAGEI3DPROC": 2,
- "float*": 1,
- "pUsage": 1,
- "PFNWGLQUERYFRAMETRACKINGI3DPROC": 2,
- "DWORD*": 1,
- "pFrameCount": 1,
- "*pMissedFrames": 1,
- "*pLastMissedUsage": 1,
- "wglBeginFrameTrackingI3D": 1,
- "__wglewBeginFrameTrackingI3D": 2,
- "wglEndFrameTrackingI3D": 1,
- "__wglewEndFrameTrackingI3D": 2,
- "wglGetFrameUsageI3D": 1,
- "__wglewGetFrameUsageI3D": 2,
- "wglQueryFrameTrackingI3D": 1,
- "__wglewQueryFrameTrackingI3D": 2,
- "WGLEW_I3D_swap_frame_usage": 1,
- "__WGLEW_I3D_swap_frame_usage": 2,
- "WGL_NV_DX_interop": 2,
- "WGL_ACCESS_READ_ONLY_NV": 1,
- "WGL_ACCESS_READ_WRITE_NV": 1,
- "WGL_ACCESS_WRITE_DISCARD_NV": 1,
- "PFNWGLDXCLOSEDEVICENVPROC": 2,
- "hDevice": 9,
- "PFNWGLDXLOCKOBJECTSNVPROC": 2,
- "hObjects": 2,
- "PFNWGLDXOBJECTACCESSNVPROC": 2,
- "hObject": 2,
- "access": 2,
- "PFNWGLDXOPENDEVICENVPROC": 2,
- "dxDevice": 1,
- "PFNWGLDXREGISTEROBJECTNVPROC": 2,
- "dxObject": 2,
- "PFNWGLDXSETRESOURCESHAREHANDLENVPROC": 2,
- "shareHandle": 1,
- "PFNWGLDXUNLOCKOBJECTSNVPROC": 2,
- "PFNWGLDXUNREGISTEROBJECTNVPROC": 2,
- "wglDXCloseDeviceNV": 1,
- "__wglewDXCloseDeviceNV": 2,
- "wglDXLockObjectsNV": 1,
- "__wglewDXLockObjectsNV": 2,
- "wglDXObjectAccessNV": 1,
- "__wglewDXObjectAccessNV": 2,
- "wglDXOpenDeviceNV": 1,
- "__wglewDXOpenDeviceNV": 2,
- "wglDXRegisterObjectNV": 1,
- "__wglewDXRegisterObjectNV": 2,
- "wglDXSetResourceShareHandleNV": 1,
- "__wglewDXSetResourceShareHandleNV": 2,
- "wglDXUnlockObjectsNV": 1,
- "__wglewDXUnlockObjectsNV": 2,
- "wglDXUnregisterObjectNV": 1,
- "__wglewDXUnregisterObjectNV": 2,
- "WGLEW_NV_DX_interop": 1,
- "__WGLEW_NV_DX_interop": 2,
- "WGL_NV_copy_image": 2,
- "PFNWGLCOPYIMAGESUBDATANVPROC": 2,
- "hSrcRC": 1,
- "srcName": 1,
- "srcTarget": 1,
- "srcLevel": 1,
- "srcX": 1,
- "srcY": 1,
- "srcZ": 1,
- "hDstRC": 1,
- "dstName": 1,
- "dstTarget": 1,
- "dstLevel": 1,
- "dstX": 1,
- "dstY": 1,
- "dstZ": 1,
- "GLsizei": 4,
- "wglCopyImageSubDataNV": 1,
- "__wglewCopyImageSubDataNV": 2,
- "WGLEW_NV_copy_image": 1,
- "__WGLEW_NV_copy_image": 2,
- "WGL_NV_float_buffer": 2,
- "WGL_FLOAT_COMPONENTS_NV": 1,
- "B0": 1,
- "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_R_NV": 1,
- "B1": 1,
- "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RG_NV": 1,
- "B2": 1,
- "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGB_NV": 1,
- "B3": 1,
- "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGBA_NV": 1,
- "B4": 1,
- "WGL_TEXTURE_FLOAT_R_NV": 1,
- "B5": 1,
- "WGL_TEXTURE_FLOAT_RG_NV": 1,
- "B6": 1,
- "WGL_TEXTURE_FLOAT_RGB_NV": 1,
- "B7": 1,
- "WGL_TEXTURE_FLOAT_RGBA_NV": 1,
- "B8": 1,
- "WGLEW_NV_float_buffer": 1,
- "__WGLEW_NV_float_buffer": 2,
- "WGL_NV_gpu_affinity": 2,
- "WGL_ERROR_INCOMPATIBLE_AFFINITY_MASKS_NV": 1,
- "D0": 1,
- "WGL_ERROR_MISSING_AFFINITY_MASK_NV": 1,
- "D1": 1,
- "HGPUNV": 5,
- "_GPU_DEVICE": 1,
- "cb": 1,
- "CHAR": 2,
- "DeviceName": 1,
- "DeviceString": 1,
- "Flags": 1,
- "RECT": 1,
- "rcVirtualScreen": 1,
- "GPU_DEVICE": 1,
- "*PGPU_DEVICE": 1,
- "PFNWGLCREATEAFFINITYDCNVPROC": 2,
- "*phGpuList": 1,
- "PFNWGLDELETEDCNVPROC": 2,
- "PFNWGLENUMGPUDEVICESNVPROC": 2,
- "hGpu": 1,
- "iDeviceIndex": 1,
- "PGPU_DEVICE": 1,
- "lpGpuDevice": 1,
- "PFNWGLENUMGPUSFROMAFFINITYDCNVPROC": 2,
- "hAffinityDC": 1,
- "iGpuIndex": 2,
- "*hGpu": 1,
- "PFNWGLENUMGPUSNVPROC": 2,
- "*phGpu": 1,
- "wglCreateAffinityDCNV": 1,
- "__wglewCreateAffinityDCNV": 2,
- "wglDeleteDCNV": 1,
- "__wglewDeleteDCNV": 2,
- "wglEnumGpuDevicesNV": 1,
- "__wglewEnumGpuDevicesNV": 2,
- "wglEnumGpusFromAffinityDCNV": 1,
- "__wglewEnumGpusFromAffinityDCNV": 2,
- "wglEnumGpusNV": 1,
- "__wglewEnumGpusNV": 2,
- "WGLEW_NV_gpu_affinity": 1,
- "__WGLEW_NV_gpu_affinity": 2,
- "WGL_NV_multisample_coverage": 2,
- "WGL_COVERAGE_SAMPLES_NV": 1,
- "WGL_COLOR_SAMPLES_NV": 1,
- "B9": 1,
- "WGLEW_NV_multisample_coverage": 1,
- "__WGLEW_NV_multisample_coverage": 2,
- "WGL_NV_present_video": 2,
- "WGL_NUM_VIDEO_SLOTS_NV": 1,
- "F0": 1,
- "HVIDEOOUTPUTDEVICENV": 2,
- "PFNWGLBINDVIDEODEVICENVPROC": 2,
- "hDc": 6,
- "uVideoSlot": 2,
- "hVideoDevice": 4,
- "PFNWGLENUMERATEVIDEODEVICESNVPROC": 2,
- "HVIDEOOUTPUTDEVICENV*": 1,
- "phDeviceList": 2,
- "PFNWGLQUERYCURRENTCONTEXTNVPROC": 2,
- "wglBindVideoDeviceNV": 1,
- "__wglewBindVideoDeviceNV": 2,
- "wglEnumerateVideoDevicesNV": 1,
- "__wglewEnumerateVideoDevicesNV": 2,
- "wglQueryCurrentContextNV": 1,
- "__wglewQueryCurrentContextNV": 2,
- "WGLEW_NV_present_video": 1,
- "__WGLEW_NV_present_video": 2,
- "WGL_NV_render_depth_texture": 2,
- "WGL_BIND_TO_TEXTURE_DEPTH_NV": 1,
- "WGL_BIND_TO_TEXTURE_RECTANGLE_DEPTH_NV": 1,
- "WGL_DEPTH_TEXTURE_FORMAT_NV": 1,
- "WGL_TEXTURE_DEPTH_COMPONENT_NV": 1,
- "WGL_DEPTH_COMPONENT_NV": 1,
- "WGLEW_NV_render_depth_texture": 1,
- "__WGLEW_NV_render_depth_texture": 2,
- "WGL_NV_render_texture_rectangle": 2,
- "WGL_BIND_TO_TEXTURE_RECTANGLE_RGB_NV": 1,
- "WGL_BIND_TO_TEXTURE_RECTANGLE_RGBA_NV": 1,
- "A1": 1,
- "WGL_TEXTURE_RECTANGLE_NV": 1,
- "WGLEW_NV_render_texture_rectangle": 1,
- "__WGLEW_NV_render_texture_rectangle": 2,
- "WGL_NV_swap_group": 2,
- "PFNWGLBINDSWAPBARRIERNVPROC": 2,
- "group": 3,
- "barrier": 1,
- "PFNWGLJOINSWAPGROUPNVPROC": 2,
- "PFNWGLQUERYFRAMECOUNTNVPROC": 2,
- "GLuint*": 3,
- "PFNWGLQUERYMAXSWAPGROUPSNVPROC": 2,
- "maxGroups": 1,
- "*maxBarriers": 1,
- "PFNWGLQUERYSWAPGROUPNVPROC": 2,
- "*barrier": 1,
- "PFNWGLRESETFRAMECOUNTNVPROC": 2,
- "wglBindSwapBarrierNV": 1,
- "__wglewBindSwapBarrierNV": 2,
- "wglJoinSwapGroupNV": 1,
- "__wglewJoinSwapGroupNV": 2,
- "wglQueryFrameCountNV": 1,
- "__wglewQueryFrameCountNV": 2,
- "wglQueryMaxSwapGroupsNV": 1,
- "__wglewQueryMaxSwapGroupsNV": 2,
- "wglQuerySwapGroupNV": 1,
- "__wglewQuerySwapGroupNV": 2,
- "wglResetFrameCountNV": 1,
- "__wglewResetFrameCountNV": 2,
- "WGLEW_NV_swap_group": 1,
- "__WGLEW_NV_swap_group": 2,
- "WGL_NV_vertex_array_range": 2,
- "PFNWGLALLOCATEMEMORYNVPROC": 2,
- "GLfloat": 3,
- "readFrequency": 1,
- "writeFrequency": 1,
- "priority": 1,
- "PFNWGLFREEMEMORYNVPROC": 2,
- "*pointer": 1,
- "wglAllocateMemoryNV": 1,
- "__wglewAllocateMemoryNV": 2,
- "wglFreeMemoryNV": 1,
- "__wglewFreeMemoryNV": 2,
- "WGLEW_NV_vertex_array_range": 1,
- "__WGLEW_NV_vertex_array_range": 2,
- "WGL_NV_video_capture": 2,
- "WGL_UNIQUE_ID_NV": 1,
- "CE": 1,
- "WGL_NUM_VIDEO_CAPTURE_SLOTS_NV": 1,
- "CF": 1,
- "HVIDEOINPUTDEVICENV": 5,
- "PFNWGLBINDVIDEOCAPTUREDEVICENVPROC": 2,
- "PFNWGLENUMERATEVIDEOCAPTUREDEVICESNVPROC": 2,
- "HVIDEOINPUTDEVICENV*": 1,
- "PFNWGLLOCKVIDEOCAPTUREDEVICENVPROC": 2,
- "PFNWGLQUERYVIDEOCAPTUREDEVICENVPROC": 2,
- "PFNWGLRELEASEVIDEOCAPTUREDEVICENVPROC": 2,
- "wglBindVideoCaptureDeviceNV": 1,
- "__wglewBindVideoCaptureDeviceNV": 2,
- "wglEnumerateVideoCaptureDevicesNV": 1,
- "__wglewEnumerateVideoCaptureDevicesNV": 2,
- "wglLockVideoCaptureDeviceNV": 1,
- "__wglewLockVideoCaptureDeviceNV": 2,
- "wglQueryVideoCaptureDeviceNV": 1,
- "__wglewQueryVideoCaptureDeviceNV": 2,
- "wglReleaseVideoCaptureDeviceNV": 1,
- "__wglewReleaseVideoCaptureDeviceNV": 2,
- "WGLEW_NV_video_capture": 1,
- "__WGLEW_NV_video_capture": 2,
- "WGL_NV_video_output": 2,
- "WGL_BIND_TO_VIDEO_RGB_NV": 1,
- "WGL_BIND_TO_VIDEO_RGBA_NV": 1,
- "C1": 1,
- "WGL_BIND_TO_VIDEO_RGB_AND_DEPTH_NV": 1,
- "C2": 1,
- "WGL_VIDEO_OUT_COLOR_NV": 1,
- "C3": 1,
- "WGL_VIDEO_OUT_ALPHA_NV": 1,
- "C4": 1,
- "WGL_VIDEO_OUT_DEPTH_NV": 1,
- "C5": 1,
- "WGL_VIDEO_OUT_COLOR_AND_ALPHA_NV": 1,
- "C6": 1,
- "WGL_VIDEO_OUT_COLOR_AND_DEPTH_NV": 1,
- "C7": 1,
- "WGL_VIDEO_OUT_FRAME": 1,
- "C8": 1,
- "WGL_VIDEO_OUT_FIELD_1": 1,
- "C9": 1,
- "WGL_VIDEO_OUT_FIELD_2": 1,
- "CA": 1,
- "WGL_VIDEO_OUT_STACKED_FIELDS_1_2": 1,
- "CB": 1,
- "WGL_VIDEO_OUT_STACKED_FIELDS_2_1": 1,
- "CC": 1,
- "HPVIDEODEV": 4,
- "PFNWGLBINDVIDEOIMAGENVPROC": 2,
- "iVideoBuffer": 2,
- "PFNWGLGETVIDEODEVICENVPROC": 2,
- "numDevices": 1,
- "HPVIDEODEV*": 1,
- "PFNWGLGETVIDEOINFONVPROC": 2,
- "hpVideoDevice": 1,
- "long*": 2,
- "pulCounterOutputPbuffer": 1,
- "*pulCounterOutputVideo": 1,
- "PFNWGLRELEASEVIDEODEVICENVPROC": 2,
- "PFNWGLRELEASEVIDEOIMAGENVPROC": 2,
- "PFNWGLSENDPBUFFERTOVIDEONVPROC": 2,
- "iBufferType": 1,
- "pulCounterPbuffer": 1,
- "bBlock": 1,
- "wglBindVideoImageNV": 1,
- "__wglewBindVideoImageNV": 2,
- "wglGetVideoDeviceNV": 1,
- "__wglewGetVideoDeviceNV": 2,
- "wglGetVideoInfoNV": 1,
- "__wglewGetVideoInfoNV": 2,
- "wglReleaseVideoDeviceNV": 1,
- "__wglewReleaseVideoDeviceNV": 2,
- "wglReleaseVideoImageNV": 1,
- "__wglewReleaseVideoImageNV": 2,
- "wglSendPbufferToVideoNV": 1,
- "__wglewSendPbufferToVideoNV": 2,
- "WGLEW_NV_video_output": 1,
- "__WGLEW_NV_video_output": 2,
- "WGL_OML_sync_control": 2,
- "PFNWGLGETMSCRATEOMLPROC": 2,
- "INT32*": 1,
- "numerator": 1,
- "INT32": 1,
- "*denominator": 1,
- "PFNWGLGETSYNCVALUESOMLPROC": 2,
- "INT64*": 3,
- "INT64": 18,
- "*msc": 3,
- "*sbc": 3,
- "PFNWGLSWAPBUFFERSMSCOMLPROC": 2,
- "target_msc": 3,
- "divisor": 3,
- "remainder": 3,
- "PFNWGLSWAPLAYERBUFFERSMSCOMLPROC": 2,
- "fuPlanes": 1,
- "PFNWGLWAITFORMSCOMLPROC": 2,
- "PFNWGLWAITFORSBCOMLPROC": 2,
- "target_sbc": 1,
- "wglGetMscRateOML": 1,
- "__wglewGetMscRateOML": 2,
- "wglGetSyncValuesOML": 1,
- "__wglewGetSyncValuesOML": 2,
- "wglSwapBuffersMscOML": 1,
- "__wglewSwapBuffersMscOML": 2,
- "wglSwapLayerBuffersMscOML": 1,
- "__wglewSwapLayerBuffersMscOML": 2,
- "wglWaitForMscOML": 1,
- "__wglewWaitForMscOML": 2,
- "wglWaitForSbcOML": 1,
- "__wglewWaitForSbcOML": 2,
- "WGLEW_OML_sync_control": 1,
- "__WGLEW_OML_sync_control": 2,
- "GLEW_MX": 4,
- "WGLEW_EXPORT": 167,
- "GLEWAPI": 6,
- "WGLEWContextStruct": 2,
- "WGLEWContext": 1,
- "wglewContextInit": 2,
- "WGLEWContext*": 2,
- "wglewContextIsSupported": 2,
- "wglewInit": 1,
- "wglewGetContext": 4,
- "wglewIsSupported": 2,
- "wglewGetExtension": 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#": {
- "@": 1,
- "{": 5,
- "ViewBag.Title": 1,
- ";": 8,
- "}": 5,
- "@section": 1,
- "featured": 1,
- "": 1,
- "class=": 7,
- "": 1,
- "
": 1,
- "": 1,
- "@ViewBag.Title.": 1,
- " ": 1,
- "": 1,
- "@ViewBag.Message": 1,
- " ": 1,
- " ": 1,
- "
": 1,
- "To": 1,
- "learn": 1,
- "more": 4,
- "about": 2,
- "ASP.NET": 5,
- "MVC": 4,
- "visit": 2,
- "": 5,
- "href=": 5,
- "title=": 2,
- "http": 1,
- "//asp.net/mvc": 1,
- " ": 5,
- ".": 2,
- "The": 1,
- "page": 1,
- "features": 3,
- "": 1,
- "videos": 1,
- "tutorials": 1,
- "and": 6,
- "samples": 1,
- " ": 1,
- "to": 4,
- "help": 1,
- "you": 4,
- "get": 1,
- "the": 5,
- "most": 1,
- "from": 1,
- "MVC.": 1,
- "If": 1,
- "have": 1,
- "any": 1,
- "questions": 1,
- "our": 1,
- "forums": 1,
- "
": 1,
- "
": 1,
- " ": 1,
- "": 1,
- "We": 1,
- "suggest": 1,
- "following": 1,
- " ": 1,
- "": 1,
- "": 3,
- "": 3,
- "Getting": 1,
- "Started": 1,
- " ": 3,
- "gives": 2,
- "a": 3,
- "powerful": 1,
- "patterns": 1,
- "-": 3,
- "based": 1,
- "way": 1,
- "build": 1,
- "dynamic": 1,
- "websites": 1,
- "that": 5,
- "enables": 1,
- "clean": 1,
- "separation": 1,
- "of": 2,
- "concerns": 1,
- "full": 1,
- "control": 1,
- "over": 1,
- "markup": 1,
- "for": 4,
- "enjoyable": 1,
- "agile": 1,
- "development.": 1,
- "includes": 1,
- "many": 1,
- "enable": 1,
- "fast": 1,
- "TDD": 1,
- "friendly": 1,
- "development": 1,
- "creating": 1,
- "sophisticated": 1,
- "applications": 1,
- "use": 1,
- "latest": 1,
- "web": 2,
- "standards.": 1,
- "Learn": 3,
- " ": 3,
- "Add": 1,
- "NuGet": 2,
- "packages": 1,
- "jump": 1,
- "start": 1,
- "your": 2,
- "coding": 1,
- "makes": 1,
- "it": 2,
- "easy": 1,
- "install": 1,
- "update": 1,
- "free": 1,
- "libraries": 1,
- "tools.": 1,
- "Find": 1,
- "Web": 1,
- "Hosting": 1,
- "You": 1,
- "can": 1,
- "easily": 1,
- "find": 1,
- "hosting": 1,
- "company": 1,
- "offers": 1,
- "right": 1,
- "mix": 1,
- "price": 1,
- "applications.": 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++": {
- "class": 40,
- "Bar": 2,
- "{": 629,
- "protected": 4,
- "char": 127,
- "*name": 6,
- ";": 2564,
- "public": 33,
- "void": 226,
- "hello": 2,
- "(": 2853,
- ")": 2855,
- "}": 629,
- "//": 292,
- "///": 843,
- "mainpage": 1,
- "C": 6,
- "library": 14,
- "for": 98,
- "Broadcom": 3,
- "BCM": 14,
- "as": 28,
- "used": 17,
- "in": 165,
- "Raspberry": 6,
- "Pi": 5,
- "This": 19,
- "is": 102,
- "a": 157,
- "RPi": 17,
- ".": 16,
- "It": 7,
- "provides": 3,
- "access": 17,
- "to": 254,
- "GPIO": 87,
- "and": 118,
- "other": 17,
- "IO": 2,
- "functions": 19,
- "on": 55,
- "the": 541,
- "chip": 9,
- "allowing": 3,
- "pins": 40,
- "pin": 90,
- "IDE": 4,
- "plug": 3,
- "board": 2,
- "so": 2,
- "you": 29,
- "can": 21,
- "control": 17,
- "interface": 9,
- "with": 33,
- "various": 4,
- "external": 3,
- "devices.": 1,
- "reading": 3,
- "digital": 2,
- "inputs": 2,
- "setting": 2,
- "outputs": 1,
- "using": 11,
- "SPI": 44,
- "I2C": 29,
- "accessing": 2,
- "system": 9,
- "timers.": 1,
- "Pin": 65,
- "event": 3,
- "detection": 2,
- "supported": 3,
- "by": 53,
- "polling": 1,
- "interrupts": 1,
- "are": 36,
- "not": 29,
- "+": 70,
- "compatible": 1,
- "installs": 1,
- "header": 7,
- "file": 31,
- "non": 2,
- "-": 360,
- "shared": 2,
- "any": 23,
- "Linux": 2,
- "based": 4,
- "distro": 1,
- "but": 5,
- "clearly": 1,
- "no": 7,
- "use": 37,
- "except": 2,
- "or": 44,
- "another": 1,
- "The": 50,
- "version": 38,
- "of": 215,
- "package": 1,
- "that": 36,
- "this": 55,
- "documentation": 3,
- "refers": 1,
- "be": 35,
- "downloaded": 1,
- "from": 91,
- "http": 11,
- "//www.airspayce.com/mikem/bcm2835/bcm2835": 1,
- "tar.gz": 1,
- "You": 9,
- "find": 2,
- "latest": 2,
- "at": 20,
- "//www.airspayce.com/mikem/bcm2835": 1,
- "Several": 1,
- "example": 3,
- "programs": 4,
- "provided.": 1,
- "Based": 1,
- "data": 26,
- "//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,
- "Please": 4,
- "group": 23,
- "all": 11,
- "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,
- "has": 29,
- "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,
- "an": 23,
- "interrupt": 1,
- "handler": 1,
- "hitting": 1,
- "hard": 1,
- "loop": 2,
- "those": 3,
- "OSs.": 1,
- "If": 11,
- "must": 6,
- "friends": 2,
- "make": 6,
- "sure": 6,
- "disable": 2,
- "bcm2835_gpio_cler_len": 1,
- "after": 18,
- "use.": 1,
- "par": 9,
- "Installation": 1,
- "consists": 1,
- "single": 2,
- "which": 14,
- "will": 15,
- "installed": 1,
- "usual": 3,
- "places": 1,
- "install": 3,
- "code": 12,
- "#": 1,
- "download": 2,
- "say": 1,
- "bcm2835": 7,
- "xx.tar.gz": 2,
- "then": 15,
- "tar": 1,
- "zxvf": 1,
- "cd": 1,
- "xx": 2,
- "./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,
- "set": 18,
- "up": 18,
- "map": 3,
- "onto": 1,
- "address": 13,
- "starting": 1,
- "E000000.": 1,
- "Thus": 1,
- "advertised": 1,
- "manual": 8,
- "Ennnnnn": 1,
- "available": 6,
- "nnnnnn.": 1,
- "base": 6,
- "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,
- "number": 52,
- "_not_": 1,
- "number.": 1,
- "There": 1,
- "symbolic": 1,
- "definitions": 3,
- "each": 7,
- "should": 10,
- "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,
- "default": 14,
- "behaviour": 1,
- "order": 14,
- "support": 4,
- "SPI.": 1,
- "While": 1,
- "able": 2,
- "state": 22,
- "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,
- "%": 6,
- "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": 1,
- "Such": 1,
- "part": 1,
- "kernel": 4,
- "usually": 2,
- "subject": 1,
- "paging": 1,
- "swapping": 2,
- "while": 13,
- "does": 4,
- "things": 1,
- "besides": 1,
- "running": 1,
- "your": 12,
- "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,
- "return": 221,
- "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,
- "one": 73,
- "asked": 1,
- "for.": 1,
- "So": 1,
- "please": 2,
- "dont": 1,
- "request.": 1,
- "Arjan": 2,
- "reports": 1,
- "prevent": 4,
- "fragment": 2,
- "struct": 12,
- "sched_param": 1,
- "sp": 4,
- "memset": 3,
- "&": 161,
- "sizeof": 15,
- "sp.sched_priority": 1,
- "sched_get_priority_max": 1,
- "SCHED_FIFO": 2,
- "sched_setscheduler": 1,
- "mlockall": 1,
- "MCL_CURRENT": 1,
- "|": 19,
- "MCL_FUTURE": 1,
- "Open": 2,
- "Source": 2,
- "Licensing": 2,
- "GPL": 2,
- "appropriate": 7,
- "option": 1,
- "if": 316,
- "want": 5,
- "share": 2,
- "source": 12,
- "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,
- "open": 6,
- "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,
- "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,
- "only": 6,
- "specified.": 1,
- "Other": 1,
- "were": 1,
- "already": 1,
- "previously": 10,
- "enabled": 4,
- "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,
- "was": 6,
- "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,
- "s": 24,
- "doc": 1,
- "Also": 1,
- "added": 2,
- "define": 2,
- "passwrd": 1,
- "value": 50,
- "Gert": 1,
- "says": 1,
- "needed": 3,
- "change": 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,
- "New": 6,
- "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": 1,
- "instead.": 1,
- "errors": 1,
- "divider": 15,
- "frequencies": 2,
- "MHz": 14,
- "clock.": 6,
- "Ben": 1,
- "Simpson.": 1,
- "end": 23,
- "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,
- "previous": 6,
- "patch": 1,
- "since": 3,
- "don": 1,
- "t": 15,
- "seem": 1,
- "work": 1,
- "everywhere.": 1,
- "olly.": 1,
- "Patch": 2,
- "Dootson": 2,
- "close": 3,
- "/dev/mem": 4,
- "granted.": 1,
- "susceptible": 1,
- "bit": 19,
- "overruns.": 1,
- "courtesy": 1,
- "Jeremy": 1,
- "Mortis.": 1,
- "definition": 3,
- "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,
- "[": 276,
- "atched": 1,
- "his": 1,
- "submitted": 1,
- "high": 5,
- "load": 1,
- "processes.": 1,
- "Updated": 1,
- "distribution": 1,
- "location": 6,
- "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,
- "#ifndef": 28,
- "BCM2835_H": 3,
- "#define": 342,
- "#include": 121,
- "": 2,
- "defgroup": 7,
- "constants": 1,
- "Constants": 1,
- "passing": 1,
- "values": 3,
- "here": 1,
- "@": 14,
- "HIGH": 12,
- "true": 41,
- "volts": 2,
- "pin.": 21,
- "false": 45,
- "Speed": 1,
- "core": 1,
- "clock": 21,
- "core_clk": 1,
- "BCM2835_CORE_CLK_HZ": 1,
- "<": 250,
- "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,
- "uint32_t": 37,
- "*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,
- "block": 4,
- "BCM2835_BLOCK_SIZE": 1,
- "offsets": 2,
- "BCM2835_GPIO_BASE.": 1,
- "Offsets": 1,
- "into": 6,
- "bytes": 29,
- "per": 3,
- "Register": 1,
- "View": 1,
- "BCM2835_GPFSEL0": 1,
- "Function": 8,
- "Select": 49,
- "BCM2835_GPFSEL1": 1,
- "BCM2835_GPFSEL2": 1,
- "BCM2835_GPFSEL3": 1,
- "c": 72,
- "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,
- "brief": 12,
- "bcm2835PortFunction": 1,
- "Port": 1,
- "function": 19,
- "select": 9,
- "modes": 1,
- "bcm2835_gpio_fsel": 2,
- "typedef": 50,
- "enum": 17,
- "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,
- "A": 7,
- "<<": 29,
- "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,
- "current": 26,
- "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,
- "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,
- "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,
- "may": 9,
- "shown": 1,
- "have": 4,
- "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,
- "new": 13,
- "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": 1,
- "BCM2835_BSC_S_ERR": 1,
- "ACK": 1,
- "error": 2,
- "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,
- "size": 13,
- "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,
- "/": 15,
- "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,
- "x": 86,
- "#endif": 98,
- "#ifdef": 19,
- "__cplusplus": 12,
- "init": 2,
- "Library": 1,
- "management": 1,
- "intialise": 1,
- "Initialise": 1,
- "opening": 1,
- "getting": 1,
- "internal": 47,
- "device": 7,
- "call": 4,
- "successfully": 1,
- "before": 7,
- "bcm2835_set_debug": 2,
- "fails": 1,
- "returning": 1,
- "result": 2,
- "crashes": 1,
- "failures.": 1,
- "Prints": 1,
- "messages": 1,
- "stderr": 1,
- "case": 34,
- "errors.": 1,
- "successful": 2,
- "else": 50,
- "int": 192,
- "Close": 1,
- "deallocating": 1,
- "allocated": 2,
- "closing": 1,
- "Sets": 24,
- "debug": 6,
- "prevents": 1,
- "makes": 1,
- "print": 5,
- "out": 5,
- "what": 2,
- "would": 2,
- "do": 13,
- "rather": 2,
- "causes": 1,
- "normal": 1,
- "operation.": 2,
- "Call": 2,
- "param": 72,
- "]": 275,
- "level.": 3,
- "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,
- "sa": 30,
- "uint32_t*": 7,
- "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,
- "output": 21,
- "state.": 1,
- "given": 16,
- "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,
- "returns": 4,
- "either": 4,
- "Works": 1,
- "whether": 4,
- "output.": 1,
- "bcm2835_gpio_lev": 1,
- "Status.": 7,
- "Tests": 1,
- "detected": 7,
- "requested": 1,
- "flag": 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,
- "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,
- "CPU": 5,
- "until": 1,
- "up.": 1,
- "mercy": 2,
- "From": 2,
- "interval": 4,
- "req": 2,
- "exact": 2,
- "multiple": 2,
- "granularity": 2,
- "rounded": 2,
- "next": 9,
- "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,
- "unsigned": 22,
- "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,
- "uint64_t": 8,
- "required": 2,
- "bcm2835_gpio_write_mask": 1,
- "clocking": 1,
- "spi": 1,
- "let": 2,
- "device.": 2,
- "operations.": 4,
- "Forces": 2,
- "ALT0": 2,
- "funcitons": 1,
- "complete": 2,
- "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,
- "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,
- "long": 14,
- "tbuf": 4,
- "Buffer": 10,
- "send.": 5,
- "put": 1,
- "buffer": 9,
- "Number": 8,
- "send/received": 2,
- "char*": 24,
- "bcm2835_spi_transfernb.": 1,
- "replaces": 1,
- "transmitted": 1,
- "buffer.": 1,
- "buf": 14,
- "replace": 1,
- "contents": 3,
- "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,
- "course": 2,
- "nothing": 1,
- "driver": 1,
- "const": 170,
- "*": 177,
- "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,
- "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,
- "#pragma": 3,
- "": 4,
- "": 4,
- "": 2,
- "namespace": 32,
- "std": 52,
- "DEFAULT_DELIMITER": 1,
- "CsvStreamer": 5,
- "private": 16,
- "ofstream": 1,
- "File": 1,
- "stream": 6,
- "vector": 16,
- "row_buffer": 1,
- "stores": 3,
- "row": 12,
- "flushed/written": 1,
- "fields": 4,
- "columns": 2,
- "rows": 3,
- "records": 2,
- "including": 2,
- "delimiter": 2,
- "Delimiter": 1,
- "character": 10,
- "comma": 2,
- "string": 24,
- "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,
- "field": 5,
- "save_fields": 1,
- "save": 1,
- "writes": 2,
- "append": 8,
- "Appends": 5,
- "quoted": 1,
- "leading/trailing": 1,
- "spaces": 3,
- "trimmed": 1,
- "bool": 105,
- "Like": 1,
- "specify": 1,
- "trim": 2,
- "keep": 1,
- "float": 74,
- "double": 25,
- "writeln": 1,
- "Flushes": 1,
- "Saves": 1,
- "closes": 1,
- "field_count": 1,
- "Gets": 2,
- "row_count": 1,
- "": 1,
- "": 1,
- "": 2,
- "static": 262,
- "Env": 13,
- "*env_instance": 1,
- "NULL": 109,
- "*Env": 1,
- "instance": 4,
- "env_instance": 3,
- "QObject": 2,
- "QCoreApplication": 1,
- "parse": 3,
- "**envp": 1,
- "**env": 1,
- "**": 2,
- "QString": 20,
- "envvar": 2,
- "name": 25,
- "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,
- "ENV_H": 3,
- "": 1,
- "Q_OBJECT": 1,
- "*instance": 1,
- "Field": 2,
- "Free": 1,
- "Black": 1,
- "White": 1,
- "Illegal": 1,
- "Player": 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,
- "Used": 2,
- "tell": 1,
- "node": 1,
- "root": 1,
- "hasn": 1,
- "argument": 1,
- "list": 3,
- "operator": 10,
- "overload.": 1,
- "friend": 10,
- "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,
- "": 2,
- "main": 2,
- "cout": 2,
- "endl": 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,
- "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,
- "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,
- "i": 83,
- "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,
- "r": 36,
- "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,
- "e": 15,
- "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,
- "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,
- "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,
- "": 19,
- "fOk": 3,
- "*sig": 2,
- "ECDSA_do_sign": 1,
- "sig": 11,
- "nBitsR": 3,
- "BN_num_bits": 2,
- "nBitsS": 3,
- "&&": 24,
- "nRecId": 4,
- "<4;>": 1,
- "keyRec": 5,
- "1": 4,
- "GetPubKey": 5,
- "break": 34,
- "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,
- "BITCOIN_KEY_H": 2,
- "": 1,
- "": 1,
- "runtime_error": 2,
- "explicit": 4,
- "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,
- "||": 17,
- "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,
- "LIBCANIH": 2,
- "": 1,
- "": 1,
- "int64": 1,
- "//#define": 1,
- "DEBUG": 5,
- "dout": 2,
- "#else": 31,
- "cerr": 1,
- "libcanister": 2,
- "//the": 8,
- "canmem": 22,
- "object": 3,
- "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,
- "length": 10,
- "//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,
- "singleton": 2,
- "//contains": 2,
- "caninfo": 2,
- "path": 8,
- "//physical": 1,
- "internalname": 1,
- "//a": 1,
- "numfiles": 1,
- "files": 6,
- "//necessary": 1,
- "type": 7,
- "canfile": 7,
- "//this": 1,
- "holds": 2,
- "//canister": 1,
- "canister*": 1,
- "parent": 1,
- "//internal": 1,
- "id": 4,
- "//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,
- "readonly": 3,
- "//if": 1,
- "routines": 1,
- "anything": 1,
- "//maximum": 1,
- "//time": 1,
- "whatever": 1,
- "suits": 1,
- "application.": 1,
- "cachemax": 2,
- "cachecnt": 1,
- "//number": 1,
- "cache": 2,
- "modified": 3,
- "//both": 1,
- "initialize": 1,
- "fspath": 3,
- "//destroys": 1,
- "flushing": 1,
- "modded": 1,
- "//open": 1,
- "//does": 1,
- "exist": 2,
- "//close": 1,
- "flush": 1,
- "clean": 2,
- "//deletes": 1,
- "inside": 1,
- "delFile": 1,
- "//pulls": 1,
- "getFile": 1,
- "otherwise": 1,
- "overwrites": 1,
- "operation": 1,
- "succeeded": 2,
- "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,
- "just": 2,
- "internally": 1,
- "harm.": 1,
- "cacheclean": 1,
- "dFlush": 1,
- "Q_OS_LINUX": 2,
- "": 1,
- "#if": 52,
- "QT_VERSION": 1,
- "QT_VERSION_CHECK": 1,
- "#error": 9,
- "Something": 1,
- "wrong": 1,
- "setup.": 1,
- "report": 3,
- "mailing": 1,
- "argc": 2,
- "char**": 2,
- "argv": 2,
- "google_breakpad": 1,
- "ExceptionHandler": 1,
- "Utils": 4,
- "exceptionHandler": 2,
- "qInstallMsgHandler": 1,
- "messageHandler": 2,
- "QApplication": 1,
- "app": 1,
- "STATIC_BUILD": 1,
- "Q_INIT_RESOURCE": 2,
- "WebKit": 1,
- "InspectorBackendStub": 1,
- "app.setWindowIcon": 1,
- "QIcon": 1,
- "app.setApplicationName": 1,
- "app.setOrganizationName": 1,
- "app.setOrganizationDomain": 1,
- "app.setApplicationVersion": 1,
- "PHANTOMJS_VERSION_STRING": 1,
- "Phantom": 1,
- "phantom": 1,
- "phantom.execute": 1,
- "app.exec": 1,
- "phantom.returnValue": 1,
- "__OG_MATH_INL__": 2,
- "og": 1,
- "OG_INLINE": 41,
- "Math": 41,
- "Abs": 1,
- "MASK_SIGNED": 2,
- "y": 16,
- "Fabs": 1,
- "f": 104,
- "uInt": 1,
- "*pf": 1,
- "reinterpret_cast": 8,
- "": 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,
- "defined": 23,
- "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,
- "#elif": 7,
- "OG_ASM_GNU": 4,
- "__asm__": 4,
- "__volatile__": 4,
- "cast": 7,
- "why": 3,
- "did": 3,
- "static_cast": 11,
- "": 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,
- "*reinterpret_cast": 3,
- "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,
- "two": 2,
- "known": 1,
- "methods": 2,
- "moved": 1,
- "beginning": 1,
- "HigherPowerOfTwo": 4,
- "LowerPowerOfTwo": 2,
- "FloorPowerOfTwo": 1,
- "CeilPowerOfTwo": 1,
- "ClosestPowerOfTwo": 1,
- "Digits": 1,
- "digits": 6,
- "step": 3,
- "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": 2,
- "asm": 1,
- "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,
- "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,
- "Value": 24,
- "platform": 2,
- "dependent.": 1,
- "start_": 1,
- "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,
- "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,
- "inline": 39,
- "protobuf_AssignDescriptorsOnce": 4,
- "GoogleOnceInit": 1,
- "protobuf_RegisterTypes": 2,
- "InternalRegisterGeneratedMessage": 1,
- "default_instance": 3,
- "protobuf_ShutdownFile_protocol_2dbuffer_2eproto": 4,
- "delete": 6,
- "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,
- "_MSC_VER": 3,
- "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,
- "descriptor": 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,
- "switch": 3,
- "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,
- "#undef": 3,
- "SerializeWithCachedSizes": 2,
- "CodedOutputStream*": 2,
- "SERIALIZE": 2,
- "WriteString": 1,
- "unknown_fields": 7,
- ".empty": 3,
- "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,
- "": 12,
- "ReflectionOps": 1,
- "Merge": 1,
- "from._has_bits_": 1,
- "from.has_name": 1,
- "set_name": 7,
- "from.name": 1,
- "from.unknown_fields": 1,
- "CopyFrom": 5,
- "IsInitialized": 3,
- "Swap": 2,
- "swap": 3,
- "_unknown_fields_.Swap": 1,
- "Metadata": 3,
- "GetMetadata": 2,
- "metadata": 2,
- "metadata.descriptor": 1,
- "metadata.reflection": 1,
- "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,
- "virtual": 10,
- "*this": 1,
- "UnknownFieldSet": 2,
- "UnknownFieldSet*": 1,
- "GetCachedSize": 1,
- "clear_name": 2,
- "size_t": 5,
- "release_name": 2,
- "set_allocated_name": 2,
- "set_has_name": 7,
- "clear_has_name": 5,
- "mutable": 1,
- "u": 9,
- "*name_": 1,
- "assign": 3,
- "temp": 2,
- "SWIG": 2,
- "QSCICOMMAND_H": 2,
- "__APPLE__": 4,
- "": 1,
- "": 2,
- "": 1,
- "QsciScintilla": 7,
- "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,
- "QSCINTILLA_EXPORT": 2,
- "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,
- "LineUp": 1,
- "SCI_LINEUP": 1,
- "LineUpExtend": 1,
- "SCI_LINEUPEXTEND": 1,
- "LineUpRectExtend": 1,
- "SCI_LINEUPRECTEXTEND": 1,
- "LineScrollUp": 1,
- "SCI_LINESCROLLUP": 1,
- "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,
- "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,
- "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,
- "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,
- "whole": 2,
- "SelectAll": 1,
- "SCI_SELECTALL": 1,
- "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,
- "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,
- "Return": 3,
- "executed": 1,
- "instance.": 2,
- "scicmd": 2,
- "Execute": 1,
- "Binds": 2,
- "binding": 3,
- "removed.": 2,
- "invalid": 5,
- "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,
- "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,
- "headers": 3,
- "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,
- "because": 2,
- "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,
- "": 2,
- "Gui": 1,
- "rpc_init": 1,
- "rpc_server_loop": 1,
- "v8": 9,
- "Scanner": 16,
- "UnicodeCache*": 4,
- "unicode_cache": 3,
- "unicode_cache_": 10,
- "octal_pos_": 5,
- "Location": 14,
- "harmony_scoping_": 4,
- "harmony_modules_": 4,
- "Initialize": 4,
- "Utf16CharacterStream*": 3,
- "source_": 7,
- "Init": 3,
- "has_line_terminator_before_next_": 9,
- "SkipWhiteSpace": 4,
- "Scan": 5,
- "uc32": 19,
- "ScanHexNumber": 2,
- "expected_length": 4,
- "ASSERT": 17,
- "overflow": 1,
- "c0_": 64,
- "d": 8,
- "HexValue": 2,
- "j": 4,
- "PushBack": 8,
- "Advance": 44,
- "STATIC_ASSERT": 5,
- "Token": 212,
- "NUM_TOKENS": 1,
- "one_char_tokens": 2,
- "ILLEGAL": 120,
- "LPAREN": 2,
- "RPAREN": 2,
- "COMMA": 2,
- "COLON": 2,
- "SEMICOLON": 2,
- "CONDITIONAL": 2,
- "LBRACK": 2,
- "RBRACK": 2,
- "LBRACE": 2,
- "RBRACE": 2,
- "BIT_NOT": 2,
- "Next": 3,
- "current_": 2,
- "next_": 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,
- "undo": 4,
- "WHITESPACE": 6,
- "SkipMultiLineComment": 3,
- "ch": 5,
- "ScanHtmlComment": 3,
- "LT": 2,
- "next_.literal_chars": 13,
- "ScanString": 3,
- "LTE": 1,
- "ASSIGN_SHL": 1,
- "SHL": 1,
- "GTE": 1,
- "ASSIGN_SAR": 1,
- "ASSIGN_SHR": 1,
- "SHR": 1,
- "SAR": 1,
- "GT": 1,
- "EQ_STRICT": 1,
- "EQ": 1,
- "ASSIGN": 1,
- "NE_STRICT": 1,
- "NE": 1,
- "INC": 1,
- "ASSIGN_ADD": 1,
- "ADD": 1,
- "DEC": 1,
- "ASSIGN_SUB": 1,
- "SUB": 1,
- "ASSIGN_MUL": 1,
- "MUL": 1,
- "ASSIGN_MOD": 1,
- "MOD": 1,
- "ASSIGN_DIV": 1,
- "DIV": 1,
- "AND": 1,
- "ASSIGN_BIT_AND": 1,
- "BIT_AND": 1,
- "OR": 1,
- "ASSIGN_BIT_OR": 1,
- "BIT_OR": 1,
- "ASSIGN_BIT_XOR": 1,
- "BIT_XOR": 1,
- "IsDecimalDigit": 2,
- "ScanNumber": 3,
- "PERIOD": 1,
- "IsIdentifierStart": 2,
- "ScanIdentifierOrKeyword": 2,
- "EOS": 1,
- "SeekForward": 4,
- "current_pos": 4,
- "ASSERT_EQ": 1,
- "ScanEscape": 2,
- "IsCarriageReturn": 2,
- "IsLineFeed": 2,
- "fall": 2,
- "xxx": 1,
- "immediately": 1,
- "octal": 1,
- "escape": 1,
- "quote": 3,
- "consume": 2,
- "LiteralScope": 4,
- "literal": 2,
- "X": 2,
- "E": 3,
- "l": 1,
- "w": 1,
- "keyword": 1,
- "Unescaped": 1,
- "in_character_class": 2,
- "AddLiteralCharAdvance": 3,
- "literal.Complete": 2,
- "ScanLiteralUnicodeEscape": 3,
- "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,
- "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,
- "": 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*": 2,
- "self": 5,
- "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,
- "smallPrime_t": 1,
- "UTILS_H": 3,
- "": 1,
- "": 1,
- "": 1,
- "QTemporaryFile": 1,
- "showUsage": 1,
- "QtMsgType": 1,
- "dump_path": 1,
- "minidump_id": 1,
- "void*": 1,
- "context": 8,
- "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,
- "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,
- "Deserializer*": 2,
- "des": 3,
- "FlagList": 1,
- "EnforceFlagImplications": 1,
- "InitializeOncePerProcess": 4,
- "Isolate": 9,
- "CurrentPerIsolateThreadData": 4,
- "EnterDefaultIsolate": 1,
- "thread_id": 1,
- ".Equals": 1,
- "ThreadId": 1,
- "Current": 5,
- "isolate": 15,
- "IsDead": 2,
- "Isolate*": 6,
- "SetFatalError": 2,
- "TearDown": 5,
- "IsDefaultIsolate": 1,
- "ElementsAccessor": 2,
- "LOperand": 2,
- "TearDownCaches": 1,
- "RegisteredExtension": 1,
- "UnregisterAll": 1,
- "OS": 3,
- "seed_random": 2,
- "FLAG_random_seed": 2,
- "val": 3,
- "ScopedLock": 1,
- "lock": 1,
- "entropy_mutex.Pointer": 1,
- "random": 1,
- "random_base": 3,
- "xFFFF": 2,
- "FFFF": 1,
- "SetEntropySource": 2,
- "SetReturnAddressLocationResolver": 3,
- "ReturnAddressLocationResolver": 2,
- "resolver": 3,
- "StackFrame": 1,
- "Random": 3,
- "Context*": 4,
- "IsGlobalContext": 1,
- "ByteArray*": 1,
- "seed": 2,
- "random_seed": 1,
- "": 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,
- "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_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,
- "set_value": 1,
- "InitializeOncePerProcessImpl": 3,
- "SetUp": 4,
- "FLAG_crankshaft": 1,
- "Serializer": 1,
- "SupportsCrankshaft": 1,
- "PostSetUp": 1,
- "RuntimeProfiler": 1,
- "GlobalSetUp": 1,
- "FLAG_stress_compaction": 1,
- "FLAG_force_marking_deque_overflows": 1,
- "FLAG_gc_global": 1,
- "FLAG_max_new_space_size": 1,
- "kPageSizeBits": 1,
- "SetUpCaches": 1,
- "SetUpJSCallerSavedCodeData": 1,
- "SamplerRegistry": 1,
- "ExternalReference": 1,
- "CallOnce": 1,
- "V8_V8_H_": 3,
- "GOOGLE3": 2,
- "NDEBUG": 4,
- "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,
- "PY_SSIZE_T_CLEAN": 1,
- "Py_PYTHON_H": 1,
- "Python": 1,
- "compile": 1,
- "extensions": 1,
- "development": 1,
- "Python.": 1,
- "": 1,
- "offsetof": 2,
- "member": 2,
- "type*": 1,
- "WIN32": 2,
- "MS_WINDOWS": 2,
- "__stdcall": 2,
- "__cdecl": 2,
- "__fastcall": 2,
- "DL_IMPORT": 2,
- "DL_EXPORT": 2,
- "PY_LONG_LONG": 5,
- "LONG_LONG": 1,
- "PY_VERSION_HEX": 9,
- "METH_COEXIST": 1,
- "PyDict_CheckExact": 1,
- "op": 6,
- "Py_TYPE": 4,
- "PyDict_Type": 1,
- "PyDict_Contains": 1,
- "o": 20,
- "PySequence_Contains": 1,
- "Py_ssize_t": 17,
- "PY_SSIZE_T_MAX": 1,
- "INT_MAX": 1,
- "PY_SSIZE_T_MIN": 1,
- "INT_MIN": 1,
- "PY_FORMAT_SIZE_T": 1,
- "PyInt_FromSsize_t": 2,
- "z": 46,
- "PyInt_FromLong": 13,
- "PyInt_AsSsize_t": 2,
- "PyInt_AsLong": 2,
- "PyNumber_Index": 1,
- "PyNumber_Int": 1,
- "PyIndex_Check": 1,
- "PyNumber_Check": 1,
- "PyErr_WarnEx": 1,
- "category": 2,
- "message": 2,
- "stacklevel": 1,
- "PyErr_Warn": 1,
- "Py_REFCNT": 1,
- "ob": 6,
- "PyObject*": 16,
- "ob_refcnt": 1,
- "ob_type": 7,
- "Py_SIZE": 1,
- "PyVarObject*": 1,
- "ob_size": 1,
- "PyVarObject_HEAD_INIT": 1,
- "PyObject_HEAD_INIT": 1,
- "PyType_Modified": 1,
- "*buf": 1,
- "PyObject": 221,
- "*obj": 2,
- "itemsize": 2,
- "ndim": 2,
- "*format": 1,
- "*shape": 1,
- "*strides": 1,
- "*suboffsets": 1,
- "*internal": 1,
- "Py_buffer": 5,
- "PyBUF_SIMPLE": 1,
- "PyBUF_WRITABLE": 1,
- "PyBUF_FORMAT": 1,
- "PyBUF_ND": 2,
- "PyBUF_STRIDES": 5,
- "PyBUF_C_CONTIGUOUS": 3,
- "PyBUF_F_CONTIGUOUS": 3,
- "PyBUF_ANY_CONTIGUOUS": 1,
- "PyBUF_INDIRECT": 1,
- "PY_MAJOR_VERSION": 10,
- "__Pyx_BUILTIN_MODULE_NAME": 2,
- "Py_TPFLAGS_CHECKTYPES": 1,
- "Py_TPFLAGS_HAVE_INDEX": 1,
- "Py_TPFLAGS_HAVE_NEWBUFFER": 1,
- "PyBaseString_Type": 1,
- "PyUnicode_Type": 2,
- "PyStringObject": 2,
- "PyUnicodeObject": 1,
- "PyString_Type": 2,
- "PyString_Check": 2,
- "PyUnicode_Check": 1,
- "PyString_CheckExact": 2,
- "PyUnicode_CheckExact": 1,
- "PyBytesObject": 1,
- "PyBytes_Type": 1,
- "PyBytes_Check": 1,
- "PyBytes_CheckExact": 1,
- "PyBytes_FromString": 2,
- "PyString_FromString": 1,
- "PyBytes_FromStringAndSize": 1,
- "PyString_FromStringAndSize": 1,
- "PyBytes_FromFormat": 1,
- "PyString_FromFormat": 1,
- "PyBytes_DecodeEscape": 1,
- "PyString_DecodeEscape": 1,
- "PyBytes_AsString": 2,
- "PyString_AsString": 1,
- "PyBytes_AsStringAndSize": 1,
- "PyString_AsStringAndSize": 1,
- "PyBytes_Size": 1,
- "PyString_Size": 1,
- "PyBytes_AS_STRING": 1,
- "PyString_AS_STRING": 1,
- "PyBytes_GET_SIZE": 1,
- "PyString_GET_SIZE": 1,
- "PyBytes_Repr": 1,
- "PyString_Repr": 1,
- "PyBytes_Concat": 1,
- "PyString_Concat": 1,
- "PyBytes_ConcatAndDel": 1,
- "PyString_ConcatAndDel": 1,
- "PySet_Check": 1,
- "obj": 42,
- "PyObject_TypeCheck": 3,
- "PySet_Type": 2,
- "PyFrozenSet_Check": 1,
- "PyFrozenSet_Type": 1,
- "PySet_CheckExact": 2,
- "__Pyx_TypeCheck": 1,
- "PyTypeObject": 2,
- "PyIntObject": 1,
- "PyLongObject": 2,
- "PyInt_Type": 1,
- "PyLong_Type": 1,
- "PyInt_Check": 1,
- "PyLong_Check": 1,
- "PyInt_CheckExact": 1,
- "PyLong_CheckExact": 1,
- "PyInt_FromString": 1,
- "PyLong_FromString": 1,
- "PyInt_FromUnicode": 1,
- "PyLong_FromUnicode": 1,
- "PyLong_FromLong": 1,
- "PyInt_FromSize_t": 1,
- "PyLong_FromSize_t": 1,
- "PyLong_FromSsize_t": 1,
- "PyLong_AsLong": 1,
- "PyInt_AS_LONG": 1,
- "PyLong_AS_LONG": 1,
- "PyLong_AsSsize_t": 1,
- "PyInt_AsUnsignedLongMask": 1,
- "PyLong_AsUnsignedLongMask": 1,
- "PyInt_AsUnsignedLongLongMask": 1,
- "PyLong_AsUnsignedLongLongMask": 1,
- "PyBoolObject": 1,
- "__Pyx_PyNumber_Divide": 2,
- "PyNumber_TrueDivide": 1,
- "__Pyx_PyNumber_InPlaceDivide": 2,
- "PyNumber_InPlaceTrueDivide": 1,
- "PyNumber_Divide": 1,
- "PyNumber_InPlaceDivide": 1,
- "__Pyx_PySequence_GetSlice": 2,
- "PySequence_GetSlice": 2,
- "__Pyx_PySequence_SetSlice": 2,
- "PySequence_SetSlice": 2,
- "__Pyx_PySequence_DelSlice": 2,
- "PySequence_DelSlice": 2,
- "unlikely": 69,
- "PyErr_SetString": 4,
- "PyExc_SystemError": 3,
- "likely": 15,
- "tp_as_mapping": 3,
- "PyErr_Format": 4,
- "PyExc_TypeError": 5,
- "tp_name": 4,
- "PyMethod_New": 2,
- "func": 3,
- "klass": 1,
- "PyInstanceMethod_New": 1,
- "__Pyx_GetAttrString": 2,
- "PyObject_GetAttrString": 3,
- "__Pyx_SetAttrString": 2,
- "PyObject_SetAttrString": 2,
- "__Pyx_DelAttrString": 2,
- "PyObject_DelAttrString": 2,
- "__Pyx_NAMESTR": 3,
- "__Pyx_DOCSTR": 3,
- "__PYX_EXTERN_C": 2,
- "_USE_MATH_DEFINES": 1,
- "": 1,
- "__PYX_HAVE_API__wrapper_inner": 1,
- "PYREX_WITHOUT_ASSERTIONS": 1,
- "CYTHON_WITHOUT_ASSERTIONS": 1,
- "CYTHON_INLINE": 68,
- "__GNUC__": 5,
- "__inline__": 1,
- "__inline": 1,
- "__STDC_VERSION__": 2,
- "L": 1,
- "CYTHON_UNUSED": 7,
- "**p": 1,
- "*s": 1,
- "encoding": 1,
- "is_unicode": 1,
- "is_str": 1,
- "intern": 1,
- "__Pyx_StringTabEntry": 1,
- "__Pyx_PyBytes_FromUString": 1,
- "__Pyx_PyBytes_AsUString": 1,
- "__Pyx_PyBool_FromLong": 1,
- "Py_INCREF": 3,
- "Py_True": 2,
- "Py_False": 2,
- "__Pyx_PyObject_IsTrue": 8,
- "__Pyx_PyNumber_Int": 1,
- "__Pyx_PyIndex_AsSsize_t": 1,
- "__Pyx_PyInt_FromSize_t": 1,
- "__Pyx_PyInt_AsSize_t": 1,
- "__pyx_PyFloat_AsDouble": 3,
- "PyFloat_CheckExact": 1,
- "PyFloat_AS_DOUBLE": 1,
- "PyFloat_AsDouble": 1,
- "__GNUC_MINOR__": 1,
- "__builtin_expect": 2,
- "*__pyx_m": 1,
- "*__pyx_b": 1,
- "*__pyx_empty_tuple": 1,
- "*__pyx_empty_bytes": 1,
- "__pyx_lineno": 80,
- "__pyx_clineno": 80,
- "__pyx_cfilenm": 1,
- "__FILE__": 2,
- "*__pyx_filename": 1,
- "CYTHON_CCOMPLEX": 12,
- "_Complex_I": 3,
- "": 1,
- "": 1,
- "__sun__": 1,
- "fj": 1,
- "*__pyx_f": 1,
- "npy_int8": 1,
- "__pyx_t_5numpy_int8_t": 1,
- "npy_int16": 1,
- "__pyx_t_5numpy_int16_t": 1,
- "npy_int32": 1,
- "__pyx_t_5numpy_int32_t": 1,
- "npy_int64": 1,
- "__pyx_t_5numpy_int64_t": 1,
- "npy_uint8": 1,
- "__pyx_t_5numpy_uint8_t": 1,
- "npy_uint16": 1,
- "__pyx_t_5numpy_uint16_t": 1,
- "npy_uint32": 1,
- "__pyx_t_5numpy_uint32_t": 1,
- "npy_uint64": 1,
- "__pyx_t_5numpy_uint64_t": 1,
- "npy_float32": 1,
- "__pyx_t_5numpy_float32_t": 1,
- "npy_float64": 1,
- "__pyx_t_5numpy_float64_t": 1,
- "npy_long": 1,
- "__pyx_t_5numpy_int_t": 1,
- "npy_longlong": 1,
- "__pyx_t_5numpy_long_t": 1,
- "npy_intp": 10,
- "__pyx_t_5numpy_intp_t": 1,
- "npy_uintp": 1,
- "__pyx_t_5numpy_uintp_t": 1,
- "npy_ulong": 1,
- "__pyx_t_5numpy_uint_t": 1,
- "npy_ulonglong": 1,
- "__pyx_t_5numpy_ulong_t": 1,
- "npy_double": 2,
- "__pyx_t_5numpy_float_t": 1,
- "__pyx_t_5numpy_double_t": 1,
- "npy_longdouble": 1,
- "__pyx_t_5numpy_longdouble_t": 1,
- "complex": 2,
- "__pyx_t_float_complex": 27,
- "_Complex": 2,
- "imag": 2,
- "__pyx_t_double_complex": 27,
- "npy_cfloat": 1,
- "__pyx_t_5numpy_cfloat_t": 1,
- "npy_cdouble": 2,
- "__pyx_t_5numpy_cdouble_t": 1,
- "npy_clongdouble": 1,
- "__pyx_t_5numpy_clongdouble_t": 1,
- "__pyx_t_5numpy_complex_t": 1,
- "CYTHON_REFNANNY": 3,
- "__Pyx_RefNannyAPIStruct": 4,
- "*__Pyx_RefNanny": 1,
- "__Pyx_RefNannyImportAPI": 1,
- "*modname": 1,
- "*m": 1,
- "*p": 1,
- "*r": 1,
- "m": 4,
- "PyImport_ImportModule": 1,
- "modname": 1,
- "PyLong_AsVoidPtr": 1,
- "Py_XDECREF": 3,
- "__Pyx_RefNannySetupContext": 13,
- "*__pyx_refnanny": 1,
- "__Pyx_RefNanny": 6,
- "SetupContext": 1,
- "__LINE__": 84,
- "__Pyx_RefNannyFinishContext": 12,
- "FinishContext": 1,
- "__pyx_refnanny": 5,
- "__Pyx_INCREF": 36,
- "INCREF": 1,
- "__Pyx_DECREF": 66,
- "DECREF": 1,
- "__Pyx_GOTREF": 60,
- "GOTREF": 1,
- "__Pyx_GIVEREF": 10,
- "GIVEREF": 1,
- "__Pyx_XDECREF": 26,
- "Py_DECREF": 1,
- "__Pyx_XGIVEREF": 7,
- "__Pyx_XGOTREF": 1,
- "__Pyx_TypeTest": 4,
- "*type": 3,
- "*__Pyx_GetName": 1,
- "*dict": 1,
- "__Pyx_ErrRestore": 1,
- "*value": 2,
- "*tb": 2,
- "__Pyx_ErrFetch": 1,
- "**type": 1,
- "**value": 1,
- "**tb": 1,
- "__Pyx_Raise": 8,
- "__Pyx_RaiseNoneNotIterableError": 1,
- "__Pyx_RaiseNeedMoreValuesError": 1,
- "index": 2,
- "__Pyx_RaiseTooManyValuesError": 1,
- "expected": 1,
- "__Pyx_UnpackTupleError": 2,
- "*__Pyx_Import": 1,
- "*from_list": 1,
- "__Pyx_Print": 1,
- "__pyx_print": 1,
- "__pyx_print_kwargs": 1,
- "__Pyx_PrintOne": 4,
- "*o": 1,
- "*__Pyx_PyInt_to_py_Py_intptr_t": 1,
- "Py_intptr_t": 1,
- "__Pyx_CREAL": 4,
- ".real": 3,
- "__Pyx_CIMAG": 4,
- ".imag": 3,
- "__real__": 1,
- "__imag__": 1,
- "_WIN32": 1,
- "__Pyx_SET_CREAL": 2,
- "__Pyx_SET_CIMAG": 2,
- "__pyx_t_float_complex_from_parts": 1,
- "__Pyx_c_eqf": 2,
- "__Pyx_c_sumf": 2,
- "__Pyx_c_difff": 2,
- "__Pyx_c_prodf": 2,
- "__Pyx_c_quotf": 2,
- "__Pyx_c_negf": 2,
- "__Pyx_c_is_zerof": 3,
- "__Pyx_c_conjf": 3,
- "conj": 3,
- "__Pyx_c_absf": 3,
- "abs": 2,
- "__Pyx_c_powf": 3,
- "pow": 2,
- "conjf": 1,
- "cabsf": 1,
- "cpowf": 1,
- "__pyx_t_double_complex_from_parts": 1,
- "__Pyx_c_eq": 2,
- "__Pyx_c_sum": 2,
- "__Pyx_c_diff": 2,
- "__Pyx_c_prod": 2,
- "__Pyx_c_quot": 2,
- "__Pyx_c_neg": 2,
- "__Pyx_c_is_zero": 3,
- "__Pyx_c_conj": 3,
- "__Pyx_c_abs": 3,
- "__Pyx_c_pow": 3,
- "cabs": 1,
- "cpow": 1,
- "__Pyx_PyInt_AsUnsignedChar": 1,
- "__Pyx_PyInt_AsUnsignedShort": 1,
- "__Pyx_PyInt_AsUnsignedInt": 1,
- "__Pyx_PyInt_AsChar": 1,
- "__Pyx_PyInt_AsShort": 1,
- "__Pyx_PyInt_AsInt": 1,
- "signed": 5,
- "__Pyx_PyInt_AsSignedChar": 1,
- "__Pyx_PyInt_AsSignedShort": 1,
- "__Pyx_PyInt_AsSignedInt": 1,
- "__Pyx_PyInt_AsLongDouble": 1,
- "__Pyx_PyInt_AsUnsignedLong": 1,
- "__Pyx_PyInt_AsUnsignedLongLong": 1,
- "__Pyx_PyInt_AsLong": 1,
- "__Pyx_PyInt_AsLongLong": 1,
- "__Pyx_PyInt_AsSignedLong": 1,
- "__Pyx_PyInt_AsSignedLongLong": 1,
- "__Pyx_WriteUnraisable": 3,
- "__Pyx_ExportFunction": 1,
- "*__pyx_f_5numpy_PyArray_MultiIterNew2": 2,
- "*__pyx_f_5numpy_PyArray_MultiIterNew3": 2,
- "*__pyx_f_5numpy_PyArray_MultiIterNew4": 2,
- "*__pyx_f_5numpy_PyArray_MultiIterNew5": 2,
- "*__pyx_f_5numpy__util_dtypestring": 2,
- "PyArray_Descr": 6,
- "__pyx_f_5numpy_set_array_base": 1,
- "PyArrayObject": 19,
- "*__pyx_f_5numpy_get_array_base": 1,
- "inner_work_1d": 2,
- "inner_work_2d": 2,
- "__Pyx_MODULE_NAME": 1,
- "__pyx_module_is_main_wrapper_inner": 1,
- "*__pyx_builtin_ValueError": 1,
- "*__pyx_builtin_range": 1,
- "*__pyx_builtin_RuntimeError": 1,
- "__pyx_k_1": 1,
- "__pyx_k_2": 1,
- "__pyx_k_3": 1,
- "__pyx_k_5": 1,
- "__pyx_k_7": 1,
- "__pyx_k_9": 1,
- "__pyx_k_11": 1,
- "__pyx_k_12": 1,
- "__pyx_k_15": 1,
- "__pyx_k__B": 2,
- "__pyx_k__H": 2,
- "__pyx_k__I": 2,
- "__pyx_k__L": 2,
- "__pyx_k__O": 2,
- "__pyx_k__Q": 2,
- "__pyx_k__b": 2,
- "__pyx_k__d": 2,
- "__pyx_k__f": 2,
- "__pyx_k__g": 2,
- "__pyx_k__h": 2,
- "__pyx_k__i": 2,
- "__pyx_k__l": 2,
- "__pyx_k__q": 2,
- "__pyx_k__Zd": 2,
- "__pyx_k__Zf": 2,
- "__pyx_k__Zg": 2,
- "__pyx_k__np": 1,
- "__pyx_k__buf": 1,
- "__pyx_k__obj": 1,
- "__pyx_k__base": 1,
- "__pyx_k__ndim": 1,
- "__pyx_k__ones": 1,
- "__pyx_k__descr": 1,
- "__pyx_k__names": 1,
- "__pyx_k__numpy": 1,
- "__pyx_k__range": 1,
- "__pyx_k__shape": 1,
- "__pyx_k__fields": 1,
- "__pyx_k__format": 1,
- "__pyx_k__strides": 1,
- "__pyx_k____main__": 1,
- "__pyx_k____test__": 1,
- "__pyx_k__itemsize": 1,
- "__pyx_k__readonly": 1,
- "__pyx_k__type_num": 1,
- "__pyx_k__byteorder": 1,
- "__pyx_k__ValueError": 1,
- "__pyx_k__suboffsets": 1,
- "__pyx_k__work_module": 1,
- "__pyx_k__RuntimeError": 1,
- "__pyx_k__pure_py_test": 1,
- "__pyx_k__wrapper_inner": 1,
- "__pyx_k__do_awesome_work": 1,
- "*__pyx_kp_s_1": 1,
- "*__pyx_kp_u_11": 1,
- "*__pyx_kp_u_12": 1,
- "*__pyx_kp_u_15": 1,
- "*__pyx_kp_s_2": 1,
- "*__pyx_kp_s_3": 1,
- "*__pyx_kp_u_5": 1,
- "*__pyx_kp_u_7": 1,
- "*__pyx_kp_u_9": 1,
- "*__pyx_n_s__RuntimeError": 1,
- "*__pyx_n_s__ValueError": 1,
- "*__pyx_n_s____main__": 1,
- "*__pyx_n_s____test__": 1,
- "*__pyx_n_s__base": 1,
- "*__pyx_n_s__buf": 1,
- "*__pyx_n_s__byteorder": 1,
- "*__pyx_n_s__descr": 1,
- "*__pyx_n_s__do_awesome_work": 1,
- "*__pyx_n_s__fields": 1,
- "*__pyx_n_s__format": 1,
- "*__pyx_n_s__itemsize": 1,
- "*__pyx_n_s__names": 1,
- "*__pyx_n_s__ndim": 1,
- "*__pyx_n_s__np": 1,
- "*__pyx_n_s__numpy": 1,
- "*__pyx_n_s__obj": 1,
- "*__pyx_n_s__ones": 1,
- "*__pyx_n_s__pure_py_test": 1,
- "*__pyx_n_s__range": 1,
- "*__pyx_n_s__readonly": 1,
- "*__pyx_n_s__shape": 1,
- "*__pyx_n_s__strides": 1,
- "*__pyx_n_s__suboffsets": 1,
- "*__pyx_n_s__type_num": 1,
- "*__pyx_n_s__work_module": 1,
- "*__pyx_n_s__wrapper_inner": 1,
- "*__pyx_int_5": 1,
- "*__pyx_int_15": 1,
- "*__pyx_k_tuple_4": 1,
- "*__pyx_k_tuple_6": 1,
- "*__pyx_k_tuple_8": 1,
- "*__pyx_k_tuple_10": 1,
- "*__pyx_k_tuple_13": 1,
- "*__pyx_k_tuple_14": 1,
- "*__pyx_k_tuple_16": 1,
- "__pyx_v_num_x": 4,
- "*__pyx_v_data_ptr": 2,
- "*__pyx_v_answer_ptr": 2,
- "__pyx_v_nd": 6,
- "*__pyx_v_dims": 2,
- "__pyx_v_typenum": 6,
- "*__pyx_v_data_np": 2,
- "__pyx_v_sum": 6,
- "__pyx_t_1": 154,
- "*__pyx_t_2": 4,
- "*__pyx_t_3": 4,
- "*__pyx_t_4": 3,
- "__pyx_t_5": 75,
- "__pyx_kp_s_1": 1,
- "__pyx_filename": 79,
- "__pyx_f": 79,
- "__pyx_L1_error": 88,
- "__pyx_v_dims": 4,
- "NPY_DOUBLE": 3,
- "__pyx_t_2": 120,
- "PyArray_SimpleNewFromData": 2,
- "__pyx_v_data_ptr": 2,
- "Py_None": 38,
- "__pyx_ptype_5numpy_ndarray": 2,
- "__pyx_v_data_np": 10,
- "__Pyx_GetName": 4,
- "__pyx_m": 4,
- "__pyx_n_s__work_module": 3,
- "__pyx_t_3": 113,
- "PyObject_GetAttr": 4,
- "__pyx_n_s__do_awesome_work": 3,
- "PyTuple_New": 4,
- "PyTuple_SET_ITEM": 4,
- "__pyx_t_4": 35,
- "PyObject_Call": 11,
- "PyErr_Occurred": 2,
- "__pyx_v_answer_ptr": 2,
- "__pyx_L0": 24,
- "__pyx_v_num_y": 2,
- "__pyx_kp_s_2": 1,
- "*__pyx_pf_13wrapper_inner_pure_py_test": 2,
- "*__pyx_self": 2,
- "*unused": 2,
- "PyMethodDef": 1,
- "__pyx_mdef_13wrapper_inner_pure_py_test": 1,
- "PyCFunction": 1,
- "__pyx_pf_13wrapper_inner_pure_py_test": 1,
- "METH_NOARGS": 1,
- "*__pyx_v_data": 1,
- "*__pyx_r": 7,
- "*__pyx_t_1": 8,
- "__pyx_self": 2,
- "__pyx_v_data": 7,
- "__pyx_kp_s_3": 1,
- "__pyx_n_s__np": 1,
- "__pyx_n_s__ones": 1,
- "__pyx_k_tuple_4": 1,
- "__pyx_r": 39,
- "__Pyx_AddTraceback": 7,
- "__pyx_pf_5numpy_7ndarray___getbuffer__": 2,
- "*__pyx_v_self": 4,
- "*__pyx_v_info": 4,
- "__pyx_v_flags": 4,
- "__pyx_v_copy_shape": 5,
- "__pyx_v_i": 6,
- "__pyx_v_ndim": 6,
- "__pyx_v_endian_detector": 6,
- "__pyx_v_little_endian": 8,
- "__pyx_v_t": 29,
- "*__pyx_v_f": 2,
- "*__pyx_v_descr": 2,
- "__pyx_v_offset": 9,
- "__pyx_v_hasfields": 4,
- "__pyx_t_6": 40,
- "__pyx_t_7": 9,
- "*__pyx_t_8": 1,
- "*__pyx_t_9": 1,
- "__pyx_v_info": 33,
- "__pyx_v_self": 16,
- "PyArray_NDIM": 1,
- "__pyx_L5": 6,
- "PyArray_CHKFLAGS": 2,
- "NPY_C_CONTIGUOUS": 1,
- "__pyx_builtin_ValueError": 5,
- "__pyx_k_tuple_6": 1,
- "__pyx_L6": 6,
- "NPY_F_CONTIGUOUS": 1,
- "__pyx_k_tuple_8": 1,
- "__pyx_L7": 2,
- "PyArray_DATA": 1,
- "strides": 5,
- "malloc": 2,
- "shape": 3,
- "PyArray_STRIDES": 2,
- "PyArray_DIMS": 2,
- "__pyx_L8": 2,
- "suboffsets": 1,
- "PyArray_ITEMSIZE": 1,
- "PyArray_ISWRITEABLE": 1,
- "__pyx_v_f": 31,
- "descr": 2,
- "__pyx_v_descr": 10,
- "PyDataType_HASFIELDS": 2,
- "__pyx_L11": 7,
- "type_num": 2,
- "byteorder": 4,
- "__pyx_k_tuple_10": 1,
- "__pyx_L13": 2,
- "NPY_BYTE": 2,
- "__pyx_L14": 18,
- "NPY_UBYTE": 2,
- "NPY_SHORT": 2,
- "NPY_USHORT": 2,
- "NPY_INT": 2,
- "NPY_UINT": 2,
- "NPY_LONG": 1,
- "NPY_ULONG": 1,
- "NPY_LONGLONG": 1,
- "NPY_ULONGLONG": 1,
- "NPY_FLOAT": 1,
- "NPY_LONGDOUBLE": 1,
- "NPY_CFLOAT": 1,
- "NPY_CDOUBLE": 1,
- "NPY_CLONGDOUBLE": 1,
- "NPY_OBJECT": 1,
- "__pyx_t_8": 16,
- "PyNumber_Remainder": 1,
- "__pyx_kp_u_11": 1,
- "format": 6,
- "__pyx_L12": 2,
- "__pyx_t_9": 7,
- "__pyx_f_5numpy__util_dtypestring": 1,
- "__pyx_L2": 2,
- "__pyx_pf_5numpy_7ndarray_1__releasebuffer__": 2,
- "PyArray_HASFIELDS": 1,
- "*__pyx_f_5numpy_PyArray_MultiIterNew1": 1,
- "*__pyx_v_a": 5,
- "PyArray_MultiIterNew": 5,
- "__pyx_v_a": 5,
- "*__pyx_v_b": 4,
- "__pyx_v_b": 4,
- "*__pyx_v_c": 3,
- "__pyx_v_c": 3,
- "*__pyx_v_d": 2,
- "__pyx_v_d": 2,
- "*__pyx_v_e": 1,
- "__pyx_v_e": 1,
- "*__pyx_v_end": 1,
- "*__pyx_v_offset": 1,
- "*__pyx_v_child": 1,
- "*__pyx_v_fields": 1,
- "*__pyx_v_childname": 1,
- "*__pyx_v_new_offset": 1,
- "*__pyx_v_t": 1,
- "*__pyx_t_5": 1,
- "__pyx_t_10": 7,
- "*__pyx_t_11": 1,
- "__pyx_v_child": 8,
- "__pyx_v_fields": 7,
- "__pyx_v_childname": 4,
- "__pyx_v_new_offset": 5,
- "PyTuple_GET_SIZE": 2,
- "PyTuple_GET_ITEM": 3,
- "PyObject_GetItem": 1,
- "PyTuple_CheckExact": 1,
- "tuple": 3,
- "__pyx_ptype_5numpy_dtype": 1,
- "__pyx_v_end": 2,
- "PyNumber_Subtract": 2,
- "PyObject_RichCompare": 8,
- "__pyx_int_15": 1,
- "Py_LT": 2,
- "__pyx_builtin_RuntimeError": 2,
- "__pyx_k_tuple_13": 1,
- "__pyx_k_tuple_14": 1,
- "elsize": 1,
- "__pyx_k_tuple_16": 1,
- "__pyx_L10": 2,
- "Py_EQ": 6
- },
- "Ceylon": {
- "doc": 2,
- "by": 1,
- "shared": 5,
- "void": 1,
- "test": 1,
- "(": 4,
- ")": 4,
- "{": 3,
- "print": 1,
- ";": 4,
- "}": 3,
- "class": 1,
- "Test": 2,
- "name": 4,
- "satisfies": 1,
- "Comparable": 1,
- "": 1,
- "String": 2,
- "actual": 2,
- "string": 1,
- "Comparison": 1,
- "compare": 1,
- "other": 1,
- "return": 1,
- "<=>": 1,
- "other.name": 1
- },
- "Cirru": {
- "print": 38,
- "array": 14,
- "int": 36,
- "string": 7,
- "set": 12,
- "f": 3,
- "block": 1,
- "(": 20,
- "a": 22,
- "b": 7,
- "c": 9,
- ")": 20,
- "call": 1,
- "bool": 6,
- "true": 1,
- "false": 1,
- "yes": 1,
- "no": 1,
- "map": 8,
- "m": 3,
- "float": 1,
- "require": 1,
- "./stdio.cr": 1,
- "self": 2,
- "child": 1,
- "under": 2,
- "parent": 1,
- "get": 4,
- "x": 2,
- "just": 4,
- "-": 4,
- "code": 4,
- "eval": 2,
- "nothing": 1,
- "container": 3
- },
- "Clojure": {
- "(": 83,
- "defn": 4,
- "prime": 2,
- "[": 41,
- "n": 9,
- "]": 41,
- "not": 3,
- "-": 14,
- "any": 1,
- "zero": 1,
- "map": 2,
- "#": 1,
- "rem": 2,
- "%": 1,
- ")": 84,
- "range": 3,
- ";": 8,
- "while": 3,
- "stops": 1,
- "at": 1,
- "the": 1,
- "first": 2,
- "collection": 1,
- "element": 1,
- "that": 1,
- "evaluates": 1,
- "to": 1,
- "false": 2,
- "like": 1,
- "take": 1,
- "for": 2,
- "x": 6,
- "html": 1,
- "head": 1,
- "meta": 1,
- "{": 8,
- "charset": 1,
- "}": 8,
- "link": 1,
- "rel": 1,
- "href": 1,
- "script": 1,
- "src": 1,
- "body": 1,
- "div.nav": 1,
- "p": 1,
- "into": 2,
- "array": 3,
- "aseq": 8,
- "nil": 1,
- "type": 2,
- "let": 1,
- "count": 3,
- "a": 3,
- "make": 1,
- "loop": 1,
- "seq": 1,
- "i": 4,
- "if": 1,
- "<": 1,
- "do": 1,
- "aset": 1,
- "recur": 1,
- "next": 1,
- "inc": 1,
- "defprotocol": 1,
- "ISound": 4,
- "sound": 5,
- "deftype": 2,
- "Cat": 1,
- "_": 3,
- "Dog": 1,
- "extend": 1,
- "default": 1,
- "rand": 2,
- "scm*": 1,
- "random": 1,
- "real": 1,
- "clj": 1,
- "ns": 2,
- "c2.svg": 2,
- "use": 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,
- "require": 1,
- "c2.dom": 1,
- "as": 1,
- "dom": 1,
- "Stub": 1,
- "float": 2,
- "fn": 2,
- "which": 1,
- "does": 1,
- "exist": 1,
- "on": 1,
- "runtime": 1,
- "def": 1,
- "identity": 1,
- "xy": 1,
- "coordinates": 7,
- "cond": 1,
- "and": 1,
- "vector": 1,
- "y": 1,
- "deftest": 1,
- "function": 1,
- "tests": 1,
- "is": 7,
- "true": 2,
- "contains": 1,
- "foo": 6,
- "bar": 4,
- "select": 1,
- "keys": 2,
- "baz": 4,
- "vals": 1,
- "filter": 1
- },
- "COBOL": {
- "program": 1,
- "-": 19,
- "id.": 1,
- "hello.": 3,
- "procedure": 1,
- "division.": 1,
- "display": 1,
- ".": 3,
- "stop": 1,
- "run.": 1,
- "IDENTIFICATION": 2,
- "DIVISION.": 4,
- "PROGRAM": 2,
- "ID.": 2,
- "PROCEDURE": 2,
- "DISPLAY": 2,
- "STOP": 2,
- "RUN.": 2,
- "COBOL": 7,
- "TEST": 2,
- "RECORD.": 1,
- "USAGES.": 1,
- "COMP": 5,
- "PIC": 5,
- "S9": 4,
- "(": 5,
- ")": 5,
- "COMP.": 3,
- "COMP2": 2
- },
- "CoffeeScript": {
- "CoffeeScript": 1,
- "require": 21,
- "CoffeeScript.require": 1,
- "CoffeeScript.eval": 1,
- "(": 193,
- "code": 20,
- "options": 16,
- "{": 31,
- "}": 34,
- ")": 196,
- "-": 107,
- "options.bare": 2,
- "on": 3,
- "eval": 2,
- "CoffeeScript.compile": 2,
- "CoffeeScript.run": 3,
- "Function": 1,
- "return": 29,
- "unless": 19,
- "window": 1,
- "CoffeeScript.load": 2,
- "url": 2,
- "callback": 35,
- "xhr": 2,
- "new": 12,
- "window.ActiveXObject": 1,
- "or": 22,
- "XMLHttpRequest": 1,
- "xhr.open": 1,
- "true": 8,
- "xhr.overrideMimeType": 1,
- "if": 102,
- "of": 7,
- "xhr.onreadystatechange": 1,
- "xhr.readyState": 1,
- "is": 36,
- "xhr.status": 1,
- "in": 32,
- "[": 134,
- "]": 134,
- "xhr.responseText": 1,
- "else": 53,
- "throw": 3,
- "Error": 1,
- "xhr.send": 1,
- "null": 15,
- "runScripts": 3,
- "scripts": 2,
- "document.getElementsByTagName": 1,
- "coffees": 2,
- "s": 10,
- "for": 14,
- "when": 16,
- "s.type": 1,
- "index": 4,
- "length": 4,
- "coffees.length": 1,
- "do": 2,
- "execute": 3,
- "script": 7,
- "+": 31,
- ".type": 1,
- "script.src": 2,
- "script.innerHTML": 1,
- "window.addEventListener": 1,
- "addEventListener": 1,
- "no": 3,
- "attachEvent": 1,
- "class": 11,
- "Animal": 3,
- "constructor": 6,
- "@name": 2,
- "move": 3,
- "meters": 2,
- "alert": 4,
- "Snake": 2,
- "extends": 6,
- "super": 4,
- "Horse": 2,
- "sam": 1,
- "tom": 1,
- "sam.move": 1,
- "tom.move": 1,
- "#": 35,
- "fs": 2,
- "path": 3,
- "Lexer": 3,
- "RESERVED": 3,
- "parser": 1,
- "vm": 1,
- "require.extensions": 3,
- "module": 1,
- "filename": 6,
- "content": 4,
- "compile": 5,
- "fs.readFileSync": 1,
- "module._compile": 1,
- "require.registerExtension": 2,
- "exports.VERSION": 1,
- "exports.RESERVED": 1,
- "exports.helpers": 2,
- "exports.compile": 1,
- "merge": 1,
- "try": 3,
- "js": 5,
- "parser.parse": 3,
- "lexer.tokenize": 3,
- ".compile": 1,
- "options.header": 1,
- "catch": 2,
- "err": 20,
- "err.message": 2,
- "options.filename": 5,
- "header": 1,
- "exports.tokens": 1,
- "exports.nodes": 1,
- "source": 5,
- "typeof": 2,
- "exports.run": 1,
- "mainModule": 1,
- "require.main": 1,
- "mainModule.filename": 4,
- "process.argv": 1,
- "then": 24,
- "fs.realpathSync": 2,
- "mainModule.moduleCache": 1,
- "and": 20,
- "mainModule.paths": 1,
- "._nodeModulePaths": 1,
- "path.dirname": 2,
- "path.extname": 1,
- "isnt": 7,
- "mainModule._compile": 2,
- "exports.eval": 1,
- "code.trim": 1,
- "Script": 2,
- "vm.Script": 1,
- "options.sandbox": 4,
- "instanceof": 2,
- "Script.createContext": 2,
- ".constructor": 1,
- "sandbox": 8,
- "k": 4,
- "v": 4,
- "own": 2,
- "sandbox.global": 1,
- "sandbox.root": 1,
- "sandbox.GLOBAL": 1,
- "global": 3,
- "sandbox.__filename": 3,
- "||": 3,
- "sandbox.__dirname": 1,
- "sandbox.module": 2,
- "sandbox.require": 2,
- "Module": 2,
- "_module": 3,
- "options.modulename": 1,
- "_require": 2,
- "Module._load": 1,
- "_module.filename": 1,
- "r": 4,
- "Object.getOwnPropertyNames": 1,
- "_require.paths": 1,
- "_module.paths": 1,
- "Module._nodeModulePaths": 1,
- "process.cwd": 1,
- "_require.resolve": 1,
- "request": 2,
- "Module._resolveFilename": 1,
- "o": 4,
- "o.bare": 1,
- "ensure": 1,
- "value": 25,
- "vm.runInThisContext": 1,
- "vm.runInContext": 1,
- "lexer": 1,
- "parser.lexer": 1,
- "lex": 1,
- "tag": 33,
- "@yytext": 1,
- "@yylineno": 1,
- "@tokens": 7,
- "@pos": 2,
- "setInput": 1,
- "upcomingInput": 1,
- "parser.yy": 1,
- "console.log": 1,
- "number": 13,
- "opposite": 2,
- "square": 4,
- "x": 6,
- "*": 21,
- "list": 2,
- "math": 1,
- "root": 1,
- "Math.sqrt": 1,
- "cube": 1,
- "race": 1,
- "winner": 2,
- "runners...": 1,
- "print": 1,
- "runners": 1,
- "elvis": 1,
- "cubes": 1,
- "math.cube": 1,
- "num": 2,
- "Rewriter": 2,
- "INVERSES": 2,
- "count": 5,
- "starts": 1,
- "compact": 1,
- "last": 3,
- "exports.Lexer": 1,
- "tokenize": 1,
- "opts": 1,
- "WHITESPACE.test": 1,
- "code.replace": 1,
- "/": 44,
- "r/g": 1,
- ".replace": 3,
- "TRAILING_SPACES": 2,
- "@code": 1,
- "The": 7,
- "remainder": 1,
- "the": 4,
- "code.": 1,
- "@line": 4,
- "opts.line": 1,
- "current": 5,
- "line.": 1,
- "@indent": 3,
- "indentation": 3,
- "level.": 3,
- "@indebt": 1,
- "over": 1,
- "at": 2,
- "@outdebt": 1,
- "under": 1,
- "outdentation": 1,
- "@indents": 1,
- "stack": 4,
- "all": 1,
- "levels.": 1,
- "@ends": 1,
- "pairing": 1,
- "up": 1,
- "tokens.": 1,
- "Stream": 1,
- "parsed": 1,
- "tokens": 5,
- "form": 1,
- "line": 6,
- ".": 13,
- "i": 8,
- "while": 4,
- "@chunk": 9,
- "i..": 1,
- "@identifierToken": 1,
- "@commentToken": 1,
- "@whitespaceToken": 1,
- "@lineToken": 1,
- "@heredocToken": 1,
- "@stringToken": 1,
- "@numberToken": 1,
- "@regexToken": 1,
- "@jsToken": 1,
- "@literalToken": 1,
- "@closeIndentation": 1,
- "@error": 10,
- "@ends.pop": 1,
- "opts.rewrite": 1,
- "off": 1,
- ".rewrite": 1,
- "identifierToken": 1,
- "match": 23,
- "IDENTIFIER.exec": 1,
- "input": 1,
- "id": 16,
- "colon": 3,
- "@tag": 3,
- "@token": 12,
- "id.length": 1,
- "forcedIdentifier": 4,
- "prev": 17,
- "not": 4,
- "prev.spaced": 3,
- "JS_KEYWORDS": 1,
- "COFFEE_KEYWORDS": 1,
- "id.toUpperCase": 1,
- "LINE_BREAK": 2,
- "@seenFor": 4,
- "yes": 5,
- "UNARY": 4,
- "RELATION": 3,
- "@value": 1,
- "@tokens.pop": 1,
- "JS_FORBIDDEN": 1,
- "String": 1,
- "id.reserved": 1,
- "COFFEE_ALIAS_MAP": 1,
- "COFFEE_ALIASES": 1,
- "switch": 7,
- "input.length": 1,
- "numberToken": 1,
- "NUMBER.exec": 1,
- "BOX": 1,
- "/.test": 4,
- "/E/.test": 1,
- "x/.test": 1,
- "d*": 1,
- "d": 2,
- "lexedLength": 2,
- "number.length": 1,
- "octalLiteral": 2,
- "/.exec": 2,
- "parseInt": 5,
- ".toString": 3,
- "binaryLiteral": 2,
- "b": 1,
- "stringToken": 1,
- "@chunk.charAt": 3,
- "SIMPLESTR.exec": 1,
- "string": 9,
- "MULTILINER": 2,
- "@balancedString": 1,
- "<": 6,
- "string.indexOf": 1,
- "@interpolateString": 2,
- "@escapeLines": 1,
- "octalEsc": 1,
- "|": 21,
- "string.length": 1,
- "heredocToken": 1,
- "HEREDOC.exec": 1,
- "heredoc": 4,
- "quote": 5,
- "heredoc.charAt": 1,
- "doc": 11,
- "@sanitizeHeredoc": 2,
- "indent": 7,
- "<=>": 1,
- "indexOf": 1,
- "interpolateString": 1,
- "token": 1,
- "STRING": 2,
- "makeString": 1,
- "n": 16,
- "Matches": 1,
- "consumes": 1,
- "comments": 1,
- "commentToken": 1,
- "@chunk.match": 1,
- "COMMENT": 2,
- "comment": 2,
- "here": 3,
- "herecomment": 4,
- "Array": 1,
- ".join": 2,
- "comment.length": 1,
- "jsToken": 1,
- "JSTOKEN.exec": 1,
- "script.length": 1,
- "regexToken": 1,
- "HEREGEX.exec": 1,
- "@heregexToken": 1,
- "NOT_REGEX": 2,
- "NOT_SPACED_REGEX": 2,
- "REGEX.exec": 1,
- "regex": 5,
- "flags": 2,
- "..1": 1,
- "match.length": 1,
- "heregexToken": 1,
- "heregex": 1,
- "body": 2,
- "body.indexOf": 1,
- "re": 1,
- "body.replace": 1,
- "HEREGEX_OMIT": 3,
- "//g": 1,
- "re.match": 1,
- "*/": 2,
- "heregex.length": 1,
- "@tokens.push": 1,
- "tokens.push": 1,
- "value...": 1,
- "continue": 3,
- "value.replace": 2,
- "/g": 3,
- "spaced": 1,
- "reserved": 1,
- "word": 1,
- "value.length": 2,
- "MATH": 3,
- "COMPARE": 3,
- "COMPOUND_ASSIGN": 2,
- "SHIFT": 3,
- "LOGIC": 3,
- ".spaced": 1,
- "CALLABLE": 2,
- "INDEXABLE": 2,
- "@ends.push": 1,
- "@pair": 1,
- "sanitizeHeredoc": 1,
- "HEREDOC_ILLEGAL.test": 1,
- "doc.indexOf": 1,
- "HEREDOC_INDENT.exec": 1,
- "attempt": 2,
- "attempt.length": 1,
- "indent.length": 1,
- "doc.replace": 2,
- "///": 12,
- "///g": 1,
- "n/": 1,
- "tagParameters": 1,
- "this": 6,
- "tokens.length": 1,
- "tok": 5,
- "stack.push": 1,
- "stack.length": 1,
- "stack.pop": 2,
- "closeIndentation": 1,
- "@outdentToken": 1,
- "balancedString": 1,
- "str": 1,
- "end": 2,
- "continueCount": 3,
- "str.length": 1,
- "letter": 1,
- "str.charAt": 1,
- "missing": 1,
- "starting": 1,
- "Hello": 1,
- "name.capitalize": 1,
- "OUTDENT": 1,
- "THROW": 1,
- "EXTENDS": 1,
- "&": 4,
- "false": 4,
- "delete": 1,
- "break": 1,
- "debugger": 1,
- "finally": 2,
- "undefined": 1,
- "until": 1,
- "loop": 1,
- "by": 1,
- "&&": 1,
- "case": 1,
- "default": 1,
- "function": 2,
- "var": 1,
- "void": 1,
- "with": 1,
- "const": 1,
- "let": 2,
- "enum": 1,
- "export": 1,
- "import": 1,
- "native": 1,
- "__hasProp": 1,
- "__extends": 1,
- "__slice": 1,
- "__bind": 1,
- "__indexOf": 1,
- "implements": 1,
- "interface": 1,
- "package": 1,
- "private": 1,
- "protected": 1,
- "public": 1,
- "static": 1,
- "yield": 1,
- "arguments": 1,
- "S": 10,
- "OPERATOR": 1,
- "%": 1,
- "compound": 1,
- "assign": 1,
- "compare": 1,
- "zero": 1,
- "fill": 1,
- "right": 1,
- "shift": 2,
- "doubles": 1,
- "logic": 1,
- "soak": 1,
- "access": 1,
- "range": 1,
- "splat": 1,
- "WHITESPACE": 1,
- "###": 3,
- "s*#": 1,
- "##": 1,
- ".*": 1,
- "CODE": 1,
- "MULTI_DENT": 1,
- "SIMPLESTR": 1,
- "JSTOKEN": 1,
- "REGEX": 1,
- "disallow": 1,
- "leading": 1,
- "whitespace": 1,
- "equals": 1,
- "signs": 1,
- "every": 1,
- "other": 1,
- "thing": 1,
- "anything": 1,
- "escaped": 1,
- "character": 1,
- "imgy": 2,
- "w": 2,
- "HEREGEX": 1,
- "#.*": 1,
- "n/g": 1,
- "HEREDOC_INDENT": 1,
- "HEREDOC_ILLEGAL": 1,
- "//": 1,
- "LINE_CONTINUER": 1,
- "s*": 1,
- "BOOL": 1,
- "NOT_REGEX.concat": 1,
- "CALLABLE.concat": 1,
- "async": 1,
- "nack": 1,
- "bufferLines": 3,
- "pause": 2,
- "sourceScriptEnv": 3,
- "join": 8,
- "exists": 5,
- "basename": 2,
- "resolve": 2,
- "module.exports": 1,
- "RackApplication": 1,
- "@configuration": 1,
- "@root": 8,
- "@firstHost": 1,
- "@logger": 1,
- "@configuration.getLogger": 1,
- "@readyCallbacks": 3,
- "@quitCallbacks": 3,
- "@statCallbacks": 3,
- "ready": 1,
- "@state": 11,
- "@readyCallbacks.push": 1,
- "@initialize": 2,
- "quit": 1,
- "@quitCallbacks.push": 1,
- "@terminate": 2,
- "queryRestartFile": 1,
- "fs.stat": 1,
- "stats": 1,
- "@mtime": 5,
- "lastMtime": 2,
- "stats.mtime.getTime": 1,
- "setPoolRunOnceFlag": 1,
- "@statCallbacks.length": 1,
- "alwaysRestart": 2,
- "@pool.runOnce": 1,
- "statCallback": 2,
- "@statCallbacks.push": 1,
- "loadScriptEnvironment": 1,
- "env": 18,
- "async.reduce": 1,
- "scriptExists": 2,
- "loadRvmEnvironment": 1,
- "rvmrcExists": 2,
- "rvm": 1,
- "@configuration.rvmPath": 1,
- "rvmExists": 2,
- "libexecPath": 1,
- "before": 2,
- ".trim": 1,
- "loadEnvironment": 1,
- "@queryRestartFile": 2,
- "@loadScriptEnvironment": 1,
- "@configuration.env": 1,
- "@loadRvmEnvironment": 1,
- "initialize": 1,
- "@quit": 3,
- "@loadEnvironment": 1,
- "@logger.error": 3,
- "@pool": 2,
- "nack.createPool": 1,
- "size": 1,
- ".POW_WORKERS": 1,
- "@configuration.workers": 1,
- "idle": 1,
- ".POW_TIMEOUT": 1,
- "@configuration.timeout": 1,
- "@pool.stdout": 1,
- "@logger.info": 1,
- "@pool.stderr": 1,
- "@logger.warning": 1,
- "@pool.on": 2,
- "process": 2,
- "@logger.debug": 2,
- "readyCallback": 2,
- "terminate": 1,
- "@ready": 3,
- "@pool.quit": 1,
- "quitCallback": 2,
- "handle": 1,
- "req": 4,
- "res": 3,
- "next": 3,
- "resume": 2,
- "@setPoolRunOnceFlag": 1,
- "@restartIfNecessary": 1,
- "req.proxyMetaVariables": 1,
- "SERVER_PORT": 1,
- "@configuration.dstPort.toString": 1,
- "@pool.proxy": 1,
- "restart": 1,
- "restartIfNecessary": 1,
- "mtimeChanged": 2,
- "@restart": 1,
- "writeRvmBoilerplate": 1,
- "powrc": 3,
- "boilerplate": 2,
- "@constructor.rvmBoilerplate": 1,
- "fs.readFile": 1,
- "contents": 2,
- "contents.indexOf": 1,
- "fs.writeFile": 1,
- "@rvmBoilerplate": 1,
- "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,
- "ip.split": 1,
- "<<": 1,
- "PATTERN": 1,
- "exports.decode": 1,
- "PATTERN.test": 1,
- "ip.push": 1,
- "xFF": 1,
- "ip.join": 1
- },
- "Common Lisp": {
- ";": 10,
- "-": 10,
- "*": 2,
- "lisp": 1,
- "(": 14,
- "in": 1,
- "package": 1,
- "foo": 2,
- ")": 14,
- "Header": 1,
- "comment.": 4,
- "defvar": 1,
- "*foo*": 1,
- "eval": 1,
- "when": 1,
- "execute": 1,
- "compile": 1,
- "toplevel": 2,
- "load": 1,
- "defun": 1,
- "add": 1,
+ "OpenCL": {
+ "double": 3,
+ "run_fftw": 1,
+ "(": 18,
+ "int": 3,
+ "n": 4,
+ "const": 4,
+ "float": 3,
+ "*": 5,
"x": 5,
- "&": 3,
- "optional": 1,
- "y": 2,
- "key": 1,
- "z": 2,
- "declare": 1,
- "ignore": 1,
- "Inline": 1,
- "+": 2,
- "or": 1,
- "#": 2,
- "|": 2,
- "Multi": 1,
- "line": 2,
- "defmacro": 1,
- "body": 1,
- "b": 1,
- "if": 1,
- "After": 1
- },
- "Coq": {
- "Inductive": 41,
- "day": 9,
- "Type": 86,
- "|": 457,
- "monday": 5,
- "tuesday": 3,
- "wednesday": 3,
- "thursday": 3,
- "friday": 3,
- "saturday": 3,
- "sunday": 2,
- "day.": 1,
- "Definition": 46,
- "next_weekday": 3,
- "(": 1248,
- "d": 6,
- ")": 1249,
- "match": 70,
- "with": 223,
- "end.": 52,
- "Example": 37,
- "test_next_weekday": 1,
- "tuesday.": 1,
- "Proof.": 208,
- "simpl.": 70,
- "reflexivity.": 199,
- "Qed.": 194,
- "bool": 38,
- "true": 68,
- "false": 48,
- "bool.": 1,
- "negb": 10,
- "b": 89,
- "andb": 8,
- "b1": 35,
- "b2": 23,
- "orb": 8,
- "test_orb1": 1,
- "true.": 16,
- "test_orb2": 1,
- "false.": 12,
- "test_orb3": 1,
- "test_orb4": 1,
- "nandb": 5,
- "end": 16,
- "test_nandb1": 1,
- "test_nandb2": 1,
- "test_nandb3": 1,
- "test_nandb4": 1,
- "andb3": 5,
- "b3": 2,
- "test_andb31": 1,
- "test_andb32": 1,
- "test_andb33": 1,
- "test_andb34": 1,
- "Module": 11,
- "Playground1.": 5,
- "nat": 108,
- "O": 98,
- "S": 186,
- "-": 508,
- "nat.": 4,
- "pred": 3,
- "n": 369,
- "minustwo": 1,
- "Fixpoint": 36,
- "evenb": 5,
- "oddb": 5,
- ".": 433,
- "test_oddb1": 1,
- "test_oddb2": 1,
- "plus": 10,
- "m": 201,
- "mult": 3,
- "minus": 3,
- "_": 67,
- "exp": 2,
- "base": 3,
- "power": 2,
- "p": 81,
- "factorial": 2,
- "test_factorial1": 1,
- "Notation": 39,
- "x": 266,
- "y": 116,
- "at": 17,
- "level": 11,
- "left": 6,
- "associativity": 7,
- "nat_scope.": 3,
- "beq_nat": 24,
- "forall": 248,
- "+": 227,
- "n.": 44,
- "Theorem": 115,
- "plus_O_n": 1,
- "intros": 258,
- "plus_1_1": 1,
- "mult_0_1": 1,
- "*": 59,
- "O.": 5,
- "plus_id_example": 1,
- "m.": 21,
- "H.": 100,
- "rewrite": 241,
- "plus_id_exercise": 1,
- "o": 25,
- "o.": 4,
- "H": 76,
- "mult_0_plus": 1,
- "plus_O_n.": 1,
- "mult_1_plus": 1,
- "plus_1_1.": 1,
- "mult_1": 1,
- "induction": 81,
- "as": 77,
- "[": 170,
- "plus_1_neq_0": 1,
- "destruct": 94,
- "]": 173,
- "Case": 51,
- "IHn": 12,
- "plus_comm": 3,
- "plus_distr.": 1,
- "beq_nat_refl": 3,
- "plus_rearrange": 1,
- "q": 15,
- "q.": 2,
- "assert": 68,
- "plus_comm.": 3,
- "plus_swap": 2,
- "p.": 9,
- "plus_assoc.": 4,
- "H2": 12,
- "H2.": 20,
- "plus_swap.": 2,
- "<->": 31,
- "IHm": 2,
- "reflexivity": 16,
- "Qed": 23,
- "mult_comm": 2,
- "Proof": 12,
- "0": 5,
- "simpl": 116,
- "mult_0_r.": 4,
- "mult_distr": 1,
- "mult_1_distr.": 1,
- "mult_1.": 1,
- "bad": 1,
- "zero_nbeq_S": 1,
- "andb_false_r": 1,
- "plus_ble_compat_1": 1,
- "ble_nat": 6,
- "IHp.": 2,
- "S_nbeq_0": 1,
- "mult_1_1": 1,
- "plus_0_r.": 1,
- "all3_spec": 1,
- "c": 70,
- "c.": 5,
- "b.": 14,
- "Lemma": 51,
- "mult_plus_1": 1,
- "IHm.": 1,
- "mult_mult": 1,
- "IHn.": 3,
- "mult_plus_1.": 1,
- "mult_plus_distr_r": 1,
- "mult_mult.": 3,
- "H1": 18,
- "plus_assoc": 1,
- "H1.": 31,
- "H3": 4,
- "H3.": 5,
- "mult_assoc": 1,
- "mult_plus_distr_r.": 1,
- "bin": 9,
- "BO": 4,
- "D": 9,
- "M": 4,
- "bin.": 1,
- "incbin": 2,
- "bin2un": 3,
- "bin_comm": 1,
- "End": 15,
- "Require": 17,
- "Import": 11,
- "List": 2,
- "Multiset": 2,
- "PermutSetoid": 1,
- "Relations": 2,
- "Sorting.": 1,
- "Section": 4,
- "defs.": 2,
- "Variable": 7,
- "A": 113,
- "Type.": 3,
- "leA": 25,
- "relation": 19,
- "A.": 6,
- "eqA": 29,
- "Let": 8,
- "gtA": 1,
- "y.": 15,
- "Hypothesis": 7,
- "leA_dec": 4,
- "{": 39,
- "}": 35,
- "eqA_dec": 26,
- "leA_refl": 1,
- "leA_trans": 2,
- "z": 14,
- "z.": 6,
- "leA_antisym": 1,
- "Hint": 9,
- "Resolve": 5,
- "leA_refl.": 1,
- "Immediate": 1,
- "leA_antisym.": 1,
- "emptyBag": 4,
- "EmptyBag": 2,
- "singletonBag": 10,
- "SingletonBag": 2,
- "eqA_dec.": 2,
- "Tree": 24,
- "Tree_Leaf": 9,
- "Tree_Node": 11,
- "Tree.": 1,
- "leA_Tree": 16,
- "a": 207,
- "t": 93,
- "True": 1,
- "T1": 25,
- "T2": 20,
- "leA_Tree_Leaf": 5,
- "Tree_Leaf.": 1,
- ";": 375,
- "auto": 73,
- "datatypes.": 47,
- "leA_Tree_Node": 1,
- "G": 6,
- "is_heap": 18,
- "Prop": 17,
- "nil_is_heap": 5,
- "node_is_heap": 7,
- "invert_heap": 3,
- "/": 41,
- "T2.": 1,
- "inversion": 104,
- "is_heap_rect": 1,
- "P": 32,
- "T": 49,
- "T.": 9,
- "simple": 7,
- "PG": 2,
- "PD": 2,
- "PN.": 2,
- "elim": 21,
- "H4": 7,
- "intros.": 27,
- "apply": 340,
- "X0": 2,
- "is_heap_rec": 1,
- "Set": 4,
- "X": 191,
- "low_trans": 3,
- "merge_lem": 3,
- "l1": 89,
- "l2": 73,
- "list": 78,
- "merge_exist": 5,
- "l": 379,
- "Sorted": 5,
- "meq": 15,
- "list_contents": 30,
- "munion": 18,
- "HdRel": 4,
- "l2.": 8,
- "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,
- "l1.": 5,
- "rename": 2,
- "into": 2,
- "l.": 26,
- "revert": 5,
- "H0.": 24,
- "a0": 15,
- "l0": 7,
- "Sorted_inv": 2,
- "in": 221,
- "H0": 16,
- "clear": 7,
- "merge0.": 2,
- "using": 18,
- "cons_sort": 2,
- "cons_leA": 2,
- "munion_ass.": 2,
- "cons_leA.": 2,
- "@HdRel_inv": 2,
- "trivial": 15,
- "merge0": 1,
- "setoid_rewrite": 2,
- "munion_ass": 1,
- "munion_comm.": 2,
- "repeat": 11,
- "munion_comm": 1,
- "contents": 12,
- "multiset": 2,
- "t1": 48,
- "t2": 51,
- "equiv_Tree": 1,
- "insert_spec": 3,
- "insert_exist": 4,
- "insert": 2,
- "unfold": 58,
- "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": 46,
- "exact": 4,
- "nil_is_heap.": 1,
- "i": 11,
- "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,
- "exists": 60,
- "Export": 10,
- "SfLib.": 2,
- "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,
- "a2": 62,
- "test_aeval1": 1,
- "beval": 16,
- "optimize_0plus": 15,
- "e2": 54,
- "e1": 58,
- "test_optimize_0plus": 1,
- "optimize_0plus_sound": 4,
- "e.": 15,
- "e1.": 1,
- "SCase": 24,
- "SSCase": 3,
- "IHe2.": 10,
- "IHe1.": 11,
- "aexp_cases": 3,
- "try": 17,
- "IHe1": 6,
- "IHe2": 6,
- "optimize_0plus_all": 2,
- "Tactic": 9,
- "tactic": 9,
- "first": 18,
- "ident": 9,
- "Case_aux": 38,
- "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,
- "where": 6,
- "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,
- "subst": 7,
- "generalize": 13,
- "dependent": 6,
- "IHa1": 1,
- "IHa2": 1,
- "beval_iff_bevalR": 1,
- "*.": 110,
- "subst.": 43,
- "IHbevalR": 1,
- "IHbevalR1": 1,
- "IHbevalR2": 1,
- "a.": 6,
- "constructor.": 16,
- "<": 76,
- "remember": 12,
- "IHa.": 1,
- "IHa1.": 1,
- "IHa2.": 1,
- "silly_presburger_formula": 1,
- "<=>": 12,
- "3": 2,
- "omega": 7,
- "Id": 7,
- "id": 7,
- "id.": 1,
- "beq_id": 14,
- "id1": 2,
- "id2": 2,
- "beq_id_refl": 1,
- "i.": 2,
- "beq_nat_refl.": 1,
- "beq_id_eq": 4,
- "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,
- "not_eq_beq_false.": 1,
- "beq_nat_sym": 2,
- "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,
- "if": 10,
- "st1": 2,
- "IHi1": 3,
- "Heqst1": 1,
- "Hceval.": 4,
- "Hceval": 2,
- "assumption.": 61,
- "bval": 2,
- "ceval_step": 3,
- "Some": 21,
- "ceval_step_more": 7,
- "x1.": 3,
- "omega.": 7,
- "x2.": 2,
- "IHHce.": 2,
- "%": 3,
- "IHHce1.": 1,
- "IHHce2.": 1,
- "x0": 14,
- "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,
- "noWhilesSKIP.": 1,
- "noWhilesAss.": 1,
- "noWhilesSeq.": 1,
- "IHc1.": 2,
- "auto.": 47,
- "eauto": 10,
- "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": 11,
- "r.": 3,
- "symmetry": 4,
- "Heqr.": 1,
- "H4.": 2,
- "s": 13,
- "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,
- "cons": 26,
- "al": 3,
- "bl": 3,
- "s_execute1": 1,
- "empty_state": 2,
- "s_execute2": 1,
- "s_compile": 36,
- "v": 28,
- "s_compile1": 1,
- "execute_theorem": 1,
- "other": 20,
- "other.": 4,
- "app_ass.": 6,
- "s_compile_correct": 1,
- "app_nil_end.": 1,
- "execute_theorem.": 1,
- "Eqdep_dec.": 1,
- "Arith.": 2,
- "eq_rect_eq_nat": 2,
- "Q": 3,
- "eq_rect": 3,
- "h.": 1,
- "K_dec_set": 1,
- "eq_nat_dec.": 1,
- "Scheme": 1,
- "le_ind": 1,
- "replace": 4,
- "le_n": 4,
- "fun": 17,
- "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,
- "Hmn": 1,
- "interval_dec": 1,
- "left.": 3,
- "dep_pair_intro.": 3,
- "right.": 9,
- "discriminate": 3,
- "le_Sn_le": 2,
- "eq_S.": 1,
- "Hneq.": 2,
- "card_inj_aux": 1,
- "g": 6,
- "False.": 1,
- "Hfbound": 1,
- "Hfinj": 1,
- "Hgsurj.": 1,
- "Hgsurj": 3,
- "Hfx": 2,
- "le_n_O_eq.": 2,
- "Hfbound.": 2,
- "Hx.": 5,
- "le_lt_dec": 9,
- "xSn": 21,
- "then": 9,
- "else": 9,
- "is": 4,
- "bounded": 1,
- "injective": 6,
- "Hlefx": 1,
- "Hgefx": 1,
- "Hlefy": 1,
- "Hgefy": 1,
- "Hfinj.": 3,
- "sym_not_eq.": 2,
- "Heqf.": 2,
- "Hneqy.": 2,
- "le_lt_trans": 2,
- "le_O_n.": 2,
- "le_neq_lt": 2,
- "Hneqx.": 2,
- "pred_inj.": 1,
- "lt_O_neq": 2,
- "neq_dep_intro": 2,
- "inj_restrict": 1,
- "Heqf": 1,
- "surjective": 1,
- "Hlep.": 3,
- "Hle": 1,
- "Hlt": 3,
- "Hfsurj": 2,
- "le_n_S": 1,
- "Hlep": 4,
- "Hneq": 7,
- "Heqx.": 2,
- "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,
- "Hdec": 3,
- "Heqy": 1,
- "Hginj": 1,
- "HSnx.": 1,
- "HSnx": 1,
- "interval_discr": 1,
- "<=m}>": 1,
- "card_inj": 1,
- "interval_dec.": 1,
- "card_interval.": 2,
- "Basics.": 2,
- "NatList.": 2,
- "natprod": 5,
- "pair": 7,
- "natprod.": 1,
- "fst": 3,
- "snd": 3,
- "swap_pair": 1,
- "surjective_pairing": 1,
- "count": 7,
- "remove_one": 3,
- "test_remove_one1": 1,
- "remove_all": 2,
- "bag": 3,
- "app_ass": 1,
- "l3": 12,
- "natlist": 7,
- "l3.": 1,
- "remove_decreases_count": 1,
- "s.": 4,
- "ble_n_Sn.": 1,
- "IHs.": 2,
- "natoption": 5,
- "None": 9,
- "natoption.": 1,
- "index": 3,
- "option_elim": 2,
- "hd_opt": 8,
- "test_hd_opt1": 2,
- "None.": 2,
- "test_hd_opt2": 2,
- "option_elim_hd": 1,
- "head": 1,
- "beq_natlist": 5,
- "v1": 7,
- "r1": 2,
- "v2": 2,
- "r2": 2,
- "test_beq_natlist1": 1,
- "test_beq_natlist2": 1,
- "beq_natlist_refl": 1,
- "IHl.": 7,
- "silly1": 1,
- "eq1": 6,
- "eq2.": 9,
- "eq2": 1,
- "silly2a": 1,
- "eq1.": 5,
- "silly_ex": 1,
- "silly3": 1,
- "symmetry.": 2,
- "rev_exercise": 1,
- "rev_involutive.": 1,
- "Setoid": 1,
- "Compare_dec": 1,
- "ListNotations.": 1,
- "Implicit": 15,
- "Arguments.": 2,
- "Permutation.": 2,
- "Permutation": 38,
- "perm_nil": 1,
- "perm_skip": 1,
- "Local": 7,
- "Constructors": 3,
- "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,
- "eapply": 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,
- "IHl": 8,
- "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,
- "rev": 7,
- "1": 1,
- "@rev": 1,
- "2": 1,
- "Permutation_length": 2,
- "length": 21,
- "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,
- "P.": 5,
- "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,
- "map": 4,
- "x.": 3,
- "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,
- "split": 14,
- "nat_bijection_Permutation": 1,
- "BD.": 1,
- "seq_NoDup.": 1,
- "map_length.": 1,
- "Injection": 1,
- "Permutation_alt": 1,
- "Alternative": 1,
- "characterization": 1,
- "of": 4,
- "via": 1,
- "nth_error": 7,
- "and": 1,
- "nth": 2,
- "adapt": 4,
- "adapt_injective": 1,
- "adapt.": 2,
- "EQ.": 2,
- "LE": 11,
- "LT": 14,
- "eq_add_S": 2,
- "Hf.": 1,
- "Lt.le_lt_or_eq": 3,
- "LE.": 3,
- "EQ": 8,
- "lt": 3,
- "LT.": 5,
- "Lt.S_pred": 3,
- "Lt.lt_not_le": 2,
- "adapt_ok": 2,
- "nth_error_app1": 1,
- "nth_error_app2": 1,
- "arith.": 8,
- "Minus.minus_Sn_m": 1,
- "Permutation_nth_error": 2,
- "IHP": 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,
- "nil.": 2,
- "..": 4,
- "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,
- "Lists.": 1,
- "X.": 4,
- "app": 5,
- "snoc": 9,
- "Arguments": 11,
- "list123": 1,
- "right": 2,
- "test_repeat1": 1,
- "nil_app": 1,
- "rev_snoc": 1,
- "snoc_with_append": 1,
- "v.": 1,
- "IHl1.": 1,
- "prod": 3,
- "Y.": 1,
- "type_scope.": 1,
- "combine": 3,
- "lx": 4,
- "ly": 4,
- "tx": 2,
- "ty": 7,
- "tp": 2,
- "option": 6,
- "xs": 7,
- "plus3": 2,
- "prod_curry": 3,
- "prod_uncurry": 3,
- "uncurry_uncurry": 1,
- "curry_uncurry": 1,
- "filter": 3,
- "test": 4,
- "countoddmembers": 1,
- "k": 7,
- "fmostlytrue": 5,
- "override": 5,
- "ftrue": 1,
- "override_example1": 1,
- "override_example2": 1,
- "override_example3": 1,
- "override_example4": 1,
- "override_example": 1,
- "constfun": 1,
- "unfold_example_bad": 1,
- "plus3.": 1,
- "override_eq": 1,
- "f.": 1,
- "override.": 2,
- "override_neq": 1,
- "x2": 3,
- "k1": 5,
- "k2": 4,
- "eq.": 11,
- "silly4": 1,
- "silly5": 1,
- "sillyex1": 1,
- "j": 6,
- "j.": 1,
- "silly6": 1,
- "silly7": 1,
- "sillyex2": 1,
- "assertion": 3,
- "Hl.": 1,
- "eq": 4,
- "beq_nat_O_l": 1,
- "beq_nat_O_r": 1,
- "double_injective": 1,
- "double": 2,
- "fold_map": 2,
- "fold": 1,
- "total": 2,
- "fold_map_correct": 1,
- "fold_map.": 1,
- "forallb": 4,
- "existsb": 3,
- "existsb2": 2,
- "existsb_correct": 1,
- "existsb2.": 1,
- "index_okx": 1,
- "mumble": 5,
- "mumble.": 1,
- "grumble": 3,
- "Logic.": 1,
- "Prop.": 1,
- "partial_function": 6,
- "R": 54,
- "y1": 6,
- "y2": 5,
- "y2.": 3,
- "next_nat_partial_function": 1,
- "next_nat.": 1,
- "partial_function.": 5,
- "Q.": 2,
- "le_not_a_partial_function": 1,
- "le": 1,
- "not.": 3,
- "Nonsense.": 4,
- "le_n.": 6,
- "le_S.": 4,
- "total_relation_not_partial_function": 1,
- "total_relation": 1,
- "total_relation1.": 2,
- "empty_relation_not_partial_funcion": 1,
- "empty_relation.": 1,
- "reflexive": 5,
- "le_reflexive": 1,
- "le.": 4,
- "reflexive.": 1,
- "transitive": 8,
- "le_trans": 4,
- "Hnm": 3,
- "Hmo.": 4,
- "Hnm.": 3,
- "IHHmo.": 1,
- "lt.": 2,
- "transitive.": 1,
- "Hm": 1,
- "le_S_n": 2,
- "Sn_le_Sm__n_le_m.": 1,
- "not": 1,
- "TODO": 1,
- "Hmo": 1,
- "symmetric": 2,
- "antisymmetric": 3,
- "le_antisymmetric": 1,
- "Sn_le_Sm__n_le_m": 2,
- "IHb": 1,
- "equivalence": 1,
- "order": 2,
- "preorder": 1,
- "le_order": 1,
- "order.": 1,
- "le_reflexive.": 1,
- "le_antisymmetric.": 1,
- "le_trans.": 1,
- "clos_refl_trans": 8,
- "rt_step": 1,
- "rt_refl": 1,
- "rt_trans": 3,
- "next_nat_closure_is_le": 1,
- "next_nat": 1,
- "rt_refl.": 2,
- "IHle.": 1,
- "rt_step.": 2,
- "nn.": 1,
- "IHclos_refl_trans1.": 2,
- "IHclos_refl_trans2.": 2,
- "refl_step_closure": 11,
- "rsc_refl": 1,
- "rsc_step": 4,
- "rsc_R": 2,
- "rsc_refl.": 4,
- "rsc_trans": 4,
- "IHrefl_step_closure": 1,
- "rtc_rsc_coincide": 1,
- "IHrefl_step_closure.": 1,
- "Imp.": 1,
- "Relations.": 1,
- "tm": 43,
- "tm_const": 45,
- "tm_plus": 30,
- "tm.": 3,
- "SimpleArith0.": 2,
- "eval": 8,
- "SimpleArith1.": 2,
- "E_Const": 2,
- "E_Plus": 2,
- "test_step_1": 1,
- "ST_Plus1.": 2,
- "ST_PlusConstConst.": 3,
- "test_step_2": 1,
- "ST_Plus2.": 2,
- "step_deterministic": 1,
- "step.": 3,
- "Hy1": 2,
- "Hy2.": 2,
- "step_cases": 4,
- "Hy2": 3,
- "SCase.": 3,
- "Hy1.": 5,
- "IHHy1": 2,
- "SimpleArith2.": 1,
- "value": 25,
- "v_const": 4,
- "step": 9,
- "ST_PlusConstConst": 3,
- "ST_Plus1": 2,
- "strong_progress": 2,
- "value_not_same_as_normal_form": 2,
- "normal_form": 3,
- "t.": 4,
- "normal_form.": 2,
- "v_funny.": 1,
- "Temp1.": 1,
- "Temp2.": 1,
- "ST_Funny": 1,
- "Temp3.": 1,
- "Temp4.": 2,
- "tm_true": 8,
- "tm_false": 5,
- "tm_if": 10,
- "v_true": 1,
- "v_false": 1,
- "tm_false.": 3,
- "ST_IfTrue": 1,
- "ST_IfFalse": 1,
- "ST_If": 1,
- "t3": 6,
- "bool_step_prop4": 1,
- "bool_step_prop4_holds": 1,
- "bool_step_prop4.": 2,
- "ST_ShortCut.": 1,
- "IHt1.": 1,
- "t2.": 4,
- "t3.": 2,
- "ST_If.": 2,
- "Temp5.": 1,
- "stepmany": 4,
- "normalizing": 1,
- "IHt2": 3,
- "H11": 2,
- "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,
- "Sorted.": 1,
- "Mergesort.": 1,
- "STLC.": 1,
- "ty_Bool": 10,
- "ty_arrow": 7,
- "ty.": 2,
- "tm_var": 6,
- "tm_app": 7,
- "tm_abs": 9,
- "idB": 2,
- "idBB": 2,
- "idBBBB": 2,
- "v_abs": 1,
- "t_true": 1,
- "t_false": 1,
- "value.": 1,
- "ST_App2": 1,
- "step_example3": 1,
- "idB.": 1,
- "rsc_step.": 2,
- "ST_App1.": 2,
- "ST_AppAbs.": 3,
- "v_abs.": 2,
- "context": 1,
- "partial_map": 4,
- "Context.": 1,
- "empty": 3,
- "extend": 1,
- "Gamma": 10,
- "has_type": 4,
- "appears_free_in": 1,
- "S.": 1,
- "HT": 1,
- "T_Var.": 1,
- "extend_neq": 1,
- "Heqe.": 3,
- "T_Abs.": 1,
- "context_invariance...": 2,
- "Hafi.": 2,
- "extend.": 2,
- "IHt.": 1,
- "Coiso1.": 2,
- "Coiso2.": 3,
- "HeqCoiso1.": 1,
- "HeqCoiso2.": 1,
- "beq_id_false_not_eq.": 1,
- "ex_falso_quodlibet.": 1,
- "preservation": 1,
- "HT.": 1,
- "substitution_preserves_typing": 1,
- "T11.": 4,
- "HT1.": 1,
- "T_App": 2,
- "IHHT1.": 1,
- "IHHT2.": 1,
- "tm_cases": 1,
- "Ht": 1,
- "Ht.": 3,
- "IHt1": 2,
- "T11": 2,
- "ST_App2.": 1,
- "ty_Bool.": 1,
- "IHt3": 1,
- "ST_IfTrue.": 1,
- "ST_IfFalse.": 1,
- "types_unique": 1,
- "T12": 2,
- "IHhas_type.": 1,
- "IHhas_type1.": 1,
- "IHhas_type2.": 1
- },
- "Creole": {
- "Creole": 6,
- "is": 3,
- "a": 2,
- "-": 5,
- "to": 2,
- "HTML": 1,
- "converter": 2,
+ "y": 4,
+ ")": 18,
+ "{": 4,
+ "fftwf_plan": 1,
+ "p1": 3,
+ "fftwf_plan_dft_1d": 1,
+ "fftwf_complex": 2,
+ "FFTW_FORWARD": 1,
+ "FFTW_ESTIMATE": 1,
+ ";": 12,
+ "nops": 3,
+ "t": 4,
+ "cl": 2,
+ "realTime": 2,
"for": 1,
- "the": 5,
- "lightweight": 1,
- "markup": 1,
- "language": 1,
- "(": 5,
- "http": 4,
- "//wikicreole.org/": 1,
- ")": 5,
- ".": 1,
- "Github": 1,
- "uses": 1,
- "this": 1,
- "render": 1,
- "*.creole": 1,
- "files.": 1,
- "Project": 1,
- "page": 1,
- "on": 2,
- "github": 1,
- "*": 5,
- "//github.com/minad/creole": 1,
- "Travis": 1,
- "CI": 1,
- "https": 1,
- "//travis": 1,
- "ci.org/minad/creole": 1,
- "RDOC": 1,
- "//rdoc.info/projects/minad/creole": 1,
- "INSTALLATION": 1,
- "{": 6,
- "gem": 1,
- "install": 1,
- "creole": 1,
- "}": 6,
- "SYNOPSIS": 1,
- "require": 1,
- "html": 1,
- "Creole.creolize": 1,
- "BUGS": 1,
- "If": 1,
- "you": 1,
- "found": 1,
- "bug": 1,
- "please": 1,
- "report": 1,
- "it": 1,
- "at": 1,
- "project": 1,
- "s": 1,
- "tracker": 1,
- "GitHub": 1,
- "//github.com/minad/creole/issues": 1,
- "AUTHORS": 1,
- "Lars": 2,
- "Christensen": 2,
- "larsch": 1,
- "Daniel": 2,
- "Mendler": 1,
- "minad": 1,
- "LICENSE": 1,
- "Copyright": 1,
- "c": 1,
- "Mendler.": 1,
- "It": 1,
- "free": 1,
- "software": 1,
- "and": 1,
- "may": 1,
- "be": 1,
- "redistributed": 1,
- "under": 1,
- "terms": 1,
- "specified": 1,
- "in": 1,
- "README": 1,
- "file": 1,
- "of": 1,
- "Ruby": 1,
- "distribution.": 1
- },
- "CSS": {
- ".clearfix": 8,
- "{": 1661,
- "*zoom": 48,
- ";": 4219,
- "}": 1705,
- "before": 48,
- "after": 96,
- "display": 135,
- "table": 44,
- "content": 66,
- "line": 97,
- "-": 8839,
- "height": 141,
- "clear": 32,
- "both": 30,
- ".hide": 12,
- "text": 129,
- "font": 142,
- "/0": 2,
- "a": 268,
- "color": 711,
- "transparent": 148,
- "shadow": 254,
- "none": 128,
- "background": 770,
- "border": 912,
- ".input": 216,
- "block": 133,
- "level": 2,
- "width": 215,
- "%": 366,
- "min": 14,
- "px": 2535,
- "webkit": 364,
- "box": 264,
- "sizing": 27,
- "moz": 316,
- "article": 2,
- "aside": 2,
- "details": 2,
- "figcaption": 2,
- "figure": 2,
- "footer": 2,
- "header": 12,
- "hgroup": 2,
- "nav": 2,
- "section": 2,
- "audio": 4,
- "canvas": 2,
- "video": 4,
- "inline": 116,
- "*display": 20,
- "not": 6,
- "(": 748,
- "[": 384,
- "controls": 2,
- "]": 384,
- ")": 748,
- "html": 4,
- "size": 104,
- "adjust": 6,
- "ms": 13,
- "focus": 232,
- "outline": 30,
- "thin": 8,
- "dotted": 10,
- "#333": 6,
- "auto": 50,
- "ring": 6,
- "offset": 6,
- "hover": 144,
- "active": 46,
- "sub": 4,
- "sup": 4,
- "position": 342,
- "relative": 18,
- "vertical": 56,
- "align": 72,
- "baseline": 4,
- "top": 376,
- "em": 6,
- "bottom": 309,
- "img": 14,
- "max": 18,
- "middle": 20,
- "interpolation": 2,
- "mode": 2,
- "bicubic": 2,
- "#map_canvas": 2,
- ".google": 2,
- "maps": 2,
- "button": 18,
- "input": 336,
- "select": 90,
- "textarea": 76,
- "margin": 424,
- "*overflow": 3,
- "visible": 8,
- "normal": 18,
- "inner": 37,
- "padding": 174,
- "type": 174,
- "appearance": 6,
- "cursor": 30,
- "pointer": 12,
- "label": 20,
- "textfield": 2,
- "search": 66,
- "decoration": 33,
- "cancel": 2,
- "overflow": 21,
- "@media": 2,
- "print": 4,
- "*": 2,
- "important": 18,
- "#000": 2,
- "visited": 2,
- "underline": 6,
- "href": 28,
- "attr": 4,
- "abbr": 6,
- "title": 10,
- ".ir": 2,
- "pre": 16,
- "blockquote": 14,
- "solid": 93,
- "#999": 6,
- "page": 6,
- "break": 12,
- "inside": 4,
- "avoid": 6,
- "thead": 38,
- "group": 120,
- "tr": 92,
- "@page": 2,
- "cm": 2,
- "p": 14,
- "h2": 14,
- "h3": 14,
- "orphans": 2,
- "widows": 2,
- "body": 3,
- "family": 10,
- "Helvetica": 6,
- "Arial": 6,
- "sans": 6,
- "serif": 6,
- "#333333": 26,
- "#ffffff": 136,
- "#0088cc": 24,
- "#005580": 8,
- ".img": 6,
- "rounded": 2,
- "radius": 534,
- "polaroid": 2,
- "#fff": 10,
- "#ccc": 13,
- "rgba": 409,
- "circle": 18,
- ".row": 126,
- "left": 489,
- "class*": 100,
- "float": 84,
- ".container": 32,
- ".navbar": 332,
- "static": 14,
- "fixed": 36,
- ".span12": 4,
- ".span11": 4,
- ".span10": 4,
- ".span9": 4,
- ".span8": 4,
- ".span7": 4,
- ".span6": 4,
- ".span5": 4,
- ".span4": 4,
- ".span3": 4,
- ".span2": 4,
- ".span1": 4,
- ".offset12": 6,
- ".offset11": 6,
- ".offset10": 6,
- ".offset9": 6,
- ".offset8": 6,
- ".offset7": 6,
- ".offset6": 6,
- ".offset5": 6,
- ".offset4": 6,
- ".offset3": 6,
- ".offset2": 6,
- ".offset1": 6,
- "fluid": 126,
- "*margin": 70,
- "first": 179,
- "child": 301,
- ".controls": 28,
- "row": 20,
- "+": 105,
- "*width": 26,
- ".pull": 16,
- "right": 258,
- ".lead": 2,
- "weight": 28,
- "small": 66,
- "strong": 2,
- "bold": 14,
- "style": 21,
- "italic": 4,
- "cite": 2,
- ".muted": 2,
- "#999999": 50,
- "a.muted": 4,
- "#808080": 2,
- ".text": 14,
- "warning": 33,
- "#c09853": 14,
- "a.text": 16,
- "#a47e3c": 4,
- "error": 10,
- "#b94a48": 20,
- "#953b39": 6,
- "info": 37,
- "#3a87ad": 18,
- "#2d6987": 6,
- "success": 35,
- "#468847": 18,
- "#356635": 6,
- "center": 17,
- "h1": 11,
- "h4": 20,
- "h5": 6,
- "h6": 6,
- "inherit": 8,
- "rendering": 2,
- "optimizelegibility": 2,
- ".page": 2,
- "#eeeeee": 31,
- "ul": 84,
- "ol": 10,
- "li": 205,
- "ul.unstyled": 2,
- "ol.unstyled": 2,
- "list": 44,
- "ul.inline": 4,
- "ol.inline": 4,
- "dl": 2,
- "dt": 6,
- "dd": 6,
- ".dl": 12,
- "horizontal": 60,
- "hidden": 9,
- "ellipsis": 2,
- "white": 25,
- "space": 23,
- "nowrap": 14,
- "hr": 2,
- "data": 2,
- "original": 2,
- "help": 2,
- "abbr.initialism": 2,
- "transform": 4,
- "uppercase": 4,
- "blockquote.pull": 10,
- "q": 4,
- "address": 2,
- "code": 6,
- "Monaco": 2,
- "Menlo": 2,
- "Consolas": 2,
- "monospace": 2,
- "#d14": 2,
- "#f7f7f9": 2,
- "#e1e1e8": 2,
- "word": 6,
- "all": 10,
- "wrap": 6,
- "#f5f5f5": 26,
- "pre.prettyprint": 2,
- ".pre": 2,
- "scrollable": 2,
- "y": 2,
- "scroll": 2,
- ".label": 30,
- ".badge": 30,
- "empty": 7,
- "a.label": 4,
- "a.badge": 4,
- "#f89406": 27,
- "#c67605": 4,
- "inverse": 110,
- "#1a1a1a": 2,
- ".btn": 506,
- "mini": 34,
- "collapse": 12,
- "spacing": 3,
- ".table": 180,
- "th": 70,
- "td": 66,
- "#dddddd": 16,
- "caption": 18,
- "colgroup": 18,
- "tbody": 68,
- "condensed": 4,
- "bordered": 76,
- "separate": 4,
- "*border": 8,
- "topleft": 16,
- "last": 118,
- "topright": 16,
- "tfoot": 12,
- "bottomleft": 16,
- "bottomright": 16,
- "striped": 13,
- "nth": 4,
- "odd": 4,
- "#f9f9f9": 12,
- "cell": 2,
- "td.span1": 2,
- "th.span1": 2,
- "td.span2": 2,
- "th.span2": 2,
- "td.span3": 2,
- "th.span3": 2,
- "td.span4": 2,
- "th.span4": 2,
- "td.span5": 2,
- "th.span5": 2,
- "td.span6": 2,
- "th.span6": 2,
- "td.span7": 2,
- "th.span7": 2,
- "td.span8": 2,
- "th.span8": 2,
- "td.span9": 2,
- "th.span9": 2,
- "td.span10": 2,
- "th.span10": 2,
- "td.span11": 2,
- "th.span11": 2,
- "td.span12": 2,
- "th.span12": 2,
- "tr.success": 4,
- "#dff0d8": 6,
- "tr.error": 4,
- "#f2dede": 6,
- "tr.warning": 4,
- "#fcf8e3": 6,
- "tr.info": 4,
- "#d9edf7": 6,
- "#d0e9c6": 2,
- "#ebcccc": 2,
- "#faf2cc": 2,
- "#c4e3f3": 2,
- "form": 38,
- "fieldset": 2,
- "legend": 6,
- "#e5e5e5": 28,
- ".uneditable": 80,
- "#555555": 18,
- "#cccccc": 18,
- "inset": 132,
- "transition": 36,
- "linear": 204,
- ".2s": 16,
- "o": 48,
- ".075": 12,
- ".6": 6,
- "multiple": 2,
- "#fcfcfc": 2,
- "allowed": 4,
- "placeholder": 18,
- ".radio": 26,
- ".checkbox": 26,
- ".radio.inline": 6,
- ".checkbox.inline": 6,
- "medium": 2,
- "large": 40,
- "xlarge": 2,
- "xxlarge": 2,
- "append": 120,
- "prepend": 82,
- "input.span12": 4,
- "textarea.span12": 2,
- "input.span11": 4,
- "textarea.span11": 2,
- "input.span10": 4,
- "textarea.span10": 2,
- "input.span9": 4,
- "textarea.span9": 2,
- "input.span8": 4,
- "textarea.span8": 2,
- "input.span7": 4,
- "textarea.span7": 2,
- "input.span6": 4,
- "textarea.span6": 2,
- "input.span5": 4,
- "textarea.span5": 2,
- "input.span4": 4,
- "textarea.span4": 2,
- "input.span3": 4,
- "textarea.span3": 2,
- "input.span2": 4,
- "textarea.span2": 2,
- "input.span1": 4,
- "textarea.span1": 2,
- "disabled": 36,
- "readonly": 10,
- ".control": 150,
- "group.warning": 32,
- ".help": 44,
- "#dbc59e": 6,
- ".add": 36,
- "on": 36,
- "group.error": 32,
- "#d59392": 6,
- "group.success": 32,
- "#7aba7b": 6,
- "group.info": 32,
- "#7ab5d3": 6,
- "invalid": 12,
- "#ee5f5b": 18,
- "#e9322d": 2,
- "#f8b9b7": 6,
- ".form": 132,
- "actions": 10,
- "#595959": 2,
- ".dropdown": 126,
- "menu": 42,
- ".popover": 14,
- "z": 12,
- "index": 14,
- "toggle": 84,
- ".active": 86,
- "#a9dba9": 2,
- "#46a546": 2,
- "prepend.input": 22,
- "input.search": 2,
- "query": 22,
- ".search": 22,
- "*padding": 36,
- "image": 187,
- "gradient": 175,
- "#e6e6e6": 20,
- "from": 40,
- "to": 75,
- "repeat": 66,
- "x": 30,
- "filter": 57,
- "progid": 48,
- "DXImageTransform.Microsoft.gradient": 48,
- "startColorstr": 30,
- "endColorstr": 30,
- "GradientType": 30,
- "#bfbfbf": 4,
- "*background": 36,
- "enabled": 18,
- "false": 18,
- "#b3b3b3": 2,
- ".3em": 6,
- ".2": 12,
- ".05": 24,
- ".btn.active": 8,
- ".btn.disabled": 4,
- "#d9d9d9": 4,
- "s": 25,
- ".15": 24,
- "default": 12,
- "opacity": 15,
- "alpha": 7,
- "class": 26,
- "primary.active": 6,
- "warning.active": 6,
- "danger.active": 6,
- "success.active": 6,
- "info.active": 6,
- "inverse.active": 6,
- "primary": 14,
- "#006dcc": 2,
- "#0044cc": 20,
- "#002a80": 2,
- "primary.disabled": 2,
- "#003bb3": 2,
- "#003399": 2,
- "#faa732": 3,
- "#fbb450": 16,
- "#ad6704": 2,
- "warning.disabled": 2,
- "#df8505": 2,
- "danger": 21,
- "#da4f49": 2,
- "#bd362f": 20,
- "#802420": 2,
- "danger.disabled": 2,
- "#a9302a": 2,
- "#942a25": 2,
- "#5bb75b": 2,
- "#62c462": 16,
- "#51a351": 20,
- "#387038": 2,
- "success.disabled": 2,
- "#499249": 2,
- "#408140": 2,
- "#49afcd": 2,
- "#5bc0de": 16,
- "#2f96b4": 20,
- "#1f6377": 2,
- "info.disabled": 2,
- "#2a85a0": 2,
- "#24748c": 2,
- "#363636": 2,
- "#444444": 10,
- "#222222": 32,
- "#000000": 14,
- "inverse.disabled": 2,
- "#151515": 12,
- "#080808": 2,
- "button.btn": 4,
- "button.btn.btn": 6,
- ".btn.btn": 6,
- "link": 28,
- "url": 4,
- "no": 2,
- ".icon": 288,
- ".nav": 308,
- "pills": 28,
- "submenu": 8,
- "glass": 2,
- "music": 2,
- "envelope": 2,
- "heart": 2,
- "star": 4,
- "user": 2,
- "film": 2,
- "ok": 6,
- "remove": 6,
- "zoom": 5,
- "in": 10,
- "out": 10,
- "off": 4,
- "signal": 2,
- "cog": 2,
- "trash": 2,
- "home": 2,
- "file": 2,
- "time": 2,
- "road": 2,
- "download": 4,
- "alt": 6,
- "upload": 2,
- "inbox": 2,
- "play": 4,
- "refresh": 2,
- "lock": 2,
- "flag": 2,
- "headphones": 2,
- "volume": 6,
- "down": 12,
- "up": 12,
- "qrcode": 2,
- "barcode": 2,
- "tag": 2,
- "tags": 2,
- "book": 2,
- "bookmark": 2,
- "camera": 2,
- "justify": 2,
- "indent": 4,
- "facetime": 2,
- "picture": 2,
- "pencil": 2,
- "map": 2,
- "marker": 2,
- "tint": 2,
- "edit": 2,
- "share": 4,
- "check": 2,
- "move": 2,
- "step": 4,
- "backward": 6,
- "fast": 4,
- "pause": 2,
- "stop": 32,
- "forward": 6,
- "eject": 2,
- "chevron": 8,
- "plus": 4,
- "sign": 16,
- "minus": 4,
- "question": 2,
- "screenshot": 2,
- "ban": 2,
- "arrow": 21,
- "resize": 8,
- "full": 2,
- "asterisk": 2,
- "exclamation": 2,
- "gift": 2,
- "leaf": 2,
- "fire": 2,
- "eye": 4,
- "open": 4,
- "close": 4,
- "plane": 2,
- "calendar": 2,
- "random": 2,
- "comment": 2,
- "magnet": 2,
- "retweet": 2,
- "shopping": 2,
- "cart": 2,
- "folder": 4,
- "hdd": 2,
- "bullhorn": 2,
- "bell": 2,
- "certificate": 2,
- "thumbs": 4,
- "hand": 8,
- "globe": 2,
- "wrench": 2,
- "tasks": 2,
- "briefcase": 2,
- "fullscreen": 2,
- "toolbar": 8,
- ".btn.large": 4,
- ".large.dropdown": 2,
- "group.open": 18,
- ".125": 6,
- ".btn.dropdown": 2,
- "primary.dropdown": 2,
- "warning.dropdown": 2,
- "danger.dropdown": 2,
- "success.dropdown": 2,
- "info.dropdown": 2,
- "inverse.dropdown": 2,
- ".caret": 70,
- ".dropup": 2,
- ".divider": 8,
- "tabs": 94,
- "#ddd": 38,
- "stacked": 24,
- "tabs.nav": 12,
- "pills.nav": 4,
- ".dropdown.active": 4,
- ".open": 8,
- "li.dropdown.open.active": 14,
- "li.dropdown.open": 14,
- ".tabs": 62,
- ".tabbable": 8,
- ".tab": 8,
- "below": 18,
- "pane": 4,
- ".pill": 6,
- ".disabled": 22,
- "*position": 2,
- "*z": 2,
- "#fafafa": 2,
- "#f2f2f2": 22,
- "#d4d4d4": 2,
- "collapse.collapse": 2,
- ".brand": 14,
- "#777777": 12,
- ".1": 24,
- ".nav.pull": 2,
- "navbar": 28,
- "#ededed": 2,
- "navbar.active": 8,
- "navbar.disabled": 4,
- "bar": 21,
- "absolute": 8,
- "li.dropdown": 12,
- "li.dropdown.active": 8,
- "menu.pull": 8,
- "#1b1b1b": 2,
- "#111111": 18,
- "#252525": 2,
- "#515151": 2,
- "query.focused": 2,
- "#0e0e0e": 2,
- "#040404": 18,
- ".breadcrumb": 8,
- ".pagination": 78,
- "span": 38,
- "centered": 2,
- ".pager": 34,
- ".next": 4,
- ".previous": 4,
- ".thumbnails": 12,
- ".thumbnail": 6,
- "ease": 12,
- "a.thumbnail": 4,
- ".caption": 2,
- ".alert": 34,
- "#fbeed5": 2,
- ".close": 2,
- "#d6e9c6": 2,
- "#eed3d7": 2,
- "#bce8f1": 2,
- "@": 8,
- "keyframes": 8,
- "progress": 15,
- "stripes": 15,
- "@keyframes": 2,
- ".progress": 22,
- "#f7f7f7": 3,
- ".bar": 22,
- "#0e90d2": 2,
- "#149bdf": 11,
- "#0480be": 10,
- "deg": 20,
- ".progress.active": 1,
- "animation": 5,
- "infinite": 5,
- "#dd514c": 1,
- "#c43c35": 5,
- "danger.progress": 1,
- "#5eb95e": 1,
- "#57a957": 5,
- "success.progress": 1,
- "#4bb1cf": 1,
- "#339bb9": 5,
- "info.progress": 1,
- "warning.progress": 1,
- ".hero": 3,
- "unit": 3,
- "letter": 1,
- ".media": 11,
- "object": 1,
- "heading": 1,
- ".tooltip": 7,
- "visibility": 1,
- ".tooltip.in": 1,
- ".tooltip.top": 2,
- ".tooltip.right": 2,
- ".tooltip.bottom": 2,
- ".tooltip.left": 2,
- "clip": 3,
- ".popover.top": 3,
- ".popover.right": 3,
- ".popover.bottom": 3,
- ".popover.left": 3,
- "#ebebeb": 1,
- ".arrow": 12,
- ".modal": 5,
- "backdrop": 2,
- "backdrop.fade": 1,
- "backdrop.fade.in": 1
- },
- "Cuda": {
- "__global__": 2,
- "void": 3,
- "scalarProdGPU": 1,
- "(": 20,
- "float": 8,
- "*d_C": 1,
- "*d_A": 1,
- "*d_B": 1,
- "int": 14,
- "vectorN": 2,
- "elementN": 3,
- ")": 20,
- "{": 8,
- "//Accumulators": 1,
- "cache": 1,
- "__shared__": 1,
- "accumResult": 5,
- "[": 11,
- "ACCUM_N": 4,
- "]": 11,
- ";": 30,
- "////////////////////////////////////////////////////////////////////////////": 2,
- "for": 5,
- "vec": 5,
- "blockIdx.x": 2,
- "<": 5,
- "+": 12,
- "gridDim.x": 1,
- "vectorBase": 3,
- "IMUL": 1,
- "vectorEnd": 2,
- "////////////////////////////////////////////////////////////////////////": 4,
- "iAccum": 10,
- "threadIdx.x": 4,
- "blockDim.x": 3,
- "sum": 3,
- "pos": 5,
- "d_A": 2,
- "*": 2,
- "d_B": 2,
- "}": 8,
- "stride": 5,
- "/": 2,
- "__syncthreads": 1,
- "if": 3,
- "d_C": 2,
- "#include": 2,
- "": 1,
- "": 1,
- "vectorAdd": 2,
- "const": 2,
- "*A": 1,
- "*B": 1,
- "*C": 1,
- "numElements": 4,
- "i": 5,
- "C": 1,
- "A": 1,
- "B": 1,
- "main": 1,
- "cudaError_t": 1,
- "err": 5,
- "cudaSuccess": 2,
- "threadsPerBlock": 4,
- "blocksPerGrid": 1,
+ "op": 3,
+ "<": 1,
+ "+": 4,
+ "fftwf_execute": 1,
+ "}": 4,
"-": 1,
- "<<": 1,
- "": 1,
- "cudaGetLastError": 1,
- "fprintf": 1,
- "stderr": 1,
- "cudaGetErrorString": 1,
- "exit": 1,
- "EXIT_FAILURE": 1,
- "cudaDeviceReset": 1,
- "return": 1
- },
- "Dart": {
- "import": 1,
- "as": 1,
- "math": 1,
- ";": 9,
- "class": 1,
- "Point": 5,
- "{": 3,
- "num": 2,
- "x": 2,
- "y": 2,
- "(": 7,
- "this.x": 1,
- "this.y": 1,
- ")": 7,
- "distanceTo": 1,
- "other": 1,
- "var": 4,
- "dx": 3,
- "-": 2,
- "other.x": 1,
- "dy": 3,
- "other.y": 1,
+ "/": 1,
+ "fftwf_destroy_plan": 1,
"return": 1,
- "math.sqrt": 1,
- "*": 2,
- "+": 1,
- "}": 3,
- "void": 1,
- "main": 1,
- "p": 1,
- "new": 2,
- "q": 1,
- "print": 1
- },
- "Diff": {
- "diff": 1,
- "-": 5,
- "git": 1,
- "a/lib/linguist.rb": 2,
- "b/lib/linguist.rb": 2,
- "index": 1,
- "d472341..8ad9ffb": 1,
- "+": 3
- },
- "DM": {
- "#define": 4,
- "PI": 6,
- "#if": 1,
- "G": 1,
- "#elif": 1,
- "I": 1,
- "#else": 1,
- "K": 1,
+ "typedef": 1,
+ "foo_t": 3,
+ "#ifndef": 1,
+ "ZERO": 3,
+ "#define": 2,
"#endif": 1,
- "var/GlobalCounter": 1,
- "var/const/CONST_VARIABLE": 1,
- "var/list/MyList": 1,
- "list": 3,
- "(": 17,
- "new": 1,
- "/datum/entity": 2,
- ")": 17,
- "var/list/EmptyList": 1,
- "[": 2,
- "]": 2,
- "//": 6,
- "creates": 1,
- "a": 1,
- "of": 1,
- "null": 2,
- "entries": 1,
- "var/list/NullList": 1,
- "var/name": 1,
- "var/number": 1,
- "/datum/entity/proc/myFunction": 1,
- "world.log": 5,
- "<<": 5,
- "/datum/entity/New": 1,
- "number": 2,
- "GlobalCounter": 1,
- "+": 3,
- "/datum/entity/unit": 1,
- "name": 1,
- "/datum/entity/unit/New": 1,
- "..": 1,
- "calls": 1,
- "the": 2,
- "parent": 1,
- "s": 1,
- "proc": 1,
- ";": 3,
- "equal": 1,
- "to": 1,
- "super": 1,
- "and": 1,
- "base": 1,
- "in": 1,
- "other": 1,
- "languages": 1,
- "rand": 1,
- "/datum/entity/unit/myFunction": 1,
- "/proc/ReverseList": 1,
- "var/list/input": 1,
- "var/list/output": 1,
- "for": 1,
- "var/i": 1,
- "input.len": 1,
- "i": 3,
- "-": 2,
- "IMPORTANT": 1,
- "List": 1,
- "Arrays": 1,
- "count": 1,
- "from": 1,
- "output": 2,
- "input": 1,
- "is": 2,
- "return": 3,
- "/proc/DoStuff": 1,
- "var/bitflag": 2,
- "bitflag": 4,
- "|": 1,
- "/proc/DoOtherStuff": 1,
- "bits": 1,
- "maximum": 1,
- "amount": 1,
- "&": 1,
- "/proc/DoNothing": 1,
- "var/pi": 1,
- "if": 2,
- "pi": 2,
- "else": 2,
- "CONST_VARIABLE": 1,
- "#undef": 1,
- "Undefine": 1
- },
- "Dogescript": {
- "quiet": 1,
- "wow": 4,
- "such": 2,
- "language": 3,
- "very": 1,
- "syntax": 1,
- "github": 1,
- "recognized": 1,
- "loud": 1,
- "much": 1,
- "friendly": 2,
- "rly": 1,
- "is": 2,
- "true": 1,
- "plz": 2,
- "console.loge": 2,
- "with": 2,
- "but": 1,
- "module.exports": 1
- },
- "Eagle": {
- "": 2,
- "version=": 4,
- "encoding=": 2,
- "": 2,
- "eagle": 4,
- "SYSTEM": 2,
- "dtd": 2,
- "": 2,
- "": 2,
- "": 2,
- "": 4,
- "alwaysvectorfont=": 2,
- "verticaltext=": 2,
- " ": 2,
- "": 2,
- "distance=": 2,
- "unitdist=": 2,
- "unit=": 2,
- "style=": 2,
- "multiple=": 2,
- "display=": 2,
- "altdistance=": 2,
- "altunitdist=": 2,
- "altunit=": 2,
- "": 2,
- "": 118,
- "number=": 119,
- "name=": 447,
- "color=": 118,
- "fill=": 118,
- "visible=": 118,
- "active=": 125,
- " ": 2,
- "": 1,
- "": 1,
- "": 497,
- "x1=": 630,
- "y1=": 630,
- "x2=": 630,
- "y2=": 630,
- "width=": 512,
- "layer=": 822,
- " ": 1,
- "": 2,
- "": 4,
- "": 60,
- "&": 5501,
- "lt": 2665,
- ";": 5567,
- "b": 64,
- "gt": 2770,
- "Resistors": 2,
- "Capacitors": 4,
- "Inductors": 2,
- "/b": 64,
- "p": 65,
- "Based": 2,
- "on": 2,
- "the": 5,
- "previous": 2,
- "libraries": 2,
- "ul": 2,
- "li": 12,
- "r.lbr": 2,
- "cap.lbr": 2,
- "cap": 2,
- "-": 768,
- "fe.lbr": 2,
- "captant.lbr": 2,
- "polcap.lbr": 2,
- "ipc": 2,
- "smd.lbr": 2,
- "/ul": 2,
- "All": 2,
- "SMD": 4,
- "packages": 2,
- "are": 2,
- "defined": 2,
- "according": 2,
- "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,
- "www.bccomponents.com": 2,
- "www.panasonic.com": 2,
- "www.kemet.com": 2,
- "http": 4,
- "//www.secc.co.jp/pdf/os_e/2004/e_os_all.pdf": 2,
- "(": 4,
- "SANYO": 2,
- ")": 4,
- "trimmer": 2,
- "refence": 2,
- "u": 2,
- "www.electrospec": 2,
- "inc.com/cross_references/trimpotcrossref.asp": 2,
- "/u": 2,
- "table": 2,
- "border": 2,
- "cellspacing": 2,
- "cellpadding": 2,
- "width": 6,
- "cellpaddding": 2,
- "tr": 2,
- "valign": 2,
- "td": 4,
- "amp": 66,
- "nbsp": 66,
- "/td": 4,
- "font": 2,
- "color": 20,
- "size": 2,
- "TRIM": 4,
- "POT": 4,
- "CROSS": 4,
- "REFERENCE": 4,
- "/font": 2,
- "P": 128,
- "TABLE": 4,
- "BORDER": 4,
- "CELLSPACING": 4,
- "CELLPADDING": 4,
- "TR": 36,
- "TD": 170,
- "COLSPAN": 16,
- "FONT": 166,
- "SIZE": 166,
- "FACE": 166,
- "ARIAL": 166,
- "B": 106,
- "RECTANGULAR": 2,
- "MULTI": 6,
- "TURN": 10,
- "/B": 90,
- "/FONT": 166,
- "/TD": 170,
- "/TR": 36,
- "ALIGN": 124,
- "CENTER": 124,
- "BOURNS": 6,
- "BI": 10,
- "TECH": 10,
- "DALE": 10,
- "VISHAY": 10,
- "PHILIPS/MEPCO": 10,
- "MURATA": 6,
- "PANASONIC": 10,
- "SPECTROL": 6,
- "MILSPEC": 6,
- "BGCOLOR": 76,
- "BR": 1478,
- "W": 92,
- "Y": 36,
- "J": 12,
- "L": 18,
- "X": 82,
- "PH": 2,
- "XH": 2,
- "SLT": 2,
- "ALT": 42,
- "T8S": 2,
- "T18/784": 2,
- "/1897": 2,
- "/1880": 2,
- "EKP/CT20/RJ": 2,
- "RJ": 14,
- "EKQ": 4,
- "EKR": 4,
- "EKJ": 2,
- "EKL": 2,
- "S": 18,
- "EVMCOG": 2,
- "T602": 2,
- "RT/RTR12": 6,
- "RJ/RJR12": 6,
- "SQUARE": 2,
- "BOURN": 4,
- "H": 24,
- "Z": 16,
- "T63YB": 2,
- "T63XB": 2,
- "T93Z": 2,
- "T93YA": 2,
- "T93XA": 2,
- "T93YB": 2,
- "T93XB": 2,
- "EKP": 8,
- "EKW": 6,
- "EKM": 4,
- "EKB": 2,
- "EKN": 2,
- "P/CT9P": 2,
- "P/3106P": 2,
- "W/3106W": 2,
- "X/3106X": 2,
- "Y/3106Y": 2,
- "Z/3105Z": 2,
- "EVMCBG": 2,
- "EVMCCG": 2,
- "RT/RTR22": 8,
- "RJ/RJR22": 6,
- "RT/RTR26": 6,
- "RJ/RJR26": 12,
- "RT/RTR24": 6,
- "RJ/RJR24": 12,
- "SINGLE": 4,
- "E": 6,
- "K": 4,
- "T": 10,
- "V": 10,
- "M": 10,
- "R": 6,
- "U": 4,
- "C": 6,
- "F": 4,
- "RX": 6,
- "PA": 2,
- "A": 16,
- "XW": 2,
- "XL": 2,
- "PM": 2,
- "PX": 2,
- "RXW": 2,
- "RXL": 2,
- "T7YB": 2,
- "T7YA": 2,
- "TXD": 2,
- "TYA": 2,
- "TYP": 2,
- "TYD": 2,
- "TX": 4,
- "SX": 6,
- "ET6P": 2,
- "ET6S": 2,
- "ET6X": 2,
- "W/8014EMW": 2,
- "P/8014EMP": 2,
- "X/8014EMX": 2,
- "TM7W": 2,
- "TM7P": 2,
- "TM7X": 2,
- "SMS": 2,
- "SMB": 2,
- "SMA": 2,
- "CT": 12,
- "EKV": 2,
- "EKX": 2,
- "EKZ": 2,
- "N": 2,
- "RVA0911V304A": 2,
- "RVA0911H413A": 2,
- "RVG0707V100A": 2,
- "RVA0607V": 2,
- "RVA1214H213A": 2,
- "EVMQ0G": 4,
- "EVMQIG": 2,
- "EVMQ3G": 2,
- "EVMS0G": 2,
- "EVMG0G": 2,
- "EVMK4GA00B": 2,
- "EVM30GA00B": 2,
- "EVMK0GA00B": 2,
- "EVM38GA00B": 2,
- "EVMB6": 2,
- "EVLQ0": 2,
- "EVMMSG": 2,
- "EVMMBG": 2,
- "EVMMAG": 2,
- "EVMMCS": 2,
- "EVMM1": 2,
- "EVMM0": 2,
- "EVMM3": 2,
- "RJ/RJR50": 6,
- "/TABLE": 4,
- "TOCOS": 4,
- "AUX/KYOCERA": 4,
- "G": 10,
- "ST63Z": 2,
- "ST63Y": 2,
- "ST5P": 2,
- "ST5W": 2,
- "ST5X": 2,
- "A/B": 2,
- "C/D": 2,
- "W/X": 2,
- "ST5YL/ST53YL": 2,
- "ST5YJ/5T53YJ": 2,
- "ST": 14,
- "EVM": 8,
- "YS": 2,
- "D": 2,
- "G4B": 2,
- "G4A": 2,
- "TR04": 2,
- "S1": 4,
- "TRG04": 2,
- "DVR": 2,
- "CVR": 4,
- "A/C": 2,
- "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,
- "Pin": 1,
- "Header": 1,
- "Connectors": 1,
- "PIN": 1,
- "HEADER": 1,
- "": 39,
- "drill=": 41,
- "shape=": 39,
- "ratio=": 41,
- " ": 1,
- "": 1,
- " ": 1,
- "": 1,
- " ": 1,
- "": 1,
- "": 1,
- " ": 1,
- " ": 1,
- "": 1,
- "language=": 2,
- "EAGLE": 2,
- "Design": 5,
- "Rules": 5,
- "Die": 1,
- "Standard": 1,
- "sind": 1,
- "so": 2,
- "gew": 1,
- "hlt": 1,
- "dass": 1,
- "sie": 1,
- "f": 1,
- "r": 1,
- "die": 3,
- "meisten": 1,
- "Anwendungen": 1,
- "passen.": 1,
- "Sollte": 1,
- "ihre": 1,
- "Platine": 1,
- "besondere": 1,
- "Anforderungen": 1,
- "haben": 1,
- "treffen": 1,
- "Sie": 1,
- "erforderlichen": 1,
- "Einstellungen": 1,
- "hier": 1,
- "und": 1,
- "speichern": 1,
- "unter": 1,
- "einem": 1,
- "neuen": 1,
- "Namen": 1,
- "ab.": 1,
- "The": 1,
- "default": 1,
- "have": 2,
- "been": 1,
- "set": 1,
- "cover": 1,
- "a": 2,
- "wide": 1,
- "range": 1,
- "of": 1,
- "applications.": 1,
- "Your": 1,
- "particular": 1,
- "design": 2,
- "may": 1,
- "different": 1,
- "requirements": 1,
- "please": 1,
- "make": 1,
- "necessary": 1,
- "adjustments": 1,
- "save": 1,
- "your": 1,
- "customized": 1,
- "rules": 1,
- "under": 1,
- "new": 1,
- "name.": 1,
- " ": 142,
- "value=": 145,
- " ": 1,
- "": 1,
- "": 8,
- " ": 8,
- "refer=": 7,
- " ": 1,
- "": 1,
- "": 3,
- "library=": 3,
- "package=": 3,
- "smashed=": 3,
- "": 6,
- " ": 3,
- "1": 1,
- "778": 1,
- "16": 1,
- "002": 1,
- " ": 1,
- "": 1,
- "": 3,
- "": 4,
- "element=": 4,
- "pad=": 4,
- "": 1,
- "extent=": 1,
- " ": 3,
- "": 2,
- "": 8,
- " ": 2,
- " ": 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
- },
- "ECL": {
- "#option": 1,
- "(": 32,
- "true": 1,
- ")": 32,
- ";": 23,
- "namesRecord": 4,
- "RECORD": 1,
- "string20": 1,
- "surname": 1,
- "string10": 2,
- "forename": 1,
- "integer2": 5,
- "age": 2,
- "dadAge": 1,
- "mumAge": 1,
- "END": 1,
- "namesRecord2": 3,
- "record": 1,
- "extra": 1,
- "end": 1,
- "namesTable": 11,
- "dataset": 2,
- "FLAT": 2,
- "namesTable2": 9,
- "aveAgeL": 3,
- "l": 1,
- "l.dadAge": 1,
- "+": 16,
- "l.mumAge": 1,
- "/2": 2,
- "aveAgeR": 4,
- "r": 1,
- "r.dadAge": 1,
- "r.mumAge": 1,
- "output": 9,
- "join": 11,
- "left": 2,
- "right": 3,
- "//Several": 1,
- "simple": 1,
- "examples": 1,
- "of": 1,
- "sliding": 2,
- "syntax": 1,
- "left.age": 8,
- "right.age": 12,
- "-": 5,
- "and": 10,
- "<": 1,
- "between": 7,
- "//Same": 1,
- "but": 1,
- "on": 1,
- "strings.": 1,
- "Also": 1,
- "includes": 1,
- "to": 1,
- "ensure": 1,
- "sort": 1,
- "is": 1,
- "done": 1,
- "by": 1,
- "non": 1,
- "before": 1,
- "sliding.": 1,
- "left.surname": 2,
- "right.surname": 4,
- "[": 4,
- "]": 4,
- "all": 1,
- "//This": 1,
- "should": 1,
- "not": 1,
- "generate": 1,
- "a": 1,
- "self": 1
- },
- "edn": {
- "[": 24,
- "{": 22,
- "db/id": 22,
- "#db/id": 22,
- "db.part/db": 6,
- "]": 24,
- "db/ident": 3,
- "object/name": 18,
- "db/doc": 4,
- "db/valueType": 3,
- "db.type/string": 2,
- "db/index": 3,
- "true": 3,
- "db/cardinality": 3,
- "db.cardinality/one": 3,
- "db.install/_attribute": 3,
- "}": 22,
- "object/meanRadius": 18,
- "db.type/double": 1,
- "data/source": 2,
- "db.part/tx": 2,
- "db.part/user": 17
- },
- "Elm": {
- "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,
- "}": 1,
- "subsection": 2,
- "w": 7,
- "info": 2,
- "down": 3,
- "words": 2,
- "markdown": 1,
- "|": 3,
- "###": 1,
- "Basic": 1,
- "Examples": 1,
- "Each": 1,
- "listed": 1,
- "below": 1,
- "focuses": 1,
- "on": 1,
- "a": 5,
- "single": 1,
- "function": 1,
- "or": 1,
- "concept.": 1,
- "These": 1,
- "examples": 1,
- "demonstrate": 1,
- "all": 1,
- "the": 1,
- "basic": 1,
- "building": 1,
- "blocks": 1,
- "Elm.": 1,
- "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
- },
- "Emacs Lisp": {
- "(": 156,
- "print": 1,
- ")": 144,
- ";": 333,
- "ess": 48,
- "-": 294,
- "julia.el": 2,
- "ESS": 5,
- "julia": 39,
- "mode": 12,
- "and": 3,
- "inferior": 13,
- "interaction": 1,
- "Copyright": 1,
- "C": 2,
- "Vitalie": 3,
- "Spinu.": 1,
- "Filename": 1,
- "Author": 1,
- "Spinu": 2,
- "based": 1,
- "on": 2,
- "mode.el": 1,
- "from": 3,
- "lang": 1,
- "project": 1,
- "Maintainer": 1,
- "Created": 1,
- "Keywords": 1,
- "This": 4,
- "file": 10,
- "is": 5,
- "*NOT*": 1,
- "part": 2,
- "of": 8,
- "GNU": 4,
- "Emacs.": 1,
- "program": 6,
- "free": 1,
- "software": 1,
- "you": 1,
- "can": 1,
- "redistribute": 1,
- "it": 3,
- "and/or": 1,
- "modify": 5,
- "under": 1,
- "the": 10,
- "terms": 1,
- "General": 3,
- "Public": 3,
- "License": 3,
- "as": 1,
- "published": 1,
- "by": 1,
- "Free": 2,
- "Software": 2,
- "Foundation": 2,
- "either": 1,
- "version": 2,
- "any": 1,
- "later": 1,
- "version.": 1,
- "distributed": 1,
- "in": 3,
- "hope": 1,
- "that": 2,
- "will": 1,
- "be": 2,
- "useful": 1,
- "but": 2,
- "WITHOUT": 1,
- "ANY": 1,
- "WARRANTY": 1,
- "without": 1,
- "even": 1,
- "implied": 1,
- "warranty": 1,
- "MERCHANTABILITY": 1,
- "or": 3,
- "FITNESS": 1,
- "FOR": 1,
- "A": 1,
- "PARTICULAR": 1,
- "PURPOSE.": 1,
- "See": 1,
- "for": 8,
- "more": 1,
- "details.": 1,
- "You": 1,
- "should": 2,
- "have": 1,
- "received": 1,
- "a": 4,
- "copy": 2,
- "along": 1,
- "with": 4,
- "this": 1,
- "see": 2,
- "COPYING.": 1,
- "If": 1,
- "not": 1,
- "write": 2,
- "to": 4,
- "Inc.": 1,
- "Franklin": 1,
- "Street": 1,
- "Fifth": 1,
- "Floor": 1,
- "Boston": 1,
- "MA": 1,
- "USA.": 1,
- "Commentary": 1,
- "customise": 1,
- "name": 8,
- "point": 6,
- "your": 1,
- "release": 1,
- "basic": 1,
- "start": 13,
- "M": 2,
- "x": 2,
- "julia.": 2,
- "require": 2,
- "auto": 1,
- "alist": 9,
- "table": 9,
- "character": 1,
- "quote": 2,
- "transpose": 1,
- "syntax": 7,
- "entry": 4,
- ".": 40,
- "Syntax": 3,
- "inside": 1,
- "char": 6,
- "defvar": 5,
- "let": 3,
- "make": 4,
- "defconst": 5,
- "regex": 5,
- "unquote": 1,
- "forloop": 1,
- "subset": 2,
- "regexp": 6,
- "font": 6,
- "lock": 6,
- "defaults": 2,
- "list": 3,
- "identity": 1,
- "keyword": 2,
- "face": 4,
- "constant": 1,
- "cons": 1,
- "function": 7,
- "keep": 2,
- "string": 8,
- "paragraph": 3,
- "concat": 7,
- "page": 2,
- "delimiter": 2,
- "separate": 1,
- "ignore": 2,
- "fill": 1,
- "prefix": 2,
- "t": 6,
- "final": 1,
- "newline": 1,
- "comment": 6,
- "add": 4,
- "skip": 1,
- "column": 1,
- "indent": 8,
- "S": 2,
- "line": 5,
- "calculate": 1,
- "parse": 1,
- "sexp": 1,
- "comments": 1,
- "style": 2,
- "default": 1,
- "ignored": 1,
- "local": 6,
- "process": 5,
- "nil": 12,
- "dump": 2,
- "files": 1,
- "_": 1,
- "autoload": 1,
- "defun": 5,
- "send": 3,
- "visibly": 1,
- "temporary": 1,
- "directory": 2,
- "temp": 2,
- "insert": 1,
- "format": 3,
- "load": 1,
- "command": 5,
- "get": 3,
- "help": 3,
- "topics": 1,
- "&": 3,
- "optional": 3,
- "proc": 3,
- "words": 1,
- "vector": 1,
- "com": 1,
- "error": 6,
- "s": 5,
- "*in": 1,
- "[": 3,
- "n": 1,
- "]": 3,
- "*": 1,
- "at": 5,
- ".*": 2,
- "+": 5,
- "w*": 1,
- "http": 1,
- "//docs.julialang.org/en/latest/search/": 1,
- "q": 1,
- "%": 1,
- "include": 1,
- "funargs": 1,
- "re": 2,
- "args": 10,
- "language": 1,
- "STERM": 1,
- "editor": 2,
- "R": 2,
- "pager": 2,
- "versions": 1,
- "Julia": 1,
- "made": 1,
- "available.": 1,
- "String": 1,
- "arguments": 2,
- "used": 1,
- "when": 2,
- "starting": 1,
- "group": 1,
- "###autoload": 2,
- "interactive": 2,
- "setq": 2,
- "customize": 5,
- "emacs": 1,
- "<": 1,
- "hook": 4,
- "complete": 1,
- "object": 2,
- "completion": 4,
- "functions": 2,
- "first": 1,
- "if": 4,
- "fboundp": 1,
- "end": 1,
- "workaround": 1,
- "set": 3,
- "variable": 3,
- "post": 1,
- "run": 2,
- "settings": 1,
- "notably": 1,
- "null": 1,
- "dribble": 1,
- "buffer": 3,
- "debugging": 1,
- "only": 1,
- "dialect": 1,
- "current": 2,
- "arg": 1,
- "let*": 2,
- "jl": 2,
- "space": 1,
- "just": 1,
- "case": 1,
- "read": 1,
- "..": 3,
- "multi": 1,
- "...": 1,
- "tb": 1,
- "logo": 1,
- "goto": 2,
- "min": 1,
- "while": 1,
- "search": 1,
- "forward": 1,
- "replace": 1,
- "match": 1,
- "max": 1,
- "inject": 1,
- "code": 1,
- "etc": 1,
- "hooks": 1,
- "busy": 1,
- "funname": 5,
- "eldoc": 1,
- "show": 1,
- "symbol": 2,
- "aggressive": 1,
- "car": 1,
- "funname.start": 1,
- "sequence": 1,
- "nth": 1,
- "W": 1,
- "window": 2,
- "width": 1,
- "minibuffer": 1,
- "length": 1,
- "doc": 1,
- "propertize": 1,
- "use": 1,
- "classes": 1,
- "screws": 1,
- "egrep": 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,
- "export": 2,
- "main/1": 1,
- "For": 1,
- "each": 1,
- "header": 1,
- "file": 6,
- "it": 2,
- "scans": 1,
- "thru": 1,
- "all": 1,
- "records": 1,
- "and": 8,
- "create": 1,
- "helper": 1,
- "functions": 2,
- "Helper": 1,
- "are": 3,
- "setters": 1,
- "getters": 1,
- "fields": 4,
- "fields_atom": 4,
- "type": 6,
- "module": 2,
- "record_helper": 1,
- "make/1": 1,
- "make/2": 1,
- "make": 3,
- "HeaderFiles": 5,
- "atom_to_list": 18,
- "X": 12,
- "||": 6,
- "<->": 5,
- "hrl": 1,
- "relative": 1,
- "to": 2,
- "current": 1,
- "dir": 1,
- "OutDir": 4,
- "ModuleName": 3,
- "HeaderComment": 2,
- "ModuleDeclaration": 2,
- "+": 214,
- "<": 1,
- "Src": 10,
- "format_src": 8,
- "lists": 11,
- "sort": 1,
- "flatten": 6,
- "read": 2,
- "generate_type_default_function": 2,
- "write_file": 1,
- "erl": 1,
- "list_to_binary": 1,
- "HeaderFile": 4,
- "epp": 1,
- "parse_file": 1,
- "of": 9,
- "{": 109,
- "ok": 34,
- "Tree": 4,
- "}": 109,
- "parse": 2,
- "error": 4,
- "Error": 4,
- "catched_error": 1,
- "end.": 3,
- "|": 25,
- "T": 24,
- "when": 29,
- "length": 6,
- "Type": 3,
- "A": 5,
- "B": 4,
- "NSrc": 4,
- "_Type": 1,
- "Type1": 2,
- "parse_record": 3,
- "attribute": 1,
- "record": 4,
- "RecordInfo": 2,
- "RecordName": 41,
- "RecordFields": 10,
+ "FOO": 1,
+ "__kernel": 1,
+ "void": 1,
+ "foo": 1,
+ "__global": 1,
+ "__local": 1,
+ "uint": 1,
+ "barrier": 1,
+ "CLK_LOCAL_MEM_FENCE": 1,
"if": 1,
- "generate_setter_getter_function": 5,
- "generate_type_function": 3,
- "true": 3,
- "generate_fields_function": 2,
- "generate_fields_atom_function": 2,
- "parse_field_name": 5,
- "record_field": 9,
- "atom": 9,
- "FieldName": 26,
- "field": 4,
- "_FieldName": 2,
- "ParentRecordName": 8,
- "parent_field": 2,
- "parse_field_name_atom": 5,
- "concat": 5,
- "_S": 3,
- "S": 6,
- "concat_ext": 4,
- "parse_field": 6,
- "AccFields": 6,
- "AccParentFields": 6,
- "case": 3,
- "Field": 2,
- "PField": 2,
- "parse_field_atom": 4,
- "zzz": 1,
- "Fields": 4,
- "field_atom": 1,
- "to_setter_getter_function": 5,
- "setter": 2,
- "getter": 2,
- "This": 2,
- "is": 1,
- "auto": 1,
- "generated": 1,
- "file.": 1,
- "Please": 1,
- "don": 1,
- "t": 1,
- "edit": 1,
- "record_utils": 1,
- "compile": 2,
- "export_all": 1,
- "include": 1,
- "abstract_message": 21,
- "async_message": 12,
- "clientId": 5,
- "destination": 5,
- "messageId": 5,
- "timestamp": 5,
- "timeToLive": 5,
- "headers": 5,
- "body": 5,
- "correlationId": 5,
- "correlationIdBytes": 5,
- "get": 12,
- "Obj": 49,
- "is_record": 25,
- "Obj#abstract_message.body": 1,
- "Obj#abstract_message.clientId": 1,
- "Obj#abstract_message.destination": 1,
- "Obj#abstract_message.headers": 1,
- "Obj#abstract_message.messageId": 1,
- "Obj#abstract_message.timeToLive": 1,
- "Obj#abstract_message.timestamp": 1,
- "Obj#async_message.correlationId": 1,
- "Obj#async_message.correlationIdBytes": 1,
- "parent": 5,
- "Obj#async_message.parent": 3,
- "ParentProperty": 6,
- "is_atom": 2,
- "set": 13,
- "Value": 35,
- "NewObj": 20,
- "Obj#abstract_message": 7,
- "Obj#async_message": 3,
- "NewParentObject": 2,
- "undefined.": 1,
- "Mode": 1,
- "coding": 1,
- "utf": 1,
- "tab": 1,
- "width": 1,
- "c": 2,
- "basic": 1,
- "offset": 1,
- "indent": 1,
- "tabs": 1,
- "mode": 2,
- "BSD": 1,
- "LICENSE": 1,
- "Copyright": 1,
- "Michael": 2,
- "Truog": 2,
- "": 1,
- "at": 1,
- "gmail": 1,
- "dot": 1,
- "com": 1,
- "All": 2,
- "rights": 1,
- "reserved.": 1,
- "Redistribution": 1,
- "use": 2,
- "in": 3,
- "source": 2,
- "binary": 2,
- "forms": 1,
- "with": 2,
- "or": 3,
- "without": 2,
- "modification": 1,
- "permitted": 1,
- "provided": 2,
- "that": 1,
- "the": 9,
- "following": 4,
- "conditions": 3,
- "met": 1,
- "Redistributions": 2,
- "code": 2,
- "must": 3,
- "retain": 1,
- "above": 2,
- "copyright": 2,
- "notice": 2,
- "this": 4,
- "list": 2,
- "disclaimer.": 1,
- "form": 1,
- "reproduce": 1,
- "disclaimer": 1,
- "documentation": 1,
- "and/or": 1,
- "other": 1,
- "materials": 2,
- "distribution.": 1,
- "advertising": 1,
- "mentioning": 1,
- "features": 1,
- "software": 3,
- "display": 1,
- "acknowledgment": 1,
- "product": 1,
- "includes": 1,
- "developed": 1,
- "by": 1,
- "The": 1,
- "name": 1,
- "author": 2,
- "may": 1,
- "not": 1,
- "be": 1,
- "used": 1,
- "endorse": 1,
- "promote": 1,
- "products": 1,
- "derived": 1,
- "from": 1,
- "specific": 1,
- "prior": 1,
- "written": 1,
- "permission": 1,
- "THIS": 2,
- "SOFTWARE": 2,
- "IS": 1,
- "PROVIDED": 1,
- "BY": 1,
- "THE": 5,
- "COPYRIGHT": 2,
- "HOLDERS": 1,
- "AND": 4,
- "CONTRIBUTORS": 2,
- "ANY": 4,
- "EXPRESS": 1,
- "OR": 8,
- "IMPLIED": 2,
- "WARRANTIES": 2,
- "INCLUDING": 3,
- "BUT": 2,
- "NOT": 2,
- "LIMITED": 2,
- "TO": 2,
- "OF": 8,
- "MERCHANTABILITY": 1,
- "FITNESS": 1,
- "FOR": 2,
- "PARTICULAR": 1,
- "PURPOSE": 1,
- "ARE": 1,
- "DISCLAIMED.": 1,
- "IN": 3,
- "NO": 1,
- "EVENT": 1,
- "SHALL": 1,
- "OWNER": 1,
- "BE": 1,
- "LIABLE": 1,
- "DIRECT": 1,
- "INDIRECT": 1,
- "INCIDENTAL": 1,
- "SPECIAL": 1,
- "EXEMPLARY": 1,
- "CONSEQUENTIAL": 1,
- "DAMAGES": 1,
- "PROCUREMENT": 1,
- "SUBSTITUTE": 1,
- "GOODS": 1,
- "SERVICES": 1,
- "LOSS": 1,
- "USE": 2,
- "DATA": 1,
- "PROFITS": 1,
- "BUSINESS": 1,
- "INTERRUPTION": 1,
- "HOWEVER": 1,
- "CAUSED": 1,
- "ON": 1,
- "THEORY": 1,
- "LIABILITY": 2,
- "WHETHER": 1,
- "CONTRACT": 1,
- "STRICT": 1,
- "TORT": 1,
- "NEGLIGENCE": 1,
- "OTHERWISE": 1,
- "ARISING": 1,
- "WAY": 1,
- "OUT": 1,
- "EVEN": 1,
- "IF": 1,
- "ADVISED": 1,
- "POSSIBILITY": 1,
- "SUCH": 1,
- "DAMAGE.": 1,
- "sys": 2,
- "RelToolConfig": 5,
- "target_dir": 2,
- "TargetDir": 14,
- "overlay": 2,
- "OverlayConfig": 4,
- "consult": 1,
- "Spec": 2,
- "reltool": 2,
- "get_target_spec": 1,
- "make_dir": 1,
- "eexist": 1,
- "exit_code": 3,
- "eval_target_spec": 1,
- "root_dir": 1,
- "process_overlay": 2,
- "shell": 3,
- "Command": 3,
- "Arguments": 3,
- "CommandSuffix": 2,
- "reverse": 4,
- "os": 1,
- "cmd": 1,
- "io_lib": 2,
- "boot_rel_vsn": 2,
- "Config": 2,
- "_RelToolConfig": 1,
- "rel": 2,
- "_Name": 1,
- "Ver": 1,
- "proplists": 1,
- "lookup": 1,
- "Ver.": 1,
- "minimal": 2,
- "parsing": 1,
- "for": 1,
- "handling": 1,
- "mustache": 11,
- "syntax": 1,
- "Body": 2,
- "Context": 11,
- "Result": 10,
- "_Context": 1,
- "KeyStr": 6,
- "mustache_key": 4,
- "C": 4,
- "Rest": 10,
- "Key": 2,
- "list_to_existing_atom": 1,
- "dict": 2,
- "find": 1,
- "support": 1,
- "based": 1,
- "on": 1,
- "rebar": 1,
- "overlays": 1,
- "BootRelVsn": 2,
- "OverlayVars": 2,
- "from_list": 1,
- "erts_vsn": 1,
- "system_info": 1,
- "version": 1,
- "rel_vsn": 1,
- "hostname": 1,
- "net_adm": 1,
- "localhost": 1,
- "BaseDir": 7,
- "get_cwd": 1,
- "execute_overlay": 6,
- "_Vars": 1,
- "_BaseDir": 1,
- "_TargetDir": 1,
- "mkdir": 1,
- "Out": 4,
- "Vars": 7,
- "filename": 3,
- "join": 3,
- "copy": 1,
- "In": 2,
- "InFile": 3,
- "OutFile": 2,
- "filelib": 1,
- "is_file": 1,
- "ExitCode": 2,
- "flush": 1
- },
- "fish": {
- "#": 18,
- "set": 49,
- "-": 102,
- "g": 1,
- "IFS": 4,
- "n": 5,
- "t": 2,
- "l": 15,
- "configdir": 2,
- "/.config": 1,
- "if": 21,
- "q": 9,
- "XDG_CONFIG_HOME": 2,
- "end": 33,
- "not": 8,
- "fish_function_path": 4,
- "configdir/fish/functions": 1,
- "__fish_sysconfdir/functions": 1,
- "__fish_datadir/functions": 3,
- "contains": 4,
- "[": 13,
- "]": 13,
- "fish_complete_path": 4,
- "configdir/fish/completions": 1,
- "__fish_sysconfdir/completions": 1,
- "__fish_datadir/completions": 3,
- "test": 7,
- "d": 3,
- "/usr/xpg4/bin": 3,
- "PATH": 6,
- "path_list": 4,
- "/bin": 1,
- "/usr/bin": 1,
- "/usr/X11R6/bin": 1,
- "/usr/local/bin": 1,
- "__fish_bin_dir": 1,
- "switch": 3,
- "USER": 1,
- "case": 9,
- "root": 1,
- "/sbin": 1,
- "/usr/sbin": 1,
- "/usr/local/sbin": 1,
- "for": 1,
- "i": 5,
- "in": 2,
- "function": 6,
- "fish_sigtrap_handler": 1,
- "on": 2,
- "signal": 1,
- "TRAP": 1,
- "no": 2,
- "scope": 1,
- "shadowing": 1,
- "description": 2,
- "breakpoint": 1,
- "__fish_on_interactive": 2,
- "event": 1,
- "fish_prompt": 1,
- "__fish_config_interactive": 1,
- "functions": 5,
- "e": 6,
- "eval": 5,
- "S": 1,
- "If": 2,
- "we": 2,
- "are": 1,
- "an": 1,
- "interactive": 8,
- "shell": 1,
- "should": 2,
- "enable": 1,
- "full": 4,
- "job": 5,
- "control": 5,
- "since": 1,
- "it": 1,
- "behave": 1,
- "like": 2,
- "the": 1,
- "real": 1,
- "code": 1,
- "was": 1,
- "executed.": 1,
- "don": 1,
- "do": 1,
- "this": 1,
- "commands": 1,
- "that": 1,
- "expect": 1,
- "to": 1,
- "be": 1,
- "used": 1,
- "interactively": 1,
- "less": 1,
- "wont": 1,
- "work": 1,
- "using": 1,
- "eval.": 1,
- "mode": 5,
- "status": 7,
- "is": 3,
- "else": 3,
- "none": 1,
- "echo": 3,
- "|": 3,
- ".": 2,
- "<": 1,
- "&": 1,
- "res": 2,
- "return": 6,
- "funced": 3,
- "editor": 7,
- "EDITOR": 1,
- "funcname": 14,
- "while": 2,
- "argv": 9,
- "h": 1,
- "help": 1,
- "__fish_print_help": 1,
- "set_color": 4,
- "red": 2,
- "printf": 3,
- "(": 7,
- "_": 3,
- ")": 7,
- "normal": 2,
- "begin": 2,
- ";": 7,
- "or": 3,
- "init": 5,
- "nend": 2,
- "editor_cmd": 2,
- "type": 1,
- "f": 3,
- "/dev/null": 2,
- "fish": 3,
- "z": 1,
- "fish_indent": 2,
- "indent": 1,
- "prompt": 2,
- "read": 1,
- "p": 1,
- "c": 1,
- "s": 1,
- "cmd": 2,
- "TMPDIR": 2,
- "/tmp": 1,
- "tmpname": 8,
- "%": 2,
- "self": 2,
- "random": 2,
- "stat": 2,
- "rm": 1
- },
- "Forth": {
- "(": 88,
- "Block": 2,
- "words.": 6,
- ")": 87,
- "variable": 3,
- "blk": 3,
- "current": 5,
- "-": 473,
- "block": 8,
- "n": 22,
- "addr": 11,
- ";": 61,
- "buffer": 2,
- "evaluate": 1,
- "extended": 3,
- "semantics": 3,
- "flush": 1,
- "load": 2,
- "...": 4,
- "dup": 10,
- "save": 2,
- "input": 2,
- "in": 4,
- "@": 13,
- "source": 5,
- "#source": 2,
- "interpret": 1,
- "restore": 1,
- "buffers": 2,
- "update": 1,
- "extension": 4,
- "empty": 2,
- "scr": 2,
- "list": 1,
- "bounds": 1,
- "do": 2,
- "i": 5,
- "emit": 2,
- "loop": 4,
- "refill": 2,
- "thru": 1,
- "x": 10,
- "y": 5,
- "+": 17,
- "swap": 12,
- "*": 9,
- "forth": 2,
- "Copyright": 3,
- "Lars": 3,
- "Brinkhoff": 3,
- "Kernel": 4,
- "#tib": 2,
- "TODO": 12,
- ".r": 1,
- ".": 5,
- "[": 16,
- "char": 10,
- "]": 15,
- "parse": 5,
- "type": 3,
- "immediate": 19,
- "<": 14,
- "flag": 4,
- "r": 18,
- "x1": 5,
- "x2": 5,
- "R": 13,
- "rot": 2,
- "r@": 2,
- "noname": 1,
- "align": 2,
- "here": 9,
- "c": 3,
- "allot": 2,
- "lastxt": 4,
- "SP": 1,
- "query": 1,
- "tib": 1,
- "body": 1,
- "true": 1,
- "tuck": 2,
- "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,
- "action": 1,
- "of": 3,
- "defer": 2,
- "name": 1,
- "s": 4,
- "c@": 2,
- "negate": 1,
- "nip": 2,
- "bl": 4,
- "word": 9,
- "ahead": 2,
- "resolve": 4,
- "literal": 4,
- "postpone": 14,
- "nonimmediate": 1,
- "caddr": 1,
- "C": 9,
- "find": 2,
- "cells": 1,
- "postponers": 1,
- "execute": 1,
- "unresolved": 4,
- "orig": 5,
- "chars": 1,
- "n1": 2,
- "n2": 2,
- "orig1": 1,
- "orig2": 1,
- "branch": 5,
- "dodoes_code": 1,
- "code": 3,
- "begin": 2,
- "dest": 5,
- "while": 2,
- "repeat": 2,
- "until": 1,
- "recurse": 1,
- "pad": 3,
- "If": 1,
- "necessary": 1,
- "and": 3,
- "keep": 1,
- "parsing.": 1,
- "string": 3,
- "cmove": 1,
- "state": 2,
- "cr": 3,
- "abort": 3,
- "": 1,
- "Undefined": 1,
- "ok": 1,
- "HELLO": 4,
- "KataDiversion": 1,
- "Forth": 1,
- "utils": 1,
- "the": 7,
- "stack": 3,
- "EMPTY": 1,
- "DEPTH": 2,
- "IF": 10,
- "BEGIN": 3,
- "DROP": 5,
- "UNTIL": 3,
- "THEN": 10,
- "power": 2,
- "**": 2,
- "n1_pow_n2": 1,
- "SWAP": 8,
- "DUP": 14,
- "DO": 2,
- "OVER": 2,
- "LOOP": 2,
- "NIP": 4,
- "compute": 1,
- "highest": 1,
- "below": 1,
- "N.": 1,
- "e.g.": 2,
- "MAXPOW2": 2,
- "log2_n": 1,
- "ABORT": 1,
- "ELSE": 7,
- "|": 4,
- "I": 5,
- "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,
- "BITS": 3,
- "bool": 1,
- "uses": 1,
- "following": 1,
- "algorithm": 1,
- "return": 5,
- "A": 5,
- "X": 5,
- "LOG2": 1,
- "end": 1,
- "OR": 1,
- "INVERT": 1,
- "maximum": 1,
- "number": 4,
- "which": 3,
- "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,
- "Tools": 2,
- ".s": 1,
- "depth": 1,
- "traverse": 1,
- "dictionary": 1,
- "assembler": 1,
- "kernel": 1,
- "bye": 1,
- "cs": 2,
- "pick": 1,
- "roll": 1,
- "editor": 1,
- "forget": 1,
- "reveal": 1,
- "tools": 1,
- "nr": 1,
- "synonym": 1,
- "undefined": 2,
- "defined": 1,
- "invert": 1,
- "/cell": 2,
- "cell": 2
- },
- "Frege": {
- "module": 2,
- "examples.CommandLineClock": 1,
- "where": 39,
- "data": 3,
- "Date": 5,
- "native": 4,
- "java.util.Date": 1,
- "new": 9,
- "(": 339,
- ")": 345,
- "-": 730,
- "IO": 13,
- "MutableIO": 1,
- "toString": 2,
- "Mutable": 1,
- "s": 21,
- "ST": 1,
- "String": 9,
- "d.toString": 1,
- "action": 2,
- "to": 13,
- "give": 2,
- "us": 1,
- "the": 20,
- "current": 4,
- "time": 1,
- "as": 33,
- "do": 38,
- "d": 3,
- "<->": 35,
- "java": 5,
- "lang": 2,
- "Thread": 2,
- "sleep": 4,
- "takes": 1,
- "a": 99,
- "long": 4,
- "and": 14,
- "returns": 2,
- "nothing": 2,
- "but": 2,
- "may": 1,
- "throw": 1,
- "an": 6,
- "InterruptedException": 4,
- "This": 2,
- "is": 24,
- "without": 1,
- "doubt": 1,
- "public": 1,
- "static": 1,
- "void": 2,
- "millis": 1,
- "throws": 4,
- "Encoded": 1,
- "in": 22,
- "Frege": 1,
- "argument": 1,
- "type": 8,
- "Long": 3,
- "result": 11,
- "does": 2,
- "defined": 1,
- "frege": 1,
- "Lang": 1,
- "main": 11,
- "args": 2,
- "forever": 1,
- "print": 25,
- "stdout.flush": 1,
- "Thread.sleep": 4,
- "examples.Concurrent": 1,
- "import": 7,
- "System.Random": 1,
- "Java.Net": 1,
- "URL": 2,
- "Control.Concurrent": 1,
- "C": 6,
- "main2": 1,
- "m": 2,
- "<": 84,
- "newEmptyMVar": 1,
- "forkIO": 11,
- "m.put": 3,
- "replicateM_": 3,
- "c": 33,
- "m.take": 1,
- "println": 25,
- "example1": 1,
- "putChar": 2,
- "example2": 2,
- "getLine": 2,
- "case": 6,
- "of": 32,
- "Right": 6,
- "n": 38,
- "setReminder": 3,
- "Left": 5,
- "_": 60,
- "+": 200,
- "show": 24,
- "L*n": 1,
- "table": 1,
- "mainPhil": 2,
- "[": 120,
- "fork1": 3,
- "fork2": 3,
- "fork3": 3,
- "fork4": 3,
- "fork5": 3,
- "]": 116,
- "mapM": 3,
- "MVar": 3,
- "1": 2,
- "5": 1,
- "philosopher": 7,
- "Kant": 1,
- "Locke": 1,
- "Wittgenstein": 1,
- "Nozick": 1,
- "Mises": 1,
- "return": 17,
- "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,
- "catch": 2,
- "getURL": 4,
- "xx": 2,
- "url": 1,
- "URL.new": 1,
- "con": 3,
- "url.openConnection": 1,
- "con.connect": 1,
- "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,
- "SomeException": 2,
- "Throwable": 1,
- "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,
- "ss": 8,
- "mapM_": 5,
- "putStrLn": 2,
- "|": 62,
- "x.getClass.getName": 1,
- "y": 15,
- "sum": 2,
- "map": 49,
- "length": 20,
- "package": 2,
- "examples.Sudoku": 1,
- "Data.TreeMap": 1,
- "Tree": 4,
- "keys": 2,
- "Data.List": 1,
- "DL": 1,
- "hiding": 1,
- "find": 20,
- "union": 10,
- "Element": 6,
- "Zelle": 8,
- "set": 4,
- "candidates": 18,
- "Position": 22,
- "Feld": 3,
- "Brett": 13,
- "for": 25,
- "assumptions": 10,
- "conclusions": 2,
- "Assumption": 21,
- "ISNOT": 14,
- "IS": 16,
- "derive": 2,
- "Eq": 1,
- "Ord": 1,
- "instance": 1,
- "Show": 1,
- "p": 72,
- "e": 15,
- "pname": 10,
- "e.show": 2,
- "showcs": 5,
- "cs": 27,
- "joined": 4,
- "Assumption.show": 1,
- "elements": 12,
- "all": 22,
- "possible": 2,
- "..": 1,
- "positions": 16,
- "rowstarts": 4,
- "row": 20,
- "starting": 3,
- "colstarts": 3,
- "column": 2,
- "boxstarts": 3,
- "box": 15,
- "boxmuster": 3,
- "pattern": 1,
- "by": 3,
- "adding": 1,
- "upper": 2,
- "position": 9,
- "results": 1,
- "real": 1,
- "extract": 2,
- "field": 9,
- "getf": 16,
- "f": 19,
- "fs": 22,
- "fst": 9,
- "otherwise": 8,
- "cell": 24,
- "getc": 12,
- "b": 113,
- "snd": 20,
- "compute": 5,
- "list": 7,
- "that": 18,
- "belong": 3,
- "same": 8,
- "given": 3,
- "z..": 1,
- "z": 12,
- "quot": 1,
- "col": 17,
- "mod": 3,
- "ri": 2,
- "div": 3,
- "or": 15,
- "depending": 1,
- "on": 4,
- "ci": 3,
- "index": 3,
- "middle": 2,
- "check": 2,
- "if": 5,
- "candidate": 10,
- "has": 2,
- "exactly": 2,
- "one": 2,
- "member": 1,
- "i.e.": 1,
- "been": 1,
- "solved": 1,
- "single": 9,
- "Bool": 2,
- "true": 16,
- "false": 13,
- "unsolved": 10,
- "rows": 4,
- "cols": 6,
- "boxes": 1,
- "allrows": 8,
- "allcols": 5,
- "allboxs": 5,
- "allrcb": 5,
- "zip": 7,
- "repeat": 3,
- "containers": 6,
- "PRINTING": 1,
- "printable": 1,
- "coordinate": 1,
- "a1": 3,
- "lower": 1,
- "i9": 1,
- "packed": 1,
- "chr": 2,
- "ord": 6,
- "board": 41,
- "printb": 4,
- "p1line": 2,
- "pfld": 4,
- "line": 2,
- "brief": 1,
- "no": 4,
- "some": 2,
- "zs": 1,
- "initial/final": 1,
- "msg": 6,
- "res012": 2,
- "concatMap": 1,
- "a*100": 1,
- "b*10": 1,
- "BOARD": 1,
- "ALTERATION": 1,
- "ACTIONS": 1,
- "message": 1,
- "about": 1,
- "what": 1,
- "done": 1,
- "turnoff1": 3,
- "i": 16,
- "off": 11,
- "nc": 7,
- "head": 19,
- "newb": 7,
- "filter": 26,
- "notElem": 7,
- "turnoff": 11,
- "turnoffh": 1,
- "ps": 8,
- "foldM": 2,
- "toh": 2,
- "setto": 3,
- "cname": 4,
- "nf": 2,
- "SOLVING": 1,
- "STRATEGIES": 1,
- "reduce": 3,
- "sets": 2,
- "contains": 1,
- "numbers": 1,
- "already": 1,
- "finds": 1,
- "logs": 1,
- "NAKED": 5,
- "SINGLEs": 1,
- "passing.": 1,
- "sss": 3,
- "each": 2,
- "with": 15,
- "more": 2,
- "than": 2,
- "fields": 6,
- "are": 6,
- "rcb": 16,
- "elem": 16,
- "collect": 1,
- "remove": 3,
- "from": 7,
- "look": 10,
- "number": 4,
- "appears": 1,
- "container": 9,
- "this": 2,
- "can": 9,
- "go": 1,
- "other": 2,
- "place": 1,
- "HIDDEN": 6,
- "SINGLE": 1,
- "hiddenSingle": 2,
- "select": 1,
- "containername": 1,
- "FOR": 11,
- "IN": 9,
- "occurs": 5,
- "PAIRS": 8,
- "TRIPLES": 8,
- "QUADS": 2,
- "nakedPair": 4,
- "t": 14,
- "nm": 6,
- "SELECT": 3,
- "pos": 5,
- "tuple": 2,
- "name": 2,
- "//": 8,
- "u": 6,
- "fold": 7,
- "non": 2,
- "outof": 6,
- "tuples": 2,
- "hit": 7,
- "subset": 3,
- "any": 3,
- "hiddenPair": 4,
- "minus": 2,
- "uniq": 4,
- "sort": 4,
- "common": 4,
- "bs": 7,
- "undefined": 1,
- "cannot": 1,
- "happen": 1,
- "because": 1,
- "either": 1,
- "empty": 4,
- "not": 5,
- "intersectionlist": 2,
- "intersections": 2,
- "reason": 8,
- "reson": 1,
- "cpos": 7,
- "WHERE": 2,
- "tail": 2,
- "intersection": 1,
- "we": 5,
- "occurences": 1,
- "XY": 2,
- "Wing": 2,
- "there": 6,
- "exists": 6,
- "A": 7,
- "X": 5,
- "Y": 4,
- "B": 5,
- "Z": 6,
- "shares": 2,
- "reasoning": 1,
- "will": 4,
- "be": 9,
- "since": 1,
- "indeed": 1,
- "thus": 1,
- "see": 1,
- "xyWing": 2,
- "rcba": 4,
- "share": 1,
- "b1": 11,
- "b2": 10,
- "&&": 9,
- "||": 2,
- "then": 1,
- "else": 1,
- "c1": 4,
- "c2": 3,
- "N": 5,
- "Fish": 1,
- "Swordfish": 1,
- "Jellyfish": 1,
- "When": 2,
- "particular": 1,
- "digit": 1,
- "located": 2,
- "only": 1,
- "columns": 2,
- "eliminate": 1,
- "those": 2,
- "which": 2,
- "fish": 7,
- "fishname": 5,
- "rset": 4,
- "certain": 1,
- "rflds": 2,
- "rowset": 1,
- "colss": 3,
- "must": 4,
- "appear": 1,
- "at": 3,
- "least": 3,
- "cstart": 2,
- "immediate": 1,
- "consequences": 6,
- "assumption": 8,
- "form": 1,
- "conseq": 3,
- "cp": 3,
- "two": 1,
- "contradict": 2,
- "contradicts": 7,
- "get": 3,
- "aPos": 5,
- "List": 1,
- "turned": 1,
- "when": 2,
- "true/false": 1,
- "toClear": 7,
- "whose": 1,
- "implications": 5,
- "themself": 1,
- "chain": 2,
- "paths": 12,
- "solution": 6,
- "reverse": 4,
- "css": 7,
- "yields": 1,
- "contradictory": 1,
- "chainContra": 2,
- "pro": 7,
- "contra": 4,
- "ALL": 2,
- "conlusions": 1,
- "uniqBy": 2,
- "using": 2,
- "sortBy": 2,
- "comparing": 2,
- "conslusion": 1,
- "chains": 4,
- "LET": 1,
- "BE": 1,
- "final": 2,
- "conclusion": 4,
- "THE": 1,
- "FIRST": 1,
- "implication": 2,
- "ai": 2,
- "so": 1,
- "a0": 1,
- "OR": 7,
- "a2": 2,
- "...": 2,
- "IMPLIES": 1,
- "For": 2,
- "cells": 1,
- "pi": 2,
- "have": 1,
- "construct": 2,
- "p0": 1,
- "p1": 1,
- "c0": 1,
- "cellRegionChain": 2,
- "os": 3,
- "cellas": 2,
- "regionas": 2,
- "iss": 3,
- "ass": 2,
- "first": 2,
- "candidates@": 1,
- "region": 2,
- "oss": 2,
- "Liste": 1,
- "aller": 1,
- "Annahmen": 1,
- "ein": 1,
- "bestimmtes": 1,
- "acstree": 3,
- "Tree.fromList": 1,
- "bypass": 1,
- "maybe": 1,
- "tree": 1,
- "lookup": 2,
- "error": 1,
- "performance": 1,
- "resons": 1,
- "confine": 1,
- "ourselves": 1,
- "20": 1,
- "per": 1,
- "mkPaths": 3,
- "acst": 3,
- "impl": 2,
- "{": 1,
- "a3": 1,
- "ordered": 1,
- "impls": 2,
- "ns": 2,
- "concat": 1,
- "takeUntil": 1,
- "null": 1,
- "iterate": 1,
- "expandchain": 3,
- "avoid": 1,
- "loops": 1,
- "uni": 3,
- "SOLVE": 1,
- "SUDOKU": 1,
- "Apply": 1,
- "available": 1,
- "strategies": 1,
- "until": 1,
- "changes": 1,
- "anymore": 1,
- "Strategy": 1,
- "functions": 2,
- "supposed": 1,
- "applied": 1,
- "changed": 1,
- "board.": 1,
- "strategy": 2,
- "anything": 1,
- "alter": 1,
- "it": 2,
- "next": 1,
- "tried.": 1,
- "solve": 19,
- "res@": 16,
- "apply": 17,
- "res": 16,
- "smallest": 1,
- "comment": 16,
- "SINGLES": 1,
- "locked": 1,
- "2": 3,
- "QUADRUPELS": 6,
- "3": 3,
- "4": 3,
- "WINGS": 1,
- "FISH": 3,
- "pcomment": 2,
- "9": 5,
- "forcing": 1,
- "allow": 1,
- "infer": 1,
- "both": 1,
- "brd": 2,
- "com": 5,
- "stderr": 3,
- "<<": 4,
- "log": 1,
- "turn": 1,
- "string": 3,
- "into": 1,
- "mkrow": 2,
- "mkrow1": 2,
- "xs": 4,
- "make": 1,
- "sure": 1,
- "unpacked": 2,
- "<=>": 1,
- "0": 2,
- "ignored": 1,
- "h": 1,
- "help": 1,
- "usage": 1,
- "Sudoku": 2,
- "file": 4,
- "81": 3,
- "char": 1,
- "consisting": 1,
- "digits": 2,
- "One": 1,
- "such": 1,
- "going": 1,
- "http": 3,
- "www": 1,
- "sudokuoftheday": 1,
- "pages": 1,
- "o": 1,
- "php": 1,
- "click": 1,
- "puzzle": 1,
- "open": 1,
- "tab": 1,
- "Copy": 1,
- "address": 1,
- "your": 1,
- "browser": 1,
- "There": 1,
- "also": 1,
- "hard": 1,
- "sudokus": 1,
- "examples": 1,
- "top95": 1,
- "txt": 1,
- "W": 1,
- "felder": 2,
- "decode": 4,
- "files": 2,
- "forM_": 1,
- "sudoku": 2,
- "openReader": 1,
- "lines": 2,
- "BufferedReader.getLines": 1,
- "process": 5,
- "candi": 2,
- "consider": 3,
- "acht": 4,
- "neun": 2,
- "examples.SwingExamples": 1,
- "Java.Awt": 1,
- "ActionListener": 2,
- "Java.Swing": 1,
- "rs": 2,
- "Runnable.new": 1,
- "helloWorldGUI": 2,
- "buttonDemoGUI": 2,
- "celsiusConverterGUI": 2,
- "invokeLater": 1,
- "tempTextField": 2,
- "JTextField.new": 1,
- "celsiusLabel": 1,
- "JLabel.new": 3,
- "convertButton": 1,
- "JButton.new": 3,
- "fahrenheitLabel": 1,
- "frame": 3,
- "JFrame.new": 3,
- "frame.setDefaultCloseOperation": 3,
- "JFrame.dispose_on_close": 3,
- "frame.setTitle": 1,
- "celsiusLabel.setText": 1,
- "convertButton.setText": 1,
- "convertButtonActionPerformed": 2,
- "celsius": 3,
- "getText": 1,
- "double": 1,
- "fahrenheitLabel.setText": 3,
- "c*1.8": 1,
- ".long": 1,
- "ActionListener.new": 2,
- "convertButton.addActionListener": 1,
- "contentPane": 2,
- "frame.getContentPane": 2,
- "layout": 2,
- "GroupLayout.new": 1,
- "contentPane.setLayout": 1,
- "TODO": 1,
- "continue": 1,
- "//docs.oracle.com/javase/tutorial/displayCode.html": 1,
- "code": 1,
- "//docs.oracle.com/javase/tutorial/uiswing/examples/learn/CelsiusConverterProject/src/learn/CelsiusConverterGUI.java": 1,
- "frame.pack": 3,
- "frame.setVisible": 3,
- "label": 2,
- "cp.add": 1,
- "newContentPane": 2,
- "JPanel.new": 1,
- "JButton": 4,
- "b1.setVerticalTextPosition": 1,
- "SwingConstants.center": 2,
- "b1.setHorizontalTextPosition": 1,
- "SwingConstants.leading": 2,
- "b2.setVerticalTextPosition": 1,
- "b2.setHorizontalTextPosition": 1,
- "b3": 7,
- "Enable": 1,
- "button": 1,
- "setVerticalTextPosition": 1,
- "SwingConstants": 2,
- "center": 1,
- "setHorizontalTextPosition": 1,
- "leading": 1,
- "setEnabled": 7,
- "action1": 2,
- "action3": 2,
- "b1.addActionListener": 1,
- "b3.addActionListener": 1,
- "newContentPane.add": 3,
- "newContentPane.setOpaque": 1,
- "frame.setContentPane": 1
- },
- "Game Maker Language": {
- "//draws": 1,
- "the": 62,
- "sprite": 12,
- "draw": 3,
- "true": 73,
- ";": 1282,
- "if": 397,
- "(": 1501,
- "facing": 17,
- "RIGHT": 10,
- ")": 1502,
- "image_xscale": 17,
- "-": 212,
- "else": 151,
- "blinkToggle": 1,
- "{": 300,
- "state": 50,
- "CLIMBING": 5,
- "or": 78,
- "sprite_index": 14,
- "sPExit": 1,
- "sDamselExit": 1,
- "sTunnelExit": 1,
- "and": 155,
- "global.hasJetpack": 4,
- "not": 63,
- "whipping": 5,
- "draw_sprite_ext": 10,
- "x": 76,
- "y": 85,
- "image_yscale": 14,
- "image_angle": 14,
- "image_blend": 2,
- "image_alpha": 10,
- "//draw_sprite": 1,
- "draw_sprite": 9,
- "sJetpackBack": 1,
- "false": 85,
- "}": 307,
- "sJetpackRight": 1,
- "sJetpackLeft": 1,
- "+": 206,
- "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,
- "hangCountMax": 2,
- "//////////////////////////////////////": 2,
- "kLeft": 12,
- "checkLeft": 1,
- "kLeftPushedSteps": 3,
- "kLeftPressed": 2,
- "checkLeftPressed": 1,
- "kLeftReleased": 3,
- "checkLeftReleased": 1,
- "kRight": 12,
- "checkRight": 1,
- "kRightPushedSteps": 3,
- "kRightPressed": 2,
- "checkRightPressed": 1,
- "kRightReleased": 3,
- "checkRightReleased": 1,
- "kUp": 5,
- "checkUp": 1,
- "kDown": 5,
- "checkDown": 1,
- "//key": 1,
- "canRun": 1,
- "kRun": 2,
- "kJump": 6,
- "checkJump": 1,
- "kJumpPressed": 11,
- "checkJumpPressed": 1,
- "kJumpReleased": 5,
- "checkJumpReleased": 1,
- "cantJump": 3,
- "global.isTunnelMan": 1,
- "sTunnelAttackL": 1,
- "holdItem": 1,
- "kAttack": 2,
- "checkAttack": 2,
- "kAttackPressed": 2,
- "checkAttackPressed": 1,
- "kAttackReleased": 2,
- "checkAttackReleased": 1,
- "kItemPressed": 2,
- "checkItemPressed": 1,
- "xPrev": 1,
- "yPrev": 1,
- "stunned": 3,
- "dead": 3,
- "//////////////////////////////////////////": 2,
- "colSolidLeft": 4,
- "colSolidRight": 3,
- "colLeft": 6,
- "colRight": 6,
- "colTop": 4,
- "colBot": 11,
- "colLadder": 3,
- "colPlatBot": 6,
- "colPlat": 5,
- "colWaterTop": 3,
- "colIceBot": 2,
- "runKey": 4,
- "isCollisionMoveableSolidLeft": 1,
- "isCollisionMoveableSolidRight": 1,
- "isCollisionLeft": 2,
- "isCollisionRight": 2,
- "isCollisionTop": 1,
- "isCollisionBottom": 1,
- "isCollisionLadder": 1,
- "isCollisionPlatformBottom": 1,
- "isCollisionPlatform": 1,
- "isCollisionWaterTop": 1,
- "collision_point": 30,
- "oIce": 1,
- "checkRun": 1,
- "runHeld": 3,
- "HANGING": 10,
- "approximatelyZero": 4,
- "xVel": 24,
- "xAcc": 12,
- "platformCharacterIs": 23,
- "ON_GROUND": 18,
- "DUCKING": 4,
- "pushTimer": 3,
- "//if": 5,
- "SS_IsSoundPlaying": 2,
- "global.sndPush": 4,
- "playSound": 3,
- "runAcc": 2,
- "abs": 9,
- "alarm": 13,
- "[": 99,
- "]": 103,
- "<": 39,
- "floor": 11,
- "/": 5,
- "/xVel": 1,
- "instance_exists": 8,
- "oCape": 2,
- "oCape.open": 6,
- "kJumped": 7,
- "ladderTimer": 4,
- "ladder": 5,
- "oLadder": 4,
- "ladder.x": 3,
- "oLadderTop": 2,
- "yAcc": 26,
- "climbAcc": 2,
- "FALLING": 8,
- "STANDING": 2,
- "departLadderXVel": 2,
- "departLadderYVel": 1,
- "JUMPING": 6,
- "jumpButtonReleased": 7,
- "jumpTime": 8,
- "IN_AIR": 5,
- "gravityIntensity": 2,
- "yVel": 20,
- "RUNNING": 3,
- "jumps": 3,
- "//playSound": 1,
- "global.sndLand": 1,
- "grav": 22,
- "global.hasGloves": 3,
- "hangCount": 14,
- "*": 18,
- "yVel*0.3": 1,
- "oWeb": 2,
- "obj": 14,
- "instance_place": 3,
- "obj.life": 1,
- "initialJumpAcc": 6,
- "xVel/2": 3,
- "gravNorm": 7,
- "global.hasCape": 1,
- "jetpackFuel": 2,
- "fallTimer": 2,
- "global.hasJordans": 1,
- "yAccLimit": 2,
- "global.hasSpringShoes": 1,
- "global.sndJump": 1,
- "jumpTimeTotal": 2,
- "//let": 1,
- "character": 20,
- "continue": 4,
- "to": 62,
- "jump": 1,
- "jumpTime/jumpTimeTotal": 1,
- "looking": 2,
- "UP": 1,
- "LOOKING_UP": 4,
- "oSolid": 14,
- "move_snap": 6,
- "oTree": 4,
- "oArrow": 5,
- "instance_nearest": 1,
- "obj.stuck": 1,
- "//the": 2,
- "can": 1,
- "t": 23,
- "want": 1,
- "use": 4,
- "because": 2,
- "is": 9,
- "too": 2,
- "high": 1,
- "yPrevHigh": 1,
- "//": 11,
- "we": 5,
- "ll": 1,
- "move": 2,
- "correct": 1,
- "distance": 1,
- "but": 2,
- "need": 1,
- "shorten": 1,
- "out": 4,
- "a": 55,
- "little": 1,
- "ratio": 1,
- "xVelInteger": 2,
- "/dist*0.9": 1,
- "//can": 1,
- "be": 4,
- "changed": 1,
- "moveTo": 2,
- "round": 6,
- "xVelInteger*ratio": 1,
- "yVelInteger*ratio": 1,
- "slopeChangeInY": 1,
- "maxDownSlope": 1,
- "floating": 1,
- "just": 1,
- "above": 1,
- "slope": 1,
- "so": 2,
- "down": 1,
- "upYPrev": 1,
- "for": 26,
- "<=upYPrev+maxDownSlope;y+=1)>": 1,
- "hit": 1,
- "solid": 1,
- "below": 1,
- "upYPrev=": 1,
- "I": 1,
- "know": 1,
- "that": 2,
- "this": 2,
- "doesn": 1,
- "seem": 1,
- "make": 1,
- "sense": 1,
- "of": 25,
- "name": 9,
- "variable": 1,
- "it": 6,
- "all": 3,
- "works": 1,
- "correctly": 1,
- "after": 1,
- "break": 58,
- "loop": 1,
- "y=": 1,
- "figures": 1,
- "what": 1,
- "index": 11,
- "should": 25,
- "characterSprite": 1,
- "sets": 1,
- "previous": 2,
- "previously": 1,
- "statePrevPrev": 1,
- "statePrev": 2,
- "calculates": 1,
- "image_speed": 9,
- "based": 1,
- "on": 4,
- "s": 6,
- "velocity": 1,
- "runAnimSpeed": 1,
- "0": 21,
- "1": 32,
- "sqrt": 1,
- "sqr": 2,
- "climbAnimSpeed": 1,
- "<=>": 3,
- "4": 2,
- "setCollisionBounds": 3,
- "8": 9,
- "5": 5,
- "DUCKTOHANG": 1,
- "image_index": 1,
- "limit": 5,
- "at": 23,
- "animation": 1,
- "always": 1,
- "looks": 1,
- "good": 1,
- "var": 79,
- "i": 95,
- "playerObject": 1,
- "playerID": 1,
- "player": 36,
- "otherPlayerID": 1,
- "otherPlayer": 1,
- "sameVersion": 1,
- "buffer": 1,
- "plugins": 4,
- "pluginsRequired": 2,
- "usePlugins": 1,
- "tcp_eof": 3,
- "global.serverSocket": 10,
- "gotServerHello": 2,
- "show_message": 7,
- "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,
- "Server": 3,
- "sent": 7,
- "illegal": 2,
- "map": 47,
- "This": 2,
- "server": 10,
- "requires": 1,
- "following": 2,
- "play": 2,
- "#": 3,
- "suggests": 1,
- "optional": 1,
- "Error": 2,
- "ocurred": 1,
- "loading": 1,
- "plugins.": 1,
- "Maps/": 2,
- ".png": 2,
- "The": 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,
- "are": 1,
- "many": 1,
- "connections": 1,
- "from": 5,
- "your": 1,
- "IP": 1,
- "You": 1,
- "have": 2,
- "been": 1,
- "kicked": 1,
- "server.": 1,
- ".": 12,
- "#Server": 1,
- "went": 1,
- "invalid": 1,
- "internal": 1,
- "#Exiting.": 1,
- "full.": 1,
- "noone": 7,
- "ERROR": 1,
- "when": 1,
- "reading": 1,
- "no": 1,
- "such": 1,
- "unexpected": 1,
- "data.": 1,
- "until": 1,
- "downloadHandle": 3,
- "url": 62,
- "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,
- "download": 1,
- "isn": 1,
- "extract": 1,
- "downloaded": 1,
- "file": 2,
- "now.": 1,
- "extractzip": 1,
- "working_directory": 6,
- "execute_program": 1,
- "game_end": 1,
- "victim": 10,
- "killer": 11,
- "assistant": 16,
- "damageSource": 18,
- "argument0": 28,
- "argument1": 10,
- "argument2": 3,
- "argument3": 1,
- "//*************************************": 6,
- "//*": 3,
- "Scoring": 1,
- "Kill": 1,
- "log": 1,
- "recordKillInLog": 1,
- "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,
- "victim.object.intel": 1,
- "DEFENSES": 2,
- "recordEventInLog": 1,
- "killer.team": 1,
- "killer.name": 2,
- "global.myself": 4,
- "assistant.stats": 2,
- "ASSISTS": 2,
- "assistant.roundStats": 2,
- ".5": 2,
- "//SPEC": 1,
- "instance_create": 20,
- "victim.object.x": 3,
- "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,
- "with": 47,
- "victim.object": 2,
- "WEAPON_ROCKETLAUNCHER": 1,
- "WEAPON_MINEGUN": 1,
- "FRAG_BOX": 2,
- "WEAPON_REFLECTED_STICKY": 1,
- "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,
- "repeat": 7,
- "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,
- "blood.hspeed": 1,
- "blood.vspeed": 1,
- "blood.sprite_index": 1,
- "PumpkinJuiceS": 1,
- "//All": 1,
- "Classes": 1,
- "gib": 1,
- "head": 1,
- "hands": 2,
- "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,
- "DeathSnd2": 1,
- "DeadGuy": 1,
- "deadbody.sprite_index": 2,
- "haxxyStatue": 1,
- "deadbody.image_index": 2,
- "CHARACTER_ANIMATION_DEAD": 1,
- "deadbody.hspeed": 1,
- "deadbody.vspeed": 1,
- "deadbody.image_xscale": 1,
- "global.gg_birthday": 1,
- "myHat": 2,
- "PartyHat": 1,
- "myHat.image_index": 2,
- "victim.team": 2,
- "global.xmas": 1,
- "XmasHat": 1,
- "Deathcam": 1,
- "global.killCam": 3,
- "KILL_BOX": 1,
- "FINISHED_OFF": 5,
- "DeathCam": 1,
- "DeathCam.killedby": 1,
- "DeathCam.name": 1,
- "DeathCam.oldxview": 1,
- "DeathCam.oldyview": 1,
- "DeathCam.lastDamageSource": 1,
- "DeathCam.team": 1,
- "global.myself.team": 3,
- "xr": 19,
- "yr": 19,
- "cloakAlpha": 1,
- "team": 13,
- "canCloak": 1,
- "cloakAlpha/2": 1,
- "invisible": 1,
- "stabbing": 2,
- "power": 1,
- "currentWeapon.stab.alpha": 1,
- "&&": 6,
- "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,
- "showTeammateStats": 1,
- "weapons": 3,
- "50": 3,
- "Superburst": 1,
- "string": 13,
- "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,
- "omnomnomnom": 2,
- "draw_sprite_ext_overlay": 7,
- "omnomnomnomSprite": 2,
- "omnomnomnomOverlay": 2,
- "omnomnomnomindex": 4,
- "c_white": 13,
- "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,
- "#define": 26,
- "__http_init": 3,
- "global.__HttpClient": 4,
- "object_add": 1,
- "object_set_persistent": 1,
- "__http_split": 3,
- "text": 19,
- "delimeter": 7,
- "list": 36,
- "count": 4,
- "ds_list_create": 5,
- "ds_list_add": 23,
- "string_copy": 32,
- "string_length": 25,
- "return": 56,
- "__http_parse_url": 4,
- "ds_map_create": 4,
- "ds_map_add": 15,
- "colonPos": 22,
- "string_char_at": 13,
- "slashPos": 13,
- "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,
- "__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,
- "show_error": 2,
- "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,
- "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,
- "socket_has_error": 1,
- "socket_error": 1,
- "__http_client_destroy": 20,
- "available": 7,
- "tcp_receive_available": 1,
- "bytesRead": 6,
- "c": 20,
- "read_string": 9,
- "Reached": 2,
- "end": 11,
- "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,
- "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,
- "transfer": 6,
- "encoding": 2,
- "chunked": 4,
- "Chunked": 1,
- "let": 1,
- "decode": 36,
- "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,
- "did": 1,
- "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,
- "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,
- "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.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_HEAVY": 2,
- "CLASS_DEMOMAN": 1,
- "CLASS_SPY": 1,
- "//screw": 1,
- "will": 1,
- "start": 1,
- "//map_truefort": 1,
- "maps": 37,
- "//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,
- "Maps": 9,
- "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,
- "__jso_gmt_tuple": 1,
- "//Position": 1,
- "address": 1,
- "table": 1,
- "pos": 2,
- "addr_table": 2,
- "*argument_count": 1,
- "//Build": 1,
- "tuple": 1,
- "ca": 1,
- "isstr": 1,
- "datastr": 1,
- "argument_count": 1,
- "//Check": 1,
- "argument": 10,
- "Unexpected": 18,
- "position": 16,
- "f": 5,
- "JSON": 5,
- "string.": 5,
- "Cannot": 5,
- "parse": 3,
- "boolean": 3,
- "value": 13,
- "expecting": 9,
- "digit.": 9,
- "e": 4,
- "E": 4,
- "dot": 1,
- "an": 24,
- "integer": 6,
- "Expected": 6,
- "least": 6,
- "arguments": 26,
- "got": 6,
- "find": 10,
- "lookup.": 4,
- "indices": 1,
- "nested": 27,
- "lists": 6,
- "Index": 1,
- "overflow": 4,
- "Recursive": 1,
- "abcdef": 1,
- "number": 7,
- "num": 1,
- "assert_true": 1,
- "_assert_error_popup": 2,
- "string_repeat": 2,
- "_assert_newline": 2,
- "assert_false": 1,
- "assert_equal": 1,
- "//Safe": 1,
- "equality": 1,
- "check": 1,
- "won": 1,
- "support": 1,
- "instead": 1,
- "_assert_debug_value": 1,
- "//String": 1,
- "os_browser": 1,
- "browser_not_a_browser": 1,
- "string_replace_all": 1,
- "//Numeric": 1,
- "GMTuple": 1,
- "jso_encode_string": 1,
- "encode": 8,
- "escape": 2,
- "jso_encode_map": 4,
- "one": 42,
- "key1": 3,
- "key2": 3,
- "multi": 7,
- "jso_encode_list": 3,
- "three": 36,
- "_jso_decode_string": 5,
- "small": 1,
- "quick": 2,
- "brown": 2,
- "fox": 2,
- "over": 2,
- "lazy": 2,
- "dog.": 2,
- "simple": 1,
- "Waahoo": 1,
- "negg": 1,
- "mixed": 1,
- "_jso_decode_boolean": 2,
- "_jso_decode_real": 11,
- "standard": 1,
- "zero": 4,
- "signed": 2,
- "decimal": 1,
- "digits": 1,
- "positive": 7,
- "negative": 7,
- "exponent": 4,
- "_jso_decode_integer": 3,
- "_jso_decode_map": 14,
- "didn": 14,
- "include": 14,
- "right": 14,
- "prefix": 14,
- "#1": 14,
- "#2": 14,
- "entry": 29,
- "pi": 2,
- "bool": 2,
- "waahoo": 10,
- "woohah": 8,
- "mix": 4,
- "_jso_decode_list": 14,
- "woo": 2,
- "Empty": 4,
- "equal": 20,
- "other.": 12,
- "junk": 2,
- "info": 1,
- "taxi": 1,
- "An": 4,
- "filled": 4,
- "map.": 2,
- "A": 24,
- "B": 18,
- "C": 8,
- "same": 6,
- "content": 4,
- "entered": 4,
- "different": 12,
- "orders": 4,
- "D": 1,
- "keys": 2,
- "values": 4,
- "six": 1,
- "corresponding": 4,
- "types": 4,
- "other": 4,
- "crash.": 4,
- "list.": 2,
- "Lists": 4,
- "two": 16,
- "entries": 2,
- "also": 2,
- "jso_map_check": 9,
- "existing": 9,
- "single": 11,
- "jso_map_lookup": 3,
- "wrong": 10,
- "trap": 2,
- "jso_map_lookup_type": 3,
- "type": 8,
- "four": 21,
- "inexistent": 11,
- "multiple": 20,
- "jso_list_check": 8,
- "jso_list_lookup": 3,
- "jso_list_lookup_type": 3,
- "inner": 1,
- "indexing": 1,
- "bad": 1,
- "jso_cleanup_map": 1,
- "one_map": 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,
- "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,
- "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,
- "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,
- "global.levelType": 22,
- "//global.currLevel": 1,
- "global.currLevel": 22,
- "global.hadDarkLevel": 4,
- "global.startRoomX": 1,
- "global.startRoomY": 1,
- "global.endRoomX": 1,
- "global.endRoomY": 1,
- "oGame.levelGen": 2,
- "j": 14,
- "global.roomPath": 1,
- "k": 5,
- "global.lake": 3,
- "isLevel": 1,
- "999": 2,
- "levelType": 2,
- "16": 14,
- "656": 3,
- "oDark": 2,
- "invincible": 2,
- "sDark": 1,
- "oTemple": 2,
- "cityOfGold": 1,
- "sTemple": 2,
- "lake": 1,
- "i*16": 8,
- "j*16": 6,
- "oLush": 2,
- "obj.sprite_index": 4,
- "sLush": 2,
- "obj.invincible": 3,
- "oBrick": 1,
- "sBrick": 1,
- "global.cityOfGold": 2,
- "*16": 2,
- "//instance_create": 2,
- "oSpikes": 1,
- "background_index": 1,
- "bgTemple": 1,
- "global.temp1": 1,
- "global.gameStart": 3,
- "scrLevelGen": 1,
- "global.cemetary": 3,
- "rand": 10,
- "global.probCemetary": 1,
- "oRoom": 1,
- "scrRoomGen": 1,
- "global.blackMarket": 3,
- "scrRoomGenMarket": 1,
- "scrRoomGen2": 1,
- "global.yetiLair": 2,
- "scrRoomGenYeti": 1,
- "scrRoomGen3": 1,
- "scrRoomGen4": 1,
- "scrRoomGen5": 1,
- "global.darkLevel": 4,
- "global.noDarkLevel": 1,
- "global.probDarkLevel": 1,
- "oPlayer1.x": 2,
- "oPlayer1.y": 2,
- "oFlare": 1,
- "global.genUdjatEye": 4,
- "global.madeUdjatEye": 1,
- "global.genMarketEntrance": 4,
- "global.madeMarketEntrance": 1,
- "////////////////////////////": 2,
- "global.temp2": 1,
- "isRoom": 3,
- "scrEntityGen": 1,
- "oEntrance": 1,
- "global.customLevel": 1,
- "oEntrance.x": 1,
- "oEntrance.y": 1,
- "global.snakePit": 1,
- "global.alienCraft": 1,
- "global.sacrificePit": 1,
- "oPlayer1": 1,
- "scrSetupWalls": 3,
- "global.graphicsHigh": 1,
- "tile_add": 4,
- "bgExtrasLush": 1,
- "*rand": 12,
- "bgExtrasIce": 1,
- "bgExtrasTemple": 1,
- "bgExtras": 1,
- "global.murderer": 1,
- "global.thiefLevel": 1,
- "isRealLevel": 1,
- "oExit": 1,
- "oShopkeeper": 1,
- "obj.status": 1,
- "oTreasure": 1,
- "oWater": 1,
- "sWaterTop": 1,
- "sLavaTop": 1,
- "scrCheckWaterTop": 1,
- "global.temp3": 1
- },
- "GAP": {
- "#############################################################################": 63,
- "##": 766,
- "#W": 4,
- "example.gd": 2,
- "This": 10,
- "file": 7,
- "contains": 7,
- "a": 113,
- "sample": 2,
- "of": 114,
- "GAP": 15,
- "declaration": 1,
- "file.": 3,
- "DeclareProperty": 2,
- "(": 721,
- "IsLeftModule": 6,
- ")": 722,
- ";": 569,
- "DeclareGlobalFunction": 5,
- "#C": 7,
- "IsQuuxFrobnicator": 1,
- "": 3,
- "": 28,
- "": 7,
- "Name=": 33,
- "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,
- "implementation": 1,
- "#M": 20,
- "SomeOperation": 1,
- "": 2,
- "performs": 1,
- "some": 2,
- "operation": 1,
- "on": 5,
- "InstallMethod": 18,
- "SomeProperty": 1,
- "[": 145,
- "]": 169,
- "function": 37,
- "M": 7,
- "if": 103,
- "IsFreeLeftModule": 3,
- "not": 49,
- "IsTrivial": 1,
- "then": 128,
- "return": 41,
- "true": 21,
- "fi": 91,
- "TryNextMethod": 7,
- "end": 34,
- "#F": 17,
- "SomeGlobalFunction": 2,
- "A": 9,
- "global": 1,
- "variadic": 1,
- "funfion.": 1,
- "InstallGlobalFunction": 5,
- "arg": 16,
- "Length": 14,
- "+": 9,
- "*": 12,
- "elif": 21,
- "-": 67,
- "else": 25,
- "Error": 7,
- "#": 73,
- "SomeFunc": 1,
- "x": 14,
- "y": 8,
- "local": 16,
- "z": 3,
- "func": 3,
- "tmp": 20,
- "j": 3,
- "mod": 2,
- "List": 6,
- "while": 5,
- "do": 18,
- "for": 53,
- "in": 64,
- "Print": 24,
- "od": 15,
- "repeat": 1,
- "until": 1,
- "<": 17,
- "Magic.gd": 1,
- "AutoDoc": 4,
- "package": 10,
- "Copyright": 6,
- "Max": 2,
- "Horn": 2,
- "JLU": 2,
- "Giessen": 2,
- "Sebastian": 2,
- "Gutsche": 2,
- "University": 4,
- "Kaiserslautern": 2,
- "SHEBANG#!#! @Description": 1,
- "SHEBANG#!#! This": 1,
- "SHEBANG#!#! any": 1,
- "SHEBANG#!#! ": 1,
- "SHEBANG#!#! - ": 5,
- "SHEBANG#!#! It": 3,
- "SHEBANG#!#! That": 1,
- "SHEBANG#!#! of": 1,
- "SHEBANG#!#! (with": 1,
- "SHEBANG#!#! main": 1,
- "SHEBANG#!#! XML": 1,
- "SHEBANG#!#! other": 1,
- "SHEBANG#!#! as": 1,
- "SHEBANG#!#! to": 2,
- "SHEBANG#!#! Secondly,": 1,
- "SHEBANG#!#! page": 1,
- "SHEBANG#!#! (name,": 1,
- "SHEBANG#!#! on": 1,
- "SHEBANG#!Item>": 25,
- "SHEBANG#!#! tags": 1,
- "SHEBANG#!#! This": 1,
- "SHEBANG#!#! produce": 1,
- "SHEBANG#!#! MathJaX": 1,
- "SHEBANG#!#! generated": 1,
- "SHEBANG#!#! this,": 1,
- "SHEBANG#!#! supplementary": 1,
- "SHEBANG#!#! (see": 1,
- "SHEBANG#!Enum>": 1,
- "SHEBANG#!#! For": 1,
- "SHEBANG#!>": 11,
- "SHEBANG#!#! The": 1,
- "SHEBANG#!#!
": 1,
- "SHEBANG#!Mark>": 22,
- "SHEBANG#!#! The": 2,
- "SHEBANG#!A>": 1,
- "SHEBANG#!#! ": 1,
- "SHEBANG#!#! - ": 4,
- "SHEBANG#!#! This": 4,
- "SHEBANG#!#! Directory()": 1,
- "SHEBANG#!#! (i.e.": 1,
- "SHEBANG#!#!
Default": 1,
- "SHEBANG#!#! for": 1,
- "SHEBANG#!#! The": 3,
- "SHEBANG#!#! record.": 3,
- "SHEBANG#!#! equivalent": 3,
- "SHEBANG#!#! enabled.": 3,
- "SHEBANG#!#! package's": 1,
- "SHEBANG#!#! In": 3,
- "SHEBANG#!K>),": 3,
- "SHEBANG#!#! If": 3,
- "####": 34,
- "TODO": 3,
- "mention": 1,
- "merging": 1,
- "with": 24,
- "PackageInfo.AutoDoc": 1,
- "SHEBANG#!#! ": 3,
- "SHEBANG#!#! - ": 13,
- "SHEBANG#!#! A": 6,
- "SHEBANG#!#! If": 2,
- "SHEBANG#!#! your": 1,
- "SHEBANG#!#! you": 1,
- "SHEBANG#!#! to": 4,
- "SHEBANG#!#! is": 1,
- "SHEBANG#!#! of": 2,
- "SHEBANG#!#! This": 3,
- "SHEBANG#!#! i.e.": 1,
- "SHEBANG#!#! The": 2,
- "SHEBANG#!#! then": 1,
- "The": 21,
- "param": 1,
- "bit": 2,
- "strange.": 1,
- "We": 4,
- "should": 2,
- "probably": 2,
- "change": 1,
- "it": 8,
- "to": 37,
- "be": 24,
- "more": 3,
- "general": 1,
- "as": 23,
- "one": 11,
- "might": 1,
- "want": 1,
- "define": 2,
- "other": 4,
- "entities...": 1,
- "For": 10,
- "now": 1,
- "we": 3,
- "document": 1,
- "leave": 1,
- "us": 1,
- "the": 136,
- "choice": 1,
- "revising": 1,
- "how": 1,
- "works.": 1,
- "
": 2,
- "": 117,
- "entities": 2,
- " ": 117,
- " ": 2,
- "- ": 2,
- "list": 16,
- "names": 1,
- "or": 13,
- "which": 8,
- "are": 14,
- "used": 10,
- "corresponding": 1,
- "XML": 4,
- "entities.": 1,
- "example": 3,
- "set": 6,
- "containing": 1,
- "string": 6,
- "
": 2,
- "SomePackage": 3,
- " ": 2,
- "following": 4,
- "added": 1,
- "preamble": 1,
- "": 2,
- "CDATA": 2,
- "ENTITY": 2,
- " ": 2,
- "allows": 1,
- "you": 3,
- "write": 3,
- "&": 37,
- "amp": 1,
- "your": 1,
- "documentation": 2,
- "reference": 1,
- "that": 39,
- "package.": 2,
- "If": 11,
- "another": 1,
- "type": 2,
- "entity": 1,
- "desired": 1,
- "can": 12,
- "simply": 2,
- "add": 2,
- "instead": 1,
- "two": 13,
- "entry": 2,
- "list.": 2,
- "It": 1,
- "will": 5,
- "handled": 3,
- "so": 3,
- "please": 1,
- "careful.": 1,
- " ": 2,
- "SHEBANG#!#! for": 1,
- "SHEBANG#!#! statement": 1,
- "SHEBANG#!#! components": 2,
- "SHEBANG#!#! example,": 1,
- "SHEBANG#!#! acknowledgements": 1,
- "SHEBANG#!#! ": 6,
- "SHEBANG#!#! by": 1,
- "SHEBANG#!#! package": 1,
- "SHEBANG#!#! Usually": 2,
- "SHEBANG#!#! are": 2,
- "SHEBANG#!#! Default": 3,
- "SHEBANG#!#! When": 1,
- "SHEBANG#!#! they": 1,
- "Document": 1,
- "section_intros": 2,
- "later": 1,
- "on.": 1,
- "However": 2,
- "note": 2,
- "thanks": 1,
- "new": 2,
- "comment": 1,
- "syntax": 1,
- "only": 5,
- "remaining": 1,
- "use": 5,
- "this": 15,
- "seems": 1,
- "ability": 1,
- "specify": 3,
- "order": 1,
- "chapters": 1,
- "sections.": 1,
- "TODO.": 1,
- "SHEBANG#!#! files": 1,
- "Note": 3,
- "strictly": 1,
- "speaking": 1,
- "also": 3,
- "scaffold.": 1,
- "uses": 2,
- "scaffolding": 2,
- "mechanism": 4,
- "really": 4,
- "necessary": 2,
- "custom": 1,
- "name": 2,
- "main": 1,
- "Thus": 3,
- "purpose": 1,
- "parameter": 1,
- "cater": 1,
- "packages": 5,
- "have": 3,
- "existing": 1,
- "using": 2,
- "different": 2,
- "wish": 1,
- "scaffolding.": 1,
- "explain": 1,
- "why": 2,
- "allow": 1,
- "specifying": 1,
- "gapdoc.main.": 1,
- "code": 1,
- "still": 1,
- "honor": 1,
- "though": 1,
- "just": 1,
- "case.": 1,
- "SHEBANG#!#! In": 1,
- "maketest": 12,
- "part.": 1,
- "Still": 1,
- "under": 1,
- "construction.": 1,
- "SHEBANG#!#! - ": 1,
- "SHEBANG#!#! The": 1,
- "SHEBANG#!#! a": 1,
- "SHEBANG#!#! which": 1,
- "SHEBANG#!#! the": 1,
- "SHEBANG#!#!
": 1,
- "SHEBANG#!#! - ": 2,
- "SHEBANG#!#! Sets": 1,
- "SHEBANG#!#! A": 1,
- "SHEBANG#!#! will": 1,
- "SHEBANG#!#! @Returns": 1,
- "SHEBANG#!#! @Arguments": 1,
- "SHEBANG#!#! @ChapterInfo": 1,
- "Magic.gi": 1,
- "BindGlobal": 7,
- "str": 8,
- "suffix": 3,
- "n": 31,
- "m": 8,
- "{": 21,
- "}": 21,
- "i": 25,
- "d": 16,
- "IsDirectoryPath": 1,
- "CreateDir": 2,
- "currently": 1,
- "undocumented": 1,
- "fail": 18,
- "LastSystemError": 1,
- ".message": 1,
- "false": 7,
- "pkg": 32,
- "subdirs": 2,
- "extensions": 1,
- "d_rel": 6,
- "files": 4,
- "result": 9,
- "DirectoriesPackageLibrary": 2,
- "IsEmpty": 6,
- "continue": 3,
- "Directory": 5,
- "DirectoryContents": 1,
- "Sort": 1,
- "AUTODOC_GetSuffix": 2,
- "IsReadableFile": 2,
- "Filename": 8,
- "Add": 4,
- "Make": 1,
- "callable": 1,
- "package_name": 1,
- "AutoDocWorksheet.": 1,
- "Which": 1,
- "create": 1,
- "worksheet": 1,
- "package_info": 3,
- "opt": 3,
- "scaffold": 12,
- "gapdoc": 7,
- "autodoc": 8,
- "pkg_dir": 5,
- "doc_dir": 18,
- "doc_dir_rel": 3,
- "title_page": 7,
- "tree": 8,
- "is_worksheet": 13,
- "position_document_class": 7,
- "gapdoc_latex_option_record": 4,
- "LowercaseString": 3,
- "rec": 20,
- "DirectoryCurrent": 1,
- "PackageInfo": 1,
- "key": 3,
- "val": 4,
- "ValueOption": 1,
- "opt.": 1,
- "IsBound": 39,
- "opt.dir": 4,
- "IsString": 7,
- "IsDirectory": 1,
- "AUTODOC_CreateDirIfMissing": 1,
- "opt.scaffold": 5,
- "package_info.AutoDoc": 3,
- "IsRecord": 7,
- "IsBool": 4,
- "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,
- "autodoc.files": 7,
- "autodoc.scan_dirs": 5,
- "autodoc.level": 3,
- "PushOptions": 1,
- "level_value": 1,
- "Append": 2,
- "AUTODOC_FindMatchingFiles": 2,
- "opt.gapdoc": 5,
- "opt.maketest": 4,
- "gapdoc.main": 8,
- "package_info.PackageDoc": 3,
- ".BookName": 2,
- "gapdoc.bookname": 4,
- "#Print": 1,
- "gapdoc.files": 9,
- "gapdoc.scan_dirs": 3,
- "Set": 1,
- "Number": 1,
- "ListWithIdenticalEntries": 1,
- "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,
- "Position": 2,
- "Remove": 2,
- "JoinStringsWithSeparator": 1,
- "ReplacedString": 2,
- "Syntax": 1,
- "scaffold.document_class": 7,
- "PositionSublist": 5,
- "GAPDoc2LaTeXProcs.Head": 14,
- "..": 6,
- "scaffold.latex_header_file": 2,
- "StringFile": 2,
- "scaffold.gapdoc_latex_options": 4,
- "RecNames": 1,
- "scaffold.gapdoc_latex_options.": 5,
- "IsList": 1,
- "scaffold.includes": 4,
- "scaffold.bib": 7,
- "Unbind": 1,
- "scaffold.main_xml_file": 2,
- ".TitlePage": 1,
- "ExtractTitleInfoFromPackageInfo": 1,
- "CreateTitlePage": 1,
- "scaffold.MainPage": 2,
- "scaffold.dir": 1,
- "scaffold.book_name": 1,
- "CreateMainPage": 1,
- "WriteDocumentation": 1,
- "SetGapDocLaTeXOptions": 1,
- "MakeGAPDocDoc": 1,
- "CopyHTMLStyleFiles": 1,
- "GAPDocManualLab": 1,
- "maketest.folder": 3,
- "maketest.scan_dir": 3,
- "CreateMakeTest": 1,
- "PackageInfo.g": 2,
- "cvec": 1,
- "s": 4,
- "template": 1,
- "SetPackageInfo": 1,
- "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,
- "cases": 2,
- "recognized": 1,
- "successfully": 2,
- "refereed": 2,
- "developers": 1,
- "agreed": 1,
- "distribute": 1,
- "them": 1,
- "core": 1,
- "system": 1,
- "development": 1,
- "versions": 1,
- "all": 18,
- "You": 1,
- "must": 6,
- "provide": 2,
- "next": 6,
- "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,
- "short": 1,
- "abstract": 1,
- "explaining": 1,
- "content": 1,
- "HTML": 1,
- "overview": 1,
- "Web": 1,
- "page": 1,
- "an": 17,
- "URL": 1,
- "Webpage": 1,
- "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,
- "keyword": 1,
- "related": 1,
- "topic": 1,
- "Keywords": 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,
- "Group": 3,
- "declares": 1,
- "operations": 2,
- "vector": 67,
- "spaces.": 4,
- "bases": 5,
- "free": 3,
- "left": 15,
- "modules": 1,
- "found": 1,
- "
": 10,
- "lib/basis.gd": 1,
- ".": 257,
- "IsLeftOperatorRing": 1,
- "IsLeftOperatorAdditiveGroup": 2,
- "IsRing": 1,
- "IsAssociativeLOpDProd": 2,
- "#T": 6,
- "IsLeftOperatorRingWithOne": 2,
- "IsRingWithOne": 1,
- "IsLeftVectorSpace": 3,
- "": 38,
- "IsVectorSpace": 26,
- "<#GAPDoc>": 17,
- "Label=": 19,
- "": 12,
- "space": 74,
- " ": 12,
- "module": 2,
- "see": 30,
- "nbsp": 30,
- "[": 71,
- "Func=": 40,
- "over": 24,
- "division": 15,
- "ring": 14,
- "Chapter": 3,
- "Chap=": 3,
- "]
": 23,
- "Whenever": 1,
- "talk": 1,
- "": 42,
- "F": 61,
- " ": 41,
- "V": 152,
- "additive": 1,
- "group": 2,
- "acts": 1,
- "via": 6,
- "multiplication": 1,
- "from": 5,
- "such": 4,
- "action": 4,
- "addition": 1,
- "right": 2,
- "distributive.": 1,
- "accessed": 1,
- "value": 9,
- "attribute": 2,
- "Vector": 1,
- "spaces": 15,
- "always": 1,
- "Filt=": 4,
- "synonyms.": 1,
- "<#/GAPDoc>": 17,
- "IsLeftActedOnByDivisionRing": 4,
- "InstallTrueMethod": 4,
- "IsGaussianSpace": 10,
- "": 14,
- "filter": 3,
- "Sect=": 6,
- "row": 17,
- "matrix": 5,
- "field": 12,
- "say": 1,
- "indicates": 3,
- "vectors": 16,
- "matrices": 5,
- "respectively": 1,
- "contained": 4,
- "In": 3,
- "case": 2,
- "called": 1,
- "Gaussian": 19,
- "space.": 5,
- "Bases": 1,
- "computed": 2,
- "elimination": 5,
- "given": 4,
- "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,
- "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,
- "Attr=": 10,
- "returns": 14,
- "generate": 1,
- "FullRowSpace": 5,
- "GeneratorsOfLeftOperatorAdditiveGroup": 2,
- "CanonicalBasis": 3,
- "supports": 1,
- "canonical": 6,
- "basis": 14,
- "otherwise": 2,
- "": 3,
- " ": 3,
- "returned.": 4,
- "defining": 1,
- "its": 2,
- "uniquely": 1,
- "determined": 1,
- "by": 14,
- "exist": 1,
- "same": 6,
- "acting": 8,
- "domain": 17,
- "equality": 1,
- "these": 5,
- "decided": 1,
- "comparing": 1,
- "bases.": 1,
- "exact": 1,
- "meaning": 1,
- "depends": 1,
- "Canonical": 1,
- "defined": 3,
- "designs": 1,
- "kind": 1,
- "defines": 1,
- "method": 4,
- "installs": 1,
- "call": 1,
- "On": 1,
- "hand": 1,
- "install": 1,
- "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,
- "calculations.": 2,
- "Otherwise": 3,
- "non": 4,
- "Gaussian.": 2,
- "need": 3,
- "flag": 2,
- "down": 2,
- "methods": 4,
- "delegate": 2,
- "ones.": 2,
- "IsNonGaussianRowSpace": 1,
- "expresses": 2,
- "cannot": 2,
- "compute": 3,
- "nice": 4,
- "way.": 2,
- "Let": 4,
- "K": 4,
- "spanned": 4,
- "Then": 1,
- "/": 12,
- "cap": 1,
- "v": 5,
- "replacing": 1,
- "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,
- "first": 1,
- "component.": 1,
- "yields": 1,
- "natural": 1,
- "dimensional": 5,
- "subspaces": 17,
- "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,
- "empty.": 1,
- "known": 5,
- "linearly": 3,
- "independent": 3,
- "particular": 1,
- "dimension": 9,
- "immediately": 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,
- "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,
- "let": 1,
- "their": 1,
- "intersection.": 1,
- "AsStruct": 2,
- "equal": 1,
- "either": 2,
- "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,
- "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,
- "IsFinite": 4,
- "Returns": 1,
- "": 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,
- "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,
- "IsExtLSet": 1,
- "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,
- "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,
- "Enumerator": 2,
- "Use": 1,
- "iterator": 3,
- "allowed": 1,
- "elms": 4,
- "IsDoneIterator": 3,
- ".associatedIterator": 3,
- ".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
- },
- "GAS": {
- ".cstring": 1,
- "LC0": 2,
- ".ascii": 2,
- ".text": 1,
- ".globl": 2,
- "_main": 2,
- "LFB3": 4,
- "pushq": 1,
- "%": 6,
- "rbp": 2,
- "LCFI0": 3,
- "movq": 1,
- "rsp": 1,
- "LCFI1": 2,
- "leaq": 1,
- "(": 1,
- "rip": 1,
- ")": 1,
- "rdi": 1,
- "call": 1,
- "_puts": 1,
- "movl": 1,
- "eax": 1,
- "leave": 1,
- "ret": 1,
- "LFE3": 2,
- ".section": 1,
- "__TEXT": 1,
- "__eh_frame": 1,
- "coalesced": 1,
- "no_toc": 1,
- "+": 2,
- "strip_static_syms": 1,
- "live_support": 1,
- "EH_frame1": 2,
- ".set": 5,
- "L": 10,
- "set": 10,
- "LECIE1": 2,
- "-": 7,
- "LSCIE1": 2,
- ".long": 6,
- ".byte": 20,
- "xc": 1,
- ".align": 2,
- "_main.eh": 2,
- "LSFDE1": 1,
- "LEFDE1": 2,
- "LASFDE1": 3,
- ".quad": 2,
- ".": 1,
- "xe": 1,
- "xd": 1,
- ".subsections_via_symbols": 1
- },
- "GLSL": {
- "////": 4,
- "High": 1,
- "quality": 2,
- "(": 386,
- "Some": 1,
- "browsers": 1,
- "may": 1,
- "freeze": 1,
- "or": 1,
- "crash": 1,
- ")": 386,
- "//#define": 10,
- "HIGHQUALITY": 2,
- "Medium": 1,
- "Should": 1,
- "be": 1,
- "fine": 1,
- "on": 3,
- "all": 1,
- "systems": 1,
- "works": 1,
- "Intel": 1,
- "HD2000": 1,
- "Win7": 1,
- "but": 1,
- "quite": 1,
- "slow": 1,
- "MEDIUMQUALITY": 2,
- "Defaults": 1,
- "REFLECTIONS": 3,
- "#define": 13,
- "SHADOWS": 5,
- "GRASS": 3,
- "SMALL_WAVES": 4,
- "RAGGED_LEAVES": 5,
- "DETAILED_NOISE": 3,
- "LIGHT_AA": 3,
- "//": 36,
- "sample": 2,
- "SSAA": 2,
- "HEAVY_AA": 2,
- "x2": 5,
- "RG": 1,
- "TONEMAP": 5,
- "Configurations": 1,
- "#ifdef": 14,
- "#endif": 14,
- "const": 18,
- "float": 103,
- "eps": 5,
- "e": 4,
- "-": 108,
- ";": 353,
- "PI": 3,
- "vec3": 165,
- "sunDir": 5,
- "skyCol": 4,
- "sandCol": 2,
- "treeCol": 2,
- "grassCol": 2,
- "leavesCol": 4,
- "leavesPos": 4,
- "sunCol": 5,
- "#else": 5,
- "exposure": 1,
- "Only": 1,
- "used": 1,
- "when": 1,
- "tonemapping": 1,
- "mod289": 4,
- "x": 11,
- "{": 61,
- "return": 47,
- "floor": 8,
- "*": 115,
- "/": 24,
- "}": 61,
- "vec4": 72,
- "permute": 4,
- "x*34.0": 1,
- "+": 108,
- "*x": 3,
- "taylorInvSqrt": 2,
- "r": 14,
- "snoise": 7,
- "v": 8,
- "vec2": 26,
- "C": 1,
- "/6.0": 1,
- "/3.0": 1,
- "D": 1,
- "i": 38,
- "dot": 30,
- "C.yyy": 2,
- "x0": 7,
- "C.xxx": 2,
- "g": 2,
- "step": 2,
- "x0.yzx": 1,
- "x0.xyz": 1,
- "l": 1,
- "i1": 2,
- "min": 11,
- "g.xyz": 2,
- "l.zxy": 2,
- "i2": 2,
- "max": 9,
- "x1": 4,
- "*C.x": 2,
- "/3": 1,
- "C.y": 1,
- "x3": 4,
- "D.yyy": 1,
- "D.y": 1,
- "p": 26,
- "i.z": 1,
- "i1.z": 1,
- "i2.z": 1,
- "i.y": 1,
- "i1.y": 1,
- "i2.y": 1,
- "i.x": 1,
- "i1.x": 1,
- "i2.x": 1,
- "n_": 2,
- "/7.0": 1,
- "ns": 4,
- "D.wyz": 1,
- "D.xzx": 1,
- "j": 4,
- "ns.z": 3,
- "mod": 2,
- "*7": 1,
- "x_": 3,
- "y_": 2,
- "N": 1,
- "*ns.x": 2,
- "ns.yyyy": 2,
- "y": 2,
- "h": 21,
- "abs": 2,
- "b0": 3,
- "x.xy": 1,
- "y.xy": 1,
- "b1": 3,
- "x.zw": 1,
- "y.zw": 1,
- "//vec4": 3,
- "s0": 2,
- "lessThan": 2,
- "*2.0": 4,
- "s1": 2,
- "sh": 1,
- "a0": 1,
- "b0.xzyw": 1,
- "s0.xzyw*sh.xxyy": 1,
- "a1": 1,
- "b1.xzyw": 1,
- "s1.xzyw*sh.zzww": 1,
- "p0": 5,
- "a0.xy": 1,
- "h.x": 1,
- "p1": 5,
- "a0.zw": 1,
- "h.y": 1,
- "p2": 5,
- "a1.xy": 1,
- "h.z": 1,
- "p3": 5,
- "a1.zw": 1,
- "h.w": 1,
- "//Normalise": 1,
- "gradients": 1,
- "norm": 1,
- "norm.x": 1,
- "norm.y": 1,
- "norm.z": 1,
- "norm.w": 1,
- "m": 8,
- "m*m": 1,
- "fbm": 2,
- "final": 5,
- "waterHeight": 4,
- "d": 10,
- "length": 7,
- "p.xz": 2,
- "sin": 8,
- "iGlobalTime": 7,
- "Island": 1,
- "waves": 3,
- "p*0.5": 1,
- "Other": 1,
- "bump": 2,
- "pos": 42,
- "rayDir": 43,
- "s": 23,
- "Fade": 1,
- "out": 1,
- "to": 1,
- "reduce": 1,
- "aliasing": 1,
- "dist": 7,
- "<": 23,
- "sqrt": 6,
- "Calculate": 1,
- "normal": 7,
- "from": 2,
- "heightmap": 1,
- "pos.x": 1,
- "iGlobalTime*0.5": 1,
- "pos.z": 2,
- "*0.7": 1,
- "*s": 4,
- "normalize": 14,
- "e.xyy": 1,
- "e.yxy": 1,
- "intersectSphere": 2,
- "rpos": 5,
- "rdir": 3,
- "rad": 2,
- "op": 5,
- "b": 5,
- "det": 11,
- "b*b": 2,
- "rad*rad": 2,
- "if": 29,
- "t": 44,
- "rdir*t": 1,
- "intersectCylinder": 1,
- "rdir2": 2,
- "rdir.yz": 1,
- "op.yz": 3,
- "rpos.yz": 2,
- "rdir2*t": 2,
- "pos.yz": 2,
- "intersectPlane": 3,
- "rayPos": 38,
- "n": 18,
- "sign": 1,
- "rotate": 5,
- "theta": 6,
- "c": 6,
- "cos": 4,
- "p.x": 2,
- "p.z": 2,
- "p.y": 1,
- "impulse": 2,
- "k": 8,
- "by": 1,
- "iq": 2,
- "k*x": 1,
- "exp": 2,
- "grass": 2,
- "Optimization": 1,
- "Avoid": 1,
- "noise": 1,
- "too": 1,
- "far": 1,
- "away": 1,
- "pos.y": 8,
- "tree": 2,
- "pos.y*0.03": 2,
- "mat2": 2,
- "m*pos.xy": 1,
- "width": 2,
- "clamp": 4,
- "scene": 7,
- "vtree": 4,
- "vgrass": 2,
- ".x": 4,
- "eps.xyy": 1,
- "eps.yxy": 1,
- "eps.yyx": 1,
- "plantsShadow": 2,
- "Soft": 1,
- "shadow": 4,
- "taken": 1,
- "for": 7,
- "int": 7,
- "rayDir*t": 2,
- "res": 6,
- "res.x": 3,
- "k*res.x/t": 1,
- "s*s*": 1,
- "intersectWater": 2,
- "rayPos.y": 1,
- "rayDir.y": 1,
- "intersectSand": 3,
- "intersectTreasure": 2,
- "intersectLeaf": 2,
- "openAmount": 4,
- "dir": 2,
- "offset": 5,
- "rayDir*res.w": 1,
- "pos*0.8": 2,
- "||": 3,
- "res.w": 6,
- "res2": 2,
- "dir.xy": 1,
- "dir.z": 1,
- "rayDir*res2.w": 1,
- "res2.w": 3,
- "&&": 10,
- "leaves": 7,
- "e20": 3,
- "sway": 5,
- "fract": 1,
- "upDownSway": 2,
- "angleOffset": 3,
- "Left": 1,
- "right": 1,
- "alpha": 3,
- "Up": 1,
- "down": 1,
- "k*10.0": 1,
- "p.xzy": 1,
- ".xzy": 2,
- "d.xzy": 1,
- "Shift": 1,
- "Intersect": 11,
- "individual": 1,
- "leaf": 1,
- "res.xyz": 1,
- "sand": 2,
- "resSand": 2,
- "//if": 1,
- "resSand.w": 4,
- "plants": 6,
- "resLeaves": 3,
- "resLeaves.w": 10,
- "e7": 3,
- "light": 5,
- "sunDir*0.01": 2,
- "col": 32,
- "n.y": 3,
- "lightLeaves": 3,
- "ao": 5,
- "sky": 5,
- "res.y": 2,
- "uvFact": 2,
- "uv": 12,
- "n.x": 1,
- "tex": 6,
- "texture2D": 6,
- "iChannel0": 3,
- ".rgb": 2,
- "e8": 1,
- "traceReflection": 2,
- "resPlants": 2,
- "resPlants.w": 6,
- "resPlants.xyz": 2,
- "pos.xz": 2,
- "leavesPos.xz": 2,
- ".r": 3,
- "resLeaves.xyz": 2,
- "trace": 2,
- "resSand.xyz": 1,
- "treasure": 1,
- "chest": 1,
- "resTreasure": 1,
- "resTreasure.w": 4,
- "resTreasure.xyz": 1,
- "water": 1,
- "resWater": 1,
- "resWater.w": 4,
- "ct": 2,
- "fresnel": 2,
- "pow": 3,
- "trans": 2,
- "reflDir": 3,
- "reflect": 1,
- "refl": 3,
- "resWater.t": 1,
- "mix": 2,
- "camera": 8,
- "px": 4,
- "rd": 1,
- "iResolution.yy": 1,
- "iResolution.x/iResolution.y*0.5": 1,
- "rd.x": 1,
- "rd.y": 1,
- "void": 5,
- "main": 3,
- "gl_FragCoord.xy": 7,
- "*0.25": 4,
- "*0.5": 1,
- "Optimized": 1,
- "Haarm": 1,
- "Peter": 1,
- "Duiker": 1,
- "curve": 1,
- "col*exposure": 1,
- "x*": 2,
- ".5": 1,
- "gl_FragColor": 2,
- "NUM_LIGHTS": 4,
- "AMBIENT": 2,
- "MAX_DIST": 3,
- "MAX_DIST_SQUARED": 3,
- "uniform": 7,
- "lightColor": 3,
- "[": 29,
- "]": 29,
- "varying": 3,
- "fragmentNormal": 2,
- "cameraVector": 2,
- "lightVector": 4,
- "initialize": 1,
- "diffuse/specular": 1,
- "lighting": 1,
- "diffuse": 4,
- "specular": 4,
- "the": 1,
- "fragment": 1,
- "and": 2,
- "direction": 1,
- "cameraDir": 2,
- "loop": 1,
- "through": 1,
- "each": 1,
- "calculate": 1,
- "distance": 1,
- "between": 1,
- "distFactor": 3,
- "lightDir": 3,
- "diffuseDot": 2,
- "halfAngle": 2,
- "specularColor": 2,
- "specularDot": 2,
- "sample.rgb": 1,
- "sample.a": 1,
- "#version": 1,
- "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
- },
- "Gnuplot": {
- "set": 98,
- "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,
- "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,
- "nobox": 1,
- "histogram": 1,
- "clustered": 1,
- "gap": 1,
- "datafile": 1,
- "missing": 1,
- "data": 1,
- "histograms": 1,
- "xtics": 3,
- "in": 1,
- "scale": 1,
- "nomirror": 1,
- "rotate": 3,
- "by": 3,
- "autojustify": 1,
- "norangelimit": 3,
- "font": 8,
- "i": 1,
- "using": 2,
- "xtic": 1,
- "ti": 4,
- "col": 4,
- "u": 25,
- "SHEBANG#!gnuplot": 1,
- "reset": 1,
- "terminal": 1,
- "png": 1,
- "output": 1,
- "ylabel": 5,
- "#set": 2,
- "xr": 1,
- "yr": 1,
- "pt": 2,
- "notitle": 15,
- "dummy": 3,
- "v": 31,
- "arrow": 7,
- "from": 7,
- "to": 7,
- "head": 7,
- "nofilled": 7,
- "parametric": 3,
- "view": 3,
- "samples": 3,
- "isosamples": 3,
- "hidden3d": 2,
- "trianglepattern": 2,
- "undefined": 2,
- "altdiagonal": 2,
- "bentover": 2,
- "ztics": 2,
- "zlabel": 4,
- "zrange": 2,
- "sinc": 13,
- "sin": 3,
- "sqrt": 4,
- "u**2": 4,
- "+": 6,
- "v**2": 4,
- "/": 2,
- "GPFUN_sinc": 2,
- "xx": 2,
- "dx": 2,
- "x0": 4,
- "x1": 4,
- "x2": 4,
- "x3": 4,
- "x4": 4,
- "x5": 4,
- "x6": 4,
- "x7": 4,
- "x8": 4,
- "x9": 4,
- "splot": 3,
- "<": 10,
- "xmin": 3,
- "xmax": 1,
- "n": 1,
- "zbase": 2,
- ".5": 2,
- "*n": 1,
- "floor": 3,
- "u/3": 1,
- "*dx": 1,
- "%": 2,
- "u/3.*dx": 1,
- "/0": 1,
- "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
- },
- "Gosu": {
- "<%!-->": 1,
- "defined": 1,
- "in": 3,
- "Hello": 2,
- "gst": 1,
- "<": 1,
- "%": 2,
- "@": 1,
- "params": 1,
- "(": 53,
- "users": 2,
- "Collection": 1,
- "": 1,
- ")": 54,
- "<%>": 2,
- "for": 2,
- "user": 1,
- "{": 28,
- "user.LastName": 1,
- "}": 28,
- "user.FirstName": 1,
- "user.Department": 1,
- "package": 2,
- "example": 2,
- "enhancement": 1,
- "String": 6,
- "function": 11,
- "toPerson": 1,
- "Person": 7,
- "var": 10,
- "vals": 4,
- "this.split": 1,
- "return": 4,
- "new": 6,
- "[": 4,
- "]": 4,
- "as": 3,
- "int": 2,
- "Relationship.valueOf": 2,
- "hello": 1,
- "print": 3,
- "uses": 2,
- "java.util.*": 1,
- "java.io.File": 1,
- "class": 1,
- "extends": 1,
- "Contact": 1,
- "implements": 1,
- "IEmailable": 2,
- "_name": 4,
- "_age": 3,
- "Integer": 3,
- "Age": 1,
- "_relationship": 2,
- "Relationship": 3,
- "readonly": 1,
- "RelationshipOfPerson": 1,
- "delegate": 1,
- "_emailHelper": 2,
- "represents": 1,
- "enum": 1,
- "FRIEND": 1,
- "FAMILY": 1,
- "BUSINESS_CONTACT": 1,
- "static": 7,
- "ALL_PEOPLE": 2,
- "HashMap": 1,
- "": 1,
- "construct": 1,
- "name": 4,
- "age": 4,
- "relationship": 2,
- "EmailHelper": 1,
- "this": 1,
- "property": 2,
- "get": 1,
- "Name": 3,
- "set": 1,
- "override": 1,
- "getEmailName": 1,
- "incrementAge": 1,
- "+": 2,
- "@Deprecated": 1,
- "printPersonInfo": 1,
- "addPerson": 4,
- "p": 5,
- "if": 4,
- "ALL_PEOPLE.containsKey": 2,
- ".Name": 1,
- "throw": 1,
- "IllegalArgumentException": 1,
- "p.Name": 2,
- "addAllPeople": 1,
- "contacts": 2,
- "List": 1,
- "": 1,
- "contact": 3,
- "typeis": 1,
- "and": 1,
- "not": 1,
- "contact.Name": 1,
- "getAllPeopleOlderThanNOrderedByName": 1,
- "allPeople": 1,
- "ALL_PEOPLE.Values": 3,
- "allPeople.where": 1,
- "-": 3,
- "p.Age": 1,
- ".orderBy": 1,
- "loadPersonFromDB": 1,
- "id": 1,
- "using": 2,
- "conn": 1,
- "DBConnectionManager.getConnection": 1,
- "stmt": 1,
- "conn.prepareStatement": 1,
- "stmt.setInt": 1,
- "result": 1,
- "stmt.executeQuery": 1,
- "result.next": 1,
- "result.getString": 2,
- "result.getInt": 1,
- "loadFromFile": 1,
- "file": 3,
- "File": 2,
- "file.eachLine": 1,
- "line": 1,
- "line.HasContent": 1,
- "line.toPerson": 1,
- "saveToFile": 1,
- "writer": 2,
- "FileWriter": 1,
- "PersonCSVTemplate.renderToString": 1,
- "PersonCSVTemplate.render": 1
- },
- "Grammatical Framework": {
- "-": 594,
- "(": 256,
- "c": 73,
- ")": 256,
- "Aarne": 13,
- "Ranta": 13,
- "under": 33,
- "LGPL": 33,
- "abstract": 1,
- "Foods": 34,
- "{": 579,
- "flags": 32,
- "startcat": 1,
- "Comment": 31,
- ";": 1399,
- "cat": 1,
- "Item": 31,
- "Kind": 33,
- "Quality": 34,
- "fun": 1,
- "Pred": 30,
- "This": 29,
- "That": 29,
- "These": 28,
- "Those": 28,
- "Mod": 29,
- "Wine": 29,
- "Cheese": 29,
- "Fish": 29,
- "Pizza": 28,
- "Very": 29,
- "Fresh": 29,
- "Warm": 29,
- "Italian": 29,
- "Expensive": 29,
- "Delicious": 29,
- "Boring": 29,
- "}": 580,
- "Laurette": 2,
- "Pretorius": 2,
- "Sr": 2,
- "&": 2,
- "Jr": 2,
- "and": 4,
- "Ansu": 2,
- "Berg": 2,
- "concrete": 33,
- "FoodsAfr": 1,
- "of": 89,
- "open": 23,
- "Prelude": 11,
- "Predef": 3,
- "in": 32,
- "coding": 29,
- "utf8": 29,
- "lincat": 28,
- "s": 365,
- "Str": 394,
- "Number": 207,
- "n": 206,
- "AdjAP": 10,
- "lin": 28,
- "item": 36,
- "quality": 90,
- "item.s": 24,
- "+": 480,
- "quality.s": 50,
- "Predic": 3,
- "kind": 115,
- "kind.s": 46,
- "Sg": 184,
- "Pl": 182,
- "table": 148,
- "Attr": 9,
- "declNoun_e": 2,
- "declNoun_aa": 2,
- "declNoun_ss": 2,
- "declNoun_s": 2,
- "veryAdj": 2,
- "regAdj": 61,
- "smartAdj_e": 4,
- "param": 22,
- "|": 122,
- "oper": 29,
- "Noun": 9,
- "operations": 2,
- "wyn": 1,
- "kaas": 1,
- "vis": 1,
- "pizza": 1,
- "x": 74,
- "let": 8,
- "v": 6,
- "tk": 1,
- "last": 3,
- "Adjective": 9,
- "mkAdj": 27,
- "y": 3,
- "declAdj_e": 2,
- "declAdj_g": 2,
- "w": 15,
- "init": 4,
- "declAdj_oog": 2,
- "i": 2,
- "a": 57,
- "x.s": 8,
- "case": 44,
- "_": 68,
- "FoodsAmh": 1,
- "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,
- "#": 14,
- "path": 14,
- ".": 13,
- "present": 7,
- "Jordi": 2,
- "Saludes": 2,
- "FoodsCat": 1,
- "FoodsI": 6,
- "with": 5,
- "Syntax": 7,
- "SyntaxCat": 2,
- "LexFoods": 12,
- "LexFoodsCat": 2,
- "FoodsChi": 1,
- "p": 11,
- "quality.p": 2,
- "kind.c": 11,
- "geKind": 5,
- "longQuality": 8,
- "mkKind": 2,
- "Katerina": 2,
- "Bohmova": 2,
- "FoodsCze": 1,
- "ResCze": 2,
- "NounPhrase": 3,
- "copula": 33,
- "item.n": 29,
- "item.g": 12,
- "det": 86,
- "noun": 51,
- "regnfAdj": 2,
- "Femke": 1,
- "Johansson": 1,
- "FoodsDut": 1,
- "AForm": 4,
- "APred": 8,
- "AAttr": 3,
- "regNoun": 38,
- "f": 16,
- "a.s": 8,
- "regadj": 6,
- "adj": 38,
- "noun.s": 7,
- "man": 10,
- "men": 10,
- "wijn": 3,
- "koud": 3,
- "duur": 2,
- "dure": 2,
- "FoodsEng": 1,
- "language": 2,
- "en_US": 1,
- "car": 6,
- "cold": 4,
- "Julia": 1,
- "Hammar": 1,
- "FoodsEpo": 1,
- "SS": 6,
- "ss": 13,
- "d": 6,
- "cn": 11,
- "cn.s": 8,
- "vino": 3,
- "nova": 3,
- "FoodsFin": 1,
- "SyntaxFin": 2,
- "LexFoodsFin": 2,
- "../foods": 1,
- "FoodsFre": 1,
- "SyntaxFre": 1,
- "ParadigmsFre": 1,
- "Utt": 4,
- "NP": 4,
- "CN": 4,
- "AP": 4,
- "mkUtt": 4,
- "mkCl": 4,
- "mkNP": 16,
- "this_QuantSg": 2,
- "that_QuantSg": 2,
- "these_QuantPl": 2,
- "those_QuantPl": 2,
- "mkCN": 20,
- "mkAP": 28,
- "very_AdA": 4,
- "mkN": 46,
- "masculine": 4,
- "feminine": 2,
- "mkA": 47,
- "FoodsGer": 1,
- "SyntaxGer": 2,
- "LexFoodsGer": 2,
- "alltenses": 3,
- "Dana": 1,
- "Dannells": 1,
- "Licensed": 1,
- "FoodsHeb": 2,
- "Species": 8,
- "mod": 7,
- "Modified": 5,
- "sp": 11,
- "Indef": 6,
- "Def": 21,
- "T": 2,
- "regAdj2": 3,
- "F": 2,
- "Type": 9,
- "Adj": 4,
- "m": 9,
- "cn.mod": 2,
- "cn.g": 10,
- "gvina": 6,
- "hagvina": 3,
- "gvinot": 6,
- "hagvinot": 3,
- "defH": 7,
- "replaceLastLetter": 7,
- "adjective": 22,
- "tov": 6,
- "tova": 3,
- "tovim": 3,
- "tovot": 3,
- "to": 6,
- "c@": 3,
- "italki": 3,
- "italk": 4,
- "Vikash": 1,
- "Rauniyar": 1,
- "FoodsHin": 2,
- "regN": 15,
- "lark": 8,
- "ms": 4,
- "mp": 4,
- "acch": 6,
- "incomplete": 1,
- "this_Det": 2,
- "that_Det": 2,
- "these_Det": 2,
- "those_Det": 2,
- "wine_N": 7,
- "pizza_N": 7,
- "cheese_N": 7,
- "fish_N": 8,
- "fresh_A": 7,
- "warm_A": 8,
- "italian_A": 7,
- "expensive_A": 7,
- "delicious_A": 7,
- "boring_A": 7,
- "prelude": 2,
- "Martha": 1,
- "Dis": 1,
- "Brandt": 1,
- "FoodsIce": 1,
- "Defin": 9,
- "Ind": 14,
- "the": 7,
- "word": 3,
- "is": 6,
- "more": 1,
- "commonly": 1,
- "used": 2,
- "Iceland": 1,
- "but": 1,
- "Icelandic": 1,
- "for": 6,
- "it": 2,
- "defOrInd": 2,
- "order": 1,
- "given": 1,
- "forms": 2,
- "mSg": 1,
- "fSg": 1,
- "nSg": 1,
- "mPl": 1,
- "fPl": 1,
- "nPl": 1,
- "mSgDef": 1,
- "f/nSgDef": 1,
- "_PlDef": 1,
- "masc": 3,
- "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,
- "t": 28,
- "": 1,
- "<": 10,
- "Predef.tk": 2,
- "FoodsIta": 1,
- "SyntaxIta": 2,
- "LexFoodsIta": 2,
- "../lib/src/prelude": 1,
- "Zofia": 1,
- "Stankiewicz": 1,
- "FoodsJpn": 1,
- "Style": 3,
- "AdjUse": 4,
- "AdjType": 4,
- "quality.t": 3,
- "IAdj": 4,
- "Plain": 3,
- "Polite": 4,
- "NaAdj": 4,
- "na": 1,
- "adjectives": 2,
- "have": 2,
- "different": 1,
- "as": 2,
- "attributes": 1,
- "predicates": 2,
- "phrase": 1,
- "types": 1,
- "can": 1,
- "form": 4,
- "without": 1,
- "cannot": 1,
- "sakana": 6,
- "chosenna": 2,
- "chosen": 2,
- "akai": 2,
- "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,
- "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,
- "regular": 2,
- "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,
- "pre": 1,
- "cons@": 1,
- "cons": 1,
- "determinant": 1,
- "Sg/Pl": 1,
- "string": 1,
- "default": 1,
- "gender": 2,
- "number": 2,
- "/GF/lib/src/prelude": 1,
- "Nyamsuren": 1,
- "Erdenebadrakh": 1,
- "FoodsMon": 1,
- "prefixSS": 1,
- "Dinesh": 1,
- "Simkhada": 1,
- "FoodsNep": 1,
- "adjPl": 2,
- "bor": 2,
- "FoodsOri": 1,
- "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,
- "Rami": 1,
- "Shashati": 1,
- "FoodsPor": 1,
- "mkAdjReg": 7,
- "QualityT": 5,
- "bonito": 2,
- "bonita": 2,
- "bonitos": 2,
- "bonitas": 2,
- "pattern": 1,
- "adjSozinho": 2,
- "sozinho": 3,
- "sozinh": 4,
- "independent": 1,
- "adjUtil": 2,
- "util": 3,
- "uteis": 3,
- "smart": 1,
- "paradigm": 1,
- "adjcetives": 1,
- "ItemT": 2,
- "KindT": 4,
- "num": 6,
- "noun.g": 3,
- "animal": 2,
- "animais": 2,
- "gen": 4,
- "carro": 3,
- "Ramona": 1,
- "Enache": 1,
- "FoodsRon": 1,
- "NGender": 6,
- "NMasc": 2,
- "NFem": 3,
- "NNeut": 2,
- "mkTab": 5,
- "mkNoun": 5,
- "getAgrGender": 3,
- "acesta": 2,
- "aceasta": 2,
- "gg": 3,
- "det.s": 1,
- "peste": 2,
- "pesti": 2,
- "scump": 2,
- "scumpa": 2,
- "scumpi": 2,
- "scumpe": 2,
- "": 1,
- "": 1,
- "": 1,
- "": 1,
- "": 1,
- "ng": 1,
- "": 1,
- "": 1,
- "": 1,
- "": 1,
- "": 1,
- "FoodsSpa": 1,
- "SyntaxSpa": 1,
- "StructuralSpa": 1,
- "ParadigmsSpa": 1,
- "FoodsSwe": 1,
- "SyntaxSwe": 2,
- "LexFoodsSwe": 2,
- "**": 1,
- "sv_SE": 1,
- "FoodsTha": 1,
- "SyntaxTha": 1,
- "LexiconTha": 1,
- "ParadigmsTha": 1,
- "R": 4,
- "ResTha": 1,
- "R.thword": 4,
- "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,
- "FoodsTur": 1,
- "Case": 10,
- "softness": 4,
- "Softness": 5,
- "h": 4,
- "Harmony": 5,
- "Reason": 1,
- "excluding": 1,
- "plural": 3,
- "In": 1,
- "Turkish": 1,
- "if": 1,
- "subject": 1,
- "not": 2,
- "human": 2,
- "being": 1,
- "then": 1,
- "singular": 1,
- "regardless": 1,
- "subject.": 1,
- "Since": 1,
- "all": 1,
- "possible": 1,
- "subjects": 1,
- "are": 1,
- "non": 1,
- "do": 1,
- "need": 1,
- "form.": 1,
- "quality.softness": 1,
- "quality.h": 1,
- "quality.c": 1,
- "Nom": 9,
- "Gen": 5,
- "a.c": 1,
- "a.softness": 1,
- "a.h": 1,
- "I_Har": 4,
- "Ih_Har": 4,
- "U_Har": 4,
- "Uh_Har": 4,
- "Ih": 1,
- "Uh": 1,
- "Soft": 3,
- "Hard": 3,
- "overload": 1,
- "mkn": 1,
- "peynir": 2,
- "peynirler": 2,
- "[": 2,
- "]": 2,
- "sarap": 2,
- "saraplar": 2,
- "sarabi": 2,
- "saraplari": 2,
- "italyan": 4,
- "ca": 2,
- "getSoftness": 2,
- "getHarmony": 2,
- "See": 1,
- "comment": 1,
- "lines": 1,
- "excluded": 1,
- "copula.": 1,
- "base": 4,
- "*": 1,
- "Shafqat": 1,
- "Virk": 1,
- "FoodsUrd": 1,
- "coupla": 2,
- "interface": 1,
- "N": 4,
- "A": 6,
- "instance": 5,
- "ParadigmsCat": 1,
- "M": 1,
- "MorphoCat": 1,
- "M.Masc": 2,
- "ParadigmsFin": 1,
- "ParadigmsGer": 1,
- "ParadigmsIta": 1,
- "ParadigmsSwe": 1,
- "resource": 1,
- "ne": 2,
- "muz": 2,
- "muzi": 2,
- "msg": 3,
- "fsg": 3,
- "nsg": 3,
- "mpl": 3,
- "fpl": 3,
- "npl": 3,
- "mlad": 7,
- "vynikajici": 7
- },
- "Groovy": {
- "task": 1,
- "echoDirListViaAntBuilder": 1,
- "(": 7,
- ")": 7,
- "{": 3,
- "description": 1,
- "//Docs": 1,
- "http": 1,
- "//ant.apache.org/manual/Types/fileset.html": 1,
- "//Echo": 1,
- "the": 3,
- "Gradle": 1,
- "project": 1,
- "name": 1,
- "via": 1,
- "ant": 1,
- "echo": 1,
- "plugin": 1,
- "ant.echo": 3,
- "message": 1,
- "project.name": 1,
- "path": 2,
- "//Gather": 1,
- "list": 1,
- "of": 1,
- "files": 1,
- "in": 1,
- "a": 1,
- "subdirectory": 1,
- "ant.fileScanner": 1,
- "fileset": 1,
- "dir": 1,
- "}": 3,
- ".each": 1,
- "//Print": 1,
- "each": 1,
- "file": 1,
- "to": 1,
- "screen": 1,
- "with": 1,
- "CWD": 1,
- "projectDir": 1,
- "removed.": 1,
- "println": 2,
- "it.toString": 1,
- "-": 1,
- "SHEBANG#!groovy": 1
- },
- "Groovy Server Pages": {
- "": 4,
- "": 4,
- " ": 4,
- "http": 3,
- "equiv=": 3,
- "content=": 4,
- "": 4,
- "Testing": 3,
- "with": 3,
- "SiteMesh": 2,
- "and": 2,
- "Resources": 2,
- " ": 4,
- "name=": 1,
- "": 2,
- "module=": 2,
- "": 4,
- "": 4,
- "": 4,
- "": 4,
- "<%@>": 1,
- "page": 2,
- "contentType=": 1,
- "Using": 1,
- "directive": 1,
- "tag": 1,
- "": 2,
- "Print": 1,
- "{": 1,
- "example": 1,
- "}": 1
- },
- "Haml": {
- "%": 1,
- "p": 1,
- "Hello": 1,
- "World": 1
+ "*x": 1
},
"Handlebars": {
"": 5,
"class=": 5,
"
": 3,
+ "By": 2,
"{": 16,
- "title": 1,
+ "fullName": 2,
+ "author": 2,
"}": 16,
" ": 3,
"body": 3,
"": 5,
- "By": 2,
- "fullName": 2,
- "author": 2,
"Comments": 1,
"#each": 1,
"comments": 1,
"": 1,
" ": 1,
- "/each": 1
+ "/each": 1,
+ "title": 1
},
- "Hy": {
- ";": 4,
- "Fibonacci": 1,
- "example": 2,
- "in": 2,
- "Hy.": 2,
- "(": 28,
- "defn": 2,
- "fib": 4,
- "[": 10,
- "n": 5,
- "]": 10,
- "if": 2,
- "<": 1,
- ")": 28,
- "+": 1,
- "-": 10,
- "__name__": 1,
- "for": 2,
- "x": 3,
- "print": 1,
- "The": 1,
- "concurrent.futures": 2,
- "import": 1,
- "ThreadPoolExecutor": 2,
- "as": 3,
- "completed": 2,
- "random": 1,
- "randint": 2,
- "sh": 1,
- "sleep": 2,
- "task": 2,
- "to": 2,
- "do": 2,
- "with": 1,
- "executor": 2,
- "setv": 1,
- "jobs": 2,
- "list": 1,
- "comp": 1,
- ".submit": 1,
- "range": 1,
- "future": 2,
- ".result": 1
+ "XSLT": {
+ "": 1,
+ "version=": 2,
+ "": 1,
+ "xmlns": 1,
+ "xsl=": 1,
+ "": 1,
+ "match=": 1,
+ "": 1,
+ "": 1,
+ "": 1,
+ "My": 1,
+ "CD": 1,
+ "Collection": 1,
+ " ": 1,
+ "": 1,
+ "border=": 1,
+ "": 2,
+ "bgcolor=": 1,
+ "": 2,
+ "Title": 1,
+ " ": 2,
+ "Artist": 1,
+ " ": 2,
+ "": 1,
+ "select=": 3,
+ "": 2,
+ "": 2,
+ " ": 2,
+ " ": 1,
+ "
": 1,
+ "": 1,
+ "": 1,
+ " ": 1,
+ " ": 1
},
- "IDL": {
- ";": 59,
- "docformat": 3,
- "+": 8,
- "Inverse": 1,
- "hyperbolic": 2,
- "cosine.": 1,
- "Uses": 1,
- "the": 7,
- "formula": 1,
- "text": 1,
- "{": 3,
- "acosh": 1,
- "}": 3,
- "(": 26,
- "z": 9,
- ")": 26,
- "ln": 1,
- "sqrt": 4,
- "-": 14,
- "Examples": 2,
- "The": 1,
- "arc": 1,
- "sine": 1,
- "function": 4,
- "looks": 1,
- "like": 2,
- "IDL": 5,
- "x": 8,
- "*": 2,
- "findgen": 1,
- "/": 1,
- "plot": 1,
- "mg_acosh": 2,
- "xstyle": 1,
- "This": 1,
- "should": 1,
- "look": 1,
- "..": 1,
- "image": 1,
- "acosh.png": 1,
- "Returns": 3,
- "float": 1,
- "double": 2,
- "complex": 2,
- "or": 1,
- "depending": 1,
- "on": 1,
- "input": 2,
- "Params": 3,
- "in": 4,
- "required": 4,
- "type": 5,
- "numeric": 1,
- "compile_opt": 3,
- "strictarr": 3,
- "return": 5,
- "alog": 1,
- "end": 5,
- "MODULE": 1,
- "mg_analysis": 1,
- "DESCRIPTION": 1,
- "Tools": 1,
- "for": 2,
- "analysis": 1,
- "VERSION": 1,
- "SOURCE": 1,
- "mgalloy": 1,
- "BUILD_DATE": 1,
- "January": 1,
- "FUNCTION": 2,
- "MG_ARRAY_EQUAL": 1,
- "KEYWORDS": 1,
- "MG_TOTAL": 1,
- "Find": 1,
- "greatest": 1,
- "common": 1,
- "denominator": 1,
- "GCD": 1,
- "two": 1,
- "positive": 2,
- "integers.": 1,
- "integer": 5,
- "a": 4,
- "first": 1,
- "b": 4,
- "second": 1,
- "mg_gcd": 2,
- "on_error": 1,
- "if": 5,
- "n_params": 1,
- "ne": 1,
- "then": 5,
- "message": 2,
- "mg_isinteger": 2,
- "||": 1,
- "begin": 2,
- "endif": 2,
- "_a": 3,
- "abs": 2,
- "_b": 3,
- "minArg": 5,
- "<": 1,
- "maxArg": 3,
- "eq": 2,
- "remainder": 3,
- "mod": 1,
- "Truncate": 1,
- "argument": 2,
- "towards": 1,
- "i.e.": 1,
- "takes": 1,
- "FLOOR": 1,
- "of": 4,
- "values": 2,
- "and": 1,
- "CEIL": 1,
- "negative": 1,
- "values.": 1,
- "Try": 1,
- "main": 2,
- "level": 2,
- "program": 2,
- "at": 1,
- "this": 1,
- "file.": 1,
- "It": 1,
- "does": 1,
- "print": 4,
- "mg_trunc": 3,
- "[": 6,
- "]": 6,
- "floor": 2,
- "ceil": 2,
- "array": 2,
- "same": 1,
- "as": 1,
- "float/double": 1,
- "containing": 1,
- "to": 1,
- "truncate": 1,
- "result": 3,
- "posInd": 3,
- "where": 1,
- "gt": 2,
- "nposInd": 2,
- "L": 1,
- "example": 1
- },
- "Idris": {
- "module": 1,
- "Prelude.Char": 1,
- "import": 1,
- "Builtins": 1,
- "isUpper": 4,
- "Char": 13,
- "-": 8,
- "Bool": 8,
- "x": 36,
- "&&": 3,
- "<=>": 3,
- "Z": 1,
- "isLower": 4,
- "z": 1,
- "isAlpha": 3,
- "||": 9,
- "isDigit": 3,
- "(": 8,
- "9": 1,
- "isAlphaNum": 2,
- "isSpace": 2,
- "isNL": 2,
- "toUpper": 3,
- "if": 2,
- ")": 7,
- "then": 2,
- "prim__intToChar": 2,
- "prim__charToInt": 2,
- "else": 2,
- "toLower": 2,
- "+": 1,
- "isHexDigit": 2,
- "elem": 1,
- "hexChars": 3,
- "where": 1,
- "List": 1,
- "[": 1,
- "]": 1
- },
- "INI": {
- ";": 1,
- "editorconfig.org": 1,
- "root": 1,
- "true": 3,
- "[": 2,
+ "LiveScript": {
+ "a": 8,
+ "-": 25,
+ "const": 1,
+ "b": 3,
+ "var": 1,
+ "c": 3,
+ "d": 3,
+ "_000_000km": 1,
"*": 1,
+ "ms": 1,
+ "e": 2,
+ "(": 9,
+ ")": 10,
+ "dashes": 1,
+ "identifiers": 1,
+ "underscores_i": 1,
+ "/regexp1/": 1,
+ "and": 3,
+ "//regexp2//g": 1,
+ "strings": 1,
+ "[": 2,
+ "til": 1,
"]": 2,
- "indent_style": 1,
- "space": 1,
- "indent_size": 1,
- "end_of_line": 1,
- "lf": 1,
- "charset": 1,
- "utf": 1,
- "-": 1,
- "trim_trailing_whitespace": 1,
- "insert_final_newline": 1,
- "user": 1,
- "name": 1,
- "Josh": 1,
- "Peek": 1,
- "email": 1,
- "josh@github.com": 1
+ "or": 2,
+ "to": 2,
+ "|": 3,
+ "map": 1,
+ "filter": 1,
+ "fold": 1,
+ "+": 1,
+ "class": 1,
+ "Class": 1,
+ "extends": 1,
+ "Anc": 1,
+ "est": 1,
+ "args": 1,
+ "copy": 1,
+ "from": 1,
+ "callback": 4,
+ "error": 6,
+ "data": 2,
+ "<": 1,
+ "read": 1,
+ "file": 2,
+ "return": 2,
+ "if": 2,
+ "<~>": 1,
+ "write": 1
},
- "Ioke": {
- "SHEBANG#!ioke": 1,
- "println": 1
- },
- "Jade": {
- "p.": 1,
- "Hello": 1,
- "World": 1
- },
- "Java": {
- "package": 6,
- "clojure.asm": 1,
- ";": 891,
- "import": 66,
- "java.lang.reflect.Constructor": 1,
- "java.lang.reflect.Method": 1,
- "public": 214,
- "class": 12,
- "Type": 42,
- "{": 434,
- "final": 78,
- "static": 141,
- "int": 62,
- "VOID": 5,
- "BOOLEAN": 6,
- "CHAR": 6,
- "BYTE": 6,
- "SHORT": 6,
- "INT": 6,
- "FLOAT": 6,
- "LONG": 7,
- "DOUBLE": 7,
- "ARRAY": 6,
- "OBJECT": 7,
- "VOID_TYPE": 3,
- "new": 131,
- "(": 1097,
- ")": 1097,
- "BOOLEAN_TYPE": 3,
- "CHAR_TYPE": 3,
- "BYTE_TYPE": 3,
- "SHORT_TYPE": 3,
- "INT_TYPE": 3,
- "FLOAT_TYPE": 3,
- "LONG_TYPE": 3,
- "DOUBLE_TYPE": 3,
- "private": 77,
- "sort": 18,
- "char": 13,
- "[": 54,
- "]": 54,
- "buf": 43,
- "off": 25,
- "len": 24,
- "this.sort": 2,
- "this.len": 2,
- "}": 434,
- "this.buf": 2,
- "this.off": 1,
- "getType": 10,
- "String": 33,
- "typeDescriptor": 1,
- "return": 267,
- "typeDescriptor.toCharArray": 1,
- "Class": 10,
- "c": 21,
- "if": 116,
- "c.isPrimitive": 2,
- "Integer.TYPE": 2,
- "else": 33,
- "Void.TYPE": 3,
- "Boolean.TYPE": 2,
- "Byte.TYPE": 2,
- "Character.TYPE": 2,
- "Short.TYPE": 2,
- "Double.TYPE": 2,
- "Float.TYPE": 2,
- "getDescriptor": 15,
- "getObjectType": 1,
- "name": 10,
- "l": 5,
- "name.length": 2,
- "+": 83,
- "name.getChars": 1,
- "getArgumentTypes": 2,
- "methodDescriptor": 2,
- "methodDescriptor.toCharArray": 2,
- "size": 16,
- "while": 10,
- "true": 21,
- "car": 18,
- "break": 4,
- "args": 6,
- ".len": 1,
- "Method": 3,
- "method": 2,
- "classes": 2,
- "method.getParameterTypes": 1,
- "types": 3,
- "classes.length": 2,
- "for": 16,
- "i": 54,
- "-": 15,
- "getReturnType": 2,
- "methodDescriptor.indexOf": 1,
- "method.getReturnType": 1,
- "switch": 6,
- "case": 56,
- "//": 16,
- "default": 6,
- "getSort": 1,
- "getDimensions": 3,
- "getElementType": 2,
- "getClassName": 1,
- "StringBuffer": 14,
- "b": 7,
- ".getClassName": 1,
- "b.append": 1,
- "b.toString": 1,
- ".replace": 2,
- "getInternalName": 2,
- "buf.toString": 4,
- "getMethodDescriptor": 2,
- "returnType": 1,
- "argumentTypes": 2,
- "buf.append": 21,
- "<": 13,
- "argumentTypes.length": 1,
- ".getDescriptor": 1,
- "returnType.getDescriptor": 1,
- "void": 25,
- "c.getName": 1,
- "getConstructorDescriptor": 1,
- "Constructor": 1,
- "parameters": 4,
- "c.getParameterTypes": 1,
- "parameters.length": 2,
- ".toString": 1,
- "m": 1,
- "m.getParameterTypes": 1,
- "m.getReturnType": 1,
- "d": 10,
- "d.isPrimitive": 1,
- "d.isArray": 1,
- "d.getComponentType": 1,
- "d.getName": 1,
- "name.charAt": 1,
- "getSize": 1,
- "||": 8,
- "getOpcode": 1,
- "opcode": 17,
- "Opcodes.IALOAD": 1,
- "Opcodes.IASTORE": 1,
- "boolean": 36,
- "equals": 2,
- "Object": 31,
- "o": 12,
- "this": 16,
- "instanceof": 19,
- "false": 12,
- "t": 6,
- "t.sort": 1,
- "Type.OBJECT": 2,
- "Type.ARRAY": 2,
- "t.len": 1,
- "j": 9,
- "t.off": 1,
- "end": 4,
- "t.buf": 1,
- "hashCode": 1,
- "hc": 4,
- "*": 2,
- "toString": 1,
- "clojure.lang": 1,
- "java.lang.ref.Reference": 1,
- "java.math.BigInteger": 1,
- "java.util.Map": 3,
- "java.util.concurrent.ConcurrentHashMap": 1,
- "java.lang.ref.SoftReference": 1,
- "java.lang.ref.ReferenceQueue": 1,
- "Util": 1,
- "equiv": 17,
- "k1": 40,
- "k2": 38,
- "null": 80,
- "Number": 9,
- "&&": 6,
- "Numbers.equal": 1,
- "IPersistentCollection": 5,
- "pcequiv": 2,
- "k1.equals": 2,
- "long": 5,
- "double": 4,
- "c1": 2,
- "c2": 2,
- ".equiv": 2,
- "identical": 1,
- "classOf": 1,
- "x": 8,
- "x.getClass": 1,
- "compare": 1,
- "Numbers.compare": 1,
- "Comparable": 1,
- ".compareTo": 1,
- "hash": 3,
- "o.hashCode": 2,
- "hasheq": 1,
- "Numbers.hasheq": 1,
- "IHashEq": 2,
- ".hasheq": 1,
- "hashCombine": 1,
- "seed": 5,
- "//a": 1,
- "la": 1,
- "boost": 1,
- "e3779b9": 1,
- "<<": 1,
- "isPrimitive": 1,
- "isInteger": 1,
- "Integer": 2,
- "Long": 1,
- "BigInt": 1,
- "BigInteger": 1,
- "ret1": 2,
- "ret": 4,
- "nil": 2,
- "ISeq": 2,
- "": 1,
- "clearCache": 1,
- "ReferenceQueue": 1,
- "rq": 1,
- "ConcurrentHashMap": 1,
- "K": 2,
- "Reference": 3,
- "": 3,
- "cache": 1,
- "//cleanup": 1,
- "any": 1,
- "dead": 1,
- "entries": 1,
- "rq.poll": 2,
- "Map.Entry": 1,
- "e": 31,
- "cache.entrySet": 1,
- "val": 3,
- "e.getValue": 1,
- "val.get": 1,
- "cache.remove": 1,
- "e.getKey": 1,
- "RuntimeException": 5,
- "runtimeException": 2,
- "s": 10,
- "Throwable": 4,
- "sneakyThrow": 1,
- "throw": 9,
- "NullPointerException": 3,
- "Util.": 1,
- "": 1,
- "sneakyThrow0": 2,
- "@SuppressWarnings": 1,
- "": 1,
- "extends": 10,
- "throws": 26,
- "T": 2,
- "nokogiri.internals": 1,
- "nokogiri.internals.NokogiriHelpers.getNokogiriClass": 1,
- "nokogiri.internals.NokogiriHelpers.isNamespace": 1,
- "nokogiri.internals.NokogiriHelpers.stringOrNil": 1,
- "nokogiri.HtmlDocument": 1,
- "nokogiri.NokogiriService": 1,
- "nokogiri.XmlDocument": 1,
- "org.apache.xerces.parsers.DOMParser": 1,
- "org.apache.xerces.xni.Augmentations": 1,
- "org.apache.xerces.xni.QName": 1,
- "org.apache.xerces.xni.XMLAttributes": 1,
- "org.apache.xerces.xni.XNIException": 1,
- "org.apache.xerces.xni.parser.XMLDocumentFilter": 1,
- "org.apache.xerces.xni.parser.XMLParserConfiguration": 1,
- "org.cyberneko.html.HTMLConfiguration": 1,
- "org.cyberneko.html.filters.DefaultFilter": 1,
- "org.jruby.Ruby": 2,
- "org.jruby.RubyClass": 2,
- "org.jruby.runtime.ThreadContext": 1,
- "org.jruby.runtime.builtin.IRubyObject": 2,
- "org.w3c.dom.Document": 1,
- "org.w3c.dom.NamedNodeMap": 1,
- "org.w3c.dom.NodeList": 1,
- "HtmlDomParserContext": 3,
- "XmlDomParserContext": 1,
- "Ruby": 43,
- "runtime": 88,
- "IRubyObject": 35,
- "options": 4,
- "super": 7,
- "encoding": 2,
- "@Override": 6,
- "protected": 8,
- "initErrorHandler": 1,
- "options.strict": 1,
- "errorHandler": 6,
- "NokogiriStrictErrorHandler": 1,
- "options.noError": 2,
- "options.noWarning": 2,
- "NokogiriNonStrictErrorHandler4NekoHtml": 1,
- "initParser": 1,
- "XMLParserConfiguration": 1,
- "config": 2,
- "HTMLConfiguration": 1,
- "XMLDocumentFilter": 3,
- "removeNSAttrsFilter": 2,
- "RemoveNSAttrsFilter": 2,
- "elementValidityCheckFilter": 3,
- "ElementValidityCheckFilter": 3,
- "//XMLDocumentFilter": 1,
- "filters": 3,
- "config.setErrorHandler": 1,
- "this.errorHandler": 2,
- "parser": 1,
- "DOMParser": 1,
- "setProperty": 4,
- "java_encoding": 2,
- "setFeature": 4,
- "enableDocumentFragment": 1,
- "XmlDocument": 8,
- "getNewEmptyDocument": 1,
- "ThreadContext": 2,
- "context": 8,
- "XmlDocument.rbNew": 1,
- "getNokogiriClass": 1,
- "context.getRuntime": 3,
- "wrapDocument": 1,
- "RubyClass": 92,
- "klazz": 107,
- "Document": 2,
- "document": 5,
- "HtmlDocument": 7,
- "htmlDocument": 6,
- "NokogiriService.HTML_DOCUMENT_ALLOCATOR.allocate": 1,
- "htmlDocument.setDocumentNode": 1,
- "ruby_encoding.isNil": 1,
- "detected_encoding": 2,
- "detected_encoding.isNil": 1,
- "ruby_encoding": 3,
- "charset": 2,
- "tryGetCharsetFromHtml5MetaTag": 2,
- "stringOrNil": 1,
- "htmlDocument.setEncoding": 1,
- "htmlDocument.setParsedEncoding": 1,
- ".equalsIgnoreCase": 5,
- "document.getDocumentElement": 2,
- ".getNodeName": 4,
- "NodeList": 2,
+ "AsciiDoc": {
+ "Document": 1,
+ "Title": 1,
+ "Doc": 1,
+ "Writer": 1,
+ "": 1,
+ "idprefix": 1,
+ "id_": 1,
+ "Preamble": 1,
+ "paragraph.": 4,
+ "NOTE": 1,
+ "This": 1,
+ "is": 1,
+ "test": 1,
+ "only": 1,
+ "a": 1,
+ "test.": 1,
+ "Section": 3,
+ "A": 2,
+ "*Section": 3,
+ "A*": 2,
+ "Subsection": 1,
+ "B": 2,
+ "B*": 1,
+ ".Section": 1,
"list": 1,
- ".getChildNodes": 2,
- "list.getLength": 1,
- "list.item": 2,
- "headers": 1,
- "headers.getLength": 1,
- "headers.item": 2,
- "NamedNodeMap": 1,
- "nodeMap": 1,
- ".getAttributes": 1,
- "k": 5,
- "nodeMap.getLength": 1,
- "nodeMap.item": 2,
- ".getNodeValue": 1,
- "DefaultFilter": 2,
- "startElement": 2,
- "QName": 2,
- "element": 3,
- "XMLAttributes": 2,
- "attrs": 4,
- "Augmentations": 2,
- "augs": 4,
- "XNIException": 2,
- "attrs.getLength": 1,
- "isNamespace": 1,
- "attrs.getQName": 1,
- "attrs.removeAttributeAt": 1,
- "element.uri": 1,
- "super.startElement": 2,
- "NokogiriErrorHandler": 2,
- "element_names": 3,
- "g": 1,
- "r": 1,
- "w": 1,
- "y": 1,
- "z": 1,
- "isValid": 2,
- "testee": 1,
- "testee.toCharArray": 1,
- "index": 4,
- ".length": 1,
- "testee.equals": 1,
- "name.rawname": 2,
- "errorHandler.getErrors": 1,
- ".add": 1,
- "Exception": 1,
- "hudson.model": 1,
- "hudson.ExtensionListView": 1,
- "hudson.Functions": 1,
- "hudson.Platform": 1,
- "hudson.PluginManager": 1,
- "hudson.cli.declarative.CLIResolver": 1,
- "hudson.model.listeners.ItemListener": 1,
- "hudson.slaves.ComputerListener": 1,
- "hudson.util.CopyOnWriteList": 1,
- "hudson.util.FormValidation": 1,
- "jenkins.model.Jenkins": 1,
- "org.jvnet.hudson.reactor.ReactorException": 1,
- "org.kohsuke.stapler.QueryParameter": 1,
- "org.kohsuke.stapler.Stapler": 1,
- "org.kohsuke.stapler.StaplerRequest": 1,
- "org.kohsuke.stapler.StaplerResponse": 1,
- "javax.servlet.ServletContext": 1,
- "javax.servlet.ServletException": 1,
- "java.io.File": 1,
- "java.io.IOException": 10,
- "java.text.NumberFormat": 1,
- "java.text.ParseException": 1,
- "java.util.Collections": 2,
- "java.util.List": 1,
- "hudson.Util.fixEmpty": 1,
- "Hudson": 5,
- "Jenkins": 2,
- "transient": 2,
- "CopyOnWriteList": 4,
- "": 2,
- "itemListeners": 2,
- "ExtensionListView.createCopyOnWriteList": 2,
- "ItemListener.class": 1,
- "": 2,
- "computerListeners": 2,
- "ComputerListener.class": 1,
- "@CLIResolver": 1,
- "getInstance": 2,
- "Jenkins.getInstance": 2,
- "File": 2,
- "root": 6,
- "ServletContext": 2,
- "IOException": 8,
- "InterruptedException": 2,
- "ReactorException": 2,
- "PluginManager": 1,
- "pluginManager": 2,
- "getJobListeners": 1,
- "getComputerListeners": 1,
- "Slave": 3,
- "getSlave": 1,
- "Node": 1,
- "n": 3,
- "getNode": 1,
- "List": 3,
- "": 2,
- "getSlaves": 1,
- "slaves": 3,
- "setSlaves": 1,
- "setNodes": 1,
- "TopLevelItem": 3,
- "getJob": 1,
- "getItem": 1,
- "getJobCaseInsensitive": 1,
- "match": 2,
- "Functions.toEmailSafeString": 2,
- "item": 2,
- "getItems": 1,
- "item.getName": 1,
- "synchronized": 1,
- "doQuietDown": 2,
- "StaplerResponse": 4,
- "rsp": 6,
- "ServletException": 3,
- ".generateResponse": 2,
- "doLogRss": 1,
- "StaplerRequest": 4,
- "req": 6,
- "qs": 3,
- "req.getQueryString": 1,
- "rsp.sendRedirect2": 1,
- "doFieldCheck": 3,
- "fixEmpty": 8,
- "req.getParameter": 4,
- "FormValidation": 2,
- "@QueryParameter": 4,
- "value": 11,
- "type": 3,
- "errorText": 3,
- "warningText": 3,
- "FormValidation.error": 4,
- "FormValidation.warning": 1,
- "try": 26,
- "type.equalsIgnoreCase": 2,
- "NumberFormat.getInstance": 2,
- ".parse": 2,
- ".floatValue": 1,
- "<=>": 1,
- "0": 1,
- "error": 1,
- "Messages": 1,
- "Hudson_NotAPositiveNumber": 1,
- "equalsIgnoreCase": 1,
- "number": 1,
- "negative": 1,
- "NumberFormat": 1,
- "parse": 1,
- "floatValue": 1,
- "Messages.Hudson_NotANegativeNumber": 1,
- "catch": 27,
- "ParseException": 1,
- "Messages.Hudson_NotANumber": 1,
- "FormValidation.ok": 1,
- "isWindows": 1,
- "File.pathSeparatorChar": 1,
- "isDarwin": 1,
- "Platform.isDarwin": 1,
- "adminCheck": 3,
- "Stapler.getCurrentRequest": 1,
- "Stapler.getCurrentResponse": 1,
- "isAdmin": 4,
- "rsp.sendError": 1,
- "StaplerResponse.SC_FORBIDDEN": 1,
- ".getACL": 1,
- ".hasPermission": 1,
- "ADMINISTER": 1,
- "XSTREAM.alias": 1,
- "Hudson.class": 1,
- "MasterComputer": 1,
- "Jenkins.MasterComputer": 1,
- "CloudList": 3,
- "Jenkins.CloudList": 1,
- "h": 2,
- "needed": 1,
- "XStream": 1,
- "deserialization": 1,
- "nokogiri": 6,
- "java.util.HashMap": 1,
- "org.jruby.RubyArray": 1,
- "org.jruby.RubyFixnum": 1,
- "org.jruby.RubyModule": 1,
- "org.jruby.runtime.ObjectAllocator": 1,
- "org.jruby.runtime.load.BasicLibraryService": 1,
- "NokogiriService": 1,
- "implements": 3,
- "BasicLibraryService": 1,
- "nokogiriClassCacheGvarName": 1,
- "Map": 1,
- "": 2,
- "nokogiriClassCache": 2,
- "basicLoad": 1,
- "ruby": 25,
- "init": 2,
- "createNokogiriClassCahce": 2,
- "Collections.synchronizedMap": 1,
- "HashMap": 1,
- "nokogiriClassCache.put": 26,
- "ruby.getClassFromPath": 26,
- "RubyModule": 18,
- "ruby.defineModule": 1,
- "xmlModule": 7,
- "nokogiri.defineModuleUnder": 3,
- "xmlSaxModule": 3,
- "xmlModule.defineModuleUnder": 1,
- "htmlModule": 5,
- "htmlSaxModule": 3,
- "htmlModule.defineModuleUnder": 1,
- "xsltModule": 3,
- "createNokogiriModule": 2,
- "createSyntaxErrors": 2,
- "xmlNode": 5,
- "createXmlModule": 2,
- "createHtmlModule": 2,
- "createDocuments": 2,
- "createSaxModule": 2,
- "createXsltModule": 2,
- "encHandler": 1,
- "nokogiri.defineClassUnder": 2,
- "ruby.getObject": 13,
- "ENCODING_HANDLER_ALLOCATOR": 2,
- "encHandler.defineAnnotatedMethods": 1,
- "EncodingHandler.class": 1,
- "syntaxError": 2,
- "ruby.getStandardError": 2,
- ".getAllocator": 1,
- "xmlSyntaxError": 4,
- "xmlModule.defineClassUnder": 23,
- "XML_SYNTAXERROR_ALLOCATOR": 2,
- "xmlSyntaxError.defineAnnotatedMethods": 1,
- "XmlSyntaxError.class": 1,
- "node": 14,
- "XML_NODE_ALLOCATOR": 2,
- "node.defineAnnotatedMethods": 1,
- "XmlNode.class": 1,
- "attr": 1,
- "XML_ATTR_ALLOCATOR": 2,
- "attr.defineAnnotatedMethods": 1,
- "XmlAttr.class": 1,
- "attrDecl": 1,
- "XML_ATTRIBUTE_DECL_ALLOCATOR": 2,
- "attrDecl.defineAnnotatedMethods": 1,
- "XmlAttributeDecl.class": 1,
- "characterData": 3,
- "comment": 1,
- "XML_COMMENT_ALLOCATOR": 2,
- "comment.defineAnnotatedMethods": 1,
- "XmlComment.class": 1,
- "text": 2,
- "XML_TEXT_ALLOCATOR": 2,
- "text.defineAnnotatedMethods": 1,
- "XmlText.class": 1,
- "cdata": 1,
- "XML_CDATA_ALLOCATOR": 2,
- "cdata.defineAnnotatedMethods": 1,
- "XmlCdata.class": 1,
- "dtd": 1,
- "XML_DTD_ALLOCATOR": 2,
- "dtd.defineAnnotatedMethods": 1,
- "XmlDtd.class": 1,
- "documentFragment": 1,
- "XML_DOCUMENT_FRAGMENT_ALLOCATOR": 2,
- "documentFragment.defineAnnotatedMethods": 1,
- "XmlDocumentFragment.class": 1,
- "XML_ELEMENT_ALLOCATOR": 2,
- "element.defineAnnotatedMethods": 1,
- "XmlElement.class": 1,
- "elementContent": 1,
- "XML_ELEMENT_CONTENT_ALLOCATOR": 2,
- "elementContent.defineAnnotatedMethods": 1,
- "XmlElementContent.class": 1,
- "elementDecl": 1,
- "XML_ELEMENT_DECL_ALLOCATOR": 2,
- "elementDecl.defineAnnotatedMethods": 1,
- "XmlElementDecl.class": 1,
- "entityDecl": 1,
- "XML_ENTITY_DECL_ALLOCATOR": 2,
- "entityDecl.defineAnnotatedMethods": 1,
- "XmlEntityDecl.class": 1,
- "entityDecl.defineConstant": 6,
- "RubyFixnum.newFixnum": 6,
- "XmlEntityDecl.INTERNAL_GENERAL": 1,
- "XmlEntityDecl.EXTERNAL_GENERAL_PARSED": 1,
- "XmlEntityDecl.EXTERNAL_GENERAL_UNPARSED": 1,
- "XmlEntityDecl.INTERNAL_PARAMETER": 1,
- "XmlEntityDecl.EXTERNAL_PARAMETER": 1,
- "XmlEntityDecl.INTERNAL_PREDEFINED": 1,
- "entref": 1,
- "XML_ENTITY_REFERENCE_ALLOCATOR": 2,
- "entref.defineAnnotatedMethods": 1,
- "XmlEntityReference.class": 1,
- "namespace": 1,
- "XML_NAMESPACE_ALLOCATOR": 2,
- "namespace.defineAnnotatedMethods": 1,
- "XmlNamespace.class": 1,
- "nodeSet": 1,
- "XML_NODESET_ALLOCATOR": 2,
- "nodeSet.defineAnnotatedMethods": 1,
- "XmlNodeSet.class": 1,
- "pi": 1,
- "XML_PROCESSING_INSTRUCTION_ALLOCATOR": 2,
- "pi.defineAnnotatedMethods": 1,
- "XmlProcessingInstruction.class": 1,
- "reader": 1,
- "XML_READER_ALLOCATOR": 2,
- "reader.defineAnnotatedMethods": 1,
- "XmlReader.class": 1,
- "schema": 2,
- "XML_SCHEMA_ALLOCATOR": 2,
- "schema.defineAnnotatedMethods": 1,
- "XmlSchema.class": 1,
- "relaxng": 1,
- "XML_RELAXNG_ALLOCATOR": 2,
- "relaxng.defineAnnotatedMethods": 1,
- "XmlRelaxng.class": 1,
- "xpathContext": 1,
- "XML_XPATHCONTEXT_ALLOCATOR": 2,
- "xpathContext.defineAnnotatedMethods": 1,
- "XmlXpathContext.class": 1,
- "htmlElemDesc": 1,
- "htmlModule.defineClassUnder": 3,
- "HTML_ELEMENT_DESCRIPTION_ALLOCATOR": 2,
- "htmlElemDesc.defineAnnotatedMethods": 1,
- "HtmlElementDescription.class": 1,
- "htmlEntityLookup": 1,
- "HTML_ENTITY_LOOKUP_ALLOCATOR": 2,
- "htmlEntityLookup.defineAnnotatedMethods": 1,
- "HtmlEntityLookup.class": 1,
- "xmlDocument": 5,
- "XML_DOCUMENT_ALLOCATOR": 2,
- "xmlDocument.defineAnnotatedMethods": 1,
- "XmlDocument.class": 1,
- "//RubyModule": 1,
- "htmlDoc": 1,
- "html.defineOrGetClassUnder": 1,
- "HTML_DOCUMENT_ALLOCATOR": 2,
- "htmlDocument.defineAnnotatedMethods": 1,
- "HtmlDocument.class": 1,
- "xmlSaxParserContext": 5,
- "xmlSaxModule.defineClassUnder": 2,
- "XML_SAXPARSER_CONTEXT_ALLOCATOR": 2,
- "xmlSaxParserContext.defineAnnotatedMethods": 1,
- "XmlSaxParserContext.class": 1,
- "xmlSaxPushParser": 1,
- "XML_SAXPUSHPARSER_ALLOCATOR": 2,
- "xmlSaxPushParser.defineAnnotatedMethods": 1,
- "XmlSaxPushParser.class": 1,
- "htmlSaxParserContext": 4,
- "htmlSaxModule.defineClassUnder": 1,
- "HTML_SAXPARSER_CONTEXT_ALLOCATOR": 2,
- "htmlSaxParserContext.defineAnnotatedMethods": 1,
- "HtmlSaxParserContext.class": 1,
- "stylesheet": 1,
- "xsltModule.defineClassUnder": 1,
- "XSLT_STYLESHEET_ALLOCATOR": 2,
- "stylesheet.defineAnnotatedMethods": 1,
- "XsltStylesheet.class": 2,
- "xsltModule.defineAnnotatedMethod": 1,
- "ObjectAllocator": 60,
- "allocate": 30,
- "EncodingHandler": 1,
- "clone": 47,
- "htmlDocument.clone": 1,
- "clone.setMetaClass": 23,
- "CloneNotSupportedException": 23,
- "HtmlSaxParserContext": 5,
- "htmlSaxParserContext.clone": 1,
- "HtmlElementDescription": 1,
- "HtmlEntityLookup": 1,
- "XmlAttr": 5,
- "xmlAttr": 3,
- "xmlAttr.clone": 1,
- "XmlCdata": 5,
- "xmlCdata": 3,
- "xmlCdata.clone": 1,
- "XmlComment": 5,
- "xmlComment": 3,
- "xmlComment.clone": 1,
- "xmlDocument.clone": 1,
- "XmlDocumentFragment": 5,
- "xmlDocumentFragment": 3,
- "xmlDocumentFragment.clone": 1,
- "XmlDtd": 5,
- "xmlDtd": 3,
- "xmlDtd.clone": 1,
- "XmlElement": 5,
- "xmlElement": 3,
- "xmlElement.clone": 1,
- "XmlElementDecl": 5,
- "xmlElementDecl": 3,
- "xmlElementDecl.clone": 1,
- "XmlEntityReference": 5,
- "xmlEntityRef": 3,
- "xmlEntityRef.clone": 1,
- "XmlNamespace": 5,
- "xmlNamespace": 3,
- "xmlNamespace.clone": 1,
- "XmlNode": 5,
- "xmlNode.clone": 1,
- "XmlNodeSet": 5,
- "xmlNodeSet": 5,
- "xmlNodeSet.clone": 1,
- "xmlNodeSet.setNodes": 1,
- "RubyArray.newEmptyArray": 1,
- "XmlProcessingInstruction": 5,
- "xmlProcessingInstruction": 3,
- "xmlProcessingInstruction.clone": 1,
- "XmlReader": 5,
- "xmlReader": 5,
- "xmlReader.clone": 1,
- "XmlAttributeDecl": 1,
- "XmlEntityDecl": 1,
- "runtime.newNotImplementedError": 1,
- "XmlRelaxng": 5,
- "xmlRelaxng": 3,
- "xmlRelaxng.clone": 1,
- "XmlSaxParserContext": 5,
- "xmlSaxParserContext.clone": 1,
- "XmlSaxPushParser": 1,
- "XmlSchema": 5,
- "xmlSchema": 3,
- "xmlSchema.clone": 1,
- "XmlSyntaxError": 5,
- "xmlSyntaxError.clone": 1,
- "XmlText": 6,
- "xmlText": 3,
- "xmlText.clone": 1,
- "XmlXpathContext": 5,
- "xmlXpathContext": 3,
- "xmlXpathContext.clone": 1,
- "XsltStylesheet": 4,
- "xsltStylesheet": 3,
- "xsltStylesheet.clone": 1,
- "persons": 1,
- "ProtocolBuffer": 2,
- "registerAllExtensions": 1,
- "com.google.protobuf.ExtensionRegistry": 2,
- "registry": 1,
- "interface": 1,
- "PersonOrBuilder": 2,
- "com.google.protobuf.MessageOrBuilder": 1,
- "hasName": 5,
- "java.lang.String": 15,
- "getName": 3,
- "com.google.protobuf.ByteString": 13,
- "getNameBytes": 5,
- "Person": 10,
- "com.google.protobuf.GeneratedMessage": 1,
- "com.google.protobuf.GeneratedMessage.Builder": 2,
- ">": 1,
- "builder": 4,
- "this.unknownFields": 4,
- "builder.getUnknownFields": 1,
- "noInit": 1,
- "com.google.protobuf.UnknownFieldSet.getDefaultInstance": 1,
- "defaultInstance": 4,
- "getDefaultInstance": 2,
- "getDefaultInstanceForType": 2,
- "com.google.protobuf.UnknownFieldSet": 2,
- "unknownFields": 3,
- "@java.lang.Override": 4,
- "getUnknownFields": 3,
- "com.google.protobuf.CodedInputStream": 5,
- "input": 18,
- "com.google.protobuf.ExtensionRegistryLite": 8,
- "extensionRegistry": 16,
- "com.google.protobuf.InvalidProtocolBufferException": 9,
- "initFields": 2,
- "mutable_bitField0_": 1,
- "com.google.protobuf.UnknownFieldSet.Builder": 1,
- "com.google.protobuf.UnknownFieldSet.newBuilder": 1,
- "done": 4,
- "tag": 3,
- "input.readTag": 1,
- "parseUnknownField": 1,
- "bitField0_": 15,
- "|": 5,
- "name_": 18,
- "input.readBytes": 1,
- "e.setUnfinishedMessage": 1,
- "e.getMessage": 1,
- ".setUnfinishedMessage": 1,
- "finally": 2,
- "unknownFields.build": 1,
- "makeExtensionsImmutable": 1,
- "com.google.protobuf.Descriptors.Descriptor": 4,
- "persons.ProtocolBuffer.internal_static_persons_Person_descriptor": 3,
- "com.google.protobuf.GeneratedMessage.FieldAccessorTable": 4,
- "internalGetFieldAccessorTable": 2,
- "persons.ProtocolBuffer.internal_static_persons_Person_fieldAccessorTable": 2,
- ".ensureFieldAccessorsInitialized": 2,
- "persons.ProtocolBuffer.Person.class": 2,
- "persons.ProtocolBuffer.Person.Builder.class": 2,
- "com.google.protobuf.Parser": 2,
- "": 3,
- "PARSER": 2,
- "com.google.protobuf.AbstractParser": 1,
- "parsePartialFrom": 1,
- "getParserForType": 1,
- "NAME_FIELD_NUMBER": 1,
- "java.lang.Object": 7,
- "&": 7,
- "ref": 16,
- "bs": 1,
- "bs.toStringUtf8": 1,
- "bs.isValidUtf8": 1,
- "com.google.protobuf.ByteString.copyFromUtf8": 2,
- "byte": 4,
- "memoizedIsInitialized": 4,
- "isInitialized": 5,
- "writeTo": 1,
- "com.google.protobuf.CodedOutputStream": 2,
- "output": 2,
- "getSerializedSize": 2,
- "output.writeBytes": 1,
- ".writeTo": 1,
- "memoizedSerializedSize": 3,
- ".computeBytesSize": 1,
- ".getSerializedSize": 1,
- "serialVersionUID": 1,
- "L": 1,
- "writeReplace": 1,
- "java.io.ObjectStreamException": 1,
- "super.writeReplace": 1,
- "persons.ProtocolBuffer.Person": 22,
- "parseFrom": 8,
- "data": 8,
- "PARSER.parseFrom": 8,
- "java.io.InputStream": 4,
- "parseDelimitedFrom": 2,
- "PARSER.parseDelimitedFrom": 2,
- "Builder": 20,
- "newBuilder": 5,
- "Builder.create": 1,
- "newBuilderForType": 2,
- "prototype": 2,
- ".mergeFrom": 2,
- "toBuilder": 1,
- "com.google.protobuf.GeneratedMessage.BuilderParent": 2,
- "parent": 4,
- "": 1,
- "persons.ProtocolBuffer.PersonOrBuilder": 1,
- "maybeForceBuilderInitialization": 3,
- "com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders": 1,
- "create": 2,
- "clear": 1,
- "super.clear": 1,
- "buildPartial": 3,
- "getDescriptorForType": 1,
- "persons.ProtocolBuffer.Person.getDefaultInstance": 2,
- "build": 1,
- "result": 5,
- "result.isInitialized": 1,
- "newUninitializedMessageException": 1,
- "from_bitField0_": 2,
- "to_bitField0_": 3,
- "result.name_": 1,
- "result.bitField0_": 1,
- "onBuilt": 1,
- "mergeFrom": 5,
- "com.google.protobuf.Message": 1,
- "other": 6,
- "super.mergeFrom": 1,
- "other.hasName": 1,
- "other.name_": 1,
- "onChanged": 4,
- "this.mergeUnknownFields": 1,
- "other.getUnknownFields": 1,
- "parsedMessage": 5,
- "PARSER.parsePartialFrom": 1,
- "e.getUnfinishedMessage": 1,
- ".toStringUtf8": 1,
- "setName": 1,
- "clearName": 1,
- ".getName": 1,
- "setNameBytes": 1,
- "defaultInstance.initFields": 1,
- "internal_static_persons_Person_descriptor": 3,
- "internal_static_persons_Person_fieldAccessorTable": 2,
- "com.google.protobuf.Descriptors.FileDescriptor": 5,
- "descriptor": 3,
- "descriptorData": 2,
- "com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner": 2,
- "assigner": 2,
- "assignDescriptors": 1,
- ".getMessageTypes": 1,
- ".get": 1,
- ".internalBuildGeneratedFileFrom": 1
+ "*": 4,
+ "Item": 6,
+ "AsciiDoc": 3,
+ "Home": 1,
+ "Page": 1,
+ "Example": 1,
+ "Articles": 1,
+ "-": 4,
+ "Gregory": 2,
+ "Rom": 2,
+ "has": 2,
+ "written": 2,
+ "an": 2,
+ "plugin": 2,
+ "for": 2,
+ "the": 2,
+ "Redmine": 2,
+ "project": 2,
+ "management": 2,
+ "application.": 2,
+ "https": 1,
+ "//github.com/foo": 1,
+ "users/foo": 1,
+ "vicmd": 1,
+ "gif": 1,
+ "tag": 1,
+ "rom": 2,
+ "[": 2,
+ "]": 2,
+ "end": 1,
+ "berschrift": 1,
+ "Codierungen": 1,
+ "sind": 1,
+ "verr": 1,
+ "ckt": 1,
+ "auf": 1,
+ "lteren": 1,
+ "Versionen": 1,
+ "von": 1,
+ "Ruby": 1
},
"JavaScript": {
- "function": 1210,
"(": 8513,
+ "function": 1210,
+ "a": 1489,
+ "b": 961,
")": 8521,
"{": 2736,
- ";": 4052,
- "//": 410,
- "jshint": 1,
- "_": 9,
- "var": 910,
- "Modal": 2,
- "content": 5,
- "options": 56,
- "this.options": 6,
- "this.": 2,
- "element": 19,
- ".delegate": 2,
- ".proxy": 1,
- "this.hide": 1,
- "this": 577,
- "}": 2712,
- "Modal.prototype": 1,
- "constructor": 8,
- "toggle": 10,
+ "cy": 4,
"return": 944,
- "[": 1459,
- "this.isShown": 3,
- "]": 1456,
- "show": 10,
- "that": 33,
- "e": 663,
- ".Event": 1,
- "element.trigger": 1,
- "if": 1230,
- "||": 648,
- "e.isDefaultPrevented": 2,
- ".addClass": 1,
- "true": 147,
- "escape.call": 1,
- "backdrop.call": 1,
- "transition": 1,
- ".support.transition": 1,
- "&&": 1017,
- "that.": 3,
- "element.hasClass": 1,
- "element.parent": 1,
- ".length": 24,
- "element.appendTo": 1,
- "document.body": 8,
- "//don": 1,
- "in": 170,
- "shown": 2,
- "hide": 8,
- "body": 22,
- "modal": 4,
- "-": 705,
- "open": 2,
- "fade": 4,
- "hidden": 12,
- "": 4,
- "class=": 5,
- "static": 2,
- "keyup.dismiss.modal": 2,
- "object": 59,
- "string": 41,
- "click.modal.data": 1,
- "api": 1,
- "data": 145,
- "target": 44,
- "href": 9,
- ".extend": 1,
- "target.data": 1,
- "this.data": 5,
- "e.preventDefault": 1,
- "target.modal": 1,
- "option": 12,
- "window.jQuery": 7,
- "Animal": 12,
- "Horse": 12,
- "Snake": 12,
- "sam": 4,
- "tom": 4,
- "__hasProp": 2,
- "Object.prototype.hasOwnProperty": 6,
- "__extends": 6,
- "child": 17,
- "parent": 15,
- "for": 262,
- "key": 85,
- "__hasProp.call": 2,
- "ctor": 6,
- "this.constructor": 5,
- "ctor.prototype": 3,
- "parent.prototype": 6,
- "child.prototype": 4,
- "new": 86,
- "child.__super__": 3,
- "name": 161,
- "this.name": 7,
- "Animal.prototype.move": 2,
- "meters": 4,
- "alert": 11,
- "+": 1135,
- "Snake.__super__.constructor.apply": 2,
- "arguments": 83,
- "Snake.prototype.move": 2,
- "Snake.__super__.move.call": 2,
- "Horse.__super__.constructor.apply": 2,
- "Horse.prototype.move": 2,
- "Horse.__super__.move.call": 2,
- "sam.move": 2,
- "tom.move": 2,
- ".call": 10,
- ".hasOwnProperty": 2,
- "Animal.name": 1,
- "_super": 4,
- "Snake.name": 1,
- "Horse.name": 1,
- "console.log": 3,
- "util": 1,
- "require": 9,
- "net": 1,
- "stream": 1,
- "url": 23,
- "EventEmitter": 3,
- ".EventEmitter": 1,
- "FreeList": 2,
- ".FreeList": 1,
- "HTTPParser": 2,
- "process.binding": 1,
- ".HTTPParser": 1,
- "assert": 8,
- ".ok": 1,
- "END_OF_FILE": 3,
- "debug": 15,
- "process.env.NODE_DEBUG": 2,
- "/http/.test": 1,
- "x": 33,
- "console.error": 3,
- "else": 307,
- "parserOnHeaders": 2,
- "headers": 41,
- "this.maxHeaderPairs": 2,
- "<": 209,
- "this._headers.length": 1,
- "this._headers": 13,
- "this._headers.concat": 1,
- "this._url": 1,
- "parserOnHeadersComplete": 2,
- "info": 2,
- "parser": 27,
- "info.headers": 1,
- "info.url": 1,
- "parser._headers": 6,
- "parser._url": 4,
- "parser.incoming": 9,
- "IncomingMessage": 4,
- "parser.socket": 4,
- "parser.incoming.httpVersionMajor": 1,
- "info.versionMajor": 2,
- "parser.incoming.httpVersionMinor": 1,
- "info.versionMinor": 2,
- "parser.incoming.httpVersion": 1,
- "parser.incoming.url": 1,
- "n": 874,
- "headers.length": 2,
- "parser.maxHeaderPairs": 4,
- "Math.min": 5,
- "i": 853,
- "k": 302,
- "v": 135,
- "parser.incoming._addHeaderLine": 2,
- "info.method": 2,
- "parser.incoming.method": 1,
- "parser.incoming.statusCode": 2,
- "info.statusCode": 1,
- "parser.incoming.upgrade": 4,
- "info.upgrade": 2,
- "skipBody": 3,
- "false": 142,
- "response": 3,
- "to": 92,
- "HEAD": 3,
- "or": 38,
- "CONNECT": 1,
- "parser.onIncoming": 3,
- "info.shouldKeepAlive": 1,
- "parserOnBody": 2,
- "b": 961,
- "start": 20,
- "len": 11,
- "slice": 10,
- "b.slice": 1,
- "parser.incoming._paused": 2,
- "parser.incoming._pendings.length": 2,
- "parser.incoming._pendings.push": 2,
- "parser.incoming._emitData": 1,
- "parserOnMessageComplete": 2,
- "parser.incoming.complete": 2,
- "parser.incoming.readable": 1,
- "parser.incoming._emitEnd": 1,
- "parser.socket.readable": 1,
- "parser.socket.resume": 1,
- "parsers": 2,
- "HTTPParser.REQUEST": 2,
- "parser.onHeaders": 1,
- "parser.onHeadersComplete": 1,
- "parser.onBody": 1,
- "parser.onMessageComplete": 1,
- "exports.parsers": 1,
- "CRLF": 13,
- "STATUS_CODES": 2,
- "exports.STATUS_CODES": 1,
- "RFC": 16,
- "obsoleted": 1,
- "by": 12,
- "connectionExpression": 1,
- "/Connection/i": 1,
- "transferEncodingExpression": 1,
- "/Transfer": 1,
- "Encoding/i": 1,
- "closeExpression": 1,
- "/close/i": 1,
- "chunkExpression": 1,
- "/chunk/i": 1,
- "contentLengthExpression": 1,
- "/Content": 1,
- "Length/i": 1,
- "dateExpression": 1,
- "/Date/i": 1,
- "expectExpression": 1,
- "/Expect/i": 1,
- "continueExpression": 1,
- "/100": 2,
- "continue/i": 1,
- "dateCache": 5,
- "utcDate": 2,
- "d": 771,
- "Date": 4,
- "d.toUTCString": 1,
- "setTimeout": 19,
- "undefined": 328,
- "d.getMilliseconds": 1,
- "socket": 26,
- "stream.Stream.call": 2,
- "this.socket": 10,
- "this.connection": 8,
- "this.httpVersion": 1,
- "null": 427,
- "this.complete": 2,
- "this.headers": 2,
- "this.trailers": 2,
- "this.readable": 1,
- "this._paused": 3,
- "this._pendings": 1,
- "this._endEmitted": 3,
- "this.url": 1,
- "this.method": 2,
- "this.statusCode": 3,
- "this.client": 1,
- "util.inherits": 7,
- "stream.Stream": 2,
- "exports.IncomingMessage": 1,
- "IncomingMessage.prototype.destroy": 1,
- "error": 20,
- "this.socket.destroy": 3,
- "IncomingMessage.prototype.setEncoding": 1,
- "encoding": 26,
- "StringDecoder": 2,
- ".StringDecoder": 1,
- "lazy": 1,
- "load": 5,
- "this._decoder": 2,
- "IncomingMessage.prototype.pause": 1,
- "this.socket.pause": 1,
- "IncomingMessage.prototype.resume": 1,
- "this.socket.resume": 1,
- "this._emitPending": 1,
- "IncomingMessage.prototype._emitPending": 1,
- "callback": 23,
- "this._pendings.length": 1,
- "self": 17,
- "process.nextTick": 1,
- "while": 53,
- "self._paused": 1,
- "self._pendings.length": 2,
- "chunk": 14,
- "self._pendings.shift": 1,
- "Buffer.isBuffer": 2,
- "self._emitData": 1,
- "self.readable": 1,
- "self._emitEnd": 1,
- "IncomingMessage.prototype._emitData": 1,
- "this._decoder.write": 1,
- "string.length": 1,
- "this.emit": 5,
- "IncomingMessage.prototype._emitEnd": 1,
- "IncomingMessage.prototype._addHeaderLine": 1,
- "field": 36,
- "value": 98,
- "dest": 12,
- "field.toLowerCase": 1,
- "switch": 30,
- "case": 136,
- ".push": 3,
- "break": 111,
- "default": 21,
- "field.slice": 1,
- "OutgoingMessage": 5,
- "this.output": 3,
- "this.outputEncodings": 2,
- "this.writable": 1,
- "this._last": 3,
- "this.chunkedEncoding": 6,
- "this.shouldKeepAlive": 4,
- "this.useChunkedEncodingByDefault": 4,
- "this.sendDate": 3,
- "this._hasBody": 6,
- "this._trailer": 5,
- "this.finished": 4,
- "exports.OutgoingMessage": 1,
- "OutgoingMessage.prototype.destroy": 1,
- "OutgoingMessage.prototype._send": 1,
- "this._headerSent": 5,
- "typeof": 132,
- "this._header": 10,
- "this.output.unshift": 1,
- "this.outputEncodings.unshift": 1,
- "this._writeRaw": 2,
- "OutgoingMessage.prototype._writeRaw": 1,
- "data.length": 3,
- "this.connection._httpMessage": 3,
- "this.connection.writable": 3,
- "this.output.length": 5,
- "this._buffer": 2,
- "c": 775,
- "this.output.shift": 2,
- "this.outputEncodings.shift": 2,
- "this.connection.write": 4,
- "OutgoingMessage.prototype._buffer": 1,
- "length": 48,
- "this.output.push": 2,
- "this.outputEncodings.push": 2,
- "lastEncoding": 2,
- "lastData": 2,
- "data.constructor": 1,
- "lastData.constructor": 1,
- "OutgoingMessage.prototype._storeHeader": 1,
- "firstLine": 2,
- "sentConnectionHeader": 3,
- "sentContentLengthHeader": 4,
- "sentTransferEncodingHeader": 3,
- "sentDateHeader": 3,
- "sentExpect": 3,
- "messageHeader": 7,
- "store": 3,
- "connectionExpression.test": 1,
- "closeExpression.test": 1,
- "self._last": 4,
- "self.shouldKeepAlive": 4,
- "transferEncodingExpression.test": 1,
- "chunkExpression.test": 1,
- "self.chunkedEncoding": 1,
- "contentLengthExpression.test": 1,
- "dateExpression.test": 1,
- "expectExpression.test": 1,
- "keys": 11,
- "Object.keys": 5,
- "isArray": 10,
- "Array.isArray": 7,
- "l": 312,
- "keys.length": 5,
- "j": 265,
- "value.length": 1,
- "shouldSendKeepAlive": 2,
- "this.agent": 2,
- "this._send": 8,
- "OutgoingMessage.prototype.setHeader": 1,
- "arguments.length": 18,
- "throw": 27,
- "Error": 16,
- "name.toLowerCase": 6,
- "this._headerNames": 5,
- "OutgoingMessage.prototype.getHeader": 1,
- "OutgoingMessage.prototype.removeHeader": 1,
- "delete": 39,
- "OutgoingMessage.prototype._renderHeaders": 1,
- "OutgoingMessage.prototype.write": 1,
- "this._implicitHeader": 2,
- "TypeError": 2,
- "chunk.length": 2,
- "ret": 62,
- "Buffer.byteLength": 2,
- "len.toString": 2,
- "OutgoingMessage.prototype.addTrailers": 1,
- "OutgoingMessage.prototype.end": 1,
- "hot": 3,
- ".toString": 3,
- "this.write": 1,
- "Last": 2,
- "chunk.": 1,
- "this._finish": 2,
- "OutgoingMessage.prototype._finish": 1,
- "instanceof": 19,
- "ServerResponse": 5,
- "DTRACE_HTTP_SERVER_RESPONSE": 1,
- "ClientRequest": 6,
- "DTRACE_HTTP_CLIENT_REQUEST": 1,
- "OutgoingMessage.prototype._flush": 1,
- "this.socket.writable": 2,
- "XXX": 1,
- "Necessary": 1,
- "this.socket.write": 1,
- "req": 32,
- "OutgoingMessage.call": 2,
- "req.method": 5,
- "req.httpVersionMajor": 2,
- "req.httpVersionMinor": 2,
- "exports.ServerResponse": 1,
- "ServerResponse.prototype.statusCode": 1,
- "onServerResponseClose": 3,
- "this._httpMessage.emit": 2,
- "ServerResponse.prototype.assignSocket": 1,
- "socket._httpMessage": 9,
- "socket.on": 2,
- "this._flush": 1,
- "ServerResponse.prototype.detachSocket": 1,
- "socket.removeListener": 5,
- "ServerResponse.prototype.writeContinue": 1,
- "this._sent100": 2,
- "ServerResponse.prototype._implicitHeader": 1,
- "this.writeHead": 1,
- "ServerResponse.prototype.writeHead": 1,
- "statusCode": 7,
- "reasonPhrase": 4,
- "headerIndex": 4,
- "obj": 40,
- "this._renderHeaders": 3,
- "obj.length": 1,
- "obj.push": 1,
- "statusLine": 2,
- "statusCode.toString": 1,
- "this._expect_continue": 1,
- "this._storeHeader": 2,
- "ServerResponse.prototype.writeHeader": 1,
- "this.writeHead.apply": 1,
- "Agent": 5,
- "self.options": 2,
- "self.requests": 6,
- "self.sockets": 3,
- "self.maxSockets": 1,
- "self.options.maxSockets": 1,
- "Agent.defaultMaxSockets": 2,
- "self.on": 1,
- "host": 29,
- "port": 29,
- "localAddress": 15,
- ".shift": 1,
- ".onSocket": 1,
- "socket.destroy": 10,
- "self.createConnection": 2,
- "net.createConnection": 3,
- "exports.Agent": 1,
- "Agent.prototype.defaultPort": 1,
- "Agent.prototype.addRequest": 1,
- "this.sockets": 9,
- "this.maxSockets": 1,
- "req.onSocket": 1,
- "this.createSocket": 2,
- "this.requests": 5,
- "Agent.prototype.createSocket": 1,
- "util._extend": 1,
- "options.port": 4,
- "options.host": 4,
- "options.localAddress": 3,
- "s": 290,
- "onFree": 3,
- "self.emit": 9,
- "s.on": 4,
- "onClose": 3,
- "err": 5,
- "self.removeSocket": 2,
- "onRemove": 3,
- "s.removeListener": 3,
- "Agent.prototype.removeSocket": 1,
- "index": 5,
- ".indexOf": 2,
- ".splice": 5,
- ".emit": 1,
- "globalAgent": 3,
- "exports.globalAgent": 1,
- "cb": 16,
- "self.agent": 3,
- "options.agent": 3,
- "defaultPort": 3,
- "options.defaultPort": 1,
- "options.hostname": 1,
- "options.setHost": 1,
- "setHost": 2,
- "self.socketPath": 4,
- "options.socketPath": 1,
- "method": 30,
- "self.method": 3,
- "options.method": 2,
- ".toUpperCase": 3,
- "self.path": 3,
- "options.path": 2,
- "self.once": 2,
- "options.headers": 7,
- "self.setHeader": 1,
- "this.getHeader": 2,
- "hostHeader": 3,
- "this.setHeader": 2,
- "options.auth": 2,
- "//basic": 1,
- "auth": 1,
- "Buffer": 1,
- "self.useChunkedEncodingByDefault": 2,
- "self._storeHeader": 2,
- "self.getHeader": 1,
- "self._renderHeaders": 1,
- "options.createConnection": 4,
- "self.onSocket": 3,
- "self.agent.addRequest": 1,
- "conn": 3,
- "self._deferToConnect": 1,
- "self._flush": 1,
- "exports.ClientRequest": 1,
- "ClientRequest.prototype._implicitHeader": 1,
- "this.path": 1,
- "ClientRequest.prototype.abort": 1,
- "this._deferToConnect": 3,
- "createHangUpError": 3,
- "error.code": 1,
- "freeParser": 9,
- "parser.socket.onend": 1,
- "parser.socket.ondata": 1,
- "parser.socket.parser": 1,
- "parsers.free": 1,
- "req.parser": 1,
- "socketCloseListener": 2,
- "socket.parser": 3,
- "req.emit": 8,
- "req.res": 8,
- "req.res.readable": 1,
- "req.res.emit": 1,
- "res": 14,
- "req.res._emitPending": 1,
- "res._emitEnd": 1,
- "res.emit": 1,
- "req._hadError": 3,
- "parser.finish": 6,
- "socketErrorListener": 2,
- "err.message": 1,
- "err.stack": 1,
- "socketOnEnd": 1,
- "this._httpMessage": 3,
- "this.parser": 2,
- "socketOnData": 1,
- "end": 14,
- "parser.execute": 2,
- "bytesParsed": 4,
- "socket.ondata": 3,
- "socket.onend": 3,
- "bodyHead": 4,
- "d.slice": 2,
- "eventName": 21,
- "req.listeners": 1,
- "req.upgradeOrConnect": 1,
- "socket.emit": 1,
- "parserOnIncomingClient": 1,
- "shouldKeepAlive": 4,
- "res.upgrade": 1,
- "skip": 5,
- "isHeadResponse": 2,
- "res.statusCode": 1,
- "Clear": 1,
- "so": 8,
- "we": 25,
- "don": 5,
- "continue": 18,
- "ve": 3,
- "been": 5,
- "upgraded": 1,
- "via": 2,
- "WebSockets": 1,
- "also": 5,
- "shouldn": 2,
- "AGENT": 2,
- "socket.destroySoon": 2,
- "keep": 1,
- "alive": 1,
- "close": 2,
- "free": 1,
- "number": 13,
- "an": 12,
- "important": 1,
- "promisy": 1,
- "thing": 2,
- "all": 16,
- "the": 107,
- "onSocket": 3,
- "self.socket.writable": 1,
- "self.socket": 5,
- ".apply": 7,
- "arguments_": 2,
- "self.socket.once": 1,
- "ClientRequest.prototype.setTimeout": 1,
- "msecs": 4,
- "this.once": 2,
- "emitTimeout": 4,
- "this.socket.setTimeout": 1,
- "this.socket.once": 1,
- "this.setTimeout": 3,
- "sock": 1,
- "ClientRequest.prototype.setNoDelay": 1,
- "ClientRequest.prototype.setSocketKeepAlive": 1,
- "ClientRequest.prototype.clearTimeout": 1,
- "exports.request": 2,
- "url.parse": 1,
- "options.protocol": 3,
- "exports.get": 1,
- "req.end": 1,
- "ondrain": 3,
- "httpSocketSetup": 2,
- "Server": 6,
- "requestListener": 6,
- "net.Server.call": 1,
- "allowHalfOpen": 1,
- "this.addListener": 2,
- "this.httpAllowHalfOpen": 1,
- "connectionListener": 3,
- "net.Server": 1,
- "exports.Server": 1,
- "exports.createServer": 1,
- "outgoing": 2,
- "incoming": 2,
- "abortIncoming": 3,
- "incoming.length": 2,
- "incoming.shift": 2,
- "serverSocketCloseListener": 3,
- "socket.setTimeout": 1,
- "*": 70,
- "minute": 1,
- "timeout": 2,
- "socket.once": 1,
- "parsers.alloc": 1,
- "parser.reinitialize": 1,
- "this.maxHeadersCount": 2,
- "<<": 4,
- "socket.addListener": 2,
- "self.listeners": 2,
- "req.socket": 1,
- "self.httpAllowHalfOpen": 1,
- "socket.writable": 2,
- "socket.end": 2,
- "outgoing.length": 2,
- "._last": 1,
- "socket._httpMessage._last": 1,
- "incoming.push": 1,
- "res.shouldKeepAlive": 1,
- "DTRACE_HTTP_SERVER_REQUEST": 1,
- "outgoing.push": 1,
- "res.assignSocket": 1,
- "res.on": 1,
- "res.detachSocket": 1,
- "res._last": 1,
- "m": 76,
- "outgoing.shift": 1,
- "m.assignSocket": 1,
- "req.headers": 2,
- "continueExpression.test": 1,
- "res._expect_continue": 1,
- "res.writeContinue": 1,
- "Not": 4,
- "a": 1489,
- "response.": 1,
- "even": 3,
- "exports._connectionListener": 1,
- "Client": 6,
- "this.host": 1,
- "this.port": 1,
- "maxSockets": 1,
- "Client.prototype.request": 1,
- "path": 5,
- "self.host": 1,
- "self.port": 1,
- "c.on": 2,
- "exports.Client": 1,
- "module.deprecate": 2,
- "exports.createClient": 1,
- "cubes": 4,
- "list": 21,
- "math": 4,
- "num": 23,
- "opposite": 6,
- "race": 4,
- "square": 10,
- "__slice": 2,
- "Array.prototype.slice": 6,
- "root": 5,
- "Math.sqrt": 2,
- "cube": 2,
- "runners": 6,
- "winner": 6,
- "__slice.call": 2,
- "print": 2,
- "elvis": 4,
- "_i": 10,
- "_len": 6,
- "_results": 6,
- "list.length": 5,
- "_results.push": 2,
- "math.cube": 2,
- ".slice": 6,
- "A": 24,
- "w": 110,
- "ma": 3,
- "c.isReady": 4,
- "try": 44,
- "s.documentElement.doScroll": 2,
- "catch": 38,
- "c.ready": 7,
- "Qa": 1,
- "b.src": 4,
- "c.ajax": 1,
- "async": 5,
- "dataType": 6,
- "c.globalEval": 1,
- "b.text": 3,
- "b.textContent": 2,
- "b.innerHTML": 3,
- "b.parentNode": 4,
- "b.parentNode.removeChild": 2,
- "X": 6,
- "f": 666,
- "a.length": 23,
- "o": 322,
- "c.isFunction": 9,
- "d.call": 3,
- "J": 5,
- ".getTime": 3,
- "Y": 3,
- "Z": 6,
- "na": 1,
- ".type": 2,
- "c.event.handle.apply": 1,
- "oa": 1,
- "r": 261,
- "c.data": 12,
- "a.liveFired": 4,
- "i.live": 1,
- "a.button": 2,
- "a.type": 14,
- "u": 304,
- "i.live.slice": 1,
- "u.length": 3,
- "i.origType.replace": 1,
- "O": 6,
- "f.push": 5,
- "i.selector": 3,
- "u.splice": 1,
- "a.target": 5,
- ".closest": 4,
- "a.currentTarget": 4,
- "j.length": 2,
- ".selector": 1,
- ".elem": 1,
- "i.preType": 2,
- "a.relatedTarget": 2,
- "d.push": 1,
- "elem": 101,
- "handleObj": 2,
- "d.length": 8,
- "j.elem": 2,
- "a.data": 2,
- "j.handleObj.data": 1,
- "a.handleObj": 2,
- "j.handleObj": 1,
- "j.handleObj.origHandler.apply": 1,
- "pa": 1,
- "b.replace": 3,
- "/": 290,
- "./g": 2,
- ".replace": 38,
- "/g": 37,
- "qa": 1,
- "a.parentNode": 6,
- "a.parentNode.nodeType": 2,
- "ra": 1,
- "b.each": 1,
- "this.nodeName": 4,
- ".nodeName": 2,
- "f.events": 1,
- "e.handle": 2,
- "e.events": 2,
- "c.event.add": 1,
- ".data": 3,
- "sa": 2,
- ".ownerDocument": 5,
- "ta.test": 1,
- "c.support.checkClone": 2,
- "ua.test": 1,
- "c.fragments": 2,
- "b.createDocumentFragment": 1,
- "c.clean": 1,
- "fragment": 27,
- "cacheable": 2,
- "K": 4,
- "c.each": 2,
- "va.concat.apply": 1,
- "va.slice": 1,
- "wa": 1,
- "a.document": 3,
+ "f.isWindow": 2,
"a.nodeType": 27,
"a.defaultView": 2,
+ "||": 648,
"a.parentWindow": 2,
- "c.fn.init": 1,
- "Ra": 2,
- "A.jQuery": 3,
- "Sa": 2,
- "A.": 3,
- "A.document": 1,
- "T": 4,
- "Ta": 1,
- "<[\\w\\W]+>": 4,
- "|": 206,
- "#": 13,
- "Ua": 1,
- ".": 91,
- "Va": 1,
- "S/": 4,
- "Wa": 2,
- "u00A0": 2,
- "Xa": 1,
- "<(\\w+)\\s*\\/?>": 4,
- "<\\/\\1>": 4,
- "P": 4,
- "navigator.userAgent": 3,
- "xa": 3,
- "Q": 6,
- "L": 10,
- "Object.prototype.toString": 7,
- "aa": 1,
- "ba": 3,
- "Array.prototype.push": 4,
- "R": 2,
- "ya": 2,
- "Array.prototype.indexOf": 4,
- "c.fn": 2,
- "c.prototype": 1,
- "init": 7,
- "this.context": 17,
- "this.length": 40,
- "s.body": 2,
- "this.selector": 16,
- "Ta.exec": 1,
- "b.ownerDocument": 6,
- "Xa.exec": 1,
- "c.isPlainObject": 3,
- "s.createElement": 10,
- "c.fn.attr.call": 1,
- "f.createElement": 1,
- "a.cacheable": 1,
- "a.fragment.cloneNode": 1,
- "a.fragment": 1,
- ".childNodes": 2,
- "c.merge": 4,
- "s.getElementById": 1,
- "b.id": 1,
- "T.find": 1,
- "/.test": 19,
- "s.getElementsByTagName": 2,
- "b.jquery": 1,
- ".find": 5,
- "T.ready": 1,
- "a.selector": 4,
- "a.context": 2,
- "c.makeArray": 3,
- "selector": 40,
- "jquery": 3,
- "size": 6,
- "toArray": 2,
- "R.call": 2,
- "get": 24,
- "this.toArray": 3,
- "this.slice": 5,
- "pushStack": 4,
- "c.isArray": 5,
- "ba.apply": 1,
- "f.prevObject": 1,
- "f.context": 1,
- "f.selector": 2,
- "each": 17,
- "ready": 31,
- "c.bindReady": 1,
- "a.call": 17,
- "Q.push": 1,
- "eq": 2,
- "first": 10,
- "this.eq": 4,
- "last": 6,
- "this.pushStack": 12,
- "R.apply": 1,
- ".join": 14,
- "map": 7,
- "c.map": 1,
- "this.prevObject": 3,
- "push": 11,
- "sort": 4,
- ".sort": 9,
- "splice": 5,
- "c.fn.init.prototype": 1,
- "c.extend": 7,
- "c.fn.extend": 4,
- "noConflict": 4,
- "isReady": 5,
- "c.fn.triggerHandler": 1,
- ".triggerHandler": 1,
- "bindReady": 5,
- "s.readyState": 2,
- "s.addEventListener": 3,
- "A.addEventListener": 1,
- "s.attachEvent": 3,
- "A.attachEvent": 1,
- "A.frameElement": 1,
- "isFunction": 12,
- "isPlainObject": 4,
- "a.setInterval": 2,
- "a.constructor": 2,
- "aa.call": 3,
- "a.constructor.prototype": 2,
- "isEmptyObject": 7,
- "parseJSON": 4,
- "c.trim": 3,
- "a.replace": 7,
- "@": 1,
- "d*": 8,
- "eE": 4,
- "s*": 15,
- "A.JSON": 1,
- "A.JSON.parse": 2,
- "Function": 3,
- "c.error": 2,
- "noop": 3,
- "globalEval": 2,
- "Va.test": 1,
- "s.documentElement": 2,
- "d.type": 2,
- "c.support.scriptEval": 2,
- "d.appendChild": 3,
- "s.createTextNode": 2,
- "d.text": 1,
- "b.insertBefore": 3,
- "b.firstChild": 5,
- "b.removeChild": 3,
- "nodeName": 20,
- "a.nodeName": 12,
- "a.nodeName.toUpperCase": 2,
- "b.toUpperCase": 3,
- "b.apply": 2,
- "b.call": 4,
- "trim": 5,
- "makeArray": 3,
- "ba.call": 1,
- "inArray": 5,
- "b.indexOf": 2,
- "b.length": 12,
- "merge": 2,
- "grep": 6,
- "f.length": 5,
- "f.concat.apply": 1,
- "guid": 5,
- "proxy": 4,
- "a.apply": 2,
- "b.guid": 2,
- "a.guid": 7,
- "c.guid": 1,
- "uaMatch": 3,
- "a.toLowerCase": 4,
- "webkit": 6,
- "w.": 17,
- "/.exec": 4,
- "opera": 4,
- ".*version": 4,
- "msie": 4,
- "/compatible/.test": 1,
- "mozilla": 4,
- ".*": 20,
- "rv": 4,
- "browser": 11,
- "version": 10,
- "c.uaMatch": 1,
- "P.browser": 2,
- "c.browser": 1,
- "c.browser.version": 1,
- "P.version": 1,
- "c.browser.webkit": 1,
- "c.browser.safari": 1,
- "c.inArray": 2,
- "ya.call": 1,
- "s.removeEventListener": 1,
- "s.detachEvent": 1,
- "c.support": 2,
- "d.style.display": 5,
- "d.innerHTML": 2,
- "d.getElementsByTagName": 6,
- "e.length": 9,
- "leadingWhitespace": 3,
- "d.firstChild.nodeType": 1,
- "tbody": 7,
- "htmlSerialize": 3,
- "style": 30,
- "/red/.test": 1,
- "j.getAttribute": 2,
- "hrefNormalized": 3,
- "opacity": 13,
- "j.style.opacity": 1,
- "cssFloat": 4,
- "j.style.cssFloat": 1,
- "checkOn": 4,
- ".value": 1,
- "optSelected": 3,
- ".appendChild": 1,
- ".selected": 1,
- "parentNode": 10,
- "d.removeChild": 1,
- ".parentNode": 7,
- "deleteExpando": 3,
- "checkClone": 1,
- "scriptEval": 1,
- "noCloneEvent": 3,
- "boxModel": 1,
- "b.type": 4,
- "b.appendChild": 1,
- "a.insertBefore": 2,
- "a.firstChild": 6,
- "b.test": 1,
- "c.support.deleteExpando": 2,
- "a.removeChild": 2,
- "d.attachEvent": 2,
- "d.fireEvent": 1,
- "c.support.noCloneEvent": 1,
- "d.detachEvent": 1,
- "d.cloneNode": 1,
- ".fireEvent": 3,
- "s.createDocumentFragment": 1,
- "a.appendChild": 3,
- "d.firstChild": 2,
- "a.cloneNode": 3,
- ".cloneNode": 4,
- ".lastChild.checked": 2,
- "k.style.width": 1,
- "k.style.paddingLeft": 1,
- "s.body.appendChild": 1,
- "c.boxModel": 1,
- "c.support.boxModel": 1,
- "k.offsetWidth": 1,
- "s.body.removeChild": 1,
- ".style.display": 5,
- "n.setAttribute": 1,
- "c.support.submitBubbles": 1,
- "c.support.changeBubbles": 1,
- "c.props": 2,
- "readonly": 3,
- "maxlength": 2,
- "cellspacing": 2,
- "rowspan": 2,
- "colspan": 2,
- "tabindex": 4,
- "usemap": 2,
- "frameborder": 2,
- "G": 11,
- "Ya": 2,
- "za": 3,
- "cache": 45,
- "expando": 14,
- "noData": 3,
- "embed": 3,
- "applet": 2,
- "c.noData": 2,
- "a.nodeName.toLowerCase": 3,
- "c.cache": 2,
- "removeData": 8,
- "c.isEmptyObject": 1,
- "c.removeData": 2,
- "c.expando": 2,
- "a.removeAttribute": 3,
- "this.each": 42,
- "a.split": 4,
- "this.triggerHandler": 6,
- "this.trigger": 2,
- ".each": 3,
- "queue": 7,
- "dequeue": 6,
- "c.queue": 3,
- "d.shift": 2,
- "d.unshift": 2,
- "f.call": 1,
- "c.dequeue": 4,
- "delay": 4,
- "c.fx": 1,
- "c.fx.speeds": 1,
- "this.queue": 4,
- "clearQueue": 2,
- "Aa": 3,
- "t": 436,
- "ca": 6,
- "Za": 2,
- "r/g": 2,
- "/href": 1,
- "src": 7,
- "style/": 1,
- "ab": 1,
- "button": 24,
- "input": 25,
- "/i": 22,
- "bb": 2,
- "select": 20,
- "textarea": 8,
- "area": 2,
- "Ba": 3,
- "/radio": 1,
- "checkbox/": 1,
- "attr": 13,
- "c.attr": 4,
- "removeAttr": 5,
- "this.nodeType": 4,
- "this.removeAttribute": 1,
- "addClass": 2,
- "r.addClass": 1,
- "r.attr": 1,
- ".split": 19,
- "e.nodeType": 7,
- "e.className": 14,
- "j.indexOf": 1,
- "removeClass": 2,
- "n.removeClass": 1,
- "n.attr": 1,
- "j.replace": 2,
- "toggleClass": 2,
- "j.toggleClass": 1,
- "j.attr": 1,
- "i.hasClass": 1,
- "this.className": 10,
- "hasClass": 2,
- "
": 1,
- "className": 4,
- "replace": 8,
- "indexOf": 5,
- "val": 13,
- "c.nodeName": 4,
- "b.attributes.value": 1,
- ".specified": 1,
- "b.value": 4,
- "b.selectedIndex": 2,
- "b.options": 1,
- "": 1,
- "i=": 31,
- "selected": 5,
- "a=": 23,
- "test": 21,
- "type": 49,
- "support": 13,
- "getAttribute": 3,
- "on": 37,
- "o=": 13,
- "n=": 10,
- "r=": 18,
- "nodeType=": 6,
- "call": 9,
- "checked=": 1,
- "this.selected": 1,
- ".val": 5,
- "this.selectedIndex": 1,
- "this.value": 4,
- "attrFn": 2,
- "css": 7,
- "html": 10,
- "text": 14,
- "width": 32,
- "height": 25,
- "offset": 21,
- "c.attrFn": 1,
- "c.isXMLDoc": 1,
- "a.test": 2,
- "ab.test": 1,
- "a.getAttributeNode": 7,
- ".nodeValue": 1,
- "b.specified": 2,
- "bb.test": 2,
- "cb.test": 1,
- "a.href": 2,
- "c.support.style": 1,
- "a.style.cssText": 3,
- "a.setAttribute": 7,
- "c.support.hrefNormalized": 1,
- "a.getAttribute": 11,
- "c.style": 1,
- "db": 1,
- "handle": 15,
- "click": 11,
- "events": 18,
- "altKey": 4,
- "attrChange": 4,
- "attrName": 4,
- "bubbles": 4,
- "cancelable": 4,
- "charCode": 7,
- "clientX": 6,
- "clientY": 5,
- "ctrlKey": 6,
- "currentTarget": 4,
- "detail": 3,
- "eventPhase": 4,
- "fromElement": 6,
- "handler": 14,
- "keyCode": 6,
- "layerX": 3,
- "layerY": 3,
- "metaKey": 5,
- "newValue": 3,
- "offsetX": 4,
- "offsetY": 4,
- "originalTarget": 1,
- "pageX": 4,
- "pageY": 4,
- "prevValue": 3,
- "relatedNode": 4,
- "relatedTarget": 6,
- "screenX": 4,
- "screenY": 4,
- "shiftKey": 4,
- "srcElement": 5,
- "toElement": 5,
- "view": 4,
- "wheelDelta": 3,
- "which": 8,
- "mouseover": 12,
- "mouseout": 12,
- "form": 12,
- "click.specialSubmit": 2,
- "submit": 14,
- "image": 5,
- "keypress.specialSubmit": 2,
- "password": 5,
- ".specialSubmit": 2,
- "radio": 17,
- "checkbox": 14,
- "multiple": 7,
- "_change_data": 6,
- "focusout": 11,
- "change": 16,
- "file": 5,
- ".specialChange": 4,
- "focusin": 9,
- "bind": 3,
- "one": 15,
- "unload": 5,
- "live": 8,
- "lastToggle": 4,
- "die": 3,
- "hover": 3,
- "mouseenter": 9,
- "mouseleave": 9,
- "focus": 7,
- "blur": 8,
- "resize": 3,
- "scroll": 6,
- "dblclick": 3,
- "mousedown": 3,
- "mouseup": 3,
- "mousemove": 3,
- "keydown": 4,
- "keypress": 4,
- "keyup": 3,
- "onunload": 1,
- "g": 441,
- "h": 499,
- "q": 34,
- "h.nodeType": 4,
- "p": 110,
- "y": 101,
- "S": 8,
- "H": 8,
- "M": 9,
- "I": 7,
- "f.exec": 2,
- "p.push": 2,
- "p.length": 10,
- "r.exec": 1,
- "n.relative": 5,
- "ga": 2,
- "p.shift": 4,
- "n.match.ID.test": 2,
- "k.find": 6,
- "v.expr": 4,
- "k.filter": 5,
- "v.set": 5,
- "expr": 2,
- "p.pop": 4,
- "set": 22,
- "z": 21,
- "h.parentNode": 3,
- "D": 9,
- "k.error": 2,
- "j.call": 2,
- ".nodeType": 9,
- "E": 11,
- "l.push": 2,
- "l.push.apply": 1,
- "k.uniqueSort": 5,
- "B": 5,
- "g.sort": 1,
- "g.length": 2,
- "g.splice": 2,
- "k.matches": 1,
- "n.order.length": 1,
- "n.order": 1,
- "n.leftMatch": 1,
- ".exec": 2,
- "q.splice": 1,
- "y.substr": 1,
- "y.length": 1,
- "Syntax": 3,
- "unrecognized": 3,
- "expression": 4,
- "ID": 8,
- "NAME": 2,
- "TAG": 2,
- "u00c0": 2,
- "uFFFF": 2,
- "leftMatch": 2,
- "attrMap": 2,
- "attrHandle": 2,
- "g.getAttribute": 1,
- "relative": 4,
- "W/.test": 1,
- "h.toLowerCase": 2,
- "": 1,
- "previousSibling": 5,
- "nth": 5,
- "odd": 2,
- "not": 26,
- "reset": 2,
- "contains": 8,
- "only": 10,
- "id": 38,
- "class": 5,
- "Array": 3,
- "sourceIndex": 1,
- "div": 28,
- "script": 7,
- "": 4,
- "name=": 2,
- "href=": 2,
- " ": 2,
- "": 2,
- "
": 2,
- ".TEST": 2,
- " ": 3,
- "CLASS": 1,
- "HTML": 9,
- "find": 7,
- "filter": 10,
- "nextSibling": 3,
- "iframe": 3,
- "\"+d+\">": 1,
- "": 1,
- "multiple=": 1,
- " ": 1,
- "": 1,
- " ": 1,
- "": 5,
- "": 3,
- " ": 3,
- "": 2,
- " ": 2,
- "": 1,
- " ": 1,
- "": 1,
- " ": 1,
- "before": 8,
- "after": 7,
- "position": 7,
- "absolute": 2,
- "top": 12,
- "left": 14,
- "margin": 8,
- "border": 7,
- "px": 31,
- "solid": 2,
- "#000": 2,
- "padding": 4,
- "": 1,
- " ": 1,
- "fixed": 1,
- "marginTop": 3,
- "marginLeft": 2,
- "using": 5,
- "borderTopWidth": 1,
- "borderLeftWidth": 1,
- "Left": 1,
- "Top": 1,
- "pageXOffset": 2,
- "pageYOffset": 1,
- "Height": 1,
- "Width": 1,
- "inner": 2,
- "outer": 2,
- "scrollTo": 1,
- "CSS1Compat": 1,
- "client": 3,
- "window": 16,
- "document": 26,
- "window.document": 2,
- "navigator": 3,
- "window.navigator": 2,
- "location": 2,
- "window.location": 5,
- "jQuery": 48,
- "context": 48,
- "The": 9,
- "is": 67,
- "actually": 2,
- "just": 2,
- "jQuery.fn.init": 2,
- "rootjQuery": 8,
- "Map": 4,
- "over": 7,
- "of": 28,
- "overwrite": 4,
- "_jQuery": 4,
- "window.": 6,
- "central": 2,
- "reference": 5,
- "simple": 3,
- "way": 2,
- "check": 8,
- "strings": 8,
- "both": 2,
- "optimize": 3,
- "quickExpr": 2,
- "Check": 10,
- "has": 9,
- "non": 8,
- "whitespace": 7,
- "character": 3,
- "it": 112,
- "rnotwhite": 2,
- "Used": 3,
- "trimming": 2,
- "trimLeft": 4,
- "trimRight": 4,
- "digits": 3,
- "rdigit": 1,
- "d/": 3,
- "Match": 3,
- "standalone": 2,
- "tag": 2,
- "rsingleTag": 2,
- "JSON": 5,
- "RegExp": 12,
- "rvalidchars": 2,
- "rvalidescape": 2,
- "rvalidbraces": 2,
- "Useragent": 2,
- "rwebkit": 2,
- "ropera": 2,
- "rmsie": 2,
- "rmozilla": 2,
- "Keep": 2,
- "UserAgent": 2,
- "use": 10,
- "with": 18,
- "jQuery.browser": 4,
- "userAgent": 3,
- "For": 5,
- "matching": 3,
- "engine": 2,
- "and": 42,
- "browserMatch": 3,
- "deferred": 25,
- "used": 13,
- "DOM": 21,
- "readyList": 6,
- "event": 31,
- "DOMContentLoaded": 14,
- "Save": 2,
- "some": 2,
- "core": 2,
- "methods": 8,
- "toString": 4,
- "hasOwn": 2,
- "String.prototype.trim": 3,
- "Class": 2,
- "pairs": 2,
- "class2type": 3,
- "jQuery.fn": 4,
- "jQuery.prototype": 2,
- "match": 30,
- "doc": 4,
- "Handle": 14,
- "DOMElement": 2,
- "selector.nodeType": 2,
- "exists": 9,
- "once": 4,
- "finding": 2,
- "Are": 2,
- "dealing": 2,
- "selector.charAt": 4,
- "selector.length": 4,
- "Assume": 2,
- "are": 18,
- "regex": 3,
- "quickExpr.exec": 2,
- "Verify": 3,
- "no": 19,
- "was": 6,
- "specified": 4,
- "#id": 3,
- "HANDLE": 2,
- "array": 7,
- "context.ownerDocument": 2,
- "If": 21,
- "single": 2,
- "passed": 5,
- "clean": 3,
- "like": 5,
- "method.": 3,
- "jQuery.fn.init.prototype": 2,
- "jQuery.extend": 11,
- "jQuery.fn.extend": 4,
- "copy": 16,
- "copyIsArray": 2,
- "clone": 5,
- "deep": 12,
- "situation": 2,
- "boolean": 8,
- "when": 20,
- "something": 3,
- "possible": 3,
- "jQuery.isFunction": 6,
- "extend": 13,
- "itself": 4,
- "argument": 2,
- "Only": 5,
- "deal": 2,
- "null/undefined": 2,
- "values": 10,
- "Extend": 2,
- "base": 2,
- "Prevent": 2,
- "never": 2,
- "ending": 2,
- "loop": 7,
- "Recurse": 2,
- "bring": 2,
- "Return": 2,
- "modified": 3,
- "Is": 2,
- "be": 12,
- "Set": 4,
- "occurs.": 2,
- "counter": 2,
- "track": 2,
- "how": 2,
- "many": 3,
- "items": 2,
- "wait": 12,
- "fires.": 2,
- "See": 9,
- "#6781": 2,
- "readyWait": 6,
- "Hold": 2,
- "release": 2,
- "holdReady": 3,
- "hold": 6,
- "jQuery.readyWait": 6,
- "jQuery.ready": 16,
- "Either": 2,
- "released": 2,
- "DOMready/load": 2,
- "yet": 2,
- "jQuery.isReady": 6,
- "Make": 17,
- "sure": 18,
- "at": 58,
- "least": 4,
- "IE": 28,
- "gets": 6,
- "little": 4,
- "overzealous": 4,
- "ticket": 4,
- "#5443": 4,
- "Remember": 2,
- "normal": 2,
- "Ready": 2,
- "fired": 12,
- "decrement": 2,
- "need": 10,
- "there": 6,
- "functions": 6,
- "bound": 8,
- "execute": 4,
- "readyList.resolveWith": 1,
- "Trigger": 2,
- "any": 12,
- "jQuery.fn.trigger": 2,
- ".trigger": 3,
- ".unbind": 4,
- "jQuery._Deferred": 3,
- "Catch": 2,
- "cases": 4,
- "where": 2,
- ".ready": 2,
- "called": 2,
- "already": 6,
- "occurred.": 2,
- "document.readyState": 4,
- "asynchronously": 2,
- "allow": 6,
- "scripts": 2,
- "opportunity": 2,
- "Mozilla": 2,
- "Opera": 2,
- "nightlies": 3,
- "currently": 4,
- "document.addEventListener": 6,
- "Use": 7,
- "handy": 2,
- "fallback": 4,
- "window.onload": 4,
- "will": 7,
- "always": 6,
- "work": 6,
- "window.addEventListener": 2,
- "model": 14,
- "document.attachEvent": 6,
- "ensure": 2,
- "firing": 16,
- "onload": 2,
- "maybe": 2,
- "late": 2,
- "but": 4,
- "safe": 3,
- "iframes": 2,
- "window.attachEvent": 2,
- "frame": 23,
- "continually": 2,
- "see": 6,
- "toplevel": 7,
- "window.frameElement": 2,
- "document.documentElement.doScroll": 4,
- "doScrollCheck": 6,
- "test/unit/core.js": 2,
- "details": 3,
- "concerning": 2,
- "isFunction.": 2,
- "Since": 3,
- "aren": 5,
- "pass": 7,
- "through": 3,
- "as": 11,
- "well": 2,
- "jQuery.type": 4,
- "obj.nodeType": 2,
- "jQuery.isWindow": 2,
- "own": 4,
- "property": 15,
- "must": 4,
- "Object": 4,
- "obj.constructor": 2,
- "hasOwn.call": 6,
- "obj.constructor.prototype": 2,
- "Own": 2,
- "properties": 7,
- "enumerated": 2,
- "firstly": 2,
- "speed": 4,
- "up": 4,
- "then": 8,
- "own.": 2,
- "msg": 4,
- "leading/trailing": 2,
- "removed": 3,
- "can": 10,
- "breaking": 1,
- "spaces": 3,
- "rnotwhite.test": 2,
- "xA0": 7,
- "document.removeEventListener": 2,
- "document.detachEvent": 2,
- "trick": 2,
- "Diego": 2,
- "Perini": 2,
- "http": 6,
- "//javascript.nwbox.com/IEContentLoaded/": 2,
- "waiting": 2,
- "Promise": 1,
- "promiseMethods": 3,
- "Static": 1,
- "sliceDeferred": 1,
- "Create": 1,
- "callbacks": 10,
- "_Deferred": 4,
- "stored": 4,
- "args": 31,
- "avoid": 5,
- "doing": 3,
- "flag": 1,
- "know": 3,
- "cancelled": 5,
- "done": 10,
- "f1": 1,
- "f2": 1,
- "...": 1,
- "_fired": 5,
- "args.length": 3,
- "deferred.done.apply": 2,
- "callbacks.push": 1,
- "deferred.resolveWith": 5,
- "resolve": 7,
- "given": 3,
- "resolveWith": 4,
- "make": 2,
- "available": 1,
- "#8421": 1,
- "callbacks.shift": 1,
- "finally": 3,
- "Has": 1,
- "resolved": 1,
- "isResolved": 3,
- "Cancel": 1,
- "cancel": 6,
- "Full": 1,
- "fledged": 1,
- "two": 1,
- "Deferred": 5,
- "func": 3,
- "failDeferred": 1,
- "promise": 14,
- "Add": 4,
- "errorDeferred": 1,
- "doneCallbacks": 2,
- "failCallbacks": 2,
- "deferred.done": 2,
- ".fail": 2,
- ".fail.apply": 1,
- "fail": 10,
- "failDeferred.done": 1,
- "rejectWith": 2,
- "failDeferred.resolveWith": 1,
- "reject": 4,
- "failDeferred.resolve": 1,
- "isRejected": 2,
- "failDeferred.isResolved": 1,
- "pipe": 2,
- "fnDone": 2,
- "fnFail": 2,
- "jQuery.Deferred": 1,
- "newDefer": 3,
- "jQuery.each": 2,
- "fn": 14,
- "action": 3,
- "returned": 4,
- "fn.apply": 1,
- "returned.promise": 2,
- ".then": 3,
- "newDefer.resolve": 1,
- "newDefer.reject": 1,
- ".promise": 5,
- "Get": 4,
- "provided": 1,
- "aspect": 1,
- "added": 1,
- "promiseMethods.length": 1,
- "failDeferred.cancel": 1,
- "deferred.cancel": 2,
- "Unexpose": 1,
- "Call": 1,
- "func.call": 1,
- "helper": 1,
- "firstParam": 6,
- "count": 4,
- "<=>": 1,
- "1": 97,
- "resolveFunc": 2,
- "sliceDeferred.call": 2,
- "Strange": 1,
- "bug": 3,
- "FF4": 1,
- "Values": 1,
- "changed": 3,
- "onto": 2,
- "sometimes": 1,
- "outside": 2,
- ".when": 1,
- "Cloning": 2,
- "into": 2,
- "fresh": 1,
- "solves": 1,
- "issue": 1,
- "deferred.reject": 1,
- "deferred.promise": 1,
- "jQuery.support": 1,
- "document.createElement": 26,
- "documentElement": 2,
- "document.documentElement": 2,
- "opt": 2,
- "marginDiv": 5,
- "bodyStyle": 1,
- "tds": 6,
- "isSupported": 7,
- "Preliminary": 1,
- "tests": 48,
- "div.setAttribute": 1,
- "div.innerHTML": 7,
- "div.getElementsByTagName": 6,
- "Can": 2,
- "automatically": 2,
- "inserted": 1,
- "insert": 1,
- "them": 3,
- "empty": 3,
- "tables": 1,
- "link": 2,
- "elements": 9,
- "serialized": 3,
- "correctly": 1,
- "innerHTML": 1,
- "This": 3,
- "requires": 1,
- "wrapper": 1,
- "information": 5,
- "from": 7,
- "uses": 3,
- ".cssText": 2,
- "instead": 6,
- "/top/.test": 2,
- "URLs": 1,
- "optgroup": 5,
- "opt.selected": 1,
- "Test": 3,
- "setAttribute": 1,
- "camelCase": 3,
- "class.": 1,
- "works": 1,
- "attrFixes": 1,
- "get/setAttribute": 1,
- "ie6/7": 1,
- "getSetAttribute": 3,
- "div.className": 1,
- "Will": 2,
- "defined": 3,
- "later": 1,
- "submitBubbles": 3,
- "changeBubbles": 3,
- "focusinBubbles": 2,
- "inlineBlockNeedsLayout": 3,
- "shrinkWrapBlocks": 2,
- "reliableMarginRight": 2,
- "checked": 4,
- "status": 3,
- "properly": 2,
- "cloned": 1,
- "input.checked": 1,
- "support.noCloneChecked": 1,
- "input.cloneNode": 1,
- ".checked": 2,
- "inside": 3,
- "disabled": 11,
- "selects": 1,
- "Fails": 2,
- "Internet": 1,
- "Explorer": 1,
- "div.test": 1,
- "support.deleteExpando": 1,
- "div.addEventListener": 1,
- "div.attachEvent": 2,
- "div.fireEvent": 1,
- "node": 23,
- "being": 2,
- "appended": 2,
- "input.value": 5,
- "input.setAttribute": 5,
- "support.radioValue": 2,
- "div.appendChild": 4,
- "document.createDocumentFragment": 3,
- "fragment.appendChild": 2,
- "div.firstChild": 3,
- "WebKit": 9,
- "doesn": 2,
- "inline": 3,
- "display": 7,
- "none": 4,
- "GC": 2,
- "references": 1,
- "across": 1,
- "JS": 7,
- "boundary": 1,
- "isNode": 11,
- "elem.nodeType": 8,
- "nodes": 14,
- "global": 5,
- "attached": 1,
- "directly": 2,
- "occur": 1,
- "jQuery.cache": 3,
- "defining": 1,
- "objects": 7,
- "its": 2,
- "allows": 1,
- "code": 2,
- "shortcut": 1,
- "same": 1,
- "jQuery.expando": 12,
- "Avoid": 1,
- "more": 6,
- "than": 3,
- "trying": 1,
- "pvt": 8,
- "internalKey": 12,
- "getByName": 3,
- "unique": 2,
- "since": 1,
- "their": 3,
- "ends": 1,
- "jQuery.uuid": 1,
- "TODO": 2,
- "hack": 2,
- "ONLY.": 2,
- "Avoids": 2,
- "exposing": 2,
- "metadata": 2,
- "plain": 2,
- "JSON.stringify": 4,
- ".toJSON": 4,
- "jQuery.noop": 2,
- "An": 1,
- "jQuery.data": 15,
- "key/value": 1,
- "pair": 1,
- "shallow": 1,
- "copied": 1,
- "existing": 1,
- "thisCache": 15,
- "Internal": 1,
- "separate": 1,
- "destroy": 1,
- "unless": 2,
- "internal": 8,
- "had": 1,
- "isEmptyDataObject": 3,
- "internalCache": 3,
- "Browsers": 1,
- "deletion": 1,
- "refuse": 1,
- "expandos": 2,
- "other": 3,
- "browsers": 2,
- "faster": 1,
- "iterating": 1,
- "persist": 1,
- "existed": 1,
- "Otherwise": 2,
- "eliminate": 2,
- "lookups": 2,
- "entries": 2,
- "longer": 2,
- "exist": 2,
- "does": 9,
- "us": 2,
- "nor": 2,
- "have": 6,
- "removeAttribute": 3,
- "Document": 2,
- "these": 2,
- "jQuery.support.deleteExpando": 3,
- "elem.removeAttribute": 6,
- "only.": 2,
- "_data": 3,
- "determining": 3,
- "acceptData": 3,
- "elem.nodeName": 2,
- "jQuery.noData": 2,
- "elem.nodeName.toLowerCase": 2,
- "elem.getAttribute": 7,
- ".attributes": 2,
- "attr.length": 2,
- ".name": 3,
- "name.indexOf": 2,
- "jQuery.camelCase": 6,
- "name.substring": 2,
- "dataAttr": 6,
- "parts": 28,
- "key.split": 2,
- "Try": 4,
- "fetch": 4,
- "internally": 5,
- "jQuery.removeData": 2,
- "nothing": 2,
- "found": 10,
- "HTML5": 3,
- "attribute": 5,
- "key.replace": 2,
- "rmultiDash": 3,
- ".toLowerCase": 7,
- "jQuery.isNaN": 1,
- "parseFloat": 30,
- "rbrace.test": 2,
- "jQuery.parseJSON": 2,
- "isn": 2,
- "option.selected": 2,
- "jQuery.support.optDisabled": 2,
- "option.disabled": 2,
- "option.getAttribute": 2,
- "option.parentNode.disabled": 2,
- "jQuery.nodeName": 3,
- "option.parentNode": 2,
- "specific": 2,
- "We": 6,
- "get/set": 2,
- "attributes": 14,
- "comment": 3,
- "nType": 8,
- "jQuery.attrFn": 2,
- "Fallback": 2,
- "prop": 24,
- "supported": 2,
- "jQuery.prop": 2,
- "hooks": 14,
- "notxml": 8,
- "jQuery.isXMLDoc": 2,
- "Normalize": 1,
- "needed": 2,
- "jQuery.attrFix": 2,
- "jQuery.attrHooks": 2,
- "boolHook": 3,
- "rboolean.test": 4,
- "value.toLowerCase": 2,
- "formHook": 3,
- "forms": 1,
- "certain": 2,
- "characters": 6,
- "rinvalidChar.test": 1,
- "jQuery.removeAttr": 2,
- "hooks.set": 2,
- "elem.setAttribute": 2,
- "hooks.get": 2,
- "Non": 3,
- "existent": 2,
- "normalize": 2,
- "propName": 8,
- "jQuery.support.getSetAttribute": 1,
- "jQuery.attr": 2,
- "elem.removeAttributeNode": 1,
- "elem.getAttributeNode": 1,
- "corresponding": 2,
- "jQuery.propFix": 2,
- "attrHooks": 3,
- "tabIndex": 4,
- "readOnly": 2,
- "htmlFor": 2,
- "maxLength": 2,
- "cellSpacing": 2,
- "cellPadding": 2,
- "rowSpan": 2,
- "colSpan": 2,
- "useMap": 2,
- "frameBorder": 2,
- "contentEditable": 2,
- "auto": 3,
- "&": 13,
- "getData": 3,
- "setData": 3,
- "changeData": 3,
- "bubbling": 1,
- "live.": 2,
- "hasDuplicate": 1,
- "baseHasDuplicate": 2,
- "rBackslash": 1,
- "rNonWord": 1,
- "W/": 2,
- "Sizzle": 1,
- "results": 4,
- "seed": 1,
- "origContext": 1,
- "context.nodeType": 2,
- "checkSet": 1,
- "extra": 1,
- "cur": 6,
- "pop": 1,
- "prune": 1,
- "contextXML": 1,
- "Sizzle.isXML": 1,
- "soFar": 1,
- "Reset": 1,
- "cy": 4,
- "f.isWindow": 2,
+ "}": 2712,
"cv": 2,
+ "if": 1230,
"cj": 4,
+ "[": 1459,
+ "]": 1456,
+ "var": 910,
+ "f": 666,
+ "+": 1135,
".appendTo": 2,
+ "d": 771,
"b.css": 1,
+ ";": 4052,
"b.remove": 1,
"ck": 5,
"c.createElement": 12,
@@ -27517,26 +2927,55 @@
"f.css": 24,
"c.body.removeChild": 1,
"cu": 18,
+ "c": 775,
"f.each": 21,
"cp.concat.apply": 1,
"cp.slice": 1,
+ "this": 577,
"ct": 34,
"cq": 3,
"cs": 3,
+ "setTimeout": 19,
"f.now": 2,
"ci": 29,
+ "try": 44,
+ "new": 86,
"a.ActiveXObject": 3,
+ "catch": 38,
"ch": 58,
"a.XMLHttpRequest": 1,
+ "cb": 16,
"a.dataFilter": 2,
+ "&&": 1017,
"a.dataType": 1,
"a.dataTypes": 2,
+ "e": 663,
+ "g": 441,
+ "h": 499,
+ "i": 853,
+ "d.length": 8,
+ "j": 265,
+ "k": 302,
+ "l": 312,
+ "m": 76,
+ "n": 874,
+ "o": 322,
+ "p": 110,
+ "for": 262,
+ "<": 209,
+ "in": 170,
"a.converters": 3,
+ "typeof": 132,
+ "h.toLowerCase": 2,
+ "else": 307,
"o.split": 1,
+ "break": 111,
"f.error": 4,
"m.replace": 1,
+ "ca": 6,
"a.contents": 1,
"a.responseFields": 1,
+ "while": 53,
"f.shift": 1,
"a.mimeType": 1,
"c.getResponseHeader": 1,
@@ -27545,6 +2984,7 @@
"b_": 4,
"f.isArray": 8,
"bF.test": 1,
+ "null": 427,
"c.dataTypes": 1,
"h.length": 3,
"bU": 4,
@@ -27552,21 +2992,38 @@
"bZ": 3,
"f.isFunction": 21,
"b.toLowerCase": 3,
+ ".split": 19,
"bQ": 3,
+ "/": 290,
+ "/.test": 19,
"h.substr": 1,
"bD": 3,
"bx": 2,
+ "by": 12,
"a.offsetWidth": 6,
"a.offsetHeight": 2,
+ "-": 705,
+ "parseFloat": 30,
"bn": 2,
+ "b.src": 4,
"f.ajax": 3,
+ "url": 23,
+ "async": 5,
+ "dataType": 6,
"f.globalEval": 2,
+ "b.text": 3,
+ "b.textContent": 2,
+ "b.innerHTML": 3,
+ ".replace": 38,
"bf": 6,
+ "b.parentNode": 4,
+ "b.parentNode.removeChild": 2,
"bm": 3,
"f.nodeName": 16,
"bl": 3,
"a.getElementsByTagName": 9,
"f.grep": 3,
+ "a.type": 14,
"a.defaultChecked": 1,
"a.checked": 4,
"bk": 5,
@@ -27584,6 +3041,7 @@
"a.defaultValue": 1,
"b.defaultChecked": 1,
"b.checked": 1,
+ "b.value": 4,
"a.value": 8,
"b.removeAttribute": 3,
"f.expando": 23,
@@ -27592,75 +3050,168 @@
"f.data": 25,
"d.events": 1,
"f.extend": 23,
+ "delete": 39,
+ "e.handle": 2,
+ "e.events": 2,
+ ".length": 24,
"": 1,
"bh": 1,
+ "nodeName": 20,
"table": 6,
"getElementsByTagName": 1,
+ "tbody": 7,
"0": 220,
"appendChild": 1,
"ownerDocument": 9,
"createElement": 3,
+ "X": 6,
"b=": 25,
+ "isFunction": 12,
+ "grep": 6,
"e=": 21,
+ "call": 9,
"nodeType": 1,
+ "a=": 23,
"d=": 15,
+ "nodeType=": 6,
+ "S": 8,
+ "test": 21,
+ "filter": 10,
+ "inArray": 5,
"W": 3,
+ "a.parentNode": 6,
+ "a.parentNode.nodeType": 2,
+ "O": 6,
+ "b.replace": 3,
+ "A": 24,
+ "B": 5,
"N": 2,
+ "q": 34,
+ "r": 261,
"f._data": 15,
+ "a.liveFired": 4,
"r.live": 1,
"a.target.disabled": 1,
+ "a.button": 2,
"a.namespace": 1,
+ "RegExp": 12,
"a.namespace.split": 1,
+ ".join": 14,
+ "s": 290,
"r.live.slice": 1,
"s.length": 2,
"g.origType.replace": 1,
+ "y": 101,
"q.push": 1,
"g.selector": 3,
"s.splice": 1,
+ "a.target": 5,
+ ".closest": 4,
+ "a.currentTarget": 4,
+ "e.length": 9,
"m.selector": 1,
"n.test": 2,
"g.namespace": 1,
"m.elem.disabled": 1,
"m.elem": 1,
"g.preType": 3,
+ "a.relatedTarget": 2,
"f.contains": 5,
+ "p.push": 2,
+ "elem": 101,
+ "handleObj": 2,
"level": 3,
"m.level": 1,
+ "p.length": 10,
"": 1,
"e.elem": 2,
+ "a.data": 2,
"e.handleObj.data": 1,
+ "a.handleObj": 2,
"e.handleObj": 1,
"e.handleObj.origHandler.apply": 1,
+ "arguments": 83,
"a.isPropagationStopped": 1,
"e.level": 1,
"a.isImmediatePropagationStopped": 1,
+ "L": 10,
"e.type": 6,
"e.originalEvent": 1,
"e.liveFired": 1,
"f.event.handle.call": 1,
+ "e.isDefaultPrevented": 2,
".preventDefault": 1,
"F": 8,
+ "E": 11,
"f.removeData": 4,
"i.resolve": 1,
"c.replace": 4,
+ ".toLowerCase": 7,
+ "a.getAttribute": 11,
"f.isNaN": 3,
"i.test": 1,
"f.parseJSON": 2,
+ "a.document": 3,
"a.navigator": 1,
"a.location": 1,
+ "H": 8,
"e.isReady": 1,
"c.documentElement.doScroll": 2,
"e.ready": 6,
"e.fn.init": 1,
"a.jQuery": 2,
"a.": 2,
+ "*": 70,
+ "<[\\w\\W]+>": 4,
+ "|": 206,
+ "#": 13,
+ "w": 110,
+ "S/": 4,
+ "d/": 3,
+ "<(\\w+)\\s*\\/?>": 4,
+ "<\\/\\1>": 4,
+ "true": 147,
+ "false": 142,
+ ".": 91,
+ "d*": 8,
+ "eE": 4,
+ "/g": 37,
+ "s*": 15,
+ "webkit": 6,
+ "w.": 17,
+ "t": 436,
+ "opera": 4,
+ ".*version": 4,
+ "u": 304,
+ "msie": 4,
+ "v": 135,
+ "mozilla": 4,
+ ".*": 20,
+ "rv": 4,
"d.userAgent": 1,
+ "x": 33,
+ "z": 21,
+ "Object.prototype.toString": 7,
+ "Object.prototype.hasOwnProperty": 6,
"C": 4,
+ "Array.prototype.push": 4,
+ "D": 9,
+ "Array.prototype.slice": 6,
+ "String.prototype.trim": 3,
+ "Array.prototype.indexOf": 4,
+ "G": 11,
"e.fn": 2,
"e.prototype": 1,
+ "constructor": 8,
+ "init": 7,
+ "this.context": 17,
+ "this.length": 40,
"c.body": 4,
+ "this.selector": 16,
"a.charAt": 2,
+ "a.length": 23,
"i.exec": 1,
+ "instanceof": 19,
"d.ownerDocument": 1,
"n.exec": 1,
"e.isPlainObject": 1,
@@ -27670,36 +3221,83 @@
"j.cacheable": 1,
"e.clone": 1,
"j.fragment": 2,
+ ".childNodes": 2,
"e.merge": 3,
"c.getElementById": 1,
+ "h.parentNode": 3,
"h.id": 1,
"f.find": 2,
"d.jquery": 1,
+ ".find": 5,
+ "this.constructor": 5,
"e.isFunction": 5,
"f.ready": 1,
+ "a.selector": 4,
+ "a.context": 2,
"e.makeArray": 1,
+ "selector": 40,
+ "jquery": 3,
+ "length": 48,
+ "size": 6,
+ "toArray": 2,
"D.call": 4,
+ "get": 24,
+ "this.toArray": 3,
+ "pushStack": 4,
"e.isArray": 2,
"C.apply": 1,
"d.prevObject": 1,
"d.context": 2,
"d.selector": 2,
+ "each": 17,
"e.each": 2,
+ "ready": 31,
"e.bindReady": 1,
"y.done": 1,
+ "eq": 2,
+ "this.slice": 5,
+ "first": 10,
+ "this.eq": 4,
+ "last": 6,
+ "slice": 10,
+ "this.pushStack": 12,
"D.apply": 1,
+ "map": 7,
"e.map": 1,
+ "a.call": 17,
+ "end": 14,
+ "this.prevObject": 3,
+ "push": 11,
+ "sort": 4,
+ ".sort": 9,
+ "splice": 5,
+ ".splice": 5,
"e.fn.init.prototype": 1,
"e.extend": 2,
"e.fn.extend": 1,
+ "arguments.length": 18,
"": 1,
"f=": 13,
+ "i=": 31,
+ "continue": 18,
+ "isPlainObject": 4,
"g=": 15,
+ "isArray": 10,
"h=": 19,
+ "extend": 13,
+ "noConflict": 4,
"jQuery=": 2,
+ "isReady": 5,
+ "1": 97,
+ "readyWait": 6,
+ "holdReady": 3,
+ "body": 22,
"isReady=": 1,
"y.resolveWith": 1,
"e.fn.trigger": 1,
+ ".trigger": 3,
+ ".unbind": 4,
+ "bindReady": 5,
"e._Deferred": 1,
"c.readyState": 2,
"c.addEventListener": 4,
@@ -27707,17 +3305,26 @@
"c.attachEvent": 3,
"a.attachEvent": 6,
"a.frameElement": 1,
+ "Array.isArray": 7,
"isWindow": 2,
"isNaN": 6,
"m.test": 1,
+ "type": 49,
"String": 2,
"A.call": 1,
"e.isWindow": 2,
+ "a.constructor": 2,
"B.call": 3,
+ "a.constructor.prototype": 2,
+ "isEmptyObject": 7,
+ "error": 20,
+ "throw": 27,
+ "parseJSON": 4,
"e.trim": 1,
"a.JSON": 1,
"a.JSON.parse": 2,
"o.test": 1,
+ "Function": 3,
"e.error": 2,
"parseXML": 1,
"a.DOMParser": 1,
@@ -27728,30 +3335,50 @@
"c.loadXML": 1,
"c.documentElement": 4,
"d.nodeName": 4,
+ "noop": 3,
+ "globalEval": 2,
"j.test": 3,
"a.execScript": 1,
"a.eval.call": 1,
+ "a.nodeName": 12,
+ "a.nodeName.toUpperCase": 2,
+ "b.toUpperCase": 3,
"c.apply": 2,
"c.call": 3,
+ "trim": 5,
"E.call": 1,
+ "makeArray": 3,
"C.call": 1,
"F.call": 1,
+ "b.length": 12,
+ "merge": 2,
"c.length": 8,
"": 1,
"j=": 14,
"k=": 11,
"h.concat.apply": 1,
+ "guid": 5,
+ "proxy": 4,
+ "a.apply": 2,
"f.concat": 1,
"g.guid": 3,
+ "a.guid": 7,
"e.guid": 3,
"access": 2,
"e.access": 1,
+ "d.call": 3,
"now": 5,
+ "Date": 4,
+ ".getTime": 3,
+ "uaMatch": 3,
+ "a.toLowerCase": 4,
"s.exec": 1,
"t.exec": 1,
"u.exec": 1,
"a.indexOf": 2,
"v.exec": 1,
+ "browser": 11,
+ "version": 10,
"sub": 4,
"a.fn.init": 2,
"a.superclass": 1,
@@ -27769,49 +3396,103 @@
"x.version": 1,
"e.browser.webkit": 1,
"e.browser.safari": 1,
+ "xA0": 7,
"c.removeEventListener": 2,
"c.detachEvent": 1,
+ ".slice": 6,
+ "_Deferred": 4,
+ "done": 10,
"": 1,
+ "resolveWith": 4,
"c=": 24,
"shift": 1,
"apply": 8,
+ "finally": 3,
+ "resolve": 7,
+ "isResolved": 3,
+ "cancel": 6,
+ "Deferred": 5,
+ "then": 8,
+ "fail": 10,
+ "always": 6,
+ "rejectWith": 2,
+ "reject": 4,
+ "isRejected": 2,
+ "pipe": 2,
+ "promise": 14,
+ "when": 20,
"h.call": 2,
"g.resolveWith": 3,
"<=1&&a&&f.isFunction(a.promise)?a:f.Deferred();if(d>": 1,
+ ".promise": 5,
+ ".then": 3,
"g.reject": 1,
"g.promise": 1,
"f.support": 2,
+ "a.setAttribute": 7,
"a.innerHTML": 7,
"f.appendChild": 1,
+ "leadingWhitespace": 3,
"a.firstChild.nodeType": 2,
+ "htmlSerialize": 3,
+ "style": 30,
+ "/top/.test": 2,
"e.getAttribute": 2,
+ "hrefNormalized": 3,
+ "opacity": 13,
"e.style.opacity": 1,
+ "cssFloat": 4,
"e.style.cssFloat": 1,
+ "checkOn": 4,
"h.value": 3,
+ "optSelected": 3,
"g.selected": 1,
+ "getSetAttribute": 3,
"a.className": 1,
+ "submitBubbles": 3,
+ "changeBubbles": 3,
+ "focusinBubbles": 2,
+ "deleteExpando": 3,
+ "noCloneEvent": 3,
+ "inlineBlockNeedsLayout": 3,
+ "shrinkWrapBlocks": 2,
+ "reliableMarginRight": 2,
"h.checked": 2,
"j.noCloneChecked": 1,
"h.cloneNode": 1,
+ ".checked": 2,
"f.disabled": 1,
"j.optDisabled": 1,
"g.disabled": 1,
+ "a.test": 2,
"j.deleteExpando": 1,
"a.fireEvent": 1,
"j.noCloneEvent": 1,
"a.detachEvent": 1,
+ "a.cloneNode": 3,
+ ".fireEvent": 3,
"h.setAttribute": 2,
"j.radioValue": 1,
+ "a.appendChild": 3,
"c.createDocumentFragment": 1,
"k.appendChild": 1,
+ "a.firstChild": 6,
"j.checkClone": 1,
"k.cloneNode": 1,
+ ".cloneNode": 4,
+ ".lastChild.checked": 2,
"a.style.width": 1,
"a.style.paddingLeft": 1,
"visibility": 3,
+ "width": 32,
+ "height": 25,
+ "border": 7,
+ "margin": 8,
"background": 56,
"l.style": 1,
"l.appendChild": 1,
+ "b.insertBefore": 3,
+ "b.firstChild": 5,
"j.appendChecked": 1,
"j.boxModel": 1,
"a.style": 8,
@@ -27820,6 +3501,7 @@
"j.inlineBlockNeedsLayout": 1,
"j.shrinkWrapBlocks": 1,
".offsetHeight": 4,
+ ".style.display": 5,
"j.reliableHiddenOffsets": 1,
"c.defaultView": 2,
"c.defaultView.getComputedStyle": 3,
@@ -27830,81 +3512,155 @@
"marginRight": 2,
".marginRight": 2,
"l.innerHTML": 1,
+ "b.removeChild": 3,
+ "submit": 14,
+ "change": 16,
+ "focusin": 9,
"f.boxModel": 1,
"f.support.boxModel": 4,
+ "Z": 6,
+ "cache": 45,
"uuid": 2,
+ "expando": 14,
"f.fn.jquery": 1,
"Math.random": 2,
"D/g": 2,
+ "noData": 3,
+ "embed": 3,
+ "object": 59,
+ "applet": 2,
"hasData": 2,
"f.cache": 5,
+ "data": 145,
"f.acceptData": 4,
"f.uuid": 1,
+ ".toJSON": 4,
"f.noop": 4,
"f.camelCase": 5,
".events": 1,
+ "removeData": 8,
"f.support.deleteExpando": 3,
+ "_data": 3,
+ "acceptData": 3,
"f.noData": 2,
+ "a.nodeName.toLowerCase": 3,
"f.fn.extend": 9,
+ ".nodeType": 9,
+ ".attributes": 2,
+ ".name": 3,
"g.indexOf": 2,
"g.substring": 1,
+ "this.each": 42,
+ "a.split": 4,
+ "this.triggerHandler": 6,
+ "this.data": 5,
"b.triggerHandler": 2,
"_mark": 2,
"_unmark": 3,
+ "queue": 7,
"f.makeArray": 5,
"e.push": 3,
+ "dequeue": 6,
"f.queue": 3,
"c.shift": 2,
"c.unshift": 1,
"f.dequeue": 4,
+ "delay": 4,
"f.fx": 2,
"f.fx.speeds": 1,
+ "this.queue": 4,
+ "clearQueue": 2,
"d.resolveWith": 1,
"f.Deferred": 2,
"f._Deferred": 2,
"l.done": 1,
"d.promise": 1,
+ "r/g": 2,
+ "button": 24,
+ "input": 25,
+ "/i": 22,
+ "select": 20,
+ "textarea": 8,
"rea": 1,
"autofocus": 1,
"autoplay": 1,
+ "checked": 4,
"controls": 1,
"defer": 1,
+ "disabled": 11,
+ "hidden": 12,
+ "loop": 7,
+ "multiple": 7,
+ "open": 2,
+ "readonly": 3,
"required": 1,
"scoped": 1,
+ "selected": 5,
+ "attr": 13,
"f.access": 3,
"f.attr": 2,
+ "removeAttr": 5,
"f.removeAttr": 3,
+ "prop": 24,
"f.prop": 2,
"removeProp": 1,
"f.propFix": 6,
+ "addClass": 2,
"c.addClass": 1,
+ "c.attr": 4,
+ "e.nodeType": 7,
+ "e.className": 14,
"f.trim": 2,
+ "removeClass": 2,
"c.removeClass": 1,
"g.nodeType": 6,
"g.className": 4,
"h.replace": 2,
+ "toggleClass": 2,
"d.toggleClass": 1,
"d.attr": 1,
"h.hasClass": 1,
+ "this.className": 10,
+ "hasClass": 2,
"": 1,
+ "className": 4,
+ "replace": 8,
+ "indexOf": 5,
+ "val": 13,
"f.valHooks": 7,
"e.nodeName.toLowerCase": 1,
"c.get": 1,
"e.value": 1,
+ "this.nodeType": 4,
"e.val": 1,
"f.map": 5,
"this.nodeName.toLowerCase": 1,
"this.type": 3,
"c.set": 1,
+ "this.value": 4,
"valHooks": 1,
+ "option": 12,
"a.attributes.value": 1,
+ "b.specified": 2,
"a.text": 1,
"a.selectedIndex": 3,
"a.options": 2,
"": 3,
+ "support": 13,
"optDisabled": 1,
+ "getAttribute": 3,
+ "parentNode": 10,
+ "optgroup": 5,
+ "set": 22,
+ "find": 7,
"selected=": 1,
+ "attrFn": 2,
+ "css": 7,
+ "html": 10,
+ "text": 14,
+ "offset": 21,
"attrFix": 1,
+ "tabindex": 4,
"f.attrFn": 3,
"f.isXMLDoc": 4,
"f.attrFix": 3,
@@ -27916,15 +3672,26 @@
"i.set": 1,
"i.get": 1,
"f.support.getSetAttribute": 2,
+ "a.removeAttribute": 3,
"a.removeAttributeNode": 1,
+ "a.getAttributeNode": 7,
+ "attrHooks": 3,
"q.test": 1,
"f.support.radioValue": 1,
+ "tabIndex": 4,
"c.specified": 1,
"c.value": 1,
"r.test": 1,
"s.test": 1,
+ "a.href": 2,
"propFix": 1,
+ "maxlength": 2,
+ "cellspacing": 2,
"cellpadding": 1,
+ "rowspan": 2,
+ "colspan": 2,
+ "usemap": 2,
+ "frameborder": 2,
"contenteditable": 1,
"f.propHooks": 1,
"h.set": 1,
@@ -27932,6 +3699,7 @@
"propHooks": 1,
"f.attrHooks.value": 1,
"v.get": 1,
+ "v.set": 5,
"f.attrHooks.name": 1,
"f.valHooks.button": 1,
"d.nodeValue": 3,
@@ -27939,12 +3707,17 @@
"f.support.style": 1,
"f.attrHooks.style": 1,
"a.style.cssText.toLowerCase": 1,
+ "a.style.cssText": 3,
"f.support.optSelected": 1,
"f.propHooks.selected": 2,
+ "b.selectedIndex": 2,
"b.parentNode.selectedIndex": 1,
"f.support.checkOn": 1,
"f.inArray": 4,
+ ".val": 5,
+ "./g": 2,
"s.": 1,
+ "a.replace": 7,
"f.event": 2,
"add": 15,
"d.handler": 1,
@@ -27957,6 +3730,7 @@
"f.event.handle.apply": 1,
"k.elem": 2,
"c.split": 2,
+ "handler": 14,
"l.indexOf": 1,
"l.split": 1,
"n.shift": 1,
@@ -27972,6 +3746,7 @@
"h.handler.guid": 2,
"o.push": 1,
"f.event.global": 2,
+ "global": 5,
"remove": 9,
"s.events": 1,
"c.type": 9,
@@ -27987,8 +3762,13 @@
"p.splice": 1,
" ": 1,
"u=": 12,
+ "handle": 15,
"elem=": 4,
+ "events": 18,
"customEvent": 1,
+ "getData": 3,
+ "setData": 3,
+ "changeData": 3,
"trigger": 4,
"h.slice": 1,
"i.shift": 1,
@@ -28006,9 +3786,11 @@
"b.handle.elem": 2,
"c.result": 3,
"c.target": 3,
+ "d.unshift": 2,
"do": 15,
"c.currentTarget": 2,
"m.apply": 1,
+ ".apply": 7,
"k.parentNode": 1,
"k.ownerDocument": 1,
"c.target.ownerDocument": 1,
@@ -28031,6 +3813,40 @@
"isImmediatePropagationStopped": 2,
"result": 9,
"props": 21,
+ "altKey": 4,
+ "attrChange": 4,
+ "attrName": 4,
+ "bubbles": 4,
+ "cancelable": 4,
+ "charCode": 7,
+ "clientX": 6,
+ "clientY": 5,
+ "ctrlKey": 6,
+ "currentTarget": 4,
+ "detail": 3,
+ "eventPhase": 4,
+ "fromElement": 6,
+ "keyCode": 6,
+ "layerX": 3,
+ "layerY": 3,
+ "metaKey": 5,
+ "newValue": 3,
+ "offsetX": 4,
+ "offsetY": 4,
+ "pageX": 4,
+ "pageY": 4,
+ "prevValue": 3,
+ "relatedNode": 4,
+ "relatedTarget": 6,
+ "screenX": 4,
+ "screenY": 4,
+ "shiftKey": 4,
+ "srcElement": 5,
+ "target": 44,
+ "toElement": 5,
+ "view": 4,
+ "wheelDelta": 3,
+ "which": 8,
"split": 4,
"fix": 1,
"Event": 3,
@@ -28038,6 +3854,7 @@
"relatedTarget=": 1,
"fromElement=": 1,
"pageX=": 2,
+ "documentElement": 2,
"scrollLeft": 2,
"clientLeft": 2,
"pageY=": 1,
@@ -28052,12 +3869,15 @@
"special": 3,
"setup": 5,
"teardown": 6,
+ "live": 8,
+ "event": 31,
"origType": 2,
"beforeunload": 1,
"onbeforeunload=": 3,
"removeEvent=": 1,
"removeEventListener": 3,
"detachEvent": 2,
+ "on": 37,
"Event=": 1,
"originalEvent=": 1,
"type=": 5,
@@ -28076,27 +3896,45 @@
"isPropagationStopped": 1,
"G=": 1,
"H=": 1,
+ "mouseenter": 9,
+ "mouseover": 12,
+ "mouseleave": 9,
+ "mouseout": 12,
"submit=": 1,
+ "form": 12,
+ "click": 11,
"specialSubmit": 3,
"closest": 3,
+ "keypress": 4,
"keyCode=": 1,
+ "I": 7,
"J=": 1,
+ "value": 98,
"selectedIndex": 1,
"a.selected": 1,
+ "K": 4,
"z.test": 3,
"d.readOnly": 1,
+ "J": 5,
+ "d.type": 2,
"c.liveFired": 1,
"f.event.special.change": 1,
"filters": 1,
+ "focusout": 11,
"beforedeactivate": 1,
+ "b.type": 4,
"K.call": 2,
+ "keydown": 4,
"a.keyCode": 2,
"beforeactivate": 1,
"f.event.add": 2,
+ "this.nodeName": 4,
"f.event.special.change.filters": 1,
"I.focus": 1,
"I.beforeactivate": 1,
"f.support.focusinBubbles": 1,
+ "focus": 7,
+ "blur": 8,
"c.originalEvent": 1,
"a.preventDefault": 3,
"f.fn": 9,
@@ -28109,23 +3947,39 @@
"undelegate": 1,
"this.die": 1,
"triggerHandler": 1,
+ "toggle": 10,
"%": 26,
".guid": 1,
"this.click": 1,
+ "hover": 3,
"this.mouseenter": 1,
".mouseleave": 1,
+ "M": 9,
"g.charAt": 1,
"n.unbind": 1,
"y.exec": 1,
"a.push": 2,
"n.length": 1,
"": 1,
+ "load": 5,
+ "resize": 3,
+ "scroll": 6,
+ "unload": 5,
+ "dblclick": 3,
+ "mousedown": 3,
+ "mouseup": 3,
+ "mousemove": 3,
+ "keyup": 3,
+ "fn": 14,
"this.bind": 2,
+ "this.trigger": 2,
"": 2,
"sizcache=": 4,
"sizset": 2,
"sizset=": 2,
+ "string": 41,
"toLowerCase": 3,
+ "W/": 2,
"d.nodeType": 5,
"k.isXML": 4,
"a.exec": 2,
@@ -28135,13 +3989,19 @@
"l.relative": 6,
"x.shift": 4,
"l.match.ID.test": 2,
+ "k.find": 6,
"q.expr": 4,
+ "k.filter": 5,
"q.set": 4,
+ "expr": 2,
"x.pop": 4,
"d.parentNode": 4,
+ "k.error": 2,
"e.call": 1,
"f.push.apply": 1,
"k.contains": 5,
+ "f.push": 5,
+ "k.uniqueSort": 5,
"a.sort": 1,
"": 1,
"matches=": 1,
@@ -28149,11 +4009,58 @@
"l.order.length": 1,
"l.order": 1,
"l.leftMatch": 1,
+ ".exec": 2,
+ "g.splice": 2,
"j.substr": 1,
+ "j.length": 2,
+ "undefined": 328,
+ "Syntax": 3,
+ "unrecognized": 3,
+ "expression": 4,
+ "ID": 8,
+ "NAME": 2,
+ "TAG": 2,
+ "u00c0": 2,
+ "uFFFF": 2,
+ "leftMatch": 2,
+ "attrMap": 2,
+ "attrHandle": 2,
+ "href": 9,
+ "relative": 4,
"": 1,
+ "previousSibling": 5,
+ "name": 161,
+ "nth": 5,
+ "even": 3,
+ "odd": 2,
+ "not": 26,
+ "radio": 17,
+ "checkbox": 14,
+ "file": 5,
+ "password": 5,
+ "image": 5,
+ "reset": 2,
+ "contains": 8,
+ "only": 10,
+ "id": 38,
+ "class": 5,
+ "Array": 3,
+ "number": 13,
+ "div": 28,
+ "script": 7,
+ "": 4,
+ "name=": 2,
+ "href=": 2,
+ " ": 2,
"__sizzle__": 1,
+ "": 2,
+ "class=": 5,
+ "
": 2,
+ ".TEST": 2,
+ "&": 13,
"sizzle": 1,
"l.match.PSEUDO.test": 1,
+ "b.call": 4,
"a.document.nodeType": 1,
"a.getElementsByClassName": 3,
"a.lastChild.className": 1,
@@ -28169,16 +4076,21 @@
"b.nodeName": 2,
"l.match.PSEUDO.exec": 1,
"l.match.PSEUDO": 1,
+ "f.length": 5,
"f.expr": 4,
"k.selectors": 1,
"f.expr.filters": 3,
"f.unique": 4,
"f.text": 2,
"k.getText": 1,
+ "P": 4,
"/Until": 1,
+ "Q": 6,
"parents": 2,
"prevUntil": 2,
"prevAll": 2,
+ "R": 2,
+ "T": 4,
"U": 1,
"f.expr.match.POS": 1,
"V": 2,
@@ -28189,9 +4101,12 @@
".filter": 2,
"": 1,
"e.splice": 1,
+ "has": 9,
"this.filter": 2,
"": 1,
+ "is": 67,
"": 1,
+ "index": 5,
".is": 2,
"c.push": 3,
"g.parentNode": 2,
@@ -28206,6 +4121,7 @@
"this.get": 1,
"andSelf": 1,
"this.add": 1,
+ "parent": 15,
"f.dir": 6,
"parentsUntil": 1,
"f.nth": 2,
@@ -28228,13 +4144,19 @@
"dir": 1,
"sibling": 1,
"a.nextSibling": 1,
+ "Y": 3,
+ "jQuery": 48,
"<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>": 1,
"/ig": 3,
+ "_": 9,
+ "ba": 3,
"tbody/i": 1,
+ "bb": 2,
"bc": 1,
"bd": 1,
"/checked": 1,
"s*.checked.": 1,
+ "be": 12,
"java": 1,
"ecma": 1,
"script/i": 1,
@@ -28245,6 +4167,7 @@
"tr": 23,
"td": 3,
"col": 7,
+ "area": 2,
"_default": 5,
"bg.optgroup": 1,
"bg.option": 1,
@@ -28260,11 +4183,13 @@
"c.text": 2,
"this.empty": 3,
".append": 6,
+ ".ownerDocument": 5,
".createTextNode": 1,
"wrapAll": 1,
".wrapAll": 2,
".eq": 1,
".clone": 1,
+ ".parentNode": 7,
"b.map": 1,
"wrapInner": 1,
".wrapInner": 1,
@@ -28273,6 +4198,7 @@
"b.append": 1,
"wrap": 2,
"unwrap": 1,
+ ".each": 3,
".replaceWith": 1,
"this.childNodes": 1,
".end": 1,
@@ -28282,13 +4208,18 @@
"prepend": 1,
"this.insertBefore": 1,
"this.firstChild": 1,
+ "before": 8,
"this.parentNode.insertBefore": 2,
"a.push.apply": 2,
+ "after": 7,
"this.nextSibling": 2,
".toArray": 1,
"f.cleanData": 4,
+ "d.getElementsByTagName": 6,
"d.parentNode.removeChild": 1,
+ "empty": 3,
"b.getElementsByTagName": 1,
+ "clone": 5,
"this.map": 3,
"f.clone": 2,
".innerHTML.replace": 1,
@@ -28311,12 +4242,14 @@
"f.support.checkClone": 2,
"bd.test": 2,
".domManip": 1,
+ "j.call": 2,
"g.html": 1,
"g.domManip": 1,
"j.parentNode": 1,
"f.support.parentNode": 1,
"i.nodeType": 1,
"i.childNodes.length": 1,
+ "fragment": 27,
"f.buildFragment": 2,
"e.fragment": 1,
"h.childNodes.length": 1,
@@ -28327,6 +4260,7 @@
"f.fragments": 3,
"i.createDocumentFragment": 1,
"f.clean": 1,
+ "cacheable": 2,
"appendTo": 1,
"prependTo": 1,
"insertBefore": 1,
@@ -28339,7 +4273,10 @@
"e.selector": 1,
"f.support.noCloneEvent": 1,
"f.support.noCloneChecked": 1,
+ "clean": 3,
"b.createElement": 2,
+ "b.ownerDocument": 6,
+ "bb.test": 2,
"b.createTextNode": 2,
"k.replace": 2,
"o.innerHTML": 1,
@@ -28358,9 +4295,11 @@
"k.nodeType": 1,
"h.push": 1,
"be.test": 1,
+ ".type": 2,
".type.toLowerCase": 1,
"h.splice.apply": 1,
".concat": 3,
+ "d.appendChild": 3,
"cleanData": 1,
"j.nodeName": 1,
"j.nodeName.toLowerCase": 1,
@@ -28375,11 +4314,14 @@
"br": 19,
"ms": 2,
"bs": 2,
+ "px": 31,
"bt": 42,
"bu": 11,
"bv": 2,
"de": 1,
"bw": 2,
+ "position": 7,
+ "display": 7,
"bz": 7,
"bA": 3,
"bB": 5,
@@ -28406,9 +4348,11 @@
"k.set": 1,
"g.get": 1,
"swap": 1,
+ "camelCase": 3,
"f.curCSS": 1,
"f.swap": 2,
"<0||e==null){e=a.style[b];return>": 1,
+ "auto": 3,
"0px": 1,
"f.support.opacity": 1,
"f.cssHooks.opacity": 1,
@@ -28417,6 +4361,7 @@
"a.currentStyle.filter": 1,
"a.style.filter": 1,
"RegExp.": 1,
+ "/100": 2,
"c.zoom": 1,
"b*100": 1,
"d.filter": 1,
@@ -28468,7 +4413,9 @@
"widget": 1,
"bL": 1,
"GET": 1,
+ "HEAD": 3,
"bM": 2,
+ "//": 410,
"bN": 2,
"bO": 2,
"<\\/script>": 2,
@@ -28501,6 +4448,7 @@
"this.serializeArray": 1,
"serializeArray": 1,
"this.elements": 2,
+ "this.name": 7,
"this.disabled": 1,
"this.checked": 1,
"bP.test": 1,
@@ -28513,6 +4461,7 @@
"getJSON": 1,
"ajaxSetup": 1,
"f.ajaxSettings": 4,
+ "context": 48,
"ajaxSettings": 1,
"isLocal": 1,
"bK.test": 1,
@@ -28564,10 +4513,13 @@
"v.complete": 1,
"i.done": 1,
"<2)for(b>": 1,
+ "status": 3,
"url=": 1,
"dataTypes=": 1,
"crossDomain=": 2,
+ "r=": 18,
"exec": 8,
+ "http": 6,
"80": 2,
"443": 2,
"param": 3,
@@ -28588,19 +4540,24 @@
"Type": 1,
"ifModified": 1,
"lastModified": 3,
+ "If": 21,
"Modified": 1,
+ "Since": 3,
"etag": 3,
"None": 1,
+ "Match": 3,
"Accept": 1,
"dataTypes": 4,
"q=": 1,
"01": 1,
+ "headers": 41,
"beforeSend": 2,
"p=": 5,
"No": 1,
"Transport": 1,
"readyState=": 1,
"ajaxSend": 1,
+ "timeout": 2,
"v.abort": 1,
"d.timeout": 1,
"p.send": 1,
@@ -28619,6 +4576,7 @@
"cd.test": 2,
"b.url": 4,
"b.jsonpCallback": 4,
+ "j.replace": 2,
"d.always": 1,
"b.converters": 1,
"/javascript": 1,
@@ -28663,6 +4621,7 @@
"h.setRequestHeader": 1,
"h.send": 1,
"c.hasContent": 1,
+ "c.data": 12,
"h.readyState": 3,
"h.onreadystatechange": 2,
"h.abort": 1,
@@ -28677,6 +4636,8 @@
"c.isLocal": 1,
".unload": 1,
"cm": 2,
+ "show": 10,
+ "hide": 8,
"cn": 1,
"co": 5,
"cp": 1,
@@ -28686,11 +4647,13 @@
"a.oRequestAnimationFrame": 1,
"this.animate": 2,
"d.style": 3,
+ "d.style.display": 5,
".style": 1,
"": 1,
"_toggle": 2,
"animate": 4,
"fadeTo": 1,
+ "speed": 4,
"queue=": 2,
"animatedProperties=": 1,
"animatedProperties": 2,
@@ -28701,12 +4664,17 @@
"overflow": 2,
"overflowX": 1,
"overflowY": 1,
+ "inline": 3,
"float": 3,
+ "none": 4,
"display=": 3,
"zoom=": 1,
"fx": 10,
"l=": 10,
"m=": 2,
+ "cur": 6,
+ "n=": 10,
+ "o=": 13,
"custom": 5,
"stop": 7,
"timers": 3,
@@ -28732,6 +4700,7 @@
"prop=": 3,
"orig=": 1,
"orig": 3,
+ "options": 56,
"step": 7,
"startTime=": 1,
"start=": 1,
@@ -28739,6 +4708,7 @@
"unit=": 1,
"unit": 1,
"now=": 1,
+ "start": 20,
"pos=": 1,
"state=": 1,
"co=": 2,
@@ -28790,7 +4760,9 @@
"f.offset.bodyOffset": 2,
"b.getBoundingClientRect": 1,
"e.documentElement": 4,
+ "top": 12,
"c.top": 4,
+ "left": 14,
"c.left": 4,
"e.body": 3,
"g.clientTop": 1,
@@ -28830,6 +4802,8 @@
"f.offset": 1,
"initialize": 3,
"b.style": 1,
+ "a.insertBefore": 2,
+ "d.firstChild": 2,
"d.nextSibling.firstChild.firstChild": 1,
"this.doesNotAddBorder": 1,
"e.offsetTop": 4,
@@ -28843,6 +4817,7 @@
"this.subtractsBorderForOverflowNotVisible": 1,
"this.doesNotIncludeMarginInBodyOffset": 1,
"a.offsetTop": 2,
+ "a.removeChild": 2,
"bodyOffset": 1,
"a.offsetLeft": 1,
"f.offset.doesNotIncludeMarginInBodyOffset": 1,
@@ -28863,6 +4838,7 @@
"this.offsetParent": 2,
"this.offset": 2,
"cx.test": 2,
+ ".nodeName": 2,
"b.offset": 1,
"d.top": 2,
"d.left": 2,
@@ -28877,9 +4853,1566 @@
"e.document.compatMode": 1,
"e.document.body": 1,
"this.css": 1,
+ "window": 16,
+ "ma": 3,
+ "c.isReady": 4,
+ "s.documentElement.doScroll": 2,
+ "c.ready": 7,
+ "Qa": 1,
+ "c.ajax": 1,
+ "c.globalEval": 1,
+ "c.isFunction": 9,
+ "na": 1,
+ "c.event.handle.apply": 1,
+ "oa": 1,
+ "i.live": 1,
+ "i.live.slice": 1,
+ "u.length": 3,
+ "i.origType.replace": 1,
+ "i.selector": 3,
+ "u.splice": 1,
+ ".selector": 1,
+ ".elem": 1,
+ "i.preType": 2,
+ "d.push": 1,
+ "j.elem": 2,
+ "j.handleObj.data": 1,
+ "j.handleObj": 1,
+ "j.handleObj.origHandler.apply": 1,
+ "pa": 1,
+ "qa": 1,
+ "ra": 1,
+ "b.each": 1,
+ "f.events": 1,
+ "c.event.add": 1,
+ ".data": 3,
+ "sa": 2,
+ "ta.test": 1,
+ "c.support.checkClone": 2,
+ "ua.test": 1,
+ "c.fragments": 2,
+ "b.createDocumentFragment": 1,
+ "c.clean": 1,
+ "c.each": 2,
+ "va.concat.apply": 1,
+ "va.slice": 1,
+ "wa": 1,
+ "c.fn.init": 1,
+ "Ra": 2,
+ "A.jQuery": 3,
+ "Sa": 2,
+ "A.": 3,
+ "A.document": 1,
+ "Ta": 1,
+ "Ua": 1,
+ "Va": 1,
+ "Wa": 2,
+ "u00A0": 2,
+ "Xa": 1,
+ "navigator.userAgent": 3,
+ "xa": 3,
+ "aa": 1,
+ "ya": 2,
+ "c.fn": 2,
+ "c.prototype": 1,
+ "s.body": 2,
+ "Ta.exec": 1,
+ "Xa.exec": 1,
+ "c.isPlainObject": 3,
+ "s.createElement": 10,
+ "c.fn.attr.call": 1,
+ "f.createElement": 1,
+ "a.cacheable": 1,
+ "a.fragment.cloneNode": 1,
+ "a.fragment": 1,
+ "c.merge": 4,
+ "s.getElementById": 1,
+ "b.id": 1,
+ "T.find": 1,
+ "s.getElementsByTagName": 2,
+ "b.jquery": 1,
+ "T.ready": 1,
+ "c.makeArray": 3,
+ "R.call": 2,
+ "c.isArray": 5,
+ "ba.apply": 1,
+ "f.prevObject": 1,
+ "f.context": 1,
+ "f.selector": 2,
+ "c.bindReady": 1,
+ "Q.push": 1,
+ "R.apply": 1,
+ "c.map": 1,
+ "c.fn.init.prototype": 1,
+ "c.extend": 7,
+ "c.fn.extend": 4,
+ "c.fn.triggerHandler": 1,
+ ".triggerHandler": 1,
+ "s.readyState": 2,
+ "s.addEventListener": 3,
+ "A.addEventListener": 1,
+ "s.attachEvent": 3,
+ "A.attachEvent": 1,
+ "A.frameElement": 1,
+ ".call": 10,
+ "a.setInterval": 2,
+ "aa.call": 3,
+ "c.trim": 3,
+ "@": 1,
+ "A.JSON": 1,
+ "A.JSON.parse": 2,
+ "c.error": 2,
+ "Va.test": 1,
+ "s.documentElement": 2,
+ "c.support.scriptEval": 2,
+ "s.createTextNode": 2,
+ "d.text": 1,
+ "b.apply": 2,
+ "ba.call": 1,
+ "b.indexOf": 2,
+ "f.concat.apply": 1,
+ "b.guid": 2,
+ "c.guid": 1,
+ "/.exec": 4,
+ "/compatible/.test": 1,
+ "c.uaMatch": 1,
+ "P.browser": 2,
+ "c.browser": 1,
+ "c.browser.version": 1,
+ "P.version": 1,
+ "c.browser.webkit": 1,
+ "c.browser.safari": 1,
+ "c.inArray": 2,
+ "ya.call": 1,
+ "s.removeEventListener": 1,
+ "s.detachEvent": 1,
+ "c.support": 2,
+ "d.innerHTML": 2,
+ "d.firstChild.nodeType": 1,
+ "/red/.test": 1,
+ "j.getAttribute": 2,
+ "j.style.opacity": 1,
+ "j.style.cssFloat": 1,
+ ".value": 1,
+ ".appendChild": 1,
+ ".selected": 1,
+ "d.removeChild": 1,
+ "checkClone": 1,
+ "scriptEval": 1,
+ "boxModel": 1,
+ "b.appendChild": 1,
+ "b.test": 1,
+ "c.support.deleteExpando": 2,
+ "d.attachEvent": 2,
+ "d.fireEvent": 1,
+ "c.support.noCloneEvent": 1,
+ "d.detachEvent": 1,
+ "d.cloneNode": 1,
+ "s.createDocumentFragment": 1,
+ "k.style.width": 1,
+ "k.style.paddingLeft": 1,
+ "s.body.appendChild": 1,
+ "c.boxModel": 1,
+ "c.support.boxModel": 1,
+ "k.offsetWidth": 1,
+ "s.body.removeChild": 1,
+ "n.setAttribute": 1,
+ "c.support.submitBubbles": 1,
+ "c.support.changeBubbles": 1,
+ "c.props": 2,
+ "Ya": 2,
+ "za": 3,
+ "c.noData": 2,
+ "c.cache": 2,
+ "c.isEmptyObject": 1,
+ "c.removeData": 2,
+ "c.expando": 2,
+ "c.queue": 3,
+ "d.shift": 2,
+ "f.call": 1,
+ "c.dequeue": 4,
+ "c.fx": 1,
+ "c.fx.speeds": 1,
+ "Aa": 3,
+ "Za": 2,
+ "/href": 1,
+ "src": 7,
+ "style/": 1,
+ "ab": 1,
+ "Ba": 3,
+ "/radio": 1,
+ "checkbox/": 1,
+ "this.removeAttribute": 1,
+ "r.addClass": 1,
+ "r.attr": 1,
+ "j.indexOf": 1,
+ "n.removeClass": 1,
+ "n.attr": 1,
+ "j.toggleClass": 1,
+ "j.attr": 1,
+ "i.hasClass": 1,
+ "