HomeSort by relevance Sort by last modified time
    Searched refs:direction (Results 76 - 100 of 1594) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/brotli/js/
polyfill.js 24 var direction = 1;
26 direction = -1;
32 from += direction;
33 to += direction;
  /external/droiddriver/src/io/appium/droiddriver/actions/accessibility/
AccessibilityUiElementActor.java 21 import io.appium.droiddriver.scroll.Direction.PhysicalDirection;
45 public void scroll(UiElement uiElement, PhysicalDirection direction) {
46 uiElement.perform(new AccessibilityScrollAction(direction));
  /external/droiddriver/src/io/appium/droiddriver/helpers/
ScrollerHelper.java 23 import io.appium.droiddriver.scroll.Direction.PhysicalDirection;
54 * Scrolls {@code containerFinder} in {@code direction} if necessary to find
59 * @param direction specifies where the view port will move instead of the finger
63 public UiElement scrollTo(Finder itemFinder, PhysicalDirection direction) {
64 return scroller.scrollTo(driver, containerFinder, itemFinder, direction);
  /external/droiddriver/src/io/appium/droiddriver/scroll/
DynamicSentinelStrategy.java 25 import io.appium.droiddriver.scroll.Direction.DirectionConverter;
26 import io.appium.droiddriver.scroll.Direction.PhysicalDirection;
210 public boolean scroll(DroidDriver driver, Finder containerFinder, PhysicalDirection direction) {
211 UiElement oldSentinel = getOldSentinel(driver, containerFinder, direction);
212 doScroll(oldSentinel.getParent(), direction); local
213 UiElement newSentinel = getSentinel(driver, containerFinder, direction);
219 PhysicalDirection direction) {
220 return lastSentinel != null ? lastSentinel : getSentinel(driver, containerFinder, direction);
225 PhysicalDirection direction) {
231 PhysicalDirection direction) {
    [all...]
StepBasedScroller.java 18 import static io.appium.droiddriver.scroll.Direction.LogicalDirection.BACKWARD;
29 import io.appium.droiddriver.scroll.Direction.Axis;
30 import io.appium.droiddriver.scroll.Direction.DirectionConverter;
31 import io.appium.droiddriver.scroll.Direction.PhysicalDirection;
79 // that we can start search in the other direction w/o polling on pages we
82 PhysicalDirection direction, boolean scrollBack) {
83 Logs.call(this, "scrollTo", driver, containerFinder, itemFinder, direction, scrollBack);
94 if (i < maxScrolls && !scrollStepStrategy.scroll(driver, containerFinder, direction)) {
112 driver.on(containerFinder).scroll(direction.reverse());
120 PhysicalDirection 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/pdfium/core/fxcrt/
fx_bidi_unittest.cpp 21 EXPECT_EQ(CFX_BidiChar::NEUTRAL, info.direction);
40 EXPECT_EQ(CFX_BidiChar::NEUTRAL, info.direction);
46 EXPECT_EQ(CFX_BidiChar::LEFT, info.direction);
74 EXPECT_EQ(CFX_BidiChar::NEUTRAL, info.direction);
80 EXPECT_EQ(CFX_BidiChar::RIGHT, info.direction);
108 EXPECT_EQ(CFX_BidiChar::RIGHT, info.direction);
114 EXPECT_EQ(CFX_BidiChar::LEFT, info.direction);
137 EXPECT_EQ(CFX_BidiChar::NEUTRAL, it->direction);
150 EXPECT_EQ(CFX_BidiChar::NEUTRAL, it->direction);
166 EXPECT_EQ(CFX_BidiChar::NEUTRAL, it->direction);
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
HeadsetClccResponse.java 23 * +CLCC:[index],[direction],[status],[mode],[mpty][,[number],[type]]
31 * Direction of the call, 0 is outgoing, 1 is incoming
67 HeadsetClccResponse(int index, int direction, int status, int mode, boolean mpty, String number,
70 mDirection = direction;
86 .append(", direction=")
  /packages/apps/Launcher3/quickstep/src/com/android/quickstep/views/
ClearAllButton.java 44 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
45 super.onFocusChanged(focused, direction, previouslyFocusedRect);
  /platform_testing/libraries/app-helpers/interfaces/handheld/src/android/platform/helpers/
IGmailHelper.java 19 import android.support.test.uiautomator.Direction;
140 public void scrollNavigationDrawer(Direction dir);
147 * @param direction The direction to scroll, only accepts UP and DOWN.
151 public void scrollMailbox(Direction direction, float amount, boolean scrollToEnd);
158 * @param direction The direction to scroll, only accepts UP and DOWN.
162 public void scrollEmail(Direction direction, float amount, boolean scrollToEnd)
    [all...]
  /external/adhd/cras/src/libcras/
cras_helpers.h 43 * direction - playback(CRAS_STREAM_OUTPUT) or capture(CRAS_STREAM_INPUT) or
60 enum CRAS_STREAM_DIRECTION direction,
  /external/libxaac/decoder/
ixheaacd_tns_usac.h 32 WORD32 direction; member in struct:__anon26619
  /external/ltp/testcases/kernel/device-drivers/tbio/tbio_kernel/
tbio.h 67 int direction; /* read or write form DEV */ member in struct:tbio_interface
  /external/tensorflow/tensorflow/contrib/framework/python/ops/
sort_ops.py 31 def sort(values, axis=-1, direction='ASCENDING', name=None):
38 direction: The direction in which to sort the values (`'ASCENDING'` or
47 ValueError: If axis is not a constant scalar, or the direction is invalid.
50 if direction not in _SORT_IMPL:
52 (direction, ', '.join(sorted(_SORT_IMPL.keys()))))
62 return _SORT_IMPL[direction](values, axis_static)
  /frameworks/layoutlib/bridge/src/android/graphics/
EmbossMaskFilter_Delegate.java 58 /*package*/ static long nativeConstructor(float[] direction, float ambient,
  /frameworks/support/leanback/src/main/java/androidx/leanback/widget/
TitleHelper.java 45 public View onFocusSearch(View focused, int direction) {
46 if (focused != mTitleView && direction == View.FOCUS_UP) {
52 if (mTitleView.hasFocus() && (direction == View.FOCUS_DOWN || direction == forward)) {
PlaybackControlsRowView.java 64 protected boolean onRequestFocusInDescendants(int direction, Rect previouslyFocusedRect) {
66 if (focused != null && focused.requestFocus(direction, previouslyFocusedRect)) {
69 return super.onRequestFocusInDescendants(direction, previouslyFocusedRect);
  /packages/apps/TV/tests/common/src/com/android/tv/testing/uihelper/
SidePanelHelper.java 22 import android.support.test.uiautomator.Direction;
46 return assertNavigateToItem(resId, Direction.DOWN);
49 public UiObject2 assertNavigateToItem(int resId, Direction direction) {
51 return assertNavigateToItem(title, direction);
55 return assertNavigateToItem(title, Direction.DOWN);
58 public UiObject2 assertNavigateToItem(String title, Direction direction) {
64 mUiDevice, sidePanelList, By.hasDescendant(By.text(title)), direction);
  /external/adhd/cras/src/server/
cras_system_state.h 182 * direction - Directions of audio streams.
184 void cras_system_state_stream_added(enum CRAS_STREAM_DIRECTION direction);
190 * direction - Directions of audio stream.
192 void cras_system_state_stream_removed(enum CRAS_STREAM_DIRECTION direction);
197 /* Returns the number of active streams with given direction.
199 * direction - Directions of audio stream.
202 enum CRAS_STREAM_DIRECTION direction);
  /external/harfbuzz_ng/util/
view-cairo.hh 40 direction (HB_DIRECTION_INVALID),
70 direction = hb_buffer_get_direction (buffer);
97 hb_direction_t direction; // Remove this, make segment_properties accessible member in struct:view_cairo_t
  /frameworks/support/compat/src/main/java/androidx/core/widget/
ListViewCompat.java 58 * Check if the items in the list can be scrolled in a certain direction.
60 * @param direction Negative to check scrolling up, positive to check
62 * @return true if the list can be scrolled in the specified direction,
66 public static boolean canScrollList(@NonNull ListView listView, int direction) {
69 return listView.canScrollList(direction);
78 if (direction > 0) {
  /packages/apps/DeskClock/src/com/android/deskclock/
VerticalViewPager.java 40 public boolean canScrollHorizontally(int direction) {
48 public boolean canScrollVertically(int direction) {
49 return super.canScrollHorizontally(direction);
  /packages/apps/DocumentsUI/src/com/android/documentsui/selection/
ViewAutoScroller.java 99 final int direction = (int) Math.signum(pixelsPastView); local
109 (int) (direction * MAX_SCROLL_STEP * smoothOutOfBoundsRatio(outOfBoundsRatio));
113 return cappedScrollStep != 0 ? cappedScrollStep : direction;
  /packages/apps/Launcher2/src/com/android/launcher2/
InterruptibleInOutAnimator.java 29 * interpolator in the same direction.
62 private void animate(int direction) {
64 final float toValue = (direction == IN) ? mOriginalToValue : mOriginalFromValue;
73 mDirection = direction;
103 * the animation is running in the opposite direction, in which case we reverse
104 * direction and animate for a correspondingly shorter duration.
113 * if the animation is currently running in the opposite direction, we reverse
114 * direction and animate for a correspondingly shorter duration.
  /system/bt/packet/avrcp/
change_path.h 62 Direction GetDirection() const;
77 uint16_t uid_counter, Direction direction, uint64_t folder_uid);
84 ChangePathRequestBuilder(uint16_t uid_counter, Direction direction,
88 direction_(direction),
92 Direction direction_;

Completed in 506 milliseconds

1 2 34 5 6 7 8 91011>>