HomeSort by relevance Sort by last modified time
    Searched refs:doctype (Results 26 - 50 of 71) sorted by null

12 3

  /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/css/
view-source.css 120 .webkit-html-doctype {
121 /* Keep this in sync with inspector.css (.webkit-html-doctype) */
  /external/chromium_org/third_party/WebKit/Source/web/
WebDocument.cpp 198 WebDocumentType WebDocument::doctype() const function in class:WebKit::WebDocument
200 return WebDocumentType(constUnwrap<Document>()->doctype());
WebPageSerializerImpl.cpp 155 result.append(createMarkup(param->document->doctype()));
186 result.append(createMarkup(param->document->doctype()));
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DocumentImpl.java 77 String qualifiedName, DocumentType doctype, String inputEncoding) {
83 if (doctype != null) {
84 appendChild(doctype);
187 * When we support entities in the doctype, this will need to
426 "Only one DOCTYPE element allowed");
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ToUnknownStream.java 634 * Set the doctype in the underlying XML handler. Remember that this method
635 * was called, just in case we need to transfer this doctype to an HTML handler
636 * @param doctype the public doctype to set
639 public void setDoctypePublic(String doctype)
641 m_handler.setDoctypePublic(doctype);
646 * Set the doctype in the underlying XML handler. Remember that this method
647 * was called, just in case we need to transfer this doctype to an HTML handler
648 * @param doctype the system doctype to se
    [all...]
  /build/tools/droiddoc/templates-sdk/
sample.cs 1 <?cs include:"doctype.cs" ?>
sampleindex.cs 1 <?cs include:"doctype.cs" ?>
  /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/page/
Frame.cpp 395 if (DocumentType* doctype = document()->doctype())
396 return createMarkup(doctype);
  /build/tools/droiddoc/templates-pdk/
docpage.cs 1 <?cs include:"doctype.cs" ?>
sdkpage.cs 1 <?cs include:"doctype.cs" ?>
  /external/chromium_org/tools/code_coverage/
croc_html.py 79 doctype = xml_impl.createDocumentType(
82 self.doc = xml_impl.createDocument(None, 'html', doctype)
  /libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
DocumentBuilderImpl.java 98 DocumentType doctype = null; local
102 dom, namespaceURI, qualifiedName, doctype, inputEncoding);
  /external/chromium_org/content/renderer/accessibility/
accessibility_node_serializer.cc 536 const WebDocumentType& doctype = document.doctype(); local
537 if (!doctype.isNull())
538 dst->string_attributes[dst->ATTR_DOC_DOCTYPE] = doctype.name();
  /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...]
  /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/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...]
  /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...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/news_a11y/
feed.js 82 var iframe_src = '<!doctype html><html><head><script ' +
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Document.idl 28 readonly attribute DocumentType doctype;
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLConstructionSite.cpp 418 ASSERT(token->type() == HTMLToken::DOCTYPE);
422 RefPtr<DocumentType> doctype = DocumentType::create(m_document, token->name(), publicId, systemId); local
423 attachLater(m_attachmentRoot, doctype.release());
425 // DOCTYPE nodes are only processed when parsing fragments w/o contextElements, which
    [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...]

Completed in 808 milliseconds

12 3