/external/libcxx/test/utilities/allocator.adaptor/allocator.adaptor.types/ |
H A D | propagate_on_container_copy_assignment.pass.cpp | 28 std::false_type>::value), ""); 32 std::false_type>::value), "");
|
H A D | propagate_on_container_swap.pass.cpp | 28 std::false_type>::value), ""); 32 std::false_type>::value), "");
|
H A D | propagate_on_container_move_assignment.pass.cpp | 28 std::false_type>::value), "");
|
/external/libcxx/test/utilities/meta/meta.hel/ |
H A D | integral_constant.pass.cpp | 34 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/chromium_org/third_party/libaddressinput/chromium/cpp/include/libaddressinput/util/internal/ |
H A D | template_util.h | 25 typedef integral_constant<bool, false> false_type; typedef 27 template <class T> struct is_pointer : false_type {}; 30 template <class T, class U> struct is_same : public false_type {}; 33 template<class> struct is_array : public false_type {}; 37 template <class T> struct is_non_const_reference : false_type {}; 39 template <class T> struct is_non_const_reference<const T&> : false_type {}; 41 template <class T> struct is_void : false_type {}; 86 // Inherits from true_type if From is convertible to To, false_type otherwise.
|
/external/chromium_org/third_party/libaddressinput/src/cpp/include/libaddressinput/util/ |
H A D | template_util.h | 28 typedef integral_constant<bool, false> false_type; typedef in namespace:i18n::addressinput 30 template <class T> struct is_pointer : false_type {}; 33 template <class T, class U> struct is_same : public false_type {}; 36 template<class> struct is_array : public false_type {}; 40 template <class T> struct is_non_const_reference : false_type {}; 42 template <class T> struct is_non_const_reference<const T&> : false_type {}; 44 template <class T> struct is_void : false_type {}; 89 // Inherits from true_type if From is convertible to To, false_type otherwise.
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
H A D | template_util.h | 24 typedef integral_constant<bool, false> false_type; typedef in namespace:talk_base 26 template <class T> struct is_pointer : false_type {}; 29 template <class T, class U> struct is_same : public false_type {}; 32 template<class> struct is_array : public false_type {}; 36 template <class T> struct is_non_const_reference : false_type {}; 38 template <class T> struct is_non_const_reference<const T&> : false_type {}; 40 template <class T> struct is_void : false_type {}; 85 // Inherits from true_type if From is convertible to To, false_type otherwise.
|
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/ |
H A D | template_util.h | 25 typedef integral_constant<bool, false> false_type; typedef in namespace:i18n::phonenumbers 27 template <class T> struct is_pointer : false_type {}; 30 template <class T, class U> struct is_same : public false_type {}; 33 template<class> struct is_array : public false_type {}; 37 template <class T> struct is_non_const_reference : false_type {}; 39 template <class T> struct is_non_const_reference<const T&> : false_type {}; 41 template <class T> struct is_void : false_type {}; 86 // Inherits from true_type if From is convertible to To, false_type otherwise.
|
/external/chromium_org/third_party/webrtc/base/ |
H A D | template_util.h | 30 typedef integral_constant<bool, false> false_type; typedef in namespace:rtc 32 template <class T> struct is_pointer : false_type {}; 35 template <class T, class U> struct is_same : public false_type {}; 38 template<class> struct is_array : public false_type {}; 42 template <class T> struct is_non_const_reference : false_type {}; 44 template <class T> struct is_non_const_reference<const T&> : false_type {}; 46 template <class T> struct is_void : false_type {}; 91 // Inherits from true_type if From is convertible to To, false_type otherwise.
|
/external/chromium_org/third_party/webrtc/system_wrappers/interface/ |
H A D | template_util.h | 32 typedef integral_constant<bool, false> false_type; typedef in namespace:webrtc 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 {}; 93 // Inherits from true_type if From is convertible to To, false_type otherwise.
|
/external/libcxx/test/utilities/memory/allocator.traits/allocator.traits.types/ |
H A D | propagate_on_container_copy_assignment.pass.cpp | 16 // | 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 D | propagate_on_container_move_assignment.pass.cpp | 16 // | 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 D | propagate_on_container_swap.pass.cpp | 16 // | 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/chromium_org/third_party/protobuf/src/google/protobuf/stubs/ |
H A D | template_util_unittest.cc | 57 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 D | template_util.h | 86 // 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_;
|
H A D | type_traits.h | 63 #include <google/protobuf/stubs/template_util.h> // For true_type and false_type 96 template <class T> struct is_integral : false_type { }; 125 template <class T> struct is_floating_point : false_type { }; 139 template <class T> struct is_pointer : false_type { }; 160 template <class T> struct is_enum_impl<true, T> : false_type { }; 195 template<typename T> struct is_reference : false_type {}; 298 template<typename T, typename U> struct is_same : public false_type { }; 322 // Inherits from true_type if From is convertible to To, false_type otherwise.
|
/external/chromium_org/base/ |
H A D | template_util.h | 26 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 {}; 64 template <class T, class U> struct is_same : public false_type {}; 67 template<class> struct is_array : public false_type {}; 71 template <class T> struct is_non_const_reference : false_type {}; 73 template <class T> struct is_non_const_reference<const T&> : false_type {}; 75 template <class T> struct is_const : false_type {}; 78 template <class T> struct is_void : false_type {}; 123 // Inherits from true_type if From is convertible to To, false_type otherwis [all...] |
H A D | bind_helpers.h | 260 struct UnsafeBindtoRefCountedArgHelper : false_type { 269 struct UnsafeBindtoRefCountedArg : false_type { 486 struct IsWeakMethod : public false_type {};
|
/external/chromium_org/third_party/cld/base/ |
H A D | template_util.h | 49 // Abbreviations: true_type and false_type are structs that represent boolean 53 typedef integral_constant<bool, false> false_type; typedef in namespace:base 55 typedef false_type false_;
|
H A D | type_traits.h | 31 #include "base/template_util.h" // For true_type and false_type 37 template <class T> struct is_integral : false_type { }; 61 template <class T> struct is_floating_point : false_type { }; 68 template <class T> struct is_pointer : false_type { }; 73 template<typename T> struct is_reference : false_type {}; 186 // Inherits from true_type if From is convertible to To, false_type otherwise.
|
/external/clang/test/SemaTemplate/ |
H A D | overload-candidates.cpp | 88 typedef integral_constant<bool, false> false_type; typedef in namespace:std 94 struct a_trait : std::false_type {}; 104 struct some_trait : std::false_type {};
|
/external/libcxx/test/language.support/support.limits/limits/numeric.limits.members/ |
H A D | quiet_NaN.pass.cpp | 31 test_imp(std::false_type)
|
H A D | signaling_NaN.pass.cpp | 31 test_imp(std::false_type)
|
/external/chromium_org/testing/gtest/include/gtest/ |
H A D | gtest-message.h | 214 inline void StreamHelper(internal::false_type /*is_pointer*/,
|
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/ |
H A D | gtest-message.h | 210 inline void StreamHelper(internal::false_type /*dummy*/, const T& value) {
|