Searched defs:writeXMLContent (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jaxp/src/com/sun/xml/internal/stream/writers/
H A DWriterUtility.java123 public void writeXMLContent(char[] content, int start, int length) throws IOException{ method in class:WriterUtility
124 writeXMLContent(content, start, length, getEscapeCharacters());
131 private void writeXMLContent(char[] content, int start, int length, boolean escapeCharacter) throws IOException{ method in class:WriterUtility
226 public void writeXMLContent(String content) throws IOException{ method in class:WriterUtility
228 writeXMLContent(content.toCharArray(), 0, content.length());
239 writeXMLContent(value.toCharArray(), 0, value.length(), true);
H A DXMLStreamWriterImpl.java547 writeXMLContent(
600 writeXMLContent(value,
690 writeXMLContent(data);
703 writeXMLContent(data, start, len, fEscapeCharacters);
1060 writeXMLContent(
1352 private void writeXMLContent(char[] content, int start, int length, method in class:XMLStreamWriterImpl
1407 private void writeXMLContent(String content) throws IOException { method in class:XMLStreamWriterImpl
1409 writeXMLContent(content,
1419 private void writeXMLContent( method in class:XMLStreamWriterImpl

Completed in 34 milliseconds