Home
last modified time | relevance | path

Searched refs:end_ (Results 1 – 10 of 10) sorted by relevance

/aosp14/frameworks/base/libs/androidfw/include/androidfw/
H A DAttributeFinder.h69 Iterator end_; variable
88 end_(end), in BackTrackingAttributeFinder()
113 current_ = end_; in JumpToClosestAttribute()
121 if (current_ == end_) { in JumpToClosestAttribute()
125 if (current_ != end_) { in JumpToClosestAttribute()
148 if (!(begin_ < end_)) { in Find()
149 return end_; in Find()
171 while (current_ != end_) { in Find()
181 if (current_ != end_) { in Find()
202 return end_; in Find()
[all …]
/aosp14/system/core/property_service/libpropertyinfoserializer/
H A Dspace_tokenizer.h26 : string_(string), it_(string_.begin()), end_(string_.end()) {} in SpaceTokenizer()
30 while (it_ != end_ && !isspace(*it_)) { in GetNext()
33 while (it_ != end_ && isspace(*it_)) { in GetNext()
39 std::string GetRemaining() { return std::string(it_, end_); } in GetRemaining()
44 std::string::const_iterator end_; variable
/aosp14/frameworks/base/tools/aapt2/optimize/
H A DVersionCollapser.cpp33 : current_(begin), end_(end), pred_(pred) { in FilterIterator()
37 bool HasNext() { return current_ != end_; } in HasNext()
50 for (; current_ != end_; ++current_) { in Advance()
57 Iterator current_, end_; member in aapt::FilterIterator
/aosp14/frameworks/base/tools/aapt2/util/
H A DUtil.cpp380 end_ = true; in operator ++()
402 token_.end() == rhs.token_.end() && end_ == rhs.end_; in operator ==()
410 : str_(s), separator_(sep), token_(tok), end_(end) { in iterator()
415 end_(str, sep, StringPiece(str.end(), 0), true) { in Tokenizer()
H A DUtil.h236 bool end_; variable
246 return end_; in end()
251 const iterator end_; variable
/aosp14/frameworks/base/tools/aapt2/io/
H A DZipArchive.cpp80 : current_(collection->files_.begin()), end_(collection->files_.end()) {} in ZipFileCollectionIterator()
83 return current_ != end_; in HasNext()
H A DFileSystem.cpp58 : current_(collection->files_.begin()), end_(collection->files_.end()) {} in FileCollectionIterator()
61 return current_ != end_; in HasNext()
H A DFileSystem.h54 std::map<std::string, std::unique_ptr<IFile>>::const_iterator current_, end_; variable
H A DZipArchive.h58 std::vector<std::unique_ptr<IFile>>::const_iterator current_, end_;
/aosp14/system/core/fs_mgr/libsnapshot/
H A Dsnapshot_reader.cpp136 end_ = buf_ + count; in MemoryByteSink()
154 size_t remaining() const { return end_ - pos_; } in remaining()
159 uint8_t* end_; member in android::snapshot::MemoryByteSink