Home | History | Annotate | Download | only in aidl

Lines Matching full:ifoo

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
102 EXPECT_NE(nullptr, Parse("IFoo.aidl", "interface IFoo { }", &java_types_));
109 string path = "foo/IFoo.aidl";
112 "interface IFoo { void f(in IBar[] input); }";
118 EXPECT_EQ(nullptr, Parse("IFoo.aidl", "interface IFoo { }", &cpp_types_));
120 Parse("a/IFoo.aidl", "package a; interface IFoo { }", &cpp_types_));
125 "package a; oneway interface IFoo { void f(out int bar); }";
128 EXPECT_EQ(nullptr, Parse("a/IFoo.aidl", oneway_interface, &cpp_types_));
129 EXPECT_EQ(nullptr, Parse("a/IFoo.aidl", oneway_interface, &java_types_));
135 string oneway_method = "package a; interface IFoo { oneway int f(); }";
136 EXPECT_EQ(nullptr, Parse("a/IFoo.aidl", oneway_method, &cpp_types_));
137 EXPECT_EQ(nullptr, Parse("a/IFoo.aidl", oneway_method, &java_types_));
141 string oneway_method = "package a; interface IFoo { @nullable int f(); }";
142 EXPECT_EQ(nullptr, Parse("a/IFoo.aidl", oneway_method, &cpp_types_));
143 EXPECT_EQ(nullptr, Parse("a/IFoo.aidl", oneway_method, &java_types_));
149 "a/IFoo.aidl",
150 StringPrintf( "package a; interface IFoo {%s String f(); }",
163 "a/IFoo.aidl",
164 StringPrintf( "package a; interface IFoo {%s String f(); }",
175 string oneway_method = "package a; interface IFoo { oneway void f(int a); }";
178 EXPECT_NE(nullptr, Parse("a/IFoo.aidl", oneway_method, &cpp_types_));
179 EXPECT_NE(nullptr, Parse("a/IFoo.aidl", oneway_method, &java_types_));
209 "p/IFoo.aidl", "package p; import one.IBar; interface IFoo {}",
245 "p/IFoo.aidl",
246 "package p; import p.Outer; interface IFoo { void f(in Inner c); }",
256 "p/IFoo.aidl",
257 "package p; interface IFoo { void f(in Inner c); }",
267 options.input_file_name_ = "p/IFoo.aidl";
269 "package p; parcelable IFoo;");
279 Parse("p/IFoo.aidl",
281 interface IFoo {
294 Parse("p/IFoo.aidl",
296 interface IFoo {
308 Parse("p/IFoo.aidl",
310 interface IFoo {
326 Parse("p/IFoo.aidl",
328 interface IFoo {
346 const string input_path = "p/IFoo.aidl";
347 const string input = "package p; import p.Outer; interface IFoo"
363 const string input_path = "p/IFoo.aidl";
364 const string input = "package p; import p.Bar; interface IFoo { }";
390 options.input_file_name_ = "p/IFoo.aidl";
394 "package p; interface IFoo {}");
407 options.input_file_name_ = "p/IFoo.aidl";
412 "package p; interface IFoo {}");