Home
last modified time | relevance | path

Searched refs:expected_call (Results 1 – 4 of 4) sorted by relevance

/external/v8/tools/release/
Dtest_scripts.py279 expected_call = self._recipe[self._index]
283 if not isinstance(expected_call, dict):
287 if expected_call["name"] != name:
289 (expected_call["name"], expected_call["args"], name))
292 if expected_call["cwd"] != kwargs.get("cwd"):
294 (expected_call["cwd"],
295 expected_call["name"],
296 expected_call["args"],
301 if len(args) > len(expected_call['args']):
307 for (expected_arg, actual_arg) in zip(expected_call['args'], args):
[all …]
/external/chromium-trace/catapult/devil/devil/utils/
Dmock_calls.py34 expected_call, action = self._expected_calls.pop(0)
36 received_call == expected_call,
40 % (str(expected_call), str(received_call))))
/external/perfetto/src/tracing/test/
Dmock_producer.cc163 auto& expected_call = EXPECT_CALL(*this, Flush(_, _, _)); in WaitForFlush() local
164 expected_call.WillOnce(Invoke( in WaitForFlush()
/external/python/apitools/apitools/base/py/testing/
Dmock.py74 def __init__(self, received_call, expected_call): argument
75 expected_key, expected_request = expected_call