Home | History | Annotate | Download | only in Object

Lines Matching defs:Suffix

1230 // Where A and Foo can be any string.  And may contain a trailing suffix
1233 // suffix then Suffix is set to the substring in Name that contains the suffix
1240 // The library may have a suffix trailing the name Foo of the form:
1253 StringRef &Suffix) {
1258 Suffix = StringRef();
1266 // Look for a suffix starting with a '_'
1269 Suffix = Foo.slice(Idx, Foo.npos);
1310 // pull off the suffix after the "." and make a point to it
1330 // ignore any suffix after an underbar like Foo_profile.A.dylib
1334 Suffix = Name.slice(Idx, a);
1392 StringRef Suffix;
1394 StringRef shortName = guessLibraryShortName(Name, isFramework, Suffix);