HomeSort by relevance Sort by last modified time
    Searched refs:PROJECTION (Results 1 - 25 of 41) sorted by null

1 2

  /cts/tests/tests/provider/src/android/provider/cts/
MediaStoreTest.java 34 private static final String[] PROJECTION = new String[] { MediaStore.MEDIA_SCANNER_VOLUME };
46 Cursor c = mContentResolver.query(mScannerUri, PROJECTION, null, null, null);
76 assertNull(mContentResolver.query(mScannerUri, PROJECTION,
85 Cursor c = mContentResolver.query(mScannerUri, PROJECTION,
94 assertNull(mContentResolver.query(mScannerUri, PROJECTION, null, null, null));
  /packages/apps/Calendar/src/com/android/calendar/
DismissAllAlarmsService.java 31 private static final String[] PROJECTION = new String[] {
54 values.put(PROJECTION[COLUMN_INDEX_STATE], CalendarAlerts.DISMISSED);
EmailAddressAdapter.java 42 private static final String[] PROJECTION = {
74 return mContentResolver.query(uri, PROJECTION, null, null, SORT_ORDER);
SelectCalendarsActivity.java 42 private static final String[] PROJECTION = new String[] {
62 mCursor = managedQuery(Calendars.CONTENT_URI, PROJECTION,
AlertActivity.java 56 private static final String[] PROJECTION = new String[] {
105 values.put(PROJECTION[INDEX_STATE], CalendarAlerts.DISMISSED);
113 values.put(PROJECTION[INDEX_STATE], CalendarAlerts.DISMISSED);
239 mQueryHandler.startQuery(0, null, uri, PROJECTION, SELECTION,
SelectCalendarsAdapter.java 106 private static final String[] PROJECTION = new String[] {
116 //Keep these in sync with the projection
413 Calendars.CONTENT_URI, PROJECTION,
Event.java 42 private static final String[] PROJECTION = new String[] {
64 // The indices for the projection array above.
306 c = Instances.query(context.getContentResolver(), PROJECTION,
  /development/samples/NotePad/src/com/example/android/notepad/
TitleEditor.java 44 private static final String[] PROJECTION = new String[] {
77 mCursor = managedQuery(mUri, PROJECTION, null, null, null);
NotesList.java 50 private static final String[] PROJECTION = new String[] {
76 Cursor cursor = managedQuery(getIntent().getData(), PROJECTION, null, null,
NoteEditor.java 50 * Standard projection for the interesting columns of a normal note.
52 private static final String[] PROJECTION = new String[] {
153 mCursor = managedQuery(mUri, PROJECTION, null, null, null);
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
ContactManager.java 177 resolver.query(Data.CONTENT_URI, DataQuery.PROJECTION,
265 resolver.query(RawContacts.CONTENT_URI, UserIdQuery.PROJECTION,
291 resolver.query(Data.CONTENT_URI, ProfileQuery.PROJECTION,
311 public final static String[] PROJECTION = new String[] {Data._ID};
324 public final static String[] PROJECTION =
338 public static final String[] PROJECTION =
  /development/samples/ApiDemos/src/com/example/android/apis/view/
List7.java 36 private static final String[] PROJECTION = new String[] {
59 PROJECTION, null, null, null);
  /packages/apps/Email/src/com/android/email/
EmailAddressAdapter.java 43 protected static final String[] PROJECTION = {
74 Cursor c = mContentResolver.query(uri, PROJECTION, null, null, SORT_ORDER);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
ContactsDictionary.java 30 private static final String[] PROJECTION = {
87 .query(Contacts.CONTENT_URI, PROJECTION, null, null, null);
UserDictionary.java 28 private static final String[] PROJECTION = {
69 .query(Words.CONTENT_URI, PROJECTION, "(locale IS NULL) or (locale=?)",
  /frameworks/base/tests/CoreTests/android/core/
DatabaseSessionCache.java 89 public static final String[] PROJECTION = new String[] {
187 PROJECTION, null, null, null, null, SSL_CACHE_TIME_SEC);
244 cur = mDatabaseHelper.getReadableDatabase().query(SSL_CACHE_TABLE, PROJECTION, null,
  /packages/apps/Mms/src/com/android/mms/transaction/
RetrieveTransaction.java 67 static final String[] PROJECTION = new String[] {
72 // The indexes of the columns which must be consistent with above PROJECTION.
99 uri, PROJECTION, null, null, null);
  /packages/apps/Tag/src/com/android/apps/tag/
TagList.java 101 static final String[] PROJECTION = new String[] {
125 TagQuery.PROJECTION,
EditTagActivity.java 185 final static String[] PROJECTION = new String[] {
198 Cursor cursor = getContentResolver().query(args[0], GetTagQuery.PROJECTION,
TagViewer.java 319 final static String[] PROJECTION = new String[] {
336 Cursor cursor = getContentResolver().query(args[0], ViewTagQuery.PROJECTION,
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsBackupAgent.java 79 private static final String[] PROJECTION = {
206 Cursor sortedCursor = getContentResolver().query(Settings.System.CONTENT_URI, PROJECTION,
218 Cursor sortedCursor = getContentResolver().query(Settings.Secure.CONTENT_URI, PROJECTION,
  /packages/apps/Browser/src/com/android/browser/widget/
BookmarkWidgetService.java 277 private static final String[] PROJECTION = new String[] {
300 Cursor c = getContentResolver().query(Browser.BOOKMARKS_URI, PROJECTION,
  /packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/
DictionaryBackupAgent.java 65 private static final String[] PROJECTION = {
147 Cursor cursor = getContentResolver().query(Words.CONTENT_URI, PROJECTION,
  /frameworks/base/core/java/android/provider/
MediaStore.java 266 private static final String[] PROJECTION = new String[] {_ID, MediaColumns.DATA};
310 c = cr.query(cancelUri, PROJECTION, null, null, null);
358 c = cr.query(baseUri, PROJECTION, column + origId, null, null);
376 c = cr.query(blockingUri, PROJECTION, null, null, null);
410 c = cr.query(uri, PROJECTION, null, null, null);
502 public static final Cursor query(ContentResolver cr, Uri uri, String[] projection) {
503 return cr.query(uri, projection, null, null, DEFAULT_SORT_ORDER);
506 public static final Cursor query(ContentResolver cr, Uri uri, String[] projection,
508 return cr.query(uri, projection, where,
512 public static final Cursor query(ContentResolver cr, Uri uri, String[] projection,
    [all...]
  /frameworks/base/core/java/android/net/
Downloads.java 323 private static final String[] PROJECTION = {
335 return context.getContentResolver().query(downloadUri, PROJECTION, null, null, null);
559 * Column projection for the query to the download manager. This must match

Completed in 1432 milliseconds

1 2