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

  /external/webkit/WebCore/svg/
SVGException.h 31 class SVGException : public ExceptionBase {
33 static PassRefPtr<SVGException> create(const ExceptionCodeDescription& description)
35 return adoptRef(new SVGException(description));
48 SVGException(const ExceptionCodeDescription& description)
SVGLengthList.idl 35 raises(DOMException, SVGException);
39 raises(DOMException, SVGException);
41 raises(DOMException, SVGException);
45 raises(DOMException, SVGException);
SVGNumberList.idl 35 raises(DOMException, SVGException);
39 raises(DOMException, SVGException);
41 raises(DOMException, SVGException);
45 raises(DOMException, SVGException);
SVGPointList.idl 34 raises(DOMException, SVGException);
38 raises(DOMException, SVGException);
40 raises(DOMException, SVGException);
44 raises(DOMException, SVGException);
SVGPathSegList.idl 35 raises(DOMException, SVGException);
39 raises(DOMException, SVGException);
41 raises(DOMException, SVGException);
45 raises(DOMException, SVGException);
SVGStringList.idl 34 raises(core::DOMException, SVGException);
38 raises(core::DOMException, SVGException);
40 raises(core::DOMException, SVGException);
44 raises(core::DOMException, SVGException);
SVGTransformList.idl 35 raises(DOMException, SVGException);
39 raises(DOMException, SVGException);
41 raises(DOMException, SVGException);
45 raises(DOMException, SVGException);
SVGColor.idl 36 raises(SVGException);
39 raises(SVGException);
43 raises(SVGException);
SVGLocatable.idl 37 raises(SVGException);
SVGException.idl 25 ] SVGException {
SVGMatrix.idl 37 raises(SVGException);
43 raises(SVGException);
SVGPaint.idl 49 raises(SVGException);
SVGColor.cpp 27 #include "SVGException.h"
74 ec = SVGException::SVG_INVALID_VALUE_ERR;
SVGLocatable.cpp 29 #include "SVGException.h"
126 ec = SVGException::SVG_MATRIX_NOT_INVERTABLE;
SVGPathElement.idl 41 raises(DOMException, SVGException);
  /external/webkit/WebCore/bindings/js/
JSExceptionBase.cpp 53 if (SVGException* svgException = toSVGException(value))
54 return reinterpret_cast<ExceptionBase*>(svgException);
JSSVGMatrixCustom.cpp 27 #include "SVGException.h"
59 setDOMException(exec, SVGException::SVG_MATRIX_NOT_INVERTABLE);
75 setDOMException(exec, SVGException::SVG_INVALID_VALUE_ERR);
JSDOMBinding.cpp 61 #include "SVGException.h"
711 errorObject = toJS(exec, globalObject, SVGException::create(description).get(), 0 /* no context on purpose */);
  /external/webkit/WebCore/dom/
ExceptionCode.cpp 34 #include "SVGException.h"
197 } else if (code >= SVGException::SVGExceptionOffset && code <= SVGException::SVGExceptionMax) {
200 code -= SVGException::SVGExceptionOffset;
204 nameTableOffset = SVGException::SVG_WRONG_TYPE_ERR;
  /external/webkit/WebCore/bindings/v8/custom/
V8SVGMatrixCustom.cpp 36 #include "SVGException.h"
68 ec = SVGException::SVG_MATRIX_NOT_INVERTABLE;
89 ec = SVGException::SVG_INVALID_VALUE_ERR;
  /external/webkit/WebCore/page/
DOMWindow.idl 582 attribute SVGExceptionConstructor SVGException;
    [all...]
  /external/webkit/WebCore/bindings/v8/
V8Index.h 581 V(SVGEXCEPTION, SVGException) \
    [all...]
V8Proxy.cpp 670 exception = toV8(SVGException::create(description));

Completed in 785 milliseconds