Searched defs:row (Results 1 - 17 of 17) sorted by relevance

/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dmb_utils.cpp28 int row; local
29 row = MB_SIZE;
32 while (row)
76 row -= 4;
89 int row; local
91 row = B_SIZE;
92 while (row)
129 row -= 4;
H A Dconceal.cpp141 int row = MB_SIZE; local
160 while (row)
189 row -= 4;
/frameworks/base/core/tests/coretests/src/android/widget/focus/
H A DLinearLayoutGrid.java39 public Button getButtonAt(int column, int row) { argument
40 if (row < 0 || row > 2) {
41 throw new IllegalArgumentException("row out of range");
46 return (Button) getColumn(column).getChildAt(row);
H A DScrollingThroughListOfFocusablesTest.java80 // move to next row
145 assertTrue("bottom of last row of last item should be at " +
164 // (make sure we are at last row of second item)
178 // move up to next row
185 // now we are at top row, should have caused scrolling, and fading edge...
193 assertEquals("top of selected row should be just below top vertical fading edge",
210 * @param row
214 int row) {
215 assertEquals("expecting selected row",
216 row, internalFocuse
212 assertInternallySelectedRowOnScreen( InternalSelectionView internalFocused, int row) argument
[all...]
/frameworks/base/core/java/android/text/
H A DPackedObjectVector.java44 getValue(int row, int column) argument
46 if (row >= mRowGapStart)
47 row += mRowGapLength;
49 Object value = mValues[row * mColumns + column];
55 setValue(int row, int column, E value) argument
57 if (row >= mRowGapStart)
58 row += mRowGapLength;
60 mValues[row * mColumns + column] = value;
64 insertAt(int row, E[] values) argument
66 moveRowGapTo(row);
83 deleteAt(int row, int count) argument
[all...]
H A DPackedIntVector.java55 * Returns the value at the specified row and column.
57 * @param row the index of the row to return.
62 * @throws IndexOutOfBoundsException if the row is out of range
63 * (row &lt; 0 || row >= size()) or the column is out of range
66 public int getValue(int row, int column) { argument
69 if (((row | column) < 0) || (row >= size()) || (column >= columns)) {
70 throw new IndexOutOfBoundsException(row
97 setValue(int row, int column, int value) argument
122 setValueInternal(int row, int column, int value) argument
175 insertAt(int row, int[] values) argument
215 deleteAt(int row, int count) argument
[all...]
/frameworks/base/core/java/android/util/
H A DDayOfMonthCursor.java24 * <li>Keeps track of current cursor position (row, column)</li>
63 public void setSelectedRowColumn(int row, int col) { argument
64 mRow = row;
74 * depending on whether the selection is in the first or last row.
91 public boolean isSelected(int row, int column) { argument
92 return (mRow == row) && (mColumn == column);
H A DMonthDisplayHelper.java23 * 6 row calendar grid format.
111 * @param row Which row (0-5).
115 public int[] getDigitsForRow(int row) { argument
116 if (row < 0 || row > 5) {
117 throw new IllegalArgumentException("row " + row
123 result[column] = getDayAt(row, column);
130 * @param row Th
134 getDayAt(int row, int column) argument
179 isWithinCurrentMonth(int row, int column) argument
[all...]
/frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
H A Dumatrix.h47 inline row_type row (size_type r) const { return (row_type (at (r))); } function in class:ustl::matrix
/frameworks/base/core/java/android/view/animation/
H A DGridLayoutAnimationController.java149 * @param rowDelay the delay by which each row animation must be offset
188 * row to the other. The delay is expressed as a fraction of the
203 * children's animations are offset from one row to the other.
306 final int row = getTransformedRowIndex(params);
324 viewDelay = (long) (row * rowDelay + column * rowsCount * rowDelay);
328 viewDelay = (long) (column * columnDelay + row * columnsCount * columnDelay);
333 viewDelay = (long) (column * columnDelay + row * rowDelay);
374 index = params.rowsCount - 1 - params.row;
384 index = params.row;
410 * The view group's row t
412 public int row; field in class:GridLayoutAnimationController.AnimationParameters
[all...]
/frameworks/base/core/jni/
H A DCursorWindow.cpp112 // Fill in the row slot
123 LOGE("The row failed, so back out the new row accounting from allocRowSlot %d", mHeader->numRows);
129 LOG_WINDOW("Allocated row %u, rowSlot is at offset %u, fieldDir is %d bytes at offset %u\n", (mHeader->numRows - 1), ((uint8_t *)rowSlot) - mData, fieldDirSize, fieldDirOffset);
150 // Only grow the window if the first row doesn't fit
152 LOGE("not growing since there are already %d row(s), max size %d", mHeader->numRows, mMaxSize);
175 row_slot_t * CursorWindow::getRowSlot(int row) argument
177 LOG_WINDOW("enter getRowSlot current row num %d, this row %d", mHeader->numRows, row);
222 getFieldSlotWithCheck(int row, int column) argument
241 read_field_slot(int row, int column, field_slot_t * slotOut) argument
307 putLong(unsigned int row, unsigned int col, int64_t value) argument
331 putDouble(unsigned int row, unsigned int col, double value) argument
355 putNull(unsigned int row, unsigned int col) argument
368 getLong(unsigned int row, unsigned int col, int64_t * valueOut) argument
383 getDouble(unsigned int row, unsigned int col, double * valueOut) argument
398 getNull(unsigned int row, unsigned int col, bool * valueOut) argument
[all...]
H A DCursorWindow.h93 * window has first chunk of row_slot_ts, which are offsets to the row directory, followed by
95 * the pre-allocated chunk isn't big enough to refer to all rows. Each row directory has a
135 * Allocate a row slot and its directory. The returned
136 * pointer points to the begining of the row's directory
149 uint32_t read_field_slot(int row, int column, field_slot_t * slot);
162 bool putLong(unsigned int row, unsigned int col, int64_t value);
163 bool putDouble(unsigned int row, unsigned int col, double value);
164 bool putNull(unsigned int row, unsigned int col);
166 bool getLong(unsigned int row, unsigned int col, int64_t * valueOut);
167 bool getDouble(unsigned int row, unsigne
181 getFieldSlot(int row, int column) argument
[all...]
H A Dandroid_database_CursorWindow.cpp132 static void throwExceptionWithRowCol(JNIEnv * env, jint row, jint column) argument
135 snprintf(buf, sizeof(buf), "get field slot from row %d col %d failed", row, column);
146 static jlong getLong_native(JNIEnv * env, jobject object, jint row, jint column) argument
150 LOG_WINDOW("Getting long for %d,%d from %p", row, column, window);
153 err = window->read_field_slot(row, column, &field);
155 throwExceptionWithRowCol(env, row, column);
162 if (window->getLong(row, column, &value)) {
181 if (window->getDouble(row, column, &value)) {
196 static jbyteArray getBlob_native(JNIEnv* env, jobject object, jint row, jin argument
228 isBlob_native(JNIEnv* env, jobject object, jint row, jint column) argument
244 isString_native(JNIEnv* env, jobject object, jint row, jint column) argument
260 isInteger_native(JNIEnv* env, jobject object, jint row, jint column) argument
276 isFloat_native(JNIEnv* env, jobject object, jint row, jint column) argument
292 getString_native(JNIEnv* env, jobject object, jint row, jint column) argument
364 copyStringToBuffer_native(JNIEnv* env, jobject object, jint row, jint column, jint bufferSize, jobject buf) argument
440 getDouble_native(JNIEnv* env, jobject object, jint row, jint column) argument
490 isNull_native(JNIEnv* env, jobject object, jint row, jint column) argument
522 putBlob_native(JNIEnv * env, jobject object, jbyteArray value, jint row, jint col) argument
554 putString_native(JNIEnv * env, jobject object, jstring value, jint row, jint col) argument
610 putLong_native(JNIEnv * env, jobject object, jlong value, jint row, jint col) argument
623 putDouble_native(JNIEnv * env, jobject object, jdouble value, jint row, jint col) argument
636 putNull_native(JNIEnv * env, jobject object, jint row, jint col) argument
[all...]
/frameworks/base/core/tests/coretests/src/android/util/
H A DInternalSelectionView.java35 * row is selected. The rows take up the
43 * selected row
185 public void getRectForRow(Rect rect, int row) { argument
187 final int top = mPaddingTop + row * rowHeight;
247 // set the row that is closest to the rect
/frameworks/base/core/java/android/database/
H A DCursorWindow.java95 * Allocate a row in cursor window
110 * Free the last row
126 * @param row
130 public boolean putBlob(byte[] value, int row, int col) { argument
133 return putBlob_native(value, row - mStartPos, col);
139 private native boolean putBlob_native(byte[] value, int row, int col); argument
144 * @param row
148 public boolean putString(String value, int row, int col) { argument
151 return putString_native(value, row - mStartPos, col);
157 private native boolean putString_native(String value, int row, in argument
166 putLong(long value, int row, int col) argument
175 putLong_native(long value, int row, int col) argument
185 putDouble(double value, int row, int col) argument
194 putDouble_native(double value, int row, int col) argument
202 putNull(int row, int col) argument
211 putNull_native(int row, int col) argument
221 isNull(int row, int col) argument
230 isNull_native(int row, int col) argument
239 getBlob(int row, int col) argument
248 getBlob_native(int row, int col) argument
257 isBlob(int row, int col) argument
273 isLong(int row, int col) argument
289 isFloat(int row, int col) argument
305 isString(int row, int col) argument
314 isBlob_native(int row, int col) argument
315 isString_native(int row, int col) argument
316 isInteger_native(int row, int col) argument
317 isFloat_native(int row, int col) argument
326 getString(int row, int col) argument
335 getString_native(int row, int col) argument
347 copyStringToBuffer(int row, int col, CharArrayBuffer buffer) argument
366 copyStringToBuffer_native( int row, int col, int bufferSize, CharArrayBuffer buffer) argument
377 getLong(int row, int col) argument
386 getLong_native(int row, int col) argument
396 getDouble(int row, int col) argument
405 getDouble_native(int row, int col) argument
415 getShort(int row, int col) argument
431 getInt(int row, int col) argument
448 getFloat(int row, int col) argument
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternView.java137 int row; field in class:LockPatternView.Cell
151 * @param row The row of the cell.
154 private Cell(int row, int column) { argument
155 checkRange(row, column);
156 this.row = row;
161 return row;
169 * @param row The row o
172 of(int row, int column) argument
177 checkRange(int row, int column) argument
776 getCenterYForRow(int row) argument
[all...]
/frameworks/base/tools/aapt/
H A DImages.cpp168 png_bytep row, int width, bool transparent, bool required,
178 if (is_tick(row+i*4, transparent, outError)) {
483 // The first row always starts with the top being at y=0 and the bottom
485 // the first row is stretchable along the Y axis, otherwise it is fixed.
486 // The last row always ends with the bottom being bitmap.height and the top
488 // yDivs[numYDivs-1]. In the former case the last row is stretchable along
497 // The initial yDiv and whether the first row is considered stretchable or
633 png_bytep row = rows[j]; local
635 rr = row[0];
636 gg = row[
167 get_horizontal_ticks( png_bytep row, int width, bool transparent, bool required, int32_t* outLeft, int32_t* outRight, const char** outError, uint8_t* outDivs, bool multipleAllowed) argument
693 png_bytep row = imageInfo.rows[j]; local
816 png_bytep row = imageInfo.rows[j]; local
[all...]

Completed in 198 milliseconds