Home
last modified time | relevance | path

Searched refs:GetCursorBounds (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/ui/views/controls/textfield/
Dtextfield_unittest.cc279 return test_api_->GetRenderText()->GetCursorBounds( in GetCursorPositionX()
284 gfx::Rect GetCursorBounds() { in GetCursorBounds() function in views::TextfieldTest
289 gfx::Rect GetCursorBounds(const gfx::SelectionModel& sel) { in GetCursorBounds() function in views::TextfieldTest
290 return test_api_->GetRenderText()->GetCursorBounds(sel, true); in GetCursorBounds()
1436 int x = GetCursorBounds().x(); in TEST_F()
1441 x = GetCursorBounds().x(); in TEST_F()
1447 x = GetCursorBounds().x(); in TEST_F()
1452 x = GetCursorBounds().x(); in TEST_F()
1462 x = GetCursorBounds().x(); in TEST_F()
1468 x = GetCursorBounds().x(); in TEST_F()
[all …]
Dtextfield.cc1109 *p1 = render_text->GetCursorBounds(start_sel, true); in GetSelectionEndPoints()
1110 *p2 = render_text->GetCursorBounds(sel, true); in GetSelectionEndPoints()
1448 *rect = render_text->GetCursorBounds(caret, false); in GetCompositionCharacterBounds()
/external/chromium_org/ui/gfx/
Drender_text.cc529 int start_x = GetCursorBounds(selection_start, true).x(); in MoveCursor()
530 int cursor_x = GetCursorBounds(cursor, true).x(); in MoveCursor()
760 canvas->FillRect(GetCursorBounds(position, true), cursor_color_); in DrawCursor()
778 Rect RenderText::GetCursorBounds(const SelectionModel& caret, in GetCursorBounds() function in gfx::RenderText
887 cursor_bounds_ = GetCursorBounds(selection_model_, insert_mode_); in SetDisplayOffset()
1387 cursor_bounds_ = GetCursorBounds(selection_model_, insert_mode_); in UpdateCachedBoundsAndOffset()
Drender_text.h393 Rect GetCursorBounds(const SelectionModel& caret, bool insert_mode);
Drender_text_unittest.cc1485 Rect cursor_around_b = render_text->GetCursorBounds(sel_b, false); in TEST_F()
1486 Rect cursor_before_b = render_text->GetCursorBounds(sel_b, true); in TEST_F()
1487 Rect cursor_before_c = render_text->GetCursorBounds(sel_c, true); in TEST_F()
/external/chromium_org/ui/views/touchui/
Dtouch_selection_controller_impl_unittest.cc122 return textfield_test_api_->GetRenderText()->GetCursorBounds(sel, true); in GetCursorRect()