Home | History | Annotate | Download | only in templates

Lines Matching defs:charPos

1646     int charPos;
1648 charPos = buf.length - 1; // work backward through buf[]
1701 buf[charPos--] = table[lookupIndex]; // left to right or top to bottom
1705 stringBuf.append(buf, charPos + 1, (buf.length - charPos - 1));
1744 int charPos;
1746 charPos = 0; //start at 0
1790 if (buf[charPos - 1] != zeroChar.getChar(0))
1791 buf[charPos++] = zeroChar.getChar(0);
1842 buf[charPos++] = multiplierChar;
1843 buf[charPos++] = table[lookupIndex];
1851 buf[charPos++] = table[lookupIndex];
1853 buf[charPos++] = multiplierChar;
1908 buf[charPos++] = table[lookupIndex]; // left to right or top to bottom
1917 // String s = new String(buf, 0, charPos);
1918 return new String(buf, 0, charPos);