Searched refs:clause (Results 1 – 1 of 1) sorted by relevance
4498 Stream.of(clauses).filter(c -> Stream.of(c).anyMatch(Objects::nonNull)).forEach(clause -> { in loop()4499 init.add(clause[0]); // all clauses have at least length 1 in loop()4500 step.add(clause.length <= 1 ? null : clause[1]); in loop()4501 pred.add(clause.length <= 2 ? null : clause[2]); in loop()4502 fini.add(clause.length <= 3 ? null : clause[3]); in loop()4879 MethodHandle[] clause = {init, body, pred, fini }; in doWhileLoop() local4880 return loop(clause); in doWhileLoop()