Searched refs:text_index (Results 1 – 4 of 4) sorted by relevance
/external/chromium_org/ui/gfx/ |
D | render_text_harfbuzz.cc | 526 size_t text_index) { in GetGraphemeBounds() argument 527 DCHECK_LT(text_index, range.end()); in GetGraphemeBounds() 535 GetClusterAt(text_index, &chars, &glyphs); in GetGraphemeBounds() 549 if (i < text_index) in GetGraphemeBounds() 819 const size_t text_index = UTF16OffsetToIndex(text(), 0, index); in LayoutIndexToTextIndex() local 820 DCHECK_LE(text_index, text().length()); in LayoutIndexToTextIndex() 821 return text_index; in LayoutIndexToTextIndex()
|
D | render_text_harfbuzz.h | 46 size_t text_index);
|
D | render_text_win.cc | 748 const size_t text_index = UTF16OffsetToIndex(text(), 0, index); in LayoutIndexToTextIndex() local 749 DCHECK_LE(text_index, text().length()); in LayoutIndexToTextIndex() 750 return text_index; in LayoutIndexToTextIndex()
|
/external/chromium_org/ui/views/controls/textfield/ |
D | textfield.cc | 1438 size_t text_index = composition_range.start() + index; in GetCompositionCharacterBounds() local 1439 if (composition_range.end() <= text_index) in GetCompositionCharacterBounds() 1441 if (!render_text->IsValidCursorIndex(text_index)) { in GetCompositionCharacterBounds() 1442 text_index = render_text->IndexOfAdjacentGrapheme( in GetCompositionCharacterBounds() 1443 text_index, gfx::CURSOR_BACKWARD); in GetCompositionCharacterBounds() 1445 if (text_index < composition_range.start()) in GetCompositionCharacterBounds() 1447 const gfx::SelectionModel caret(text_index, gfx::CURSOR_BACKWARD); in GetCompositionCharacterBounds()
|