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

1 2 3 4 5 6 7 8 91011

  /external/chromium_org/chrome/browser/resources/print_preview/previewarea/
margin_control_container.css 9 .margin-control-container-dragging-horizontal {
  /external/chromium_org/chrome/browser/resources/print_preview/
no_destinations_promo.css 14 -webkit-box-orient: horizontal;
  /external/chromium_org/ui/views/controls/scrollbar/
kennedy_scroll_bar.h 17 explicit KennedyScrollBar(bool horizontal);
overlay_scroll_bar.h 16 explicit OverlayScrollBar(bool horizontal);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
GravityHelper.java 46 /** Bitmask for a gravity which includes center horizontal */
49 /** Bitmask for a gravity which includes fill horizontal */
70 /** Bitmask for a gravity which includes any horizontal constraint */
188 int horizontal = gravity & GRAVITY_HORIZ_MASK; local
191 if ((horizontal & (GRAVITY_LEFT|GRAVITY_START)) != 0) {
192 if ((horizontal & GRAVITY_LEFT) != 0) {
195 if ((horizontal & GRAVITY_START) != 0) {
201 } else if ((horizontal & (GRAVITY_RIGHT|GRAVITY_END)) != 0) {
202 if ((horizontal & GRAVITY_RIGHT) != 0) {
205 if ((horizontal & GRAVITY_END) != 0)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/mac/
NSScrollerImpDetails.h 53 + (id)scrollerImpWithStyle:(NSScrollerStyle)newScrollerStyle controlSize:(NSControlSize)newControlSize horizontal:(BOOL)horizontal replacingScrollerImp:(id)previous;
90 - (void)setHorizontalScrollerImp:(id)horizontal;
  /frameworks/base/libs/hwui/utils/
Blur.h 38 static void horizontal(float* weights, int32_t radius, const uint8_t* source,
  /packages/apps/InCallUI/src/com/android/incallui/
ProximitySensor.java 179 // is being held in a horizontal position.
186 // horizontal, but we do not force it on when we become horizontal until the
188 final boolean horizontal =
190 screenOnImmediately |= !mUiShowing && horizontal;
192 // We do not keep the screen off when dialpad is visible, we are horizontal, and
196 screenOnImmediately |= mDialpadVisible && horizontal;
204 .add("hor", horizontal ? 1 : 0)
  /external/chromium-trace/trace-viewer/src/tracing/tracks/
heading_track.css 8 -webkit-box-orient: horizontal;
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
WindowAlignment.java 22 import static android.support.v7.widget.RecyclerView.HORIZONTAL;
251 private int mOrientation = HORIZONTAL;
255 final public Axis horizontal = new Axis("horizontal"); field in class:WindowAlignment
257 private Axis mMainAxis = horizontal;
271 if (mOrientation == HORIZONTAL) {
272 mMainAxis = horizontal;
276 mSecondAxis = horizontal;
290 return new StringBuffer().append("horizontal=")
291 .append(horizontal.toString()
    [all...]
ItemAlignment.java 17 import static android.support.v7.widget.RecyclerView.HORIZONTAL;
95 if (mOrientation == HORIZONTAL) {
144 private int mOrientation = HORIZONTAL;
148 final public Axis horizontal = new Axis(HORIZONTAL); field in class:ItemAlignment
150 private Axis mMainAxis = horizontal;
164 if (mOrientation == HORIZONTAL) {
165 mMainAxis = horizontal;
169 mSecondAxis = horizontal;
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
ScrollController.java 617 private int mOrientation = ScrollAdapterView.HORIZONTAL;
623 final public Axis horizontal = new Axis(mLerper, "horizontal"); field in class:ScrollController
625 private Axis mMainAxis = horizontal;
638 /** the major movement is in horizontal or vertical */
670 if (mOrientation == ScrollAdapterView.HORIZONTAL) {
671 mMainAxis = horizontal;
675 mSecondAxis = horizontal;
732 return (dx == 0 || horizontal.canScroll(dx < 0)) &&
767 horizontal.setOperationMode(operationMode)
    [all...]
  /external/chromium_org/third_party/skia/src/pathops/
SkIntersections.h 67 return horizontal(cubic, left, right, y, flipped);
117 return horizontal(line, left, right, y, flipped);
153 return horizontal(quad, left, right, y, flipped);
224 int horizontal(const SkDLine&, double y);
225 int horizontal(const SkDLine&, double left, double right, double y, bool flipped);
226 int horizontal(const SkDQuad&, double left, double right, double y, bool flipped);
227 int horizontal(const SkDQuad&, double left, double right, double y, double tRange[2]);
228 int horizontal(const SkDCubic&, double y, double tRange[3]);
229 int horizontal(const SkDCubic&, double left, double right, double y, bool flipped);
230 int horizontal(const SkDCubic&, double left, double right, double y, double tRange[3])
    [all...]
  /external/skia/src/pathops/
SkIntersections.h 67 return horizontal(cubic, left, right, y, flipped);
117 return horizontal(line, left, right, y, flipped);
153 return horizontal(quad, left, right, y, flipped);
224 int horizontal(const SkDLine&, double y);
225 int horizontal(const SkDLine&, double left, double right, double y, bool flipped);
226 int horizontal(const SkDQuad&, double left, double right, double y, bool flipped);
227 int horizontal(const SkDQuad&, double left, double right, double y, double tRange[2]);
228 int horizontal(const SkDCubic&, double y, double tRange[3]);
229 int horizontal(const SkDCubic&, double left, double right, double y, bool flipped);
230 int horizontal(const SkDCubic&, double left, double right, double y, double tRange[3])
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/drawable/shapes/cts/
PathShapeTest.java 71 int horizontal = 0; local
79 horizontal += 1;
85 assertEquals(50, horizontal, TOLERANCE);
  /frameworks/base/core/java/android/widget/
GridLayout.java 166 @IntDef({HORIZONTAL, VERTICAL})
171 * The horizontal orientation.
173 public static final int HORIZONTAL = LinearLayout.HORIZONTAL;
243 private static final int DEFAULT_ORIENTATION = HORIZONTAL;
307 * @return either {@link #HORIZONTAL} or {@link #VERTICAL}
328 * when orientation is {@link #HORIZONTAL} the horizontal axis is laid out first.
339 * orientation as {@code HORIZONTAL} - because {@code TextView} is capable of
343 * GridLayout, so it's fine to leave GridLayout in {@code HORIZONTAL} mode even i
1218 public final boolean horizontal; field in class:GridLayout.Axis
    [all...]
  /frameworks/support/v7/gridlayout/src/android/support/v7/widget/
GridLayout.java 162 * The horizontal orientation.
164 public static final int HORIZONTAL = LinearLayout.HORIZONTAL;
229 private static final int DEFAULT_ORIENTATION = HORIZONTAL;
298 * @return either {@link #HORIZONTAL} or {@link #VERTICAL}
318 * when orientation is {@link #HORIZONTAL} the horizontal axis is laid out first.
329 * orientation as {@code HORIZONTAL} - because {@code TextView} is capable of
333 * GridLayout, so it's fine to leave GridLayout in {@code HORIZONTAL} mode even if
336 * The default value of this property is {@link #HORIZONTAL}
1096 public final boolean horizontal; field in class:GridLayout.Axis
    [all...]
  /prebuilts/sdk/current/support/v7/gridlayout/libs/
android-support-v7-gridlayout.jar 
  /external/chromium_org/chrome/browser/resources/chromeos/
mobile_dialogs.css 49 -webkit-box-orient: horizontal;
64 -webkit-box-orient: horizontal;
  /external/chromium_org/ui/gfx/geometry/
rect_base.h 60 // Shrink the rectangle by a horizontal and vertical distance on all sides.
61 void Inset(Type horizontal, Type vertical) {
62 Inset(horizontal, vertical, horizontal, vertical);
71 // Move the rectangle by a horizontal and vertical distance.
72 void Offset(Type horizontal, Type vertical);
  /external/chromium-trace/trace-viewer/src/ui/
drag_handle.css 12 x-drag-handle.horizontal-drag-handle {
  /external/chromium_org/pdf/
draw_utils.h 25 // top-right (horizontal==true) or bottom-left (horizontal==false) point.
30 bool horizontal);
41 bool horizontal,
  /external/chromium_org/ppapi/cpp/
rect.h 58 /// @param[in] x An int32_t value representing a horizontal coordinate
220 /// in a horizontal line in the rectangle:
231 /// in a horizontal line in the rectangle:
259 /// Inset() shrinks the rectangle by a horizontal and vertical
262 /// @param[in] horizontal An int32_t value representing a horizontal
266 void Inset(int32_t horizontal, int32_t vertical) {
267 Inset(horizontal, vertical, horizontal, vertical);
283 /// Offset() moves the rectangle by a horizontal and vertical distance
    [all...]
  /frameworks/testing/espresso/espresso-lib/src/main/java/com/google/android/apps/common/testing/ui/espresso/action/
GeneralLocation.java 81 private static float[] getCoordinates(View view, Position vertical, Position horizontal) {
84 final float x = horizontal.getPosition(xy[0], view.getWidth());
  /external/chromium_org/ui/file_manager/video_player/css/
video_player.css 41 -webkit-box-orient: horizontal;
74 -webkit-box-orient: horizontal;
87 -webkit-box-orient: horizontal;

Completed in 696 milliseconds

1 2 3 4 5 6 7 8 91011