Home
last modified time | relevance | path

Searched defs:mt (Results 1 – 18 of 18) sorted by relevance

/libcore/luni/src/test/java/libcore/java/lang/invoke/
DMethodTypeTest.java36 MethodType mt = MethodType.methodType(int.class, in test_methodType_basicTestsReturnTypeAndParameterClassArray() local
62 MethodType mt = MethodType.methodType(int.class, Arrays.asList(String.class, long.class)); in test_methodType_basicTestsReturnTypeAndParameterClassList() local
87 MethodType mt = MethodType.methodType(int.class, String.class, long.class); in test_methodType_basicTestsReturnTypeAndVarargsParameters() local
112 MethodType mt = MethodType.methodType(int.class); in test_methodType_basicTestsReturnTypeOnly() local
125 MethodType mt = MethodType.methodType(int.class, long.class); in test_methodType_basicTestsReturnTypeAndSingleParameter() local
156 MethodType mt = MethodType.methodType(int.class, long.class, String.class); in test_methodType_basicTestsReturnTypeAndMethodTypeParameters() local
173 MethodType mt = MethodType.genericMethodType(0); in testGenericMethodType() local
197 MethodType mt = MethodType.genericMethodType(3, false /* finalArray */); in testGenericMethodTypeWithTrailingArray() local
224 MethodType mt = MethodType.methodType(int.class, String.class, Object.class, List.class); in testChangeParameterType() local
262 MethodType mt = MethodType.methodType(int.class, String.class, Object.class); in testInsertParameterTypes_varargs() local
[all …]
DCallSitesTest.java43 final MethodType mt = MethodType.methodType(int.class, int.class, int.class); in methodHandleForAdd2() local
DExplicitCastArgumentsTest.java101 MethodType mt = MethodType.methodType(identityClass, argClass); in explicitCastArgumentToIdentity() local
110 MethodType mt = MethodType.methodType(retClass, identityClass); in explicitCastReturnValueFromIdentity() local
/libcore/ojluni/src/test/java/lang/constant/access_test/pkg1/
DMethodTypeDescriptorAccessTest.java65 …MethodType mt = MethodType.fromMethodDescriptorString("(Ltest/java/lang/constant/access_test/pkg2/… in test() local
70 MethodType mt = (MethodType)mtd.resolveConstantDesc(lookup); in checkValidAccess() local
79 MethodType mt = (MethodType)mtd.resolveConstantDesc(lookup); in checkInvalidAccess() local
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
DMacFunctionalTest.java25 MacThread mt = new MacThread(algArray); in test_Mac() local
/libcore/ojluni/src/test/java/lang/invoke/VarHandles/
DVarHandleBaseTest.java234 static MethodHandle toMethodHandle(VarHandle vh, TestAccessMode tam, MethodType mt) { in toMethodHandle()
238 static MethodHandle findVirtual(VarHandle vh, TestAccessMode tam, MethodType mt) { in findVirtual()
251 static MethodHandle varHandleInvoker(VarHandle vh, TestAccessMode tam, MethodType mt) { in varHandleInvoker()
259 static MethodHandle varHandleExactInvoker(VarHandle vh, TestAccessMode tam, MethodType mt) { in varHandleExactInvoker()
311 MethodHandle apply(VarHandle vh, TestAccessMode am, MethodType mt) { in apply()
372 MethodHandle get(TestAccessMode am, MethodType mt) { in get()
467 MethodType mt = vh.accessModeType(testAccessMode.toAccessMode()); in testTypes() local
473 MethodType mt = vh.accessModeType(testAccessMode.toAccessMode()); in testTypes() local
479 MethodType mt = vh.accessModeType(testAccessMode.toAccessMode()); in testTypes() local
486 MethodType mt = vh.accessModeType(testAccessMode.toAccessMode()); in testTypes() local
[all …]
/libcore/ojluni/src/test/java/lang/invoke/
DExplicitCastArgumentsTest.java112 MethodType mt = MethodType.methodType(String[].class, String[].class); in testVarargsCollector() local
492 private static void checkForWrongMethodTypeException(MethodHandle mh, MethodType mt) { in checkForWrongMethodTypeException()
521 MethodType mt = MethodType.methodType(void.class); in testMultipleArgs() local
578 MethodType mt = MethodType.methodType(void.class); in testConversion() local
DPermuteArgsTest.java177 MethodType mt = mh.type(); in test() local
198 MethodType mt = mh.type(); in adjustArity() local
237 MethodType mt = mh.type(); in testPermutations() local
307 MethodType mt = mh.type(); in testOnePermutation() local
DMethodTypeTest.java552 MethodType mt = (MethodType) c[0]; in testPortableSerialFormat() local
DMethodHandlesGeneralTest.java1907 MethodType mt = mh.type(); in testInterfaceCast() local
1981 String name; MethodType mt; MethodHandle mh; in testUserClassInSignature() local
DRicochetTest.java623 private static MethodType subst(MethodType mt, Class<?> from, Class<?> to) { in subst()
DJavaDocExamplesTest.java373 MethodType mt; MethodHandle mh; in testMethodHandlesSummary() local
DLoopCombinatorTest.java300 MethodType mt = mh.type(); in tweak() local
/libcore/ojluni/src/main/java/java/lang/invoke/
DMethodTypeForm.java323 static MethodTypeForm findForm(MethodType mt) { in findForm()
350 public static MethodType canonicalize(MethodType mt, int howRet, int howArgs) { in canonicalize()
DMethodType.java309 MethodType mt = internTable.get(new MethodType(ptypes, rtype)); in makeImpl() local
335 MethodType mt; in genericMethodType() local
DConstantBootstraps.java421 MethodType mt = MethodType.methodType(dstType, Object.class); in explicitCast() local
DMethodHandles.java3091 final MethodType mt = methodType(ptype, ptype); in makeIdentity() local
DTransformers.java3068 private EmulatedStackFrame prepareFrame(final MethodType mt, in prepareFrame()