OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GetCursorBounds
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/ui/views/controls/textfield/
native_textfield_views_unittest.cc
267
return render_text->
GetCursorBounds
(
272
gfx::Rect
GetCursorBounds
() {
279
gfx::Rect
GetCursorBounds
(const gfx::SelectionModel& sel) {
281
gfx::Rect bounds = render_text->
GetCursorBounds
(sel, true);
[
all
...]
native_textfield_views.cc
394
*p1 = render_text->
GetCursorBounds
(start_sel, true);
395
*p2 = render_text->
GetCursorBounds
(sel, true);
996
gfx::Rect start_cursor = GetRenderText()->
GetCursorBounds
(start_position,
998
gfx::Rect end_cursor = GetRenderText()->
GetCursorBounds
(end_position, false);
[
all
...]
/external/chromium_org/ui/gfx/
render_text.cc
413
int start_x =
GetCursorBounds
(selection_start, true).x();
414
int cursor_x =
GetCursorBounds
(position, true).x();
661
canvas->FillRect(
GetCursorBounds
(position, true), cursor_color_);
687
Rect RenderText::
GetCursorBounds
(const SelectionModel& caret,
[
all
...]
render_text.h
315
Rect
GetCursorBounds
(const SelectionModel& selection, bool insert_mode);
render_text_unittest.cc
[
all
...]
/external/chromium_org/ui/views/touchui/
touch_selection_controller_impl_unittest.cc
91
gfx::Rect cursor_bounds = render_text->
GetCursorBounds
(sel, true);
Completed in 72 milliseconds