HomeSort by relevance Sort by last modified time
    Searched defs:docType (Results 101 - 123 of 123) sorted by null

1 2 3 45

  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
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();
nodenormalize01.java 71 DocumentType docType;
  /libcore/luni/src/test/java/tests/org/w3c/dom/
DOMImplementationCreateDocument.java 59 DocumentType docType = null;
80 docType);
91 DocumentType docType = null;
99 domImpl.createDocument(namespaceURI, qualifiedName, docType);
112 DocumentType docType = null;
120 domImpl.createDocument(namespaceURI, qualifiedName, docType);
132 DocumentType docType = null;
140 domImpl.createDocument(namespaceURI, ":", docType);
DocumentGetElementsByTagnameNS.java 61 DocumentType docType = null;
69 newDoc = domImpl.createDocument(nullNS, "root", docType);
NodeGetOwnerDocument.java 79 DocumentType docType;
84 docType = domImpl.createDocumentType("mydoc", nullID, nullID);
85 ownerDoc = docType.getOwnerDocument();
95 DocumentType docType;
100 docType = domImpl.createDocumentType("mydoc", nullNS, nullNS);
102 docType);
NodeHasAttributes.java 91 DocumentType docType;
94 docType = doc.getDoctype();
95 hasAttributes = docType.hasAttributes();
113 DocumentType docType = null;
127 docType);
CreateDocument.java 35 * The "createDocument(namespaceURI,qualifiedName,doctype)" method for a
40 * createDocument(namespaceURI,qualifiedName,doctype) on the retrieved
42 * "http://www.ecommerce.org/", qualifiedName as "prefix::local", and doctype as
87 DocumentType docType = null;
96 domImpl.createDocument(namespaceURI, malformedName, docType);
108 DocumentType docType = null;
117 domImpl.createDocument(namespaceURI, qualifiedName, docType);
129 // DocumentType docType;
133 // docType = doc.getDoctype();
138 // domImpl.createDocument(namespaceURI, qualifiedName, docType);
    [all...]
DocumentCreateAttributeNS.java 204 DocumentType docType = null;
214 "dom:doc", docType);
229 DocumentType docType = null;
238 "dom:doc", docType);
DocumentCreateElementNS.java 118 DocumentType docType = null;
127 "dom:doc", docType);
NodeIsSupported.java 154 DocumentType docType;
157 docType = doc.getDoctype();
158 success = docType.isSupported("", "");
ImportNode.java 99 DocumentType docType;
117 docType = ownerDocument.getDoctype();
118 system = docType.getSystemId();
140 DocumentType docType;
149 docType = ownerDocument.getDoctype();
150 system = docType.getSystemId();
162 DocumentType docType;
171 docType = ownerDocument.getDoctype();
172 system = docType.getSystemId();
206 DocumentType docType;
    [all...]
NamedNodeMapSetNamedItemNS.java 162 DocumentType docType = null;
176 docAlt = domImpl.createDocument(nullNS, "newDoc", docType);
193 // DocumentType docType;
200 // docType = doc.getDoctype();
201 // entities = docType.getEntities();
203 // notations = docType.getNotations();
310 // DocumentType docType;
315 // docType = doc.getDoctype();
316 // entities = docType.getEntities();
317 // notations = docType.getNotations()
    [all...]
DocumentImportNode.java 143 // DocumentType docType = null;
156 // "l2:root", docType);
210 DocumentType docType;
212 docType = doc.getDoctype();
217 doc.importNode(docType, true);
227 DocumentType docType;
233 docType = domImpl.createDocumentType("test:root", nullNS, nullNS);
238 doc.importNode(docType, true);
412 // DocumentType docType;
426 // docType = doc.getDoctype()
    [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("'");
  /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/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DOM3TreeWalker.java 498 // The DocType and internalSubset can not be modified in DOM and is
512 // DOCTYPE internal subset via an event call, so we write it
517 dtd.append("<!DOCTYPE ");
    [all...]
  /external/webkit/Source/WebCore/inspector/
InspectorDOMAgent.cpp     [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
FlexAntTasks.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.help_3.5.0.v20100524.jar 
  /external/jdiff/
xerces.jar 

Completed in 575 milliseconds

1 2 3 45