Lines Matching refs:res1
2621 ures_equal(const UResourceBundle* res1, const UResourceBundle* res2){
2622 if(res1==NULL || res2==NULL){
2623 return res1==res2; /* pointer comparision */
2625 if(res1->fKey==NULL|| res2->fKey==NULL){
2626 return (res1->fKey==res2->fKey);
2628 if(uprv_strcmp(res1->fKey, res2->fKey)!=0){
2632 if(uprv_strcmp(res1->fData->fName, res2->fData->fName)!=0){
2635 if(res1->fData->fPath == NULL|| res2->fData->fPath==NULL){
2636 return (res1->fData->fPath == res2->fData->fPath);
2638 if(uprv_strcmp(res1->fData->fPath, res2->fData->fPath)!=0){
2642 if(uprv_strcmp(res1->fData->fParent->fName, res2->fData->fParent->fName)!=0){
2645 if(uprv_strcmp(res1->fData->fParent->fPath, res2->fData->fParent->fPath)!=0){
2648 if(uprv_strncmp(res1->fResPath, res2->fResPath, res1->fResPathLen)!=0){
2651 if(res1->fRes != res2->fRes){