OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:functionTemplate
(Results
1 - 4
of
4
) sorted by null
/external/clang/test/CodeGenCXX/
predefined-expr-sizeof.cpp
16
void
functionTemplate
(T t) {
26
functionTemplate
<int>(0);
27
functionTemplate
(0.0);
/external/webkit/Source/WebCore/bindings/v8/
V8DOMWrapper.h
76
static v8::Handle<v8::Object> lookupDOMWrapper(v8::Handle<v8::
FunctionTemplate
>
functionTemplate
, v8::Handle<v8::Object> object)
78
return object.IsEmpty() ? object : object->FindInstanceInPrototypeChain(
functionTemplate
);
V8NPObject.cpp
165
static WeakReferenceMap<PrivateIdentifier, v8::
FunctionTemplate
> staticTemplateMap(&weakTemplateCallback);
203
v8::Persistent<v8::
FunctionTemplate
>
functionTemplate
= staticTemplateMap.get(id);
205
if (
functionTemplate
.IsEmpty()) {
207
v8::Local<v8::
FunctionTemplate
> temp = v8::
FunctionTemplate
::New();
209
functionTemplate
= v8::Persistent<v8::
FunctionTemplate
>::New(temp);
210
staticTemplateMap.set(id,
functionTemplate
);
213
//
FunctionTemplate
caches function for each context
[
all
...]
V8DOMWrapper.cpp
138
v8::Handle<v8::
FunctionTemplate
>
functionTemplate
= type->getTemplate();
142
v8::Local<v8::Function> value =
functionTemplate
->GetFunction();
Completed in 837 milliseconds