HomeSort by relevance Sort by last modified time
    Searched refs:AttrVec (Results 1 - 17 of 17) sorted by null

  /external/clang/include/clang/AST/
AttrIterator.h 41 /// AttrVec - A vector of Attr, which is how they are stored on the AST.
42 typedef SmallVector<Attr*, 2> AttrVec;
45 /// specific_attr_iterator - Iterates over a subrange of an AttrVec, only
47 template <typename SpecificAttr, typename Container = AttrVec>
DeclBase.h 426 void setAttrs(const AttrVec& Attrs) {
429 AttrVec &getAttrs() {
430 return const_cast<AttrVec&>(const_cast<const Decl*>(this)->getAttrs());
432 const AttrVec &getAttrs() const;
439 setAttrs(AttrVec(1, A));
442 typedef AttrVec::const_iterator attr_iterator;
457 AttrVec &Vec = getAttrs();
902 void setAttrsImpl(const AttrVec& Attrs, ASTContext &Ctx);
    [all...]
ASTContext.h 272 llvm::DenseMap<const Decl*, AttrVec*> DeclAttrs;
613 AttrVec& getDeclAttrs(const Decl *D);
    [all...]
  /external/clang/lib/AST/
DeclBase.cpp 275 const AttrVec &V = getAttrs();
579 void Decl::setAttrsImpl(const AttrVec &attrs, ASTContext &Ctx) {
582 AttrVec &AttrBlank = Ctx.getDeclAttrs(this);
596 const AttrVec &Decl::getAttrs() const {
    [all...]
DeclPrinter.cpp 192 AttrVec &Attrs = D->getAttrs();
193 for (AttrVec::const_iterator i=Attrs.begin(), e=Attrs.end(); i!=e; ++i) {
    [all...]
ASTContext.cpp 765 for (llvm::DenseMap<const Decl*, AttrVec*>::iterator A = DeclAttrs.begin(),
768 A->second->~AttrVec();
    [all...]
  /external/llvm/lib/IR/
Attributes.cpp 565 SmallVector<Attribute, 4> AttrVec;
567 AttrVec.push_back(I->second);
572 AttributeSetNode::get(C, AttrVec)));
    [all...]
  /external/clang/lib/Analysis/
ThreadSafety.cpp     [all...]
  /external/clang/lib/Sema/
SemaDeclObjC.cpp     [all...]
SemaTemplateInstantiateDecl.cpp 125 for (AttrVec::const_iterator i = Tmpl->attr_begin(), e = Tmpl->attr_end();
    [all...]
SemaDecl.cpp     [all...]
SemaDeclAttr.cpp     [all...]
  /external/clang/include/clang/Serialization/
ASTReader.h     [all...]
  /external/clang/tools/libclang/
IndexingContext.cpp 69 for (AttrVec::const_iterator AttrI = D->attr_begin(), AttrE = D->attr_end();
    [all...]
CIndex.cpp     [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 373 AttrVec Attrs;
    [all...]
ASTReaderStmt.cpp 174 AttrVec Attrs;
    [all...]

Completed in 1336 milliseconds