/prebuilts/misc/darwin-x86/analyzer/tools/scan-build/ |
scan-build | 312 my $Row = { 322 push @$Stats, $Row; 453 foreach my $Row (@$Stats) { 454 $FilesHash->{$Row->{Filename}} = 1; 455 $TotalBlocks += $Row->{Total}; 456 $UnreachedBlocks += $Row->{Unreachable}; 457 $BlockAborted++ if $Row->{Aborted} eq 'yes'; 458 $WorkListAborted++ if $Row->{Empty} eq 'no'; 459 $Aborted++ if $Row->{Aborted} eq 'yes' || $Row->{Empty} eq 'no' [all...] |
/prebuilts/misc/linux-x86/analyzer/tools/scan-build/ |
scan-build | 312 my $Row = { 322 push @$Stats, $Row; 453 foreach my $Row (@$Stats) { 454 $FilesHash->{$Row->{Filename}} = 1; 455 $TotalBlocks += $Row->{Total}; 456 $UnreachedBlocks += $Row->{Unreachable}; 457 $BlockAborted++ if $Row->{Aborted} eq 'yes'; 458 $WorkListAborted++ if $Row->{Empty} eq 'no'; 459 $Aborted++ if $Row->{Aborted} eq 'yes' || $Row->{Empty} eq 'no' [all...] |
/external/icu/icu4c/source/common/ |
uresdata.cpp | 967 * row of a temporary array 973 typedef struct Row { 975 } Row; 980 return (int32_t)uprv_strcmp(keyChars+((const Row *)left)->keyIndex, 981 keyChars+((const Row *)right)->keyIndex); 986 Row *rows; [all...] |
/external/llvm/lib/CodeGen/ |
TargetInstrInfo.cpp | 675 // operands may be commuted. Each row corresponds to a pattern value, 684 int Row; 686 case MachineCombinerPattern::REASSOC_AX_BY: Row = 0; break; 687 case MachineCombinerPattern::REASSOC_AX_YB: Row = 1; break; 688 case MachineCombinerPattern::REASSOC_XA_BY: Row = 2; break; 689 case MachineCombinerPattern::REASSOC_XA_YB: Row = 3; break; 693 MachineOperand &OpA = Prev.getOperand(OpIdx[Row][0]); 694 MachineOperand &OpB = Root.getOperand(OpIdx[Row][1]); 695 MachineOperand &OpX = Prev.getOperand(OpIdx[Row][2]); 696 MachineOperand &OpY = Root.getOperand(OpIdx[Row][3]) [all...] |
/external/chromium-trace/catapult/dashboard/dashboard/ |
bench_find_anomalies_test.py | 62 for row in rows: 63 graph_data.Row(id=row[0], value=row[1], parent=test_container_key).put()
|
auto_bisect.py | 311 revision: The ID of a Row, not necessarily an actual revision number. 318 row = graph_data.Row.get_by_id(revision, parent=row_parent_key) 319 if row and hasattr(row, 'a_default_rev') and hasattr(row, row.a_default_rev): 320 return getattr(row, row.a_default_rev)
|
debug_alert_test.py | 36 """Adds a Test and Row entities, and returns the Test key.""" 188 rows = graph_data.Row.query().fetch(limit=20)
|
/external/chromium-trace/catapult/dashboard/dashboard/models/ |
stoppage_alert_test.py | 17 """Puts a Test and Row in the datastore and returns the entities.""" 24 row = graph_data.Row.query().get() 25 return test, row 28 test, row = self._AddSampleData() 29 alert = stoppage_alert.CreateStoppageAlert(test, row) 34 self.assertEqual(row.revision, alert.revision) 35 self.assertEqual(row.revision, alert.start_revision) 36 self.assertEqual(row.revision, alert.end_revision) 42 test, row = self._AddSampleData( [all...] |
/external/guava/guava/src/com/google/common/collect/ |
ArrayTable.java | 42 * <p>The allowed row and column keys must be supplied when the table is 43 * created. The table always contains a mapping for every row key / column pair. 44 * The value corresponding to a given row and column is null unless another 47 * <p>The table's size is constant: the product of the number of supplied row 52 * <p>The ordering of the row and column keys provided when the table is 61 * <p>Null row keys or column keys are not permitted. 64 * where the array indices correspond to the position of a row or column in the 91 * @param rowKeys row keys that may be stored in the generated table 104 * iterable, to specify the allowed row keys and/or column keys. Note that 112 * <p>If {@code table} includes a mapping with row key {@code r} and [all...] |
StandardTable.java | 45 * {@link Table} implementation backed by a map that associates row keys with 47 * records by the row key alone or by both keys, but not by just the column key. 51 * all optional operations are supported. Null row keys, columns keys, and 54 * <p>Lookups by row key are often faster than lookups by column key, because 56 * column(columnKey).get(rowKey)} still runs quickly, since the row key is 58 * iteration across all row keys occurs. 182 /** Remove a row key / column key / value mapping, if present. */ 210 * <p>The set's iterator traverses the mappings for the first row, the 211 * mappings for the second row, and so on. 213 * <p>Each cell is an immutable snapshot of a row key / column key / valu 254 @Override public Map<C, V> row(R rowKey) { method in class:StandardTable [all...] |
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
ArrayTable.java | 40 * <p>The allowed row and column keys must be supplied when the table is 41 * created. The table always contains a mapping for every row key / column pair. 42 * The value corresponding to a given row and column is null unless another 45 * <p>The table's size is constant: the product of the number of supplied row 50 * <p>The ordering of the row and column keys provided when the table is 59 * <p>Null row keys or column keys are not permitted. 62 * where the array indices correspond to the position of a row or column in the 89 * @param rowKeys row keys that may be stored in the generated table 102 * iterable, to specify the allowed row keys and/or column keys. Note that 110 * <p>If {@code table} includes a mapping with row key {@code r} and [all...] |
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/ |
DetailsOverviewRow.java | 27 * An overview {@link Row} for a details fragment. This row consists of an image, a 33 * row. {@link SparseArrayObjectAdapter} is recommended for easily updating actions while 35 * row is bound to a view. 38 * After the row is bound to a view, the application may call {@link #setItem(Object)} 42 * After the row is bound to view, the application may change the image by calling {@link 46 public class DetailsOverviewRow extends Row { 56 public void onImageDrawableChanged(DetailsOverviewRow row) { 62 public void onItemChanged(DetailsOverviewRow row) { 68 public void onActionsAdapterChanged(DetailsOverviewRow row) { [all...] |
RowHeaderPresenter.java | 101 HeaderItem headerItem = item == null ? null : ((Row) item).getHeaderItem();
|
/frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/app/media/ |
MediaPlayerGlue.java | 35 import android.support.v17.leanback.widget.Row; 146 // Add secondary actions and change the control row color. 395 * RowPresenter.ViewHolder, Row) 398 RowPresenter.ViewHolder rowViewHolder, Row row) {
|
/external/llvm/lib/DebugInfo/DWARF/ |
DWARFContext.cpp | 495 // Get the index of row we're looking for in the line table. 501 // Take file number and line/column from the row. 502 const DWARFDebugLine::Row &Row = LineTable->Rows[RowIndex]; 504 LineTable->getFileNameByIndex(Row.File, CU->getCompilationDir(), 507 Result.Line = Row.Line; 508 Result.Column = Row.Column; 509 Lines.push_back(std::make_pair(Row.Address, Result));
|
/external/skia/src/core/ |
SkAAClip.cpp | 93 return segments * 2; // each segment is row[0] + row[1] (n + alpha) 104 uint8_t* row = head->data(); local 107 row[0] = n; 108 row[1] = 0xFF; 110 row += 2; 177 static size_t compute_row_length(const uint8_t row[], int width) { 178 const uint8_t* origRow = row; 180 int n = row[0]; 183 row += 2 213 const uint8_t* row = head->data() + yoff->fOffset; local 490 uint8_t* row = base + yoff->fOffset; local 741 const uint8_t* row = head->data() + yoff->fOffset; local 921 const uint8_t* row = this->findRow(top, &lastY); local 968 Row* row = fRows.begin(); local 986 Row* row = fCurrRow; local 1074 const Row* row = fRows.begin(); local 1128 const Row& row = fRows[y]; local 1149 const Row& row = fRows[i]; local 1917 const uint8_t* row = fAAClip->findRow(y); local 1985 const uint8_t* row = fAAClip->findRow(y); local 2003 const uint8_t* row = fAAClip->findRow(y, &lastY); local 2202 const uint8_t* row = fAAClip->findRow(y, &localStopY); local [all...] |
/prebuilts/go/darwin-x86/src/database/sql/ |
sql.go | 205 // row. In such a case, QueryRow returns a placeholder *Row value that 1024 // QueryRow executes a query that is expected to return at most one row. 1026 // Row's Scan method is called. 1027 func (db *DB) QueryRow(query string, args ...interface{}) *Row { 1029 return &Row{rows: rows, err: err} [all...] |
/prebuilts/go/linux-x86/src/database/sql/ |
sql.go | 205 // row. In such a case, QueryRow returns a placeholder *Row value that 1024 // QueryRow executes a query that is expected to return at most one row. 1026 // Row's Scan method is called. 1027 func (db *DB) QueryRow(query string, args ...interface{}) *Row { 1029 return &Row{rows: rows, err: err} [all...] |
/developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/ui/ |
PlaybackOverlayFragment.java | 47 import android.support.v17.leanback.widget.Row; 151 RowPresenter.ViewHolder rowViewHolder, Row row) { 152 Log.i(TAG, "onItemSelected: " + item + " row " + row); 485 RowPresenter.ViewHolder rowViewHolder, Row row) {
|
MovieDetailsFragment.java | 36 import android.support.v17.leanback.widget.Row; 182 final DetailsOverviewRow row = new DetailsOverviewRow(mSelectedMovie); local 183 row.setImageDrawable(getResources().getDrawable(R.drawable.default_background)); 198 row.setImageDrawable(resource); 203 row.addAction(new Action(ACTION_WATCH_TRAILER, getResources().getString( 205 row.addAction(new Action(ACTION_RENT, getResources().getString(R.string.rent_1), 207 row.addAction(new Action(ACTION_BUY, getResources().getString(R.string.buy_1), 210 mAdapter.add(row); 263 RowPresenter.ViewHolder rowViewHolder, Row row) { [all...] |
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/ |
PlaybackControlGlue.java | 16 import android.support.v17.leanback.widget.Row; 44 * <p>If you have your own controls row you must pass it to {@link #setControlsRow}. 45 * The row will be updated by the glue layer based on the media metadata and playback state. 47 * row and return a row presenter you can use to present the row. 51 * on the controls row as the primary actions adapter, and adds actions to it. You can provide 65 * ViewHolder when bound by your row presenter; see 69 * <p>To update the controls row progress during playback, override {@link #enableProgressUpdating} 194 RowPresenter.ViewHolder viewHolder2, Row row) [all...] |
PlaybackControlSupportGlue.java | 18 import android.support.v17.leanback.widget.Row; 46 * <p>If you have your own controls row you must pass it to {@link #setControlsRow}. 47 * The row will be updated by the glue layer based on the media metadata and playback state. 49 * row and return a row presenter you can use to present the row. 53 * on the controls row as the primary actions adapter, and adds actions to it. You can provide 67 * ViewHolder when bound by your row presenter; see 71 * <p>To update the controls row progress during playback, override {@link #enableProgressUpdating} 196 RowPresenter.ViewHolder viewHolder2, Row row) [all...] |
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/cldr/ |
CheckSystemFonts.java | 42 import com.ibm.icu.impl.Row; 43 import com.ibm.icu.impl.Row.R2; 156 R2<Set<String>, Set<String>> row = Row.of(a, b); 157 Set<String> result = cache.get(row); 162 cache.put(row, result); 571 R2<Integer, Integer> r = Row.of(cp, cp2);
|
/external/libavc/common/arm/ |
ih264_iquant_itrans_recon_a9.s | 167 vld1.32 d30[0], [r1], r3 @I row Load pu1_pred buffer 177 vld1.32 d30[1], [r1], r3 @II row Load pu1_pred buffer 184 vld1.32 d31[0], [r1], r3 @III row Load pu1_pred buf 203 vld1.32 d31[1], [r1], r3 @IV row Load pu1_pred buffer 220 vst1.32 d0[0], [r2], r4 @I row store the value 221 vst1.32 d0[1], [r2], r4 @II row store the value 222 vst1.32 d1[0], [r2], r4 @III row store the value 223 vst1.32 d1[1], [r2] @IV row store the value 341 vld2.8 {d28, d29}, [r1], r3 @I row Load pu1_pred buffer 351 vld2.8 {d29, d30}, [r1], r3 @II row Load pu1_pred buffe [all...] |
/external/libgdx/gdx/jni/gdx2d/ |
jpgd.cpp | 79 struct Row 124 struct Row<0> 135 struct Row<1> 278 case 0: Row<0>::idct(pTemp, pSrc); break; 279 case 1: Row<1>::idct(pTemp, pSrc); break; 280 case 2: Row<2>::idct(pTemp, pSrc); break; 281 case 3: Row<3>::idct(pTemp, pSrc); break; 282 case 4: Row<4>::idct(pTemp, pSrc); break; 283 case 5: Row<5>::idct(pTemp, pSrc); break; 284 case 6: Row<6>::idct(pTemp, pSrc); break 1872 int row = m_max_mcu_y_size - m_mcu_lines_left; local 1899 int row = m_max_mcu_y_size - m_mcu_lines_left; local 1944 int row = m_max_mcu_y_size - m_mcu_lines_left; local 1992 int row = m_max_mcu_y_size - m_mcu_lines_left; local 2058 int row = m_max_mcu_y_size - m_mcu_lines_left; local 2074 int row = m_max_mcu_y_size - m_mcu_lines_left; local [all...] |