Lines Matching refs:res1
2741 ures_equal(const UResourceBundle* res1, const UResourceBundle* res2){
2742 if(res1==NULL || res2==NULL){
2743 return res1==res2; /* pointer comparision */
2745 if(res1->fKey==NULL|| res2->fKey==NULL){
2746 return (res1->fKey==res2->fKey);
2748 if(uprv_strcmp(res1->fKey, res2->fKey)!=0){
2752 if(uprv_strcmp(res1->fData->fName, res2->fData->fName)!=0){
2755 if(res1->fData->fPath == NULL|| res2->fData->fPath==NULL){
2756 return (res1->fData->fPath == res2->fData->fPath);
2758 if(uprv_strcmp(res1->fData->fPath, res2->fData->fPath)!=0){
2762 if(uprv_strcmp(res1->fData->fParent->fName, res2->fData->fParent->fName)!=0){
2765 if(uprv_strcmp(res1->fData->fParent->fPath, res2->fData->fParent->fPath)!=0){
2768 if(uprv_strncmp(res1->fResPath, res2->fResPath, res1->fResPathLen)!=0){
2771 if(res1->fRes != res2->fRes){