/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
RelativeDateTimeFormatterTest.java | 22 import android.icu.text.RelativeDateTimeFormatter.Direction; 32 {0.0, Direction.NEXT, RelativeUnit.SECONDS, "in 0 seconds"}, 33 {0.5, Direction.NEXT, RelativeUnit.SECONDS, "in 0.5 seconds"}, 34 {1.0, Direction.NEXT, RelativeUnit.SECONDS, "in 1 second"}, 35 {2.0, Direction.NEXT, RelativeUnit.SECONDS, "in 2 seconds"}, 36 {0.0, Direction.NEXT, RelativeUnit.MINUTES, "in 0 minutes"}, 37 {0.5, Direction.NEXT, RelativeUnit.MINUTES, "in 0.5 minutes"}, 38 {1.0, Direction.NEXT, RelativeUnit.MINUTES, "in 1 minute"}, 39 {2.0, Direction.NEXT, RelativeUnit.MINUTES, "in 2 minutes"}, 40 {0.0, Direction.NEXT, RelativeUnit.HOURS, "in 0 hours"} [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
RelativeDateTimeFormatterTest.java | 21 import com.ibm.icu.text.RelativeDateTimeFormatter.Direction; 31 {0.0, Direction.NEXT, RelativeUnit.SECONDS, "in 0 seconds"}, 32 {0.5, Direction.NEXT, RelativeUnit.SECONDS, "in 0.5 seconds"}, 33 {1.0, Direction.NEXT, RelativeUnit.SECONDS, "in 1 second"}, 34 {2.0, Direction.NEXT, RelativeUnit.SECONDS, "in 2 seconds"}, 35 {0.0, Direction.NEXT, RelativeUnit.MINUTES, "in 0 minutes"}, 36 {0.5, Direction.NEXT, RelativeUnit.MINUTES, "in 0.5 minutes"}, 37 {1.0, Direction.NEXT, RelativeUnit.MINUTES, "in 1 minute"}, 38 {2.0, Direction.NEXT, RelativeUnit.MINUTES, "in 2 minutes"}, 39 {0.0, Direction.NEXT, RelativeUnit.HOURS, "in 0 hours"} [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/events/ui/focus/ |
NavigateTaskViewEvent.java | 26 public enum Direction { 30 public Direction direction; field in class:NavigateTaskViewEvent 31 public NavigateTaskViewEvent(Direction direction) { 32 this.direction = direction; 35 public static Direction getDirectionFromKeyCode(int keyCode) { 38 return Direction.UP; 40 return Direction.DOWN [all...] |
/cts/tests/tests/graphics/src/android/graphics/cts/ |
Path_DirectionTest.java | 21 import android.graphics.Path.Direction; 33 assertEquals(Direction.CW, Direction.valueOf("CW")); 34 assertEquals(Direction.CCW, Direction.valueOf("CCW")); 35 // Every Direction element will be tested somewhere else. 41 Direction[] expected = { 42 Direction.CW, 43 Direction.CCW }; 44 Direction[] actual = Direction.values() [all...] |
/platform_testing/libraries/app-helpers/common/src/android/platform/test/helpers/common/ |
IRecentsHelper.java | 19 import android.support.test.uiautomator.Direction; 25 * Flings the recent apps in the specified direction. 27 * @param dir the direction for the apps to move 29 void flingRecents(Direction dir);
|
/platform_testing/libraries/app-helpers/handheld/src/android/platform/test/helpers/handheld/ |
AbstractGoogleMessengerHelper.java | 20 import android.support.test.uiautomator.Direction; 54 * @param direction Direction to scroll, must be UP or DOWN. 56 public abstract void scrollMessages(Direction direction);
|
IChromeHelper.java | 20 import android.support.test.uiautomator.Direction; 35 public abstract void flingPage(Direction dir);
|
AbstractGmailHelper.java | 20 import android.support.test.uiautomator.Direction; 147 public abstract void scrollNavigationDrawer(Direction dir); 154 * @param direction The direction to scroll, only accepts UP and DOWN. 158 public abstract void scrollMailbox(Direction direction, float amount, boolean scrollToEnd); 165 * @param direction The direction to scroll, only accepts UP and DOWN. 169 public abstract void scrollEmail(Direction direction, float amount, boolean scrollToEnd) [all...] |
AbstractPhotosHelper.java | 20 import android.support.test.uiautomator.Direction; 123 * This method will scroll the picture album in the specified direction. 125 * @param direction The direction to scroll, must be LEFT or RIGHT. 127 public abstract void scrollAlbum(Direction direction);
|
/external/pdfium/core/fxcrt/ |
fx_bidi.h | 16 // Processes characters and group them into segments based on text direction. 19 enum Direction { NEUTRAL, LEFT, RIGHT }; 23 Direction direction; // Segment direction. member in struct:CFX_BidiChar::Segment 29 // Returns true if the character has a different direction than the 30 // existing direction to indicate there is a segment to process. 38 // Call after a change in direction is indicated by the above to get 43 void StartNewSegment(CFX_BidiChar::Direction direction); [all...] |
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/task/ |
CrossProfileIntentFilter.java | 36 Direction.TO_PARENT, 37 Direction.TO_PROFILE 40 @interface Direction { 56 * The direction of forwarding, can be either {@link Direction#TO_PARENT} or 57 * {@link Direction#TO_PROFILE}. 59 public final @Direction int direction; field in class:CrossProfileIntentFilter 61 private CrossProfileIntentFilter(IntentFilter filter, int flags, @Direction int direction) { [all...] |
CrossProfileIntentFiltersSetter.java | 34 import com.android.managedprovisioning.task.CrossProfileIntentFilter.Direction; 49 new CrossProfileIntentFilter.Builder(Direction.TO_PARENT, SKIP_CURRENT_PROFILE) 63 new CrossProfileIntentFilter.Builder(Direction.TO_PARENT, SKIP_CURRENT_PROFILE) 75 new CrossProfileIntentFilter.Builder(Direction.TO_PARENT, ONLY_IF_NO_MATCH_FOUND) 89 new CrossProfileIntentFilter.Builder(Direction.TO_PARENT, ONLY_IF_NO_MATCH_FOUND) 104 new CrossProfileIntentFilter.Builder(Direction.TO_PARENT, ONLY_IF_NO_MATCH_FOUND) 112 new CrossProfileIntentFilter.Builder(Direction.TO_PARENT, ONLY_IF_NO_MATCH_FOUND) 119 new CrossProfileIntentFilter.Builder(Direction.TO_PARENT, SKIP_CURRENT_PROFILE) 132 new CrossProfileIntentFilter.Builder(Direction.TO_PARENT, SKIP_CURRENT_PROFILE) 141 new CrossProfileIntentFilter.Builder(Direction.TO_PARENT, SKIP_CURRENT_PROFILE [all...] |
/external/skia/src/gpu/effects/ |
Gr1DKernelEffect.h | 26 enum Direction { 32 sk_sp<GrTextureProxy> proxy, Direction direction, int radius) 34 , fDirection(direction) 44 Direction direction() const { return fDirection; } function in class:Gr1DKernelEffect 48 str.appendf("Direction: %s, Radius: %d ", kX_Direction == fDirection ? "X" : "Y", fRadius); 54 Direction fDirection;
|
/platform_testing/libraries/launcher-helper/src/android/support/test/launcherhelper/ |
ILauncherStrategy.java | 19 import android.support.test.uiautomator.Direction; 69 * Retrieves the all apps drawer forward scroll direction as implemented by the launcher 72 public Direction getAllAppsScrollDirection(); 88 * Retrieves the all widgets drawer forward scroll direction as implemented by the launcher 91 public Direction getAllWidgetsScrollDirection(); 106 * Retrieves the home screen workspace forward scroll direction as implemented by the launcher 109 public Direction getWorkspaceScrollDirection();
|
BaseLauncher3Strategy.java | 23 import android.support.test.uiautomator.Direction; 101 allAppsContainer, Direction.reverse(getAllAppsScrollDirection())); 110 public Direction getAllAppsScrollDirection() { 111 return Direction.DOWN; 132 allWidgetsContainer, Direction.reverse(getAllWidgetsScrollDirection())); 141 public Direction getAllWidgetsScrollDirection() { 142 return Direction.DOWN; 191 public Direction getWorkspaceScrollDirection() { 192 return Direction.RIGHT;
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/ |
SemiVariance.java | 37 * and the "variance direction" (upside or downside) defaults to downside. The variance direction 39 * parameters to {@link #evaluate(double[], double, Direction, boolean, int, int)}.</p> 57 * The UPSIDE Direction is used to specify that the observations above the 60 public static final Direction UPSIDE_VARIANCE = Direction.UPSIDE; 63 * The DOWNSIDE Direction is used to specify that the observations below 66 public static final Direction DOWNSIDE_VARIANCE = Direction.DOWNSIDE; 80 private Direction varianceDirection = Direction.DOWNSIDE 359 private boolean direction; field in class:SemiVariance.Direction [all...] |
/external/eigen/Eigen/src/Core/ |
Reverse.h | 19 template<typename MatrixType, int Direction> 20 struct traits<Reverse<MatrixType, Direction> > 55 * \tparam Direction defines the direction of the reverse operation, can be Vertical, Horizontal, or BothDirections 63 template<typename MatrixType, int Direction> class Reverse 64 : public internal::dense_xpr_base< Reverse<MatrixType, Direction> >::type 77 ReverseRow = (Direction == Vertical) || (Direction == BothDirections), 78 ReverseCol = (Direction == Horizontal) || (Direction == BothDirections) [all...] |
/packages/apps/Contacts/src/com/android/contacts/widget/ |
ProportionalLayout.java | 29 * {@link #setDirection(Direction)}. The factor is specified in {@link #setRatio(float)}. 30 * <p>For {@link Direction#heightToWidth}: width := height * factor</p> 31 * <p>For {@link Direction#widthToHeight}: height := width * factor</p> 37 public enum Direction { 43 private Direction(String xmlName) { 48 * Parses the given direction string and returns the Direction instance. This 51 public static Direction parse(String value) { 53 return Direction.widthToHeight; 55 return Direction.heightToWidth [all...] |
/external/droiddriver/src/io/appium/droiddriver/actions/ |
UiElementActor.java | 20 import io.appium.droiddriver.scroll.Direction.PhysicalDirection; 45 * Scrolls in the given direction. 47 * @param direction specifies where the view port will move, instead of the 50 void scroll(UiElement uiElement, PhysicalDirection direction);
|
/hardware/interfaces/broadcastradio/1.0/ |
ITuner.hal | 51 * @param direction UP or DOWN. 58 scan(Direction direction, bool skipSubChannel) generates(Result result); 67 * @param direction UP or DOWN. 74 step(Direction direction, bool skipSubChannel) generates(Result result);
|
/external/droiddriver/src/io/appium/droiddriver/scroll/ |
Direction.java | 18 import static io.appium.droiddriver.scroll.Direction.PhysicalDirection.DOWN; 19 import static io.appium.droiddriver.scroll.Direction.PhysicalDirection.LEFT; 20 import static io.appium.droiddriver.scroll.Direction.PhysicalDirection.RIGHT; 21 import static io.appium.droiddriver.scroll.Direction.PhysicalDirection.UP; 26 public class Direction { 192 private Direction() {}
|
ScrollStepStrategy.java | 21 import io.appium.droiddriver.scroll.Direction.DirectionConverter; 22 import io.appium.droiddriver.scroll.Direction.PhysicalDirection; 29 * Tries to scroll {@code containerFinder} in {@code direction}. Returns whether scrolling is 34 * @param direction specifies where the view port will move instead of the finger 37 boolean scroll(DroidDriver driver, Finder containerFinder, PhysicalDirection direction); 51 * @param direction specifies where the view port will move instead of the finger 54 PhysicalDirection direction); 63 * @param direction specifies where the view port will move instead of the finger 66 PhysicalDirection direction); 73 * @param direction specifies where the view port will move instead of the finge [all...] |
/frameworks/base/apct-tests/perftests/core/src/android/graphics/perftests/ |
PathPerfTest.java | 47 path.addRect(0, 0, 100, 100, Path.Direction.CW); 66 path.addRect(0, 0, 100, 100, Path.Direction.CW); 75 path.addRect(0, 0, 100, 100, Path.Direction.CW); 85 path.addRect(0, 0, 100, 100, Path.Direction.CW); 95 path.addRect(0, 0, 100, 100, Path.Direction.CW); 106 path.addRect(0, 0, 100, 100, Path.Direction.CW);
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
RelativeDateTimeFormatter.java | 53 * fmt.format(1, Direction.NEXT, RelativeUnit.DAYS); // "in 1 day" 54 * fmt.format(3, Direction.NEXT, RelativeUnit.DAYS); // "in 3 days" 55 * fmt.format(3.2, Direction.LAST, RelativeUnit.YEARS); // "3.2 years ago" 57 * fmt.format(Direction.LAST, AbsoluteUnit.SUNDAY); // "last Sunday" 58 * fmt.format(Direction.THIS, AbsoluteUnit.SUNDAY); // "this Sunday" 59 * fmt.format(Direction.NEXT, AbsoluteUnit.SUNDAY); // "next Sunday" 60 * fmt.format(Direction.PLAIN, AbsoluteUnit.SUNDAY); // "Sunday" 62 * fmt.format(Direction.LAST, AbsoluteUnit.DAY); // "yesterday" 63 * fmt.format(Direction.THIS, AbsoluteUnit.DAY); // "today" 64 * fmt.format(Direction.NEXT, AbsoluteUnit.DAY); // "tomorrow 514 Direction direction = Direction.NEXT; local 581 Direction direction = Direction.THIS; local [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
RelativeDateTimeFormatter.java | 52 * fmt.format(1, Direction.NEXT, RelativeUnit.DAYS); // "in 1 day" 53 * fmt.format(3, Direction.NEXT, RelativeUnit.DAYS); // "in 3 days" 54 * fmt.format(3.2, Direction.LAST, RelativeUnit.YEARS); // "3.2 years ago" 56 * fmt.format(Direction.LAST, AbsoluteUnit.SUNDAY); // "last Sunday" 57 * fmt.format(Direction.THIS, AbsoluteUnit.SUNDAY); // "this Sunday" 58 * fmt.format(Direction.NEXT, AbsoluteUnit.SUNDAY); // "next Sunday" 59 * fmt.format(Direction.PLAIN, AbsoluteUnit.SUNDAY); // "Sunday" 61 * fmt.format(Direction.LAST, AbsoluteUnit.DAY); // "yesterday" 62 * fmt.format(Direction.THIS, AbsoluteUnit.DAY); // "today" 63 * fmt.format(Direction.NEXT, AbsoluteUnit.DAY); // "tomorrow 571 Direction direction = Direction.NEXT; local 640 Direction direction = Direction.THIS; local [all...] |