Home
last modified time | relevance | path

Searched full:any (Results 1 – 25 of 27136) sorted by relevance

12345678910>>...1086

/external/icu/android_icu4j/src/main/tests/android/icu/extratest/
Dexpected_transliteration_id_list.txt2 Accents-Any
4 Any-Accents
5 Any-Publishing
271 Publishing-Any
521 Any-Null
522 Any-Remove
523 Any-Hex/Unicode
524 Any-Hex/Java
525 Any-Hex/C
526 Any-Hex/XML
[all …]
/external/icu/android_icu4j/testing/src/android/icu/extratest/
Dexpected_transliteration_id_list_release_1.txt2 Accents-Any
4 Any-Accents
5 Any-Publishing
261 Publishing-Any
510 Any-Null
511 Any-Remove
512 Any-Hex/Unicode
513 Any-Hex/Java
514 Any-Hex/C
515 Any-Hex/XML
[all …]
/external/grpc-grpc/src/csharp/
DGrpc.sln44 Debug|Any CPU = Debug|Any CPU
45 Release|Any CPU = Release|Any CPU
48 {BD878CB3-BDB4-46AB-84EF-C3B4729F56BC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
49 {BD878CB3-BDB4-46AB-84EF-C3B4729F56BC}.Debug|Any CPU.Build.0 = Debug|Any CPU
50 {BD878CB3-BDB4-46AB-84EF-C3B4729F56BC}.Release|Any CPU.ActiveCfg = Release|Any CPU
51 {BD878CB3-BDB4-46AB-84EF-C3B4729F56BC}.Release|Any CPU.Build.0 = Release|Any CPU
52 {2A16007A-5D67-4C53-BEC8-51E5064D18BF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
53 {2A16007A-5D67-4C53-BEC8-51E5064D18BF}.Debug|Any CPU.Build.0 = Debug|Any CPU
54 {2A16007A-5D67-4C53-BEC8-51E5064D18BF}.Release|Any CPU.ActiveCfg = Release|Any CPU
55 {2A16007A-5D67-4C53-BEC8-51E5064D18BF}.Release|Any CPU.Build.0 = Release|Any CPU
[all …]
/external/protobuf/csharp/src/
DGoogle.Protobuf.sln19 Debug|Any CPU = Debug|Any CPU
20 Release|Any CPU = Release|Any CPU
23 {AFB63919-1E05-43B4-802A-8FB8C9B2F463}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
24 {AFB63919-1E05-43B4-802A-8FB8C9B2F463}.Debug|Any CPU.Build.0 = Debug|Any CPU
25 {AFB63919-1E05-43B4-802A-8FB8C9B2F463}.Release|Any CPU.ActiveCfg = Release|Any CPU
26 {AFB63919-1E05-43B4-802A-8FB8C9B2F463}.Release|Any CPU.Build.0 = Release|Any CPU
27 {9B576380-726D-4142-8238-60A43AB0E35A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
28 {9B576380-726D-4142-8238-60A43AB0E35A}.Debug|Any CPU.Build.0 = Debug|Any CPU
29 {9B576380-726D-4142-8238-60A43AB0E35A}.Release|Any CPU.ActiveCfg = Release|Any CPU
30 {9B576380-726D-4142-8238-60A43AB0E35A}.Release|Any CPU.Build.0 = Release|Any CPU
[all …]
/external/libcxx/include/
Dany2 //===------------------------------ any -----------------------------------===//
15 any synopsis
25 class any
29 // 6.3.1 any construct/destruct
30 any() noexcept;
32 any(const any& other);
33 any(any&& other) noexcept;
36 any(ValueType&& value);
38 ~any();
40 // 6.3.2 any assignments
[all …]
/external/protobuf/csharp/src/Google.Protobuf.Test/WellKnownTypes/
DAnyTest.cs21 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
27 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
44 var any = Any.Pack(message); in Pack()
45 Assert.AreEqual("type.googleapis.com/protobuf_unittest3.TestAllTypes", any.TypeUrl); in Pack()
46 Assert.AreEqual(message.CalculateSize(), any.Value.Length); in Pack()
53 var any = Any.Pack(message, "foo.bar/baz"); in Pack_WithCustomPrefix()
54 Assert.AreEqual("foo.bar/baz/protobuf_unittest3.TestAllTypes", any.TypeUrl); in Pack_WithCustomPrefix()
55 Assert.AreEqual(message.CalculateSize(), any.Value.Length); in Pack_WithCustomPrefix()
[all …]
/external/openscreen/third_party/abseil/src/absl/types/
Dany.h12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 // any.h
20 // This header file define the `absl::any` type for holding a type-safe value
21 // of any type. The 'absl::any` type is useful for providing a way to hold
25 // `absl::any_cast()`. Note that when casting an `absl::any`, you must cast it
30 // auto a = absl::any(65);
35 // `absl::any` is a C++11 compatible version of the C++17 `std::any` abstraction
40 // other unspecified type. `absl::any` provides an "owning" version of `void *`
43 // Note: just as in the case of `void *`, use of `absl::any` (and its C++17
44 // version `std::any`) is a code smell indicating that your API might not be
[all …]
/external/webrtc/third_party/abseil-cpp/absl/types/
Dany.h12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 // any.h
20 // This header file define the `absl::any` type for holding a type-safe value
21 // of any type. The 'absl::any` type is useful for providing a way to hold
25 // `absl::any_cast()`. Note that when casting an `absl::any`, you must cast it
30 // auto a = absl::any(65);
35 // `absl::any` is a C++11 compatible version of the C++17 `std::any` abstraction
40 // other unspecified type. `absl::any` provides an "owning" version of `void *`
43 // Note: just as in the case of `void *`, use of `absl::any` (and its C++17
44 // version `std::any`) is a code smell indicating that your API might not be
[all …]
/external/abseil-cpp/absl/types/
Dany.h12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 // any.h
20 // This header file define the `absl::any` type for holding a type-safe value
21 // of any type. The 'absl::any` type is useful for providing a way to hold
25 // `absl::any_cast()`. Note that when casting an `absl::any`, you must cast it
30 // auto a = absl::any(65);
35 // `absl::any` is a C++11 compatible version of the C++17 `std::any` abstraction
40 // other unspecified type. `absl::any` provides an "owning" version of `void *`
43 // Note: just as in the case of `void *`, use of `absl::any` (and its C++17
44 // version `std::any`) is a code smell indicating that your API might not be
[all …]
/external/angle/third_party/abseil-cpp/absl/types/
Dany.h12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 // any.h
20 // This header file define the `absl::any` type for holding a type-safe value
21 // of any type. The 'absl::any` type is useful for providing a way to hold
25 // `absl::any_cast()`. Note that when casting an `absl::any`, you must cast it
30 // auto a = absl::any(65);
35 // `absl::any` is a C++11 compatible version of the C++17 `std::any` abstraction
40 // other unspecified type. `absl::any` provides an "owning" version of `void *`
43 // Note: just as in the case of `void *`, use of `absl::any` (and its C++17
44 // version `std::any`) is a code smell indicating that your API might not be
[all …]
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/types/
Dany.h12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 // any.h
20 // This header file define the `absl::any` type for holding a type-safe value
21 // of any type. The 'absl::any` type is useful for providing a way to hold
25 // `absl::any_cast()`. Note that when casting an `absl::any`, you must cast it
30 // auto a = absl::any(65);
35 // `absl::any` is a C++11 compatible version of the C++17 `std::any` abstraction
40 // other unspecified type. `absl::any` provides an "owning" version of `void *`
43 // Note: just as in the case of `void *`, use of `absl::any` (and its C++17
44 // version `std::any`) is a code smell indicating that your API might not be
[all …]
/external/libtextclassifier/abseil-cpp/absl/types/
Dany.h12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 // any.h
20 // This header file define the `absl::any` type for holding a type-safe value
21 // of any type. The 'absl::any` type is useful for providing a way to hold
25 // `absl::any_cast()`. Note that when casting an `absl::any`, you must cast it
30 // auto a = absl::any(65);
35 // `absl::any` is a C++11 compatible version of the C++17 `std::any` abstraction
40 // other unspecified type. `absl::any` provides an "owning" version of `void *`
43 // Note: just as in the case of `void *`, use of `absl::any` (and its C++17
44 // version `std::any`) is a code smell indicating that your API might not be
[all …]
/external/llvm/test/MC/Mips/
Dmodule-directive-bad.s6 # CHECK: :[[@LINE-1]]:13: error: .module directive must appear before any code
10 # CHECK-NOT: :[[@LINE-1]]:13: error: .module directive must appear before any code
14 # CHECK: :[[@LINE-1]]:13: error: .module directive must appear before any code
18 # CHECK-NOT: :[[@LINE-1]]:13: error: .module directive must appear before any code
22 # CHECK: :[[@LINE-1]]:13: error: .module directive must appear before any code
26 # CHECK-NOT: :[[@LINE-1]]:13: error: .module directive must appear before any code
30 # CHECK: :[[@LINE-1]]:13: error: .module directive must appear before any code
34 # CHECK-NOT: :[[@LINE-1]]:13: error: .module directive must appear before any code
38 # CHECK: :[[@LINE-1]]:13: error: .module directive must appear before any code
42 # CHECK-NOT: :[[@LINE-1]]:13: error: .module directive must appear before any code
[all …]
/external/protobuf/src/google/protobuf/
Dany_test.cc20 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
59 google::protobuf::Any any; in TEST() local
60 any.PackFrom(payload); in TEST()
64 EXPECT_FALSE(any.UnpackTo(&dest)); in TEST()
68 // We can pack a Any message inside another Any message. in TEST()
71 google::protobuf::Any any; in TEST() local
72 any.PackFrom(submessage); in TEST()
[all …]
Dany.pb.h2 // source: google/protobuf/any.proto
35 #include <google/protobuf/any.h>
59 class Any; variable
64 …mplate<> PROTOBUF_EXPORT PROTOBUF_NAMESPACE_ID::Any* Arena::CreateMaybeMessage<PROTOBUF_NAMESPACE_…
70 class PROTOBUF_EXPORT Any :
71 …OTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:google.protobuf.Any) */ {
73 Any();
74 virtual ~Any();
76 Any(const Any& from);
77 Any(Any&& from) noexcept in Any() function
[all …]
Dany.pb.cc2 // source: google/protobuf/any.proto
4 #include <google/protobuf/any.pb.h>
21 ::PROTOBUF_NAMESPACE_ID::internal::ExplicitlyConstructed<Any> _instance;
29 new (ptr) PROTOBUF_NAMESPACE_ID::Any(); in InitDefaultsscc_info_Any_google_2fprotobuf_2fany_2eproto()
32 PROTOBUF_NAMESPACE_ID::Any::InitAsDefaultInstance(); in InitDefaultsscc_info_Any_google_2fprotobuf_2fany_2eproto()
44 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::Any, _internal_metadata_),
48 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::Any, type_url_),
49 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::Any, value_),
52 { 0, -1, sizeof(PROTOBUF_NAMESPACE_ID::Any)},
60 "\n\031google/protobuf/any.proto\022\017google.prot"
[all …]
/external/llvm/bindings/ocaml/transforms/scalar_opts/
Dllvm_scalar_opts.ml11 : [< Llvm.PassManager.any ] Llvm.PassManager.t -> unit
14 : [< Llvm.PassManager.any ] Llvm.PassManager.t -> unit
17 : [< Llvm.PassManager.any ] Llvm.PassManager.t -> unit
20 : [< Llvm.PassManager.any ] Llvm.PassManager.t -> unit
23 : [< Llvm.PassManager.any ] Llvm.PassManager.t -> unit
26 : [< Llvm.PassManager.any ] Llvm.PassManager.t -> unit
29 : [< Llvm.PassManager.any ] Llvm.PassManager.t -> unit
32 : [< Llvm.PassManager.any ] Llvm.PassManager.t -> unit
35 : [< Llvm.PassManager.any ] Llvm.PassManager.t -> unit
38 : [< Llvm.PassManager.any ] Llvm.PassManager.t -> unit
[all …]
/external/libbrillo/brillo/
Dany.cc5 #include <brillo/any.h>
12 Any::Any() { in Any() function in brillo::Any
15 Any::Any(const Any& rhs) : data_buffer_(rhs.data_buffer_) { in Any() function in brillo::Any
19 Any::Any(Any&& rhs) : data_buffer_(std::move(rhs.data_buffer_)) { in Any() function in brillo::Any
22 Any::~Any() { in ~Any()
25 Any& Any::operator=(const Any& rhs) { in operator =()
31 Any& Any::operator=(Any&& rhs) { in operator =()
36 bool Any::operator==(const Any& rhs) const { in operator ==()
47 const char* Any::GetTypeTagInternal() const { in GetTypeTagInternal()
54 void Any::Swap(Any& other) { in Swap()
[all …]
Dany_test.cc11 #include <brillo/any.h>
14 using brillo::Any;
16 TEST(Any, Empty) { in TEST() argument
17 Any val; in TEST()
20 Any val2 = val; in TEST()
24 Any val3 = std::move(val); in TEST()
29 TEST(Any, SimpleTypes) { in TEST() argument
30 Any val(20); in TEST()
35 Any val2(3.1415926); in TEST()
41 Any val3(std::string("blah")); in TEST()
[all …]
Dany.h6 // The brillo::Any class can hold any C++ type, but both the setter and
8 // Note that C-style arrays when stored in Any are reduced to simple
9 // data pointers. Any will not copy a contents of the array.
11 // Any v(data); // stores const int*, effectively "Any v(&data[0]);"
13 // brillo::Any is a value type. Which means, the data is copied into it
14 // and Any owns it. The owned object (stored by value) will be destroyed
15 // when Any is cleared or reassigned. The contained value type must be
41 class BRILLO_EXPORT Any final {
43 Any(); // Do not inline to hide internal_details::Buffer from export table.
47 Any(const Any& rhs);
[all …]
/external/guice/core/test/com/google/inject/matcher/
DMatcherTest.java12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
22 import static com.google.inject.matcher.Matchers.any;
45 assertTrue(any().matches(null)); in testAny()
46 assertEquals("any()", any().toString()); in testAny()
47 assertEqualsBothWays(any(), any()); in testAny()
48 assertFalse(any().equals(not(any()))); in testAny()
52 assertFalse(not(any()).matches(null)); in testNot()
53 assertEquals("not(any())", not(any()).toString()); in testNot()
54 assertEqualsBothWays(not(any()), not(any())); in testNot()
55 assertFalse(not(any()).equals(any())); in testNot()
[all …]
/external/grpc-grpc/examples/csharp/RouteGuide/
DRouteGuide.sln14 Debug|Any CPU = Debug|Any CPU
15 Release|Any CPU = Release|Any CPU
18 {49954D9C-5F17-4662-96B2-73BE833DD81A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
19 {49954D9C-5F17-4662-96B2-73BE833DD81A}.Debug|Any CPU.Build.0 = Debug|Any CPU
20 {49954D9C-5F17-4662-96B2-73BE833DD81A}.Release|Any CPU.ActiveCfg = Release|Any CPU
21 {49954D9C-5F17-4662-96B2-73BE833DD81A}.Release|Any CPU.Build.0 = Release|Any CPU
22 {D47BE663-4DE3-4206-B7A8-EA3FA066DADC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
23 {D47BE663-4DE3-4206-B7A8-EA3FA066DADC}.Debug|Any CPU.Build.0 = Debug|Any CPU
24 {D47BE663-4DE3-4206-B7A8-EA3FA066DADC}.Release|Any CPU.ActiveCfg = Release|Any CPU
25 {D47BE663-4DE3-4206-B7A8-EA3FA066DADC}.Release|Any CPU.Build.0 = Release|Any CPU
[all …]
/external/grpc-grpc/examples/csharp/HelloworldLegacyCsproj/
DGreeter.sln14 Debug|Any CPU = Debug|Any CPU
15 Release|Any CPU = Release|Any CPU
18 {724DFC8C-4B57-4C3F-811C-0463BE2A2829}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
19 {724DFC8C-4B57-4C3F-811C-0463BE2A2829}.Debug|Any CPU.Build.0 = Debug|Any CPU
20 {724DFC8C-4B57-4C3F-811C-0463BE2A2829}.Release|Any CPU.ActiveCfg = Release|Any CPU
21 {724DFC8C-4B57-4C3F-811C-0463BE2A2829}.Release|Any CPU.Build.0 = Release|Any CPU
22 {A7706C84-92D2-4B7A-B779-76B64D2950EC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
23 {A7706C84-92D2-4B7A-B779-76B64D2950EC}.Debug|Any CPU.Build.0 = Debug|Any CPU
24 {A7706C84-92D2-4B7A-B779-76B64D2950EC}.Release|Any CPU.ActiveCfg = Release|Any CPU
25 {A7706C84-92D2-4B7A-B779-76B64D2950EC}.Release|Any CPU.Build.0 = Release|Any CPU
[all …]
/external/grpc-grpc/examples/csharp/Helloworld/
DGreeter.sln14 Debug|Any CPU = Debug|Any CPU
15 Release|Any CPU = Release|Any CPU
18 {13B6DFC8-F5F6-4CC2-99DF-57A7CF042033}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
19 {13B6DFC8-F5F6-4CC2-99DF-57A7CF042033}.Debug|Any CPU.Build.0 = Debug|Any CPU
20 {13B6DFC8-F5F6-4CC2-99DF-57A7CF042033}.Release|Any CPU.ActiveCfg = Release|Any CPU
21 {13B6DFC8-F5F6-4CC2-99DF-57A7CF042033}.Release|Any CPU.Build.0 = Release|Any CPU
22 {B754FB02-D501-4308-8B89-33AB7119C80D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
23 {B754FB02-D501-4308-8B89-33AB7119C80D}.Debug|Any CPU.Build.0 = Debug|Any CPU
24 {B754FB02-D501-4308-8B89-33AB7119C80D}.Release|Any CPU.ActiveCfg = Release|Any CPU
25 {B754FB02-D501-4308-8B89-33AB7119C80D}.Release|Any CPU.Build.0 = Release|Any CPU
[all …]
/external/antlr/runtime/CSharp2/Sources/
DAntlr3.Runtime (VS2008).sln12 Debug|Any CPU = Debug|Any CPU
13 Release|Any CPU = Release|Any CPU
16 {CF15D0D5-BE72-4F98-B70F-229ABA1DF0E8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
17 {CF15D0D5-BE72-4F98-B70F-229ABA1DF0E8}.Debug|Any CPU.Build.0 = Debug|Any CPU
18 {CF15D0D5-BE72-4F98-B70F-229ABA1DF0E8}.Release|Any CPU.ActiveCfg = Release|Any CPU
19 {CF15D0D5-BE72-4F98-B70F-229ABA1DF0E8}.Release|Any CPU.Build.0 = Release|Any CPU
20 {BEB27DCC-ABFB-4951-B618-2B639EC65A46}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
21 {BEB27DCC-ABFB-4951-B618-2B639EC65A46}.Debug|Any CPU.Build.0 = Debug|Any CPU
22 {BEB27DCC-ABFB-4951-B618-2B639EC65A46}.Release|Any CPU.ActiveCfg = Release|Any CPU
23 {BEB27DCC-ABFB-4951-B618-2B639EC65A46}.Release|Any CPU.Build.0 = Release|Any CPU
[all …]

12345678910>>...1086