Searched refs:row (Results 76 - 100 of 159) sorted by relevance

1234567

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DRemoteInputController.java142 if (item != null && item.row != null) {
149 if (item.row != null) {
150 item.row.closeRemoteInput();
/frameworks/rs/driver/runtime/
H A Drs_matrix.c173 rsMatrixSet(rs_matrix4x4 *m, uint32_t col, uint32_t row, float v) { argument
174 m->m[col * 4 + row] = v;
178 rsMatrixGet(const rs_matrix4x4 *m, uint32_t col, uint32_t row) { argument
179 return m->m[col * 4 + row];
183 rsMatrixSet(rs_matrix3x3 *m, uint32_t col, uint32_t row, float v) { argument
184 m->m[col * 3 + row] = v;
188 rsMatrixGet(const rs_matrix3x3 *m, uint32_t col, uint32_t row) { argument
189 return m->m[col * 3 + row];
193 rsMatrixSet(rs_matrix2x2 *m, uint32_t col, uint32_t row, float v) { argument
194 m->m[col * 2 + row]
198 rsMatrixGet(const rs_matrix2x2 *m, uint32_t col, uint32_t row) argument
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DDetailsOverviewRow.java27 * An overview {@link Row} for a details fragment. This row consists of an image, a
33 * row. {@link SparseArrayObjectAdapter} is recommended for easily updating actions while
35 * row is bound to a view.
38 * After the row is bound to a view, the application may call {@link #setItem(Object)}
42 * After the row is bound to view, the application may change the image by calling {@link
56 public void onImageDrawableChanged(DetailsOverviewRow row) { argument
62 public void onItemChanged(DetailsOverviewRow row) { argument
68 public void onActionsAdapterChanged(DetailsOverviewRow row) { argument
192 * row is bound to view.
203 * after row i
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_transform.c101 u32 row,col; local
156 for (row = 4, ptr = data; row--; ptr += 4)
258 u32 row,col; local
288 for (row = 4, ptr = data; row--; ptr += 4)
H A Dh264bsd_inter_prediction.c220 /* set row bits 15:0 */
368 u32 row, col; local
378 row = mbNum / currImage->width;
379 col = mbNum - row * currImage->width;
380 row *= 16;
393 h264bsdPredictSamples(data, pMb->mv, &refImage, col, row, 0, 0,
401 h264bsdPredictSamples(data, pMb->mv, &refImage, col, row, 0, 0,
404 h264bsdPredictSamples(data, pMb->mv+8, &refImage, col, row, 0, 8,
412 h264bsdPredictSamples(data, pMb->mv, &refImage, col, row, 0, 0,
415 h264bsdPredictSamples(data, pMb->mv+4, &refImage, col, row,
[all...]
H A Dh264bsd_image.c182 u32 row, col; local
199 row = mbNum / picWidth;
203 lum = (image->data + row * picWidth * 256 + col * 16);
204 cb = (image->data + picSize * 256 + row * picWidth * 64 + col * 8);
/frameworks/rs/
H A DrsRuntime.h182 void rsrMatrixSet(rs_matrix4x4 *m, uint32_t row, uint32_t col, float v);
183 float rsrMatrixGet(const rs_matrix4x4 *m, uint32_t row, uint32_t col);
184 void rsrMatrixSet(rs_matrix3x3 *m, uint32_t row, uint32_t col, float v);
185 float rsrMatrixGet(const rs_matrix3x3 *m, uint32_t row, uint32_t col);
186 void rsrMatrixSet(rs_matrix2x2 *m, uint32_t row, uint32_t col, float v);
187 float rsrMatrixGet(const rs_matrix2x2 *m, uint32_t row, uint32_t col);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DTransformState.java324 ExpandableNotificationRow row = view instanceof ExpandableNotificationRow
333 if (row != null) {
334 row.setClipToActualHeight(true);
341 if (row != null && row.isChildInGroup()) {
343 row.setClipToActualHeight(false);
346 if (row != null && !row.isChildInGroup()) {
H A DNotificationCustomViewWrapper.java48 protected NotificationCustomViewWrapper(View view, ExpandableNotificationRow row) { argument
49 super(view, row);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNotificationGroupManager.java70 mListener.onGroupExpansionChanged(group.summary.row, expanded);
124 group.expanded = added.row.areChildrenExpanded();
138 if (entry.row.isHeadsUp()) {
323 : group.summary.row;
376 if (entry.row.isHeadsUp()) {
408 || !entry.row.isHeadsUp()) {
441 || notificationGroup.summary.row.getClipTopAmount() > 0
442 || notificationGroup.summary.row.getTranslationY() < 0;
487 * @param changedRow the row for which the expansion has changed, which is also the summary
/frameworks/base/tools/aapt2/compile/
H A DPng.cpp37 for (png_bytep row : rows) {
38 if (row != nullptr) {
39 delete[] row;
195 const png_byte* row = rows[j];
197 rr = row[0];
198 gg = row[1];
199 bb = row[2];
200 aa = row[3];
201 row += bpp;
256 const png_byte* row local
391 const png_byte* row = imageInfo.rows[j]; local
660 getHorizontalTicks(png_bytep row, int width, bool transparent, bool required, int32_t* outLeft, int32_t* outRight, const char** outError, uint8_t* outDivs, bool multipleAllowed) argument
750 getHorizontalLayoutBoundsTicks(png_bytep row, int width, bool transparent, bool , int32_t* outLeft, int32_t* outRight, const char** outError) argument
832 maxAlphaOverRow(png_bytep row, int startX, int endX) argument
[all...]
/frameworks/base/core/tests/coretests/src/android/widget/layout/table/
H A DWeightTest.java48 mRow = activity.findViewById(R.id.row);
/frameworks/base/media/java/android/media/
H A DImageUtils.java145 // therefore may have different strides. Copy row by row for such case.
150 for (int row = 0; row < effectivePlaneSize.getHeight(); row++) {
151 if (row == effectivePlaneSize.getHeight() - 1) {
152 // Special case for NV21 backed YUV420_888: need handle the last row
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/drawer/
H A DUserAdapter.java98 final View row = convertView != null ? convertView : createUser(parent);
101 ((ImageView) row.findViewById(android.R.id.icon)).setImageDrawable(user.mIcon);
102 ((TextView) row.findViewById(android.R.id.title)).setText(getTitle(user));
103 return row;
/frameworks/base/core/java/com/android/internal/app/
H A DChooserActivity.java1231 return holder.row;
1235 final ViewGroup row = (ViewGroup) mLayoutInflater.inflate(R.layout.chooser_row,
1237 final RowViewHolder holder = new RowViewHolder(row, mColumnCount);
1241 final View v = mChooserListAdapter.createView(row);
1258 row.addView(v);
1266 row.setLayoutParams(lp);
1274 LayoutParams lp = row.getLayoutParams();
1277 row.setLayoutParams(lp);
1281 row.setTag(holder);
1295 holder.row
1320 getFirstRowPosition(int row) argument
1342 final ViewGroup row; field in class:ChooserActivity.RowViewHolder
1346 RowViewHolder(ViewGroup row, int cellCount) argument
[all...]
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboard.java151 * Container for keys in the keyboard. All keys in a row are at the same Y-coordinate.
152 * Some of the key size defaults can be overridden per row from what the {@link Keyboard}
162 /** Default width of a key in this row. */
164 /** Default height of a key in this row. */
166 /** Default horizontal gap between keys in this row. */
168 /** Vertical gap following this row. */
174 * Edge flags for this row of keys. Possible values that can be assigned are
179 /** The keyboard mode for this row */
325 * @param parent the row that this key belongs to. The row mus
[all...]
/frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
H A DExternalStorageProvider.java382 final RowBuilder row = result.newRow();
383 row.add(Document.COLUMN_DOCUMENT_ID, docId);
384 row.add(Document.COLUMN_DISPLAY_NAME, displayName);
385 row.add(Document.COLUMN_SIZE, file.length());
386 row.add(Document.COLUMN_MIME_TYPE, mimeType);
387 row.add(Document.COLUMN_FLAGS, flags);
388 row.add(DocumentArchiveHelper.COLUMN_LOCAL_FILE_PATH, file.getPath());
393 row.add(Document.COLUMN_LAST_MODIFIED, lastModified);
402 final RowBuilder row = result.newRow();
403 row
[all...]
/frameworks/base/core/java/android/widget/
H A DSimpleMonthView.java484 int row = findClosestRow(previouslyFocusedRect);
485 mHighlightedDay = row == 0 ? 1 : (row * DAYS_IN_WEEK) - offset + 1;
489 int row = findClosestRow(previouslyFocusedRect) + 1;
490 mHighlightedDay = Math.min(mDaysInMonth, (row * DAYS_IN_WEEK) - offset);
514 * Returns the row (0 indexed) closest to previouslyFocusedRect or center if null.
526 // Text is vertically centered within the row height.
531 int row = Math.round(centerY / (float) rowHeight);
535 row = MathUtils.constrain(row,
[all...]
/frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/
H A DStubProvider.java154 final RowBuilder row = result.newRow();
155 row.add(Root.COLUMN_ROOT_ID, id);
156 row.add(Root.COLUMN_FLAGS, info.flags);
157 row.add(Root.COLUMN_TITLE, id);
158 row.add(Root.COLUMN_DOCUMENT_ID, info.document.documentId);
159 row.add(Root.COLUMN_AVAILABLE_BYTES, info.getRemainingCapacity());
609 final RowBuilder row = result.newRow();
610 row.add(Document.COLUMN_DOCUMENT_ID, document.documentId);
611 row.add(Document.COLUMN_DISPLAY_NAME, document.file.getName());
612 row
[all...]
/frameworks/opt/chips/src/com/android/ex/chips/
H A DRecipientAlternatesAdapter.java506 final Object[] row = new Object[] {
519 if (row[Query.NAME] == null) {
520 row[Query.NAME] = defaultDisplayName;
522 if (row[Query.PHOTO_THUMBNAIL_URI] == null) {
523 row[Query.PHOTO_THUMBNAIL_URI] = defaultPhotoThumbnailUri;
525 if ((Integer) row[Query.DISPLAY_NAME_SOURCE] == 0) {
526 row[Query.DISPLAY_NAME_SOURCE] = defaultDisplayNameSource;
528 if (row[Query.LOOKUP_KEY] == null) {
529 row[Query.LOOKUP_KEY] = lookupKey;
533 final String photoThumbnailUri = (String) row[Quer
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DBrowseFragment.java185 // with adapter changes. Example: a row is added before the current selected row;
241 * there are other focusable rows above currently focused row.
379 * Returns whether row scaling is enabled.
386 * Sets the row scaling property.
432 * {@link BrowseFragment} uses this interface to pass row based interaction events to
549 public abstract T createFragment(Object row); argument
557 public RowsFragment createFragment(Object row) { argument
722 Row row = (Row) item;
723 if (row
1372 onItemSelected(Presenter.ViewHolder itemViewHolder, Object item, RowPresenter.ViewHolder rowViewHolder, Row row) argument
[all...]
H A DBrowseSupportFragment.java187 // with adapter changes. Example: a row is added before the current selected row;
243 * there are other focusable rows above currently focused row.
381 * Returns whether row scaling is enabled.
388 * Sets the row scaling property.
434 * {@link BrowseSupportFragment} uses this interface to pass row based interaction events to
551 public abstract T createFragment(Object row); argument
559 public RowsSupportFragment createFragment(Object row) { argument
724 Row row = (Row) item;
725 if (row
1374 onItemSelected(Presenter.ViewHolder itemViewHolder, Object item, RowPresenter.ViewHolder rowViewHolder, Row row) argument
[all...]
/frameworks/support/v17/tests/src/android/support/v17/leanback/app/
H A DBrowseFragmentTest.java127 final WaitLock waitLock = new WaitLock(TIMEOUT, "Timeout while waiting scroll to the row");
145 ListRowPresenter.ViewHolder row = (ListRowPresenter.ViewHolder) mActivity
148 assertEquals(20, row.getGridView().getSelectedPosition());
H A DBrowseSupportFragmentTest.java129 final WaitLock waitLock = new WaitLock(TIMEOUT, "Timeout while waiting scroll to the row");
147 ListRowPresenter.ViewHolder row = (ListRowPresenter.ViewHolder) mActivity
150 assertEquals(20, row.getGridView().getSelectedPosition());
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dconceal.cpp146 int row = MB_SIZE; local
165 while (row)
194 row -= 4;

Completed in 1098 milliseconds

1234567