Lines Matching refs:CompileRun
531 CompileRun( in UNINITIALIZED_TEST()
548 CompileRun(source_str.ToLocalChecked()); in UNINITIALIZED_TEST()
637 double r = CompileRun("r") in UNINITIALIZED_DEPENDENT_TEST()
642 int f = CompileRun("f()") in UNINITIALIZED_DEPENDENT_TEST()
648 f = CompileRun("e('f()')") in UNINITIALIZED_DEPENDENT_TEST()
654 v8::Local<v8::String> s = CompileRun("s") in UNINITIALIZED_DEPENDENT_TEST()
659 int a = CompileRun("a.length") in UNINITIALIZED_DEPENDENT_TEST()
665 int b = CompileRun("b.length") in UNINITIALIZED_DEPENDENT_TEST()
701 CompileRun("f()")->Int32Value(isolate1->GetCurrentContext()); in TEST()
703 CHECK(CompileRun("this.g")->IsUndefined()); in TEST()
718 CompileRun("f()")->Int32Value(isolate2->GetCurrentContext()); in TEST()
720 result = CompileRun("g()")->Int32Value(isolate2->GetCurrentContext()); in TEST()
771 v8::Local<v8::Value> result = CompileRun(source2); in TEST()
792 CompileRun("Math.cos(0)")->Int32Value(isolate0->GetCurrentContext()); in TEST()
812 v8::Maybe<int32_t> result = CompileRun("f()")->Int32Value(context); in TEST()
852 CompileRun(test)->Int32Value(isolate->GetCurrentContext()); in TEST()
1199 CompileRun("(a + b).length") in TEST()
1202 result = CompileRun("(b + c).length") in TEST()
1207 CompileRun("a") in TEST()
1211 result_str = CompileRun("b") in TEST()
1215 result_str = CompileRun("c") in TEST()
1598 CompileRun(source1); in TEST()
1599 CompileRun(source2); in TEST()
1634 CompileRun(source2); in TEST()
1635 CompileRun(source1); in TEST()
1703 v8::Local<v8::Function>::Cast(CompileRun("foo")); in TEST()
1718 CHECK_EQ(11, CompileRun("foo(0)") in TEST()
1721 CHECK_EQ(11, CompileRun("foo(1)") in TEST()
1724 CHECK_EQ(12, CompileRun("foo(2)") in TEST()
1727 CHECK_EQ(12, CompileRun("foo(3)") in TEST()
1730 CHECK_EQ(23, CompileRun("foo(4)") in TEST()
1733 CHECK_EQ(23, CompileRun("foo(5)") in TEST()
1736 CHECK_EQ(10, CompileRun("foo(6)") in TEST()