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

1 2 3 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/Python/antlr3/
constants.py 49 DOWN = 2
  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/
BluetoothMasRequestSetPath.java 28 ROOT, UP, DOWN
36 mDir = SetPathDir.DOWN;
58 case DOWN:
  /packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/obex/
RequestSetPath.java 34 mDir = SetPathDir.DOWN;
56 case DOWN:
71 ROOT, UP, 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;
  /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;
  /system/extras/tests/workloads/
chromefling.sh 47 DOWN="70 100 70 400 $flingtime";;
53 DOWN="700 400 700 1847 $flingtime";;
59 DOWN="500 550 500 1200 $flingtime";;
65 DOWN="500 400 500 1400 $flingtime";;
71 DOWN="500 530 500 1560 $flingtime";;
108 swipe "$DOWN" $downCount
recentfling.sh 48 DOWN="70 100 70 400 $flingtime";;
54 DOWN="500 550 500 1200 $flingtime";;
60 DOWN="500 550 500 1200 $flingtime";;
66 DOWN="70 70 70 400 $flingtime";;
111 swipe "$DOWN" $downCount
115 swipe "$DOWN" $downCount
  /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/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...]
  /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/droiddriver/src/io/appium/droiddriver/actions/accessibility/
AccessibilityScrollAction.java 53 case DOWN:
  /packages/apps/TV/tests/common/src/com/android/tv/testing/uihelper/
UiObject2Utils.java 37 case DOWN:
SidePanelHelper.java 50 return assertNavigateToItem(resId, Direction.DOWN);
58 return assertNavigateToItem(title, Direction.DOWN);
  /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
  /platform_testing/tests/jank/uibench/src/com/android/uibench/janktests/
UiBenchJankTestsHelper.java 105 * To perform the fling down and up on given content for flingCount number
115 content.fling(reverse ? Direction.UP : Direction.DOWN);
117 content.fling(reverse ? Direction.DOWN : Direction.UP);
136 content.fling(Direction.DOWN, (int)(SLOW_FLING_SPEED * mDisplayMetrics.density));
  /external/smali/smali/src/main/java/org/jf/smali/
smaliTreeWalker.java 52 "<invalid>", "<EOR>", "<DOWN>", "<UP>", "ACCESS_SPEC", "ANNOTATION_DIRECTIVE",
426 match(input, Token.DOWN, null);
604 match(input, Token.DOWN, null);
640 match(input, Token.DOWN, null);
757 match(input, Token.DOWN, null);
804 if ( input.LA(1)==Token.DOWN ) {
805 match(input, Token.DOWN, null);
864 if ( input.LA(1)==Token.DOWN ) {
865 match(input, Token.DOWN, null);
    [all...]
  /cts/tests/jank/src/android/jank/cts/ui/
CtsDeviceJankUi.java 58 getUiDevice().findObject(By.clazz(ListView.class)).fling(Direction.DOWN);

Completed in 3699 milliseconds

1 2 3 4 5 6 7 8 91011>>