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

/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DDirectMethodHandle.java491 private static int afIndex(byte formOp, boolean isVolatile, int ftypeKind) { argument
494 + ftypeKind);
498 private static int ftypeKind(Class<?> ftype) { method in class:DirectMethodHandle
538 int afIndex = afIndex(formOp, isVolatile, ftypeKind(ftype));
541 lform = makePreparedFieldLambdaForm(formOp, isVolatile, ftypeKind(ftype));
546 private static LambdaForm makePreparedFieldLambdaForm(byte formOp, boolean isVolatile, int ftypeKind) { argument
550 boolean needsCast = (ftypeKind == FT_CHECKED_REF);
551 Wrapper fw = (needsCast ? Wrapper.OBJECT : Wrapper.values()[ftypeKind]);
553 assert(ftypeKind(needsCast ? String.class : ft) == ftypeKind);
[all...]

Completed in 31 milliseconds