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

1 2 3 4 5 6 7 8 91011>>

  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/
TextOrientationType.java 20 HORIZONTAL,
  /frameworks/support/leanback/src/main/java/androidx/leanback/widget/
ItemAlignment.java 17 import static androidx.recyclerview.widget.RecyclerView.HORIZONTAL;
45 private int mOrientation = HORIZONTAL;
49 final public Axis horizontal = new Axis(HORIZONTAL); field in class:ItemAlignment
51 private Axis mMainAxis = horizontal;
65 if (mOrientation == HORIZONTAL) {
66 mMainAxis = horizontal;
70 mSecondAxis = horizontal;
  /frameworks/support/viewpager2/src/androidTest/java/androidx/viewpager2/widget/
OrientationTest.java 42 assertThat(viewPager.getOrientation(), equalTo(Orientation.HORIZONTAL));
48 assertThat(viewPager.getOrientation(), equalTo(Orientation.HORIZONTAL));
53 assertOrientationCorrect(R.layout.orientation_default, Orientation.HORIZONTAL);
58 assertOrientationCorrect(R.layout.orientation_horizontal, Orientation.HORIZONTAL);
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
ClipDrawableTest.java 71 new ClipDrawable((Drawable) null, Gravity.BOTTOM, ClipDrawable.HORIZONTAL);
74 new ClipDrawable(bmpDrawable, Gravity.BOTTOM, ClipDrawable.HORIZONTAL);
82 Gravity.BOTTOM, ClipDrawable.HORIZONTAL);
103 Gravity.BOTTOM, ClipDrawable.HORIZONTAL);
120 Gravity.BOTTOM, ClipDrawable.HORIZONTAL);
124 clipDrawable = new ClipDrawable(mockDrawable, Gravity.BOTTOM, ClipDrawable.HORIZONTAL);
135 Gravity.BOTTOM, ClipDrawable.HORIZONTAL);
141 clipDrawable = new ClipDrawable(bmpDrawable, Gravity.BOTTOM, ClipDrawable.HORIZONTAL);
150 Gravity.BOTTOM, ClipDrawable.HORIZONTAL);
156 clipDrawable = new ClipDrawable(bmpDrawable, Gravity.BOTTOM, ClipDrawable.HORIZONTAL);
    [all...]
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowLinearLayoutTest.java 36 assertThat(linearLayout.getOrientation()).isEqualTo(LinearLayout.HORIZONTAL);
39 linearLayout.setOrientation(LinearLayout.HORIZONTAL);
40 assertThat(linearLayout.getOrientation()).isEqualTo(LinearLayout.HORIZONTAL);
46 linearLayout.setGravity(Gravity.CENTER_VERTICAL); // Only affects horizontal.
  /external/droiddriver/src/io/appium/droiddriver/scroll/
Direction.java 76 return Axis.HORIZONTAL;
87 return Axis.HORIZONTAL;
96 HORIZONTAL {
172 case HORIZONTAL:
  /frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
TitleBar.java 31 super(context, LinearLayout.HORIZONTAL, "/bars/title_bar.xml", "title_bar.xml",
ThemePreviewNavigationBar.java 44 LinearLayout.HORIZONTAL, // In this mode, it doesn't need to be render vertically
  /frameworks/support/samples/Support7Demos/src/main/java/com/example/android/supportv7/widget/
StaggeredGridLayoutManagerActivity.java 34 return new StaggeredGridLayoutManager(3, StaggeredGridLayoutManager.HORIZONTAL);
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
GoneParentFocusedChild.java 59 mLayout.setOrientation(LinearLayout.HORIZONTAL);
66 mGoneGroup.setOrientation(LinearLayout.HORIZONTAL);
  /frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
LinearLayoutManagerWrapContentWithAspectRatioTest.java 22 import static androidx.recyclerview.widget.LinearLayoutManager.HORIZONTAL;
61 for (int orientation : new int[]{VERTICAL, HORIZONTAL}) {
78 HORIZONTAL == orientation,
89 HORIZONTAL == orientation),
115 int testOrientation = mConfig.mOrientation == VERTICAL ? HORIZONTAL : VERTICAL;
123 unlimitedSize |= testOrientation == HORIZONTAL;
136 testOrientation == HORIZONTAL ? MATCH_PARENT : WRAP_CONTENT,
140 testOrientation == HORIZONTAL ? MATCH_PARENT : WRAP_CONTENT,
GridLayoutManagerCustomSizeInScrollDirectionTest.java 18 import static androidx.recyclerview.widget.LinearLayoutManager.HORIZONTAL;
48 new Config(3, HORIZONTAL, false), addDecorOffsets, addMargins});
88 if (mConfig.mOrientation == HORIZONTAL) {
106 if (mConfig.mOrientation == HORIZONTAL) {
120 final int size = mConfig.mOrientation == HORIZONTAL ? child.getWidth()
LinearLayoutManagerWrapContentTest.java 19 import static androidx.recyclerview.widget.LinearLayoutManager.HORIZONTAL;
53 unspecifiedWithHintTest(mConfig.mOrientation == StaggeredGridLayoutManager.HORIZONTAL);
122 for (int orientation : new int[]{VERTICAL, HORIZONTAL}) {
134 new WrapContentConfig(HORIZONTAL == orientation,
159 if (mConfig.mOrientation == HORIZONTAL) {
GridLayoutManagerCacheTest.java 19 import static androidx.recyclerview.widget.LinearLayoutManager.HORIZONTAL;
116 if ((config.mOrientation == HORIZONTAL && mDx == 0)
122 boolean reverseScroll = config.mOrientation == HORIZONTAL ? mDx < 0 : mDy < 0;
LinearLayoutManagerCacheTest.java 19 import static androidx.recyclerview.widget.LinearLayoutManager.HORIZONTAL;
106 if ((config.mOrientation == HORIZONTAL && mDx == 0)
110 boolean reverseScroll = config.mOrientation == HORIZONTAL ? mDx < 0 : mDy < 0;
  /packages/apps/Settings/tests/robotests/src/com/android/settings/graph/
BottomLabelLayoutTest.java 43 mBottomLabelLayout.setOrientation(LinearLayout.HORIZONTAL);
62 assertThat(mBottomLabelLayout.getOrientation()).isEqualTo(LinearLayout.HORIZONTAL);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
FilterMirrorRepresentation.java 41 NONE('N'), VERTICAL('V'), HORIZONTAL('H'), BOTH('B');
59 return HORIZONTAL;
118 || mMirror == Mirror.HORIZONTAL) {
135 mMirror = Mirror.HORIZONTAL;
137 case HORIZONTAL:
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/widget/
TextLabelWidget.java 42 this(layoutManager, sizeMetrics, TextOrientationType.HORIZONTAL);
86 case HORIZONTAL:
121 case HORIZONTAL:
  /packages/apps/Camera2/src/com/android/camera/ui/
TopRightWeightedLayout.java 57 final boolean isHorizontal = LinearLayout.HORIZONTAL == getOrientation();
60 // Portrait orientation is out of sync, setting to horizontal
62 fixGravityAndPadding(LinearLayout.HORIZONTAL);
63 setOrientation(LinearLayout.HORIZONTAL);
94 * center horizontal for center vertical
  /external/python/cpython2/Demo/tix/samples/
BtnBox.py 33 box = Tix.ButtonBox(w, orientation=Tix.HORIZONTAL)
  /external/python/cpython2/Demo/tkinter/matt/
slider-demo-1.py 15 orient=HORIZONTAL,
  /external/python/cpython2/Lib/lib-tk/
Tkconstants.py 42 HORIZONTAL='horizontal'
  /external/python/cpython3/Lib/tkinter/
constants.py 42 HORIZONTAL='horizontal'
  /packages/apps/Dialer/java/com/android/dialer/app/widget/
DialpadSearchEmptyContentView.java 36 OrientationUtil.isLandscape(getContext()) ? LinearLayout.HORIZONTAL : LinearLayout.VERTICAL;
  /packages/apps/TV/src/com/android/tv/guide/
TimelineGridView.java 38 new LinearLayoutManager(context, LinearLayoutManager.HORIZONTAL, false) {

Completed in 614 milliseconds

1 2 3 4 5 6 7 8 91011>>