Home
last modified time | relevance | path

Searched refs:queueIndex (Results 1 – 3 of 3) sorted by relevance

/external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jst/
Djstemplate.js367 var queue, queueIndex;
372 queueIndex = queueIndices[queueIndices.length - 1];
373 if (queueIndex >= queue.length) {
380 method = queue[queueIndex++];
381 arg1 = queue[queueIndex++];
382 arg2 = queue[queueIndex++];
383 queueIndices[queueIndices.length - 1] = queueIndex;
/external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/jstemplate/
Djstemplate.js367 var queue, queueIndex;
372 queueIndex = queueIndices[queueIndices.length - 1];
373 if (queueIndex >= queue.length) {
380 method = queue[queueIndex++];
381 arg1 = queue[queueIndex++];
382 arg2 = queue[queueIndex++];
383 queueIndices[queueIndices.length - 1] = queueIndex;
/external/webkit/Source/WebCore/loader/cache/
DMemoryCache.cpp371 unsigned queueIndex = fastLog2(resource->size() / accessCount); in lruListFor() local
373 resource->m_lruIndex = queueIndex; in lruListFor()
375 if (m_allResources.size() <= queueIndex) in lruListFor()
376 m_allResources.grow(queueIndex + 1); in lruListFor()
377 return &m_allResources[queueIndex]; in lruListFor()