Searched defs:HORIZONTAL (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DDeadZone.java35 public static final int HORIZONTAL = 0; field in class:DeadZone
/frameworks/base/graphics/java/android/graphics/drawable/
H A DClipDrawable.java52 public static final int HORIZONTAL = 1; field in class:ClipDrawable
60 * @param orientation Bitwise-or of {@link #HORIZONTAL} and/or {@link #VERTICAL}
85 HORIZONTAL);
204 if ((mClipState.mOrientation & HORIZONTAL) != 0) {
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DMultiPaneChallengeLayout.java41 public static final int HORIZONTAL = LinearLayout.HORIZONTAL; field in class:MultiPaneChallengeLayout
76 HORIZONTAL);
290 if (mOrientation == HORIZONTAL) {
370 final boolean fixedLayoutHorizontal = fixedLayoutSize && mOrientation == HORIZONTAL;
514 if (parent.mOrientation == HORIZONTAL) {
/frameworks/base/core/java/com/android/internal/widget/
H A DRotarySelector.java48 public static final int HORIZONTAL = 0; field in class:RotarySelector
158 * Either {@link #HORIZONTAL} or {@link #VERTICAL}.
175 mOrientation = a.getInt(R.styleable.RotarySelector_orientation, HORIZONTAL);
235 return mOrientation == HORIZONTAL;
H A DSlidingTab.java56 private static final int HORIZONTAL = 0; // as defined in attrs.xml field in class:SlidingTab
76 * Either {@link #HORIZONTAL} or {@link #VERTICAL}.
452 mOrientation = a.getInt(R.styleable.SlidingTab_orientation, HORIZONTAL);
714 return mOrientation == HORIZONTAL;
/frameworks/base/core/java/android/widget/
H A DLinearLayout.java60 public static final int HORIZONTAL = 0; field in class:LinearLayout
949 * to {@link #HORIZONTAL}.
1532 * LinearLayout is set to {@link #HORIZONTAL}.
1668 * @param orientation Pass HORIZONTAL or VERTICAL. Default
1669 * value is HORIZONTAL.
1683 * @return either {@link #HORIZONTAL} or {@link #VERTICAL}
1693 * HORIZONTAL orientation, this controls the alignment of the children.
1743 * {@link #HORIZONTAL}, the width is set to {@link LayoutParams#WRAP_CONTENT}
1748 if (mOrientation == HORIZONTAL) {
H A DGridLayout.java158 public static final int HORIZONTAL = LinearLayout.HORIZONTAL; field in class:GridLayout
218 private static final int DEFAULT_ORIENTATION = HORIZONTAL;
286 * @return either {@link #HORIZONTAL} or {@link #VERTICAL}
306 * when orientation is {@link #HORIZONTAL} the horizontal axis is laid out first.
317 * orientation as {@code HORIZONTAL} - because {@code TextView} is capable of
321 * GridLayout, so it's fine to leave GridLayout in {@code HORIZONTAL} mode even if
324 * The default value of this property is {@link #HORIZONTAL}.
326 * @param orientation either {@link #HORIZONTAL} or {@link #VERTICAL}
683 final boolean horizontal = (orientation == HORIZONTAL);
[all...]
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java157 public static final int HORIZONTAL = LinearLayout.HORIZONTAL; field in class:GridLayout
218 private static final int DEFAULT_ORIENTATION = HORIZONTAL;
290 * @return either {@link #HORIZONTAL} or {@link #VERTICAL}
304 * The default value of this property is {@link #HORIZONTAL}.
306 * @param orientation either {@link #HORIZONTAL} or {@link #VERTICAL}
663 final boolean horizontal = (orientation == HORIZONTAL);
907 boolean horizontal = (orientation == HORIZONTAL);
938 if (orientation == HORIZONTAL) {

Completed in 184 milliseconds