OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GlobalPropertyInfo
(Results
1 - 3
of
3
) sorted by null
/external/webkit/Source/WebCore/bindings/js/
JSDOMWindowBase.cpp
55
GlobalPropertyInfo
staticGlobals[] = {
56
GlobalPropertyInfo
(Identifier(globalExec(), "document"), jsNull(), DontDelete | ReadOnly),
57
GlobalPropertyInfo
(Identifier(globalExec(), "window"), m_shell, DontDelete | ReadOnly)
/external/webkit/Source/JavaScriptCore/runtime/
JSGlobalObject.h
263
struct
GlobalPropertyInfo
{
264
GlobalPropertyInfo
(const Identifier& i, JSValue v, unsigned a)
275
void addStaticGlobals(
GlobalPropertyInfo
*, int count);
301
inline void JSGlobalObject::addStaticGlobals(
GlobalPropertyInfo
* globals, int count)
315
GlobalPropertyInfo
& global = globals[i];
JSGlobalObject.cpp
268
GlobalPropertyInfo
staticGlobals[] = {
269
GlobalPropertyInfo
(Identifier(exec, "Math"), new (exec) MathObject(exec, this, MathObject::createStructure(exec->globalData(), m_objectPrototype.get())), DontEnum | DontDelete),
270
GlobalPropertyInfo
(Identifier(exec, "NaN"), jsNaN(), DontEnum | DontDelete | ReadOnly),
271
GlobalPropertyInfo
(Identifier(exec, "Infinity"), jsNumber(Inf), DontEnum | DontDelete | ReadOnly),
272
GlobalPropertyInfo
(Identifier(exec, "undefined"), jsUndefined(), DontEnum | DontDelete | ReadOnly),
273
GlobalPropertyInfo
(Identifier(exec, "JSON"), new (exec) JSONObject(this, JSONObject::createStructure(exec->globalData(), m_objectPrototype.get())), DontEnum | DontDelete)
Completed in 1757 milliseconds