Home | History | Annotate | Download | only in common

Lines Matching refs:str2

235 uprv_stricmp(const char *str1, const char *str2) {
237 if(str2==NULL) {
242 } else if(str2==NULL) {
251 c2=(unsigned char)*str2;
268 ++str2;
274 uprv_strnicmp(const char *str1, const char *str2, uint32_t n) {
276 if(str2==NULL) {
281 } else if(str2==NULL) {
290 c2=(unsigned char)*str2;
307 ++str2;