Home
last modified time | relevance | path

Searched refs:MethodPool (Results 1 – 6 of 6) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaDeclObjC.cpp3428 GlobalMethodPool::iterator Pos = MethodPool.find(Method->getSelector()); in AddMethodToGlobalPool()
3429 if (Pos == MethodPool.end()) in AddMethodToGlobalPool()
3430 Pos = MethodPool.insert(std::make_pair(Method->getSelector(), in AddMethodToGlobalPool()
3503 GlobalMethodPool::iterator Pos = MethodPool.find(Sel); in CollectMultipleMethodsInGlobalPool()
3504 if (Pos == MethodPool.end()) in CollectMultipleMethodsInGlobalPool()
3550 GlobalMethodPool::iterator Pos = MethodPool.find(Sel); in AreMultipleMethodsInGlobalPool()
3553 if (Pos == MethodPool.end()) in AreMultipleMethodsInGlobalPool()
3566 GlobalMethodPool::iterator Pos = MethodPool.find(Sel); in LookupMethodInGlobalPool()
3567 if (Pos == MethodPool.end()) in LookupMethodInGlobalPool()
3635 GlobalMethodPool::iterator Pos = MethodPool.find(Sel); in LookupImplementedMethodInGlobalPool()
[all …]
H A DSemaCodeComplete.cpp7529 if (Sel.isNull() || SemaRef.MethodPool.count(Sel)) in AddClassMessageCompletions()
7536 for (Sema::GlobalMethodPool::iterator M = SemaRef.MethodPool.begin(), in AddClassMessageCompletions()
7537 MEnd = SemaRef.MethodPool.end(); in AddClassMessageCompletions()
7701 if (Sel.isNull() || MethodPool.count(Sel)) in CodeCompleteObjCInstanceMessage()
7708 for (GlobalMethodPool::iterator M = MethodPool.begin(), in CodeCompleteObjCInstanceMessage()
7709 MEnd = MethodPool.end(); in CodeCompleteObjCInstanceMessage()
7772 if (Sel.isNull() || MethodPool.count(Sel)) in CodeCompleteObjCSelector()
7783 for (GlobalMethodPool::iterator M = MethodPool.begin(), in CodeCompleteObjCSelector()
7784 MEnd = MethodPool.end(); in CodeCompleteObjCSelector()
9092 if (Sel.isNull() || MethodPool.count(Sel)) in CodeCompleteObjCMethodDeclSelector()
[all …]
H A DSemaExprObjC.cpp1215 for (Sema::GlobalMethodPool::iterator b = S.MethodPool.begin(), in DiagnoseMismatchedSelectors()
1216 e = S.MethodPool.end(); b != e; b++) { in DiagnoseMismatchedSelectors()
1260 auto Iter = S.MethodPool.find(Sel); in LookupDirectMethodInGlobalPool()
1261 if (Iter == S.MethodPool.end()) in LookupDirectMethodInGlobalPool()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTWriter.cpp3104 if (SemaRef.MethodPool.empty() && SelectorIDs.empty()) in WriteSelectors()
3118 Sema::GlobalMethodPool::iterator F = SemaRef.MethodPool.find(S); in WriteSelectors()
3124 if (F != SemaRef.MethodPool.end()) { in WriteSelectors()
3153 SmallString<4096> MethodPool; in WriteSelectors() local
3159 llvm::raw_svector_ostream Out(MethodPool); in WriteSelectors()
3177 Stream.EmitRecordWithBlob(MethodPoolAbbrev, Record, MethodPool); in WriteSelectors()
H A DASTReader.cpp4014 = S.MethodPool.find(Method->getSelector()); in moveMethodToBackOfGlobalList()
4015 if (Known == S.MethodPool.end()) in moveMethodToBackOfGlobalList()
8226 = S.MethodPool.insert(std::make_pair(Sel, Sema::GlobalMethods())).first; in ReadMethodPool()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DSema.h1424 GlobalMethodPool MethodPool; variable