Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/
Dtypes.py34 async def _ag(): function
36 _ag = _ag() variable
37 AsyncGeneratorType = type(_ag)
65 del sys, _f, _g, _C, _c, _ag # Not for export
D_collections_abc.py66 async def _ag(): yield function
67 _ag = _ag() variable
68 async_generator = type(_ag)
69 del _ag
/external/python/cpython3/Lib/test/
Dtest_dis.py400 async def _ag(x): function
404 async for item in _ag(x):
614 agen_func_disas = self.get_disassembly(_ag) # Async generator function
615 agen_disas = self.get_disassembly(_ag(1)) # Async generator iterator
/external/llvm-project/llvm/unittests/Support/
DVirtualFileSystemTest.cpp2199 TempDir _ag(TestDirectory.path("a/g")); in TEST_F() local
2209 VFSWriter.addDirectoryMapping(_ag.path(), "//root/a/g"); in TEST_F()