Lines Matching refs:table
48 // Initial size of each compilation cache table allocated.
171 CompilationCacheTable* table =
173 result = Handle<CompilationCacheTable>(table);
241 Handle<CompilationCacheTable> table = GetTable(generation);
242 Handle<Object> probe(table->Lookup(*source));
288 Handle<CompilationCacheTable> table = GetTable(0);
289 CALL_HEAP_FUNCTION_VOID(table->Put(*source, *boilerplate));
295 // Make sure not to leak the table into the surrounding handle
302 Handle<CompilationCacheTable> table = GetTable(generation);
303 result = table->LookupEval(*source, *context);
328 Handle<CompilationCacheTable> table = GetTable(0);
329 CALL_HEAP_FUNCTION_VOID(table->PutEval(*source, *context, *boilerplate));
335 // Make sure not to leak the table into the surrounding handle
342 Handle<CompilationCacheTable> table = GetTable(generation);
343 result = table->LookupRegExp(*source, flags);
367 Handle<CompilationCacheTable> table = GetTable(0);
368 CALL_HEAP_FUNCTION_VOID(table->PutRegExp(*source, flags, *data));