HomeSort by relevance Sort by last modified time
    Searched refs:ErrorEvent (Results 1 - 14 of 14) sorted by null

  /external/webkit/Source/WebCore/dom/
ErrorEvent.cpp 33 #include "ErrorEvent.h"
39 ErrorEvent::ErrorEvent()
43 ErrorEvent::ErrorEvent(const String& message, const String& fileName, unsigned lineNumber)
44 : Event(eventNames().errorEvent, false, true)
51 ErrorEvent::~ErrorEvent()
55 void ErrorEvent::initErrorEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& message, const String& fileName, unsigned lineNumber)
67 bool ErrorEvent::isErrorEvent() const
    [all...]
ErrorEvent.h 39 class ErrorEvent : public Event {
41 static PassRefPtr<ErrorEvent> create()
43 return adoptRef(new ErrorEvent);
45 static PassRefPtr<ErrorEvent> create(const String& message, const String& fileName, unsigned lineNumber)
47 return adoptRef(new ErrorEvent(message, fileName, lineNumber));
49 virtual ~ErrorEvent();
60 ErrorEvent();
61 ErrorEvent(const String& message, const String& fileName, unsigned lineNumber);
ErrorEvent.idl 36 ] ErrorEvent : Event {
ScriptExecutionContext.cpp 38 #include "ErrorEvent.h"
357 RefPtr<ErrorEvent> errorEvent = ErrorEvent::create(message, sourceName, line);
358 target->dispatchEvent(errorEvent);
360 return errorEvent->defaultPrevented();
  /external/webkit/Source/WebCore/bindings/v8/
V8WindowErrorHandler.cpp 35 #include "ErrorEvent.h"
50 ErrorEvent* errorEvent = static_cast<ErrorEvent*>(event);
56 v8::Handle<v8::Value> parameters[3] = { v8String(errorEvent->message()), v8String(errorEvent->filename()), v8::Integer::New(errorEvent->lineno()) };
V8WorkerContextErrorHandler.cpp 37 #include "ErrorEvent.h"
53 ErrorEvent* errorEvent = static_cast<ErrorEvent*>(event);
56 v8::Handle<v8::Value> parameters[3] = { v8String(errorEvent->message()), v8String(errorEvent->filename()), v8::Integer::New(errorEvent->lineno()) };
  /external/webkit/Source/WebCore/bindings/js/
JSErrorHandler.cpp 35 #include "ErrorEvent.h"
62 ErrorEvent* errorEvent = static_cast<ErrorEvent*>(event);
86 args.append(jsString(exec, errorEvent->message()));
87 args.append(jsString(exec, errorEvent->filename()));
88 args.append(jsNumber(errorEvent->lineno()));
JSEventCustom.cpp 62 #include "ErrorEvent.h"
178 wrapper = CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, ErrorEvent, event);
  /external/webkit/Source/WebKit/chromium/public/
WebApplicationCacheHost.h 65 ErrorEvent,
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8EventCustom.cpp 152 return toV8(static_cast<ErrorEvent*>(impl));
  /external/webkit/Source/WebKit/chromium/src/
WebWorkerClientImpl.cpp 38 #include "ErrorEvent.h"
247 bool unhandled = m_worker->dispatchEvent(ErrorEvent::create(errorMessage,
381 handled = thisPtr->m_worker->dispatchEvent(ErrorEvent::create(errorMessage,
AssertMatchingEnums.cpp 213 COMPILE_ASSERT_MATCHING_ENUM(WebApplicationCacheHost::ErrorEvent, ApplicationCacheHost::ERROR_EVENT);
  /external/webkit/Source/WebCore/workers/
WorkerMessagingProxy.cpp 39 #include "ErrorEvent.h"
132 bool errorHandled = !workerObject->dispatchEvent(ErrorEvent::create(m_errorMessage, m_sourceURL, m_lineNumber));
  /external/webkit/Source/WebCore/
Android.mk 143 dom/ErrorEvent.cpp \
    [all...]

Completed in 94 milliseconds