Home
last modified time | relevance | path

Searched refs:isType (Results 1 – 3 of 3) sorted by relevance

/cts/hostsidetests/inputmethodservice/deviceside/devicetest/src/android/inputmethodservice/cts/devicetest/
DInputMethodServiceDeviceTest.java21 import static android.inputmethodservice.cts.DeviceEvent.isType;
95 .anyMatch(isFrom(Ime1Constants.CLASS).and(isType(ON_CREATE))), in testCreateIme1()
99 .anyMatch(isFrom(Ime1Constants.CLASS).and(isType(ON_START_INPUT))), in testCreateIme1()
114 .anyMatch(isFrom(Ime1Constants.CLASS).and(isType(ON_START_INPUT))), in testSwitchToNextInputMethod()
144 .anyMatch(isFrom(Ime2Constants.CLASS).and(isType(ON_START_INPUT))), in switchToPreviousInputMethod()
168 .anyMatch(isFrom(Ime1Constants.CLASS).and(isType(ON_START_INPUT))), in testSwitchToHandwritingInputMethod()
245 .anyMatch(isFrom(Ime1Constants.CLASS).and(isType(ON_START_INPUT))), in testInputUnbindsOnImeStopped()
249 .anyMatch(isFrom(Ime1Constants.CLASS).and(isType(ON_BIND_INPUT))), in testInputUnbindsOnImeStopped()
259 .anyMatch(isFrom(Ime2Constants.CLASS).and(isType(ON_START_INPUT))), in testInputUnbindsOnImeStopped()
263 .anyMatch(isFrom(Ime2Constants.CLASS).and(isType(ON_BIND_INPUT))), in testInputUnbindsOnImeStopped()
[all …]
DTestHelper.java20 import static android.inputmethodservice.cts.DeviceEvent.isType;
157 return isFrom(mTestInfo.getTestName()).and(isType(TEST_START)); in isStartOfTest()
/cts/hostsidetests/inputmethodservice/deviceside/lib/src/android/inputmethodservice/cts/
DDeviceEvent.java134 public static Predicate<DeviceEvent> isType(DeviceEventType type) { in isType() method in DeviceEvent