Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclObjC.cpp3442 if (Pos == MethodPool.end()) in AddMethodToGlobalPool()
3443 Pos = MethodPool in AddMethodToGlobalPool()
3519 if (Pos == MethodPool.end()) in CollectMultipleMethodsInGlobalPool()
3568 if (Pos == MethodPool.end()) in AreMultipleMethodsInGlobalPool()
3582 if (Pos == MethodPool.end()) in LookupMethodInGlobalPool()
3651 if (Pos == MethodPool.end()) in LookupImplementedMethodInGlobalPool()
3727 e = MethodPool.end(); b != e; b++) { in SelectorsForTypoCorrection()
4291 if (it == S.MethodPool.end()) { in OverrideSearch()
4295 it = S.MethodPool.find(selector); in OverrideSearch()
4296 if (it == S.MethodPool.end()) in OverrideSearch()
[all …]
H A DSemaCodeComplete.cpp8163 if (Sel.isNull() || SemaRef.MethodPool.count(Sel)) in AddClassMessageCompletions()
8170 for (Sema::GlobalMethodPool::iterator M = SemaRef.MethodPool.begin(), in AddClassMessageCompletions()
8335 if (Sel.isNull() || MethodPool.count(Sel)) in CodeCompleteObjCInstanceMessage()
8342 for (GlobalMethodPool::iterator M = MethodPool.begin(), in CodeCompleteObjCInstanceMessage()
8343 MEnd = MethodPool.end(); in CodeCompleteObjCInstanceMessage()
8406 if (Sel.isNull() || MethodPool.count(Sel)) in CodeCompleteObjCSelector()
8417 for (GlobalMethodPool::iterator M = MethodPool.begin(), in CodeCompleteObjCSelector()
8418 MEnd = MethodPool.end(); in CodeCompleteObjCSelector()
9744 if (Sel.isNull() || MethodPool.count(Sel)) in CodeCompleteObjCMethodDeclSelector()
9761 for (GlobalMethodPool::iterator M = MethodPool.begin(), in CodeCompleteObjCMethodDeclSelector()
[all …]
H A DSemaExprObjC.cpp1213 for (Sema::GlobalMethodPool::iterator b = S.MethodPool.begin(), in DiagnoseMismatchedSelectors()
1214 e = S.MethodPool.end(); b != e; b++) { in DiagnoseMismatchedSelectors()
1258 auto Iter = S.MethodPool.find(Sel); in LookupDirectMethodInGlobalPool()
1259 if (Iter == S.MethodPool.end()) in LookupDirectMethodInGlobalPool()
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp3401 if (SemaRef.MethodPool.empty() && SelectorIDs.empty()) in WriteSelectors()
3415 Sema::GlobalMethodPool::iterator F = SemaRef.MethodPool.find(S); in WriteSelectors()
3421 if (F != SemaRef.MethodPool.end()) { in WriteSelectors()
3456 SmallString<4096> MethodPool; in WriteSelectors() local
3462 llvm::raw_svector_ostream Out(MethodPool); in WriteSelectors()
3480 Stream.EmitRecordWithBlob(MethodPoolAbbrev, Record, MethodPool); in WriteSelectors()
H A DASTReader.cpp4233 = S.MethodPool.find(Method->getSelector()); in moveMethodToBackOfGlobalList()
4234 if (Known == S.MethodPool.end()) in moveMethodToBackOfGlobalList()
8563 S.MethodPool.insert(std::make_pair(Sel, Sema::GlobalMethodPool::Lists())) in ReadMethodPool()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h1562 GlobalMethodPool MethodPool; variable