Home
last modified time | relevance | path

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

/external/chromium_org/third_party/jstemplate/
Djstemplate.js349 var queue, queueIndex;
354 queueIndex = queueIndices[queueIndices.length - 1];
355 if (queueIndex >= queue.length) {
362 method = queue[queueIndex++];
363 arg1 = queue[queueIndex++];
364 arg2 = queue[queueIndex++];
365 queueIndices[queueIndices.length - 1] = queueIndex;
/external/chromium_org/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/chromium_org/third_party/WebKit/Source/core/fetch/
DMemoryCache.cpp340 unsigned queueIndex = WTF::fastLog2(size / accessCount); in lruListFor() local
341 if (m_allResources.size() <= queueIndex) in lruListFor()
342 m_allResources.grow(queueIndex + 1); in lruListFor()
343 return &m_allResources[queueIndex]; in lruListFor()