/frameworks/opt/photoviewer/sample/src/com/example/photoviewersample/ |
D | SampleProvider.java | 72 addRow(matrix, PHOTO_INDIVIDUAL_1); in query() 73 addRow(matrix, PHOTO_INDIVIDUAL_2); in query() 74 addRow(matrix, PHOTO_INDIVIDUAL_3); in query() 75 addRow(matrix, PHOTO_INDIVIDUAL_4); in query() 80 addRow(matrix, PHOTO_INDIVIDUAL_1); in query() 83 addRow(matrix, PHOTO_INDIVIDUAL_2); in query() 86 addRow(matrix, PHOTO_INDIVIDUAL_3); in query() 89 addRow(matrix, PHOTO_INDIVIDUAL_4); in query() 104 private void addRow(MatrixCursor matrix, int match_id) { in addRow() method in SampleProvider
|
/frameworks/base/core/tests/coretests/src/android/database/ |
D | MatrixCursorTest.java | 81 cursor.addRow(new Object[] { "a", 1, 2, 3, 4, 5, new byte[] {(byte) 0xaa, (byte) 0x55} }); in testAddArray() 86 cursor.addRow(new Object[0]); in testAddArray() 94 cursor.addRow(Arrays.asList("a", 1, 2, 3, 4, 5, new byte[] {(byte) 0xaa, (byte) 0x55})); in testAddIterable() 99 cursor.addRow(Collections.emptyList()); in testAddIterable() 104 cursor.addRow(Arrays.asList("a", 1, 2, 3, 4, 5, in testAddIterable() 113 cursor.addRow(new NonIterableArrayList<Object>( in testAddArrayList() 119 cursor.addRow(new NonIterableArrayList<Object>()); in testAddArrayList() 124 cursor.addRow(new NonIterableArrayList<Object>( in testAddArrayList()
|
/frameworks/ex/chips/tests/src/com/android/ex/chips/ |
D | RecipientAlternatesAdapterTest.java | 39 addRow(c, "a", "1@android.com", 1, "home", 1000, 2000, "x", 0); in testRemoveDuplicateDestinations() 46 addRow(c, "a", "2@android.com", 1, "home", 1000, 2000, "x", 0); in testRemoveDuplicateDestinations() 54 addRow(c, "ax", "1@android.com", 11, "homex", 10001, 2000, "xx", 1); in testRemoveDuplicateDestinations() 63 addRow(c, "ax", "2@android.com", 11, "homex", 10001, 2000, "xx", 1); in testRemoveDuplicateDestinations() 72 private static MatrixCursor addRow(MatrixCursor c, in addRow() method in RecipientAlternatesAdapterTest 82 c.addRow(new Object[] {displayName, destination, destinationType, destinationLabel, in addRow()
|
/frameworks/base/core/java/android/database/ |
D | MatrixCursor.java | 101 public void addRow(Object[] columnValues) { in addRow() method in MatrixCursor 122 public void addRow(Iterable<?> columnValues) { in addRow() method in MatrixCursor 128 addRow((ArrayList<?>) columnValues, start); in addRow() 154 private void addRow(ArrayList<?> columnValues, int start) { in addRow() method in MatrixCursor
|
/frameworks/base/core/tests/coretests/src/android/app/ |
D | SuggestionProvider.java | 72 addRow(cursor, query + suffix); in query() 80 private void addRow(MatrixCursor cursor, String string) { in addRow() method in SuggestionProvider
|
/frameworks/ex/common/java/com/android/common/contacts/ |
D | BaseEmailAddressAdapter.java | 496 cursor.addRow(new Object[]{""}); in createLoadingCursor() 545 newCursor.addRow(new Object[]{displayName, emailAddress}); in removeDuplicatesAndTruncate()
|
/frameworks/base/core/tests/coretests/src/android/widget/ |
D | SimpleCursorAdapterTest.java | 243 cursor.addRow(row); in createCursor()
|
/frameworks/ex/common/tests/src/com/android/common/widget/ |
D | CompositeCursorAdapterTest.java | 253 cursor.addRow(new Object[]{i}); in makeCursor()
|
D | GroupingListAdapterTests.java | 111 mCursor.addRow(new Object[]{mNextId, number}); in buildCursor()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | IccProvider.java | 418 cursor.addRow(contact); in loadRecord()
|
/frameworks/support/v4/java/android/support/v4/content/ |
D | FileProvider.java | 435 cursor.addRow(values); in query()
|
/frameworks/ex/chips/src/com/android/ex/chips/ |
D | RecipientAlternatesAdapter.java | 397 result.addRow(new Object[] { in removeDuplicateDestinations()
|
/frameworks/base/core/tests/coretests/src/android/content/ |
D | ContentProviderOperationTest.java | 224 cursor.addRow(values); in getCursor()
|
/frameworks/base/docs/html/guide/topics/providers/ |
D | content-provider-creating.jd | 587 use {@link android.database.MatrixCursor#addRow(Object[]) addRow()} to add a new row.
|
/frameworks/base/docs/html/guide/topics/search/ |
D | adding-custom-suggestions.jd | 320 android.database.MatrixCursor#addRow(Object[])}. Return the final product from your Content
|
/frameworks/base/api/ |
D | current.txt | 8153 method public void addRow(java.lang.Object[]); 8154 method public void addRow(java.lang.Iterable<?>);
|