Searched refs:is_pointer_v (Results 1 – 13 of 13) sorted by relevance
29 inline constexpr bool is_pointer_v = __is_pointer(_Tp); variable50 inline constexpr bool is_pointer_v = is_pointer<_Tp>::value;
158 if constexpr (std::is_pointer_v<T>) in emit()174 if constexpr (!std::is_pointer_v<T>) { in emit()
25 if constexpr (std::is_pointer_v<T>) { in ReadArg()
57 enable_if_t<is_pointer_v<_TPtr>
40 concept __ptr_to_object = is_pointer_v<_Tp> && is_object_v<remove_pointer_t<_Tp>>;
56 is_pointer_v<_From> && is_pointer_v<_To> &&
150 requires is_pointer_v<_Iter> || requires(const _Iter __i) { __i.operator->(); }152 if constexpr (is_pointer_v<_Iter>) {389 if constexpr (is_pointer_v<_Iter>) {
125 if constexpr (is_pointer_v<_Iter> || requires(const _Iter& __i) { __i.operator->(); }) {
197 concept __has_arrow = input_iterator<_Ip> && (is_pointer_v<_Ip> || requires(_Ip __i) { __i.operator…
595 std::is_pointer_v<T> || std::is_constructible_v<T, std::nullptr_t>;
254 template <class T> inline constexpr bool is_pointer_v
232 static_assert(!std::is_pointer_v<value_type>,278 static constexpr bool IsPtr = std::is_pointer_v<remove_cvref_t<T>>;
601 SYMBOL(is_pointer_v, std::, <type_traits>)