/bionic/linker/ |
linker_sleb128.h | 28 : current_(buffer), end_(buffer+count) { } 38 if (current_ >= end_) { 41 byte = *current_++; 54 const uint8_t* current_; member in class:sleb128_decoder
|
linker_reloc_iterators.h | 37 : begin_(rel_array), end_(begin_ + count), current_(begin_) {} 40 return current_ < end_; 44 return current_++; 49 rel_t* current_; member in class:plain_reloc_iterator
|
/external/webrtc/webrtc/modules/desktop_capture/ |
screen_capture_frame_queue.h | 55 return frames_[current_].get(); 59 return frames_[(current_ + kQueueLength - 1) % kQueueLength].get(); 64 int current_; member in class:webrtc::ScreenCaptureFrameQueue
|
/external/webrtc/webrtc/base/ |
multipart.h | 75 size_t current_; // The index into parts_ of the current read position. member in class:rtc::MultipartStream
|
httpserver.h | 99 HttpServerTransaction* current_; member in class:rtc::HttpServer::Connection
|
/external/v8/src/ |
allocation-site-scopes.h | 26 Handle<AllocationSite> current() { return current_; } 34 *(current_.location()) = site; 39 current_ = Handle<AllocationSite>::New(*top_, isolate()); 45 Handle<AllocationSite> current_; member in class:v8::internal::AllocationSiteContext
|
bit-vector.h | 23 current_(-1) { 34 return current_; 41 current_ += 8; 48 current_++; 56 int current_; member in class:v8::internal::BitVector::BASE_EMBEDDED
|
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/ |
filewritestream.h | 31 FileWriteStream(std::FILE* fp, char* buffer, size_t bufferSize) : fp_(fp), buffer_(buffer), bufferEnd_(buffer + bufferSize), current_(buffer_) {
36 if (current_ >= bufferEnd_)
39 *current_++ = c;
43 size_t avail = static_cast<size_t>(bufferEnd_ - current_);
45 std::memset(current_, c, avail);
46 current_ += avail;
49 avail = static_cast<size_t>(bufferEnd_ - current_);
53 std::memset(current_, c, n);
54 current_ += n;
59 if (current_ != buffer_) { 84 char *current_; member in class:FileWriteStream [all...] |
filereadstream.h | 37 FileReadStream(std::FILE* fp, char* buffer, size_t bufferSize) : fp_(fp), buffer_(buffer), bufferSize_(bufferSize), bufferLast_(0), current_(buffer_), readCount_(0), count_(0), eof_(false) {
43 Ch Peek() const { return *current_; }
44 Ch Take() { Ch c = *current_; Read(); return c; }
45 size_t Tell() const { return count_ + static_cast<size_t>(current_ - buffer_); }
55 return (current_ + 4 <= bufferLast_) ? current_ : 0;
60 if (current_ < bufferLast_)
61 ++current_;
66 current_ = buffer_;
80 Ch *current_;
member in class:FileReadStream [all...] |
encodedstream.h | 39 current_ = Encoding::TakeBOM(is_);
42 Ch Peek() const { return current_; }
43 Ch Take() { Ch c = current_; current_ = Encoding::Take(is_); return c; }
57 Ch current_;
member in class:EncodedInputStream 116 current_ = takeFunc_(*is_);
122 Ch Peek() const { return current_; }
123 Ch Take() { Ch c = current_; current_ = takeFunc_(*is_); return c; }
188 Ch current_;
member in class:AutoUTFInputStream [all...] |
/system/core/init/parser/ |
tokenizer.h | 64 Token current_; member in class:init::Tokenizer
|
/toolchain/binutils/binutils-2.25/gold/ |
descriptors.h | 92 int current_; member in class:gold::Descriptors
|
cref.cc | 47 : objects_(), archives_(), current_(&this->objects_) 121 Objects* current_; member in class:gold::Cref_inputs 129 this->current_->push_back(object); 137 gold_assert(this->current_ == &this->objects_); 145 this->current_ = this->archives_[archive->name()].objects; 153 gold_assert(this->current_ != &this->objects_); 154 this->current_ = &this->objects_;
|
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_list.h | 123 : list_(list), current_(list->first_) { } 125 ItemTy *ret = current_; 126 if (current_) current_ = current_->next; 129 bool hasNext() const { return current_ != nullptr; } 132 ItemTy *current_; member in class:__sanitizer::IntrusiveList::IteratorBase
|
sanitizer_procmaps.h | 63 const char *current_; member in class:__sanitizer::MemoryMappingLayout
|
/external/google-breakpad/src/common/ |
simple_string_dictionary.h | 82 current_(0) { 88 while (current_ < map_.num_entries) { 89 const Entry* entry = &map_.entries_[current_++]; 99 size_t current_; member in class:google_breakpad::NonAllocatingMap::Iterator
|
/external/v8/src/compiler/ |
node-aux-data.h | 55 : data_(data), current_(current) {} 57 : data_(other.data_), current_(other.current_) {} 60 return std::make_pair(current_, (*data_)[current_]); 63 return current_ == other.current_ && data_ == other.data_; 69 ++current_; 76 size_t current_; member in class:v8::internal::compiler::NodeAuxData::const_iterator
|
state-values-utils.cc | 128 : values_(values), count_(count), current_(0) {} 132 current_++; 136 bool done() { return current_ >= count_; } 140 return values_[current_]; 146 size_t current_; member in class:v8::internal::compiler::StateValuesCache::ValueArrayIterator
|
/external/vulkan-validation-layers/demos/smoke/ |
Simulation.h | 53 Data current_; member in class:Animation 80 Subpath current_; member in class:Path
|
/external/webrtc/webrtc/modules/audio_processing/intelligibility/ |
intelligibility_utils.h | 153 rtc::scoped_ptr<float[]> current_; member in class:webrtc::intelligibility::GainApplier
|
/external/jsoncpp/include/json/ |
reader.h | 236 Location current_; member in class:Json::Reader
|
/external/protobuf/src/google/protobuf/io/ |
tokenizer.h | 251 Token current_; // Returned by current(). member in class:google::protobuf::io::Tokenizer 269 // E.g. StartToken() calls RecordTo(¤t_.text). record_start_ is the 300 // end of the last token. After this returns, current_.text will 339 // Consumed a slash, then realized it wasn't a comment. current_ has 386 return current_;
|
/external/v8/test/cctest/compiler/ |
test-jump-threading.cc | 21 current_(NULL) {} 26 InstructionBlock* current_; member in class:v8::internal::compiler::TestCode 79 sequence_.EndBlock(current_->rpo_number()); 80 current_ = NULL; 87 if (current_ == NULL) { 88 current_ = new (main_zone()) 91 blocks_.push_back(current_); 96 CHECK(current_ == NULL);
|
/prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/io/ |
tokenizer.h | 235 Token current_; // Returned by current(). member in class:google::protobuf::io::Tokenizer 253 // E.g. StartToken() calls RecordTo(¤t_.text). record_start_ is the 282 // end of the last token. After this returns, current_.text will 321 // Consumed a slash, then realized it wasn't a comment. current_ has 368 return current_;
|
/prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/io/ |
tokenizer.h | 235 Token current_; // Returned by current(). member in class:google::protobuf::io::Tokenizer 253 // E.g. StartToken() calls RecordTo(¤t_.text). record_start_ is the 282 // end of the last token. After this returns, current_.text will 321 // Consumed a slash, then realized it wasn't a comment. current_ has 368 return current_;
|