Lines Matching defs:SymName
1737 StringRef SymName = cantFail(Sym.getName());
1738 if (SymName.empty())
1740 if (SymName.starts_with("__sinit") || SymName.starts_with("__sterm") ||
1741 SymName.front() == '.' || SymName.front() == '(')
1744 // Check the SymName regex matching with "^__[0-9]+__".
1745 if (SymName.size() > 4 && SymName.starts_with("__") &&
1746 SymName.ends_with("__")) {
1747 if (std::all_of(SymName.begin() + 2, SymName.end() - 2, isDigit))
1751 if (SymName == "__rsrc" && NoRsrc)
1754 if (SymName.starts_with("__tf1"))
1755 SymName = SymName.substr(6);
1756 else if (SymName.starts_with("__tf9"))
1757 SymName = SymName.substr(14);
1760 S.Name = SymName.str();
2058 StringRef SymName = I.getName();
2059 outs() << SymName << " in " << FileNameOrErr.get() << "\n";