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

  /external/webkit/JavaScriptCore/runtime/
JSGlobalObject.cpp 31 #include "JSGlobalObject.h"
75 ASSERT_CLASS_FITS_IN_CELL(JSGlobalObject);
95 JSGlobalObject::~JSGlobalObject()
109 JSGlobalObject*& headObject = head();
127 void JSGlobalObject::init(JSObject* thisValue)
136 JSGlobalObject::globalExec()->init(0, 0, d()->globalScopeChain.node(), CallFrame::noCaller(), 0, 0, 0);
138 if (JSGlobalObject*& headObject = head()) {
154 void JSGlobalObject::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
163 void JSGlobalObject::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue value, unsigned attrib (…)
    [all...]
JSGlobalObject.h 56 class JSGlobalObject : public JSVariableObject {
100 JSGlobalObject* next;
101 JSGlobalObject* prev;
161 explicit JSGlobalObject()
162 : JSVariableObject(JSGlobalObject::createStructure(jsNull()), new JSGlobalObjectData(destroyJSGlobalObjectData))
168 JSGlobalObject(NonNullPassRefPtr<Structure> structure, JSGlobalObjectData* data, JSObject* thisValue)
175 virtual ~JSGlobalObject();
189 JSGlobalObject*& head() { return d()->globalData->head; }
190 JSGlobalObject* next() { return d()->next; }
254 virtual bool allowsAccessFrom(const JSGlobalObject*) const { return true;
    [all...]
  /external/v8/src/
objects.h 54 // - JSGlobalObject
    [all...]

Completed in 78 milliseconds