Home | History | Annotate | Download | only in gin

Lines Matching refs:Isolate

9 Dictionary::Dictionary(v8::Isolate* isolate)
10 : isolate_(isolate) {
13 Dictionary::Dictionary(v8::Isolate* isolate,
15 : isolate_(isolate),
22 Dictionary Dictionary::CreateEmpty(v8::Isolate* isolate) {
23 Dictionary dictionary(isolate);
24 dictionary.object_ = v8::Object::New(isolate);
28 v8::Handle<v8::Value> Converter<Dictionary>::ToV8(v8::Isolate* isolate,
33 bool Converter<Dictionary>::FromV8(v8::Isolate* isolate,
38 *out = Dictionary(isolate, v8::Handle<v8::Object>::Cast(val));