Searched refs:oneway_method (Results 1 – 1 of 1) sorted by relevance
| /system/tools/aidl/ |
| D | aidl_unittest.cpp | 116 string oneway_method = in TEST_F() local 120 EXPECT_EQ(nullptr, Parse("a/IBar.aidl", oneway_method, &cpp_types_)); in TEST_F() 121 EXPECT_EQ(nullptr, Parse("a/IBar.aidl", oneway_method, &java_types_)); in TEST_F() 125 string oneway_method = "package a; interface IFoo { oneway int f(); }"; in TEST_F() local 126 EXPECT_EQ(nullptr, Parse("a/IFoo.aidl", oneway_method, &cpp_types_)); in TEST_F() 127 EXPECT_EQ(nullptr, Parse("a/IFoo.aidl", oneway_method, &java_types_)); in TEST_F() 131 string oneway_method = "package a; interface IFoo { @nullable int f(); }"; in TEST_F() local 132 EXPECT_EQ(nullptr, Parse("a/IFoo.aidl", oneway_method, &cpp_types_)); in TEST_F() 133 EXPECT_EQ(nullptr, Parse("a/IFoo.aidl", oneway_method, &java_types_)); in TEST_F() 165 string oneway_method = "package a; interface IFoo { oneway void f(int a); }"; in TEST_F() local [all …]
|