Home | History | Annotate | Download | only in aidl

Lines Matching refs:AidlMethod

142 class AidlMethod;
150 virtual AidlMethod* AsMethod() { return nullptr; }
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; }
223 // and GetOutArguments(). AidlMethod retains ownership of the argument
244 DISALLOW_COPY_AND_ASSIGN(AidlMethod);
329 const std::vector<std::unique_ptr<AidlMethod>>& GetMethods() const
353 std::vector<std::unique_ptr<AidlMethod>> methods_;