Home
last modified time | relevance | path

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

/cts/tests/accessibilityservice/src/android/accessibilityservice/cts/utils/
DInputConnectionSplitter.java102 int newCursorPosition, TextAttribute textAttribute) { in setComposingText() argument
103 mForNotify.setComposingText(text, newCursorPosition, textAttribute); in setComposingText()
104 return super.setComposingText(text, newCursorPosition, textAttribute); in setComposingText()
114 public boolean setComposingRegion(int start, int end, TextAttribute textAttribute) { in setComposingRegion() argument
115 mForNotify.setComposingRegion(start, end, textAttribute); in setComposingRegion()
116 return super.setComposingRegion(start, end, textAttribute); in setComposingRegion()
133 TextAttribute textAttribute) { in commitText() argument
134 mForNotify.commitText(text, newCursorPosition, textAttribute); in commitText()
135 return super.commitText(text, newCursorPosition, textAttribute); in commitText()
/cts/tests/inputmethod/src/android/view/inputmethod/cts/
DTextAttributeTest.java53 final TextAttribute textAttribute = new TextAttribute.Builder() in testTextAttribute() local
57 assertTextAttribute(textAttribute); in testTextAttribute()
62 final TextAttribute textAttribute = new TextAttribute.Builder() in testWriteToParcel() local
67 assertTextAttribute(cloneViaParcel(textAttribute)); in testWriteToParcel()
DInputConnectionEndToEndTest.java3037 CharSequence text, int newCursorPosition, TextAttribute textAttribute) {
3041 args.putParcelable("textAttribute", textAttribute);
3056 final TextAttribute textAttribute = args.getParcelable("textAttribute");
3057 assertThat(textAttribute).isNotNull();
3058 assertThat(textAttribute.getTextConversionSuggestions())
3081 CharSequence text, int newCursorPosition, TextAttribute textAttribute) {
3085 args.putParcelable("textAttribute", textAttribute);
3142 CharSequence text, int newCursorPosition, TextAttribute textAttribute) {
3146 args.putParcelable("textAttribute", textAttribute);
3160 final var textAttribute = args.getParcelable("textAttribute", TextAttribute.class);
[all …]
/cts/tests/inputmethod/mockime/src/com/android/cts/mockime/
DMockImeSession.java884 @Nullable TextAttribute textAttribute) { in callSetComposingText() argument
888 params.putParcelable("textAttribute", textAttribute); in callSetComposingText()
940 @Nullable TextAttribute textAttribute) { in callSetComposingRegion() argument
944 params.putParcelable("textAttribute", textAttribute); in callSetComposingRegion()
1018 @Nullable TextAttribute textAttribute) { in callCommitText() argument
1022 params.putParcelable("textAttribute", textAttribute); in callCommitText()
1575 @Nullable TextAttribute textAttribute) { in callReplaceText() argument
1581 params.putParcelable("textAttribute", textAttribute); in callReplaceText()
DMockIme.java282 final TextAttribute textAttribute = in onHandleCommand()
285 .setComposingText(text, newCursorPosition, textAttribute); in onHandleCommand()
296 final TextAttribute textAttribute = in onHandleCommand()
299 .setComposingRegion(start, end, textAttribute); in onHandleCommand()
314 final TextAttribute textAttribute = in onHandleCommand()
317 .commitText(text, newCursorPosition, textAttribute); in onHandleCommand()
455 final TextAttribute textAttribute = in onHandleCommand()
458 .replaceText(start, end, text, newCursorPosition, textAttribute); in onHandleCommand()
/cts/tests/inputmethod/mocka11yime/client/src/com/android/cts/mocka11yime/
DMockA11yImeSession.java419 @Nullable TextAttribute textAttribute) { in callCommitText() argument
423 params.putParcelable("textAttribute", textAttribute); in callCommitText()
/cts/tests/inputmethod/mocka11yime/service/src/com/android/cts/mocka11yime/
DMockA11yIme.java254 final TextAttribute textAttribute = command.getExtras().getParcelable( in onHandleCommand()
257 text, newCursorPosition, textAttribute); in onHandleCommand()