Searched refs:false_type (Results 1 - 25 of 91) sorted by relevance

1234

/external/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.types/
H A Dpropagate_on_container_copy_assignment.pass.cpp28 std::false_type>::value), "");
32 std::false_type>::value), "");
H A Dpropagate_on_container_swap.pass.cpp28 std::false_type>::value), "");
32 std::false_type>::value), "");
H A Dpropagate_on_container_move_assignment.pass.cpp28 std::false_type>::value), "");
/external/libweave/third_party/chromium/base/
H A Dtemplate_util.h15 template <class T> struct is_non_const_reference : std::false_type {};
17 template <class T> struct is_non_const_reference<const T&> : std::false_type {};
/external/libcxx/test/std/utilities/meta/meta.hel/
H A Dintegral_constant.pass.cpp34 static_assert(std::false_type::value == false, "");
35 static_assert((std::is_same<std::false_type::value_type, bool>::value), "");
36 static_assert((std::is_same<std::false_type::type, std::false_type>::value), "");
42 std::false_type f1;
43 std::false_type f2 = f1;
/external/libchrome/base/
H A Dtemplate_util.h26 typedef integral_constant<bool, false> false_type; typedef in namespace:base
28 template <class T> struct is_pointer : false_type {};
34 struct is_member_function_pointer : false_type {};
42 template <class T, class U> struct is_same : public false_type {};
45 template<class> struct is_array : public false_type {};
49 template <class T> struct is_non_const_reference : false_type {};
51 template <class T> struct is_non_const_reference<const T&> : false_type {};
53 template <class T> struct is_const : false_type {};
56 template <class T> struct is_void : false_type {};
101 // Inherits from true_type if From is convertible to To, false_type otherwis
[all...]
/external/webrtc/webrtc/base/
H A Dtemplate_util.h32 typedef integral_constant<bool, false> false_type; typedef in namespace:rtc
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 {};
106 // Inherits from true_type if From is convertible to To, false_type otherwise.
/external/libcxx/test/std/utilities/memory/allocator.traits/allocator.traits.types/
H A Dis_always_equal.pass.cpp47 static_assert((std::is_same<std::allocator_traits<C<char> >::is_always_equal, std::false_type>::value), "");
51 static_assert((std::is_same<std::allocator_traits<C<const char> >::is_always_equal, std::false_type>::value), "");
H A Dpropagate_on_container_copy_assignment.pass.cpp16 // | false_type propagate_on_container_copy_assignment;
39 static_assert((std::is_same<std::allocator_traits<B<char> >::propagate_on_container_copy_assignment, std::false_type>::value), "");
H A Dpropagate_on_container_move_assignment.pass.cpp16 // | false_type propagate_on_container_move_assignment;
39 static_assert((std::is_same<std::allocator_traits<B<char> >::propagate_on_container_move_assignment, std::false_type>::value), "");
H A Dpropagate_on_container_swap.pass.cpp16 // | false_type propagate_on_container_swap;
39 static_assert((std::is_same<std::allocator_traits<B<char> >::propagate_on_container_swap, std::false_type>::value), "");
/external/protobuf/src/google/protobuf/stubs/
H A Dtemplate_util_unittest.cc57 EXPECT_FALSE(false_type::value);
64 typedef if_<true, true_type, false_type>::type if_true;
67 typedef if_<false, true_type, false_type>::type if_false;
H A Dtemplate_util.h86 // Abbreviations: true_type and false_type are structs that represent boolean
90 typedef integral_constant<bool, false> false_type; typedef in namespace:google::protobuf::internal
92 typedef false_type false_;
/external/libchrome/base/memory/
H A Draw_scoped_refptr_mismatch_checker.h30 value = base::false_type::value
/external/clang/test/SemaTemplate/
H A Doverload-candidates.cpp90 typedef integral_constant<bool, false> false_type; typedef in namespace:std
96 struct a_trait : std::false_type {};
109 struct some_trait : std::false_type {};
/external/libcxx/test/std/containers/associative/map/map.special/
H A Dswap_noexcept.pass.cpp77 typedef std::false_type propagate_on_container_swap;
90 typedef std::false_type propagate_on_container_swap;
91 typedef std::false_type is_always_equal;
/external/libcxx/test/std/containers/associative/multimap/multimap.special/
H A Dswap_noexcept.pass.cpp77 typedef std::false_type propagate_on_container_swap;
90 typedef std::false_type propagate_on_container_swap;
91 typedef std::false_type is_always_equal;
/external/libcxx/test/std/containers/associative/multiset/multiset.special/
H A Dswap_noexcept.pass.cpp77 typedef std::false_type propagate_on_container_swap;
90 typedef std::false_type propagate_on_container_swap;
91 typedef std::false_type is_always_equal;
/external/libcxx/test/std/containers/associative/set/set.special/
H A Dswap_noexcept.pass.cpp77 typedef std::false_type propagate_on_container_swap;
90 typedef std::false_type propagate_on_container_swap;
91 typedef std::false_type is_always_equal;
/external/libweave/third_party/chromium/base/memory/
H A Draw_scoped_refptr_mismatch_checker.h30 value = base::false_type::value
/external/protobuf/src/google/protobuf/
H A Dgenerated_enum_reflection.h55 template <typename T> struct is_proto_enum : ::google::protobuf::internal::false_type {};
/external/clang/test/Headers/
H A Darm64-apple-ios-types.cpp8 struct false_type { struct
12 template <class _Tp, class _Up> struct is_same : public false_type {};
H A Dthumbv7-apple-ios-types.cpp8 struct false_type { struct
12 template <class _Tp, class _Up> struct is_same : public false_type {};
H A Dx86_64-apple-macosx-types.cpp8 struct false_type { struct
12 template <class _Tp, class _Up> struct is_same : public false_type {};
/external/gmock/include/gmock/internal/
H A 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 {};

Completed in 822 milliseconds

1234