Searched refs:AttrVec (Results 1 – 19 of 19) sorted by relevance
/external/clang/include/clang/AST/ |
D | AttrIterator.h | 42 typedef SmallVector<Attr*, 2> AttrVec; typedef 47 template <typename SpecificAttr, typename Container = AttrVec>
|
D | DeclBase.h | 441 void setAttrs(const AttrVec& Attrs) { in setAttrs() 444 AttrVec &getAttrs() { in getAttrs() 445 return const_cast<AttrVec&>(const_cast<const Decl*>(this)->getAttrs()); in getAttrs() 447 const AttrVec &getAttrs() const; 454 setAttrs(AttrVec(1, A)); in addAttr() 457 typedef AttrVec::const_iterator attr_iterator; 475 AttrVec &Vec = getAttrs(); in dropAttr() 1030 void setAttrsImpl(const AttrVec& Attrs, ASTContext &Ctx);
|
D | ASTContext.h | 303 llvm::DenseMap<const Decl*, AttrVec*> DeclAttrs; 773 AttrVec& getDeclAttrs(const Decl *D);
|
/external/clang/lib/AST/ |
D | DeclBase.cpp | 336 const AttrVec &V = getAttrs(); in getMaxAlignment() 704 void Decl::setAttrsImpl(const AttrVec &attrs, ASTContext &Ctx) { in setAttrsImpl() 707 AttrVec &AttrBlank = Ctx.getDeclAttrs(this); in setAttrsImpl() 721 const AttrVec &Decl::getAttrs() const { in getAttrs()
|
D | DeclPrinter.cpp | 205 AttrVec &Attrs = D->getAttrs(); in prettyPrintAttributes() 225 AttrVec &Attrs = D->getAttrs(); in prettyPrintPragmas()
|
D | ASTContext.cpp | 782 for (llvm::DenseMap<const Decl*, AttrVec*>::iterator A = DeclAttrs.begin(), in ~ASTContext() 785 A->second->~AttrVec(); in ~ASTContext() 1133 AttrVec& ASTContext::getDeclAttrs(const Decl *D) { in getDeclAttrs() 1134 AttrVec *&Result = DeclAttrs[D]; in getDeclAttrs() 1136 void *Mem = Allocate(sizeof(AttrVec)); in getDeclAttrs() 1137 Result = new (Mem) AttrVec; in getDeclAttrs() 1145 llvm::DenseMap<const Decl*, AttrVec*>::iterator Pos = DeclAttrs.find(D); in eraseDeclAttrs() 1147 Pos->second->~AttrVec(); in eraseDeclAttrs()
|
D | ItaniumMangle.cpp | 696 for (AttrVec::const_reverse_iterator I = FD->getAttrs().rbegin(), in mangleFunctionEncodingBareType()
|
/external/llvm/lib/IR/ |
D | Attributes.cpp | 735 SmallVector<Attribute, 4> AttrVec; in get() local 737 AttrVec.push_back(I->second); in get() 742 AttributeSetNode::get(C, AttrVec))); in get()
|
/external/clang/lib/ARCMigrate/ |
D | ObjCMT.cpp | 1110 static bool MatchTwoAttributeLists(const AttrVec &Attrs1, const AttrVec &Attrs2, in MatchTwoAttributeLists() 1146 const AttrVec &Attrs1 = Decl1->getAttrs(); in AttributesMatch() 1147 const AttrVec &Attrs2 = Decl2->getAttrs(); in AttributesMatch()
|
/external/clang/lib/Index/ |
D | CommentToXML.cpp | 997 const AttrVec &Attrs = DI->CommentDecl->getAttrs(); in visitFullComment()
|
/external/clang/lib/Serialization/ |
D | ASTReaderDecl.cpp | 530 AttrVec Attrs; in VisitDecl() 2461 void ASTReader::ReadAttributes(ModuleFile &F, AttrVec &Attrs, in ReadAttributes() 3852 AttrVec Attrs; in UpdateDecl() 3953 AttrVec Attrs; in UpdateDecl()
|
D | ASTReaderStmt.cpp | 175 AttrVec Attrs; in VisitAttributedStmt()
|
/external/clang/include/clang/Serialization/ |
D | ASTReader.h | 2043 void ReadAttributes(ModuleFile &F, AttrVec &Attrs,
|
/external/clang/lib/Sema/ |
D | SemaStmt.cpp | 3186 const AttrVec *Attrs = nullptr; in BuildReturnStmt()
|
D | SemaDecl.cpp | 2352 AttrVec &NewAttributes = New->getAttrs(); in checkNewAttributesAfterDef() 2481 if (!foundAny) New->setAttrs(AttrVec()); in mergeDeclAttributes() 2545 if (!foundAny) newDecl->setAttrs(AttrVec()); in mergeParamDeclAttributes()
|
D | SemaDeclAttr.cpp | 1989 AttrVec &Attrs = D->getAttrs(); in mergeAvailabilityAttr()
|
D | SemaChecking.cpp | 6891 const AttrVec *Attrs, in CheckReturnValExpr()
|
D | SemaOpenMP.cpp | 619 StringRef Name, const AttrVec *Attrs = nullptr) { in buildVarDecl()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 9457 const AttrVec *Attrs = nullptr,
|