/external/libcxx/test/std/utilities/meta/meta.logical/ |
D | conjunction.pass.cpp | 27 static_assert (!std::conjunction<std::false_type>::value, "" ); in main() 31 static_assert (!std::conjunction_v<std::false_type>, "" ); in main() 34 static_assert (!std::conjunction<std::true_type, std::false_type>::value, "" ); in main() 35 static_assert (!std::conjunction<std::false_type, std::true_type >::value, "" ); in main() 36 static_assert (!std::conjunction<std::false_type, std::false_type>::value, "" ); in main() 39 static_assert (!std::conjunction_v<std::true_type, std::false_type>, "" ); in main() 40 static_assert (!std::conjunction_v<std::false_type, std::true_type >, "" ); in main() 41 static_assert (!std::conjunction_v<std::false_type, std::false_type>, "" ); in main() 44 … static_assert (!std::conjunction<std::true_type, std::false_type, std::true_type >::value, "" ); in main() 45 … static_assert (!std::conjunction<std::false_type, std::true_type, std::true_type >::value, "" ); in main() [all …]
|
D | disjunction.pass.cpp | 27 static_assert (!std::disjunction<std::false_type>::value, "" ); in main() 31 static_assert (!std::disjunction_v<std::false_type>, "" ); in main() 34 static_assert ( std::disjunction<std::true_type, std::false_type>::value, "" ); in main() 35 static_assert ( std::disjunction<std::false_type, std::true_type >::value, "" ); in main() 36 static_assert (!std::disjunction<std::false_type, std::false_type>::value, "" ); in main() 39 static_assert ( std::disjunction_v<std::true_type, std::false_type>, "" ); in main() 40 static_assert ( std::disjunction_v<std::false_type, std::true_type >, "" ); in main() 41 static_assert (!std::disjunction_v<std::false_type, std::false_type>, "" ); in main() 44 … static_assert ( std::disjunction<std::true_type, std::false_type, std::true_type >::value, "" ); in main() 45 … static_assert ( std::disjunction<std::false_type, std::true_type, std::true_type >::value, "" ); in main() [all …]
|
D | negation.pass.cpp | 26 static_assert ( std::negation<std::false_type>::value, "" ); in main() 29 static_assert ( std::negation_v<std::false_type>, "" ); in main() 38 static_assert (!std::negation<std::negation<std::false_type>>::value, "" ); in main()
|
/external/libcxx/test/std/utilities/meta/meta.help/ |
D | integral_constant.pass.cpp | 36 static_assert(std::false_type::value == false, ""); in main() 37 static_assert((std::is_same<std::false_type::value_type, bool>::value), ""); in main() 38 static_assert((std::is_same<std::false_type::type, std::false_type>::value), ""); in main() 44 std::false_type f1; in main() 45 std::false_type f2 = f1; in main()
|
/external/webrtc/webrtc/base/ |
D | template_util.h | 32 typedef integral_constant<bool, false> false_type; typedef 34 template <class T> struct is_pointer : false_type {}; 37 template <class T, class U> struct is_same : public false_type {}; 40 template<class> struct is_array : public false_type {}; 44 template <class T> struct is_non_const_reference : false_type {}; 46 template <class T> struct is_non_const_reference<const T&> : false_type {}; 48 template <class T> struct is_void : false_type {};
|
/external/libchrome/base/ |
D | template_util.h | 41 template <class T> struct is_non_const_reference : std::false_type {}; 43 template <class T> struct is_non_const_reference<const T&> : std::false_type {}; 68 struct SupportsOstreamOperator : std::false_type {}; 79 struct is_iterator : std::false_type {}; 141 struct is_trivially_copy_constructible<std::vector<T...>> : std::false_type {};
|
/external/libcxx/test/support/ |
D | charconv_test_helpers.h | 25 using std::false_type; 37 is_non_narrowing(...) -> false_type 51 _fits_in(T v, false_type, true_type /* T signed*/, true_type /* X signed */) in _fits_in() argument 58 _fits_in(T v, false_type, true_type /* T signed */, false_type /* X unsigned*/) in _fits_in() argument 65 _fits_in(T v, false_type, false_type /* T unsigned */, ...) in _fits_in() argument 132 static auto fromchars(char const* p, char const* ep, int base, false_type) in fromchars()
|
/external/pdfium/third_party/base/ |
D | template_util.h | 51 struct is_non_const_reference : std::false_type {}; 55 struct is_non_const_reference<const T&> : std::false_type {}; 80 std::false_type IsAssignableTest(internal::Any, Rvalue&&); 95 struct IsAssignableImpl<Lvalue, Rvalue, true> : public std::false_type {}; 99 struct SupportsOstreamOperator : std::false_type {};
|
/external/google-breakpad/src/testing/include/gmock/internal/ |
D | gmock-internal-utils.h | 185 struct LosslessArithmeticConvertibleImpl : public false_type {}; 205 : public false_type {}; // NOLINT 226 : public false_type {}; // NOLINT 231 : public false_type {}; // NOLINT 236 : public false_type {}; // NOLINT 340 template <typename T> struct is_reference : public false_type {}; 344 template <typename T1, typename T2> struct type_equals : public false_type {};
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googlemock/include/gmock/internal/ |
D | gmock-internal-utils.h | 185 struct LosslessArithmeticConvertibleImpl : public false_type {}; 205 : public false_type {}; // NOLINT 226 : public false_type {}; // NOLINT 231 : public false_type {}; // NOLINT 236 : public false_type {}; // NOLINT 340 template <typename T> struct is_reference : public false_type {}; 344 template <typename T1, typename T2> struct type_equals : public false_type {};
|
/external/libcxx/test/std/containers/sequences/vector.bool/ |
D | move_assign_noexcept.pass.cpp | 43 typedef std::false_type propagate_on_container_move_assignment; 56 typedef std::false_type propagate_on_container_move_assignment; 57 typedef std::false_type is_always_equal;
|
/external/libcxx/test/std/strings/basic.string/string.cons/ |
D | move_assign_noexcept.pass.cpp | 48 typedef std::false_type propagate_on_container_move_assignment; 62 typedef std::false_type propagate_on_container_move_assignment; 63 typedef std::false_type is_always_equal;
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/ |
D | conservativeRast.h | 90 typedef std::false_type StandardRastT; 111 typedef std::false_type IsConservativeT; 137 typedef std::false_type IsConservativeT; 149 typedef std::false_type IsConservativeT;
|
/external/libcxx/test/std/containers/sequences/vector/vector.cons/ |
D | move_assign_noexcept.pass.cpp | 43 typedef std::false_type propagate_on_container_move_assignment; 56 typedef std::false_type propagate_on_container_move_assignment; 57 typedef std::false_type is_always_equal;
|
/external/protobuf/src/google/protobuf/stubs/ |
D | template_util_unittest.cc | 57 EXPECT_FALSE(false_type::value); in TEST() 64 typedef if_<true, true_type, false_type>::type if_true; in TEST() 67 typedef if_<false, true_type, false_type>::type if_false; in TEST()
|
D | type_traits.h | 123 template <class T> struct is_integral : false_type { }; 152 template <class T> struct is_floating_point : false_type { }; 166 template <class T> struct is_pointer : false_type { }; 187 template <class T> struct is_enum_impl<true, T> : false_type { }; 222 template<typename T> struct is_reference : false_type {}; 325 template<typename T, typename U> struct is_same : public false_type { };
|
/external/googletest/googlemock/include/gmock/internal/ |
D | gmock-internal-utils.h | 189 struct LosslessArithmeticConvertibleImpl : public false_type {}; 209 : public false_type {}; // NOLINT 230 : public false_type {}; // NOLINT 235 : public false_type {}; // NOLINT 240 : public false_type {}; // NOLINT 356 template <typename T> struct is_reference : public false_type {}; 360 template <typename T1, typename T2> struct type_equals : public false_type {};
|
/external/tensorflow/tensorflow/core/framework/ |
D | type_traits.h | 31 struct false_type { struct 37 struct is_quantized : false_type {}; argument 53 struct is_complex : false_type {};
|
/external/clang/test/SemaTemplate/ |
D | overload-candidates.cpp | 90 typedef integral_constant<bool, false> false_type; typedef 96 struct a_trait : std::false_type {}; 109 struct some_trait : std::false_type {};
|
/external/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.types/ |
D | propagate_on_container_copy_assignment.pass.cpp | 28 std::false_type>::value), ""); in main() 32 std::false_type>::value), ""); in main()
|
D | propagate_on_container_swap.pass.cpp | 28 std::false_type>::value), ""); in main() 32 std::false_type>::value), ""); in main()
|
/external/libcxx/include/ |
D | type_traits | 23 typedef integral_constant<bool, false> false_type; // C++11 28 typedef bool_constant<false> false_type; // C++14 546 typedef _LIBCPP_BOOL_CONSTANT(false) false_type; 556 struct __lazy_and_impl<false, _Preds...> : false_type {}; 579 struct __lazy_or_impl<false> : false_type {}; 608 template<> struct __or_<> : false_type {}; 621 struct __not_ : conditional<_Tp::value, false_type, true_type>::type {}; 627 template <class _Tp> struct _LIBCPP_TEMPLATE_VIS is_const : public false_type {}; 638 template <class _Tp> struct _LIBCPP_TEMPLATE_VIS is_volatile : public false_type {}; 673 template <class _Tp> struct __libcpp_is_void : public false_type {}; [all …]
|
/external/libcxx/test/std/containers/associative/set/set.special/ |
D | swap_noexcept.pass.cpp | 78 typedef std::false_type propagate_on_container_swap; 91 typedef std::false_type propagate_on_container_swap; 92 typedef std::false_type is_always_equal;
|
/external/libcxx/test/std/containers/associative/multiset/multiset.special/ |
D | swap_noexcept.pass.cpp | 78 typedef std::false_type propagate_on_container_swap; 91 typedef std::false_type propagate_on_container_swap; 92 typedef std::false_type is_always_equal;
|
/external/libcxx/test/std/utilities/memory/allocator.traits/allocator.traits.types/ |
D | propagate_on_container_move_assignment.pass.cpp | 51 …:allocator_traits<B<char> >::propagate_on_container_move_assignment, std::false_type>::value), ""); in main() 53 …:allocator_traits<C<char> >::propagate_on_container_move_assignment, std::false_type>::value), ""); in main()
|