HomeSort by relevance Sort by last modified time
    Searched refs:PROJECTION (Results 26 - 50 of 71) sorted by null

12 3

  /packages/apps/Gallery2/src/com/android/gallery3d/gadget/
WidgetDatabaseHelper.java 53 private static final String[] PROJECTION = {
222 cursor = db.query(TABLE_WIDGETS, PROJECTION,
242 cursor = db.query(TABLE_WIDGETS, PROJECTION,
LocalPhotoSource.java 51 private static final String[] PROJECTION = {Media._ID};
168 CONTENT_URI, PROJECTION, SELECTION, null, ORDER);
  /development/samples/NotePad/src/com/example/android/notepad/
NotesList.java 60 private static final String[] PROJECTION = new String[] {
105 PROJECTION, // Return the note ID and title for each note.
  /frameworks/ex/common/tests/src/com/android/common/widget/
GroupingListAdapterTests.java 41 static private final String[] PROJECTION = new String[] {
108 mCursor = new MatrixCursor(PROJECTION);
  /packages/apps/Browser/src/com/android/browser/
SnapshotTab.java 157 static final String[] PROJECTION = new String[] {
190 return mContentResolver.query(uri, PROJECTION, null, null, null);
BrowserSnapshotPage.java 61 private static final String[] PROJECTION = new String[] {
126 Snapshots.CONTENT_URI, PROJECTION,
BrowserHistoryPage.java 88 static final String[] PROJECTION = new String[] {
122 HistoryQuery.PROJECTION, where, null, sort);
132 HistoryQuery.PROJECTION, where, null, Combined.VISITS + " DESC");
  /packages/apps/Calendar/src/com/android/calendar/
EventLoader.java 69 * The projection used by the EventDays query.
71 private static final String[] PROJECTION = {
94 Cursor cursor = EventDays.query(cr, startDay, numDays, PROJECTION);
  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
SelectCalendarsSyncFragment.java 60 private static final String[] PROJECTION = new String[] {
168 getActivity(), Calendars.CONTENT_URI, PROJECTION, SELECTION, mArgs, SORT_ORDER);
SelectSyncedCalendarsMultiAccountAdapter.java 99 private static final String[] PROJECTION = new String[] {
109 //Keep these in sync with the projection
375 Calendars.CONTENT_URI, PROJECTION,
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
LocalVideo.java 40 // the following PROJECTION array.
55 static final String[] PROJECTION = new String[] {
86 Cursor cursor = LocalAlbum.getItemCursor(resolver, uri, PROJECTION, id);
LocalImage.java 48 // the following PROJECTION array.
64 static final String[] PROJECTION = {
96 Cursor cursor = LocalAlbum.getItemCursor(resolver, uri, PROJECTION, id);
  /packages/apps/Phone/src/com/android/phone/
CallerInfoCache.java 64 private static final String[] PROJECTION = new String[] {
214 PROJECTION, SELECTION, null, null);
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
ContactLoader.java 50 final String[] PROJECTION = new String[] {
79 Cursor cursor = resolver.query(dataUri, StatusQuery.PROJECTION, StatusUpdates.PRESENCE
  /packages/apps/Browser/src/com/android/browser/widget/
BookmarkThumbnailWidgetService.java 58 private static final String[] PROJECTION = new String[] {
344 mBookmarks = mContext.getContentResolver().query(uri, PROJECTION,
350 Cursor c = mContext.getContentResolver().query(uri, PROJECTION,
  /packages/apps/Mms/src/com/android/mms/transaction/
RetrieveTransaction.java 69 static final String[] PROJECTION = new String[] {
74 // The indexes of the columns which must be consistent with above PROJECTION.
101 uri, PROJECTION, null, null, null);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DbModifierWithNotification.java 61 private static final String[] PROJECTION = new String[] {
174 Cursor cursor = mDb.query(mTableName, PROJECTION,
  /packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/
DictionaryBackupAgent.java 66 private static final String[] PROJECTION = {
149 Cursor cursor = getContentResolver().query(Words.CONTENT_URI, PROJECTION,
  /frameworks/base/core/java/android/provider/
MediaStore.java 461 private static final String[] PROJECTION = new String[] {_ID, MediaColumns.DATA};
505 c = cr.query(cancelUri, PROJECTION, null, null, null);
554 c = cr.query(baseUri, PROJECTION, column + origId, null, null);
568 c = cr.query(blockingUri, PROJECTION, null, null, null);
602 c = cr.query(uri, PROJECTION, null, null, null);
697 public static final Cursor query(ContentResolver cr, Uri uri, String[] projection) {
698 return cr.query(uri, projection, null, null, DEFAULT_SORT_ORDER);
701 public static final Cursor query(ContentResolver cr, Uri uri, String[] projection,
703 return cr.query(uri, projection, where,
707 public static final Cursor query(ContentResolver cr, Uri uri, String[] projection,
    [all...]
  /frameworks/ex/chips/src/com/android/ex/chips/
BaseRecipientAdapter.java 114 public static final String[] PROJECTION = {
125 public static final String[] PROJECTION = {
250 DirectoryListQuery.URI, DirectoryListQuery.PROJECTION,
719 photoThumbnailUri, PhotoQuery.PROJECTION, null, null, null);
750 final Cursor photoCursor = mContentResolver.query(photoThumbnailUri, PhotoQuery.PROJECTION,
    [all...]
  /packages/apps/Email/src/com/android/email/activity/
MailboxFragmentAdapter.java 86 * {@link #ROW_TYPE} specified in {@link #PROJECTION} and {@link #SUBMAILBOX_PROJECTION}.
105 * Projection for a typical mailbox or account row.
106 * <p><em>NOTE</em> This projection contains two ID columns. The first, named "_id", is used
111 private static final String[] PROJECTION = new String[] { MailboxColumns.ID,
117 * Projection used to retrieve immediate children for a mailbox. The columns need to
118 * be identical to those in {@link #PROJECTION}. We are only changing the constant
131 /** Project to use for matrix cursors; rows MUST be identical to {@link #PROJECTION} */
521 : PROJECTION,
557 Mailbox.CONTENT_URI, PROJECTION, SYSTEM_MAILBOX_SELECTION,
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LoaderThrottle.java 168 // A projection map used to select columns from the database
190 // Create and initialize projection map for all columns. This is
211 public Cursor query(Uri uri, String[] projection, String selection,
243 Cursor c = qb.query(db, projection, selection, selectionArgs,
484 static final String[] PROJECTION = new String[] {
491 PROJECTION, null, null, null);
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
LoaderThrottleSupport.java 169 // A projection map used to select columns from the database
191 // Create and initialize projection map for all columns. This is
212 public Cursor query(Uri uri, String[] projection, String selection,
244 Cursor c = qb.query(db, projection, selection, selectionArgs,
484 static final String[] PROJECTION = new String[] {
491 PROJECTION, null, null, null);
  /packages/apps/Calendar/src/com/android/calendar/event/
AttendeesView.java 66 private static final String[] PROJECTION = new String[] {
365 mPresenceQueryHandler.startQuery(item.mUpdateCounts + 1, item, uri, PROJECTION, selection,
  /packages/apps/Email/src/com/android/email/
AttachmentInfo.java 41 // Projection which can be used with the constructor taking a Cursor argument
42 public static final String[] PROJECTION = new String[] {Attachment.RECORD_ID, Attachment.SIZE,
44 // Offsets into PROJECTION

Completed in 483 milliseconds

12 3