Lines Matching defs:IsConst
1022 struct IsConst : FalseType {};
1025 struct IsConst<const T> : TrueType {};
1384 : WithCV<IsConst<T>::value, IsVolatile<T>::value,
1431 : WithCV<IsConst<T>::value, IsVolatile<T>::value,
44364 template<class Span, bool IsConst>
44374 using reference = conditional_t<IsConst, const element_type_, element_type_>&;
44394 span_iterator<Span, IsConst>&
44395 operator=(const span_iterator<Span, IsConst>&) = default;
44525 template<class Span, bool IsConst>
44526 inline constexpr span_iterator<Span, IsConst>
44527 operator+(typename span_iterator<Span, IsConst>::difference_type n,
44528 const span_iterator<Span, IsConst>& rhs)
44722 mozilla::IsConst<element_type>::value &&
45081 class = span_details::enable_if_t<!mozilla::IsConst<ElementType>::value>>
117101 : mozilla::Conditional<mozilla::IsConst<TWithoutPointer>::value,
117118 : mozilla::Conditional<mozilla::IsConst<TWithoutRef>::value,