HomeSort by relevance Sort by last modified time
    Searched refs:cursor_ (Results 1 - 25 of 32) sorted by null

1 2

  /external/chromium_org/content/browser/indexed_db/
indexed_db_cursor.cc 21 : cursor_(cursor), key_(key.Pass()), callbacks_(callbacks) {}
25 scoped_refptr<IndexedDBCursor> cursor_; member in class:content::IndexedDBCursor::CursorIterationOperation
36 : cursor_(cursor), count_(count), callbacks_(callbacks) {}
40 scoped_refptr<IndexedDBCursor> cursor_; member in class:content::IndexedDBCursor::CursorAdvanceOperation
51 : cursor_(cursor),
57 scoped_refptr<IndexedDBCursor> cursor_; member in class:content::IndexedDBCursor::CursorPrefetchIterationOperation
70 cursor_(cursor.Pass()),
98 if (!cursor_->cursor_ || !cursor_->cursor_->Advance(count_))
    [all...]
indexed_db_cursor.h 36 const IndexedDBKey& key() const { return cursor_->key(); }
37 const IndexedDBKey& primary_key() const { return cursor_->primary_key(); }
40 : cursor_->Value();
58 scoped_ptr<IndexedDBBackingStore::Cursor> cursor_; member in class:content::IndexedDBCursor
  /external/chromium_org/components/autofill/core/browser/
autofill_scanner.cc 14 : cursor_(fields.begin()),
25 ++cursor_;
34 return *cursor_;
38 return cursor_ == end_;
43 cursor_ = saved_cursor_;
49 cursor_ = begin_ + index;
54 saved_cursor_ = cursor_;
55 return static_cast<size_t>(cursor_ - begin_);
autofill_scanner.h 45 std::vector<const AutofillField*>::const_iterator cursor_; member in class:autofill::AutofillScanner
  /frameworks/compile/libbcc/include/bcinfo/Wrap/
bitcode_wrapperer.h 138 uint8_t BufferLookahead(int i) { return buffer_[cursor_ + i]; }
141 size_t GetBufferUnreadBytes() { return buffer_size_ - cursor_; }
146 cursor_ = 0;
187 size_t cursor_; member in class:BitcodeWrapperer
  /frameworks/compile/libbcc/bcinfo/Wrap/
bitcode_wrapperer.cpp 61 cursor_(0),
93 cursor_ = 0;
115 if (cursor_ > 0) {
120 if (cursor_ < buffer_size_) {
122 while (cursor_ < buffer_size_) {
123 buffer_[i++] = buffer_[cursor_++];
125 cursor_ = 0;
162 cursor_ += kWordSize;
210 &buffer_[cursor_]);
220 field.Read(&buffer_[cursor_], buffer_size_)
    [all...]
  /external/chromium_org/ui/views/corewm/
cursor_manager.cc 23 : cursor_(ui::kCursorNone),
30 gfx::NativeCursor cursor() const { return cursor_; }
31 void set_cursor(gfx::NativeCursor cursor) { cursor_ = cursor; }
61 gfx::NativeCursor cursor_; member in class:views::corewm::internal::CursorState
cursor_manager_unittest.cc 15 gfx::NativeCursor current_cursor() { return cursor_; }
25 cursor_ = cursor;
48 gfx::NativeCursor cursor_; member in class:__anon16909::TestingCursorManager
  /art/compiler/utils/
assembler.cc 38 cursor_ = contents_;
95 cursor_ += delta;
assembler.h 153 *reinterpret_cast<T*>(cursor_) = value;
154 cursor_ += sizeof(T);
197 CHECK_GE(cursor_, contents_);
198 return cursor_ - contents_;
273 int GetPosition() { return cursor_ - contents_; }
282 byte* cursor_; member in class:art::AssemblerBuffer
290 byte* cursor() const { return cursor_; }
  /external/chromium_org/third_party/tcmalloc/chromium/src/
deep-heap-profile.cc 426 return cursor_;
430 cursor_ = 0;
434 RawWrite(fd_, buffer_, cursor_);
435 cursor_ = 0;
440 return ForwardCursor(snprintf(buffer_ + cursor_, size_ - cursor_,
445 char* position = buffer_ + cursor_;
446 int available = size_ - cursor_;
458 char* position = buffer_ + cursor_;
459 int available = size_ - cursor_;
    [all...]
deep-heap-profile.h 117 cursor_(0),
140 int cursor_; member in class:DeepHeapProfile::TextBuffer
  /external/chromium_org/v8/src/
full-codegen.h 147 cursor_ = instruction_start_ + unoptimized->back_edge_table_offset();
148 ASSERT(cursor_ < instruction_start_ + unoptimized->instruction_size());
149 table_length_ = Memory::uint32_at(cursor_);
150 cursor_ += kTableLengthSize;
151 end_ = cursor_ + table_length_ * kEntrySize;
154 bool Done() { return cursor_ >= end_; }
158 cursor_ += kEntrySize;
164 Memory::uint32_at(cursor_ + kAstIdOffset)));
169 return Memory::uint32_at(cursor_ + kLoopDepthOffset);
174 return Memory::uint32_at(cursor_ + kPcOffsetOffset)
191 Address cursor_; member in class:v8::internal::FullCodeGenerator::BackEdgeTableIterator
    [all...]
  /external/chromium_org/webkit/browser/fileapi/
file_writer_delegate.h 93 scoped_refptr<net::DrainableIOBuffer> cursor_; member in class:fileapi::FileWriterDelegate
file_writer_delegate.cc 148 cursor_ = new net::DrainableIOBuffer(io_buffer_.get(), bytes_read_);
157 file_stream_writer_->Write(cursor_.get(),
174 cursor_->DidConsume(write_response);
file_writer_delegate_unittest.cc 181 cursor_(0) {
197 buf->data()[i] = content_[cursor_++];
215 int cursor_; member in class:fileapi::__anon17180::FileWriterDelegateTestJob
  /external/v8/src/
unicode-inl.h 140 uchar result = DecodeCharacter(buffer_, &cursor_);
142 cursor_ = 0;
225 cursor_ = 0;
unicode.h 207 unsigned cursor_; member in class:unibrow::CharacterStream
  /external/chromium_org/ui/base/dragdrop/
os_exchange_data_provider_win.cc 79 FormatEtcEnumerator() : cursor_(0), ref_count_(0) {
93 size_t cursor_; member in class:ui::FormatEtcEnumerator
113 : ref_count_(0), cursor_(0) {
134 while (cursor_ < contents_.size() && index < count) {
135 CloneFormatEtc(contents_[cursor_], &elements_array[index]);
136 ++cursor_;
148 cursor_ += skip_count;
151 return cursor_ <= contents_.size() ? S_OK : S_FALSE;
155 cursor_ = 0;
205 e->cursor_ = other->cursor_
    [all...]
  /external/chromium_org/ui/base/x/
x11_util.cc 247 cursor_ = XcursorImageLoadCursor(GetXDisplay(), image);
252 XFreeCursor(GetXDisplay(), cursor_); local
255 ::Cursor cursor() const { return cursor_; }
273 ::Cursor cursor_; member in class:ui::__anon16670::XCustomCursorCache::XCustomCursor
    [all...]
x11_util.h 411 ::Cursor cursor_; member in class:ui::XScopedCursor
  /external/chromium_org/content/renderer/browser_plugin/
browser_plugin.h 343 WebCursor cursor_; member in class:content::BrowserPlugin
  /external/chromium_org/ui/views/widget/
native_widget_aura.h 207 gfx::NativeCursor cursor_; member in class:views::NativeWidgetAura
  /external/chromium_org/ui/views/widget/desktop_aura/
desktop_native_widget_aura.h 251 gfx::NativeCursor cursor_; member in class:views::DesktopNativeWidgetAura
desktop_native_widget_aura.cc 171 cursor_(gfx::kNullCursor) {
555 cursor_ = cursor;
630 return cursor_;

Completed in 475 milliseconds

1 2