Searched defs:ArrayStorage (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/JavaScriptCore/runtime/
H A DJSArray.h32 // This struct holds the actual data values of an array. A JSArray object points to it's contained ArrayStorage
33 // struct by pointing to m_vector. To access the contained ArrayStorage struct, use the getStorage() and
34 // setStorage() methods. It is important to note that there may be space before the ArrayStorage that
37 struct ArrayStorage { struct in namespace:JSC
105 ArrayStorage *storage = m_storage;
116 ArrayStorage *storage = m_storage;
168 int m_indexBias; // The number of JSValue sized blocks before ArrayStorage.
169 ArrayStorage *m_storage;
192 ArrayStorage* storage = m_storage;

Completed in 247 milliseconds