Searched refs:callback_result (Results 1 – 6 of 6) sorted by relevance
/external/v8/src/ |
D | futex-emulation.cc | 133 AtomicsWaitEvent callback_result = AtomicsWaitEvent::kWokenUp; in Wait() local 143 callback_result = AtomicsWaitEvent::kNotEqual; in Wait() 181 callback_result = AtomicsWaitEvent::kTerminatedExecution; in Wait() 196 callback_result = AtomicsWaitEvent::kAPIStopped; in Wait() 209 callback_result = AtomicsWaitEvent::kTimedOut; in Wait() 228 isolate->RunAtomicsWaitCallback(callback_result, array_buffer, addr, value, in Wait() 232 CHECK_NE(callback_result, AtomicsWaitEvent::kTerminatedExecution); in Wait()
|
/external/python/futures/ |
D | test_futures.py | 539 callback_result = [None] 541 callback_result[0] = callback_future.result() 546 self.assertEqual(5, callback_result[0]) 600 callback_result = [None] 602 callback_result[0] = callback_future.result() 607 self.assertEqual(5, callback_result[0])
|
/external/python/cpython3/Lib/test/ |
D | test_concurrent_futures.py | 986 callback_result = None 988 nonlocal callback_result 989 callback_result = callback_future.result() 994 self.assertEqual(5, callback_result) 1041 callback_result = None 1043 nonlocal callback_result 1044 callback_result = callback_future.result() 1049 self.assertEqual(5, callback_result)
|
/external/autotest/client/common_lib/ |
D | pexpect.py | 240 callback_result = responses[index](locals()) 242 if type(callback_result) in types.StringTypes: 243 child.send(callback_result) 244 elif callback_result:
|
/external/tensorflow/tensorflow/python/keras/ |
D | backend_test.py | 1668 self.callback_result = 0 1672 self.callback_result = result 1690 self.assertEqual(callback.callback_result, 200)
|
/external/tensorflow/tensorflow/python/eager/ |
D | pywrap_tfe_src.cc | 2497 PyObject* callback_result = local 2499 if (!callback_result) { 2502 Py_DECREF(callback_result);
|