Searched defs:restype (Results 1 - 5 of 5) sorted by relevance
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/ |
H A D | Infer.java | 524 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 D | Check.java | 2264 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 D | Type.java | 865 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 D | TreeMaker.java | 166 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 D | JCTree.java | 631 * @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 46 milliseconds