HomeSort by relevance Sort by last modified time
    Searched refs:m_windowShells (Results 1 - 3 of 3) sorted by null

  /external/webkit/Source/WebCore/bindings/js/
ScriptController.cpp 93 // It's likely that destroying m_windowShells will create a lot of garbage.
94 if (!m_windowShells.isEmpty()) {
95 while (!m_windowShells.isEmpty())
96 destroyWindowShell(m_windowShells.begin()->first.get());
103 ASSERT(m_windowShells.contains(world));
104 m_windowShells.remove(world);
110 ASSERT(!m_windowShells.contains(world));
113 m_windowShells.add(world, windowShell);
180 if (m_windowShells.isEmpty())
185 for (ShellMap::iterator iter = m_windowShells.begin(); iter != m_windowShells.end(); ++iter)
    [all...]
ScriptController.h 80 ShellMap::iterator iter = m_windowShells.find(world);
81 return (iter != m_windowShells.end()) ? iter->second.get() : initScript(world);
85 ShellMap::const_iterator iter = m_windowShells.find(world);
86 return (iter != m_windowShells.end()) ? iter->second.get() : 0;
178 ShellMap m_windowShells;
ScriptCachedFrameData.cpp 52 ScriptController::ShellMap& windowShells = scriptController->m_windowShells;
79 ScriptController::ShellMap& windowShells = scriptController->m_windowShells;

Completed in 40 milliseconds