Lines Matching full:base
116 : mCurrent(i.base()) { }
160 const _Iterator& base() const {
173 { return lhs.base() == rhs.base(); }
179 { return lhs.base() == rhs.base(); }
185 { return lhs.base() != rhs.base(); }
191 { return lhs.base() != rhs.base(); }
198 { return __wrapper_iterator<_Iterator, _Container>(i.base() + n); }
206 { return lhs.base() - rhs.base(); }
227 // iter::base
229 // For wrapper iterators, android::iter::base(it) returns a pointer
230 // (it.base()) which is going to match implementation(s) that use
235 static _Iterator base(_Iterator it) { return it; }
240 static typename _Iterator::iterator_type base(_Iterator it) {
241 return it.base();