Lines Matching refs:str
110 T_CString_toLowerCase(char* str)112 char* origPtr = str;114 if (str) {116 *str = (char)uprv_tolower(*str);117 while (*(str++));124 T_CString_toUpperCase(char* str)126 char* origPtr = str;128 if (str) {130 *str = (char)uprv_toupper(*str);131 while (*(str++));