HomeSort by relevance Sort by last modified time
    Searched defs:JSGlobalObject (Results 1 - 3 of 3) sorted by null

  /external/webkit/Source/JavaScriptCore/runtime/
JSGlobalObject.cpp 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 attr (…)
    [all...]
JSGlobalObject.h 56 class JSGlobalObject : public JSVariableObject {
117 explicit JSGlobalObject(JSGlobalData& globalData)
118 : JSVariableObject(globalData, JSGlobalObject::createStructure(globalData, jsNull()), &m_symbolTable, 0)
123 COMPILE_ASSERT(JSGlobalObject::AnonymousSlotCount == 1, JSGlobalObject_has_only_a_single_slot);
128 explicit JSGlobalObject(JSGlobalData& globalData, Structure* structure)
134 COMPILE_ASSERT(JSGlobalObject::AnonymousSlotCount == 1, JSGlobalObject_has_only_a_single_slot);
140 JSGlobalObject(JSGlobalData& globalData, Structure* structure, JSObject* thisValue)
146 COMPILE_ASSERT(JSGlobalObject::AnonymousSlotCount == 1, JSGlobalObject_has_only_a_single_slot);
152 virtual ~JSGlobalObject();
230 virtual bool allowsAccessFrom(const JSGlobalObject*) const { return true;
    [all...]
  /external/v8/src/
objects.h 54 // - JSGlobalObject
739 V(JSGlobalObject) \
    [all...]

Completed in 146 milliseconds