Home
last modified time | relevance | path

Searched defs:Any (Results 1 – 25 of 78) sorted by relevance

1234

/third_party/jinja2/
Dtests.py29 def test_defined(value: t.Any) -> bool:
46 def test_undefined(value: t.Any) -> bool:
91 def test_none(value: t.Any) -> bool:
96 def test_boolean(value: t.Any) -> bool:
104 def test_false(value: t.Any) -> bool:
112 def test_true(value: t.Any) -> bool:
121 def test_integer(value: t.Any) -> bool:
130 def test_float(value: t.Any) -> bool:
148 def test_string(value: t.Any) -> bool:
153 def test_mapping(value: t.Any) -> bool:
[all …]
Dsandbox.py125 def is_internal_attribute(obj: t.Any, attr: str) -> bool:
162 def modifies_known_mutable(obj: t.Any, attr: str) -> bool:
252 def __init__(self, *args: t.Any, **kwargs: t.Any) -> None:
258 def is_safe_attribute(self, obj: t.Any, attr: str, value: t.Any) -> bool:
267 def is_safe_callable(self, obj: t.Any) -> bool:
279 self, context: Context, operator: str, left: t.Any, right: t.Any
289 def call_unop(self, context: Context, operator: str, arg: t.Any) -> t.Any:
299 self, obj: t.Any, argument: t.Union[str, t.Any]
321 def getattr(self, obj: t.Any, attribute: str) -> t.Union[t.Any, Undefined]:
338 def unsafe_undefined(self, obj: t.Any, attribute: str) -> Undefined:
[all …]
Dvisitor.py12 def __call__(self, node: Node, *args: t.Any, **kwargs: t.Any) -> t.Any:
35 def visit(self, node: Node, *args: t.Any, **kwargs: t.Any) -> t.Any:
44 def generic_visit(self, node: Node, *args: t.Any, **kwargs: t.Any) -> t.Any:
61 def generic_visit(self, node: Node, *args: t.Any, **kwargs: t.Any) -> Node:
83 def visit_list(self, node: Node, *args: t.Any, **kwargs: t.Any) -> t.List[Node]:
Dfilters.py58 postprocess: t.Optional[t.Callable[[t.Any], t.Any]] = None,
59 default: t.Optional[t.Any] = None,
68 def attrgetter(item: t.Any) -> t.Any:
86 postprocess: t.Optional[t.Callable[[t.Any], t.Any]] = None,
105 def attrgetter(item: t.Any) -> t.List[t.Any]:
145 value: t.Union[str, t.Mapping[str, t.Any], t.Iterable[t.Tuple[str, t.Any]]]
256 eval_ctx: "EvalContext", d: t.Mapping[str, t.Any], autospace: bool = True
359 def sort_func(item: t.Tuple[t.Any, t.Any]) -> t.Any:
710 def do_pprint(value: t.Any) -> str:
958 def do_int(value: t.Any, default: int = 0, base: int = 10) -> int:
[all …]
Didtracking.py46 def analyze_node(self, node: nodes.Node, **kwargs: t.Any) -> None:
178 def _simple_visit(self, node: nodes.Node, **kwargs: t.Any) -> None:
190 def visit_AssignBlock(self, node: nodes.AssignBlock, **kwargs: t.Any) -> None:
194 def visit_CallBlock(self, node: nodes.CallBlock, **kwargs: t.Any) -> None:
198 def visit_OverlayScope(self, node: nodes.OverlayScope, **kwargs: t.Any) -> None:
203 self, node: nodes.For, for_branch: str = "body", **kwargs: t.Any
222 def visit_With(self, node: nodes.With, **kwargs: t.Any) -> None:
228 def generic_visit(self, node: nodes.Node, *args: t.Any, **kwargs: t.Any) -> None:
239 self, node: nodes.Name, store_as_param: bool = False, **kwargs: t.Any
249 def visit_NSRef(self, node: nodes.NSRef, **kwargs: t.Any) -> None:
[all …]
Dutils.py95 def is_undefined(obj: t.Any) -> bool:
112 def consume(iterable: t.Iterable[t.Any]) -> None:
165 def object_type_repr(obj: t.Any) -> str:
183 def pformat(obj: t.Any) -> str:
397 def url_quote(obj: t.Any, charset: str = "utf-8", for_qs: bool = False) -> str:
449 def __setstate__(self, d: t.Mapping[str, t.Any]) -> None:
463 def get(self, key: t.Any, default: t.Any = None) -> t.Any:
470 def setdefault(self, key: t.Any, default: t.Any = None) -> t.Any:
486 def __contains__(self, key: t.Any) -> bool:
497 def __getitem__(self, key: t.Any) -> t.Any:
[all …]
Dnativetypes.py16 def native_concat(values: t.Iterable[t.Any]) -> t.Optional[t.Any]:
56 def _default_finalize(value: t.Any) -> t.Any:
59 def _output_const_repr(self, group: t.Iterable[t.Any]) -> str:
98 def render(self, *args: t.Any, **kwargs: t.Any) -> t.Any:
114 async def render_async(self, *args: t.Any, **kwargs: t.Any) -> t.Any:
Denvironment.py67 def get_spontaneous_environment(cls: t.Type[_env_bound], *args: t.Any) -> _env_bound:
309 finalize: t.Optional[t.Callable[..., t.Any]] = None,
375 def extend(self, **attributes: t.Any) -> None:
401 finalize: t.Optional[t.Callable[..., t.Any]] = missing,
462 self, obj: t.Any, argument: t.Union[str, t.Any]
480 def getattr(self, obj: t.Any, attribute: str) -> t.Any:
496 value: t.Any,
497 args: t.Optional[t.Sequence[t.Any]],
550 value: t.Any,
551 args: t.Optional[t.Sequence[t.Any]] = None,
[all …]
Druntime.py75 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,
166 parent: t.Dict[str, t.Any],
169 globals: t.Optional[t.MutableMapping[str, t.Any]] = None,
198 def get(self, key: str, default: t.Any = None) -> t.Any:
262 __self, __obj: t.Callable, *args: t.Any, **kwargs: t.Any # noqa: B902
305 def derived(self, locals: t.Optional[t.Dict[str, t.Any]] = None) -> "Context":
539 def changed(self, *value: t.Any) -> bool:
689 def __call__(self, *args: t.Any, **kwargs: t.Any) -> str:
[all …]
Doptimizer.py31 self, node: nodes.Node, *args: t.Any, **kwargs: t.Any
Dasync_utils.py19 def is_async(args: t.Any) -> bool:
24 def is_async(args: t.Any) -> bool:
Dext.py165 __context: Context, *args: t.Any, **kwargs: t.Any
172 def gettext(__context: Context, __string: str, **variables: t.Any) -> str:
191 **variables: t.Any,
206 __context: Context, __string_ctx: str, __string: str, **variables: t.Any
230 **variables: t.Any,
767 options: t.Dict[str, t.Any],
/third_party/markupsafe/
D__init__.py24 def wrapped(self: "Markup", *args: t.Any, **kwargs: t.Any) -> "Markup":
71 cls, base: t.Any = "", encoding: t.Optional[str] = None, errors: str = "strict"
104 def __mod__(self, arg: t.Any) -> "Markup":
169 def escape(cls, s: t.Any) -> "Markup":
212 def format(self, *args: t.Any, **kwargs: t.Any) -> "Markup":
226 def __init__(self, escape: t.Callable[[t.Any], Markup]) -> None:
230 def format_field(self, value: t.Any, format_spec: str) -> str:
252 obj: _ListOrDict, iterable: t.Iterable[t.Any], escape: t.Callable[[t.Any], Markup]
267 def __init__(self, obj: t.Any, escape: t.Callable[[t.Any], Markup]) -> None:
271 def __getitem__(self, item: t.Any) -> "_MarkupEscapeHelper":
D_native.py6 def escape(s: t.Any) -> Markup:
30 def escape_silent(s: t.Optional[t.Any]) -> Markup:
46 def soft_str(s: t.Any) -> str:
/third_party/skia/src/sfnt/
DSkPanose.h18 Any = 0, enumerator
29 Any = 0, enumerator
48 Any = 0, enumerator
63 Any = 0, enumerator
76 Any = 0, enumerator
92 Any = 0, enumerator
106 Any = 0, enumerator
121 Any = 0, enumerator
136 Any = 0, enumerator
155 Any = 0, enumerator
[all …]
/third_party/typescript/tests/baselines/reference/
Dparser509630.js5 class Any extends Type { field in Type
31 var Any = /** @class */ (function (_super) { class
33 function Any() { class in Any
/third_party/python/Tools/peg_generator/scripts/
Ddownload_pypi_packages.py37 def download_package_code(name: str, package_json: Dict[Any, Any]) -> None: argument
Dgrammar_grapher.py55 def references_for_item(item: Any) -> List[Any]:
/third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
DAny.cs122 public sealed partial class Any : pb::IMessage<Any> class
143 public Any() { in Any() method in Google.Protobuf.WellKnownTypes.Any
150 public Any(Any other) : this() { in Any() method in Google.Protobuf.WellKnownTypes.Any
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DAny.h56 Any(const Any &Other) in Any() function
79 Any(T &&Value) { in Any() function
84 Any(Any &&Other) : Storage(std::move(Other.Storage)) {} in Any() function
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DPassTimingInfo.cpp267 [this](StringRef P, Any) { return this->runBeforePass(P); }); in registerCallbacks() argument
269 [this](StringRef P, Any) { this->runAfterPass(P); }); in registerCallbacks() argument
273 [this](StringRef P, Any) { this->runBeforePass(P); }); in registerCallbacks() argument
275 [this](StringRef P, Any) { this->runAfterPass(P); }); in registerCallbacks() argument
/third_party/node/deps/v8/src/objects/
Dfield-type.cc19 FieldType FieldType::Any() { return FieldType(Smi::FromInt(1).ptr()); } in Any() function in v8::internal::FieldType
27 Handle<FieldType> FieldType::Any(Isolate* isolate) { in Any() function in v8::internal::FieldType
/third_party/typescript/tests/cases/conformance/parser/ecmascript5/RegressionTests/
Dparser509630.ts4 class Any extends Type { class
/third_party/protobuf/php/src/GPBMetadata/Google/Protobuf/
DAny.php7 class Any class
/third_party/protobuf/src/google/protobuf/
Dany.proto122 message Any { message

1234