Home
last modified time | relevance | path

Searched refs:callback_result (Results 1 – 6 of 6) sorted by relevance

/external/v8/src/
Dfutex-emulation.cc133 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/
Dtest_futures.py539 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/
Dtest_concurrent_futures.py986 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/
Dpexpect.py240 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/
Dbackend_test.py1668 self.callback_result = 0
1672 self.callback_result = result
1690 self.assertEqual(callback.callback_result, 200)
/external/tensorflow/tensorflow/python/eager/
Dpywrap_tfe_src.cc2497 PyObject* callback_result = local
2499 if (!callback_result) {
2502 Py_DECREF(callback_result);