Searched defs:cursor_ (Results 1 - 9 of 9) sorted by relevance

/external/webrtc/webrtc/modules/desktop_capture/
H A Ddesktop_and_cursor_composer.h54 rtc::scoped_ptr<MouseCursor> cursor_; member in class:webrtc::DesktopAndCursorComposer
/external/libmojo/mojo/public/cpp/bindings/lib/
H A Dbuffer.h32 cursor_ = reinterpret_cast<uintptr_t>(data);
33 data_end_ = cursor_ + size;
46 uintptr_t result = cursor_;
47 cursor_ += num_bytes;
48 if (cursor_ > data_end_ || cursor_ < result) {
50 cursor_ -= num_bytes;
61 uintptr_t cursor_ = 0; member in class:mojo::internal::Buffer
/external/google-breakpad/src/common/linux/
H A Delf_symbols_to_module.cc74 : value_size_(value_size), cursor_(buffer, big_endian) {
93 // Read the symbol at cursor_, and set symbol_ appropriately.
99 cursor_
108 cursor_
116 symbol_.at_end = !cursor_;
123 ByteCursor cursor_; member in class:google_breakpad::ELFSymbolIterator
/external/google-breakpad/src/common/
H A Dstabs_reader.h166 // Read the STABS entry at cursor_, and set entry_ appropriately.
173 ByteCursor cursor_; member in class:google_breakpad::StabsReader::EntryIterator
/external/vixl/src/
H A Dcode-buffer-vixl.h58 ptrdiff_t cursor_offset = cursor_ - buffer_;
74 VIXL_ASSERT((buffer_ <= rewound_cursor) && (rewound_cursor <= cursor_));
75 cursor_ = rewound_cursor;
81 VIXL_ASSERT((offset >= 0) && (offset <= (cursor_ - buffer_)));
98 VIXL_ASSERT((cursor_ >= buffer_) && (cursor_ <= (buffer_ + capacity_)));
99 return (buffer_ + capacity_) - cursor_;
106 VIXL_ASSERT((cursor_ >= buffer_) && (cursor_ <= (buffer_ + capacity_)));
107 return cursor_
182 byte* cursor_; member in class:vixl::CodeBuffer
[all...]
/external/v8/src/crankshaft/
H A Dhydrogen-check-elimination.cc81 cursor_(0),
196 copy->cursor_ = cursor_;
316 cursor_ = 0;
671 cursor_ = 0;
709 int max = size_, dest = 0, old_cursor = cursor_;
715 if (i < old_cursor) cursor_--;
720 DCHECK(cursor_ <= size_);
723 if (cursor_ == size_) return; // Cursor already points at end.
724 if (cursor_ !
804 int16_t cursor_; // Must be <= kMaxTrackedObjects member in class:v8::internal::HCheckTable
[all...]
/external/v8/src/
H A Dstring-builder.h335 cursor_ = start_;
338 INLINE(void Append(DestChar c)) { *(cursor_++) = c; }
344 int written() { return static_cast<int>(cursor_ - start_); }
348 DestChar* cursor_; member in class:v8::internal::ReplacementStringBuilder::IncrementalStringBuilder::NoExtend
/external/flatbuffers/include/flatbuffers/
H A Didl.h447 ParserState() : cursor_(nullptr), line_(1), token_(-1) {}
450 const char *cursor_; member in struct:flatbuffers::ParserState
/external/google-breakpad/src/common/dwarf/
H A Ddwarf2reader.cc1209 address_(address), entry_(NULL), cursor_(NULL) { }
1290 uint64 CursorOffset() { return entry_->offset + (cursor_ - entry_->start); }
1315 const char *cursor_; member in class:CallFrameInfo::State
1332 cursor_ = entry_->instructions;
1333 while (cursor_ < entry_->end)
1344 cursor_ = entry_->instructions;
1345 while (cursor_ < entry_->end)
1357 size_t bytes_left = entry_->end - cursor_;
1360 operands->register_number = reader_->ReadUnsignedLEB128(cursor_, &len);
1362 cursor_
[all...]

Completed in 220 milliseconds