Searched defs:parentSize (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/view/animation/
H A DAnimation.java1023 * @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 DRecyclerView.java8489 * @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 DRecyclerView.java9080 * @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 103 milliseconds