Home
last modified time | relevance | path

Searched refs:AidlAnnotatable (Results 1 – 5 of 5) sorted by relevance

/system/tools/aidl/
Dgenerate_java.h42 std::vector<std::string> generate_java_annotations(const AidlAnnotatable& a);
Daidl_language.cpp113 AidlAnnotatable::AidlAnnotatable(const AidlLocation& location) : AidlNode(location) {} in AidlAnnotatable() function in AidlAnnotatable
115 bool AidlAnnotatable::IsNullable() const { in IsNullable()
119 bool AidlAnnotatable::IsUtf8InCpp() const { in IsUtf8InCpp()
123 bool AidlAnnotatable::IsUnsupportedAppUsage() const { in IsUnsupportedAppUsage()
127 bool AidlAnnotatable::IsSystemApi() const { in IsSystemApi()
131 bool AidlAnnotatable::IsStableParcelable() const { in IsStableParcelable()
135 string AidlAnnotatable::ToString() const { in ToString()
148 : AidlAnnotatable(location), in AidlTypeSpecifier()
179 string annotations = AidlAnnotatable::ToString(); in Signature()
611 : AidlAnnotatable(location), name_(name), comments_(comments), package_(package) {} in AidlDefinedType()
Daidl_language.h163 class AidlAnnotatable : public AidlNode {
165 AidlAnnotatable(const AidlLocation& location);
167 AidlAnnotatable(const AidlAnnotatable&) = default;
168 AidlAnnotatable(AidlAnnotatable&&) = default;
169 virtual ~AidlAnnotatable() = default;
189 class AidlTypeSpecifier final : public AidlAnnotatable {
491 class AidlDefinedType : public AidlAnnotatable {
Daidl_apicheck.cpp34 static bool have_compatible_annotations(const AidlAnnotatable& older, in have_compatible_annotations()
35 const AidlAnnotatable& newer) { in have_compatible_annotations()
Dgenerate_java.cpp243 std::vector<std::string> generate_java_annotations(const AidlAnnotatable& a) { in generate_java_annotations()