Searched defs:formals (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/beans/
H A DTypeResolver.java211 * @param formals the array of types to resolve
214 public static Type[] resolve(Type actual, Type[] formals) { argument
215 int length = formals.length;
218 actuals[i] = resolve(actual, formals[i]);
298 TypeVariable<?>[] formals = raw.getTypeParameters();
301 ? formals
304 assert formals.length == actuals.length;
305 for (int i = 0; i < formals.length; i++) {
306 map.put(formals[i], actuals[i]);
317 if (type instanceof Class<?> && formals
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DInfer.java354 List<Type> formals = tvars;
359 wt.bound = (TypeVar)formals.head;
361 formals = formals.tail;
379 List<Type> formals = mt.argtypes;
387 Type varargsFormal = useVarargs ? formals.last() : null;
389 actuals.size() != formals.size()) {
393 while (actuals.nonEmpty() && formals.head != varargsFormal) {
394 Type formal = formals.head;
408 formals
567 checkArgumentsAcceptable(Env<AttrContext> env, List<Type> actuals, List<Type> formals, boolean allowBoxing, boolean useVarargs, Warner warn) argument
[all...]
H A DResolve.java356 List<Type> formals = pmt.tvars;
358 while (formals.nonEmpty() && actuals.nonEmpty()) {
359 List<Type> bounds = types.subst(types.getBounds((TypeVar)formals.head),
364 formals = formals.tail;
423 List<Type> formals,
428 checkRawArgumentsAcceptable(env, argtypes, formals, allowBoxing, useVarargs, warn);
436 List<Type> formals,
440 Type varargsFormal = useVarargs ? formals.last() : null;
442 argtypes.size() != formals
421 argumentsAcceptable(Env<AttrContext> env, List<Type> argtypes, List<Type> formals, boolean allowBoxing, boolean useVarargs, Warner warn) argument
434 checkRawArgumentsAcceptable(Env<AttrContext> env, List<Type> argtypes, List<Type> formals, boolean allowBoxing, boolean useVarargs, Warner warn) argument
[all...]
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DLambdaForm.java150 Name[] formals, Name[] temps, Name result) {
152 formals.length, buildNames(formals, temps, result), LAST_RESULT);
155 private static Name[] buildNames(Name[] formals, Name[] temps, Name result) { argument
156 int arity = formals.length;
158 Name[] names = Arrays.copyOf(formals, length);
149 LambdaForm(String debugName, Name[] formals, Name[] temps, Name result) argument

Completed in 66 milliseconds