Home
last modified time | relevance | path

Searched refs:Any (Results 1 - 25 of 698) sorted by relevance

12345678910>>...28

/third_party/protobuf/src/google/protobuf/
H A Dany.pb.h58 class Any;
63 template<> PROTOBUF_EXPORT PROTOBUF_NAMESPACE_ID::Any* Arena::CreateMaybeMessage<PROTOBUF_NAMESPACE_ID::Any>(Arena*);
69 class PROTOBUF_EXPORT Any PROTOBUF_FINAL :
70 public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:google.protobuf.Any) */ {
72 inline Any() : Any(nullptr) {} in Any() function in PROTOBUF_FINAL
73 virtual ~Any();
75 Any(const Any
77 : Any() { Any() function in PROTOBUF_FINAL
[all...]
H A Dany.pb.cc20 ::PROTOBUF_NAMESPACE_ID::internal::ExplicitlyConstructed<Any> _instance;
28 new (ptr) PROTOBUF_NAMESPACE_ID::Any(); in InitDefaultsscc_info_Any_google_2fprotobuf_2fany_2eproto()
31 PROTOBUF_NAMESPACE_ID::Any::InitAsDefaultInstance(); in InitDefaultsscc_info_Any_google_2fprotobuf_2fany_2eproto()
43 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::Any, _internal_metadata_),
47 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::Any, type_url_),
48 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::Any, value_),
51 { 0, -1, sizeof(PROTOBUF_NAMESPACE_ID::Any)},
60 "obuf\"&\n\003Any\022\020\n\010type_url\030\001 \001(\t\022\r\n\005value\030\002"
85 void Any::InitAsDefaultInstance() { in InitAsDefaultInstance()
87 bool Any in InitAsDefaultInstance()
104 Any::Any(::PROTOBUF_NAMESPACE_ID::Arena* arena) Any() function in Any
111 Any::Any(const Any& from) Any() function in Any
[all...]
H A Dany_test.cc58 google::protobuf::Any any; in TEST()
67 // We can pack a Any message inside another Any message. in TEST()
70 google::protobuf::Any any; in TEST()
89 google::protobuf::Any any; in TEST()
109 google::protobuf::Any any; in TEST()
113 EXPECT_FALSE(any.Is<google::protobuf::Any>()); in TEST()
119 EXPECT_TRUE(message.any_value().Is<google::protobuf::Any>()); in TEST()
135 google::protobuf::Any src; in TEST()
140 google::protobuf::Any ds in TEST()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DAny.h1 //===- Any.h - Generic type erased holder of any type -----------*- C++ -*-===//
9 // This file provides Any, a non-template class modeled in the spirit of
26 class Any { class
54 Any() = default;
56 Any(const Any &Other) in Any() function in llvm::Any
59 // When T is Any or T is not copy-constructible we need to explicitly disable
66 llvm::negation<std::is_same<typename std::decay<T>::type, Any>>,
67 // We also disable this overload when an `Any` object can be
74 // going ahead and adopting it to work-around usage of `Any` wit
79 Any(T &&Value) { Any() function in llvm::Any
84 Any(Any &&Other) : Storage(std::move(Other.Storage)) {} Any() function in llvm::Any
[all...]
/third_party/jinja2/
H A Dsandbox.py20 F = t.TypeVar("F", bound=t.Callable[..., t.Any])
125 def is_internal_attribute(obj: t.Any, attr: str) -> bool:
162 def modifies_known_mutable(obj: t.Any, attr: str) -> bool:
203 default_binop_table: t.Dict[str, t.Callable[[t.Any, t.Any], t.Any]] = {
216 default_unop_table: t.Dict[str, t.Callable[[t.Any], t.Any]] = {
252 def __init__(self, *args: t.Any, **kwargs: t.Any)
[all...]
H A Dutils.py19 F = t.TypeVar("F", bound=t.Callable[..., t.Any])
22 missing: t.Any = type("MissingType", (), {"__repr__": lambda x: "missing"})()
95 def is_undefined(obj: t.Any) -> bool:
112 def consume(iterable: t.Iterable[t.Any]) -> None:
131 def import_string(import_name: str, silent: bool = False) -> t.Any:
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:
430 self._mapping: t.Dict[t.Any, t.Any]
[all...]
H A 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, **kwarg
[all...]
H A Dfilters.py41 F = t.TypeVar("F", bound=t.Callable[..., t.Any])
58 postprocess: t.Optional[t.Callable[[t.Any], t.Any]] = None,
59 default: t.Optional[t.Any] = None,
60 ) -> t.Callable[[t.Any], t.Any]:
68 def attrgetter(item: t.Any) -> t.Any:
86 postprocess: t.Optional[t.Callable[[t.Any], t.Any]]
[all...]
H A 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)
[all...]
H A Druntime.py27 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]]
[all...]
H A 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:
64 ) -> t.Any:
98 def render(self, *args: t.Any, **kwargs: t.Any) -> t.Any:
114 async def render_async(self, *args: t.Any, **kwarg
[all...]
H A Dnodes.py20 _binop_to_func: t.Dict[str, t.Callable[[t.Any, t.Any], t.Any]] = {
30 _uaop_to_func: t.Dict[str, t.Callable[[t.Any], t.Any]] = {
36 _cmpop_to_func: t.Dict[str, t.Callable[[t.Any, t.Any], t.Any]] = {
84 def save(self) -> t.Mapping[str, t.Any]:
87 def revert(self, old: t.Mapping[str, t.Any])
[all...]
H A Didtracking.py43 self.loads: t.Dict[str, t.Any] = {}
46 def analyze_node(self, node: nodes.Node, **kwargs: t.Any) -> None:
59 def find_load(self, target: str) -> t.Optional[t.Any]:
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, **kwarg
[all...]
H A 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]
463 ) -> t.Union[t.Any, Undefined]:
480 def getattr(self, obj: t.Any, attribute: str) -> t.Any:
496 value: t.Any,
[all...]
/third_party/skia/src/sfnt/
H A DSkPanose.h18 Any = 0, member in SkPanose::FamilyType
29 Any = 0, member in SkPanose::Data::TextAndDisplay::SerifStyle
48 Any = 0, member in SkPanose::Data::TextAndDisplay::Weight
63 Any = 0, member in SkPanose::Data::TextAndDisplay::Proportion
76 Any = 0, member in SkPanose::Data::TextAndDisplay::Contrast
92 Any = 0, member in SkPanose::Data::TextAndDisplay::StrokeVariation
106 Any = 0, member in SkPanose::Data::TextAndDisplay::StrokeVariation
121 Any = 0, member in SkPanose::Data::TextAndDisplay::ArmStyle
136 Any = 0, member in SkPanose::Data::TextAndDisplay::Letterform
155 Any member in SkPanose::Data::TextAndDisplay::Midline
172 Any = 0, global() member in SkPanose::Data::TextAndDisplay::XHeight
185 Any = 0, global() member in SkPanose::Data::Script::ToolKind
198 Any = 0, global() member in SkPanose::Data::Script::Weight
213 Any = 0, global() member in SkPanose::Data::Script::Spacing
220 Any = 0, global() member in SkPanose::Data::Script::AspectRatio
230 Any = 0, global() member in SkPanose::Data::Script::Contrast
243 Any = 0, global() member in SkPanose::Data::Script::Topology
257 Any = 0, global() member in SkPanose::Data::Script::Form
274 Any = 0, global() member in SkPanose::Data::Script::Finials
291 Any = 0, global() member in SkPanose::Data::Script::XAscent
303 Any = 0, global() member in SkPanose::Data::Decorative::Class
319 Any = 0, global() member in SkPanose::Data::Decorative::Weight
334 Any = 0, global() member in SkPanose::Data::Decorative::Aspect
347 Any = 0, global() member in SkPanose::Data::Decorative::Contrast
364 Any = 0, global() member in SkPanose::Data::Decorative::SerifVariant
384 Any = 0, global() member in SkPanose::Data::Decorative::Treatment
395 Any = 0, global() member in SkPanose::Data::Decorative::Lining
407 Any = 0, global() member in SkPanose::Data::Decorative::Topology
426 Any = 0, global() member in SkPanose::Data::Decorative::RangeOfCharacters
437 Any = 0, global() member in SkPanose::Data::Pictoral::Kind
457 Any = 0, global() member in SkPanose::Data::Pictoral::Spacing
468 Any = 0, global() member in SkPanose::Data::Pictoral::AspectRatio94
481 Any = 0, global() member in SkPanose::Data::Pictoral::AspectRatio119
494 Any = 0, global() member in SkPanose::Data::Pictoral::AspectRatio157
507 Any = 0, global() member in SkPanose::Data::Pictoral::AspectRatio163
[all...]
/third_party/protobuf/csharp/src/Google.Protobuf.Test/WellKnownTypes/
H A DAnyTest.cs44 var any = Any.Pack(message); in Pack()
53 var any = Any.Pack(message, "foo.bar/baz"); in Pack_WithCustomPrefix()
62 var any = Any.Pack(message, "foo.bar/baz/"); in Pack_WithCustomPrefixTrailingSlash()
71 var any = Any.Pack(message); in Unpack_WrongType()
79 var any = Any.Pack(message); in Unpack_Success()
88 var any = Any.Pack(message, "foo.bar/baz"); in Unpack_CustomPrefix_Success()
97 var any = Any.Pack(message); in TryUnpack_WrongType()
106 var any = Any.Pack(message); in TryUnpack_RightType()
115 var any = Any.Pack(message); in ToString_WithValues()
126 var any = new Any { TypeUr in GetTypeName()
[all...]
/third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
H A DAny.cs35 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.WellKnownTypes.Any), global::Google.Protobuf.WellKnownTypes.Any.Parser, new[]{ "TypeUrl", "Value" }, null, null, null, null) in AnyReflection()
43 /// `Any` contains an arbitrary serialized protocol buffer message along with a
46 /// Protobuf library provides support to pack/unpack Any values in the form
47 /// of utility functions or additional generated methods of the Any type.
52 /// Any any;
62 /// Any any = Any.pack(foo);
71 /// any = Any()
96 /// The JSON representation of an `Any` valu
122 public sealed partial class Any : pb::IMessage<Any> global() class
143 public Any() { Any() method in Google.Protobuf.WellKnownTypes.Any
150 public Any(Any other) : this() { Any() method in Google.Protobuf.WellKnownTypes.Any
[all...]
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/WellKnownTypes/
H A DAnyTest.cs44 var any = Any.Pack(message); in Pack()
53 var any = Any.Pack(message, "foo.bar/baz"); in Pack_WithCustomPrefix()
62 var any = Any.Pack(message, "foo.bar/baz/"); in Pack_WithCustomPrefixTrailingSlash()
71 var any = Any.Pack(message); in Unpack_WrongType()
79 var any = Any.Pack(message); in Unpack_Success()
88 var any = Any.Pack(message, "foo.bar/baz"); in Unpack_CustomPrefix_Success()
97 var any = Any.Pack(message); in ToString_WithValues()
105 var any = new Any(); in ToString_Empty()
112 var message = new TestWellKnownTypes { AnyField = new Any() }; in ToString_MessageContainingAny()
/third_party/node/deps/v8/src/compiler/
H A Drepresentation-change.h42 static Truncation Any(IdentifyZeros identify_zeros = kDistinguishZeros) { in Any() function in v8::internal::compiler::final
190 return UseInfo(MachineRepresentation::kWord64, Truncation::Any()); in Word64()
193 return UseInfo(MachineType::PointerRepresentation(), Truncation::Any()); in Word()
199 return UseInfo(MachineRepresentation::kFloat32, Truncation::Any()); in Float32()
202 return UseInfo(MachineRepresentation::kFloat64, Truncation::Any()); in Float64()
210 return UseInfo(MachineRepresentation::kTagged, Truncation::Any()); in AnyTagged()
213 return UseInfo(MachineRepresentation::kTaggedSigned, Truncation::Any()); in TaggedSigned()
216 return UseInfo(MachineRepresentation::kTaggedPointer, Truncation::Any()); in TaggedPointer()
222 Truncation::Any(kIdentifyZeros), TypeCheckKind::kArrayIndex, in CheckedTaggedAsArrayIndex()
227 return UseInfo(MachineRepresentation::kTaggedPointer, Truncation::Any(), in CheckedHeapObjectAsTaggedPointer()
290 static UseInfo Any() { Any() function in v8::internal::compiler::UseInfo
[all...]
H A Dverifier.cc341 CheckTypeIs(node, Type::Any()); in Check()
418 CheckTypeIs(node, Type::Any()); in Check()
441 CheckTypeIs(node, Type::Any()); in Check()
454 CheckTypeIs(node, Type::Any()); in Check()
461 CheckTypeIs(node, Type::Any()); in Check()
470 CheckTypeIs(node, Type::Any()); in Check()
660 CheckValueInputIs(node, 0, Type::Any()); in Check()
661 CheckValueInputIs(node, 1, Type::Any()); in Check()
665 CheckValueInputIs(node, 0, Type::Any()); in Check()
730 CheckTypeIs(node, Type::Any()); in Check()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
H A DSIMachineFunctionInfo.cpp452 bool Any = false; in convertArgumentInfo() local
453 Any |= convertArg(AI.PrivateSegmentBuffer, ArgInfo.PrivateSegmentBuffer); in convertArgumentInfo()
454 Any |= convertArg(AI.DispatchPtr, ArgInfo.DispatchPtr); in convertArgumentInfo()
455 Any |= convertArg(AI.QueuePtr, ArgInfo.QueuePtr); in convertArgumentInfo()
456 Any |= convertArg(AI.KernargSegmentPtr, ArgInfo.KernargSegmentPtr); in convertArgumentInfo()
457 Any |= convertArg(AI.DispatchID, ArgInfo.DispatchID); in convertArgumentInfo()
458 Any |= convertArg(AI.FlatScratchInit, ArgInfo.FlatScratchInit); in convertArgumentInfo()
459 Any |= convertArg(AI.PrivateSegmentSize, ArgInfo.PrivateSegmentSize); in convertArgumentInfo()
460 Any |= convertArg(AI.WorkGroupIDX, ArgInfo.WorkGroupIDX); in convertArgumentInfo()
461 Any | in convertArgumentInfo()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
H A DPassInstrumentation.h38 /// - PassInstrumentation wraps address of IRUnit into llvm::Any and passes
56 #include "llvm/ADT/Any.h"
71 // to take them as constant pointers, wrapped with llvm::Any.
78 using BeforePassFunc = bool(StringRef, Any);
79 using AfterPassFunc = void(StringRef, Any);
81 using BeforeAnalysisFunc = void(StringRef, Any);
82 using AfterAnalysisFunc = void(StringRef, Any);
150 ShouldRun &= C(Pass.name(), llvm::Any(&IR)); in runBeforePass()
161 C(Pass.name(), llvm::Any(&IR)); in runAfterPass()
180 C(Analysis.name(), llvm::Any( in runBeforeAnalysis()
[all...]
/third_party/markupsafe/
H A D__init__.py68 cls, base: t.Any = "", encoding: t.Optional[str] = None, errors: str = "strict"
101 def __mod__(self, arg: t.Any) -> "te.Self":
200 def escape(cls, s: t.Any) -> "te.Self":
243 def format(self, *args: t.Any, **kwargs: t.Any) -> "te.Self":
248 self, map: t.Mapping[str, t.Any]
263 def __init__(self, escape: t.Callable[[t.Any], Markup]) -> None:
267 def format_field(self, value: t.Any, format_spec: str) -> str:
289 obj: _ListOrDict, iterable: t.Iterable[t.Any], escape: t.Callable[[t.Any], Marku
[all...]
/third_party/python/Tools/peg_generator/pegen/
H A Dtestutil.py9 from typing import IO, Any, Dict, Final, Optional, Type, cast namespace
33 ns: Dict[str, Any] = {}
38 def run_parser(file: IO[bytes], parser_class: Type[Parser], *, verbose: bool = False) -> Any:
50 ) -> Any:
64 def import_file(full_name: str, path: str) -> Any:
73 loader = cast(Any, spec.loader)
88 ) -> Any:
/third_party/python/Tools/scripts/
H A Dumarshal.py5 from typing import Any, Tuple namespace
52 def __init__(self, **kwds: Any):
93 self.refs: list[Any] = []
164 def r_ref_insert(self, obj: Any, idx: int, flag: int) -> Any:
169 def r_ref(self, obj: Any, flag: int) -> Any:
174 def r_object(self) -> Any:
181 def _r_object(self) -> Any:
188 def R_REF(obj: Any)
[all...]

Completed in 15 milliseconds

12345678910>>...28