Home
last modified time | relevance | path

Searched refs:oneway_method (Results 1 – 1 of 1) sorted by relevance

/system/tools/aidl/
Daidl_unittest.cpp200 string oneway_method = in TEST_F() local
204 EXPECT_EQ(nullptr, Parse("a/IBar.aidl", oneway_method, &cpp_types_)); in TEST_F()
205 EXPECT_EQ(nullptr, Parse("a/IBar.aidl", oneway_method, &java_types_)); in TEST_F()
209 string oneway_method = "package a; interface IFoo { oneway int f(); }"; in TEST_F() local
210 EXPECT_EQ(nullptr, Parse("a/IFoo.aidl", oneway_method, &cpp_types_)); in TEST_F()
211 EXPECT_EQ(nullptr, Parse("a/IFoo.aidl", oneway_method, &java_types_)); in TEST_F()
215 string oneway_method = "package a; interface IFoo { @nullable int f(); }"; in TEST_F() local
216 EXPECT_EQ(nullptr, Parse("a/IFoo.aidl", oneway_method, &cpp_types_)); in TEST_F()
217 EXPECT_EQ(nullptr, Parse("a/IFoo.aidl", oneway_method, &java_types_)); in TEST_F()
259 string oneway_method = "package a; interface IFoo { oneway void f(int a); }"; in TEST_F() local
[all …]