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

1 2 3 4 5 6 7

  /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/webkit/Source/WebCore/bindings/objc/
DOMImplementationFront.cpp 26 #include "DOMImplementation.h"
44 reinterpret_cast<DOMImplementation*>(this)->ref();
49 reinterpret_cast<DOMImplementation*>(this)->deref();
54 return reinterpret_cast<const DOMImplementation*>(this)->hasFeature(feature, version);
59 return reinterpret_cast<DOMImplementation*>(this)->createDocumentType(qualifiedName, publicId, systemId, ec);
64 return reinterpret_cast<DOMImplementation*>(this)->createDocument(namespaceURI, qualifiedName, type, ec);
69 return reinterpret_cast<DOMImplementationFront*>(reinterpret_cast<DOMImplementation*>(this)->getInterface(feature));
74 return reinterpret_cast<DOMImplementation*>(this)->createCSSStyleSheet(title, media, ec);
79 return reinterpret_cast<DOMImplementation*>(this)->createHTMLDocument(title);
  /external/webkit/Source/WebCore/xml/
DOMParser.cpp 22 #include "DOMImplementation.h"
30 if (!DOMImplementation::isXMLMIMEType(contentType))
33 RefPtr<Document> doc = DOMImplementation::createDocument(contentType, 0, KURL(), false);
  /external/webkit/Source/WebCore/dom/
DOMImplementation.h 42 class DOMImplementation : public RefCounted<DOMImplementation> {
44 static PassRefPtr<DOMImplementation> create(Document* ownerDocument) { return adoptRef(new DOMImplementation(ownerDocument)); }
46 // DOM methods & attributes for DOMImplementation
51 DOMImplementation* getInterface(const String& feature);
69 DOMImplementation(Document* ownerDocument);
DOMImplementation.cpp 26 #include "DOMImplementation.h"
174 DOMImplementation::DOMImplementation(Document* ownerDocument)
180 bool DOMImplementation::hasFeature(const String& feature, const String& version)
215 PassRefPtr<DocumentType> DOMImplementation::createDocumentType(const String& qualifiedName,
225 DOMImplementation* DOMImplementation::getInterface(const String& /*feature*/)
230 PassRefPtr<Document> DOMImplementation::createDocument(const String& namespaceURI,
281 PassRefPtr<CSSStyleSheet> DOMImplementation::createCSSStyleSheet(const String&, const String& media, ExceptionCode&)
290 bool DOMImplementation::isXMLMIMEType(const String& mimeType
    [all...]
DOMImplementation.idl 25 ] DOMImplementation {
  /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() {
  /external/webkit/Source/WebCore/html/
FTPDirectoryDocument.h 32 class DOMImplementation;
  /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...]
  /external/webkit/Source/WebCore/svg/
SVGDocument.h 30 class DOMImplementation;
  /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 {
  /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;

Completed in 2937 milliseconds

1 2 3 4 5 6 7