Home
last modified time | relevance | path

Searched refs:m_protectCountSet (Results 1 – 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/bridge/
Druntime_root.cpp125 ProtectCountSet::iterator end = m_protectCountSet.end(); in invalidate()
126 for (ProtectCountSet::iterator it = m_protectCountSet.begin(); it != end; ++it) in invalidate()
128 m_protectCountSet.clear(); in invalidate()
137 if (!m_protectCountSet.contains(jsObject)) in gcProtect()
139 m_protectCountSet.add(jsObject); in gcProtect()
149 if (m_protectCountSet.count(jsObject) == 1) in gcUnprotect()
151 m_protectCountSet.remove(jsObject); in gcUnprotect()
157 return m_protectCountSet.contains(jsObject); in gcIsProtected()
Druntime_root.h91 ProtectCountSet m_protectCountSet; variable