Searched defs:current_ (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/tools/aapt2/io/
H A DFileSystem.h51 std::map<std::string, std::unique_ptr<IFile>>::const_iterator current_, end_; member in class:aapt::io::FileCollectionIterator
H A DZipArchive.h61 std::vector<std::unique_ptr<IFile>>::const_iterator current_, end_; member in class:aapt::io::ZipFileCollectionIterator
/frameworks/base/libs/androidfw/include/androidfw/
H A DAttributeFinder.h69 Iterator current_; member in class:android::BackTrackingAttributeFinder
88 current_(begin),
100 current_ = framework_start_;
103 current_ = app_start_;
110 current_ = package_offsets_[idx];
112 current_ = end_;
120 if (current_ == end_) {
121 current_ = largest_;
124 if (current_ != end_) {
125 current_attr_ = static_cast<const Derived*>(this)->GetAttribute(current_);
[all...]
/frameworks/base/tools/aapt2/optimize/
H A DVersionCollapser.cpp30 : current_(begin), end_(end), pred_(pred) {
34 bool HasNext() { return current_ != end_; }
37 Iterator iter = current_;
38 ++current_;
47 for (; current_ != end_; ++current_) {
48 if (pred_(*current_)) {
54 Iterator current_, end_; member in class:aapt::FilterIterator

Completed in 198 milliseconds