Home
last modified time | relevance | path

Searched refs:next_chunk_ (Results 1 – 3 of 3) sorted by relevance

/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/android/
DChunk.java123 private ResChunk_header next_chunk_; field in Chunk.Iterator
129 this.next_chunk_ = new ResChunk_header(buf.myBuf(), buf.myOffset()); in Iterator()
146 ResChunk_header this_chunk = next_chunk_; in Next()
153 next_chunk_ = null; in Next()
155 next_chunk_ = new ResChunk_header( in Next()
177 int size = dtohl(next_chunk_.size); in VerifyNextChunkNonFatal()
189 int header_start = next_chunk_.myOffset(); in VerifyNextChunk()
204 int header_size = dtohs(next_chunk_.headerSize); in VerifyNextChunk()
205 int size = dtohl(next_chunk_.size); in VerifyNextChunk()
/external/protobuf/src/google/protobuf/
Dparse_context.cc103 if (next_chunk_ == nullptr) return nullptr; // We've reached end of stream. in Next()
104 if (next_chunk_ != buffer_) { in Next()
107 buffer_end_ = next_chunk_ + size_ - kSlopBytes; in Next()
108 auto res = next_chunk_; in Next()
109 next_chunk_ = buffer_; in Next()
127 next_chunk_ = static_cast<const char*>(data); in Next()
133 next_chunk_ = buffer_; in Next()
152 next_chunk_ = nullptr; in Next()
271 next_chunk_ = buffer_; in InitFrom()
276 next_chunk_ = buffer_; in InitFrom()
[all …]
Dparse_context.h117 if (next_chunk_ == buffer_) { in BackUp()
192 (next_chunk_ == nullptr || ptr - buffer_end_ > limit_); in IsExceedingLimit()
217 next_chunk_ = buffer_; in InitFrom()
224 next_chunk_ = nullptr; in InitFrom()
246 const char* next_chunk_; variable