Lines Matching refs:dst
23 U_CAPI wchar_t *uprv_wcscat(wchar_t *dst, const wchar_t *src) {24 wchar_t *start=dst;25 while(*dst!=0) {26 ++dst;28 while((*dst=*src)!=0) {29 ++dst;35 U_CAPI wchar_t *uprv_wcscpy(wchar_t *dst, const wchar_t *src) {36 wchar_t *start=dst;37 while((*dst=*src)!=0) {38 ++dst;