HomeSort by relevance Sort by last modified time
    Searched refs:EXTRA_EVENT_TIME (Results 1 - 3 of 3) sorted by null

  /cts/hostsidetests/inputmethodservice/common/src/android/inputmethodservice/cts/common/
DeviceEventConstants.java 67 public static final String EXTRA_EVENT_TIME = "event_time";
  /cts/hostsidetests/inputmethodservice/deviceside/provider/src/android/inputmethodservice/cts/receiver/
EventReceiver.java 19 import static android.inputmethodservice.cts.common.DeviceEventConstants.EXTRA_EVENT_TIME;
44 // {@link DeviceEventConstants#EXTRA_EVENT_TIME EXTRA_EVENT_TIME} extra, here we record the
46 if (!intent.hasExtra(EXTRA_EVENT_TIME)) {
47 intent.putExtra(EXTRA_EVENT_TIME, SystemClock.uptimeMillis());
  /cts/hostsidetests/inputmethodservice/deviceside/lib/src/android/inputmethodservice/cts/
DeviceEvent.java 21 import static android.inputmethodservice.cts.common.DeviceEventConstants.EXTRA_EVENT_TIME;
69 .putExtra(EXTRA_EVENT_TIME, SystemClock.uptimeMillis());
92 if (!intent.hasExtra(EXTRA_EVENT_TIME)) {
94 "Intent must have " + EXTRA_EVENT_TIME + ": " + intent);
97 return new DeviceEvent(sender, type, intent.getLongExtra(EXTRA_EVENT_TIME, 0L));

Completed in 864 milliseconds