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

1 2 3 4 5 6 7 8

  /external/antlr/antlr-3.4/runtime/Python/antlr3/
constants.py 52 UP = 3
54 MIN_TOKEN_TYPE = UP+1
  /cts/tests/leanbackjank/app/src/android/leanbackjank/app/ui/
MainFragment.java 50 private enum ScrollDirection {DOWN, UP};
63 direction = ScrollDirection.UP;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/hoistedPredicates/
TParser.h 20 UP,
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
Token.pm 20 Readonly my $UP => 3;
21 sub UP { $UP }
23 Readonly my $MIN_TOKEN_TYPE => $UP + 1;
  /external/libxkbcommon/xkbcommon/test/
test.h 44 UP,
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/events/ui/focus/
NavigateTaskViewEvent.java 27 UNDEFINED, UP, DOWN, LEFT, RIGHT;
38 return Direction.UP;
  /libcore/luni/src/main/java/java/math/
RoundingMode.java 32 UP(BigDecimal.ROUND_UP),
43 * this rounding mode behaves as {@link #UP}, for negative values as
53 * {@link #UP}.
61 * are broken by rounding up.
117 return UP;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
LangDumpDecl.h 20 UP,
LangParser.h 20 UP,
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/
TreeRewriteParser.h 20 UP,
  /packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/obex/
RequestSetPath.java 45 mDir = SetPathDir.UP;
59 case UP:
71 ROOT, UP, DOWN
  /bootable/recovery/
ui.cpp 176 enum SwipeDirection { UP, DOWN, RIGHT, LEFT } direction;
184 direction = dy < 0 ? SwipeDirection::UP : SwipeDirection::DOWN;
199 case SwipeDirection::UP:
200 ProcessKey(KEY_UP, 1); // press up key
261 // accumulate the up or down motion reported by
263 // (positive or negative), fake an up/down
271 ProcessKey(KEY_UP, 1); // press up key
328 // Process a key-up or -down event. A key is "registered" when it is
339 // updown == 1 for key down events; 0 for key up events
536 // If we have power and volume up keys, that chord is the signal to toggle the text display
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeParser.cs 46 public const int UP = TokenTypes.Up;
107 * corresponding UP node.
116 // skip to corresponding UP. must count nesting level to get right UP
126 case UP:
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 48 public const int UP = TokenTypes.Up;
117 * corresponding UP node.
127 // skip to corresponding UP. must count nesting level to get right UP
140 case UP:
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 20 UP,
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/
SymbolTableParser.h 20 UP,
  /external/replicaisland/src/com/replica/replicaisland/
ButtonAnimationComponent.java 24 public static final int UP = 0;
54 if (mSprite.getCurrentAnimation() == Animation.UP) {
68 mSprite.playAnimation(Animation.UP);
  /system/tools/aidl/tests/
test_util.cpp 60 const int UP = 2;
79 directions |= UP;
99 directions |= UP;
123 } else if (table[i][j].propagation_directions & UP) {
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
Token.java 36 public static final int UP = 3;
38 public static final int MIN_TOKEN_TYPE = UP+1;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCTP.h 20 UP,
  /external/droiddriver/src/io/appium/droiddriver/scroll/
Direction.java 21 import static io.appium.droiddriver.scroll.Direction.PhysicalDirection.UP;
46 UP {
60 return UP;
105 private final PhysicalDirection[] directions = {UP, DOWN};
122 /** Follows standard convention: up-to-down, left-to-right */
135 /** Follows RTL convention: up-to-down, right-to-left */
  /external/eigen/blas/
common.h 31 #define UP 0
48 #define UPLO(X) ( ((X)=='U' || (X)=='u') ? UP \
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/resources/
Styles.java 71 public static final String UP = "up";
  /external/llvm/utils/lit/lit/
ProgressBar.py 48 UP = '' #: Move the cursor up one line
82 BOL=cr UP=cuu1 DOWN=cud1 LEFT=cub1 RIGHT=cuf1
109 # Look up numeric capabilities.
114 # Look up string capabilities.
226 if not (self.term.CLEAR_EOL and self.term.UP and self.term.BOL):
234 self.BOL = self.term.UP + self.term.BOL
268 self.BOL + self.term.UP + self.term.CLEAR_EOL +
278 self.term.UP + self.term.CLEAR_EOL +
279 self.term.UP + self.term.CLEAR_EOL
    [all...]
  /external/swiftshader/third_party/LLVM/utils/lit/lit/
ProgressBar.py 44 UP = '' #: Move the cursor up one line
78 BOL=cr UP=cuu1 DOWN=cud1 LEFT=cub1 RIGHT=cuf1
105 # Look up numeric capabilities.
110 # Look up string capabilities.
214 if not (self.term.CLEAR_EOL and self.term.UP and self.term.BOL):
222 self.BOL = self.term.UP + self.term.BOL
256 self.BOL + self.term.UP + self.term.CLEAR_EOL +
266 self.term.UP + self.term.CLEAR_EOL +
267 self.term.UP + self.term.CLEAR_EOL
    [all...]

Completed in 2266 milliseconds

1 2 3 4 5 6 7 8