HomeSort by relevance Sort by last modified time
    Searched defs:current_ (Results 1 - 25 of 62) sorted by null

1 2 3

  /bionic/linker/
linker_sleb128.h 43 : current_(buffer), end_(buffer+count) { }
53 if (current_ >= end_) {
56 byte = *current_++;
69 const uint8_t* current_; member in class:sleb128_decoder
linker_reloc_iterators.h 48 : begin_(rel_array), end_(begin_ + count), current_(begin_) {}
51 return current_ < end_;
55 return current_++;
60 rel_t* current_; member in class:plain_reloc_iterator
  /external/v8/tools/clang/blink_gc_plugin/
CheckGCRootsVisitor.h 33 RootPath current_; member in class:CheckGCRootsVisitor
CheckFieldsVisitor.h 51 FieldPoint* current_; member in class:CheckFieldsVisitor
  /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/tensorflow/tensorflow/contrib/coder/kernels/
range_coder.h 101 string::const_iterator current_; member in class:tensorflow::RangeDecoder
  /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
  /frameworks/base/tools/aapt2/io/
FileSystem.h 54 std::map<std::string, std::unique_ptr<IFile>>::const_iterator current_, end_; member in class:aapt::io::FileCollectionIterator
ZipArchive.h 58 std::vector<std::unique_ptr<IFile>>::const_iterator current_, end_; member in class:aapt::io::ZipFileCollectionIterator
  /external/v8/src/
allocation-site-scopes.h 24 Handle<AllocationSite> current() { return current_; }
32 *(current_.location()) = site;
37 current_ = Handle<AllocationSite>::New(*top_, isolate());
43 Handle<AllocationSite> current_; member in class:v8::internal::AllocationSiteContext
source-position-table.h 70 return current_.code_offset;
74 return SourcePosition::FromRaw(current_.source_position);
78 return current_.is_statement;
87 PositionTableEntry current_; member in class:v8::internal::SourcePositionTableIterator
  /frameworks/base/tools/aapt2/optimize/
VersionCollapser.cpp 30 : current_(begin), end_(end), pred_(pred) {
34 bool HasNext() { return current_ != end_; }
37 Iterator iter = current_;
38 ++current_;
47 for (; current_ != end_; ++current_) {
48 if (pred_(*current_)) {
54 Iterator current_, end_; member in class:aapt::FilterIterator
  /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...]
  /system/core/init/parser/
tokenizer.h 64 Token current_; member in class:init::Tokenizer
  /toolchain/binutils/binutils-2.27/gold/
descriptors.h 92 int current_; member in class:gold::Descriptors
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_list.h 124 explicit IteratorBase(ItemTy *current) : current_(current) {}
126 current_ = current_->next;
130 return current_ != other.current_;
133 return *current_;
136 ItemTy *current_; member in class:__sanitizer::IntrusiveList::IteratorBase
sanitizer_procmaps.h 62 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 54 : data_(data), current_(current) {}
56 : data_(other.data_), current_(other.current_) {}
59 return std::make_pair(current_, (*data_)[current_]);
62 return current_ == other.current_ && data_ == other.data_;
68 ++current_;
75 size_t current_; member in class:v8::internal::compiler::NodeAuxData::const_iterator
  /frameworks/base/libs/androidfw/include/androidfw/
AttributeFinder.h 70 Iterator current_; member in class:android::BackTrackingAttributeFinder
89 current_(begin),
101 current_ = framework_start_;
104 current_ = app_start_;
111 current_ = package_offsets_[idx];
113 current_ = end_;
121 if (current_ == end_) {
122 current_ = largest_;
125 if (current_ != end_) {
126 current_attr_ = static_cast<const Derived*>(this)->GetAttribute(current_);
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/val/
basic_block.h 159 const BasicBlock* current_; member in class:libspirv::BasicBlock::DominatorIterator
  /external/tensorflow/tensorflow/core/lib/io/
block.cc 94 // current_ is offset in data_ of current entry. >= restarts_ if !Valid
95 uint32 current_; member in class:tensorflow::table::Block::Iter
96 uint32 restart_index_; // Index of restart block in which current_ falls
118 // current_ will be fixed by ParseNextKey();
130 current_(restarts_),
135 bool Valid() const override { return current_ < restarts_; }
198 current_ = restarts_;
206 current_ = NextEntryOffset();
207 const char* p = data_ + current_;
211 current_ = restarts_
    [all...]
  /external/vulkan-validation-layers/demos/smoke/
Simulation.h 47 Data current_; member in class:Animation
74 Subpath current_; member in class:Path

Completed in 608 milliseconds

1 2 3