Lines Matching defs:Annotation
410 void BinaryFunction::print(raw_ostream &OS, std::string Annotation) {
416 OS << "Binary Function \"" << *this << "\" " << Annotation << " {";
3124 std::string Annotation,
3127 if (!Annotation.empty())
3128 Annotation.insert(0, "-");
3129 if (Filename.size() + Annotation.size() + Suffix.size() > MAX_PATH) {
3130 assert(Suffix.size() + Annotation.size() <= MAX_PATH);
3131 Filename.resize(MAX_PATH - (Suffix.size() + Annotation.size()));
3133 Filename += Annotation;
3269 void BinaryFunction::dumpGraphForPass(std::string Annotation) const {
3273 std::string Filename = constructFilename(getPrintName(), Annotation, ".dot");