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

  /external/webkit/Source/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)
JSVariableObject.h 43 class JSVariableObject : public JSNonFinalObject {
69 JSVariableObject(JSGlobalData& globalData, Structure* structure, SymbolTable* symbolTable, Register* registers)
92 inline bool JSVariableObject::symbolTableGet(const Identifier& propertyName, PropertySlot& slot)
102 inline bool JSVariableObject::symbolTableGet(const Identifier& propertyName, PropertySlot& slot, bool& slotIsWriteable)
113 inline bool JSVariableObject::symbolTablePut(JSGlobalData& globalData, const Identifier& propertyName, JSValue value)
126 inline bool JSVariableObject::symbolTablePutWithAttributes(JSGlobalData& globalData, const Identifier& propertyName, JSValue value, unsigned attributes)
140 inline PassOwnArrayPtr<WriteBarrier<Unknown> > JSVariableObject::copyRegisterArray(JSGlobalData& globalData, WriteBarrier<Unknown>* src, size_t count, size_t callframeStarts)
151 inline void JSVariableObject::setRegisters(WriteBarrier<Unknown>* registers, PassOwnArrayPtr<WriteBarrier<Unknown> > registerArray)
JSActivation.h 33 #include "JSVariableObject.h"
42 class JSActivation : public JSVariableObject {
43 typedef JSVariableObject Base;
72 static const unsigned StructureFlags = OverridesGetOwnPropertySlot | NeedsThisConversion | OverridesMarkChildren | OverridesGetPropertyNames | JSVariableObject::StructureFlags;
JSStaticScopeObject.h 29 #include "JSVariableObject.h"
33 class JSStaticScopeObject : public JSVariableObject {
36 : JSVariableObject(exec->globalData(), exec->globalData().staticScopeStructure.get(), &m_symbolTable, reinterpret_cast<Register*>(&m_registerStore + 1))
53 static const unsigned StructureFlags = OverridesGetOwnPropertySlot | NeedsThisConversion | OverridesMarkChildren | OverridesGetPropertyNames | JSVariableObject::StructureFlags;
JSStaticScopeObject.cpp 35 JSVariableObject::markChildren(markStack);
JSGlobalObject.h 27 #include "JSVariableObject.h"
56 class JSGlobalObject : public JSVariableObject {
118 : JSVariableObject(globalData, JSGlobalObject::createStructure(globalData, jsNull()), &m_symbolTable, 0)
129 : JSVariableObject(globalData, structure, &m_symbolTable, 0)
141 : JSVariableObject(globalData, structure, &m_symbolTable, 0)
260 static const unsigned AnonymousSlotCount = JSVariableObject::AnonymousSlotCount + 1;
261 static const unsigned StructureFlags = OverridesGetOwnPropertySlot | OverridesMarkChildren | OverridesGetPropertyNames | JSVariableObject::StructureFlags;
297 JSVariableObject::setRegisters(registers, registerArray);
325 if (JSVariableObject::getOwnPropertySlot(exec, propertyName, slot))
334 return JSVariableObject::getOwnPropertyDescriptor(exec, propertyName, descriptor)
    [all...]
JSGlobalObject.cpp 124 JSVariableObject::put(exec, propertyName, value, slot);
136 JSVariableObject::put(exec, propertyName, value, slot);
148 JSVariableObject::defineGetter(exec, propertyName, getterFunc, attributes);
155 JSVariableObject::defineSetter(exec, propertyName, setterFunc, attributes);
312 JSVariableObject::markChildren(markStack);
  /external/webkit/Source/JavaScriptCore/dfg/
DFGNonSpeculativeJIT.cpp 573 JSVariableObject* globalObject = m_jit.codeBlock()->globalObject();
585 JSVariableObject* globalObject = m_jit.codeBlock()->globalObject();
DFGSpeculativeJIT.cpp 750 JSVariableObject* globalObject = m_jit.codeBlock()->globalObject();
762 JSVariableObject* globalObject = m_jit.codeBlock()->globalObject();
  /external/webkit/Source/JavaScriptCore/jit/
JITOpcodes.cpp 454 JSVariableObject* globalObject = m_codeBlock->globalObject();
463 JSVariableObject* globalObject = m_codeBlock->globalObject();
486 loadPtr(Address(regT0, OBJECT_OFFSETOF(JSVariableObject, m_registers)), regT0);
510 loadPtr(Address(regT1, OBJECT_OFFSETOF(JSVariableObject, m_registers)), regT1);
    [all...]
JITOpcodes32_64.cpp 693 loadPtr(Address(regT2, OBJECT_OFFSETOF(JSVariableObject, m_registers)), regT2);
722 loadPtr(Address(regT2, OBJECT_OFFSETOF(JSVariableObject, m_registers)), regT2);
    [all...]
  /external/webkit/Source/JavaScriptCore/interpreter/
Interpreter.cpp     [all...]
  /external/webkit/Source/JavaScriptCore/bytecompiler/
BytecodeGenerator.cpp     [all...]

Completed in 94 milliseconds