Home
last modified time | relevance | path

Searched refs:Annotation (Results 1 – 12 of 12) sorted by relevance

/system/tools/hidl/
DAnnotation.cpp72 Annotation::Annotation(const std::string& name, AnnotationParamVector* params) in Annotation() function in android::Annotation
75 std::string Annotation::name() const { in name()
79 const AnnotationParamVector &Annotation::params() const { in params()
83 const AnnotationParam *Annotation::getParam(const std::string &name) const { in getParam()
93 void Annotation::dump(Formatter &out) const { in dump()
DAnnotation.h62 struct Annotation { struct
63 Annotation(const std::string& name, AnnotationParamVector* params);
75 DISALLOW_COPY_AND_ASSIGN(Annotation);
DScope.h30 struct Annotation;
58 const std::vector<Annotation*>& annotations() const;
60 void setAnnotations(std::vector<Annotation*>* annotations);
91 std::vector<Annotation*> mAnnotations;
DMethod.h37 struct Annotation;
57 std::vector<Annotation*>* annotations, const Location& location);
68 const std::vector<Annotation *> &annotations() const;
117 std::vector<Annotation *> *mAnnotations;
DScope.cpp111 const std::vector<Annotation*>& Scope::annotations() const { in annotations()
115 void Scope::setAnnotations(std::vector<Annotation*>* annotations) { in setAnnotations()
DMethod.cpp37 std::vector<Annotation*>* annotations, const Location& location) in Method()
73 const std::vector<Annotation *> &Method::annotations() const { in annotations()
DAndroid.bp68 "Annotation.cpp",
Dhidl-gen_y.yy20 #include "Annotation.h"
336 android::Annotation *annotation;
337 std::vector<android::Annotation *> *annotations;
398 $$ = new std::vector<Annotation *>;
410 $$ = new Annotation($2, $3);
DEnumType.h128 const Annotation *findExportAnnotation() const;
DEnumType.cpp648 const Annotation *EnumType::findExportAnnotation() const { in findExportAnnotation()
666 const Annotation *annotation = findExportAnnotation(); in emitExportedHeader()
Dhidl-gen_l.ll32 #include "Annotation.h"
DInterface.cpp565 for (const Annotation* annotation : method->annotations()) { in validateAnnotations()