/art/test/046-reflect/ |
D | expected-stdout.txt | 32 Invoke got expected exception: 44 got expected illegal obj store exc 45 got the other expected access exc 46 got expected arg exc 58 got expected long->int failure 59 got expected long->int failure 60 got expected string->int failure 61 got expected int->short failure 72 got expected double->long failure 95 got expected exception for Class.newInstance [all …]
|
/art/test/042-new-instance/ |
D | expected-stdout.txt | 9 Cons got expected PackageAccess complaint 10 Cons got expected InstantationException 11 Cons got expected PackageAccess2 complaint
|
/art/compiler/optimizing/ |
D | graph_test.cc | 50 HInstruction* got = new (GetAllocator()) HGoto(); in CreateGotoBlock() local 51 block->AddInstruction(got); in CreateGotoBlock() 280 HInstruction* got = block->GetLastInstruction(); in TEST_F() local 281 ASSERT_TRUE(got->IsControlFlow()); in TEST_F() 285 block->InsertInstructionBefore(first_instruction, got); in TEST_F() 290 ASSERT_EQ(block->GetLastInstruction(), got); in TEST_F() 291 ASSERT_EQ(first_instruction->GetNext(), got); in TEST_F() 293 ASSERT_EQ(got->GetNext(), nullptr); in TEST_F() 294 ASSERT_EQ(got->GetPrevious(), first_instruction); in TEST_F() 298 block->InsertInstructionBefore(second_instruction, got); in TEST_F() [all …]
|
D | code_generator_x86_64.h | 315 void HandleGoto(HInstruction* got, HBasicBlock* successor);
|
D | code_generator_x86.h | 336 void HandleGoto(HInstruction* got, HBasicBlock* successor);
|
D | code_generator_x86_64.cc | 1711 void InstructionCodeGeneratorX86_64::HandleGoto(HInstruction* got, HBasicBlock* successor) { in HandleGoto() argument 1713 DCHECK(got->GetPrevious()->AlwaysThrows()); in HandleGoto() 1717 HBasicBlock* block = got->GetBlock(); in HandleGoto() 1718 HInstruction* previous = got->GetPrevious(); in HandleGoto() 1730 if (!codegen_->GoesToNextBlock(got->GetBlock(), successor)) { in HandleGoto() 1735 void LocationsBuilderX86_64::VisitGoto(HGoto* got) { in VisitGoto() argument 1736 got->SetLocations(nullptr); in VisitGoto() 1739 void InstructionCodeGeneratorX86_64::VisitGoto(HGoto* got) { in VisitGoto() argument 1740 HandleGoto(got, got->GetSuccessor()); in VisitGoto()
|
D | code_generator_arm64.cc | 3486 void InstructionCodeGeneratorARM64::HandleGoto(HInstruction* got, HBasicBlock* successor) { in HandleGoto() argument 3488 DCHECK(got->GetPrevious()->AlwaysThrows()); in HandleGoto() 3492 HBasicBlock* block = got->GetBlock(); in HandleGoto() 3493 HInstruction* previous = got->GetPrevious(); in HandleGoto() 3510 void LocationsBuilderARM64::VisitGoto(HGoto* got) { in VisitGoto() argument 3511 got->SetLocations(nullptr); in VisitGoto() 3514 void InstructionCodeGeneratorARM64::VisitGoto(HGoto* got) { in VisitGoto() argument 3515 HandleGoto(got, got->GetSuccessor()); in VisitGoto()
|
D | code_generator_arm_vixl.h | 433 void HandleGoto(HInstruction* got, HBasicBlock* successor);
|
D | code_generator_x86.cc | 1635 void InstructionCodeGeneratorX86::HandleGoto(HInstruction* got, HBasicBlock* successor) { in HandleGoto() argument 1637 DCHECK(got->GetPrevious()->AlwaysThrows()); in HandleGoto() 1641 HBasicBlock* block = got->GetBlock(); in HandleGoto() 1642 HInstruction* previous = got->GetPrevious(); in HandleGoto() 1654 if (!codegen_->GoesToNextBlock(got->GetBlock(), successor)) { in HandleGoto() 1659 void LocationsBuilderX86::VisitGoto(HGoto* got) { in VisitGoto() argument 1660 got->SetLocations(nullptr); in VisitGoto() 1663 void InstructionCodeGeneratorX86::VisitGoto(HGoto* got) { in VisitGoto() argument 1664 HandleGoto(got, got->GetSuccessor()); in VisitGoto()
|
D | code_generator_arm64.h | 390 void HandleGoto(HInstruction* got, HBasicBlock* successor);
|
D | code_generator_arm_vixl.cc | 2628 void InstructionCodeGeneratorARMVIXL::HandleGoto(HInstruction* got, HBasicBlock* successor) { in HandleGoto() argument 2630 DCHECK(got->GetPrevious()->AlwaysThrows()); in HandleGoto() 2634 HBasicBlock* block = got->GetBlock(); in HandleGoto() 2635 HInstruction* previous = got->GetPrevious(); in HandleGoto() 2652 void LocationsBuilderARMVIXL::VisitGoto(HGoto* got) { in VisitGoto() argument 2653 got->SetLocations(nullptr); in VisitGoto() 2656 void InstructionCodeGeneratorARMVIXL::VisitGoto(HGoto* got) { in VisitGoto() argument 2657 HandleGoto(got, got->GetSuccessor()); in VisitGoto()
|
/art/test/1914-get-local-instance/ |
D | expected-stdout.txt | 2 "GetThis" on public static void art.Test1914.StaticMethod(java.lang.Runnable) got value: null 5 "GetThis" on public static native void art.Test1914.NativeStaticMethod(java.lang.Runnable) got valu… 8 "GetThis" on public void art.Test1914$TargetClass.InstanceMethod(java.lang.Runnable) got value: Tar… 11 …ive void art.Test1914$TargetClass.NativeInstanceMethod(java.lang.Runnable) got value: TargetClass(… 14 "GetThis" on public abstract void art.Test1914$Foo.InterfaceProxyMethod(java.lang.Runnable) got val…
|
/art/test/1939-proxy-frames/ |
D | expected-stdout.txt | 2 "GetThis" on public abstract void art.Test1939$Foo.InterfaceProxyMethod(java.lang.Runnable) got val… 6 …on" on public abstract void art.Test1939$Foo.InterfaceProxyMethod(java.lang.Runnable) got value: -1 8 …ic abstract void art.Test1939$Foo.InterfaceProxyMethod(java.lang.Runnable) got value: public final…
|
/art/test/959-invoke-polymorphic-accessors/src/ |
D | Main.java | 126 final byte got; in getByte() 128 got = (byte) m.invokeExact(); in getByte() 130 got = (byte) m.invokeExact(v); in getByte() 132 assertTrue(got == value); in getByte() 169 final char got; in getChar() local 171 got = (char) m.invokeExact(); in getChar() 173 got = (char) m.invokeExact(v); in getChar() 175 assertTrue(got == value); in getChar() 212 final short got = (v == null) ? (short) m.invokeExact() : (short) m.invokeExact(v); in getShort() local 213 assertTrue(got == value); in getShort() [all …]
|
/art/test/025-access-controller/ |
D | expected-stdout.txt | 1 AccessControllerTest: got 39
|
/art/test/2036-jni-filechannel/ |
D | expected-stdout.txt | 2 Expected 0 got 0 PASS
|
/art/test/800-smali/smali/ |
D | b_27799205_helper.smali | 5 # unresolved types. It makes it harder to distinguish what kind of error we got.
|
/art/test/1965-get-set-local-primitive-no-tables/ |
D | expected-stdout.txt | 2 …t.TestCases1965.IntMethod(java.util.function.IntConsumer,java.util.function.Consumer) got value: 42 8 …tCases1965.IntMethod(java.util.function.IntConsumer,java.util.function.Consumer) got value: 5.9E-44 38 …estCases1965.LongMethod(java.util.function.IntConsumer,java.util.function.Consumer) got value: 9001 44 …es1965.LongMethod(java.util.function.IntConsumer,java.util.function.Consumer) got value: 4.447E-320 68 …s1965.FloatMethod(java.util.function.IntConsumer,java.util.function.Consumer) got value: 1070537376 74 …tCases1965.FloatMethod(java.util.function.IntConsumer,java.util.function.Consumer) got value: 1.618 104 …5.DoubleMethod(java.util.function.IntConsumer,java.util.function.Consumer) got value: 461425644791… 110 …ases1965.DoubleMethod(java.util.function.IntConsumer,java.util.function.Consumer) got value: 3.1415 146 …65.ObjectMethod(java.util.function.IntConsumer,java.util.function.Consumer) got value: TARGET_VALUE 167 …Cases1965.NullObjectMethod(java.util.function.IntConsumer,java.util.function.Consumer) got value: 0 [all …]
|
/art/test/1966-get-set-local-objects-no-table/ |
D | expected-stdout.txt | 2 …c void art_test.TestCases1966.ObjectMethod(java.util.function.IntConsumer) got value: TestClass1("… 20 …art_test.TestCases1966.CastInterfaceMethod(java.util.function.IntConsumer) got value: TestClass1("… 38 …oid art_test.TestCases1966.CastExactMethod(java.util.function.IntConsumer) got value: TestClass1("… 56 …oid art_test.TestCases1966.InterfaceMethod(java.util.function.IntConsumer) got value: TestClass1("… 74 …id art_test.TestCases1966.ExactClassMethod(java.util.function.IntConsumer) got value: TestClass1("… 110 …ublic static void art_test.TestCases1966.NullMethod(java.util.function.IntConsumer) got value: null 128 …tic void art_test.TestCases1966.CastExactNullMethod(java.util.function.IntConsumer) got value: null 146 …void art_test.TestCases1966.CastInterfaceNullMethod(java.util.function.IntConsumer) got value: null
|
/art/test/1913-get-set-local-objects/ |
D | expected-stdout.txt | 2 "GetGetObject" on public static void art.Test1913.ObjectMethod(java.lang.Runnable) got value: TestC… 20 "GetGetObject" on public static void art.Test1913.InterfaceMethod(java.lang.Runnable) got value: Te… 38 "GetGetObject" on public static void art.Test1913.SpecificClassMethod(java.lang.Runnable) got value… 74 "GetGetObject" on public static void art.Test1913.NullObjectMethod(java.lang.Runnable) got value: n… 92 "GetGetObject" on public static void art.Test1913.NullInterfaceMethod(java.lang.Runnable) got value… 110 "GetGetObject" on public static void art.Test1913.NullSpecificClassMethod(java.lang.Runnable) got v…
|
/art/test/1980-obsolete-object-cleared/ |
D | expected-stdout.txt | 61 …thod java.lang.Class.getConstructor argument 1 has type java.lang.Class[], got java.lang.Object[]:… 78 …a.lang.Class.getDeclaredConstructor argument 1 has type java.lang.Class[], got java.lang.Object[]:… 93 …d java.lang.Class.getDeclaredMethod argument 2 has type java.lang.Class[], got java.lang.Object[]:… 96 …d java.lang.Class.getDeclaredMethod argument 2 has type java.lang.Class[], got java.lang.Object[]:… 99 …d java.lang.Class.getDeclaredMethod argument 2 has type java.lang.Class[], got java.lang.Object[]:… 130 …d java.lang.Class.getInstanceMethod argument 2 has type java.lang.Class[], got java.lang.Object[]:… 133 …d java.lang.Class.getInstanceMethod argument 2 has type java.lang.Class[], got java.lang.Object[]:… 136 …d java.lang.Class.getInstanceMethod argument 2 has type java.lang.Class[], got java.lang.Object[]:… 142 …n: method java.lang.Class.getMethod argument 2 has type java.lang.Class[], got java.lang.Object[]:… 145 …n: method java.lang.Class.getMethod argument 2 has type java.lang.Class[], got java.lang.Object[]:… [all …]
|
/art/test/1912-get-set-local-primitive/ |
D | expected-stdout.txt | 2 "GetInt" on public static void art.Test1912.IntMethod(java.lang.Runnable) got value: 42 38 "GetLong" on public static void art.Test1912.LongMethod(java.lang.Runnable) got value: 9001 74 "GetFloat" on public static void art.Test1912.FloatMethod(java.lang.Runnable) got value: 1.618 110 "GetDouble" on public static void art.Test1912.DoubleMethod(java.lang.Runnable) got value: 3.1415 146 "GetObject" on public static void art.Test1912.ObjectMethod(java.lang.Runnable) got value: TARGET O… 179 "GetObject" on public static void art.Test1912.NullObjectMethod(java.lang.Runnable) got value: null
|
/art/test/100-reflect2/ |
D | expected-stdout.txt | 25 got expected IllegalArgumentException 66 got expected InvocationTargetException
|