Lines Matching defs:startPos

105             if ((pos.startPos == Position.NOPOS) || (pos.endPos == Position.NOPOS))
110 System.out.print("Start: pos = " + pos.startPos + ", pc = " + entry.startPc);
113 // encode startPos into line/column representation
114 int startPos = encodePosition(pos.startPos, lineMap, log);
115 if (startPos == Position.NOPOS)
131 databuf.appendInt(startPos);
244 SourceRange sr = new SourceRange(startPos(tree), endPos(tree));
250 SourceRange sr = new SourceRange(startPos(tree), endPos(tree));
257 // endPos is the same as startPos for the empty statement
258 SourceRange sr = new SourceRange(startPos(tree), startPos(tree));
263 SourceRange sr = new SourceRange(startPos(tree), endPos(tree));
269 SourceRange sr = new SourceRange(startPos(tree), endPos(tree));
276 SourceRange sr = new SourceRange(startPos(tree), endPos(tree));
283 SourceRange sr = new SourceRange(startPos(tree), endPos(tree));
292 SourceRange sr = new SourceRange(startPos(tree), endPos(tree));
300 SourceRange sr = new SourceRange(startPos(tree), endPos(tree));
306 SourceRange sr = new SourceRange(startPos(tree), endPos(tree));
313 SourceRange sr = new SourceRange(startPos(tree), endPos(tree));
320 SourceRange sr = new SourceRange(startPos(tree), endPos(tree));
327 SourceRange sr = new SourceRange(startPos(tree), endPos(tree));
336 SourceRange sr = new SourceRange(startPos(tree), endPos(tree));
343 SourceRange sr = new SourceRange(startPos(tree), endPos(tree));
351 SourceRange sr = new SourceRange(startPos(tree), endPos(tree));
359 SourceRange sr = new SourceRange(startPos(tree), endPos(tree));
365 SourceRange sr = new SourceRange(startPos(tree), endPos(tree));
370 SourceRange sr = new SourceRange(startPos(tree), endPos(tree));
375 SourceRange sr = new SourceRange(startPos(tree), endPos(tree));
381 SourceRange sr = new SourceRange(startPos(tree), endPos(tree));
387 SourceRange sr = new SourceRange(startPos(tree), endPos(tree));
394 SourceRange sr = new SourceRange(startPos(tree), endPos(tree));
401 SourceRange sr = new SourceRange(startPos(tree), endPos(tree));
410 SourceRange sr = new SourceRange(startPos(tree), endPos(tree));
418 SourceRange sr = new SourceRange(startPos(tree), endPos(tree));
424 SourceRange sr = new SourceRange(startPos(tree), endPos(tree));
431 SourceRange sr = new SourceRange(startPos(tree), endPos(tree));
438 SourceRange sr = new SourceRange(startPos(tree), endPos(tree));
444 SourceRange sr = new SourceRange(startPos(tree), endPos(tree));
451 SourceRange sr = new SourceRange(startPos(tree), endPos(tree));
458 SourceRange sr = new SourceRange(startPos(tree), endPos(tree));
465 SourceRange sr = new SourceRange(startPos(tree), endPos(tree));
472 SourceRange sr = new SourceRange(startPos(tree), endPos(tree));
478 SourceRange sr = new SourceRange(startPos(tree), endPos(tree));
483 SourceRange sr = new SourceRange(startPos(tree), endPos(tree));
488 SourceRange sr = new SourceRange(startPos(tree), endPos(tree));
493 SourceRange sr = new SourceRange(startPos(tree), endPos(tree));
499 SourceRange sr = new SourceRange(startPos(tree), endPos(tree));
506 SourceRange sr = new SourceRange(startPos(tree), endPos(tree));
525 public int startPos(JCTree tree) {
581 int startPos;
589 startPos = Position.NOPOS;
594 SourceRange(int startPos, int endPos) {
595 this.startPos = startPos;
605 if (startPos == Position.NOPOS)
606 startPos = sr.startPos;
607 else if (sr.startPos != Position.NOPOS)
608 startPos = (startPos < sr.startPos ? startPos : sr.startPos);