Home
last modified time | relevance | path

Searched refs:true_type (Results 1 - 25 of 140) sorted by relevance

123456

/third_party/node/deps/v8/include/cppgc/
H A Dtype-traits.h38 std::declval<Visitor*>()))>> : std::true_type {
49 : std::true_type {
69 : std::true_type {
82 : std::true_type {
93 struct IsGarbageCollectedMixinType<T, false, true> : std::true_type {
103 struct IsGarbageCollectedType<T, true> : std::true_type {
121 struct IsGarbageCollectedWithMixinType<T, true> : std::true_type {
130 static std::true_type SubclassCheck(
145 struct IsMemberType<T, true> : std::true_type {};
152 struct IsWeakMemberType<T, true> : std::true_type {};
[all...]
/third_party/node/deps/v8/include/v8-include/cppgc/
H A Dtype-traits.h38 std::declval<Visitor*>()))>> : std::true_type {
49 : std::true_type {
69 : std::true_type {
82 : std::true_type {
93 struct IsGarbageCollectedMixinType<T, false, true> : std::true_type {
103 struct IsGarbageCollectedType<T, true> : std::true_type {
121 struct IsGarbageCollectedWithMixinType<T, true> : std::true_type {
130 static std::true_type SubclassCheck(
146 struct IsMemberType<T, true> : std::true_type {};
153 struct IsWeakMemberType<T, true> : std::true_type {};
[all...]
/third_party/libphonenumber/cpp/src/phonenumbers/base/
H A Dtemplate_util.h24 typedef integral_constant<bool, true> true_type; typedef
28 template <class T> struct is_pointer<T*> : true_type {};
31 template <class T> struct is_same<T,T> : true_type {};
34 template<class T, size_t n> struct is_array<T[n]> : public true_type {};
35 template<class T> struct is_array<T[]> : public true_type {};
38 template <class T> struct is_non_const_reference<T&> : true_type {};
42 template <> struct is_void<void> : true_type {};
86 // Inherits from true_type if From is convertible to To, false_type otherwise.
88 // Note that if the type is convertible, this will be a true_type REGARDLESS
/third_party/skia/third_party/externals/abseil-cpp/absl/types/internal/
H A Dconformance_testing_helpers.h95 : std::true_type {
130 struct IsEquivalenceClass<EquivalenceClassType<>> : std::true_type {
136 using for_type = std::true_type;
141 : std::true_type {
190 struct AreGeneratorsWithTheSameReturnTypeImpl<void> : std::true_type {};
196 Head, Tail...> : std::true_type {};
215 struct AreEquivalenceClassesOfTheSameType<> : std::true_type {
223 using for_type = std::true_type;
228 : std::true_type {
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A Dtype_traits.h103 struct is_trivially_copy_constructible<T &> : std::true_type {};
114 struct is_trivially_move_constructible<T &> : std::true_type {};
116 struct is_trivially_move_constructible<T &&> : std::true_type {};
122 static auto get(F*) -> decltype(std::declval<F &>() = std::declval<const F &>(), std::true_type{});
130 static auto get(F*) -> decltype(std::declval<F &>() = std::declval<F &&>(), std::true_type{});
186 class is_trivially_copyable<T*> : public std::true_type {
/third_party/json/include/nlohmann/detail/meta/
H A Dtype_traits.hpp12 #include <type_traits> // false_type, is_constructible, is_integral, is_same, true_type
52 struct is_basic_json<NLOHMANN_BASIC_JSON_TPL> : std::true_type {};
55 // true_type for pointer to possibly cv-qualified basic_json or std::nullptr_t
75 struct is_json_ref<json_ref<T>> : std::true_type {};
189 template<class...> struct conjunction : std::true_type { };
288 struct is_complete_type<T, decltype(void(sizeof(T)))> : std::true_type {};
401 : std::true_type {};
490 struct is_json_iterator_of<BasicJsonType, typename BasicJsonType::iterator> : std::true_type {};
493 struct is_json_iterator_of<BasicJsonType, typename BasicJsonType::const_iterator> : std::true_type
501 struct is_specialization_of<Primary, Primary<Args...>> : std::true_type {};
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A Dilist_node_options.h54 /// std::true_type to get static assertions passing in \a simple_ilist and \a
71 template <> struct extract_sentinel_tracking<> : std::true_type, is_implicit {};
78 : std::true_type {};
92 template <class Tag> struct is_valid_option<ilist_tag<Tag>> : std::true_type {};
98 template <> struct check_options<> : std::true_type {};
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A Dilist_node_options.h52 /// std::true_type to get static assertions passing in \a simple_ilist and \a
69 template <> struct extract_sentinel_tracking<> : std::true_type, is_implicit {};
76 : std::true_type {};
90 template <class Tag> struct is_valid_option<ilist_tag<Tag>> : std::true_type {};
96 template <> struct check_options<> : std::true_type {};
/third_party/protobuf/src/google/protobuf/stubs/
H A Dtemplate_util_unittest.cc56 EXPECT_TRUE(true_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()
H A Dtemplate_util.h86 // Abbreviations: true_type and false_type are structs that represent boolean
89 typedef integral_constant<bool, true> true_type; typedef
91 typedef true_type true_;
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
H A Dunordered_map_constructor_test.h92 struct is_std_unordered_map<std::unordered_map<T...>> : std::true_type {};
95 using has_cxx14_std_apis = std::true_type;
109 void BucketCountAllocTest(std::true_type) { in BucketCountAllocTest()
127 void BucketCountHashAllocTest(std::true_type) { in BucketCountHashAllocTest()
145 using has_alloc_std_constructors = std::true_type;
159 void AllocTest(std::true_type) { in AllocTest()
195 void InputIteratorBucketAllocTest(std::true_type) { in InputIteratorBucketAllocTest()
216 void InputIteratorBucketHashAllocTest(std::true_type) { in InputIteratorBucketHashAllocTest()
258 void CopyConstructorAllocTest(std::true_type) { in CopyConstructorAllocTest()
305 void MoveConstructorAllocTest(std::true_type) { in MoveConstructorAllocTest()
[all...]
H A Dunordered_set_constructor_test.h101 struct is_std_unordered_set<std::unordered_set<T...>> : std::true_type {};
104 using has_cxx14_std_apis = std::true_type;
118 void BucketCountAllocTest(std::true_type) { in BucketCountAllocTest()
136 void BucketCountHashAllocTest(std::true_type) { in BucketCountHashAllocTest()
154 using has_alloc_std_constructors = std::true_type;
168 void AllocTest(std::true_type) { in AllocTest()
204 void InputIteratorBucketAllocTest(std::true_type) { in InputIteratorBucketAllocTest()
225 void InputIteratorBucketHashAllocTest(std::true_type) { in InputIteratorBucketHashAllocTest()
267 void CopyConstructorAllocTest(std::true_type) { in CopyConstructorAllocTest()
312 void MoveConstructorAllocTest(std::true_type) { in MoveConstructorAllocTest()
[all...]
/third_party/gn/src/base/
H A Dtemplate_util.h24 : std::true_type {};
36 : std::true_type {};
/third_party/node/deps/v8/src/zone/
H A Dzone-type-traits.h75 struct is_compressed_pointer<CompressedZonePtr<T>> : std::true_type {};
78 struct is_compressed_pointer<const CompressedZonePtr<T>> : std::true_type {};
/third_party/skia/src/core/
H A DSkAdvancedTypefaceMetrics.h69 template <> struct is_bitmask_enum<SkAdvancedTypefaceMetrics::FontFlags> : std::true_type {};
70 template <> struct is_bitmask_enum<SkAdvancedTypefaceMetrics::StyleFlags> : std::true_type {};
/third_party/googletest/googlemock/include/gmock/
H A Dgmock-nice-strict.h82 std::true_type StrictnessModifierProbe(const NiceMock<T>&);
84 std::true_type StrictnessModifierProbe(const NaggyMock<T>&);
86 std::true_type StrictnessModifierProbe(const StrictMock<T>&);
/third_party/libabigail/tests/data/test-diff-dwarf/
H A Dtest42-PR21296-clanggcc.cc28 struct true_type { static constexpr bool value = true; }; struct
104 template<typename _UHead, typename = true_type>
166 template<typename... _UElements, typename = true_type>
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
H A Dstr_split_internal.h169 : std::true_type {};
175 struct HasValueType<T, absl::void_t<typename T::value_type>> : std::true_type {
183 : std::true_type {};
190 : std::true_type {};
196 std::true_type IsInitializerListDispatch(std::initializer_list<T>*);
/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/
H A Ddistribution_caller.h44 : std::true_type {};
64 static typename DistrT::result_type Impl(std::true_type, URBG* urbg, in Impl()
/third_party/skia/third_party/externals/abseil-cpp/absl/meta/
H A Dtype_traits_test.cc121 EXPECT_TRUE(absl::conjunction<std::true_type>::value); in TEST()
122 EXPECT_TRUE((absl::conjunction<std::true_type, std::true_type>::value)); in TEST()
123 EXPECT_FALSE((absl::conjunction<std::true_type, std::false_type>::value)); in TEST()
124 EXPECT_FALSE((absl::conjunction<std::false_type, std::true_type>::value)); in TEST()
138 (absl::conjunction<std::true_type, std::false_type, Dummy>::value)); in TEST()
140 absl::conjunction<std::true_type, MyFalseType, in TEST()
144 absl::conjunction<std::true_type, MyTrueType>>::value)); in TEST()
150 EXPECT_TRUE((absl::disjunction<std::true_type, std::true_type> in TEST()
[all...]
/third_party/node/deps/v8/include/cppgc/internal/
H A Dpointer-policies.h148 using IsStrongPersistent = std::true_type;
158 using IsStrongPersistent = std::true_type;
/third_party/skia/third_party/externals/abseil-cpp/absl/container/
H A Dflat_hash_set.h458 using constant_iterators = std::true_type;
497 : std::true_type {};
H A Dnode_hash_set.h448 using constant_iterators = std::true_type;
487 : std::true_type {};
/third_party/skia/third_party/externals/abseil-cpp/absl/random/
H A Dbit_gen_ref.h52 : std::true_type {};
93 : std::true_type {};
/third_party/protobuf/src/google/protobuf/
H A Darena.h550 std::true_type, in DoCreateMaybeMessage()
570 PROTOBUF_ALWAYS_INLINE static T* CreateNoMessage(Arena* arena, std::true_type, in CreateNoMessage()
628 std::true_type, Args&&... args) { in CreateInArenaStorageInternal()
639 std::true_type) {} in RegisterDestructorInternal()
647 // call and operator delete()). The second parameter has type 'true_type' if T
652 PROTOBUF_ALWAYS_INLINE void OwnInternal(T* object, std::true_type) { in OwnInternal()

Completed in 16 milliseconds

123456