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

1 2 3

  /packages/apps/Calendar/src/com/android/calendar/alerts/
DismissAllAlarmsService.java 31 private static final String[] PROJECTION = new String[] {
53 values.put(PROJECTION[COLUMN_INDEX_STATE], CalendarAlerts.STATE_DISMISSED);
  /development/samples/NotePad/src/com/example/android/notepad/
TitleEditor.java 43 // Creates a projection that returns the note ID and the note contents.
44 private static final String[] PROJECTION = new String[] {
87 PROJECTION, // The columns to retrieve
NotesList.java 60 private static final String[] PROJECTION = new String[] {
105 PROJECTION, // Return the note ID and title for each note.
  /packages/apps/Browser/src/com/android/browser/
AccountsChangedReceiver.java 33 private static final String[] PROJECTION = new String[] {
56 Cursor c = cr.query(Accounts.CONTENT_URI, PROJECTION,
BookmarksLoader.java 39 public static final String[] PROJECTION = new String[] {
57 PROJECTION, null, null, null);
SnapshotTab.java 152 static final String[] PROJECTION = new String[] {
174 return mContentResolver.query(uri, PROJECTION, null, null, null);
  /packages/apps/Contacts/src/com/android/contacts/
GroupMemberLoader.java 38 private static final String[] PROJECTION = new String[] {
54 private static final String[] PROJECTION = new String[] {
78 return new GroupMemberLoader(context, groupId, GroupEditorQuery.PROJECTION);
86 return new GroupMemberLoader(context, groupId, GroupDetailQuery.PROJECTION);
89 private GroupMemberLoader(Context context, long groupId, String[] projection) {
93 setProjection(projection);
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStoreTest.java 29 private static final String[] PROJECTION = new String[] { MediaStore.MEDIA_SCANNER_VOLUME };
41 Cursor c = mContentResolver.query(mScannerUri, PROJECTION, null, null, null);
67 assertNull(mContentResolver.query(mScannerUri, PROJECTION,
76 Cursor c = mContentResolver.query(mScannerUri, PROJECTION,
85 assertNull(mContentResolver.query(mScannerUri, PROJECTION, null, null, null));
  /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/widget/
BookmarkWidgetConfigure.java 119 static final String[] PROJECTION = new String[] {
133 .build(), PROJECTION, null, null, null);
  /packages/apps/Browser/tests/src/com/android/browser/tests/
BP2ProviderTests.java 36 static final String[] PROJECTION = new String[] {
86 PROJECTION, null, null, null);
105 PROJECTION, null, null, null);
125 PROJECTION, null, null, null);
  /packages/apps/Contacts/src/com/android/contacts/list/
ProviderStatusLoader.java 38 private static final String[] PROJECTION = new String[] {
80 PROJECTION, null, null, null);
DirectoryListLoader.java 48 public static final String[] PROJECTION = {
148 DirectoryQuery.PROJECTION, selection, null, DirectoryQuery.ORDER_BY);
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
CalendarDatabaseHelperTest.java 452 private static final String[] PROJECTION = {"tbl_name", "sql"};
461 Cursor goodCursor = mGoodDb.query(SQLITE_MASTER, PROJECTION, null, null, null, null,
463 Cursor badCursor = mBadDb.query(SQLITE_MASTER, PROJECTION, null, null, null, null,
  /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);
SelectSyncedCalendarsMultiAccountActivity.java 43 private static final String[] PROJECTION = new String[] {
58 mCursor = managedQuery(Calendars.CONTENT_URI, PROJECTION,
SelectVisibleCalendarsFragment.java 49 private static final String[] PROJECTION = new String[] {
144 mService.startQuery(mQueryToken, null, Calendars.CONTENT_URI, PROJECTION, SELECTION,
168 mService.startQuery(mQueryToken, null, Calendars.CONTENT_URI, PROJECTION, SELECTION,
  /packages/apps/Contacts/src/com/android/contacts/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/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
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
LocalVideo.java 46 // the following PROJECTION array.
60 static final String[] PROJECTION = new String[] {
91 Cursor cursor = LocalAlbum.getItemCursor(resolver, uri, PROJECTION, id);
  /packages/apps/Gallery2/src/com/android/gallery3d/gadget/
LocalPhotoSource.java 51 private static final String[] PROJECTION = {Media._ID};
168 CONTENT_URI, PROJECTION, SELECTION, null, ORDER);
  /packages/apps/Mms/src/com/android/mms/transaction/
RetrieveTransaction.java 66 static final String[] PROJECTION = new String[] {
71 // The indexes of the columns which must be consistent with above PROJECTION.
98 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/
ContactsDictionary.java 33 private static final String[] PROJECTION = {
98 .query(Contacts.CONTENT_URI, PROJECTION, null, null, null);

Completed in 407 milliseconds

1 2 3