Searched defs:LayoutIndexToTextIndex (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/ui/gfx/
H A Drender_text_mac.cc87 size_t RenderTextMac::LayoutIndexToTextIndex(size_t index) const { function in class:gfx::RenderTextMac
239 style.UpdatePosition(LayoutIndexToTextIndex(end));
H A Drender_text_linux.cc128 return SelectionModel(LayoutIndexToTextIndex(caret_pos),
138 const int start = LayoutIndexToTextIndex(item->offset);
139 const int end = LayoutIndexToTextIndex(item->offset + item->length);
167 if (caret < LayoutIndexToTextIndex(item->offset + item->length)) {
172 if (caret > LayoutIndexToTextIndex(item->offset)) {
262 size_t RenderTextLinux::LayoutIndexToTextIndex(size_t index) const { function in class:gfx::RenderTextLinux
492 LayoutIndexToTextIndex(item->offset), CURSOR_FORWARD);
499 LayoutIndexToTextIndex(item->offset + item->length), CURSOR_BACKWARD);
505 return LayoutIndexToTextIndex(run->item->offset +
H A Drender_text_win.cc258 const size_t cursor = LayoutIndexToTextIndex(position + trailing);
269 ui::Range(LayoutIndexToTextIndex(runs_[i]->range.start()),
270 LayoutIndexToTextIndex(runs_[i]->range.end()))));
297 if (caret < LayoutIndexToTextIndex(run->range.end())) {
302 if (caret > LayoutIndexToTextIndex(run->range.start())) {
420 size_t RenderTextWin::LayoutIndexToTextIndex(size_t index) const { function in class:gfx::RenderTextWin
441 position < LayoutIndexToTextIndex(GetLayoutText().length()) &&
598 style.UpdatePosition(LayoutIndexToTextIndex(run_break));
890 size_t position = LayoutIndexToTextIndex(run->range.start());
897 size_t position = LayoutIndexToTextIndex(ru
[all...]

Completed in 58 milliseconds