/external/chromium-trace/catapult/dashboard/dashboard/ |
D | list_tests.py | 105 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)
|
D | list_monitored_tests_test.py | 33 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()
|
D | edit_anomaly_configs_test.py | 89 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()
|
D | edit_config_handler_test.py | 36 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()
|
D | list_tests_test.py | 72 test.has_rows = True 156 test.has_rows = True 197 subtest.has_rows = True 347 test.has_rows = True
|
D | edit_sheriffs_test.py | 41 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()
|
D | graph_csv_test.py | 35 id='ChromiumPerf/%s/dromaeo/dom' % name, has_rows=True).put() 51 has_rows=True,
|
D | list_monitored_tests.py | 36 graph_data.TestMetadata.has_rows == True)
|
D | graph_revisions_test.py | 35 id='ChromiumPerf/%s/dromaeo/dom' % bot_name, has_rows=True).put()
|
D | mr.py | 197 test.key, has_rows=True, keys_only=False)
|
D | graph_json_test.py | 60 has_rows=True).put() 96 has_rows=True) 650 has_rows=True).put()
|
D | add_point_queue.py | 60 is_monitored = parent_test.sheriff and parent_test.has_rows
|
D | graph_json.py | 143 test_entities = [t for t in test_entities if t.has_rows]
|
D | add_point_test.py | 220 self.assertFalse(tests[0].has_rows) 232 self.assertTrue(tests[1].has_rows) 241 self.assertTrue(tests[2].has_rows)
|
D | bench_find_anomalies.py | 427 graph_data.TestMetadata.has_rows == True,
|
D | start_try_job_test.py | 367 test.has_rows = True
|
D | start_try_job.py | 238 metric_keys = list_tests.GetTestDescendants(graph_key, has_rows=True)
|
/external/chromium-trace/catapult/dashboard/dashboard/models/ |
D | graph_data.py | 151 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/ |
D | vp9_bitstream.c | 410 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/ |
D | vp9_decodeframe.c | 933 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()
|