HomeSort by relevance Sort by last modified time
    Searched defs:CompileRun (Results 1 - 2 of 2) sorted by null

  /external/v8/test/cctest/
test-inobject-slack-tracking.cc 86 static inline Handle<T> CompileRun(const char* script) {
87 return OpenHandle<T>(CompileRun(script));
143 CompileRun(source);
205 CompileRun(source);
212 Handle<JSObject> obj1 = CompileRun<JSObject>("new A(1);");
213 Handle<JSObject> obj3 = CompileRun<JSObject>("new A(3);");
214 Handle<JSObject> obj5 = CompileRun<JSObject>("new A(5);");
236 CompileRun("new A(3);");
255 obj1 = CompileRun<JSObject>("new A(1);");
256 obj3 = CompileRun<JSObject>("new A(3);")
    [all...]
cctest.h 384 static inline v8::MaybeLocal<v8::Value> CompileRun(
404 static inline v8::Local<v8::Value> CompileRun(v8::Local<v8::String> source) {
416 static inline v8::Local<v8::Value> CompileRun(const char* source) {
417 return CompileRun(v8_str(source));
421 static inline v8::Local<v8::Value> CompileRun(
450 return CompileRun(context, &script_source, options);
465 return CompileRun(context, &script_source,
476 return CompileRun(context, &script_source,
489 v8::Local<v8::Value> result = CompileRun(code);
497 v8::Local<v8::Value> result = CompileRun(code)
    [all...]

Completed in 269 milliseconds