Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/inputmethod/
DInputMethodSubtypeSwitchingController.java272 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()
DInputMethodManagerService.java3344 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/
DInputMethodPrivilegedOperations.java306 public boolean switchToNextInputMethod(boolean onlyCurrentIme) { in switchToNextInputMethod() argument
312 return ops.switchToNextInputMethod(onlyCurrentIme); in switchToNextInputMethod()
DIInputMethodPrivilegedOperations.aidl40 boolean switchToNextInputMethod(boolean onlyCurrentIme); in switchToNextInputMethod() argument
/frameworks/base/services/tests/servicestests/src/com/android/server/inputmethod/
DInputMethodSubtypeSwitchingControllerTest.java166 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/
DInputMethodManager.java2906 public boolean switchToNextInputMethod(IBinder imeToken, boolean onlyCurrentIme) { in switchToNextInputMethod() argument
2908 .switchToNextInputMethod(onlyCurrentIme); in switchToNextInputMethod()
/frameworks/base/core/java/android/inputmethodservice/
DInputMethodService.java1266 public final boolean switchToNextInputMethod(boolean onlyCurrentIme) { in switchToNextInputMethod() argument
1267 return mPrivOps.switchToNextInputMethod(onlyCurrentIme); in switchToNextInputMethod()