Searched refs:current_ (Results 1 – 5 of 5) sorted by relevance
70 Iterator current_; variable89 current_(begin), in BackTrackingAttributeFinder()101 current_ = framework_start_; in JumpToClosestAttribute()104 current_ = app_start_; in JumpToClosestAttribute()111 current_ = package_offsets_[idx]; in JumpToClosestAttribute()113 current_ = end_; in JumpToClosestAttribute()121 if (current_ == end_) { in JumpToClosestAttribute()122 current_ = largest_; in JumpToClosestAttribute()125 if (current_ != end_) { in JumpToClosestAttribute()126 current_attr_ = static_cast<const Derived*>(this)->GetAttribute(current_); in JumpToClosestAttribute()[all …]
30 : current_(begin), end_(end), pred_(pred) { in FilterIterator()34 bool HasNext() { return current_ != end_; } in HasNext()37 Iterator iter = current_; in NextIter()38 ++current_; in NextIter()47 for (; current_ != end_; ++current_) { in Advance()48 if (pred_(*current_)) { in Advance()54 Iterator current_, end_; member in aapt::FilterIterator
55 : current_(collection->files_.begin()), end_(collection->files_.end()) {} in FileCollectionIterator()58 return current_ != end_; in HasNext()62 IFile* result = current_->second.get(); in Next()63 ++current_; in Next()
54 std::map<std::string, std::unique_ptr<IFile>>::const_iterator current_, end_; variable
58 std::vector<std::unique_ptr<IFile>>::const_iterator current_, end_;