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

1 2 3 4 5 6 7

  /external/antlr/antlr-3.4/runtime/Python/antlr3/
constants.py 49 DOWN = 2
  /cts/tests/leanbackjank/app/src/android/leanbackjank/app/ui/
MainFragment.java 50 private enum ScrollDirection {DOWN, UP};
57 direction = ScrollDirection.DOWN;
65 direction = ScrollDirection.DOWN;
67 if (direction == ScrollDirection.DOWN) {
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/hoistedPredicates/
TParser.h 19 DOWN,
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
Token.pm 16 Readonly my $DOWN => 2;
17 sub DOWN { $DOWN }
  /external/libxkbcommon/xkbcommon/test/
test.h 42 DOWN,
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/events/ui/focus/
NavigateTaskViewEvent.java 27 UNDEFINED, UP, DOWN, LEFT, RIGHT;
40 return Direction.DOWN;
  /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/ObjC/Framework/examples/treeparser/
LangDumpDecl.h 19 DOWN,
LangParser.h 19 DOWN,
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/
TreeRewriteParser.h 19 DOWN,
  /packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/obex/
RequestSetPath.java 34 mDir = SetPathDir.DOWN;
56 case DOWN:
71 ROOT, UP, DOWN
  /bootable/recovery/
ui.cpp 176 enum SwipeDirection { UP, DOWN, RIGHT, LEFT } direction;
184 direction = dy < 0 ? SwipeDirection::UP : SwipeDirection::DOWN;
204 case SwipeDirection::DOWN:
205 ProcessKey(KEY_DOWN, 1); // press down key
261 // accumulate the up or down motion reported by
263 // (positive or negative), fake an up/down
267 ProcessKey(KEY_DOWN, 1); // press down key
328 // Process a key-up or -down event. A key is "registered" when it is
335 // We also keep track of which keys are currently down so that
339 // updown == 1 for key down events; 0 for key up event
    [all...]
  /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/ObjC/Framework/examples/LL-star/
SimpleCParser.h 19 DOWN,
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/
SymbolTableParser.h 19 DOWN,
  /external/replicaisland/src/com/replica/replicaisland/
ButtonAnimationComponent.java 25 public static final int DOWN = 1;
60 mSprite.playAnimation(Animation.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/simplecTreeParser/
SimpleCTP.h 19 DOWN,
  /external/droiddriver/src/io/appium/droiddriver/scroll/
Direction.java 18 import static io.appium.droiddriver.scroll.Direction.PhysicalDirection.DOWN;
49 return DOWN;
57 DOWN {
105 private final PhysicalDirection[] directions = {UP, DOWN};
122 /** Follows standard convention: up-to-down, left-to-right */
131 return DOWN;
135 /** Follows RTL convention: up-to-down, right-to-left */
144 return DOWN;
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/resources/
Styles.java 74 public static final String DOWN = "down";
  /external/llvm/utils/lit/lit/
ProgressBar.py 49 DOWN = '' #: Move the cursor down one line
82 BOL=cr UP=cuu1 DOWN=cud1 LEFT=cub1 RIGHT=cuf1
  /external/swiftshader/third_party/LLVM/utils/lit/lit/
ProgressBar.py 45 DOWN = '' #: Move the cursor down one line
78 BOL=cr UP=cuu1 DOWN=cud1 LEFT=cub1 RIGHT=cuf1
  /frameworks/support/recyclerview-selection/src/androidTest/java/androidx/recyclerview/selection/
GestureSelectionHelperTest.java 40 private static final MotionEvent DOWN = TestEvents.builder()
74 assertFalse(mHelper.onInterceptTouchEvent(null, DOWN));
81 mHelper.onInterceptTouchEvent(null, DOWN);
89 assertTrue(mHelper.onInterceptTouchEvent(null, DOWN));
95 assertTrue(mHelper.onInterceptTouchEvent(null, DOWN));
107 mHelper.onInterceptTouchEvent(null, DOWN);
  /packages/apps/DocumentsUI/tests/unit/com/android/documentsui/selection/
GestureSelectionHelperTest.java 44 private static final MotionEvent DOWN = TestEvents.builder()
80 assertFalse(mHelper.onInterceptTouchEvent(null, DOWN));
86 assertFalse(mHelper.onInterceptTouchEvent(null, DOWN));
92 mHelper.onInterceptTouchEvent(null, DOWN);
100 assertTrue(mHelper.onInterceptTouchEvent(null, DOWN));
106 assertTrue(mHelper.onInterceptTouchEvent(null, DOWN));
118 mHelper.onInterceptTouchEvent(null, DOWN);

Completed in 468 milliseconds

1 2 3 4 5 6 7