Searched defs:AidlType (Results 1 - 2 of 2) sorted by relevance

/system/tools/aidl/
H A Daidl_language.cpp40 AidlType::AidlType(const std::string& name, unsigned line, function in class:AidlType
47 string AidlType::ToString() const {
51 AidlArgument::AidlArgument(AidlArgument::Direction direction, AidlType* type,
59 AidlArgument::AidlArgument(AidlType* type, std::string name, unsigned line)
94 AidlMethod::AidlMethod(bool oneway, AidlType* type, std::string name,
112 AidlMethod::AidlMethod(bool oneway, AidlType* type, std::string name,
H A Daidl_language.h47 class AidlType : public AidlNode { class in inherits:AidlNode
56 AidlType(const std::string& name, unsigned line,
58 virtual ~AidlType() = default;
76 void Annotate(AidlType::Annotation annotation) { annotations_ = annotation; }
95 DISALLOW_COPY_AND_ASSIGN(AidlType);
102 AidlArgument(AidlArgument::Direction direction, AidlType* type,
104 AidlArgument(AidlType* type, std::string name, unsigned line);
114 const AidlType& GetType() const { return *type_; }
115 AidlType* GetMutableType() { return type_.get(); }
120 std::unique_ptr<AidlType> type
[all...]

Completed in 119 milliseconds