Searched refs:end_ (Results 1 – 11 of 11) sorted by relevance
/frameworks/native/libs/vr/libpdx/private/pdx/rpc/ |
D | array_wrapper.h | 30 ArrayWrapper() : buffer_(nullptr), capacity_(0), end_(0) {} in ArrayWrapper() 35 end_(capacity < size ? capacity : size) {} in ArrayWrapper() 50 end_ = other.end_; 62 end_ = other.end_; 65 other.end_ = 0; 75 pointer end() { return &buffer_[end_]; } in end() 77 const_pointer end() const { return &buffer_[end_]; } in end() 79 size_type size() const { return end_; } in size() 88 end_ = size; in resize() 90 end_ = capacity_; in resize() [all …]
|
D | string_wrapper.h | 32 StringWrapper() : buffer_(nullptr), capacity_(0), end_(0) {} in StringWrapper() 37 end_(capacity < size ? capacity : size) {} in StringWrapper() 55 end_ = other.end_; 67 end_ = other.end_; 70 other.end_ = 0; 80 pointer end() { return &buffer_[end_]; } in end() 82 const_pointer end() const { return &buffer_[end_]; } in end() 84 size_type size() const { return end_; } in size() 85 size_type length() const { return end_; } in length() 91 end_ = size; in resize() [all …]
|
D | buffer_wrapper.h | 30 BufferWrapper() : buffer_(nullptr), capacity_(0), end_(0) {} in BufferWrapper() 35 end_(capacity < size ? capacity : size) {} in BufferWrapper() 50 end_ = other.end_; 62 end_ = other.end_; 65 other.end_ = 0; 75 pointer end() { return &buffer_[end_]; } in end() 77 const_pointer end() const { return &buffer_[end_]; } in end() 79 size_type size() const { return end_; } in size() 85 end_ = size; in resize() 87 end_ = capacity_; in resize() [all …]
|
/frameworks/base/libs/androidfw/include/androidfw/ |
D | AttributeFinder.h | 69 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 …]
|
/frameworks/base/tools/aapt2/optimize/ |
D | VersionCollapser.cpp | 33 : 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
|
/frameworks/base/tools/aapt2/util/ |
D | Util.cpp | 471 end_ = true; in operator ++() 493 token_.end() == rhs.token_.end() && end_ == rhs.end_; in operator ==() 501 : str_(s), separator_(sep), token_(tok), end_(end) {} in iterator() 505 end_(str, sep, StringPiece(str.end(), 0), true) {} in Tokenizer()
|
D | Util.h | 249 bool end_; variable 259 return end_; in end() 264 const iterator end_; variable
|
/frameworks/base/tools/aapt2/io/ |
D | FileSystem.cpp | 59 : current_(collection->files_.begin()), end_(collection->files_.end()) {} in FileCollectionIterator() 62 return current_ != end_; in HasNext()
|
D | ZipArchive.cpp | 81 : current_(collection->files_.begin()), end_(collection->files_.end()) {} in ZipFileCollectionIterator() 84 return current_ != end_; in HasNext()
|
D | FileSystem.h | 54 std::map<std::string, std::unique_ptr<IFile>>::const_iterator current_, end_; variable
|
D | ZipArchive.h | 58 std::vector<std::unique_ptr<IFile>>::const_iterator current_, end_;
|