Searched refs:parentSize (Results 1 - 4 of 4) sorted by relevance
/frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/ |
H A D | GridLayoutManagerWrapContentWithAspectRatioTest.java | 136 final int parentSize = getSize((View) mRecyclerView.getParent(), mTestOrientation); 145 mConfig.mSpanCount, parentSize); 215 final int parentSize = getSize((View) mRecyclerView.getParent(), mTestOrientation); 223 parentSize); 291 final int parentSize = getSize((View) mRecyclerView.getParent(), mTestOrientation); 299 mConfig.mSpanCount, parentSize);
|
/frameworks/base/core/java/android/view/animation/ |
H A D | Animation.java | 1023 * @param parentSize The size of the parent of the object being animated 1026 protected float resolveSize(int type, float value, int size, int parentSize) { argument 1033 return parentSize * value;
|
/frameworks/base/core/java/com/android/internal/widget/ |
H A D | RecyclerView.java | 8489 * @param parentSize Size of the parent view where the child will be placed 8499 public static int getChildMeasureSpec(int parentSize, int padding, int childDimension, argument 8501 int size = Math.max(0, parentSize - padding); 8533 * @param parentSize Size of the parent view where the child will be placed 8542 public static int getChildMeasureSpec(int parentSize, int parentMode, int padding, argument 8544 int size = Math.max(0, parentSize - padding);
|
/frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/ |
H A D | RecyclerView.java | 9080 * @param parentSize Size of the parent view where the child will be placed 9090 public static int getChildMeasureSpec(int parentSize, int padding, int childDimension, argument 9092 int size = Math.max(0, parentSize - padding); 9124 * @param parentSize Size of the parent view where the child will be placed 9133 public static int getChildMeasureSpec(int parentSize, int parentMode, int padding, argument 9135 int size = Math.max(0, parentSize - padding);
|
Completed in 77 milliseconds