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

1 2

  /frameworks/base/core/java/android/widget/
CheckedTextView.java 178 setBasePadding(isLayoutRtl());
191 if (isLayoutRtl()) {
204 private void setBasePadding(boolean isLayoutRtl) {
205 if (isLayoutRtl) {
232 final boolean isLayoutRtl = isLayoutRtl();
238 if (isLayoutRtl) {
CompoundButton.java 230 if (!isLayoutRtl()) {
242 if (isLayoutRtl()) {
280 int left = isLayoutRtl() ? getWidth() - drawableWidth : 0;
281 int right = isLayoutRtl() ? getWidth() : drawableWidth;
CalendarView.java     [all...]
Switch.java 631 newState = isLayoutRtl() ? (xvel < 0) : (xvel > 0);
649 if (isLayoutRtl()) {
657 if (isLayoutRtl()) {
680 if (isLayoutRtl()) {
764 if (!isLayoutRtl()) {
776 if (isLayoutRtl()) {
ExpandableListView.java 302 final boolean isLayoutRtl = isLayoutRtl();
303 if (isLayoutRtl) {
328 final boolean isLayoutRtl = isLayoutRtl();
329 if (isLayoutRtl) {
408 final boolean isLayoutRtl = isLayoutRtl();
424 if (isLayoutRtl) {
    [all...]
RelativeLayout.java 463 if (isLayoutRtl() && myWidth == -1) {
500 if (isLayoutRtl()) {
632 if (isLayoutRtl()) {
    [all...]
LinearLayout.java 348 final boolean isLayoutRtl = isLayoutRtl();
356 if (isLayoutRtl) {
370 if (isLayoutRtl) {
377 if (isLayoutRtl) {
    [all...]
AbsSeekBar.java 308 final int left = (isLayoutRtl() && mMirrorForRtl) ? available - thumbPos : thumbPos;
429 if (isLayoutRtl() && mMirrorForRtl) {
Spinner.java     [all...]
GridLayout.java 618 boolean leading1 = (horizontal && isLayoutRtl()) ? !leading : leading;
827 if (isLayoutRtl()) {
    [all...]
GridView.java 303 final boolean isLayoutRtl = isLayoutRtl();
308 if (isLayoutRtl) {
324 nextLeft += (isLayoutRtl ? -1 : +1) * deltaLeft;
343 nextLeft += (isLayoutRtl ? -1 : +1) * columnWidth;
    [all...]
  /frameworks/support/v7/gridlayout/src/android/support/v7/widget/
ViewGroup.java 80 protected static boolean isLayoutRtl(View view) {
GridLayout.java 598 boolean leading1 = (horizontal && isLayoutRtl(this)) ? !leading : leading;
773 if (isLayoutRtl(this)) {
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
ActionBarContextView.java 457 final boolean isLayoutRtl = isLayoutRtl();
458 int x = isLayoutRtl ? r - l - getPaddingRight() : getPaddingLeft();
464 final int startMargin = (isLayoutRtl ? lp.rightMargin : lp.leftMargin);
465 final int endMargin = (isLayoutRtl ? lp.leftMargin : lp.rightMargin);
466 x = next(x, startMargin, isLayoutRtl);
467 x += positionChild(mClose, x, y, contentHeight, isLayoutRtl);
468 x = next(x, endMargin, isLayoutRtl);
479 x += positionChild(mTitleLayout, x, y, contentHeight, isLayoutRtl);
483 x += positionChild(mCustomView, x, y, contentHeight, isLayoutRtl);
    [all...]
ActionBarView.java     [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
QuickSettingsContainerView.java 106 final boolean isLayoutRtl = isLayoutRtl();
132 final int childLeft = (isLayoutRtl) ? width - x - childWidth : x;
PhoneStatusBarView.java 113 final boolean isLayoutRtl = isLayoutRtl();
138 final boolean showSettings = isLayoutRtl ? (x < region) : (w - region < x);
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
PercentageBarChart.java 82 final boolean isLayoutRtl = isLayoutRtl();
83 if (isLayoutRtl) {
  /packages/providers/DownloadProvider/ui/src/com/android/providers/downloads/ui/
DownloadItem.java 86 if (isLayoutRtl()) {
  /packages/apps/Launcher2/src/com/android/launcher2/
ShortcutAndWidgetContainer.java 127 return mInvertIfRtl && isLayoutRtl();
130 public boolean isLayoutRtl() {
PagedView.java 260 * Note: this is a reimplementation of View.isLayoutRtl() since that is currently hidden api.
262 public boolean isLayoutRtl() {
411 final boolean isRtl = isLayoutRtl();
587 final int index = isLayoutRtl() ? 0 : childCount - 1;
653 final boolean isRtl = isLayoutRtl();
736 final boolean isRtl = isLayoutRtl();
784 final boolean isRtl = isLayoutRtl();
    [all...]
  /frameworks/base/core/java/com/android/internal/view/menu/
ActionMenuView.java 403 final boolean isLayoutRtl = isLayoutRtl();
420 if (isLayoutRtl) {
459 if (isLayoutRtl) {
  /frameworks/base/core/java/android/view/
FocusFinder.java 132 if (root.isLayoutRtl()) {
144 if (root.isLayoutRtl()) {
175 mSequentialFocusComparator.setIsLayoutRtl(root.isLayoutRtl());
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
ContactListPinnedHeaderView.java 127 if (isLayoutRtl()) {
ContactListItemView.java 483 final boolean isLayoutRtl = isLayoutRtl();
487 mHeaderTextView.layout(isLayoutRtl ? leftBound : leftBound + mHeaderTextIndent,
489 isLayoutRtl ? rightBound - mHeaderTextIndent : rightBound,
572 if (isLayoutRtl) {
    [all...]

Completed in 1334 milliseconds

1 2