Lines Matching refs:Any
27 F = t.TypeVar("F", bound=t.Callable[..., t.Any])
75 def markup_join(seq: t.Iterable[t.Any]) -> str:
86 def str_join(seq: t.Iterable[t.Any]) -> str:
95 vars: t.Optional[t.Dict[str, t.Any]] = None,
97 globals: t.Optional[t.MutableMapping[str, t.Any]] = None,
98 locals: t.Optional[t.Mapping[str, t.Any]] = None,
126 def __getitem__(self, name: str) -> t.Any:
136 def f_all(self: "Context") -> t.Any:
166 parent: t.Dict[str, t.Any],
169 globals: t.Optional[t.MutableMapping[str, t.Any]] = None,
172 self.vars: t.Dict[str, t.Any] = {}
198 def get(self, key: str, default: t.Any = None) -> t.Any:
210 def resolve(self, key: str) -> t.Union[t.Any, "Undefined"]:
227 def resolve_or_missing(self, key: str) -> t.Any:
245 def get_exported(self) -> t.Dict[str, t.Any]:
249 def get_all(self) -> t.Dict[str, t.Any]:
262 __self, __obj: t.Callable, *args: t.Any, **kwargs: t.Any # noqa: B902
263 ) -> t.Union[t.Any, "Undefined"]:
305 def derived(self, locals: t.Optional[t.Dict[str, t.Any]] = None) -> "Context":
324 def __getitem__(self, key: str) -> t.Any:
396 _after: t.Any = missing
397 _current: t.Any = missing
398 _before: t.Any = missing
399 _last_changed_value: t.Any = missing
480 def _peek_next(self) -> t.Any:
503 def previtem(self) -> t.Union[t.Any, "Undefined"]:
513 def nextitem(self) -> t.Union[t.Any, "Undefined"]:
539 def changed(self, *value: t.Any) -> bool:
554 def __next__(self) -> t.Tuple[t.Any, "LoopContext"]:
585 _iterator: t.AsyncIterator[t.Any] # type: ignore
615 async def _peek_next(self) -> t.Any:
631 async def nextitem(self) -> t.Union[t.Any, "Undefined"]:
642 async def __anext__(self) -> t.Tuple[t.Any, "AsyncLoopContext"]:
689 def __call__(self, *args: t.Any, **kwargs: t.Any) -> str:
765 async def _async_invoke(self, arguments: t.List[t.Any], autoescape: bool) -> str:
773 def _invoke(self, arguments: t.List[t.Any], autoescape: bool) -> str:
814 obj: t.Any = missing,
847 self, *args: t.Any, **kwargs: t.Any
855 def __getattr__(self, name: str) -> t.Any:
872 def __eq__(self, other: t.Any) -> bool:
875 def __ne__(self, other: t.Any) -> bool:
887 def __iter__(self) -> t.Iterator[t.Any]:
890 async def __aiter__(self) -> t.AsyncIterator[t.Any]:
936 self, *args: t.Any, **kwargs: t.Any
948 def __iter__(self) -> t.Iterator[t.Any]: