HomeSort by relevance Sort by last modified time
    Searched full:ifoo (Results 1 - 25 of 81) sorted by null

1 2 3 4

  /art/test/106-exceptions2/src/
Main.java 19 public int ifoo; field in class:Main
27 ifoo++;
30 if (ifoo != 321) {
32 nonNullA.ifoo = 12;
34 nonNullB.ifoo = 21;
37 nonNullA.ifoo = 12;
41 nonNullA.ifoo = 13;
44 nonNullB.ifoo = 21;
49 nonNullC.ifoo = 32;
52 return ifoo + nonNullA.ifoo + nonNullB.ifoo + nonNullC.ifoo
    [all...]
  /system/tools/hidl/test/version_test/bad3/version/2.4/
IFoo.hal 19 import @2.2::IFoo;
21 // Can extend @2.2::IFoo since @2.3 IFoo doesn't exist
22 interface IFoo extends @2.2::IFoo {
  /system/tools/hidl/test/version_test/good/version/2.4/
IFoo.hal 19 import @2.2::IFoo;
21 // Can extend @2.2::IFoo since @2.3 IFoo doesn't exist
22 interface IFoo extends @2.2::IFoo {
  /system/tools/hidl/test/version_test/bad3/version/2.5/
IFoo.hal 19 import @2.4::IFoo;
21 // Must extend @2.4::IFoo
22 interface IFoo extends @2.4::IFoo {
IBar.hal 19 import @2.4::IFoo;
22 interface IBar extends @2.4::IFoo {
  /system/tools/hidl/test/version_test/good/version/2.5/
IFoo.hal 19 import @2.4::IFoo;
21 // Must extend @2.4::IFoo
22 interface IFoo extends @2.4::IFoo {
  /system/tools/hidl/test/version_test/
Android.bp 34 "bad1/version/1.0/IFoo.hal",
41 "bad3/version/2.2/IFoo.hal",
44 "bad3/version/2.4/IFoo.hal",
46 "bad3/version/2.5/IFoo.hal",
47 "bad4/version/1.0/IFoo.hal",
49 "bad4/version/2.2/IFoo.hal",
51 "good/version/1.0/IFoo.hal",
53 "good/version/2.2/IFoo.hal",
57 "good/version/2.4/IFoo.hal",
59 "good/version/2.5/IFoo.hal"
    [all...]
  /system/tools/aidl/
aidl_unittest.cpp 45 R"(place/for/output/p/IFoo.java : \
46 p/IFoo.aidl
48 p/IFoo.aidl :
52 R"(place/for/output/p/IFoo.java : \
53 p/IFoo.aidl
101 EXPECT_NE(nullptr, Parse("IFoo.aidl", "interface IFoo { }", &java_types_));
108 string path = "foo/IFoo.aidl";
111 "interface IFoo { void f(in IBar[] input); }";
117 EXPECT_EQ(nullptr, Parse("IFoo.aidl", "interface IFoo { }", &cpp_types_))
    [all...]
  /external/clang/test/CodeGenCXX/
multi-dim-operator-new.cpp 7 Foo() : iFoo (2) {
10 int iFoo;
42 printf("%d\n", g[i].iFoo);
  /hardware/interfaces/tests/bar/1.0/default/
Bar.h 17 using ::android::hardware::tests::foo::V1_0::IFoo;
26 using BitField = ::android::hardware::tests::foo::V1_0::IFoo::BitField;
27 using MyMask = ::android::hardware::tests::foo::V1_0::IFoo::MyMask;
33 // Methods from ::android::hardware::tests::foo::V1_0::IFoo follow.
41 virtual Return<IFoo::SomeEnum> useAnEnum(IFoo::SomeEnum zzz) override;
42 virtual Return<void> haveAGooberVec(const hidl_vec<IFoo::Goober>& param) override;
43 virtual Return<void> haveAGoober(const IFoo::Goober& g) override;
44 virtual Return<void> haveAGooberArray(const hidl_array<IFoo::Goober, 20 /* 20 */>& lots) override;
49 virtual Return<void> callingDrWho(const IFoo::MultiDimensional& in, callingDrWho_cb _hidl_cb) override
    [all...]
  /hardware/interfaces/tests/foo/1.0/default/
Foo.h 4 #include <android/hardware/tests/foo/1.0/IFoo.h>
17 using ::android::hardware::tests::foo::V1_0::IFoo;
26 struct Foo : public IFoo {
27 // Methods from ::android::hardware::tests::foo::V1_0::IFoo follow.
35 virtual Return<IFoo::SomeEnum> useAnEnum(IFoo::SomeEnum zzz) override;
36 virtual Return<void> haveAGooberVec(const hidl_vec<IFoo::Goober>& param) override;
37 virtual Return<void> haveAGoober(const IFoo::Goober& g) override;
38 virtual Return<void> haveAGooberArray(const hidl_array<IFoo::Goober, 20 /* 20 */>& lots) override;
43 virtual Return<void> callingDrWho(const IFoo::MultiDimensional& in, callingDrWho_cb _hidl_cb) override
    [all...]
  /hardware/interfaces/tests/foo/1.0/default/lib/include/hidl-test/
FooHelper.h 4 #include <android/hardware/tests/foo/1.0/IFoo.h>
13 using hardware::tests::foo::V1_0::IFoo;
20 std::string to_string(const IFoo::StringMatrix5x3 &M);
21 std::string to_string(const IFoo::StringMatrix3x5 &M);
74 std::string QuuxToString(const IFoo::Quux &val);
76 std::string MultiDimensionalToString(const IFoo::MultiDimensional &val);
  /hardware/interfaces/tests/foo/1.0/default/lib/
FooHelper.cpp 5 std::string to_string(const IFoo::StringMatrix5x3 &M) {
9 std::string to_string(const IFoo::StringMatrix3x5 &M) {
17 std::string QuuxToString(const IFoo::Quux &val) {
29 std::string MultiDimensionalToString(const IFoo::MultiDimensional &val) {
  /system/tools/hidl/test/error_test/
Android.bp 37 "interface_semicolon/error/1.0/IFoo.hal",
38 "method_ends_in_semicolon/error/1.0/IFoo.hal",
39 "no_data_outside_interface/error/1.0/IFoo.hal",
40 "no_interface_in_types/error/1.0/IFoo.hal",
42 "no_two_interfaces/error/1.0/IFoo.hal",
43 "same_name_interface/error/1.0/IFoo.hal",
44 "same_package_name/error/1.0/IFoo.hal",
  /external/llvm/test/Assembler/
vbool-cmp.ll 13 ; CHECK: @ifoo
15 define <4 x i1> @ifoo(<4 x i32> %a, <4 x i32> %b) nounwind {
  /system/tools/hidl/test/version_test/bad1/version/2.3/
IBar.hal 19 import @1.0::IFoo;
22 interface IBar extends @1.0::IFoo {
  /system/tools/hidl/test/version_test/bad4/version/2.3/
IBaz.hal 19 import @1.0::IFoo;
22 interface IBaz extends @1.0::IFoo {
  /system/tools/hidl/test/version_test/good/version/2.3/
IBaz.hal 19 import @1.0::IFoo;
21 interface IBaz extends @1.0::IFoo {
  /system/hwservicemanager/
Vintf.h 10 // interfaceName has the format "android.hardware.foo@1.0::IFoo"
  /hardware/interfaces/tests/bar/1.0/
IBar.hal 19 import android.hardware.tests.foo@1.0::IFoo;
26 interface IBar extends android.hardware.tests.foo@1.0::IFoo {
28 typedef android.hardware.tests.foo@1.0::IFoo FunkyAlias;
  /external/mockito/src/main/java/org/mockito/internal/util/reflection/
GenericTypeExtractor.java 19 * 1. Foo implements IFoo[Integer]:
20 * genericTypeOf(Foo.class, Object.class, IFoo.class) returns Integer
23 * genericTypeOf(Foo.class, BaseFoo.class, IFoo.class) returns String
25 * 3. Foo extends BaseFoo; BaseFoo implements IFoo[String]:
  /external/mockito/src/test/java/org/mockitousage/basicapi/
MockingMultipleInterfacesTest.java 23 interface IFoo {}
29 Foo mock = mock(Foo.class, withSettings().extraInterfaces(IFoo.class, IBar.class));
32 assertThat(mock).isInstanceOf(IFoo.class);
40 mock(Foo.class, withSettings().extraInterfaces(IFoo.class, null));
  /system/libhidl/transport/include/hidl/
ServiceManagement.h 39 // e.x.: android.hardware.foo@1.0, IFoo, default
44 // e.x.: android.hardware.foo@1.0::IFoo, default
51 // of an interface, the best way to do this is by calling IFoo::getService()
61 * E.x.: preloadPassthroughService<IFoo>();
  /system/tools/hidl/test/error_test/interface_semicolon/error/1.0/
IFoo.hal 18 interface IFoo {
  /system/tools/hidl/test/error_test/method_ends_in_semicolon/error/1.0/
IFoo.hal 18 interface IFoo {

Completed in 557 milliseconds

1 2 3 4