Home
last modified time | relevance | path

Searched refs:FindCursorPosition (Results 1 – 10 of 10) sorted by relevance

/external/chromium_org/ui/gfx/
Drender_text_pango.h23 virtual SelectionModel FindCursorPosition(const Point& point) OVERRIDE;
Drender_text_mac.h31 virtual SelectionModel FindCursorPosition(const Point& point) OVERRIDE;
Drender_text_win.h67 virtual SelectionModel FindCursorPosition(const Point& point) OVERRIDE;
Drender_text_mac.cc36 SelectionModel RenderTextMac::FindCursorPosition(const Point& point) { in FindCursorPosition() function in gfx::RenderTextMac
Drender_text.h355 virtual SelectionModel FindCursorPosition(const Point& point) = 0;
Drender_text.cc488 SelectionModel position = FindCursorPosition(point); in MoveCursorTo()
508 SelectionModel cursor = FindCursorPosition(point); in IsPointInSelection()
Drender_text_pango.cc94 SelectionModel RenderTextPango::FindCursorPosition(const Point& point) { in FindCursorPosition() function in gfx::RenderTextPango
Drender_text_unittest.cc308 EXPECT_EQ(render_text->FindCursorPosition(Point(0, 0)).caret_pos(), 0U); in TEST_F()
309 EXPECT_EQ(render_text->FindCursorPosition(Point(20, 0)).caret_pos(), 2U); in TEST_F()
311 SelectionModel selection = render_text->FindCursorPosition(Point(x, 0)); in TEST_F()
Drender_text_win.cc525 SelectionModel RenderTextWin::FindCursorPosition(const Point& point) { in FindCursorPosition() function in gfx::RenderTextWin
/external/chromium_org/ui/views/controls/textfield/
Dnative_textfield_views.cc280 drop_cursor_position_ = GetRenderText()->FindCursorPosition(event.location()); in OnDragUpdated()
320 GetRenderText()->FindCursorPosition(event.location()); in OnPerformDrop()
373 gfx::SelectionModel start_caret = GetRenderText()->FindCursorPosition(start); in SelectRect()
374 gfx::SelectionModel end_caret = GetRenderText()->FindCursorPosition(end); in SelectRect()