Searched refs:onlyCurrentIme (Results 1 – 7 of 7) sorted by relevance
/frameworks/base/services/core/java/com/android/server/inputmethod/ |
D | InputMethodSubtypeSwitchingController.java | 272 public ImeSubtypeListItem getNextInputMethodLocked(boolean onlyCurrentIme, in getNextInputMethodLocked() argument 291 if (onlyCurrentIme && !imi.equals(candidate.mImi)) { in getNextInputMethodLocked() 358 public ImeSubtypeListItem getNextInputMethodLocked(boolean onlyCurrentIme, in getNextInputMethodLocked() argument 374 if (onlyCurrentIme && !imi.equals(subtypeListItem.mImi)) { in getNextInputMethodLocked() 442 public ImeSubtypeListItem getNextInputMethod(boolean onlyCurrentIme, InputMethodInfo imi, in getNextInputMethod() argument 448 return mSwitchingAwareRotationList.getNextInputMethodLocked(onlyCurrentIme, imi, in getNextInputMethod() 451 return mSwitchingUnawareRotationList.getNextInputMethodLocked(onlyCurrentIme, imi, in getNextInputMethod() 519 public ImeSubtypeListItem getNextInputMethodLocked(boolean onlyCurrentIme, InputMethodInfo imi, in getNextInputMethodLocked() argument 527 return mController.getNextInputMethod(onlyCurrentIme, imi, subtype); in getNextInputMethodLocked()
|
D | InputMethodManagerService.java | 3344 private boolean switchToNextInputMethod(@NonNull IBinder token, boolean onlyCurrentIme) { in switchToNextInputMethod() argument 3350 onlyCurrentIme, mMethodMap.get(mCurMethodId), mCurrentSubtype); in switchToNextInputMethod() 5229 public boolean switchToNextInputMethod(boolean onlyCurrentIme) { in switchToNextInputMethod() argument 5230 return mImms.switchToNextInputMethod(mToken, onlyCurrentIme); in switchToNextInputMethod()
|
/frameworks/base/core/java/com/android/internal/inputmethod/ |
D | InputMethodPrivilegedOperations.java | 306 public boolean switchToNextInputMethod(boolean onlyCurrentIme) { in switchToNextInputMethod() argument 312 return ops.switchToNextInputMethod(onlyCurrentIme); in switchToNextInputMethod()
|
D | IInputMethodPrivilegedOperations.aidl | 40 boolean switchToNextInputMethod(boolean onlyCurrentIme); in switchToNextInputMethod() argument
|
/frameworks/base/services/tests/servicestests/src/com/android/server/inputmethod/ |
D | InputMethodSubtypeSwitchingControllerTest.java | 166 final boolean onlyCurrentIme, in assertNextInputMethod() argument 172 final ImeSubtypeListItem nextIme = controller.getNextInputMethod(onlyCurrentIme, in assertNextInputMethod() 178 final boolean onlyCurrentIme, in assertRotationOrder() argument 187 assertNextInputMethod(controller, onlyCurrentIme, currentItem, nextItem); in assertRotationOrder()
|
/frameworks/base/core/java/android/view/inputmethod/ |
D | InputMethodManager.java | 2906 public boolean switchToNextInputMethod(IBinder imeToken, boolean onlyCurrentIme) { in switchToNextInputMethod() argument 2908 .switchToNextInputMethod(onlyCurrentIme); in switchToNextInputMethod()
|
/frameworks/base/core/java/android/inputmethodservice/ |
D | InputMethodService.java | 1266 public final boolean switchToNextInputMethod(boolean onlyCurrentIme) { in switchToNextInputMethod() argument 1267 return mPrivOps.switchToNextInputMethod(onlyCurrentIme); in switchToNextInputMethod()
|