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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/support/leanback/src/main/java/androidx/leanback/widget/
ItemAlignment.java 18 import static androidx.recyclerview.widget.RecyclerView.VERTICAL;
47 final public Axis vertical = new Axis(VERTICAL); field in class:ItemAlignment
53 private Axis mSecondAxis = vertical;
67 mSecondAxis = vertical;
69 mMainAxis = vertical;
ListRowView.java 53 setOrientation(LinearLayout.VERTICAL);
  /packages/apps/Camera2/src/com/android/camera/ui/
TopRightWeightedLayout.java 67 // Landscape orientation is out of sync, setting to vertical
69 fixGravityAndPadding(LinearLayout.VERTICAL);
70 setOrientation(LinearLayout.VERTICAL);
94 * center horizontal for center vertical
106 if (direction == LinearLayout.VERTICAL) {
118 if (direction == LinearLayout.VERTICAL) {
132 if (direction == LinearLayout.VERTICAL) {
  /frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
GridLayoutManagerCachedBordersTest.java 20 import static androidx.recyclerview.widget.LinearLayoutManager.VERTICAL;
58 final boolean vertical = mConfig.mOrientation == GridLayoutManager.VERTICAL;
59 final int expectedSizeSum = vertical ? recyclerView.getWidth() : recyclerView.getHeight();
66 childrenSizeSum += vertical ? child.getWidth() : child.getHeight();
77 for (int orientation : new int[]{VERTICAL, HORIZONTAL}) {
LinearLayoutManagerWrapContentWithAspectRatioTest.java 23 import static androidx.recyclerview.widget.LinearLayoutManager.VERTICAL;
61 for (int orientation : new int[]{VERTICAL, HORIZONTAL}) {
79 VERTICAL == orientation),
88 VERTICAL == orientation,
115 int testOrientation = mConfig.mOrientation == VERTICAL ? HORIZONTAL : VERTICAL;
119 unlimitedSize = testOrientation == VERTICAL;
137 testOrientation == VERTICAL ? MATCH_PARENT : WRAP_CONTENT)
141 testOrientation == VERTICAL ? MATCH_PARENT : WRAP_CONTENT)
GridLayoutManagerRtlTest.java 20 import static androidx.recyclerview.widget.LinearLayoutManager.VERTICAL;
78 if (mOneLine && mConfig.mOrientation != VERTICAL) {
124 final int secondChildPos = mConfig.mOrientation == VERTICAL ? 1
131 if (mConfig.mOrientation == VERTICAL || !mConfig.mReverseLayout) {
LinearLayoutManagerWrapContentTest.java 20 import static androidx.recyclerview.widget.LinearLayoutManager.VERTICAL;
122 for (int orientation : new int[]{VERTICAL, HORIZONTAL}) {
135 VERTICAL == orientation, new Rect(padding))
171 if (mConfig.mOrientation == VERTICAL) {
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/permission/ui/
ButtonBarLayout.java 27 * An extension of LinearLayout that automatically switches to vertical
44 if (!mAllowStacking && getOrientation() == LinearLayout.VERTICAL) {
98 setOrientation(stacked ? LinearLayout.VERTICAL : LinearLayout.HORIZONTAL);
115 return getOrientation() == LinearLayout.VERTICAL;
  /external/droiddriver/src/io/appium/droiddriver/scroll/
Direction.java 54 return Axis.VERTICAL;
65 return Axis.VERTICAL;
104 VERTICAL {
180 case VERTICAL:
Scrollers.java 79 Axis.VERTICAL, new AccessibilityEventScrollStepStrategy(uiAutomation, 1000L,
85 Axis.VERTICAL, StaticSentinelStrategy.DEFAULT, true/* startFromBeginning */);
  /frameworks/base/core/tests/coretests/src/android/view/
Merge.java 38 mLayout.setOrientation(LinearLayout.VERTICAL);
  /frameworks/support/samples/Support7Demos/src/main/java/com/example/android/supportv7/widget/
StaggeredGridLayoutManagerActivity.java 32 return new StaggeredGridLayoutManager(3, StaggeredGridLayoutManager.VERTICAL);
41 new ConfigToggle(this, R.string.vertical) {
  /development/samples/ApiDemos/src/com/example/android/apis/inputmethod/
HintLocales.java 28 import static android.widget.LinearLayout.VERTICAL;
71 layout.setOrientation(VERTICAL);
  /frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/
GridLayoutTest.java 26 import static android.widget.GridLayout.VERTICAL;
32 container.setOrientation(VERTICAL);
LinearLayoutTest.java 30 container.setOrientation(LinearLayout.VERTICAL);
  /packages/apps/Settings/src/com/android/settings/graph/
BottomLabelLayout.java 31 * An extension of LinearLayout that automatically switches to vertical
85 setOrientation(stacked ? LinearLayout.VERTICAL : LinearLayout.HORIZONTAL);
95 return getOrientation() == LinearLayout.VERTICAL;
  /frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
DividerItemDecoration.java 34 * {@link #VERTICAL} orientations.
44 public static final int VERTICAL = LinearLayout.VERTICAL;
52 * Current orientation. Either {@link #HORIZONTAL} or {@link #VERTICAL}.
63 * @param orientation Divider orientation. Should be {@link #HORIZONTAL} or {@link #VERTICAL}.
80 * @param orientation {@link #HORIZONTAL} or {@link #VERTICAL}
83 if (orientation != HORIZONTAL && orientation != VERTICAL) {
85 "Invalid orientation. It should be either HORIZONTAL or VERTICAL");
107 if (mOrientation == VERTICAL) {
175 if (mOrientation == VERTICAL) {
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
FilterMirrorRepresentation.java 41 NONE('N'), VERTICAL('V'), HORIZONTAL('H'), BOTH('B');
57 return VERTICAL;
126 || mMirror == Mirror.VERTICAL) {
141 mMirror = Mirror.VERTICAL;
143 case VERTICAL:
  /frameworks/base/core/java/com/android/internal/widget/
ButtonBarLayout.java 29 * An extension of LinearLayout that automatically switches to vertical
54 if (!mAllowStacking && getOrientation() == LinearLayout.VERTICAL) {
146 setOrientation(stacked ? LinearLayout.VERTICAL : LinearLayout.HORIZONTAL);
163 return getOrientation() == LinearLayout.VERTICAL;
  /external/python/cpython2/Lib/lib-tk/
Tkconstants.py 43 VERTICAL='vertical'
  /external/python/cpython3/Lib/tkinter/
constants.py 43 VERTICAL='vertical'
  /frameworks/base/tests/ImfTest/src/com/android/imftest/samples/
ManyEditTextActivityScrollResize.java 43 layout.setOrientation(LinearLayout.VERTICAL);
  /packages/apps/Dialer/java/com/android/dialer/app/widget/
DialpadSearchEmptyContentView.java 36 OrientationUtil.isLandscape(getContext()) ? LinearLayout.HORIZONTAL : LinearLayout.VERTICAL;
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
Tkconstants.py 43 VERTICAL='vertical'
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
Tkconstants.py 43 VERTICAL='vertical'

Completed in 1150 milliseconds

1 2 3 4 5 6 7 8 91011>>