Home
last modified time | relevance | path

Searched refs:AttrList (Results 1 – 25 of 30) sorted by relevance

12

/external/llvm/lib/VMCore/
DAttributes.cpp211 AttrListPtr::AttrListPtr(AttributeListImpl *LI) : AttrList(LI) { in AttrListPtr()
215 AttrListPtr::AttrListPtr(const AttrListPtr &P) : AttrList(P.AttrList) { in AttrListPtr()
216 if (AttrList) AttrList->AddRef(); in AttrListPtr()
221 if (AttrList == RHS.AttrList) return *this; in operator =()
222 if (AttrList) AttrList->DropRef(); in operator =()
223 AttrList = RHS.AttrList; in operator =()
224 if (AttrList) AttrList->AddRef(); in operator =()
229 if (AttrList) AttrList->DropRef(); in ~AttrListPtr()
236 return AttrList ? AttrList->Attrs.size() : 0; in getNumSlots()
242 assert(AttrList && Slot < AttrList->Attrs.size() && "Slot # out of range!"); in getSlot()
[all …]
/external/llvm/include/llvm/
DAttributes.h260 AttributeListImpl *AttrList; variable
262 AttrListPtr() : AttrList(0) {} in AttrListPtr()
331 { return AttrList == RHS.AttrList; }
333 { return AttrList != RHS.AttrList; }
344 return AttrList; in getRawPointer()
354 return AttrList == 0; in isEmpty()
/external/clang/lib/Sema/
DSemaStmtAttr.cpp36 StmtResult Sema::ProcessStmtAttributes(Stmt *S, AttributeList *AttrList, in ProcessStmtAttributes() argument
39 for (const AttributeList* l = AttrList; l; l = l->getNext()) { in ProcessStmtAttributes()
DAndroid.mk9 AttrList.inc \
DSemaDeclObjC.cpp380 SourceLocation EndProtoLoc, AttributeList *AttrList) { in ActOnStartClassInterface() argument
408 if (AttrList) in ActOnStartClassInterface()
409 ProcessDeclAttributeList(TUScope, IDecl, AttrList); in ActOnStartClassInterface()
589 AttributeList *AttrList) { in ActOnStartProtocolInterface() argument
628 if (AttrList) in ActOnStartProtocolInterface()
629 ProcessDeclAttributeList(TUScope, PDecl, AttrList); in ActOnStartProtocolInterface()
2696 AttributeList *AttrList, tok::ObjCKeywordKind MethodDeclKind, in ActOnMethodDeclaration() argument
2819 if (AttrList) in ActOnMethodDeclaration()
2820 ProcessDeclAttributeList(TUScope, ObjCMethod, AttrList); in ActOnMethodDeclaration()
/external/clang/include/clang/Basic/
DMakefile8 DiagnosticIndexName.inc DiagnosticGroups.inc AttrList.inc arm_neon.inc \
45 $(ObjDir)/AttrList.inc.tmp : Attr.td $(CLANG_TBLGEN) $(ObjDir)/.dir
DCMakeLists.txt25 clang_tablegen(AttrList.inc -gen-clang-attr-list
/external/clang/lib/Edit/
DAndroid.mk16 AttrList.inc \
/external/clang/lib/StaticAnalyzer/Frontend/
DAndroid.mk7 AttrList.inc \
/external/clang/lib/Rewrite/
DAndroid.mk13 AttrList.inc \
/external/clang/include/clang/Sema/
DDeclSpec.h1002 AttributeList *AttrList; member
1285 return Common.AttrList; in getAttrs()
1289 return Common.AttrList; in getAttrListRef()
1305 I.Ptr.AttrList = 0; in getPointer()
1318 I.Ref.AttrList = 0; in getReference()
1331 I.Arr.AttrList = 0; in getArray()
1371 I.Cls.AttrList = 0; in getBlockPointer()
1382 I.Mem.AttrList = 0; in getMemberPointer()
1395 I.Common.AttrList = 0; in getParen()
DAttributeList.h441 AttributeList *AttrList; member
445 : AttrList(attrList), Range(range), HasAttr (hasAttr) { in CXX0XAttributeList()
448 : AttrList(0), Range(), HasAttr(false) { in CXX0XAttributeList()
DSema.h1336 AttributeList *AttrList);
1988 const AttributeList *AttrList);
2946 AttributeList *AttrList);
2974 AttributeList *AttrList);
3005 AttributeList *AttrList,
3018 AttributeList *AttrList,
4064 AttributeList *AttrList);
5737 AttributeList *AttrList);
5755 AttributeList *AttrList);
5886 AttributeList *AttrList, tok::ObjCKeywordKind MethodImplKind,
/external/clang/lib/Parse/
DAndroid.mk9 AttrList.inc \
/external/clang/lib/Serialization/
DAndroid.mk13 AttrList.inc \
/external/clang/
Dclang-tblgen-rules.mk19 ifneq ($(findstring AttrList.inc,$(TBLGEN_TABLES)),)
20 LOCAL_GENERATED_SOURCES += $(intermediates)/include/clang/Basic/AttrList.inc
21 $(intermediates)/include/clang/Basic/AttrList.inc: TBLGEN_LOCAL_MODULE := $(LOCAL_MODULE)
22 $(intermediates)/include/clang/Basic/AttrList.inc: $(CLANG_ROOT_PATH)/include/clang/Basic/Attr.td $…
/external/clang/lib/Analysis/
DAndroid.mk9 AttrList.inc \
/external/clang/lib/ARCMigrate/
DAndroid.mk10 AttrList.inc \
/external/clang/lib/StaticAnalyzer/Core/
DAndroid.mk4 AttrList.inc \
/external/clang/lib/Frontend/
DAndroid.mk9 AttrList.inc \
/external/clang/lib/CodeGen/
DAndroid.mk4 AttrList.inc \
/external/clang/lib/AST/
DAndroid.mk10 AttrList.inc \
/external/clang/lib/StaticAnalyzer/Checkers/
DAndroid.mk5 AttrList.inc \
/external/clang/utils/TableGen/
DClangAttrEmitter.cpp796 const std::vector<Record*> &AttrList) { in EmitAttrList() argument
797 std::vector<Record*>::const_iterator i = AttrList.begin(), e = AttrList.end(); in EmitAttrList()
/external/clang/tools/libclang/
DIndexingContext.cpp843 EntityInfo.AttrList = AttrListInfo::create(D, *this); in getEntityInfo()
844 EntityInfo.attributes = EntityInfo.AttrList->getAttrs(); in getEntityInfo()
845 EntityInfo.numAttributes = EntityInfo.AttrList->getNumAttrs(); in getEntityInfo()

12