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

  /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/tests/src/com/android/providers/contacts/
PhotoStoreTest.java 25 import android.provider.ContactsContract.PhotoFiles;
116 new String[]{PhotoFiles.HEIGHT, PhotoFiles.WIDTH, PhotoFiles.FILESIZE},
117 PhotoFiles._ID + "=?", new String[]{String.valueOf(photoFileId)}, null, null, null);
143 Cursor c = mDb.query(Tables.PHOTO_FILES, new String[]{PhotoFiles._ID},
144 PhotoFiles._ID + "=?", new String[]{String.valueOf(photoFileId)}, null, null, null);
189 Cursor c = mDb.query(Tables.PHOTO_FILES, new String[]{PhotoFiles._ID},
190 PhotoFiles._ID + "=?", new String[]{String.valueOf(normalPhotoId)},
  /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);
ContactAggregator.java 48 import android.provider.ContactsContract.PhotoFiles;
    [all...]
ContactsDatabaseHelper.java 66 import android.provider.ContactsContract.PhotoFiles;
585 String CONCRETE_HEIGHT = Tables.PHOTO_FILES + "." + PhotoFiles.HEIGHT;
586 String CONCRETE_WIDTH = Tables.PHOTO_FILES + "." + PhotoFiles.WIDTH;
587 String CONCRETE_FILESIZE = Tables.PHOTO_FILES + "." + PhotoFiles.FILESIZE;
    [all...]
ContactsProvider2.java 133 import android.provider.ContactsContract.PhotoFiles;
    [all...]
  /frameworks/base/core/java/android/provider/
ContactsContract.java     [all...]

Completed in 242 milliseconds