HomeSort by relevance Sort by last modified time
    Searched refs:DOMImplementation (Results 1 - 25 of 148) sorted by null

1 2 3 4 5 6

  /libcore/luni/src/main/java/org/w3c/dom/
DOMImplementationList.java 28 * <code>DOMImplementation</code>s in the list, this returns
31 * @return The <code>DOMImplementation</code> at the <code>index</code>
35 public DOMImplementation item(int index);
38 * The number of <code>DOMImplementation</code>s in the list. The range
DOMImplementationSource.java 20 * <code>DOMImplementation</code> objects are made available.
39 * <code>DOMImplementation.getFeature()</code>.
43 public DOMImplementation getDOMImplementation(String features);
DOMImplementation.java 16 * The <code>DOMImplementation</code> interface provides a number of methods
21 public interface DOMImplementation {
117 * <code>DOMImplementation</code> interface.
126 * implements the <code>DOMImplementation</code> interface, it must
127 * delegate to the primary core <code>DOMImplementation</code> and not
129 * <code>DOMImplementation</code> such as <code>hasFeature</code>,
  /external/chromium_org/third_party/WebKit/Source/core/xml/
DOMParser.cpp 22 #include "core/dom/DOMImplementation.h"
30 if (!DOMImplementation::isXMLMIMEType(contentType))
33 RefPtr<Document> doc = DOMImplementation::createDocument(contentType, 0, KURL(), false);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DOMImplementation.h 41 class DOMImplementation : public ScriptWrappable {
44 static PassOwnPtr<DOMImplementation> create(Document* document) { return adoptPtr(new DOMImplementation(document)); }
50 // DOM methods & attributes for DOMImplementation
55 DOMImplementation* getInterface(const String& feature);
70 explicit DOMImplementation(Document*);
DOMImplementation.cpp 26 #include "core/dom/DOMImplementation.h"
163 DOMImplementation::DOMImplementation(Document* document)
169 bool DOMImplementation::hasFeature(const String& feature, const String& version)
180 PassRefPtr<DocumentType> DOMImplementation::createDocumentType(const String& qualifiedName,
190 DOMImplementation* DOMImplementation::getInterface(const String& /*feature*/)
195 PassRefPtr<Document> DOMImplementation::createDocument(const String& namespaceURI,
234 PassRefPtr<CSSStyleSheet> DOMImplementation::createCSSStyleSheet(const String&, const String& media)
243 bool DOMImplementation::isXMLMIMEType(const String& mimeType
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/
JTidyDOMImplementation.java 16 import org.w3c.dom.DOMImplementation;
21 * JTidy does not implement DOMImplementation
26 implements DOMImplementation {
123 public DOMImplementation getInterface(String feature) {
JTidyDocumentBuilderFactory.java 19 import org.w3c.dom.DOMImplementation;
33 private final DOMImplementation domImpl;
59 // JTidy doesn't implement DOMImplementation so
104 public DOMImplementation getDOMImplementation() {
BatikTestDocumentBuilderFactory.java 22 import org.w3c.dom.DOMImplementation;
44 private DOMImplementation domImpl;
146 * Gets DOMImplementation.
149 public DOMImplementation getDOMImplementation() {
163 (DOMImplementation) getImpl.invoke(null, new Object[0]);
DOM4JTestDocumentBuilderFactory.java 29 import org.w3c.dom.DOMImplementation;
43 private org.w3c.dom.DOMImplementation domImpl;
64 //domImpl = (DOMImplementation) domFactory;
73 domImpl = (DOMImplementation) domFactory;
126 public DOMImplementation getDOMImplementation() {
  /libcore/luni/src/test/java/tests/org/w3c/dom/
DocumentTypeInternalSubset.java 5 import org.w3c.dom.DOMImplementation;
54 DOMImplementation domImpl;
DocumentTypePublicId.java 27 import org.w3c.dom.DOMImplementation;
73 DOMImplementation domImpl;
DocumentTypeSystemId.java 27 import org.w3c.dom.DOMImplementation;
70 DOMImplementation domImpl;
DOMImplementationCreateDocument.java 6 import org.w3c.dom.DOMImplementation;
17 * Call the createDocument on this DOMImplementation with createDocument
57 DOMImplementation domImpl;
86 DOMImplementation domImpl;
108 DOMImplementation domImpl;
129 DOMImplementation domImpl;
DOMImplementationHasFeature.java 6 import org.w3c.dom.DOMImplementation;
17 * This should create a DOMImplementation object whose "hasFeature(feature,
57 DOMImplementation domImpl;
66 DOMImplementation domImpl;
75 DOMImplementation domImpl;
110 DOMImplementation domImpl;
NodeGetOwnerDocument.java 27 import org.w3c.dom.DOMImplementation;
78 DOMImplementation domImpl;
94 DOMImplementation domImpl;
CreateDocumentType.java 27 import org.w3c.dom.DOMImplementation;
36 * DOMImplementation should raise NAMESPACE_ERR DOMException if qualifiedName is
39 * Retrieve the DOMImplementation on the XMLNS Document. Invoke method
41 * DOMImplementation with qualifiedName being the literal string
88 DOMImplementation domImpl;
109 DOMImplementation domImpl;
162 DOMImplementation domImpl;
179 DOMImplementation domImpl;
CreateDocument.java 27 import org.w3c.dom.DOMImplementation;
36 * DOMImplementation should raise NAMESPACE_ERR DOMException if parameter
39 * Retrieve the DOMImplementation on the XMLNS Document. Invoke method
41 * DOMImplementation with namespaceURI being the literal string
89 DOMImplementation domImpl;
110 DOMImplementation domImpl;
130 // DOMImplementation domImpl;
151 // DOMImplementation domImpl;
174 DOMImplementation domImpl;
226 DOMImplementation domImpl
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DOMImplementationImpl.java 20 import org.w3c.dom.DOMImplementation;
34 public final class DOMImplementationImpl implements DOMImplementation {
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLViewSourceParser.cpp 29 #include "core/dom/DOMImplementation.h"
40 if (mimeType != "text/html" && !DOMImplementation::isXMLMIMEType(mimeType))
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGDocument.h 29 class DOMImplementation;
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
documentgetimplementation.java 32 * DOMImplementation object that handles this document.
35 * DOMImplementation whose "hasFeature("XML","1.0")
64 DOMImplementation docImpl;
domimplementationfeaturenoversion.java 60 DOMImplementation domImpl;
domimplementationfeaturexml.java 59 DOMImplementation domImpl;
hc_documentgetimplementation.java 33 * DOMImplementation.hasFeature("HTML","1.0") should be true.
34 * Otherwise, DOMImplementation.hasFeature("XML", "1.0")
63 DOMImplementation docImpl;

Completed in 186 milliseconds

1 2 3 4 5 6