Searched defs:restype (Results 1 - 5 of 5) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DInfer.java524 asMethodType().restype = new UninferredReturnType(tvars, mtype.restype);
537 void instantiateReturnType(Type restype, List<Type> inferred, Types types) throws NoInstanceException { argument
540 restype,
551 public UninferredReturnType(List<Type> tvars, Type restype) { argument
552 super(tvars, restype);
627 final Type restype;
640 restype = (TreeInfo.skipParens(castTree.expr) == env.tree) ?
647 restype = (TreeInfo.skipParens(execTree.expr) == env.tree) ?
652 restype
[all...]
H A DCheck.java2264 void validateAnnotationType(JCTree restype) { argument
2265 // restype may be null if an error occurred, so don't bother validating it
2266 if (restype != null) {
2267 validateAnnotationType(restype.pos(), restype.type);
2505 checkAnnotationResType(meth.pos(), meth.restype.type);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DType.java865 public Type restype; field in class:Type.MethodType
869 Type restype,
874 this.restype = restype;
889 return "(" + argtypes + ")" + restype;
908 return restype.equals(m.restype);
917 return (h << 5) + this.restype.hashCode();
921 public Type getReturnType() { return restype; }
927 restype !
868 MethodType(List<Type> argtypes, Type restype, List<Type> thrown, TypeSymbol methodClass) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DTreeMaker.java166 JCExpression restype,
174 restype,
164 MethodDef(JCModifiers mods, Name name, JCExpression restype, List<JCTypeParameter> typarams, List<JCVariableDecl> params, List<JCExpression> thrown, JCBlock body, JCExpression defaultValue) argument
H A DJCTree.java631 * @param restype type of method return value
641 public JCExpression restype; field in class:JCTree.JCMethodDecl
650 JCExpression restype,
660 this.restype = restype;
674 public JCTree getReturnType() { return restype; }
2112 JCExpression restype,
648 JCMethodDecl(JCModifiers mods, Name name, JCExpression restype, List<JCTypeParameter> typarams, List<JCVariableDecl> params, List<JCExpression> thrown, JCBlock body, JCExpression defaultValue, MethodSymbol sym) argument
2110 MethodDef(JCModifiers mods, Name name, JCExpression restype, List<JCTypeParameter> typarams, List<JCVariableDecl> params, List<JCExpression> thrown, JCBlock body, JCExpression defaultValue) argument

Completed in 90 milliseconds