Lines Matching refs:Prefix
100 /// getNameWithPrefix - Fill OutName with the name of the appropriate prefix
116 const char *Prefix = MAI.getPrivateGlobalPrefix();
117 OutName.append(Prefix, Prefix+strlen(Prefix));
119 const char *Prefix = MAI.getLinkerPrivateGlobalPrefix();
120 OutName.append(Prefix, Prefix+strlen(Prefix));
123 const char *Prefix = MAI.getGlobalPrefix();
124 if (Prefix[0] == 0)
125 ; // Common noop, no prefix.
126 else if (Prefix[1] == 0)
127 OutName.push_back(Prefix[0]); // Common, one character prefix.
129 OutName.append(Prefix, Prefix+strlen(Prefix)); // Arbitrary length prefix.
174 /// getNameWithPrefix - Fill OutName with the name of the appropriate prefix