HomeSort by relevance Sort by last modified time
    Searched refs:directions (Results 1 - 25 of 36) sorted by null

1 2

  /external/droiddriver/src/com/google/android/droiddriver/scroll/
Direction.java 24 * A namespace to hold interfaces and constants for scroll directions.
27 /** Logical directions */
44 /** Physical directions */
97 private final PhysicalDirection[] directions = {LEFT, RIGHT}; typedefs
101 return directions;
105 private final PhysicalDirection[] directions = {UP, DOWN}; typedefs
109 return directions;
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
3d-raytrace.js 272 this.directions = new Array(4);
273 this.directions[0] = normalise([-0.7, 0.7, 1]);
274 this.directions[1] = normalise([ 0.7, 0.7, 1]);
275 this.directions[2] = normalise([ 0.7, -0.7, 1]);
276 this.directions[3] = normalise([-0.7, -0.7, 1]);
277 this.directions[0] = transformMatrix(m, this.directions[0]);
278 this.directions[1] = transformMatrix(m, this.directions[1]);
279 this.directions[2] = transformMatrix(m, this.directions[2])
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
3d-raytrace.js 272 this.directions = new Array(4);
273 this.directions[0] = normalise([-0.7, 0.7, 1]);
274 this.directions[1] = normalise([ 0.7, 0.7, 1]);
275 this.directions[2] = normalise([ 0.7, -0.7, 1]);
276 this.directions[3] = normalise([-0.7, -0.7, 1]);
277 this.directions[0] = transformMatrix(m, this.directions[0]);
278 this.directions[1] = transformMatrix(m, this.directions[1]);
279 this.directions[2] = transformMatrix(m, this.directions[2])
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
3d-raytrace.js 272 this.directions = new Array(4);
273 this.directions[0] = normalise([-0.7, 0.7, 1]);
274 this.directions[1] = normalise([ 0.7, 0.7, 1]);
275 this.directions[2] = normalise([ 0.7, -0.7, 1]);
276 this.directions[3] = normalise([-0.7, -0.7, 1]);
277 this.directions[0] = transformMatrix(m, this.directions[0]);
278 this.directions[1] = transformMatrix(m, this.directions[1]);
279 this.directions[2] = transformMatrix(m, this.directions[2])
    [all...]
  /external/chromium_org/third_party/skia/experimental/Intersection/
LogoPlay.cpp 191 SkTDArray<SkPath::Direction> directions; local
193 directions.setCount(rectCount);
194 path.rectContours(rects.begin(), directions.begin());
198 rect.fRight, rect.fBottom, directions[contour] == SkPath::kCCW_Direction
EdgeWalker_TestUtility.cpp 97 SkTDArray<SkPath::Direction> directions; local
99 directions.setCount(rectCount);
100 path.rectContours(rects.begin(), directions.begin());
104 rect.fRight, rect.fBottom, directions[contour] == SkPath::kCCW_Direction
  /external/skia/experimental/Intersection/
LogoPlay.cpp 191 SkTDArray<SkPath::Direction> directions; local
193 directions.setCount(rectCount);
194 path.rectContours(rects.begin(), directions.begin());
198 rect.fRight, rect.fBottom, directions[contour] == SkPath::kCCW_Direction
EdgeWalker_TestUtility.cpp 97 SkTDArray<SkPath::Direction> directions; local
99 directions.setCount(rectCount);
100 path.rectContours(rects.begin(), directions.begin());
104 rect.fRight, rect.fBottom, directions[contour] == SkPath::kCCW_Direction
  /external/qemu/distrib/sdl-1.2.15/src/joystick/mint/
SDL_sysjoystick.c 749 Uint16 directions; member in struct:JOYPAD_IO_S
777 jp_directions = (~(JOYPAD_IO.directions));
799 JOYPAD_IO.directions = joypad_masks[(i*4)+j];
802 cur_dir = (~(JOYPAD_IO.directions)>>8) & 15;
813 JOYPAD_IO.directions = joypad_masks[(i*4)+j];
816 cur_dir = (~(JOYPAD_IO.directions)>>12) & 15;
823 JOYPAD_IO.directions=0xffff;
  /frameworks/base/core/java/android/text/
Layout.java 349 Directions directions = getLineDirections(i); local
350 if (directions == DIRS_ALL_LEFT_TO_RIGHT && !mSpannedText && !hasTabOrEmoji) {
354 tl.set(paint, buf, start, end, dir, directions, hasTabOrEmoji, tabStops);
666 public abstract Directions getLineDirections(int line);
690 Directions dirs = getLineDirections(line);
720 Directions dirs = getLineDirections(line);
839 Directions directions = getLineDirections(line); local
852 tl.set(mPaint, mText, start, end, dir, directions, hasTabOrEmoji, tabStops)
968 Directions directions = getLineDirections(line); local
994 Directions directions = getLineDirections(line); local
1239 Directions directions = getLineDirections(line); local
    [all...]
AndroidBidi.java 19 import android.text.Layout.Directions;
59 * @return the directions
61 public static Directions directions(int dir, byte[] levels, int lstart, method in class:AndroidBidi
176 return new Directions(ld);
TextLine.java 24 import android.text.Layout.Directions;
53 private Directions mDirections;
127 * @param directions the directions information of this line
132 Directions directions, boolean hasTabs, TabStops tabStops) {
138 mDirections = directions;
140 throw new IllegalArgumentException("Directions cannot be null");
152 mCharsValid = hasReplacement || hasTabs || directions != Layout.DIRS_ALL_LEFT_TO_RIGHT;
    [all...]
StaticLayout.java 134 mLineDirections = ArrayUtils.newUnpaddedArray(Directions.class, 2 * mColumns);
152 mLineDirections = ArrayUtils.newUnpaddedArray(Directions.class, 2 * mColumns);
525 Directions[] grow2 = ArrayUtils.newUnpaddedArray(
526 Directions.class, GrowingArrayUtils.growSize(want));
609 Directions linedirs = DIRS_ALL_LEFT_TO_RIGHT;
616 mLineDirections[j] = AndroidBidi.directions(dir, chdirs, start - widthStart, chs,
811 public final Directions getLineDirections(int line) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintList.java     [all...]
  /external/chromium_org/ui/keyboard/resources/
constants.js 38 * The enumeration of swipe directions.
  /frameworks/support/v4/java/android/support/v4/widget/
ViewDragHelper.java     [all...]
  /packages/apps/Dialer/src/com/android/dialer/widget/
ViewDragHelper.java     [all...]
  /external/chromium_org/third_party/skia/tests/
PathOpsExtendedTest.cpp 125 SkTDArray<SkPath::Direction> directions; local
127 directions.setCount(rectCount);
128 path.rectContours(rects.begin(), directions.begin());
132 rect.fRight, rect.fBottom, directions[contour] == SkPath::kCCW_Direction
  /external/skia/tests/
PathOpsExtendedTest.cpp 125 SkTDArray<SkPath::Direction> directions; local
127 directions.setCount(rectCount);
128 path.rectContours(rects.begin(), directions.begin());
132 rect.fRight, rect.fBottom, directions[contour] == SkPath::kCCW_Direction
  /external/valgrind/main/none/tests/
cmdline1.stdout.exp 23 and follow the on-screen directions
cmdline2.stdout.exp 23 and follow the on-screen directions
  /external/iproute2/doc/
ip-tunnels.tex 81 A: Linux-2.2 has single module \verb|ipip| for both directions of tunneling
275 output directions by prefixing corresponding keywords with letter
  /external/chromium_org/cc/layers/
tiled_layer_unittest.cc 417 gfx::Vector2d directions[6] = { gfx::Vector2d(-10, 0), gfx::Vector2d(10, 0), local
438 gfx::Rect(visible_rect.origin() + directions[k], visible_rect.size());
440 gfx::Rect(visible_rect.origin() - directions[k], visible_rect.size());
    [all...]
  /prebuilts/maven_repo/android/com/android/support/support-v4/13.0.0/
support-v4-13.0.0.jar 
  /prebuilts/tools/common/netbeans-visual/
org-netbeans-api-visual.jar 

Completed in 1407 milliseconds

1 2