HomeSort by relevance Sort by last modified time
    Searched refs:docType (Results 101 - 125 of 233) sorted by null

1 2 3 45 6 7 8 910

  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
documentimportnode04.java 80 DocumentType docType = null;
92 newDoc = domImpl.createDocument("http://www.w3.org/DOM/Test", "l2:root", docType);
domimplementationcreatedocument03.java 88 DocumentType docType = null;
108 newDoc = domImpl.createDocument(namespaceURI, qualifiedName, docType);
namednodemapsetnameditemns04.java 78 DocumentType docType = null;
92 docAlt = domImpl.createDocument(nullNS, "newDoc", docType);
nodehasattributes04.java 72 DocumentType docType = null;
85 newDoc = domImpl.createDocument("http://www.w3.org/DOM/Test", "test", docType);
documentimportnode19.java 80 DocumentType docType;
94 docType = doc.getDoctype();
96 nodeMap = docType.getEntities();
documentimportnode20.java 81 DocumentType docType;
99 docType = doc.getDoctype();
101 nodeMap = docType.getEntities();
documentimportnode22.java 80 DocumentType docType;
100 docType = doc.getDoctype();
102 nodeMap = docType.getNotations();
createDocument05.java 34 * The "createDocument(namespaceURI,qualifiedName,doctype)" method for a
38 * Invoke method createDocument(namespaceURI,qualifiedName,doctype) on
40 * doctype is null and qualifiedName contains an illegal character from
72 DocumentType docType = null;
114 aNewDoc = domImpl.createDocument(namespaceURI, qualifiedName, docType);
createDocumentType02.java 73 DocumentType docType = null;
113 docType = domImpl.createDocumentType(qualifiedName, publicId, systemId);
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_documentgetdoctype.js 78 Access Document.doctype for hc_staff, if not text/html should return DocumentType node.
88 var docType;
98 docType = doc.doctype;
108 assertNotNull("docTypeNotNull",docType);
114 (docType != null)
117 docTypeName = docType.name;
133 nodeValue = docType.nodeValue;
136 attributes = docType.attributes;
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_documentgetdoctype.js 78 Access Document.doctype for hc_staff, if not text/html should return DocumentType node.
88 var docType;
98 docType = doc.doctype;
108 assertNotNull("docTypeNotNull",docType);
114 (docType != null)
117 docTypeName = docType.name;
133 nodeValue = docType.nodeValue;
136 attributes = docType.attributes;
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
documentgetdoctype01.js 78 Retreive the doctype node, create a new Doctype node, call replaceChild and try replacing the
79 docType node with a new docType node. Check if the docType node was correctly replaced with
91 var docType;
108 docType = doc.doctype;
110 rootName = docType.name;
116 replaced = doc.replaceChild(newDocType,docType);
    [all...]
nodereplacechild21.js 91 Also try replacing the docType with an entity node and see if the same exception gets thrown.
101 var docType;
115 docType = doc.doctype;
117 entitiesMap = docType.entities;
126 docType1 = doc1.doctype;
135 replacedChild = docType.replaceChild(notation,ent);
146 replacedChild = docType.replaceChild(ent,docType);
nodeissamenode09.js 80 Using isSameNode check if an Entity and its docType nodes are not the same.
90 var docType;
100 docType = doc.doctype;
102 entitiesMap = docType.entities;
105 isSame = docType.isSameNode(entity);
nodecomparedocumentposition01.js 92 var docType;
101 docType = doc.doctype;
103 documentPositionDoc = doc.compareDocumentPosition(docType);
105 documentPositionDocType = docType.compareDocumentPosition(doc);
nodegettextcontent05.js 90 var docType;
100 docType = doc.doctype;
102 notationsMap = docType.notations;
105 textContent = docType.textContent;
nodeisequalnode27.js 91 var docType;
103 docType = doc.doctype;
105 entitiesMap = docType.entities;
107 notationsMap = docType.notations;
nodelookupnamespaceuri04.js 92 var docType;
104 docType = doc.doctype;
106 entitiesMap = docType.entities;
108 notationsMap = docType.notations;
nodelookupprefix04.js 92 var docType;
104 docType = doc.doctype;
106 entitiesMap = docType.entities;
108 notationsMap = docType.notations;
noderemovechild04.js 93 var docType;
102 docType = doc.doctype;
104 removed = doc.removeChild(docType);
105 removedDocType = doc.doctype;
112 removed = docType.removeChild(doc);
nodereplacechild02.js 93 var docType;
101 docType = doc.doctype;
103 replaced = doc.replaceChild(docType,docType);
nodesettextcontent03.js 91 var docType;
99 docType = doc.doctype;
101 docType.textContent = "textContent";
103 textContent = docType.textContent;
nodegetuserdata04.js 92 var docType;
105 docType = doc.doctype;
108 docType.setUserData("KeyDoc", doc, null);
110 docType.setUserData("KeyDoc", doc, nullHandler.handle);
112 retUserData = docType.getUserData("KeyDoc");
  /external/webkit/Source/WebCore/html/
HTMLDocument.cpp 342 DocumentType* docType = doctype();
343 if (!docType)
347 const String& publicId = docType->publicId();
348 if (docType->name() != "html"
407 || equalIgnoringCase(docType->systemId(), "http://www.ibm.com/data/dtd/v11/ibmxhtml1-transitional.dtd")
408 || (docType->systemId().isEmpty() && publicId.startsWith("-//W3C//DTD HTML 4.01 Frameset//", false))
409 || (docType->systemId().isEmpty() && publicId.startsWith("-//W3C//DTD HTML 4.01 Transitional//", false))) {
417 || (!docType->systemId().isEmpty() && publicId.startsWith("-//W3C//DTD HTML 4.01 Frameset//", false))
418 || (!docType->systemId().isEmpty() && publicId.startsWith("-//W3C//DTD HTML 4.01 Transitional//", false)))
    [all...]
  /external/jmonkeyengine/engine/src/xml/com/jme3/export/xml/
DOMSerializer.java 195 private void writeDocumentType(DocumentType docType, Writer writer, int depth) throws IOException {
196 String publicId = docType.getPublicId();
197 String internalSubset = docType.getInternalSubset();
200 writer.append("<!DOCTYPE ").append(docType.getName());
206 writer.append("'").append(docType.getSystemId()).append("'");

Completed in 856 milliseconds

1 2 3 45 6 7 8 910