Searched refs:EXTRA_EVENT_TIME (Results 1 – 3 of 3) sorted by relevance
19 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()
21 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()
67 public static final String EXTRA_EVENT_TIME = "event_time"; field in DeviceEventConstants