Searched defs:outStart (Results 26 - 37 of 37) sorted by relevance

12

/openjdk7/jdk/src/share/classes/sun/io/
H A DCharToByteEUC.java47 public int flush(byte [] output, int outStart, int outEnd) argument
H A DCharToByteISO2022JP.java52 public int flush(byte[] output, int outStart, int outEnd) argument
62 if (outEnd - outStart < 3) {
65 output[outStart] = (byte)0x1b;
66 output[outStart + 1] = (byte)0x28;
67 output[outStart + 2] = (byte)0x42;
H A DCharToByteSingleByte.java79 public int flush(byte[] output, int outStart, int outEnd) argument
100 * @param outStart starting offset
H A DByteToCharConverter.java110 * @param outStart start writing to output array at this offset.
121 char[] output, int outStart, int outEnd)
192 * @param outStart start writing to output array at this offset.
203 public abstract int flush( char[] output, int outStart, int outEnd ) argument
120 convert(byte[] input, int inStart, int inEnd, char[] output, int outStart, int outEnd) argument
H A DByteToCharCp964.java75 public int flush(char[] output, int outStart, int outEnd) argument
H A DByteToCharJISAutoDetect.java60 public int flush(char [] output, int outStart, int outEnd) argument
65 return detectedConv.flush(output, outStart, outEnd);
67 return defaultConv.flush(output, outStart, outEnd);
H A DCharToByteConverter.java109 * @param outStart start writing to output array at this offset.
124 byte[] output, int outStart, int outEnd)
142 * @param outStart start writing to output array at this offset.
148 byte[] output, int outStart, int outEnd)
158 int localOutOff = outStart;
163 return (nextByteIndex() - outStart);
177 return (byteOff - outStart);
187 return (nextByteIndex() - outStart);
258 * @param outStart start writing to output array at this offset.
271 public abstract int flush( byte[] output, int outStart, in argument
123 convert(char[] input, int inStart, int inEnd, byte[] output, int outStart, int outEnd) argument
147 convertAny(char[] input, int inStart, int inEnd, byte[] output, int outStart, int outEnd) argument
289 flushAny( byte[] output, int outStart, int outEnd ) argument
[all...]
H A DCharToByteGB18030.java55 public int flush(byte[] output, int outStart, int outEnd) argument
H A DCharToByteISO2022.java62 public int flush(byte[] output, int outStart, int outEnd) argument
H A DByteToCharISO2022.java87 public int flush(char[] output, int outStart, int outEnd) argument
H A DByteToCharISO2022CN.java83 public int flush(char[] output, int outStart, int outEnd) argument
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DHangulLayoutEngine.cpp270 le_int32 outStart = outCharCount; local
318 le_int32 outLength = outCharCount - outStart;
333 LEUnicode lead = outChars[outStart];
334 LEUnicode vowel = outChars[outStart + 1];
335 LEUnicode trail = outLength == 3? outChars[outStart + 2] : TJMO_FIRST;
342 outCharCount = outStart;

Completed in 35 milliseconds

12