Home
last modified time | relevance | path

Searched refs:Any (Results 1 – 25 of 1814) sorted by relevance

12345678910>>...73

/third_party/protobuf/csharp/src/
DGoogle.Protobuf.sln21 Debug|Any CPU = Debug|Any CPU
22 Release|Any CPU = Release|Any CPU
25 {AFB63919-1E05-43B4-802A-8FB8C9B2F463}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
26 {AFB63919-1E05-43B4-802A-8FB8C9B2F463}.Debug|Any CPU.Build.0 = Debug|Any CPU
27 {AFB63919-1E05-43B4-802A-8FB8C9B2F463}.Release|Any CPU.ActiveCfg = Release|Any CPU
28 {AFB63919-1E05-43B4-802A-8FB8C9B2F463}.Release|Any CPU.Build.0 = Release|Any CPU
29 {9B576380-726D-4142-8238-60A43AB0E35A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
30 {9B576380-726D-4142-8238-60A43AB0E35A}.Debug|Any CPU.Build.0 = Debug|Any CPU
31 {9B576380-726D-4142-8238-60A43AB0E35A}.Release|Any CPU.ActiveCfg = Release|Any CPU
32 {9B576380-726D-4142-8238-60A43AB0E35A}.Release|Any CPU.Build.0 = Release|Any CPU
[all …]
/third_party/protobuf/src/google/protobuf/
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)},
85 void Any::InitAsDefaultInstance() { in InitAsDefaultInstance()
87 bool Any::GetAnyFieldDescriptors( in GetAnyFieldDescriptors()
94 bool Any::ParseAnyTypeUrl(const string& type_url, in ParseAnyTypeUrl()
[all …]
Dany.pb.h58 class Any; variable
63 …mplate<> PROTOBUF_EXPORT PROTOBUF_NAMESPACE_ID::Any* Arena::CreateMaybeMessage<PROTOBUF_NAMESPACE_…
69 class PROTOBUF_EXPORT Any PROTOBUF_FINAL :
72 inline Any() : Any(nullptr) {} in Any() function
73 virtual ~Any();
75 Any(const Any& from);
76 Any(Any&& from) noexcept in Any() function
77 : Any() { in Any()
81 inline Any& operator=(const Any& from) {
85 inline Any& operator=(Any&& from) noexcept {
[all …]
Dany_test.cc58 google::protobuf::Any any; 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 dst(std::move(src)); in TEST()
151 google::protobuf::Any src; in TEST()
156 google::protobuf::Any dst; in TEST()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DAny.h26 class Any {
54 Any() = default;
56 Any(const Any &Other) in Any() function
66 llvm::negation<std::is_same<typename std::decay<T>::type, Any>>,
76 llvm::negation<std::is_convertible<Any, typename std::decay<T>::type>>,
79 Any(T &&Value) { in Any() function
84 Any(Any &&Other) : Storage(std::move(Other.Storage)) {} in Any() function
86 Any &swap(Any &Other) { in swap()
91 Any &operator=(Any Other) {
101 template <class T> friend T any_cast(const Any &Value);
[all …]
/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/jinja2/
Dsandbox.py20 F = t.TypeVar("F", bound=t.Callable[..., t.Any])
125 def is_internal_attribute(obj: t.Any, attr: str) -> bool: argument
162 def modifies_known_mutable(obj: t.Any, attr: str) -> bool: argument
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) -> None: argument
258 def is_safe_attribute(self, obj: t.Any, attr: str, value: t.Any) -> bool: argument
267 def is_safe_callable(self, obj: t.Any) -> bool: argument
279 self, context: Context, operator: str, left: t.Any, right: t.Any argument
280 ) -> t.Any:
[all …]
Dfilters.py41 F = t.TypeVar("F", bound=t.Callable[..., t.Any])
58 postprocess: t.Optional[t.Callable[[t.Any], t.Any]] = None, argument
59 default: t.Optional[t.Any] = None, argument
60 ) -> t.Callable[[t.Any], t.Any]:
68 def attrgetter(item: t.Any) -> t.Any: argument
86 postprocess: t.Optional[t.Callable[[t.Any], t.Any]] = None, argument
87 ) -> t.Callable[[t.Any], t.List[t.Any]]:
105 def attrgetter(item: t.Any) -> t.List[t.Any]: argument
145 value: t.Union[str, t.Mapping[str, t.Any], t.Iterable[t.Tuple[str, t.Any]]] argument
166 items: t.Iterable[t.Tuple[str, t.Any]] = value.items()
[all …]
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: argument
112 def consume(iterable: t.Iterable[t.Any]) -> None: argument
131 def import_string(import_name: str, silent: bool = False) -> t.Any:
165 def object_type_repr(obj: t.Any) -> str: argument
183 def pformat(obj: t.Any) -> str: argument
397 def url_quote(obj: t.Any, charset: str = "utf-8", for_qs: bool = False) -> str: argument
430 self._mapping: t.Dict[t.Any, t.Any] = {}
442 def __getstate__(self) -> t.Mapping[str, t.Any]:
[all …]
Dtests.py29 def test_defined(value: t.Any) -> bool: argument
46 def test_undefined(value: t.Any) -> bool: argument
91 def test_none(value: t.Any) -> bool: argument
96 def test_boolean(value: t.Any) -> bool: argument
104 def test_false(value: t.Any) -> bool: argument
112 def test_true(value: t.Any) -> bool: argument
121 def test_integer(value: t.Any) -> bool: argument
130 def test_float(value: t.Any) -> bool: argument
148 def test_string(value: t.Any) -> bool: argument
153 def test_mapping(value: t.Any) -> bool: argument
[all …]
Dvisitor.py12 def __call__(self, node: Node, *args: t.Any, **kwargs: t.Any) -> t.Any: argument
35 def visit(self, node: Node, *args: t.Any, **kwargs: t.Any) -> t.Any: argument
44 def generic_visit(self, node: Node, *args: t.Any, **kwargs: t.Any) -> t.Any: argument
61 def generic_visit(self, node: Node, *args: t.Any, **kwargs: t.Any) -> Node: argument
83 def visit_list(self, node: Node, *args: t.Any, **kwargs: t.Any) -> t.List[Node]: argument
Druntime.py27 F = t.TypeVar("F", bound=t.Callable[..., t.Any])
75 def markup_join(seq: t.Iterable[t.Any]) -> str: argument
86 def str_join(seq: t.Iterable[t.Any]) -> str: argument
95 vars: t.Optional[t.Dict[str, t.Any]] = None, argument
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], argument
169 globals: t.Optional[t.MutableMapping[str, t.Any]] = None, argument
[all …]
Dnativetypes.py16 def native_concat(values: t.Iterable[t.Any]) -> t.Optional[t.Any]: argument
56 def _default_finalize(value: t.Any) -> t.Any: argument
59 def _output_const_repr(self, group: t.Iterable[t.Any]) -> str: argument
64 ) -> t.Any:
98 def render(self, *args: t.Any, **kwargs: t.Any) -> t.Any: argument
114 async def render_async(self, *args: t.Any, **kwargs: t.Any) -> t.Any: argument
Didtracking.py43 self.loads: t.Dict[str, t.Any] = {}
46 def analyze_node(self, node: nodes.Node, **kwargs: t.Any) -> None: argument
59 def find_load(self, target: str) -> t.Optional[t.Any]:
178 def _simple_visit(self, node: nodes.Node, **kwargs: t.Any) -> None: argument
190 def visit_AssignBlock(self, node: nodes.AssignBlock, **kwargs: t.Any) -> None: argument
194 def visit_CallBlock(self, node: nodes.CallBlock, **kwargs: t.Any) -> None: argument
198 def visit_OverlayScope(self, node: nodes.OverlayScope, **kwargs: t.Any) -> None: argument
203 self, node: nodes.For, for_branch: str = "body", **kwargs: t.Any argument
222 def visit_With(self, node: nodes.With, **kwargs: t.Any) -> None: argument
228 def generic_visit(self, node: nodes.Node, *args: t.Any, **kwargs: t.Any) -> None: argument
[all …]
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]) -> None: argument
127 def __init__(self, *fields: t.Any, **attributes: t.Any) -> None: argument
149 ) -> t.Iterator[t.Tuple[str, t.Any]]:
238 def __eq__(self, other: t.Any) -> bool: argument
251 def _dump(node: t.Union[Node, t.Any]) -> None: argument
470 def as_const(self, eval_ctx: t.Optional[EvalContext] = None) -> t.Any:
[all …]
Denvironment.py67 def get_spontaneous_environment(cls: t.Type[_env_bound], *args: t.Any) -> _env_bound: argument
309 finalize: t.Optional[t.Callable[..., t.Any]] = None, argument
375 def extend(self, **attributes: t.Any) -> None: argument
401 finalize: t.Optional[t.Callable[..., t.Any]] = missing, argument
462 self, obj: t.Any, argument: t.Union[str, t.Any] argument
463 ) -> t.Union[t.Any, Undefined]:
480 def getattr(self, obj: t.Any, attribute: str) -> t.Any: argument
496 value: t.Any, argument
497 args: t.Optional[t.Sequence[t.Any]], argument
498 kwargs: t.Optional[t.Mapping[str, t.Any]],
[all …]
/third_party/lzma/CS/7zip/Compress/LzmaAlone/
DLzmaAlone.sln8 Debug|Any CPU = Debug|Any CPU
9 Release|Any CPU = Release|Any CPU
12 {CE33DF18-F9C8-4D6F-9057-DBB4DB96E973}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
13 {CE33DF18-F9C8-4D6F-9057-DBB4DB96E973}.Debug|Any CPU.Build.0 = Debug|Any CPU
14 {CE33DF18-F9C8-4D6F-9057-DBB4DB96E973}.Release|Any CPU.ActiveCfg = Release|Any CPU
15 {CE33DF18-F9C8-4D6F-9057-DBB4DB96E973}.Release|Any CPU.Build.0 = Release|Any CPU
/third_party/protobuf/csharp/src/Google.Protobuf.Test/WellKnownTypes/
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 { TypeUrl = typeUrl }; in GetTypeName()
[all …]
/third_party/openh264/test/build/windowsphone/codec_ut/
DCodec_UT.sln12 Debug|Any CPU = Debug|Any CPU
16 Release|Any CPU = Release|Any CPU
22 {37167E8C-FB5E-4000-B00B-99AF2E01D9B7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
23 {37167E8C-FB5E-4000-B00B-99AF2E01D9B7}.Debug|Any CPU.Build.0 = Debug|Any CPU
24 {37167E8C-FB5E-4000-B00B-99AF2E01D9B7}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
34 {37167E8C-FB5E-4000-B00B-99AF2E01D9B7}.Release|Any CPU.ActiveCfg = Release|Any CPU
35 {37167E8C-FB5E-4000-B00B-99AF2E01D9B7}.Release|Any CPU.Build.0 = Release|Any CPU
36 {37167E8C-FB5E-4000-B00B-99AF2E01D9B7}.Release|Any CPU.Deploy.0 = Release|Any CPU
46 {42F6EC7E-6271-448C-9DF6-1C3D33AC2611}.Debug|Any CPU.ActiveCfg = Debug|Win32
53 {42F6EC7E-6271-448C-9DF6-1C3D33AC2611}.Release|Any CPU.ActiveCfg = Release|Win32
/third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
DAny.cs35 …eInfo(typeof(global::Google.Protobuf.WellKnownTypes.Any), global::Google.Protobuf.WellKnownTypes.A… in AnyReflection()
122 public sealed partial class Any : pb::IMessage<Any> class
127 …private static readonly pb::MessageParser<Any> _parser = new pb::MessageParser<Any>(() => new Any(…
130 public static pb::MessageParser<Any> Parser { get { return _parser; } }
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
157 public Any Clone() { in Clone()
158 return new Any(this); in Clone()
217 return Equals(other as Any); in Equals()
221 public bool Equals(Any other) { in Equals()
[all …]
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/WellKnownTypes/
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/openh264/codec/build/windowsphone/all/
DCodecApp.sln12 Debug|Any CPU = Debug|Any CPU
17 Release|Any CPU = Release|Any CPU
24 {5424CF29-908E-417E-93F3-F1CD81E5372C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
25 {5424CF29-908E-417E-93F3-F1CD81E5372C}.Debug|Any CPU.Build.0 = Debug|Any CPU
26 {5424CF29-908E-417E-93F3-F1CD81E5372C}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
39 {5424CF29-908E-417E-93F3-F1CD81E5372C}.Release|Any CPU.ActiveCfg = Release|Any CPU
40 {5424CF29-908E-417E-93F3-F1CD81E5372C}.Release|Any CPU.Build.0 = Release|Any CPU
41 {5424CF29-908E-417E-93F3-F1CD81E5372C}.Release|Any CPU.Deploy.0 = Release|Any CPU
54 {FE5BF241-F4EA-4B94-B36A-23511E5908EC}.Debug|Any CPU.ActiveCfg = Debug|Win32
63 {FE5BF241-F4EA-4B94-B36A-23511E5908EC}.Release|Any CPU.ActiveCfg = Release|Win32
/third_party/node/deps/v8/src/compiler/
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 …]
Drepresentation-change.h42 static Truncation Any(IdentifyZeros identify_zeros = kDistinguishZeros) {
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()
[all …]
/third_party/markupsafe/
D__init__.py24 def wrapped(self: "Markup", *args: t.Any, **kwargs: t.Any) -> "Markup": argument
71 cls, base: t.Any = "", encoding: t.Optional[str] = None, errors: str = "strict" argument
104 def __mod__(self, arg: t.Any) -> "Markup": argument
169 def escape(cls, s: t.Any) -> "Markup": argument
212 def format(self, *args: t.Any, **kwargs: t.Any) -> "Markup": argument
226 def __init__(self, escape: t.Callable[[t.Any], Markup]) -> None: argument
230 def format_field(self, value: t.Any, format_spec: str) -> str: argument
252 obj: _ListOrDict, iterable: t.Iterable[t.Any], escape: t.Callable[[t.Any], Markup] argument
267 def __init__(self, obj: t.Any, escape: t.Callable[[t.Any], Markup]) -> None: argument
271 def __getitem__(self, item: t.Any) -> "_MarkupEscapeHelper": argument

12345678910>>...73