Searched defs:getLayoutDirection (Results 1 - 17 of 17) sorted by relevance

/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/opt/setupwizard/library/test/src/com/android/setupwizardlib/test/
H A DDrawableLayoutDirectionHelperTest.java127 public int getLayoutDirection() { method in class:DrawableLayoutDirectionHelperTest.ForceRtlView
/frameworks/support/v4/jellybean-mr1/android/support/v4/graphics/drawable/
H A DDrawableCompatJellybeanMr1.java64 public static int getLayoutDirection(Drawable drawable) { method in class:DrawableCompatJellybeanMr1
67 sGetLayoutDirectionMethod = Drawable.class.getDeclaredMethod("getLayoutDirection");
70 Log.i(TAG, "Failed to retrieve getLayoutDirection() method", e);
79 Log.i(TAG, "Failed to invoke getLayoutDirection() via reflection", e);
/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/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/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 int result = IMPL.getLayoutDirection(lp);
H A DViewCompat.java390 int getLayoutDirection(View view); method in interface:ViewCompat.ViewCompatImpl
580 public int getLayoutDirection(View view) { method in class:ViewCompat.BaseViewCompatImpl
1497 public int getLayoutDirection(View view) { method in class:ViewCompat.JbMr1ViewCompatImpl
1498 return ViewCompatJellybeanMr1.getLayoutDirection(view);
2288 public static int getLayoutDirection(View view) { method in class:ViewCompat
2290 return IMPL.getLayoutDirection(view);
/frameworks/support/graphics/drawable/static/src/android/support/graphics/drawable/
H A DVectorDrawableCommon.java148 public int getLayoutDirection() { method in class:VectorDrawableCommon
150 DrawableCompat.getLayoutDirection(mDelegateDrawable);
/frameworks/support/v4/java/android/support/v4/graphics/drawable/
H A DDrawableCompat.java53 int getLayoutDirection(Drawable drawable); method in interface:DrawableCompat.DrawableImpl
114 public int getLayoutDirection(Drawable drawable) { method in class:DrawableCompat.BaseDrawableImpl
177 public int getLayoutDirection(Drawable drawable) { method in class:DrawableCompat.JellybeanMr1DrawableImpl
178 final int dir = DrawableCompatJellybeanMr1.getLayoutDirection(drawable);
275 public int getLayoutDirection(Drawable drawable) { method in class:DrawableCompat.MDrawableImpl
276 return DrawableCompatApi23.getLayoutDirection(drawable);
513 * @see #getLayoutDirection(Drawable)
526 public static int getLayoutDirection(@NonNull Drawable drawable) { method in class:DrawableCompat
527 return IMPL.getLayoutDirection(drawable);
/frameworks/base/core/java/android/view/
H A DViewParent.java393 * Return this view parent layout direction. See {@link View#getLayoutDirection()}
398 public int getLayoutDirection(); method in interface:ViewParent
H A DViewGroup.java7512 public int getLayoutDirection() { method in class:ViewGroup.MarginLayoutParams
7912 mLayoutDirection = root.getLayoutDirection();
H A DViewRootImpl.java1514 host.setLayoutDirection(mLastConfiguration.getLayoutDirection());
3330 final int lastLayoutDirection = mLastConfiguration.getLayoutDirection();
3331 final int currentLayoutDirection = config.getLayoutDirection();
6786 public int getLayoutDirection() { method in class:ViewRootImpl
H A DView.java2603 * {@link #getLayoutDirection()} for more information.
2616 * {@link #getLayoutDirection()} for more information.
5117 final int layoutDirection = getLayoutDirection();
8211 public int getLayoutDirection() { method in class:View
8231 return (getLayoutDirection() == LAYOUT_DIRECTION_RTL);
13254 mLayoutParams.resolveLayoutDirection(getLayoutDirection());
14673 if (getLayoutDirection() == LAYOUT_DIRECTION_RTL) {
14957 onRtlPropertiesChanged(getLayoutDirection());
15059 if (mParent.getLayoutDirection() == LAYOUT_DIRECTION_RTL) {
15152 final int resolvedLayoutDirection = getLayoutDirection();
[all...]
/frameworks/base/graphics/java/android/graphics/drawable/
H A DDrawable.java476 public @View.ResolvedLayoutDir int getLayoutDirection() { method in class:Drawable
491 * @see #getLayoutDirection()
/frameworks/base/core/java/android/content/res/
H A DConfiguration.java1504 public int getLayoutDirection() { method in class:Configuration
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java2137 boolean rtl = mLayout.getLayoutDirection() == ViewCompat.LAYOUT_DIRECTION_RTL;
2190 final boolean rtl = mLayout.getLayoutDirection() == ViewCompat.LAYOUT_DIRECTION_RTL;
6941 public int getLayoutDirection() { method in class:RecyclerView.LayoutManager
6942 return ViewCompat.getLayoutDirection(mRecyclerView);
8286 if (getLayoutDirection() == ViewCompat.LAYOUT_DIRECTION_RTL) {

Completed in 4011 milliseconds