HomeSort by relevance Sort by last modified time
    Searched refs:ALT (Results 26 - 50 of 83) sorted by null

12 3 4

  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
vsnprintf_ss.c 79 #define ALT 0x001 /* alternate form */
189 flags |= ALT;
353 if (flags & ALT && _uquad != 0)
385 if (flags & ALT && *cp != '0')
vfwprintf.c 594 #define ALT 0x001 /* alternate form */
900 flags |= ALT;
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
DefineGrammarItemsWalker.g 63 if (block.getChild(i).getType() == ALT)
353 // GrammarAST aRewriteNode = $start.FindFirstType(REWRITE); // alt itself has rewrite?
355 // // we have a rewrite if alt uses it inside subrule or this alt has one
369 : ^( ALT (element)+ EOA )
490 : ^( BLOCK ^( ALT WILDCARD EOA ) EOB )
603 : {grammar.buildAST()}? => ^( a=ALT ( ( rewrite_element )+ | EPSILON ) EOA )
674 : ^( ALT EPSILON EOA )
ANTLR.g 85 ALT;
88 EOA; // end of alt
292 * alt = ^(ALT["ALT"] {b} EOA["EOA"])
293 * prefixWithSynpred( alt )
294 * return ^(BLOCK["BLOCK"] {alt} EOB["<end-of-block>"])
296 GrammarAST alt = (GrammarAST)adaptor.create(ALT, "ALT");
    [all...]
ANTLRTreePrinter.g 68 if ( t.getChild(i).getType() == ALT )
322 : ^( ALT element* EOA )
TreeToNFAConverter.g 236 // a single ALT block
309 : ^( ALT (e=element {$g = factory.build_AB($g,$e.g);} )+ EOA )
311 if ($g==null) { // if alt was a list of actions or whatever
406 // a single ALT block
411 // there is always at least one alt even if block has just 1 alt
663 (^(ALT ( ^(BACKTRACK_SEMPRED .*) )? setElement[elements] EOA))+
682 ( ^(ALT (BACKTRACK_SEMPRED)? setElement[elements] EOA) )+
803 ( ^(ALT (BACKTRACK_SEMPRED)? testSetElement {{$alts += $testSetElement.alts;}} EOA)
819 ( ^(ALT (BACKTRACK_SEMPRED)? testSetElement {{$alts += $testSetElement.alts;}} EOA
    [all...]
CodeGenTreeWalker.g 173 if ( ( elementAST.getParent().getType() == ANTLRLexer.ALT && elementAST.getParent().getParent().getParent().getType() == RULE && elementAST.getParent().getParent().getChildCount() == 2 )
175 // single alt at the start of the rule needs to be checked
568 ( alt=alternative rew=rewrite
574 // add the rewrite code as just another element in the alt :)
584 $alt.code.add("rew", $rew.code);
586 // add this alt to the list of alts for this block
587 $code.add("alts",$alt.code);
588 $alt.code.add("altNum", altNum);
589 $alt.code.add("outerAlt", blockNestingLevel==RULE_BLOCK_NESTING_LEVEL);
633 ST altcode=templates.getInstanceOf("alt");
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
fset2.c 85 if ( tree->token == ALT ) fprintf(stderr, " ALT");
131 * ALT
167 if ( t->token == ALT ) fatal_internal("prune: ALT node in FIRST tree");
392 if ( t->token == ALT && t->right == NULL ) return tappend(t->down, u);
462 /* remove as many ALT nodes as possible while still maintaining semantics */
476 if ( t->token == ALT )
485 /* (? (ALT (? ...)) s) ==> (? (? ...) s) where s = sibling, ? = match any */
486 if ( t->token == ALT && t->down->right == NULL)
541 Junction *alt; local
    [all...]
generic.h 44 #define ALT TokenNum+1
mrhoist.c 283 if (tree->token == ALT ) {
284 fprintf(output," %-16s","Alt");
577 require (p->token != ALT,"MR_computeTreeIntersection: p->ALT unexpected\n");
581 require(q->token != ALT,"MR_computeTreeIntersection: q->ALT unexpected\n");
584 result=tnode(ALT);
640 require (p->token != ALT,"MR_computeTreeAND: p->ALT unexpected\n");
644 require(q->token != ALT,"MR_computeTreeAND: q->ALT unexpected\n");
    [all...]
gen.c 221 Junction *alt; local
224 for (alt=q; alt != NULL; alt= (Junction *) alt->p2 )
226 for (i=1; i<=CLL_k; i++) set_free(alt->fset[i]);
1202 if ( t->token == ALT )
1553 Junction *alt; local
1680 Junction *alt; local
1697 Junction *alt; local
    [all...]
  /external/clang/test/Modules/
macros.c 171 #ifdef ALT
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
pgen.c 197 REQ(n, ALT);
213 REQ(n, ALT);
226 REQ(n, ALT);
  /external/python/cpython2/Parser/
pgen.c 198 REQ(n, ALT);
214 REQ(n, ALT);
227 REQ(n, ALT);
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarAST.java 114 * alt num in rule. For actions, define.g sets these (used to
272 textOverride = text; // don't alt tokens as others might see
505 t.getType()==ANTLRParser.ALT )
507 // can't have an empty alt, insert epsilon
557 if (getChild(j).getType() == ANTLRParser.ALT) {
  /external/python/cpython3/Parser/
pgen.c 208 REQ(n, ALT);
224 REQ(n, ALT);
237 REQ(n, ALT);
  /bionic/libc/stdio/
printf_common.h 184 #define ALT 0x0001 /* alternate form */
  /toolchain/binutils/binutils-2.27/binutils/
rclex.c 81 K(ACCELERATORS), K(ALT), K(ANICURSOR), K(ANIICON), K(ASCII),
rcparse.y 115 %token ACCELERATORS VIRTKEY ASCII NOINVERT SHIFT CONTROL ALT
319 | ALT
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SelectionManager.java 110 * The <em>current</em> alternate selection, if any, which changes when the Alt key is
331 * Alt key is used to cycle selection through objects at the same level than
332 * the one pointed at (i.e. click on an object then alt-click to cycle).
343 boolean isCycleClick = (e.stateMask & SWT.ALT) != 0;
403 // Case where alt is pressed: select or cycle the object pointed at.
405 // Note: if shift and alt are pressed, shift is ignored. The alternate selection
    [all...]
  /external/libvncserver/webclients/novnc/include/
keyboard.js 69 var alt = 0xffe9;
76 // on Mac, Option (AKA Alt) is used as a char modifier
77 charModifier = [alt];
80 // on Windows, Ctrl+Alt is used as a char modifier
81 charModifier = [alt, ctrl];
94 state[alt] = false;
109 if (evt.altKey !== undefined && evt.altKey !== state[alt] && keysym !== alt) {
110 state[alt] = evt.altKey;
111 result.push(syncKey(alt));
    [all...]
  /prebuilts/tools/common/m2/repository/org/antlr/antlr/3.5.2/
antlr-3.5.2.jar 
  /prebuilts/tools/common/offline-m2/org/antlr/antlr/3.5.2/
antlr-3.5.2.jar 
  /prebuilts/tools/common/m2/repository/com/tunnelvisionlabs/antlr4/4.5/
antlr4-4.5.jar 
  /external/syslinux/dosutil/
eltorito.asm 790 and al, 8 ; alt key ?
845 and al, 8 ; alt key ?
1008 and al, 8 ; alt key ?
1017 and al, 8 ; Alt key?
1066 ; bit 3 = ALT key
1094 WaitMsg db ' Alt pressed, waiting...', CR, 0

Completed in 1706 milliseconds

12 3 4