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

/packages/apps/Camera/src/com/android/camera/
H A DMosaic.java198 * @param hires Boolean flag to select whether to report progress of the
205 public native int reportProgress(boolean hires, boolean cancelComputation); argument
H A DMosaicFrameProcessor.java85 public int reportProgress(boolean hires, boolean cancel) { argument
86 return mMosaicer.reportProgress(hires, cancel);
/packages/apps/LegacyCamera/src/com/android/camera/panorama/
H A DMosaic.java198 * @param hires Boolean flag to select whether to report progress of the
205 public native int reportProgress(boolean hires, boolean cancelComputation); argument
H A DMosaicFrameProcessor.java83 public int reportProgress(boolean hires, boolean cancel) { argument
84 return mMosaicer.reportProgress(hires, cancel);
/packages/apps/Contacts/src/com/android/contacts/util/
H A DContactBadgeUtil.java110 public static Bitmap loadDefaultAvatarPhoto(Context context, boolean hires, boolean darkTheme) { argument
112 ContactPhotoManager.getDefaultAvatarResId(hires, darkTheme));
/packages/apps/Contacts/src/com/android/contacts/
H A DContactPhotoManager.java76 /** Caches 180dip in pixel. This is used to detect whether to show the hires or lores version
87 // TODO: Is it worth finding a nicer way to do hires/lores here? In practice, the
95 final boolean hires = (extent != -1) && (extent > s180DipInPixel);
96 return getDefaultAvatarResId(hires, darkTheme);
99 public static int getDefaultAvatarResId(boolean hires, boolean darkTheme) { argument
100 if (hires && darkTheme) return R.drawable.ic_contact_picture_180_holo_dark;
101 if (hires) return R.drawable.ic_contact_picture_180_holo_light;
/packages/apps/Camera/jni/
H A Dfeature_mos_jni.cpp501 JNIEnv* env, jobject thiz, jboolean hires, jboolean cancel_computation)
503 if(bool(hires))
508 if(bool(hires))
500 Java_com_android_camera_Mosaic_reportProgress( JNIEnv* env, jobject thiz, jboolean hires, jboolean cancel_computation) argument
/packages/apps/LegacyCamera/jni/
H A Dfeature_mos_jni.cpp501 JNIEnv* env, jobject thiz, jboolean hires, jboolean cancel_computation)
503 if(bool(hires))
508 if(bool(hires))
500 Java_com_android_camera_panorama_Mosaic_reportProgress( JNIEnv* env, jobject thiz, jboolean hires, jboolean cancel_computation) argument

Completed in 192 milliseconds