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

/external/chromium_org/net/cookies/
H A Dcookie_monster.cc206 // sorts the first |num_sort| + 1 elements by LastAccessDate().
207 // The + 1 element exists so for any interval of length <= |num_sort| starting
212 size_t num_sort) {
213 DCHECK_LT(static_cast<int>(num_sort), it_end - it_begin);
214 std::partial_sort(it_begin, it_begin + num_sort + 1, it_end, LRACookieSorter);
209 SortLeastRecentlyAccessed( CookieMonster::CookieItVector::iterator it_begin, CookieMonster::CookieItVector::iterator it_end, size_t num_sort) argument

Completed in 112 milliseconds