/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 | 372 void HandleGoto(HInstruction* got, HBasicBlock* successor);
|
D | code_generator_x86.h | 387 void HandleGoto(HInstruction* got, HBasicBlock* successor);
|
D | code_generator_riscv64.h | 378 void HandleGoto(HInstruction* got, HBasicBlock* successor);
|
D | code_generator_arm64.cc | 3757 void InstructionCodeGeneratorARM64::HandleGoto(HInstruction* got, HBasicBlock* successor) { in HandleGoto() argument 3759 DCHECK(got->GetPrevious()->AlwaysThrows()); in HandleGoto() 3763 HBasicBlock* block = got->GetBlock(); in HandleGoto() 3764 HInstruction* previous = got->GetPrevious(); in HandleGoto() 3781 void LocationsBuilderARM64::VisitGoto(HGoto* got) { in VisitGoto() argument 3782 got->SetLocations(nullptr); in VisitGoto() 3785 void InstructionCodeGeneratorARM64::VisitGoto(HGoto* got) { in VisitGoto() argument 3786 HandleGoto(got, got->GetSuccessor()); in VisitGoto()
|
D | code_generator_x86_64.cc | 2096 void InstructionCodeGeneratorX86_64::HandleGoto(HInstruction* got, HBasicBlock* successor) { in HandleGoto() argument 2098 DCHECK(got->GetPrevious()->AlwaysThrows()); in HandleGoto() 2102 HBasicBlock* block = got->GetBlock(); in HandleGoto() 2103 HInstruction* previous = got->GetPrevious(); in HandleGoto() 2115 if (!codegen_->GoesToNextBlock(got->GetBlock(), successor)) { in HandleGoto() 2120 void LocationsBuilderX86_64::VisitGoto(HGoto* got) { in VisitGoto() argument 2121 got->SetLocations(nullptr); in VisitGoto() 2124 void InstructionCodeGeneratorX86_64::VisitGoto(HGoto* got) { in VisitGoto() argument 2125 HandleGoto(got, got->GetSuccessor()); in VisitGoto()
|
D | code_generator_x86.cc | 1902 void InstructionCodeGeneratorX86::HandleGoto(HInstruction* got, HBasicBlock* successor) { in HandleGoto() argument 1904 DCHECK(got->GetPrevious()->AlwaysThrows()); in HandleGoto() 1908 HBasicBlock* block = got->GetBlock(); in HandleGoto() 1909 HInstruction* previous = got->GetPrevious(); in HandleGoto() 1921 if (!codegen_->GoesToNextBlock(got->GetBlock(), successor)) { in HandleGoto() 1926 void LocationsBuilderX86::VisitGoto(HGoto* got) { in VisitGoto() argument 1927 got->SetLocations(nullptr); in VisitGoto() 1930 void InstructionCodeGeneratorX86::VisitGoto(HGoto* got) { in VisitGoto() argument 1931 HandleGoto(got, got->GetSuccessor()); in VisitGoto()
|
D | code_generator_arm_vixl.h | 513 void HandleGoto(HInstruction* got, HBasicBlock* successor);
|
D | code_generator_arm64.h | 422 void HandleGoto(HInstruction* got, HBasicBlock* successor);
|
/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/854-image-inlining/ |
D | info.txt | 4 This got fixed with aosp/3064144.
|
/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 | 110 RESTORE_IBASE # edx got overwritten, restore it
|
/art/test/1980-obsolete-object-cleared/ |
D | expected-stdout.txt | 73 …thod java.lang.Class.getConstructor argument 1 has type java.lang.Class[], got java.lang.Object[]:… 97 …a.lang.Class.getDeclaredConstructor argument 1 has type java.lang.Class[], got java.lang.Object[]:… 112 …d java.lang.Class.getDeclaredMethod argument 2 has type java.lang.Class[], got java.lang.Object[]:… 115 …d java.lang.Class.getDeclaredMethod argument 2 has type java.lang.Class[], got java.lang.Object[]:… 118 …d java.lang.Class.getDeclaredMethod argument 2 has type java.lang.Class[], got java.lang.Object[]:… 149 …d java.lang.Class.getInstanceMethod argument 2 has type java.lang.Class[], got java.lang.Object[]:… 152 …d java.lang.Class.getInstanceMethod argument 2 has type java.lang.Class[], got java.lang.Object[]:… 155 …d java.lang.Class.getInstanceMethod argument 2 has type java.lang.Class[], got java.lang.Object[]:… 161 …n: method java.lang.Class.getMethod argument 2 has type java.lang.Class[], got java.lang.Object[]:… 164 …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
|