Searched defs:is_const (Results 1 – 12 of 12) sorted by relevance
18 template <class T> struct is_const : cpp::false_type {}; global() struct
24 struct _LIBCPP_TEMPLATE_VIS _LIBCPP_NO_SPECIALIZATIONS is_const : _BoolConstant<__is_const(_Tp)> {}; struct
53 template <class T> struct is_const { static constexpr bool value = false; }; argument54 template <class T> struct is_const<const T> { static constexpr bool value = true; }; struct
169 template <class T> struct is_const { global() struct 170 valuestd::foo::is_const global() argument 173 template <class T> struct is_const<const T> { global() struct 174 valuestd::foo::is_const global() argument
123 struct is_const : public false_type {}; struct125 struct is_const<Tp const> : public true_type {}; struct
12 template <class T> struct is_const : false_type {}; struct 13 template <class T> struct is_const<const T> : true_type {}; struct [all...]
1188 void is_const() is_const() function
8 struct is_const { struct9 static constexpr bool value = true;
35 struct is_const { struct40 struct is_const<const T> { argument44 int is_const0[is_const<int>::value? -1 : 1]; argument
163 consteval Agg is_const() { is_const() function
338 TYPED_TEST(LlvmLibcTypeTraitsTest,is_const,UnqualObjectTypes) TYPED_TEST() argument
1104 GetCStringType(bool is_const) GetCStringType() argument