Searched refs:row (Results 51 - 66 of 66) sorted by relevance

123

/frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
H A DErrorCalculator.java104 for (int row : mOutputRowRegions) {
105 totalError += row;
/frameworks/compile/mclinker/lib/LD/
H A DStaticResolver.cpp61 unsigned int row = getOrdinate(pNew); local
70 action = link_action[row][col];
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dmotion_comp.cpp364 /* the next row; full-pel resolution */
463 /* the next row; full-pel resolution */
788 /* the next row; full-pel resolution */
1132 /* the next row; full-pel resolution */
1558 /* pad extra row */
1676 /* pad extra row */
1719 Int row, col, i; local
1729 row = B_SIZE;
1730 while (row--)
1767 Int row, co local
1797 Int row, col, i; local
1865 Int row, col; local
[all...]
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
H A DSimpleMonthView.java487 int row = (int) (y - MONTH_HEADER_SIZE) / mRowHeight;
491 day += row * mNumDays;
633 final int row = (index / mNumDays);
636 final int y = (offsetY + (row * cellHeight));
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
H A DomxVCM4P2_PredictReconCoefIntra_s.s31 ; * [in] pPredBufRow pointer to the coefficient row buffer; must be aligned
51 ; * [out] pPredBufRow pointer to the updated coefficient row buffer
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
H A DomxVCM4P2_PredictReconCoefIntra_s.s31 ; * [in] pPredBufRow pointer to the coefficient row buffer; must be aligned
51 ; * [out] pPredBufRow pointer to the updated coefficient row buffer
244 ;//updating source and row prediction buffer contents
251 VST1 {dtemp0,dtemp1},[pPredBufRow] ;//storing back the updated row prediction values
/frameworks/base/services/java/com/android/server/content/
H A DSyncManager.java1064 * @param historyRowId the row in which to record the history info for this sync
1291 int row = table.getNumRows();
1302 table.set(row, 0, authority, settings.syncable, settings.enabled);
1303 table.set(row, 4,
1322 table.set(row + i * 2, 12, period + " " + extras);
1323 table.set(row + i * 2 + 1, 12, next);
1326 int row1 = row;
2887 void set(int row, int col, Object... values) { argument
2892 for (int i = mTable.size(); i <= row; i++) {
2899 System.arraycopy(values, 0, mTable.get(row), co
2928 printRow(PrintWriter out, String[] formats, Object[] row) argument
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_intra_prediction.c548 u32 row, col; local
562 row = mbNum / width;
563 col = mbNum - row * width;
566 ptr = image->data + row * 16 * width + col * 16;
569 * sense when current mb is the right-most mb in a row. Same applies to
573 if (row)
588 ptr = image->data + picSize * 256 + row * 8 * width + col * 8;
590 if (row)
/frameworks/base/core/java/android/widget/
H A DGridView.java612 // first row or the first row is scrolled off the top of the drawable area
655 // last row or the last row is scrolled off the bottom of the drawable area
739 * @param rowStart The start of the row that will contain the selection
757 * @param rowStart The start of the row that will contain the selection
770 * Move all views upwards so the selected row does not interesect the bottom
773 * @param childInSelectedRow A child in the row that contains the selection
799 * Move all views upwards so the selected row does not interesect the top
802 * @param childInSelectedRow A child in the row tha
[all...]
H A DGridLayout.java77 * If a child does not specify the row and column indices of the cell it
108 * its row and column groups (which are typically set by setting the
114 * Multiple components in the same row or column group are
149 * For complete control over excess space distribution in a row or column;
200 * children that belong to a row group that uses {@link #TOP} alignment will
216 * belong to a row group that uses {@link #TOP} alignment.
320 * To control the 'direction' in which default row/column indices are generated
376 * RowCount is used only to generate default row/column indices when
507 * Returns whether or not row boundaries are ordered by their grid indices.
509 * @return {@code true} if row boundarie
712 setCellGroup(LayoutParams lp, int row, int rowSpan, int col, int colSpan) argument
[all...]
/frameworks/native/opengl/tests/hwc/
H A DhwcCommit.cpp637 // has limits on the number of objects it can handle on any single row.
1512 for (size_t row = 0; row <= maxHeadingLen; row++) {
1516 if ((maxHeadingLen - row) <= it->length()) {
1517 if (row != maxHeadingLen) {
1518 char ch = (*it)[it->length() - (maxHeadingLen - row)];
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java78 * If a child does not specify the row and column indices of the cell it
109 * its row and column groups (which are typically set by setting the
115 * Multiple components in the same row or column group are
150 * For complete control over excess space distribution in a row or column;
200 * children that belong to a row group that uses {@link #TOP} alignment will
216 * belong to a row group that uses {@link #TOP} alignment.
320 * To control the 'direction' in which default row/column indices are generated
376 * RowCount is used only to generate default row/column indices when
507 * Returns whether or not row boundaries are ordered by their grid indices.
509 * @return {@code true} if row boundarie
712 setCellGroup(LayoutParams lp, int row, int rowSpan, int col, int colSpan) argument
[all...]
/frameworks/native/opengl/tests/angeles/
H A Ddemo.c669 #define M(row,col) m[col*4+row]
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pService.java2103 View row = LayoutInflater.from(mContext).inflate(R.layout.wifi_p2p_dialog_row,
2105 ((TextView) row.findViewById(R.id.name)).setText(r.getString(stringId));
2106 ((TextView) row.findViewById(R.id.value)).setText(value);
2107 group.addView(row);
/frameworks/base/core/java/android/database/
H A DDatabaseUtils.java508 * Prints the contents of a Cursor's current row to System.out.
517 * Prints the contents of a Cursor's current row to a PrintSteam.
541 * Prints the contents of a Cursor's current row to a StringBuilder.
565 * Dump the contents of a Cursor's current row to a String.
568 * @return a String that contains the dumped cursor row
705 * Read the entire contents of a cursor row and store them in a ContentValues.
708 * @param values the {@link ContentValues} to put the row into.
727 * window will contain the requested row and a useful range of rows
739 * @param cursorPosition The row index of the row w
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBar.java1026 toShow.add(ent.row);
2341 // Decrease the delay for every row we animate to give the sense of

Completed in 1077 milliseconds

123