Searched refs:alt (Results 51 - 75 of 165) sorted by relevance

1234567

/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 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/CSharp3/Sources/Antlr3.Runtime/Debug/
H A DIDebugEventListener.cs53 * which alt is predicted. This is fired AFTER init actions have been
63 * know which alt you are entering. This is 1..n for n alts.
66 void EnterAlt( int alt );
174 * If no viable alt occurs it is within an enter/exit decision, which
194 * The sequence for this rule (with no viable alt in the subrule) for
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DBlankDebugEventListener.cs65 public virtual void EnterAlt( int alt )
/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 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
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
H A DST.stg119 retval.Template = <it.alt>;
123 retval.Template = <it.alt>;
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
H A DST.stg97 retval.Template = <it.alt>;
101 retval.Template = <it.alt>;
/external/chromium/chrome/browser/chromeos/input_method/
H A Dxkeyboard_unittest.cc24 // - kLeftAlt key is mapped to |alt|.
25 ModifierMap GetMap(ModifierKey search, ModifierKey control, ModifierKey alt) { argument
30 modifier_key.push_back(ModifierKeyPair(kLeftAltKey, alt));
37 // - kLeftAlt key is mapped to |alt|.
39 ModifierKey search, ModifierKey control, ModifierKey alt) {
45 (std::count(begin, end, ModifierKeyPair(kLeftAltKey, alt)) == 1)) {
38 CheckMap(const ModifierMap& modifier_map, ModifierKey search, ModifierKey control, ModifierKey alt) argument
/external/chromium/chrome/common/extensions/docs/examples/extensions/calendar/javascript/
H A Doptions.js24 $('imageTooltip').alt = chrome.i18n.getMessage('imageTooltip');
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/
H A DAST.stg87 * one alt will be taken in a rule, but we are declaring all the streams here. So we define
120 @alt.declarations() ::= <<
127 @alt.initializations() ::= <<
349 alt,
359 <alt>
366 alt,
376 <alt>
388 alt,
401 <alt>
412 <a.alt>
[all...]
/external/webkit/Source/WebCore/html/
H A DHTMLImageElement.cpp171 // lets figure out the alt text.. magic stuff
174 String alt = getAttribute(altAttr); local
176 if (alt.isNull())
177 alt = getAttribute(titleAttr);
178 return alt;
203 // image height and width for the alt text instead.
330 const AtomicString& HTMLImageElement::alt() const function in class:WebCore::HTMLImageElement
H A DHTMLImageElement.h61 const AtomicString& alt() const;
/external/valgrind/main/coregrind/
H A Dm_debuglog.c514 HChar* alt; local
518 case '&': alt = "&amp;"; break;
519 case '<': alt = "&lt;"; break;
520 case '>': alt = "&gt;"; break;
521 default: alt = NULL;
524 if (alt) {
525 while (*alt) {
526 send(*alt, send_arg2);
528 alt++;
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DDecisionProbe.java98 /** Track the predicates for each alt per DFA state;
99 * more than one DFA state might have syntactically ambig alt prediction.
100 * Maps DFA state to another map, mapping alt number to a
108 * whole alt uncovered. This maps DFA state to the set of alts
121 /** If decision with > 1 alt has recursion in > 1 alt, it's (likely) nonregular
225 /** Found recursion in > 1 alt */
282 * that for this DFA state, that alt is disabled. There may be other
283 * accept states for that alt that make an alt reachabl
359 getNFAPathStatesForAlt(int firstAlt, int alt, List labels) argument
390 getSemanticContextForAlt(DFAState d, int alt) argument
900 getTokenNameForTokensRuleAlt(int alt) argument
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DGrammarSerializerFoo.java42 * alt ::= A<elems>;
122 public void alt(GrammarAST alt) { argument
/external/webkit/Source/WebCore/platform/
H A DPlatformMouseEvent.h97 int clickCount, bool shift, bool ctrl, bool alt, bool meta, double timestamp)
105 , m_altKey(alt)
96 PlatformMouseEvent(const IntPoint& position, const IntPoint& globalPosition, MouseButton button, MouseEventType eventType, int clickCount, bool shift, bool ctrl, bool alt, bool meta, double timestamp) argument
/external/webkit/Source/WebCore/platform/android/
H A DKeyEventAndroid.cpp214 int repeatCount, bool down, bool cap, bool alt, bool sym)
225 , m_altKey(alt ? AltKey : 0)
213 PlatformKeyboardEvent(int keyCode, UChar32 unichar, int repeatCount, bool down, bool cap, bool alt, bool sym) argument
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRDebugEventListener.h36 * which alt is predicted. This is fired AFTER init actions have been
42 * know which alt you are entering. This is 1..n for n alts.
44 - (void) enterAlt:(NSInteger)alt;
127 * If no viable alt occurs it is within an enter/exit decision, which
147 * The sequence for this rule (with no viable alt in the subrule) for
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRDebugEventListener.h36 * which alt is predicted. This is fired AFTER init actions have been
42 * know which alt you are entering. This is 1..n for n alts.
44 - (void) enterAlt:(NSInteger)alt;
127 * If no viable alt occurs it is within an enter/exit decision, which
147 * The sequence for this rule (with no viable alt in the subrule) for
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRDebugEventListener.h36 * which alt is predicted. This is fired AFTER init actions have been
42 * know which alt you are entering. This is 1..n for n alts.
44 - (void) enterAlt:(NSInteger)alt;
127 * If no viable alt occurs it is within an enter/exit decision, which
147 * The sequence for this rule (with no viable alt in the subrule) for
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRDebugEventListener.h36 * which alt is predicted. This is fired AFTER init actions have been
42 * know which alt you are entering. This is 1..n for n alts.
44 - (void) enterAlt:(NSInteger)alt;
127 * If no viable alt occurs it is within an enter/exit decision, which
147 * The sequence for this rule (with no viable alt in the subrule) for
/external/compiler-rt/BlocksRuntime/tests/
H A Dmakefile46 ALTUSRLOCALLIBSYSTEM ?= $(RootsDirectory)/alt-usr-local-lib-system/
/external/libppp/src/
H A Ddatalink.h95 char *alt; /* Alternate (after fail) phone from the list */ member in struct:datalink::__anon8042
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CPP/
H A DCPP.stg564 decision_type alt<decisionNumber>=<maxAlt>;
570 switch (alt<decisionNumber>) {
579 decision_type alt<decisionNumber>=<maxAlt>;
584 switch (alt<decisionNumber>) {
613 decision_type alt<decisionNumber>=<maxAlt>;
617 switch (alt<decisionNumber>) {
640 decision_type alt<decisionNumber>=<maxAlt>;
644 switch (alt<decisionNumber>) {
675 alt(elements,altNum,description,autoAST,outerAlt) ::= <<
676 // alt <fileNam
[all...]

Completed in 397 milliseconds

1234567