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

  /external/webkit/Source/WebCore/bindings/js/
JSExceptionBase.h 37 class ExceptionBase;
39 ExceptionBase* toExceptionBase(JSC::JSValue);
JSExceptionBase.cpp 46 ExceptionBase* toExceptionBase(JSC::JSValue value)
49 return reinterpret_cast<ExceptionBase*>(domException);
51 return reinterpret_cast<ExceptionBase*>(rangeException);
53 return reinterpret_cast<ExceptionBase*>(eventException);
55 return reinterpret_cast<ExceptionBase*>(xmlHttpException);
58 return reinterpret_cast<ExceptionBase*>(svgException);
62 return reinterpret_cast<ExceptionBase*>(pathException);
66 return reinterpret_cast<ExceptionBase*>(pathException);
JSDOMBinding.cpp 31 #include "ExceptionBase.h"
295 if (ExceptionBase* exceptionBase = toExceptionBase(exception))
296 errorMessage = stringToUString(exceptionBase->message() + ": " + exceptionBase->description());
  /external/webkit/Source/WebCore/dom/
DOMCoreException.h 32 #include "ExceptionBase.h"
36 class DOMCoreException : public ExceptionBase {
45 : ExceptionBase(description)
ExceptionBase.h 38 class ExceptionBase : public RefCounted<ExceptionBase> {
48 ExceptionBase(const ExceptionCodeDescription&);
EventException.h 32 #include "ExceptionBase.h"
36 class EventException : public ExceptionBase {
52 : ExceptionBase(description)
RangeException.h 28 #include "ExceptionBase.h"
32 class RangeException : public ExceptionBase {
49 : ExceptionBase(description)
ExceptionBase.cpp 30 #include "ExceptionBase.h"
36 ExceptionBase::ExceptionBase(const ExceptionCodeDescription& description)
47 String ExceptionBase::toString() const
  /external/webkit/Source/WebCore/svg/
SVGException.h 24 #include "ExceptionBase.h"
30 class SVGException : public ExceptionBase {
48 : ExceptionBase(description)
  /external/webkit/Source/WebCore/xml/
XMLHttpRequestException.h 32 #include "ExceptionBase.h"
36 class XMLHttpRequestException : public ExceptionBase {
53 : ExceptionBase(description)
XPathException.h 32 #include "ExceptionBase.h"
38 class XPathException : public ExceptionBase {
55 : ExceptionBase(description)
  /external/webkit/Source/WebCore/storage/
SQLException.h 36 #include "ExceptionBase.h"
40 class SQLException : public ExceptionBase {
63 : ExceptionBase(description)
IDBDatabaseException.h 31 #include "ExceptionBase.h"
35 class IDBDatabaseException : public ExceptionBase {
71 : ExceptionBase(description)
  /external/webkit/Source/WebCore/fileapi/
FileException.h 36 #include "ExceptionBase.h"
40 class FileException : public ExceptionBase {
74 : ExceptionBase(description)
  /external/webkit/Source/WebCore/
Android.mk 150 dom/ExceptionBase.cpp \
    [all...]

Completed in 516 milliseconds