/openjdk7/jdk/src/share/classes/sun/io/ |
H A D | ByteToCharBig5.java | 39 private static DoubleByte.Decoder dec = field in class:ByteToCharBig5 47 super(dec);
|
H A D | ByteToCharBig5_Solaris.java | 33 private static DoubleByte.Decoder dec = field in class:ByteToCharBig5_Solaris 41 super(dec);
|
H A D | ByteToCharEUC_CN.java | 32 private static DoubleByte.Decoder dec = field in class:ByteToCharEUC_CN 40 super(dec);
|
H A D | ByteToCharEUC_KR.java | 33 private static DoubleByte.Decoder dec = field in class:ByteToCharEUC_KR 41 super(dec);
|
H A D | ByteToCharGBK.java | 33 private static DoubleByte.Decoder dec = field in class:ByteToCharGBK 41 super(dec);
|
H A D | ByteToCharJohab.java | 33 private static DoubleByte.Decoder dec = field in class:ByteToCharJohab 41 super(dec);
|
H A D | ByteToCharMS932.java | 32 private static DoubleByte.Decoder dec = field in class:ByteToCharMS932 40 super(dec);
|
H A D | ByteToCharMS936.java | 32 private static DoubleByte.Decoder dec = field in class:ByteToCharMS936 40 super(dec);
|
H A D | ByteToCharMS949.java | 33 private static DoubleByte.Decoder dec = field in class:ByteToCharMS949 42 super(dec);
|
H A D | ByteToCharMS950.java | 33 private static DoubleByte.Decoder dec = field in class:ByteToCharMS950 41 super(dec);
|
H A D | ByteToCharBig5_HKSCS.java | 34 protected static HKSCS.Decoder dec = field in class:ByteToCharBig5_HKSCS 43 super(dec); 47 char c = dec.decodeDouble(byte1, byte2); 49 c = dec.decodeBig5(byte1, byte2);
|
H A D | ByteToCharMS950_HKSCS.java | 34 private static HKSCS.Decoder dec = field in class:ByteToCharMS950_HKSCS 42 super(dec); 46 char c = dec.decodeDouble(byte1, byte2); 48 c = dec.decodeBig5(byte1, byte2);
|
H A D | ByteToCharDBCS_ASCII.java | 35 private DoubleByte.Decoder dec; field in class:ByteToCharDBCS_ASCII 37 public ByteToCharDBCS_ASCII(DoubleByte.Decoder dec) { argument 40 this.dec = dec; 44 return dec.decodeSingle(b); 48 return dec.decodeDouble(b1, b2);
|
H A D | ByteToCharDBCS_EBCDIC.java | 43 private DoubleByte.Decoder dec; field in class:ByteToCharDBCS_EBCDIC 45 public ByteToCharDBCS_EBCDIC(DoubleByte.Decoder dec) { argument 49 this.dec = dec; 53 return dec.decodeSingle(b); 57 return dec.decodeDouble(b1, b2);
|
H A D | ByteToCharEUC2.java | 39 private DoubleByte.Decoder dec; field in class:ByteToCharEUC2 41 public ByteToCharEUC2(DoubleByte.Decoder dec) { argument 44 this.dec = dec; 48 return dec.decodeSingle(b); 52 return dec.decodeDouble(b1, b2);
|
H A D | ByteToCharEUC_TW.java | 46 private EUC_TW.Decoder dec = (EUC_TW.Decoder)(new EUC_TW().newDecoder()); field in class:ByteToCharEUC_TW 65 dec.reset(); 106 outputChar = dec.toUnicode(firstByte & 0xff, 141 outputChar = dec.toUnicode(firstByte & 0xff,
|
/openjdk7/jdk/src/share/classes/java/io/ |
H A D | InputStreamReader.java | 123 * @param dec A charset decoder 128 public InputStreamReader(InputStream in, CharsetDecoder dec) { argument 130 if (dec == null) 132 sd = StreamDecoder.forInputStreamReader(in, this, dec);
|
/openjdk7/jdk/src/share/classes/java/util/zip/ |
H A D | ZipCoder.java | 128 private CharsetDecoder dec; field in class:ZipCoder 143 if (dec == null) { 144 dec = cs.newDecoder() 148 return dec;
|
/openjdk7/hotspot/src/os_cpu/bsd_x86/vm/ |
H A D | atomic_bsd_x86.inline.hpp | 71 inline void Atomic::dec (volatile jint* dest) { function in class:Atomic 180 dec((volatile jint*)dest);
|
/openjdk7/hotspot/src/os_cpu/linux_sparc/vm/ |
H A D | atomic_linux_sparc.inline.hpp | 53 inline void Atomic::dec (volatile jint* dest) { (void)add (-1, dest); } function in class:Atomic
|
/openjdk7/hotspot/src/os_cpu/linux_x86/vm/ |
H A D | atomic_linux_x86.inline.hpp | 71 inline void Atomic::dec (volatile jint* dest) { function in class:Atomic 180 dec((volatile jint*)dest);
|
/openjdk7/hotspot/src/os_cpu/solaris_sparc/vm/ |
H A D | atomic_solaris_sparc.inline.hpp | 51 inline void Atomic::dec (volatile jint* dest) { (void)add (-1, dest); } function in class:Atomic
|
/openjdk7/jdk/test/java/nio/charset/coders/ |
H A D | Errors.java | 78 abstract String dec(byte[] ba) throws IOException; method in class:Errors.Test 84 s = dec(ba); 131 String dec(byte[] ba) throws IOException { method in class:Errors.TestStream 153 String dec(byte[] ba) throws IOException { method in class:Errors.TestString
|
/openjdk7/jdk/src/solaris/classes/sun/awt/motif/ |
H A D | X11GB2312.java | 102 private DoubleByte.Decoder dec = (DoubleByte.Decoder)new EUC_CN().newDecoder(); field in class:X11GB2312.Decoder 109 return dec.decodeDouble(b1, b2);
|
H A D | X11KSC5601.java | 101 private DoubleByte.Decoder dec = (DoubleByte.Decoder)new EUC_KR().newDecoder(); field in class:X11KSC5601.Decoder 108 return dec.decodeDouble(b1, b2);
|