Home
last modified time | relevance | path

Searched refs:result_list (Results 1 – 23 of 23) sorted by relevance

/external/protobuf/benchmarks/util/
Dresult_parser.py216 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,
Dresult_uploader.py49 def upload_result(result_list, metadata): argument
50 for result in result_list:
/external/autotest/server/cros/dynamic_suite/
Dsuite_common.py338 result_list = _current_py_compatible_files(raw_result_list)
339 tests = dict(result_list)
353 result_list = []
356 result_list.append(item)
362 return result_list
/external/tensorflow/tensorflow/python/tools/
Dselective_registration_header_lib.py123 result_list = []
126 result_list.append(s)
191 return '\n'.join(result_list)
/external/autotest/server/site_tests/network_WiFi_ChannelScanDwellTime/
Dnetwork_WiFi_ChannelScanDwellTime.py173 result_list = [bss.ssid for bss in self._bss_list if
175 if not result_list:
186 return self._get_dwell_time(result_list, result_beacon_frames)
/external/tensorflow/tensorflow/python/ops/linalg/
Dlinear_operator_block_lower_triangular.py474 result_list = []
500 result_list.append(result)
513 result_list.append(result)
516 return result_list
518 result_list = linear_operator_util.broadcast_matrix_batch_dims(
519 result_list)
520 return array_ops.concat(result_list, axis=-2)
Dlinear_operator_block_diag.py370 result_list = []
372 result_list += [operator.matmul(
376 return result_list
378 result_list = linear_operator_util.broadcast_matrix_batch_dims(
379 result_list)
380 return array_ops.concat(result_list, axis=-2)
/external/python/cpython2/Lib/test/
Dtest_platform.py209 result_list = res[0].split('.')
211 len_diff = len(result_list) - len(expect_list)
215 self.assertEqual(result_list, expect_list)
/external/python/cpython3/Lib/test/
Dtest_platform.py234 result_list = res[0].split('.')
236 len_diff = len(result_list) - len(expect_list)
242 if result_list != ['10', '16']:
243 self.assertEqual(result_list, expect_list)
/external/llvm-project/lldb/tools/intel-features/intel-pt/
DPTDecoder.cpp116 PTInstructionList &result_list, in GetInstructionLogAtOffset() argument
130 result_list.SetSP(insn_list_ptr); in GetInstructionLogAtOffset()
DPTDecoder.h239 PTInstructionList &result_list,
DDecoder.h168 InstructionList &result_list,
DDecoder.cpp746 InstructionList &result_list, in GetInstructionLogAtOffset() argument
789 result_list.AppendInstruction(*itr); in GetInstructionLogAtOffset()
DREADME_TOOL.txt228 PTInstructionList &result_list,
260 @param[out] result_list : Depending upon 'count' and 'offset' values,
/external/oss-fuzz/infra/
Drepo_manager_test.py101 result_list = repo_man.get_commit_list(new_commit, old_commit)
102 self.assertListEqual(commit_list, result_list)
/external/python/cpython3/Modules/
Dselectmodule.c595 PyObject *result_list = NULL; in select_poll_poll_impl() local
685 result_list = PyList_New(poll_result); in select_poll_poll_impl()
686 if (!result_list) in select_poll_poll_impl()
717 PyList_SET_ITEM(result_list, j, value); in select_poll_poll_impl()
720 return result_list; in select_poll_poll_impl()
723 Py_DECREF(result_list); in select_poll_poll_impl()
927 PyObject *result_list = NULL; in select_devpoll_poll_impl() local
999 result_list = PyList_New(poll_result); in select_devpoll_poll_impl()
1000 if (!result_list) in select_devpoll_poll_impl()
1016 PyList_SET_ITEM(result_list, i, value); in select_devpoll_poll_impl()
[all …]
/external/angle/src/tests/
Dcapture_replay_tests.py740 def RunTests(args, worker_id, job_queue, result_list, message_queue): argument
758 result_list.append(test_batch.GetResults())
763 result_list.append(test_batch.GetResults())
771 result_list.append(test_batch.GetResults())
776 result_list.append(test_batch.GetResults())
888 result_list = manager.list()
895 target=RunTests, args=(args, worker_id, job_queue, result_list, message_queue))
925 for test_batch_result in result_list:
/external/llvm-project/lldb/third_party/Python/module/unittest2/unittest2/test/
Dtest_result.py400 result_list = getattr(result, message_attr)
401 self.assertEqual(len(result_list), 1)
403 test, message = result_list[0]
/external/python/cpython2/Lib/unittest/test/
Dtest_result.py478 result_list = getattr(result, message_attr)
479 self.assertEqual(len(result_list), 1)
481 test, message = result_list[0]
/external/python/cpython2/Modules/
Dselectmodule.c507 PyObject *result_list = NULL, *tout = NULL; in poll_poll() local
572 result_list = PyList_New(poll_result); in poll_poll()
573 if (!result_list) in poll_poll()
604 if ((PyList_SetItem(result_list, j, value)) == -1) { in poll_poll()
611 return result_list; in poll_poll()
614 Py_DECREF(result_list); in poll_poll()
/external/python/cpython3/Lib/unittest/test/
Dtest_result.py614 result_list = getattr(result, message_attr)
615 self.assertEqual(len(result_list), 1)
617 test, message = result_list[0]
/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
DScriptInterpreterPython.cpp1535 PythonList result_list(PyRefType::Borrowed, py_return.get()); in GetRecognizedArguments() local
1537 for (size_t i = 0; i < result_list.GetSize(); i++) { in GetRecognizedArguments()
1538 PyObject *item = result_list.GetItemAtIndex(i).get(); in GetRecognizedArguments()
1676 PythonList result_list(PyRefType::Borrowed, py_return.get()); in OSPlugin_ThreadsInfo() local
1677 return result_list.CreateStructuredArray(); in OSPlugin_ThreadsInfo()
/external/tensorflow/tensorflow/core/util/
Dexample_proto_fast_parsing.cc466 auto* result_list = value.mutable_bytes_list(); in TestFastParse() local
468 result_list->add_value(bytes.data(), bytes.size()); in TestFastParse()
475 auto* result_list = value.mutable_float_list(); in TestFastParse() local
477 result_list->add_value(f); in TestFastParse()
484 auto* result_list = value.mutable_int64_list(); in TestFastParse() local
486 result_list->add_value(i); in TestFastParse()