/frameworks/base/tests/Input/src/com/android/server/input/ |
D | KeyboardLayoutManagerTests.kt | 260 val imeSubtype = createImeSubtype() in createKeyboard() constant 263 keyboardDevice.identifier, USER_ID, imeInfo, imeSubtype, in createKeyboard() 268 keyboardDevice.identifier, USER_ID, imeInfo, imeSubtype in createKeyboard() 278 keyboardDevice.identifier, USER_ID, imeInfo, imeSubtype, in createKeyboard() 283 keyboardDevice.identifier, USER_ID, imeInfo, imeSubtype in createKeyboard() 331 val imeSubtype = createImeSubtypeForLanguageTag("hi") in createKeyboard() constant 333 keyboardDevice.identifier, USER_ID, imeInfo, imeSubtype, in createKeyboard() 339 imeSubtype in createKeyboard() 701 imeSubtype: InputMethodSubtype, in createKeyboard() 705 device.identifier, USER_ID, imeInfo, imeSubtype in createKeyboard()
|
/frameworks/base/services/core/java/com/android/server/input/ |
D | KeyboardMetricsCollector.java | 533 public Builder addLayoutSelection(@NonNull InputMethodSubtype imeSubtype, in addLayoutSelection() argument 536 Objects.requireNonNull(imeSubtype, "IME subtype provided should not be null"); in addLayoutSelection() 540 mImeSubtypeList.add(imeSubtype); in addLayoutSelection() 558 InputMethodSubtype imeSubtype = mImeSubtypeList.get(i); in build() local 565 ULocale pkLocale = imeSubtype.getPhysicalKeyboardHintLanguageTag(); in build() 567 : imeSubtype.getCanonicalizedLanguageTag(); in build() 571 imeSubtype.getPhysicalKeyboardHintLayoutType()); in build()
|
D | KeyboardLayoutManager.java | 504 @NonNull InputMethodInfo imeInfo, @Nullable InputMethodSubtype imeSubtype) { in getKeyboardLayoutForInputDevice() argument 511 keyboardIdentifier, new ImeInfo(userId, imeInfo, imeSubtype)); in getKeyboardLayoutForInputDevice() 514 + userId + ", subtype = " + imeSubtype + " -> " + result); in getKeyboardLayoutForInputDevice() 522 @Nullable InputMethodSubtype imeSubtype, in setKeyboardLayoutForInputDevice() argument 532 new ImeInfo(userId, imeInfo, imeSubtype)).toString(); in setKeyboardLayoutForInputDevice() 553 @Nullable InputMethodSubtype imeSubtype) { in getKeyboardLayoutListForInputDevice() argument 559 new ImeInfo(userId, imeInfo, imeSubtype)); in getKeyboardLayoutListForInputDevice() 1068 for (InputMethodSubtype imeSubtype : in getImeInfoListForLayoutMapping() 1071 if (!imeSubtype.isSuitableForPhysicalKeyboardLayoutMapping()) { in getImeInfoListForLayoutMapping() 1074 imeInfoList.add(new ImeInfo(userId, imeInfo, imeSubtype)); in getImeInfoListForLayoutMapping() [all …]
|
D | InputManagerService.java | 1188 @NonNull InputMethodInfo imeInfo, @Nullable InputMethodSubtype imeSubtype) { in getKeyboardLayoutForInputDevice() argument 1190 imeInfo, imeSubtype); in getKeyboardLayoutForInputDevice() 1197 @Nullable InputMethodSubtype imeSubtype, String keyboardLayoutDescriptor) { in setKeyboardLayoutForInputDevice() argument 1200 imeSubtype, keyboardLayoutDescriptor); in setKeyboardLayoutForInputDevice() 1206 @Nullable InputMethodSubtype imeSubtype) { in getKeyboardLayoutListForInputDevice() argument 1208 imeInfo, imeSubtype); in getKeyboardLayoutListForInputDevice()
|
/frameworks/base/core/java/android/hardware/input/ |
D | IInputManager.aidl | 100 in InputMethodSubtype imeSubtype); in getKeyboardLayoutForInputDevice() argument 106 in InputMethodInfo imeInfo, in InputMethodSubtype imeSubtype, in setKeyboardLayoutForInputDevice() argument 110 int userId, in InputMethodInfo imeInfo, in InputMethodSubtype imeSubtype); in getKeyboardLayoutListForInputDevice() argument
|
D | InputManager.java | 687 @NonNull InputMethodInfo imeInfo, @Nullable InputMethodSubtype imeSubtype) { in getKeyboardLayoutForInputDevice() argument 689 return mIm.getKeyboardLayoutForInputDevice(identifier, userId, imeInfo, imeSubtype); in getKeyboardLayoutForInputDevice() 715 @Nullable InputMethodSubtype imeSubtype, @NonNull String keyboardLayoutDescriptor) { in setKeyboardLayoutForInputDevice() argument 724 mIm.setKeyboardLayoutForInputDevice(identifier, userId, imeInfo, imeSubtype, in setKeyboardLayoutForInputDevice() 745 @Nullable InputMethodSubtype imeSubtype) { in getKeyboardLayoutListForInputDevice() argument 751 return mIm.getKeyboardLayoutListForInputDevice(identifier, userId, imeInfo, imeSubtype); in getKeyboardLayoutListForInputDevice()
|