Searched defs:repl (Results 1 - 25 of 31) sorted by relevance

12

/openjdk7/jdk/test/java/nio/charset/coders/
H A DIsLegalReplacement.java52 static CoderResult ilr(String csn, byte[] repl) { argument
56 ByteBuffer bb = ByteBuffer.wrap(repl);
62 static void test(String csn, byte[] repl, boolean expected) argument
66 out.print(csn + ": " + toString(repl) + ": ");
67 if (enc.isLegalReplacement(repl) == expected) {
73 out.println(" (" + ilr(csn, repl) + ")");
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DIBM834.java89 public boolean isLegalReplacement(byte[] repl) { argument
90 if (repl.length == 2 &&
91 repl[0] == (byte)0xfe && repl[1] == (byte)0xfe)
93 return super.isLegalReplacement(repl);
H A DISO2022_CN_CNS.java96 public boolean isLegalReplacement(byte[] repl) { argument
98 return (repl.length == 1 && repl[0] == (byte) 0x3f);
H A DISO2022_CN_GB.java86 public boolean isLegalReplacement(byte[] repl) { argument
88 return (repl.length == 1 && repl[0] == (byte) 0x3f);
H A DJIS_X_0208_Solaris_Encoder.java36 private static byte[] repl = { (byte)0x21, (byte)0x29 }; field in class:JIS_X_0208_Solaris_Encoder
42 repl
H A DJIS_X_0212_Encoder.java47 private static byte[] repl = { (byte)0x22, (byte)0x44 }; field in class:JIS_X_0212_Encoder
53 repl
H A DJIS_X_0212_Solaris_Encoder.java37 private static byte[] repl = { (byte)0x22, (byte)0x44 }; field in class:JIS_X_0212_Solaris_Encoder
43 repl
H A DDoubleByteEncoder.java65 short[] index1, String[] index2, byte[] repl)
67 super(cs, 2.0f, 2.0f, repl);
75 byte[] repl, float avg, float max)
77 super(cs, avg, max,repl);
64 DoubleByteEncoder(Charset cs, short[] index1, String[] index2, byte[] repl) argument
73 DoubleByteEncoder(Charset cs, short[] index1, String[] index2, byte[] repl, float avg, float max) argument
H A DJIS_X_0208_Encoder.java45 private static byte[] repl = { (byte)0x21, (byte)0x29 }; field in class:JIS_X_0208_Encoder
51 repl
58 repl,
/openjdk7/jdk/src/solaris/classes/sun/awt/motif/
H A DX11SunUnicode_0.java149 public boolean isLegalReplacement(byte[] repl) { argument
H A DX11Dingbats.java128 public boolean isLegalReplacement(byte[] repl) { argument
H A DX11CNS11643.java84 public boolean isLegalReplacement(byte[] repl) { argument
H A DX11GB18030_0.java4270 public boolean isLegalReplacement(byte[] repl) { argument
H A DX11GB18030_1.java5267 public boolean isLegalReplacement(byte[] repl) { argument
H A DX11GB2312.java96 public boolean isLegalReplacement(byte[] repl) { argument
H A DX11Johab.java55 public boolean isLegalReplacement(byte[] repl) { argument
H A DX11KSC5601.java95 public boolean isLegalReplacement(byte[] repl) { argument
/openjdk7/jdk/test/sun/nio/cs/OLD/
H A DX11GB2312_OLD.java87 public boolean isLegalReplacement(byte[] repl) { argument
H A DX11KSC5601_OLD.java86 public boolean isLegalReplacement(byte[] repl) { argument
H A DDoubleByteEncoder.java65 short[] index1, String[] index2, byte[] repl)
67 super(cs, 2.0f, 2.0f, repl);
75 byte[] repl, float avg, float max)
77 super(cs, avg, max,repl);
64 DoubleByteEncoder(Charset cs, short[] index1, String[] index2, byte[] repl) argument
73 DoubleByteEncoder(Charset cs, short[] index1, String[] index2, byte[] repl, float avg, float max) argument
/openjdk7/jdk/src/share/classes/sun/awt/
H A DSymbol.java187 public boolean isLegalReplacement(byte[] repl) { argument
H A DAWTCharset.java99 public boolean isLegalReplacement(byte[] repl) { argument
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWingDings.java159 public boolean isLegalReplacement(byte[] repl) { argument
/openjdk7/jdk/test/sun/nio/cs/
H A DX11CNS11643.java79 public boolean isLegalReplacement(byte[] repl) { argument
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DISO_8859_1.java144 public boolean isLegalReplacement(byte[] repl) { argument
217 private byte repl = (byte)'?'; field in class:ISO_8859_1.Encoder
219 repl = newReplacement[0];
239 dst[dp++] = repl;

Completed in 162 milliseconds

12