HomeSort by relevance Sort by last modified time
    Searched defs:imageSide (Results 1 - 3 of 3) sorted by null

  /frameworks/support/v4/kitkat/android/support/v4/print/
PrintHelperKitkat.java 474 int imageSide = Math.max(w, h);
477 while (imageSide > maxSideLength) {
478 imageSide >>>= 1;
  /packages/apps/Camera2/src/com/android/camera/crop/
ImageLoader.java 293 int imageSide = 0;
295 imageSide = Math.min(w, h);
297 imageSide = Math.max(w, h);
300 while (imageSide > maxSideLength) {
301 imageSide >>>= 1;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/cache/
ImageLoader.java 370 int imageSide = 0;
372 imageSide = Math.min(w, h);
374 imageSide = Math.max(w, h);
377 while (imageSide > maxSideLength) {
378 imageSide >>>= 1;

Completed in 142 milliseconds