/external/python/cpython3/Lib/test/test_asyncio/ |
D | test_tasks.py | 83 def new_task(self, loop, coro): argument 201 def __init__(self, coro): argument 207 def coro(): function 669 def coro(): function 779 def coro(s): function 1163 def coro(s): function 1266 def coro(): function 1410 def coro(): function 1447 def coro(): function 1462 def coro(loop): function [all …]
|
D | test_pep492.py | 185 async def coro(): function
|
D | test_base_events.py | 760 def coro(): function 763 factory = lambda loop, coro: MyTask(coro, loop=loop) argument 813 def create_task(self, coro): argument
|
D | test_futures.py | 306 def coro(): function
|
/external/python/cpython3/Lib/asyncio/ |
D | coroutines.py | 209 def coro(*args, **kw): function 273 def _format_coroutine(coro): argument
|
D | tasks.py | 68 def __init__(self, coro, *, loop=None): argument 692 def run_coroutine_threadsafe(coro, loop): argument
|
D | events.py | 280 def create_task(self, coro): argument
|
D | base_events.py | 277 def create_task(self, coro): argument
|
/external/python/cpython3/Lib/test/ |
D | test_coroutines.py | 28 def run_async(coro): argument 42 def run_async__await__(coro): argument 689 async def coro(): function 705 async def reader(coro): argument 726 async def read(coro): argument 1026 async def coro(): function 1057 def __init__(self, coro): argument 1096 async def waiter(coro): argument 2067 def wrapper(coro): argument 2068 async def wrap(coro): argument
|
D | test_asyncgen.py | 24 def run_until_complete(coro): argument
|
D | test_collections.py | 517 def coro(): function 567 def coro(): function 1011 def run_async(coro): argument
|
D | test_types.py | 1513 def coro(): function
|
/external/python/cpython3/Objects/ |
D | genobject.c | 928 coro_repr(PyCoroObject *coro) in coro_repr() 935 coro_await(PyCoroObject *coro) in coro_await() 948 coro_get_cr_await(PyCoroObject *coro) in coro_get_cr_await()
|
/external/python/cpython3/Modules/clinic/ |
D | _asynciomodule.c.h | 246 PyObject *coro; in _asyncio_Task___init__() local
|
/external/clang/test/SemaCXX/ |
D | coroutines.cpp | 29 template<typename Promise> struct coro {}; struct
|
/external/python/cpython3/Modules/ |
D | _asynciomodule.c | 1309 _asyncio_Task___init___impl(TaskObj *self, PyObject *coro, PyObject *loop) in _asyncio_Task___init___impl() 1922 PyObject *coro = task->task_coro; in task_step_impl() local
|