HomeSort by relevance Sort by last modified time
    Searched refs:any (Results 1 - 25 of 5161) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/libcxx/utilities/any/
size_and_alignment.pass.cpp 12 // <any>
14 // Check that the size and alignment of any are what we expect.
16 #include <any>
20 using std::any;
21 static_assert(sizeof(any) == sizeof(void*)*4, "");
22 static_assert(alignof(any) == alignof(void*), "");
version.pass.cpp 10 // <any>
12 #include <any>
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/utilities/any/
size_and_alignment.pass.cpp 12 // <any>
14 // Check that the size and alignment of any are what we expect.
16 #include <any>
20 using std::any;
21 static_assert(sizeof(any) == sizeof(void*)*4, "");
22 static_assert(alignof(any) == alignof(void*), "");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/experimental/any/
size_and_alignment.pass.cpp 12 // <experimental/any>
14 // Check that the size and alignment of any are what we expect.
16 #include <experimental/any>
20 using std::experimental::any;
21 static_assert(sizeof(any) == sizeof(void*)*4, "");
22 static_assert(alignof(any) == alignof(void*), "");
  /external/libcxx/test/std/utilities/any/any.class/any.cons/
default.pass.cpp 12 // <any>
14 // any() noexcept;
16 #include <any>
26 using std::any;
29 std::is_nothrow_default_constructible<any>::value
34 struct TestConstexpr : public std::any {
35 constexpr TestConstexpr() : std::any() {}
38 _LIBCPP_SAFE_STATIC static std::any a;
44 any const a;
  /external/libcxx/test/std/utilities/any/any.nonmembers/any.cast/
const_correctness.fail.cpp 12 // <any>
15 // ValueType any_cast(any const &);
19 #include <any>
26 using std::any;
29 any a;
31 // expected-error@any:* {{binding value of type 'const TestType' to reference to type 'TestType' drops 'const' qualifier}}
32 // expected-error-re@any:* {{static_assert failed{{.*}} "ValueType is required to be a const lvalue reference or a CopyConstructible type"}}
33 any_cast<TestType &>(static_cast<any const&>(a)); // expected-note {{requested here}}
35 // expected-error@any:* {{cannot cast from lvalue of type 'const TestType' to rvalue reference type 'TestType &&'; types are not compatible}}
36 // expected-error-re@any:* {{static_assert failed{{.*}} "ValueType is required to be a const lvalue reference or a CopyCons (…)
    [all...]
any_cast_request_invalid_value_category.fail.cpp 12 // <any>
15 // ValueType any_cast(any &&);
19 #include <any>
22 using std::any;
27 const any a;
28 // expected-error-re@any:* {{static_assert failed{{.*}} "ValueType is required to be a const lvalue reference or a CopyConstructible type"}}
29 // expected-error@any:* {{binding value of type 'const TestType' to reference to type 'TestType' drops 'const' qualifier}}
32 const any a2(42);
33 // expected-error-re@any:* {{static_assert failed{{.*}} "ValueType is required to be a const lvalue reference or a CopyConstructible type"}}
34 // expected-error@any:* {{binding value of type 'const int' to reference to type 'int' drops 'const' qualifier}
    [all...]
not_copy_constructible.fail.cpp 12 // <any>
15 // ValueType const any_cast(any const&);
18 // ValueType any_cast(any &);
21 // ValueType any_cast(any &&);
25 #include <any>
27 using std::any;
44 any a;
45 // expected-error-re@any:* {{static_assert failed{{.*}} "ValueType is required to be an lvalue reference or a CopyConstructible type"}}
46 // expected-error@any:* {{static_cast from 'no_copy' to 'no_copy' uses deleted function}}
47 any_cast<no_copy>(static_cast<any&>(a)); // expected-note {{requested here}
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/any/any.class/any.cons/
default.pass.cpp 12 // <any>
14 // any() noexcept;
16 #include <any>
26 using std::any;
29 std::is_nothrow_default_constructible<any>::value
34 struct TestConstexpr : public std::any {
35 constexpr TestConstexpr() : std::any() {}
38 _LIBCPP_SAFE_STATIC static std::any a;
44 any const a;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/any/any.nonmembers/any.cast/
const_correctness.fail.cpp 12 // <any>
15 // ValueType any_cast(any const &);
19 #include <any>
26 using std::any;
29 any a;
31 // expected-error@any:* {{binding value of type 'const TestType' to reference to type 'TestType' drops 'const' qualifier}}
32 // expected-error@any:* {{static_assert failed "ValueType is required to be a const lvalue reference or a CopyConstructible type"}}
33 any_cast<TestType &>(static_cast<any const&>(a)); // expected-note {{requested here}}
35 // expected-error@any:* {{cannot cast from lvalue of type 'const TestType' to rvalue reference type 'TestType &&'; types are not compatible}}
36 // expected-error@any:* {{static_assert failed "ValueType is required to be a const lvalue reference or a CopyConstructi (…)
    [all...]
any_cast_request_invalid_value_category.fail.cpp 12 // <any>
15 // ValueType any_cast(any &&);
19 #include <any>
22 using std::any;
27 const any a;
28 // expected-error@any:* {{static_assert failed "ValueType is required to be a const lvalue reference or a CopyConstructible type"}}
29 // expected-error@any:* {{binding value of type 'const TestType' to reference to type 'TestType' drops 'const' qualifier}}
32 const any a2(42);
33 // expected-error@any:* {{static_assert failed "ValueType is required to be a const lvalue reference or a CopyConstructible type"}}
34 // expected-error@any:* {{binding value of type 'const int' to reference to type 'int' drops 'const' qualifier}
    [all...]
not_copy_constructible.fail.cpp 12 // <any>
15 // ValueType const any_cast(any const&);
18 // ValueType any_cast(any &);
21 // ValueType any_cast(any &&);
25 #include <any>
27 using std::any;
44 any a;
45 // expected-error@any:* {{static_assert failed "ValueType is required to be an lvalue reference or a CopyConstructible type"}}
46 // expected-error@any:* {{static_cast from 'no_copy' to 'no_copy' uses deleted function}}
47 any_cast<no_copy>(static_cast<any&>(a)); // expected-note {{requested here}
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/any/any.class/any.cons/
default.pass.cpp 12 // <experimental/any>
14 // any() noexcept;
16 #include <experimental/any>
26 using std::experimental::any;
29 std::is_nothrow_default_constructible<any>::value
35 any const a;
  /external/libcxx/test/std/utilities/any/any.class/
not_literal_type.pass.cpp 12 // <any>
14 // [Note any is a not a literal type --end note]
16 #include <any>
20 static_assert(!std::is_literal_type<std::any>::value, "");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/any/any.class/
not_literal_type.pass.cpp 12 // <any>
14 // [Note any is a not a literal type --end note]
16 #include <any>
20 static_assert(!std::is_literal_type<std::any>::value, "");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/any/any.nonmembers/any.cast/
not_copy_constructible.fail.cpp 12 // <experimental/any>
15 // ValueType const any_cast(any const&);
18 // ValueType any_cast(any &);
21 // ValueType any_cast(any &&);
25 #include <experimental/any>
27 using std::experimental::any;
39 any a;
40 any_cast<no_copy>(static_cast<any&>(a));
41 any_cast<no_copy>(static_cast<any const&>(a));
42 any_cast<no_copy>(static_cast<any &&>(a))
    [all...]
const_correctness.fail.cpp 12 // <experimental/any>
15 // ValueType any_cast(any const &);
19 #include <experimental/any>
26 using std::experimental::any;
29 any a;
31 // expected-error@experimental/any:* 2 {{binding value of type '_Tp' (aka 'const TestType') to reference to type 'TestType' drops 'const' qualifier}}
32 any_cast<TestType &>(static_cast<any const&>(a)); // expected-note {{requested here}}
33 any_cast<TestType &&>(static_cast<any const&>(a)); // expected-note {{requested here}}
35 // expected-error@experimental/any:* 2 {{binding value of type '_Tp' (aka 'const TestType2') to reference to type 'TestType2' drops 'const' qualifier}}
36 any_cast<TestType2 &>(static_cast<any const&&>(a)); // expected-note {{requested here}
    [all...]
  /external/libcxx/test/std/utilities/any/any.nonmembers/
swap.pass.cpp 19 // <any>
21 // void swap(any &, any &) noexcept
23 // swap(...) just wraps any::swap(...). That function is tested elsewhere.
25 #include <any>
28 using std::any;
35 any a;
36 static_assert(noexcept(swap(a, a)), "swap(any&, any&) must be noexcept");
39 any a1(1)
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/any/any.nonmembers/
swap.pass.cpp 12 // <experimental/any>
14 // void swap(any &, any &) noexcept
16 // swap(...) just wraps any::swap(...). That function is tested elsewhere.
18 #include <experimental/any>
21 using std::experimental::any;
28 any a;
29 static_assert(noexcept(swap(a, a)), "swap(any&, any&) must be noexcept");
32 any a1(1)
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/any/any.nonmembers/
swap.pass.cpp 19 // <any>
21 // void swap(any &, any &) noexcept
23 // swap(...) just wraps any::swap(...). That function is tested elsewhere.
25 #include <any>
28 using std::any;
35 any a;
36 static_assert(noexcept(swap(a, a)), "swap(any&, any&) must be noexcept");
39 any a1(1)
    [all...]
  /device/generic/goldfish/wifi/
wpa_supplicant.conf 3 wowlan_triggers=any
  /hardware/broadcom/wlan/bcmdhd/config/
p2p_supplicant_overlay.conf 2 wowlan_triggers=any
wpa_supplicant_overlay.conf 2 wowlan_triggers=any
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/builtin/
runtime.go 17 func newobject(typ *byte) *any
35 func printpointer(any)
36 func printiface(any)
37 func printeface(any)
38 func printslice(any)
58 func slicecopy(to any, fr any, wid uintptr) int
59 func slicestringcopy(to any, fr any) int
62 func convI2I(typ *byte, elem any) (ret any
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/builtin/
runtime.go 17 func newobject(typ *byte) *any
35 func printpointer(any)
36 func printiface(any)
37 func printeface(any)
38 func printslice(any)
58 func slicecopy(to any, fr any, wid uintptr) int
59 func slicestringcopy(to any, fr any) int
62 func convI2I(typ *byte, elem any) (ret any
    [all...]

Completed in 338 milliseconds

1 2 3 4 5 6 7 8 91011>>