/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGDocument.h | 31 class SVGDocument FINAL : public Document { 33 static PassRefPtr<SVGDocument> create(const DocumentInit& initializer = DocumentInit()) 35 return adoptRef(new SVGDocument(initializer)); 51 explicit SVGDocument(const DocumentInit&); 58 DEFINE_DOCUMENT_TYPE_CASTS(SVGDocument);
|
SVGDocument.idl | 22 interface SVGDocument : Document {
|
SVGDocument.cpp | 22 #include "core/svg/SVGDocument.h" 37 SVGDocument::SVGDocument(const DocumentInit& initializer) 43 SVGSVGElement* SVGDocument::rootElement() const 52 void SVGDocument::dispatchZoomEvent(float prevScale, float newScale) 61 void SVGDocument::dispatchScrollEvent() 68 bool SVGDocument::zoomAndPanEnabled() const 82 void SVGDocument::startPan(const FloatPoint& start) 88 void SVGDocument::updatePan(const FloatPoint& pos) const 97 bool SVGDocument::childShouldCreateRenderer(const Node& child) cons [all...] |
/external/chromium_org/third_party/WebKit/Source/core/fetch/ |
DocumentResource.cpp | 28 #include "core/svg/SVGDocument.h" 38 ASSERT(type == SVGDocument); 71 case SVGDocument: 72 return SVGDocument::create(DocumentInit(url));
|
DocumentResource.h | 55 DEFINE_TYPE_CASTS(DocumentResource, Resource, resource, resource->type() == Resource::SVGDocument, resource.type() == Resource::SVGDocument); \
|
FontResource.h | 39 class SVGDocument; 72 RefPtr<WebCore::SVGDocument> m_externalSVGDocument;
|
FontResource.cpp | 41 #include "core/svg/SVGDocument.h" 110 m_externalSVGDocument = SVGDocument::create();
|
ResourceFetcher.cpp | 83 case Resource::SVGDocument: 84 return new DocumentResource(request, Resource::SVGDocument); 130 case Resource::SVGDocument: 215 case Resource::SVGDocument: 360 return toDocumentResource(requestResource(Resource::SVGDocument, request)); 387 case Resource::SVGDocument: 472 case Resource::SVGDocument: 505 case Resource::SVGDocument: [all...] |
Resource.h | 66 SVGDocument,
|
Resource.cpp | 897 case Resource::SVGDocument: 898 return "SVGDocument";
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLEmbedElement.idl | 35 [CheckSecurity=Node, RaisesException] SVGDocument getSVGDocument();
|
HTMLFrameOwnerElement.h | 33 class SVGDocument; 53 SVGDocument* getSVGDocument(ExceptionState&) const;
|
HTMLFrameElement.idl | 38 [CheckSecurity=Node, RaisesException] SVGDocument getSVGDocument();
|
HTMLIFrameElement.idl | 42 [CheckSecurity=Node, RaisesException] SVGDocument getSVGDocument();
|
HTMLObjectElement.idl | 54 [CheckSecurity=Node, RaisesException] SVGDocument getSVGDocument();
|
HTMLFrameOwnerElement.cpp | 32 #include "core/svg/SVGDocument.h" 116 SVGDocument* HTMLFrameOwnerElement::getSVGDocument(ExceptionState& exceptionState) const
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
DOMImplementation.cpp | 50 #include "core/svg/SVGDocument.h" 202 doc = SVGDocument::create(init); 361 return SVGDocument::create(init);
|
Document.idl | 24 SpecialWrapFor=HTMLDocument|SVGDocument
|
/external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/ |
TestObject.idl | 238 [CheckSecurity=Node, RaisesException] SVGDocument getSVGDocument();
|
/external/chromium_org/third_party/WebKit/Source/core/ |
webcore_svg.target.darwin-arm.mk | 118 third_party/WebKit/Source/core/svg/SVGDocument.cpp \
|
webcore_svg.target.darwin-mips.mk | 118 third_party/WebKit/Source/core/svg/SVGDocument.cpp \
|
webcore_svg.target.darwin-x86.mk | 118 third_party/WebKit/Source/core/svg/SVGDocument.cpp \
|
webcore_svg.target.linux-arm.mk | 118 third_party/WebKit/Source/core/svg/SVGDocument.cpp \
|
webcore_svg.target.linux-mips.mk | 118 third_party/WebKit/Source/core/svg/SVGDocument.cpp \
|
webcore_svg.target.linux-x86.mk | 118 third_party/WebKit/Source/core/svg/SVGDocument.cpp \
|