Home
last modified time | relevance | path

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

/frameworks/native/libs/vr/libpdx/private/pdx/rpc/
Darray_wrapper.h30 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 …]
Dstring_wrapper.h32 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 …]
Dbuffer_wrapper.h30 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/
DAttributeFinder.h68 Iterator end_; variable
87 end_(end), in BackTrackingAttributeFinder()
112 current_ = end_; in JumpToClosestAttribute()
120 if (current_ == end_) { in JumpToClosestAttribute()
124 if (current_ != end_) { in JumpToClosestAttribute()
147 if (!(begin_ < end_)) { in Find()
148 return end_; in Find()
170 while (current_ != end_) { in Find()
180 if (current_ != end_) { in Find()
201 return end_; in Find()
/frameworks/base/tools/aapt2/optimize/
DVersionCollapser.cpp30 : current_(begin), end_(end), pred_(pred) { in FilterIterator()
34 bool HasNext() { return current_ != end_; } in HasNext()
47 for (; current_ != end_; ++current_) { in Advance()
54 Iterator current_, end_; member in aapt::FilterIterator
/frameworks/base/tools/aapt2/io/
DFileSystem.cpp48 : current_(collection->files_.begin()), end_(collection->files_.end()) {} in FileCollectionIterator()
50 bool FileCollectionIterator::HasNext() { return current_ != end_; } in HasNext()
DZipArchive.cpp68 : current_(collection->files_.begin()), end_(collection->files_.end()) {} in ZipFileCollectionIterator()
70 bool ZipFileCollectionIterator::HasNext() { return current_ != end_; } in HasNext()
DFileSystem.h51 std::map<std::string, std::unique_ptr<IFile>>::const_iterator current_, end_;
DZipArchive.h61 std::vector<std::unique_ptr<IFile>>::const_iterator current_, end_;
/frameworks/base/tools/aapt2/util/
DUtil.cpp494 end_ = true; in operator ++()
516 token_.end() == rhs.token_.end() && end_ == rhs.end_; in operator ==()
525 : str_(s), separator_(sep), token_(tok), end_(end) {} in iterator()
529 end_(str, sep, StringPiece(str.end(), 0), true) {} in Tokenizer()
DUtil.h254 bool end_; variable
264 return end_; in end()
269 const iterator end_; variable