/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/chromium_org/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.""" 36 """Rewrites all the paths in recognized options."""
|
/external/chromium_org/ash/wm/ |
event_rewriter_event_filter.h | 20 // An event filter that rewrites or drops an event.
|
/external/chromium_org/content/browser/ |
browser_url_handler_impl_unittest.cc | 15 // Test URL rewriter that rewrites all "foo://" URLs to "bar://bar". 24 // Test URL rewriter that rewrites all "bar://" URLs to "foo://foo".
|
/external/chromium_org/chrome/browser/ui/ash/ |
event_rewriter.h | 158 // Rewrites the |event| by applying all RewriteXXX functions as needed. 161 // Rewrites a modifier key press/release following the current user 165 // Rewrites Fn key press/release to Control. In some cases, Fn key is not 170 // Rewrites a NumPad key press/release without Num Lock to a corresponding key 174 // Rewrites Backspace and Arrow keys following the Chrome OS keyboard spec. 195 // Rewrites the located |event|.
|
/ndk/docs/tools/ |
README | 25 To minimize changes, also detects and rewrites: 34 To minimize changes, also detects and rewrites:
|
/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;
|
/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;
|
/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/chromium_org/net/quic/ |
quic_packet_writer.h | 33 // Returns true if the writer buffers and subsequently rewrites data
|
/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/chromium_org/chrome/browser/ui/webui/ntp/ |
recently_closed_tabs_handler.h | 24 // Callback for the "reopenTab" message. Rewrites the history of the
|
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-1104.js | 28 // A redeclaration of a variable that aliases a parameter and so rewrites to
|
/external/skia/tools/ |
reformat-json.py | 11 Rewrites a JSON file to use Python's standard JSON pretty-print format,
|