Home | History | Annotate | Download | only in Object

Lines Matching refs:Suffix

904 // Where A and Foo can be any string.  And may contain a trailing suffix
907 // suffix then Suffix is set to the substring in Name that contains the suffix
914 // The library may have a suffix trailing the name Foo of the form:
927 StringRef &Suffix) {
932 Suffix = StringRef();
940 // Look for a suffix starting with a '_'
943 Suffix = Foo.slice(Idx, Foo.npos);
984 // pull off the suffix after the "." and make a point to it
1004 // ignore any suffix after an underbar like Foo_profile.A.dylib
1008 Suffix = Name.slice(Idx, a);
1061 StringRef Suffix;
1063 StringRef shortName = guessLibraryShortName(Name, isFramework, Suffix);