Searched refs:AidlMethod (Results 1 – 6 of 6) sorted by relevance
/system/tools/aidl/ |
D | aidl_language.h | 142 class AidlMethod; variable 150 virtual AidlMethod* AsMethod() { return nullptr; } in AsMethod() 197 class AidlMethod : public AidlMember { 199 AidlMethod(bool oneway, AidlType* type, std::string name, 202 AidlMethod(bool oneway, AidlType* type, std::string name, 205 virtual ~AidlMethod() = default; 207 AidlMethod* AsMethod() override { return this; } in AsMethod() 244 DISALLOW_COPY_AND_ASSIGN(AidlMethod); 329 const std::vector<std::unique_ptr<AidlMethod>>& GetMethods() const in GetMethods() 353 std::vector<std::unique_ptr<AidlMethod>> methods_;
|
D | aidl_language.cpp | 132 AidlMethod::AidlMethod(bool oneway, AidlType* type, std::string name, in AidlMethod() function in AidlMethod 150 AidlMethod::AidlMethod(bool oneway, AidlType* type, std::string name, in AidlMethod() function in AidlMethod 153 : AidlMethod(oneway, type, name, args, line, comments, 0) { in AidlMethod() 197 AidlMethod* method = local->AsMethod(); in AidlInterface()
|
D | aidl_language_y.yy | 31 AidlMethod* method; 208 $$ = new AidlMethod(false, $1, $2->GetText(), $4, @2.begin.line, 213 $$ = new AidlMethod(true, $2, $3->GetText(), $5, @3.begin.line, 219 $$ = new AidlMethod(false, $1, $2->GetText(), $4, @2.begin.line, 224 $$ = new AidlMethod(true, $2, $3->GetText(), $5, @3.begin.line,
|
D | generate_cpp.cpp | 107 const AidlMethod& method, in BuildArgList() 155 unique_ptr<Declaration> BuildMethodDecl(const AidlMethod& method, in BuildMethodDecl() 254 const AidlMethod& method) { in DefineClientTransaction() 420 const AidlMethod& method, in HandleServerTransaction()
|
D | aidl.cpp | 186 map<string, const AidlMethod*> method_names; in check_types() 370 const std::vector<std::unique_ptr<AidlMethod>>& items) { in check_and_assign_method_ids()
|
D | generate_java_binder.cpp | 261 static void generate_method(const AidlMethod& method, Class* interface, in generate_method()
|