Searched refs:onClickWithParam (Results 1 – 2 of 2) sorted by relevance
/frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/ |
D | CallbackTest.java | 83 verify(mObj, never()).onClickWithParam(any(NotBindableVo.class)); in testRegularClick() 84 verify(mObj, never()).onClickWithParam(any(View.class), any(NotBindableVo.class)); in testRegularClick() 97 verify(mObj, never()).onClickWithParam(any(NotBindableVo.class)); in testClickWithCallbackArg() 98 verify(mObj, never()).onClickWithParam(any(View.class), any(NotBindableVo.class)); in testClickWithCallbackArg() 111 verify(mObj, times(1)).onClickWithParam(eq(mOther)); in testClickWithAnotherVariableAsArg() 112 verify(mObj, never()).onClickWithParam(any(View.class), any(NotBindableVo.class)); in testClickWithAnotherVariableAsArg() 125 verify(mObj, never()).onClickWithParam(any(NotBindableVo.class)); in testClickWithViewAndAnotherVariableAsArgs() 126 verify(mObj, times(1)).onClickWithParam(mBinding.view4, mOther); in testClickWithViewAndAnotherVariableAsArgs()
|
/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/ |
D | CallbackBindingObject.java | 53 boolean onClickWithParam(NotBindableVo other); in onClickWithParam() method 54 boolean onClickWithParam(View view, NotBindableVo other); in onClickWithParam() method
|