/packages/apps/Messaging/tests/src/com/android/messaging/datamodel/ |
D | FakeCursor.java | 28 private final ArrayList<Integer> mProjection; field in FakeCursor 38 mProjection = new ArrayList<Integer>(projection.length); in FakeCursor() 40 mProjection.add(getColumnIndex(column)); in FakeCursor() 133 final int dataIdx = mProjection.get(columnIndex); in getString() 140 final int dataIdx = mProjection.get(columnIndex); in getInt() 146 final int dataIdx = mProjection.get(columnIndex); in getLong()
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/ |
D | ProfileAndContactsLoader.java | 39 private String[] mProjection; field in ProfileAndContactsLoader 58 mProjection = projection; in setProjection() 121 Cursor cursor = getContext().getContentResolver().query(Profile.CONTENT_URI, mProjection, 127 MatrixCursor matrix = new MatrixCursor(mProjection); 128 Object[] row = new Object[mProjection.length];
|
/packages/apps/Messaging/src/com/android/messaging/datamodel/ |
D | CursorQueryData.java | 38 protected final String[] mProjection; field in CursorQueryData 48 mProjection = projection; in CursorQueryData() 55 return new BoundCursorLoader(bindingId, mContext, mUri, mProjection, mSelection, in createBoundCursorLoader() 65 return mContext.getContentResolver().query(mUri, mProjection, mSelection, in performSynchronousQuery()
|
D | FrequentContactsCursorQueryData.java | 111 return new FrequentContactsCursorLoader(bindingId, mContext, mUri, mProjection, mSelection, in createBoundCursorLoader()
|
/packages/apps/UnifiedEmail/src/com/android/mail/content/ |
D | ObjectCursorLoader.java | 40 final String[] mProjection; field in ObjectCursorLoader 69 mProjection = projection; in ObjectCursorLoader() 76 final Cursor inner = getContext().getContentResolver().query(mUri, mProjection, in loadInBackground() 176 writer.println(Arrays.toString(mProjection)); in dump()
|
/packages/apps/Contacts/src/com/android/contacts/list/ |
D | JoinContactLoader.java | 33 private String[] mProjection; field in JoinContactLoader 77 this.mProjection = projection; in setProjection() 85 .query(mSuggestionUri, mProjection, null, null, null); in loadInBackground()
|
/packages/apps/ContactsCommon/TestCommon/src/com/android/contacts/common/test/mocks/ |
D | MockContentProvider.java | 46 private String[] mProjection; field in MockContentProvider.Query 65 return queryToString(mUri, mProjection, mSelection, mSelectionArgs, mSortOrder); in toString() 69 mProjection = projection; in withProjection() 130 if (!mAnyProjection && !Arrays.equals(projection, mProjection)) { in equals() 154 columnNames = mProjection != null ? mProjection : mDefaultProjection; in getResult()
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
D | LocalAlbum.java | 50 private final String[] mProjection; field in LocalAlbum 75 mProjection = LocalImage.PROJECTION; in LocalAlbum() 82 mProjection = LocalVideo.PROJECTION; in LocalAlbum() 122 uri, mProjection, mWhereClause, in getMediaItem()
|
/packages/apps/TV/src/com/android/tv/util/ |
D | AsyncDbTask.java | 93 private final String[] mProjection; field in AsyncDbTask.AsyncQueryTask 103 mProjection = projection; in AsyncQueryTask() 130 .query(mUri, mProjection, mSelection, mSelectionArgs, mOrderBy)) { in doInBackground() argument
|
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/ |
D | EntrySchema.java | 47 private final String[] mProjection; field in EntrySchema 69 mProjection = projection; in EntrySchema() 82 return mProjection; in getProjection() 264 return db.query(mTableName, mProjection, null, null, null, null, null); in queryAll() 268 Cursor cursor = db.query(mTableName, mProjection, "_id=?", in queryWithId()
|
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
D | AbstractActivityController.java | 3645 final String[] mProjection = UIProvider.ACCOUNTS_PROJECTION; 3654 MailAppProvider.getAccountsUri(), mProjection, mFactory); 3657 return new ObjectCursorLoader<Account>(mContext, mAccount.uri, mProjection,
|