HomeSort by relevance Sort by last modified time
    Searched refs:has_rows (Results 1 - 21 of 21) sorted by null

  /external/chromium-trace/catapult/dashboard/dashboard/
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()
list_tests.py 33 has_rows: "1" if the requester wants to list only list tests that
51 only_with_rows = self.request.get('has_rows') == '1'
72 "has_rows" (boolean) and "sub_tests", which is another sub-tests dict.
105 keys = GetTestDescendants(test_key, has_rows=True, deprecated=deprecated)
123 corresponds to a TestMetadata entity for which has_rows is set to True.
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):
148 'has_rows': has_rows,
    [all...]
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()
list_monitored_tests.py 36 graph_data.TestMetadata.has_rows == True)
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()
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()
list_tests_test.py 67 # Set the has_rows flag to true on two of the TestMetadata entities.
72 test.has_rows = True
75 # A tree-structured dict of dicts is constructed, and the 'has_rows'
85 'has_rows': False,
88 'has_rows': False,
91 'has_rows': False,
94 'has_rows': True,
102 'has_rows': True,
119 'has_rows': False,
122 'has_rows': True
    [all...]
graph_csv_test.py 35 id='ChromiumPerf/%s/dromaeo/dom' % name, has_rows=True).put()
51 has_rows=True,
graph_revisions_test.py 35 id='ChromiumPerf/%s/dromaeo/dom' % bot_name, has_rows=True).put()
mr.py 197 test.key, has_rows=True, keys_only=False)
add_point_queue.py 60 is_monitored = parent_test.sheriff and parent_test.has_rows
graph_json_test.py 60 has_rows=True).put()
96 has_rows=True)
650 has_rows=True).put()
graph_json.py 143 test_entities = [t for t in test_entities if t.has_rows]
555 if value['has_rows']:
583 if target_sub_test_tree['has_rows']:
588 if value['has_rows']:
start_try_job_test.py 367 test.has_rows = True
    [all...]
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)
    [all...]
start_try_job.py 238 metric_keys = list_tests.GetTestDescendants(graph_key, has_rows=True)
  /external/chromium-trace/catapult/dashboard/dashboard/models/
graph_data.py 107 both. A TestMetadata entity that the property has_rows set to True corresponds
151 has_rows = ndb.BooleanProperty(default=False, indexed=True) variable in class:TestMetadata
389 """Sets the has_rows property of the parent test before putting this Row.
405 if not parent_test.has_rows:
406 parent_test.has_rows = True
  /external/libvpx/libvpx/vp9/encoder/
vp9_bitstream.c 410 const int has_rows = (mi_row + hbs) < cm->mi_rows; local
413 if (has_rows && has_cols) {
415 } else if (!has_rows && has_cols) {
418 } else if (has_rows && !has_cols) {
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
vp9_decodeframe.c 386 const int has_rows = (mi_row + hbs) < cm->mi_rows; local
390 if (has_rows && has_cols)
392 else if (!has_rows && has_cols)
394 else if (has_rows && !has_cols)
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_bitstream.c 400 const int has_rows = (mi_row + hbs) < cm->mi_rows; local
403 if (has_rows && has_cols) {
405 } else if (!has_rows && has_cols) {
408 } else if (has_rows && !has_cols) {
    [all...]
  /external/libvpx/libvpx/vp9/decoder/
vp9_decodeframe.c 964 const int has_rows = (mi_row + hbs) < cm->mi_rows; local
    [all...]

Completed in 1155 milliseconds