HomeSort by relevance Sort by last modified time
    Searched full:functiontemplate (Results 51 - 75 of 94) sorted by null

1 23 4

  /external/v8/test/cctest/
test-decls.cc 77 virtual Local<ObjectTemplate> GetHolder(Local<FunctionTemplate> function) {
113 Local<FunctionTemplate> function = FunctionTemplate::New();
515 virtual Local<ObjectTemplate> GetHolder(Local<FunctionTemplate> function) {
577 virtual Local<ObjectTemplate> GetHolder(Local<FunctionTemplate> function) {
test-accessors.cc 58 Local<v8::FunctionTemplate> fun_templ = v8::FunctionTemplate::New();
94 v8::Handle<v8::FunctionTemplate> templ = v8::FunctionTemplate::New();
test-log.cc 538 v8::Persistent<v8::FunctionTemplate> obj =
539 v8::Persistent<v8::FunctionTemplate>::New(v8::FunctionTemplate::New());
544 v8::FunctionTemplate::New(ObjMethod1,
588 v8::Persistent<v8::FunctionTemplate> obj =
589 v8::Persistent<v8::FunctionTemplate>::New(v8::FunctionTemplate::New());
    [all...]
test-compiler.cc 50 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunction(
61 v8::Handle<v8::FunctionTemplate> PrintExtension::GetNativeFunction(
63 return v8::FunctionTemplate::New(PrintExtension::Print);
test-profile-generator.cc 699 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunction(
712 v8::Handle<v8::FunctionTemplate> ProfilerExtension::GetNativeFunction(
715 return v8::FunctionTemplate::New(ProfilerExtension::StartProfiling);
717 return v8::FunctionTemplate::New(ProfilerExtension::StopProfiling);
720 return v8::Handle<v8::FunctionTemplate>();
test-debug.cc     [all...]
  /external/v8/include/
v8.h 101 class FunctionTemplate;
    [all...]
  /external/clang/lib/Sema/
SemaTemplateInstantiateDecl.cpp     [all...]
CodeCompleteConsumer.cpp 315 return FunctionTemplate->getTemplatedDecl();
327 return FunctionTemplate->getTemplatedDecl()->getType()
  /external/v8/src/
d8-posix.cc 685 os_templ->Set(String::New("system"), FunctionTemplate::New(System));
686 os_templ->Set(String::New("chdir"), FunctionTemplate::New(ChangeDirectory));
687 os_templ->Set(String::New("setenv"), FunctionTemplate::New(SetEnvironment));
689 FunctionTemplate::New(UnsetEnvironment));
690 os_templ->Set(String::New("umask"), FunctionTemplate::New(SetUMask));
691 os_templ->Set(String::New("mkdirp"), FunctionTemplate::New(MakeDirectory));
692 os_templ->Set(String::New("rmdir"), FunctionTemplate::New(RemoveDirectory));
api.h 167 static Local<FunctionTemplate> ToFunctionTemplate(NeanderObject obj);
198 static inline Local<FunctionTemplate> ToLocal(
210 OpenHandle(const FunctionTemplate* that);
277 MAKE_TO_LOCAL(ToLocal, FunctionTemplateInfo, FunctionTemplate)
301 MAKE_OPEN_HANDLE(FunctionTemplate, FunctionTemplateInfo)
api.cc 760 Local<ObjectTemplate> FunctionTemplate::PrototypeTemplate() {
762 if (IsDeadCheck(isolate, "v8::FunctionTemplate::PrototypeTemplate()")) {
775 void FunctionTemplate::Inherit(v8::Handle<FunctionTemplate> value) {
777 if (IsDeadCheck(isolate, "v8::FunctionTemplate::Inherit()")) return;
783 Local<FunctionTemplate> FunctionTemplate::New(InvocationCallback callback,
786 EnsureInitializedForIsolate(isolate, "v8::FunctionTemplate::New()");
787 LOG_API(isolate, "FunctionTemplate::New");
810 Local<Signature> Signature::New(Handle<FunctionTemplate> receiver
    [all...]
  /external/v8/src/extensions/experimental/
break-iterator.h 84 static v8::Persistent<v8::FunctionTemplate> break_iterator_template_;
  /external/webkit/Source/WebCore/bindings/v8/
ScriptDebugServer.h 117 OwnHandle<v8::FunctionTemplate> m_breakProgramCallbackTemplate;
V8DOMWrapper.cpp 138 v8::Handle<v8::FunctionTemplate> functionTemplate = type->getTemplate();
142 v8::Local<v8::Function> value = functionTemplate->GetFunction();
V8Proxy.h 99 // constants. It sets the constant on both the FunctionTemplate and the
106 void batchConfigureConstants(v8::Handle<v8::FunctionTemplate>, v8::Handle<v8::ObjectTemplate>, const BatchedConstant*, size_t constantCount);
V8Proxy.cpp 116 v8::FunctionTemplate::New(callbacks[i].callback,
123 void batchConfigureConstants(v8::Handle<v8::FunctionTemplate> functionDescriptor,
137 typedef HashMap<int, v8::FunctionTemplate*> FunctionTemplateMap;
  /external/clang/test/Index/
index-templates.cpp 104 // CHECK-LOAD: index-templates.cpp:4:6: FunctionTemplate=f:4:6 Extent=[3:1 - 4:22]
155 // CHECK-LOAD: index-templates.cpp:50:26: FunctionTemplate=getAs:50:26 Extent=[50:3 - 50:33]
167 // CHECK-LOAD: index-templates.cpp:68:6: FunctionTemplate=unresolved_exprs:68:6 (Definition)
171 // CHECK-LOAD: index-templates.cpp:82:6: FunctionTemplate=init_list:82:6 (Definition)
load-stmts.cpp 173 // CHECK: load-stmts.cpp:50:6: FunctionTemplate=test_dependent_exprs:50:6 (Definition)
189 // CHECK: load-stmts.cpp:67:6: FunctionTemplate=test_more_dependent_exprs:67:6 (Definition)
  /hardware/ril/mock-ril/src/cpp/
node_buffer.cpp 79 Persistent<FunctionTemplate> Buffer::constructor_template;
619 Local<FunctionTemplate> t = FunctionTemplate::New(Buffer::New);
620 constructor_template = Persistent<FunctionTemplate>::New(t);
node_buffer.h 76 static v8::Persistent<v8::FunctionTemplate> constructor_template;
  /external/webkit/Source/WebCore/bindings/scripts/
CodeGeneratorV8.pm 282 static v8::Persistent<v8::FunctionTemplate> GetRawTemplate();
283 static v8::Persistent<v8::FunctionTemplate> GetTemplate();
625 static v8::Persistent<v8::FunctionTemplate> privateTemplate = v8::Persistent<v8::FunctionTemplate>::New($newTemplateString);
634 static v8::Persistent<v8::FunctionTemplate> sharedTemplate = v8::Persistent<v8::FunctionTemplate>::New($newTemplateString);
    [all...]
  /external/v8/samples/
lineprocessor.cc 208 global->Set(v8::String::New("print"), v8::FunctionTemplate::New(Print));
213 v8::FunctionTemplate::New(ReadLine));
  /external/clang/include/clang/Sema/
CodeCompleteConsumer.h 797 FunctionTemplateDecl *FunctionTemplate;
809 : Kind(CK_FunctionTemplate), FunctionTemplate(FunctionTemplateDecl) { }
824 return FunctionTemplate;
    [all...]
  /external/clang/lib/Frontend/
ASTConsumers.cpp 370 case Decl::FunctionTemplate: {

Completed in 1014 milliseconds

1 23 4