Lines Matching refs:SL
37 raw_ostream &llvm::gsym::operator<<(raw_ostream &OS, const SourceLocation &SL) { in operator <<() argument
38 OS << SL.Name; in operator <<()
39 if (SL.Offset > 0) in operator <<()
40 OS << " + " << SL.Offset; in operator <<()
41 if (SL.Dir.size() || SL.Base.size()) { in operator <<()
43 if (!SL.Dir.empty()) { in operator <<()
44 OS << SL.Dir; in operator <<()
45 if (SL.Dir.contains('\\') and not SL.Dir.contains('/')) in operator <<()
50 if (SL.Base.empty()) in operator <<()
53 OS << SL.Base; in operator <<()
54 OS << ':' << SL.Line; in operator <<()