Home
last modified time | relevance | path

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

/external/toolchain-utils/binary_search_tool/
Dbinary_search_perforce.py187 to_return = ''
189 to_return += ('%d %d %s\n' % (self.points[i].status, i,
192 return to_return
195 to_return = ''
196 to_return += 'Current: %d\n' % self.current
197 to_return += str(self.index_log) + '\n'
201 to_return += str(revision_log) + '\n'
202 to_return += str(self.status_log) + '\n'
203 to_return += 'Skipped indices:\n'
204 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)
DChangeLog4242 (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.py102 to_return = make_script(script_dir, script_basename,
108 return to_return
112 to_return = make_zip_pkg(zip_dir, zip_basename, pkg_name, script_basename,
115 return to_return
133 to_return = make_script(script_dir, script_basename, source)
135 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
106 to_return = make_script(script_dir, script_basename, source)
108 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/python/cpython3/Lib/test/test_importlib/
Dutil.py296 to_return = fxn(*args, **kwargs)
299 return to_return
/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/Python/
Dimport.c1635 PyObject *to_return = PyUnicode_Substring(abs_name, 0, in PyImport_ImportModuleLevelObject() local
1637 if (to_return == NULL) { in PyImport_ImportModuleLevelObject()
1641 final_mod = PyDict_GetItem(interp->modules, to_return); in PyImport_ImportModuleLevelObject()
1642 Py_DECREF(to_return); in PyImport_ImportModuleLevelObject()
1646 to_return); in PyImport_ImportModuleLevelObject()
/external/skqp/src/core/
DSkFindAndPlaceGlyph.h187 SkPoint to_return{fPositions[0], fPositions[1]}; in nextPoint()
189 return to_return; in nextPoint()
/external/skia/src/core/
DSkFindAndPlaceGlyph.h187 SkPoint to_return{fPositions[0], fPositions[1]}; in nextPoint()
189 return to_return; in nextPoint()
/external/autotest/client/common_lib/
Dutils.py1100 to_return = function(*args, **dargs)
1110 return cpu_percent, to_return
/external/autotest/frontend/afe/
Drpc_interface_unittest.py1436 def _mockRpcUtils(self, to_return, control_file_substring=''): argument
1462 ).AndReturn(to_return)