Searched defs:lastSlash (Results 1 - 9 of 9) sorted by relevance

/external/chromium/third_party/icu/source/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);
/external/icu4c/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);
/external/srec/portable/src/
H A DPFileSystem.c444 LCHAR* lastSlash; local
461 lastSlash = LSTRRCHR(clone, L('/'));
462 if (lastSlash == NULL)
468 else if (lastSlash < clone + LSTRLEN(clone) - 1)
471 *(lastSlash + 1) = L('\0');
484 if (lastSlash -clone + 2 == 3 && LSTRNCMP(clone, L("../"), 3) == 0)
497 if (lastSlash -clone + 1 == 2 && LSTRNCMP(clone, L("./"), 2) == 0)
509 else if (lastSlash == clone && LSTRNCMP(clone, L("/"), 1) == 0)
515 *lastSlash = 0;
516 lastSlash
[all...]
/external/chromium/third_party/icu/source/i18n/
H A Dnumfmt.cpp945 int32_t lastSlash = nsDesc.lastIndexOf(gSlash); local
946 if ( lastSlash > firstSlash ) {
950 nsRuleSetGroup.setTo(nsDesc,firstSlash+1,lastSlash-firstSlash-1);
951 nsRuleSetName.setTo(nsDesc,lastSlash+1);
/external/icu4c/i18n/
H A Dnumfmt.cpp1221 int32_t lastSlash = nsDesc.lastIndexOf(gSlash); local
1222 if ( lastSlash > firstSlash ) {
1226 nsRuleSetGroup.setTo(nsDesc,firstSlash+1,lastSlash-firstSlash-1);
1227 nsRuleSetName.setTo(nsDesc,lastSlash+1);
/external/webkit/WebCore/bridge/qt/
H A Dqt_runtime.cpp541 int lastSlash = qstring.lastIndexOf(QLatin1Char('/')); local
542 if (firstSlash >=0 && lastSlash > firstSlash) {
545 realRe.setPattern(qstring.mid(firstSlash + 1, lastSlash - firstSlash - 1));
547 if (qstring.mid(lastSlash + 1).contains(QLatin1Char('i')))
/external/webkit/WebKitTools/DumpRenderTree/win/
H A DDumpRenderTree.cpp175 int lastSlash = path.rfind('\\'); local
176 if (lastSlash != -1 && lastSlash + 1 < path.length())
177 path = path.substr(0, lastSlash + 1);
H A DLayoutTestControllerWin.cpp246 int lastSlash = responseURL.rfind('/'); local
247 if (lastSlash != -1)
248 responseURL = responseURL.substr(0, lastSlash);
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...

Completed in 277 milliseconds