OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ErrorEvent
(Results
1 - 3
of
3
) sorted by null
/external/webkit/WebCore/dom/
ErrorEvent.cpp
35
#include "
ErrorEvent
.h"
41
ErrorEvent
::
ErrorEvent
()
45
ErrorEvent
::
ErrorEvent
(const String& message, const String& fileName, unsigned lineNumber)
46
: Event(eventNames().
errorEvent
, false, true)
53
ErrorEvent
::~
ErrorEvent
()
57
void
ErrorEvent
::initErrorEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& message, const String& fileName, unsigned lineNumber)
69
bool
ErrorEvent
::isErrorEvent() const
[
all
...]
ErrorEvent.h
41
class
ErrorEvent
: public Event {
43
static PassRefPtr<
ErrorEvent
> create()
45
return adoptRef(new
ErrorEvent
);
47
static PassRefPtr<
ErrorEvent
> create(const String& message, const String& fileName, unsigned lineNumber)
49
return adoptRef(new
ErrorEvent
(message, fileName, lineNumber));
51
virtual ~
ErrorEvent
();
62
ErrorEvent
();
63
ErrorEvent
(const String& message, const String& fileName, unsigned lineNumber);
/external/webkit/WebKit/chromium/public/
WebApplicationCacheHost.h
62
ErrorEvent
,
Completed in 33 milliseconds