Lines Matching refs:stack
87 * during stack strace processing, specifies a position of the frame
232 * Records a tick event. Stack must contain a sequence of
235 * @param {Array<number>} stack Stack sample.
237 Profile.prototype.recordTick = function(stack) {
238 var processedStack = this.resolveAndFilterFuncs_(stack);
249 * @param {Array<number>} stack Stack sample.
251 Profile.prototype.resolveAndFilterFuncs_ = function(stack) {
253 for (var i = 0; i < stack.length; ++i) {
254 var entry = this.codeMap_.findEntry(stack[i]);
262 Profile.Operation.TICK, stack[i], i);