Home
last modified time | relevance | path

Searched refs:to_return (Results 1 – 11 of 11) 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/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/strace/
Dmpers.awk66 function leave(array_idx, to_return)
69 return to_return
112 to_return = array[what_idx]["upper_bound"]
113 if ("" == to_return)
114 to_return = "[0]"
116 return leave(what_idx, to_return)
/external/autotest/client/site_tests/network_3GRecoverFromGobiDesync/
Dnetwork_3GRecoverFromGobiDesync.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/site_utils/suite_scheduler/
Dforgiving_config_parser.py45 to_return = ConfigParser.SafeConfigParser.read(self, filenames)
47 return to_return
Dmanifest_versions_unittest.py123 def _ExpectGlob(self, to_return): argument
126 mox.IgnoreArg()).AndReturn(to_return)
/external/autotest/client/cros/
Dmainloop.py96 def to_return(self, e): function
99 return to_return.__get__(self, GenericTesterMainLoop)
/external/autotest/client/common_lib/cros/
Ddev_server_unittest.py150 to_return = MockSshResponse(self.contents)
152 timeout=mox.IgnoreArg()).AndReturn(to_return)
167 to_return = MockSshResponse('\n'.join(self.contents_readline))
169 timeout=mox.IgnoreArg()).AndReturn(to_return)
185 to_return = MockSshResponse(self.contents)
187 timeout=mox.IgnoreArg()).AndReturn(to_return)
/external/skia/src/core/
DSkFindAndPlaceGlyph.h186 SkPoint to_return{fPositions[0], fPositions[1]}; in nextPoint()
188 return to_return; in nextPoint()
/external/autotest/client/common_lib/
Dutils.py1090 to_return = function(*args, **dargs)
1100 return cpu_percent, to_return
/external/autotest/frontend/afe/
Drpc_interface_unittest.py759 def _mockRpcUtils(self, to_return, control_file_substring=''): argument
785 ).AndReturn(to_return)