HomeSort by relevance Sort by last modified time
    Searched refs:Direction (Results 51 - 75 of 422) sorted by null

1 23 4 5 6 7 8 91011>>

  /frameworks/base/graphics/java/android/graphics/drawable/shapes/
RoundRectShape.java 113 mPath.addRoundRect(r, mOuterRadii, Path.Direction.CW);
115 mPath.addRect(r, Path.Direction.CW);
122 mPath.addRoundRect(mInnerRect, mInnerRadii, Path.Direction.CCW);
124 mPath.addRect(mInnerRect, Path.Direction.CCW);
  /platform_testing/libraries/app-helpers/common/src/android/platform/test/helpers/common/
AbstractGoogleFitHelper.java 22 import android.support.test.uiautomator.Direction;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
mspcall.h 22 STDMETHOD (CreateStream) (__LONG32 lMediaType,TERMINAL_DIRECTION Direction,ITStream **ppStream);
31 virtual HRESULT InternalCreateStream(DWORD dwMediaType,TERMINAL_DIRECTION Direction,ITStream **ppStream) = 0;
32 virtual HRESULT CreateStreamObject(DWORD dwMediaType,TERMINAL_DIRECTION Direction,IMediaEvent *pGraph,ITStream **ppStream) = 0;
65 virtual HRESULT InternalCreateStream(DWORD dwMediaType,TERMINAL_DIRECTION Direction,ITStream **ppStream);
  /cts/tests/jank/src/android/jank/cts/ui/
CtsDeviceJankUi.java 24 import android.support.test.uiautomator.Direction;
58 getUiDevice().findObject(By.clazz(ListView.class)).fling(Direction.DOWN);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PathFillTypes.java 46 mPath.addCircle(40, 40, 45, Path.Direction.CCW);
47 mPath.addCircle(80, 80, 45, Path.Direction.CCW);
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbBotPei/
BotPeim.c 96 @param Direction The direction of the data.
111 IN EFI_USB_DATA_DIRECTION Direction,
130 Cbw.Flags = (UINT8) ((Direction == EfiUsbDataIn) ? 0x80 : 0);
168 @param Direction The direction of the data.
182 IN EFI_USB_DATA_DIRECTION Direction,
204 if (Direction == EfiUsbDataIn) {
319 @param Direction The direction of the data.
    [all...]
  /external/droiddriver/src/io/appium/droiddriver/scroll/
ForwardingScrollStepStrategy.java 22 import io.appium.droiddriver.scroll.Direction.DirectionConverter;
23 import io.appium.droiddriver.scroll.Direction.PhysicalDirection;
39 public boolean scroll(DroidDriver driver, Finder containerFinder, PhysicalDirection direction) {
40 return delegate().scroll(driver, containerFinder, direction);
50 PhysicalDirection direction) {
51 delegate().beginScrolling(driver, containerFinder, itemFinder, direction);
56 PhysicalDirection direction) {
57 delegate().endScrolling(driver, containerFinder, itemFinder, direction);
61 public void doScroll(UiElement container, PhysicalDirection direction) {
62 delegate().doScroll(container, direction);
    [all...]
StaticSentinelStrategy.java 24 import io.appium.droiddriver.scroll.Direction.DirectionConverter;
25 import io.appium.droiddriver.scroll.Direction.PhysicalDirection;
29 * in the logical scroll direction is fully visible. This assumes the count of
51 public boolean scroll(DroidDriver driver, Finder containerFinder, PhysicalDirection direction) {
52 UiElement sentinel = getSentinel(driver, containerFinder, direction);
54 // If the last child in the logical scroll direction is fully visible, no
61 doScroll(container, direction);
  /external/skia/src/core/
SkPathPriv.h 21 static FirstDirection AsFirstDirection(SkPath::Direction dir) {
22 // since we agree numerically for the values in Direction, we can just cast.
27 * Return the opposite of the specified direction. kUnknown is its own
38 * Tries to quickly compute the direction of the first non-degenerate
40 * direction. If it cannot be (quickly) determined, return false and ignore
41 * the dir parameter. If the direction was determined, it is cached to make
47 * Returns true if the path's direction can be computed via
48 * cheapComputDirection() and if that computed direction matches the
49 * specified direction. If dir is kUnknown, returns true if the direction
    [all...]
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
SmallCircleActivity.java 55 mPath.addCircle(SIZE * 0.5f, SIZE * 0.5f, SIZE * 0.275f, Path.Direction.CW);
56 mPath.addCircle(SIZE * 0.5f, SIZE * 0.5f, SIZE * 0.225f, Path.Direction.CCW);
  /hardware/interfaces/broadcastradio/1.0/default/
Tuner.h 39 Return<Result> scan(Direction direction, bool skipSubChannel) override;
40 Return<Result> step(Direction direction, bool skipSubChannel) override;
  /packages/apps/ManagedProvisioning/tests/instrumentation/src/com/android/managedprovisioning/task/
CrossProfileIntentFilterTest.java 25 import com.android.managedprovisioning.task.CrossProfileIntentFilter.Direction;
36 private static final int TEST_DIRECTION = Direction.TO_PARENT;
60 assertEquals(TEST_DIRECTION, filter.direction);
  /packages/apps/TV/tests/common/src/com/android/tv/testing/uihelper/
SidePanelHelper.java 22 import android.support.test.uiautomator.Direction;
61 Direction.DOWN);
UiDeviceAsserts.java 24 import android.support.test.uiautomator.Direction;
88 * The navigation starts in the {@code direction} specified and
89 * {@link Direction#reverse(Direction) reverses} once if needed. Fails if there is not a
100 * @param direction the direction to start navigating.
104 BySelector selector, Direction direction) {
115 // HACK: Try direction anyways because play control does not always have a
117 UiDeviceUtils.pressDpad(uiDevice, direction);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/SnpDxe/
Callback.c 181 @param Direction Direction of data flow for this memory's usage:
192 IN UINT32 Direction,
212 switch (Direction) {
275 @param Direction Direction of data flow for this memory's usage:
286 IN UINT32 Direction,
317 if the virtual address is > 4GB). Depending on the direction for which the
329 @param Direction Direction of data flow for this memory's usage:
    [all...]
  /platform_testing/libraries/launcher-helper/src/android/support/test/launcherhelper/
LeanbackLauncherStrategy.java 28 import android.support.test.uiautomator.Direction;
183 public Direction getAllAppsScrollDirection() {
184 return Direction.RIGHT;
304 UiObject2 settings = findRow(getSettingsRowSelector(), Direction.DOWN);
350 public Direction getAllWidgetsScrollDirection() {
364 public Direction getWorkspaceScrollDirection() {
571 if ((card = findNotificationCard(selector, Direction.RIGHT)) != null) {
574 if ((card = findNotificationCard(selector, Direction.LEFT)) != null) {
581 * Find the card in the Notification row that matches BySelector in a given direction.
582 * If a card is already selected, it returns regardless of the direction parameter
    [all...]
  /platform_testing/tests/jank/uibench_wear/src/com/android/wearable/uibench/janktests/
UiBenchTextJankTests.java 30 import android.support.test.uiautomator.Direction;
108 layoutCacheHighHitrateContents.fling(Direction.DOWN, 5000);
113 layoutCacheHighHitrateContents.fling(Direction.UP, 5000);
141 layoutCacheLowHitrateContents.fling(Direction.DOWN, 5000);
146 layoutCacheLowHitrateContents.fling(Direction.UP, 5000);
UiBenchJankTests.java 27 import android.support.test.uiautomator.Direction;
150 trivialListViewContents.fling(Direction.DOWN, mHelper.CW_FLING_RATE);
155 trivialListViewContents.fling(Direction.UP, mHelper.CW_FLING_RATE);
183 trivialRecyclerViewContents.fling(Direction.DOWN, mHelper.CW_FLING_RATE);
188 trivialRecyclerViewContents.fling(Direction.UP, mHelper.CW_FLING_RATE);
218 inflatingListViewContents.fling(Direction.DOWN, mHelper.CW_FLING_RATE);
223 inflatingListViewContents.fling(Direction.UP, mHelper.CW_FLING_RATE);
UiBenchRenderingJankTests.java 27 import android.support.test.uiautomator.Direction;
100 shadowGridContents.fling(Direction.DOWN, 5000);
104 shadowGridContents.fling(Direction.UP, 5000);
  /cts/tests/tests/graphics/src/android/graphics/cts/
PathTest.java 63 path.addRect(rect, Path.Direction.CW);
71 path.addRect(LEFT, TOP, RIGHT, BOTTOM, Path.Direction.CW);
95 path.addRect(new RectF(0, 0, 10, 10), Path.Direction.CW);
97 path1.addRect(new RectF(10, 10, 20, 20), Path.Direction.CW);
179 path.addCircle(XCOORD, YCOORD, 10.0f, Path.Direction.CW);
221 path.addRect(bounds, Path.Direction.CW);
271 path.addOval(oval, Path.Direction.CW);
318 path.addRoundRect(rect, XCOORD, YCOORD, Path.Direction.CW);
331 path.addRoundRect(rect, radii, Path.Direction.CW);
338 path.addRect(0, 0, 100, 10, Path.Direction.CW)
    [all...]
  /external/skia/include/core/
SkPath.h 31 enum Direction {
32 /** clockwise direction for adding closed contours */
34 /** counter-clockwise direction for adding closed contours */
186 bool isOval(SkRect* rect, Direction* dir = nullptr,
208 bool isRRect(SkRRect* rrect, Direction* dir = nullptr,
581 * clockwise direction. Note that this enum value is opposite the SVG
586 Direction sweep, SkScalar x, SkScalar y);
588 void arcTo(const SkPoint r, SkScalar xAxisRotate, ArcSize largeArc, Direction sweep,
602 * clockwise direction. Note that this enum value is opposite the SVG
607 Direction sweep, SkScalar dx, SkScalar dy)
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Path.java 48 private Direction mLastDirection = null;
194 * single direction.
507 public enum Direction {
513 Direction(int ni) {
519 private void detectSimplePath(float left, float top, float right, float bottom, Direction dir) {
535 * @param dir The direction to wind the rectangle's contour
537 public void addRect(RectF rect, Direction dir) {
548 * @param dir The direction to wind the rectangle's contour
550 public void addRect(float left, float top, float right, float bottom, Direction dir) {
559 * @param dir The direction to wind the oval's contou
    [all...]
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/
PathClippingTests.java 66 path.addCircle(30, 30, 50, Path.Direction.CW);
67 path.addCircle(30, 30, 30, Path.Direction.CCW);
80 path1.addCircle(30, 30, 50, Path.Direction.CW);
83 path2.addCircle(30, 30, 30, Path.Direction.CW);
159 TEST_WIDTH / 4, Path.Direction.CW);
177 path.addCircle(0, 45, 45, Path.Direction.CW);
178 path.addCircle(90, 45, 45, Path.Direction.CW);
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
UsbFunctionIo.h 148 EFI_USBFN_ENDPOINT_DIRECTION Direction;
313 This function should fail with EFI_INVALID_PARAMETER if the specified direction
319 @param[in] Direction Direction of the endpoint.
333 IN EFI_USBFN_ENDPOINT_DIRECTION Direction
339 This function should fail with EFI_INVALID_PARAMETER if the specified direction
344 @param[in] Direction Direction of the endpoint.
360 IN EFI_USBFN_ENDPOINT_DIRECTION Direction,
367 This function should fail with EFI_INVALID_PARAMETER if the specified direction
    [all...]
  /platform_testing/libraries/app-helpers/tv/src/android/platform/test/helpers/tv/
AbstractLeanbackAppHelper.java 28 import android.support.test.uiautomator.Direction;
219 * This action keeps moving a focus in a given {@link Direction} until it finds matched element.
224 * @param direction the direction to find
227 public UiObject2 select(SelectCondition condition, UiObject2 container, Direction direction) {
231 direction, focus.toString()));
233 mDPadUtil.pressDPad(direction);
246 * Select target item through the container in the given direction.
249 * @param direction
    [all...]

Completed in 678 milliseconds

1 23 4 5 6 7 8 91011>>