Home
last modified time | relevance | path

Searched refs:opcode (Results 1 – 10 of 10) sorted by relevance

/plugin/asciidocjs/node_modules/handlebars/lib/handlebars/compiler/
Dcompiler.js26 let opcode = this.opcodes[i],
29 opcode.opcode !== otherOpcode.opcode ||
30 !argEquals(opcode.args, otherOpcode.args)
138 this.opcode('pushProgram', program);
139 this.opcode('pushProgram', inverse);
140 this.opcode('emptyHash');
141 this.opcode('blockValue', block.path.original);
147 this.opcode('pushProgram', program);
148 this.opcode('pushProgram', inverse);
149 this.opcode('emptyHash');
[all …]
Djavascript-compiler.js100 opcode,
106 opcode = opcodes[i];
108 this.source.currentLocation = opcode.loc;
109 firstLoc = firstLoc || opcode.loc;
110 this[opcode.opcode].apply(this, opcode.args);
/plugin/asciidocjs/node_modules/handlebars/dist/cjs/handlebars/compiler/
Dcompiler.js42 var opcode = this.opcodes[i],
44 if (opcode.opcode !== otherOpcode.opcode || !argEquals(opcode.args, otherOpcode.args)) {
148 this.opcode('pushProgram', program);
149 this.opcode('pushProgram', inverse);
150 this.opcode('emptyHash');
151 this.opcode('blockValue', block.path.original);
157 this.opcode('pushProgram', program);
158 this.opcode('pushProgram', inverse);
159 this.opcode('emptyHash');
160 this.opcode('ambiguousBlockValue');
[all …]
Djavascript-compiler.js105 opcode = undefined, variable in JavaScriptCompiler
111 opcode = opcodes[i];
113 this.source.currentLocation = opcode.loc;
114 firstLoc = firstLoc || opcode.loc;
115 this[opcode.opcode].apply(this, opcode.args);
/plugin/asciidocjs/node_modules/handlebars/dist/amd/handlebars/compiler/
Dcompiler.js37 var opcode = this.opcodes[i],
39 if (opcode.opcode !== otherOpcode.opcode || !argEquals(opcode.args, otherOpcode.args)) {
143 this.opcode('pushProgram', program);
144 this.opcode('pushProgram', inverse);
145 this.opcode('emptyHash');
146 this.opcode('blockValue', block.path.original);
152 this.opcode('pushProgram', program);
153 this.opcode('pushProgram', inverse);
154 this.opcode('emptyHash');
155 this.opcode('ambiguousBlockValue');
[all …]
Djavascript-compiler.js97 opcode = undefined,
103 opcode = opcodes[i];
105 this.source.currentLocation = opcode.loc;
106 firstLoc = firstLoc || opcode.loc;
107 this[opcode.opcode].apply(this, opcode.args);
/plugin/pgn4web/pgn4web/
Dpgn-standard.txt986 vary by locale. This tag pair is associated with the use of the EPD opcode
993 vary by locale. This tag pair is associated with the use of the EPD opcode
1001 opcode "v2" described in a later section of this document.
1017 This tag pair is associated with the use of the EPD opcode "eco" described in a
1024 Chess_ database. This tag pair is associated with the use of the EPD opcode
1642 opcode in the EPD description in a later section of this document. To ensure
2221 An EPD operation is composed of an opcode followed by zero or more operands and
2231 An opcode is an identifier that starts with a letter character and may be
2241 between the opcode and the first operand. If more than one operand is present
2244 opcode to mark the end of the operation. If any operands appear, the last
[all …]
Dpgn-standard-proposed-supplement.txt140 This parameter syntax is based on the epd opcode syntax described at 16.2.4 of
166 We have thus departed from the epd opcode specification in two ways:
/plugin/asciidocjs/node_modules/handlebars/
Drelease-notes.md837 - `DECLARE` opcode
838 - `strip` opcode
839 - `lookup` opcode
/plugin/xlsx2dw/packages/xlsx/
Dxlsx.mjs9259 else if(cc <= 0x07) return console.error("WK1 invalid opcode " + cc.toString(16));
9261 else if(cc <= 0x1E) return console.error("WK1 invalid opcode " + cc.toString(16));
9262 else if(cc <= 0x73) return console.error("WK1 unsupported function opcode " + cc.toString(16));
9264 else return console.error("WK1 unrecognized opcode " + cc.toString(16));