Home
last modified time | relevance | path

Searched refs:ConstIterator (Results 1 – 1 of 1) sorted by relevance

/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
Ddocument.h127 typedef GenericMemberIterator<true,Encoding,Allocator> ConstIterator; typedef
181 bool operator==(ConstIterator that) const { return ptr_ == that.ptr_; }
182 bool operator!=(ConstIterator that) const { return ptr_ != that.ptr_; }
183 bool operator<=(ConstIterator that) const { return ptr_ <= that.ptr_; }
184 bool operator>=(ConstIterator that) const { return ptr_ >= that.ptr_; }
185 bool operator< (ConstIterator that) const { return ptr_ < that.ptr_; }
186 bool operator> (ConstIterator that) const { return ptr_ > that.ptr_; }
197 DifferenceType operator-(ConstIterator that) const { return ptr_-that.ptr_; }