HomeSort by relevance Sort by last modified time
    Searched refs:functionTemplate (Results 1 - 3 of 3) sorted by null

  /external/webkit/WebCore/bindings/v8/
V8DOMWrapper.h 120 static v8::Handle<v8::Object> lookupDOMWrapper(v8::Handle<v8::FunctionTemplate> functionTemplate, v8::Handle<v8::Object> object)
122 return object.IsEmpty() ? object : object->FindInstanceInPrototypeChain(functionTemplate);
V8NPObject.cpp 155 static WeakReferenceMap<PrivateIdentifier, v8::FunctionTemplate> staticTemplateMap(&weakTemplateCallback);
193 v8::Persistent<v8::FunctionTemplate> functionTemplate = staticTemplateMap.get(id);
195 if (functionTemplate.IsEmpty()) {
197 v8::Local<v8::FunctionTemplate> temp = v8::FunctionTemplate::New();
199 functionTemplate = v8::Persistent<v8::FunctionTemplate>::New(temp);
200 staticTemplateMap.set(id, functionTemplate);
203 // FunctionTemplate caches function for each context
    [all...]
V8DOMWrapper.cpp 181 v8::Handle<v8::FunctionTemplate> functionTemplate = V8ClassIndex::getTemplate(type);
185 v8::Local<v8::Function> value = functionTemplate->GetFunction();

Completed in 625 milliseconds