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

/frameworks/opt/setupwizard/library/test/instrumentation/src/com/android/setupwizardlib/test/
H A DDrawableLayoutDirectionHelperTest.java140 public int getLayoutDirection() { method in class:DrawableLayoutDirectionHelperTest.ForceRtlView
/frameworks/support/compat/java/android/support/v4/view/
H A DMarginLayoutParamsCompat.java125 public static int getLayoutDirection(ViewGroup.MarginLayoutParams lp) { method in class:MarginLayoutParamsCompat
128 result = lp.getLayoutDirection();
H A DViewCompat.java552 public int getLayoutDirection(View view) { method in class:ViewCompat.ViewCompatBaseImpl
1112 public int getLayoutDirection(View view) { method in class:ViewCompat.ViewCompatApi17Impl
1113 return view.getLayoutDirection();
2162 public static int getLayoutDirection(View view) { method in class:ViewCompat
2164 return IMPL.getLayoutDirection(view);
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DWrappedRecyclerView.java101 public int getLayoutDirection() { method in class:WrappedRecyclerView
103 return super.getLayoutDirection();
/frameworks/support/compat/java/android/support/v4/graphics/drawable/
H A DDrawableCompat.java97 public int getLayoutDirection(Drawable drawable) { method in class:DrawableCompat.DrawableCompatBaseImpl
163 public int getLayoutDirection(Drawable drawable) { method in class:DrawableCompat.DrawableCompatApi17Impl
166 sGetLayoutDirectionMethod = Drawable.class.getDeclaredMethod("getLayoutDirection");
169 Log.i(TAG, "Failed to retrieve getLayoutDirection() method", e);
178 Log.i(TAG, "Failed to invoke getLayoutDirection() via reflection", e);
315 public int getLayoutDirection(Drawable drawable) { method in class:DrawableCompat.DrawableCompatApi23Impl
316 return drawable.getLayoutDirection();
566 * @see #getLayoutDirection(Drawable)
579 public static int getLayoutDirection(@NonNull Drawable drawable) { method in class:DrawableCompat
580 return IMPL.getLayoutDirection(drawabl
[all...]
/frameworks/base/core/java/android/view/
H A DViewParent.java435 * Return this view parent layout direction. See {@link View#getLayoutDirection()}
440 public int getLayoutDirection(); method in interface:ViewParent
H A DViewGroup.java8010 public int getLayoutDirection() { method in class:ViewGroup.MarginLayoutParams
8429 mLayoutDirection = root.getLayoutDirection();
H A DViewRootImpl.java1656 host.setLayoutDirection(config.getLayoutDirection());
3585 final int lastLayoutDirection = mLastConfigurationFromResources.getLayoutDirection();
3586 final int currentLayoutDirection = config.getLayoutDirection();
7217 public int getLayoutDirection() { method in class:ViewRootImpl
H A DView.java3017 * {@link #getLayoutDirection()} for more information.
3030 * {@link #getLayoutDirection()} for more information.
5760 final int layoutDirection = getLayoutDirection();
9662 public int getLayoutDirection() { method in class:View
9682 return (getLayoutDirection() == LAYOUT_DIRECTION_RTL);
15153 mLayoutParams.resolveLayoutDirection(getLayoutDirection());
16540 if (getLayoutDirection() == LAYOUT_DIRECTION_RTL) {
16907 onRtlPropertiesChanged(getLayoutDirection());
17041 if (mParent.getLayoutDirection() == LAYOUT_DIRECTION_RTL) {
17134 final int resolvedLayoutDirection = getLayoutDirection();
[all...]
/frameworks/base/graphics/java/android/graphics/drawable/
H A DDrawable.java494 public @View.ResolvedLayoutDir int getLayoutDirection() { method in class:Drawable
509 * @see #getLayoutDirection()
/frameworks/base/core/java/android/content/res/
H A DConfiguration.java1783 public int getLayoutDirection() { method in class:Configuration
/frameworks/base/core/java/com/android/internal/widget/
H A DRecyclerView.java2281 boolean rtl = mLayout.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL;
2338 final boolean rtl = mLayout.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL;
7610 public int getLayoutDirection() { method in class:RecyclerView.LayoutManager
7611 return mRecyclerView.getLayoutDirection();
8952 if (getLayoutDirection() == View.LAYOUT_DIRECTION_RTL) {
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java2392 boolean rtl = mLayout.getLayoutDirection() == ViewCompat.LAYOUT_DIRECTION_RTL;
2462 final boolean rtl = mLayout.getLayoutDirection() == ViewCompat.LAYOUT_DIRECTION_RTL;
7882 public int getLayoutDirection() { method in class:RecyclerView.LayoutManager
7883 return ViewCompat.getLayoutDirection(mRecyclerView);
9228 if (getLayoutDirection() == ViewCompat.LAYOUT_DIRECTION_RTL) {

Completed in 3468 milliseconds