Searched refs:row (Results 1 - 25 of 102) sorted by last modified time

12345

/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java77 * If a child does not specify the row and column indices of the cell it
115 * Multiple components in the same row or column group are
192 * children that belong to a row group that uses {@link #TOP} alignment will
208 * belong to a row group that uses {@link #TOP} alignment.
312 * To control the 'direction' in which default row/column indices are generated
368 * RowCount is used only to generate default row/column indices when
499 * Returns whether or not row boundaries are ordered by their grid indices.
501 * @return {@code true} if row boundaries must appear in the order of their indices,
513 * When this property is {@code true}, GridLayout is forced to place the row boundaries
516 * When this property is {@code false} GridLayout is at liberty to place the vertical row
704 setCellGroup(LayoutParams lp, int row, int rowSpan, int col, int colSpan) argument
[all...]
/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/rs/
H A DrsMatrix2x2.h28 inline float get(uint32_t col, uint32_t row) const {
29 return m[col*2 + row];
32 inline void set(uint32_t col, uint32_t row, float v) { argument
33 m[col*2 + row] = v;
H A DrsMatrix3x3.h28 inline float get(uint32_t col, uint32_t row) const {
29 return m[col*3 + row];
32 inline void set(uint32_t col, uint32_t row, float v) { argument
33 m[col*3 + row] = v;
H A DrsMatrix4x4.h28 float get(uint32_t col, uint32_t row) const {
29 return m[col*4 + row];
32 void set(uint32_t col, uint32_t row, float v) { argument
33 m[col*4 + row] = v;
H A DrsRuntime.h170 void rsrMatrixSet(rs_matrix4x4 *m, uint32_t row, uint32_t col, float v);
171 float rsrMatrixGet(const rs_matrix4x4 *m, uint32_t row, uint32_t col);
172 void rsrMatrixSet(rs_matrix3x3 *m, uint32_t row, uint32_t col, float v);
173 float rsrMatrixGet(const rs_matrix3x3 *m, uint32_t row, uint32_t col);
174 void rsrMatrixSet(rs_matrix2x2 *m, uint32_t row, uint32_t col, float v);
175 float rsrMatrixGet(const rs_matrix2x2 *m, uint32_t row, uint32_t col);
/frameworks/rs/scriptc/
H A Drs_matrix.rsh58 * @param row The zero-based row of the element to be set.
61 * \warning The order of the column and row parameters may be
67 rsMatrixSet(rs_matrix4x4 *m, uint32_t col, uint32_t row, float v);
72 rsMatrixSet(rs_matrix3x3 *m, uint32_t col, uint32_t row, float v);
77 rsMatrixSet(rs_matrix2x2 *m, uint32_t col, uint32_t row, float v);
84 * @param row The zero-based row of the element to extracted.
86 * \warning The order of the column and row parameters may be
92 rsMatrixGet(const rs_matrix4x4 *m, uint32_t col, uint32_t row);
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DBaseRowFragment.java118 * Sets the selected row position with smooth animation.
125 * Sets the selected row position.
157 Object getItem(Row row, int position) { argument
158 if (row instanceof ListRow) {
159 return ((ListRow) row).getAdapter().get(position);
H A DBaseRowSupportFragment.java120 * Sets the selected row position with smooth animation.
127 * Sets the selected row position.
159 Object getItem(Row row, int position) { argument
160 if (row instanceof ListRow) {
161 return ((ListRow) row).getAdapter().get(position);
H A DBrowseFragment.java295 * item or row is selected by a user.
297 * @param listener The listener to call when an item or row is selected.
473 * @param enable true to enable row scaling
780 * Sets the {@link PresenterSelector} used to render the row headers.
783 * the Presenter for each row header.
833 RowPresenter.ViewHolder rowViewHolder, Row row) {
835 if (DEBUG) Log.v(TAG, "row selected position " + position);
839 rowViewHolder, row);
846 public void onItemSelected(Object item, Row row) {
848 mExternalOnItemSelectedListener.onItemSelected(item, row);
[all...]
H A DBrowseSupportFragment.java297 * item or row is selected by a user.
299 * @param listener The listener to call when an item or row is selected.
475 * @param enable true to enable row scaling
782 * Sets the {@link PresenterSelector} used to render the row headers.
785 * the Presenter for each row header.
835 RowPresenter.ViewHolder rowViewHolder, Row row) {
837 if (DEBUG) Log.v(TAG, "row selected position " + position);
841 rowViewHolder, row);
848 public void onItemSelected(Object item, Row row) {
850 mExternalOnItemSelectedListener.onItemSelected(item, row);
[all...]
H A DHeadersFragment.java38 * An internal fragment containing a list of row headers.
77 Row row = (Row) getAdapter().get(position);
78 mOnItemSelectedListener.onItemSelected(null, row);
H A DHeadersSupportFragment.java40 * An internal fragment containing a list of row headers.
79 Row row = (Row) getAdapter().get(position);
80 mOnItemSelectedListener.onItemSelected(null, row);
H A DPlaybackControlGlue.java39 * controls row you must pass it to {@link #setControlsRow}. The row will be updated by the glue
41 * {@link #createControlsRowAndPresenter()} which will set a controls row and return
42 * a row presenter you can use to present the row.
46 * on the controls row as the primary actions adapter, and adds actions to it. You can provide
56 * <p>To update the controls row progress during playback, override {@link #enableProgressUpdating}
181 RowPresenter.ViewHolder viewHolder2, Row row) {
189 viewHolder2, row);
394 * Sets the controls row t
760 onRowChanged(PlaybackControlsRow row) argument
[all...]
H A DSearchFragment.java313 RowPresenter.ViewHolder rowViewHolder, Row row) {
318 mOnItemSelectedListener.onItemSelected(item, row);
322 rowViewHolder, row);
329 RowPresenter.ViewHolder rowViewHolder, Row row) {
333 mOnItemClickedListener.onItemClicked(item, row);
337 rowViewHolder, row);
H A DSearchSupportFragment.java315 RowPresenter.ViewHolder rowViewHolder, Row row) {
320 mOnItemSelectedListener.onItemSelected(item, row);
324 rowViewHolder, row);
331 RowPresenter.ViewHolder rowViewHolder, Row row) {
335 mOnItemClickedListener.onItemClicked(item, row);
339 rowViewHolder, row);
H A DVerticalGridFragment.java157 RowPresenter.ViewHolder rowViewHolder, Row row) {
159 if (DEBUG) Log.v(TAG, "row selected position " + position);
162 mOnItemSelectedListener.onItemSelected(item, row);
166 rowViewHolder, row);
H A DVerticalGridSupportFragment.java159 RowPresenter.ViewHolder rowViewHolder, Row row) {
161 if (DEBUG) Log.v(TAG, "row selected position " + position);
164 mOnItemSelectedListener.onItemSelected(item, row);
168 rowViewHolder, row);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DDetailsOverviewRowPresenter.java37 * overview of an item. Typically this row will be the first row in a fragment
57 * detailed description , he/she should write a new presenter class for row object.
274 * description of the row.
330 * transiting into overview row created by this presenter. The transition will
335 * overview row, while bounds of overview row grows and reveals text
351 * transiting into overview row created by this presenter. The transition will
356 * overview row, while bounds of overview row grow
[all...]
H A DGridLayoutManager.java201 * The orientation of a "row".
250 * User-specified row height/column width. Can be WRAP_CONTENT.
256 * the row height, equal for all rows. Grid items may have variable length
262 * Tracks the secondary size of each row.
308 * Tracking start/end position of each row for visible items.
496 * Set the row height. May be WRAP_CONTENT, or a size in pixels.
502 throw new IllegalArgumentException("Invalid row height: " + height);
607 // are horizontal and have more than one row.
721 // we try to maintain each row's position if number of rows keeps the same
742 // initialize row star
[all...]
H A DOnItemClickedListener.java25 public void onItemClicked(Object item, Row row); argument
H A DOnItemSelectedListener.java17 * Interface for receiving notification when a row or item becomes selected.
23 * Called when the a row or a new item becomes selected. The concept of current selection
26 * item or selected row when user selects rows outside row UI (e.g. headers left of
30 * selection changes between rows, regardless if row view has focus or not.
32 * For a {@link ListRow} case, parameter item can be null if the list row is empty.
35 * In the case of a grid, the row parameter is always null.
38 * Row has focus: event is fired when focus changes between child of the row.
41 * None of the row has focus: the event is fired with the current selected row an
48 onItemSelected(Object item, Row row) argument
[all...]
H A DOnItemViewClickedListener.java22 RowPresenter.ViewHolder rowViewHolder, Row row);
21 onItemClicked(Presenter.ViewHolder itemViewHolder, Object item, RowPresenter.ViewHolder rowViewHolder, Row row) argument
H A DOnItemViewSelectedListener.java17 * Interface for receiving notification when a row or item becomes selected.
21 * Called when the a row or a new item becomes selected. The concept of current selection
24 * item or selected row when user selects rows outside row UI (e.g. headers left of
28 * selection changes between rows, regardless if row view has focus or not.
30 * For a {@link ListRow} case, parameter item can be null if the list row is empty.
33 * In the case of a grid, the row parameter is always null.
36 * Row has focus: event is fired when focus changes between child of the row.
39 * None of the row has focus: the event is fired with the current selected row an
48 onItemSelected(Presenter.ViewHolder itemViewHolder, Object item, RowPresenter.ViewHolder rowViewHolder, Row row) argument
[all...]
H A DPlaybackControlsRowPresenter.java31 * series of playback control buttons. Typically this row will be the first row in a fragment
282 * Shows or hides space at the bottom of the playback controls row.
283 * This allows the row to hug the bottom of the display when no
344 PlaybackControlsRow row = (PlaybackControlsRow) vh.getRow();
348 if (row.getItem() == null) {
360 mDescriptionPresenter.onBindViewHolder(vh.mDescriptionViewHolder, row.getItem());
366 if (row.getImageDrawable() == null || row.getItem() == null) {
373 vh.mImageView.setImageDrawable(row
[all...]

Completed in 216 milliseconds

12345