HomeSort by relevance Sort by last modified time
    Searched defs:mIsRtl (Results 1 - 17 of 17) sorted by null

  /frameworks/base/core/java/android/widget/
RtlSpacingHelper.java 35 private boolean mIsRtl = false;
47 return mIsRtl ? mRight : mLeft;
51 return mIsRtl ? mLeft : mRight;
58 if (mIsRtl) {
74 if (isRtl == mIsRtl) {
77 mIsRtl = isRtl;
Gallery.java 183 private boolean mIsRtl = true;
429 int extremeItemPosition = motionToLeft != mIsRtl ? mItemCount - 1 : 0;
501 int n = mIsRtl ? (numChildren - 1 - i) : i;
511 if (!mIsRtl) {
517 int n = mIsRtl ? numChildren - 1 - i : i;
527 if (mIsRtl) {
534 if (toLeft != mIsRtl) {
635 mIsRtl = isLayoutRtl();
700 if (mIsRtl) {
771 if (mIsRtl) {
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
RtlSpacingHelper.java 35 private boolean mIsRtl = false;
47 return mIsRtl ? mRight : mLeft;
51 return mIsRtl ? mLeft : mRight;
58 if (mIsRtl) {
74 if (isRtl == mIsRtl) {
77 mIsRtl = isRtl;
  /packages/apps/Launcher3/src/com/android/launcher3/folder/
ClippedFolderIconLayoutRule.java 25 private boolean mIsRtl;
33 mIsRtl = rtl;
70 double theta0 = mIsRtl ? 0 : Math.PI;
73 int direction = mIsRtl ? 1 : -1;
FolderPagedView.java 73 public final boolean mIsRtl;
112 mIsRtl = Utilities.isRtl(getResources());
379 (mIsRtl ? Gravity.RIGHT : Gravity.LEFT) : Gravity.CENTER_HORIZONTAL);
490 float fraction = (direction == DragController.SCROLL_LEFT) ^ mIsRtl
647 .translationXBy((direction > 0 ^ mIsRtl) ? -v.getWidth() : v.getWidth())
  /packages/apps/Launcher3/src/com/android/launcher3/pageindicators/
PageIndicatorDots.java 91 private final boolean mIsRtl;
129 mIsRtl = Utilities.isRtl(getResources());
135 if (mIsRtl) {
258 if (mIsRtl) {
302 if (mIsRtl) {
  /packages/apps/Launcher3/src/com/android/launcher3/util/
WallpaperOffsetInterpolator.java 27 private final boolean mIsRtl;
50 mIsRtl = Utilities.isRtl(workspace.getResources());
113 return mIsRtl ? 1f : 0f;
127 if (mIsRtl) {
152 if (mIsRtl) {
  /packages/apps/PhoneCommon/src/com/android/phone/common/dialpad/
DialpadView.java 67 private final boolean mIsRtl;
109 mIsRtl = TextUtils.getLayoutDirectionFromLocale(Locale.getDefault()) ==
292 dialpadKey.setTranslationX((mIsRtl ? -1 : 1) * mTranslateDistance);
328 if (mIsRtl) {
416 if (mIsRtl) {
  /packages/apps/Launcher3/src/com/android/launcher3/shortcuts/
DeepShortcutsContainer.java 86 private final boolean mIsRtl;
107 mIsRtl = Utilities.isRtl(getResources());
300 if (!canBeLeftAligned || (mIsRtl && canBeRightAligned)) {
304 if (mIsRtl) {
345 return mIsLeftAligned && !mIsRtl || !mIsLeftAligned && mIsRtl;
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
TwoPaneLayout.java 121 private boolean mIsRtl;
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...]
  /packages/apps/Launcher3/src/com/android/launcher3/allapps/
AllAppsGridAdapter.java 221 int x = mIsRtl ?
335 private final boolean mIsRtl;
370 mIsRtl = Utilities.isRtl(res);
  /packages/apps/Launcher3/src/com/android/launcher3/dragndrop/
DragController.java 79 private final boolean mIsRtl;
166 mIsRtl = Utilities.isRtl(r);
578 final int forwardDirection = mIsRtl ? SCROLL_RIGHT : SCROLL_LEFT;
579 final int backwardsDirection = mIsRtl ? SCROLL_LEFT : SCROLL_RIGHT;
DragLayer.java 98 private final boolean mIsRtl;
156 mIsRtl = Utilities.isRtl(res);
    [all...]
  /frameworks/minikin/libs/minikin/
Layout.cpp 118 mPaintFlags(paint.paintFlags), mHyphenEdit(paint.hyphenEdit), mIsRtl(dir),
141 layout->doLayoutRun(mChars, mStart, mCount, mNchars, mIsRtl, ctx);
157 bool mIsRtl;
236 && mIsRtl == other.mIsRtl
252 hash = JenkinsHashMix(hash, hash_type(mIsRtl));
444 bool mIsRtl;
484 return Iter(mBidi, mStart, mEnd, 0, mRunCount, mIsRtl);
488 return Iter(mBidi, mStart, mEnd, mRunCount, mRunCount, mIsRtl);
497 bool mIsRtl;
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
PagedView.java 190 protected final boolean mIsRtl;
213 mIsRtl = Utilities.isRtl(getResources());
514 boolean isXBeforeFirstPage = mIsRtl ? (x > mMaxScrollX) : (x < 0);
515 boolean isXAfterLastPage = mIsRtl ? (x < 0) : (x > mMaxScrollX);
517 super.scrollTo(mIsRtl ? mMaxScrollX : 0, y);
520 if (mIsRtl) {
527 super.scrollTo(mIsRtl ? 0 : mMaxScrollX, y);
530 if (mIsRtl) {
796 final int startIndex = mIsRtl ? childCount - 1 : 0;
797 final int endIndex = mIsRtl ? -1 : childCount
    [all...]
  /prebuilts/sdk/current/support/design/libs/
android-support-design.jar 
  /prebuilts/sdk/current/support/v7/appcompat/libs/
android-support-v7-appcompat.jar 

Completed in 297 milliseconds