Home
last modified time | relevance | path

Searched refs:OContextStr (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DSampleProf.h495 std::ostringstream OContextStr;
496 OContextStr << Func.str();
498 OContextStr << ":" << Location.LineOffset;
500 OContextStr << "." << Location.Discriminator;
502 return OContextStr.str();
634 std::ostringstream OContextStr;
636 if (OContextStr.str().size()) {
637 OContextStr << " @ ";
639 OContextStr << Context[I].toString(I != Context.size() - 1 ||
642 return OContextStr.str();
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCPseudoProbe.cpp302 std::ostringstream OContextStr; in getInlineContextStr() local
306 if (OContextStr.str().size()) in getInlineContextStr()
307 OContextStr << " @ "; in getInlineContextStr()
308 OContextStr << Cxt.first.str() << ":" << Cxt.second; in getInlineContextStr()
310 return OContextStr.str(); in getInlineContextStr()