Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/hardware/input/
DKeyboardLayoutSelectionResult.java40 public final class KeyboardLayoutSelectionResult implements Parcelable { class
60 public static final KeyboardLayoutSelectionResult FAILED = new KeyboardLayoutSelectionResult(
110 public KeyboardLayoutSelectionResult( in KeyboardLayoutSelectionResult() method in KeyboardLayoutSelectionResult
166 KeyboardLayoutSelectionResult that = (KeyboardLayoutSelectionResult) o; in equals()
205 /* package-private */ KeyboardLayoutSelectionResult(@NonNull android.os.Parcel in) { in KeyboardLayoutSelectionResult() method in KeyboardLayoutSelectionResult
235 public static final @NonNull Parcelable.Creator<KeyboardLayoutSelectionResult> CREATOR
236 = new Parcelable.Creator<KeyboardLayoutSelectionResult>() {
238 public KeyboardLayoutSelectionResult[] newArray(int size) {
239 return new KeyboardLayoutSelectionResult[size];
243 public KeyboardLayoutSelectionResult createFromParcel(@NonNull android.os.Parcel in) {
[all …]
DKeyboardLayoutSelectionResult.aidl19 parcelable KeyboardLayoutSelectionResult;
DIInputManager.aidl30 import android.hardware.input.KeyboardLayoutSelectionResult;
98 KeyboardLayoutSelectionResult getKeyboardLayoutForInputDevice( in getKeyboardLayoutForInputDevice()
DInputManager.java685 public KeyboardLayoutSelectionResult getKeyboardLayoutForInputDevice( in getKeyboardLayoutForInputDevice()
/frameworks/base/tests/Input/src/com/android/server/input/
DKeyboardMetricsCollectorTests.kt20 import android.hardware.input.KeyboardLayoutSelectionResult
124 KeyboardLayoutSelectionResult.LAYOUT_SELECTION_CRITERIA_VIRTUAL_KEYBOARD in createKeyboard()
128 KeyboardLayoutSelectionResult.LAYOUT_SELECTION_CRITERIA_USER in createKeyboard()
132 KeyboardLayoutSelectionResult.LAYOUT_SELECTION_CRITERIA_DEVICE in createKeyboard()
162 KeyboardLayoutSelectionResult.LAYOUT_SELECTION_CRITERIA_VIRTUAL_KEYBOARD, in createKeyboard()
171 KeyboardLayoutSelectionResult.LAYOUT_SELECTION_CRITERIA_USER, in createKeyboard()
180 KeyboardLayoutSelectionResult.LAYOUT_SELECTION_CRITERIA_DEVICE, in createKeyboard()
201 KeyboardLayoutSelectionResult.LAYOUT_SELECTION_CRITERIA_DEVICE in createKeyboard()
209 KeyboardLayoutSelectionResult.LAYOUT_SELECTION_CRITERIA_DEVICE, in createKeyboard()
DKeyboardLayoutManagerTests.kt27 import android.hardware.input.KeyboardLayoutSelectionResult
442 KeyboardLayoutSelectionResult.FAILED, in createKeyboard()
452 KeyboardLayoutSelectionResult.FAILED, in createKeyboard()
520 KeyboardLayoutSelectionResult.FAILED, in createKeyboard()
580KeyboardLayoutSelectionResult.LAYOUT_SELECTION_CRITERIA_VIRTUAL_KEYBOARD, in createKeyboard()
608 KeyboardLayoutSelectionResult.LAYOUT_SELECTION_CRITERIA_DEVICE, in createKeyboard()
634 KeyboardLayoutSelectionResult.LAYOUT_SELECTION_CRITERIA_DEFAULT, in createKeyboard()
/frameworks/base/services/core/java/com/android/server/input/
DKeyboardLayoutManager.java19 import static android.hardware.input.KeyboardLayoutSelectionResult.FAILED;
20 import static android.hardware.input.KeyboardLayoutSelectionResult.LAYOUT_SELECTION_CRITERIA_USER;
21 import static android.hardware.input.KeyboardLayoutSelectionResult.LAYOUT_SELECTION_CRITERIA_DEVICE;
22 import static android.hardware.input.KeyboardLayoutSelectionResult.LAYOUT_SELECTION_CRITERIA_VIRTUA…
23 import static android.hardware.input.KeyboardLayoutSelectionResult.LAYOUT_SELECTION_CRITERIA_DEFAUL…
50 import android.hardware.input.KeyboardLayoutSelectionResult;
129 private final Map<String, KeyboardLayoutSelectionResult> mKeyboardLayoutCache =
208 List<KeyboardLayoutSelectionResult> resultList = new ArrayList<>(); in onInputDeviceChangedInternal()
212 KeyboardLayoutSelectionResult result = getKeyboardLayoutForInputDeviceInternal( in onInputDeviceChangedInternal()
473 KeyboardLayoutSelectionResult result = getKeyboardLayoutForInputDeviceInternal( in getKeyboardLayoutOverlay()
[all …]
DKeyboardMetricsCollector.java19 import static android.hardware.input.KeyboardLayoutSelectionResult.LAYOUT_SELECTION_CRITERIA_USER;
20 import static android.hardware.input.KeyboardLayoutSelectionResult.LAYOUT_SELECTION_CRITERIA_DEVICE;
21 import static android.hardware.input.KeyboardLayoutSelectionResult.LAYOUT_SELECTION_CRITERIA_VIRTUA…
22 import static android.hardware.input.KeyboardLayoutSelectionResult.LAYOUT_SELECTION_CRITERIA_DEFAUL…
23 import static android.hardware.input.KeyboardLayoutSelectionResult.layoutSelectionCriteriaToString;
30 import android.hardware.input.KeyboardLayoutSelectionResult.LayoutSelectionCriteria;
DInputManagerService.java57 import android.hardware.input.KeyboardLayoutSelectionResult;
1186 public KeyboardLayoutSelectionResult getKeyboardLayoutForInputDevice( in getKeyboardLayoutForInputDevice()