Searched refs:getLayoutDirection (Results 1 - 25 of 103) sorted by relevance

12345

/frameworks/support/v4/api23/android/support/v4/graphics/drawable/
H A DDrawableCompatApi23.java29 public static int getLayoutDirection(Drawable drawable) { method in class:DrawableCompatApi23
30 return drawable.getLayoutDirection();
/frameworks/support/v4/jellybean-mr1/android/support/v4/view/
H A DMarginLayoutParamsCompatJellybeanMr1.java43 public static int getLayoutDirection(ViewGroup.MarginLayoutParams lp) { method in class:MarginLayoutParamsCompatJellybeanMr1
44 return lp.getLayoutDirection();
H A DViewCompatJellybeanMr1.java39 public static int getLayoutDirection(View view) { method in class:ViewCompatJellybeanMr1
40 return view.getLayoutDirection();
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DWrappedRecyclerView.java55 public int getLayoutDirection() { method in class:WrappedRecyclerView
57 return super.getLayoutDirection();
/frameworks/support/v4/jellybean-mr1/android/support/v4/widget/
H A DTextViewCompatJbMr1.java30 boolean rtl = textView.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL;
37 boolean rtl = textView.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL;
44 boolean rtl = textView.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL;
/frameworks/support/v4/java/android/support/v4/view/
H A DMarginLayoutParamsCompat.java34 int getLayoutDirection(ViewGroup.MarginLayoutParams lp); method in interface:MarginLayoutParamsCompat.MarginLayoutParamsCompatImpl
67 public int getLayoutDirection(ViewGroup.MarginLayoutParams lp) { method in class:MarginLayoutParamsCompat.MarginLayoutParamsCompatImplBase
110 public int getLayoutDirection(ViewGroup.MarginLayoutParams lp) { method in class:MarginLayoutParamsCompat.MarginLayoutParamsCompatImplJbMr1
111 return MarginLayoutParamsCompatJellybeanMr1.getLayoutDirection(lp);
210 public static int getLayoutDirection(ViewGroup.MarginLayoutParams lp) { method in class:MarginLayoutParamsCompat
211 return IMPL.getLayoutDirection(lp);
/frameworks/support/v4/java/android/support/v4/graphics/drawable/
H A DDrawableCompat.java43 int getLayoutDirection(Drawable drawable); method in interface:DrawableCompat.DrawableImpl
97 public int getLayoutDirection(Drawable drawable) { method in class:DrawableCompat.BaseDrawableImpl
124 public int getLayoutDirection(Drawable drawable) { method in class:DrawableCompat.JellybeanMr1DrawableImpl
125 final int dir = DrawableCompatJellybeanMr1.getLayoutDirection(drawable);
205 public int getLayoutDirection(Drawable drawable) { method in class:DrawableCompat.MDrawableImpl
206 return DrawableCompatApi23.getLayoutDirection(drawable);
372 * @see #getLayoutDirection(Drawable)
385 public static int getLayoutDirection(Drawable drawable) { method in class:DrawableCompat
386 return IMPL.getLayoutDirection(drawable);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyguardUserSwitcherScrim.java56 boolean isLtr = getLayoutDirection() == LayoutDirection.LTR;
102 boolean isLtr = getLayoutDirection() == LayoutDirection.LTR;
/frameworks/support/v4/jellybean-mr1/android/support/v4/graphics/drawable/
H A DDrawableCompatJellybeanMr1.java62 public static int getLayoutDirection(Drawable drawable) { method in class:DrawableCompatJellybeanMr1
65 sGetLayoutDirectionMethod = Drawable.class.getDeclaredMethod("getLayoutDirection");
68 Log.i(TAG, "Failed to retrieve getLayoutDirection() method", e);
77 Log.i(TAG, "Failed to invoke getLayoutDirection() via reflection", e);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DViewUtils.java53 return ViewCompat.getLayoutDirection(view) == ViewCompat.LAYOUT_DIRECTION_RTL;
/frameworks/base/core/java/android/transition/
H A DSidePropagation.java124 final boolean isRtl = sceneRoot.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL;
127 final boolean isRtl = sceneRoot.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL;
H A DSlide.java82 final boolean isRtl = sceneRoot.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL;
110 final boolean isRtl = sceneRoot.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL;
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DActionPresenterSelector.java63 return new ActionViewHolder(v, parent.getLayoutDirection());
85 return new ActionViewHolder(v, parent.getLayoutDirection());
H A DHorizontalHoverCardSwitcher.java51 boolean isRtl = ViewCompat.getLayoutDirection(view) == View.LAYOUT_DIRECTION_RTL;
H A DTitleHelper.java50 final boolean isRtl = ViewCompat.getLayoutDirection(focused) ==
H A DScaleFrameLayout.java66 final int layoutDirection = getLayoutDirection();
/frameworks/base/core/java/android/view/
H A DViewParent.java365 * Return this view parent layout direction. See {@link View#getLayoutDirection()}
370 public int getLayoutDirection(); method in interface:ViewParent
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DDismissViewButton.java72 boolean isRtl = (getLayoutDirection() == View.LAYOUT_DIRECTION_RTL);
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/view/
H A DIllustration.java185 shouldMirrorDrawable(mBackground, getLayoutDirection())) {
196 shouldMirrorDrawable(mIllustration, getLayoutDirection())) {
/frameworks/support/design/src/android/support/design/widget/
H A DSwipeDismissBehavior.java242 final boolean isRtl = ViewCompat.getLayoutDirection(child)
273 final boolean isRtl = ViewCompat.getLayoutDirection(child)
/frameworks/support/v7/appcompat/src/android/support/v7/graphics/drawable/
H A DDrawerArrowDrawable.java332 flipToPointRight = DrawableCompat.getLayoutDirection(this)
337 flipToPointRight = DrawableCompat.getLayoutDirection(this)
/frameworks/base/graphics/java/android/graphics/drawable/
H A DClipDrawable.java192 final int layoutDirection = getLayoutDirection();
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DSignalTileView.java87 boolean isRtl = getLayoutDirection() == LAYOUT_DIRECTION_RTL;
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
H A DNavigationBar.java57 ((BridgeContext) context).getConfiguration().getLayoutDirection() ==
H A DStatusBar.java57 ((BridgeContext) context).getConfiguration().getLayoutDirection() ==

Completed in 1756 milliseconds

12345