HomeSort by relevance Sort by last modified time
    Searched full:direction (Results 351 - 375 of 3958) sorted by null

<<11121314151617181920>>

  /packages/apps/Launcher2/src/com/android/launcher2/
CellLayout.java     [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
CellLayout.java     [all...]
  /external/harfbuzz_ng/src/
hb-font.cc 430 hb_direction_t direction,
433 return font->get_glyph_advance_for_direction (glyph, direction, x, y);
439 hb_direction_t direction,
442 return font->get_glyph_origin_for_direction (glyph, direction, x, y);
448 hb_direction_t direction,
451 return font->add_glyph_origin_for_direction (glyph, direction, x, y);
457 hb_direction_t direction,
460 return font->subtract_glyph_origin_for_direction (glyph, direction, x, y);
466 hb_direction_t direction,
469 return font->get_glyph_kerning_for_direction (first_glyph, second_glyph, direction, x, y)
    [all...]
  /external/chromium_org/media/base/
seekable_buffer.h 16 // advances and there will be more data in the backward direction. If backward
19 // The eviction will be caused by Read() and Seek() in the forward direction and
23 // how many bytes can be kept in the forward direction, regulated by
90 // If |offset| exceeds bytes buffered in either direction, reported by
116 // direction.
120 // direction.
135 // A helper method to evict buffers in the backward direction until backward
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/api/
omxtypes.h 62 OMX_StsACAAC_TnsDirectErr = -152, /* AAC: Invalid TNS filter direction */
225 * of the rectangle, with dimensions width in the x-direction
226 * and height in the y-direction */
230 OMX_INT width; /** Width in the x-direction. */
231 OMX_INT height; /** Height in the y-direction. */
247 OMX_INT width; /** Width of the rectangle, in the x-direction */
248 OMX_INT height; /** Height of the rectangle, in the y-direction */
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/api/
omxtypes.h 62 OMX_StsACAAC_TnsDirectErr = -152, /* AAC: Invalid TNS filter direction */
225 * of the rectangle, with dimensions width in the x-direction
226 * and height in the y-direction */
230 OMX_INT width; /** Width in the x-direction. */
231 OMX_INT height; /** Height in the y-direction. */
247 OMX_INT width; /** Width of the rectangle, in the x-direction */
248 OMX_INT height; /** Height of the rectangle, in the y-direction */
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/api/
omxtypes.h 62 OMX_StsACAAC_TnsDirectErr = -152, /* AAC: Invalid TNS filter direction */
225 * of the rectangle, with dimensions width in the x-direction
226 * and height in the y-direction */
230 OMX_INT width; /** Width in the x-direction. */
231 OMX_INT height; /** Height in the y-direction. */
247 OMX_INT width; /** Width of the rectangle, in the x-direction */
248 OMX_INT height; /** Height of the rectangle, in the y-direction */
  /frameworks/base/docs/html/training/keyboard-input/
navigation.jd 14 <ol> <li><a href="#Test">Test Your App</a></li> <li><a href="#Tab">Handle Tab Navigation</a></li> <li><a href="#Direction">Handle Directional Navigation</a></li> </ol>
74 <li>Start from the beginning of your app and instead use the direction controls
81 <p>If you encounter any instances where navigating with the Tab key or direction controls
130 <h2 id="Direction">Handle Directional Navigation</h2>
135 in a given direction based on the layout of the views on screen. Sometimes, however, the system
138 <p>If the system does not pass focus to the appropriate view when navigating in a given direction,
152 in that direction, as specified by the view ID. For example:</p>
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-font.cc 646 * @direction:
657 hb_direction_t direction,
660 return font->get_glyph_advance_for_direction (glyph, direction, x, y);
667 * @direction:
678 hb_direction_t direction,
681 return font->get_glyph_origin_for_direction (glyph, direction, x, y);
688 * @direction:
699 hb_direction_t direction,
702 return font->add_glyph_origin_for_direction (glyph, direction, x, y);
709 * @direction:
    [all...]
  /external/chromium_org/base/i18n/
rtl_unittest.cc 26 // A test utility function to set the application default text direction.
28 // Override the current locale/direction.
45 TextDirection direction; member in struct:base::i18n::__anon3480
106 EXPECT_EQ(cases[i].direction,
113 TextDirection direction; member in struct:base::i18n::__anon3481
184 EXPECT_EQ(cases[i].direction,
253 // Toggle the application default text direction (to try each direction).
300 // Toggle the application default text direction (to try each direction)
    [all...]
rtl.cc 72 // Represents the locale-specific ICU text direction.
158 TextDirection direction = GetCharacterDirection(character); local
159 if (direction != UNKNOWN_DIRECTION)
160 return direction;
176 TextDirection direction = GetCharacterDirection(character); local
177 if (direction != UNKNOWN_DIRECTION) {
178 if (result != UNKNOWN_DIRECTION && result != direction)
180 result = direction;
357 // Also wrap strings with an RTL first strong character direction in LTR UI.
  /external/ceres-solver/internal/ceres/
line_search_minimizer.cc 240 // Line search direction failed to generate a new direction, and we
244 StringPrintf("Line search direction failure: specified "
252 // Restart line search direction with gradient descent on first iteration
259 << "Line search direction algorithm: "
261 << ", failed to produce a valid new direction at iteration: "
278 // we restarted the line search direction equivalently to the first
286 // direction in a line search, most likely cause for this being violated
287 // would be a numerical failure in the line search direction calculation.
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/objects/
VehicleWheel.java 52 protected Vector3f direction = new Vector3f(); field in class:VehicleWheel
73 public VehicleWheel(Spatial spat, Vector3f location, Vector3f direction, Vector3f axle,
75 this(location, direction, axle, restLength, radius, frontWheel);
79 public VehicleWheel(Vector3f location, Vector3f direction, Vector3f axle,
82 this.direction.set(direction);
145 return direction;
369 direction = (Vector3f) capsule.readSavable("wheelDirection", new Vector3f());
388 capsule.write(direction, "wheelDirection", new Vector3f());
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/objects/
VehicleWheel.java 52 protected Vector3f direction = new Vector3f(); field in class:VehicleWheel
73 public VehicleWheel(Spatial spat, Vector3f location, Vector3f direction, Vector3f axle,
75 this(location, direction, axle, restLength, radius, frontWheel);
79 public VehicleWheel(Vector3f location, Vector3f direction, Vector3f axle,
82 this.direction.set(direction);
140 return direction;
349 direction = (Vector3f) capsule.readSavable("wheelDirection", new Vector3f());
368 capsule.write(direction, "wheelDirection", new Vector3f());
  /cts/tests/tests/view/src/android/view/cts/
VelocityTrackerTest.java 101 // After a sharp change of direction we expect the velocity to eventually
110 assertVelocity(TOLERANCE_WEAK, "Expect weak bound after 100ms of new direction.");
112 assertVelocity(TOLERANCE_TIGHT, "Expect tight bound after 200ms of new direction.");
117 // change of direction.
127 "Expect tight bound after a 100ms pause and 100ms of new direction.");
  /external/chromium_org/chrome/installer/test/
alternate_version_generator_main.cc 118 // Returns the direction in which the version should be adjusted.
119 upgrade_test::Direction GetDirection(const CommandLine& cmd_line) {
156 upgrade_test::Direction direction = GetDirection(*cmd_line); local
161 if (upgrade_test::GenerateAlternateVersion(mini_installer, out, direction,
  /external/chromium_org/third_party/WebKit/ManualTests/animation/
animation-direction-reverse-timing-functions-hardware.html 62 -webkit-animation-direction: normal;
65 -webkit-animation-direction: alternate;
68 -webkit-animation-direction: reverse;
71 -webkit-animation-direction: alternate-reverse;
82 Tests animation direction with timing functions and hardware acceleration.
  /external/chromium_org/third_party/leveldatabase/src/table/
merger.cc 63 // If we are moving in the forward direction, it is already
89 // If we are moving in the reverse direction, it is already
147 // Which direction is the iterator moving?
148 enum Direction {
152 Direction direction_;
  /external/chromium_org/ui/views/focus/
focus_search.cc 20 Direction direction,
54 (direction == DOWN),
61 bool can_go_down = (direction == DOWN) && !IsFocusable(starting_view);
76 v = FindNextFocusableView(NULL, reverse, direction, check_starting_view,
focus_search.h 18 // The direction in which the focus traversal is going.
23 enum Direction {
56 // - |direction| specifies whether we are traversing down (meaning we should
66 Direction direction,
  /external/droiddriver/src/com/google/android/droiddriver/scroll/
DynamicSentinelStrategy.java 25 import com.google.android.droiddriver.scroll.Direction.PhysicalToLogicalConverter;
180 public boolean scroll(DroidDriver driver, Finder parentFinder, ScrollDirection direction) {
182 UiElement oldSentinel = getSentinel(parent, direction);
183 parent.scroll(direction);
184 UiElement newSentinel = getSentinel(driver.on(parentFinder), direction);
  /external/iptables/extensions/
libxt_connbytes.c 51 sinfo->direction = XT_CONNBYTES_DIR_ORIGINAL;
53 sinfo->direction = XT_CONNBYTES_DIR_REPLY;
55 sinfo->direction = XT_CONNBYTES_DIR_BOTH;
94 switch (sinfo->direction) {
127 fputs(" connbytes direction", stdout);
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new_introspect.c 53 const char *direction)
58 if (direction)
59 wpabuf_printf(xml, " direction=\"%s\"", direction);
194 "<arg name=\"data\" type=\"s\" direction=\"out\"/>"
  /frameworks/base/graphics/java/android/graphics/
Path.java 43 private Direction mLastDirection = null;
465 public enum Direction {
471 Direction(int ni) {
477 private void detectSimplePath(float left, float top, float right, float bottom, Direction dir) {
495 * @param dir The direction to wind the rectangle's contour
497 public void addRect(RectF rect, Direction dir) {
512 * @param dir The direction to wind the rectangle's contour
514 public void addRect(float left, float top, float right, float bottom, Direction dir) {
523 * @param dir The direction to wind the oval's contour
525 public void addOval(RectF oval, Direction dir)
    [all...]
  /frameworks/base/media/java/android/media/videoeditor/
TransitionAlpha.java 50 * If true, this value inverts the direction of the mask: white pixels of
86 * @param invert true to invert the direction of the alpha blending
88 * direction are not supported.
190 * Check if the alpha blending direction is inverted.
192 * @return true if the direction of the alpha blending is inverted

Completed in 3224 milliseconds

<<11121314151617181920>>