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

12 3 4

  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/
SyncAdapter.java 88 private static final String[] PROJECTION = new String[] {
95 // Constants representing column positions from PROJECTION.
223 Cursor c = contentResolver.query(uri, PROJECTION, null, null, null);
  /packages/apps/Browser/src/com/android/browser/homepages/
RequestHandler.java 102 private static final String[] PROJECTION = new String[] {
112 History.CONTENT_URI, PROJECTION, SELECTION,
118 Bookmarks.CONTENT_URI, PROJECTION, SELECTION,
  /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 64 private static final String[] PROJECTION = new String[] {
190 getActivity(), Calendars.CONTENT_URI, PROJECTION, SELECTION, mArgs, SORT_ORDER);
SelectSyncedCalendarsMultiAccountActivity.java 43 private static final String[] PROJECTION = new String[] {
98 }.startQuery(0, null, Calendars.CONTENT_URI, PROJECTION,
SelectVisibleCalendarsFragment.java 50 private static final String[] PROJECTION = new String[] {
151 mService.startQuery(mQueryToken, null, Calendars.CONTENT_URI, PROJECTION, SELECTION,
174 mService.startQuery(mQueryToken, null, Calendars.CONTENT_URI, PROJECTION, SELECTION,
  /packages/apps/Contacts/src/com/android/contacts/list/
ProviderStatusWatcher.java 63 private static final String[] PROJECTION = new String[] {
231 PROJECTION, null, null, null);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
DirectoryListLoader.java 48 public static final String[] PROJECTION = {
149 DirectoryQuery.PROJECTION, selection, null, DirectoryQuery.ORDER_BY);
  /packages/apps/Dialer/src/com/android/dialer/voicemail/
VoicemailStatusHelperImpl.java 48 /** Projection on the voicemail_status table used by this class. */
49 public static final String[] PROJECTION = new String[NUM_COLUMNS];
51 PROJECTION[SOURCE_PACKAGE_INDEX] = Status.SOURCE_PACKAGE;
52 PROJECTION[CONFIGURATION_STATE_INDEX] = Status.CONFIGURATION_STATE;
53 PROJECTION[DATA_CHANNEL_STATE_INDEX] = Status.DATA_CHANNEL_STATE;
54 PROJECTION[NOTIFICATION_CHANNEL_STATE_INDEX] = Status.NOTIFICATION_CHANNEL_STATE;
55 PROJECTION[SETTINGS_URI_INDEX] = Status.SETTINGS_URI;
56 PROJECTION[VOICEMAIL_ACCESS_URI_INDEX] = Status.VOICEMAIL_ACCESS_URI;
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
Credential.java 54 public static final String[] PROJECTION = new String[] {
83 Credential.CONTENT_URI, CredentialQuery.PROJECTION, id);
  /packages/apps/Email/src/com/android/email/
AttachmentInfo.java 42 // Projection which can be used with the constructor taking a Cursor argument
43 public static final String[] PROJECTION = {
51 // Offsets into 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);
SecureAlbum.java 36 private static final String[] PROJECTION = {MediaColumns._ID};
138 Cursor cursor = mContext.getContentResolver().query(uri, PROJECTION,
155 Cursor cursor = mContext.getContentResolver().query(uri, PROJECTION,
  /packages/apps/Gallery2/src/com/android/gallery3d/gadget/
LocalPhotoSource.java 52 private static final String[] PROJECTION = {Media._ID};
171 CONTENT_URI, PROJECTION, SELECTION, null, ORDER);
  /packages/apps/Mms/src/com/android/mms/transaction/
RetrieveTransaction.java 70 static final String[] PROJECTION = new String[] {
75 // The indexes of the columns which must be consistent with above PROJECTION.
102 uri, PROJECTION, null, 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/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
ContactsBinaryDictionary.java 44 private static final String[] PROJECTION = {BaseColumns._ID, Contacts.DISPLAY_NAME};
148 cursor = mContext.getContentResolver().query(uri, PROJECTION, null, null, null);
290 final Cursor cursor = mContext.getContentResolver().query(Contacts.CONTENT_URI, PROJECTION,
  /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/DownloadProvider/src/com/android/providers/downloads/
DownloadIdleService.java 81 final String[] PROJECTION = new String[] {
100 StaleQuery.PROJECTION, Downloads.Impl.COLUMN_STATUS + " >= '200' AND "
121 final String[] PROJECTION = new String[] {
138 OrphanQuery.PROJECTION, null, null, null);
  /packages/services/Telephony/src/com/android/phone/
CallerInfoCache.java 58 private static final String[] PROJECTION = new String[] {
190 PROJECTION, SELECTION, null, null);
  /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/NotePad/src/com/example/android/notepad/
NoteEditor.java 57 * Creates a projection that returns the note ID and the note contents.
59 private static final String[] PROJECTION =
210 PROJECTION, // A projection that returns the note ID and note content for each note.
486 PROJECTION, // Get the columns referred to in the projection
  /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);
  /development/samples/training/threadsample/src/com/example/android/threadsample/
PhotoThumbnailFragment.java 77 private static final String[] PROJECTION =
107 PROJECTION, // Projection to return
  /packages/apps/Dialer/src/com/android/dialer/calllog/
DefaultVoicemailNotifier.java 245 private static final String[] PROJECTION = {
265 cursor = mContentResolver.query(Calls.CONTENT_URI_WITH_VOICEMAIL, PROJECTION,
313 private static final String[] PROJECTION = { PhoneLookup.DISPLAY_NAME };
328 PROJECTION, null, null, null);

Completed in 592 milliseconds

12 3 4