HomeSort by relevance Sort by last modified time
    Searched refs:Row (Results 176 - 200 of 283) sorted by null

1 2 3 4 5 6 78 91011>>

  /frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
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 = '%s/%s' % (row['master'], 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()
migrate_test_names.py 10 * Re-parent all TestMetadata and Row entities from the old TestMetadata to
66 # Properties of Row that shouldn't be copied.
275 """Migrates data (Row entities) from the old to the new test.
343 """Copies Row entities from one parent to another, deleting old ones.
360 # Add some Row entities to the lists of entities to put and delete.
363 for row in rows:
365 graph_data.Row, row, row.key.id(), new_parent_key, _ROW_EXCLUDE))
366 rows_to_delete.append(row.key
    [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 
  /prebuilts/gradle-plugin/com/android/tools/traceview/25.0.0-alpha1/
traceview-25.0.0-alpha1.jar 
  /external/v8/tools/profviz/
composer.js 45 var kDeoptRow = 7; // Row displaying deopts.
414 function DrawBar(row, color, start, end, width) {
415 DrawBarBase(color, start, end, row + width, row - width);
418 function DrawHalfBar(row, color, start, end, width) {
419 DrawBarBase(color, start, end, row, row - width);
483 var row = MergeRanges(TicksToRanges(code_kind.in_execution));
484 for (var j = 0; j < row.length; j++) {
486 row[j].start, row[j].end, kExecutionFrameWidth)
    [all...]
  /external/llvm/lib/Target/X86/
X86InstrInfo.cpp     [all...]
  /external/gemmlowp/test/
test.cc     [all...]
  /external/libmpeg2/common/arm/
impeg2_idct.s 388 @// Row 0 First Half - D2 - y0
389 @// Row 1 First Half - D6 - y1
390 @// Row 2 First Half - D3 - y2
391 @// Row 3 First Half - D7 - y3
392 @// Row 4 First Half - D10 - y4
393 @// Row 5 First Half - D14 - y5
394 @// Row 6 First Half - D11 - y6
395 @// Row 7 First Half - D15 - y7
397 @// Row 0 Second Half - D4 - y0
398 @// Row 1 Second Half - D8 - y
    [all...]

Completed in 605 milliseconds

1 2 3 4 5 6 78 91011>>