Searched refs:standalone (Results 1 - 10 of 10) sorted by relevance

/dalvik/libcore/xml/src/main/java/org/kxml2/kdom/
H A DDocument.java35 Boolean standalone; field in class:Document
47 public void setStandalone (Boolean standalone) { argument
48 this.standalone = standalone;
52 return standalone;
88 standalone = (Boolean)parser.getProperty ("http://xmlpull.org/v1/doc/properties.html#xmldecl-standalone");
123 writer.startDocument(encoding, standalone);
/dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/
H A Doutput_unknown.properties32 standalone=no
H A Doutput_xml.properties31 standalone=no
H A DXSLOutputAttributes.java38 * standalone
97 * @return a value of "yes" if the <code>standalone</code> delaration is to
170 * Sets the value coming from the xsl:output standalone stylesheet attribute.
171 * @param standalone a value of "yes" indicates that the
172 * <code>standalone</code> delaration is to be included in the output
175 public void setStandalone(String standalone); argument
H A DToXMLStream.java129 String standalone;
133 standalone = " standalone=\"" + getStandalone() + "\"";
137 standalone = "";
148 writer.write(standalone);
159 // standalone, or a doctype system or public is
H A DSerializerBase.java168 * The standalone value for the doctype.
173 * True if standalone was specified.
650 * Sets the value coming from the xsl:output standalone stylesheet attribute.
651 * @param standalone a value of "yes" indicates that the
652 * <code>standalone</code> delaration is to be included in the output
656 public void setStandalone(String standalone) argument
658 setOutputProperty(OutputKeys.STANDALONE, standalone);
661 * Sets the XSL standalone attribute, but does not remember if this is a
663 * @param standalone "yes" | "no"
665 protected void setStandaloneInternal(String standalone) argument
[all...]
H A DToUnknownStream.java705 public void setStandalone(String standalone) argument
707 m_handler.setStandalone(standalone);
/dalvik/libcore/xml/src/main/java/org/xmlpull/v1/
H A DXmlSerializer.java106 * and standalone flag (if standalone not null)
109 void startDocument (String encoding, Boolean standalone) argument
/dalvik/libcore/xml/src/main/java/org/kxml2/io/
H A DKXmlSerializer.java351 Boolean standalone)
367 if (standalone != null) {
368 writer.write("standalone='");
370 standalone.booleanValue() ? "yes" : "no");
349 startDocument( String encoding, Boolean standalone) argument
H A DKXmlParser.java44 private Boolean standalone; field in class:KXmlParser
416 && "standalone".equals(attributes[4 * pos + 2])) {
419 standalone = new Boolean(true);
421 standalone = new Boolean(false);
423 error("illegal standalone value: " + st);
1014 standalone = null;
1177 if (isProp(property, true, "xmldecl-standalone"))
1178 return standalone;

Completed in 1443 milliseconds