| /external/v8/src/ |
| d8.cc | 417 global_template->Set(String::New("print"), FunctionTemplate::New(Print)); 418 global_template->Set(String::New("write"), FunctionTemplate::New(Write)); 419 global_template->Set(String::New("read"), FunctionTemplate::New(Read)); 421 FunctionTemplate::New(ReadLine)); 422 global_template->Set(String::New("load"), FunctionTemplate::New(Load)); 423 global_template->Set(String::New("quit"), FunctionTemplate::New(Quit)); 424 global_template->Set(String::New("version"), FunctionTemplate::New(Version)); 609 FunctionTemplate::New(Shell::Print)); 611 FunctionTemplate::New(Shell::Write)); 613 FunctionTemplate::New(Shell::Read)) [all...] |
| d8-posix.cc | 667 os_templ->Set(String::New("system"), FunctionTemplate::New(System)); 668 os_templ->Set(String::New("chdir"), FunctionTemplate::New(ChangeDirectory)); 669 os_templ->Set(String::New("setenv"), FunctionTemplate::New(SetEnvironment)); 670 os_templ->Set(String::New("umask"), FunctionTemplate::New(SetUMask)); 671 os_templ->Set(String::New("mkdirp"), FunctionTemplate::New(MakeDirectory)); 672 os_templ->Set(String::New("rmdir"), FunctionTemplate::New(RemoveDirectory));
|
| api.h | 176 static Local<FunctionTemplate> ToFunctionTemplate(NeanderObject obj); 201 static inline Local<FunctionTemplate> ToLocal( 213 OpenHandle(const FunctionTemplate* that); 269 MAKE_TO_LOCAL(ToLocal, FunctionTemplateInfo, FunctionTemplate) 291 MAKE_OPEN_HANDLE(FunctionTemplate, FunctionTemplateInfo)
|
| api.cc | 647 Local<ObjectTemplate> FunctionTemplate::PrototypeTemplate() { 648 if (IsDeadCheck("v8::FunctionTemplate::PrototypeTemplate()")) { 661 void FunctionTemplate::Inherit(v8::Handle<FunctionTemplate> value) { 662 if (IsDeadCheck("v8::FunctionTemplate::Inherit()")) return; 673 Local<FunctionTemplate> FunctionTemplate::New(InvocationCallback callback, 675 EnsureInitialized("v8::FunctionTemplate::New()"); 676 LOG_API("FunctionTemplate::New"); 697 Local<Signature> Signature::New(Handle<FunctionTemplate> receiver [all...] |
| execution.h | 303 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunction(
|
| execution.cc | 693 v8::Handle<v8::FunctionTemplate> GCExtension::GetNativeFunction( 695 return v8::FunctionTemplate::New(GCExtension::GC);
|
| parser.cc | [all...] |
| /external/webkit/WebCore/bindings/v8/ |
| 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...] |
| V8Proxy.h | 98 // constants. It sets the constant on both the FunctionTemplate and the 105 void batchConfigureConstants(v8::Handle<v8::FunctionTemplate>, v8::Handle<v8::ObjectTemplate>, const BatchedConstant*, size_t constantCount); 303 static void bindJsObjectToWindow(Frame*, const char* name, int type, v8::Handle<v8::FunctionTemplate>, void*);
|
| 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);
|
| V8Proxy.cpp | 105 v8::FunctionTemplate::New(callbacks[i].callback, 112 void batchConfigureConstants(v8::Handle<v8::FunctionTemplate> functionDescriptor, 162 typedef HashMap<int, v8::FunctionTemplate*> FunctionTemplateMap; 757 void V8Proxy::bindJsObjectToWindow(Frame* frame, const char* name, int type, v8::Handle<v8::FunctionTemplate> descriptor, void* impl)
|
| V8DOMWrapper.cpp | 181 v8::Handle<v8::FunctionTemplate> functionTemplate = V8ClassIndex::getTemplate(type); 185 v8::Local<v8::Function> value = functionTemplate->GetFunction();
|
| V8Index.h | [all...] |
| /hardware/ril/mock-ril/src/cpp/ |
| worker_v8.cpp | 41 v8::Persistent<v8::FunctionTemplate> WorkerV8Template; 181 WorkerV8Template = v8::Persistent<v8::FunctionTemplate>::New( 182 v8::FunctionTemplate::New(WorkerV8::NewWorkerV8));
|
| node_buffer.h | 76 static v8::Persistent<v8::FunctionTemplate> constructor_template;
|
| node_buffer.cpp | 79 Persistent<FunctionTemplate> Buffer::constructor_template; 621 Local<FunctionTemplate> t = FunctionTemplate::New(Buffer::New); 622 constructor_template = Persistent<FunctionTemplate>::New(t);
|
| /external/v8/test/cctest/ |
| test-compiler.cc | 49 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunction( 60 v8::Handle<v8::FunctionTemplate> PrintExtension::GetNativeFunction( 62 return v8::FunctionTemplate::New(PrintExtension::Print);
|
| test-accessors.cc | 58 Local<v8::FunctionTemplate> fun_templ = v8::FunctionTemplate::New(); 94 v8::Handle<v8::FunctionTemplate> templ = v8::FunctionTemplate::New();
|
| test-log.cc | 546 v8::Persistent<v8::FunctionTemplate> obj = 547 v8::Persistent<v8::FunctionTemplate>::New(v8::FunctionTemplate::New()); 552 v8::FunctionTemplate::New(ObjMethod1, 596 v8::Persistent<v8::FunctionTemplate> obj = 597 v8::Persistent<v8::FunctionTemplate>::New(v8::FunctionTemplate::New()); [all...] |
| test-debug.cc | [all...] |
| /external/v8/include/ |
| v8.h | 126 class FunctionTemplate; [all...] |
| /external/v8/samples/ |
| lineprocessor.cc | 189 global->Set(v8::String::New("print"), v8::FunctionTemplate::New(Print)); 194 v8::FunctionTemplate::New(ReadLine));
|
| process.cc | 153 global->Set(String::New("log"), FunctionTemplate::New(LogCallback));
|
| /external/webkit/WebCore/bindings/scripts/ |
| CodeGeneratorV8.pm | 274 static v8::Persistent<v8::FunctionTemplate> GetRawTemplate(); 275 static v8::Persistent<v8::FunctionTemplate> GetTemplate(); 559 static v8::Persistent<v8::FunctionTemplate> private_template = 560 v8::Persistent<v8::FunctionTemplate>::New($newTemplateString); 569 static v8::Persistent<v8::FunctionTemplate> shared_template = 570 v8::Persistent<v8::FunctionTemplate>::New($newTemplateString); [all...] |