Searched defs:rows (Results 1 - 4 of 4) sorted by relevance

/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/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/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...]

Completed in 582 milliseconds