HomeSort by relevance Sort by last modified time
    Searched refs:doNothing (Results 1 - 25 of 106) sorted by null

1 2 3 4 5

  /art/test/960-default-smali/src/
Foo3.java 21 default void doNothing() {}
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
RunnablesTest.java 31 assertSame(Runnables.doNothing(), Runnables.doNothing());
  /art/test/088-monitor-verification/src/
TwoPath.java 48 doNothing(localObj);
51 private static void doNothing(Object o) {
  /art/test/997-single-step/src/art/
Test997.java 37 public static void doNothing() {}
41 doNothing();
43 doNothing();
45 doNothing();
47 doNothing();
  /art/test/304-method-tracing/src/
Main.java 23 doNothing();
27 private void doNothing() {}
  /external/guava/guava/src/com/google/common/util/concurrent/
Runnables.java 40 public static Runnable doNothing() {
  /art/test/994-breakpoint-line/src/art/
Test994.java 25 public static void doNothing() {}
29 doNothing();
35 doNothing();
  /external/mockito/src/main/java/org/mockito/stubbing/
Stubber.java 10 * Allows to choose a method when stubbing in doThrow()|doAnswer()|doNothing()|doReturn() style
34 * {@link Mockito#doNothing()}
45 * Allows to choose a method when stubbing in doThrow()|doAnswer()|doNothing()|doReturn() style
62 * {@link Mockito#doNothing()}
138 * Use it for stubbing consecutive calls in {@link Mockito#doNothing()} style:
140 * doNothing().
144 * See javadoc for {@link Mockito#doNothing()}
148 Stubber doNothing();
  /packages/apps/Settings/tests/robotests/src/com/android/settings/security/
ConfigureKeyGuardDialogTest.java 32 import static org.mockito.Mockito.doNothing;
49 doNothing().when(fragment).startPasswordSetup();
  /tools/tradefederation/core/tests/src/com/android/tradefed/util/
BluetoothUtilsTest.java 55 Mockito.doNothing().when(mMockRunUtil).sleep(Mockito.anyLong());
86 Mockito.doNothing().when(mSpyClient).open();
95 Mockito.doNothing().when(mSpyClient).open();
106 Mockito.doNothing().when(mSpyClient).open();
115 Mockito.doNothing().when(mSpyClient).open();
  /art/test/409-materialized-condition/src/
Main.java 19 public static void doNothing(boolean b) {
33 doNothing(b == 42);
44 doNothing(b == 41);
  /art/test/995-breakpoints-throw/src/art/
Test995.java 27 public static void doNothing() { }
38 doNothing();
40 doNothing();
48 doNothing();
  /art/test/996-breakpoint-obsolete/src/art/
Test996.java 28 // The line we initially set a breakpoint on. This should be the doNothing call. This should be
33 public static void doNothing() {}
42 doNothing();
61 // doNothing(); // try to catch non-removed breakpoints
  /external/r8/src/test/java/com/android/tools/r8/debug/
LambdaTest.java 53 isRunningJava() ? LambdaTest::doNothing : stepInto(INTELLIJ_FILTER),
78 private static void doNothing(JUnit3Wrapper jUnit3Wrapper) {
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
NotificationContentViewTest.java 20 import static org.mockito.Mockito.doNothing;
48 doNothing().when(mockRow).updateBackgroundAlpha(anyFloat());
  /frameworks/opt/setupwizard/library/recyclerview/test/robotest/src/com/android/setupwizardlib/template/
RecyclerViewScrollHandlingDelegateTest.java 21 import static org.mockito.Mockito.doNothing;
61 doNothing().when(mRecyclerView).addOnScrollListener(mListenerCaptor.capture());