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

1 2 3 4 5 6 7 891011>>

  /packages/apps/Gallery2/src/com/android/photos/data/
AlbumSetLoader.java 41 Object[] row = { local
52 return row;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
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...]
RealMatrix.java 27 * returns the element in the first row, first column of the matrix.</p>
35 * row and column dimensions.
40 * @throws IllegalArgumentException if row or column dimension is not positive
114 * maximum absolute row sum norm</a> of the matrix.
132 * @param startRow Initial row index
133 * @param endRow Final row index (inclusive)
147 * @param selectedRows Array of row indices.
151 * @exception MatrixIndexException if row or column selections are not valid
160 * @param startRow Initial row index
161 * @param endRow Final row index (inclusive
    [all...]
DefaultRealMatrixChangingVisitor.java 40 public double visit(int row, int column, double value) throws MatrixVisitorException {
DefaultRealMatrixPreservingVisitor.java 40 public void visit(int row, int column, double value)
RealMatrixChangingVisitor.java 36 * @param startRow Initial row index
37 * @param endRow Final row index (inclusive)
46 * @param row row index of the entry
52 double visit(int row, int column, double value)
RealMatrixPreservingVisitor.java 36 * @param startRow Initial row index
37 * @param endRow Final row index (inclusive)
46 * @param row row index of the entry
51 void visit(int row, int column, double value)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
fixdiv.py 244 for (row, col), line in slashes:
245 if row == lastrow:
247 rows.append(row)
248 lastrow = row
266 for (row, col), line in slashes:
267 if row == lastrow:
269 lastrow = row
272 print "*** Can't find the / operator in line %d:" % row
276 print "*** Bad warning for line %d:" % row, bad
279 print "%dc%d" % (row, row)
    [all...]
  /external/python/cpython2/Tools/scripts/
fixdiv.py 244 for (row, col), line in slashes:
245 if row == lastrow:
247 rows.append(row)
248 lastrow = row
266 for (row, col), line in slashes:
267 if row == lastrow:
269 lastrow = row
272 print "*** Can't find the / operator in line %d:" % row
276 print "*** Bad warning for line %d:" % row, bad
279 print "%dc%d" % (row, row
    [all...]
  /external/webp/src/dsp/
filters_mips_dsp_r2.c 33 assert(row >= 0 && num_rows > 0 && row + num_rows <= height); \
185 while (row < last_row) { \
188 ++row; \
197 int row, int num_rows,
200 const size_t start_offset = row * stride;
201 const int last_row = row + num_rows;
207 if (row == 0) {
211 row = 1;
231 while (row < last_row) {
    [all...]
  /packages/apps/Launcher3/
print_db.py 57 for row in c:
58 rows.append(row)
66 for row in c:
67 rows.append(row)
158 data = [dict(zip(columns,row)) for row in rows]
209 for row in rows:
212 for i in range(0,len(row)):
213 cell = row[i]
214 # row[0] is always _i
    [all...]
  /external/pdfium/core/fxge/ge/
cfx_cliprgn.cpp 54 for (int row = m_Box.top; row < m_Box.bottom; row++) {
56 new_dib->GetBuffer() + new_dib->GetPitch() * (row - m_Box.top);
58 mask_dib->GetBuffer() + mask_dib->GetPitch() * (row - mask_rect.top);
86 for (int row = new_box.top; row < new_box.bottom; row++) {
88 old_dib->GetBuffer() + (row - m_Box.top) * old_dib->GetPitch();
90 mask_dib->GetBuffer() + (row - top) * mask_dib->GetPitch()
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
NotificationViewWrapper.java 46 public static NotificationViewWrapper wrap(Context ctx, View v, ExpandableNotificationRow row) {
49 return new NotificationBigPictureTemplateViewWrapper(ctx, v, row);
51 return new NotificationBigTextTemplateViewWrapper(ctx, v, row);
53 return new NotificationMediaTemplateViewWrapper(ctx, v, row);
55 return new NotificationMessagingTemplateViewWrapper(ctx, v, row);
57 return new NotificationTemplateViewWrapper(ctx, v, row);
59 return new NotificationHeaderViewWrapper(ctx, v, row);
61 return new NotificationCustomViewWrapper(ctx, v, row);
65 protected NotificationViewWrapper(Context ctx, View view, ExpandableNotificationRow row) {
67 mRow = row;
    [all...]
  /cts/tests/autofillservice/src/android/autofillservice/cts/
GridActivity.java 86 private EditText getCell(int row, int column) {
87 return mCells[row - 1][column - 1];
94 public void onCell(int row, int column, Visitor<EditText> v) {
95 final EditText cell = getCell(row, column);
99 public void focusCell(int row, int column) {
100 onCell(row, column, EditText::requestFocus);
103 public void clearCell(int row, int column) {
104 onCell(row, column, (c) -> c.setText(""));
107 public void setText(int row, int column, String text) {
108 onCell(row, column, (c) -> c.setText(text))
    [all...]
  /libcore/luni/src/test/java/libcore/java/text/
DateFormatSymbolsTest.java 90 // Kill a row.
111 for (String[] row : DateFormatSymbols.getInstance(Locale.US).getZoneStrings()) {
112 zoneStrings.put(row[0], row);
125 private static void assertUtc(String[] row) {
128 assertEquals(Arrays.toString(row), "UTC", row[2]); local
129 assertEquals(Arrays.toString(row), "UTC", row[4]); local
139 for (String[] row : array)
154 String[] row = array[i]; local
    [all...]
  /packages/apps/DocumentsUI/tests/unit/com/android/documentsui/archives/
ResourcesProvider.java 78 final RowBuilder row = result.newRow(); local
79 row.add(Root.COLUMN_ROOT_ID, "root-id");
80 row.add(Root.COLUMN_FLAGS, 0);
81 row.add(Root.COLUMN_TITLE, "ResourcesProvider");
82 row.add(Root.COLUMN_DOCUMENT_ID, "root-document-id");
92 final RowBuilder row = result.newRow(); local
93 row.add(Document.COLUMN_DOCUMENT_ID, "root-document-id");
94 row.add(Document.COLUMN_FLAGS, 0);
95 row.add(Document.COLUMN_DISPLAY_NAME, "ResourcesProvider");
96 row.add(Document.COLUMN_SIZE, 0)
140 final RowBuilder row = result.newRow(); local
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
TreeBasedTableTest.java 50 return table.row("b");
61 return table.row("b");
80 table.row("b").subMap("c", "x").clear();
81 assertEquals(table.row("b"), ImmutableMap.of("b", "x", "x", "n"));
82 table.row("b").subMap("b", "y").clear();
83 assertEquals(table.row("b"), ImmutableMap.of());
121 assertThat(table.row("foo").keySet()).has().exactly(12, 3).inOrder();
133 assertThat(table.row("foo").keySet()).has().exactly(12, 3).inOrder();
348 SortedMap<Integer, Character> row = sortedTable.row("c") local
365 SortedMap<Integer, Character> row = sortedTable.row("c"); local
382 SortedMap<Integer, Character> row = sortedTable.row("c"); local
389 SortedMap<Integer, Character> row = (SortedMap<Integer, Character>) table.row("foo"); local
397 assertEquals(ImmutableMap.of(), row); local
403 assertEquals(ImmutableMap.of(), row); local
    [all...]
  /external/autotest/frontend/client/src/autotest/afe/
HostSelector.java 100 public void onRowClicked(int rowIndex, JSONObject row, boolean isRightClick) {
101 availableSelection.toggleSelected(row);
109 for (JSONObject row : objects) {
110 selectRow(row);
116 for (JSONObject row : objects) {
117 deselectRow(row);
124 public void onRowClicked(int rowIndex, JSONObject row, boolean isRightClick) {
125 if (isMetaEntry(row) || isOneTimeHost(row)) {
126 deselectRow(row);
    [all...]
  /external/syslinux/com32/lib/libpng/
pngwtran.c 2 /* pngwtran.c - transforms the data in a row for PNG writers
37 /* png_uint_32 width; width of row */
38 /* png_uint_32 rowbytes; number of bytes in row */
43 png_ptr->row_buf + 1); /* start of pixel data for row */
92 png_do_pack(png_row_infop row_info, png_bytep row, png_uint_32 bit_depth)
98 row != NULL && row_info != NULL &&
111 sp = row;
112 dp = row;
142 sp = row;
143 dp = row;
    [all...]
  /external/eigen/unsupported/Eigen/src/SparseExtra/
DynamicSparseMatrix.h 91 /** \returns the coefficient value at given position \a row, \a col
94 inline Scalar coeff(Index row, Index col) const
96 const Index outer = IsRowMajor ? row : col;
97 const Index inner = IsRowMajor ? col : row;
101 /** \returns a reference to the coefficient value at given position \a row, \a col
105 inline Scalar& coeffRef(Index row, Index col)
107 const Index outer = IsRowMajor ? row : col;
108 const Index inner = IsRowMajor ? col : row;
147 /** \returns a reference to the non zero coefficient at position \a row, \a col assuming that:
152 inline Scalar& insertBack(Index row, Index col
    [all...]
  /external/boringssl/src/crypto/fipsmodule/ec/
p256-x86_64.c 285 P256_POINT *row = table; local
287 if (!ecp_nistz256_bignum_to_field_elem(row[1 - 1].X, &p->X) ||
288 !ecp_nistz256_bignum_to_field_elem(row[1 - 1].Y, &p->Y) ||
289 !ecp_nistz256_bignum_to_field_elem(row[1 - 1].Z, &p->Z)) {
294 ecp_nistz256_point_double(&row[2 - 1], &row[1 - 1]);
295 ecp_nistz256_point_add(&row[3 - 1], &row[2 - 1], &row[1 - 1]);
296 ecp_nistz256_point_double(&row[4 - 1], &row[2 - 1])
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
TableLayout8.java 55 TableRow row = new TableRow(this); local
66 row.addView(label, new TableRow.LayoutParams(1));
67 row.addView(shortcut, new TableRow.LayoutParams());
69 table.addView(row, new TableLayout.LayoutParams());
  /external/eigen/doc/examples/
Tutorial_BlockOperations_colrow.cpp 13 cout << "2nd Row: " << m.row(1) << endl;
  /external/libvpx/libvpx/vp9/encoder/
vp9_encodemb.h 32 void vp9_xform_quant_fp(MACROBLOCK *x, int plane, int block, int row, int col,
34 void vp9_xform_quant_dc(MACROBLOCK *x, int plane, int block, int row, int col,
36 void vp9_xform_quant(MACROBLOCK *x, int plane, int block, int row, int col,
41 void vp9_encode_block_intra(int plane, int block, int row, int col,
  /external/toolchain-utils/cros_utils/
html_tools.py 22 var row = document.getElementById("group_"+id);
23 if (row.style.display == '') row.style.display = 'none';
24 else row.style.display = '';
63 row = ''.join(['<th>%s</th>' % header for header in headers])
64 return '<table><tr>%s</tr>' % row
85 table.extend([GetTableRow(row) for row in rows])

Completed in 2333 milliseconds

1 2 3 4 5 6 7 891011>>