Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaDeclObjC.cpp3442 GlobalMethodPool::iterator Pos = MethodPool.find(Method->getSelector()); in AddMethodToGlobalPool()
3443 if (Pos == MethodPool.end()) in AddMethodToGlobalPool()
3444 Pos = MethodPool in AddMethodToGlobalPool()
3519 GlobalMethodPool::iterator Pos = MethodPool.find(Sel); in CollectMultipleMethodsInGlobalPool()
3520 if (Pos == MethodPool.end()) in CollectMultipleMethodsInGlobalPool()
3566 GlobalMethodPool::iterator Pos = MethodPool.find(Sel); in AreMultipleMethodsInGlobalPool()
3569 if (Pos == MethodPool.end()) in AreMultipleMethodsInGlobalPool()
3582 GlobalMethodPool::iterator Pos = MethodPool.find(Sel); in LookupMethodInGlobalPool()
3583 if (Pos == MethodPool.end()) in LookupMethodInGlobalPool()
3651 GlobalMethodPool::iterator Pos = MethodPool.find(Sel); in LookupImplementedMethodInGlobalPool()
[all …]
H A DSemaCodeComplete.cpp8073 if (Sel.isNull() || SemaRef.MethodPool.count(Sel)) in AddClassMessageCompletions()
8080 for (Sema::GlobalMethodPool::iterator M = SemaRef.MethodPool.begin(), in AddClassMessageCompletions()
8081 MEnd = SemaRef.MethodPool.end(); in AddClassMessageCompletions()
8245 if (Sel.isNull() || MethodPool.count(Sel)) in CodeCompleteObjCInstanceMessage()
8252 for (GlobalMethodPool::iterator M = MethodPool.begin(), in CodeCompleteObjCInstanceMessage()
8253 MEnd = MethodPool.end(); in CodeCompleteObjCInstanceMessage()
8316 if (Sel.isNull() || MethodPool.count(Sel)) in CodeCompleteObjCSelector()
8327 for (GlobalMethodPool::iterator M = MethodPool.begin(), in CodeCompleteObjCSelector()
8328 MEnd = MethodPool.end(); in CodeCompleteObjCSelector()
9636 if (Sel.isNull() || MethodPool.count(Sel)) 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()
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTWriter.cpp3317 if (SemaRef.MethodPool.empty() && SelectorIDs.empty()) in WriteSelectors()
3331 Sema::GlobalMethodPool::iterator F = SemaRef.MethodPool.find(S); in WriteSelectors()
3337 if (F != SemaRef.MethodPool.end()) { in WriteSelectors()
3372 SmallString<4096> MethodPool; in WriteSelectors() local
3378 llvm::raw_svector_ostream Out(MethodPool); in WriteSelectors()
3396 Stream.EmitRecordWithBlob(MethodPoolAbbrev, Record, MethodPool); in WriteSelectors()
H A DASTReader.cpp4058 = S.MethodPool.find(Method->getSelector()); in moveMethodToBackOfGlobalList()
4059 if (Known == S.MethodPool.end()) in moveMethodToBackOfGlobalList()
8341 S.MethodPool.insert(std::make_pair(Sel, Sema::GlobalMethodPool::Lists())) in ReadMethodPool()
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DSema.h1528 GlobalMethodPool MethodPool; variable