Home | History | Annotate | Download | only in util

Lines Matching refs:File

5  * you may not use this file except in compliance with the License.
29 import java.io.File;
48 * Generate a new, unique file to be used as an out-of-band communication
50 * This file will be passed to other activities (such as the gallery/camera/cropper/etc.),
53 public static File generateTempPhotoFile(Context context) {
54 return new File(pathForCroppedPhoto(context, generateTempPhotoFileName()));
58 final File dir = new File(context.getExternalCacheDir() + "/tmp");
60 final File f = new File(dir, fileName);
65 final File dir = new File(NEW_PHOTO_DIR_PATH);
67 final File f = new File(dir, fileName);
99 * @param croppedPhotoUri The uri of the file to save the image to.