Home | History | Annotate | Download | only in common

Lines Matching refs:baseName

208     const char *basename=uprv_strrchr(path, U_FILE_SEP_CHAR);
209 if(basename==NULL) {
212 return basename+1;
311 const char *baseName;
313 baseName = findBasename(path); /* Cache remembers only the base name, not the full path. */
316 el = (DataCacheElement *)uhash_get(htable, baseName);
322 fprintf(stderr, "Cache: [%s] -> %p\n", baseName, retVal);
330 const char *baseName;
355 baseName = findBasename(path);
356 nameLen = (int32_t)uprv_strlen(baseName);
364 uprv_strcpy(newElement->name, baseName);
422 const char *basename; /* item's basename (icudt22e_mt.res)*/
425 uint32_t basenameLen; /* length of basename */
468 basename = findBasename(item);
469 basenameLen = (int32_t)uprv_strlen(basename);
472 if(basename == item) {
475 itemPath.append(item, (int32_t)(basename-item), *pErrorCode);
498 basename,
572 uprv_strncmp(findBasename(pathBuffer.data()), basename, basenameLen)==0 && /* base matches */
597 fprintf(stderr, "Found stub %s (will add package %s of len %d)\n", packageStub.data(), basename, basenameLen);
604 /* + basename */
718 /* no basename. This will happen if the original path was a directory name, */
721 fprintf(stderr, "ocd: no basename in %s, bailing.\n", path);
1246 /* End of dealing with a null basename */