Searched refs:decodeBase64 (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/algorithm/
H A DBASE64EncodingAlgorithm.java46 /* package */ static final int decodeBase64[] = { field in class:BASE64EncodingAlgorithm
162 int x1 = decodeBase64[encodedValue.charAt(encodedIdx++) - '+'];
163 int x2 = decodeBase64[encodedValue.charAt(encodedIdx++) - '+'];
164 int x3 = decodeBase64[encodedValue.charAt(encodedIdx++) - '+'];
165 int x4 = decodeBase64[encodedValue.charAt(encodedIdx++) - '+'];
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/
H A DRuntimeBuiltinLeafInfoImpl.java365 is = new ByteArrayInputStream(decodeBase64(text)); // TODO: buffering is inefficient
452 return new DataHandler(new ByteArrayDataSource(decodeBase64(text),
469 return new DataSourceSource(new ByteArrayDataSource(decodeBase64(text),
674 return decodeBase64(text);
870 private static byte[] decodeBase64(CharSequence text) { method in class:RuntimeBuiltinLeafInfoImpl

Completed in 62 milliseconds