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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/WebCore/dom/
Node.cpp 50 #include "Event.h"
2645 RefPtr<Event> event = prpEvent; local
2813 RefPtr<UIEvent> event = UIEvent::create(eventType, true, cancelable, document()->defaultView(), detail); local
    [all...]
Node.idl 141 boolean dispatchEvent(in Event event)
  /external/webkit/WebCore/inspector/
TimelineRecordFactory.cpp 21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
36 #include "Event.h"
53 ScriptObject TimelineRecordFactory::createEventDispatchData(InspectorFrontend* frontend, const Event& event)
56 data.set("type", event.type().string());
  /external/webkit/WebCore/loader/
MediaDocument.cpp 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
33 #include "Event.h"
153 void MediaDocument::defaultEventHandler(Event* event)
157 Node* targetNode = event->target()->toNode();
160 if (event->type() == eventNames().clickEvent) {
162 video->pause(event->fromUserGesture());
163 event->setDefaultHandled();
165 } else if (event->type() == eventNames().dblclickEvent) {
167 video->play(event->fromUserGesture())
    [all...]
ImageDocument.cpp 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
74 virtual void handleEvent(ScriptExecutionContext*, Event*);
208 // Add event listeners
367 void ImageEventListener::handleEvent(ScriptExecutionContext*, Event* event)
369 if (event->type() == eventNames().resizeEvent)
371 else if (event->type() == eventNames().clickEvent) {
372 MouseEvent* mouseEvent = static_cast<MouseEvent*>(event);
  /external/webkit/WebCore/page/
Geolocation.h 17 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
166 virtual void handleEvent(ScriptExecutionContext*, Event*);
EventHandler.h 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
49 class Event;
163 bool handleTextInputEvent(const String& text, Event* underlyingEvent = 0,
315 // If they return true it indicates that they have consumed the event.
  /external/webkit/WebCore/svg/
SVGAElement.cpp 125 void SVGAElement::defaultEventHandler(Event* evt)
201 bool SVGAElement::isKeyboardFocusable(KeyboardEvent* event) const
209 return document()->frame()->eventHandler()->tabsToLinks(event);
SVGElementInstance.h 55 virtual bool dispatchEvent(PassRefPtr<Event>);
SVGScriptElement.cpp 27 #include "Event.h"
76 // causes an immediate dispatch of the SVGLoad event. If the attribute value was 'false' before inserting the script element
77 // in the document, the SVGLoad event has already been dispatched.
111 // Eventually send SVGLoad event now for the dynamically inserted script element
140 // A SVGLoad event has been fired by SVGElement::finishParsingChildren.
204 // If we've already fired an load event and externalResourcesRequired is set to 'true'
210 // HTML and SVG differ completly in the 'onload' event handling of <script> elements.
211 // HTML fires the 'load' event after it sucessfully loaded a remote resource, otherwhise an error event.
212 // SVG fires the SVGLoad event immediately after parsing the <script> element, if externalResourcesRequire
    [all...]
SVGElement.cpp 32 #include "Event.h"
253 parent = currentTarget->parentNode(); // save the next parent to dispatch too incase dispatching the event changes the tree
255 RefPtr<Event> event = Event::create(eventNames().loadEvent, false, false); local
256 event->setTarget(currentTarget);
257 currentTarget->dispatchGenericEvent(event.release());
  /external/webkit/WebCore/svg/animation/
SVGSMILElement.h 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
140 // Event base timing
141 void handleConditionEvent(Event*, Condition*);
  /external/webkit/WebKit/chromium/src/
SharedWorkerRepository.cpp 21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
37 #include "Event.h"
128 // If the shared worker is not yet running, load the script resource for it, otherwise just send it a connect event.
133 // Keep the worker + JS wrapper alive until the resource load is complete in case we need to dispatch an error event.
152 m_worker->dispatchEvent(Event::create(eventNames().errorEvent, false, true));
155 // Pass the script off to the worker, then send a connect event.
163 // Send the connect event off, and linger until it is done sending.
169 // Connect event has been sent, so free ourselves (this releases the SharedWorker so it can be freed as well if unreferenced).
WebBindings.cpp 21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
211 static v8::Persistent<v8::String> eventSymbol(v8::Persistent<v8::String>::New(v8::String::NewSymbol("event")));
227 // Get the current WebCore event.
229 Event* event = V8Event::toNative(v8::Handle<v8::Object>::Cast(currentEvent)); local
230 if (!event)
233 // Check that the given npobj is that event.
235 Event* given = V8Event::toNative(object->v8Object);
236 if (given != event)
246 const AtomicString& eventType(event->type())
    [all...]
  /external/webkit/WebKit/win/WebCoreSupport/
WebContextMenuClient.cpp 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
34 #include <WebCore/Event.h>
  /hardware/ti/wlan/wl1271/platforms/os/common/inc/
osApi.h 24 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
69 TI_UINT32 Event;
657 /** \brief OS Indicate Event
660 * \param pData - Pointer to event data
665 * The function performs the rewuired operations for the event - in the OS side
  /system/wlan/ti/wilink_6_1/platforms/os/common/inc/
osApi.h 24 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
69 TI_UINT32 Event;
657 /** \brief OS Indicate Event
660 * \param pData - Pointer to event data
665 * The function performs the rewuired operations for the event - in the OS side
  /frameworks/base/core/java/android/pim/vcard/
VCardEntry.java 28 import android.provider.ContactsContract.CommonDataKinds.Event;
    [all...]
  /external/webkit/WebCore/bindings/v8/
ScriptController.cpp 22 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
39 #include "Event.h"
173 v8::Handle<v8::Value> jsEvent = global->Get(v8::String::NewSymbol("event"));
174 Event* event = (!jsEvent.IsEmpty() && jsEvent->IsObject()) ? V8Event::toNative(v8::Handle<v8::Object>::Cast(jsEvent)) : 0; local
178 if (event) {
179 if (event->createdByDOM())
182 const AtomicString& type = event->type();
254 void ScriptController::finishedWithEvent(Event* event)
    [all...]
  /external/webkit/WebCore/html/
HTMLFormControlElement.cpp 31 #include "Event.h"
212 dispatchEvent(Event::create(eventNames().changeEvent, true, false));
279 bool HTMLFormControlElement::isKeyboardFocusable(KeyboardEvent* event) const
283 return document()->frame()->eventHandler()->tabsToAllControls(event);
325 dispatchEvent(Event::create(eventNames().invalidEvent, false, true));
  /external/webkit/WebCore/loader/appcache/
ApplicationCacheHost.cpp 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
240 m_domApplicationCache->dispatchEvent(Event::create(DOMApplicationCache::toEventType(id), false, false), ec);
252 m_domApplicationCache->dispatchEvent(Event::create(DOMApplicationCache::toEventType(id), false, false), ec);
  /external/webkit/WebKit/win/
DOMCreateInstance.cpp 20 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
119 #include <WebCore/Event.h>
249 // FIXME: Add the subclasses for Event when they get generated.
250 CREATE_ONLY_SELF(Event)
  /packages/apps/Calendar/src/com/android/calendar/
CalendarActivity.java 93 // Calendar event changes.
259 Event getSelectedEvent() {
269 Event getNewEvent() {
  /packages/apps/Mms/src/com/android/mms/model/
SlideModel.java 24 import org.w3c.dom.events.Event;
454 public void handleEvent(Event evt) {
  /sdk/ddms/app/src/com/android/ddms/
DeviceCommandDialog.java 34 import org.eclipse.swt.widgets.Event;
139 public void handleEvent(Event event) {
142 event.doit = false;

Completed in 834 milliseconds

1 2 3 4 5 6 7 8 91011>>