HomeSort by relevance Sort by last modified time
    Searched refs:PhotoFiles (Results 1 - 7 of 7) sorted by null

  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
PhotoStoreTest.java 26 import android.provider.ContactsContract.PhotoFiles;
145 new String[]{PhotoFiles.WIDTH, PhotoFiles.HEIGHT, PhotoFiles.FILESIZE},
146 PhotoFiles._ID + "=?", new String[]{String.valueOf(photoFileId)}, null, null, null);
166 new String[]{PhotoFiles.HEIGHT, PhotoFiles.WIDTH, PhotoFiles.FILESIZE},
167 PhotoFiles._ID + "=?", new String[]{String.valueOf(photoFileId)}, null, null, null);
189 Cursor c = mDb.query(Tables.PHOTO_FILES, new String[]{PhotoFiles._ID}
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/util/
StreamItemPhotoEntry.java 20 import android.provider.ContactsContract.PhotoFiles;
50 // StreamItemPhotos columns and all PhotoFiles columns (except for ID).
55 mHeight = getInt(cursor, PhotoFiles.HEIGHT, -1);
56 mWidth = getInt(cursor, PhotoFiles.WIDTH, -1);
57 mFileSize = getInt(cursor, PhotoFiles.FILESIZE, -1);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
PhotoStore.java 26 import android.provider.ContactsContract.PhotoFiles;
202 values.put(PhotoFiles.HEIGHT, height);
203 values.put(PhotoFiles.WIDTH, width);
204 values.put(PhotoFiles.FILESIZE, photoBytes.length);
ContactsDatabaseHelper.java 69 import android.provider.ContactsContract.PhotoFiles;
614 String CONCRETE_HEIGHT = Tables.PHOTO_FILES + "." + PhotoFiles.HEIGHT;
615 String CONCRETE_WIDTH = Tables.PHOTO_FILES + "." + PhotoFiles.WIDTH;
616 String CONCRETE_FILESIZE = Tables.PHOTO_FILES + "." + PhotoFiles.FILESIZE;
    [all...]
ContactsProvider2.java 137 import android.provider.ContactsContract.PhotoFiles;
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
ContactAggregator.java 61 import android.provider.ContactsContract.PhotoFiles;
    [all...]
  /frameworks/base/core/java/android/provider/
ContactsContract.java     [all...]

Completed in 312 milliseconds