Home
last modified time | relevance | path

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

/frameworks/base/core/tests/coretests/src/android/text/method/
DInsertModeTransformationMethodTest.java54 final InsertModeTransformationMethod transformationMethod = in transformedText_charAt()
55 new InsertModeTransformationMethod(offset, false, null); in transformedText_charAt()
68 final InsertModeTransformationMethod transformationMethod = in transformedText_charAt_singleLine()
69 new InsertModeTransformationMethod(offset, true, null); in transformedText_charAt_singleLine()
91 final InsertModeTransformationMethod transformationMethod = in transformedText_charAt_editing()
92 new InsertModeTransformationMethod(3, singleLine, null); in transformedText_charAt_editing()
138 final InsertModeTransformationMethod transformationMethod = in transformedText_subSequence()
139 new InsertModeTransformationMethod(offset, false, null); in transformedText_subSequence()
157 final InsertModeTransformationMethod transformationMethod = in transformedText_subSequence_singleLine()
158 new InsertModeTransformationMethod(offset, true, null); in transformedText_subSequence_singleLine()
[all …]
/frameworks/base/core/java/android/text/method/
DInsertModeTransformationMethod.java60 public class InsertModeTransformationMethod implements TransformationMethod, TextWatcher { class
83 public InsertModeTransformationMethod(@IntRange(from = 0) int offset, boolean singleLine, in InsertModeTransformationMethod() method in InsertModeTransformationMethod
88 private InsertModeTransformationMethod(int start, int end, boolean singleLine, in InsertModeTransformationMethod() method in InsertModeTransformationMethod
107 public InsertModeTransformationMethod update(TransformationMethod oldTransformationMethod, in update()
109 return new InsertModeTransformationMethod(mStart, mEnd, singleLine, in update()
/frameworks/base/core/java/android/widget/
DEditor.java81 import android.text.method.InsertModeTransformationMethod;
8143 private InsertModeTransformationMethod mInsertModeTransformationMethod;
8187 mInsertModeTransformationMethod = new InsertModeTransformationMethod(offset, in enterInsertMode()
8221 if (transformedText instanceof InsertModeTransformationMethod.TransformedText) { in onDraw()
8224 final InsertModeTransformationMethod.TransformedText insertModeTransformedText = in onDraw()
8225 ((InsertModeTransformationMethod.TransformedText) transformedText); in onDraw()