Home
last modified time | relevance | path

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

/frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
DCallbackTest.java163 verify(mObj, never()).onLongClickWithParam(any(NotBindableVo.class)); in testRegularLongClick()
164 verify(mObj, never()).onLongClickWithParam(any(View.class), any(NotBindableVo in testRegularLongClick()
179 verify(mObj, never()).onLongClickWithParam(any(NotBindableVo.class)); in testLongClickWithCallbackArg()
180 verify(mObj, never()).onLongClickWithParam(any(View.class), any(NotBindableVo in testLongClickWithCallbackArg()
191 when(mObj.onLongClickWithParam(mOther)).thenReturn(true); in testLongClickWithAnotherVariableAsArg()
195 verify(mObj, times(1)).onLongClickWithParam(mOther); in testLongClickWithAnotherVariableAsArg()
196 verify(mObj, never()).onLongClickWithParam(any(View.class), any(NotBindableVo in testLongClickWithAnotherVariableAsArg()
207 when(mObj.onLongClickWithParam(mBinding.view4, mOther)).thenReturn(true); in testLongClickWithViewAndAnotherVariableAsArgs()
211 verify(mObj, never()).onLongClickWithParam(any(NotBindableVo.class)); in testLongClickWithViewAndAnotherVariableAsArgs()
212 verify(mObj, times(1)).onLongClickWithParam(mBinding.view4, mOther); in testLongClickWithViewAndAnotherVariableAsArgs()
/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
DCallbackBindingObject.java55 boolean onLongClickWithParam(NotBindableVo other); in onLongClickWithParam() method
56 boolean onLongClickWithParam(View view, NotBindableVo other); in onLongClickWithParam() method