Searched refs:throwsTypes (Results 1 - 6 of 6) sorted by relevance

/openjdk7/langtools/test/tools/javac/processing/model/type/
H A DTestUnionType.java78 TestKind(String throwsTypes, String catchTypes, String... gold) { argument
79 this.throwsTypes = throwsTypes;
84 final String throwsTypes; field in class:TestUnionType.TestKind
111 .replace("#T", tk.throwsTypes)
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DSignature.java95 List<Type> throwsTypes = null;
98 if (throwsTypes == null)
99 throwsTypes = new ArrayList<Type>();
100 throwsTypes.add(parseTypeSignature());
102 return new MethodType(typeParamTypes, paramTypes, returnType, throwsTypes);
H A DType.java159 List<? extends Type> throwsTypes) {
163 this.throwsTypes = throwsTypes;
176 appendIfNotEmpty(sb, " throws ", throwsTypes, "");
183 public final List<? extends Type> throwsTypes; field in class:Type.MethodType
156 MethodType(List<? extends TypeParamType> typeParamTypes, List<? extends Type> paramTypes, Type returnType, List<? extends Type> throwsTypes) argument
H A DDependencies.java701 findDependencies(type.throwsTypes);
/openjdk7/langtools/test/tools/javap/classfile/6888367/
H A DT6888367.java238 if (type.throwsTypes != null)
239 sb.append(print("", type.throwsTypes, ""));
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DClassWriter.java250 appendIfNotEmpty(sb, " throws ", type.throwsTypes, "");
428 methodExceptions = methodType.throwsTypes;

Completed in 40 milliseconds