OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:v8_compile
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/v8/test/cctest/
test-global-object.cc
41
v8::Local<v8::Script> script =
v8_compile
("\"use strict\"; x = 42;");
test-accessors.cc
84
getter =
v8_compile
("var obj = new Fun(); obj.instance_foo;");
86
setter =
v8_compile
("obj.instance_foo = 901;");
88
getter =
v8_compile
("obj.bar;");
90
setter =
v8_compile
("obj.bar = 908;");
93
getter =
v8_compile
("Fun.object_foo;");
95
setter =
v8_compile
("Fun.object_foo = 903;");
135
v8_compile
("foo = (++bar) + baz")->Run();
test-api.cc
[
all
...]
cctest.h
301
static inline v8::Local<v8::Script>
v8_compile
(const char* x) {
function
/external/v8/test/cctest/
cctest.h
206
static inline v8::Local<v8::Script>
v8_compile
(const char* x) {
function
test-api.cc
794
Local<Script> script =
v8_compile
("obj()");
804
Local<Script> script =
v8_compile
("obj()");
815
Local<Script> script =
v8_compile
("var s = new obj(); s.x");
818
Local<Value> result =
v8_compile
("(new obj()).toString()")->Run();
821
result =
v8_compile
("(new obj()).m")->Run();
[
all
...]
test-accessors.cc
61
Local<Script> getter =
v8_compile
("var obj = new Fun(); obj.foo;");
63
Local<Script> setter =
v8_compile
("obj.foo = 901;");
106
v8_compile
("foo = (++bar) + baz")->Run();
Completed in 416 milliseconds