Searched defs:mIsRtl (Results 1 - 7 of 7) sorted by relevance

/packages/apps/PhoneCommon/src/com/android/phone/common/dialpad/
H A DDialpadView.java63 private final boolean mIsRtl; field in class:DialpadView
105 mIsRtl = TextUtils.getLayoutDirectionFromLocale(Locale.getDefault()) ==
265 dialpadKey.setTranslationX((mIsRtl ? -1 : 1) * mTranslateDistance);
301 if (mIsRtl) {
365 if (mIsRtl) {
/packages/apps/Launcher3/src/com/android/launcher3/
H A DFolderPagedView.java64 public final boolean mIsRtl; field in class:FolderPagedView
98 mIsRtl = Utilities.isRtl(getResources());
358 (mIsRtl ? Gravity.RIGHT : Gravity.LEFT) : Gravity.CENTER_HORIZONTAL);
464 float fraction = (direction == DragController.SCROLL_LEFT) ^ mIsRtl
621 .translationXBy((direction > 0 ^ mIsRtl) ? -v.getWidth() : v.getWidth())
H A DDragController.java74 private final boolean mIsRtl; field in class:DragController
161 mIsRtl = Utilities.isRtl(r);
552 final int forwardDirection = mIsRtl ? SCROLL_RIGHT : SCROLL_LEFT;
553 final int backwardsDirection = mIsRtl ? SCROLL_LEFT : SCROLL_RIGHT;
H A DDragLayer.java67 private final boolean mIsRtl; field in class:DragLayer
118 mIsRtl = Utilities.isRtl(res);
916 CellLayout leftPage = (CellLayout) workspace.getChildAt(mIsRtl ? page + 1 : page - 1);
917 CellLayout rightPage = (CellLayout) workspace.getChildAt(mIsRtl ? page - 1 : page + 1);
H A DPagedView.java203 protected final boolean mIsRtl; field in class:PagedView
235 mIsRtl = Utilities.isRtl(getResources());
579 boolean isXBeforeFirstPage = mIsRtl ? (x > mMaxScrollX) : (x < 0);
580 boolean isXAfterLastPage = mIsRtl ? (x < 0) : (x > mMaxScrollX);
582 super.scrollTo(mIsRtl ? mMaxScrollX : 0, y);
585 if (mIsRtl) {
592 super.scrollTo(mIsRtl ? 0 : mMaxScrollX, y);
595 if (mIsRtl) {
854 final int startIndex = mIsRtl ? childCount - 1 : 0;
855 final int endIndex = mIsRtl
[all...]
/packages/apps/Launcher3/src/com/android/launcher3/allapps/
H A DAllAppsGridAdapter.java209 int x = mIsRtl ?
334 @Thunk boolean mIsRtl; field in class:AllAppsGridAdapter
408 mIsRtl = rtl;
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DTwoPaneLayout.java121 private boolean mIsRtl; field in class:TwoPaneLayout
156 if (mIsRtl) {
275 mIsRtl = ViewUtils.isViewRtl(this);
330 if (mIsRtl) {
349 final int openDrawerDelta = mIsRtl ? -mDrawerWidthDelta : mDrawerWidthDelta;
452 final int xEnd = mIsRtl ? mListLeft : mListRight;
501 (mIsRtl ? -mDrawerWidthDelta : mDrawerWidthDelta);
506 if (mIsRtl) {
518 if (mIsRtl) {
537 if (mIsRtl) {
[all...]

Completed in 152 milliseconds