Home
last modified time | relevance | path

Searched refs:cursor_ (Results 1 – 4 of 4) sorted by relevance

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/js/binary/
Ddecoder.js78 this.cursor_ = 0;
104 this.cursor_ = 0;
160 this.cursor_ = 0;
200 if (this.cursor_ == this.elements_.length) {
204 this.nextValue_ = this.elements_[this.cursor_++];
246 this.cursor_ = 0;
331 this.cursor_ = 0;
358 this.cursor_ = this.start_;
382 this.cursor_ = this.start_;
391 return this.cursor_;
[all …]
/frameworks/compile/libbcc/bcinfo/Wrap/
Dbitcode_wrapperer.cpp62 cursor_(0), in BitcodeWrapperer()
94 cursor_ = 0; in ClearBuffer()
116 if (cursor_ > 0) { in FillBuffer()
121 if (cursor_ < buffer_size_) { in FillBuffer()
123 while (cursor_ < buffer_size_) { in FillBuffer()
124 buffer_[i++] = buffer_[cursor_++]; in FillBuffer()
126 cursor_ = 0; in FillBuffer()
163 cursor_ += kWordSize; in ReadWord()
211 &buffer_[cursor_]); in ParseWrapperHeader()
221 field.Read(&buffer_[cursor_], buffer_size_); in ParseWrapperHeader()
[all …]
/frameworks/native/libs/vr/libpdx/private/pdx/rpc/
Dpayload.h25 cursor_(buffer_.begin()), in MessagePayload()
30 typename BufferType::iterator& Cursor() { return cursor_; } in Cursor()
42 cursor_ = buffer_.begin(); in Resize()
54 cursor_ = buffer_.begin() + offset; in Extend()
61 cursor_ = buffer_.begin(); in Clear()
72 typename BufferType::iterator cursor_; variable
/frameworks/compile/libbcc/bcinfo/include/bcinfo/Wrap/
Dbitcode_wrapperer.h138 uint8_t BufferLookahead(int i) { return buffer_[cursor_ + i]; } in BufferLookahead()
141 size_t GetBufferUnreadBytes() { return buffer_size_ - cursor_; } in GetBufferUnreadBytes()
146 cursor_ = 0; in ResetCursor()
187 size_t cursor_; variable