Searched refs:maxPrimary (Results 1 - 1 of 1) sorted by relevance

/frameworks/volley/src/main/java/com/android/volley/toolbox/
H A DImageRequest.java102 * @param maxPrimary Maximum size of the primary dimension (i.e. width for
111 private static int getResizedDimension(int maxPrimary, int maxSecondary, int actualPrimary, argument
115 if ((maxPrimary == 0) && (maxSecondary == 0)) {
121 if (maxPrimary == 0) {
124 return maxPrimary;
128 if (maxPrimary == 0) {
134 return maxPrimary;
138 int resized = maxPrimary;

Completed in 323 milliseconds