Lines Matching full:sl
38 raw_ostream &llvm::gsym::operator<<(raw_ostream &OS, const SourceLocation &SL) { in operator <<() argument
39 OS << SL.Name; in operator <<()
40 if (SL.Offset > 0) in operator <<()
41 OS << " + " << SL.Offset; in operator <<()
42 if (SL.Dir.size() || SL.Base.size()) { in operator <<()
44 if (!SL.Dir.empty()) { in operator <<()
45 OS << SL.Dir; in operator <<()
46 if (SL.Dir.contains('\\') && !SL.Dir.contains('/')) in operator <<()
51 if (SL.Base.empty()) in operator <<()
54 OS << SL.Base; in operator <<()
55 OS << ':' << SL.Line; in operator <<()