/frameworks/base/core/tests/coretests/src/android/database/sqlite/ |
D | SQLiteCursorTest.java | 81 Set<Integer> rows = new HashSet<Integer>(); in testFillWindow() local 86 rows.add(j); // store in a hashtable so we can verify the results from cursor later on in testFillWindow() 90 assertEquals(N, rows.size()); in testFillWindow() 102 assertTrue(rows.contains(val)); in testFillWindow() 103 assertTrue(rows.remove(val)); in testFillWindow() 106 assertTrue(rows.isEmpty()); in testFillWindow() 109 rows = new HashSet<Integer>(); in testFillWindow() 113 rows.add(j); in testFillWindow() 122 assertEquals(M, rows.size()); in testFillWindow() 127 assertTrue(rows.contains(val)); in testFillWindow() [all …]
|
/frameworks/base/tools/aapt/ |
D | Images.cpp | 36 image_info() : rows(NULL), is9Patch(false), allocRows(NULL) { } in image_info() 38 if (rows && rows != allocRows) { in ~image_info() 39 free(rows); in ~image_info() 54 png_bytepp rows; member 111 outImageInfo->rows = (png_bytepp)malloc( in read_png() 114 outImageInfo->allocRows = outImageInfo->rows; in read_png() 116 png_set_rows(read_ptr, read_info, outImageInfo->rows); in read_png() 120 outImageInfo->rows[i] = (png_bytep) in read_png() 124 png_read_image(read_ptr, outImageInfo->rows); in read_png() 253 png_bytepp rows, int offset, int height, bool transparent, bool required, in get_vertical_ticks() argument [all …]
|
/frameworks/base/tools/preload/ |
D | sorttable.js | 47 the.appendChild(table.rows[0]); 53 if (table.tHead.rows.length != 1) return; // can't cope with two header rows 60 for (var i=0; i<table.rows.length; i++) { 61 if (table.rows[i].className.search(/\bsortbottom\b/) != -1) { 62 sortbottomrows[sortbottomrows.length] = table.rows[i]; 78 headrow = table.tHead.rows[0].cells; 146 rows = this.sorttable_tbody.rows; 147 for (var j=0; j<rows.length; j++) { 148 row_array[row_array.length] = [sorttable.getInnerText(rows[j].cells[col]), rows[j]]; 169 for (var i=0; i<table.tBodies[0].rows.length; i++) { [all …]
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm/ |
D | h264bsdWriteMacroblock.s | 118 VLD1 {qRow0, qRow1}, [data]! ;cb rows 0,1,2,3 120 VLD1 {qRow2, qRow3}, [data]! ;cb rows 4,5,6,7 122 VLD1 {qRow4, qRow5}, [data]! ;cr rows 0,1,2,3 124 VLD1 {qRow6, qRow7}, [data]! ;cr rows 4,5,6,7
|
/frameworks/base/docs/html/guide/topics/ui/layout/ |
D | grid.jd | 21 displays child {@link android.view.View} elements in rows and columns.</p> 26 <p>{@link android.widget.TableLayout} positions its children into rows 27 and columns. TableLayout containers do not display border lines for their rows, columns, 35 <p>The following sample layout has two rows and two cells in each. The accompanying screenshot show… 164 {@link android.widget.TextView} is used for each cell. In between some of the rows, there is also a
|
D | listview.jd | 75 // These are the Contacts rows that we will retrieve
|
/frameworks/rs/ |
D | rsFont.cpp | 265 uint32_t endY = startY + bitmap->rows; in updateGlyphCache() 270 glyph->mBitmapHeight = bitmap->rows; in updateGlyphCache() 412 if ((uint32_t)bitmap->rows > mCacheLines[mCacheLines.size()-1]->mMaxHeight) { in cacheBitmap() 413 …ont size to large to fit in cache. width, height = %i, %i", (int)bitmap->width, (int)bitmap->rows); in cacheBitmap() 443 …LOGE("Bitmap doesn't fit in cache. width, height = %i, %i", (int)bitmap->width, (int)bitmap->rows); in cacheBitmap() 452 uint32_t endY = startY + bitmap->rows; in cacheBitmap() 832 if ((uint32_t)bitmap->rows > mMaxHeight) { in fitBitmap()
|
/frameworks/base/docs/html/guide/topics/providers/ |
D | content-provider-basics.jd | 258 mSortOrder); // The sort order for the returned rows 290 <td><code>selection</code> specifies the criteria for selecting rows.</td> 303 <code>sortOrder</code> specifies the order in which rows appear in the returned 350 You often use id values when you've retrieved a set of rows and then want to update or delete 449 The expression that specifies the rows to retrieve is split into a selection clause and 493 mSortOrder); // The sort order for the returned rows 580 containing the columns specified by the query's projection for the rows that match the query's 582 rows and columns it contains. Using {@link android.database.Cursor} methods, 583 you can iterate over the rows in the results, determine the data type of each column, get the 595 If no rows match the selection criteria, the provider [all …]
|
D | contacts-provider.jd | 141 Rows representing different people, based on aggregations of raw contact rows. 172 rows in the {@link android.provider.ContactsContract.Data} table. Each data row has a column 258 ({@code becky.smart@dataservice.example.com}) before your app can add raw contact rows. 315 rows and links them both to the raw contact. 319 phone number, email, postal address, photo, and website detail rows are all found in the 431 <td>A raw contact has only one of these rows.</td> 436 <td>A raw contact has only one of these rows.</td> 459 The Contacts Provider combines the raw contact rows across all account types and account names 462 rows, and the aggregation of raw contacts with an existing contact row. Neither applications nor 480 The Contacts Provider links a contact row to its raw contact rows with the contact row's [all …]
|
D | content-provider-creating.jd | 159 Store the data in a form that's compatible with tables of rows and columns. A row 242 rows in other tables (using it as a "foreign key"). Although you can use any name 320 The user then picks one of the displayed rows from the UI in order to look at or modify the 390 for single rows in <code>table3</code>, such as 400 <code>content://<authority>/<path>/<id></code> for single rows. 420 * Sets the integer value for multiple rows in table 3 to 1. Notice that no wildcard is used 500 query, the rows and columns to return, and the sort order of the result. 516 Update existing rows in your provider. Use the arguments to select the table and rows 517 to update and to get the updated column values. Return the number of rows updated. 523 Delete rows from your provider. Use the arguments to select the table and the rows to [all …]
|
D | calendar-provider.jd | 139 of instances to events. For recurring events, multiple rows are automatically 236 be shown. This value affects the generation of rows in the {@link 366 int rows = getContentResolver().update(updateUri, values, null, null); 367 Log.i(DEBUG_TAG, "Rows updated: " + rows);</pre> 609 int rows = getContentResolver().update(updateUri, values, null, null); 610 Log.i(DEBUG_TAG, "Rows updated: " + rows); </pre> 633 int rows = getContentResolver().delete(deleteUri, null, null); 634 Log.i(DEBUG_TAG, "Rows deleted: " + rows);
|
/frameworks/base/core/java/android/inputmethodservice/ |
D | Keyboard.java | 147 private ArrayList<Row> rows = new ArrayList<Row>(); field in Keyboard 610 rows.add(row); in Keyboard() 614 int numRows = rows.size(); in resize() 616 Row row = rows.get(rowIndex); in resize() 800 rows.add(currentRow); in loadKeyboard()
|
/frameworks/base/core/tests/coretests/src/android/widget/ |
D | SimpleCursorAdapterTest.java | 68 private ArrayList<ArrayList> createTestList(int rows, int cols) { in createTestList() argument 72 for (int i = 0; i < rows; i++) { in createTestList()
|
/frameworks/native/opengl/tests/hwc/ |
D | hwcStress.cpp | 558 size_t rows = testRandMod(maxRows) + 1; in initFrames() local 561 frames.resize(rows); in initFrames() 563 for (unsigned int row = 0; row < rows; row++) { in initFrames()
|
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/ |
D | SettingsProvider.java | 294 int rows = 0; in fullyPopulateCache() local 296 rows++; in fullyPopulateCache() 301 if (rows > MAX_CACHE_ENTRIES) { in fullyPopulateCache() 307 … Log.d(TAG, "cache for settings table '" + table + "' rows=" + rows + "; fullycached=" + in fullyPopulateCache()
|
/frameworks/base/docs/html/guide/components/ |
D | loaders.jd | 280 <li><em>selection</em> — A filter declaring which rows to return, 282 <code>null</code> will return all rows for the given URI. </li> 286 <li><em>sortOrder</em> — How to order the rows, formatted as an SQL 439 // These are the Contacts rows that we will retrieve.
|
/frameworks/base/docs/html/distribute/googleplay/promote/ |
D | badges.jd | 197 <textarea id="snippet" cols="100" rows="5" onclick="this.select()"
|
/frameworks/base/docs/html/guide/topics/ui/ |
D | declaring-layout.jd | 379 <p>A tabular layout with an arbitrary number of rows and columns, each cell holding the 380 widget of your choice. The rows resize to fit the largest column. The cell borders are not 416 <p>Displays a scrolling grid of columns and rows.</p>
|
/frameworks/base/docs/html/training/notepad/ |
D | notepad-ex1.jd | 121 <p class="note"><b>Note:</b> A Cursor is returned rather than a collection of rows. This allows 124 tables with lots of rows.</p> 286 example: displaying an arbitrary number of list items in rows on the screen,
|
/frameworks/base/docs/html/training/design-navigation/ |
D | wireframing.jd | 71 …use visual clutter or interactional issues (for example, if there are two rows of tabs on the scre…
|
D | descendant-lateral.jd | 75 …rety, or most of, the parent screen. The grid generally has either 2 or 3 rows and columns, depend…
|
/frameworks/base/docs/html/guide/topics/data/ |
D | data-storage.jd | 425 <p>Every SQLite query will return a {@link android.database.Cursor} that points to all the rows 427 you can navigate results from a database query and read rows and columns.</p>
|
/frameworks/base/docs/html/guide/topics/search/ |
D | adding-custom-suggestions.jd | 165 android.database.Cursor} that points to the rows you have determined to be good suggestions.</p> 331 format on the device or web, you must format the suggestions as rows in a table and
|
/frameworks/base/docs/html/intl/ja/guide/topics/ |
D | fundamentals.jd | 653 <table border="2" width="85%" frame="hsides" rules="rows">
|
/frameworks/base/docs/html/about/versions/ |
D | android-4.0.jd | 190 there is a one-to-one mapping of instances to events. For recurring events, multiple rows are 1297 hierarchy and does not make use of intermediate views such as table rows for providing structure. 1299 rows and/or columns), and by default are laid out sequentially across the grid’s rows and columns.
|