Home
last modified time | relevance | path

Searched refs:doctypePublic (Results 1 – 4 of 4) sorted by relevance

/external/apache-xml/src/main/java/org/apache/xml/serializer/
DSerializerBase.java610 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()
DToXMLSAXHandler.java655 String doctypePublic = getDoctypePublic(); in startElement() local
659 doctypePublic, in startElement()
DToHTMLStream.java704 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()
DToStream.java2016 String doctypePublic = getDoctypePublic(); in outputDocTypeDecl() local
2017 if (null != doctypePublic) in outputDocTypeDecl()
2020 writer.write(doctypePublic); in outputDocTypeDecl()
2027 if (null == doctypePublic) in outputDocTypeDecl()