Searched refs:rows (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/database/sqlite/
H A DSQLiteCursorTest.java81 Set<Integer> rows = new HashSet<Integer>();
86 rows.add(j); // store in a hashtable so we can verify the results from cursor later on
90 assertEquals(N, rows.size());
102 assertTrue(rows.contains(val));
103 assertTrue(rows.remove(val));
105 // did I see all the rows in the table?
106 assertTrue(rows.isEmpty());
109 rows = new HashSet<Integer>();
113 rows.add(j);
122 assertEquals(M, rows
[all...]
/frameworks/base/tools/preload/
H A Dsorttable.js47 the.appendChild(table.rows[0]);
53 if (table.tHead.rows.length != 1) return; // can't cope with two header rows
55 // Sorttable v1 put rows with a class of "sortbottom" at the bottom (as
56 // "total" rows, for example). This is B&R, since what you're supposed
57 // to do is put them in a tfoot. So, if there are sortbottom 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[
[all...]
/frameworks/base/tools/aapt/
H A DImages.cpp36 image_info() : rows(NULL), is9Patch(false), allocRows(NULL) { }
38 if (rows && rows != allocRows) {
39 free(rows);
54 png_bytepp rows; member in struct:image_info
111 outImageInfo->rows = (png_bytepp)malloc(
114 outImageInfo->allocRows = outImageInfo->rows;
116 png_set_rows(read_ptr, read_info, outImageInfo->rows);
120 outImageInfo->rows[i] = (png_bytep)
124 png_read_image(read_ptr, outImageInfo->rows);
252 get_vertical_ticks( png_bytepp rows, int offset, int height, bool transparent, bool required, int32_t* outTop, int32_t* outBottom, const char** outError, uint8_t* outDivs, bool multipleAllowed) argument
339 get_vertical_layout_bounds_ticks( png_bytepp rows, int offset, int height, bool transparent, bool required, int32_t* outTop, int32_t* outBottom, const char** outError) argument
378 get_color( png_bytepp rows, int left, int top, int right, int bottom) argument
751 dump_image(int w, int h, png_bytepp rows, int color_type) argument
1093 png_bytepp rows; local
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm/
H A Dh264bsdWriteMacroblock.s118 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/core/tests/coretests/src/android/widget/
H A DSimpleCursorAdapterTest.java68 private ArrayList<ArrayList> createTestList(int rows, int cols) { argument
72 for (int i = 0; i < rows; i++) {
92 // Now see if we can pull 2 rows from the adapter
103 // The adapter should report zero rows
114 // Now see if we can pull 2 rows from the adapter
117 // now put in a different cursor (5 rows)
122 // Now see if we can pull 5 rows from the adapter
133 // Now see if we can pull 2 rows from the adapter
139 // The adapter should report zero rows
/frameworks/rs/
H A DrsFont.cpp265 uint32_t endY = startY + bitmap->rows;
270 glyph->mBitmapHeight = bitmap->rows;
412 if ((uint32_t)bitmap->rows > mCacheLines[mCacheLines.size()-1]->mMaxHeight) {
413 ALOGE("Font size to large to fit in cache. width, height = %i, %i", (int)bitmap->width, (int)bitmap->rows);
443 ALOGE("Bitmap doesn't fit in cache. width, height = %i, %i", (int)bitmap->width, (int)bitmap->rows);
452 uint32_t endY = startY + bitmap->rows;
840 if ((uint32_t)bitmap->rows > mMaxHeight) {
/frameworks/native/opengl/tests/hwc/
H A DhwcStress.cpp224 * c. Select a subset of the rows from the graphic buffer array,
560 size_t rows = testRandMod(maxRows) + 1; local
563 frames.resize(rows);
565 for (unsigned int row = 0; row < rows; row++) {
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboard.java40 * consists of rows of keys.
84 /** Horizontal gap default for all rows */
93 /** Default gap between rows */
147 private ArrayList<Row> rows = new ArrayList<Row>(); field in class:Keyboard
514 * Creates a keyboard from the given xml key layout file. Weeds out rows
537 * Creates a keyboard from the given xml key layout file. Weeds out rows
610 rows.add(row);
614 int numRows = rows.size();
616 Row row = rows.get(rowIndex);
800 rows
[all...]
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsProvider.java128 * used to access the corresponding database rows.
135 /** Operate on existing rows. */
174 /** Insert new rows (no where clause allowed). */
445 int rows = 0;
447 rows++;
452 if (rows > MAX_CACHE_ENTRIES) {
459 + "' rows=" + rows + "; fullycached=" + cache.fullyMatchesDisk());
928 // wind up affecting rows in Secure that are globally shared will not have the

Completed in 312 milliseconds