/art/test/052-verifier-fun/src/ |
BlahFeature.java | 2 public void doStuff();
|
BlahOne.java | 2 public void doStuff() {
|
BlahTwo.java | 2 public void doStuff() {
|
/dalvik/tests/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().
|
/dalvik/tests/032-concrete-sub/ |
expected.txt | 1 calling abs.doStuff() 2 In AbstractBase.doStuff (src2) 3 Got expected exception from abs.doStuff().
|
/dalvik/tests/034-call-null/src/ |
Main.java | 6 private void doStuff() { 13 instance.doStuff();
|
/dalvik/tests/068-classloader/src/ |
Base.java | 13 public static String doStuff(DoubledExtend dt) {
|
/dalvik/tests/047-returns/src/ |
Main.java | 11 System.out.println(((CommonInterface)pickOne(1)).doStuff()); 15 System.out.println(((CommonInterface)pickOne(2)).doStuff()); 41 public int doStuff() { 51 public int doStuff() { 64 int doStuff();
|
/external/chromium/base/threading/ |
thread_checker_unittest.cc | 15 // Both the destructor and DoStuff should verify that they were 22 void DoStuff() { 37 // Calls ThreadCheckerClass::DoStuff on another thread. 46 thread_checker_class_->DoStuff(); 77 // Verify that DoStuff doesn't assert. 78 thread_checker_class->DoStuff(); 101 // Verify that DoStuff doesn't assert when called on a different thread after 116 // DoStuff should assert in debug builds only when called on a 140 // DoStuff doesn't assert when called on a different thread 148 // DoStuff should assert in debug builds only after moving t [all...] |
non_thread_safe_unittest.cc | 15 // Both the destructor and DoStuff should verify that they were 22 void DoStuff() { 37 // Calls NonThreadSafeClass::DoStuff on another thread. 46 non_thread_safe_class_->DoStuff(); 77 // Verify that DoStuff doesn't assert. 78 non_thread_safe_class->DoStuff(); 104 // Verify that DoStuff asserts in debug builds only when called
|
/external/chromium_org/base/threading/ |
thread_checker_unittest.cc | 25 // Both the destructor and DoStuff should verify that they were 32 void DoStuff() { 47 // Calls ThreadCheckerClass::DoStuff on another thread. 56 thread_checker_class_->DoStuff(); 90 // Verify that DoStuff doesn't assert. 91 thread_checker_class->DoStuff(); 114 // Verify that DoStuff doesn't assert when called on a different thread after 129 // DoStuff should assert in debug builds only when called on a 153 // DoStuff doesn't assert when called on a different thread 161 // DoStuff should assert in debug builds only after moving t [all...] |
non_thread_safe_unittest.cc | 25 // Both the destructor and DoStuff should verify that they were 32 void DoStuff() { 47 // Calls NonThreadSafeClass::DoStuff on another thread. 56 non_thread_safe_class_->DoStuff(); 90 // Verify that DoStuff doesn't assert. 91 non_thread_safe_class->DoStuff(); 117 // Verify that DoStuff asserts in debug builds only when called
|
/art/test/034-call-null/ |
expected.txt | 1 java.lang.NullPointerException: Attempt to invoke direct method 'void Main.doStuff(int, int[][], java.lang.String, java.lang.String[][])' on a null object reference
|
/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);
|
/dalvik/tests/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().");
|
/dalvik/tests/032-concrete-sub/src2/ |
AbstractBase.java | 21 public void doStuff() { 22 System.out.println("In AbstractBase.doStuff (src2)");
|
/external/chromium_org/base/ |
sequence_checker_unittest.cc | 33 // DoStuff should verify that it's called on a valid sequenced thread. 41 void DoStuff() { 83 base::Bind(&SequenceCheckedObject::DoStuff, 91 base::Bind(&SequenceCheckedObject::DoStuff, 124 // Verify that DoStuff doesn't assert. 125 sequence_checked_object->DoStuff(); 144 // Verify that DoStuff doesn't assert when called on a different thread after 191 // DoStuff should assert in debug builds only when called on a 215 // DoStuff doesn't assert when called on a different thread 221 // DoStuff should assert in debug builds only after moving t [all...] |