Searched refs:InsertModeTransformationMethod (Results 1 – 3 of 3) sorted by relevance
/aosp14/frameworks/base/core/tests/coretests/src/android/text/method/ |
H A D | InsertModeTransformationMethodTest.java | 54 final InsertModeTransformationMethod transformationMethod = in transformedText_charAt() 68 final InsertModeTransformationMethod transformationMethod = in transformedText_charAt_singleLine() 91 final InsertModeTransformationMethod transformationMethod = in transformedText_charAt_editing() 217 final InsertModeTransformationMethod transformationMethod = in transformedText_getSpans() 218 new InsertModeTransformationMethod(3, false, null); in transformedText_getSpans() 276 final InsertModeTransformationMethod transformationMethod = in transformedText_getSpans_singleLine() 277 new InsertModeTransformationMethod(3, true, null); in transformedText_getSpans_singleLine() 347 final InsertModeTransformationMethod transformationMethod = in transformedText_getSpans_collapsedRange() 348 new InsertModeTransformationMethod(3, false, null); in transformedText_getSpans_collapsedRange() 408 new InsertModeTransformationMethod(3, true, null); in transformedText_getSpans_collapsedRange_singleLine() [all …]
|
/aosp14/frameworks/base/core/java/android/text/method/ |
H A D | InsertModeTransformationMethod.java | 60 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()
|
/aosp14/frameworks/base/core/java/android/widget/ |
H A D | Editor.java | 79 import android.text.method.InsertModeTransformationMethod; 8104 private InsertModeTransformationMethod mInsertModeTransformationMethod; 8148 mInsertModeTransformationMethod = new InsertModeTransformationMethod(offset, in enterInsertMode() 8182 if (transformedText instanceof InsertModeTransformationMethod.TransformedText) { in onDraw() 8185 final InsertModeTransformationMethod.TransformedText insertModeTransformedText = in onDraw() 8186 ((InsertModeTransformationMethod.TransformedText) transformedText); in onDraw()
|