Home
last modified time | relevance | path

Searched refs:Foo (Results 1 – 25 of 118) sorted by relevance

12345

/aosp12/system/core/libutils/
H A DRefBase_test.cpp41 ~Foo() { in ~Foo()
88 Foo* foo = new Foo(&isDeleted); in TEST()
91 sp<Foo> sp1(foo); in TEST()
92 wp<Foo> wp1(sp1); in TEST()
116 Foo* foo = new Foo(&isDeleted); in TEST()
133 Foo* foo = new Foo(&isDeleted); in TEST()
134 Foo* foo2 = new Foo(&isDeleted2); in TEST()
188 sp<Foo> sp3(new Foo(&isDeleted3)); in TEST()
190 wp<Foo> wp5; in TEST()
246 sp<Foo> foo = sp<Foo>::make(&isDeleted); in TEST()
[all …]
/aosp12/hardware/interfaces/tests/foo/1.0/default/
H A DFoo.cpp55 Return<double> Foo::doQuiteABit( in doQuiteABit()
73 Return<void> Foo::doSomethingElse( in doSomethingElse()
99 Return<void> Foo::mapThisVector( in mapThisVector()
115 Return<void> Foo::callMe( in callMe()
174 Return<Foo::SomeEnum> Foo::useAnEnum(SomeEnum param) { in useAnEnum()
225 Return<void> Foo::haveAStringVec( in haveAStringVec()
247 Return<void> Foo::transposeMe( in transposeMe()
265 Return<void> Foo::callingDrWho( in callingDrWho()
297 Return<void> Foo::transpose2( in transpose2()
313 Return<void> Foo::sendVec( in sendVec()
[all …]
/aosp12/art/test/484-checker-register-hints/smali/
H A DSmali.smali62 sget-object v6, LMain;->foo:LMain$Foo;
65 iput v7, v6, LMain$Foo;->field2:I
69 iput v7, v6, LMain$Foo;->field3:I
73 iput v7, v6, LMain$Foo;->field4:I
75 iput v3, v6, LMain$Foo;->field0:I
78 iput v7, v6, LMain$Foo;->field1:I
122 iput v7, v6, LMain$Foo;->field2:I
126 iput v7, v6, LMain$Foo;->field3:I
130 iput v7, v6, LMain$Foo;->field4:I
132 iput v4, v6, LMain$Foo;->field0:I
[all …]
/aosp12/system/tools/aidl/tests/java/src/android/aidl/tests/
H A DTestVersionedInterface.java25 import android.aidl.versioned.tests.Foo;
83 Foo[] foos = new Foo[42]; in testArrayOfPacelableWithNewField()
85 foos[i] = new Foo(); in testArrayOfPacelableWithNewField()
93 Foo inFoo = new Foo(); in testReadDataCorrectlyAfterParcelableWithNewField()
94 Foo inoutFoo = new Foo(); in testReadDataCorrectlyAfterParcelableWithNewField()
95 Foo outFoo = new Foo(); in testReadDataCorrectlyAfterParcelableWithNewField()
H A DJavaOnlyImmutableAnnotationTests.java24 import android.aidl.tests.immutable.Foo;
53 Foo foo = new Foo(7, new Bar("my"), list, map, array, Union.num(42)); in testReadWriteJavaOnlyImmutableParcelable()
56 Foo foo2 = Foo.CREATOR.createFromParcel(parcel); in testReadWriteJavaOnlyImmutableParcelable()
75 for (Field f : Foo.class.getDeclaredFields()) { in testEveryFieldIsFinal()
84 Foo foo = new Foo(7, new Bar("my"), new ArrayList<Bar>(), new HashMap<String, Bar>(), in testListIsUnmodifiable()
93 Foo foo = new Foo(7, new Bar("my"), new ArrayList<Bar>(), new HashMap<String, Bar>(), in testMapIsUnmodifiable()
102 assertThat(new Foo.Builder().build().a, is(10)); in testBuilderRespectDefaultValue()
118 Foo foo = new Foo(7, b, list, map, array, Union.num(42)); in testBuilder()
119 Foo foo2 = new Foo.Builder() in testBuilder()
H A DMapTests.java23 import android.aidl.tests.map.Foo;
40 Foo foo = new Foo(); in testWriteAndThenReadMaps()
75 Foo readFoo = new Foo(); in testWriteAndThenReadMaps()
/aosp12/art/test/1939-proxy-frames/
H A Dexpected-stdout.txt1 Running public abstract void art.Test1939$Foo.InterfaceProxyMethod(java.lang.Runnable) with "GetThi…
2 …ic abstract void art.Test1939$Foo.InterfaceProxyMethod(java.lang.Runnable) got value: Proxy for [i…
3 Running public abstract void art.Test1939$Foo.InterfaceProxyMethod(java.lang.Runnable) with "GetLoc…
4 "GetLocalReference0" on public abstract void art.Test1939$Foo.InterfaceProxyMethod(java.lang.Runnab…
5 Running public abstract void art.Test1939$Foo.InterfaceProxyMethod(java.lang.Runnable) with "GetPro…
6 "GetProxyFrameLocation" on public abstract void art.Test1939$Foo.InterfaceProxyMethod(java.lang.Run…
7 Running public abstract void art.Test1939$Foo.InterfaceProxyMethod(java.lang.Runnable) with "GetPro…
8 "GetProxyFrameMethod" on public abstract void art.Test1939$Foo.InterfaceProxyMethod(java.lang.Runna…
/aosp12/build/blueprint/proptools/
H A Dtag_test.go113 Foo string
120 Foo string `name:"value"`
127 Foo string `name:"value"`
135 Foo string `name:"other"`
143 Foo struct {
152 Foo *struct {
162 Foo []struct {
173 Foo []struct {
186 Foo string `name:"value"`
H A Dunpack_test.go215 Foo string
221 Foo: "abc",
251 Foo: "abc",
279 Foo string
284 Foo string
287 {Foo: "abc", Bar: true},
288 {Foo: "def", Bar: false},
314 Foo string
319 Foo string
322 {Foo: "abc", Bar: true},
[all …]
/aosp12/art/test/608-checker-unresolved-lse/src/
H A DMain.java40 Foo f = sf; in instanceFieldTest()
65 Foo f = sf; in instanceFieldTest2()
84 Foo.sField = 42; in staticFieldTest()
85 Foo.sField = 43; in staticFieldTest()
92 class Foo { class
100 class SubFoo extends Foo implements MissingInterface {
/aosp12/system/tools/aidl/tests/versioned/android/aidl/versioned/tests/
H A DIFooInterface.aidl3 import android.aidl.versioned.tests.Foo;
9 int ignoreParcelablesAndRepeatInt(in Foo inFoo, inout Foo inoutFoo, out Foo outFoo, int value); in ignoreParcelablesAndRepeatInt()
10 int returnsLengthOfFooArray(in Foo[] foos); in returnsLengthOfFooArray()
/aosp12/art/test/616-cha-proxy-method-inline/src/
H A DMain.java22 static Class<?>[] interfaces = {Foo.class};
26 Foo.class.getClassLoader(), in newInstance()
55 public static void call(Foo foo) { in call()
64 Foo foo = (Foo)DebugProxy.newInstance(null); in main()
/aosp12/system/tools/aidl/build/
H A Daidl_test.go996 srcs: ["dir/a/Foo.aidl", "dir/b/Foo.aidl"],
1017 "src/foo/Foo.aidl",
1032 "foo/src/foo/Foo.aidl": nil,
1034 "foo/aidl_api/foo-iface/current/foo/Foo.aidl": nil,
1077 "src/foo/Foo.aidl",
1108 "foo/aidl_api/foo-iface/1/foo/Foo.aidl": nil,
1111 "foo/src/foo/Foo.aidl": nil,
1144 "foo/src/foo/Foo.aidl",
1151 dumpDir + "/foo/Foo.aidl",
1181 srcs: ["a/Foo.aidl", "b/Bar.aidl"],
[all …]
/aosp12/art/test/655-jit-clinit/src/
H A DMain.java24 Foo.initialize(); in main()
31 class Foo { class
42 while (!Main.hasJitCompiledEntrypoint(Foo.class, "$noinline$hotMethod")) {
43 new Foo().$noinline$hotMethod();
/aosp12/system/tools/aidl/aidl_api/aidl-test-versioned-interface/1/android/aidl/versioned/tests/
H A DIFooInterface.aidl22 …ndroid.aidl.versioned.tests.Foo inFoo, inout android.aidl.versioned.tests.Foo inoutFoo, out androi… in ignoreParcelablesAndRepeatInt()
23 int returnsLengthOfFooArray(in android.aidl.versioned.tests.Foo[] foos); in returnsLengthOfFooArray()
/aosp12/system/tools/aidl/aidl_api/aidl-test-versioned-interface/2/android/aidl/versioned/tests/
H A DIFooInterface.aidl22 …ndroid.aidl.versioned.tests.Foo inFoo, inout android.aidl.versioned.tests.Foo inoutFoo, out androi… in ignoreParcelablesAndRepeatInt()
23 int returnsLengthOfFooArray(in android.aidl.versioned.tests.Foo[] foos); in returnsLengthOfFooArray()
/aosp12/system/tools/aidl/aidl_api/aidl-test-versioned-interface/current/android/aidl/versioned/tests/
H A DIFooInterface.aidl23 …ndroid.aidl.versioned.tests.Foo inFoo, inout android.aidl.versioned.tests.Foo inoutFoo, out androi… in ignoreParcelablesAndRepeatInt()
24 int returnsLengthOfFooArray(in android.aidl.versioned.tests.Foo[] foos); in returnsLengthOfFooArray()
/aosp12/hardware/interfaces/tests/baz/1.0/
H A DIBase.hal24 struct Foo {
112 someOtherBaseMethod(Foo foo) generates (Foo result);
113 someMethodWithFooArrays(Foo[2] fooInput) generates (Foo[2] fooOutput);
114 someMethodWithFooVectors(vec<Foo> fooInput) generates (vec<Foo> fooOutput);
/aosp12/system/tools/hidl/test/java_test/src/com/android/commands/hidl_test_java/
H A DHidlTestJava.java691 IBase.Foo foo = new IBase.Foo(); in client()
695 IBase.Foo.Bar bar = new IBase.Foo.Bar(); in client()
709 IBase.Foo[] inputArray = new IBase.Foo[2]; in client()
711 IBase.Foo foo = new IBase.Foo(); in client()
715 IBase.Foo.Bar bar = new IBase.Foo.Bar(); in client()
730 IBase.Foo.Bar bar = new IBase.Foo.Bar(); in client()
753 IBase.Foo foo = new IBase.Foo(); in client()
757 IBase.Foo.Bar bar = new IBase.Foo.Bar(); in client()
772 IBase.Foo.Bar bar = new IBase.Foo.Bar(); in client()
1270 public IBase.Foo someOtherBaseMethod(IBase.Foo foo) { in someOtherBaseMethod()
[all …]
/aosp12/system/tools/aidl/tests/android/aidl/tests/immutable/
H A DIBaz.aidl19 import android.aidl.tests.immutable.Foo;
22 Foo RepeatFoo(in Foo a); in RepeatFoo()
/aosp12/art/test/500-instanceof/src/
H A DMain.java20 class Foo { class
23 class Main extends Foo implements Itf {
26 if (!(parent instanceof Foo)) { in main()
/aosp12/build/soong/android/
H A Dpath_properties_test.go24 Foo string `android:"path"`
35 Foo string `android:"path"`
64 if p.props.Foo != "" {
66 if ctx.GetDirectDepWithTag(SrcIsModule(p.props.Foo), sourceOrOutputDepTag("")) == nil {
H A Dvariable_test.go200 Foo []string
213 Foo []string
220 Foo []string member
224 Foo []string member
307 AssertDeepEquals(t, "foo", want, foo.properties.Foo)
/aosp12/art/test/1914-get-local-instance/
H A Dexpected-stdout.txt13 Running public abstract void art.Test1914$Foo.InterfaceProxyMethod(java.lang.Runnable) with "GetThi…
14 …ic abstract void art.Test1914$Foo.InterfaceProxyMethod(java.lang.Runnable) got value: Proxy for [i…
15 Value is 'Proxy for [interface art.Test1914$Foo]' (class: PROXY CLASS)
/aosp12/art/test/530-checker-instance-of-simplifier/jasmin/
H A DMain.j38 ; Foo f = new Foo();
49 new Foo
53 invokespecial Foo/<init>()V
59 putfield Foo/intField I
77 getfield Foo/intField I

12345