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

1 2 3 4 5

  /packages/apps/Gallery2/src/com/android/photos/data/
AlbumSetLoader.java 17 public static final String[] PROJECTION = {
31 MatrixCursor c = new MatrixCursor(PROJECTION, count);
PhotoSetLoader.java 39 public static final String[] PROJECTION = new String[] {
67 super(context, CONTENT_URI, PROJECTION, SELECTION, null, SORT_ORDER);
  /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/opt/photoviewer/src/com/android/ex/photo/provider/
PhotoContract.java 59 /** Projection of the returned cursor */
60 public final static String[] PROJECTION = {
  /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);
  /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
  /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/ContactsCommon/tests/src/com/android/contacts/common/database/
NoNullCursorAsyncQueryHandlerTest.java 37 private static final String[] PROJECTION = new String[]{"column1", "column2"};
45 public Cursor query(Uri uri, String[] projection, String selection,
76 handler.startQuery(1, null, URI, PROJECTION, null, null, null);
103 handler.startQuery(1, cookie, URI, PROJECTION, null, null, null);
130 handler.startQuery(1, cookie, URI, PROJECTION, null, null, null);
135 assertSame(PROJECTION, cursorHolder.obj.getColumnNames());
  /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/providers/MediaProvider/src/com/android/providers/media/
MediaDocumentsProvider.java 181 private static String[] resolveRootProjection(String[] projection) {
182 return projection != null ? projection : DEFAULT_ROOT_PROJECTION;
185 private static String[] resolveDocumentProjection(String[] projection) {
186 return projection != null ? projection : DEFAULT_DOCUMENT_PROJECTION;
190 public Cursor queryRoots(String[] projection) throws FileNotFoundException {
191 final MatrixCursor result = new MatrixCursor(resolveRootProjection(projection));
199 public Cursor queryDocument(String docId, String[] projection) throws FileNotFoundException {
201 final MatrixCursor result = new MatrixCursor(resolveDocumentProjection(projection));
    [all...]
  /frameworks/opt/photoviewer/src/com/android/ex/photo/loaders/
PhotoPagerLoader.java 35 Context context, Uri photosUri, String[] projection) {
38 mProjection = projection != null ? projection : PhotoContract.PhotoQuery.PROJECTION;
  /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 45 private static final String[] PROJECTION = new String[] {
96 values.put(PROJECTION[COLUMN_INDEX_STATE], CalendarAlerts.STATE_DISMISSED);
  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
CalendarColorCache.java 43 private static String[] PROJECTION = new String[] {Colors.ACCOUNT_NAME, Colors.ACCOUNT_TYPE };
77 mService.startQuery(0, null, Colors.CONTENT_URI, PROJECTION,
SelectSyncedCalendarsMultiAccountActivity.java 43 private static final String[] PROJECTION = new String[] {
98 }.startQuery(0, null, Calendars.CONTENT_URI, PROJECTION,
  /frameworks/opt/chips/src/com/android/ex/chips/
DefaultPhotoManager.java 48 public static final String[] PROJECTION = {
93 photoThumbnailUri, PhotoQuery.PROJECTION, null, null, null);
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
ContactManager.java 180 DirtyQuery.PROJECTION,
338 resolver.query(DataQuery.CONTENT_URI, DataQuery.PROJECTION, DataQuery.SELECTION,
474 resolver.query(DataQuery.CONTENT_URI, DataQuery.PROJECTION, DataQuery.SELECTION,
600 UserIdQuery.PROJECTION,
628 resolver.query(Data.CONTENT_URI, ProfileQuery.PROJECTION, ProfileQuery.SELECTION,
647 public static final String[] PROJECTION = new String[] {
691 public final static String[] PROJECTION = new String[] {Data._ID};
709 public final static String[] PROJECTION = new String[] {
734 public final static String[] PROJECTION = new String[] {
    [all...]
  /development/samples/devbytes/telephony/SmsSampleProject/SmsSample/src/main/java/com/example/android/smssample/
MainActivity.java 82 SmsQuery.PROJECTION[SmsQuery.ADDRESS], SmsQuery.PROJECTION[SmsQuery.BODY] };
163 return new CursorLoader(this, SmsQuery.CONTENT_URI, SmsQuery.PROJECTION, null, null,
191 static final String[] PROJECTION = {
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
MessageMove.java 46 * Projection for a query to get all columns necessary for an actual move.
57 public static final String[] PROJECTION = new String[] {
65 * Projection for a query to get the original folder id for a message.
71 public static final String[] PROJECTION = new String[] { ID, SRC_FOLDER_KEY };
121 final Cursor c = getCursor(cr, CONTENT_URI, ProjectionMoveQuery.PROJECTION, accountId);
230 final Cursor moveCursor = cr.query(CONTENT_URI, ProjectionLastSyncedMailboxQuery.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);
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/program/
program_parse.tab.h 100 PROJECTION = 318,
208 #define PROJECTION 318
  /frameworks/opt/photoviewer/src/com/android/ex/photo/adapters/
PhotoPagerAdapter.java 37 new SimpleArrayMap<String, Integer>(PhotoQuery.PROJECTION.length);
85 for(String column : PhotoQuery.PROJECTION) {
  /packages/apps/Browser/src/com/android/browser/widget/
BookmarkWidgetConfigure.java 119 static final String[] PROJECTION = new String[] {
133 .build(), PROJECTION, null, null, null);

Completed in 1249 milliseconds

1 2 3 4 5