Home
last modified time | relevance | path

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

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
DMethodPool.java40 public class MethodPool extends BaseIndexPool<MethodReference> class
43 public MethodPool(@Nonnull DexPool dexPool) { in MethodPool() method in MethodPool
DDexPool.java57 …EncodedValue, AnnotationElement, StringPool, TypePool, ProtoPool, FieldPool, MethodPool, ClassPool,
228 @Nonnull @Override public MethodPool getMethodSection() { in getMethodSection()
229 return new MethodPool(DexPool.this); in getMethodSection()
/external/clang/lib/Sema/
DSemaDeclObjC.cpp3323 GlobalMethodPool::iterator Pos = MethodPool.find(Method->getSelector()); in AddMethodToGlobalPool()
3324 if (Pos == MethodPool.end()) in AddMethodToGlobalPool()
3325 Pos = MethodPool.insert(std::make_pair(Method->getSelector(), in AddMethodToGlobalPool()
3395 GlobalMethodPool::iterator Pos = MethodPool.find(Sel); in CollectMultipleMethodsInGlobalPool()
3396 if (Pos == MethodPool.end()) in CollectMultipleMethodsInGlobalPool()
3442 GlobalMethodPool::iterator Pos = MethodPool.find(Sel); in AreMultipleMethodsInGlobalPool()
3445 if (Pos == MethodPool.end()) in AreMultipleMethodsInGlobalPool()
3458 GlobalMethodPool::iterator Pos = MethodPool.find(Sel); in LookupMethodInGlobalPool()
3459 if (Pos == MethodPool.end()) in LookupMethodInGlobalPool()
3527 GlobalMethodPool::iterator Pos = MethodPool.find(Sel); in LookupImplementedMethodInGlobalPool()
[all …]
DSemaCodeComplete.cpp5635 if (Sel.isNull() || SemaRef.MethodPool.count(Sel)) in AddClassMessageCompletions()
5642 for (Sema::GlobalMethodPool::iterator M = SemaRef.MethodPool.begin(), in AddClassMessageCompletions()
5643 MEnd = SemaRef.MethodPool.end(); in AddClassMessageCompletions()
5808 if (Sel.isNull() || MethodPool.count(Sel)) in CodeCompleteObjCInstanceMessage()
5815 for (GlobalMethodPool::iterator M = MethodPool.begin(), in CodeCompleteObjCInstanceMessage()
5816 MEnd = MethodPool.end(); in CodeCompleteObjCInstanceMessage()
5882 if (Sel.isNull() || MethodPool.count(Sel)) in CodeCompleteObjCSelector()
5893 for (GlobalMethodPool::iterator M = MethodPool.begin(), in CodeCompleteObjCSelector()
5894 MEnd = MethodPool.end(); in CodeCompleteObjCSelector()
7227 if (Sel.isNull() || MethodPool.count(Sel)) in CodeCompleteObjCMethodDeclSelector()
[all …]
DSemaExprObjC.cpp1137 for (Sema::GlobalMethodPool::iterator b = S.MethodPool.begin(), in DiagnoseMismatchedSelectors()
1138 e = S.MethodPool.end(); b != e; b++) { in DiagnoseMismatchedSelectors()
/external/clang/lib/Serialization/
DASTWriter.cpp2978 if (SemaRef.MethodPool.empty() && SelectorIDs.empty()) in WriteSelectors()
2992 Sema::GlobalMethodPool::iterator F = SemaRef.MethodPool.find(S); in WriteSelectors()
2998 if (F != SemaRef.MethodPool.end()) { in WriteSelectors()
3027 SmallString<4096> MethodPool; in WriteSelectors() local
3032 llvm::raw_svector_ostream Out(MethodPool); in WriteSelectors()
3050 Stream.EmitRecordWithBlob(MethodPoolAbbrev, Record, MethodPool); in WriteSelectors()
DASTReader.cpp3322 = S.MethodPool.find(Method->getSelector()); in moveMethodToBackOfGlobalList()
3323 if (Known == S.MethodPool.end()) in moveMethodToBackOfGlobalList()
7203 = S.MethodPool.insert(std::make_pair(Sel, Sema::GlobalMethods())).first; in ReadMethodPool()
/external/mockito/lib/
Dbyte-buddy-1.8.15.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META- ...
/external/clang/include/clang/Sema/
DSema.h999 GlobalMethodPool MethodPool; variable