OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_functionPrototype
(Results
1 - 3
of
3
) sorted by null
/external/webkit/Source/JavaScriptCore/runtime/
JSGlobalObject.cpp
172
m_functionPrototype
.set(exec->globalData(), this, new (exec) FunctionPrototype(exec, this, FunctionPrototype::createStructure(exec->globalData(), jsNull()))); // The real prototype will be set once ObjectPrototype is created.
173
m_functionStructure.set(exec->globalData(), this, JSFunction::createStructure(exec->globalData(),
m_functionPrototype
.get()));
174
m_internalFunctionStructure.set(exec->globalData(), this, InternalFunction::createStructure(exec->globalData(),
m_functionPrototype
.get()));
177
m_functionPrototype
->addFunctionProperties(exec, this, m_functionStructure.get(), &callFunction, &applyFunction);
181
m_functionPrototype
->structure()->setPrototypeWithoutTransition(exec->globalData(), m_objectPrototype.get());
185
m_callbackFunctionStructure.set(exec->globalData(), this, JSCallbackFunction::createStructure(exec->globalData(),
m_functionPrototype
.get()));
216
JSCell* objectConstructor = new (exec) ObjectConstructor(exec, this, ObjectConstructor::createStructure(exec->globalData(),
m_functionPrototype
.get()), m_objectPrototype.get());
217
JSCell* functionConstructor = new (exec) FunctionConstructor(exec, this, FunctionConstructor::createStructure(exec->globalData(),
m_functionPrototype
.get()),
m_functionPrototype
.get());
218
JSCell* arrayConstructor = new (exec) ArrayConstructor(exec, this, ArrayConstructor::createStructure(exec->globalData(),
m_functionPrototype
.get()), m_arrayPrototype.get(), m_functionStructure.get())
[
all
...]
JSGlobalObject.h
82
WriteBarrier<FunctionPrototype>
m_functionPrototype
;
187
FunctionPrototype* functionPrototype() const { return
m_functionPrototype
.get(); }
/external/webkit/Source/JavaScriptCore/qt/api/
qscriptoriginalglobalobject_p.h
64
JSValueRef
m_functionPrototype
;
83
initializeMember(globalObject, propertyName.get(), "Function", m_functionConstructor,
m_functionPrototype
);
132
JSValueUnprotect(m_context,
m_functionPrototype
);
196
return
m_functionPrototype
;
Completed in 42 milliseconds