Searched refs:handleTask (Results 1 – 1 of 1) sorted by relevance
96 evaluate(LAMBDA_FORM_REGULAR, () -> handleTask(t -> t.doSomething(mTaskId, mTime))); in test1ParamPredicate()100 handleTask(c); in test1ParamPredicate()111 evaluate(LAMBDA_FORM_REGULAR, () -> handleTask(t -> t.doSomething(mTaskId, mTime))); in test2PrimitiveParamsPredicate()115 handleTask(c); in test2PrimitiveParamsPredicate()126 evaluate(LAMBDA_FORM_REGULAR, () -> handleTask(t -> t.doSomething(mBounds, mTop, mTaskId))); in test3ParamsPredicate()130 handleTask(c); in test3ParamsPredicate()165 final Runnable regularAction = () -> handleTask(t -> t.doSomething(mTaskId, mTime)); in testMultiThread()173 handleTask(c); in testMultiThread()181 private void handleTask(Predicate<Task> callback) { in handleTask() method in LambdaPerfTest