Home | History | Annotate | Download | only in genrb

Lines Matching refs:srcLen

174 static void strnrepchr(char* src, int32_t srcLen, char s, char r){
176 for(i=0;i<srcLen;i++){
234 const UChar* src, int32_t srcLen, UErrorCode* status){
241 if(status==NULL || U_FAILURE(*status) || pDest==NULL || srcLen==0 || src == NULL){
246 destCap = srcLen * 8;
256 while(srcIndex<srcLen){
257 U16_NEXT(src, srcIndex, srcLen, c);
397 print(UChar* src, int32_t srcLen,const char *tagStart,const char *tagEnd, UErrorCode *status){
398 int32_t bufCapacity = srcLen*4;
411 buf = convertAndEscape(&buf, bufCapacity, &bufLen, src, srcLen,status);