Searched defs:narg (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DBoundMethodHandle.java184 public abstract BoundMethodHandle cloneExtendL(MethodType mt, LambdaForm lf, Object narg) throws Throwable; argument
185 public abstract BoundMethodHandle cloneExtendI(MethodType mt, LambdaForm lf, int narg) throws Throwable; argument
186 public abstract BoundMethodHandle cloneExtendJ(MethodType mt, LambdaForm lf, long narg) throws Throwable; argument
187 public abstract BoundMethodHandle cloneExtendF(MethodType mt, LambdaForm lf, float narg) throws Throwable; argument
188 public abstract BoundMethodHandle cloneExtendD(MethodType mt, LambdaForm lf, double narg) throws Throwable; argument
222 public final BoundMethodHandle cloneExtendL(MethodType mt, LambdaForm lf, Object narg) throws Throwable { argument
223 return (BoundMethodHandle) SPECIES_DATA.extendWithIndex(INDEX_L).constructor[0].invokeBasic(mt, lf, argL0, narg);
226 public final BoundMethodHandle cloneExtendI(MethodType mt, LambdaForm lf, int narg) throws Throwable { argument
227 return (BoundMethodHandle) SPECIES_DATA.extendWithIndex(INDEX_I).constructor[0].invokeBasic(mt, lf, argL0, narg);
230 public final BoundMethodHandle cloneExtendJ(MethodType mt, LambdaForm lf, long narg) throw argument
234 cloneExtendF(MethodType mt, LambdaForm lf, float narg) argument
238 cloneExtendD(MethodType mt, LambdaForm lf, double narg) argument
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A Ddependencies.cpp244 static int sort_dep(ciObject** p1, ciObject** p2, int narg) { argument
245 for (int i = 0; i < narg; i++) {

Completed in 50 milliseconds