Searched refs:visitType (Results 1 - 25 of 52) sorted by relevance

123

/openjdk10/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/processor/util/
H A DClassNameCollector.java76 visitType((AbstractType)iter.next());
175 visitType(block.getType());
179 visitType(parameter.getType());
182 private void visitType(AbstractType type) throws Exception { method in class:ClassNameCollector
185 visitType((JAXBType)type);
187 visitType((RpcLitStructure)type);
192 private void visitType(JAXBType type) throws Exception { method in class:ClassNameCollector
196 private void visitType(RpcLitStructure type) throws Exception { method in class:ClassNameCollector
/openjdk10/langtools/src/java.compiler/share/classes/javax/lang/model/element/
H A DElementVisitor.java113 R visitType(TypeElement e, P p); method in interface:ElementVisitor
H A DAnnotationValueVisitor.java182 R visitType(TypeMirror t, P p); method in interface:AnnotationValueVisitor
/openjdk10/langtools/test/tools/javac/processing/model/element/
H A DTestTypeParameter.java67 public Integer visitType(TypeElement e, Void p) { method in class:TestTypeParameter.Scanner
68 super.visitType(e, p);
H A DTestTypeParameterAnnotations.java73 public Integer visitType(TypeElement e, Void p) { method in class:TestTypeParameterAnnotations.Scanner
74 super.visitType(e, p);
/openjdk10/langtools/src/java.compiler/share/classes/javax/lang/model/util/
H A DSimpleElementVisitor6.java145 public R visitType(TypeElement e, P p) { method in class:SimpleElementVisitor6
H A DSimpleAnnotationValueVisitor6.java234 public R visitType(TypeMirror t, P p) { method in class:SimpleAnnotationValueVisitor6
H A DElementScanner6.java184 public R visitType(TypeElement e, P p) { method in class:ElementScanner6
H A DElementKindVisitor6.java138 public R visitType(TypeElement e, P p) { method in class:ElementKindVisitor6
/openjdk10/langtools/test/tools/javac/processing/model/
H A DTestVisitorDefaults.java98 public String visitType(TypeElement e, Object o) { return throwUOE(); } method in class:TestVisitorDefaults.DirectElementVisitorChild
128 public String visitType(TypeElement e, Object o) { return throwUOE(); } method in class:TestVisitorDefaults.IndirectElementVisitorChild
218 public String visitType(TypeMirror t, Object o) { return throwUOE(); } method in class:TestVisitorDefaults.DirectAnnotationVisitorChild
H A DTestSymtabItems.java145 public Void visitType(TypeElement e, Void p) { method in class:TestSymtabItems.ElemPrinter
148 super.visitType(e, p);
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/code/
H A DPrinter.java269 return visitType(t, locale);
274 return visitType(t, locale);
279 return visitType(t, locale);
282 public String visitType(Type t, Locale locale) { method in class:Printer
H A DTypes.java208 public Boolean visitType(Type t, Void ignored) {
249 public Type visitType(Type t, Symbol sym) {
794 public Boolean visitType(Type t, Type s) {
1041 public Boolean visitType(Type t, Type s) { method in class:Types.SameTypeVisitor
1317 public Boolean visitType(Type t, Type s) {
1424 public Boolean visitType(Type t, Type s) {
1636 public Boolean visitType(Type t, Type s) {
1747 public Boolean visitType(Type t, Void ignored) {
1882 public Type visitType(Type t, Symbol sym) {
2001 public Type visitType(Typ
2759 public CompoundScope visitType(Type t, Void _unused) { method in class:Types.MembersClosureCache
2987 public Boolean visitType(Type t, Type s) { method in class:Types.HasSameArgs
3910 public Integer visitType(Type t, Void ignored) { method in class:Types.HashCodeVisitor
4384 public Void visitType(Type source, Type target) { method in class:Types.Adapter
4479 public Type visitType(Type t, Void s) { method in class:Types.Rewriter
4721 public Type visitType(Type t, S s) { return t; } method in class:Types.MapVisitor
[all...]
/openjdk10/langtools/test/tools/javac/6402516/
H A DCheckLocalElements.java127 public String visitType(TypeElement e, Void ignore) {
/openjdk10/langtools/src/sample/share/javac/processing/src/
H A DCheckNamesProcessor.java215 public Void visitType(TypeElement e, Void p) { method in class:CheckNamesProcessor.NameChecker.NameCheckScanner
218 super.visitType(e, p); // Check the names of any enclosed elements
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/processing/
H A DJavacRoundEnvironment.java206 public R visitType(TypeElement e, P p) { method in class:JavacRoundEnvironment.ElementScanningIncludingTypeParameters
209 return super.visitType(e, p);
H A DPrintingProcessor.java128 public NestingKind visitType(TypeElement e, Void p) {
165 public PrintingElementVisitor visitType(TypeElement e, Boolean p) { method in class:PrintingProcessor.PrintingElementVisitor
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/sjavac/comp/
H A DPubapiVisitor.java68 public Void visitType(TypeElement e, Void p) { method in class:PubapiVisitor
72 super.visitType(e, p);
/openjdk10/langtools/src/jdk.jshell/share/classes/jdk/jshell/
H A DTypePrinter.java74 public String visitType(Type t, Locale locale) { method in class:TypePrinter
/openjdk10/langtools/test/tools/javac/processing/model/util/elements/doccomments/
H A DTestDocComments.java274 public Void visitType(TypeElement e, Void p) { method in class:TestDocComments.TestElementScanner
276 return super.visitType(e, p);
/openjdk10/langtools/test/tools/javac/tree/
H A DNoPrivateTypesExported.java135 @Override public Void visitType(TypeElement e, Void p) {
193 @Override public Void visitType(TypeMirror t, Void p) {
/openjdk10/langtools/test/tools/javac/lib/
H A DDPrinter.java1284 return visitType(type, null);
1299 return visitType(type, null);
1317 return visitType(type, null);
1321 return visitType(type, null);
1325 return visitType(type, null);
1337 return visitType(type, null);
1352 return visitType(type, null);
1357 return visitType(type, null);
1360 public Void visitType(Type type, Void ignore) { method in class:DPrinter.TypeVisitor
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/util/
H A DRichDiagnosticFormatter.java354 public String visitType(Type t, Locale locale) { method in class:RichDiagnosticFormatter.RichPrinter
355 String s = super.visitType(t, locale);
501 public Void visitType(Type t, Void ignored) {
/openjdk10/langtools/test/tools/javac/processing/model/element/TestMissingElement/
H A DTestMissingElement.java161 public String visitType(TypeElement e, Void ignore) {
/openjdk10/langtools/test/jdk/javadoc/tool/modules/
H A DModuleTestBase.java334 public Void visitType(TypeElement e, Void p) {
357 public CharSequence visitType(TypeElement e, Void p) {

Completed in 263 milliseconds

123