Home
last modified time | relevance | path

Searched refs:false_type (Results 1 – 25 of 193) sorted by relevance

12345678

/external/libcxx/test/std/utilities/meta/meta.logical/
Dconjunction.pass.cpp27 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 …]
Ddisjunction.pass.cpp27 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 …]
Dnegation.pass.cpp26 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/
Dintegral_constant.pass.cpp36 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/
Dtemplate_util.h32 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/
Dtemplate_util.h41 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/
Dcharconv_test_helpers.h25 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/
Dtemplate_util.h51 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/
Dgmock-internal-utils.h185 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/
Dgmock-internal-utils.h185 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/
Dmove_assign_noexcept.pass.cpp43 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/
Dmove_assign_noexcept.pass.cpp48 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/
DconservativeRast.h90 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/
Dmove_assign_noexcept.pass.cpp43 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/
Dtemplate_util_unittest.cc57 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()
Dtype_traits.h123 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/
Dgmock-internal-utils.h189 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/
Dtype_traits.h31 struct false_type { struct
37 struct is_quantized : false_type {}; argument
53 struct is_complex : false_type {};
/external/clang/test/SemaTemplate/
Doverload-candidates.cpp90 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/
Dpropagate_on_container_copy_assignment.pass.cpp28 std::false_type>::value), ""); in main()
32 std::false_type>::value), ""); in main()
Dpropagate_on_container_swap.pass.cpp28 std::false_type>::value), ""); in main()
32 std::false_type>::value), ""); in main()
/external/libcxx/include/
Dtype_traits23 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/
Dswap_noexcept.pass.cpp78 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/
Dswap_noexcept.pass.cpp78 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/
Dpropagate_on_container_move_assignment.pass.cpp51 …: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()

12345678