Home | History | Annotate | Download | only in common

Lines Matching refs:fResPath

758   if(resB->fResPath == NULL) {
759 resB->fResPath = resB->fResBuf;
760 *(resB->fResPath) = 0;
764 if(resB->fResPath == resB->fResBuf) {
765 resB->fResPath = (char *)uprv_malloc((resB->fResPathLen+1)*sizeof(char));
767 resB->fResPath = (char *)uprv_realloc(resB->fResPath, (resB->fResPathLen+1)*sizeof(char));
770 uprv_strcpy(resB->fResPath, toAdd);
775 if(resB->fResPath == NULL) {
776 resB->fResPath = resB->fResBuf;
777 *(resB->fResPath) = 0;
782 if(resB->fResPath == resB->fResBuf) {
783 resB->fResPath = (char *)uprv_malloc((resB->fResPathLen+1)*sizeof(char));
785 if (resB->fResPath == NULL) {
789 uprv_strcpy(resB->fResPath, resB->fResBuf);
791 char *temp = (char *)uprv_realloc(resB->fResPath, (resB->fResPathLen+1)*sizeof(char));
797 resB->fResPath = temp;
800 uprv_strcpy(resB->fResPath + resPathLenOrig, toAdd);
804 if (resB->fResPath && resB->fResPath != resB->fResBuf) {
805 uprv_free(resB->fResPath);
807 resB->fResPath = NULL;
865 * of the alias and parent->fResPath.
877 if(parent->fResPath != NULL) {
878 capacity = (int32_t)uprv_strlen(parent->fResPath) + 1;
953 char *aKey = parent->fResPath;
962 /* we need to make keyPath from parent's fResPath and
1076 resB->fResPath = NULL;
1108 if(parent->fResPath && parent != resB) {
1109 ures_appendResPath(resB, parent->fResPath, parent->fResPathLen, status);
1113 if(resB->fResPath[resB->fResPathLen-1] != RES_PATH_SEPARATOR) {
1120 if(resB->fResPath[resB->fResPathLen-1] != RES_PATH_SEPARATOR) {
1126 int32_t usedLen = ((resB->fResBuf == resB->fResPath) ? resB->fResPathLen : 0);
1157 r->fResPath = NULL;
1159 if(original->fResPath) {
1160 ures_appendResPath(r, original->fResPath, original->fResPathLen, status);
1585 return resB->fResPath;
1712 const char* resPath = resB->fResPath;
1733 resPath = helper->fResPath;
1745 /* check if resB->fResPath gives the right name here */
1791 /* check if resB->fResPath gives the right name here */
2140 r->fResPath = NULL;
2806 if(uprv_strncmp(res1->fResPath, res2->fResPath, res1->fResPathLen)!=0){
2822 if(res->fResPath!=NULL){
2823 ret = ures_findSubResource(bundle, res->fResPath, NULL, status);