/art/test/108-check-cast/src/ |
D | Main.java | 21 class B {} class 22 class D extends B {} 26 B b = null; in main() 29 b = new B(); in main()
|
/art/test/033-class-init-deadlock/src/ |
D | Main.java | 31 thread2 = new Thread() { public void run() { new B(); } }; in main() 53 new B(); in B() method 59 class B { class
|
/art/test/065-mismatched-implements/ |
D | info.txt | 1 This tests what happens when class A implements interface B, but somebody 2 turns B into an abstract class without rebuilding A.
|
/art/test/066-mismatched-super/ |
D | info.txt | 1 This tests what happens when class A extends abstract class B, but somebody 2 turns B into an interface without rebuilding A.
|
/art/test/033-class-init-deadlock/ |
D | expected.txt | 3 B initializing... 7 B initialized: false
|
/art/runtime/ |
D | utils.h | 153 template <bool condition, typename A, typename B> 159 template <typename A, typename B> 160 struct TypeStaticIf<false, A, B> { 161 typedef B type; 534 template <typename A, typename B> 535 inline void operator() (A a, B b) const { 540 template <typename A, typename B, typename C> 541 inline void operator() (A a, B b, C c) const {
|
D | class_linker_test.cc | 926 Handle<mirror::Class> B( in TEST_F() local 931 EXPECT_TRUE(K->IsAssignableFrom(B.Get())); in TEST_F() 932 EXPECT_TRUE(J->IsAssignableFrom(B.Get())); in TEST_F() 967 mirror::ArtField* Bfoo = mirror::Class::FindStaticField(soa.Self(), B, "foo", in TEST_F()
|
/art/runtime/gc/space/ |
D | space_test.h | 601 TEST_SizeFootPrintGrowthLimitAndTrimStatic(12B, spaceName, spaceFn, 12) \ 602 TEST_SizeFootPrintGrowthLimitAndTrimStatic(16B, spaceName, spaceFn, 16) \ 603 TEST_SizeFootPrintGrowthLimitAndTrimStatic(24B, spaceName, spaceFn, 24) \ 604 TEST_SizeFootPrintGrowthLimitAndTrimStatic(32B, spaceName, spaceFn, 32) \ 605 TEST_SizeFootPrintGrowthLimitAndTrimStatic(64B, spaceName, spaceFn, 64) \ 606 TEST_SizeFootPrintGrowthLimitAndTrimStatic(128B, spaceName, spaceFn, 128) \ 617 TEST_SizeFootPrintGrowthLimitAndTrimRandom(16B, spaceName, spaceFn, 16) \ 618 TEST_SizeFootPrintGrowthLimitAndTrimRandom(24B, spaceName, spaceFn, 24) \ 619 TEST_SizeFootPrintGrowthLimitAndTrimRandom(32B, spaceName, spaceFn, 32) \ 620 TEST_SizeFootPrintGrowthLimitAndTrimRandom(64B, spaceName, spaceFn, 64) \ [all …]
|
/art/test/131-structural-change/src-ex/ |
D | B.java | 17 public class B extends A { class
|
/art/test/121-modifiers/classes/ |
D | A$B.class | Main.java
package A$B extends java.lang.Object {
private void <init> ... |
/art/test/026-access/src/ |
D | Iface2.java | 24 public final static int B = Unrelated.static_x; field
|
D | Main.java | 29 System.out.println(Iface2.B); in main()
|
/art/test/Interfaces/ |
D | Interfaces.java | 34 class B implements K { class in Interfaces
|
/art/test/121-modifiers/src/ |
D | Main.java | 19 private static class B { class in A
|
/art/test/115-native-bridge/ |
D | expected.txt | 9 name:byteMethod, signature:(BBBBBBBBBB)B, shorty:BBBBBBBBBBB.
|
/art/test/100-reflect2/ |
D | expected.txt | 36 …ublic [B java.lang.String.getBytes(), public [B java.lang.String.getBytes(java.lang.String) throws…
|
/art/runtime/arch/x86_64/ |
D | memcmp16_x86_64.S | 36 #define JMPTBL(I, B) (I - B) argument
|
/art/runtime/arch/arm/ |
D | quick_entrypoints_arm.S | 314 and r5, #0xFFFFFFF0 @ convention only aligns to 8B, so we have to ensure ART 315 mov sp, r5 @ 16B alignment ourselves.
|
/art/compiler/utils/arm/ |
D | assembler_arm32.cc | 565 (byte ? B : 0) | in EmitMemOp() 574 (byte ? B : 0) | in EmitMemOp()
|
D | assembler_arm.h | 278 B = 1 << 22, // unsigned byte (or word) enumerator
|
/art/test/083-compiler-regressions/src/ |
D | Main.java | 9840 final double B[] = new double[2]; in test() local 9842 B[0] = B[1] = 0.0; in test() 9850 B[1] = -B[1]; in test() 9852 show_results(A, B, i); in test()
|