Home | History | Annotate | Download | only in AST

Lines Matching defs:getAttrs

447   AttrVec &getAttrs() {
448 return const_cast<AttrVec&>(const_cast<const Decl*>(this)->getAttrs());
450 const AttrVec &getAttrs() const;
455 getAttrs().push_back(A);
468 return hasAttrs() ? getAttrs().begin() : nullptr;
471 return hasAttrs() ? getAttrs().end() : nullptr;
478 AttrVec &Vec = getAttrs();
500 return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : nullptr;
503 return hasAttrs() && hasSpecificAttr<T>(getAttrs());