Searched refs:rewrites (Results 1 - 21 of 21) sorted by relevance

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DTokenRewriteStream.cs80 * rewrites from a single pass over the input. Just name the instruction
103 /** <summary>What index into rewrites List are we?</summary> */
270 IList<RewriteOperation> rewrites = GetProgram(programName);
271 op.instructionIndex = rewrites.Count;
272 rewrites.Add(op);
296 IList<RewriteOperation> rewrites = GetProgram(programName);
297 op.instructionIndex = rewrites.Count;
298 rewrites.Add(op);
391 IList<RewriteOperation> rewrites;
392 if (!programs.TryGetValue(programName, out rewrites))
490 ReduceToSingleOperationPerIndex(IList<RewriteOperation> rewrites) argument
586 GetKindOfOps(IList<RewriteOperation> rewrites, Type kind) argument
591 GetKindOfOps(IList<RewriteOperation> rewrites, Type kind, int before) argument
[all...]
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DTokenRewriteStream.js39 * rewrites from a single pass over the input. Just name the instruction
200 var rewrites = this.getProgram(programName);
202 for (pos=0, len=rewrites.length; pos<len; pos++) {
203 searchOp = rewrites[pos];
205 // now pos is the index in rewrites of first op with op.index
212 for (i=pos; i<rewrites.length; i++) {
213 prevOp = rewrites[pos];
218 rewrites[pos] = op; // replace old with new
226 rewrites.splice(i, 0, op);
230 rewrites
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DTokenRewriteStream.as70 * rewrites from a single pass over the input. Just name the instruction
132 var rewrites:Array = getProgram(programName);
133 op.instructionIndex = rewrites.length;
134 rewrites.push(op);
146 var rewrites:Array = getProgram(programName);
147 op.instructionIndex = rewrites.length;
148 rewrites.push(op);
222 var rewrites:Array = programs[programName] as Array;
228 if ( rewrites==null || rewrites
[all...]
H A DBaseRecognizer.as699 /** A convenience method for use most often with template rewrites.
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DTokenRewriteStream.cs83 * rewrites from a single pass over the input. Just name the instruction
108 /** <summary>What index into rewrites List are we?</summary> */
307 IList<RewriteOperation> rewrites = GetProgram( programName );
308 op.instructionIndex = rewrites.Count;
309 rewrites.Add( op );
339 IList<RewriteOperation> rewrites = GetProgram( programName );
340 op.instructionIndex = rewrites.Count;
341 rewrites.Add( op );
454 IList<RewriteOperation> rewrites;
455 if ( !programs.TryGetValue( programName, out rewrites ) )
694 GetKindOfOps( IList<RewriteOperation> rewrites, Type kind ) argument
700 GetKindOfOps( IList<RewriteOperation> rewrites, Type kind, int before ) argument
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DTokenRewriteStream.java70 * rewrites from a single pass over the input. Just name the instruction
91 /** What index into rewrites List are we? */
242 List rewrites = getProgram(programName);
243 op.instructionIndex = rewrites.size();
244 rewrites.add(op);
268 List rewrites = getProgram(programName);
269 op.instructionIndex = rewrites.size();
270 rewrites.add(op);
362 List rewrites = (List)programs.get(programName);
368 if ( rewrites
456 reduceToSingleOperationPerIndex(List rewrites) argument
564 getKindOfOps(List rewrites, Class kind) argument
569 getKindOfOps(List rewrites, Class kind, int before) argument
[all...]
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dstreams.py959 # What index into rewrites List are we?
1064 rewrites from a single pass over the input. Just name the instruction
1163 rewrites = self.getProgram(programName)
1164 op.instructionIndex = len(rewrites)
1165 rewrites.append(op)
1204 rewrites = self.getProgram(programName)
1205 op.instructionIndex = len(rewrites)
1206 rewrites.append(op)
1290 rewrites = self.programs.get(programName)
1291 if rewrites i
[all...]
/external/llvm/include/llvm/MC/
H A DMCTargetAsmParser.h72 ParseInstructionInfo(SmallVectorImpl<AsmRewrite> *rewrites) argument
73 : AsmRewrites(rewrites) {}
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRTokenRewriteStream.h43 /** What index into rewrites List are we? */
163 - (ANTLRHashMap *)reduceToSingleOperationPerIndex:(ANTLRHashMap *)rewrites;
164 - (ANTLRHashMap *)getKindOfOps:(ANTLRHashMap *)rewrites KindOfClass:(Class)kind;
165 - (ANTLRHashMap *)getKindOfOps:(ANTLRHashMap *)rewrites KindOfClass:(Class)kind Index:(NSInteger)before;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRTokenRewriteStream.h43 /** What index into rewrites List are we? */
163 - (ANTLRHashMap *)reduceToSingleOperationPerIndex:(ANTLRHashMap *)rewrites;
164 - (ANTLRHashMap *)getKindOfOps:(ANTLRHashMap *)rewrites KindOfClass:(Class)kind;
165 - (ANTLRHashMap *)getKindOfOps:(ANTLRHashMap *)rewrites KindOfClass:(Class)kind Index:(NSInteger)before;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRTokenRewriteStream.h43 /** What index into rewrites List are we? */
163 - (ANTLRHashMap *)reduceToSingleOperationPerIndex:(ANTLRHashMap *)rewrites;
164 - (ANTLRHashMap *)getKindOfOps:(ANTLRHashMap *)rewrites KindOfClass:(Class)kind;
165 - (ANTLRHashMap *)getKindOfOps:(ANTLRHashMap *)rewrites KindOfClass:(Class)kind Index:(NSInteger)before;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRTokenRewriteStream.h43 /** What rwIndex into rewrites List are we? */
163 - (ANTLRHashMap *)reduceToSingleOperationPerIndex:(ANTLRHashMap *)rewrites;
164 - (ANTLRHashMap *)getKindOfOps:(ANTLRHashMap *)rewrites KindOfClass:(Class)kind;
165 - (ANTLRHashMap *)getKindOfOps:(ANTLRHashMap *)rewrites KindOfClass:(Class)kind Index:(NSInteger)before;
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
H A Drewrite.rb55 To perform token stream rewrites safely and efficiently, the rewrites are
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/
H A Dv8-earley-boyer.js3470 }, function(rewrites) {
3471 if ((sc_isNumber(rewrites)))
3474 return (rewrites===(95024));
3477 return (rewrites===(591777));
3480 return (rewrites===(1813975));
3483 return (rewrites===(5375678));
3486 return (rewrites===(16445406));
3489 return (rewrites===(51507739));
3786 (sc_display(" rewrites"));
4673 throw new Error("Earley or Boyer did incorrect number of rewrites");
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/
H A Dv8-earley-boyer.js3470 }, function(rewrites) {
3471 if ((sc_isNumber(rewrites)))
3474 return (rewrites===(95024));
3477 return (rewrites===(591777));
3480 return (rewrites===(1813975));
3483 return (rewrites===(5375678));
3486 return (rewrites===(16445406));
3489 return (rewrites===(51507739));
3786 (sc_display(" rewrites"));
4673 throw new Error("Earley or Boyer did incorrect number of rewrites");
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/
H A Dv8-earley-boyer.js3470 }, function(rewrites) {
3471 if ((sc_isNumber(rewrites)))
3474 return (rewrites===(95024));
3477 return (rewrites===(591777));
3480 return (rewrites===(1813975));
3483 return (rewrites===(5375678));
3486 return (rewrites===(16445406));
3489 return (rewrites===(51507739));
3786 (sc_display(" rewrites"));
4673 throw new Error("Earley or Boyer did incorrect number of rewrites");
[all...]
/external/chromium_org/v8/benchmarks/
H A Dearley-boyer.js3476 }, function(rewrites) {
3477 if ((sc_isNumber(rewrites)))
3480 return (rewrites===(95024));
3483 return (rewrites===(591777));
3486 return (rewrites===(1813975));
3489 return (rewrites===(5375678));
3492 return (rewrites===(16445406));
3495 return (rewrites===(51507739));
3792 (sc_display(" rewrites"));
4679 throw new Error("Earley or Boyer did incorrect number of rewrites");
[all...]
/external/llvm/lib/MC/MCParser/
H A DAsmParser.cpp116 ParseStatementInfo(SmallVectorImpl<AsmRewrite> *rewrites) argument
117 : Opcode(~0), ParseError(false), AsmRewrites(rewrites) {}
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Tree.pas303 /// If your node type doesn't handle this, it's ok but the tree rewrites
313 /// If your node type doesn't handle this, it's ok but the tree rewrites
4783 raise EInvalidOperation.Create('can''t do stream rewrites yet');
H A DAntlr.Runtime.pas849 /// <summary>A convenience method for use most often with template rewrites.
1257 /// rewrites from a single pass over the input. Just name the instruction
2570 // What index into rewrites List are we?
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...

Completed in 4080 milliseconds