Home | History | Annotate | Download | only in i18n

Lines Matching refs:src2

118                    const uint8_t *src2, int32_t src2Length,
122 src2==NULL || src2Length<-1 || src2Length==0 || (src2Length>0 && src2[src2Length-1]!=0) ||
137 src2Length=(int32_t)uprv_strlen((const char *)src2)+1;
159 /* copy level from src2 not including 00 or 01 */
160 while((b=*src2)>=2) {
161 ++src2;
166 if(*src1==1 && *src2==1) {
168 ++src2;
181 /* src1 is not finished, therefore *src2==0, and src1 is appended */
182 src2=src1;
184 /* append src2, "the other, unfinished sort key" */
185 while((*p++=*src2++)!=0) {}