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

  /external/webkit/JavaScriptCore/runtime/
JSObject.h 68 typedef EncodedJSValue* PropertyStorage;
162 return location - reinterpret_cast<const JSValue*>(propertyStorage());
183 JSValue getDirectOffset(size_t offset) const { return JSValue::decode(propertyStorage()[offset]); }
184 void putDirectOffset(size_t offset, JSValue value) { propertyStorage()[offset] = JSValue::encode(value); }
244 ConstPropertyStorage propertyStorage() const { return (isUsingInlineStorage() ? m_inlineStorage : m_externalStorage); }
245 PropertyStorage propertyStorage() { return (isUsingInlineStorage() ? m_inlineStorage : m_externalStorage); }
249 return reinterpret_cast<const JSValue*>(&propertyStorage()[offset]);
254 return reinterpret_cast<JSValue*>(&propertyStorage()[offset]);
267 PropertyStorage m_externalStorage
    [all...]
  /external/webkit/JavaScriptCore/jit/
JITPropertyAccess.cpp 539 PropertyStorage* protoPropertyStorage = &base->m_externalStorage;
    [all...]

Completed in 118 milliseconds