HomeSort by relevance Sort by last modified time
    Searched full:dostuff (Results 1 - 25 of 59) sorted by null

1 2 3

  /art/test/052-verifier-fun/src/
BlahFeature.java 2 public void doStuff();
BlahOne.java 2 public void doStuff() {
BlahTwo.java 2 public void doStuff() {
  /art/test/032-concrete-sub/
expected.txt 1 calling abs.doStuff()
2 In AbstractBase.doStuff (src2)
3 Got expected exception from abs.doStuff().
  /external/testng/src/test/java/test/dataprovider/
BooleanTest.java 12 public void doStuff(boolean t) {
21 @Test(dependsOnMethods = {"doStuff"} )
UnnamedDataProviderTest.java 16 public void doStuff(boolean t) {
25 @Test(dependsOnMethods = {"doStuff"} )
  /external/webrtc/webrtc/base/
thread_checker_unittest.cc 32 // Both the destructor and DoStuff should verify that they were
39 void DoStuff() { RTC_DCHECK(CalledOnValidThread()); }
52 // Calls ThreadCheckerClass::DoStuff on another thread.
61 void Run() override { thread_checker_class_->DoStuff(); }
105 // Verify that DoStuff doesn't assert.
106 thread_checker_class->DoStuff();
129 // Verify that DoStuff doesn't assert when called on a different thread after
144 // DoStuff should assert in debug builds only when called on a
168 // DoStuff doesn't assert when called on a different thread
176 // DoStuff should assert in debug builds only after moving t
    [all...]
  /art/test/034-call-null/
expected.txt 1 Exception in thread "main" java.lang.NullPointerException: Attempt to invoke direct method 'void Main.doStuff(int, int[][], java.lang.String, java.lang.String[][])' on a null object reference
  /external/libchrome/base/threading/
non_thread_safe_unittest.cc 20 // Both the destructor and DoStuff should verify that they were
27 void DoStuff() {
42 // Calls NonThreadSafeClass::DoStuff on another thread.
50 void Run() override { non_thread_safe_class_->DoStuff(); }
81 // Verify that DoStuff doesn't assert.
82 non_thread_safe_class->DoStuff();
106 // Verify that DoStuff asserts in debug builds only when called
  /art/test/047-returns/src/
Main.java 25 System.out.println(((CommonInterface)pickOne(1)).doStuff());
29 System.out.println(((CommonInterface)pickOne(2)).doStuff());
55 public int doStuff() {
65 public int doStuff() {
78 int doStuff();
  /art/test/032-concrete-sub/src/
AbstractBase.java 21 public void doStuff() {
22 System.out.println("In AbstractBase.doStuff");
ConcreteSub.java 24 System.out.println("calling abs.doStuff()");
25 abs.doStuff();
34 System.out.println("Got expected exception from abs.doStuff().");
  /art/test/032-concrete-sub/src2/
AbstractBase.java 21 public void doStuff() {
22 System.out.println("In AbstractBase.doStuff (src2)");
  /art/test/034-call-null/src/
Main.java 20 private void doStuff(int i, int[][] is, String s, String[][] ss) {
26 instance.doStuff(0, null, null, null);
  /external/clang/test/SemaObjC/
dist-object-modifiers.m 6 - (void)doStuff:(bycopy id)clientId; // expected-note {{previous declaration is here}}
17 - (void)doStuff:(id)clientId { } // expected-warning {{conflicting distributed object modifiers on parameter type in implementation of 'doStuff:'}}
  /art/test/135-MirandaDispatch/
info.txt 4 at Main.DoStuff(Main.java:37)
  /external/clang/test/PCH/
objc_boxable.m 14 void doStuff(struct boxable b) {
  /external/clang/test/Rewriter/
rewrite-no-nextline.mm 7 @end void doStuff();
  /external/jacoco/jacoco-maven-plugin.test/it/it-includes-excludes/src/main/java/org/project/
DatabaseUtil.java 16 public void doStuff() {
FileUtil.java 16 public void doStuff() {
TestUtil.java 16 public void doStuff() {
  /external/jacoco/jacoco-maven-plugin.test/it/it-includes-excludes/src/test/java/org/project/
TestDatabaseUtil.java 19 new DatabaseUtil().doStuff();
  /art/test/076-boolean-put/src/
Main.java 39 innard.doStuff();
43 void doStuff() {
  /art/test/135-MirandaDispatch/src/
Main.java 35 static void doStuff(AbstractClass c) {
44 doStuff(o);
  /external/clang/test/SemaCXX/
warn-infinite-recursion.cpp 116 // DoStuff<0,0>() is instantiated, but never called.
118 int DoStuff() {
124 DoStuff<First, (First + Last)/2>();
125 DoStuff<(First + Last)/2, Last>();
129 int stuff = DoStuff<0, 1>();

Completed in 304 milliseconds

1 2 3