Home | History | Annotate | Download | only in v8

Lines Matching refs:m_map

54         return m_map.get(key).deprecatedHandle();
59 return m_map.get(key).newLocal(isolate);
68 typename MapType::AddResult result = m_map.add(key, UnsafePersistent<v8::Object>());
78 while (!m_map.isEmpty()) {
79 // Swap out m_map on each iteration to ensure any wrappers added due to side effects of the loop are cleared.
81 map.swap(m_map);
91 typename MapType::iterator it = m_map.find(key);
92 ASSERT(it != m_map.end());
94 m_map.remove(it);
101 MapType m_map;