Home | History | Annotate | Download | only in results

Lines Matching refs:currentWorldType

144 static v8::Handle<v8::FunctionTemplate> ConfigureV8TestEventConstructorTemplate(v8::Handle<v8::FunctionTemplate> desc, v8::Isolate* isolate, WrapperWorldType currentWorldType)
151 0, 0, isolate, currentWorldType);
161 v8::Handle<v8::FunctionTemplate> V8TestEventConstructor::GetTemplate(v8::Isolate* isolate, WrapperWorldType currentWorldType)
164 V8PerIsolateData::TemplateMap::iterator result = data->templateMap(currentWorldType).find(&info);
165 if (result != data->templateMap(currentWorldType).end())
171 ConfigureV8TestEventConstructorTemplate(data->rawTemplate(&info, currentWorldType), isolate, currentWorldType);
172 data->templateMap(currentWorldType).add(&info, UnsafePersistent<v8::FunctionTemplate>(isolate, templ));
176 bool V8TestEventConstructor::HasInstance(v8::Handle<v8::Value> value, v8::Isolate* isolate, WrapperWorldType currentWorldType)
178 return V8PerIsolateData::from(isolate)->hasInstance(&info, value, currentWorldType);