Home
last modified time | relevance | path

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

/external/v8/src/
Ddebug.h157 class ScriptCache : private HashMap {
159 ScriptCache() : HashMap(ScriptMatch), collected_scripts_(10) {} in ScriptCache() function
160 virtual ~ScriptCache() { Clear(); } in ~ScriptCache()
406 static ScriptCache* script_cache_;
Ddebug.cc496 ScriptCache* Debug::script_cache_ = NULL;
558 void ScriptCache::Add(Handle<Script> script) { in Add()
573 this, ScriptCache::HandleWeakScript); in Add()
578 Handle<FixedArray> ScriptCache::GetScripts() { in GetScripts()
592 void ScriptCache::ProcessCollectedScripts() { in ProcessCollectedScripts()
600 void ScriptCache::Clear() { in Clear()
614 void ScriptCache::HandleWeakScript(v8::Persistent<v8::Value> obj, void* data) { in HandleWeakScript()
615 ScriptCache* script_cache = reinterpret_cast<ScriptCache*>(data); in HandleWeakScript()
1681 script_cache_ = new ScriptCache(); in CreateScriptCache()