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

/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DFastStringBuffer.java1141 int currPos = start;
1146 for (; currPos < limit
1147 && XMLCharacterRecognizer.isWhiteSpace(ch[currPos]);
1148 currPos++) { }
1152 if (currPos == limit) {
1158 while (currPos < limit) {
1159 int startNonWhitespace = currPos;
1162 for (; currPos < limit
1163 && !XMLCharacterRecognizer.isWhiteSpace(ch[currPos]);
1164 currPos
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/parser/
H A DHprofReader.java123 private long currPos; // Current position in the file field in class:HprofReader
174 currPos = 4; // 4 because of the magic number
184 currPos += 4;
189 currPos += 8;
205 + " at position " + toHex(currPos));
209 + " at byte " + toHex(currPos+5)
212 currPos += 9 + length;
238 readHeapDump(length, currPos);
275 readHeapDump(length, currPos);
370 currPos
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXSModelImpl.java641 int currPos = 0;
645 System.arraycopy(currGrammar.fAnnotations, 0, annotations, currPos, currGrammar.fNumAnnotations);
646 currPos += currGrammar.fNumAnnotations;

Completed in 43 milliseconds