Home | History | Annotate | Download | only in src

Lines Matching defs:table

45 // Initial size of each compilation cache table allocated.
85 CompilationCacheTable* table =
87 result = Handle<CompilationCacheTable>(table, isolate());
128 Handle<CompilationCacheTable> table = GetTable(generation);
129 table->Remove(*function_info);
182 Handle<CompilationCacheTable> table = GetTable(generation);
183 Handle<Object> probe(table->Lookup(*source), isolate());
233 Handle<CompilationCacheTable> table = GetFirstTable();
234 return table->Put(*source, *function_info);
258 // Make sure not to leak the table into the surrounding handle
265 Handle<CompilationCacheTable> table = GetTable(generation);
266 result = table->LookupEval(*source, *context, strict_mode);
291 Handle<CompilationCacheTable> table = GetFirstTable();
292 return table->PutEval(*source, *context, *function_info);
316 // Make sure not to leak the table into the surrounding handle
323 Handle<CompilationCacheTable> table = GetTable(generation);
324 result = table->LookupRegExp(*source, flags);
348 Handle<CompilationCacheTable> table = GetFirstTable();
349 return table->PutRegExp(*source, flags, *data);