Home | History | Annotate | Download | only in common

Lines Matching refs:fResPath

752   if(resB->fResPath == NULL) {
753 resB->fResPath = resB->fResBuf;
754 *(resB->fResPath) = 0;
758 if(resB->fResPath == resB->fResBuf) {
759 resB->fResPath = (char *)uprv_malloc((resB->fResPathLen+1)*sizeof(char));
761 resB->fResPath = (char *)uprv_realloc(resB->fResPath, (resB->fResPathLen+1)*sizeof(char));
764 uprv_strcpy(resB->fResPath, toAdd);
769 if(resB->fResPath == NULL) {
770 resB->fResPath = resB->fResBuf;
771 *(resB->fResPath) = 0;
776 if(resB->fResPath == resB->fResBuf) {
777 resB->fResPath = (char *)uprv_malloc((resB->fResPathLen+1)*sizeof(char));
779 if (resB->fResPath == NULL) {
783 uprv_strcpy(resB->fResPath, resB->fResBuf);
785 char *temp = (char *)uprv_realloc(resB->fResPath, (resB->fResPathLen+1)*sizeof(char));
791 resB->fResPath = temp;
794 uprv_strcpy(resB->fResPath + resPathLenOrig, toAdd);
798 if (resB->fResPath && resB->fResPath != resB->fResBuf) {
799 uprv_free(resB->fResPath);
801 resB->fResPath = NULL;
859 * of the alias and parent->fResPath.
871 if(parent->fResPath != NULL) {
872 capacity = (int32_t)uprv_strlen(parent->fResPath) + 1;
947 char *aKey = parent->fResPath;
956 /* we need to make keyPath from parent's fResPath and
1070 resB->fResPath = NULL;
1102 if(parent->fResPath && parent != resB) {
1103 ures_appendResPath(resB, parent->fResPath, parent->fResPathLen, status);
1107 if(resB->fResPath[resB->fResPathLen-1] != RES_PATH_SEPARATOR) {
1114 if(resB->fResPath[resB->fResPathLen-1] != RES_PATH_SEPARATOR) {
1120 int32_t usedLen = ((resB->fResBuf == resB->fResPath) ? resB->fResPathLen : 0);
1151 r->fResPath = NULL;
1153 if(original->fResPath) {
1154 ures_appendResPath(r, original->fResPath, original->fResPathLen, status);
1579 return resB->fResPath;
1740 const char* resPath = resB->fResPath;
1762 resPath = helper->fResPath;
1774 /* check if resB->fResPath gives the right name here */
1819 /* check if resB->fResPath gives the right name here */
2174 r->fResPath = NULL;
2840 if(uprv_strncmp(res1->fResPath, res2->fResPath, res1->fResPathLen)!=0){
2856 if(res->fResPath!=NULL){
2857 ret = ures_findSubResource(bundle, res->fResPath, NULL, status);