Lines Matching defs:JSGlobalObject

31 #include "JSGlobalObject.h"
73 ASSERT_CLASS_FITS_IN_CELL(JSGlobalObject);
87 JSGlobalObject::~JSGlobalObject()
100 void JSGlobalObject::init(JSObject* thisValue)
109 JSGlobalObject::globalExec()->init(0, 0, m_globalScopeChain.get(), CallFrame::noCaller(), 0, 0);
118 void JSGlobalObject::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
127 void JSGlobalObject::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue value, unsigned attributes)
144 void JSGlobalObject::defineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getterFunc, unsigned attributes)
151 void JSGlobalObject::defineSetter(ExecState* exec, const Identifier& propertyName, JSObject* setterFunc, unsigned attributes)
166 void JSGlobalObject::reset(JSValue prototype)
168 ExecState* exec = JSGlobalObject::globalExec();
300 void JSGlobalObject::resetPrototype(JSGlobalData& globalData, JSValue prototype)
310 void JSGlobalObject::markChildren(MarkStack& markStack)
367 ExecState* JSGlobalObject::globalExec()
372 bool JSGlobalObject::isDynamicScope(bool&) const
377 void JSGlobalObject::copyGlobalsFrom(RegisterFile& registerFile)
393 void JSGlobalObject::copyGlobalsTo(RegisterFile& registerFile)
395 JSGlobalObject* lastGlobalObject = registerFile.globalObject();
409 void JSGlobalObject::resizeRegisters(int oldSize, int newSize)
431 void* JSGlobalObject::operator new(size_t size, JSGlobalData* globalData)
436 DynamicGlobalObjectScope::DynamicGlobalObjectScope(JSGlobalData& globalData, JSGlobalObject* dynamicGlobalObject)