/external/webkit/Source/WebCore/dom/ |
D | Event.cpp | 34 Event::Event() in Event() function in WebCore::Event 48 Event::Event(const AtomicString& eventType, bool canBubbleArg, bool cancelableArg) in Event() function in WebCore::Event 63 Event::~Event() in ~Event() 67 void Event::initEvent(const AtomicString& eventTypeArg, bool canBubbleArg, bool cancelableArg) in initEvent() 77 bool Event::isCustomEvent() const in isCustomEvent() 82 bool Event::isUIEvent() const in isUIEvent() 87 bool Event::isMouseEvent() const in isMouseEvent() 92 bool Event::isMutationEvent() const in isMutationEvent() 97 bool Event::isKeyboardEvent() const in isKeyboardEvent() 102 bool Event::isTextEvent() const in isTextEvent() [all …]
|
D | Event.h | 37 class Event : public RefCounted<Event> { 64 static PassRefPtr<Event> create() in create() 66 return adoptRef(new Event); in create() 68 static PassRefPtr<Event> create(const AtomicString& type, bool canBubble, bool cancelable) in create() 70 return adoptRef(new Event(type, canBubble, cancelable)); in create() 72 virtual ~Event(); 162 Event* underlyingEvent() const { return m_underlyingEvent.get(); } in underlyingEvent() 163 void setUnderlyingEvent(PassRefPtr<Event>); 172 Event(); 173 Event(const AtomicString& type, bool canBubble, bool cancelable); [all …]
|
D | EventTarget.h | 48 class Event; variable 156 virtual bool dispatchEvent(PassRefPtr<Event>); 157 bool dispatchEvent(PassRefPtr<Event>, ExceptionCode&); // DOM API 169 bool fireEventListeners(Event*); 187 void fireEventListeners(Event*, EventTargetData*, EventListenerVector&); 193 …entListener* on##attribute() { return getAttributeEventListener(eventNames().attribute##Event); } \ 194 …<EventListener> listener) { setAttributeEventListener(eventNames().attribute##Event, listener); } \ 201 …tener* type::on##attribute() { return getAttributeEventListener(eventNames().attribute##Event); } \ 202 …<EventListener> listener) { setAttributeEventListener(eventNames().attribute##Event, listener); } \ 205 …ttribute() { return document()->getWindowAttributeEventListener(eventNames().attribute##Event); } \ [all …]
|
D | EventDispatcher.h | 34 class Event; variable 52 static void dispatchScopedEvent(Node*, PassRefPtr<Event>); 54 …static void dispatchSimulatedClick(Node*, PassRefPtr<Event> underlyingEvent, bool sendMouseEvents,… 56 bool dispatchEvent(PassRefPtr<Event>); 57 PassRefPtr<EventTarget> adjustRelatedTarget(Event*, PassRefPtr<EventTarget>); 64 EventDispatchBehavior determineDispatchBehavior(Event*); 65 void ensureEventAncestors(Event*);
|
D | EventQueue.h | 38 class Event; variable 53 void enqueueEvent(PassRefPtr<Event>); 55 bool cancelEvent(Event*); 62 void dispatchEvent(PassRefPtr<Event>); 65 ListHashSet<RefPtr<Event> > m_queuedEvents;
|
D | EventQueue.cpp | 72 void EventQueue::enqueueEvent(PassRefPtr<Event> event) in enqueueEvent() 86 …RefPtr<Event> scrollEvent = Event::create(eventNames().scrollEvent, canBubble, false /* non cancel… in enqueueOrDispatchScrollEvent() 100 bool EventQueue::cancelEvent(Event* event) in cancelEvent() 130 ListHashSet<RefPtr<Event> >::iterator iter = m_queuedEvents.begin(); in pendingEventTimerFired() 131 RefPtr<Event> event = *iter; in pendingEventTimerFired() 139 void EventQueue::dispatchEvent(PassRefPtr<Event> event) in dispatchEvent()
|
D | ScopedEventQueue.h | 41 class Event; variable 49 void enqueueEvent(PassRefPtr<Event>); 59 void dispatchEvent(PassRefPtr<Event>) const; 61 Vector<RefPtr<Event> > m_queuedEvents;
|
/external/chromium/base/synchronization/ |
D | condition_variable_win.cc | 53 Event* waiting_event; in TimedWait() 112 ConditionVariable::Event* ConditionVariable::GetEventForWaiting() { in GetEventForWaiting() 114 Event* cv_event; in GetEventForWaiting() 117 cv_event = new Event(); in GetEventForWaiting() 134 void ConditionVariable::RecycleEvent(Event* used_event) { in RecycleEvent() 172 ConditionVariable::Event::Event() : handle_(0) { in Event() function in base::ConditionVariable::Event 176 ConditionVariable::Event::~Event() { in ~Event() 180 Event* cv_event = PopFront(); in ~Event() 193 void ConditionVariable::Event::InitListElement() { in InitListElement() 200 bool ConditionVariable::Event::IsEmpty() const { in IsEmpty() [all …]
|
D | condition_variable.h | 112 class Event { 115 Event(); 116 ~Event(); 123 void PushBack(Event* other); 124 Event* PopFront(); 125 Event* PopBack(); 131 Event* Extract(); 138 bool ValidateAsDistinct(Event* other) const; 144 Event* next_; 145 Event* prev_; [all …]
|
/external/bluetooth/bluez/doc/ |
D | mgmt-api.txt | 22 | Event Code | Controller Index | Parameter Length | 358 0x01 Command and Event tracing 359 0x02 Command, Event and ACL tracing 360 0x03 Command, Event, ACL and SCO tracing 375 Command Complete Event 378 Event Code 0x0001 380 Event Parameters Command_Opcode (2 Octets) 384 Command Status Event 387 Event Code 0x0002 389 Event Parameters Status (1 Octet) [all …]
|
/external/chromium/third_party/libjingle/source/talk/base/ |
D | event.cc | 44 Event::Event(bool manual_reset, bool initially_signaled) in Event() function in talk_base::Event 50 bool Event::EnsureInitialized() { in EnsureInitialized() 61 Event::~Event() { in ~Event() 68 bool Event::Set() { in Set() 76 bool Event::Reset() { in Reset() 84 bool Event::Wait(int cms) { in Wait() 95 Event::Event(bool manual_reset, bool initially_signaled) 102 bool Event::EnsureInitialized() { 116 Event::~Event() { 128 bool Event::Set() { [all …]
|
/external/webkit/Source/WebCore/editing/ |
D | EditorCommand.cpp | 70 bool (*execute)(Frame*, Event*, EditorCommandSource, const String&); 72 bool (*isEnabled)(Frame*, Event*, EditorCommandSource); 73 TriState (*state)(Frame*, Event*); 74 String (*value)(Frame*, Event*); 90 static Frame* targetFrame(Frame* frame, Event* event) in targetFrame() 278 static bool executeBackColor(Frame* frame, Event*, EditorCommandSource source, const String& value) in executeBackColor() argument 283 static bool executeCopy(Frame* frame, Event*, EditorCommandSource, const String&) in executeCopy() argument 289 static bool executeCreateLink(Frame* frame, Event*, EditorCommandSource, const String& value) in executeCreateLink() argument 298 static bool executeCut(Frame* frame, Event*, EditorCommandSource source, const String&) in executeCut() argument 308 static bool executeDelete(Frame* frame, Event*, EditorCommandSource source, const String&) in executeDelete() argument [all …]
|
/external/chromium/chrome/browser/resources/sync_internals/ |
D | chrome_sync.js | 13 function Event() { class 17 Event.prototype.addListener = function(listener) { class 21 Event.prototype.removeListener = function(listener) { 29 Event.prototype.hasListener = function(listener) { 33 Event.prototype.hasListeners = function(listener) { 38 Event.prototype.findListener_ = function(listener) { 49 Event.prototype.dispatch_ = function() { 66 chrome.sync.onSyncServiceStateChanged = new Event(); 69 chrome.sync.onSyncNotificationStateChange = new Event(); 70 chrome.sync.onSyncIncomingNotification = new Event(); [all …]
|
/external/webkit/Source/WebKit/chromium/src/ |
D | WebNotification.cpp | 118 RefPtr<Event> event = Event::create("display", false, true); in dispatchDisplayEvent() 125 RefPtr<Event> event = Event::create(eventNames().errorEvent, false, true); in dispatchErrorEvent() 132 RefPtr<Event> event = Event::create(eventNames().closeEvent, false, true); in dispatchCloseEvent() 140 RefPtr<Event> event = Event::create(eventNames().clickEvent, false, true); in dispatchClickEvent()
|
/external/webkit/Source/WebCore/html/shadow/ |
D | MediaControlElements.h | 43 class Event; variable 129 virtual void defaultEventHandler(Event*); 185 virtual void defaultEventHandler(Event*); 201 virtual void defaultEventHandler(Event*); 226 virtual void defaultEventHandler(Event*); 239 virtual void defaultEventHandler(Event*); 287 virtual void defaultEventHandler(Event*); 301 virtual void defaultEventHandler(Event*); 315 virtual void defaultEventHandler(Event*); 330 virtual void defaultEventHandler(Event*); [all …]
|
/external/webkit/Source/WebCore/html/ |
D | HTMLAnchorElement.h | 107 virtual void defaultEventHandler(Event*); 123 static EventType eventType(Event*); 133 bool isEnterKeyKeydownEvent(Event*); 134 bool isMiddleMouseButtonEvent(Event*); 135 bool isLinkClick(Event*); 136 void handleLinkClick(Event*, Document*, const String& url, const String& target, bool hideReferrer …
|
D | HTMLFormElement.h | 35 class Event; variable 74 bool prepareForSubmission(Event*); 86 void submitImplicitly(Event*, bool fromImplicitSubmissionTrigger); 124 virtual void handleLocalEvents(Event*); 135 … void submit(Event*, bool activateSubmitButton, bool processingUserGesture, FormSubmissionTrigger); 141 bool validateInteractively(Event*);
|
/external/webkit/Source/WebCore/page/ |
D | ContextMenuController.h | 41 class Event; variable 55 void handleContextMenuEvent(Event*); 56 void showContextMenu(Event*, PassRefPtr<ContextMenuProvider>); 68 PassOwnPtr<ContextMenu> createContextMenu(Event*); 69 void showContextMenu(Event*);
|
/external/webkit/Source/WebCore/loader/ |
D | NavigationAction.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(); } in event() 56 RefPtr<Event> m_event;
|
/external/oprofile/events/i386/westmere/ |
D | unit_masks | 39 0x01 conditional Retired conditional branch instructions (Precise Event) 40 0x02 near_call Retired near call instructions (Precise Event) 41 0x04 all_branches Retired branch instructions (Precise Event) 54 0x01 conditional Mispredicted conditional retired branches (Precise Event) 55 0x02 near_call Mispredicted near retired calls (Precise Event) 56 0x04 all_branches Mispredicted retired branch instructions (Precise Event) 78 0x01 all X87 Floating point assists (Precise Event) 79 0x02 output X87 Floating point assists for invalid output value (Precise Event) 80 0x04 input X87 Floating poiint assists for invalid input value (Precise Event) 101 0x01 any_p Instructions retired (Programmable counter and Precise Event) [all …]
|
/external/webkit/Source/WebCore/bindings/v8/ |
D | V8WorkerContextEventListener.h | 42 class Event; variable 52 virtual void handleEvent(ScriptExecutionContext*, Event*); 58 …al<v8::Value> callListenerFunction(ScriptExecutionContext*, v8::Handle<v8::Value> jsEvent, Event*); 59 v8::Local<v8::Object> getReceiverObject(ScriptExecutionContext*, Event*);
|
D | V8AbstractEventListener.h | 43 class Event; variable 75 virtual void handleEvent(ScriptExecutionContext*, Event*); 108 void invokeEventHandler(ScriptExecutionContext*, Event*, v8::Handle<v8::Value> jsEvent); 111 v8::Local<v8::Object> getReceiverObject(Event*); 117 …8::Value> callListenerFunction(ScriptExecutionContext*, v8::Handle<v8::Value> jsevent, Event*) = 0;
|
D | WorkerContextExecutionProxy.h | 45 class Event; variable 67 void trackEvent(Event*); 83 static bool forgetV8EventObject(Event*); 91 Vector<Event*> m_events;
|
/external/clang/test/SemaTemplate/ |
D | deduction-crash.cpp | 41 template<class Event> 42 int process(Event) in process() 47 template<class Event> 48 int ant(Event)
|
/external/webkit/Source/WebCore/storage/ |
D | IDBEventDispatcher.cpp | 39 bool IDBEventDispatcher::dispatch(Event* event, Vector<RefPtr<EventTarget> >& eventTargets) in dispatch() 44 event->setEventPhase(Event::CAPTURING_PHASE); in dispatch() 52 event->setEventPhase(Event::AT_TARGET); in dispatch() 58 event->setEventPhase(Event::BUBBLING_PHASE); in dispatch()
|