Searched refs:XMLDocument (Results 1 - 25 of 90) sorted by relevance

1234

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DXMLDocument.idl26 interface XMLDocument : Document {
H A DXMLDocument.cpp27 #include "core/dom/XMLDocument.h"
31 XMLDocument::XMLDocument(const DocumentInit& initializer, DocumentClassFlags documentClasses) function in class:blink::XMLDocument
H A DXMLDocument.h34 class XMLDocument FINAL : public Document {
37 static PassRefPtrWillBeRawPtr<XMLDocument> create(const DocumentInit& initializer = DocumentInit())
39 return adoptRefWillBeNoop(new XMLDocument(initializer, XMLDocumentClass));
42 static PassRefPtrWillBeRawPtr<XMLDocument> createXHTML(const DocumentInit& initializer = DocumentInit())
44 return adoptRefWillBeNoop(new XMLDocument(initializer, XMLDocumentClass | XHTMLDocumentClass));
47 static PassRefPtrWillBeRawPtr<XMLDocument> createSVG(const DocumentInit& initializer = DocumentInit())
49 return adoptRefWillBeNoop(new XMLDocument(initializer, XMLDocumentClass | SVGDocumentClass));
53 XMLDocument(const DocumentInit&, DocumentClassFlags documentClasses);
56 DEFINE_DOCUMENT_TYPE_CASTS(XMLDocument);
H A DDOMImplementation.idl36 [RaisesException] XMLDocument createDocument(DOMString? namespaceURI,
H A DDOMImplementation.h39 class XMLDocument;
60 PassRefPtrWillBeRawPtr<XMLDocument> createDocument(const AtomicString& namespaceURI, const AtomicString& qualifiedName, DocumentType*, ExceptionState&);
H A DDOMImplementation.cpp40 #include "core/dom/XMLDocument.h"
202 PassRefPtrWillBeRawPtr<XMLDocument> DOMImplementation::createDocument(const AtomicString& namespaceURI,
205 RefPtrWillBeRawPtr<XMLDocument> doc = nullptr;
208 doc = XMLDocument::createSVG(init);
210 doc = XMLDocument::createXHTML(init.withRegistrationContext(document().registrationContext()));
212 doc = XMLDocument::create(init);
356 return XMLDocument::createXHTML(init);
381 return XMLDocument::createSVG(init);
383 return XMLDocument::create(init);
H A DDocument.idl26 SpecialWrapFor=(HTMLDocument,XMLDocument)
/external/tinyxml2/
H A Dtinyxml2.h92 class XMLDocument;
338 virtual bool VisitEnter( const XMLDocument& /*doc*/ ) { return true; }
340 virtual bool VisitExit( const XMLDocument& /*doc*/ ) { return true; }
411 be navigated. A node is always in a XMLDocument.
415 A XMLDocument allocates memory for all its Nodes.
416 When the XMLDocument gets deleted, all its Nodes
435 friend class XMLDocument;
439 /// Get the XMLDocument that owns this XMLNode.
440 const XMLDocument* GetDocument() const { return document; }
441 /// Get the XMLDocument tha
1039 class XMLDocument : public XMLNode class in namespace:tinyxml2
[all...]
H A Dtinyxml2.cpp451 char* XMLDocument::Identify( char* p, XMLNode** node )
527 bool XMLDocument::Accept( XMLVisitor* visitor ) const
543 XMLNode::XMLNode( XMLDocument* doc ) :
830 XMLNode* XMLText::ShallowClone( XMLDocument* doc ) const
855 XMLComment::XMLComment( XMLDocument* doc ) : XMLNode( doc )
878 XMLNode* XMLComment::ShallowClone( XMLDocument* doc ) const
902 XMLDeclaration::XMLDeclaration( XMLDocument* doc ) : XMLNode( doc )
925 XMLNode* XMLDeclaration::ShallowClone( XMLDocument* doc ) const
949 XMLUnknown::XMLUnknown( XMLDocument* doc ) : XMLNode( doc )
972 XMLNode* XMLUnknown::ShallowClone( XMLDocument* do
1419 XMLDocument::XMLDocument( bool _processEntities ) : function in class:XMLDocument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DDocumentResource.cpp27 #include "core/dom/XMLDocument.h"
78 return XMLDocument::createSVG(DocumentInit(url));
H A DFontResource.cpp41 #include "core/dom/XMLDocument.h"
169 m_externalSVGDocument = XMLDocument::createSVG();
/external/chromium_org/third_party/cython/src/Cython/Tests/
H A Dxmlrunner.py49 class XMLDocument(xml.dom.minidom.Document): class in inherits:xml.dom.minidom.Document
288 doc = XMLDocument()
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_config_util.cpp101 XMLDocument* xml;
189 XMLDocument xml;
204 XMLDocument xml;
281 static inline XMLElement* add_ele(XMLDocument* xml, XMLElement* p, int index,
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DUseCounter.h122 XMLDocument = 77, enumerator in enum:blink::UseCounter::Feature
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DDOMPatchSupport.cpp42 #include "core/dom/XMLDocument.h"
89 newDocument = XMLDocument::createXHTML();
91 newDocument = XMLDocument::create();
/external/chromium_org/third_party/WebKit/Source/core/
H A Dwebcore_dom.target.darwin-arm.mk148 third_party/WebKit/Source/core/dom/XMLDocument.cpp \
H A Dwebcore_dom.target.darwin-arm64.mk148 third_party/WebKit/Source/core/dom/XMLDocument.cpp \
H A Dwebcore_dom.target.darwin-mips.mk148 third_party/WebKit/Source/core/dom/XMLDocument.cpp \
H A Dwebcore_dom.target.darwin-mips64.mk148 third_party/WebKit/Source/core/dom/XMLDocument.cpp \
H A Dwebcore_dom.target.darwin-x86.mk148 third_party/WebKit/Source/core/dom/XMLDocument.cpp \
H A Dwebcore_dom.target.darwin-x86_64.mk148 third_party/WebKit/Source/core/dom/XMLDocument.cpp \
H A Dwebcore_dom.target.linux-arm.mk148 third_party/WebKit/Source/core/dom/XMLDocument.cpp \
H A Dwebcore_dom.target.linux-arm64.mk148 third_party/WebKit/Source/core/dom/XMLDocument.cpp \
H A Dwebcore_dom.target.linux-mips.mk148 third_party/WebKit/Source/core/dom/XMLDocument.cpp \
H A Dwebcore_dom.target.linux-mips64.mk148 third_party/WebKit/Source/core/dom/XMLDocument.cpp \

Completed in 809 milliseconds

1234