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

/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xml/internal/utils/
H A DFastStringBuffer.java1140 int currPos = start;
1145 for (; currPos < limit
1146 && XMLCharacterRecognizer.isWhiteSpace(ch[currPos]);
1147 currPos++) { }
1151 if (currPos == limit) {
1157 while (currPos < limit) {
1158 int startNonWhitespace = currPos;
1161 for (; currPos < limit
1162 && !XMLCharacterRecognizer.isWhiteSpace(ch[currPos]);
1163 currPos
[all...]
/openjdk10/jdk/src/java.base/windows/native/libnio/ch/
H A DFileDispatcherImpl.c129 LARGE_INTEGER currPos; local
137 currPos.QuadPart = 0;
138 result = SetFilePointerEx(h, currPos, &currPos, FILE_CURRENT);
168 result = SetFilePointerEx(h, currPos, NULL, FILE_BEGIN);
267 LARGE_INTEGER currPos; local
270 currPos.QuadPart = 0;
271 result = SetFilePointerEx(h, currPos, &currPos, FILE_CURRENT);
292 result = SetFilePointerEx(h, currPos, NUL
[all...]
/openjdk10/test/lib/jdk/test/lib/hprof/parser/
H A DHprofReader.java124 private long currPos; // Current position in the file field in class:HprofReader
179 currPos = 4; // 4 because of the magic number
189 currPos += 4;
194 currPos += 8;
210 + " at position " + toHex(currPos));
214 + " at byte " + toHex(currPos+5)
217 currPos += 9 + length;
243 readHeapDump(length, currPos);
280 readHeapDump(length, currPos);
398 currPos
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xs/
H A DXSModelImpl.java681 int currPos = 0;
685 System.arraycopy(currGrammar.fAnnotations, 0, annotations, currPos, currGrammar.fNumAnnotations);
686 currPos += currGrammar.fNumAnnotations;

Completed in 103 milliseconds