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.h483 std::ostringstream OContextStr;
484 OContextStr << Func.str();
486 OContextStr << ":" << Location.LineOffset;
488 OContextStr << "." << Location.Discriminator;
490 return OContextStr.str();
622 std::ostringstream OContextStr;
624 if (OContextStr.str().size()) {
625 OContextStr << " @ ";
627 OContextStr << Context[I].toString(I != Context.size() - 1 ||
630 return OContextStr.str();
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCPseudoProbe.cpp301 std::ostringstream OContextStr; in getInlineContextStr() local
305 if (OContextStr.str().size()) in getInlineContextStr()
306 OContextStr << " @ "; in getInlineContextStr()
307 OContextStr << Cxt.first.str() << ":" << Cxt.second; in getInlineContextStr()
309 return OContextStr.str(); in getInlineContextStr()