Lines Matching defs:table
12 #include "src/objects/compilation-cache-table-inl.h"
24 // Initial size of each compilation cache table allocated.
48 CompilationCacheTable table =
50 result = Handle<CompilationCacheTable>(table, isolate());
99 Handle<CompilationCacheTable> table = GetTable(generation);
100 table->Remove(*function_info);
179 Handle<CompilationCacheTable> table = GetTable(generation);
181 table, source, language_mode, isolate());
212 Handle<CompilationCacheTable> table = GetFirstTable();
213 SetFirstTable(CompilationCacheTable::PutScript(table, source, language_mode,
223 // Make sure not to leak the table into the surrounding handle
229 Handle<CompilationCacheTable> table = GetTable(generation);
231 table, source, outer_info, native_context, language_mode, position);
247 Handle<CompilationCacheTable> table = GetFirstTable();
248 table =
249 CompilationCacheTable::PutEval(table, source, outer_info, function_info,
251 SetFirstTable(table);
257 // Make sure not to leak the table into the surrounding handle
263 Handle<CompilationCacheTable> table = GetTable(generation);
264 result = table->LookupRegExp(source, flags);
283 Handle<CompilationCacheTable> table = GetFirstTable();
285 CompilationCacheTable::PutRegExp(isolate(), table, source, flags, data));