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

1 2 3 4 5 6 78 91011>>

  /external/skia/src/gpu/
GrRectanizer_pow2.h 15 // of two can have, at most, one active row/shelf. Once a row/shelf for
17 // to a new row.
43 struct Row {
46 // but it is used to signal if there exists an open row of this height
54 Row fRows[kMaxExponent]; // 0-th entry will be unused
70 void initRow(Row* row, int rowHeight) {
71 row->fLoc.set(0, fNextStripY);
72 row->fRowHeight = rowHeight
    [all...]
  /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...]
Array2DRowFieldMatrix.java 33 * returns the element in the first row, first column of the matrix.</li></ul>
56 * Create a new FieldMatrix<T> with the supplied row and column dimensions.
61 * @throws IllegalArgumentException if row or column dimension is not
146 for (int row = 0; row < nRows; row++) {
147 data[row][0] = v[row];
191 for (int row = 0; row < rowCount; row++)
    [all...]
  /external/ceres-solver/internal/ceres/
small_blas.h 164 for (int row = 0; row < NUM_ROW_C; ++row) {
168 tmp += A[row * NUM_COL_A + k] * B[k * NUM_COL_B + col];
171 const int index = (row + start_row_c) * col_stride_c + start_col_c + col;
224 for (int row = 0; row < NUM_ROW_C; ++row) {
228 tmp += A[k * NUM_COL_A + row] * B[k * NUM_COL_B + col];
231 const int index = (row + start_row_c) * col_stride_c + start_col_c + col
    [all...]
schur_eliminator_impl.h 97 // and build the row/column block structure of the reduced linear
106 // Iterate over the row blocks of A, and detect the chunks. The
124 // Add to the chunk until the first block in the row is
125 // different than the one in the first row for the chunk.
127 const CompressedRow& row = bs->rows[r + chunk.size]; local
128 if (row.cells.front().block_id != chunk_block_id) {
132 // Iterate over the blocks in the row, ignoring the first
134 for (int c = 1; c < row.cells.size(); ++c) {
135 const Cell& cell = row.cells[c];
213 // buffer_ contains the non-zero blocks in the row correspondin
331 const CompressedRow& row = bs->rows[chunk.start + j]; local
387 const CompressedRow& row = bs->rows[row_block_counter + j]; local
454 const CompressedRow& row = bs->rows[row_block_counter + j]; local
564 const CompressedRow& row = bs->rows[row_block_counter]; local
600 const CompressedRow& row = bs->rows[row_block_index]; local
653 const CompressedRow& row = bs->rows[row_block_index]; local
    [all...]
  /external/chromium-trace/catapult/dashboard/dashboard/
new_points.py 31 # Construct a query for recently added Row entities.
32 query = graph_data.Row.query()
33 query = query.order(-graph_data.Row.timestamp)
42 # Row entities that belong to a test that matches the pattern.
62 query = query.filter(graph_data.Row.parent_test.IN(test_keys))
70 # Fetch the Row entities.
75 for row in rows:
77 'test': utils.TestPath(row.parent_test),
78 'added_time': row.timestamp.strftime('%Y-%m-%d %H:%M:%S %Z'),
79 'revision': row.revision
    [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/opencv3/3rdparty/libtiff/
tif_next.c 54 uint8* row; local
74 for (row = buf; occ > 0; occ -= scanline, row += scanline) {
83 _TIFFmemcpy(row, bp, scanline);
97 _TIFFmemcpy(row+off, bp+4, n);
112 op = row;
  /external/pdfium/xfa/src/fxbarcode/oned/
BC_OnedUPCAReader.cpp 42 CBC_CommonBitArray* row,
46 m_ean13Reader->DecodeRow(rowNumber, row, hints, e);
53 CBC_CommonBitArray* row,
58 m_ean13Reader->DecodeRow(rowNumber, row, startGuardRange, hints, e);
80 int32_t CBC_OnedUPCAReader::DecodeMiddle(CBC_CommonBitArray* row,
84 int32_t temp = m_ean13Reader->DecodeMiddle(row, startRange, resultString, e);
BC_OnedCodaBarReader.h 17 CBC_CommonBitArray* row,
20 CFX_Int32Array* FindAsteriskPattern(CBC_CommonBitArray* row, int32_t& e);
  /external/skia/src/core/
SkFilterProc.h 51 inline SkFilterProc SkGetBilinearFilterProc22RowProc(const SkFilterProc* row,
54 SkASSERT(row);
56 return row[x << 30 >> 30];
85 inline SkFilter32Proc SkGetFilter32Proc22RowProc(const SkFilter32Proc* row,
88 SkASSERT(row);
90 return row[x << 30 >> 30];
  /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 inline const CoeffReturnType coeff(Index row, Index col) const
51 return m_expression.coeff(row, col);
54 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/opencv3/samples/cpp/
intelperc_capture.cpp 169 for (int row = y; row < min(y + pointSize, image.rows); row++)
171 uchar* ptrDst = image.ptr(row) + x * 3 + 2;//+2 -> Red
188 for (int row = 0; row < ir.rows; row++)
190 uchar* ptrDst = image.ptr(row);
191 short* ptrSrc = (short*)ir.ptr(row);
202 for (int row = g_closedDepthPoint[0]; row < min(g_closedDepthPoint[0] + pointSize, image.rows); row++
    [all...]
  /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...]
  /packages/apps/Gallery2/src/com/android/photos/data/
AlbumSetLoader.java 41 Object[] row = { local
52 return row;

Completed in 1714 milliseconds

1 2 3 4 5 6 78 91011>>