Home | History | Annotate | Download | only in util

Lines Matching refs:Path

24 import com.android.gallery3d.data.Path;
47 private static final Path[] CAMERA_PATHS = {
48 Path.fromString("/local/all/" + CAMERA_BUCKET_ID),
49 Path.fromString("/local/image/" + CAMERA_BUCKET_ID),
50 Path.fromString("/local/video/" + CAMERA_BUCKET_ID)};
52 public static boolean isCameraSource(Path path) {
53 return CAMERA_PATHS[0] == path || CAMERA_PATHS[1] == path
54 || CAMERA_PATHS[2] == path;