Home | History | Annotate | Download | only in Target

Lines Matching defs:Prefix

103 /// getNameWithPrefix - Fill OutName with the name of the appropriate prefix
119 const char *Prefix = MAI.getPrivateGlobalPrefix();
120 OutName.append(Prefix, Prefix+strlen(Prefix));
122 const char *Prefix = MAI.getLinkerPrivateGlobalPrefix();
123 OutName.append(Prefix, Prefix+strlen(Prefix));
126 const char *Prefix = MAI.getGlobalPrefix();
127 if (Prefix[0] == 0)
128 ; // Common noop, no prefix.
129 else if (Prefix[1] == 0)
130 OutName.push_back(Prefix[0]); // Common, one character prefix.
132 OutName.append(Prefix, Prefix+strlen(Prefix)); // Arbitrary length prefix.
177 /// getNameWithPrefix - Fill OutName with the name of the appropriate prefix