Home | History | Annotate | Download | only in genrb

Lines Matching full:srclen

164 static void strnrepchr(char* src, int32_t srcLen, char s, char r){
166 for(i=0;i<srcLen;i++){
224 const UChar* src, int32_t srcLen, UErrorCode* status){
231 if(status==NULL || U_FAILURE(*status) || pDest==NULL || srcLen==0 || src == NULL){
236 destCap = srcLen * 8;
246 while(srcIndex<srcLen){
247 U16_NEXT(src, srcIndex, srcLen, c);
387 print(UChar* src, int32_t srcLen,const char *tagStart,const char *tagEnd, UErrorCode *status){
388 int32_t bufCapacity = srcLen*4;
401 buf = convertAndEscape(&buf, bufCapacity, &bufLen, src, srcLen,status);