HomeSort by relevance Sort by last modified time
    Searched refs:FindCursorPosition (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/ui/gfx/
render_text_pango.h 23 virtual SelectionModel FindCursorPosition(const Point& point) OVERRIDE;
render_text_mac.h 31 virtual SelectionModel FindCursorPosition(const Point& point) OVERRIDE;
render_text_win.h 67 virtual SelectionModel FindCursorPosition(const Point& point) OVERRIDE;
render_text.h 355 virtual SelectionModel FindCursorPosition(const Point& point) = 0;
render_text_mac.cc 36 SelectionModel RenderTextMac::FindCursorPosition(const Point& point) {
render_text_pango.cc 94 SelectionModel RenderTextPango::FindCursorPosition(const Point& point) {
render_text.cc 488 SelectionModel position = FindCursorPosition(point);
508 SelectionModel cursor = FindCursorPosition(point);
    [all...]
render_text_unittest.cc 306 // FindCursorPosition() should not return positions between a surrogate pair.
308 EXPECT_EQ(render_text->FindCursorPosition(Point(0, 0)).caret_pos(), 0U);
309 EXPECT_EQ(render_text->FindCursorPosition(Point(20, 0)).caret_pos(), 2U);
311 SelectionModel selection = render_text->FindCursorPosition(Point(x, 0));
    [all...]
render_text_win.cc 525 SelectionModel RenderTextWin::FindCursorPosition(const Point& point) {
    [all...]
  /external/chromium_org/ui/views/controls/textfield/
native_textfield_views.cc 280 drop_cursor_position_ = GetRenderText()->FindCursorPosition(event.location());
320 GetRenderText()->FindCursorPosition(event.location());
373 gfx::SelectionModel start_caret = GetRenderText()->FindCursorPosition(start);
374 gfx::SelectionModel end_caret = GetRenderText()->FindCursorPosition(end);
    [all...]

Completed in 1014 milliseconds