Home
last modified time | relevance | path

Searched refs:has_rows (Results 1 – 20 of 20) sorted by relevance

/external/chromium-trace/catapult/dashboard/dashboard/
Dlist_tests.py105 keys = GetTestDescendants(test_key, has_rows=True, deprecated=deprecated)
133 has_rows = name in paths
134 sub_tests[name] = _SubTestsDictEntry(sub_test_paths, has_rows, deprecated)
145 def _SubTestsDictEntry(sub_test_paths, has_rows, deprecated): argument
148 'has_rows': has_rows,
233 graph_data.TestMetadata.has_rows == True)
245 test_key, has_rows=None, deprecated=None, keys_only=True): argument
267 if has_rows is not None:
268 query = query.filter(graph_data.TestMetadata.has_rows == has_rows)
Dlist_monitored_tests_test.py33 id='TheMaster/TheBot/Suite1/aaa', has_rows=True).put()
35 id='TheMaster/TheBot/Suite1/bbb', has_rows=True).put()
37 id='TheMaster/TheBot/Suite2/ccc', has_rows=True).put()
39 id='TheMaster/TheBot/Suite2/ddd', has_rows=True).put()
Dedit_anomaly_configs_test.py89 id='TheMaster/TheBot/Suite1/aaa', has_rows=True).put()
91 id='TheMaster/TheBot/Suite1/bbb', has_rows=True).put()
93 id='TheMaster/TheBot/Suite1/ccc', has_rows=True).put()
95 id='TheMaster/TheBot/Suite2/ddd', has_rows=True).put()
155 has_rows=True).put()
158 has_rows=True).put()
Dedit_config_handler_test.py36 id='TheMaster/TheBot/Suite1/aaa', has_rows=True).put()
38 id='TheMaster/TheBot/Suite1/bbb', has_rows=True).put()
40 id='TheMaster/TheBot/Suite2/ccc', has_rows=True).put()
42 id='TheMaster/TheBot/Suite2/ddd', has_rows=True).put()
Dlist_tests_test.py72 test.has_rows = True
156 test.has_rows = True
197 subtest.has_rows = True
347 test.has_rows = True
Dedit_sheriffs_test.py41 id='TheMaster/TheBot/Suite1/aaa', has_rows=True).put()
43 id='TheMaster/TheBot/Suite1/bbb', has_rows=True).put()
45 id='TheMaster/TheBot/Suite2/ccc', has_rows=True).put()
47 id='TheMaster/TheBot/Suite2/ddd', has_rows=True).put()
Dgraph_csv_test.py35 id='ChromiumPerf/%s/dromaeo/dom' % name, has_rows=True).put()
51 has_rows=True,
Dlist_monitored_tests.py36 graph_data.TestMetadata.has_rows == True)
Dgraph_revisions_test.py35 id='ChromiumPerf/%s/dromaeo/dom' % bot_name, has_rows=True).put()
Dmr.py197 test.key, has_rows=True, keys_only=False)
Dgraph_json_test.py60 has_rows=True).put()
96 has_rows=True)
650 has_rows=True).put()
Dadd_point_queue.py60 is_monitored = parent_test.sheriff and parent_test.has_rows
Dgraph_json.py143 test_entities = [t for t in test_entities if t.has_rows]
Dadd_point_test.py220 self.assertFalse(tests[0].has_rows)
232 self.assertTrue(tests[1].has_rows)
241 self.assertTrue(tests[2].has_rows)
Dbench_find_anomalies.py427 graph_data.TestMetadata.has_rows == True,
Dstart_try_job_test.py367 test.has_rows = True
Dstart_try_job.py238 metric_keys = list_tests.GetTestDescendants(graph_key, has_rows=True)
/external/chromium-trace/catapult/dashboard/dashboard/models/
Dgraph_data.py151 has_rows = ndb.BooleanProperty(default=False, indexed=True) variable in TestMetadata
405 if not parent_test.has_rows:
406 parent_test.has_rows = True
/external/libvpx/libvpx/vp9/encoder/
Dvp9_bitstream.c410 const int has_rows = (mi_row + hbs) < cm->mi_rows; in write_partition() local
413 if (has_rows && has_cols) { in write_partition()
415 } else if (!has_rows && has_cols) { in write_partition()
418 } else if (has_rows && !has_cols) { in write_partition()
/external/libvpx/libvpx/vp9/decoder/
Dvp9_decodeframe.c933 int has_rows, int has_cols, int bsl) { in read_partition() argument
939 if (has_rows && has_cols) in read_partition()
941 else if (!has_rows && has_cols) in read_partition()
943 else if (has_rows && !has_cols) in read_partition()
964 const int has_rows = (mi_row + hbs) < cm->mi_rows; in decode_partition() local
970 partition = read_partition(xd, mi_row, mi_col, r, has_rows, has_cols, in decode_partition()
985 if (has_rows) in decode_partition()