Searched refs:ErrorType (Results 1 - 16 of 16) sorted by relevance

/openjdk7/langtools/src/share/classes/javax/lang/model/type/
H A DErrorType.java41 public interface ErrorType extends DeclaredType { interface in inherits:DeclaredType
H A DTypeVisitor.java120 R visitError(ErrorType t, P p);
/openjdk7/langtools/test/tools/javac/api/6557752/
H A DT6557752.java28 * @summary Test for wrapping the original type in ErrorType.
45 import javax.lang.model.type.ErrorType;
99 String str1 = trees.getOriginalType((ErrorType)typeMirror).toString();
106 str1 = types.asElement(trees.getOriginalType((ErrorType)typeMirror)).toString();
114 String str1 = trees.getOriginalType((ErrorType)typeMirror).toString();
121 str1 = types.asElement(trees.getOriginalType((ErrorType)typeMirror)).toString();
/openjdk7/hotspot/src/share/vm/utilities/
H A DvmError.hpp37 enum ErrorType { enum in class:VMError
/openjdk7/langtools/src/share/classes/javax/lang/model/util/
H A DSimpleTypeVisitor6.java167 public R visitError(ErrorType t, P p){
/openjdk7/langtools/src/share/classes/com/sun/source/util/
H A DTrees.java36 import javax.lang.model.type.ErrorType;
193 * Gets the original type from the ErrorType object.
195 * @return javax.lang.model.type.TypeMirror corresponding to the original type, replaced by the ErrorType.
197 public abstract TypeMirror getOriginalType(ErrorType errorType);
/openjdk7/langtools/test/tools/javac/processing/model/element/TestMissingElement2/
H A DGenerator.java53 Element e = ((ErrorType) t).asElement();
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/api/
H A DJavacTrees.java373 * Gets the original type from the ErrorType object.
375 * @returns TypeMirror corresponding to the original type, replaced by the ErrorType.
378 public TypeMirror getOriginalType(javax.lang.model.type.ErrorType errorType) {
379 if (errorType instanceof com.sun.tools.javac.code.Type.ErrorType) {
380 return ((com.sun.tools.javac.code.Type.ErrorType)errorType).getOriginalType();
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DRichDiagnosticFormatter.java469 public Void visitErrorType(ErrorType t, Void ignored) {
529 while ((bound instanceof ErrorType))
530 bound = ((ErrorType)bound).getOriginalType();
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DType.java58 * the error type (tag: ERROR, class: ErrorType).
100 * By default, this is itself. For ErrorType, a different value
1294 public static class ErrorType extends ClassType class in class:Type
1295 implements javax.lang.model.type.ErrorType {
1299 public ErrorType(Type originalType, TypeSymbol tsym) { method in class:Type.ErrorType
1306 public ErrorType(ClassSymbol c, Type originalType) { method in class:Type.ErrorType
1313 public ErrorType(Name name, TypeSymbol container, Type originalType) { method in class:Type.ErrorType
1373 R visitErrorType(ErrorType t, S s);
H A DTypes.java264 public Type visitErrorType(ErrorType t, Symbol sym) {
521 public Boolean visitErrorType(ErrorType t, Type s) {
747 public Boolean visitErrorType(ErrorType t, Type s) {
914 public Boolean visitErrorType(ErrorType t, Type s) {
1157 public Boolean visitErrorType(ErrorType t, Type s) {
1443 public Type visitErrorType(ErrorType t, Symbol sym) {
1562 public Type visitErrorType(ErrorType t, Symbol sym) {
1662 public Type visitErrorType(ErrorType t, Boolean recurse) {
1810 public Type visitErrorType(ErrorType t, Void ignored) {
1989 public Type visitErrorType(ErrorType
[all...]
H A DPrinter.java221 public String visitErrorType(ErrorType t, Locale locale) {
H A DSymtab.java373 errType = new ErrorType(errSymbol, Type.noType);
H A DSymbol.java825 this.type = new ErrorType(this, Type.noType);
/openjdk7/langtools/test/tools/javac/processing/model/element/TestMissingElement/
H A DTestMissingElement.java129 public String visitError(ErrorType t, Void ignore) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DMemberEnter.java1087 return new ErrorType(((ErrorType) t).getOriginalType(), t.tsym) {
1163 result = new ErrorType(tree.type, clazzType.tsym) {
1176 c.type = new ErrorType(originalType, c) {

Completed in 79 milliseconds