Searched refs:row (Results 101 - 125 of 159) sorted by relevance

1234567

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DNotificationChildrenContainer.java194 * @param row the row to add
197 public void addNotification(ExpandableNotificationRow row, int childIndex) { argument
199 mChildren.add(newIndex, row);
200 addView(row);
201 row.setUserLocked(mUserLocked);
210 public void removeNotification(ExpandableNotificationRow row) { argument
211 int childIndex = mChildren.indexOf(row);
212 mChildren.remove(row);
213 removeView(row);
[all...]
/frameworks/rs/scriptc/
H A Drs_matrix.rsh180 * Warning: The order of the column and row parameters may be unexpected.
185 * row: Zero-based row of the element to extracted.
188 rsMatrixGet(const rs_matrix4x4* m, uint32_t col, uint32_t row);
191 rsMatrixGet(const rs_matrix3x3* m, uint32_t col, uint32_t row);
194 rsMatrixGet(const rs_matrix2x2* m, uint32_t col, uint32_t row);
224 * If loading from an array, the floats should be in row-major order, i.e. the element a
225 * row 0, column 0 should be first, followed by the element at
226 * row 0, column 1, etc.
558 * Warning: The order of the column and row parameter
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DBaseRowFragment.java88 * row.
183 * Sets the selected row position with smooth animation.
190 * Gets position of currently selected row.
191 * @return Position of currently selected row.
198 * Sets the selected row position.
238 Object getItem(Row row, int position) { argument
239 if (row instanceof ListRow) {
240 return ((ListRow) row).getAdapter().get(position);
H A DBaseRowSupportFragment.java90 * row.
185 * Sets the selected row position with smooth animation.
192 * Gets position of currently selected row.
193 * @return Position of currently selected row.
200 * Sets the selected row position.
240 Object getItem(Row row, int position) { argument
241 if (row instanceof ListRow) {
242 return ((ListRow) row).getAdapter().get(position);
H A DHeadersFragment.java42 * An internal fragment containing a list of row headers.
54 * @param row Row object corresponding to the selected Header.
56 void onHeaderClicked(RowHeaderPresenter.ViewHolder viewHolder, Row row); argument
67 * @param row Row object corresponding to the selected Header.
69 void onHeaderSelected(RowHeaderPresenter.ViewHolder viewHolder, Row row); argument
H A DHeadersSupportFragment.java44 * An internal fragment containing a list of row headers.
56 * @param row Row object corresponding to the selected Header.
58 void onHeaderClicked(RowHeaderPresenter.ViewHolder viewHolder, Row row); argument
69 * @param row Row object corresponding to the selected Header.
71 void onHeaderSelected(RowHeaderPresenter.ViewHolder viewHolder, Row row); argument
H A DVerticalGridFragment.java91 RowPresenter.ViewHolder rowViewHolder, Row row) {
97 rowViewHolder, row);
H A DVerticalGridSupportFragment.java93 RowPresenter.ViewHolder rowViewHolder, Row row) {
99 rowViewHolder, row);
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DZenModePanel.java616 private void bind(final Condition condition, final View row, final int rowId) { argument
620 row.getTag() != null ? (ConditionTag) row.getTag() : new ConditionTag();
621 row.setTag(tag);
628 if (DEBUG) Log.d(mTag, "bind i=" + mZenRadioGroupContent.indexOfChild(row) + " first="
645 tag.lines = row.findViewById(android.R.id.content);
648 tag.line1 = (TextView) row.findViewById(android.R.id.text1);
652 tag.line2 = (TextView) row.findViewById(android.R.id.text2);
668 final ImageView button1 = (ImageView) row.findViewById(android.R.id.button1);
672 onClickTimeButton(row, ta
741 onClickTimeButton(View row, ConditionTag tag, boolean up, int rowId) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DTableLayout.java32 * each defining a row (actually, you can have other children, which will be
34 * their rows, columns, or cells. Each row has zero or more cells; each cell can
36 * as the row with the most cells. A table can leave cells empty. Cells can span
39 * <p>The width of a column is defined by the row with the widest cell in that
60 * <p> Cells must be added to a row in increasing column order, both in code and
63 * a column number, it will be considered an empty cell in that row. See the
68 * will be displayed as a single row that spans all the table columns.</p>
314 * takes up as much as available space as possible in its row.</p>
340 * <p>Makes the given column shrinkable or not. When a row is too wide, the
367 * <p>Applies the columns collapse status to a new row adde
[all...]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
H A DGsmInboundSmsHandlerTest.java133 for (ArrayList<Object> row : mListOfRows) {
137 if (!selectionParams.isMatch(row)) {
142 row.set(getColumnIndex("deleted"), "1");
216 private boolean isMatch(ArrayList<Object> row) { argument
221 if ((paramValue[i] == null && row.get(columnIndex) != null) ||
223 !paramValue[i].equals(row.get(columnIndex)))) {
225 ", " + row.get(columnIndex));
249 for (ArrayList<Object> row : mListOfRows) {
253 if (!selectionParams.isMatch(row)) {
260 retRow.add(row
[all...]
/frameworks/base/core/tests/coretests/src/android/database/
H A DDatabaseGeneralTest.java822 long row;
837 row = ih.insert(cv);
838 cur = mDatabase.rawQuery("SELECT * FROM insert_test WHERE _id == " + row, null);
850 row = ih.insert(cv);
851 cur = mDatabase.rawQuery("SELECT * FROM insert_test WHERE _id == " + row, null);
862 row = ih.insert(cv);
863 Assert.assertEquals(-1, row);
870 row = ih.insert(cv);
871 cur = mDatabase.rawQuery("SELECT * FROM insert_test WHERE _id == " + row, null);
883 row
[all...]
/frameworks/base/media/java/android/media/
H A DClosedCaptionRenderer.java580 int row = rowTable[data1 & 0x07] + ((data2 & 0x20) >> 5);
588 return new PAC(row, indent * 4, style, COLOR_WHITE);
598 return new PAC(row, -1, style, color);
602 PAC(int row, int col, int style, int color) { argument
604 mRow = row;
715 // apply mid-row style change
827 // clear base row
868 private void moveCursorTo(int row, int col) { argument
869 mRow = clamp(row, 1, MAX_ROWS);
873 private void moveCursorToRow(int row) { argument
914 getLineBuffer(int row) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBar.java599 (mStackScroller.getChildLocation(entry.row) & VISIBLE_LOCATIONS) != 0;
1111 ExpandableNotificationRow row = (ExpandableNotificationRow) child;
1112 List<ExpandableNotificationRow> children = row.getNotificationChildren();
1113 if (row.areChildrenExpanded() && children != null) {
1152 // Decrease the delay for every row we animate to give the sense of
1533 if (entry != null && entry.row != null) {
1534 entry.row.setRemoved();
1568 if (entry != null && entry.row != null
1569 && entry.row.isSummaryWithChildren()) {
1570 if (entry.notification.getOverrideGroupKey() != null && !entry.row
4427 onLockedRemoteInput(ExpandableNotificationRow row, View clicked) argument
4443 onLockedWorkRemoteInput(int userId, ExpandableNotificationRow row, View clicked) argument
[all...]
/frameworks/support/documents-archive/src/android/support/provider/
H A DDocumentArchive.java503 final MatrixCursor.RowBuilder row = cursor.newRow();
505 row.add(Document.COLUMN_DOCUMENT_ID, parsedId.toDocumentId(mIdDelimiter));
508 row.add(Document.COLUMN_DISPLAY_NAME, file.getName());
509 row.add(Document.COLUMN_SIZE, entry.getSize());
512 row.add(Document.COLUMN_MIME_TYPE, mimeType);
515 row.add(Document.COLUMN_FLAGS, flags);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DExpandableNotificationRow.java73 /** Does this row contain layouts that can adapt to row expansion */
75 /** Has the user actively changed the expansion state of this row */
77 /** If {@link #mHasUserChangedExpansion}, has the user expanded this row */
84 /** Is the user touching this row */
356 public void addChildNotification(ExpandableNotificationRow row) { argument
357 addChildNotification(row, -1);
363 * @param row the row to add
366 public void addChildNotification(ExpandableNotificationRow row, in argument
375 removeChildNotification(ExpandableNotificationRow row) argument
[all...]
H A DNotificationSettingsIconRow.java39 public void onGearTouched(ExpandableNotificationRow row, int x, int y); argument
44 public void onSettingsIconRowReset(ExpandableNotificationRow row); argument
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
H A DarmVCM4P2_SetPredDir_s.s41 ; * [in] pCoefBufRow pointer to the coefficient row buffer
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
H A DarmVCM4P2_SetPredDir_s.s41 ; * [in] pCoefBufRow pointer to the coefficient row buffer
/frameworks/base/core/tests/coretests/src/android/widget/
H A DSimpleCursorAdapterTest.java244 for (ArrayList row : list) {
245 cursor.addRow(row);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DNotificationTemplateViewWrapper.java49 protected NotificationTemplateViewWrapper(Context ctx, View view, ExpandableNotificationRow row) { argument
50 super(ctx, view, row);
/frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
H A DErrorCalculator.java101 for (int row : mOutputRowRegions) {
102 totalError += row;
/frameworks/compile/mclinker/lib/LD/
H A DStaticResolver.cpp60 unsigned int row = getOrdinate(pNew); local
69 action = link_action[row][col];
/frameworks/support/v7/palette/src/main/java/android/support/v7/graphics/
H A DPalette.java863 // pixels contains all of the pixels, so we need to iterate through each row and
866 for (int row = 0; row < regionHeight; row++) {
867 System.arraycopy(pixels, ((row + mRegion.top) * bitmapWidth) + mRegion.left,
868 subsetPixels, row * regionWidth, regionWidth);
/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationUsageStats.java1154 JSONObject row = new JSONObject();
1155 row.put("user_id", userId);
1156 row.put("package", pkg);
1157 row.put("day", day);
1158 row.put("count", count);
1159 row.put("noisy", noisy);
1160 row.put("muted", muted);
1161 row.put("demoted", demoted);
1162 frequencies.put(row);

Completed in 394 milliseconds

1234567