Home
last modified time | relevance | path

Searched refs:ObjCMethodList (Results 1 – 8 of 8) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DObjCMethodList.h25 struct ObjCMethodList { struct
30 llvm::PointerIntPair<ObjCMethodList *, 2> NextAndExtraBits; argument
32 ObjCMethodList() { } in ObjCMethodList() argument
33 ObjCMethodList(ObjCMethodDecl *M) in ObjCMethodList() function
35 ObjCMethodList(const ObjCMethodList &L) in ObjCMethodList() function
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 DExternalSemaSource.h33 struct ObjCMethodList;
H A DSema.h1415 typedef std::pair<ObjCMethodList, ObjCMethodList> GlobalMethods;
4459 void addMethodToGlobalList(ObjCMethodList *List, ObjCMethodDecl *Method);
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaDeclObjC.cpp3303 void Sema::addMethodToGlobalList(ObjCMethodList *List, in addMethodToGlobalList()
3321 ObjCMethodList *Previous = List; in addMethodToGlobalList()
3322 ObjCMethodList *ListWithSameDeclaration = nullptr; in addMethodToGlobalList()
3392 ObjCMethodList *Mem = BumpAlloc.Allocate<ObjCMethodList>(); in addMethodToGlobalList()
3396 auto *List = new (Mem) ObjCMethodList(*ListWithSameDeclaration); in addMethodToGlobalList()
3403 Previous->setNext(new (Mem) ObjCMethodList(Method)); in addMethodToGlobalList()
3435 ObjCMethodList &Entry = instance ? Pos->second.first : Pos->second.second; in AddMethodToGlobalPool()
3508 ObjCMethodList &MethList = InstanceFirst ? Pos->second.first : in CollectMultipleMethodsInGlobalPool()
3510 for (ObjCMethodList *M = &MethList; M; M = M->getNext()) in CollectMultipleMethodsInGlobalPool()
3524 ObjCMethodList &MethList2 = InstanceFirst ? Pos->second.second : in CollectMultipleMethodsInGlobalPool()
[all …]
H A DSemaExprObjC.cpp1180 ObjCMethodList &MethList) { in HelperToDiagnoseMismatchedMethodsInGlobalPool()
1181 ObjCMethodList *M = &MethList; in HelperToDiagnoseMismatchedMethodsInGlobalPool()
1218 ObjCMethodList &InstMethList = b->second.first; in DiagnoseMismatchedSelectors()
1224 ObjCMethodList &ClsMethList = b->second.second; in DiagnoseMismatchedSelectors()
1232 ObjCMethodList &MethList, in LookupDirectMethodInMethodList()
1236 ObjCMethodList *M = &MethList; in LookupDirectMethodInMethodList()
H A DSemaCodeComplete.cpp7539 for (ObjCMethodList *MethList = &M->second.second; in AddClassMessageCompletions()
7711 for (ObjCMethodList *MethList = &M->second.first; in CodeCompleteObjCInstanceMessage()
9112 for (ObjCMethodList *MethList = IsInstanceMethod ? &M->second.first in CodeCompleteObjCMethodDeclSelector()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTWriter.cpp3000 ObjCMethodList Instance, Factory;
3018 for (const ObjCMethodList *Method = &Methods.Instance; Method; in EmitKeyDataLength()
3022 for (const ObjCMethodList *Method = &Methods.Factory; Method; in EmitKeyDataLength()
3053 for (const ObjCMethodList *Method = &Methods.Instance; Method; in EmitData()
3059 for (const ObjCMethodList *Method = &Methods.Factory; Method; in EmitData()
3080 for (const ObjCMethodList *Method = &Methods.Instance; Method; in EmitData()
3084 for (const ObjCMethodList *Method = &Methods.Factory; Method; in EmitData()
3121 ObjCMethodList(), in WriteSelectors()
3122 ObjCMethodList() in WriteSelectors()
3133 for (ObjCMethodList *M = &Data.Instance; in WriteSelectors()
[all …]
H A DASTReader.cpp4019 ObjCMethodList &Start = Method->isInstanceMethod()? Known->second.first in moveMethodToBackOfGlobalList()
4022 for (ObjCMethodList *List = &Start; List; List = List->getNext()) { in moveMethodToBackOfGlobalList()
8197 ObjCMethodList &List) { in addMethodsToPool()