Searched defs:alt (Results 1 - 25 of 91) sorted by relevance

1234

/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DRecursionOverflowMessage.java43 public int alt; field in class:RecursionOverflowMessage
49 int alt,
56 this.alt = alt;
72 st.add("alt", alt);
47 RecursionOverflowMessage(DecisionProbe probe, DFAState sampleBadState, int alt, Collection targetRules, Collection callSiteStates) argument
H A DGrammarSerializerFoo.java42 * alt ::= A<elems>;
122 public void alt(GrammarAST alt) { argument
H A DLeftRecursiveRuleAnalyzer.java61 public void setTokenPrec(GrammarAST t, int alt) { argument
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) { argument
94 int nextPrec = nextPrecedence(alt);
102 altText += "{}"; // add empty alt t
113 ternaryAlt(GrammarAST altTree, GrammarAST rewriteTree, int alt) argument
138 prefixAlt(GrammarAST altTree, GrammarAST rewriteTree, int alt) argument
164 suffixAlt(GrammarAST altTree, GrammarAST rewriteTree, int alt) argument
180 otherAlt(GrammarAST altTree, GrammarAST rewriteTree, int alt) argument
310 precedence(int alt) argument
314 nextPrecedence(int alt) argument
[all...]
H A DNFAFactory.java84 public void optimizeAlternative(StateCluster alt) { argument
85 NFAState s = alt.left;
86 while ( s!=alt.right ) {
101 // point at the last node of the alt. Don't collapse action edges
134 * what an alt block looks like, must have extra state on left.
231 * TODO add to codegen: collapse alt blks that are sets into single matchSet
357 // single alt, no decision, just return only alt state cluster
375 * and every alt right side points at a block end NFAState. There is a
376 * new NFAState in the NFAState in the StateCluster for each alt plu
[all...]
/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DNavigationPolicy.cpp38 bool navigationPolicyFromMouseEvent(unsigned short button, bool ctrl, bool shift, bool alt, bool meta, NavigationPolicy* policy) argument
45 if (!newTabModifier && !shift && !alt)
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DLL1DFA.java42 /** 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);
98 setAcceptState(alt, s);
99 s.cachedUniquelyPredicatedAlt = alt;
152 getSynPredForAlt(NFAState decisionStartState, int alt) argument
[all...]
H A DNFAConfiguration.java32 /** 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
89 NFAConfiguration(int state, int alt, NFAContext context, SemanticContext semanticContext) argument
[all...]
H A DDFAState.java47 * 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;
259 addNFAConfiguration(NFAState state, int alt, NFAContext context, SemanticContext semanticContext) argument
[all...]
H A DNFAToDFAConverter.java122 * Walk each alt in decision and compute closure from the start of that
124 * that same decision. The idea is to associate a specific alt number
125 * with the starting closure so we can trace the alt number for all states
126 * derived from this. At a stop state in the DFA, we can return this alt
127 * number, indicating which alt is predicted.
131 * this alternative one, let's make this alt n+1 where n is the number of
140 NFAState alt = dfa.decisionNFAStartState;
145 while ( alt!=null ) {
147 // any input symbols for each alt. Keep adding to same
149 // but track the alt numbe
591 closure(NFAState p, int alt, NFAContext context, SemanticContext semanticContext, DFAState d, boolean collectPredicates) argument
985 convertToAcceptState(DFAState d, int alt) argument
[all...]
/external/chromium_org/chrome/test/base/
H A Dinteractive_test_utils.h54 bool alt,
64 bool alt,
75 bool alt,
96 bool alt,
108 bool alt,
115 if (!SendKeyPressSync(browser, key, control, shift, alt, command))
103 SendKeyPressAndWaitWithDetails( const Browser* browser, ui::KeyboardCode key, bool control, bool shift, bool alt, bool command, int type, const content::NotificationSource& source, const content::Details<U>& details) argument
H A Dinteractive_test_utils.cc37 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))
33 SendKeyPressSync(const Browser* browser, ui::KeyboardCode key, bool control, bool shift, bool alt, bool command) argument
45 SendKeyPressToWindowSync(const gfx::NativeWindow window, ui::KeyboardCode key, bool control, bool shift, bool alt, bool command) argument
74 SendKeyPressAndWait(const Browser* browser, ui::KeyboardCode key, bool control, bool shift, bool alt, bool command, int type, const content::NotificationSource& source) argument
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAXImageMapLink.cpp107 const AtomicString& alt = getAttribute(altAttr); local
108 if (!alt.isEmpty())
109 return alt;
/external/libedit/src/
H A Dmap.h51 el_action_t *alt; /* The current alternate key map */ member in struct:el_map_t
/external/chromium_org/chrome/browser/extensions/
H A Dextension_commands_global_registry_apitest.cc36 // |alt| indicates whether the key is struck with corresponding modifier.
40 bool alt) {
59 if (alt)
37 SendNativeKeyEventToXDisplay(ui::KeyboardCode key, bool control, bool shift, bool alt) argument
/external/chromium_org/ui/aura/test/
H A Dui_controls_factory_aurawin.cc37 bool alt,
43 window, key, control, shift, alt, base::Closure());
49 bool alt,
55 return SendKeyPressImpl(window, key, control, shift, alt, task);
33 SendKeyPress(gfx::NativeWindow native_window, ui::KeyboardCode key, bool control, bool shift, bool alt, bool command) argument
45 SendKeyPressNotifyWhenDone(gfx::NativeWindow native_window, ui::KeyboardCode key, bool control, bool shift, bool alt, bool command, const base::Closure& task) argument
/external/chromium_org/ui/base/test/
H A Dui_controls_win.cc23 bool alt,
27 return internal::SendKeyPressImpl(window, key, control, shift, alt,
35 bool alt,
40 return internal::SendKeyPressImpl(window, key, control, shift, alt, task);
19 SendKeyPress(gfx::NativeWindow window, ui::KeyboardCode key, bool control, bool shift, bool alt, bool command) argument
31 SendKeyPressNotifyWhenDone(gfx::NativeWindow window, ui::KeyboardCode key, bool control, bool shift, bool alt, bool command, const base::Closure& task) argument
H A Dui_controls_aura.cc24 bool alt,
28 window, key, control, shift, alt, command);
36 bool alt,
41 window, key, control, shift, alt, command, task);
20 SendKeyPress(gfx::NativeWindow window, ui::KeyboardCode key, bool control, bool shift, bool alt, bool command) argument
32 SendKeyPressNotifyWhenDone(gfx::NativeWindow window, ui::KeyboardCode key, bool control, bool shift, bool alt, bool command, const base::Closure& task) argument
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DBlankDebugEventListener.cs59 public virtual void EnterAlt(int alt) { argument
H A DDebugEventHub.cs86 public virtual void EnterAlt(int alt) { argument
89 listener.EnterAlt(alt);
H A DDebugEventRepeater.cs62 public virtual void EnterAlt(int alt) { argument
63 _listener.EnterAlt(alt);
H A DIDebugEventListener.cs51 * which alt is predicted. This is fired AFTER init actions have been
61 * know which alt you are entering. This is 1..n for n alts.
64 void EnterAlt(int alt); argument
172 * If no viable alt occurs it is within an enter/exit decision, which
192 * The sequence for this rule (with no viable alt in the subrule) for
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
H A DBlankDebugEventListener.java40 public void enterAlt(int alt) {} argument
H A DDebugEventHub.java84 public void enterAlt(int alt) { argument
87 listener.enterAlt(alt);
H A DDebugEventListener.java51 * which alt is predicted. This is fired AFTER init actions have been
59 * know which alt you are entering. This is 1..n for n alts.
61 public void enterAlt(int alt); argument
146 * If no viable alt occurs it is within an enter/exit decision, which
166 * The sequence for this rule (with no viable alt in the subrule) for
H A DDebugEventRepeater.java51 public void enterAlt(int alt) { listener.enterAlt(alt); } argument

Completed in 603 milliseconds

1234