Home | History | Annotate | Download | only in src

Lines Matching refs:table

46 // Initial size of each compilation cache table allocated.
82 CompilationCacheTable* table =
84 result = Handle<CompilationCacheTable>(table, isolate());
125 Handle<CompilationCacheTable> table = GetTable(generation);
126 table->Remove(*function_info);
179 Handle<CompilationCacheTable> table = GetTable(generation);
180 Handle<Object> probe(table->Lookup(*source), isolate());
230 Handle<CompilationCacheTable> table = GetFirstTable();
231 return table->Put(*source, *function_info);
256 // Make sure not to leak the table into the surrounding handle
263 Handle<CompilationCacheTable> table = GetTable(generation);
264 result = table->LookupEval(
291 Handle<CompilationCacheTable> table = GetFirstTable();
292 return table->PutEval(*source, *context, *function_info, scope_position);
319 // Make sure not to leak the table into the surrounding handle
326 Handle<CompilationCacheTable> table = GetTable(generation);
327 result = table->LookupRegExp(*source, flags);
351 Handle<CompilationCacheTable> table = GetFirstTable();
352 return table->PutRegExp(*source, flags, *data);