HomeSort by relevance Sort by last modified time
    Searched defs:alt (Results 1 - 25 of 55) sorted by null

1 2 3

  /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);
GrammarSerializerFoo.java 42 * alt ::= A<elems>;
122 public void alt(GrammarAST alt) { method in class:GrammarSerializerFoo
DOTGenerator.java 185 // special case: if decision point, then line up the alt start states
191 NFAState alt = (NFAState)s; local
192 while ( alt!=null ) {
193 rankST.add("states", getStateLabel(alt));
194 if ( alt.transition[1] !=null ) {
195 alt = (NFAState)alt.transition[1].target;
198 alt=null;
336 int alt = altI.intValue(); local
340 buf.append("alt");
    [all...]
Interpreter.java 235 // decision point, must predict and jump to alt
264 System.out.println("predicted alt "+predictedAlt+", parseAlt "+
268 NFAState alt; local
271 alt = s.nfa.grammar.nfa.getState( s.endOfBlockStateNumber );
274 alt = s.nfa.grammar.getNFAStateForAltOfDecision(s, parseAlt);
276 s = (NFAState)alt.transition[0].target;
431 // woohoo! We know which alt to predict
  /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...]
NFAToDFAConverter.java 122 * 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; local
145 while ( alt!=null ) {
147 // any input symbols for each alt. Keep adding to same
149 // but track the alt numbe
970 int alt = d.getUniquelyPredictedAlt(); local
1316 int alt = altI.intValue(); local
1711 int alt = i+1; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXImageMapLink.cpp 107 const AtomicString& alt = getAttribute(altAttr); local
108 if (!alt.isEmpty())
109 return alt;
  /external/libedit/src/
map.h 51 el_action_t *alt; /* The current alternate key map */ member in struct:el_map_t
map.c 906 el->el_map.alt = el_malloc(sizeof(*el->el_map.alt) * N_KEYS);
907 if (el->el_map.alt == NULL)
943 el_free(el->el_map.alt);
944 el->el_map.alt = NULL;
982 el_action_t *alt = el->el_map.alt; local
1022 el_action_t *alt = el->el_map.alt; local
1053 el_action_t *alt = el->el_map.alt; local
    [all...]
tty.c 906 el_action_t *map, *alt; local
911 alt = el->el_map.alt;
932 keymacro_clear(el, alt, old);
933 alt[UC(old[0])] = dalt[UC(old[0])];
934 keymacro_clear(el, alt, new);
935 alt[UC(new[0])] = tp->bind[el->el_map.type + 1];
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
SerializedGrammar.java 68 List alt = alts[i]; local
70 buf.append(alt.toString());
138 List alt = readAlt(in); local
139 alts[i] = alt;
146 List alt = new ArrayList(); local
148 if ( A!='A' ) throw new IOException("missing A on start of alt");
154 alt.add(new TokenRef(ttype));
159 alt.add(new RuleRef(ruleIndex));
173 alt.add(b);
178 //System.out.println("exit alt");
    [all...]
  /external/chromium_org/chrome/common/extensions/
command.cc 197 bool alt = (modifiers & ui::EF_ALT_DOWN) != 0; local
200 // We support Ctrl+foo, Alt+foo, Ctrl+Shift+foo, Alt+Shift+foo, but not
201 // Ctrl+Alt+foo and not Shift+foo either. For a more detailed reason why we
202 // don't support Ctrl+Alt+foo see this article:
206 if (key == ui::VKEY_UNKNOWN || (ctrl && alt) || (command && alt) ||
207 (shift && !ctrl && !alt && !command)) {
220 (shift || ctrl || alt || command)) {
306 // Ctrl and Alt are mutually exclusive
    [all...]
  /external/chromium_org/remoting/host/win/
rdp_client_window.cc 160 VLOG(3) << "Injecting Ctrl+Alt+End to emulate SAS.";
175 UINT alt = MapVirtualKey(VK_MENU, MAPVK_VK_TO_VSC); local
185 // Press 'Alt'.
190 MAKELPARAM(1, alt | KF_ALTDOWN));
198 // Release 'Alt'.
202 SendMessage(input_window, WM_KEYUP, VK_MENU, MAKELPARAM(1, alt | up));
309 // Enable the Ctrl+Alt+Del screen.
  /art/compiler/dex/quick/arm/
utility_arm.cc 99 uint32_t alt; local
106 alt = val >> count;
107 if (alt != 0) {
109 val = alt;
    [all...]
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestTreeNodeStream.java 339 Tree alt = nodes[5]; local
349 block.addChild(alt);
350 alt.addChild(s);
  /external/chromium_org/chrome/browser/
browser_keyevents_browsertest.cc 77 bool alt; member in struct:__anon7582::KeyEventTestData
274 browser(), test.key, test.ctrl, test.shift, test.alt, test.command));
282 " VKEY:0x%02x, ctrl:%d, shift:%d, alt:%d, command:%d\n"
285 data.key, data.ctrl, data.shift, data.alt, data.command,
527 // On Mac, access keys use ctrl+alt modifiers.
611 // Alt+A should focus the element with accesskey = "A".
621 // Alt+D should move the focus to the location entry.
628 // No element should be focused, as Alt+D was handled by the browser.
639 // If the keydown event is suppressed, then Alt+D should be handled as an
652 // On Ash, alt-1..9 are assigned as window selection global accelerators, s
    [all...]
  /external/chromium_org/content/browser/speech/
google_streaming_remote_engine.cc 60 const proto::SpeechRecognitionAlternative& alt = local
62 if (alt.has_confidence())
63 DVLOG(1) << " CONFIDENCE:\t" << alt.confidence();
64 if (alt.has_transcript())
65 DVLOG(1) << " TRANSCRIPT:\t" << alt.transcript();
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLImageElement.cpp 259 // lets figure out the alt text.. magic stuff
262 const AtomicString& alt = fastGetAttribute(altAttr); local
263 if (!alt.isNull())
264 return alt;
345 // image height and width for the alt text instead.
  /external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
sctp_timer.c 183 struct sctp_nets *alt, *mnet, *min_errors_net = NULL , *max_cwnd_net = NULL; local
336 alt = TAILQ_NEXT(mnet, sctp_next);
337 if (alt == NULL)
343 alt = TAILQ_FIRST(&stcb->asoc.nets);
344 if (alt == NULL) {
348 if (alt->ro.ro_rt == NULL) {
349 if (alt->ro._s_addr) {
350 sctp_free_ifa(alt->ro._s_addr);
351 alt->ro._s_addr = NULL;
353 alt->src_addr_selected = 0
804 struct sctp_nets *alt; local
1016 struct sctp_nets *alt; local
1039 struct sctp_nets *alt; local
1102 struct sctp_nets *alt; local
1163 struct sctp_nets *alt; local
1278 struct sctp_nets *alt; local
1301 struct sctp_nets *alt; local
    [all...]
  /external/chromium_org/chrome/browser/apps/
web_view_interactive_browsertest.cc 448 // Press alt+DOWN to open popup.
449 bool alt = true; local
451 guest_web_contents(), ui::VKEY_DOWN, false, false, alt, false); local
    [all...]
  /external/chromium_org/chrome/browser/chromeos/events/
event_rewriter_unittest.cc 275 // VKEY_A, Alt modifier.
285 // VKEY_A, Alt+Win modifier.
290 // VKEY_LWIN (left Windows key), Alt modifier.
295 // VKEY_RWIN (right Windows key), Alt modifier.
311 // VKEY_A, Alt modifier.
321 // VKEY_A, Alt+Win modifier.
326 // VKEY_LWIN (left Windows key), Alt modifier.
331 // VKEY_RWIN (right Windows key), Alt modifier.
345 // Remap Control to Alt.
357 KeyTestCase pc_keyboard_tests[] = {// Control should be remapped to Alt
717 IntegerPrefMember alt; local
766 IntegerPrefMember alt; local
857 IntegerPrefMember alt; local
    [all...]
  /external/chromium_org/chrome/test/remoting/
remote_desktop_browsertest.cc 379 bool alt,
387 alt, local
  /external/chromium_org/third_party/re2/re2/
compile.cc 163 Frag Alt(Frag a, Frag b);
331 Frag Compiler::Alt(Frag a, Frag b) {
521 int alt = AllocInst(1); local
522 if (alt < 0) {
526 inst_[alt].InitAlt(rune_range_.begin, id);
527 rune_range_.begin = alt;
751 f = Alt(f, child_frags[i]);
    [all...]

Completed in 872 milliseconds

1 2 3