Home
last modified time | relevance | path

Searched refs:ErrorEvent (Results 1 – 25 of 36) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/events/
DErrorEvent.h50 class ErrorEvent : public Event {
52 static PassRefPtr<ErrorEvent> create() in create()
54 return adoptRef(new ErrorEvent); in create()
56 …static PassRefPtr<ErrorEvent> create(const String& message, const String& fileName, unsigned lineN… in create()
58 return adoptRef(new ErrorEvent(message, fileName, lineNumber, columnNumber, world)); in create()
60 … static PassRefPtr<ErrorEvent> create(const AtomicString& type, const ErrorEventInit& initializer) in create()
62 return adoptRef(new ErrorEvent(type, initializer)); in create()
64 static PassRefPtr<ErrorEvent> createSanitizedError(PassRefPtr<DOMWrapperWorld> world) in createSanitizedError()
66 return adoptRef(new ErrorEvent("Script error.", String(), 0, 0, world)); in createSanitizedError()
68 virtual ~ErrorEvent();
[all …]
DErrorEvent.cpp46 ErrorEvent::ErrorEvent() in ErrorEvent() function in WebCore::ErrorEvent
51 ErrorEvent::ErrorEvent(const AtomicString& type, const ErrorEventInit& initializer) in ErrorEvent() function in WebCore::ErrorEvent
62 ErrorEvent::ErrorEvent(const String& message, const String& fileName, unsigned lineNumber, unsigned… in ErrorEvent() function in WebCore::ErrorEvent
73 void ErrorEvent::setUnsanitizedMessage(const String& message) in setUnsanitizedMessage()
79 ErrorEvent::~ErrorEvent() in ~ErrorEvent()
83 const AtomicString& ErrorEvent::interfaceName() const in interfaceName()
85 return EventNames::ErrorEvent; in interfaceName()
DErrorEvent.idl33 ] interface ErrorEvent : Event {
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
DV8ErrorHandler.cpp54 if (!event->hasInterface(EventNames::ErrorEvent)) in callListenerFunction()
57 ErrorEvent* errorEvent = static_cast<ErrorEvent*>(event); in callListenerFunction()
85 void V8ErrorHandler::storeExceptionOnErrorEventWrapper(ErrorEvent* event, v8::Handle<v8::Value> dat… in storeExceptionOnErrorEventWrapper()
DWorkerScriptController.h77 void evaluate(const ScriptSourceCode&, RefPtr<ErrorEvent>* = 0);
79 void rethrowExceptionFromImportedScript(PassRefPtr<ErrorEvent>);
125 RefPtr<ErrorEvent> m_errorEventFromImportedScript;
DWorkerScriptController.cpp191 void WorkerScriptController::evaluate(const ScriptSourceCode& sourceCode, RefPtr<ErrorEvent>* error… in evaluate()
201ErrorEvent::createSanitizedError(0) : ErrorEvent::create(state.errorMessage, state.sourceURL, stat… in evaluate()
205 …RefPtr<ErrorEvent> event = m_errorEventFromImportedScript ? m_errorEventFromImportedScript.release… in evaluate()
247 void WorkerScriptController::rethrowExceptionFromImportedScript(PassRefPtr<ErrorEvent> errorEvent) in rethrowExceptionFromImportedScript()
DV8ErrorHandler.h40 class ErrorEvent; variable
50 static void storeExceptionOnErrorEventWrapper(ErrorEvent*, v8::Handle<v8::Value>, v8::Isolate*);
DV8Initializer.cpp111 …RefPtr<ErrorEvent> event = ErrorEvent::create(errorMessage, resource, message->GetLineNumber(), me… in messageHandlerInMainThread()
205 …RefPtr<ErrorEvent> event = ErrorEvent::create(errorMessage, sourceURL, message->GetLineNumber(), m… in messageHandlerInWorker()
/external/chromium_org/third_party/WebKit/Source/core/dom/
DExecutionContext.cpp126 void ExecutionContext::reportException(PassRefPtr<ErrorEvent> event, PassRefPtr<ScriptCallStack> ca… in reportException()
128 RefPtr<ErrorEvent> errorEvent = event; in reportException()
165 bool ExecutionContext::dispatchErrorEvent(PassRefPtr<ErrorEvent> event, AccessControlStatus corsSta… in dispatchErrorEvent()
173 RefPtr<ErrorEvent> errorEvent = event; in dispatchErrorEvent()
175 errorEvent = ErrorEvent::createSanitizedError(errorEvent->world()); in dispatchErrorEvent()
DExecutionContext.h85 void reportException(PassRefPtr<ErrorEvent>, PassRefPtr<ScriptCallStack>, AccessControlStatus);
133 bool dispatchErrorEvent(PassRefPtr<ErrorEvent>, AccessControlStatus);
/external/chromium_org/content/child/appcache/
Dappcache_frontend_impl.cc105 COMPILE_ASSERT((int)WebApplicationCacheHost::ErrorEvent ==
106 (int)appcache::ERROR_EVENT, ErrorEvent);
/external/chromium_org/third_party/WebKit/public/web/
DWebApplicationCacheHost.h65 ErrorEvent, enumerator
/external/chromium_org/third_party/WebKit/Source/core/workers/
DWorkerMessagingProxy.cpp169 …RefPtr<ErrorEvent> event = ErrorEvent::create(errorMessage, sourceURL, lineNumber, columnNumber, 0… in reportException()
DWorkerGlobalScope.cpp226 RefPtr<ErrorEvent> errorEvent; in importScripts()
/external/chromium_org/third_party/WebKit/Source/bindings/templates/
Dinterface.cpp232 {% if any_type_attributes and not interface_name == 'ErrorEvent' %}
/external/chromium_org/third_party/WebKit/Source/core/
Dwebcore_dom.target.linux-x86.mk169 third_party/WebKit/Source/core/events/ErrorEvent.cpp \
Dwebcore_dom.target.darwin-x86.mk169 third_party/WebKit/Source/core/events/ErrorEvent.cpp \
Dwebcore_dom.target.linux-mips.mk169 third_party/WebKit/Source/core/events/ErrorEvent.cpp \
Dwebcore_dom.target.darwin-mips.mk169 third_party/WebKit/Source/core/events/ErrorEvent.cpp \
Dwebcore_dom.target.darwin-arm.mk169 third_party/WebKit/Source/core/events/ErrorEvent.cpp \
Dwebcore_dom.target.linux-arm.mk169 third_party/WebKit/Source/core/events/ErrorEvent.cpp \
Dcore.gypi101 'events/ErrorEvent.idl',
2105 'events/ErrorEvent.cpp',
2106 'events/ErrorEvent.h',
/external/chromium_org/third_party/WebKit/Source/web/
DAssertMatchingEnums.cpp319 COMPILE_ASSERT_MATCHING_ENUM(WebApplicationCacheHost::ErrorEvent, ApplicationCacheHost::ERROR_EVENT…
/external/chromium_org/third_party/WebKit/Source/bindings/
Dmain_idl_files_list.tmp95 ../core/events/ErrorEvent.idl
Dinterface_dependencies.target.darwin-mips.mk21 …ts/CustomEvent.idl $(LOCAL_PATH)/third_party/WebKit/Source/core/events/ErrorEvent.idl $(LOCAL_PATH…

12