Searched defs:inEnd (Results 26 - 41 of 41) sorted by relevance

12

/openjdk7/jdk/src/share/classes/sun/io/
H A DCharToByteDBCS_EBCDIC.java83 public int convert(char[] input, int inOff, int inEnd, argument
94 while(charOff < inEnd) {
112 if (charOff + inputSize >= inEnd) {
H A DCharToByteDoubleByte.java73 * @param inEnd offset of last byte to be converted
80 public int convert(char[] input, int inOff, int inEnd, argument
110 while(charOff < inEnd) {
118 if (charOff + 1 >= inEnd) {
H A DCharToByteEUC.java64 public int convert(char[] input, int inOff, int inEnd, argument
75 while(charOff < inEnd) {
99 if (charOff + inputSize >= inEnd) {
H A DCharToByteEUC_JP_Solaris.java91 * @param inEnd offset of last byte to be converted
98 public int convert(char[] input, int inOff, int inEnd, argument
128 while(charOff < inEnd) {
136 if (charOff + 1 >= inEnd) {
H A DCharToByteISO2022JP.java77 public int convert(char[] input, int inOff, int inEnd, argument
112 while(charOff < inEnd) {
124 if (charOff + 1 >= inEnd) {
H A DCharToByteSingleByte.java98 * @param inEnd offset of last byte to be converted
109 public int convert(char[] input, int inOff, int inEnd, argument
141 while(charOff < inEnd) {
157 if (charOff + 1 >= inEnd) {
H A DCharToByteUnicode.java81 public int convert(char in[], int inOff, int inEnd, argument
88 if (inOff >= inEnd)
110 while (inI < inEnd) {
122 while (inI < inEnd) {
139 public int flush(byte in[], int inOff, int inEnd) { argument
H A DByteToCharConverter.java108 * @param inEnd stop conversion at this offset in input array (exclusive).
120 public abstract int convert(byte[] input, int inStart, int inEnd, argument
H A DByteToCharCp964.java99 public int convert(byte[] input, int inOff, int inEnd, argument
111 while (byteOff < inEnd) {
H A DByteToCharJISAutoDetect.java74 public int convert(byte[] input, int inOff, int inEnd, argument
93 for (cnt = inOff; cnt < inEnd; cnt++) {
123 if (cnt+1 < inEnd) {
145 if (cnt+1 < inEnd) {
190 if (byteOff == inEnd) {
196 num += detectedConv.convert(input, inOff + num, inEnd,
205 num += defaultConv.convert(input, inOff + num, inEnd,
H A DByteToCharUnicode.java98 public int convert(byte[] in, int inOff, int inEnd, argument
105 if (inOff >= inEnd)
122 if (inI < inEnd) {
141 if (inI < inEnd) {
151 if (inI < inEnd) {
167 while (inI < inEnd) {
187 if (inI < inEnd) {
H A DCharToByteConverter.java107 * @param inEnd stop conversion at this offset in input array (exclusive).
123 public abstract int convert(char[] input, int inStart, int inEnd, argument
140 * @param inEnd stop conversion at this offset in input array (exclusive).
147 public int convertAny(char[] input, int inStart, int inEnd, argument
159 while(localInOff < inEnd) {
161 int discard = convert(input, localInOff, inEnd,
175 if (localInOff >= inEnd){
H A DCharToByteGB18030.java86 public int convert(char[] input, int inOff, int inEnd, argument
107 char[] newBuf = new char[inEnd - inOff + 1];
109 System.arraycopy(input, inOff, newBuf, 1, inEnd - inOff);
113 inEnd = newBuf.length;
124 while (charOff < inEnd) {
129 if (charOff + 1 > inEnd) {
H A DCharToByteISO2022.java148 public int convert(char[] input, int inOff, int inEnd, argument
167 for (charOff = inOff; charOff < inEnd; charOff++) {
H A DByteToCharISO2022.java99 private byte[] savetyGetSrc(byte[] input, int inOff, int inEnd, int nbytes) argument
104 if(inOff <= (inEnd-nbytes+1))
107 tmp = new byte[inEnd-inOff];
150 public final int convert(byte[] input, int inOff, int inEnd, argument
161 while (byteOff < inEnd) {
184 byte tmp[] = savetyGetSrc(input, byteOff, inEnd,
H A DByteToCharISO2022CN.java95 private byte[] savetyGetSrc(byte[] input, int inOff, int inEnd, int nbytes) argument
100 if(inOff <= (inEnd-nbytes+1))
103 tmp = new byte[inEnd-inOff];
144 public final int convert(byte[] input, int inOff, int inEnd, argument
155 while (byteOff < inEnd) {
178 byte tmp[] = savetyGetSrc(input, byteOff, inEnd,

Completed in 45 milliseconds

12