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

1 23 4

  /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,
MessageStateChange.java 44 * Projection for a query to get all columns necessary for an actual change.
55 public static final String[] PROJECTION = new String[] {
115 final Cursor c = getCursor(cr, CONTENT_URI, ProjectionChangeQuery.PROJECTION, accountId);
  /packages/apps/Gallery2/src/com/android/gallery3d/gadget/
WidgetDatabaseHelper.java 56 private static final String[] PROJECTION = {
237 cursor = db.query(TABLE_WIDGETS, PROJECTION,
258 cursor = db.query(TABLE_WIDGETS, PROJECTION,
  /cts/tests/tests/app/src/android/app/cts/
AlertDialog_BuilderTest.java 486 final String[] PROJECTION = new String[] {
490 final Cursor c = mContext.getContentResolver().query(People.CONTENT_URI, PROJECTION, null,
  /development/samples/training/ContactsList/src/com/example/android/contactslist/ui/
ContactDetailFragment.java 325 ContactDetailQuery.PROJECTION,
332 ContactAddressQuery.PROJECTION,
648 // The query projection (columns to fetch from the provider)
650 final static String[] PROJECTION = {
655 // The query column numbers which map to each value in the projection
668 // The query projection (columns to fetch from the provider)
669 final static String[] PROJECTION = {
681 // The query column numbers which map to each value in the projection
ContactsListFragment.java 480 ContactsQuery.PROJECTION,
    [all...]
  /packages/apps/Browser/src/com/android/browser/
BrowserSnapshotPage.java 61 private static final String[] PROJECTION = new String[] {
126 Snapshots.CONTENT_URI, PROJECTION,
BrowserHistoryPage.java 88 static final String[] PROJECTION = new String[] {
122 HistoryQuery.PROJECTION, where, null, sort);
132 HistoryQuery.PROJECTION, where, null, Combined.VISITS + " DESC");
  /packages/apps/Browser/src/com/android/browser/widget/
BookmarkThumbnailWidgetService.java 58 private static final String[] PROJECTION = new String[] {
344 mBookmarks = mContext.getContentResolver().query(uri, PROJECTION,
350 Cursor c = mContext.getContentResolver().query(uri, PROJECTION,
  /packages/apps/Calendar/src/com/android/calendar/alerts/
AlertActivity.java 56 private static final String[] PROJECTION = new String[] {
98 values.put(PROJECTION[INDEX_STATE], CalendarAlerts.STATE_DISMISSED);
127 values.put(PROJECTION[INDEX_STATE], CalendarAlerts.STATE_DISMISSED);
236 mQueryHandler.startQuery(0, null, uri, PROJECTION, SELECTION, SELECTIONARG,
  /packages/apps/Calendar/src/com/android/calendar/event/
AttendeesView.java 66 private static final String[] PROJECTION = new String[] {
365 mPresenceQueryHandler.startQuery(item.mUpdateCounts + 1, item, uri, PROJECTION, selection,
  /packages/apps/Email/src/com/android/email/service/
Pop3Service.java 139 private static final String[] PROJECTION = new String[] {
244 LocalMessageInfo.PROJECTION,
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
LocalImage.java 56 // the following PROJECTION array.
72 static final String[] PROJECTION = {
96 PROJECTION[INDEX_WIDTH] = MediaColumns.WIDTH;
97 PROJECTION[INDEX_HEIGHT] = MediaColumns.HEIGHT;
118 Cursor cursor = LocalAlbum.getItemCursor(resolver, uri, PROJECTION, id);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactDirectoryManager.java 81 public static final String[] PROJECTION = {
419 uri, DirectoryQuery.PROJECTION, null, null, null);
  /packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/
DictionaryBackupAgent.java 69 private static final String[] PROJECTION = {
152 Cursor cursor = getContentResolver().query(Words.CONTENT_URI, PROJECTION,
  /cts/tests/tests/database/src/android/database/cts/
DatabaseUtilsTest.java 145 final String[] PROJECTION = new String[] {
149 Cursor cursor = db.query(TABLE_NAME, PROJECTION, null, null, 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...]
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/program/
program_parse.tab.h 100 PROJECTION = 318,
208 #define PROJECTION 318
  /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/Calendar/src/com/android/calendar/selectcalendars/
SelectSyncedCalendarsMultiAccountAdapter.java 114 private static final String[] PROJECTION = new String[] {
125 //Keep these in sync with the projection
459 Calendars.CONTENT_URI, PROJECTION,
  /packages/apps/Mms/src/com/android/mms/ui/
MessageListAdapter.java 52 static final String[] PROJECTION = new String[] {
84 // with above PROJECTION.
  /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/base/core/java/android/provider/
MediaStore.java 571 private static final String[] PROJECTION = new String[] {_ID, MediaColumns.DATA};
616 c = cr.query(cancelUri, PROJECTION, null, null, null);
666 c = cr.query(baseUri, PROJECTION, column + origId, null, null);
680 c = cr.query(blockingUri, PROJECTION, null, null, null);
715 c = cr.query(uri, PROJECTION, null, null, null);
    [all...]
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsBackupAgent.java 107 private static final String[] PROJECTION = {
610 Cursor cursor = getContentResolver().query(Settings.System.CONTENT_URI, PROJECTION, null,
620 Cursor cursor = getContentResolver().query(Settings.Secure.CONTENT_URI, PROJECTION, null,
630 Cursor cursor = getContentResolver().query(Settings.Global.CONTENT_URI, PROJECTION, null,
    [all...]
  /frameworks/opt/chips/src/com/android/ex/chips/
BaseRecipientAdapter.java 109 public static final String[] PROJECTION = {
328 DirectoryListQuery.URI, DirectoryListQuery.PROJECTION,
    [all...]

Completed in 711 milliseconds

1 23 4