Searched refs:outStart (Results 1 - 25 of 37) sorted by relevance

12

/openjdk7/jdk/src/share/classes/sun/io/
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 DCharToByteISCII91.java89 public int convert(char[] input, int inStart, int inEnd, byte[] output, int outStart, int outEnd) throws MalformedInputException, UnknownCharacterException, ConversionBufferFullException { argument
92 byteOff = outStart;
171 return byteOff - outStart;
177 public int flush( byte[] output, int outStart, int outEnd ) argument
H A DByteToCharISCII91.java74 char output[], int outStart, int outEnd)
81 charOff = outStart;
198 return charOff - outStart;
204 public int flush( char[] output, int outStart, int outEnd ) argument
210 output[outStart] = contextChar;
73 convert(byte input[], int inStart, int inEnd, char output[], int outStart, int outEnd) argument
H A DByteToCharASCII.java41 public int flush(char[] output, int outStart, int outEnd) { argument
H A DByteToCharISO8859_1.java41 public int flush(char[] output, int outStart, int outEnd) { argument
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 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 DByteToCharSingleByte.java46 public int flush(char[] output, int outStart, int outEnd) { argument
64 * @param outStart starting offset
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 DCharToByteDBCS_EBCDIC.java58 public int flush(byte [] output, int outStart, int outEnd) argument
70 if (outStart >= outEnd)
72 output[outStart] = SI;
H A DByteToCharDBCS_ASCII.java51 public int flush(char [] output, int outStart, int outEnd) argument
H A DByteToCharEUC.java51 public int flush(char[] output, int outStart, int outEnd) argument
H A DCharToByteASCII.java38 public int flush(byte[] output, int outStart, int outEnd) argument
H A DCharToByteEUC_TW.java38 public int flush(byte[] output, int outStart, int outEnd) argument
H A DByteToCharDoubleByte.java69 public int flush(char[] output, int outStart, int outEnd) argument
90 * @param outStart starting offset
H A DByteToCharEUC2.java58 public int flush(char[] output, int outStart, int outEnd) argument
H A DByteToCharEUC_JP_LINUX.java47 public int flush(char[] output, int outStart, int outEnd) argument
101 * @param outStart starting offset
H A DCharToByteDBCS_ASCII.java50 public int flush(byte [] output, int outStart, int outEnd) argument
H A DCharToByteDoubleByte.java54 public int flush(byte[] output, int outStart, int outEnd) argument
75 * @param outStart starting offset
H A DCharToByteISO8859_1.java37 public int flush(byte[] output, int outStart, int outEnd) argument
H A DCharToByteSingleByte.java79 public int flush(byte[] output, int outStart, int outEnd) argument
100 * @param outStart starting offset
H A DByteToCharCp33722.java70 public int flush(char[] output, int outStart, int outEnd) argument
H A DByteToCharCp964.java75 public int flush(char[] output, int outStart, int outEnd) argument
H A DByteToCharDBCS_EBCDIC.java60 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 57 milliseconds

12