Searched refs:AidlMethod (Results 1 – 6 of 6) sorted by relevance
/system/tools/aidl/ |
D | aidl_language.h | 129 class AidlMethod; variable 136 virtual AidlMethod* AsMethod() { return nullptr; } in AsMethod() 160 class AidlMethod : public AidlMember { 162 AidlMethod(bool oneway, AidlType* type, std::string name, 165 AidlMethod(bool oneway, AidlType* type, std::string name, 168 virtual ~AidlMethod() = default; 170 AidlMethod* AsMethod() override { return this; } in AsMethod() 207 DISALLOW_COPY_AND_ASSIGN(AidlMethod); 289 const std::vector<std::unique_ptr<AidlMethod>>& GetMethods() const in GetMethods() 311 std::vector<std::unique_ptr<AidlMethod>> methods_;
|
D | aidl_language.cpp | 94 AidlMethod::AidlMethod(bool oneway, AidlType* type, std::string name, in AidlMethod() function in AidlMethod 112 AidlMethod::AidlMethod(bool oneway, AidlType* type, std::string name, in AidlMethod() function in AidlMethod 115 : AidlMethod(oneway, type, name, args, line, comments, 0) { in AidlMethod() 159 AidlMethod* method = local->AsMethod(); in AidlInterface()
|
D | aidl_language_y.yy | 31 AidlMethod* method; 189 $$ = new AidlMethod(false, $1, $2->GetText(), $4, @2.begin.line, 194 $$ = new AidlMethod(true, $2, $3->GetText(), $5, @3.begin.line, 200 $$ = new AidlMethod(false, $1, $2->GetText(), $4, @2.begin.line, 205 $$ = new AidlMethod(true, $2, $3->GetText(), $5, @3.begin.line,
|
D | generate_cpp.cpp | 106 const AidlMethod& method, in BuildArgList() 154 unique_ptr<Declaration> BuildMethodDecl(const AidlMethod& method, in BuildMethodDecl() 253 const AidlMethod& method) { in DefineClientTransaction() 408 const AidlMethod& method, in HandleServerTransaction()
|
D | aidl.cpp | 180 map<string, const AidlMethod*> method_names; in check_types() 355 const std::vector<std::unique_ptr<AidlMethod>>& items) { in check_and_assign_method_ids()
|
D | generate_java_binder.cpp | 262 static void generate_method(const AidlMethod& method, Class* interface, in generate_method()
|