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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/WebCore/dom/
Event.cpp 24 #include "Event.h"
31 Event::Event()
45 Event::Event(const AtomicString& eventType, bool canBubbleArg, bool cancelableArg)
60 Event::~Event()
64 void Event::initEvent(const AtomicString& eventTypeArg, bool canBubbleArg, bool cancelableArg)
74 bool Event::isUIEvent() const
79 bool Event::isMouseEvent() cons
    [all...]
UIEventWithKeyState.cpp 26 UIEventWithKeyState* findEventWithKeyState(Event* event)
28 for (Event* e = event; e; e = e->underlyingEvent())
BeforeTextInsertedEvent.cpp 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
34 : Event(eventNames().webkitBeforeTextInsertedEvent, false, true), m_text(text)
BeforeUnloadEvent.cpp 31 : Event(eventNames().beforeunloadEvent, false, true)
EventNames.cpp 27 , name##Event(#name)
EventListener.idl 30 void handleEvent(in Event evt);
Event.h 38 class Event : public RefCounted<Event> {
65 static PassRefPtr<Event> create()
67 return adoptRef(new Event);
69 static PassRefPtr<Event> create(const AtomicString& type, bool canBubble, bool cancelable)
71 return adoptRef(new Event(type, canBubble, cancelable));
73 virtual ~Event();
94 EventTarget* srcElement() const { return target(); } // MSIE extension - "the object that fired the event"
146 Event* underlyingEvent() const { return m_underlyingEvent.get(); }
147 void setUnderlyingEvent(PassRefPtr<Event>);
    [all...]
BeforeUnloadEvent.h 27 #include "Event.h"
31 class BeforeUnloadEvent : public Event {
ClipboardEvent.cpp 33 : Event(eventType, canBubble, cancelable), m_clipboard(clipboard)
BeforeLoadEvent.h 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
30 #include "Event.h"
35 class BeforeLoadEvent : public Event {
58 : Event(eventNames().beforeloadEvent, false, true)
BeforeLoadEvent.idl 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
29 interface BeforeLoadEvent : Event {
PageTransitionEvent.idl 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
28 interface PageTransitionEvent : Event {
  /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/
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
104 // Define Event class that is used to form circularly linked lists.
110 class Event {
113 Event();
114 ~Event();
121 void PushBack(Event* other);
122 Event* PopFront();
123 Event* PopBack();
129 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();
135 void ConditionVariable::RecycleEvent(Event* used_event) {
145 // The next section provides the implementation for the private Event class.
148 // Event provides a doubly-linked-list of events for use exclusively by the
173 ConditionVariable::Event::Event() : handle_(0) {
177 ConditionVariable::Event::~Event()
    [all...]
  /frameworks/base/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/WebCore/editing/
DeleteButton.h 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
37 virtual void defaultEventHandler(Event*);
  /external/webkit/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;
  /packages/apps/Mms/src/org/w3c/dom/smil/
TimeEvent.java 15 import org.w3c.dom.events.Event;
22 public interface TimeEvent extends Event {
25 * <code>AbstractView</code> from which the event was generated.
30 * Specifies some detail information about the <code>Event</code> ,
31 * depending on the type of event.
43 * @param typeArg Specifies the event type.
44 * @param viewArg Specifies the <code>Event</code> 's
46 * @param detailArg Specifies the <code>Event</code> 's detail.
  /external/webkit/WebCore/page/
ContextMenuController.h 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
40 class Event;
53 void handleContextMenuEvent(Event*);
54 void showContextMenu(Event*, PassRefPtr<ContextMenuProvider>);
59 ContextMenu* createContextMenu(Event*);
60 void showContextMenu(Event*);
  /external/webkit/WebCore/rendering/
TextControlInnerElements.h 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
53 virtual void defaultEventHandler(Event*);
59 virtual void defaultEventHandler(Event*);
65 virtual void defaultEventHandler(Event*);
  /external/chromium/net/base/
load_log_util_unittest.cc 17 LoadLog::Event(LoadLog::TYPE_HOST_RESOLVER_IMPL,
22 LoadLog::Event(LoadLog::TYPE_HOST_RESOLVER_IMPL_OBSERVER_ONSTART,
27 LoadLog::Event(LoadLog::TYPE_HOST_RESOLVER_IMPL_OBSERVER_ONSTART,
31 LoadLog::Event(LoadLog::TYPE_CANCELLED,
35 LoadLog::Event(LoadLog::TYPE_HOST_RESOLVER_IMPL,
50 LoadLog::Event(LoadLog::TYPE_HOST_RESOLVER_IMPL,
58 LoadLog::Event(LoadLog::TYPE_HOST_RESOLVER_IMPL,
75 LoadLog::Event(LoadLog::TYPE_HOST_RESOLVER_IMPL,
81 LoadLog::Event(LoadLog::TYPE_HOST_RESOLVER_IMPL_OBSERVER_ONSTART,
86 LoadLog::Event(LoadLog::TYPE_HOST_RESOLVER_IMPL_OBSERVER_ONSTART
    [all...]
  /external/webkit/WebCore/bindings/v8/
V8WorkerContextEventListener.h 21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
42 class Event;
52 virtual void handleEvent(ScriptExecutionContext*, Event*);
58 virtual v8::Local<v8::Value> callListenerFunction(ScriptExecutionContext*, v8::Handle<v8::Value> jsEvent, Event*);
59 v8::Local<v8::Object> getReceiverObject(ScriptExecutionContext*, Event*);
  /external/webkit/WebKit/chromium/src/
EventListenerWrapper.h 21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
52 virtual void handleEvent(ScriptExecutionContext*, Event*);

Completed in 337 milliseconds

1 2 3 4 5 6 7 8 91011>>