Lines Matching full:async
2 """The code for async support. Importing this patches Jinja on supported
18 async def concat_async(async_gen):
21 async def collect():
22 async for event in async_gen:
29 async def generate_async(self, *args, **kwargs):
32 async for event in self.root_render_func(self.new_context(vars)):
55 async def render_async(self, *args, **kwargs):
57 raise RuntimeError("The environment was not created with async mode enabled.")
80 async def async_call(self):
97 async def async_invoke(self, arguments, autoescape):
113 async def get_default_module_async(self):
124 raise RuntimeError("Template module attribute is unavailable in async mode")
130 async def make_module_async(self, vars=None, shared=False, locals=None):
133 async for item in self.root_render_func(context):
172 async def auto_await(value):
178 async def auto_aiter(iterable):
180 async for item in iterable:
191 async def length(self):
198 iterable = [x async for x in self._iterator]
205 async def revindex0(self):
209 async def revindex(self):
212 async def _peek_next(self):
224 async def last(self):
228 async def nextitem(self):
239 async def __anext__(self):
252 async def make_async_loop_context(iterable, undefined, recurse=None, depth0=0):