Home
last modified time | relevance | path

Searched refs:is_transparent (Results 1 – 19 of 19) sorted by relevance

/external/libcxx/test/std/utilities/function.objects/comparisons/
Dtransparent.pass.cpp15 struct is_transparent struct
20 template <class U> static char test(typename U::is_transparent* = 0); argument
28 static_assert ( !is_transparent<std::less<int>>::value, "" ); in main() argument
29 static_assert ( !is_transparent<std::less<std::string>>::value, "" ); in main()
30 static_assert ( is_transparent<std::less<void>>::value, "" ); in main()
31 static_assert ( is_transparent<std::less<>>::value, "" ); in main()
33 static_assert ( !is_transparent<std::less_equal<int>>::value, "" ); in main()
34 static_assert ( !is_transparent<std::less_equal<std::string>>::value, "" ); in main()
35 static_assert ( is_transparent<std::less_equal<void>>::value, "" ); in main()
36 static_assert ( is_transparent<std::less_equal<>>::value, "" ); in main()
[all …]
/external/libcxx/test/std/utilities/function.objects/arithmetic.operations/
Dtransparent.pass.cpp15 struct is_transparent struct
20 template <class U> static char test(typename U::is_transparent* = 0); argument
28 static_assert ( !is_transparent<std::plus<int>>::value, "" ); in main() argument
29 static_assert ( !is_transparent<std::plus<std::string>>::value, "" ); in main()
30 static_assert ( is_transparent<std::plus<void>>::value, "" ); in main()
31 static_assert ( is_transparent<std::plus<>>::value, "" ); in main()
33 static_assert ( !is_transparent<std::minus<int>>::value, "" ); in main()
34 static_assert ( !is_transparent<std::minus<std::string>>::value, "" ); in main()
35 static_assert ( is_transparent<std::minus<void>>::value, "" ); in main()
36 static_assert ( is_transparent<std::minus<>>::value, "" ); in main()
[all …]
/external/libcxx/test/std/utilities/function.objects/bitwise.operations/
Dtransparent.pass.cpp15 struct is_transparent struct
20 template <class U> static char test(typename U::is_transparent* = 0); argument
27 static_assert ( !is_transparent<std::bit_and<int>>::value, "" ); in main() argument
28 static_assert ( !is_transparent<std::bit_and<std::string>>::value, "" ); in main()
29 static_assert ( is_transparent<std::bit_and<void>>::value, "" ); in main()
30 static_assert ( is_transparent<std::bit_and<>>::value, "" ); in main()
32 static_assert ( !is_transparent<std::bit_or<int>>::value, "" ); in main()
33 static_assert ( !is_transparent<std::bit_or<std::string>>::value, "" ); in main()
34 static_assert ( is_transparent<std::bit_or<void>>::value, "" ); in main()
35 static_assert ( is_transparent<std::bit_or<>>::value, "" ); in main()
[all …]
/external/libcxx/test/std/utilities/function.objects/logical.operations/
Dtransparent.pass.cpp15 struct is_transparent struct
20 template <class U> static char test(typename U::is_transparent* = 0); argument
28 static_assert ( !is_transparent<std::logical_and<int>>::value, "" ); in main() argument
29 static_assert ( !is_transparent<std::logical_and<std::string>>::value, "" ); in main()
30 static_assert ( is_transparent<std::logical_and<void>>::value, "" ); in main()
31 static_assert ( is_transparent<std::logical_and<>>::value, "" ); in main()
33 static_assert ( !is_transparent<std::logical_or<int>>::value, "" ); in main()
34 static_assert ( !is_transparent<std::logical_or<std::string>>::value, "" ); in main()
35 static_assert ( is_transparent<std::logical_or<void>>::value, "" ); in main()
36 static_assert ( is_transparent<std::logical_or<>>::value, "" ); in main()
[all …]
/external/libcxx/test/support/
Dis_transparent.h25 using is_transparent = void; // correct member
35 using is_transparent = void () const &; // it's a type; a weird one, but a type member
57 using is_transparent = void; // error - should be accessible
68 int is_transparent; // error - should be a type member
/external/libcxx/test/std/containers/associative/multimap/multimap.ops/
Dcount_transparent.pass.cpp28 using is_transparent = void; typedef
Dequal_range_transparent.pass.cpp31 using is_transparent = void; typedef
/external/libcxx/test/std/containers/associative/map/map.ops/
Dcount_transparent.pass.cpp28 using is_transparent = void; typedef
Dequal_range_transparent.pass.cpp31 using is_transparent = void; typedef
/external/libcxx/test/std/containers/associative/set/
Dcount_transparent.pass.cpp30 using is_transparent = void; typedef
Dequal_range_transparent.pass.cpp32 using is_transparent = void; typedef
/external/libcxx/test/std/containers/associative/multiset/
Dcount_transparent.pass.cpp30 using is_transparent = void; typedef
Dequal_range_transparent.pass.cpp32 using is_transparent = void; typedef
/external/libcxx/include/
Dfunctional529 typedef void is_transparent;
556 typedef void is_transparent;
583 typedef void is_transparent;
610 typedef void is_transparent;
637 typedef void is_transparent;
664 typedef void is_transparent;
691 typedef void is_transparent;
718 typedef void is_transparent;
745 typedef void is_transparent;
774 typedef void is_transparent;
[all …]
D__functional_base68 typedef void is_transparent;
556 typename __void_t<typename _Tp::is_transparent>::type>
Diterator1847 // typedef void is_transparent;
Dmemory583 typedef void is_transparent;
5338 typedef void is_transparent;
/external/libpng/contrib/libtests/
Dpngvalid.c4955 int is_transparent; /* Transparency information was present. */ member
4998 dp->is_transparent = 0; in standard_display_init()
5030 dp->is_transparent = 1; in standard_palette_init()
5032 dp->is_transparent = 0; in standard_palette_init()
5034 dp->is_transparent = (i >= 0); in standard_palette_init()
5142 if (read_palette(palette, &npalette, pp, pi) != dp->is_transparent) in standard_palette_validate()
6629 test_pixel.have_tRNS = dp->this.is_transparent != 0; in transform_info_imp()
6771 const int have_tRNS = dp->this.is_transparent; in transform_image_validate()
7109 that->this.is_transparent = 1; in image_transform_png_set_tRNS_to_alpha_set()
7244 that->this.is_transparent = 1; in image_transform_png_set_expand_set()
[all …]
/external/libchrome/base/containers/
Dflat_tree.h65 struct IsTransparentCompare<T, void_t<typename T::is_transparent>>