Lines Matching refs:Context

43 using ::v8::Context;
60 KangarooThread(v8::Isolate* isolate, v8::Local<v8::Context> context) in KangarooThread()
71 v8::Local<v8::Context> context = in Run()
72 v8::Local<v8::Context>::New(isolate_, context_); in Run()
73 v8::Context::Scope context_scope(context); in Run()
82 v8::Local<v8::Context> context = in Run()
83 v8::Local<v8::Context>::New(isolate_, context_); in Run()
84 v8::Context::Scope context_scope(context); in Run()
94 Persistent<v8::Context> context_;
108 v8::Local<v8::Context> context = v8::Context::New(isolate); in TEST()
109 v8::Context::Scope context_scope(context); in TEST()
119 static void CalcFibAndCheck(v8::Local<v8::Context> context) { in CalcFibAndCheck()
323 v8::Isolate* isolate, v8::Local<v8::Context> context) in LockIsolateAndCalculateFibSharedContextThread()
332 v8::Local<v8::Context> context = in Run()
333 v8::Local<v8::Context>::New(isolate_, context_); in Run()
334 v8::Context::Scope context_scope(context); in Run()
339 Persistent<v8::Context> context_;
355 v8::Local<v8::Context> context = v8::Context::New(isolate_); in Run()
357 v8::Context::Scope context_scope(context); in Run()
369 v8::Context::Scope context_scope(context); in Run()
412 v8::Local<v8::Context> context = v8::Context::New(isolate_); in Run()
414 v8::Context::Scope context_scope(context); in Run()
429 v8::Context::Scope context_scope(context); in Run()
476 v8::Local<v8::Context> context1 = v8::Context::New(isolate1_); in Run()
478 v8::Context::Scope context_scope(context1); in Run()
490 v8::Local<v8::Context> context2 = v8::Context::New(isolate2_); in Run()
492 v8::Context::Scope context_scope(context2); in Run()
498 v8::Context::Scope context_scope(context2); in Run()
526 LockUnlockLockThread(v8::Isolate* isolate, v8::Local<v8::Context> context) in LockUnlockLockThread()
538 v8::Local<v8::Context> context = in Run()
539 v8::Local<v8::Context>::New(isolate_, context_); in Run()
540 v8::Context::Scope context_scope(context); in Run()
553 v8::Local<v8::Context> context = in Run()
554 v8::Local<v8::Context>::New(isolate_, context_); in Run()
555 v8::Context::Scope context_scope(context); in Run()
563 v8::Persistent<v8::Context> context_;
582 v8::Local<v8::Context> context = v8::Context::New(isolate); in TEST()
594 explicit LockUnlockLockDefaultIsolateThread(v8::Local<v8::Context> context) in LockUnlockLockDefaultIsolateThread()
603 v8::Local<v8::Context> context = in Run()
604 v8::Local<v8::Context>::New(CcTest::isolate(), context_); in Run()
605 v8::Context::Scope context_scope(context); in Run()
614 v8::Local<v8::Context> context = in Run()
615 v8::Local<v8::Context>::New(CcTest::isolate(), context_); in Run()
616 v8::Context::Scope context_scope(context); in Run()
623 v8::Persistent<v8::Context> context_;
634 Local<v8::Context> context; in TEST()
640 context = v8::Context::New(CcTest::isolate()); in TEST()
658 v8::Local<Context> context = v8::Context::New(isolate); in TEST()
659 v8::Context::Scope context_scope(context); in TEST()
694 v8::Context::New(isolate, &extensions); in Run()