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

/frameworks/base/core/java/android/hardware/camera2/params/
H A DLensShadingMap.java51 * {@code RggbChannelVector.COUNT * rows * columns}
56 * or if rows or columns is not positive
62 public LensShadingMap(final float[] elements, final int rows, final int columns) { argument
64 mRows = checkArgumentPositive(rows, "rows must be positive");
78 * Get the number of rows in this map.
104 * <p>The rows must be within the range [0, {@link #getRowCount}),
109 * {@code Geven} is the green channel for the even rows of a Bayer pattern, and
110 * {@code Godd} is the odd rows.
143 * <p>The rows mus
[all...]
/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.cpp223 * c. Select a subset of the rows from the graphic buffer array,
559 size_t rows = testRandMod(maxRows) + 1; local
562 frames.resize(rows);
564 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.cpp38 image_info() : rows(NULL), is9Patch(false),
42 if (rows && rows != allocRows) {
43 free(rows);
64 png_bytepp rows; member in struct:image_info
142 outImageInfo->rows = (png_bytepp)malloc(
145 outImageInfo->allocRows = outImageInfo->rows;
147 png_set_rows(read_ptr, read_info, outImageInfo->rows);
151 outImageInfo->rows[i] = (png_bytep)
155 png_read_image(read_ptr, outImageInfo->rows);
283 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
370 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
408 find_max_opacity(png_byte** rows, int startX, int startY, int endX, int endY, int dX, int dY, int* out_inset) argument
437 max_alpha_over_col(png_byte** rows, int offsetX, int startY, int endY) argument
506 get_color( png_bytepp rows, int left, int top, int right, int bottom) argument
845 dump_image(int w, int h, png_bytepp rows, int color_type) argument
1206 png_bytepp rows; local
[all...]

Completed in 169 milliseconds