HomeSort by relevance Sort by last modified time
    Searched refs:alt (Results 26 - 50 of 201) sorted by null

12 3 4 5 6 7 8 9

  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
ANTLR.g 85 ALT;
88 EOA; // end of alt
292 * alt = ^(ALT["ALT"] {b} EOA["EOA"])
293 * prefixWithSynpred( alt )
294 * return ^(BLOCK["BLOCK"] {alt} EOB["<end-of-block>"])
296 GrammarAST alt = (GrammarAST)adaptor.create(ALT, "ALT");
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
AST.stg 96 @alt.declarations() ::= <<
247 alt,rewriteBlockLevel,
254 <alt>
260 alt,rewriteBlockLevel,
267 <alt>
273 alt,rewriteBlockLevel,
283 <alt>
291 <a.alt>
294 <a.alt>
302 <a.alt>
    [all...]
  /external/chromium/chrome/browser/automation/
ui_controls_win.cc 166 bool control, bool shift, bool alt,
201 if (alt) {
215 if (alt) {
332 bool alt,
335 return SendKeyPressImpl(key, control, shift, alt, NULL);
342 bool alt,
346 return SendKeyPressImpl(key, control, shift, alt, task);
ui_controls_linux.cc 102 bool alt,
130 ui::SynthesizeKeyPressEvents(event_window, key, control, shift, alt, &events);
145 bool alt,
154 if (alt)
158 return SendKeyPress(window, key, control, shift, alt, command);
  /external/chromium/chrome/browser/resources/
keyboard_overlay_data.js 389 "key": "alt",
390 "label": "alt",
391 "notes": "left alt",
467 "key": "alt",
468 "label": "alt",
469 "notes": "right alt",
872 "key": "alt",
873 "label": "alt",
874 "notes": "left alt",
950 "key": "alt",
    [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/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/webkit/Source/JavaScriptCore/yarr/
YarrPattern.cpp 578 for (unsigned alt = 0; alt < disjunction->m_alternatives.size(); ++alt) {
579 PatternAlternative* alternative = disjunction->m_alternatives[alt];
740 for (unsigned alt = 0; alt < disjunction->m_alternatives.size(); ++alt) {
741 PatternAlternative* alternative = disjunction->m_alternatives[alt];
    [all...]
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLAppletElement02.js 78 The alt attribute specifies the alternate text for user agents not
81 Retrieve the alt attribute and examine its value.
103 valt = testNode.alt;
HTMLAreaElement02.js 78 The alt attribute specifies an alternate text for user agents not
81 Retrieve the alt attribute and examine its value.
103 valt = testNode.alt;
HTMLImageElement03.js 78 The alt attribute specifies an alternative text for user agenst not
81 Retrieve the alt attribute and examine its value.
103 valt = testNode.alt;
HTMLInputElement07.js 78 The alt attribute alternates text for user agents not rendering the
81 Retrieve the alt attribute of the 1st INPUT element and examine
104 valt = testNode.alt;
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLAppletElement02.js 78 The alt attribute specifies the alternate text for user agents not
81 Retrieve the alt attribute and examine its value.
103 valt = testNode.alt;
HTMLAreaElement02.js 78 The alt attribute specifies an alternate text for user agents not
81 Retrieve the alt attribute and examine its value.
103 valt = testNode.alt;
HTMLImageElement03.js 78 The alt attribute specifies an alternative text for user agenst not
81 Retrieve the alt attribute and examine its value.
103 valt = testNode.alt;
HTMLInputElement07.js 78 The alt attribute alternates text for user agents not rendering the
81 Retrieve the alt attribute of the 1st INPUT element and examine
104 valt = testNode.alt;
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DebugEventRepeater.java 51 public void enterAlt(int alt) { listener.enterAlt(alt); }
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Rule.java 128 /** Each alt has a Map<tokenRefName,List<tokenRefAST>>; range 1..numberOfAlts.
129 * So, if there are 3 ID refs in a rule's alt number 2, you'll have
131 * There must be only one ID reference in the alt for $ID to be ok in
141 /** Each alt has a Map<ruleRefName,List<ruleRefAST>>; range 1..numberOfAlts
142 * So, if there are 3 expr refs in a rule's alt number 2, you'll have
144 * There must be only one expr reference in the alt for $expr to be ok in
172 for (int alt=1; alt<=numberOfAlts; alt++) {
173 altToTokenRefMap[alt] = new HashMap<String, List<GrammarAST>>()
360 GrammarAST alt = blk.getBlockALT(i); local
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ActionScript/
AST.stg 81 @alt.declarations() ::= <<
224 alt,rewriteBlockLevel,
231 <alt>
237 alt,rewriteBlockLevel,
244 <alt>
250 alt,rewriteBlockLevel,
259 <alt>
268 <a.alt>
272 <a.alt>
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
AST.stg 107 @alt.declarations() ::= <<
246 alt,rewriteBlockLevel,
254 <alt>
260 alt,rewriteBlockLevel,
268 <alt>
274 alt,rewriteBlockLevel,
285 <alt>
295 <a.alt>
299 <a.alt>
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
AST.stg 109 @alt.declarations() ::= <<
244 alt,rewriteBlockLevel,
252 <alt>
258 alt,rewriteBlockLevel,
266 <alt>
272 alt,rewriteBlockLevel,
283 <alt>
293 <a.alt>
297 <a.alt>
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Delphi/
AST.stg 125 @alt.declarations() ::= <<
265 alt,rewriteBlockLevel,
273 <alt>
279 alt,rewriteBlockLevel,
287 <alt>
293 alt,rewriteBlockLevel,
303 <alt>
313 <a.alt>
317 <a.alt>
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/
AST.stg 80 @alt.declarations() ::= <<
224 alt,rewriteBlockLevel,
231 <alt>
237 alt,rewriteBlockLevel,
244 <alt>
250 alt,rewriteBlockLevel,
259 <alt>
268 <a.alt>
272 <a.alt>
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/JavaScript/
AST.stg 76 @alt.declarations() ::= <<
223 alt,rewriteBlockLevel,
230 <alt>
236 alt,rewriteBlockLevel,
243 <alt>
249 alt,rewriteBlockLevel,
258 <alt>
267 <a.alt>
271 <a.alt>
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
AST.stg 217 @alt.declarations() ::= <<
376 alt,rewriteBlockLevel,
383 <alt>
389 alt,rewriteBlockLevel,
396 <alt>
402 alt,rewriteBlockLevel,
413 <alt>
423 <a.alt>
427 <a.alt>

Completed in 9882 milliseconds

12 3 4 5 6 7 8 9