Searched defs:Event (Results 1 - 4 of 4) sorted by relevance

/packages/apps/Mms/src/org/w3c/dom/events/
H A DEvent.java16 * The <code>Event</code> interface is used to provide contextual information
18 * implements the <code>Event</code> interface is generally passed as the
21 * <code>Event</code> which contain information directly relating to the
27 public interface Event { interface
116 * <code>Event</code> created through the <code>DocumentEvent</code>
118 * <code>Event</code> has been dispatched via the
122 * <code>Event</code> interface only the values specified in the
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/event/
H A DEvent.java35 public class Event { class
106 final public Event mNextEvent;
109 private Event(final int type, final CharSequence text, final int codePoint, final int keyCode, method in class:Event
111 final Event next) {
136 public static Event createSoftwareKeypressEvent(final int codePoint, final int keyCode,
138 return new Event(EVENT_TYPE_INPUT_KEYPRESS, null /* text */, codePoint, keyCode, x, y,
142 public static Event createHardwareKeypressEvent(final int codePoint, final int keyCode,
143 final Event next, final boolean isKeyRepeat) {
144 return new Event(EVENT_TYPE_INPUT_KEYPRESS, null /* text */, codePoint, keyCode,
150 public static Event createDeadEven
[all...]
/packages/apps/Calendar/src/com/android/calendar/
H A DEvent.java40 // TODO: should Event be Parcelable so it can be passed via Intents?
41 public class Event implements Cloneable { class in inherits:Cloneable
151 public Event nextRight;
152 public Event nextLeft;
153 public Event nextUp;
154 public Event nextDown;
159 Event e = new Event();
180 public final void copyTo(Event dest) {
199 public static final Event newInstanc
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMapContentObserver.java233 private class Event { class in class:BluetoothMapContentObserver
242 public Event(String eventType, long handle, String folder, method in class:BluetoothMapContentObserver.Event
429 private void sendEvent(Event evt) {
540 Event evt = new Event(EVENT_TYPE_NEW, id, folderSms[type],
551 Event evt = new Event(EVENT_TYPE_SHIFT, id, folderSms[type],
560 Event evt = new Event(EVENT_TYPE_DELETE, id, BluetoothMapContract.FOLDER_NAME_DELETED,
565 Event ev
[all...]

Completed in 247 milliseconds