Lines Matching defs:column
352 expanded_location(const string& path, unsigned line, unsigned column)
353 : path_(path), line_(line), column_(column)
381 /// Expand the location into a tripplet path, line and column number.
389 /// @param column the ouptut parameter where this function sets the
390 /// expanded column.
392 location::expand(std::string& path, unsigned& line, unsigned& column) const
401 column = 0;
404 get_location_manager()->expand_location(*this, path, line, column);
415 unsigned line = 0, column = 0;
416 expand(path, line, column);
419 o << path << ":" << line << ":" << column;
445 /// @param col the column number of the source location
460 /// {path,line,column} that represents the source locus. Note that
468 /// @param column the resulting colum of the source locus
473 unsigned& column) const
480 column = l.column_;
4582 /// line, column} that defines where the declaration appeared in the
4585 /// To get the value of the tripplet {file path, line, column} from
4602 /// line, column} that defines where the declaration appeared in the
4605 /// To create a location from a tripplet {file path, line, column},
23203 unsigned line = 0, column = 0;
23206 fn_loc.expand(fn_filepath, line, column);
23208 sn_loc.expand(sn_filepath, line, column);