Home | History | Annotate | Download | only in Scalar

Lines Matching defs:FName

248   void printFunctionProfile(raw_ostream &OS, StringRef FName);
249 void dumpFunctionProfile(StringRef FName);
366 /// \brief Print the function profile for \p FName on stream \p OS.
369 /// \param FName Name of the function to print.
371 StringRef FName) {
372 OS << "Function: " << FName << ":\n";
373 Profiles[FName].print(OS);
376 /// \brief Dump the function profile for \p FName.
378 /// \param FName Name of the function to print.
379 void SampleModuleProfile::dumpFunctionProfile(StringRef FName) {
380 printFunctionProfile(dbgs(), FName);
488 StringRef FName = Matches[1];
492 Profiles[FName] = SampleFunctionProfile();
493 SampleFunctionProfile &FProfile = Profiles[FName];