Lines Matching refs:GenericMemberIterator

186 class GenericMemberIterator {
189 template <bool, typename, typename> friend class GenericMemberIterator; variable
196 typedef GenericMemberIterator Iterator;
198 typedef GenericMemberIterator<true,Encoding,Allocator> ConstIterator;
200 typedef GenericMemberIterator<false,Encoding,Allocator> NonConstIterator;
222 GenericMemberIterator() : ptr_() {} in GenericMemberIterator() function
240 GenericMemberIterator(const NonConstIterator & it) : ptr_(it.ptr_) {} in GenericMemberIterator() function
262 …template <bool Const_> bool operator==(const GenericMemberIterator<Const_, Encoding, Allocator>& t…
263 …template <bool Const_> bool operator!=(const GenericMemberIterator<Const_, Encoding, Allocator>& t…
264 …template <bool Const_> bool operator<=(const GenericMemberIterator<Const_, Encoding, Allocator>& t…
265 …template <bool Const_> bool operator>=(const GenericMemberIterator<Const_, Encoding, Allocator>& t…
266 …template <bool Const_> bool operator< (const GenericMemberIterator<Const_, Encoding, Allocator>& t…
267 …template <bool Const_> bool operator> (const GenericMemberIterator<Const_, Encoding, Allocator>& t…
270 …template <bool Const_> std::strong_ordering operator<=>(const GenericMemberIterator<Const_, Encodi…
286 explicit GenericMemberIterator(Pointer p) : ptr_(p) {} in GenericMemberIterator() function
296 class GenericMemberIterator; variable
300 class GenericMemberIterator<false,Encoding,Allocator> {
307 class GenericMemberIterator<true,Encoding,Allocator> {
676 …typedef typename GenericMemberIterator<false,Encoding,Allocator>::Iterator MemberIterator; //!< M…
677 …typedef typename GenericMemberIterator<true,Encoding,Allocator>::Iterator ConstMemberIterator; //…
2958 …typedef GenericMemberIterator<Const, typename ValueT::EncodingType, typename ValueT::AllocatorType…
2959 …typedef GenericMemberIterator<true, typename ValueT::EncodingType, typename ValueT::AllocatorType>…