/libcore/ojluni/src/test/java/lang/invoke/ |
D | LoopCombinatorTest.java | 427 public static void testWhileNullArgs(MethodHandle pred, MethodHandle body) { in testWhileNullArgs() argument 428 MethodHandles.whileLoop(null, pred, body); in testWhileNullArgs() 432 public static void testDoWhileNullArgs(MethodHandle body, MethodHandle pred) { in testDoWhileNullArgs() argument 433 MethodHandles.whileLoop(null, body, pred); in testDoWhileNullArgs() 451 MethodHandle body = Counted.MH_printHello; in testCountedLoopVoidInit() local 455 if (addBodyArg) body = MethodHandles.dropArguments(body, 1, int.class); in testCountedLoopVoidInit() 456 … System.out.println("testCountedLoopVoidInit i="+i+" : "+Arrays.asList(init, zero, body)); in testCountedLoopVoidInit() 457 MethodHandle loop = MethodHandles.countedLoop(init, zero, body); in testCountedLoopVoidInit() 590 MethodHandle body = Counted.MH_addCounter; in testCountedLoopCounterInit() local 591 MethodHandle loop = MethodHandles.countedLoop(iter, init, body); in testCountedLoopCounterInit() [all …]
|
D | JavaDocExamplesTest.java | 878 MethodHandle body = MethodHandles.dropArgumentsToMatch(MH_step, 2, lo… in testCountedLoop() local 879 MethodHandle loop = MethodHandles.countedLoop(count, start, body); // (v, i, pre, _, _) -> pre + "… in testCountedLoop()
|
/libcore/dom/src/test/resources/ |
D | hc_nodtdstaff.svg | 1 … xmlns='http://www.w3.org/1999/xhtml'><title>hc_nodtdstaff</title></head><body xmlns='http://www.w… 10 </body></svg>
|
/libcore/ojluni/src/main/java/java/lang/invoke/ |
D | MethodHandles.java | 4772 public static MethodHandle whileLoop(MethodHandle init, MethodHandle pred, MethodHandle body) { in whileLoop() argument 4773 whileLoopChecks(init, pred, body); in whileLoop() 4774 MethodHandle fini = identityOrVoid(body.type().returnType()); in whileLoop() 4776 MethodHandle[] varBody = { init, body }; in whileLoop() 4876 … public static MethodHandle doWhileLoop(MethodHandle init, MethodHandle body, MethodHandle pred) { in doWhileLoop() argument 4877 whileLoopChecks(init, pred, body); in doWhileLoop() 4878 MethodHandle fini = identityOrVoid(body.type().returnType()); in doWhileLoop() 4879 MethodHandle[] clause = {init, body, pred, fini }; in doWhileLoop() 4883 private static void whileLoopChecks(MethodHandle init, MethodHandle pred, MethodHandle body) { in whileLoopChecks() argument 4885 Objects.requireNonNull(body); in whileLoopChecks() [all …]
|
/libcore/ojluni/src/test/java/util/Base64/ |
D | plain.txt | 39 (2) In a MIME body part header within a multipart 150 quoted-printable encoded body inside one or more multipart entities, 152 encoded body. (A good strategy is to choose a boundary that includes 154 quoted-printable body. See the definition of multipart messages in
|
/libcore/luni/src/test/java/libcore/java/net/ |
D | URLConnectionTest.java | 997 final String body = "Response with etag"; in etagHeaders_cachedWithServerHit() local 1001 .setBody(body) in etagHeaders_cachedWithServerHit() 1016 assertContent(body, connection); in etagHeaders_cachedWithServerHit() 1025 assertContent(body, cachedConnection); in etagHeaders_cachedWithServerHit() 3054 String body = "ABCDEFGH"; 3056 transferKind.setBody(response, body, 4); 3061 for (int i = 0; i < body.length(); i++) { 3063 assertEquals(body.charAt(i), in.read());
|
/libcore/ojluni/src/test/java/util/Scanner/ |
D | input.txt | 39 <body bgcolor="#EEEEEE">
|
/libcore/ojluni/src/test/ |
D | LICENSE | 235 the limitation as if written in the body of this License.
|
/libcore/ojluni/src/tools/ |
D | LICENSE | 235 the limitation as if written in the body of this License.
|
/libcore/ |
D | LICENSE | 219 such case, this License incorporates the limitation as if written in the body
|
/libcore/expectations/ |
D | knownfailures.txt | 1285 …"libcore.xml.JaxenXPathTestSuite$4#xml/message.xml / document('xml/message.xml')/message/body/data…
|
/libcore/ojluni/src/main/ |
D | LICENSE | 227 such case, this License incorporates the limitation as if written in the body
|