/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 | 51 HInstruction* got = new (GetAllocator()) HGoto(); in CreateGotoBlock() local 52 block->AddInstruction(got); in CreateGotoBlock() 281 HInstruction* got = block->GetLastInstruction(); in TEST_F() local 282 ASSERT_TRUE(got->IsControlFlow()); in TEST_F() 286 block->InsertInstructionBefore(first_instruction, got); in TEST_F() 291 ASSERT_EQ(block->GetLastInstruction(), got); in TEST_F() 292 ASSERT_EQ(first_instruction->GetNext(), got); in TEST_F() 294 ASSERT_EQ(got->GetNext(), nullptr); in TEST_F() 295 ASSERT_EQ(got->GetPrevious(), first_instruction); in TEST_F() 299 block->InsertInstructionBefore(second_instruction, got); in TEST_F() [all …]
|
D | code_generator_x86_64.h | 379 void HandleGoto(HInstruction* got, HBasicBlock* successor);
|
D | code_generator_x86.h | 396 void HandleGoto(HInstruction* got, HBasicBlock* successor);
|
D | code_generator_x86_64.cc | 1965 void InstructionCodeGeneratorX86_64::HandleGoto(HInstruction* got, HBasicBlock* successor) { in HandleGoto() argument 1967 DCHECK(got->GetPrevious()->AlwaysThrows()); in HandleGoto() 1971 HBasicBlock* block = got->GetBlock(); in HandleGoto() 1972 HInstruction* previous = got->GetPrevious(); in HandleGoto() 1984 if (!codegen_->GoesToNextBlock(got->GetBlock(), successor)) { in HandleGoto() 1989 void LocationsBuilderX86_64::VisitGoto(HGoto* got) { in VisitGoto() argument 1990 got->SetLocations(nullptr); in VisitGoto() 1993 void InstructionCodeGeneratorX86_64::VisitGoto(HGoto* got) { in VisitGoto() argument 1994 HandleGoto(got, got->GetSuccessor()); in VisitGoto()
|
D | code_generator_arm64.cc | 3671 void InstructionCodeGeneratorARM64::HandleGoto(HInstruction* got, HBasicBlock* successor) { in HandleGoto() argument 3673 DCHECK(got->GetPrevious()->AlwaysThrows()); in HandleGoto() 3677 HBasicBlock* block = got->GetBlock(); in HandleGoto() 3678 HInstruction* previous = got->GetPrevious(); in HandleGoto() 3695 void LocationsBuilderARM64::VisitGoto(HGoto* got) { in VisitGoto() argument 3696 got->SetLocations(nullptr); in VisitGoto() 3699 void InstructionCodeGeneratorARM64::VisitGoto(HGoto* got) { in VisitGoto() argument 3700 HandleGoto(got, got->GetSuccessor()); in VisitGoto()
|
D | code_generator_x86.cc | 1821 void InstructionCodeGeneratorX86::HandleGoto(HInstruction* got, HBasicBlock* successor) { in HandleGoto() argument 1823 DCHECK(got->GetPrevious()->AlwaysThrows()); in HandleGoto() 1827 HBasicBlock* block = got->GetBlock(); in HandleGoto() 1828 HInstruction* previous = got->GetPrevious(); in HandleGoto() 1840 if (!codegen_->GoesToNextBlock(got->GetBlock(), successor)) { in HandleGoto() 1845 void LocationsBuilderX86::VisitGoto(HGoto* got) { in VisitGoto() argument 1846 got->SetLocations(nullptr); in VisitGoto() 1849 void InstructionCodeGeneratorX86::VisitGoto(HGoto* got) { in VisitGoto() argument 1850 HandleGoto(got, got->GetSuccessor()); in VisitGoto()
|
D | code_generator_arm_vixl.h | 496 void HandleGoto(HInstruction* got, HBasicBlock* successor);
|
D | code_generator_arm64.h | 431 void HandleGoto(HInstruction* got, HBasicBlock* successor);
|
D | code_generator_arm_vixl.cc | 2780 void InstructionCodeGeneratorARMVIXL::HandleGoto(HInstruction* got, HBasicBlock* successor) { in HandleGoto() argument 2782 DCHECK(got->GetPrevious()->AlwaysThrows()); in HandleGoto() 2786 HBasicBlock* block = got->GetBlock(); in HandleGoto() 2787 HInstruction* previous = got->GetPrevious(); in HandleGoto() 2804 void LocationsBuilderARMVIXL::VisitGoto(HGoto* got) { in VisitGoto() argument 2805 got->SetLocations(nullptr); in VisitGoto() 2808 void InstructionCodeGeneratorARMVIXL::VisitGoto(HGoto* got) { in VisitGoto() argument 2809 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 | 128 final byte got; in getByte() 130 got = (byte) m.invokeExact(); in getByte() 132 got = (byte) m.invokeExact(v); in getByte() 134 assertTrue(got == value); in getByte() 171 final char got; in getChar() local 173 got = (char) m.invokeExact(); in getChar() 175 got = (char) m.invokeExact(v); in getChar() 177 assertTrue(got == value); in getChar() 214 final short got = (v == null) ? (short) m.invokeExact() : (short) m.invokeExact(v); in getShort() local 215 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/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/runtime/interpreter/mterp/x86ng/ |
D | array.S | 108 RESTORE_IBASE # edx got overwritten, restore it
|
/art/test/1980-obsolete-object-cleared/ |
D | expected-stdout.txt | 71 …thod java.lang.Class.getConstructor argument 1 has type java.lang.Class[], got java.lang.Object[]:… 95 …a.lang.Class.getDeclaredConstructor argument 1 has type java.lang.Class[], got java.lang.Object[]:… 110 …d java.lang.Class.getDeclaredMethod argument 2 has type java.lang.Class[], got java.lang.Object[]:… 113 …d java.lang.Class.getDeclaredMethod argument 2 has type java.lang.Class[], got java.lang.Object[]:… 116 …d java.lang.Class.getDeclaredMethod argument 2 has type java.lang.Class[], got java.lang.Object[]:… 147 …d java.lang.Class.getInstanceMethod argument 2 has type java.lang.Class[], got java.lang.Object[]:… 150 …d java.lang.Class.getInstanceMethod argument 2 has type java.lang.Class[], got java.lang.Object[]:… 153 …d java.lang.Class.getInstanceMethod argument 2 has type java.lang.Class[], got java.lang.Object[]:… 159 …n: method java.lang.Class.getMethod argument 2 has type java.lang.Class[], got java.lang.Object[]:… 162 …n: method java.lang.Class.getMethod argument 2 has type java.lang.Class[], got java.lang.Object[]:… [all …]
|
/art/test/100-reflect2/ |
D | expected-stdout.txt | 25 got expected IllegalArgumentException 66 got expected InvocationTargetException
|