Lines Matching refs:AnnotationParam
27 AnnotationParam::AnnotationParam(const std::string& name) : mName(name) {} in AnnotationParam() function in android::AnnotationParam
29 const std::string& AnnotationParam::getName() const { in getName()
33 std::vector<ConstantExpression*> AnnotationParam::getConstantExpressions() { in getConstantExpressions()
34 const auto& constRet = static_cast<const AnnotationParam*>(this)->getConstantExpressions(); in getConstantExpressions()
41 std::vector<const ConstantExpression*> AnnotationParam::getConstantExpressions() const { in getConstantExpressions()
45 std::string AnnotationParam::getSingleString() const { in getSingleString()
57 bool AnnotationParam::getSingleBool() const { in getSingleBool()
72 : AnnotationParam(name), mValues(values) {} in StringAnnotationParam()
85 : AnnotationParam(name), mValues(values) {} in ConstantExpressionAnnotationParam()
118 const AnnotationParam *Annotation::getParam(const std::string &name) const { in getParam()
159 const AnnotationParam* param = mParams->at(i); in dump()