Searched refs:XML_DECLARATION_VALUES (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/
H A DEncodingConstants.java282 /* package */ static byte[][] XML_DECLARATION_VALUES; field in class:EncodingConstants
286 XML_DECLARATION_VALUES = new byte[9][];
289 XML_DECLARATION_VALUES[0] = "<?xml encoding='finf'?>".getBytes("UTF-8");
290 XML_DECLARATION_VALUES[1] = "<?xml version='1.0' encoding='finf'?>".getBytes("UTF-8");
291 XML_DECLARATION_VALUES[2] = "<?xml version='1.1' encoding='finf'?>".getBytes("UTF-8");
292 XML_DECLARATION_VALUES[3] = "<?xml encoding='finf' standalone='no'?>".getBytes("UTF-8");
293 XML_DECLARATION_VALUES[4] = "<?xml encoding='finf' standalone='yes'?>".getBytes("UTF-8");
294 XML_DECLARATION_VALUES[5] = "<?xml version='1.0' encoding='finf' standalone='no'?>".getBytes("UTF-8");
295 XML_DECLARATION_VALUES[6] = "<?xml version='1.1' encoding='finf' standalone='no'?>".getBytes("UTF-8");
296 XML_DECLARATION_VALUES[
[all...]
H A DDecoder.java1950 for (int i = 0; i < EncodingConstants.XML_DECLARATION_VALUES.length; i++) {
1951 _octetBufferLength = EncodingConstants.XML_DECLARATION_VALUES[i].length - _octetBufferOffset;
1957 EncodingConstants.XML_DECLARATION_VALUES[i],
1958 EncodingConstants.XML_DECLARATION_VALUES[i].length)) {
H A DEncoder.java610 _s.write(EncodingConstants.XML_DECLARATION_VALUES[0]);

Completed in 88 milliseconds