Searched defs:LEFT (Results 1 - 25 of 26) sorted by relevance

12

/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DTextAlignment.java26 LEFT(0x0), enum constant in enum:TextAlignment
/frameworks/base/core/tests/coretests/src/android/widget/espresso/
H A DCustomViewActions.java40 * @param hRef LEFT, RIGHT, CENTER to specify an x reference
67 LEFT, RIGHT, CENTER enum constant in enum:CustomViewActions.RelativeCoordinatesProvider.HorizontalReference
91 case LEFT:
H A DTextViewAssertions.java127 return new CursorPositionAssertion(CursorPositionAssertion.LEFT);
188 @IntDef({LEFT, RIGHT})
190 public static final int LEFT = 0; field in class:TextViewAssertions.CursorPositionAssertion
213 case LEFT:
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/events/ui/focus/
H A DNavigateTaskViewEvent.java27 UNDEFINED, UP, DOWN, LEFT, RIGHT; enum constant in enum:NavigateTaskViewEvent.Direction
42 return Direction.LEFT;
/frameworks/opt/photoviewer/src/com/android/ex/photo/
H A DPhotoViewPager.java35 public static enum InterceptType { NONE, LEFT, RIGHT, BOTH } enum constant in enum:PhotoViewPager.InterceptType
119 (intercept == InterceptType.BOTH || intercept == InterceptType.LEFT);
/frameworks/base/core/java/android/database/
H A DCursorJoiner.java32 * case LEFT:
62 LEFT, enum constant in enum:CursorJoiner.Result
126 case LEFT:
152 * @return LEFT, if the row pointed to by the left cursor is unique, RIGHT
171 mCompareResult = Result.LEFT;
181 mCompareResult = Result.LEFT;
219 case LEFT:
/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
H A DNavBarTuner.java67 private static final String LEFT = "left"; field in class:NavBarTuner
102 bindButton(NAV_BAR_LEFT, NAVSPACE, LEFT);
/frameworks/av/media/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_dec_defs.h89 #define LEFT 0 macro
/frameworks/base/core/java/android/view/
H A DGravity.java50 public static final int LEFT = (AXIS_PULL_BEFORE|AXIS_SPECIFIED)<<AXIS_X_SHIFT; field in class:Gravity
66 public static final int FILL_HORIZONTAL = LEFT|RIGHT;
85 * absolute LEFT/RIGHT).
115 public static final int START = RELATIVE_LAYOUT_DIRECTION | LEFT;
175 * @param xAdj Offset to apply to the X axis. If gravity is LEFT this
281 * @param xAdj Offset to apply to the X axis. If gravity is LEFT this
404 * if horizontal direction is LTR, then START will set LEFT and END will set RIGHT.
405 * if horizontal direction is RTL, then START will set RIGHT and END will set LEFT.
423 // Set the LEFT bit
424 result |= LEFT;
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNavigationBarInflaterView.java62 public static final String LEFT = "left"; field in class:NavigationBarInflaterView
282 if (LEFT.equals(button)) {
H A DSignalDrawable.java401 private static final float LEFT = (CENTER_X - (SLASH_WIDTH / 2)) / SCALE; field in class:SignalDrawable.SlashArtist
414 scale(LEFT, width),
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DAccessibilityGestureDetector.java60 private static final int LEFT = 0; field in class:AccessibilityGestureDetector
558 case LEFT:
590 /** Maps a vector to a dominant direction in set {LEFT, RIGHT, UP, DOWN}. */
594 return (dX < 0) ? LEFT : RIGHT;
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_deblocking.c137 enum { TOP = 0, LEFT = 1, INNER = 2 }; enumerator in enum:__anon738
1437 thresholds[LEFT].alpha = alphas[indexA];
1438 thresholds[LEFT].beta = betas[indexB];
1439 thresholds[LEFT].tc0 = tc0[indexA];
1443 thresholds[LEFT].alpha = thresholds[INNER].alpha;
1444 thresholds[LEFT].beta = thresholds[INNER].beta;
1445 thresholds[LEFT].tc0 = thresholds[INNER].tc0;
1520 thresholds[LEFT].alpha = alphas[indexA];
1521 thresholds[LEFT].beta = betas[indexB];
1522 thresholds[LEFT]
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DPagingIndicator.java430 mDots[i].mDirection = i == mPreviousPage ? Dot.LEFT : Dot.RIGHT;
434 mDots[mCurrentPage].mDirection = mPreviousPage < mCurrentPage ? Dot.LEFT : Dot.RIGHT;
461 static final float LEFT = -1; field in class:PagingIndicator.Dot
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/api/
H A DarmCOMM_s.h461 IF "$a0":LEFT:1="[" variable
494 _base SETS ("$a0":LEFT:(:LEN:"$a0"-1)):RIGHT:(:LEN:"$a0"-2) ;// remove []
496 IF _offset:LEFT:1="+" variable
500 IF _offset:LEFT:1="-" variable
519 _offset SETS "$a1":LEFT:(:LEN:("$a1")-2)
910 _pl SETS "$platstall":LEFT:(_pllen - 2)
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/api/
H A DarmCOMM_s.h464 IF "$a0":LEFT:1="[" variable
497 _base SETS ("$a0":LEFT:(:LEN:"$a0"-1)):RIGHT:(:LEN:"$a0"-2) ;// remove []
499 IF _offset:LEFT:1="+" variable
503 IF _offset:LEFT:1="-" variable
522 _offset SETS "$a1":LEFT:(:LEN:("$a1")-2)
913 _pl SETS "$platstall":LEFT:(_pllen - 2)
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
H A DTaskStack.java264 public static final DockState LEFT = new DockState(DOCKED_LEFT, field in class:TaskStack.DockState
/frameworks/base/core/java/android/widget/
H A DFastScroller.java1611 private static Property<View, Integer> LEFT = new IntProperty<View>("left") { field in class:FastScroller
1675 final PropertyValuesHolder left = PropertyValuesHolder.ofInt(LEFT, bounds.left);
H A DGridLayout.java642 return horizontal ? LEFT : TOP;
2174 * Describes how the child views are positioned. Default is {@code LEFT | BASELINE}.
2743 * {@link #TOP}, {@link #LEFT}, {@link #BOTTOM}, {@link #RIGHT}, {@link #START},
2880 public static final Alignment LEFT = createSwitchingAlignment(START, END); field in class:GridLayout
/frameworks/base/core/java/com/android/internal/widget/helper/
H A DItemTouchHelper.java87 public static final int LEFT = 1 << 2; field in class:ItemTouchHelper
97 * Horizontal start direction. Resolved to LEFT or RIGHT depending on RecyclerView's layout
100 public static final int START = LEFT << 2;
103 * Horizontal end direction. Resolved to LEFT or RIGHT depending on RecyclerView's layout
501 if ((mSelectedFlags & (LEFT | RIGHT)) != 0) {
576 case LEFT:
980 if (dx < 0 && (swipeFlags & LEFT) == 0) {
1137 if ((directionFlags & LEFT) == 0) {
1198 if ((flags & (LEFT | RIGHT)) != 0) {
1199 final int dirFlag = mDx > 0 ? RIGHT : LEFT;
[all...]
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/helper/
H A DItemTouchHelper.java85 public static final int LEFT = 1 << 2; field in class:ItemTouchHelper
95 * Horizontal start direction. Resolved to LEFT or RIGHT depending on RecyclerView's layout
98 public static final int START = LEFT << 2;
101 * Horizontal end direction. Resolved to LEFT or RIGHT depending on RecyclerView's layout
499 if ((mSelectedFlags & (LEFT | RIGHT)) != 0) {
574 case LEFT:
978 if (dx < 0 && (swipeFlags & LEFT) == 0) {
1135 if ((directionFlags & LEFT) == 0) {
1196 if ((flags & (LEFT | RIGHT)) != 0) {
1197 final int dirFlag = mDx > 0 ? RIGHT : LEFT;
[all...]
/frameworks/base/rs/java/android/renderscript/
H A DScriptIntrinsicBLAS.java221 @IntDef({LEFT, RIGHT})
235 public static final int LEFT = 141; field in class:ScriptIntrinsicBLAS
239 if (Side != LEFT && Side != RIGHT) {
2830 if (Side == LEFT) {
2950 if (Side == LEFT) {
3069 if ((Side == LEFT && adim != B.getType().getY()) ||
/frameworks/rs/support/java/src/android/support/v8/renderscript/
H A DScriptIntrinsicBLAS.java228 @IntDef({LEFT, RIGHT})
242 public static final int LEFT = 141; field in class:ScriptIntrinsicBLAS
246 if (Side != LEFT && Side != RIGHT) {
3584 if (Side == LEFT) {
3736 if (Side == LEFT) {
3887 if ((Side == LEFT && adim != B.getType().getY()) ||
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java626 return horizontal ? LEFT : TOP;
2064 * Describes how the child views are positioned. Default is {@code LEFT | BASELINE}.
2633 * {@link #TOP}, {@link #LEFT}, {@link #BOTTOM}, {@link #RIGHT}, {@link #START},
2801 public static final Alignment LEFT = createSwitchingAlignment(START, END); field in class:GridLayout
/frameworks/base/graphics/java/android/graphics/
H A DPaint.java108 Align.LEFT, Align.CENTER, Align.RIGHT
445 * [x,y] coordinates. The default is LEFT.
451 LEFT (0), enum constant in enum:Paint.Align
1263 * text is positioned relative to its origin. LEFT align means that all of
1265 * specifieds the LEFT edge of the text) and so on.
1275 * text is positioned relative to its origin. LEFT align means that all of
1277 * specifieds the LEFT edge of the text) and so on.

Completed in 1128 milliseconds

12