HomeSort by relevance Sort by last modified time
    Searched refs:row (Results 176 - 200 of 2708) sorted by null

1 2 3 4 5 6 78 91011>>

  /frameworks/support/content/tests/java/android/support/content/
TestContentProvider.java 184 for (int row = 0; row < windowSize; row++) {
188 if (!fillRow(window, row)) {
248 private void fillRow(RowBuilder row, int rowId) {
249 row.add(createCellValue(rowId, 0));
250 row.add(createCellValue(rowId, 1));
251 row.add(createCellValue(rowId, 2));
252 row.add(createCellValue(rowId, 3));
253 row.add(createCellValue(rowId, 4))
    [all...]
  /packages/apps/TV/src/com/android/tv/dvr/ui/list/
SeriesScheduleRowAdapter.java 46 * An adapter for series schedule row.
111 for (EpisodicProgramRow row : rows) {
112 add(row);
146 EpisodicProgramRow row = (EpisodicProgramRow) get(index); local
147 if (!row.isStartRecordingRequested()) {
148 setScheduleToRow(row, schedule);
159 EpisodicProgramRow row = (EpisodicProgramRow) get(index); local
160 row.setSchedule(null);
170 EpisodicProgramRow row = (EpisodicProgramRow) get(index); local
174 addPendingUpdate(row);
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/
ExpectedKeyboardBuilder.java 26 * An expected keyboard is an array of rows, and a row consists of an array of {@link ExpectedKey}s.
27 * Each row may have different number of {@link ExpectedKey}s. While building an expected keyboard,
28 * an {@link ExpectedKey} can be specified by a row number and a column number, both numbers starts
90 for (int row = 1; row <= rowCount; row++) {
91 ExpectedKey[] keys = getRowAt(row);
101 setRowAt(row, keys);
133 * Set the row with specified keys.
134 * @param row the row number to set keys
    [all...]
  /external/autotest/frontend/client/src/autotest/moblab/wizard/
CloudStorageCard.java 44 int row = 0; local
48 layoutTable.setWidget(row, 1, chkUseExisting);
68 // Row for boto key id.
69 row++;
70 layoutTable.setWidget(row, 0, new Label("Boto Key ID"));
71 layoutTable.setWidget(row, 1, createValueFieldWidget(CloudStorageInfo.JSON_FIELD_BOTO_KEY_ID,
74 // Row for boto key secret.
75 row++;
76 layoutTable.setWidget(row, 0, new Label("Boto Key Secret"));
77 layoutTable.setWidget(row, 1, createStringValueFieldWidget
    [all...]
  /external/eigen/test/
is_same_dense.cpp 26 VERIFY(!is_same_dense(m1.row(0),m1.col(0)));
28 Ref<const ColMatrixXd> const_ref_m1_row(m1.row(1));
29 VERIFY(!is_same_dense(m1.row(1),const_ref_m1_row));
  /frameworks/opt/colorpicker/src/com/android/colorpicker/
ColorPickerPalette.java 32 * row (and the padding between the squares) is determined by the user.
74 TableRow row = new TableRow(getContext()); local
77 row.setLayoutParams(params);
78 return row;
102 TableRow row = createTableRow(); local
107 addSwatchToRow(row, colorSwatch, rowNumber);
112 addView(row);
113 row = createTableRow();
119 // Create blank views to fill the row if the last row has not been filled
    [all...]
  /libcore/xml/src/main/java/org/xmlpull/v1/
XmlPullParserException.java 13 protected int row = -1; field in class:XmlPullParserException
29 public XmlPullParserException(String s, int row, int column) {
31 this.row = row;
42 this.row = parser.getLineNumber();
50 public int getLineNumber() { return row; }
  /packages/apps/Calendar/src/com/android/calendar/agenda/
AgendaByDayAdapter.java 105 RowInfo row = mRowInfo.get(i); local
106 if (row != null && row.mType == TYPE_DAY)
138 RowInfo row = mRowInfo.get(position); local
139 if (row.mType == TYPE_DAY) {
140 return row;
142 return mAgendaAdapter.getItem(row.mPosition);
151 RowInfo row = mRowInfo.get(position); local
152 if (row.mType == TYPE_DAY) {
155 return mAgendaAdapter.getItemId(row.mPosition)
183 RowInfo row = mRowInfo.get(position); local
533 RowInfo row = mRowInfo.get(index); local
600 RowInfo row = mRowInfo.get(headerPos); local
622 RowInfo row = mRowInfo.get(index); local
640 RowInfo row = mRowInfo.get(position); local
655 RowInfo row = mRowInfo.get(listPos); local
679 RowInfo row = mRowInfo.get(position); local
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/datamodel/
FrequentContactsCursorBuilder.java 112 final Object[] row = new Object[ContactUtil.PhoneQuery.PROJECTION.length]; local
113 row[ContactUtil.INDEX_DATA_ID] =
115 row[ContactUtil.INDEX_CONTACT_ID] =
117 row[ContactUtil.INDEX_LOOKUP_KEY] =
119 row[ContactUtil.INDEX_DISPLAY_NAME] =
121 row[ContactUtil.INDEX_PHOTO_URI] =
123 row[ContactUtil.INDEX_PHONE_EMAIL] =
125 row[ContactUtil.INDEX_PHONE_EMAIL_TYPE] =
127 row[ContactUtil.INDEX_PHONE_EMAIL_LABEL] =
129 rows.add(row);
    [all...]
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/model/
ProfilesTableModel.java 39 public Object getValueAt(int row, int column) {
43 return NAMES[row];
47 return formatter.format(profiles[row]) + "";
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
FieldLUDecompositionImpl.java 88 for (int row = 0; row < m; row++) {
89 pivot[row] = row;
100 for (int row = 0; row < col; row++) {
101 final T[] luRow = lu[row];
103 for (int i = 0; i < row; i++)
    [all...]
  /external/webp/src/dsp/
filters_neon.c 30 assert(row >= 0 && num_rows > 0 && row + num_rows <= height); \
70 int row, int num_rows,
72 const size_t start_offset = row * stride;
73 const int last_row = row + num_rows;
78 if (row == 0) {
82 row = 1;
88 while (row < last_row) {
92 ++row;
109 int row, int num_rows
    [all...]
filters_sse2.c 32 assert(row >= 0 && num_rows > 0 && row + num_rows <= height); \
76 int row, int num_rows,
78 const size_t start_offset = row * stride;
79 const int last_row = row + num_rows;
84 if (row == 0) {
88 row = 1;
94 while (row < last_row) {
98 ++row;
109 int row, int num_rows, uint8_t* out)
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
HTMLTable.java 56 final Row row = new Row (true); local
57 add (row);
59 return row;
64 final Row row = new Row (false); local
65 add (row);
67 return row;
    [all...]
  /external/pdfium/core/fxge/dib/
fx_dib_main.cpp 139 for (int row = 0; row < pSrc->GetHeight(); row++)
140 FXSYS_memcpy(m_pBuffer + row * m_Pitch, pSrc->GetScanline(row), m_Pitch);
195 for (int row = rect.top; row < rect.bottom; row++) {
196 uint32_t* src_scan = (uint32_t*)GetScanline(row) + rect.left / 32;
197 uint32_t* dest_scan = (uint32_t*)pNewBitmap->GetScanline(row - rect.top)
    [all...]
  /external/autotest/frontend/client/src/autotest/afe/
CheckBoxPanelDisplay.java 20 int row = index / numColumns; local
22 table.setWidget(row, col, checkbox);
  /external/eigen/Eigen/src/Core/
ForceAlignedAccess.h 49 EIGEN_DEVICE_FUNC inline const CoeffReturnType coeff(Index row, Index col) const
51 return m_expression.coeff(row, col);
54 EIGEN_DEVICE_FUNC inline Scalar& coeffRef(Index row, Index col)
56 return m_expression.const_cast_derived().coeffRef(row, col);
70 inline const PacketScalar packet(Index row, Index col) const
72 return m_expression.template packet<Aligned>(row, col);
76 inline void writePacket(Index row, Index col, const PacketScalar& x)
78 m_expression.const_cast_derived().template writePacket<Aligned>(row, col, x);
  /external/guava/guava/src/com/google/common/collect/
AbstractTable.java 58 for (Map<C, V> row : rowMap().values()) {
59 if (row.containsValue(value)) {
68 Map<C, V> row = Maps.safeGet(rowMap(), rowKey); local
69 return row != null && Maps.safeContainsKey(row, columnKey);
74 Map<C, V> row = Maps.safeGet(rowMap(), rowKey); local
75 return (row == null) ? null : Maps.safeGet(row, columnKey);
90 Map<C, V> row = Maps.safeGet(rowMap(), rowKey); local
91 return (row == null) ? null : Maps.safeRemove(row, columnKey)
125 Map<C, V> row = Maps.safeGet(rowMap(), cell.getRowKey()); local
136 Map<C, V> row = Maps.safeGet(rowMap(), cell.getRowKey()); local
    [all...]
  /external/libvpx/libvpx/vp9/decoder/
vp9_dthread.h 55 // Wait until ref_buf has been decoded to row in real pixel unit.
60 int row);
64 void vp9_frameworker_broadcast(RefCntBuffer *const buf, int row);
  /external/skia/src/codec/
SkSampler.h 25 * Update the sampler to sample every sampleY'th row.
39 * Based on fSampleY, return whether this row belongs in the output.
41 * @param row Row of the image, starting with the first row in the subset.
43 bool rowNeeded(int row) const {
44 return (row - get_start_coord(fSampleY)) % fSampleY == 0;
56 * The destination row to fill from.
  /external/syslinux/gpxe/src/include/gpxe/
editbox.h 21 /** Row */
22 unsigned int row; member in struct:edit_box
40 WINDOW *win, unsigned int row, unsigned int col,
  /external/vulkan-validation-layers/libs/glm/gtc/
matrix_access.hpp 52 /// Get a specific row of a matrix.
55 GLM_FUNC_DECL typename genType::row_type row(
59 /// Set a specific row to a matrix.
62 GLM_FUNC_DECL genType row(
  /external/webrtc/tools/python_charts/webrtc/
main.py 83 for row in table_data:
84 row['frame_number'] = str(row['frame_number'])
132 for row in data:
133 row['desired_bit_rate'] = desired_bit_rate
149 for row in configuration:
150 if row['name'] == name:
151 return_value = row['value']
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
NotificationHeaderUtil.java 41 public Object extractData(ExpandableNotificationRow row) {
42 return row.getStatusBarNotification().getNotification();
93 public NotificationHeaderUtil(ExpandableNotificationRow row) {
94 mRow = row;
146 ExpandableNotificationRow row = notificationChildren.get(i); local
148 mComparators.get(compI).compareToHeader(row);
152 // Apply the comparison to the row
154 ExpandableNotificationRow row = notificationChildren.get(i); local
156 mComparators.get(compI).apply(row);
159 sanitizeHeaderViews(row);
    [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
DetailsOverviewLogoPresenter.java 123 public boolean isBoundToImage(ViewHolder viewHolder, DetailsOverviewRow row) {
124 return row != null && row.getImageDrawable() != null;
136 DetailsOverviewRow row = (DetailsOverviewRow) item; local
138 imageView.setImageDrawable(row.getImageDrawable());
139 if (isBoundToImage((ViewHolder) viewHolder, row)) {
143 lp.width = row.getImageDrawable().getIntrinsicWidth();
144 lp.height = row.getImageDrawable().getIntrinsicHeight();

Completed in 616 milliseconds

1 2 3 4 5 6 78 91011>>