Searched refs:ObjCMethodList (Results 1 – 8 of 8) sorted by relevance
| /freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | ObjCMethodList.h | 25 struct ObjCMethodList { struct 30 llvm::PointerIntPair<ObjCMethodList *, 2> NextAndExtraBits; argument 32 ObjCMethodList() { } in ObjCMethodList() function 33 ObjCMethodList(ObjCMethodDecl *M) in ObjCMethodList() function 35 ObjCMethodList(const ObjCMethodList &L) in ObjCMethodList() argument 39 ObjCMethodList &operator=(const ObjCMethodList &L) { 45 ObjCMethodList *getNext() const { return NextAndExtraBits.getPointer(); } in getNext() argument 47 void setNext(ObjCMethodList *L) { NextAndExtraBits.setPointer(L); } in setNext() argument
|
| H A D | SemaObjC.h | 212 llvm::DenseMap<Selector, std::pair<ObjCMethodList, ObjCMethodList>>; 450 void addMethodToGlobalList(ObjCMethodList *List, ObjCMethodDecl *Method);
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaDeclObjC.cpp | 3327 void SemaObjC::addMethodToGlobalList(ObjCMethodList *List, in addMethodToGlobalList() 3345 ObjCMethodList *Previous = List; in addMethodToGlobalList() 3346 ObjCMethodList *ListWithSameDeclaration = nullptr; in addMethodToGlobalList() 3416 ObjCMethodList *Mem = SemaRef.BumpAlloc.Allocate<ObjCMethodList>(); in addMethodToGlobalList() 3420 auto *List = new (Mem) ObjCMethodList(*ListWithSameDeclaration); in addMethodToGlobalList() 3427 Previous->setNext(new (Mem) ObjCMethodList(Method)); in addMethodToGlobalList() 3456 ObjCMethodList &Entry = instance ? Lists.first : Lists.second; in AddMethodToGlobalPool() 3528 ObjCMethodList &MethList = InstanceFirst ? Pos->second.first : in CollectMultipleMethodsInGlobalPool() 3530 for (ObjCMethodList *M = &MethList; M; M = M->getNext()) in CollectMultipleMethodsInGlobalPool() 3544 ObjCMethodList &MethList2 = InstanceFirst ? Pos->second.second : in CollectMultipleMethodsInGlobalPool() [all …]
|
| H A D | SemaExprObjC.cpp | 1182 ObjCMethodList &MethList) { in HelperToDiagnoseMismatchedMethodsInGlobalPool() 1183 ObjCMethodList *M = &MethList; in HelperToDiagnoseMismatchedMethodsInGlobalPool() 1221 ObjCMethodList &InstMethList = b->second.first; in DiagnoseMismatchedSelectors() 1227 ObjCMethodList &ClsMethList = b->second.second; in DiagnoseMismatchedSelectors() 1235 ObjCMethodList &MethList, in LookupDirectMethodInMethodList() 1239 ObjCMethodList *M = &MethList; in LookupDirectMethodInMethodList()
|
| H A D | SemaCodeComplete.cpp | 8401 for (ObjCMethodList *MethList = &M->second.second; in AddClassMessageCompletions() 8574 for (ObjCMethodList *MethList = &M->second.first; in CodeCompleteObjCInstanceMessage() 10008 for (ObjCMethodList *MethList = IsInstanceMethod ? &M->second.first in CodeCompleteObjCMethodDeclSelector()
|
| /freebsd/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTWriter.cpp | 3539 ObjCMethodList Instance, Factory; 3559 for (const ObjCMethodList *Method = &Methods.Instance; Method; in EmitKeyDataLength() 3563 for (const ObjCMethodList *Method = &Methods.Factory; Method; in EmitKeyDataLength() 3594 for (const ObjCMethodList *Method = &Methods.Instance; Method; in EmitData() 3600 for (const ObjCMethodList *Method = &Methods.Factory; Method; in EmitData() 3621 for (const ObjCMethodList *Method = &Methods.Instance; Method; in EmitData() 3625 for (const ObjCMethodList *Method = &Methods.Factory; Method; in EmitData() 3634 static bool ShouldWriteMethodListNode(const ObjCMethodList *Node) { in ShouldWriteMethodListNode() 3668 ObjCMethodList(), in WriteSelectors() 3669 ObjCMethodList() in WriteSelectors() [all …]
|
| H A D | ASTReader.cpp | 4548 ObjCMethodList &Start = Method->isInstanceMethod()? Known->second.first in moveMethodToBackOfGlobalList() 4551 for (ObjCMethodList *List = &Start; List; List = List->getNext()) { in moveMethodToBackOfGlobalList() 9212 ObjCMethodList &List) { in addMethodsToPool()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Testing/Demangle/ |
| H A D | DemangleTestCases.inc | 5273 …ObjCMethodList, clang::ObjCMethodList>, llvm::DenseMapInfo<clang::Selector>, llvm::DenseMapInfo<st… 5274 …ObjCMethodList, clang::ObjCMethodList>, llvm::DenseMapInfo<clang::Selector>, llvm::DenseMapInfo<st… 5275 …:ObjCMethodList, clang::ObjCMethodList>, llvm::DenseMapInfo<clang::Selector>, llvm::DenseMapInfo<s…
|