HomeSort by relevance Sort by last modified time
    Searched defs:editorInfo (Results 1 - 6 of 6) sorted by null

  /cts/tests/inputmethod/src/android/view/inputmethod/cts/
KeyboardVisibilityControlTest.java 31 import android.view.inputmethod.EditorInfo;
74 final EditorInfo editorInfo = event.getArguments().getParcelable("editorInfo");
75 return TextUtils.equals(marker, editorInfo.privateImeOptions);
  /cts/tests/inputmethod/mockime/src/com/android/cts/mockime/
ImeEventStreamTestUtils.java 21 import android.view.inputmethod.EditorInfo;
157 final EditorInfo editorInfo = event.getArguments().getParcelable("editorInfo");
158 return TextUtils.equals(marker, editorInfo.privateImeOptions);
174 final EditorInfo editorInfo = event.getArguments().getParcelable("editorInfo");
175 return fieldId == editorInfo.fieldId;
  /developers/build/prebuilts/gradle/CommitContentSampleIME/app/src/main/java/com/example/android/commitcontent/ime/
ImageKeyboard.java 36 import android.view.inputmethod.EditorInfo;
65 @Nullable EditorInfo editorInfo, @NonNull String mimeType) {
66 if (editorInfo == null) {
75 if (!validatePackageName(editorInfo)) {
79 final String[] supportedMimeTypes = EditorInfoCompat.getContentMimeTypes(editorInfo);
90 final EditorInfo editorInfo = getCurrentInputEditorInfo();
93 if (!validatePackageName(editorInfo)) {
119 editorInfo.packageName, contentUri, Intent.FLAG_GRANT_READ_URI_PERMISSION)
    [all...]
  /developers/samples/android/input/keyboard/CommitContentSampleIME/app/src/main/java/com/example/android/commitcontent/ime/
ImageKeyboard.java 36 import android.view.inputmethod.EditorInfo;
65 @Nullable EditorInfo editorInfo, @NonNull String mimeType) {
66 if (editorInfo == null) {
75 if (!validatePackageName(editorInfo)) {
79 final String[] supportedMimeTypes = EditorInfoCompat.getContentMimeTypes(editorInfo);
90 final EditorInfo editorInfo = getCurrentInputEditorInfo();
93 if (!validatePackageName(editorInfo)) {
119 editorInfo.packageName, contentUri, Intent.FLAG_GRANT_READ_URI_PERMISSION)
    [all...]
  /development/samples/browseable/CommitContentSampleIME/src/com.example.android.commitcontent.ime/
ImageKeyboard.java 36 import android.view.inputmethod.EditorInfo;
65 @Nullable EditorInfo editorInfo, @NonNull String mimeType) {
66 if (editorInfo == null) {
75 if (!validatePackageName(editorInfo)) {
79 final String[] supportedMimeTypes = EditorInfoCompat.getContentMimeTypes(editorInfo);
90 final EditorInfo editorInfo = getCurrentInputEditorInfo();
93 if (!validatePackageName(editorInfo)) {
119 editorInfo.packageName, contentUri, Intent.FLAG_GRANT_READ_URI_PERMISSION)
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
TextViewTest.java 132 import android.view.inputmethod.EditorInfo;
431 @IntDef({EditorInfo.IME_ACTION_UNSPECIFIED, EditorInfo.IME_ACTION_NONE,
432 EditorInfo.IME_ACTION_GO, EditorInfo.IME_ACTION_SEARCH, EditorInfo.IME_ACTION_SEND,
433 EditorInfo.IME_ACTION_NEXT, EditorInfo.IME_ACTION_DONE, EditorInfo.IME_ACTION_PREVIOUS})
438 value = {EditorInfo.IME_FLAG_NO_PERSONALIZED_LEARNING
    [all...]

Completed in 801 milliseconds