Searched refs:MatrixCursor (Results 1 - 16 of 16) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/app/
H A DSuggestionProvider.java25 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 DMatrixCursorTest.java28 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 DRecipientAlternatesAdapterTest.java20 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 DSampleProvider.java8 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 DTestDocumentsProvider.java24 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 DExternalStorageProvider.java23 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 DIccProvider.java23 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 DSimpleCursorAdapterTest.java23 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 DMatrixCursor.java26 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 DCompositeCursorAdapterTest.java20 import android.database.MatrixCursor;
251 MatrixCursor cursor = new MatrixCursor(new String[]{name});
H A DGroupingListAdapterTests.java25 import android.database.MatrixCursor;
48 private MatrixCursor mCursor;
108 mCursor = new MatrixCursor(PROJECTION);
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DRecentLoader.java27 import android.database.MatrixCursor;
242 merged = new MatrixCursor(new String[0]);
/frameworks/ex/common/java/com/android/common/contacts/
H A DBaseEmailAddressAdapter.java28 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 DFileProvider.java30 import android.database.MatrixCursor;
434 final MatrixCursor cursor = new MatrixCursor(cols, 1);
/frameworks/base/core/tests/coretests/src/android/content/
H A DContentProviderOperationTest.java21 import android.database.MatrixCursor;
222 final MatrixCursor cursor = new MatrixCursor(keys);
/frameworks/ex/chips/src/com/android/ex/chips/
H A DRecipientAlternatesAdapter.java23 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(

Completed in 321 milliseconds