Lines Matching refs:result
43 Handle<CompilationCacheTable> result;
45 result = CompilationCacheTable::New(isolate(), kInitialCacheSize);
46 tables_[generation] = *result;
50 result = Handle<CompilationCacheTable>(table, isolate());
52 return result;
171 MaybeHandle<SharedFunctionInfo> result;
187 result = scope.CloseAndEscape(function_info);
196 if (result.ToHandle(&function_info)) {
205 return result;
226 InfoCellPair result;
230 result = CompilationCacheTable::LookupEval(
232 if (result.has_shared()) {
237 return result;
260 Handle<Object> result = isolate()->factory()->undefined_value();
264 result = table->LookupRegExp(source, flags);
265 if (result->IsFixedArray()) break;
267 if (result->IsFixedArray()) {
268 Handle<FixedArray> data = Handle<FixedArray>::cast(result);
308 InfoCellPair result;
309 if (!IsEnabledScriptAndEval()) return result;
314 result = eval_global_.Lookup(source, outer_info, context, language_mode,
321 result = eval_contextual_.Lookup(source, outer_info, native_context,
326 if (result.has_shared()) {
327 LOG(isolate(), CompilationCacheEvent("hit", cache_type, result.shared()));
330 return result;