Searched refs:newpos (Results 1 - 7 of 7) sorted by relevance
| /openjdk7/jdk/src/windows/classes/sun/awt/windows/ |
| H A D | WScrollPanePeer.java | 172 native void setTypedValue(ScrollPaneAdjustable adjustable, int newpos, int type); argument 216 int newpos = adj.getValue(); 219 newpos -= adj.getUnitIncrement(); 222 newpos += adj.getUnitIncrement(); 225 newpos -= adj.getBlockIncrement(); 228 newpos += adj.getBlockIncrement(); 231 newpos = this.pos; 241 newpos = Math.max(adj.getMinimum(), newpos); 242 newpos [all...] |
| /openjdk7/jdk/src/share/classes/java/io/ |
| H A D | RandomAccessFile.java | 470 long newpos; 477 newpos = pos + n; 478 if (newpos > len) { 479 newpos = len; 481 seek(newpos); 484 return (int) (newpos - pos);
|
| /openjdk7/jdk/src/share/classes/sun/java2d/pipe/ |
| H A D | BufferedMaskBlit.java | 137 int newpos = enqueueTile(buf.getAddress(), buf.position(), 143 buf.position(newpos);
|
| H A D | BufferedRenderPipe.java | 400 int newpos = fillSpans(rq, buf.getAddress(), 404 buf.position(newpos);
|
| /openjdk7/jaxp/src/com/sun/org/apache/regexp/internal/ |
| H A D | RE.java | 1505 int newpos = getParenEnd(0); 1508 if (newpos == pos) 1511 newpos++; 1519 pos = newpos; 1665 int newpos = getParenEnd(0); 1668 if (newpos == pos) 1670 newpos++; 1674 pos = newpos;
|
| /openjdk7/jdk/make/tools/src/build/tools/generatecharacter/ |
| H A D | GenerateCharacter.java | 705 int newpos = pos + marklen; 707 SCAN: while (newpos < line.length() && 708 (Character.isJavaIdentifierStart(ch = line.charAt(newpos)) 710 ++newpos; 720 String replacement = replaceCommand(line.substring(pos + marklen, newpos)); 721 line = line.substring(0, pos) + replacement + line.substring(newpos); 1068 int newpos = pos + marklen; 1070 while (newpos < template.length() && 1071 Character.isJavaIdentifierStart(ch = template.charAt(newpos)) && 1073 ++newpos; [all...] |
| /openjdk7/langtools/src/share/classes/com/sun/tools/javac/parser/ |
| H A D | JavacParser.java | 1394 JCExpression creator(int newpos, List<JCExpression> typeArgs) { argument 1399 return arrayCreatorRest(newpos, basicType()); 1431 JCExpression e = arrayCreatorRest(newpos, t); 1434 return toP(F.at(newpos).Erroneous(List.of(e))); 1437 int pos = newpos; 1451 return classCreatorRest(newpos, null, typeArgs, t); 1455 t = toP(F.at(newpos).NewClass(null, typeArgs, t, List.<JCExpression>nil(), null)); 1456 return toP(F.at(newpos).Erroneous(List.<JCTree>of(t))); 1462 JCExpression innerCreator(int newpos, List<JCExpression> typeArgs, JCExpression encl) { argument 1470 return classCreatorRest(newpos, enc 1476 arrayCreatorRest(int newpos, JCExpression elemtype) argument 1507 classCreatorRest(int newpos, JCExpression encl, List<JCExpression> typeArgs, JCExpression t) argument 1525 arrayInitializer(int newpos, JCExpression t) argument [all...] |
Completed in 51 milliseconds