/libcore/luni/src/main/java/org/apache/harmony/xml/dom/ |
NodeImpl.java | 614 DocumentTypeImpl doctype = (DocumentTypeImpl) node; local 615 values.add(doctype.getPublicId()); 616 values.add(doctype.getSystemId()); 617 values.add(doctype.getInternalSubset()); 618 values.add(doctype.getEntities()); 619 values.add(doctype.getNotations());
|
/external/chromium/webkit/glue/ |
webaccessibility.cc | 377 const WebKit::WebDocumentType& doctype = document.doctype(); local 378 if (!doctype.isNull()) 379 attributes[ATTR_DOC_DOCTYPE] = doctype.name();
|
/external/chromium_org/content/renderer/accessibility/ |
accessibility_node_serializer.cc | 371 const WebDocumentType& doctype = document.doctype(); local 372 if (!doctype.isNull()) { 374 UTF16ToUTF8(doctype.name()));
|
/external/chromium_org/third_party/WebKit/Source/web/ |
WebDocument.cpp | 204 WebDocumentType WebDocument::doctype() const function in class:blink::WebDocument 206 return WebDocumentType(constUnwrap<Document>()->doctype());
|
/external/tinyxml/ |
xmltest.cpp | 863 // DOCTYPE not preserved (950171) 865 const char* doctype = local 867 "<!DOCTYPE PLAY SYSTEM 'play.dtd'>" 873 doc.Parse( doctype ); 880 XmlTest( "Correct value of unknown.", "!DOCTYPE PLAY SYSTEM 'play.dtd'", unknown->Value() ); 892 const char* doctype = local 895 doc.Parse( doctype ); 953 const char* doctype = "<element attr='red' attr='blue' />"; local 956 doc.Parse( doctype ); 964 const char* doctype = "<element att\0r='red' attr='blue' />" local [all...] |
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
DOMHelper.java | 1132 DocumentType doctype = doc.getDoctype(); local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
HTMLConstructionSite.cpp | 535 ASSERT(token->type() == HTMLToken::DOCTYPE); 539 RefPtr<DocumentType> doctype = DocumentType::create(m_document, token->name(), publicId, systemId); local 540 attachLater(m_attachmentRoot, doctype.release()); 542 // DOCTYPE nodes are only processed when parsing fragments w/o contextElements, which [all...] |
/libcore/luni/src/main/java/org/apache/harmony/xml/parsers/ |
DocumentBuilderImpl.java | 98 DocumentType doctype = null; local 102 dom, namespaceURI, qualifiedName, doctype, inputEncoding);
|
/libcore/luni/src/test/java/libcore/xml/ |
DomTest.java | 78 = "<!DOCTYPE menu [" 99 private DocumentType doctype; field in class:DomTest 135 // doctype nodes 136 doctype = document.getDoctype(); 137 if (doctype.getEntities() != null) { 138 sp = (Entity) doctype.getEntities().item(0); 140 if (doctype.getNotations() != null) { 141 png = (Notation) doctype.getNotations().item(0); 177 allNodes.addAll(Arrays.asList(document, doctype, menu, item, itemXmlns, 201 assertEquals(null, doctype.lookupNamespaceURI("a")) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/etree/ |
ElementTree.py | 12 # 2007-08-25 fl added doctype hook, added parser version attribute etc 1622 def doctype(self, name, pubid, system): member in class:XMLParser [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
xmllib.py | 58 doctype = re.compile('<!DOCTYPE'+_S+'(?P<name>'+_Name+')' variable 332 res = doctype.match(rawdata, i) 341 self.syntax_error('multiple DOCTYPE elements') 343 self.syntax_error('DOCTYPE not at beginning of document') 443 # Internal -- handle DOCTYPE tag, return length or -1 if not terminated 481 self.syntax_error("bogus `>' in DOCTYPE") 487 self.syntax_error('garbage in DOCTYPE') 529 # and before the <!DOCTYPE> (if any). 606 self.syntax_error('starttag does not match DOCTYPE') [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/etree/ |
ElementTree.py | 12 # 2007-08-25 fl added doctype hook, added parser version attribute etc 1622 def doctype(self, name, pubid, system): member in class:XMLParser [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
xmllib.py | 58 doctype = re.compile('<!DOCTYPE'+_S+'(?P<name>'+_Name+')' variable 332 res = doctype.match(rawdata, i) 341 self.syntax_error('multiple DOCTYPE elements') 343 self.syntax_error('DOCTYPE not at beginning of document') 443 # Internal -- handle DOCTYPE tag, return length or -1 if not terminated 481 self.syntax_error("bogus `>' in DOCTYPE") 487 self.syntax_error('garbage in DOCTYPE') 529 # and before the <!DOCTYPE> (if any). 606 self.syntax_error('starttag does not match DOCTYPE') [all...] |
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/ |
DOM2DTM.java | 352 // the doctype. (Just let it go and Suppress it? 389 // skip the doctype. (Just let it go and Suppress it? 1422 DocumentType doctype = doc.getDoctype(); local [all...] |
/external/chromium_org/third_party/libxslt/libxslt/ |
transform.c | 3593 const xmlChar *doctype = NULL; local 6101 const xmlChar *doctype = NULL; local [all...] |
/external/libxslt/libxslt/ |
transform.c | 3593 const xmlChar *doctype = NULL; local 6101 const xmlChar *doctype = NULL; local [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/ |
minidom.py | 1485 doctype = None variable in class:Document [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/ |
minidom.py | 1485 doctype = None variable in class:Document [all...] |
/external/libvpx/libvpx/nestegg/src/ |
nestegg.c | 172 struct ebml_type doctype; member in struct:ebml 338 E_FIELD(ID_DOCTYPE, TYPE_STRING, struct ebml, doctype), 1417 char * doctype; local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
Document.h | 278 DocumentType* doctype() const { return m_docType.get(); } function in class:WebCore::Document [all...] |
/prebuilts/tools/common/m2/internal/jdom/jdom/1.0/ |
jdom-1.0.jar | |
/prebuilts/tools/common/m2/internal/xom/xom/1.0/ |
xom-1.0.jar | |
/prebuilts/tools/common/freemarker/ |
freemarker-2.3.19.jar | |
/prebuilts/tools/common/m2/internal/xalan/xalan/2.6.0/ |
xalan-2.6.0.jar | |