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

1 2 3 4 5 6 7 8 91011>>

  /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;
BeforeProcessEvent.h 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
30 #include "Event.h"
35 class BeforeProcessEvent : public Event {
52 : Event(eventNames().beforeprocessEvent, false, true)
BeforeProcessEvent.idl 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
29 interface BeforeProcessEvent : Event {
EventListener.idl 30 void handleEvent(in Event evt);
  /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);
DocumentEvent.java 19 * user can create an Event of a type supported by the implementation. It is
22 * interface in an implementation which supports the Event model.
30 * type of <code>Event</code> interface to be created. If the
31 * <code>Event</code> interface specified is supported by the
32 * implementation this method will return a new <code>Event</code> of
33 * the interface type requested. If the <code>Event</code> is to be
35 * appropriate event init method must be called after creation in
36 * order to initialize the <code>Event</code>'s values. As an example,
43 * <code>Event</code>s when it is either inconvenient or unnecessary
44 * for the user to create an <code>Event</code> themselves. In cases
    [all...]
  /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 {
  /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;
  /external/webkit/Source/WebCore/bindings/gobject/
WebKitDOMBinding.h 33 class Event;
40 WebKitDOMEvent* kit(WebCore::Event* event);
  /external/webkit/Source/WebCore/webaudio/
AudioProcessingEvent.idl 16 * DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY
29 ] AudioProcessingEvent : Event {

Completed in 383 milliseconds

1 2 3 4 5 6 7 8 91011>>