Home
last modified time | relevance | path

Searched defs:foo (Results 1 – 25 of 201) sorted by relevance

123456789

/aosp12/art/test/Dex2oatVdexTestDex/
H A DDex2oatVdexTestDex.java22 public Integer foo() { in foo() method in AccessPublicCtor
28 public double foo(Integer i) { in foo() method in AccessPublicMethod
34 public void foo(Integer i) { in foo() method in AccessPublicMethodFromParent
40 public Integer foo() { in foo() method in AccessPublicStaticMethod
46 public int foo() { in foo() method in AccessPublicStaticField
56 public Integer foo() { in foo() method in AccessNonPublicCtor
62 public float foo(Integer i) { in foo() method in AccessNonPublicMethod
68 public void foo(Integer i) { in foo() method in AccessNonPublicMethodFromParent
74 public Integer foo() { in foo() method in AccessNonPublicStaticMethod
80 public Class foo() { in foo() method in AccessNonPublicStaticField
/aosp12/art/test/594-invoke-super/src/
H A DMain.java27 public void foo() { System.out.println("I am A's foo"); } in foo() method in A
37 public void foo() { System.out.println("I am B's foo"); } in foo() method in B
45 public void foo() { super.foo(); } in foo() method in X
49 public void foo() { super.foo(); } in foo() method in Y
/aosp12/art/test/139-register-natives/src/
H A DMain.java75 private native void foo(); in foo() method in TestSuper
84 public native void foo(); in foo() method in TestSub
93 public native void foo(); in foo() method in TestSuper2
105 public native void foo(); in foo() method in TestSuper3
114 public void foo() { in foo() method in TestSub3
/aosp12/art/test/IMTB/
H A DInterfaces.java20 public void foo(); in foo() method
23 public void foo(); in foo() method
26 public void foo(); in foo() method
/aosp12/art/test/616-cha-native/src/
H A DMain.java18 public abstract void foo(); in foo() method in A
22 public native void foo(); in foo() method in B
26 public void foo() {} in foo() method in C
/aosp12/system/tools/aidl/tests/java/src/android/aidl/tests/
H A DJavaOnlyImmutableAnnotationTests.java53 Foo foo = new Foo(7, new Bar("my"), list, map, array, Union.num(42)); in testReadWriteJavaOnlyImmutableParcelable() local
84 Foo foo = new Foo(7, new Bar("my"), new ArrayList<Bar>(), new HashMap<String, Bar>(), in testListIsUnmodifiable() local
93 Foo foo = new Foo(7, new Bar("my"), new ArrayList<Bar>(), new HashMap<String, Bar>(), in testMapIsUnmodifiable() local
118 Foo foo = new Foo(7, b, list, map, array, Union.num(42)); in testBuilder() local
/aosp12/system/core/libutils/
H A DStrongPointer_test.cpp57 TypeParam* foo = sp1.get(); in TYPED_TEST() local
76 sp<TypeParam> foo; in TYPED_TEST() local
83 sp<TypeParam> foo = sp<TypeParam>::make(&isDeleted); in TYPED_TEST() local
92 sp<TypeParam> foo = sp<TypeParam>::make(&isDeleted); in TYPED_TEST() local
105 TypeParam* foo = new TypeParam(&isDeleted); in TYPED_TEST() local
H A DRefBase_test.cpp88 Foo* foo = new Foo(&isDeleted); in TEST() local
116 Foo* foo = new Foo(&isDeleted); in TEST() local
133 Foo* foo = new Foo(&isDeleted); in TEST() local
217 FooFixedAlloc* foo = new FooFixedAlloc(&isDeleted); in TEST() local
246 sp<Foo> foo = sp<Foo>::make(&isDeleted); in TEST() local
260 Foo* foo = new Foo(&isDeleted); in TEST() local
/aosp12/art/test/633-checker-rtp-getclass/src/
H A DMain.java30 public int foo() { in foo() method in Main
52 public int foo() { in foo() method in SubMain
62 public int foo() { in foo() method in SubSubMain
/aosp12/art/test/IMTA/
H A DInterfaces.java19 public void foo(); in foo() method
22 public void foo(); in foo() method
/aosp12/art/test/AbstractMethod/
H A DAbstractClass.java22 abstract void foo(); in foo() method in AbstractClass
28 void foo() { in foo() method in ConcreteClass
/aosp12/art/test/551-checker-clinit/src/
H A DMain.java20 public static int foo = 42; field in Main
65 public static int foo = 42; field in Sub
72 public static int foo = 42; field in SubSub
/aosp12/frameworks/base/cmds/idmap2/tests/
H A DCommandLineOptionsTests.cpp41 bool foo = true; in TEST() local
59 std::string foo; in TEST() local
74 std::string foo; in TEST() local
92 std::string foo; in TEST() local
117 std::vector<std::string> foo; in TEST() local
165 std::string foo; in TEST() local
/aosp12/art/test/657-branches/src/
H A DMain.java19 public static void foo(float f) { in foo() method in Main
40 public static void foo(Object a, Object b) {} in foo() method in Main
/aosp12/art/test/044-proxy/src/
H A DNarrowingTest.java22 public Object foo(); in foo() method
28 public String foo(); in foo() method
/aosp12/art/test/493-checker-inline-invoke-interface/src/
H A DMain.java18 public void foo(); in foo() method
30 public void foo() { in foo() method in Main
/aosp12/system/tools/hidl/hidl2aidl/test/
H A Dndk_test_compile.cpp38 void testIFoo(const std::shared_ptr<aidl::hidl2aidl::test::IFoo>& foo) { in testIFoo()
63 void testIFoo2(const std::shared_ptr<aidl::hidl2aidl::test2::IFoo>& foo) { in testIFoo2()
H A Dcpp_test_compile.cpp43 void testIFoo(const sp<hidl2aidl::test::IFoo>& foo) { in testIFoo()
81 void testIFoo2(const sp<hidl2aidl::test2::IFoo>& foo) { in testIFoo2()
/aosp12/art/test/425-invoke-super/src/
H A DMain.java21 public int foo() { return 1; } in foo() method in Main.A
29 public int foo() { return 42; } in foo() method in Main.C
/aosp12/packages/services/Car/tests/carservice_unit_test/src/com/android/car/telemetry/databroker/
H A DDataSubscriberTest.java56 DataSubscriber foo = new DataSubscriber(mMockDataBroker, METRICS_CONFIG_FOO, in testEquals_whenSame_shouldBeEqual() local
66 DataSubscriber foo = new DataSubscriber(mMockDataBroker, METRICS_CONFIG_FOO, in testEquals_whenDifferent_shouldNotBeEqual() local
/aosp12/art/test/641-checker-arraycopy/src/
H A DMain.java28 public static void typedCopy(Object o, byte[] foo) { in typedCopy()
33 public static void untypedCopy(Object o, Object foo) { in untypedCopy()
/aosp12/art/test/616-cha-abstract/src/
H A DMain.java18 abstract void foo(int i); in foo() method in Base
26 void foo(int i) { in foo() method in Main1
34 void foo(int i) { in foo() method in Main2
/aosp12/art/test/616-cha-miranda/src/
H A DMain.java18 public void foo(int i); in foo() method
30 public void foo(int i) { in foo() method in Main1
38 public void foo(int i) { in foo() method in Main2
/aosp12/art/test/616-cha-interface/src/
H A DMain.java18 void foo(int i); in foo() method
23 public void foo(int i) { in foo() method in Main1
47 public void foo(int i) { in foo() method in Main2
/aosp12/art/test/616-cha-proxy-method-inline/src/
H A DMain.java55 public static void call(Foo foo) { in call()
64 Foo foo = (Foo)DebugProxy.newInstance(null); in main() local

123456789