Searched refs:decoded (Results 1 - 14 of 14) sorted by relevance

/openjdk7/jdk/test/sun/nio/cs/
H A DLatinCharReplacementTWTest.java68 char[] decoded = new char[128];
69 int numChars = isr.read(decoded);
76 if (decoded[i] != expected[i])
H A DSurrogateTestEUCTW.java85 String decoded = new String(encodedBytes, "EUC-TW");
87 if (!decoded.equals(testStr)) {
H A DTestISO2022CNDecoder.java49 char decoded[],
65 for (i = 0; i < decoded.length; i++) {
68 if (c != decoded[i]) {
71 + Integer.toHexString(decoded[i]));
93 if (decodedString.charAt(i) != decoded[i])
115 if (cb.get() != decoded[i])
47 decodeTest( byte encoded[], char decoded[], String label) argument
H A DTestISO2022JP.java556 String decoded = new String(encodedBytes, csName);
558 if (!decoded.equals(testStr)) {
H A DTestMS5022X.java657 String decoded = new String(encodedBytes, name);
658 if (!decoded.equals(testStr)) {
H A DSurrogateTestHKSCS.java1184 String decoded = new String(encodedBytes, "Big5-HKSCS");
1186 if (!decoded.equals(testStr)) {
/openjdk7/jdk/test/java/net/URLEncoder/
H A DDecoder.java53 String decoded = URLDecoder.decode(encoded, enc);
56 System.out.print("decoded: ");
57 printString(decoded);
58 if (strings[i].equals(decoded)) {
62 throw new RuntimeException ("Unexpected decoded output on string " + i);
H A DSurrogatePairs.java91 String decoded = URLDecoder.decode(encoded, "UTF-8");
94 + getHexBytes(decoded));
96 if (str.equals(decoded))
99 throw new Exception("The decoded is not equal to the original");
/openjdk7/jdk/test/sun/misc/Encode/
H A DDecodeBuffer.java83 String decoded;
85 decoded = new String(uuD.decodeBuffer(s));
86 if (!decoded.equals (original)) {
87 throw new Exception ("decoded text not same as original");
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DBase64BinaryDV.java45 byte[] decoded = Base64.decode(content);
46 if (decoded == null)
49 return new XBase64(decoded);
H A DHexBinaryDV.java45 byte[] decoded = HexBin.decode(content);
46 if (decoded == null)
49 return new XHex(decoded);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/
H A DAttachmentPartImpl.java391 InputStream decoded = null;
393 decoded = MimeUtility.decode(content, "base64");
400 bos.write(decoded);
408 decoded.close();
/openjdk7/jdk/src/share/instrument/
H A DInvocationAdapter.c569 * returned. Otherwise the decoded path (heap allocated) is returned,
570 * along with the length of the decoded path. Note that the return
604 int decoded = decodeByte(b1, b2); local
605 *resultp++ = decoded;
682 * characters are escaped. Once the URI path is decoded we get a UTF8
/openjdk7/jdk/src/share/classes/java/awt/datatransfer/
H A DSystemFlavorMap.java88 * The list of valid, decoded text flavor representation classes, in order
560 String decoded = decodeJavaMIMEType(nat);
564 flavor = new DataFlavor(decoded);
569 decoded);
786 * native and a <code>DataFlavor</code> whose MIME type is a decoded
1007 * native and a <code>DataFlavor</code> whose MIME type is a decoded
1274 * @return the decoded Java MIME type, or <code>null</code> if nat is not
1288 * @return the decoded <code>DataFlavor</code>, or <code>null</code> if

Completed in 83 milliseconds