HomeSort by relevance Sort by last modified time
    Searched refs:DOWN (Results 1 - 25 of 152) sorted by null

1 2 3 4 5 6 7

  /external/antlr/antlr-3.4/runtime/Python/antlr3/
constants.py 49 DOWN = 2
  /libcore/luni/src/main/java/java/math/
RoundingMode.java 39 DOWN(BigDecimal.ROUND_DOWN),
44 * {@link #DOWN}.
52 * this rounding mode behaves as {@link #DOWN}, for negative values as
67 * are broken by rounding down.
105 return DOWN;
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
Token.pm 16 Readonly my $DOWN => 2;
17 sub DOWN { $DOWN }
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
Token.java 34 public static final int DOWN = 2;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/hoistedPredicates/
TParser.h 19 DOWN,
  /external/replicaisland/src/com/replica/replicaisland/
ButtonAnimationComponent.java 25 public static final int DOWN = 1;
60 mSprite.playAnimation(Animation.DOWN);
  /external/chromium/chrome/browser/ui/views/bookmarks/
bookmark_bar_view_test.cc 280 ui_controls::DOWN | ui_controls::UP,
301 ui_controls::DOWN | ui_controls::UP,
334 ui_controls::DOWN | ui_controls::UP,
352 ui_controls::LEFT, ui_controls::DOWN | ui_controls::UP,
384 ui_controls::DOWN | ui_controls::UP,
401 ui_controls::DOWN | ui_controls::UP,
417 ui_controls::DOWN | ui_controls::UP,
489 ui_controls::DOWN | ui_controls::UP,
506 ui_controls::DOWN | ui_controls::UP, NULL);
519 ui_controls::LEFT, ui_controls::DOWN | ui_controls::UP
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCTP.java 10 "<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, null);
    [all...]
SimpleCTP.h 19 DOWN,
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
SimpleCTP.java 10 "<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, null);
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
LangDumpDecl.h 19 DOWN,
  /external/chromium/chrome/browser/automation/
ui_controls.h 33 // type (key down, mouse click, etc.) will trigger the Task to be run. Hence
75 DOWN = 2
78 // Sends a mouse down and/or up message. The click will be sent to wherever
83 // Same as SendMouseEvents with UP | DOWN.
  /external/chromium/chrome/browser/ui/gtk/
slide_animator_gtk.h 40 DOWN,
slide_animator_gtk.cc 56 child_needs_move_ = (direction == DOWN);
121 if (direction_ == DOWN) {
  /libcore/luni/src/test/java/tests/api/java/math/
RoundingModeTest.java 30 assertEquals("valueOf failed for ROUND_DOWN", RoundingMode.valueOf(BigDecimal.ROUND_DOWN), RoundingMode.DOWN);
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/ui/
GLViewTest.java 345 int DOWN = MotionEvent.ACTION_DOWN;
352 a.dispatchTouchEvent(NewMotionEvent(DOWN, 250, 0));
353 assertEquals(DOWN, a.mOnTouchAction);
360 a.dispatchTouchEvent(NewMotionEvent(DOWN, 175, 0));
369 a.dispatchTouchEvent(NewMotionEvent(DOWN, 125, 0));
375 a.dispatchTouchEvent(NewMotionEvent(DOWN, 175, 0));
379 assertEquals(DOWN, c.mOnTouchAction);
384 a.dispatchTouchEvent(NewMotionEvent(DOWN, 125, 0));
394 a.dispatchTouchEvent(NewMotionEvent(DOWN, 50, 0));
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
TreeParser.as 36 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/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeParser.cs 45 public const int DOWN = TokenTypes.Down;
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/
TreeParser.cs 47 public const int DOWN = TokenTypes.Down;
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/
TreeParser.js 14 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
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/LL-star/
SimpleCParser.h 19 DOWN,
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/
SymbolTableParser.h 19 DOWN,
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/
TreeRewriteParser.h 19 DOWN,
  /external/guava/guava/src/com/google/common/math/
IntMath.java 82 case DOWN:
126 case DOWN:
214 case DOWN:
262 * Normal Java division rounds towards 0, consistently with RoundingMode.DOWN. We just have to
274 case DOWN:
  /frameworks/base/core/java/android/text/method/
LinkMovementMethod.java 36 private static final int DOWN = 3;
65 protected boolean down(TextView widget, Spannable buffer) { method in class:LinkMovementMethod
66 if (action(DOWN, widget, buffer)) {
70 return super.down(widget, buffer);
84 if (action(DOWN, widget, buffer)) {
162 case DOWN:

Completed in 451 milliseconds

1 2 3 4 5 6 7