HomeSort by relevance Sort by last modified time
    Searched refs:JSVariableObject (Results 1 - 14 of 14) sorted by null

  /external/webkit/JavaScriptCore/runtime/
JSVariableObject.cpp 30 #include "JSVariableObject.h"
37 bool JSVariableObject::deleteProperty(ExecState* exec, const Identifier& propertyName)
45 void JSVariableObject::getOwnPropertyNames(ExecState* exec, PropertyNameArray& propertyNames, EnumerationMode mode)
56 bool JSVariableObject::isVariableObject() const
61 bool JSVariableObject::symbolTableGet(const Identifier& propertyName, PropertyDescriptor& descriptor)
JSStaticScopeObject.h 29 #include "JSVariableObject.h"
33 class JSStaticScopeObject : public JSVariableObject {
35 using JSVariableObject::JSVariableObjectData;
47 : JSVariableObject(exec->globalData().staticScopeStructure, new JSStaticScopeObjectData())
63 static const unsigned StructureFlags = OverridesGetOwnPropertySlot | NeedsThisConversion | OverridesMarkChildren | OverridesGetPropertyNames | JSVariableObject::StructureFlags;
66 JSStaticScopeObjectData* d() { return static_cast<JSStaticScopeObjectData*>(JSVariableObject::d); }
JSActivation.h 33 #include "JSVariableObject.h"
43 class JSActivation : public JSVariableObject {
44 typedef JSVariableObject Base;
72 static const unsigned StructureFlags = OverridesGetOwnPropertySlot | NeedsThisConversion | OverridesMarkChildren | OverridesGetPropertyNames | JSVariableObject::StructureFlags;
95 JSActivationData* d() const { return static_cast<JSActivationData*>(JSVariableObject::d); }
JSVariableObject.h 43 class JSVariableObject : public JSObject {
66 // Subclasses of JSVariableObject can subclass this struct to add data
86 JSVariableObject(NonNullPassRefPtr<Structure> structure, JSVariableObjectData* data)
104 inline bool JSVariableObject::symbolTableGet(const Identifier& propertyName, PropertySlot& slot)
114 inline bool JSVariableObject::symbolTableGet(const Identifier& propertyName, PropertySlot& slot, bool& slotIsWriteable)
125 inline bool JSVariableObject::symbolTablePut(const Identifier& propertyName, JSValue value)
138 inline bool JSVariableObject::symbolTablePutWithAttributes(const Identifier& propertyName, JSValue value, unsigned attributes)
152 inline Register* JSVariableObject::copyRegisterArray(Register* src, size_t count)
160 inline void JSVariableObject::setRegisters(Register* registers, Register* registerArray)
JSStaticScopeObject.cpp 36 JSVariableObject::markChildren(markStack);
JSGlobalObject.h 27 #include "JSVariableObject.h"
56 class JSGlobalObject : public JSVariableObject {
58 using JSVariableObject::JSVariableObjectData;
162 : JSVariableObject(JSGlobalObject::createStructure(jsNull()), new JSGlobalObjectData(destroyJSGlobalObjectData))
169 : JSVariableObject(structure, data)
266 JSGlobalObjectData* d() const { return static_cast<JSGlobalObjectData*>(JSVariableObject::d); }
275 static const unsigned StructureFlags = OverridesGetOwnPropertySlot | OverridesMarkChildren | OverridesGetPropertyNames | JSVariableObject::StructureFlags;
313 JSVariableObject::setRegisters(registers, registerArray);
337 if (JSVariableObject::getOwnPropertySlot(exec, propertyName, slot))
346 return JSVariableObject::getOwnPropertyDescriptor(exec, propertyName, descriptor)
    [all...]
JSGlobalObject.cpp 160 JSVariableObject::put(exec, propertyName, value, slot);
172 JSVariableObject::put(exec, propertyName, value, slot);
184 JSVariableObject::defineGetter(exec, propertyName, getterFunc, attributes);
191 JSVariableObject::defineSetter(exec, propertyName, setterFunc, attributes);
364 JSVariableObject::markChildren(markStack);
  /external/webkit/WebCore/bindings/js/
JSDOMWindowBase.h 91 JSDOMWindowBaseData* d() const { return static_cast<JSDOMWindowBaseData*>(JSC::JSVariableObject::d); }
JSDOMGlobalObject.h 94 JSDOMGlobalObjectData* d() const { return static_cast<JSDOMGlobalObjectData*>(JSC::JSVariableObject::d); }
  /external/webkit/JavaScriptCore/jit/
JIT.cpp 566 loadPtr(Address(variableObject, OBJECT_OFFSETOF(JSVariableObject, d)), dst);
567 loadPtr(Address(dst, OBJECT_OFFSETOF(JSVariableObject::JSVariableObjectData, registers)), dst);
573 loadPtr(Address(variableObject, OBJECT_OFFSETOF(JSVariableObject, d)), variableObject);
574 loadPtr(Address(variableObject, OBJECT_OFFSETOF(JSVariableObject::JSVariableObjectData, registers)), variableObject);
JITOpcodes.cpp 577 loadPtr(Address(regT2, OBJECT_OFFSETOF(JSVariableObject, d)), regT2);
578 loadPtr(Address(regT2, OBJECT_OFFSETOF(JSVariableObject::JSVariableObjectData, registers)), regT2);
598 loadPtr(Address(regT2, OBJECT_OFFSETOF(JSVariableObject, d)), regT2);
599 loadPtr(Address(regT2, OBJECT_OFFSETOF(JSVariableObject::JSVariableObjectData, registers)), regT2);
    [all...]
  /external/webkit/JavaScriptCore/
Android.mk 122 runtime/JSVariableObject.cpp \
  /external/webkit/JavaScriptCore/interpreter/
Interpreter.cpp 791 JSVariableObject* variableObject;
795 variableObject = static_cast<JSVariableObject*>(node->object);
    [all...]
  /external/webkit/JavaScriptCore/bytecompiler/
BytecodeGenerator.cpp     [all...]

Completed in 411 milliseconds