HomeSort by relevance Sort by last modified time
    Searched defs:AidlMethod (Results 1 - 2 of 2) sorted by null

  /system/tools/aidl/
aidl_language.cpp 94 AidlMethod::AidlMethod(bool oneway, AidlType* type, std::string name,
112 AidlMethod::AidlMethod(bool oneway, AidlType* type, std::string name,
115 : AidlMethod(oneway, type, name, args, line, comments, 0) {
159 AidlMethod* method = local->AsMethod();
aidl_language.h 129 class AidlMethod;
136 virtual AidlMethod* AsMethod() { return nullptr; }
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; }
186 // and GetOutArguments(). AidlMethod retains ownership of the argument
207 DISALLOW_COPY_AND_ASSIGN(AidlMethod);
289 const std::vector<std::unique_ptr<AidlMethod>>& GetMethods() cons
    [all...]

Completed in 562 milliseconds