Home
last modified time | relevance | path

Searched refs:countApply (Results 1 – 2 of 2) sorted by relevance

/dports/math/py-or-tools/or-tools-9.2/examples/tests/
H A DConstraintSolverTest.java209 final AtomicInteger countApply = new AtomicInteger(0);
211 assertEquals(0, countApply.intValue());
216 countApply.addAndGet(1);
225 assertEquals(1, countApply.intValue());
229 assertEquals(1, countApply.intValue());
265 final AtomicInteger countApply = new AtomicInteger(0);
267 assertEquals(0, countApply.intValue());
270 (Solver s) -> countApply.addAndGet(1),
274 assertEquals(1, countApply.intValue());
277 assertEquals(1, countApply.intValue());
/dports/lang/kawa/kawa-3.1.1/gnu/expr/
H A DInlineCalls.java706 int countApply = 0; in visitLambdaExp() local
709 countApply++; in visitLambdaExp()
710 if (countApply == ldecl.numReferences in visitLambdaExp()