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

/openjdk7/jdk/src/windows/demo/jvmti/hprof/
H A Dhprof_md.c248 char *lastSlash; local
253 lastSlash = strrchr(libdir, '\\');
254 if ( lastSlash != NULL ) {
255 *lastSlash = '\0';
257 lastSlash = strrchr(libdir, '\\');
258 if ( lastSlash != NULL ) {
259 *lastSlash = '\0';
/openjdk7/jdk/src/solaris/demo/jvmti/hprof/
H A Dhprof_md.c304 char * lastSlash; local
308 lastSlash = strrchr(libdir, '/');
309 if ( lastSlash != NULL ) {
310 *lastSlash = '\0';
314 lastSlash = strrchr(libdir, '/');
315 if ( lastSlash != NULL ) {
316 *lastSlash = '\0';
/openjdk7/jdk/src/windows/native/common/
H A Djni_util_md.c35 char* lastSlash = max(strrchr(path, '\\'), strrchr(path, '/')); local
36 if (lastSlash == NULL) {
42 *lastSlash = 0;
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/jar/
H A DHandler.java198 int lastSlash = ctxFile.lastIndexOf('/');
199 if (lastSlash == -1) {
204 ctxFile = ctxFile.substring(0, lastSlash + 1);
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/som/cff/
H A DFileLocator.java191 int lastSlash = fileName.lastIndexOf ('/');
197 if ((lastDot > 0) && (lastDot > lastSlash)) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/util/
H A DJaxmURI.java458 int lastSlash = basePath.lastIndexOf('/');
459 if (lastSlash != -1) {
460 path = basePath.substring(0, lastSlash+1);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DURI.java777 int lastSlash = basePath.lastIndexOf('/');
778 if (lastSlash != -1) {
779 path = basePath.substring(0, lastSlash+1);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/utils/
H A DURI.java511 int lastSlash = basePath.lastIndexOf('/');
513 if (lastSlash != -1)
515 path = basePath.substring(0, lastSlash + 1);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DURI.java532 int lastSlash = basePath.lastIndexOf('/');
534 if (lastSlash != -1)
536 path = basePath.substring(0, lastSlash + 1);

Completed in 703 milliseconds