Searched refs:lastSlash (Results 1 - 12 of 12) 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/emma/core/java12/com/vladium/util/
H A DDescriptors.java177 int lastSlash = -1;
180 if (descriptor [s] == '/') lastSlash = s;
183 for (start = lastSlash > 0 ? lastSlash + 1 : start; descriptor [start] != ';'; ++ start)
/external/webkit/WebKitTools/android/webkitmerge/
H A Dwebkitmerge.cpp688 char* lastSlash = strrchr(start, '/') + 1;
697 if (ch == '/' && start == lastSlash)
822 char* lastSlash;
824 while ((lastSlash = strrchr(st, '/')) != NULL) {
825 char* lastEnd = strchr(lastSlash, ' ');
827 lastEnd = lastSlash + strlen(lastSlash);
828 myassert(lastSlash != 0);
829 lastSlash++;
830 size_t lastLen = lastEnd - 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/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/core/java12/com/vladium/emma/instr/
H A DInstrVisitor.java2034 final int lastSlash = fullName.lastIndexOf ('/');
2035 if (lastSlash < 0)
2042 if ($assert.ENABLED) $assert.ASSERT (lastSlash < fullName.length () - 1,
2045 m_classPackageName = fullName.substring (0, lastSlash);
2046 m_className = fullName.substring (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/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...

Completed in 100 milliseconds