/frameworks/base/core/tests/coretests/src/android/app/ |
H A D | SuggestionProvider.java | 25 import android.database.MatrixCursor; 69 MatrixCursor cursor = new MatrixCursor(COLUMNS); 80 private void addRow(MatrixCursor cursor, String string) {
|
/frameworks/base/core/tests/coretests/src/android/database/ |
H A D | MatrixCursorTest.java | 28 Cursor cursor = new MatrixCursor(new String[] { "a" }); 33 MatrixCursor cursor = new MatrixCursor(new String[] { "a" }); 47 MatrixCursor cursor = newMatrixCursor(); 79 MatrixCursor cursor = newMatrixCursor(); 92 MatrixCursor cursor = newMatrixCursor(); 111 MatrixCursor cursor = newMatrixCursor(); 132 MatrixCursor cursor = newMatrixCursor(); 195 private MatrixCursor newMatrixCursor() { 196 return new MatrixCursor(ne [all...] |
/frameworks/ex/chips/tests/src/com/android/ex/chips/ |
H A D | RecipientAlternatesAdapterTest.java | 20 import android.database.MatrixCursor; 31 MatrixCursor c = new MatrixCursor(Queries.EMAIL.getProjection()); 72 private static MatrixCursor addRow(MatrixCursor c,
|
/frameworks/opt/photoviewer/sample/src/com/example/photoviewersample/ |
H A D | SampleProvider.java | 8 import android.database.MatrixCursor; 63 MatrixCursor matrix = new MatrixCursor(projection); 104 private void addRow(MatrixCursor matrix, int match_id) {
|
/frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/ |
H A D | TestDocumentsProvider.java | 24 import android.database.MatrixCursor; 25 import android.database.MatrixCursor.RowBuilder; 132 final MatrixCursor result = new MatrixCursor(resolveRootProjection(projection)); 150 final MatrixCursor result = new MatrixCursor(resolveDocumentProjection(projection)); 193 public boolean includeIfFinished(MatrixCursor result) { 209 private static class CloudCursor extends MatrixCursor { 304 final MatrixCursor result = new MatrixCursor(resolveDocumentProjectio [all...] |
H A D | ExternalStorageProvider.java | 23 import android.database.MatrixCursor; 24 import android.database.MatrixCursor.RowBuilder; 228 private void includeFile(MatrixCursor result, String docId, File file) 269 final MatrixCursor result = new MatrixCursor(resolveRootProjection(projection)); 329 final MatrixCursor result = new MatrixCursor(resolveDocumentProjection(projection)); 339 final MatrixCursor result = new DirectoryCursor( 350 final MatrixCursor result = new MatrixCursor(resolveDocumentProjectio [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
H A D | IccProvider.java | 23 import android.database.MatrixCursor; 283 private MatrixCursor loadFromEf(int efType) { 302 final MatrixCursor cursor = new MatrixCursor(ADDRESS_BOOK_COLUMN_NAMES, N); 311 return new MatrixCursor(ADDRESS_BOOK_COLUMN_NAMES); 392 * Loads an AdnRecord into a MatrixCursor. Must be called with mLock held. 397 private void loadRecord(AdnRecord record, MatrixCursor cursor, int id) {
|
/frameworks/base/core/tests/coretests/src/android/widget/ |
H A D | SimpleCursorAdapterTest.java | 23 import android.database.MatrixCursor; 240 private static MatrixCursor createCursor(String[] columns, ArrayList<ArrayList> list) { 241 MatrixCursor cursor = new MatrixCursor(columns, list.size());
|
/frameworks/base/core/java/android/database/ |
H A D | MatrixCursor.java | 26 public class MatrixCursor extends AbstractCursor { class in inherits:AbstractCursor 40 public MatrixCursor(String[] columnNames, int initialCapacity) { method in class:MatrixCursor 57 public MatrixCursor(String[] columnNames) { method in class:MatrixCursor
|
/frameworks/ex/common/tests/src/com/android/common/widget/ |
H A D | CompositeCursorAdapterTest.java | 20 import android.database.MatrixCursor; 251 MatrixCursor cursor = new MatrixCursor(new String[]{name});
|
H A D | GroupingListAdapterTests.java | 25 import android.database.MatrixCursor; 48 private MatrixCursor mCursor; 108 mCursor = new MatrixCursor(PROJECTION);
|
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/ |
H A D | RecentLoader.java | 27 import android.database.MatrixCursor; 242 merged = new MatrixCursor(new String[0]);
|
/frameworks/ex/common/java/com/android/common/contacts/ |
H A D | BaseEmailAddressAdapter.java | 28 import android.database.MatrixCursor; 495 MatrixCursor cursor = new MatrixCursor(new String[]{SEARCHING_CURSOR_MARKER}); 539 MatrixCursor newCursor = new MatrixCursor(EmailQuery.PROJECTION);
|
/frameworks/support/v4/java/android/support/v4/content/ |
H A D | FileProvider.java | 30 import android.database.MatrixCursor; 434 final MatrixCursor cursor = new MatrixCursor(cols, 1);
|
/frameworks/base/core/tests/coretests/src/android/content/ |
H A D | ContentProviderOperationTest.java | 21 import android.database.MatrixCursor; 222 final MatrixCursor cursor = new MatrixCursor(keys);
|
/frameworks/ex/chips/src/com/android/ex/chips/ |
H A D | RecipientAlternatesAdapter.java | 23 import android.database.MatrixCursor; 379 * - This method creates a MatrixCursor, so all data will be kept in memory. We wouldn't want 385 final MatrixCursor result = new MatrixCursor(
|