Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/init/
Dbootstrapper.h22 class SourceCodeCache final {
24 explicit SourceCodeCache(Script::Type type) : type_(type) {} in SourceCodeCache() function
25 SourceCodeCache(const SourceCodeCache&) = delete;
26 SourceCodeCache& operator=(const SourceCodeCache&) = delete;
99 SourceCodeCache* extensions_cache() { return &extensions_cache_; } in extensions_cache()
108 SourceCodeCache extensions_cache_;
Dbootstrapper.cc81 void SourceCodeCache::Initialize(Isolate* isolate, bool create_heap_objects) { in Initialize()
86 void SourceCodeCache::Iterate(RootVisitor* v) { in Iterate()
90 bool SourceCodeCache::Lookup(Isolate* isolate, base::Vector<const char> name, in Lookup()
103 void SourceCodeCache::Add(Isolate* isolate, base::Vector<const char> name, in Add()
4136 SourceCodeCache* cache = isolate->bootstrapper()->extensions_cache(); in CompileExtension()