Home
last modified time | relevance | path

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

/cts/hostsidetests/inputmethodservice/deviceside/provider/src/android/inputmethodservice/cts/receiver/
DEventReceiver.java19 import static android.inputmethodservice.cts.common.DeviceEventConstants.EXTRA_EVENT_TIME;
46 if (!intent.hasExtra(EXTRA_EVENT_TIME)) { in onReceive()
47 intent.putExtra(EXTRA_EVENT_TIME, SystemClock.uptimeMillis()); in onReceive()
/cts/hostsidetests/inputmethodservice/deviceside/lib/src/android/inputmethodservice/cts/
DDeviceEvent.java21 import static android.inputmethodservice.cts.common.DeviceEventConstants.EXTRA_EVENT_TIME;
69 .putExtra(EXTRA_EVENT_TIME, SystemClock.uptimeMillis()); in newDeviceEventIntent()
92 if (!intent.hasExtra(EXTRA_EVENT_TIME)) { in newEvent()
94 "Intent must have " + EXTRA_EVENT_TIME + ": " + intent); in newEvent()
97 return new DeviceEvent(sender, type, intent.getLongExtra(EXTRA_EVENT_TIME, 0L)); in newEvent()
/cts/hostsidetests/inputmethodservice/common/src/android/inputmethodservice/cts/common/
DDeviceEventConstants.java67 public static final String EXTRA_EVENT_TIME = "event_time"; field in DeviceEventConstants