/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/ |
ST.stg | 109 rewriteTemplateAltFirst(alt) ::= << 110 <if(alt.pred)> 111 if <alt.pred>: 112 # <alt.description> 113 retval.st = <alt.alt> 116 # <alt.description> 117 retval.st = <alt.alt> 122 rewriteTemplateAlt(alt) ::= < [all...] |
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/ |
NFAConfiguration.java | 32 /** An NFA state, predicted alt, and syntactic/semantic context. 42 /** What alt is predicted by this configuration */ 43 public int alt; field in class:NFAConfiguration 63 * other configuration associated with alt 3). 90 int alt, 95 this.alt = alt; 103 * the state|alt|ctx could be the same and have two different 113 this.alt==other.alt & [all...] |
LL1DFA.java | 42 /** From list of lookahead sets (one per alt in decision), create 60 for (int alt=1; alt<altLook.length; alt++) { 63 setAcceptState(alt, acceptAltState); 65 acceptAltState.cachedUniquelyPredicatedAlt = alt; 66 Label e = getLabelForSet(altLook[alt].tokenTypeSet); 97 int alt = alts.get(0); local 98 setAcceptState(alt, s); 99 s.cachedUniquelyPredicatedAlt = alt; 106 int alt = (int)alts.get(i); local [all...] |
DFAState.java | 47 * NFA could be in. We need to track the alt predicted by each 70 * context trees for an alt. 108 /** If we detect recursion on more than one alt, decision is non-LL(*), 137 /** The set of NFA configurations (state,alt,context) for this DFA state */ 145 * hence looping forever. Sensitive to the NFA state, the alt, and 205 * an NFA state/alt/syntactic&semantic context (chain of invoking state(s) 209 * state|alt|synCtx and different semantic contexts because the 228 // track min alt rather than compute later 229 if ( c.alt < minAltInConfigurations ) { 230 minAltInConfigurations = c.alt; 429 int alt = NFA.INVALID_ALT_NUMBER; local 455 int alt = NFA.INVALID_ALT_NUMBER; local 555 int alt=0; local [all...] |
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/ |
math-partial-sums.js | 8 var alt = -1.0; 16 alt = -alt; 25 a8 += alt/k; 26 a9 += alt/(2*k -1);
|
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/ |
math-partial-sums.js | 8 var alt = -1.0; 16 alt = -alt; 25 a8 += alt/k; 26 a9 += alt/(2*k -1);
|
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/ |
math-partial-sums.js | 8 var alt = -1.0; 16 alt = -alt; 25 a8 += alt/k; 26 a9 += alt/(2*k -1);
|
/external/chromium_org/third_party/WebKit/Source/core/loader/ |
NavigationPolicy.h | 46 bool navigationPolicyFromMouseEvent(unsigned short button, bool ctrl, bool shift, bool alt, bool meta, NavigationPolicy*);
|
NavigationPolicy.cpp | 38 bool navigationPolicyFromMouseEvent(unsigned short button, bool ctrl, bool shift, bool alt, bool meta, NavigationPolicy* policy) 45 if (!newTabModifier && !shift && !alt)
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
RecursionOverflowMessage.java | 43 public int alt; field in class:RecursionOverflowMessage 49 int alt, 56 this.alt = alt; 72 st.add("alt", alt);
|
LeftRecursiveRuleAnalyzer.java | 61 public void setTokenPrec(GrammarAST t, int alt) { 63 tokenToPrec.put(ttype, alt); 77 if ( altAssociativity.get(alt)!=null && altAssociativity.get(alt)!=assoc ) { 78 ErrorManager.error(ErrorManager.MSG_ALL_OPS_NEED_SAME_ASSOC, alt); 80 altAssociativity.put(alt, assoc); 82 //System.out.println("op " + alt + ": " + t.getText()+", assoc="+assoc); 86 public void binaryAlt(GrammarAST altTree, GrammarAST rewriteTree, int alt) { 94 int nextPrec = nextPrecedence(alt); 102 altText += "{}"; // add empty alt to prevent pred hoistin [all...] |
/external/chromium_org/ui/base/test/ |
ui_controls_aura.cc | 24 bool alt, 28 window, key, control, shift, alt, command); 36 bool alt, 41 window, key, control, shift, alt, command, task);
|
ui_controls_win.cc | 24 bool alt, 28 return internal::SendKeyPressImpl(window, key, control, shift, alt, 36 bool alt, 41 return internal::SendKeyPressImpl(window, key, control, shift, alt, task);
|
ui_controls.h | 51 bool alt, 57 bool alt,
|
ui_controls_aura.h | 25 bool alt, 31 bool alt,
|
ui_controls_internal_win.h | 21 bool alt,
|
/external/chromium_org/chrome/test/base/ |
interactive_test_utils.cc | 37 bool alt, 42 return SendKeyPressToWindowSync(window, key, control, shift, alt, command); 49 bool alt, 55 window, key, control, shift, alt, command, runner->QuitClosure()); 59 window, key, control, shift, alt, command, runner->QuitClosure()); 78 bool alt, 84 if (!SendKeyPressSync(browser, key, control, shift, alt, command))
|
interactive_test_utils.h | 49 bool alt, 59 bool alt, 70 bool alt, 91 bool alt, 103 bool alt, 110 if (!SendKeyPressSync(browser, key, control, shift, alt, command))
|
/external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/ |
gl_x86_asm.py | 215 alt = "%s@%u" % (name, stack) 217 print '\tGL_STUB(%s, %d, %s)' % (name, f.offset, alt) 220 print '\tHIDDEN(GL_PREFIX(%s, %s))' % (name, alt) 226 alt = "%s@%u" % (name, stack) 232 text = '\tGL_STUB_ALIAS(%s, %d, %s, %s, %s)' % (n, f.offset, alt2, name, alt)
|
/external/mesa3d/src/mapi/glapi/gen/ |
gl_x86_asm.py | 215 alt = "%s@%u" % (name, stack) 217 print '\tGL_STUB(%s, %d, %s)' % (name, f.offset, alt) 220 print '\tHIDDEN(GL_PREFIX(%s, %s))' % (name, alt) 226 alt = "%s@%u" % (name, stack) 232 text = '\tGL_STUB_ALIAS(%s, %d, %s, %s, %s)' % (n, f.offset, alt2, name, alt)
|
/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/ |
AssignTokenTypesWalker.g | 133 * stringAlias = ^(BLOCK[] ^(ALT[] STRING_LITERAL[] EOA[]) EOB[]) 137 GrammarAST alt = (GrammarAST)adaptor.create( ALT, "ALT" ); 138 adaptor.addChild( alt, adaptor.create( STRING_LITERAL, "STRING_LITERAL" ) ); 139 adaptor.addChild( alt, adaptor.create( EOA, "EOA" ) ); 140 adaptor.addChild( stringAlias, alt ); 145 * charAlias = ^(BLOCK[] ^(ALT[] CHAR_LITERAL[] EOA[]) EOB[]) 149 GrammarAST alt = (GrammarAST)adaptor.create( ALT, "ALT" ) [all...] |
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/ |
ST.stg | 106 rewriteTemplateAlt(alt) ::= << 107 // <alt.description> 108 <if(alt.pred)> 109 if (<alt.pred>) { 110 retval.st = <alt.alt>; 114 retval.st = <alt.alt>;
|
/external/chromium/chrome/browser/automation/ |
ui_controls.h | 52 bool alt, 58 bool alt,
|
/external/chromium_org/ui/aura/test/ |
ui_controls_factory_aurawin.cc | 36 bool alt, 41 window, key, control, shift, alt, base::Closure()); 47 bool alt, 52 return SendKeyPressImpl(window, key, control, shift, alt, task);
|
/external/chromium_org/ui/base/gtk/ |
event_synthesis_gtk.h | 32 bool control, bool shift, bool alt,
|