Lines Matching refs:bar
114 import bar.IAnotherInterface;
130 #include <bar/IAnotherInterface.h>
138 android::sp<bar::IAnotherInterface>* returned_value) = 0;
145 `import bar.IAnotherInterface` causes aidl-cpp to generate
146 `#include <bar/IAnotherInterface.h>`.
160 android::sp<bar::IAnotherInterface>* returned_value) override {
210 // Generator will assume bar/foo.h declares class
212 parcelable ExampleParcelable cpp_header "bar/foo.h";
245 Consider an AIDL type `in @nullable List<String> bar`. This type
248 type `unique_ptr<vector<unique_ptr<String16>>>* bar`. In this case:
250 - `bar` is never null
251 - `*bar` might be null
252 - `(*bar)->empty()` could be true
253 - `(**bar)[0]` could be null (and so on)