Home
last modified time | relevance | path

Searched defs:body (Results 1 – 4 of 4) sorted by relevance

/libcore/ojluni/src/test/java/lang/invoke/
DLoopCombinatorTest.java427 public static void testWhileNullArgs(MethodHandle pred, MethodHandle body) { in testWhileNullArgs()
432 public static void testDoWhileNullArgs(MethodHandle body, MethodHandle pred) { in testDoWhileNullArgs()
451 MethodHandle body = Counted.MH_printHello; in testCountedLoopVoidInit() local
590 MethodHandle body = Counted.MH_addCounter; in testCountedLoopCounterInit() local
637 MethodHandle body, String msg) { in testCountedLoopNegative()
668 MethodHandle init = Iterate.MH_reverseInit, body = Iterate.MH_reverseStep; in testIterateReverse() local
693 MethodHandle body = Iterate.MH_lengthStep; in testIterateLength() local
716 MethodHandle body = Iterate.MH_mapStep; in testIterateMap() local
739 MethodHandle body = Iterate.MH_printStep; in testIteratePrint() local
DJavaDocExamplesTest.java878 MethodHandle body = MethodHandles.dropArgumentsToMatch(MH_step, 2, lo… in testCountedLoop() local
/libcore/ojluni/src/main/java/java/lang/invoke/
DMethodHandles.java4772 public static MethodHandle whileLoop(MethodHandle init, MethodHandle pred, MethodHandle body) { in whileLoop()
4876 … public static MethodHandle doWhileLoop(MethodHandle init, MethodHandle body, MethodHandle pred) { in doWhileLoop()
4883 private static void whileLoopChecks(MethodHandle init, MethodHandle pred, MethodHandle body) { in whileLoopChecks()
5060 …ic static MethodHandle countedLoop(MethodHandle iterations, MethodHandle init, MethodHandle body) { in countedLoop()
5184 …hodHandle countedLoop(MethodHandle start, MethodHandle end, MethodHandle init, MethodHandle body) { in countedLoop()
5208 …oid countedLoopChecks(MethodHandle start, MethodHandle end, MethodHandle init, MethodHandle body) { in countedLoopChecks()
5398 …lic static MethodHandle iteratedLoop(MethodHandle iterator, MethodHandle init, MethodHandle body) { in iteratedLoop()
5447 …e static Class<?> iteratedLoopChecks(MethodHandle iterator, MethodHandle init, MethodHandle body) { in iteratedLoopChecks()
/libcore/luni/src/test/java/libcore/java/net/
DURLConnectionTest.java997 final String body = "Response with etag"; in etagHeaders_cachedWithServerHit() local