Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaDeclObjC.cpp3435 if (Pos == MethodPool.end()) in AddMethodToGlobalPool()
3436 Pos = MethodPool in AddMethodToGlobalPool()
3512 if (Pos == MethodPool.end()) in CollectMultipleMethodsInGlobalPool()
3561 if (Pos == MethodPool.end()) in AreMultipleMethodsInGlobalPool()
3575 if (Pos == MethodPool.end()) in LookupMethodInGlobalPool()
3644 if (Pos == MethodPool.end()) in LookupImplementedMethodInGlobalPool()
3720 e = MethodPool.end(); b != e; b++) { in SelectorsForTypoCorrection()
4284 if (it == S.MethodPool.end()) { in OverrideSearch()
4288 it = S.MethodPool.find(selector); in OverrideSearch()
4289 if (it == S.MethodPool.end()) in OverrideSearch()
[all …]
H A DSemaCodeComplete.cpp8019 if (Sel.isNull() || SemaRef.MethodPool.count(Sel)) in AddClassMessageCompletions()
8026 for (Sema::GlobalMethodPool::iterator M = SemaRef.MethodPool.begin(), in AddClassMessageCompletions()
8191 if (Sel.isNull() || MethodPool.count(Sel)) in CodeCompleteObjCInstanceMessage()
8198 for (GlobalMethodPool::iterator M = MethodPool.begin(), in CodeCompleteObjCInstanceMessage()
8199 MEnd = MethodPool.end(); in CodeCompleteObjCInstanceMessage()
8262 if (Sel.isNull() || MethodPool.count(Sel)) in CodeCompleteObjCSelector()
8273 for (GlobalMethodPool::iterator M = MethodPool.begin(), in CodeCompleteObjCSelector()
8274 MEnd = MethodPool.end(); in CodeCompleteObjCSelector()
9581 if (Sel.isNull() || MethodPool.count(Sel)) in CodeCompleteObjCMethodDeclSelector()
9598 for (GlobalMethodPool::iterator M = MethodPool.begin(), 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()
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTWriter.cpp3298 if (SemaRef.MethodPool.empty() && SelectorIDs.empty()) in WriteSelectors()
3312 Sema::GlobalMethodPool::iterator F = SemaRef.MethodPool.find(S); in WriteSelectors()
3318 if (F != SemaRef.MethodPool.end()) { in WriteSelectors()
3353 SmallString<4096> MethodPool; in WriteSelectors() local
3359 llvm::raw_svector_ostream Out(MethodPool); in WriteSelectors()
3377 Stream.EmitRecordWithBlob(MethodPoolAbbrev, Record, MethodPool); in WriteSelectors()
H A DASTReader.cpp4061 = S.MethodPool.find(Method->getSelector()); in moveMethodToBackOfGlobalList()
4062 if (Known == S.MethodPool.end()) in moveMethodToBackOfGlobalList()
8302 S.MethodPool.insert(std::make_pair(Sel, Sema::GlobalMethodPool::Lists())) in ReadMethodPool()
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DSema.h1496 GlobalMethodPool MethodPool; variable