OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_vectorLength
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/JavaScriptCore/runtime/
JSArray.cpp
144
m_vectorLength
= initialCapacity;
166
m_vectorLength
= initialCapacity;
212
m_vectorLength
= initialStorage;
253
if (i <
m_vectorLength
) {
301
if (i <
m_vectorLength
) {
355
if (i <
m_vectorLength
) {
423
for (unsigned j = max(
m_vectorLength
, MIN_SPARSE_ARRAY_INDEX); j < newVectorLength; ++j)
453
unsigned vectorLength =
m_vectorLength
;
471
m_vectorLength
= newVectorLength;
500
if (i <
m_vectorLength
) {
[
all
...]
JSArray.h
91
bool canGetIndex(unsigned i) { return i <
m_vectorLength
&& m_storage->m_vector[i]; }
98
bool canSetIndex(unsigned i) { return i <
m_vectorLength
; }
140
return OBJECT_OFFSETOF(JSArray,
m_vectorLength
);
167
unsigned
m_vectorLength
; // The valid length of m_vector
194
unsigned usedVectorLength = std::min(storage->m_length,
m_vectorLength
);
Completed in 6166 milliseconds