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

1 23 4 5 6 7 8 91011>>

  /frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/widget/
PresenterTest.java 28 import android.support.v17.leanback.widget.Row;
54 p.onBindViewHolder(vh, new Row(null));
57 p.onBindViewHolder(vh, new Row(new HeaderItem("")));
66 Presenter p = ps.getPresenter(new Row());
67 assertTrue("Row header instance",
74 assertTrue("Row header instance",
81 assertTrue("Row header instance",
85 assertTrue("Row header instance",
  /external/chromium-trace/catapult/dashboard/dashboard/
send_stoppage_alert_emails_test.py 28 """Puts a Test and Row in the datastore and returns the entities."""
42 row = graph_data.Row.query(graph_data.Row.parent_test == test.key).get()
43 stoppage_alert.CreateStoppageAlert(test, row).put()
mr_test.py 73 graph_data.Row(
76 graph_data.Row(
96 last_b = graph_data.Row.query(
97 graph_data.Row.parent_test == trace_b.key,
98 graph_data.Row.revision == 4).get()
112 """Adds a Test, Row and Sheriff and returns their keys."""
121 row_key = graph_data.Row(
graph_json.py 187 Each point info dict contains information from a Row entity.
188 parent_test: A Test entity with Row children.
208 for row in rows:
209 if row.revision not in revision_map:
210 revision_map[row.revision] = {}
211 revision_map[row.revision][parent_test_key] = _PointInfoDict(
212 row, anomaly_annotation_map)
215 def _PointInfoDict(row, anomaly_annotation_map):
216 """Makes a dict of properties of one Row."""
218 'value': row.value
    [all...]
mr.py 74 """Marks a Test entity as deprecated if the last row is too old.
97 # Fetch the last row.
99 query = graph_data.Row.query(graph_data.Row.parent_test == entity.key)
100 query = query.order(-graph_data.Row.timestamp)
127 last_row: The Row entity that was last added.
graph_revisions.py 13 This list is cached, since querying all Row entities for a given test takes a
88 query = graph_data.Row.query(projection=['revision', 'value', 'timestamp'])
89 query = query.filter(graph_data.Row.parent_test == test_key)
100 def _MakeTriplet(row):
101 """Makes a 3-item list of revision, value and timestamp for a Row."""
102 timestamp = utils.TimestampMilliseconds(row.timestamp)
103 return [row.revision, row.value, timestamp]
112 row_entities: List of Row entities.
115 for row in row_entities
    [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
HeadersFragment.java 31 import android.support.v17.leanback.widget.Row;
42 * An internal fragment containing a list of row headers.
53 * @param viewHolder Row ViewHolder object corresponding to the selected Header.
54 * @param row Row object corresponding to the selected Header.
56 void onHeaderClicked(RowHeaderPresenter.ViewHolder viewHolder, Row row);
66 * @param viewHolder Row ViewHolder object corresponding to the selected Header.
67 * @param row Row object corresponding to the selected Header
    [all...]
HeadersSupportFragment.java 33 import android.support.v17.leanback.widget.Row;
44 * An internal fragment containing a list of row headers.
55 * @param viewHolder Row ViewHolder object corresponding to the selected Header.
56 * @param row Row object corresponding to the selected Header.
58 void onHeaderClicked(RowHeaderPresenter.ViewHolder viewHolder, Row row);
68 * @param viewHolder Row ViewHolder object corresponding to the selected Header.
69 * @param row Row object corresponding to the selected Header
    [all...]
  /external/libavc/encoder/arm/
ime_distortion_metrics_a9q.s 373 @Row 1
374 vld1.8 {d0, d1}, [r2], r4 @ load src Row 1
375 vld1.8 {d2, d3}, [r0], r3 @ load ref1 Row 1
376 vld1.8 {d4, d5}, [r1], r3 @ load ref2 Row 1
378 @Row 2
379 vld1.8 {d6, d7}, [r2], r4 @ load src Row 2
382 vld1.8 {d8, d9}, [r0], r3 @ load ref1 Row 2
385 vld1.8 {d10, d11}, [r1], r3 @ load ref2 Row 2
390 @Row 1
391 vld1.8 {d0, d1}, [r2], r4 @ load src Row
    [all...]
  /external/webrtc/webrtc/modules/desktop_capture/
desktop_region.cc 23 DesktopRegion::Row::Row(int32_t top, int32_t bottom)
27 DesktopRegion::Row::~Row() {}
51 // Copy each row.
52 Row* row = it->second; local
53 it->second = new Row(*row);
59 // Iterate over rows of the tow regions and compare each row
98 Rows::iterator row = rows_.upper_bound(top); local
374 Row* row = it->second; local
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/
CompactConstructorExampleTest.java 158 List<Row> rows = table.getRows();
160 Iterator<Row> iter = rows.iterator();
161 Row first = iter.next();
166 Row second = iter.next();
172 Row third = iter.next();
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/ui/
VerticalGridFragment.java 24 import android.support.v17.leanback.widget.Row;
98 RowPresenter.ViewHolder rowViewHolder, Row row) {
119 RowPresenter.ViewHolder rowViewHolder, Row row) {
  /developers/build/prebuilts/androidtv/sample-inputs/app/src/main/java/com/example/android/sampletvinput/rich/
RichSettingsFragment.java 30 import android.support.v17.leanback.widget.Row;
119 RowPresenter.ViewHolder rowViewHolder, Row row) {
131 RowPresenter.ViewHolder rowViewHolder, Row row) {
  /frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
RowsFragment.java 26 import android.support.v17.leanback.widget.Row;
37 // Row heights default to wrap content
57 RowPresenter.ViewHolder rowViewHolder, Row row) {
58 Log.i(TAG, "onItemSelected: " + item + " row " + row);
61 getAdapter().get(0) == row);
91 HeaderItem header = new HeaderItem(i, "Row " + i);
101 RowPresenter.ViewHolder rowViewHolder, Row row) {
    [all...]
RowsSupportFragment.java 28 import android.support.v17.leanback.widget.Row;
39 // Row heights default to wrap content
59 RowPresenter.ViewHolder rowViewHolder, Row row) {
60 Log.i(TAG, "onItemSelected: " + item + " row " + row);
63 getAdapter().get(0) == row);
93 HeaderItem header = new HeaderItem(i, "Row " + i);
103 RowPresenter.ViewHolder rowViewHolder, Row row) {
    [all...]
ErrorFragment.java 23 import android.support.v17.leanback.widget.Row;
ErrorSupportFragment.java 25 import android.support.v17.leanback.widget.Row;
  /prebuilts/gdb/darwin-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/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/gemmlowp/internal/
single_thread_gemm.h 42 typedef VectorMap<const int32_t, VectorShape::Row> OffsetRowMap;
44 typedef VectorDup<const int32_t, VectorShape::Row> OffsetRowDup;
  /frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/app/media/
VideoConsumptionExampleFragment.java 26 import android.support.v17.leanback.widget.Row;
47 protected void onRowChanged(PlaybackControlsRow row) {
109 RowPresenter.ViewHolder rowViewHolder, Row row) {
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
Keyboard.java 52 * &lt;Row android:keyWidth="32px" &gt;
55 * &lt;/Row&gt;
65 private static final String TAG_ROW = "Row";
164 * Container for keys in the keyboard. All keys in a row are at the same Y-coordinate.
165 * Some of the key size defaults can be overridden per row from what the {@link Keyboard}
168 public static class Row {
169 /** Default width of a key in this row. */
171 /** Default height of a key in this row. */
173 /** Default horizontal gap between keys in this row. */
175 /** Vertical gap following this row. *
570 Row row = new Row(this); local
760 int row = 0; local
    [all...]
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/hiero/unicodefont/
GlyphPage.java 58 Array<Row> rows = new Array();
68 rows.add(new Row());
91 Row bestRow = null;
92 // Fit in any row before the last.
94 Row row = rows.get(ii); local
95 if (row.x + width >= pageWidth) continue;
96 if (row.y + height >= pageHeight) continue;
97 if (height > row.height) continue;
98 if (bestRow == null || row.height < bestRow.height) bestRow = row;
102 Row row = rows.peek(); local
191 int[] row = new int[width]; local
    [all...]

Completed in 383 milliseconds

1 23 4 5 6 7 8 91011>>