Searched refs:result_list (Results 1 - 7 of 7) sorted by relevance
/third_party/protobuf/benchmarks/util/ |
H A D | result_parser.py | 216 result_list = re.split(r"[\ \t]+", line) 217 if result_list[0][:9] != "Benchmark": 219 first_slash_index = result_list[0].find('/') 220 last_slash_index = result_list[0].rfind('/') 221 full_filename = result_list[0][first_slash_index+1:last_slash_index] 223 behavior_with_suffix = result_list[0][last_slash_index+1:] 231 "throughput": total_bytes / float(result_list[2]) * 1e9 / 2 ** 20,
|
H A D | result_uploader.py | 49 def upload_result(result_list, metadata): 50 for result in result_list:
|
/third_party/python/Lib/test/ |
H A D | test_platform.py | 337 result_list = res[0].split('.') 339 len_diff = len(result_list) - len(expect_list) 345 if result_list != ['10', '16']: 346 self.assertEqual(result_list, expect_list)
|
/third_party/skia/third_party/externals/angle2/src/tests/ |
H A D | capture_replay_tests.py | 716 def RunTests(args, worker_id, job_queue, result_list, message_queue, logger, ninja_lock): 734 result_list.append(test_batch.GetResults()) 739 result_list.append(test_batch.GetResults()) 747 result_list.append(test_batch.GetResults()) 752 result_list.append(test_batch.GetResults()) 901 result_list = manager.list() 909 args=(args, worker_id, job_queue, result_list, message_queue, logger, ninja_lock)) 942 for test_batch in result_list:
|
/third_party/python/Modules/ |
H A D | selectmodule.c | 597 PyObject *result_list = NULL; in select_poll_poll_impl() local 687 result_list = PyList_New(poll_result); in select_poll_poll_impl() 688 if (!result_list) in select_poll_poll_impl() 698 clean up result_list */ in select_poll_poll_impl() 719 PyList_SET_ITEM(result_list, j, value); in select_poll_poll_impl() 722 return result_list; in select_poll_poll_impl() 725 Py_DECREF(result_list); in select_poll_poll_impl() 924 PyObject *result_list = NULL; in select_devpoll_poll_impl() local 997 result_list = PyList_New(poll_result); in select_devpoll_poll_impl() 998 if (!result_list) in select_devpoll_poll_impl() [all...] |
/third_party/node/deps/v8/src/inspector/ |
H A D | v8-webdriver-serializer.cc | 222 std::unique_ptr<protocol::ListValue> result_list = in _serializeObjectValue() local 265 result_list->pushValue(std::move(value_list)); in _serializeObjectValue() 267 (*result) = std::move(result_list); in _serializeObjectValue()
|
/third_party/python/Lib/unittest/test/ |
H A D | test_result.py | 879 result_list = getattr(result, message_attr) 880 self.assertEqual(len(result_list), 1) 882 test, message = result_list[0]
|
Completed in 8 milliseconds