Home | History | Annotate | Download | only in vintf

Lines Matching defs:mIter

50         IteratorImpl(map_iter i) : mIter(i) {}
53 mIter++;
58 mIter++;
62 mIter--;
67 mIter--;
70 inline ref_type operator*() const { return mIter->second; }
71 inline ptr_type operator->() const { return &(mIter->second); }
72 inline bool operator==(const IteratorImpl &rhs) const { return mIter == rhs.mIter; }
73 inline bool operator!=(const IteratorImpl &rhs) const { return mIter != rhs.mIter; }
76 map_iter mIter;