Searched refs:lastSlash (Results 1 - 15 of 15) sorted by relevance

/macosx-10.9.5/ICU-511.35/icuSources/tools/genrb/
H A Drbutil.c31 const char *lastSlash = uprv_strrchr(filename, U_FILE_SEP_CHAR) + 1; local
33 if(lastSlash>filename) {
34 uprv_strncpy(dirname, filename, (lastSlash - filename));
35 *(dirname + (lastSlash - filename)) = '\0';
47 const char *lastSlash = uprv_strrchr(filename, U_FILE_SEP_CHAR) + 1; local
50 if(lastSlash>filename) {
51 uprv_strcpy(basename, lastSlash);
/macosx-10.9.5/Security-55471.14.18/include/security_keychain/
H A DTrustedApplication.cpp203 string::size_type lastSlash = path.rfind('/'); local
205 if (lastSlash != string::npos && bundleCore != string::npos)
206 if (bundleCore + 15 == lastSlash)
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/Security/
H A DTrustedApplication.cpp203 string::size_type lastSlash = path.rfind('/'); local
205 if (lastSlash != string::npos && bundleCore != string::npos)
206 if (bundleCore + 15 == lastSlash)
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/lib/
H A DTrustedApplication.cpp203 string::size_type lastSlash = path.rfind('/'); local
205 if (lastSlash != string::npos && bundleCore != string::npos)
206 if (bundleCore + 15 == lastSlash)
/macosx-10.9.5/Heimdal-323.92.1/lib/krb5/
H A Dexpand_path.c96 TCHAR *lastSlash; local
105 lastSlash = strrchr(path, '\\');
106 if (lastSlash != NULL) {
107 TCHAR *fslash = strrchr(lastSlash, '/');
110 lastSlash = fslash;
112 *lastSlash = '\0';
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/EntryPoint/mac/LegacyProcess/
H A DWebContentProcessMain.mm161 size_t lastSlash = clientExecutable.reverseFind('/');
162 clientProcessName = clientExecutable.substring(lastSlash + 1);
/macosx-10.9.5/dyld-239.4/src/
H A DImageLoaderMachOClassic.cpp591 const char* lastSlash = strrchr(parentInstallPath, '/'); local
592 if ( lastSlash != NULL ) {
593 if ( strcmp(&lastSlash[1], exportThruName) == 0 )
596 // when DYLD_IMAGE_SUFFIX is used, lastSlash string needs imageSuffix removed from end
600 if ( strcmp(&lastSlash[1], reexportAndSuffix) == 0 )
619 const char* lastSlash = strrchr(childInstallPath, '/'); local
620 if ( lastSlash != NULL ) {
621 const char* firstDot = strchr(lastSlash, '.');
624 len = strlen(lastSlash);
626 len = firstDot-lastSlash
661 const char* lastSlash = strrchr(childInstallPath, '/'); local
[all...]
H A DdyldAPIs.cpp1353 const char* lastSlash = strrchr(path, '/'); local
1356 dirPath[lastSlash-path] = '\0';
1359 if ( strlcat(canonicalPath, lastSlash+1, sizeof(canonicalPath)) < sizeof(canonicalPath) ) {
1449 const char* lastSlash = strrchr(path, '/'); local
1452 dirPath[lastSlash-path] = '\0';
1455 if ( strlcat(canonicalPath, lastSlash+1, sizeof(canonicalPath)) < sizeof(canonicalPath) ) {
H A Ddyld.cpp1583 char* lastSlash = strrchr(mainExecutableDir, '/'); local
1584 if ( lastSlash != NULL)
1585 lastSlash[1] = '\0';
/macosx-10.9.5/dyld-239.4/launch-cache/
H A Ddsc_extractor.cpp294 char* lastSlash = strrchr(dirs, '/'); local
295 if ( lastSlash == NULL )
297 lastSlash[1] = '\0';
H A DMachOBinder.hpp414 const char* lastSlash = strrchr(dylibName, '/'); local
415 const char* leafStart = &lastSlash[1];
416 if ( lastSlash == NULL )
430 const char* lastSlash = strrchr(dylibName, '/'); local
431 if ( (lastSlash != NULL) && (strcmp(&lastSlash[1], frameworkLeafName) == 0) )
H A Dupdate_dyld_shared_cache.cpp282 char* lastSlash = strrchr(symFullPath, '/'); local
283 if ( lastSlash != NULL ) {
284 strcpy(lastSlash+1, pathInSymLink);
2864 char* lastSlash = strrchr(dyldDirs, '/'); local
2865 if ( lastSlash != NULL )
2866 lastSlash[1] = '\0';
/macosx-10.9.5/CF-855.17/
H A DCFPlatform.c855 wchar_t *lastSlash = wcsrchr(wide, '\\'); local
856 if (!lastSlash) {
862 *lastSlash = 0;
873 *lastSlash = '\\';
H A DCFBundle.c2692 CFIndex endOfLine = 0, lastSlash = 0; local
2695 for (i = endOfLine - 1; 0 == lastSlash && i > 1; i--) if ('/' == bytes[i]) lastSlash = i;
2696 if (lastSlash > 0) {
2697 if (0 == ustrncmp(bytes + lastSlash + 1, "perl", 4)) ext = "pl";
2698 else if (0 == ustrncmp(bytes + lastSlash + 1, "python", 6)) ext = "py";
2699 else if (0 == ustrncmp(bytes + lastSlash + 1, "ruby", 4)) ext = "rb";
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Dnumfmt.cpp1328 int32_t lastSlash = nsDesc.lastIndexOf(gSlash); local
1329 if ( lastSlash > firstSlash ) {
1333 nsRuleSetGroup.setTo(nsDesc,firstSlash+1,lastSlash-firstSlash-1);
1334 nsRuleSetName.setTo(nsDesc,lastSlash+1);

Completed in 580 milliseconds