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

1 2 3

  /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));
  /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);
CallDetailActivityQueryHandler.java 73 VoicemailStatusHelperImpl.PROJECTION, null, null, null);
  /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
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
  /packages/apps/Browser/src/com/android/browser/
BookmarksLoader.java 38 public static final String[] PROJECTION = new String[] {
56 PROJECTION, null, null, null);
AccountsChangedReceiver.java 33 private static final String[] PROJECTION = new String[] {
56 Cursor c = cr.query(Accounts.CONTENT_URI, PROJECTION,
  /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/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/Calendar/src/com/android/calendar/alerts/
SnoozeAlarmsService.java 34 private static final String[] PROJECTION = new String[] {
75 dismissValues.put(PROJECTION[COLUMN_INDEX_STATE], CalendarAlerts.STATE_DISMISSED);
DismissAlarmsService.java 36 private static final String[] PROJECTION = new String[] {
75 values.put(PROJECTION[COLUMN_INDEX_STATE], CalendarAlerts.STATE_DISMISSED);
AlertActivity.java 50 private static final String[] PROJECTION = new String[] {
92 values.put(PROJECTION[INDEX_STATE], CalendarAlerts.STATE_DISMISSED);
100 values.put(PROJECTION[INDEX_STATE], CalendarAlerts.STATE_DISMISSED);
204 mQueryHandler.startQuery(0, null, uri, PROJECTION, SELECTION, SELECTIONARG,
  /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/Calendar/src/com/android/calendar/selectcalendars/
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/list/
DirectoryListLoader.java 48 public static final String[] PROJECTION = {
148 DirectoryQuery.PROJECTION, selection, null, DirectoryQuery.ORDER_BY);
ProviderStatusWatcher.java 63 private static final String[] PROJECTION = new String[] {
231 PROJECTION, null, null, null);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
ContactsDictionary.java 40 private static final String[] PROJECTION = {
105 .query(Contacts.CONTENT_URI, PROJECTION, null, null, null);
ContactsBinaryDictionary.java 33 private static final String[] PROJECTION = {BaseColumns._ID, Contacts.DISPLAY_NAME,};
103 .query(Contacts.CONTENT_URI, PROJECTION, null, null, null);
227 Contacts.CONTENT_URI, PROJECTION, null, null, null);
  /packages/apps/Contacts/src/com/android/contacts/calllog/
DefaultVoicemailNotifier.java 239 private static final String[] PROJECTION = {
258 cursor = mContentResolver.query(Calls.CONTENT_URI_WITH_VOICEMAIL, PROJECTION,
305 private static final String[] PROJECTION = { PhoneLookup.DISPLAY_NAME };
320 PROJECTION, null, null, null);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
LocalAlbum.java 72 mProjection = LocalImage.PROJECTION;
79 mProjection = LocalVideo.PROJECTION;
162 String[] projection; local
166 projection = LocalImage.PROJECTION;
170 projection = LocalVideo.PROJECTION;
176 Cursor cursor = resolver.query(baseUri, projection, "_id BETWEEN ? AND ?",
214 String[] projection, int id) {
215 return resolver.query(uri, projection, "_id=?"
    [all...]
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
CalendarDatabaseHelperTest.java 453 private static final String[] PROJECTION = {"tbl_name", "sql"};
463 Cursor goodCursor = mGoodDb.query(SQLITE_MASTER, PROJECTION, null, null, null, null,
465 Cursor badCursor = mBadDb.query(SQLITE_MASTER, PROJECTION, null, null, null, null,
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
ContactManager.java 189 DirtyQuery.PROJECTION,
384 resolver.query(DataQuery.CONTENT_URI, DataQuery.PROJECTION, DataQuery.SELECTION,
520 resolver.query(DataQuery.CONTENT_URI, DataQuery.PROJECTION, DataQuery.SELECTION,
    [all...]
  /frameworks/ex/common/java/com/android/common/contacts/
BaseEmailAddressAdapter.java 114 public static final String[] PROJECTION = {
136 public static final String[] PROJECTION = {
169 DirectoryListQuery.URI, DirectoryListQuery.PROJECTION, null, null, null);
185 cursor = mContentResolver.query(uri, EmailQuery.PROJECTION, null, null, null);
239 uri, EmailQuery.PROJECTION, null, null, null);
539 MatrixCursor newCursor = new MatrixCursor(EmailQuery.PROJECTION);
  /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,

Completed in 501 milliseconds

1 2 3