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

1 2 3 4

  /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/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,
  /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.
  /frameworks/opt/chips/src/com/android/ex/chips/
DefaultPhotoManager.java 48 public static final String[] PROJECTION = {
93 photoThumbnailUri, PhotoQuery.PROJECTION, null, null, null);
  /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 38 public static final String[] PROJECTION = new String[] {
56 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);
  /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));
  /development/samples/Support7Demos/src/com/example/android/supportv7/graphics/
PaletteActivity.java 68 * Projection used for querying the {@link android.provider.MediaStore}.
70 static final String[] PROJECTION = {
153 PROJECTION,
  /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 = {
  /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/Calendar/src/com/android/calendar/alerts/
DismissAlarmsService.java 45 private static final String[] PROJECTION = new String[] {
96 values.put(PROJECTION[COLUMN_INDEX_STATE], CalendarAlerts.STATE_DISMISSED);
SnoozeAlarmsService.java 34 private static final String[] PROJECTION = new String[] {
75 dismissValues.put(PROJECTION[COLUMN_INDEX_STATE], CalendarAlerts.STATE_DISMISSED);
  /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/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,
  /developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/
EntryListFragment.java 90 * Projection for querying the content provider.
92 private static final String[] PROJECTION = new String[]{
100 // the projection.
217 PROJECTION, // Projection
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);
  /developers/samples/android/connectivity/sync/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/
EntryListFragment.java 90 * Projection for querying the content provider.
92 private static final String[] PROJECTION = new String[]{
100 // the projection.
217 PROJECTION, // Projection
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);
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/
EntryListFragment.java 90 * Projection for querying the content provider.
92 private static final String[] PROJECTION = new String[]{
100 // the projection.
217 PROJECTION, // Projection

Completed in 381 milliseconds

1 2 3 4