HomeSort by relevance Sort by last modified time
    Searched refs:FunctionTemplate (Results 1 - 25 of 49) sorted by null

1 2

  /external/webkit/WebCore/bindings/v8/custom/
V8HTMLAudioElementConstructor.h 40 static v8::Persistent<v8::FunctionTemplate> GetTemplate();
V8HTMLImageElementConstructor.h 40 static v8::Persistent<v8::FunctionTemplate> GetTemplate();
V8HTMLOptionElementConstructor.h 40 static v8::Persistent<v8::FunctionTemplate> GetTemplate();
V8HTMLAudioElementConstructor.cpp 79 v8::Persistent<v8::FunctionTemplate> V8HTMLAudioElementConstructor::GetTemplate()
81 static v8::Persistent<v8::FunctionTemplate> cachedTemplate;
86 v8::Local<v8::FunctionTemplate> result = v8::FunctionTemplate::New(v8HTMLAudioElementConstructorCallback);
93 cachedTemplate = v8::Persistent<v8::FunctionTemplate>::New(result);
V8HTMLImageElementConstructor.cpp 79 v8::Persistent<v8::FunctionTemplate> V8HTMLImageElementConstructor::GetTemplate()
81 static v8::Persistent<v8::FunctionTemplate> cachedTemplate;
86 v8::Local<v8::FunctionTemplate> result = v8::FunctionTemplate::New(v8HTMLImageElementConstructorCallback);
93 cachedTemplate = v8::Persistent<v8::FunctionTemplate>::New(result);
V8HTMLOptionElementConstructor.cpp 95 v8::Persistent<v8::FunctionTemplate> V8HTMLOptionElementConstructor::GetTemplate()
97 static v8::Persistent<v8::FunctionTemplate> cachedTemplate;
102 v8::Local<v8::FunctionTemplate> result = v8::FunctionTemplate::New(v8HTMLOptionElementConstructorCallback);
109 cachedTemplate = v8::Persistent<v8::FunctionTemplate>::New(result);
V8LocationCustom.cpp 213 static v8::Persistent<v8::FunctionTemplate> privateTemplate = v8::Persistent<v8::FunctionTemplate>::New(v8::FunctionTemplate::New(V8Location::reloadCallback, v8::Handle<v8::Value>(), v8::Signature::New(V8Location::GetRawTemplate())));
222 static v8::Persistent<v8::FunctionTemplate> sharedTemplate = v8::Persistent<v8::FunctionTemplate>::New(v8::FunctionTemplate::New(V8Location::reloadCallback, v8::Handle<v8::Value>(), v8::Signature::New(V8Location::GetRawTemplate())));
231 static v8::Persistent<v8::FunctionTemplate> privateTemplate = v8::Persistent<v8::FunctionTemplate>::New(v8::FunctionTemplate::New(V8Location::replaceCallback, v8::Handle<v8::Value>(), v8::Signature::New(V8Location::GetRawTemplate())));
240 static v8::Persistent<v8::FunctionTemplate> sharedTemplate = v8::Persistent<v8::FunctionTemplate>::New(v8::FunctionTemplate::New(V8Location:: (…)
    [all...]
  /external/webkit/WebCore/bindings/v8/
V8Index.cpp 475 v8::Persistent<v8::FunctionTemplate> V8ClassIndex::getTemplate(V8WrapperType type)
484 return v8::Persistent<v8::FunctionTemplate>::New(v8::FunctionTemplate::New());
DateExtension.h 46 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunction(v8::Handle<v8::String>);
DateExtension.cpp 95 v8::Handle<v8::FunctionTemplate> DateExtension::GetNativeFunction(v8::Handle<v8::String> name)
98 return v8::FunctionTemplate::New(Setup);
100 return v8::FunctionTemplate::New(OnSleepDetected);
102 return v8::Handle<v8::FunctionTemplate>();
V8LazyEventListener.cpp 133 DEFINE_STATIC_LOCAL(v8::Persistent<v8::FunctionTemplate>, toStringTemplate, ());
135 toStringTemplate = v8::Persistent<v8::FunctionTemplate>::New(v8::FunctionTemplate::New(V8LazyEventListenerToString));
V8Binding.h 158 v8::Persistent<v8::FunctionTemplate> createRawTemplate();
163 v8::Local<v8::Signature> configureTemplate(v8::Persistent<v8::FunctionTemplate>,
165 v8::Persistent<v8::FunctionTemplate> parentClass,
180 v8::Persistent<v8::FunctionTemplate> getToStringTemplate();
V8Collection.h 157 template<class Collection, class ItemType> static void setCollectionIndexedGetter(v8::Handle<v8::FunctionTemplate> desc, V8ClassIndex::V8WrapperType type)
165 template<class Collection, class ItemType> static void setCollectionNamedGetter(v8::Handle<v8::FunctionTemplate> desc, V8ClassIndex::V8WrapperType type)
171 template<class Collection> static void setCollectionStringOrNullIndexedGetter(v8::Handle<v8::FunctionTemplate> desc)
178 template<class Collection> static void setCollectionStringIndexedGetter(v8::Handle<v8::FunctionTemplate> desc)
V8Binding.cpp 433 v8::Persistent<v8::FunctionTemplate> createRawTemplate()
436 v8::Local<v8::FunctionTemplate> result = v8::FunctionTemplate::New(V8Proxy::checkNewLegal);
437 return v8::Persistent<v8::FunctionTemplate>::New(result);
440 v8::Local<v8::Signature> configureTemplate(v8::Persistent<v8::FunctionTemplate> desc,
442 v8::Persistent<v8::FunctionTemplate> parentClass,
490 v8::Persistent<v8::FunctionTemplate> getToStringTemplate()
492 DEFINE_STATIC_LOCAL(v8::Persistent<v8::FunctionTemplate>, toStringTemplate, ());
494 toStringTemplate = v8::Persistent<v8::FunctionTemplate>::New(v8::FunctionTemplate::New(constructorToString))
    [all...]
  /external/webkit/WebKit/chromium/src/
BoundObject.cpp 44 v8::Local<v8::FunctionTemplate> localTemplate = v8::FunctionTemplate::New(WebCore::V8Proxy::checkNewLegal);
45 m_hostTemplate = v8::Persistent<v8::FunctionTemplate>::New(localTemplate);
62 v8::FunctionTemplate::New(
BoundObject.h 54 v8::Persistent<v8::FunctionTemplate> m_hostTemplate;
  /hardware/ril/mock-ril/src/cpp/
node_util.h 41 v8::Local<v8::FunctionTemplate> __callback##_TEM = \
42 v8::FunctionTemplate::New(callback, v8::Handle<v8::Value>(), \
50 v8::FunctionTemplate::New(callback)->GetFunction())
protobuf_v8.cpp 66 using v8::FunctionTemplate;
94 Persistent<FunctionTemplate> SchemaTemplate;
95 Persistent<FunctionTemplate> TypeTemplate;
96 Persistent<FunctionTemplate> ParseTemplate;
97 Persistent<FunctionTemplate> SerializeTemplate;
530 TypeTemplate = Persistent<FunctionTemplate>::New(FunctionTemplate::New());
538 SchemaTemplate = Persistent<FunctionTemplate>::New(FunctionTemplate::New(Schema::NewSchema));
545 ParseTemplate = Persistent<FunctionTemplate>::New(FunctionTemplate::New(Schema::Type::Parse))
    [all...]
js_support.cpp 252 global->Set(v8::String::New("msSleep"), v8::FunctionTemplate::New(MsSleep));
253 global->Set(v8::String::New("print"), v8::FunctionTemplate::New(Print));
255 v8::FunctionTemplate::New(ReadFileToBuffer));
257 v8::FunctionTemplate::New(ReadFileToString));
259 v8::FunctionTemplate::New(SendRilRequestComplete));
261 v8::FunctionTemplate::New(SendRilUnsolicitedResponse));
263 v8::FunctionTemplate::New(SendCtrlRequestComplete));
264 global->Set(v8::String::New("include"), v8::FunctionTemplate::New(Include));
  /external/chromium/net/proxy/
proxy_resolver_v8.cc 162 v8::Local<v8::FunctionTemplate> alert_template =
163 v8::FunctionTemplate::New(&AlertCallback, v8_this_);
166 v8::Local<v8::FunctionTemplate> my_ip_address_template =
167 v8::FunctionTemplate::New(&MyIpAddressCallback, v8_this_);
171 v8::Local<v8::FunctionTemplate> dns_resolve_template =
172 v8::FunctionTemplate::New(&DnsResolveCallback, v8_this_);
178 v8::Local<v8::FunctionTemplate> dns_resolve_ex_template =
179 v8::FunctionTemplate::New(&DnsResolveExCallback, v8_this_);
183 v8::Local<v8::FunctionTemplate> my_ip_address_ex_template =
184 v8::FunctionTemplate::New(&MyIpAddressExCallback, v8_this_)
    [all...]
  /external/v8/test/cctest/
test-log-stack-tracer.cc 96 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunction(
114 v8::Handle<v8::FunctionTemplate> TraceExtension::GetNativeFunction(
117 return v8::FunctionTemplate::New(TraceExtension::Trace);
119 return v8::FunctionTemplate::New(TraceExtension::JSTrace);
121 return v8::FunctionTemplate::New(TraceExtension::JSEntrySP);
123 return v8::FunctionTemplate::New(TraceExtension::JSEntrySPLevel2);
126 return v8::Handle<v8::FunctionTemplate>();
test-thread-termination.cc 105 v8::FunctionTemplate::New(terminate));
106 global->Set(v8::String::New("fail"), v8::FunctionTemplate::New(Fail));
107 global->Set(v8::String::New("loop"), v8::FunctionTemplate::New(Loop));
108 global->Set(v8::String::New("doloop"), v8::FunctionTemplate::New(doloop));
274 v8::FunctionTemplate::New(TerminateOrReturnObject));
275 global->Set(v8::String::New("fail"), v8::FunctionTemplate::New(Fail));
277 v8::FunctionTemplate::New(LoopGetProperty));
test-api.cc 135 v8::Handle<v8::FunctionTemplate> fun = v8::FunctionTemplate::New();
139 v8::FunctionTemplate::New(IncrementingSignatureCallback,
148 v8::Handle<v8::FunctionTemplate> sub_fun = v8::FunctionTemplate::New();
164 v8::Handle<v8::FunctionTemplate> unrel_fun = v8::FunctionTemplate::New();
181 v8::Handle<v8::FunctionTemplate> cons = v8::FunctionTemplate::New();
184 v8::Signature::New(v8::Handle<v8::FunctionTemplate>(), 1, &cons)
    [all...]
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) {
  /external/v8/samples/
shell.cc 55 global->Set(v8::String::New("print"), v8::FunctionTemplate::New(Print));
57 global->Set(v8::String::New("read"), v8::FunctionTemplate::New(Read));
59 global->Set(v8::String::New("load"), v8::FunctionTemplate::New(Load));
61 global->Set(v8::String::New("quit"), v8::FunctionTemplate::New(Quit));
63 global->Set(v8::String::New("version"), v8::FunctionTemplate::New(Version));

Completed in 142 milliseconds

1 2