Lines Matching defs:Name
23 // should be printed before the section name.
24 bool MCSectionELF::ShouldOmitSectionDirective(StringRef Name,
31 if (Name == ".text" || Name == ".data" ||
32 (Name == ".bss" && !MAI.usesELFSectionDirectiveForBSS()))
38 static void printName(raw_ostream &OS, StringRef Name) {
39 if (Name.find_first_not_of("0123456789_."
41 "ABCDEFGHIJKLMNOPQRSTUVWXYZ") == Name.npos) {
42 OS << Name;
46 for (const char *B = Name.begin(), *E = Name.end(); B < E; ++B) {