HomeSort by relevance Sort by last modified time
    Searched defs:CompilationCacheTable (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/v8/src/
compilation-cache.cc 68 static Handle<CompilationCacheTable> AllocateTable(Isolate* isolate, int size) {
70 CompilationCacheTable::Allocate(isolate->heap(), size),
71 CompilationCacheTable);
75 Handle<CompilationCacheTable> CompilationSubCache::GetTable(int generation) {
77 Handle<CompilationCacheTable> result;
82 CompilationCacheTable* table =
83 CompilationCacheTable::cast(tables_[generation]);
84 result = Handle<CompilationCacheTable>(table, isolate());
105 reinterpret_cast<CompilationCacheTable*>(tables_[i])->IterateElements(v);
126 Handle<CompilationCacheTable> table = GetTable(generation)
    [all...]
objects.h 90 // - CompilationCacheTable
    [all...]
  /external/v8/src/
compilation-cache.cc 68 static Handle<CompilationCacheTable> AllocateTable(Isolate* isolate, int size) {
70 CompilationCacheTable::Allocate(size),
71 CompilationCacheTable);
75 Handle<CompilationCacheTable> CompilationSubCache::GetTable(int generation) {
77 Handle<CompilationCacheTable> result;
82 CompilationCacheTable* table =
83 CompilationCacheTable::cast(tables_[generation]);
84 result = Handle<CompilationCacheTable>(table, isolate());
104 reinterpret_cast<CompilationCacheTable*>(tables_[i])->IterateElements(v);
125 Handle<CompilationCacheTable> table = GetTable(generation)
    [all...]
objects.h 78 // - CompilationCacheTable
    [all...]

Completed in 317 milliseconds