HomeSort by relevance Sort by last modified time
    Searched full:rewrites (Results 1 - 25 of 150) sorted by null

1 2 3 4 5 6

  /external/libsepol/man/man8/
genpolbools.8 9 rewrites an existing binary policy with different boolean settings,
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
TokenRewriteStream.cs 83 * 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 ) )
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
TokenRewriteStream.cs 80 * 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))
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
TokenRewriteStream.java 70 * 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); local
243 op.instructionIndex = rewrites.size();
244 rewrites.add(op);
268 List rewrites = getProgram(programName); local
269 op.instructionIndex = rewrites.size();
270 rewrites.add(op);
362 List rewrites = (List)programs.get(programName); local
368 if ( rewrites==null || rewrites.size()==0 )
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRTokenRewriteStream.m 318 ANTLRHashMap *rewrites = [self getProgram:programName];
319 op.instructionIndex = [rewrites count];
320 [rewrites addObject:op];
354 ANTLRHashMap *rewrites = (ANTLRHashMap *)[lastRewriteTokenIndexes getName:programName];
355 op.instructionIndex = [rewrites count];
356 [rewrites addObject:op];
461 ANTLRHashMap *rewrites = (ANTLRHashMap *)[programs getName:programName];
468 if ( rewrites == nil || [rewrites count] == 0 ) {
474 ANTLRHashMap *indexToOp = [self reduceToSingleOperationPerIndex:rewrites];
    [all...]
ANTLRTokenRewriteStream.h 43 /** 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/JavaScript/src/org/antlr/runtime/
TokenRewriteStream.js 39 * 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.splice(pos, 0, op)
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
TokenRewriteStream.as 70 * 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.length==0 )
    [all...]
  /external/chromium/build/linux/
rewrite_dirs.py 6 """Rewrites paths in -I, -L and other option to be relative to a sysroot."""
23 """Rewrites a path by stripping the prefix and prepending the sysroot."""
35 """Rewrites all the paths in recognized options."""
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
streams.py 959 # What index into rewrites List are we?
1064 rewrites from a single pass over the input. Just name the instruction
    [all...]
  /external/antlr/antlr-3.4/antlr3-maven-archetype/src/main/resources/archetype-resources/src/main/antlr3/
TParser.g 35 // Some imaginary tokens for tree rewrites
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRTokenRewriteStream.h 43 /** 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;
ANTLRTreeAdaptor.h 144 * If your node type doesn't handle this, it's ok but the tree rewrites
151 * If your node type doesn't handle this, it's ok but the tree rewrites
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRTokenRewriteStream.h 43 /** 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;
ANTLRTreeAdaptor.h 144 * If your node type doesn't handle this, it's ok but the tree rewrites
151 * If your node type doesn't handle this, it's ok but the tree rewrites
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRTokenRewriteStream.h 43 /** 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/libsepol/man/man3/
sepol_genbools.3 13 rewrites a binary policy stored in the memory region described by
  /external/antlr/antlr-3.4/runtime/C/doxygen/
changes31.dox 20 /// \section trees Tree Parser Rewrites
22 /// The 3.1 runtime now supports tree rewrites from tree parsers. See the main ANTLR
  /external/v8/test/mjsunit/regress/
regress-1104.js 28 // A redeclaration of a variable that aliases a parameter and so rewrites to
  /external/antlr/antlr-3.4/runtime/Ruby/
rakefile 39 "test/functional/ast-output/rewrites.rb",
  /external/clang/include/clang/Rewrite/
ASTConsumers.h 40 /// CreateHTMLPrinter - Create an AST consumer which rewrites source code to
HTMLRewrite.h 58 /// EscapeText that rewrites a file, this version by default replaces tabs
  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
ANTLRTreePrinter.g 339 : ^(REWRITES single_rewrite+)
340 | REWRITES
451 | LABEL {out(" $"+$LABEL.text);} // used in -> rewrites
  /external/clang/lib/ARCMigrate/
TransUnusedInitDelegate.cpp 14 // Rewrites an unused result of calling a delegate initialization, to assigning
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/
InlineRewriter.java 29 * Rewrites the AST to replace all 'inline' commands with their associated inner

Completed in 500 milliseconds

1 2 3 4 5 6