Home
last modified time | relevance | path

Searched refs:to_return (Results 1 – 17 of 17) sorted by relevance

/external/toolchain-utils/binary_search_tool/
Dbinary_search_perforce.py250 to_return = ''
252 to_return += (
255 return to_return
258 to_return = ''
259 to_return += 'Current: %d\n' % self.current
260 to_return += str(self.index_log) + '\n'
264 to_return += str(revision_log) + '\n'
265 to_return += str(self.status_log) + '\n'
266 to_return += 'Skipped indices:\n'
267 to_return += str(self.skipped_indices) + '\n'
[all …]
/external/strace/
Dmpers.awk65 function leave(array_idx, to_return)
68 return to_return
81 special, to_return, type_idx, enc, i)
106 to_return = array[what_idx, "upper_bound"]
107 if ("" == to_return)
108 to_return = "[0]"
110 return leave(what_idx, to_return)
DChangeLog11804 (what_is): Make loc_diff, returned_size, and to_return local.
/external/toolchain-utils/automation/clients/helper/
Djobs.py8 to_return = job.Job(label, command, timeout)
9 to_return.DependsOnMachine(machine.MachineSpecification(os='linux',
11 return to_return
/external/python/cpython3/Lib/test/
Dtest_multiprocessing_main_handling.py111 to_return = make_script(script_dir, script_basename,
117 return to_return
121 to_return = make_zip_pkg(zip_dir, zip_basename, pkg_name, script_basename,
124 return to_return
142 to_return = make_script(script_dir, script_basename, source)
144 return to_return
Dtest_cmd_line_script.py79 to_return = make_script(script_dir, script_basename, source)
81 return to_return
85 to_return = make_zip_pkg(zip_dir, zip_basename, pkg_name, script_basename,
88 return to_return
/external/autotest/client/site_tests/cellular_GobiRecoverFromDesync/
Dcellular_GobiRecoverFromDesync.py52 def to_return(*args, **kwargs): function
59 return to_return
63 to_return = subprocess.Popen(*args, **kwargs)
64 self.to_kill.append(to_return)
65 return to_return
/external/autotest/client/cros/
Dmainloop.py96 def to_return(self, e): function
99 return to_return.__get__(self, GenericTesterMainLoop)
/external/python/cpython3/Lib/test/test_importlib/import_/
Dtest_path.py121 return self.to_return
123 failing_finder.to_return = None
129 success_finder.to_return = __loader__
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_liveness_analysis_test.cc45 HloInstruction* to_return = nullptr; in GetInstruction() local
49 to_return = inst; in GetInstruction()
54 return CHECK_NOTNULL(to_return); in GetInstruction()
/external/skia/src/core/
DSkFindAndPlaceGlyph.h140 SkPoint to_return{fPositions[0], fPositions[1]}; in nextPoint()
142 return to_return; in nextPoint()
/external/skqp/src/core/
DSkFindAndPlaceGlyph.h140 SkPoint to_return{fPositions[0], fPositions[1]}; in nextPoint()
142 return to_return; in nextPoint()
/external/autotest/client/common_lib/cros/
Ddev_server_unittest.py192 to_return = MockSshResponse(self.contents)
194 timeout=mox.IgnoreArg()).AndReturn(to_return)
209 to_return = MockSshResponse('\n'.join(self.contents_readline))
211 timeout=mox.IgnoreArg()).AndReturn(to_return)
227 to_return = MockSshResponse(self.contents)
229 timeout=mox.IgnoreArg()).AndReturn(to_return)
/external/python/cpython3/Lib/test/test_importlib/
Dutil.py303 to_return = fxn(*args, **kwargs)
306 return to_return
/external/python/cpython3/Python/
Dimport.c1795 PyObject *to_return = PyUnicode_Substring(abs_name, 0, in PyImport_ImportModuleLevelObject() local
1797 if (to_return == NULL) { in PyImport_ImportModuleLevelObject()
1801 final_mod = PyImport_GetModule(to_return); in PyImport_ImportModuleLevelObject()
1802 Py_DECREF(to_return); in PyImport_ImportModuleLevelObject()
1806 to_return); in PyImport_ImportModuleLevelObject()
/external/autotest/client/common_lib/
Dutils.py1115 to_return = function(*args, **dargs)
1125 return cpu_percent, to_return
/external/autotest/frontend/afe/
Drpc_interface_unittest.py1442 def _mockRpcUtils(self, to_return, control_file_substring=''): argument
1468 ).AndReturn(to_return)