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.java31 public class Event { class
65 final public Event mNextEvent;
68 private Event(final int type, final int codePoint, final Event next) { method in class:Event
74 public static Event createDeadEvent(final int codePoint, final Event next) {
75 return new Event(EVENT_DEAD, codePoint, next);
78 public static Event createCommittableEvent(final int codePoint, final Event next) {
79 return new Event(EVENT_COMMITTABL
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMapContentObserver.java166 private class Event { class in class:BluetoothMapContentObserver
173 public Event(String eventType, long handle, String folder, method in class:BluetoothMapContentObserver.Event
260 private void sendEvent(Event evt) {
341 Event evt = new Event("NewMessage", id, folderSms[type],
349 Event evt = new Event("MessageShift", id, folderSms[type],
361 Event evt = new Event("MessageDeleted", msg.id, "deleted",
398 Event ev
[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...]

Completed in 149 milliseconds