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

1 2 3

  /libcore/luni/src/main/java/org/w3c/dom/
DOMImplementation.java 53 public DocumentType createDocumentType(String qualifiedName,
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DOMImplementation.idl 33 [RaisesException] DocumentType createDocumentType(DOMString qualifiedName,
DOMImplementation.h 59 PassRefPtrWillBeRawPtr<DocumentType> createDocumentType(const AtomicString& qualifiedName, const String& publicId, const String& systemId, ExceptionState&);
  /libcore/dom/src/test/java/org/w3c/domts/
JTidyDOMImplementation.java 76 public DocumentType createDocumentType(String qualifiedName,
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
createDocumentType01.java 34 * The "createDocumentType(qualifiedName,publicId,systemId)" method for a
39 * Invoke method createDocumentType(qualifiedName,publicId,systemId)
83 newType = domImpl.createDocumentType(malformedName, publicId, systemId);
createDocumentType04.java 34 * DOMImplementation.createDocumentType with an empty name should cause an INVALID_CHARACTER_ERR.
71 docType = domImpl.createDocumentType("", publicId, systemId);
documenttypeinternalSubset01.java 73 docType = domImpl.createDocumentType("l2:root", nullNS, nullNS);
documenttypepublicid01.java 73 docType = domImpl.createDocumentType("l2:root", "PUB", nullNS);
documenttypesystemid01.java 71 docType = domImpl.createDocumentType("l2:root", "PUB", "SYS");
createDocumentType03.java 34 * The "createDocumentType(qualifiedName,publicId,systemId)" method for a
38 * Invoke method createDocumentType(qualifiedName,publicId,systemId) on
79 newType = domImpl.createDocumentType(qualifiedName, publicId, systemId);
documentimportnode08.java 82 docType = domImpl.createDocumentType("test:root", nullNS, nullNS);
domimplementationcreatedocumenttype01.java 34 * The method createDocumentType with valid values for qualifiedName, publicId and
87 newDocType = domImpl.createDocumentType(qualifiedName, publicId, systemId);
domimplementationcreatedocumenttype02.java 47 * The method createDocumentType with valid values for qualifiedName, publicId and
106 newDocType = domImpl.createDocumentType(qualifiedName, publicId, systemId);
domimplementationcreatedocumenttype04.java 47 * The method createDocumentType should raise a INVALID_CHARACTER_ERR if the qualifiedName
108 newDocType = domImpl.createDocumentType(qualifiedName, publicId, systemId);
nodegetownerdocument01.java 79 docType = domImpl.createDocumentType("mydoc", nullID, nullID);
nodegetownerdocument02.java 83 docType = domImpl.createDocumentType("mydoc", nullNS, nullNS);
createDocumentType02.java 34 * The "createDocumentType(qualifiedName,publicId,systemId)" method for a
38 * Invoke method createDocumentType(qualifiedName,publicId,systemId) on
113 docType = domImpl.createDocumentType(qualifiedName, publicId, systemId);
  /libcore/luni/src/test/java/tests/org/w3c/dom/
CreateDocumentType.java 35 * The "createDocumentType(qualifiedName,publicId,systemId)" method for a
40 * createDocumentType(qualifiedName,publicId,systemId) on the retrieved
54 public final class CreateDocumentType extends DOMTestCase {
96 domImpl.createDocumentType(malformedName, publicId, systemId);
147 domImpl.createDocumentType(qualifiedName, publicId,
169 newType = domImpl.createDocumentType(qualifiedName, publicId, systemId);
185 domImpl.createDocumentType("", publicId, systemId);
DocumentTypeInternalSubset.java 60 docType = domImpl.createDocumentType("l2:root", nullNS, nullNS);
DocumentTypePublicId.java 79 docType = domImpl.createDocumentType("l2:root", "PUB", nullNS);
DocumentTypeSystemId.java 75 docType = domImpl.createDocumentType("l2:root", "PUB", "SYS");
NodeGetOwnerDocument.java 84 docType = domImpl.createDocumentType("mydoc", nullID, nullID);
100 docType = domImpl.createDocumentType("mydoc", nullNS, nullNS);
DOMImplementationCreateDocumentType.java 34 * The method createDocumentType with valid values for qualifiedName, publicId
97 newDocType = domImpl.createDocumentType(qualifiedName,
137 newDocType = domImpl.createDocumentType(qualifiedName, publicId,
174 newDocType = domImpl.createDocumentType(qualifiedName, publicId,
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DOMImplementationImpl.java 47 public DocumentType createDocumentType(String qualifiedName,
  /external/chromium_org/tools/grit/grit/format/policy_templates/writers/
plist_writer.py 132 doctype = dom_impl.createDocumentType(

Completed in 260 milliseconds

1 2 3