Searched defs:dec (Results 1 - 25 of 42) sorted by relevance

12

/openjdk7/jdk/src/share/classes/sun/io/
H A DByteToCharBig5.java39 private static DoubleByte.Decoder dec = field in class:ByteToCharBig5
47 super(dec);
H A DByteToCharBig5_Solaris.java33 private static DoubleByte.Decoder dec = field in class:ByteToCharBig5_Solaris
41 super(dec);
H A DByteToCharEUC_CN.java32 private static DoubleByte.Decoder dec = field in class:ByteToCharEUC_CN
40 super(dec);
H A DByteToCharEUC_KR.java33 private static DoubleByte.Decoder dec = field in class:ByteToCharEUC_KR
41 super(dec);
H A DByteToCharGBK.java33 private static DoubleByte.Decoder dec = field in class:ByteToCharGBK
41 super(dec);
H A DByteToCharJohab.java33 private static DoubleByte.Decoder dec = field in class:ByteToCharJohab
41 super(dec);
H A DByteToCharMS932.java32 private static DoubleByte.Decoder dec = field in class:ByteToCharMS932
40 super(dec);
H A DByteToCharMS936.java32 private static DoubleByte.Decoder dec = field in class:ByteToCharMS936
40 super(dec);
H A DByteToCharMS949.java33 private static DoubleByte.Decoder dec = field in class:ByteToCharMS949
42 super(dec);
H A DByteToCharMS950.java33 private static DoubleByte.Decoder dec = field in class:ByteToCharMS950
41 super(dec);
H A DByteToCharBig5_HKSCS.java34 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 DByteToCharMS950_HKSCS.java34 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 DByteToCharDBCS_ASCII.java35 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 DByteToCharDBCS_EBCDIC.java43 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 DByteToCharEUC2.java39 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 DByteToCharEUC_TW.java46 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 DInputStreamReader.java123 * @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 DZipCoder.java128 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 Datomic_bsd_x86.inline.hpp71 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 Datomic_linux_sparc.inline.hpp53 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 Datomic_linux_x86.inline.hpp71 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 Datomic_solaris_sparc.inline.hpp51 inline void Atomic::dec (volatile jint* dest) { (void)add (-1, dest); } function in class:Atomic
/openjdk7/jdk/test/java/nio/charset/coders/
H A DErrors.java78 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 DX11GB2312.java102 private DoubleByte.Decoder dec = (DoubleByte.Decoder)new EUC_CN().newDecoder(); field in class:X11GB2312.Decoder
109 return dec.decodeDouble(b1, b2);
H A DX11KSC5601.java101 private DoubleByte.Decoder dec = (DoubleByte.Decoder)new EUC_KR().newDecoder(); field in class:X11KSC5601.Decoder
108 return dec.decodeDouble(b1, b2);

Completed in 116 milliseconds

12