Home
last modified time | relevance | path

Searched refs:list_result (Results 1 – 9 of 9) sorted by relevance

/external/llvm-project/lldb/examples/python/
Ddict_utils.py13 list_result = [item[0] for item in self.items() if item[1] == value]
14 if len(list_result) > 0:
15 return list_result
20 list_result = [item[0] for item in self.items() if item[1] == value]
21 if len(list_result) > 0:
22 return list_result[0]
/external/tensorflow/tensorflow/python/eager/
Dfunction.cc51 py::list list_result = (py::list)result; in _build_call_outputs() local
53 if (!list_result.empty()) { in _build_call_outputs()
55 py::list ndarr_result(list_result.size()); in _build_call_outputs()
57 ndarr_result[i] = np_arrays->attr("tensor_to_ndarray")(list_result[i]); in _build_call_outputs()
61 return np_arrays->attr("tensor_to_ndarray")(list_result[0]); in _build_call_outputs()
70 outputs_list[i] = list_result[j]; in _build_call_outputs()
/external/autotest/client/bin/
Dfs_sync.py150 list_result = run("nvme list-ns %s" % device, strip=True)
151 available_ns = list_result.stdout.strip()
153 if list_result.rc != 0:
155 list_result.rc)
/external/libchrome/build/
Dgn_helpers.py316 list_result = []
321 return list_result
326 list_result += [ self._ParseAllowTrailing() ]
/external/autotest/client/site_tests/platform_CryptohomeLECredentialManager/
Dplatform_CryptohomeLECredentialManager.py31 list_result = utils.run('ls /home/.shadow/low_entropy_creds')
32 labels_str = list_result.stdout
/external/llvm-project/lldb/unittests/ScriptInterpreter/Python/
DPythonDataObjectsTests.cpp577 auto list_result = result.AsType<PythonList>(); in TEST_F() local
578 EXPECT_EQ(3U, list_result.GetSize()); in TEST_F()
579 EXPECT_EQ(one.get(), list_result.GetItemAtIndex(0).get()); in TEST_F()
580 EXPECT_EQ(two.get(), list_result.GetItemAtIndex(1).get()); in TEST_F()
581 EXPECT_EQ(three.get(), list_result.GetItemAtIndex(2).get()); in TEST_F()
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
Dtensor_list_utils.h104 Status ExecuteTensorListPopBack(xla::XlaOp list, xla::XlaOp* list_result,
Dtensor_list_ops.cc672 xla::XlaOp list_result, element_result; in Compile() local
675 ExecuteTensorListPopBack(list, &list_result, &element_result, in Compile()
678 ctx->SetTensorListOutput(0, list_result); in Compile()
Dtensor_list_utils.cc414 Status ExecuteTensorListPopBack(xla::XlaOp list, xla::XlaOp* list_result, in ExecuteTensorListPopBack() argument
453 *list_result = xla::Tuple(b, list_result_parts); in ExecuteTensorListPopBack()