Searched refs:doctypePublic (Results 1 – 7 of 7) sorted by relevance
/external/libxslt/libxslt/ |
D | transform.c | 3229 const xmlChar *doctypePublic; in xsltDocumentElem() local 3421 if (style->doctypePublic != NULL) in xsltDocumentElem() 3422 xmlFree(style->doctypePublic); in xsltDocumentElem() 3423 style->doctypePublic = prop; in xsltDocumentElem() 3519 XSLT_GET_IMPORT_PTR(doctypePublic, style, doctypePublic) in xsltDocumentElem() 3528 if (((doctypePublic != NULL) || (doctypeSystem != NULL))) in xsltDocumentElem() 3529 res = htmlNewDoc(doctypeSystem, doctypePublic); in xsltDocumentElem() 3533 xsltGetHTMLIDs(version, &doctypePublic, &doctypeSystem); in xsltDocumentElem() 3536 res = htmlNewDocNoDtD(doctypeSystem, doctypePublic); in xsltDocumentElem() 3547 res = htmlNewDocNoDtD(doctypeSystem, doctypePublic); in xsltDocumentElem() [all …]
|
D | xsltInternals.h | 1566 xmlChar *doctypePublic; /* doctype-public string */ member
|
D | xslt.c | 989 if (style->doctypePublic != NULL) in xsltFreeStylesheet() 990 xmlFree(style->doctypePublic); in xsltFreeStylesheet() 1218 if (style->doctypePublic != NULL) in xsltParseStylesheetOutput() 1219 xmlFree(style->doctypePublic); in xsltParseStylesheetOutput() 1220 style->doctypePublic = prop; in xsltParseStylesheetOutput()
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
D | SerializerBase.java | 610 public void setDoctypePublic(String doctypePublic) in setDoctypePublic() argument 612 setOutputProperty(OutputKeys.DOCTYPE_PUBLIC, doctypePublic); in setDoctypePublic() 643 public void setDoctype(String doctypeSystem, String doctypePublic) in setDoctype() argument 646 setOutputProperty(OutputKeys.DOCTYPE_PUBLIC, doctypePublic); in setDoctype()
|
D | ToXMLSAXHandler.java | 655 String doctypePublic = getDoctypePublic(); in startElement() local 659 doctypePublic, in startElement()
|
D | ToHTMLStream.java | 704 String doctypePublic = getDoctypePublic(); in outputDocTypeDecl() local 705 if ((null != doctypeSystem) || (null != doctypePublic)) in outputDocTypeDecl() 713 if (null != doctypePublic) in outputDocTypeDecl() 716 writer.write(doctypePublic); in outputDocTypeDecl() 722 if (null == doctypePublic) in outputDocTypeDecl()
|
D | ToStream.java | 2016 String doctypePublic = getDoctypePublic(); in outputDocTypeDecl() local 2017 if (null != doctypePublic) in outputDocTypeDecl() 2020 writer.write(doctypePublic); in outputDocTypeDecl() 2027 if (null == doctypePublic) in outputDocTypeDecl()
|