/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(); 166 Event* underlyingEvent() const { return m_underlyingEvent.get(); } in underlyingEvent() 167 void setUnderlyingEvent(PassRefPtr<Event>); 176 Event(); 177 Event(const AtomicString& type, bool canBubble, bool cancelable); [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 | 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 | 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/compiler-rt/lib/tsan/tests/rtl/ |
D | tsan_test_util_linux.cc | 185 struct Event { struct 212 Event(Type type, const void *ptr = 0, uptr arg = 0, uptr arg2 = 0) in Event() argument 235 void send(Event *ev); 236 void HandleEvent(Event *ev); 239 void ScopedThread::Impl::HandleEvent(Event *ev) { in HandleEvent() 245 case Event::READ: in HandleEvent() 246 case Event::WRITE: { in HandleEvent() 248 if (ev->type == Event::READ) { in HandleEvent() 271 case Event::VPTR_UPDATE: in HandleEvent() 274 case Event::CALL: in HandleEvent() [all …]
|
/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/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/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/ |
D | CTableCombo.java | 28 import org.eclipse.swt.widgets.Event; 73 public void handleEvent(Event event) { in init() 97 public void handleEvent(Event event) { in init() 158 protected void handleTableEvent(Event event) { in handleTableEvent() 165 Event e = new Event(); in handleTableEvent() 182 Event e = new Event(); in handleTableEvent() 194 Event e = new Event(); in handleTableEvent() 209 Event e = new Event(); in handleTableEvent() 228 Event e = new Event(); in handleTableEvent() 238 Event e = new Event(); in handleTableEvent() [all …]
|
D | CCombo3.java | 25 import org.eclipse.swt.widgets.Event; 94 public void handleEvent(Event event) { in CCombo3() 111 Event e = new Event(); in CCombo3() 120 public void handleEvent(Event event) { in CCombo3() 133 public void handleEvent(Event event) { 150 public void handleEvent(final Event event) { 219 private TableItem getItemUnderCursor(Event event) { 226 public void handleEvent(Event event) { 240 public void handleEvent(Event event) { 265 private void sendSelectionEvent(Event event) { in sendSelectionEvent() [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/replicaisland/src/com/replica/replicaisland/ |
D | EventReporter.java | 15 private class Event { class in EventReporter 26 private ArrayList<Event> mEvents = new ArrayList<Event>(); 27 private ArrayList<Event> mProcessedEvents = new ArrayList<Event>(); 56 Event event = new Event(); in addEvent() 80 public void recordEvent(Event event) { in recordEvent()
|
/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/smali/dexlib/src/main/java/org/jf/dexlib/Util/ |
D | DebugInfoBuilder.java | 50 private ArrayList<Event> events = new ArrayList<Event>(); 163 for (Event event: events) { in encodeDebugInfo() 187 private interface Event interface in DebugInfoBuilder 254 private class LineEvent implements Event 289 private class StartLocalEvent implements Event 316 private class StartLocalExtendedEvent implements Event 353 private class EndLocalEvent implements Event 373 private class RestartLocalEvent implements Event 393 private class PrologueEvent implements Event 411 private class EpilogueEvent implements 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*);
|