/frameworks/base/core/java/com/android/internal/widget/ |
D | AutoScrollHelper.java | 132 private static final int HORIZONTAL = 0; field in AutoScrollHelper 293 mMaximumVelocity[HORIZONTAL] = horizontalMax / 1000f; in setMaximumVelocity() 311 mMinimumVelocity[HORIZONTAL] = horizontalMin / 1000f; in setMinimumVelocity() 332 mRelativeVelocity[HORIZONTAL] = horizontal / 1000f; in setRelativeVelocity() 372 mRelativeEdges[HORIZONTAL] = horizontal; in setRelativeEdges() 394 mMaximumEdges[HORIZONTAL] = horizontalMax; in setMaximumEdges() 467 HORIZONTAL, event.getX(), v.getWidth(), mTarget.getWidth()); in onTouch()
|
D | OrientationHelper.java | 39 public static final int HORIZONTAL = LinearLayout.HORIZONTAL; field in OrientationHelper 235 case HORIZONTAL: in createOrientationHelper()
|
D | LinearLayoutManager.java | 47 public static final int HORIZONTAL = OrientationHelper.HORIZONTAL; field in LinearLayoutManager 281 return mOrientation == HORIZONTAL; in canScrollHorizontally() 325 if (orientation != HORIZONTAL && orientation != VERTICAL) { in setOrientation() 449 if (mOrientation == HORIZONTAL) { in computeScrollVectorForPosition() 1045 if (mOrientation == HORIZONTAL) { in scrollVerticallyBy() 1281 int delta = (mOrientation == HORIZONTAL) ? dx : dy; in collectAdjacentPrefetchPositions() 1636 return mOrientation == HORIZONTAL ? LayoutState.LAYOUT_START in convertFocusDirectionToLayoutDirection() 1639 return mOrientation == HORIZONTAL ? LayoutState.LAYOUT_END in convertFocusDirectionToLayoutDirection()
|
D | ButtonBarLayout.java | 148 setOrientation(stacked ? LinearLayout.VERTICAL : LinearLayout.HORIZONTAL); in setStacked()
|
D | SlidingTab.java | 58 private static final int HORIZONTAL = 0; // as defined in attrs.xml field in SlidingTab 466 mOrientation = a.getInt(R.styleable.SlidingTab_orientation, HORIZONTAL); in SlidingTab() 729 return mOrientation == HORIZONTAL;
|
/frameworks/base/core/tests/coretests/src/android/widget/focus/ |
D | GoneParentFocusedChild.java | 59 mLayout.setOrientation(LinearLayout.HORIZONTAL); in onCreate() 66 mGoneGroup.setOrientation(LinearLayout.HORIZONTAL); in onCreate()
|
D | AdjacentVerticalRectLists.java | 66 mLayout.setOrientation(LinearLayout.HORIZONTAL); in onCreate()
|
D | VerticalFocusSearch.java | 134 ll.setOrientation(LinearLayout.HORIZONTAL); in addSkinny()
|
D | HorizontalFocusSearch.java | 62 mLayout.setOrientation(LinearLayout.HORIZONTAL); in onCreate()
|
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
D | MultiLayersActivity.java | 37 row1.setOrientation(LinearLayout.HORIZONTAL); in onCreate() 42 row2.setOrientation(LinearLayout.HORIZONTAL); in onCreate()
|
D | PictureCaptureDemo.java | 54 inner.setOrientation(LinearLayout.HORIZONTAL); in onCreate()
|
/frameworks/base/packages/SystemUI/legacy/recents/src/com/android/systemui/recents/views/ |
D | DockState.java | 65 @IntDef({HORIZONTAL, VERTICAL}) 67 private static final int HORIZONTAL = 0; field in DockState 71 public static final DockState NONE = new DockState(DOCKED_INVALID, -1, 80, 255, HORIZONTAL, 78 SPLIT_SCREEN_CREATE_MODE_TOP_OR_LEFT, DOCK_AREA_ALPHA, 0, HORIZONTAL, 86 SPLIT_SCREEN_CREATE_MODE_BOTTOM_OR_RIGHT, DOCK_AREA_ALPHA, 0, HORIZONTAL,
|
/frameworks/base/graphics/java/android/graphics/drawable/ |
D | ClipDrawable.java | 57 public static final int HORIZONTAL = 1; field in ClipDrawable 190 if ((mState.mOrientation & HORIZONTAL) != 0) { in draw() 220 int mOrientation = HORIZONTAL;
|
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/ |
D | TitleBar.java | 31 super(context, LinearLayout.HORIZONTAL, "title_bar.xml", simulatedPlatformVersion); in TitleBar()
|
D | ThemePreviewNavigationBar.java | 44 LinearLayout.HORIZONTAL, // In this mode, it doesn't need to be render vertically in ThemePreviewNavigationBar()
|
D | NavigationBar.java | 104 if (orientation == HORIZONTAL) { in setSize()
|
D | StatusBar.java | 71 super(context, LinearLayout.HORIZONTAL, "status_bar.xml", simulatedPlatformVersion); in StatusBar()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | DeadZone.java | 43 public static final int HORIZONTAL = 0; // Consume taps along the top edge. field in DeadZone 74 onConfigurationChanged(HORIZONTAL); in DeadZone()
|
/frameworks/base/core/tests/coretests/src/android/util/ |
D | ListItemFactory.java | 94 ll.setOrientation(LinearLayout.HORIZONTAL); in horizontalButtonSlots() 238 ll.setOrientation(LinearLayout.HORIZONTAL); in doubleText()
|
/frameworks/base/tests/UiBench/src/com/android/test/uibench/ |
D | InvalidateTreeActivity.java | 46 parent.setOrientation(vertical ? LinearLayout.VERTICAL : LinearLayout.HORIZONTAL); in createQuadTree()
|
/frameworks/base/apct-tests/perftests/core/src/android/view/ |
D | ViewShowHidePerfTest.java | 83 … parent.setOrientation(vertical ? LinearLayout.VERTICAL : LinearLayout.HORIZONTAL); 108 root.setOrientation(LinearLayout.HORIZONTAL);
|
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/view/ |
D | ButtonBarLayout.java | 98 setOrientation(stacked ? LinearLayout.VERTICAL : LinearLayout.HORIZONTAL); in setStacked()
|
/frameworks/base/core/tests/coretests/src/android/widget/listview/ |
D | AdjacentListsWithAdjacentISVsInside.java | 91 ll.setOrientation(LinearLayout.HORIZONTAL); in combineAdjacent()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/ |
D | SegmentedButtons.java | 48 setOrientation(HORIZONTAL); in SegmentedButtons()
|
/frameworks/base/core/java/android/widget/ |
D | GridLayout.java | 178 HORIZONTAL, 187 public static final int HORIZONTAL = LinearLayout.HORIZONTAL; field in GridLayout 260 private static final int DEFAULT_ORIENTATION = HORIZONTAL; 334 @InspectableProperty.EnumEntry(value = HORIZONTAL, name = "horizontal"), 765 final boolean horizontal = (mOrientation == HORIZONTAL); in validateLayoutParams() 1047 boolean horizontal = (mOrientation == HORIZONTAL); in measureChildrenWithMargins() 1090 if (mOrientation == HORIZONTAL) { in onMeasure()
|