/external/llvm/utils/TableGen/ |
AsmMatcherEmitter.cpp | [all...] |
/external/opencv/cxcore/include/ |
cvwimage.h | 64 // We use the convention (c,r) to refer to column c and row r with (0,0) being 77 // *im(2, 3) = 15; // Modify the element at column 2, row 3 80 // // Copy the second row into the first. This can be done with no memory 88 // float* row = im->Row(r); 90 // for (int ch = 0; ch < im->Channels(); ++ch, ++row) { 91 // *row = uchar(rand() & 255); 209 inline const T* Row(int r) const { 213 inline T* Row(int r) {
|
/external/opencv3/modules/core/include/opencv2/core/ |
wimage.hpp | 133 We use the convention (c,r) to refer to column c and row r with (0,0) being the upper left corner. 146 *im(2, 3) = 15; // Modify the element at column 2, row 3 149 // Copy the second row into the first. This can be done with no memory 157 float* row = im->Row(r); 159 for (int ch = 0; ch < im->Channels(); ++ch, ++row) { 160 *row = uchar(rand() & 255); 205 inline const T* Row(int r) const { 209 inline T* Row(int r) {
|
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/ |
SearchFragment.java | 30 import android.support.v17.leanback.widget.Row; 340 RowPresenter.ViewHolder rowViewHolder, Row row) { 348 rowViewHolder, row);
|
SearchSupportFragment.java | 32 import android.support.v17.leanback.widget.Row; 342 RowPresenter.ViewHolder rowViewHolder, Row row) { 350 rowViewHolder, row);
|
/external/chromium-trace/catapult/dashboard/dashboard/ |
add_point_queue.py | 43 one point to add. For each dict, one Row entity will be added, and 74 # it requires the new row to have a timestamp, which happens upon put. 103 for row in data: 104 start = ['Master', row['master'], 'Bot', row['bot']] 105 test_parts = row['test'].split('/') 116 """Adds a Row entity to the datastore. 128 A triple: The new row, the parent test, and a list of entity put futures. 150 # If the row ID isn't the revision, that means that the data is Chrome OS 156 new_row = graph_data.Row(id=row_id, parent=test_container_key, **columns [all...] |
alerts_test.py | 180 for row in rows: 181 stoppage_alert.CreateStoppageAlert(test_key.get(), row).put() 193 row = graph_data.Row(parent=row_parent, id=1234) 194 stoppage_alert.CreateStoppageAlert(test_key.get(), row).put()
|
stats_test.py | 40 # Sample row data to use in tests for around-revision stats below. 84 graph_data.Row(id=r, parent=parent_key, value=v).put()
|
/external/chromium-trace/catapult/dashboard/dashboard/models/ |
graph_data.py | 28 The graph data points are represented by Row entities. Each Row entity contains 32 The keys of the Row entities for a particular data series are start with a 33 TestContainer key, instead of a Test key. This way, the Row entities for each 37 For example, Row entities are organized like this: 40 Row: revision 12345, value 2.5 41 Row: revision 12346, value 2.0 42 Row: revision 12347, value 2.1 44 Row: revision 12345, value 2.4 45 Row: revision 12346, value 2. [all...] |
/external/guava/guava/src/com/google/common/collect/ |
TreeBasedTable.java | 40 * Implementation of {@code Table} whose row keys and column keys are ordered 42 * {@code TreeBasedTable}, you may provide comparators for the row keys and 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. 61 * row, both {@code row(rowKey)} and {@code rowMap().get(rowKey)} are {@link 97 * of both row and column keys. 114 * @param rowComparator the comparator that orders the row key 176 public SortedMap<C, V> row(R rowKey) { method in class:TreeBasedTable [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/ |
AlphabeticIndexTest.java | 22 import android.icu.impl.Row; 23 import android.icu.impl.Row.R4; 620 R4<RawCollationKey, String, Integer, Double> row = Row.of(rawCollationKey, name, name.length(), testValue++); local [all...] |
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/ |
AlphabeticIndexTest.java | 21 import com.ibm.icu.impl.Row; 22 import com.ibm.icu.impl.Row.R4; 616 R4<RawCollationKey, String, Integer, Double> row = Row.of(rawCollationKey, name, name.length(), testValue++); local [all...] |
/prebuilts/tools/common/m2/repository/net/sf/jopt-simple/jopt-simple/4.9/ |
jopt-simple-4.9.jar | |
/prebuilts/tools/common/offline-m2/net/sf/jopt-simple/jopt-simple/4.9/ |
jopt-simple-4.9.jar | |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/ |
mce.h | 793 ULONGLONG Row:1; 817 USHORT Row;
|
/external/llvm/lib/Target/AMDGPU/ |
R600InstrInfo.cpp | 284 for (const auto &Row : SrcSelTable) { 285 if (getOperandIdx(Opcode, Row[0]) == (int)SrcIdx) { 286 return getOperandIdx(Opcode, Row[1]); [all...] |
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/ |
FullWidthDetailsOverviewRowPresenter.java | 42 * Renders a {@link DetailsOverviewRow} to display an overview of an item. Typically this row will 43 * be the first row in a fragment such as the 69 * selected row position. 180 public void onImageDrawableChanged(DetailsOverviewRow row) { 186 public void onItemChanged(DetailsOverviewRow row) { 190 mDetailsPresenter.onBindViewHolder(mDetailsDescriptionViewHolder, row.getItem()); 194 public void onActionsAdapterChanged(DetailsOverviewRow row) { 195 bindActions(row.getActionsAdapter()); 212 Row row = getRow() 228 DetailsOverviewRow row = (DetailsOverviewRow) getRow(); local 234 DetailsOverviewRow row = (DetailsOverviewRow) getRow(); local 589 DetailsOverviewRow row = (DetailsOverviewRow) item; local [all...] |
PlaybackControlsRow.java | 32 * A {@link Row} of playback controls to be displayed by a {@link PlaybackControlsRowPresenter}. 34 * This row consists of some optional item detail, a series of primary actions, 46 public class PlaybackControlsRow extends Row { 634 * @param item The main item for the row. 654 * Sets a {link @Drawable} image for this row. 655 * <p>If set after the row has been bound to a view, the adapter must be notified that 656 * this row has changed.</p> 665 * Sets a {@link Bitmap} for this row. 666 * <p>If set after the row has been bound to a view, the adapter must be notified that 667 * this row has changed.</p [all...] |
/prebuilts/go/darwin-x86/src/cmd/yacc/ |
yacc.go | 340 type Row struct { 345 var stateTable []Row [all...] |
/prebuilts/go/linux-x86/src/cmd/yacc/ |
yacc.go | 340 type Row struct { 345 var stateTable []Row [all...] |
/external/sfntly/cpp/src/test/tinyxml/ |
tinyxml.h | 102 void Clear() { row = col = -1; } 104 int row; // 0 based. member in struct:TiXmlCursor 227 The row and column are 1-based. (That is the first row and first column is 229 a row and column value. 231 Generally, the row and column value will be set when the TiXmlDocument::Load(), 239 There is a minor performance cost to computing the row and column. Computation 244 int Row() const { return location.row + 1; } 245 int Column() const { return location.col + 1; } ///< See Row() [all...] |
/external/tinyxml/ |
tinyxml.h | 104 void Clear() { row = col = -1; } 106 int row; // 0 based. member in struct:TiXmlCursor 181 The row and column are 1-based. (That is the first row and first column is 183 a row and column value. 185 Generally, the row and column value will be set when the TiXmlDocument::Load(), 193 There is a minor performance cost to computing the row and column. Computation 198 int Row() const { return location.row + 1; } 199 int Column() const { return location.col + 1; } ///< See Row() [all...] |
/prebuilts/devtools/tools/lib/ |
traceview.jar | |
/prebuilts/gradle-plugin/com/android/tools/traceview/24.4.0-beta6/ |
traceview-24.4.0-beta6.jar | |
/prebuilts/gradle-plugin/com/android/tools/traceview/24.5.0/ |
traceview-24.5.0.jar | |