/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/ |
ANTLRv3Tree.g | 115 : ^( BLOCK optionsSpec? (alternative rewrite)+ EOB ) 119 : ^( BLOCK (alternative rewrite)+ EOB ) 199 : ^(BLOCK rewrite_tree_alternative EOB)
|
ANTLRv3.g | 51 EOB; 196 -> ^( BLOCK[$lp,"BLOCK"] optionsSpec? altpair+ EOB[$rp,"EOB"] ) 208 : altpair ( '|' altpair )* -> ^( {blkRoot} altpair+ EOB["EOB"] ) 235 ( ebnfSuffix -> ^( ebnfSuffix ^(BLOCK["BLOCK"] ^(ALT["ALT"] ^($labelOp id atom) EOA["EOA"]) EOB["EOB"])) 239 ( ebnfSuffix -> ^( ebnfSuffix ^(BLOCK["BLOCK"] ^(ALT["ALT"] ^($labelOp id block) EOA["EOA"]) EOB["EOB"])) 243 ( ebnfSuffix -> ^( ebnfSuffix ^(BLOCK["BLOCK"] ^(ALT["ALT"] atom EOA["EOA"]) EOB["EOB"]) [all...] |
AssignTokenTypesWalker.g | 133 * stringAlias = ^(BLOCK[] ^(ALT[] STRING_LITERAL[] EOA[]) EOB[]) 142 adaptor.addChild( stringAlias, adaptor.create( EOB, "EOB" ) ); 145 * charAlias = ^(BLOCK[] ^(ALT[] CHAR_LITERAL[] EOA[]) EOB[]) 154 adaptor.addChild( charAlias, adaptor.create( EOB, "EOB" ) ); 157 * stringAlias2 = ^(BLOCK[] ^(ALT[] STRING_LITERAL[] ACTION[] EOA[]) EOB[]) 167 adaptor.addChild( stringAlias2, adaptor.create( EOB, "EOB" ) ); 170 * charAlias = ^(BLOCK[] ^(ALT[] CHAR_LITERAL[] ACTION[] EOA[]) EOB[]) [all...] |
LeftRecursiveRuleWalker.g | 150 EOB 158 EOB 189 : ^( ALT (^(BACKTRACK_SEMPRED .*))? recurseNoLabel ^( BLOCK ( ^( ALT op=token EOA {setTokenPrec($op.t, outerAlt);} ) )+ EOB ) recurse EOA )
|
ANTLR.g | 87 EOB; 294 * return ^(BLOCK["BLOCK"] {alt} EOB["<end-of-block>"]) 304 adaptor.addChild(alt, adaptor.create(EOB, "<end-of-block>")); 314 * ^(BLOCK["BLOCK"] {GrammarAST.dupTreeNoActions(alt)} EOB["<end-of-block>"]) 320 adaptor.addChild( block, adaptor.create( EOB, "<end-of-block>" ) ); 559 GrammarAST eob=null; 649 -> ^({blkRoot} $ruleAltList EOB["<end-of-block>"]) 653 /** Build #(BLOCK ( #(ALT ...) EOB )+ ) */ 688 -> ^($block optionsSpec? ruleActions? ACTION? alternative+ EOB[$rp,"<end-of-block>"]) 881 -> ^($ebnfSuffix ^({blkRoot} {alt} EOB[$elemAST.getToken(), "<end-of-block>"]) [all...] |
DefineGrammarItemsWalker.g | 336 EOB 490 : ^( BLOCK ^( ALT WILDCARD EOA ) EOB ) 588 : ^( BLOCK rewrite_alternative EOB )
|
TreeToNFAConverter.g | 302 EOB 383 GrammarAST eob = blk.getLastChild(); 430 bg.right.setDecisionASTNode(eob); 452 bg.right.setDecisionASTNode(eob); 664 EOB 683 EOB 805 EOB 821 EOB
|
ANTLRTreePrinter.g | 317 EOB {if ( forceParens||numAlts>1 ) out(")");}
|
CodeGenTreeWalker.g | 593 EOB 859 GrammarAST eob = (GrammarAST)b.getLastChild(); // loops will use EOB DFA 867 | { dfa = eob.getLookaheadDFA(); } 870 | { dfa = eob.getLookaheadDFA(); } [all...] |
/external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/swingui/parsers/ |
ANTLRv3.g | 52 EOB; 201 -> ^( BLOCK[$lp,"BLOCK"] optionsSpec? (alternative rewrite?)+ EOB[$rp,"EOB"] ) 212 -> ^( {blkRoot} (alternative rewrite?)+ EOB["EOB"] ) 243 ( ebnfSuffix -> ^( ebnfSuffix ^(BLOCK["BLOCK"] ^(ALT["ALT"] ^($labelOp id atom) EOA["EOA"]) EOB["EOB"])) 247 ( ebnfSuffix -> ^( ebnfSuffix ^(BLOCK["BLOCK"] ^(ALT["ALT"] ^($labelOp id block) EOA["EOA"]) EOB["EOB"])) 251 ( ebnfSuffix -> ^( ebnfSuffix ^(BLOCK["BLOCK"] ^(ALT["ALT"] atom EOA["EOA"]) EOB["EOB"]) [all...] |
/external/bzip2/ |
compress.c | 126 Int32 EOB; 155 EOB = s->nInUse+1; 157 for (i = 0; i <= EOB; i++) s->mtfFreq[i] = 0; 228 mtfv[wr] = EOB; wr++; s->mtfFreq[EOB]++;
|
decompress.c | 120 Int32 EOB; 174 EOB = s->save_EOB; 351 EOB = s->nInUse+1; 377 if (nextSym == EOB) break; 621 s->save_EOB = EOB;
|
/external/chromium_org/third_party/libjpeg_turbo/ |
jcphuff.c | 540 entropy->EOBRUN++; /* count an EOB */ 621 int EOB; 641 * coefficients' absolute values and the EOB position. 643 EOB = 0; 655 EOB = k; /* EOB = index of last newly-nonzero coef */ 670 /* Emit any required ZRLs, but not if they can be folded into EOB */ 671 while (r > 15 && k <= EOB) { 686 * if k > EOB, which implies that this coefficient is not 1. 712 entropy->EOBRUN++; /* count an EOB */ [all...] |
/external/jpeg/ |
jcphuff.c | 542 entropy->EOBRUN++; /* count an EOB */ 623 int EOB; 643 * coefficients' absolute values and the EOB position. 645 EOB = 0; 657 EOB = k; /* EOB = index of last newly-nonzero coef */ 672 /* Emit any required ZRLs, but not if they can be folded into EOB */ 673 while (r > 15 && k <= EOB) { 688 * if k > EOB, which implies that this coefficient is not 1. 714 entropy->EOBRUN++; /* count an EOB */ [all...] |
/external/libvpx/libvpx/vp8/encoder/x86/ |
quantize_sse4.asm | 213 ; select the last value (in zig_zag order) for EOB 230 mov BYTE PTR [rcx], al ; store eob
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
DOTGenerator.java | 189 if ( n!=null && n.getType()!=ANTLRParser.EOB ) { 373 stateLabel += ",eob="+((NFAState)s).endOfBlockStateNumber; 380 stateLabel = stateLabel+",eob="+n.endOfBlockStateNumber;
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/ |
DecisionProbe.java | 520 // as the EOB: 522 if ( lastAltAST.getType()!=ANTLRParser.EOB && [all...] |
/external/antlr/antlr-3.4/lib/ |
antlr-3.4-complete.jar | |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/ |
ant.jar | |