Home | History | Annotate | Download | only in AST

Lines Matching defs:getAttrs

466   AttrVec &getAttrs() {
467 return const_cast<AttrVec&>(const_cast<const Decl*>(this)->getAttrs());
469 const AttrVec &getAttrs() const;
474 getAttrs().push_back(A);
487 return hasAttrs() ? getAttrs().begin() : nullptr;
490 return hasAttrs() ? getAttrs().end() : nullptr;
497 AttrVec &Vec = getAttrs();
519 return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr;
522 return hasAttrs() && hasSpecificAttr<T>(getAttrs());