Home | History | Annotate | Download | only in style

Lines Matching refs:m_cache

54     for (CacheMap::iterator iter = m_cache.begin(), end = m_cache.end(); iter != end; ++iter)
60 CacheMap::const_iterator iter = m_cache.find(programInfo);
61 return iter != m_cache.end() ? iter->value : 0;
72 ASSERT(m_cache.find(key) == m_cache.end());
73 m_cache.set(key, program);
79 CacheMap::iterator iter = m_cache.find(programCacheKey(program));
80 ASSERT(iter != m_cache.end());
81 m_cache.remove(iter);