Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DTextView.java10225 int expandedTopChar = layout.getLineStart(expandedTopLine); in onProvideAutoStructureForAssistOrAutofill() local
10233 if (selStart < expandedTopChar) { in onProvideAutoStructureForAssistOrAutofill()
10234 expandedTopChar = selStart; in onProvideAutoStructureForAssistOrAutofill()
10243 if (expandedTopChar > 0 || expandedBottomChar < text.length()) { in onProvideAutoStructureForAssistOrAutofill()
10244 text = text.subSequence(expandedTopChar, expandedBottomChar); in onProvideAutoStructureForAssistOrAutofill()
10250 structure.setText(text, selStart - expandedTopChar, selEnd - expandedTopChar); in onProvideAutoStructureForAssistOrAutofill()