Home
last modified time | relevance | path

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

/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
DSyncEngineTests.java32 import static org.mockito.ArgumentMatchers.notNull;
82 verify(listener, times(1)).onTransactionReady(eq(id), notNull()); in testTrivialSyncCallback()
110 verify(listener, times(1)).onTransactionReady(eq(id), notNull()); in testWaitingSyncCallback()
133 verify(listener, times(1)).onTransactionReady(eq(id), notNull()); in testInvisibleSyncCallback()
166 verify(listener, times(1)).onTransactionReady(eq(id), notNull()); in testWaitForChildrenCallback()
195 verify(listener, times(1)).onTransactionReady(eq(id), notNull()); in testWaitForParentCallback()
225 verify(listener, times(1)).onTransactionReady(eq(id), notNull()); in testFillsParent()
262 verify(listener, times(1)).onTransactionReady(eq(id), notNull()); in testReparentOut()
297 verify(listener, times(1)).onTransactionReady(eq(id), notNull()); in testReparentIn()
DActivityStarterTests.java67 import static org.mockito.ArgumentMatchers.notNull;
875 notNull() /* options */); in testBringTaskToFrontOnSecondaryDisplay()
/frameworks/av/media/libmedia/
DOMXBuffer.cpp140 bool notNull; in readFromParcel() local
141 status_t err = parcel->readBool(&notNull); in readFromParcel()
145 if (notNull) { in readFromParcel()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/settings/brightness/
DBrightnessSliderTest.kt41 import org.mockito.Mockito.notNull
92 verify(brightnessSliderView).setOnSeekBarChangeListener(notNull()) in testListenersAddedOnAttach()
142 verify(brightnessSliderView).setOnDispatchTouchEventListener(notNull()) in testSettingMirrorControllerReliesValuesAndSetsTouchTracking()
/frameworks/base/tests/SurfaceViewBufferTests/src/com/android/test/
DSurfaceViewBufferTestBase.kt30 private var mInitialBlastConfig by Delegates.notNull<Boolean>()
/frameworks/base/tests/vcn/java/android/net/vcn/
DVcnManagerTest.java27 import static org.mockito.ArgumentMatchers.notNull;
154 .registerVcnStatusCallback(eq(SUB_GROUP), notNull(), any()); in testRegisterVcnStatusCallback()
/frameworks/opt/car/services/tests/src/com/android/internal/car/
DCarServiceHelperServiceTest.java35 import static org.mockito.ArgumentMatchers.notNull;
253 when(mICarBinder.transact(anyInt(), notNull(), isNull(), eq(Binder.FLAG_ONEWAY))) in mockCarServiceException()
/frameworks/base/services/tests/servicestests/src/com/android/server/vibrator/
DVibratorControllerTest.java28 import static org.mockito.ArgumentMatchers.notNull;
105 verify(mNativeWrapperMock).init(eq(VIBRATOR_ID), notNull()); in createController_initializesNativeWrapper()
/frameworks/base/core/tests/coretests/src/android/view/
DInsetsControllerTest.java44 import static org.mockito.ArgumentMatchers.notNull;
206 verify(mockListener).onCancelled(notNull()); in testControlsRevoked_duringAnim()
537 verify(mockListener).onCancelled(notNull()); in testCancellation_afterGainingControl()
566 verify(listener).onReady(notNull(), eq(ime())); in testControlImeNotReady()
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
DShortcutManagerTest8.java27 import static org.mockito.Matchers.notNull;
308 verify(mServiceContext, times(1)).sendIntentSender(notNull(IntentSender.class)); in checkRequestPinShortcut()
617 verify(mServiceContext, times(1)).sendIntentSender(notNull(IntentSender.class)); in testRequestPinShortcut_dynamicExists_alreadyPinned()
696 verify(mServiceContext, times(1)).sendIntentSender(notNull(IntentSender.class)); in testRequestPinShortcut_manifestExists_alreadyPinned()
/frameworks/base/services/tests/uiservicestests/src/com/android/server/
DUiModeManagerServiceTest.java39 import static org.mockito.ArgumentMatchers.notNull;
154 when(mContext.registerReceiver(notNull(), notNull())).then(inv -> { in setUp()