HomeSort by relevance Sort by last modified time
    Searched defs:alt (Results 1 - 25 of 59) 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...]
  /external/webkit/Source/WebCore/accessibility/
AccessibilityImageMapLink.cpp 104 const AtomicString& alt = getAttribute(altAttr); local
105 if (!alt.isEmpty())
106 return alt;
  /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/bluetooth/bluez/input/
sixpair.c 147 handle_device (libusb_device *dev, struct libusb_config_descriptor *cfg, int itfnum, const struct libusb_interface_descriptor *alt)
286 struct libusb_interface_descriptor alt; local
288 alt = itf->altsetting[l];
289 if (alt.bInterfaceClass == 3) {
290 handle_device (dev, cfg, l, &alt);
  /external/chromium/chrome/browser/extensions/
extension_input_api.cc 100 bool alt = false; local
101 if (args->GetBoolean(kAlt, &alt))
102 flags |= alt ? ui::EF_ALT_DOWN : 0;
  /external/grub/netboot/
misc.c 96 int alt = 0; local
101 alt = 1;
129 if (alt)
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
printf.h 42 unsigned int alt:1; /* # flag. */ member in struct:printf_info
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
printf.h 42 unsigned int alt:1; /* # flag. */ member in struct:printf_info
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
printf.h 42 unsigned int alt:1; /* # flag. */ member in struct:printf_info
  /external/bluetooth/bluez/tools/
ciptool.c 406 char *alt; member in struct:__anon2300
486 if (strncmp(command[i].cmd, argv[0], 4) && strncmp(command[i].alt, argv[0], 4))
dfutool.c 710 char *alt; member in struct:__anon2302
783 if (strcmp(command[i].cmd, argv[0]) && strcmp(command[i].alt, argv[0]))
rfcomm.c 688 char *alt; member in struct:__anon2309
835 if (strncmp(command[i].cmd, argv[0], 4) && strncmp(command[i].alt, argv[0], 4))
  /external/valgrind/main/coregrind/
m_debuglog.c 514 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/webkit/Source/WebCore/html/
HTMLImageElement.cpp 171 // 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
  /dalvik/vm/compiler/codegen/arm/Thumb2/
Factory.cpp 77 u4 alt; local
84 alt = val >> count;
85 if (alt != 0) {
87 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/chrome/browser/
browser_keyevents_browsertest.cc 67 bool alt; member in struct:__anon2924::KeyEventTestData
266 browser(), test.key, test.ctrl, test.shift, test.alt, test.command));
274 " VKEY:0x%02x, ctrl:%d, shift:%d, alt:%d, command:%d\n"
277 data.key, data.ctrl, data.shift, data.alt, data.command,
506 // On Mac, access keys use ctrl+alt modifiers.
588 // Alt+A should focus the element with accesskey = "A".
598 // Alt+D should move the focus to the location entry.
606 // No element should be focused, as Alt+D was handled by the browser.
617 // If the keydown event is suppressed, then Alt+D should be handled as an
631 // On GTK, alt-0..9 are assigned as tab selection accelerators, so they ca
    [all...]
  /external/valgrind/main/exp-sgcheck/tests/
bad_percentify.c 232 HChar* alt; local
236 case '&': alt = "&amp;"; break;
237 case '<': alt = "&lt;"; break;
238 case '>': alt = "&gt;"; break;
239 default: alt = NULL;
242 if (alt) {
243 while (*alt) {
244 send(*alt, send_arg2);
246 alt++;
  /external/regex-re2/re2/
compile.cc 161 Frag Alt(Frag a, Frag b);
329 Frag Compiler::Alt(Frag a, Frag b) {
519 int alt = AllocInst(1); local
520 if (alt < 0) {
524 inst_[alt].InitAlt(rune_range_.begin, id);
525 rune_range_.begin = alt;
749 f = Alt(f, child_frags[i]);
    [all...]

Completed in 422 milliseconds

1 2 3