Lines Matching refs:column
421 // Determine start, end and column.
428 var column = position - start;
434 column += this.column_offset;
438 return new SourceLocation(this, position, line, column, start, end);
443 * Get information on a specific source line and column possibly offset by a
445 * a line and column position. The fixed source position offset is typically
446 * used to find a source position in a function based on a line and column in
450 * @param {number} opt_column The column in within the line. Default value is 0
452 * source from where the line and column calculation starts.
465 // Default is first column. If on the first line add the offset within the
467 var column = opt_column || 0;
469 column -= this.column_offset;
473 if (line < 0 || column < 0 || offset_position < 0) return null;
475 return this.locationFromPosition(offset_position + column, false);
485 this.line_ends[offset_line + line - 1] + 1 + column); // line > 0 here.
632 * column : source column within the line
643 * @param {number} column The column within the line for the location
648 function SourceLocation(script, position, line, column, start, end) {
652 this.column = column;
723 $Array("script", "position", "line", "column", "start", "end"),
921 return location ? location.column + 1: null;
1057 eval_origin += ":" + (location.column + 1);