Searched refs:last_call (Results 1 – 5 of 5) sorted by relevance
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/operators/ |
D | rx-finally.hpp | 50 last_call_type last_call; member 53 : last_call(std::move(lc)) in finally() 94 -> decltype(finally_observer<Subscriber>::make(std::move(dest), last_call)) { in operator ()() 95 return finally_observer<Subscriber>::make(std::move(dest), last_call); in operator ()()
|
/external/python/mock/mock/tests/ |
D | testhelpers.py | 271 last_call = call.foo(1).bar()().baz.beep(a=6) 272 self.assertEqual(mock.mock_calls[-1], last_call) 273 self.assertEqual(mock.mock_calls, last_call.call_list())
|
D | testmock.py | 943 last_call = ('().foo.bar().baz().__int__', (), {}) 944 self.assertEqual(mock.mock_calls[-1], last_call)
|
/external/python/cpython3/Lib/unittest/test/testmock/ |
D | testhelpers.py | 269 last_call = call.foo(1).bar()().baz.beep(a=6) 270 self.assertEqual(mock.mock_calls[-1], last_call) 271 self.assertEqual(mock.mock_calls, last_call.call_list())
|
D | testmock.py | 1031 last_call = ('().foo.bar().baz().__int__', (), {}) 1032 self.assertEqual(mock.mock_calls[-1], last_call)
|