• Home
  • Raw
  • Download

Lines Matching refs:fResPath

911     if(resB->fResPath == NULL) {  in ures_appendResPath()
912 resB->fResPath = resB->fResBuf; in ures_appendResPath()
913 *(resB->fResPath) = 0; in ures_appendResPath()
918 if(resB->fResPath == resB->fResBuf) { in ures_appendResPath()
919 resB->fResPath = (char *)uprv_malloc((resB->fResPathLen+1)*sizeof(char)); in ures_appendResPath()
921 if (resB->fResPath == NULL) { in ures_appendResPath()
925 uprv_strcpy(resB->fResPath, resB->fResBuf); in ures_appendResPath()
927 char *temp = (char *)uprv_realloc(resB->fResPath, (resB->fResPathLen+1)*sizeof(char)); in ures_appendResPath()
933 resB->fResPath = temp; in ures_appendResPath()
936 uprv_strcpy(resB->fResPath + resPathLenOrig, toAdd); in ures_appendResPath()
940 if (resB->fResPath && resB->fResPath != resB->fResBuf) { in ures_freeResPath()
941 uprv_free(resB->fResPath); in ures_freeResPath()
943 resB->fResPath = NULL; in ures_freeResPath()
1177 if(resB->fResPath[resB->fResPathLen-1] != RES_PATH_SEPARATOR) { in getAliasTargetAsResourceBundle()
1186 containerResPath = resB->fResPath; in getAliasTargetAsResourceBundle()
1241 resB->fResPath = NULL; in init_resb_result()
1261 if(containerResPath != resB->fResPath) { in init_resb_result()
1272 if(containerResPath != resB->fResPath) { in init_resb_result()
1278 if(resB->fResPath[resB->fResPathLen-1] != RES_PATH_SEPARATOR) { in init_resb_result()
1285 if(resB->fResPath[resB->fResPathLen-1] != RES_PATH_SEPARATOR) { in init_resb_result()
1291 int32_t usedLen = ((resB->fResBuf == resB->fResPath) ? resB->fResPathLen : 0); in init_resb_result()
1309 container->fValidLocaleDataEntry, container->fResPath, 0, resB, status); in init_resb_result()
1333 r->fResPath = NULL; in ures_copyResb()
1335 if(original->fResPath) { in ures_copyResb()
1336 ures_appendResPath(r, original->fResPath, original->fResPathLen, status); in ures_copyResb()
2004 const char* origResPath = resB->fResPath; in ures_getByKeyWithFallback()
2013 const char* resPath = resB->fResPath; in ures_getByKeyWithFallback()
2045 resPath = helper->fResPath; in ures_getByKeyWithFallback()
2071 if (fillIn->fResPath != nullptr) { in ures_getByKeyWithFallback()
2072 separator = uprv_strchr(fillIn->fResPath, RES_PATH_SEPARATOR); in ures_getByKeyWithFallback()
2075 createPath(origResPath, origResPathLen, fillIn->fResPath, in ures_getByKeyWithFallback()
2076 … static_cast<int32_t>(uprv_strlen(fillIn->fResPath)), inKey, path, status); in ures_getByKeyWithFallback()
2083 if(fillIn->fResPath[fillIn->fResPathLen-1] != RES_PATH_SEPARATOR) { in ures_getByKeyWithFallback()
2146 if (bundle->fResPath == NULL || *bundle->fResPath == 0) { in getAllItemsWithFallback()
2149 rb = ures_getByKeyWithFallback(parentBundle.getAlias(), bundle->fResPath, in getAllItemsWithFallback()
3246 if(uprv_strncmp(res1->fResPath, res2->fResPath, res1->fResPathLen)!=0){
3262 if(res->fResPath!=NULL){
3263 ret = ures_findSubResource(bundle, res->fResPath, NULL, status);