Searched defs:simple_property (Results 1 - 1 of 1) sorted by relevance

/external/v8/test/cctest/
H A Dtest-api.cc10641 v8::Handle<v8::String> simple_property = v8::String::New("p"); local
10642 global->Set(simple_property, v8::Int32::New(4), v8::ReadOnly);
10643 CHECK_EQ(4, global->Get(simple_property)->Int32Value());
10645 global->Set(simple_property, v8::Int32::New(5));
10646 CHECK_EQ(4, global->Get(simple_property)->Int32Value());
10648 global->ForceSet(simple_property, v8::Int32::New(6));
10649 CHECK_EQ(6, global->Get(simple_property)->Int32Value());
10723 v8::Handle<v8::String> simple_property = v8::String::New("p"); local
10724 global->Set(simple_property, v8::Int32::New(4), v8::DontDelete);
10725 CHECK_EQ(4, global->Get(simple_property)
[all...]

Completed in 51 milliseconds