HomeSort by relevance Sort by last modified time
    Searched defs:doctype (Results 1 - 25 of 34) sorted by null

1 2

  /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_org/third_party/WebKit/Source/web/
WebDocument.cpp 209 WebDocumentType WebDocument::doctype() const function in class:blink::WebDocument
211 return WebDocumentType(constUnwrap<Document>()->doctype());
  /external/chromium_org/content/renderer/accessibility/
blink_ax_tree_source.cc 434 const WebDocumentType& doctype = document.doctype(); local
435 if (!doctype.isNull()) {
437 UTF16ToUTF8(doctype.name()));
  /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 548 ASSERT(token->type() == HTMLToken::DOCTYPE);
552 RefPtrWillBeRawPtr<DocumentType> doctype = DocumentType::create(m_document, token->name(), publicId, systemId); local
553 attachLater(m_attachmentRoot, doctype.release());
555 // 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...]
  /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/chromium_org/third_party/WebKit/Source/core/dom/
Document.h 312 DocumentType* doctype() const { return m_docType.get(); } function in class:WebCore::Document
    [all...]
Document.cpp 701 void Document::setDoctype(PassRefPtrWillBeRawPtr<DocumentType> docType)
704 ASSERT(!m_docType || !docType);
705 m_docType = docType;
711 // Doctype affects the interpretation of the stylesheets.
956 DocumentType* doctype = toDocumentType(importedNode); local
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/nestegg/src/
nestegg.c 177 struct ebml_type doctype; member in struct:ebml
350 E_FIELD(ID_DOCTYPE, TYPE_STRING, struct ebml, doctype),
1656 char * doctype; local
1704 char * doctype; local
    [all...]
  /external/libvpx/libvpx/third_party/nestegg/src/
nestegg.c 177 struct ebml_type doctype; member in struct:ebml
350 E_FIELD(ID_DOCTYPE, TYPE_STRING, struct ebml, doctype),
1656 char * doctype; local
1704 char * doctype; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/nestegg/src/
nestegg.c 177 struct ebml_type doctype; member in struct:ebml
350 E_FIELD(ID_DOCTYPE, TYPE_STRING, struct ebml, doctype),
1656 char * doctype; local
1704 char * doctype; local
    [all...]
  /prebuilts/tools/common/m2/repository/jdom/jdom/1.0/
jdom-1.0.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
plexus-utils-3.0.17.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/codehaus/plexus/plexus-utils/2.0.5/
plexus-utils-2.0.5.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/codehaus/plexus/plexus-utils/3.0/
plexus-utils-3.0.jar 

Completed in 1756 milliseconds

1 2