/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/util/ |
H A D | SourcePositionImpl.java | 42 private JavaFileObject sourcefile; field in class:SourcePositionImpl 47 public SourcePositionImpl(JavaFileObject sourcefile, int pos, Position.LineMap linemap) { argument 48 this.sourcefile = sourcefile; 51 assert sourcefile != null; 60 return sourcefile; 65 * form "sourcefile:line", or "sourcefile" if no line number is available. 70 ? sourcefile.getName() 71 : sourcefile [all...] |
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/model/ |
H A D | JavacSourcePosition.java | 41 final JavaFileObject sourcefile; field in class:JavacSourcePosition 45 JavacSourcePosition(JavaFileObject sourcefile, argument 48 this.sourcefile = sourcefile; 54 return sourcefile; 72 ? sourcefile + ":" + line 73 : sourcefile.toString();
|
/openjdk7/langtools/test/tools/javac/tree/ |
H A D | JavacTreeScannerTest.java | 87 sourcefile = tree.sourcefile; 94 //System.err.println(sourcefile.getName() + ": trees compared OK"); 98 error(sourcefile, "differences found"); 107 error(sourcefile, t, "missing"); 113 error(sourcefile, t, "unexpected"); 152 JavaFileObject sourcefile; field in class:JavacTreeScannerTest.ScanTester
|
H A D | SourceTreeScannerTest.java | 89 sourcefile = tree.sourcefile; 96 //System.err.println(sourcefile.getName() + ": trees compared OK"); 100 error(sourcefile.getName() + ": differences found"); 109 error(sourcefile, t, "missing"); 115 error(sourcefile, t, "unexpected"); 165 JavaFileObject sourcefile; field in class:SourceTreeScannerTest.ScanTester
|
H A D | TreePosTest.java | 323 sourcefile = tree.sourcefile; 419 viewer.addEntry(sourcefile, label, encl, self); 423 String msg = sourcefile.getName() + ": " + label + ": " + 430 JavaFileObject sourcefile; field in class:TreePosTest.PosTester
|
/openjdk7/langtools/test/tools/javac/failover/ |
H A D | CheckAttributedTree.java | 347 sourcefile = p.fst.sourcefile; 388 viewer.addEntry(sourcefile, label, encl, self); 390 error(label + self.toString() + " encl: " + encl.toString() + " in file: " + sourcefile + " " + self.tree); 421 JavaFileObject sourcefile; field in class:CheckAttributedTree.NPETester
|
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/ |
H A D | Symbol.java | 720 /** the sourcefile where the class came from 722 public JavaFileObject sourcefile; field in class:Symbol.ClassSymbol 743 this.sourcefile = null;
|
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/ |
H A D | JCTree.java | 417 * @param sourcefile The source file name. 435 public JavaFileObject sourcefile; field in class:JCTree.JCCompilationUnit 446 JavaFileObject sourcefile, 453 this.sourcefile = sourcefile; 478 return sourcefile; 443 JCCompilationUnit(List<JCAnnotation> packageAnnotations, JCExpression pid, List<JCTree> defs, JavaFileObject sourcefile, PackageSymbol packge, ImportScope namedImportScope, StarImportScope starImportScope) argument
|