Home
last modified time | relevance | path

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

/external/v8/src/debug/
Dmirrors.js1311 MapMirror.prototype.entries = function(opt_limit) { argument
1315 var entries = %GetWeakMapEntries(this.value_, opt_limit || 0);
1327 while ((!opt_limit || result.length < opt_limit) &&
1344 function IteratorGetValues_(iter, next_function, opt_limit) { argument
1347 while ((!opt_limit || result.length < opt_limit) &&
1362 SetMirror.prototype.values = function(opt_limit) { argument
1364 return %GetWeakSetValues(this.value_, opt_limit || 0);
1368 return IteratorGetValues_(iter, SetIteratorNext, opt_limit);
1385 IteratorMirror.prototype.preview = function(opt_limit) { argument
1389 opt_limit);
[all …]