Lines Matching refs:aIt
78 Map::iterator aIt(m_aMap.find(rKey)); in get() local
79 if (aIt == m_aMap.end()) in get()
82 aIt = m_aMap.insert(Map::value_type(rKey, xElement.get())).first; in get()
83 aIt->second->m_aContainerIt = aIt; in get()
85 return aIt->second; in get()
87 else if (osl_incrementInterlockedCount(&aIt->second->m_nRefCount) > 1) in get()
89 rtl::Reference< Object3 > xElement(aIt->second); in get()
90 osl_decrementInterlockedCount(&aIt->second->m_nRefCount); in get()
95 osl_decrementInterlockedCount(&aIt->second->m_nRefCount); in get()
96 aIt->second->m_aContainerIt = m_aMap.end(); in get()
97 aIt->second = new Object3(this); in get()
98 aIt->second->m_aContainerIt = aIt; in get()
99 return aIt->second; in get()