Searched refs:to_return (Results 1 – 11 of 11) sorted by relevance
/external/autotest/client/common_lib/cros/ |
D | dev_server_unittest.py | 85 to_return = StringIO.StringIO('{"free_disk": 1024}') 87 data=None).AndReturn(to_return) 110 to_return = StringIO.StringIO('{"free_disk": 1024}') 112 data=None).AndReturn(to_return) 164 to_return = StringIO.StringIO('Success') 167 mox.StrContains('stage?'))).AndReturn(to_return) 168 to_return = StringIO.StringIO('True') 172 to_return) 184 to_return = StringIO.StringIO('Success') 187 mox.StrContains('stage?'))).AndReturn(to_return) [all …]
|
/external/strace/ |
D | mpers.awk | 65 function leave(array_idx, to_return) 68 return to_return 104 to_return = array[what_idx]["upper_bound"] 105 if ("" == to_return) 106 to_return = 0 107 returned_size = to_return * returned_size 108 return leave(what_idx, to_return)
|
/external/chromium-trace/catapult/third_party/gsutil/gslib/tests/testcase/ |
D | unit_testcase.py | 229 to_return = [] 231 to_return.append(stdout) 233 to_return.append(stderr) 235 to_return.append(mock_log_handler) 236 if len(to_return) == 1: 237 return to_return[0] 238 return tuple(to_return)
|
/external/autotest/server/cros/dynamic_suite/ |
D | job_status.py | 457 to_return = {} 465 if (s.hostname not in to_return or 466 candidate.is_worse_than(to_return[s.hostname])): 467 to_return[s.hostname] = candidate 474 if host not in to_return: 475 to_return[host] = Status(Status.STATUS_MAP[e['status']], 480 return to_return
|
/external/autotest/client/site_tests/network_3GRecoverFromGobiDesync/ |
D | network_3GRecoverFromGobiDesync.py | 52 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/ |
D | forgiving_config_parser.py | 42 to_return = ConfigParser.SafeConfigParser.read(self, filenames) 44 return to_return
|
D | manifest_versions_unittest.py | 123 def _ExpectGlob(self, to_return): argument 126 mox.IgnoreArg()).AndReturn(to_return)
|
/external/autotest/client/cros/ |
D | mainloop.py | 96 def to_return(self, e): function 99 return to_return.__get__(self, GenericTesterMainLoop)
|
/external/skia/src/core/ |
D | SkFindAndPlaceGlyph.h | 270 SkPoint to_return{fPositions[0], fPositions[1]}; 272 return to_return;
|
/external/autotest/frontend/afe/ |
D | site_rpc_interface_unittest.py | 81 def _mockRpcUtils(self, to_return, control_file_substring=''): argument 107 ).AndReturn(to_return)
|
/external/autotest/client/common_lib/ |
D | base_utils.py | 1240 to_return = function(*args, **dargs) 1250 return cpu_percent, to_return
|