/cts/tests/accessibilityservice/src/android/accessibilityservice/cts/utils/ |
D | InputConnectionSplitter.java | 65 public SurroundingText getSurroundingText(int beforeLength, int afterLength, int flags) { in getSurroundingText() argument 66 mForNotify.getSurroundingText(beforeLength, afterLength, flags); in getSurroundingText() 67 return super.getSurroundingText(beforeLength, afterLength, flags); in getSurroundingText() 83 public boolean deleteSurroundingTextInCodePoints(int beforeLength, int afterLength) { in deleteSurroundingTextInCodePoints() argument 84 mForNotify.deleteSurroundingTextInCodePoints(beforeLength, afterLength); in deleteSurroundingTextInCodePoints() 85 return super.deleteSurroundingTextInCodePoints(beforeLength, afterLength); in deleteSurroundingTextInCodePoints() 89 public boolean deleteSurroundingText(int beforeLength, int afterLength) { in deleteSurroundingText() argument 90 mForNotify.deleteSurroundingText(beforeLength, afterLength); in deleteSurroundingText() 91 return super.deleteSurroundingText(beforeLength, afterLength); in deleteSurroundingText()
|
D | NoOpInputConnection.java | 62 public boolean deleteSurroundingText(int beforeLength, int afterLength) { in deleteSurroundingText() argument 67 public boolean deleteSurroundingTextInCodePoints(int beforeLength, int afterLength) { in deleteSurroundingTextInCodePoints() argument
|
/cts/tests/inputmethod/util/src/android/view/inputmethod/cts/util/ |
D | HandlerInputConnection.java | 62 public SurroundingText getSurroundingText(int beforeLength, int afterLength, int flags) { in getSurroundingText() argument 77 public boolean deleteSurroundingText(int beforeLength, int afterLength) { in deleteSurroundingText() argument 82 public boolean deleteSurroundingTextInCodePoints(int beforeLength, int afterLength) { in deleteSurroundingTextInCodePoints() argument
|
D | NoOpInputConnection.java | 63 public boolean deleteSurroundingText(int beforeLength, int afterLength) { in deleteSurroundingText() argument 69 int afterLength) { in deleteSurroundingTextInCodePoints() argument
|
/cts/tests/inputmethod/src/android/view/inputmethod/cts/ |
D | InputConnectionDefaultMethodTest.java | 235 public boolean deleteSurroundingText(int beforeLength, int afterLength) { in deleteSurroundingText() argument 236 return mDelegate.deleteSurroundingText(beforeLength, afterLength); in deleteSurroundingText() 240 public boolean deleteSurroundingTextInCodePoints(int beforeLength, int afterLength) { in deleteSurroundingTextInCodePoints() argument 241 return mDelegate.deleteSurroundingTextInCodePoints(beforeLength, afterLength); in deleteSurroundingTextInCodePoints()
|
D | InputConnectionEndToEndTest.java | 1206 public SurroundingText getSurroundingText(int beforeLength, int afterLength, in testGetSurroundingText() argument 1210 args.putInt("afterLength", afterLength); in testGetSurroundingText() 1250 public SurroundingText getSurroundingText(int beforeLength, int afterLength, in testGetSurroundingTextFailWithNegativeAfterLength() argument 1254 args.putInt("afterLength", afterLength); in testGetSurroundingTextFailWithNegativeAfterLength() 1288 public SurroundingText getSurroundingText(int beforeLength, int afterLength, in testGetSurroundingTextFailWithNegativeBeforeLength() argument 1292 args.putInt("afterLength", afterLength); in testGetSurroundingTextFailWithNegativeBeforeLength() 1331 public SurroundingText getSurroundingText(int beforeLength, int afterLength, in testGetSurroundingTextFailWithTimeout() argument 1335 args.putInt("afterLength", afterLength); in testGetSurroundingTextFailWithTimeout() 1365 final int afterLength = 4; in testGetSurroundingTextFailFastAfterUnbindInput() local 1377 public SurroundingText getSurroundingText(int beforeLength, int afterLength, in testGetSurroundingTextFailFastAfterUnbindInput() argument [all …]
|
D | InputConnectionHandlerTest.java | 738 public SurroundingText getSurroundingText(int beforeLength, int afterLength, in testExceptionFromGetSurroundingText() argument
|
/cts/tests/inputmethod/mocka11yime/client/src/com/android/cts/mocka11yime/ |
D | MockA11yImeSession.java | 466 @IntRange(from = 0) int afterLength, int flags) { in callGetSurroundingText() 469 params.putInt("afterLength", afterLength); in callGetSurroundingText() 486 public MockA11yImeCommand callDeleteSurroundingText(int beforeLength, int afterLength) { in callDeleteSurroundingText() argument 489 params.putInt("afterLength", afterLength); in callDeleteSurroundingText()
|
/cts/tests/inputmethod/legacyimeclienttestlib/src/com/android/cts/inputmethod/ |
D | LegacyImeClientTestUtils.java | 76 public boolean deleteSurroundingText(int beforeLength, int afterLength) { in deleteSurroundingText() argument
|
/cts/tests/inputmethod/mocka11yime/service/src/com/android/cts/mocka11yime/ |
D | MockA11yIme.java | 268 final int afterLength = command.getExtras().getInt("afterLength"); in onHandleCommand() 271 beforeLength, afterLength, flags); in onHandleCommand() 275 final int afterLength = command.getExtras().getInt("afterLength"); in onHandleCommand() 277 beforeLength, afterLength); in onHandleCommand()
|
/cts/tests/inputmethod/mockime/src/com/android/cts/mockime/ |
D | MockImeSession.java | 719 @IntRange(from = 0) int afterLength, int flags) { in callGetSurroundingText() 722 params.putInt("afterLength", afterLength); in callGetSurroundingText() 798 public ImeCommand callDeleteSurroundingText(int beforeLength, int afterLength) { in callDeleteSurroundingText() argument 801 params.putInt("afterLength", afterLength); in callDeleteSurroundingText() 826 public ImeCommand callDeleteSurroundingTextInCodePoints(int beforeLength, int afterLength) { in callDeleteSurroundingTextInCodePoints() argument 829 params.putInt("afterLength", afterLength); in callDeleteSurroundingTextInCodePoints()
|
D | MockIme.java | 243 final int afterLength = command.getExtras().getInt("afterLength"); in onHandleCommand() 246 beforeLength, afterLength, flags); in onHandleCommand() 261 final int afterLength = command.getExtras().getInt("afterLength"); in onHandleCommand() 263 beforeLength, afterLength); in onHandleCommand() 267 final int afterLength = command.getExtras().getInt("afterLength"); in onHandleCommand() 269 .deleteSurroundingTextInCodePoints(beforeLength, afterLength); in onHandleCommand()
|