Searched refs:foo (Results 51 - 75 of 150) sorted by relevance

123456

/art/test/164-resolution-trampoline-dex-cache/src-ex/
H A DMostDerived.java24 // "invoke-super Derived.foo(.)" called from from MostDerived.foo(.). When that
27 // the Base.foo(.), the artQuickResolutionTrampoline() used to erroneously fill the
28 // Base.foo(.) entry in the MostDerived's DexCache which is wrong as the referenced
30 new MostDerived().foo(main);
32 // This discrepancy then used to crash when resolving the Base.foo(.) method
42 public void foo(Class main) { method in class:MostDerived
43 super.foo(main);
48 b.foo(main);
/art/test/447-checker-inliner3/src/
H A DMain.java27 return foo(true);
30 private static int foo(boolean value) { method in class:Main
47 result += foo(i % 2 == 0);
60 for (int i = 0; i < foo(i % 2 == 0); ++i) {
/art/test/484-checker-register-hints/src/
H A DMain.java53 foo.field2 = e + i + h;
54 foo.field3 = f + i + h;
55 foo.field4 = g + i + h;
56 foo.field0 = h;
57 foo.field1 = i + h;
87 foo.field2 = e + i + h;
88 foo.field3 = f + i + h;
89 foo.field4 = g + i + h;
90 foo.field0 = h;
91 foo
136 static Foo foo; field in class:Main
[all...]
/art/test/492-checker-inline-invoke-interface/src/
H A DMain.java18 public void $inline$foo();
30 public void $inline$foo() {
50 itf.$inline$foo();
/art/test/493-checker-inline-invoke-interface/src/
H A DMain.java18 public void foo(); method in interface:Itf
30 public void foo() { method in class:Main
42 itf.foo();
/art/test/604-hot-static-interface/src/
H A DMain.java20 // Loop enough to get Itf.foo JITed.
22 Itf.foo(new Object());
25 ensureJitCompiled(Itf.class, "foo");
27 if (!Itf.foo(new Object())) {
36 public static boolean foo(Object o) { method in interface:Itf
/art/test/628-vdex/src/
H A DMain.java26 m.foo(m.a);
29 m.foo(((Main)o).a);
33 void foo(int a) { method in class:Main
34 System.out.println("In foo");
/art/test/632-checker-char-at-bounds/src/
H A DMain.java25 String foo = myString;
26 foo.getClass(); // Make sure the null check is not in the loop.
31 c = foo.charAt(10000000);
39 static String myString = "foo";
/art/test/674-vdex-uncompress/src/
H A DMain.java26 m.foo(m.a);
29 m.foo(((Main)o).a);
33 void foo(int a) { method in class:Main
34 System.out.println("In foo");
/art/test/DexToDexDecompiler/
H A DMain.java26 m.foo(m.a);
29 m.foo(((Main)o).a);
33 void foo(int a) {} method in class:Main
/art/test/016-intern/src/
H A DMain.java23 final String foo = "foo";
27 a = foo.concat(bar).intern();
28 b = foo.concat(bar).intern();
29 if (a == b && foo != bar) {
36 a = ("f" + foo.substring(1,3)).intern();
37 if (a == foo) {
/art/test/049-show-object/src/
H A DMain.java28 public static void showObject(Object[] foo) { argument
30 System.out.println("class: " + foo.getClass());
32 for (int i = 0; i < foo.length; i++) {
33 System.out.println(i + ": " + foo[i]);
/art/test/139-register-natives/src/
H A DMain.java75 private native void foo(); method in class:TestSuper
79 foo();
84 public native void foo(); method in class:TestSub
88 foo();
93 public native void foo(); method in class:TestSuper2
97 foo();
105 public native void foo(); method in class:TestSuper3
109 foo();
114 public void foo() { method in class:TestSub3
115 System.out.println("TestSub3.foo()");
[all...]
/art/test/300-package-override/src/p2/
H A DDerivedClass.java20 void foo() { System.out.println("DerivedClass overrode package-private method!"); } // This should not override BaseClass.foo. method in class:DerivedClass
/art/test/507-referrer/src/
H A DMain.java21 int result = InPackage.$inline$foo();
/art/test/578-polymorphic-inlining/src/
H A DMain.java39 $noinline$foo();
41 $noinline$foo();
42 $noinline$foo();
46 public static void $noinline$foo() {
/art/test/076-boolean-put/src/
H A DMain.java31 Main foo = new Main();
32 foo.test();
/art/test/433-gvn/src/
H A DMain.java19 System.out.println(foo());
22 public static int foo() { method in class:Main
/art/test/446-checker-inliner2/src/
H A DMain.java31 return m.foo();
34 private int foo() { method in class:Main
/art/test/464-checker-inline-sharpen-calls/src/
H A DMain.java20 private int foo = 3; field in class:Main.Helper
23 return foo;
/art/test/483-dce-block/src/
H A DMain.java18 public static void foo(Object o, int a) { method in class:Main
56 foo(new Main(), 2);
/art/test/559-bce-ssa/src/
H A DMain.java19 public static void foo(int[] array, int[] array2, int start, int end) { method in class:Main
27 foo(a, new int[2], 0, 1);
/art/test/679-locks/src/
H A DMain.java18 public void foo() {} method in class:NotLoaded
43 ((NotLoaded)o).foo();
/art/test/421-exceptions/src/
H A DMain.java20 $opt$foo(1);
22 $opt$foo(2);
24 $opt$foo(3);
26 $opt$foo(4);
55 public static void $opt$foo(int value) {
/art/test/702-LargeBranchOffset/src/
H A DMain.java.in27 System.out.println(m.foo(-1, -1));
28 System.out.println(m.foo(-1, +1));
29 System.out.println(m.foo(+1, -1));
30 System.out.println(m.foo(+1, +1));
34 public int foo(int a, int b) {

Completed in 2407 milliseconds

123456