Searched refs:DOWN (Results 1 - 25 of 132) sorted by relevance

123456

/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dconstants.py49 DOWN = 2 variable
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/extensions/searchvox/
H A Dconstants.js23 DOWN: 40,
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DToken.js15 DOWN: 2,
/external/chromium_org/ui/keyboard/resources/
H A Dconstants.js46 DOWN: 0x8
/external/droiddriver/src/com/google/android/droiddriver/scroll/
H A DDirection.java18 import static com.google.android.droiddriver.scroll.Direction.PhysicalDirection.DOWN;
49 return DOWN;
57 DOWN { enum constant in enum:Direction.PhysicalDirection
105 private final PhysicalDirection[] directions = {UP, DOWN};
131 return DOWN;
144 return DOWN;
/external/chromium_org/chrome/browser/ui/views/location_bar/
H A Dlocation_icon_view_interactive_uitest.cc33 ui_controls::DOWN | ui_controls::UP,
45 ui_controls::DOWN | ui_controls::UP,
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DToken.pm16 Readonly my $DOWN => 2;
17 sub DOWN { $DOWN } subroutine
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DToken.java34 public static final int DOWN = 2; field in interface:Token
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/hoistedPredicates/
H A DTParser.h19 DOWN, enumerator in enum:__anon307
/external/replicaisland/src/com/replica/replicaisland/
H A DButtonAnimationComponent.java25 public static final int DOWN = 1; field in class:ButtonAnimationComponent.Animation
60 mSprite.playAnimation(Animation.DOWN);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DTreeParser.cs45 public const int DOWN = TokenTypes.Down; field in class:Antlr.Runtime.Tree.TreeParser
115 // if the next node is DOWN, then the current node is a subtree:
118 if (look == DOWN) {
123 case DOWN:
140 * We have DOWN/UP nodes in the stream that have no line info; override.
169 if (e.Token == null) { // could be an UP/DOWN node
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DTreeParser.cs47 public const int DOWN = TokenTypes.Down; field in class:Antlr.Runtime.Tree.TreeParser
126 // if the next node is DOWN, then the current node is a subtree:
129 if ( look == DOWN )
137 case DOWN:
154 * We have DOWN/UP nodes in the stream that have no line info; override.
188 { // could be an UP/DOWN node
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
H A DTreeParser.js14 DOWN: org.antlr.runtime.Token.DOWN,
71 if ( tokenType === TP.DOWN ) {
81 /** We have DOWN/UP nodes in the stream that have no line info; override.
106 if ( !org.antlr.lang.isValue(e.token) ) { // could be an UP/DOWN node
H A DCommonTreeNodeStream.js6 * includes pointers to DOWN and UP and EOF nodes.
30 /** Reuse same DOWN, UP navigation nodes unless this is true */
42 this.down = this.adaptor.create(Token.DOWN, "DOWN");
81 * Don't do DOWN, UP nodes if its a list (t is isNil).
94 // add DOWN node if t has children
97 this.addNavigationNode(org.antlr.runtime.Token.DOWN);
129 /** As we flatten the tree, we use UP, DOWN nodes to represent
135 if ( ttype===org.antlr.runtime.Token.DOWN ) {
137 navNode = this.adaptor.create(org.antlr.runtime.Token.DOWN, "DOW
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
H A DSimpleCTP.java10 "<invalid>", "<EOR>", "<DOWN>", "<UP>", "VAR_DEF", "ARG_DEF", "FUNC_HDR", "FUNC_DECL", "FUNC_DEF", "BLOCK", "ID", "EQ", "INT", "FOR", "INT_TYPE", "CHAR", "VOID", "EQEQ", "LT", "PLUS", "WS", "';'", "'('", "','", "')'", "'{'", "'}'"
157 match(input, Token.DOWN, null);
173 match(input, Token.DOWN, null);
212 match(input, Token.DOWN, null);
272 match(input, Token.DOWN, null);
339 match(input, Token.DOWN, null);
407 if ( input.LA(1)==Token.DOWN ) {
408 match(input, Token.DOWN, null);
576 match(input, Token.DOWN, null);
669 match(input, Token.DOWN, nul
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
H A DSimpleCTP.java10 "<invalid>", "<EOR>", "<DOWN>", "<UP>", "VAR_DEF", "ARG_DEF", "FUNC_HDR", "FUNC_DECL", "FUNC_DEF", "BLOCK", "ID", "EQ", "INT", "FOR", "INT_TYPE", "CHAR", "VOID", "EQEQ", "LT", "PLUS", "WS", "';'", "'('", "','", "')'", "'{'", "'}'"
157 match(input, Token.DOWN, null);
173 match(input, Token.DOWN, null);
212 match(input, Token.DOWN, null);
272 match(input, Token.DOWN, null);
339 match(input, Token.DOWN, null);
407 if ( input.LA(1)==Token.DOWN ) {
408 match(input, Token.DOWN, null);
576 match(input, Token.DOWN, null);
669 match(input, Token.DOWN, nul
[all...]
/external/chromium_org/chrome/browser/ui/views/bookmarks/
H A Dbookmark_bar_view_test.cc404 ui_controls::DOWN | ui_controls::UP,
425 ui_controls::DOWN | ui_controls::UP,
455 ui_controls::DOWN | ui_controls::UP,
480 ui_controls::LEFT, ui_controls::DOWN,
516 ui_controls::DOWN | ui_controls::UP,
533 ui_controls::DOWN | ui_controls::UP,
550 ui_controls::DOWN | ui_controls::UP,
623 ui_controls::DOWN | ui_controls::UP,
640 ui_controls::DOWN | ui_controls::UP, base::Closure());
654 ui_controls::LEFT, ui_controls::DOWN | ui_control
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
H A DLangDumpDecl.h19 DOWN, enumerator in enum:__anon311
/external/chromium_org/ui/base/test/
H A Dui_controls.h76 DOWN = 2 enumerator in enum:ui_controls::MouseButtonState
87 // Same as SendMouseEvents with UP | DOWN.
/external/droiddriver/src/com/google/android/droiddriver/actions/accessibility/
H A DAccessibilityScrollAction.java51 case DOWN:
/external/chromium_org/chrome/browser/ui/views/toolbar/
H A Dtoolbar_button_test.cc77 ui_controls::DOWN,
108 ui_controls::DOWN | ui_controls::UP,
/external/chromium_org/ui/aura/test/
H A Dui_controls_factory_aurawin.cc19 using ui_controls::DOWN;
74 return SendMouseEvents(type, UP | DOWN);
/external/chromium_org/chrome/browser/ui/views/tabs/
H A Dtab_drag_controller_interactive_uitest_win.cc57 ui_controls::LEFT, ui_controls::DOWN));
89 ui_controls::LEFT, ui_controls::DOWN));
123 ui_controls::LEFT, ui_controls::DOWN));
154 ui_controls::LEFT, ui_controls::DOWN));
181 ui_controls::LEFT, ui_controls::DOWN));
211 ui_controls::LEFT, ui_controls::DOWN));
236 ui_controls::LEFT, ui_controls::DOWN));
282 ui_controls::LEFT, ui_controls::DOWN));
331 ui_controls::LEFT, ui_controls::DOWN));
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DTreeParser.as36 public static const DOWN:int = TokenConstants.DOWN;
99 if ( tokenType == DOWN ) {
109 /** We have DOWN/UP nodes in the stream that have no line info; override.
133 if ( e.token==null ) { // could be an UP/DOWN node
/external/smali/smali/src/main/java/org/jf/smali/
H A DsmaliTreeWalker.java51 "<invalid>", "<EOR>", "<DOWN>", "<UP>", "ACCESS_SPEC", "ANNOTATION_DIRECTIVE",
442 match(input, Token.DOWN, null);
620 match(input, Token.DOWN, null);
656 match(input, Token.DOWN, null);
773 match(input, Token.DOWN, null);
820 if ( input.LA(1)==Token.DOWN ) {
821 match(input, Token.DOWN, null);
880 if ( input.LA(1)==Token.DOWN ) {
881 match(input, Token.DOWN, null);
943 if ( input.LA(1)==Token.DOWN ) {
[all...]

Completed in 2764 milliseconds

123456