Home | History | Annotate | Download | only in tools

Lines Matching full:line

81    * Current line.
151 * Processes a line of V8 profiler event log.
153 * @param {string} line A line of log.
155 devtools.profiler.LogReader.prototype.processLogLine = function(line) {
156 this.processLog_([line]);
237 * Decompresses a line if it was backreference-compressed.
239 * @param {string} line Possibly compressed line.
240 * @return {string} Decompressed line.
243 devtools.profiler.LogReader.prototype.expandBackRef_ = function(line) {
246 if (line.charAt(line.length - 1) != '"'
247 && (backRefPos = line.lastIndexOf('#')) != -1) {
248 var backRef = line.substr(backRefPos + 1);
253 line = line.substr(0, backRefPos) +
256 this.backRefs_.unshift(line);
260 return line;
306 var line = lines[i];
307 if (!line) {
311 if (line.charAt(0) == '#' ||
312 line.substr(0, line.indexOf(',')) in this.backRefsCommands_) {
313 line = this.expandBackRef_(line);
315 var fields = this.csvParser_.parseLine(line);
318 this.printError('line ' + (this.lineNum_ + 1) + ': ' + (e.message || e));