Searched defs:sourcefile (Results 1 - 8 of 8) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/util/
H A DSourcePositionImpl.java42 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 DJavacSourcePosition.java41 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 DJavacTreeScannerTest.java87 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 DSourceTreeScannerTest.java89 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 DTreePosTest.java323 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 DCheckAttributedTree.java347 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 DSymbol.java720 /** 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 DJCTree.java417 * @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

Completed in 74 milliseconds