Searched defs:horizontal (Results 1 - 9 of 9) sorted by relevance

/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DItemAlignment.java53 final public Axis horizontal = new Axis(HORIZONTAL); field in class:ItemAlignment
55 private Axis mMainAxis = horizontal;
70 mMainAxis = horizontal;
74 mSecondAxis = horizontal;
H A DWindowAlignment.java277 final public Axis horizontal = new Axis("horizontal"); field in class:WindowAlignment
279 private Axis mMainAxis = horizontal;
294 mMainAxis = horizontal;
298 mSecondAxis = horizontal;
312 return new StringBuffer().append("horizontal=")
313 .append(horizontal.toString())
/frameworks/base/libs/hwui/utils/
H A DBlur.cpp94 void Blur::horizontal(float* weights, int32_t radius, function in class:android::uirenderer::Blur
/frameworks/base/media/java/android/media/
H A DTimedText.java146 * horizontal justification 0: left, 1: centered, -1: right
157 * @param horizontal the horizontal justification of the text.
160 public Justification(int horizontal, int vertical) { argument
161 this.horizontalJustification = horizontal;
485 int horizontal = parcel.readInt();
487 mJustification = new Justification(horizontal, vertical);
/frameworks/base/core/java/com/android/internal/widget/
H A DAutoScrollHelper.java59 * horizontal edges.
73 * Default value is 100% per second for both vertical and horizontal.
286 * @param horizontalMax The maximum horizontal scrolling velocity, or
304 * @param horizontalMin The minimum horizontal scrolling velocity, or
323 * @param horizontal The target horizontal velocity as a fraction of the
331 public AutoScrollHelper setRelativeVelocity(float horizontal, float vertical) { argument
332 mRelativeVelocity[HORIZONTAL] = horizontal / 1000f;
363 * @param horizontal The horizontal edg
371 setRelativeEdges(float horizontal, float vertical) argument
[all...]
/frameworks/support/v4/java/android/support/v4/widget/
H A DAutoScrollHelper.java60 * horizontal edges.
74 * Default value is 100% per second for both vertical and horizontal.
287 * @param horizontalMax The maximum horizontal scrolling velocity, or
305 * @param horizontalMin The minimum horizontal scrolling velocity, or
324 * @param horizontal The target horizontal velocity as a fraction of the
332 public AutoScrollHelper setRelativeVelocity(float horizontal, float vertical) { argument
333 mRelativeVelocity[HORIZONTAL] = horizontal / 1000f;
364 * @param horizontal The horizontal edg
372 setRelativeEdges(float horizontal, float vertical) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DGridLayout.java171 * The horizontal orientation.
328 * when orientation is {@link #HORIZONTAL} the horizontal axis is laid out first.
564 * When this property is {@code false} GridLayout is at liberty to place the horizontal column
627 static Alignment getAlignment(int gravity, boolean horizontal) { argument
628 int mask = horizontal ? HORIZONTAL_GRAVITY_MASK : VERTICAL_GRAVITY_MASK;
629 int shift = horizontal ? AXIS_X_SHIFT : AXIS_Y_SHIFT;
633 return horizontal ? LEFT : TOP;
635 return horizontal ? RIGHT : BOTTOM;
650 private int getDefaultMargin(View c, boolean horizontal, boolean leading) { argument
657 private int getDefaultMargin(View c, boolean isAtEdge, boolean horizontal, boolea argument
661 getDefaultMargin(View c, LayoutParams p, boolean horizontal, boolean leading) argument
674 getMargin1(View view, boolean horizontal, boolean leading) argument
682 getMargin(View view, boolean horizontal, boolean leading) argument
695 getTotalMargin(View child, boolean horizontal) argument
826 checkLayoutParams(LayoutParams lp, boolean horizontal) argument
1069 getMeasurement(View c, boolean horizontal) argument
1073 getMeasurementIncludingMargin(View c, boolean horizontal) argument
1196 public final boolean horizontal; field in class:GridLayout.Axis
1231 Axis(boolean horizontal) argument
2381 getOffset(GridLayout gl, View c, Alignment a, int size, boolean horizontal) argument
2539 getAbsoluteAlignment(boolean horizontal) argument
[all...]
H A DEditor.java2005 private void updateCursorPosition(int cursorIndex, int top, int bottom, float horizontal) { argument
2013 horizontal = Math.max(0.5f, horizontal - 0.5f);
2014 final int left = (int) (horizontal) - mTempRect.left;
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java164 * The horizontal orientation.
320 * when orientation is {@link #HORIZONTAL} the horizontal axis is laid out first.
555 * When this property is {@code false} GridLayout is at liberty to place the horizontal column
614 static Alignment getAlignment(int gravity, boolean horizontal) { argument
615 int mask = horizontal ? HORIZONTAL_GRAVITY_MASK : VERTICAL_GRAVITY_MASK;
616 int shift = horizontal ? AXIS_X_SHIFT : AXIS_Y_SHIFT;
620 return horizontal ? LEFT : TOP;
622 return horizontal ? RIGHT : BOTTOM;
637 private int getDefaultMargin(View c, boolean horizontal, boolean leading) { argument
644 private int getDefaultMargin(View c, boolean isAtEdge, boolean horizontal, boolea argument
648 getDefaultMargin(View c, LayoutParams p, boolean horizontal, boolean leading) argument
661 getMargin1(View view, boolean horizontal, boolean leading) argument
673 getMargin(View view, boolean horizontal, boolean leading) argument
686 getTotalMargin(View child, boolean horizontal) argument
805 checkLayoutParams(LayoutParams lp, boolean horizontal) argument
969 getMeasurement(View c, boolean horizontal) argument
973 getMeasurementIncludingMargin(View c, boolean horizontal) argument
1091 public final boolean horizontal; field in class:GridLayout.Axis
1126 Axis(boolean horizontal) argument
2275 getOffset(GridLayout gl, View c, Alignment a, int size, boolean horizontal) argument
2433 getAbsoluteAlignment(boolean horizontal) argument
[all...]

Completed in 299 milliseconds