HomeSort by relevance Sort by last modified time
    Searched refs:Event (Results 1 - 25 of 701) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/event/
Event.java 17 package com.android.inputmethod.event;
20 * Class representing a generic input event as handled by Latin IME.
22 * This contains information about the origin of the event, but it is generalized and should
31 public class Event {
34 // An event we don't handle in Latin IME, for example pressing Ctrl on a hardware keyboard.
46 // A toggle event is triggered by a key that affects the previous character. An example would
50 // A mode event instructs the combiner to change modes. The canonical example would be the
57 final private int mType; // The type of event - one of the constants above
58 // The code point associated with the event, if relevant. This is a unicode code point, and
59 // has nothing to do with other representations of the key. It is only relevant if this event
    [all...]
Combiner.java 17 package com.android.inputmethod.event;
24 * Combine an event with the existing state and return the new event.
25 * @param event the event to combine with the existing state.
26 * @return the resulting event.
28 Event combine(Event event);
SoftwareEventDecoder.java 17 package com.android.inputmethod.event;
20 * An event decoder for events out of a software keyboard.
22 * This defines the interface for an event decoder that supports events out of a software keyboard.
23 * This differs significantly from hardware keyboard event decoders in several respects. First,
28 public Event decodeSoftwareEvent();
SoftwareKeyboardEventDecoder.java 17 package com.android.inputmethod.event;
24 public Event decodeSoftwareEvent() {
HardwareKeyboardEventDecoder.java 17 package com.android.inputmethod.event;
25 * A hardware event decoder for a hardware qwerty-ish keyboard.
40 public Event decodeHardwareKey(final KeyEvent keyEvent) {
50 return Event.createCommittableEvent(Constants.CODE_DELETE, null /* next */);
56 return Event.createDeadEvent(
64 return Event.createCommittableEvent(keyEvent.isShiftPressed()
70 return Event.createCommittableEvent(codePointAndFlags, null /* next */);
72 return Event.createNotHandledEvent();
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_CommonDataKinds_EventTest.java 19 import android.provider.ContactsContract.CommonDataKinds.Event;
25 assertGetTypeLabel(Event.TYPE_ANNIVERSARY);
26 assertGetTypeLabel(Event.TYPE_BIRTHDAY);
27 assertGetTypeLabel(Event.TYPE_OTHER);
28 assertGetTypeLabel(Event.TYPE_CUSTOM);
33 int res = Event.getTypeResource(type);
  /external/webkit/Source/WebCore/dom/
Event.cpp 24 #include "Event.h"
34 Event::Event()
48 Event::Event(const AtomicString& eventType, bool canBubbleArg, bool cancelableArg)
63 Event::~Event()
67 void Event::initEvent(const AtomicString& eventTypeArg, bool canBubbleArg, bool cancelableArg)
77 bool Event::isCustomEvent() const
82 bool Event::isUIEvent() cons
    [all...]
UIEventWithKeyState.cpp 26 UIEventWithKeyState* findEventWithKeyState(Event* event)
28 for (Event* e = event; e; e = e->underlyingEvent())
WindowEventContext.h 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
37 class Event;
42 WindowEventContext(Event*, PassRefPtr<Node>, const EventContext*);
46 bool handleLocalEvents(Event* event);
BeforeTextInsertedEvent.cpp 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
34 : Event(eventNames().webkitBeforeTextInsertedEvent, false, true), m_text(text)
EventNames.cpp 27 , name##Event(#name)
ScopedEventQueue.h 21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
41 class Event;
49 void enqueueEvent(PassRefPtr<Event>);
59 void dispatchEvent(PassRefPtr<Event>) const;
61 Vector<RefPtr<Event> > m_queuedEvents;
  /packages/apps/Mms/src/org/w3c/dom/events/
EventListener.java 32 * This method is called whenever an event occurs of the type for which
34 * @param evt The <code>Event</code> contains contextual information
35 * about the event. It also contains the <code>stopPropagation</code>
37 * determining the event's flow and default action.
39 public void handleEvent(Event evt);
  /external/chromium/base/synchronization/
condition_variable.h 7 // several threads wait for an event, as is common with a thread pool managed
8 // by a master. The meaning of such an event in the (worker) thread pool
106 // Define Event class that is used to form circularly linked lists.
112 class Event {
115 Event();
116 ~Event();
123 void PushBack(Event* other);
124 Event* PopFront();
125 Event* PopBack();
131 Event* Extract()
    [all...]
condition_variable_win.cc 53 Event* waiting_event;
112 ConditionVariable::Event* ConditionVariable::GetEventForWaiting() {
114 Event* cv_event;
117 cv_event = new Event();
134 void ConditionVariable::RecycleEvent(Event* used_event) {
144 // The next section provides the implementation for the private Event class.
147 // Event provides a doubly-linked-list of events for use exclusively by the
172 ConditionVariable::Event::Event() : handle_(0) {
176 ConditionVariable::Event::~Event()
    [all...]
  /frameworks/av/media/libstagefright/include/
TimedEventQueue.h 33 struct Event : public RefBase {
34 Event()
38 virtual ~Event() {}
56 Event(const Event &);
57 Event &operator=(const Event &);
63 // Start executing the event loop.
66 // Stop executing the event loop, if flush is false, any pending
71 // Posts an event to the front of the queue (after all events tha
101 sp<Event> event; member in struct:android::TimedEventQueue::QueueItem
    [all...]
  /external/webkit/Source/WebCore/page/
SpeechInputEvent.idl 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
30 ] SpeechInputEvent : Event {
  /external/webkit/Source/WebCore/storage/
IDBEventDispatcher.h 20 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
39 class Event;
44 static bool dispatch(Event*, Vector<RefPtr<EventTarget> >&); // The target first and then its ancestors in order of how the event bubbles.
IDBVersionChangeEvent.idl 17 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
30 ] IDBVersionChangeEvent : Event {
  /packages/apps/Contacts/src/com/android/contacts/model/dataitem/
EventDataItem.java 21 import android.provider.ContactsContract.CommonDataKinds.Event;
24 * Represents an event data item, wrapping the columns in
25 * {@link ContactsContract.CommonDataKinds.Event}.
34 return getContentValues().getAsString(Event.START_DATE);
38 * Values are one of Event.TYPE_*
41 return getContentValues().getAsInteger(Event.TYPE);
45 return getContentValues().getAsString(Event.LABEL);
  /external/chromium/third_party/libjingle/source/talk/base/
event.h 19 * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
43 class Event {
45 Event(bool manual_reset, bool initially_signaled);
46 ~Event();
event.cc 19 * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28 #include "talk/base/event.h"
44 Event::Event(bool manual_reset, bool initially_signaled)
50 bool Event::EnsureInitialized() {
61 Event::~Event() {
68 bool Event::Set() {
76 bool Event::Reset() {
84 bool Event::Wait(int cms)
    [all...]
  /external/webkit/Source/WebCore/xml/
XMLHttpRequestProgressEventThrottle.h 17 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
36 class Event;
44 // This implements the XHR2 progress event dispatching: "dispatch a progress event called progress
52 void dispatchEvent(PassRefPtr<Event>, ProgressEventAction = DoNotFlushProgressEvent);
76 RefPtr<Event> m_pausedEvent;
  /external/webkit/Source/WebCore/editing/
DeleteButton.h 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
40 virtual void defaultEventHandler(Event*);
  /external/webkit/Source/WebCore/loader/
NavigationAction.h 20 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
32 #include "Event.h"
44 NavigationAction(const KURL&, NavigationType, PassRefPtr<Event>);
45 NavigationAction(const KURL&, FrameLoadType, bool isFormSubmission, PassRefPtr<Event>);
51 const Event* event() const { return m_event.get(); } function in class:WebCore::NavigationAction
56 RefPtr<Event> m_event;

Completed in 1008 milliseconds

1 2 3 4 5 6 7 8 91011>>