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

/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
H A DStockSource.java31 private static final int[] PHOTOS = { R.drawable.blank_photo }; field in class:StockSource
45 mImageCache = new ArrayList<ImageData>(PHOTOS.length);
47 mImageList = new ArrayList<ImageData>(PHOTOS.length);
56 for (int i = 0; i < PHOTOS.length; i++) {
88 is = mResources.openRawResource(PHOTOS[idx]);
100 idx = (idx + 1) % PHOTOS.length;
107 idx = (PHOTOS.length + idx - 1) % PHOTOS.length;
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DLegacyApiSupport.java102 private static final int PHOTOS = 25; field in class:LegacyApiSupport
218 public static final String PHOTOS = "view_v1_photos"; field in interface:LegacyApiSupport.LegacyTables
341 matcher.addURI(authority, "photos", PHOTOS);
742 db.execSQL("DROP VIEW IF EXISTS " + LegacyTables.PHOTOS + ";");
743 db.execSQL("CREATE VIEW " + LegacyTables.PHOTOS + " AS SELECT " +
1041 case PHOTOS:
1584 case PHOTOS:
1854 qb.setTables(LegacyTables.PHOTOS + " photos");
1862 case PHOTOS:
1863 qb.setTables(LegacyTables.PHOTOS
[all...]

Completed in 75 milliseconds