Lines Matching refs:Prefix
27 Private, ///< Emit "private" prefix before each symbol.
28 LinkerPrivate ///< Emit "linker private" prefix before each symbol.
34 const DataLayout &DL, char Prefix) {
51 if (Prefix != '\0')
52 OS << Prefix;
61 char Prefix = DL.getGlobalPrefix();
62 return getNameWithPrefixImpl(OS, GVName, PrefixTy, DL, Prefix);
73 char Prefix = DL.getGlobalPrefix();
74 return getNameWithPrefixImpl(OS, GVName, Default, DL, Prefix);
132 char Prefix = DL.getGlobalPrefix();
146 Prefix = '@'; // fastcall functions have an @ prefix instead of _.
148 Prefix = '\0'; // vectorcall functions have no prefix.
151 getNameWithPrefixImpl(OS, Name, PrefixTy, DL, Prefix);