Lines Matching refs:cls
47 Class<?> cls = UnsupportedAccessModeTest.class;
48 vh = MethodHandles.lookup().findStaticVarHandle(cls, "b", boolean.class);
78 Class<?> cls = WrongArgumentTypeCausingWrongMethodTypeTest.class;
79 vh = MethodHandles.lookup().findVarHandle(cls, "s", short.class);
107 Class<?> cls = TooManyArgumentsCausingWrongMethodTypeTest.class;
108 vh = MethodHandles.lookup().findVarHandle(cls, "i", int.class);
135 Class<?> cls = TooFewArgumentsCausingWrongMethodTypeTest.class;
136 vh = MethodHandles.lookup().findVarHandle(cls, "i", int.class);
166 Class<?> cls = ReturnTypeCausingWrongMethodTypeTest.class;
167 vh = MethodHandles.lookup().findVarHandle(cls, "i", int.class);
198 Class<?> cls = UnsupportedAccessModePreemptsWrongMethodTypeExceptionTest.class;
199 vh = MethodHandles.lookup().findStaticVarHandle(cls, "b", boolean.class);