/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/ |
ICalendarHelper.java | 19 import android.support.test.uiautomator.Direction; 72 * Flings the navigation drawer in the supplied {@link Direction}. 74 * @param dir the {@link Direction} to fling the drawer. 76 public void flingNavigationDrawer(Direction dir); 90 * Flings the supplied {@link Page} in the supplied {@link Direction}. 93 * @param dir the {@link Direction} to fling in. 95 public void flingPage(Page page, Direction dir);
|
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);
|
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...] |
AbstractGoogleCameraHelper.java | 20 import android.support.test.uiautomator.Direction;
|
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);
|
/platform_testing/libraries/app-helpers/clockwork/src/android/platform/test/helpers/clockwork/ |
AbstractAgendaHelper.java | 20 import android.support.test.uiautomator.Direction; 31 * Scroll in direction 32 * @param d direction to scroll 35 public abstract boolean scroll(Direction d);
|
AbstractWeatherHelper.java | 20 import android.support.test.uiautomator.Direction; 31 * Scroll in direction 32 * @param d direction to scroll 35 public abstract boolean scroll(Direction d);
|
AbstractYourFeedHelper.java | 20 import android.support.test.uiautomator.Direction; 31 * Scroll in direction 32 * @param d direction to scroll 35 public abstract boolean scroll(Direction d);
|
/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 { 37 Direction direction() const { return fDirection; } function in class:Gr1DKernelEffect 41 str.appendf("Direction: %s, Radius: %d ", kX_Direction == fDirection ? "X" : "Y", fRadius); 48 sk_sp<GrTextureProxy> proxy, Direction direction, int radius) 50 , fDirection(direction) 55 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);
|
/packages/apps/TV/tests/common/src/com/android/tv/testing/uihelper/ |
SidePanelHelper.java | 22 import android.support.test.uiautomator.Direction; 50 return assertNavigateToItem(resId, Direction.DOWN); 53 public UiObject2 assertNavigateToItem(int resId, Direction direction) { 55 return assertNavigateToItem(title, direction); 58 return assertNavigateToItem(title, Direction.DOWN); 61 public UiObject2 assertNavigateToItem(String title, Direction direction) { 67 By.hasDescendant(By.text(title)), direction);
|