Home | History | Annotate | Download | only in tools

Lines Matching refs:stack

85  *     during stack strace processing, specifies a position of the frame
221 * Records a tick event. Stack must contain a sequence of
224 * @param {Array<number>} stack Stack sample.
226 devtools.profiler.Profile.prototype.recordTick = function(stack) {
227 var processedStack = this.resolveAndFilterFuncs_(stack);
238 * @param {Array<number>} stack Stack sample.
240 devtools.profiler.Profile.prototype.resolveAndFilterFuncs_ = function(stack) {
242 for (var i = 0; i < stack.length; ++i) {
243 var entry = this.codeMap_.findEntry(stack[i]);
251 devtools.profiler.Profile.Operation.TICK, stack[i], i);