/external/droiddriver/src/io/appium/droiddriver/scroll/ |
H A D | Scroller.java | 41 * Scrolls {@code containerFinder} in {@code direction} if necessary to find {@code itemFinder}, 47 * @param direction specifies where the view port will move instead of the finger 52 PhysicalDirection direction); 51 scrollTo(DroidDriver driver, Finder containerFinder, Finder itemFinder, PhysicalDirection direction) argument
|
H A D | ForwardingScrollStepStrategy.java | 39 public boolean scroll(DroidDriver driver, Finder containerFinder, PhysicalDirection direction) { argument 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) { argument 62 delegate().doScroll(container, direction); 49 beginScrolling(DroidDriver driver, Finder containerFinder, Finder itemFinder, PhysicalDirection direction) argument 55 endScrolling(DroidDriver driver, Finder containerFinder, Finder itemFinder, PhysicalDirection direction) argument
|
H A D | ScrollStepStrategy.java | 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); argument 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 finger 75 void doScroll(UiElement container, PhysicalDirection direction); argument 53 beginScrolling(DroidDriver driver, Finder containerFinder, Finder itemFinder, PhysicalDirection direction) argument 65 endScrolling(DroidDriver driver, Finder containerFinder, Finder itemFinder, PhysicalDirection direction) argument
|
H A D | Scrollers.java | 39 public boolean scroll(DroidDriver driver, Finder containerFinder, PhysicalDirection direction) { argument 40 if (super.scroll(driver, containerFinder, direction)) {
|
H A D | StaticSentinelStrategy.java | 29 * in the logical scroll direction is fully visible. This assumes the count of 51 public boolean scroll(DroidDriver driver, Finder containerFinder, PhysicalDirection direction) { argument 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);
|
H A D | StepBasedScroller.java | 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) { 122 scrollStepStrategy.beginScrolling(driver, containerFinder, itemFinder, direction); 123 return scrollTo(driver, containerFinder, itemFinder, direction, false); 125 scrollStepStrategy.endScrolling(driver, containerFinder, itemFinder, direction); 81 scrollTo(DroidDriver driver, Finder containerFinder, Finder itemFinder, PhysicalDirection direction, boolean scrollBack) argument 119 scrollTo(DroidDriver driver, Finder containerFinder, Finder itemFinder, PhysicalDirection direction) argument
|
/external/libpcap/pcap/ |
H A D | bluetooth.h | 42 u_int32_t direction; /* if first bit is set direction is incoming */ member in struct:_pcap_bluetooth_h4_header
|
/external/skia/gm/ |
H A D | arcofzorro.cpp | 42 int direction = 0; variable 54 switch (direction) { 58 direction = 1; 65 direction = 2;
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/exception/ |
H A D | NonMonotonousSequenceException.java | 37 private final MathUtils.OrderDirection direction; field in class:NonMonotonousSequenceException 72 * @param direction Strictly positive for a sequence required to be 80 MathUtils.OrderDirection direction, 82 super(direction == MathUtils.OrderDirection.INCREASING ? 91 this.direction = direction; 98 * @return the order direction. 101 return direction; 77 NonMonotonousSequenceException(Number wrong, Number previous, int index, MathUtils.OrderDirection direction, boolean strict) argument
|
/external/droiddriver/src/io/appium/droiddriver/actions/ |
H A D | EventUiElementActor.java | 45 public void scroll(UiElement uiElement, PhysicalDirection direction) { argument 46 uiElement.perform(SwipeAction.toScroll(direction));
|
H A D | UiElementActor.java | 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); argument
|
/external/droiddriver/src/io/appium/droiddriver/actions/accessibility/ |
H A D | AccessibilityScrollAction.java | 32 private final PhysicalDirection direction; field in class:AccessibilityScrollAction 34 public AccessibilityScrollAction(PhysicalDirection direction) { argument 35 this(direction, 1000L); 38 public AccessibilityScrollAction(PhysicalDirection direction, long timeoutMillis) { argument 40 this.direction = direction; 49 switch (direction) { 62 return Strings.toStringHelper(this).addValue(direction).toString();
|
H A D | AccessibilityUiElementActor.java | 45 public void scroll(UiElement uiElement, PhysicalDirection direction) { argument 46 uiElement.perform(new AccessibilityScrollAction(direction));
|
/external/droiddriver/src/io/appium/droiddriver/helpers/ |
H A D | ScrollerHelper.java | 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) { argument 64 return scroller.scrollTo(driver, containerFinder, itemFinder, direction);
|
/external/icu/icu4c/source/layout/ |
H A D | MultipleSubstSubtables.cpp | 79 le_int32 insert = 0, direction = 1; local 83 direction = -1; 90 insert += direction;
|
H A D | GlyphIterator.h | 81 le_int32 direction; member in class:GlyphIterator
|
/external/iptables/include/linux/netfilter/ |
H A D | xt_connbytes.h | 24 __u8 direction; /* ipt_connbytes_direction */ member in struct:xt_connbytes_info
|
/external/jmonkeyengine/engine/src/core/com/jme3/light/ |
H A D | DirectionalLight.java | 44 * <code>DirectionalLight</code> is a light coming from a certain direction in world space. 48 * come from their direction regardless of where an object is placed. 52 protected Vector3f direction = new Vector3f(0f, -1f, 0f); field in class:DirectionalLight 60 * Returns the direction vector of the light. 62 * @return The direction vector of the light. 67 return direction; 71 * Sets the direction of the light. 73 * Represents the vector direction the light is coming from. 76 * @param dir the direction of the light. 79 direction [all...] |
/external/kernel-headers/original/uapi/linux/netfilter/ |
H A D | xt_connbytes.h | 24 __u8 direction; /* ipt_connbytes_direction */ member in struct:xt_connbytes_info
|
/external/tcpdump/ |
H A D | print-usb.c | 37 /* returns direction: 1=inbound 2=outbound -1=invalid */ 41 int direction; local 43 direction = -1; 51 direction = 2; 55 direction = 1; 58 direction = -1; 65 direction = 1; 69 direction = 2; 72 direction = -1; 76 direction 85 int direction; local [all...] |
/external/chromium-trace/catapult/dashboard/dashboard/models/ |
H A D | anomaly.py | 17 # direction of UP or DOWN, but a test's improvement direction can be UNKNOWN. 67 def direction(self): member in class:Anomaly 84 # |self.direction| is never equal to |UNKNOWN| (see the definition above) 85 # so when the test improvement direction is |UNKNOWN|, |self.is_improvement| 87 self.is_improvement = (self.direction == test.improvement_direction)
|
/external/fio/ |
H A D | cairo_text_helpers.c | 12 double factor, direction; local 17 direction = -1.0; 21 direction = -1.0; 26 direction = 1.0; 34 x = x + direction * (factor * extents.width + extents.x_bearing);
|
/external/icu/icu4c/source/i18n/ |
H A D | rbt_pars.h | 62 UTransDirection direction; member in class:TransliteratorParser 151 * Parse the given rules, in the given direction. After this call 156 * @param direction either FORWARD or REVERSE. 162 UTransDirection direction, 177 * @param direction either FORWARD or REVERSE. 180 UTransDirection direction,
|
H A D | transreg.h | 114 UTransDirection direction; member in class:TransliteratorAlias 160 * Given a simple ID (forward direction, no inline filter, not 379 UTransDirection direction);
|
/external/jmonkeyengine/engine/src/test/jme3test/input/ |
H A D | TestCameraNode.java | 56 Vector3f direction = new Vector3f(); field in class:TestCameraNode 86 //Setting the direction to Spatial to camera, this means the camera will copy the movements of the Node 114 //computing the normalized direction of the cam to move the teaNode 115 direction.set(cam.getDirection()).normalizeLocal(); 117 direction.multLocal(5 * tpf); 118 teaNode.move(direction); 121 direction.multLocal(-5 * tpf); 122 teaNode.move(direction); 125 direction.crossLocal(Vector3f.UNIT_Y).multLocal(5 * tpf); 126 teaNode.move(direction); [all...] |