Searched defs:endPos (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/java/text/
H A DDictionaryBasedBreakIterator.java333 private void divideUpDictionaryRange(int startPos, int endPos) { argument
406 else if (state == 0 || text.getIndex() >= endPos) {
442 if (farthestEndPoint < endPos) {
480 if (text.getIndex() >= endPos) {
499 currentBreakPositions.push(Integer.valueOf(endPos));
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/parser/
H A DLexer.java58 int endPos(); method in interface:Lexer
H A DScanner.java79 private int endPos; field in class:Scanner
739 prevEndPos = endPos;
751 endPos = bp;
756 endPos = bp;
764 endPos = bp;
866 endPos = bp;
889 endPos = bp;
969 endPos = bp;
972 + "," + endPos + ")=|" +
973 new String(getRawCharacters(pos, endPos))
1008 public int endPos() { method in class:Scanner
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DCRTable.java105 if ((pos.startPos == Position.NOPOS) || (pos.endPos == Position.NOPOS))
119 System.out.print("End: pos = " + pos.endPos + ", pc = " + (entry.endPc - 1));
122 // encode endPos into line/column representation
123 int endPos = encodePosition(pos.endPos, lineMap, log);
124 if (endPos == Position.NOPOS)
132 databuf.appendInt(endPos);
244 SourceRange sr = new SourceRange(startPos(tree), endPos(tree));
250 SourceRange sr = new SourceRange(startPos(tree), endPos(tree));
257 // endPos i
533 public int endPos(JCTree tree) { method in class:CRTable.SourceComputer
585 int endPos; field in class:CRTable.SourceRange
594 SourceRange(int startPos, int endPos) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DTreeInfo.java250 public static int endPos(JCTree tree) { method in class:TreeInfo
254 return endPos(((JCSynchronized) tree).body);
257 return endPos((t.finalizer != null)
354 return endPos(tree);
441 final int endPos = TreeInfo.endPos(tree);
445 public int getPreferredPosition() { return endPos; }
460 return endPos(((JCSynchronized) tree).body);
/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DParser.java784 char[] getChars(int pos, int endPos) { argument
785 char newStr[] = new char[endPos - pos];
786 System.arraycopy(str, pos, newStr, 0, endPos - pos);
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DCachedRowSetImpl.java224 private int endPos; field in class:CachedRowSetImpl
7265 if((endPos - startPos) >= getMaxRows() && (getMaxRows() > 0)){
7266 endPos = prevEndPos;
7276 prevEndPos = endPos;
7277 endPos = start + getMaxRows() ;
7280 prevEndPos = endPos;
7281 endPos = start + getPageSize();
7318 endPos = prevEndPos;
7400 crsReader.setStartPosition(endPos);
7405 populate(resultSet,endPos);
[all...]

Completed in 466 milliseconds