Searched refs:getAttrs (Results 1 – 19 of 19) sorted by relevance
/external/clang/include/clang/AST/ |
D | DeclBase.h | 404 AttrVec &getAttrs() { in getAttrs() function 405 return const_cast<AttrVec&>(const_cast<const Decl*>(this)->getAttrs()); in getAttrs() 407 const AttrVec &getAttrs() const; 413 getAttrs().push_back(A); in addAttr() 423 return hasAttrs() ? getAttrs().begin() : 0; in attr_begin() 426 return hasAttrs() ? getAttrs().end() : 0; in attr_end() 433 AttrVec &Attrs = getAttrs(); in dropAttr() 456 return hasAttrs() ? getSpecificAttr<T>(getAttrs()) : 0; in getAttr() 459 return hasAttrs() && hasSpecificAttr<T>(getAttrs()); in hasAttr() 465 return hasAttrs() ? getMaxAttrAlignment(getAttrs(), getASTContext()) : 0; in getMaxAlignment()
|
D | Stmt.h | 826 ArrayRef<const Attr*> getAttrs() const { in getAttrs() function
|
/external/clang/lib/Analysis/ |
D | ThreadSafety.cpp | 1657 AttrVec &ArgAttrs = FunDecl->getAttrs(); in getEdgeLockset() 1822 const AttrVec &ArgAttrs = D->getAttrs(); in checkDereference() 1841 const AttrVec &ArgAttrs = D->getAttrs(); in checkAccess() 1858 const AttrVec &ArgAttrs = D->getAttrs(); in handleCall() 2182 const AttrVec &ArgAttrs = D->getAttrs(); in runAnalysis()
|
/external/clang/tools/libclang/ |
D | IndexingContext.h | 262 const CXIdxAttrInfo *const *getAttrs() const { in getAttrs() function
|
D | IndexingContext.cpp | 844 EntityInfo.attributes = EntityInfo.AttrList->getAttrs(); in getEntityInfo()
|
/external/clang/include/clang/Sema/ |
D | DeclSpec.h | 1309 const AttributeList *getAttrs() const { in getAttrs() function 1889 if (getTypeObject(i).getAttrs()) in hasAttributes()
|
/external/clang/lib/AST/ |
D | StmtPrinter.cpp | 174 for (ArrayRef<const Attr*>::iterator it = Node->getAttrs().begin(), in VisitAttributedStmt() 175 end = Node->getAttrs().end(); in VisitAttributedStmt()
|
D | DeclPrinter.cpp | 193 AttrVec &Attrs = D->getAttrs(); in prettyPrintAttributes()
|
D | DeclBase.cpp | 568 const AttrVec &Decl::getAttrs() const { in getAttrs() function in Decl
|
/external/clang/lib/Sema/ |
D | SemaType.cpp | 1725 for (const AttributeList *attr = chunk.getAttrs(); attr; in inferARCWriteback() 2634 if (AttributeList *attrs = const_cast<AttributeList*>(DeclType.getAttrs())) in GetFullTypeForDeclarator() 2865 for (const AttributeList *attr = chunk.getAttrs(); attr; in transferARCOwnershipToDeclaratorChunk() 3195 fillAttributedTypeLoc(TL, Chunk.getAttrs()); in VisitAttributedTypeLoc() 3317 fillAttributedTypeLoc(TL, D.getTypeObject(i).getAttrs()); in GetTypeSourceInfoForDeclarator()
|
D | AnalysisBasedWarnings.cpp | 785 if (hasSpecificAttr<FallThroughAttr>(AS->getAttrs())) in asFallThroughAttr()
|
D | SemaDeclObjC.cpp | 2495 const AttrVec &D = IMD->getAttrs(); in containsInvalidMethodImplAttribute() 2933 containsInvalidMethodImplAttribute(IMD, ObjCMethod->getAttrs())) { in ActOnMethodDeclaration()
|
D | SemaDeclAttr.cpp | 2035 AttrVec &Attrs = D->getAttrs(); in mergeAvailabilityAttr() 4595 ::checkUnusedDeclAttributes(*this, D.getTypeObject(i).getAttrs()); in checkUnusedDeclAttributes() 4705 if (const AttributeList *Attrs = PD.getTypeObject(i).getAttrs()) in ProcessDeclAttributes()
|
D | TreeTransform.h | 5201 S->getAttrs(), in TransformAttributedStmt()
|
D | SemaDecl.cpp | 1806 AttrVec &NewAttributes = New->getAttrs(); in checkNewAttributesAfterDef()
|
/external/clang/lib/Serialization/ |
D | ASTWriterDecl.cpp | 154 Writer.WriteAttributes(ArrayRef<const Attr*>(D->getAttrs().begin(), in VisitDecl() 155 D->getAttrs().size()), Record); in VisitDecl()
|
D | ASTWriterStmt.cpp | 112 Record.push_back(S->getAttrs().size()); in VisitAttributedStmt() 113 Writer.WriteAttributes(S->getAttrs(), Record); in VisitAttributedStmt()
|
/external/webkit/Source/WebCore/html/parser/ |
D | HTMLTreeBuilder.cpp | 652 template<QualifiedName** getAttrs(size_t* length)> 659 QualifiedName** attrs = getAttrs(&length); in adjustAttributes()
|
/external/clang/lib/Parse/ |
D | ParseObjc.cpp | 866 const_cast<AttributeList*>(D.getTypeObject(i).getAttrs())); in takeDeclAttributes()
|