Home | History | Annotate | Download | only in v8

Lines Matching refs:scope

62     ScriptScope scope(scriptState);
63 scope.global()->Set(v8::String::New(name), value.v8Value());
64 return scope.success();
70 ScriptScope scope(scriptState);
71 scope.global()->Set(v8::String::New(name), toV8(value));
72 return scope.success();
77 ScriptScope scope(scriptState);
78 scope.global()->Set(v8::String::New(name), toV8(value));
79 return scope.success();
85 ScriptScope scope(scriptState);
86 v8::Local<v8::Value> v8Value = scope.global()->Get(v8::String::New(name));
99 ScriptScope scope(scriptState);
100 return scope.global()->Delete(v8::String::New(name));