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

1 23 4 5 6 7 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/
factory.py 31 def dict_factory(cursor, row):
34 d[col[0]] = row[idx]
74 row = cur.fetchone()
75 self.assertTrue(isinstance(row,
77 "row is not instance of dict")
88 self.con.row_factory = lambda cur, row: list(row)
89 row = self.con.execute("select 1, 2").fetchone()
90 self.assertTrue(isinstance(row,
92 "row is not instance of list"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/
factory.py 31 def dict_factory(cursor, row):
34 d[col[0]] = row[idx]
74 row = cur.fetchone()
75 self.assertTrue(isinstance(row,
77 "row is not instance of dict")
88 self.con.row_factory = lambda cur, row: list(row)
89 row = self.con.execute("select 1, 2").fetchone()
90 self.assertTrue(isinstance(row,
92 "row is not instance of list"
    [all...]
  /external/libhevc/common/arm/
ihevc_intra_pred_filters_luma_mode_11_to_17.s 307 vdup.8 d27, r0 @row value inc or reset accordingly
309 vadd.s8 d8, d8, d27 @ref_main_idx (add row)
310 vsub.s8 d8, d8, d26 @ref_main_idx (row 0)
311 vadd.s8 d9, d8, d2 @ref_main_idx + 1 (row 0)
312 vtbl.8 d12, {d0,d1}, d8 @load from ref_main_idx (row 0)
315 vtbl.8 d13, {d0,d1}, d9 @load from ref_main_idx + 1 (row 0)
316 vadd.s8 d4, d8, d2 @ref_main_idx (row 1)
317 vadd.s8 d5, d9, d2 @ref_main_idx + 1 (row 1)
319 vtbl.8 d16, {d0,d1}, d4 @load from ref_main_idx (row 1)
320 vmull.u8 q12, d12, d7 @mul (row 0
    [all...]
  /frameworks/base/core/java/android/text/
PackedIntVector.java 56 * Returns the value at the specified row and column.
58 * @param row the index of the row to return.
63 * @throws IndexOutOfBoundsException if the row is out of range
64 * (row < 0 || row >= size()) or the column is out of range
67 public int getValue(int row, int column) {
70 if (((row | column) < 0) || (row >= size()) || (column >= columns)) {
71 throw new IndexOutOfBoundsException(row + ", " + column)
    [all...]
  /external/pdfium/xfa/src/fxbarcode/oned/
BC_OneDReader.cpp 50 CBC_CommonBitArray* row = NULL; local
69 row = image->GetBlackRow(rowNumber, NULL, e);
72 if (row != NULL) {
73 delete row;
74 row = NULL;
80 row->Reverse();
82 CFX_ByteString result = DecodeRow(rowNumber, row, hints, e);
87 if (row != NULL) {
88 delete row;
89 row = NULL;
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
AbstractFieldMatrix.java 59 * Create a new FieldMatrix<T> with the supplied row and column dimensions.
64 * @throws IllegalArgumentException if row or column dimension is not positive
178 for (int row = 0; row < rowCount; ++row) {
180 out.setEntry(row, col, getEntry(row, col).add(m.getEntry(row, col)));
197 for (int row = 0; row < rowCount; ++row)
    [all...]
AbstractRealMatrix.java 51 * Create a new RealMatrix with the supplied row and column dimensions.
55 * @throws IllegalArgumentException if row or column dimension is not positive
86 for (int row = 0; row < rowCount; ++row) {
88 out.setEntry(row, col, getEntry(row, col) + m.getEntry(row, col));
105 for (int row = 0; row < rowCount; ++row)
    [all...]
  /external/autotest/contrib/
generate_rpm_mapping.py 38 HOST_REGX = 'chromeos(\d+)(-row(\d+))*-rack(\d+)-host(\d+)'
40 'DeviceHostname', ['lab', 'row', 'rack', 'host'])
112 if not device_hostname.row:
114 return 'chromeos%d-row%d-rack%d-rpm1' % (
115 device_hostname.lab, device_hostname.row,
128 if not device_hostname.row:
161 return 'chromeos%d-row%d-rack%d-rpm1' % (
162 device_hostname.lab, device_hostname.row,
187 row = device_hostname.row
    [all...]
  /hardware/bsp/intel/peripheral/libupm/src/lcd/
lcd.cxx 42 LCD::write(int row, int column, std::string msg)
44 setCursor(row, column);
  /external/eigen/Eigen/src/Eigen2Support/
Minor.h 62 Index row, Index col)
63 : m_matrix(matrix), m_row(row), m_col(col)
65 eigen_assert(row >= 0 && row < matrix.rows()
74 inline Scalar& coeffRef(Index row, Index col)
76 return m_matrix.const_cast_derived().coeffRef(row + (row >= m_row), col + (col >= m_col));
79 inline const Scalar coeff(Index row, Index col) const
81 return m_matrix.coeff(row + (row >= m_row), col + (col >= m_col))
    [all...]
  /prebuilts/tools/common/spantable/
spantable.jar 
  /external/libjpeg-turbo/java/
TJUnitTest.java 160 int index, row, col, halfway = 16; local
164 for (row = 0; row < h; row++) {
167 index = pitch * (h - row - 1) + col;
169 index = pitch * row + col;
170 if (((row / 8) + (col / 8)) % 2 == 0)
171 buf[index] = (row < halfway) ? (byte)255 : 0;
173 buf[index] = (row < halfway) ? 76 : (byte)226;
180 for (row = 0; row < h; row++)
228 int index, row, col, halfway = 16; local
312 int index, row, col, retval = 1; local
435 int index, row, col, retval = 1; local
538 int row, col; local
    [all...]
  /external/autotest/frontend/client/src/autotest/common/table/
TableClickWidget.java 13 private int row; field in class:TableClickWidget
21 int row, int cell) {
23 this.row = row;
36 return row;
  /external/pdfium/xfa/src/fxbarcode/datamatrix/
BC_DefaultPlacement.h 19 FX_BOOL getBit(int32_t col, int32_t row);
20 void setBit(int32_t col, int32_t row, FX_BOOL bit);
21 FX_BOOL hasBit(int32_t col, int32_t row);
29 void module(int32_t row, int32_t col, int32_t pos, int32_t bit);
30 void utah(int32_t row, int32_t col, int32_t pos);
  /external/wpa_supplicant_8/hs20/server/www/
add-mo.php 28 $row = $db->query("SELECT rowid,* FROM sessions WHERE id='$id'")->fetch(); variable
29 if ($row == false) {
32 $realm = $row['realm'];
42 $uri = $row['redirect_uri'];
43 $rowid = $row['rowid'];
  /build/tools/
compare_fileslist.py 20 def IsDifferent(row):
22 for v in row:
48 row = [fn]
51 row.append(sizes[i])
53 row.append(None)
54 rows.append(row)
89 for row in rows:
91 for sz in row[1:]:
94 elif IsDifferent(row[1:]):
98 print " <td class='fn'>%s</td>" % cgi.escape(row[0]
    [all...]
  /frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
UiCollection.java 59 UiObject row = getChildByInstance(childPattern, x); local
60 String nodeDesc = row.getContentDescription();
62 return row;
64 UiObject item = row.getChild(new UiSelector().descriptionContains(text));
66 return row;
117 UiObject row = getChildByInstance(childPattern, x); local
118 String nodeText = row.getText();
120 return row;
122 UiObject item = row.getChild(new UiSelector().text(text));
124 return row;
    [all...]
  /external/libavc/common/arm/
ih264_weighted_bi_pred_a9q.s 169 vld1.32 d4[0], [r0], r3 @load row 1 in source 1
170 vld1.32 d4[1], [r0], r3 @load row 2 in source 1
171 vld1.32 d6[0], [r1], r4 @load row 1 in source 2
172 vld1.32 d6[1], [r1], r4 @load row 2 in source 2
175 vld1.32 d8[0], [r0], r3 @load row 3 in source 1
176 vld1.32 d8[1], [r0], r3 @load row 4 in source 1
178 vld1.32 d10[0], [r1], r4 @load row 3 in source 2
179 vld1.32 d10[1], [r1], r4 @load row 4 in source 2
199 vst1.32 d4[0], [r2], r5 @store row 1 in destination
200 vst1.32 d4[1], [r2], r5 @store row 2 in destinatio
    [all...]
ih264_weighted_pred_a9q.s 136 vld1.32 d4[0], [r0], r2 @load row 1 in source
137 vld1.32 d4[1], [r0], r2 @load row 2 in source
138 vld1.32 d6[0], [r0], r2 @load row 3 in source
139 vld1.32 d6[1], [r0], r2 @load row 4 in source
157 vst1.32 d4[0], [r1], r3 @store row 1 in destination
158 vst1.32 d4[1], [r1], r3 @store row 2 in destination
159 vst1.32 d6[0], [r1], r3 @store row 3 in destination
160 vst1.32 d6[1], [r1], r3 @store row 4 in destination
168 vld1.8 d4, [r0], r2 @load row 1 in source
169 vld1.8 d6, [r0], r2 @load row 2 in sourc
    [all...]
  /external/libhevc/common/
ihevc_chroma_intra_pred_filters.c 475 WORD32 row, col; local
497 for(row = 0; row < nt; row++)
501 pu1_dst[row * dst_strd + col] = ((nt - 1 - col / 2)
502 * pu1_ref[2 * (two_nt - 1 - row)]
504 + (nt - 1 - row) * pu1_ref[2 * (two_nt + 1) + col]
505 + (row + 1) * pu1_ref[2 * (nt - 1)] + nt) >> (log2nt + 1);
507 pu1_dst[row * dst_strd + col + 1] = ((nt - 1 - col / 2)
508 * pu1_ref[2 * (two_nt - 1 - row) + 1
566 WORD32 row, col; local
667 WORD32 row, col; local
728 WORD32 row, col; local
788 WORD32 row, col; local
855 WORD32 row, col; local
928 WORD32 row, col; local
1021 WORD32 row, col, k; local
1138 WORD32 row, col, k; local
1245 WORD32 row, col; local
    [all...]
  /external/libxml2/doc/
queries.py 31 row = c.fetchone()
32 total = int(row[0])
34 row = c.fetchone()
35 uniq = int(row[0])
42 row = c.fetchone()
43 f.write(" <query count='%d'>%s</query>\n" % (int(row[2]), row[1]))
65 row = c.fetchone()
66 id = row[0]
67 cnt = int(row[1]) + coun
    [all...]
  /frameworks/base/core/java/android/util/
MonthDisplayHelper.java 23 * 6 row calendar grid format.
111 * @param row Which row (0-5).
115 public int[] getDigitsForRow(int row) {
116 if (row < 0 || row > 5) {
117 throw new IllegalArgumentException("row " + row
123 result[column] = getDayAt(row, column);
130 * @param row The row, 0-5, starting from the top
    [all...]
  /external/libpng/contrib/examples/
pngpixel.c 10 * This code illustrates basic 'by-row' reading of a PNG file using libpng.
32 /* Return component 'c' of pixel 'x' from the given row. */
34 component(png_const_bytep row, png_uint_32 x, unsigned int c,
39 * bytes wide. Since the row fitted into memory, however, the following must
45 row = (png_const_bytep)(((PNG_CONST png_byte (*)[8])row) + bit_offset_hi);
46 row += bit_offset_lo >> 3;
55 case 1: return (row[0] >> (7-bit_offset_lo)) & 0x01;
56 case 2: return (row[0] >> (6-bit_offset_lo)) & 0x03;
57 case 4: return (row[0] >> (4-bit_offset_lo)) & 0x0f
156 volatile png_bytep row = NULL; local
    [all...]
  /external/webp/src/dsp/
filters.c 28 assert(row >= 0 && num_rows > 0 && row + num_rows <= height); \
46 int row, int num_rows,
49 const size_t start_offset = row * stride;
50 const int last_row = row + num_rows;
56 if (row == 0) {
60 row = 1;
67 while (row < last_row) {
71 ++row;
83 int row, int num_rows
    [all...]
  /external/ceres-solver/internal/ceres/
linear_least_squares_problems.cc 198 // Row 1
209 // Row 2
220 // Row 3
231 // Row 4
242 // Row 5
253 // Row 6
306 // Row 1
312 CompressedRow& row = bs->rows.back(); local
313 row.block.size = 1;
314 row.block.position = 0
325 CompressedRow& row = bs->rows.back(); local
338 CompressedRow& row = bs->rows.back(); local
351 CompressedRow& row = bs->rows.back(); local
364 CompressedRow& row = bs->rows.back(); local
378 CompressedRow& row = bs->rows.back(); local
444 CompressedRow& row = bs->rows.back(); local
454 CompressedRow& row = bs->rows.back(); local
464 CompressedRow& row = bs->rows.back(); local
474 CompressedRow& row = bs->rows.back(); local
484 CompressedRow& row = bs->rows.back(); local
    [all...]

Completed in 1806 milliseconds

1 23 4 5 6 7 8 91011>>