Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DSampleProf.h482 std::ostringstream OContextStr;
483 OContextStr << Func.str();
485 OContextStr << ":" << Location.LineOffset;
487 OContextStr << "." << Location.Discriminator;
489 return OContextStr.str();
621 std::ostringstream OContextStr;
623 if (OContextStr.str().size()) {
624 OContextStr << " @ ";
626 OContextStr << Context[I].toString(I != Context.size() - 1 ||
629 return OContextStr.str();
/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/
H A DMCPseudoProbe.cpp306 std::ostringstream OContextStr; in getInlineContextStr() local
310 if (OContextStr.str().size()) in getInlineContextStr()
311 OContextStr << " @ "; in getInlineContextStr()
312 OContextStr << Cxt.first.str() << ":" << Cxt.second; in getInlineContextStr()
314 return OContextStr.str(); in getInlineContextStr()