/frameworks/native/libs/vr/libpdx/private/pdx/rpc/ |
H A D | array_wrapper.h | 30 ArrayWrapper() : buffer_(nullptr), capacity_(0), end_(0) {} 35 end_(capacity < size ? capacity : size) {} 50 end_ = other.end_; 62 end_ = other.end_; 65 other.end_ = 0; 75 pointer end() { return &buffer_[end_]; } 77 const_pointer end() const { return &buffer_[end_]; } 79 size_type size() const { return end_; } 99 size_type end_; member in class:android::pdx::rpc::ArrayWrapper [all...] |
H A D | string_wrapper.h | 32 StringWrapper() : buffer_(nullptr), capacity_(0), end_(0) {} 37 end_(capacity < size ? capacity : size) {} 55 end_ = other.end_; 67 end_ = other.end_; 70 other.end_ = 0; 80 pointer end() { return &buffer_[end_]; } 82 const_pointer end() const { return &buffer_[end_]; } 84 size_type size() const { return end_; } 102 size_type end_; member in class:android::pdx::rpc::StringWrapper [all...] |
H A D | buffer_wrapper.h | 30 BufferWrapper() : buffer_(nullptr), capacity_(0), end_(0) {} 35 end_(capacity < size ? capacity : size) {} 50 end_ = other.end_; 62 end_ = other.end_; 65 other.end_ = 0; 75 pointer end() { return &buffer_[end_]; } 77 const_pointer end() const { return &buffer_[end_]; } 79 size_type size() const { return end_; } 96 size_type end_; member in class:android::pdx::rpc::BufferWrapper [all...] |
/frameworks/base/libs/androidfw/include/androidfw/ |
H A D | AttributeFinder.h | 69 Iterator end_; member in class:android::BackTrackingAttributeFinder 88 end_(end), 113 current_ = end_; 121 if (current_ == end_) { 125 if (current_ != end_) { 148 if (!(begin_ < end_)) { 149 return end_; 171 while (current_ != end_) { 181 if (current_ != end_) { 202 return end_; [all...] |
/frameworks/base/tools/aapt2/optimize/ |
H A D | VersionCollapser.cpp | 30 : current_(begin), end_(end), pred_(pred) { 34 bool HasNext() { return current_ != end_; } 47 for (; current_ != end_; ++current_) { 54 Iterator current_, end_; member in class:aapt::FilterIterator
|
/frameworks/base/tools/aapt2/io/ |
H A D | FileSystem.cpp | 55 : current_(collection->files_.begin()), end_(collection->files_.end()) {} 58 return current_ != end_;
|
H A D | FileSystem.h | 54 std::map<std::string, std::unique_ptr<IFile>>::const_iterator current_, end_; member in class:aapt::io::FileCollectionIterator
|
H A D | ZipArchive.h | 58 std::vector<std::unique_ptr<IFile>>::const_iterator current_, end_; member in class:aapt::io::ZipFileCollectionIterator
|
H A D | ZipArchive.cpp | 74 : current_(collection->files_.begin()), end_(collection->files_.end()) {} 77 return current_ != end_;
|
/frameworks/base/tools/aapt2/util/ |
H A D | Util.h | 239 bool end_; member in class:aapt::Tokenizer::iterator 249 return end_; 254 const iterator end_; member in class:aapt::Tokenizer
|
H A D | Util.cpp | 350 end_ = true; 372 token_.end() == rhs.token_.end() && end_ == rhs.end_; 380 : str_(s), separator_(sep), token_(tok), end_(end) {} 384 end_(str, sep, StringPiece(str.end(), 0), true) {}
|