Searched refs:bufferPos (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DNormalizerBase.java151 private int bufferPos = 0; field in class:NormalizerBase
799 if(bufferPos<bufferLimit || nextNormalize()) {
800 return getCodePointAt(bufferPos);
814 if(bufferPos<bufferLimit || nextNormalize()) {
815 int c=getCodePointAt(bufferPos);
816 bufferPos+=(c>0xFFFF) ? 2 : 1;
832 if(bufferPos>0 || previousNormalize()) {
833 int c=getCodePointAt(bufferPos-1);
834 bufferPos-=(c>0xFFFF) ? 2 : 1;
934 if(bufferPos<bufferLimi
[all...]

Completed in 45 milliseconds