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

1 2 3

  /external/chromium_org/components/autofill/core/browser/
autofill_scanner.cc 13 : cursor_(fields.begin()),
24 ++cursor_;
33 return *cursor_;
37 return cursor_ == end_;
42 cursor_ = saved_cursor_;
48 cursor_ = begin_ + index;
53 saved_cursor_ = cursor_;
54 return static_cast<size_t>(cursor_ - begin_);
autofill_scanner.h 45 std::vector<AutofillField*>::const_iterator cursor_; member in class:autofill::AutofillScanner
  /external/chromium_org/mojo/public/cpp/bindings/lib/
fixed_buffer.cc 19 cursor_(0),
32 if (delta == 0 || delta > size_ - cursor_) {
37 char* result = ptr_ + cursor_;
38 cursor_ += delta;
46 cursor_ = 0;
fixed_buffer.h 58 size_t cursor_; member in class:mojo::internal::FixedBuffer
  /external/chromium_org/third_party/android_crazy_linker/src/src/
crazy_linker_leb128.h 18 : encoding_(encoding), cursor_(0) { }
27 byte = encoding_[cursor_++];
37 size_t cursor_; member in class:crazy::Leb128Decoder
43 : encoding_(encoding), cursor_(0) { }
53 byte = encoding_[cursor_++];
66 size_t cursor_; member in class:crazy::Sleb128Decoder
  /external/chromium_org/content/browser/indexed_db/
indexed_db_cursor.cc 27 cursor_(cursor.Pass()),
69 if (!cursor_ || !cursor_->Advance(count, &s)) {
70 cursor_.reset();
88 if (!cursor_ || !cursor_->Continue(key.get(),
92 cursor_.reset();
132 if (!cursor_ || !cursor_->Continue(&s)) {
133 cursor_.reset()
    [all...]
indexed_db_cursor.h 38 const IndexedDBKey& key() const { return cursor_->key(); }
39 const IndexedDBKey& primary_key() const { return cursor_->primary_key(); }
42 : cursor_->value();
68 scoped_ptr<IndexedDBBackingStore::Cursor> cursor_; member in class:content::IndexedDBCursor
  /external/chromium_org/media/audio/sounds/
test_data.cc 17 cursor_(0) {
30 cursor_ = cursor;
test_data.h 36 int cursor() const { return cursor_; }
44 int cursor_; member in class:media::TestObserver
audio_stream_handler.cc 42 cursor_(0),
77 if (wav_audio_.AtEnd(cursor_))
78 cursor_ = 0;
82 cursor_ = 0;
112 if (wav_audio_.AtEnd(cursor_) ||
113 !wav_audio_.CopyTo(dest, cursor_, &bytes_written)) {
123 cursor_ += bytes_written;
138 g_observer_for_testing->OnStop(cursor_);
150 size_t cursor_; member in class:media::AudioStreamHandler::AudioStreamContainer
  /external/chromium_org/ui/ozone/platform/dri/
dri_cursor.cc 33 if (cursor_ == cursor || cursor_window_ != widget)
36 cursor_ = cursor;
42 if (cursor_.get())
44 cursor_->bitmaps(),
46 cursor_->frame_delay_ms());
74 if (cursor_.get())
87 return cursor_.get();
96 cursor_->hotspot().OffsetFromOrigin();
dri_window_manager.h 40 DriCursor* cursor() const { return cursor_.get(); }
51 scoped_ptr<DriCursor> cursor_; member in class:ui::DriWindowManager
dri_window_manager.cc 23 : last_allocated_widget_(0), cursor_(new DriCursor(cursor_delegate, this)) {
41 if (cursor_->GetCursorWindow() == gfx::kNullAcceleratedWidget)
52 if (cursor_->GetCursorWindow() == widget)
74 cursor_->MoveCursorTo(cursor_widget, location);
dri_cursor.h 53 scoped_refptr<BitmapCursorOzone> cursor_; member in class:ui::DriCursor
  /external/chromium_org/tools/relocation_packer/src/
leb128.cc 38 cursor_ = 0;
55 byte = encoding_[cursor_++];
65 while (cursor_ < encoding_.size())
sleb128.cc 58 cursor_ = 0;
76 byte = encoding_[cursor_++];
91 while (cursor_ < encoding_.size())
leb128.h 69 size_t cursor_; member in class:relocation_packer::Leb128Decoder
sleb128.h 70 size_t cursor_; member in class:relocation_packer::Sleb128Decoder
  /external/chromium_org/ui/events/ozone/evdev/libgestures_glue/
gesture_interpreter_libevdev_cros.cc 86 cursor_(cursor),
208 if (!cursor_)
211 cursor_->MoveCursor(gfx::Vector2dF(move->dx, move->dy));
215 cursor_->location(),
216 cursor_->location(),
230 if (!cursor_)
236 cursor_->location(),
254 if (!cursor_)
262 !cursor_->IsCursorVisible())
295 if (!cursor_)
    [all...]
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/
desktop_and_cursor_composer.h 54 scoped_ptr<MouseCursor> cursor_; member in class:webrtc::DesktopAndCursorComposer
desktop_and_cursor_composer.cc 154 if (frame && cursor_.get() && cursor_state_ == MouseCursorMonitor::INSIDE) {
156 new DesktopFrameWithCursor(frame, *cursor_, cursor_position_);
164 cursor_.reset(cursor);
  /external/chromium_org/ui/events/ozone/evdev/
event_factory_evdev.h 71 CursorDelegateEvdev* cursor_; member in class:ui::EventFactoryEvdev
event_factory_evdev.cc 138 cursor_(cursor),
183 cursor_,
232 if (cursor_) {
233 cursor_->MoveCursorTo(widget, location);
235 cursor_->location(),
236 cursor_->location(),
  /external/chromium_org/ui/wm/core/
cursor_manager.cc 22 : cursor_(ui::kCursorNone),
29 gfx::NativeCursor cursor() const { return cursor_; }
30 void set_cursor(gfx::NativeCursor cursor) { cursor_ = cursor; }
60 gfx::NativeCursor cursor_; member in class:wm::internal::CursorState
  /external/chromium_org/third_party/tcmalloc/chromium/src/
deep-heap-profile.cc 454 return cursor_;
458 cursor_ = 0;
462 RawWrite(fd_, buffer_, cursor_);
463 cursor_ = 0;
468 return ForwardCursor(snprintf(buffer_ + cursor_, size_ - cursor_,
473 char* position = buffer_ + cursor_;
474 int available = size_ - cursor_;
486 char* position = buffer_ + cursor_;
487 int available = size_ - cursor_;
    [all...]

Completed in 616 milliseconds

1 2 3