Home
last modified time | relevance | path

Searched refs:getAttrs (Results 1 – 19 of 19) sorted by relevance

/external/clang/include/clang/AST/
DDeclBase.h404 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()
DStmt.h826 ArrayRef<const Attr*> getAttrs() const { in getAttrs() function
/external/clang/lib/Analysis/
DThreadSafety.cpp1657 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/
DIndexingContext.h262 const CXIdxAttrInfo *const *getAttrs() const { in getAttrs() function
DIndexingContext.cpp844 EntityInfo.attributes = EntityInfo.AttrList->getAttrs(); in getEntityInfo()
/external/clang/include/clang/Sema/
DDeclSpec.h1309 const AttributeList *getAttrs() const { in getAttrs() function
1889 if (getTypeObject(i).getAttrs()) in hasAttributes()
/external/clang/lib/AST/
DStmtPrinter.cpp174 for (ArrayRef<const Attr*>::iterator it = Node->getAttrs().begin(), in VisitAttributedStmt()
175 end = Node->getAttrs().end(); in VisitAttributedStmt()
DDeclPrinter.cpp193 AttrVec &Attrs = D->getAttrs(); in prettyPrintAttributes()
DDeclBase.cpp568 const AttrVec &Decl::getAttrs() const { in getAttrs() function in Decl
/external/clang/lib/Sema/
DSemaType.cpp1725 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()
DAnalysisBasedWarnings.cpp785 if (hasSpecificAttr<FallThroughAttr>(AS->getAttrs())) in asFallThroughAttr()
DSemaDeclObjC.cpp2495 const AttrVec &D = IMD->getAttrs(); in containsInvalidMethodImplAttribute()
2933 containsInvalidMethodImplAttribute(IMD, ObjCMethod->getAttrs())) { in ActOnMethodDeclaration()
DSemaDeclAttr.cpp2035 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()
DTreeTransform.h5201 S->getAttrs(), in TransformAttributedStmt()
DSemaDecl.cpp1806 AttrVec &NewAttributes = New->getAttrs(); in checkNewAttributesAfterDef()
/external/clang/lib/Serialization/
DASTWriterDecl.cpp154 Writer.WriteAttributes(ArrayRef<const Attr*>(D->getAttrs().begin(), in VisitDecl()
155 D->getAttrs().size()), Record); in VisitDecl()
DASTWriterStmt.cpp112 Record.push_back(S->getAttrs().size()); in VisitAttributedStmt()
113 Writer.WriteAttributes(S->getAttrs(), Record); in VisitAttributedStmt()
/external/webkit/Source/WebCore/html/parser/
DHTMLTreeBuilder.cpp652 template<QualifiedName** getAttrs(size_t* length)>
659 QualifiedName** attrs = getAttrs(&length); in adjustAttributes()
/external/clang/lib/Parse/
DParseObjc.cpp866 const_cast<AttributeList*>(D.getTypeObject(i).getAttrs())); in takeDeclAttributes()