Home
last modified time | relevance | path

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

/frameworks/base/libs/androidfw/include/androidfw/
DAttributeFinder.h70 Iterator current_; variable
89 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 …]
/frameworks/base/tools/aapt2/optimize/
DVersionCollapser.cpp33 : current_(begin), end_(end), pred_(pred) { in FilterIterator()
37 bool HasNext() { return current_ != end_; } in HasNext()
40 Iterator iter = current_; in NextIter()
41 ++current_; in NextIter()
50 for (; current_ != end_; ++current_) { in Advance()
51 if (pred_(*current_)) { in Advance()
57 Iterator current_, end_; member in aapt::FilterIterator
/frameworks/base/tools/aapt2/io/
DFileSystem.cpp59 : current_(collection->files_.begin()), end_(collection->files_.end()) {} in FileCollectionIterator()
62 return current_ != end_; in HasNext()
66 IFile* result = current_->second.get(); in Next()
67 ++current_; in Next()
DZipArchive.cpp81 : current_(collection->files_.begin()), end_(collection->files_.end()) {} in ZipFileCollectionIterator()
84 return current_ != end_; in HasNext()
88 IFile* result = current_->get(); in Next()
89 ++current_; in Next()
DFileSystem.h54 std::map<std::string, std::unique_ptr<IFile>>::const_iterator current_, end_; variable
DZipArchive.h58 std::vector<std::unique_ptr<IFile>>::const_iterator current_, end_;