Home | History | Annotate | Download | only in Sema

Lines Matching defs:Pos

2283   GlobalMethodPool::iterator Pos = MethodPool.find(Method->getSelector());
2284 if (Pos == MethodPool.end())
2285 Pos = MethodPool.insert(std::make_pair(Method->getSelector(),
2290 ObjCMethodList &Entry = instance ? Pos->second.first : Pos->second.second;
2319 GlobalMethodPool::iterator Pos = MethodPool.find(Sel);
2320 if (Pos == MethodPool.end())
2324 ObjCMethodList &MethList = instance ? Pos->second.first : Pos->second.second;
2397 GlobalMethodPool::iterator Pos = MethodPool.find(Sel);
2398 if (Pos == MethodPool.end())
2401 GlobalMethods &Methods = Pos->second;