HomeSort by relevance Sort by last modified time
    Searched refs:row (Results 76 - 100 of 3071) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/gdb/linux-x86/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/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 310 vdup.8 d27, r0 @row value inc or reset accordingly
312 vadd.s8 d8, d8, d27 @ref_main_idx (add row)
313 vsub.s8 d8, d8, d26 @ref_main_idx (row 0)
314 vadd.s8 d9, d8, d2 @ref_main_idx + 1 (row 0)
315 vtbl.8 d12, {d0,d1}, d8 @load from ref_main_idx (row 0)
318 vtbl.8 d13, {d0,d1}, d9 @load from ref_main_idx + 1 (row 0)
319 vadd.s8 d4, d8, d2 @ref_main_idx (row 1)
320 vadd.s8 d5, d9, d2 @ref_main_idx + 1 (row 1)
322 vtbl.8 d16, {d0,d1}, d4 @load from ref_main_idx (row 1)
323 vmull.u8 q12, d12, d7 @mul (row 0
    [all...]
  /frameworks/base/core/java/android/text/
PackedIntVector.java 60 * Returns the value at the specified row and column.
62 * @param row the index of the row to return.
67 * @throws IndexOutOfBoundsException if the row is out of range
68 * (row < 0 || row >= size()) or the column is out of range
71 public int getValue(int row, int column) {
74 if (((row | column) < 0) || (row >= size()) || (column >= columns)) {
75 throw new IndexOutOfBoundsException(row + ", " + column)
    [all...]
  /external/libxaac/decoder/
ixheaacd_mps_smoothing.c 38 int ps = 0, pb, row, col; local
52 for (row = 0; row < MAX_M_OUTPUT; row++) {
54 self->m1_param_re[ps][pb][row][col] =
55 (ixheaacd_mult32(delta, self->m1_param_re[ps][pb][row][col]) +
57 self->m1_param_re_prev[pb][row][col]))
59 self->m1_param_im[ps][pb][row][col] =
60 (ixheaacd_mult32(delta, self->m1_param_im[ps][pb][row][col]) +
62 self->m1_param_im_prev[pb][row][col])
    [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...]
  /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...]
  /external/python/cpython2/Doc/includes/sqlite3/
collation_reverse.py 13 for row in cur:
14 print row
load_extension.py 25 for row in con.execute("select rowid, name, ingredients from recipe where name match 'pie'"):
26 print row
row_factory.py 3 def dict_factory(cursor, row):
6 d[col[0]] = row[idx]
  /external/python/cpython3/Doc/includes/sqlite3/
collation_reverse.py 18 for row in cur:
19 print(row)
load_extension.py 25 for row in con.execute("select rowid, name, ingredients from recipe where name match 'pie'"):
26 print(row)
row_factory.py 3 def dict_factory(cursor, row):
6 d[col[0]] = row[idx]
  /frameworks/ml/nn/runtime/test/specs/V1_0/
concat_float_3.mod.py 20 row = 212 variable
25 input1 = Input("input1", "TENSOR_FLOAT32", "{%d, %d}" % (row, col1)) # input tensor 1
26 input2 = Input("input2", "TENSOR_FLOAT32", "{%d, %d}" % (row, col2)) # input tensor 2
28 output = Output("output", "TENSOR_FLOAT32", "{%d, %d}" % (row, output_col)) # output
32 input1_values = [x for x in range(row * col1)]
33 input2_values = [-x for x in range(row * col2)]
37 output_values = [x for x in range(row * output_col)]
38 for r in range(row):
concat_quant8_3.mod.py 20 row = 400 variable
25 input1 = Input("input1", "TENSOR_QUANT8_ASYMM", "{%d, %d}, 0.5f, 0" % (row, col1))
26 input2 = Input("input2", "TENSOR_QUANT8_ASYMM", "{%d, %d}, 0.5f, 0" % (row, col2))
28 output = Output("output", "TENSOR_QUANT8_ASYMM", "{%d, %d}, 0.5f, 0" % (row, output_col))
32 input1_values = [(x % 128 + 128) for x in range(row * col1)]
33 input2_values = [x % 128 for x in range(row * col2)]
37 output_values = [x for x in range(row * output_col)]
38 for r in range(row):
  /frameworks/ml/nn/runtime/test/specs/V1_1/
concat_float_3_relaxed.mod.py 20 row = 212 variable
25 input1 = Input("input1", "TENSOR_FLOAT32", "{%d, %d}" % (row, col1)) # input tensor 1
26 input2 = Input("input2", "TENSOR_FLOAT32", "{%d, %d}" % (row, col2)) # input tensor 2
28 output = Output("output", "TENSOR_FLOAT32", "{%d, %d}" % (row, output_col)) # output
33 input1_values = [x for x in range(row * col1)]
34 input2_values = [-x for x in range(row * col2)]
38 output_values = [x for x in range(row * output_col)]
39 for r in range(row):
  /packages/apps/Dialer/java/com/android/dialer/calllog/ui/menu/
PrimaryAction.java 27 /** Configures the primary action row (top row) for the bottom sheet. */
30 static HistoryItemPrimaryActionInfo fromRow(Context context, CoalescedRow row) {
31 CharSequence primaryText = CallLogEntryText.buildPrimaryText(context, row);
33 .setNumber(row.number())
35 NumberAttributesConverter.toPhotoInfoBuilder(row.numberAttributes())
36 .setFormattedNumber(row.formattedNumber())
37 .setIsVideo((row.features() & Calls.FEATURES_VIDEO) == Calls.FEATURES_VIDEO)
40 .setSecondaryText(CallLogEntryText.buildSecondaryTextForBottomSheet(context, row))
41 .setIntent(CallLogIntents.getCallBackIntent(context, row))
    [all...]
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
NotificationMenuRowTest.java 53 NotificationMenuRowPlugin row = new NotificationMenuRow(mContext); local
54 row.createMenu(null, null);
55 ViewUtils.attachView(row.getMenuView());
57 ViewUtils.detachView(row.getMenuView());
63 NotificationMenuRowPlugin row = new NotificationMenuRow(mContext); local
64 row.createMenu(null, null);
65 assertTrue(row.getMenuView() != null);
66 row.createMenu(null, null);
67 assertTrue(row.getMenuView() != null);
72 NotificationMenuRowPlugin row = new NotificationMenuRow(mContext) local
78 NotificationMenuRow row = new NotificationMenuRow(mContext); local
    [all...]
NotificationViewHierarchyManagerTest.java 84 ExpandableNotificationRow row = mHelper.createRow(); local
85 NotificationData.Entry entry = new NotificationData.Entry(row.getStatusBarNotification());
86 entry.row = row;
99 mListContainer.addContainerView(entry0.row);
100 mListContainer.addContainerView(entry1.row);
101 mListContainer.addContainerView(entry2.row);
109 when(mGroupManager.getGroupSummary(entry1.notification)).thenReturn(entry0.row);
110 when(mGroupManager.getGroupSummary(entry2.notification)).thenReturn(entry0.row);
115 verify(mListContainer).notifyGroupChildAdded(entry1.row);
    [all...]
  /prebuilts/tools/common/spantable/
spantable.jar 
  /external/libjpeg-turbo/java/
TJUnitTest.java 151 int index, row, col, halfway = 16; local
155 for (row = 0; row < h; row++) {
158 index = pitch * (h - row - 1) + col;
160 index = pitch * row + col;
161 if (((row / 8) + (col / 8)) % 2 == 0)
162 buf[index] = (row < halfway) ? (byte)255 : 0;
164 buf[index] = (row < halfway) ? 76 : (byte)226;
171 for (row = 0; row < h; row++)
219 int index, row, col, halfway = 16; local
303 int index, row, col, retval = 1; local
426 int index, row, col, retval = 1; local
529 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/fxbarcode/datamatrix/
BC_DefaultPlacement.h 22 bool getBit(int32_t col, int32_t row);
23 void setBit(int32_t col, int32_t row, bool bit);
24 bool hasBit(int32_t col, int32_t row);
32 void module(int32_t row, int32_t col, int32_t pos, int32_t bit);
33 void utah(int32_t row, int32_t col, int32_t pos);
  /external/tensorflow/tensorflow/contrib/lite/kernels/internal/optimized/
cblas_reference.h 53 for (int row = 0; row < m; ++row) {
59 value += alpha * a[stride_a * row + idx] * b[stride_b * col + idx];
61 c[stride_c * row + col] = value;

Completed in 717 milliseconds

1 2 34 5 6 7 8 91011>>