Home
last modified time | relevance | path

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

/frameworks/data-binding/compiler/src/test/java/android/databinding/tool/expr/
DExprModelTest.java968 assertTrue("should have a", hasCallbackIdentifier(lambda.getCallbackExprModel(), 0, "a")); in testParseLambdaWithSingleArg()
969 assertFalse("should not have a", hasCallbackIdentifier(mExprModel, 0, "a")); in testParseLambdaWithSingleArg()
982 assertTrue("should have " + s, hasCallbackIdentifier(callbackModel, index, s)); in testParseLambdaWithArguments()
984 assertFalse("should not have " + s, hasCallbackIdentifier(mExprModel, index, s)); in testParseLambdaWithArguments()
997 private boolean hasCallbackIdentifier(ExprModel model, int index, String name) { in hasCallbackIdentifier() method in ExprModelTest