Home
last modified time | relevance | path

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

/external/python/jinja/src/jinja2/
Dasyncsupport.py197 self._length = len(iterable) + self.index + (self._after is not missing)
210 if self._after is not missing:
211 return self._after
214 self._after = await self._iterator.__anext__()
216 self._after = missing
218 return self._after
237 if self._after is not missing:
238 rv = self._after
239 self._after = missing
Druntime.py375 _after = missing variable in LoopContext
415 self._length = len(iterable) + self.index + (self._after is not missing)
459 if self._after is not missing:
460 return self._after
462 self._after = next(self._iterator, missing)
463 return self._after
528 if self._after is not missing:
529 rv = self._after
530 self._after = missing
/external/libchrome/third_party/jinja2/
Dasyncsupport.py196 self._after = after
222 if ctx._after is _last_iteration:
225 ctx._current = ctx._after
227 ctx._after = await ctx._async_iterator.__anext__()
229 ctx._after = _last_iteration
Druntime.py356 _after = _last_iteration variable in LoopContextBase
380 last = property(lambda x: x._after is _last_iteration)
394 if self._after is _last_iteration:
396 return self._after
435 self._after = self._safe_next()
474 if ctx._after is _last_iteration:
477 ctx._current = ctx._after
478 ctx._after = ctx._safe_next()
/external/mesa3d/src/compiler/nir/
Dnir_control_flow.c372 nir_block **_before, nir_block **_after) in split_block_cursor() argument
410 if (_after) in split_block_cursor()
411 *_after = after; in split_block_cursor()
/external/llvm-project/llvm/test/Transforms/Coroutines/
Dcoro-spill-after-phi.ll1 ; Verifies that we insert spills of PHI instruction _after) all PHI Nodes