Lines Matching refs:m_entryCache
255 m_entryCache.push_back(valueEntry); in allocate()
304 …std::vector<const ValueEntry*>::iterator pos = std::find(m_entryCache.begin(), m_entryCache.end(),… in declareVariable()
305 if (pos != m_entryCache.end()) in declareVariable()
306 m_entryCache.erase(pos); in declareVariable()
308 …DE_ASSERT(std::find(m_entryCache.begin(), m_entryCache.end(), CompareEntryVariable(variable)) == m… in declareVariable()
323 …vector<const ValueEntry*>::const_iterator pos = std::find(m_entryCache.begin(), m_entryCache.end()… in getValue()
324 return pos != m_entryCache.end() ? *pos : DE_NULL; in getValue()
330 …std::vector<const ValueEntry*>::iterator pos = std::find(m_entryCache.begin(), m_entryCache.end(),… in removeValueFromCurrentScope()
331 DE_ASSERT(pos != m_entryCache.end()); in removeValueFromCurrentScope()
332 m_entryCache.erase(pos); in removeValueFromCurrentScope()
363 …std::vector<const ValueEntry*>::iterator cachePos = std::find(m_entryCache.begin(), m_entryCache.e… in setValue()
365 if (cachePos != m_entryCache.end()) in setValue()
368 m_entryCache.push_back(newEntry); in setValue()
436 m_entryCache.clear(); in popValueScope()
466 …DE_ASSERT(std::find(m_entryCache.begin(), m_entryCache.end(), CompareEntryVariable(var)) == m_entr… in popValueScope()
483 m_entryCache.push_back(newTopScope.findEntry(var)); in popValueScope()
486 m_entryCache.push_back(entry); // Just add to cache. in popValueScope()