Lines Matching full:value
62 v8::Handle<Value> value = Local<Value>());
69 virtual v8::Handle<Value> Get(Local<String> key);
70 virtual v8::Handle<Value> Set(Local<String> key, Local<Value> value);
83 static v8::Handle<Value> HandleGet(Local<String> key,
85 static v8::Handle<Value> HandleSet(Local<String> key,
86 Local<Value> value,
114 Local<Value> data = External::New(this);
120 context_ = Context::New(0, function->InstanceTemplate(), Local<Value>());
129 v8::Handle<Value> value) {
137 Local<Value> result = Script::Compile(String::New(source))->Run();
143 if (!value.IsEmpty()) {
144 CHECK_EQ(value, result);
149 if (!value.IsEmpty()) {
150 CHECK_EQ(value, catcher.Exception());
156 v8::Handle<Value> DeclarationContext::HandleGet(Local<String> key,
164 v8::Handle<Value> DeclarationContext::HandleSet(Local<String> key,
165 Local<Value> value,
169 return context->Set(key, value);
186 v8::Handle<Value> DeclarationContext::Get(Local<String> key) {
187 return v8::Handle<Value>();
191 v8::Handle<Value> DeclarationContext::Set(Local<String> key,
192 Local<Value> value) {
193 return v8::Handle<Value>();
387 // setter called when initializing with a value.