Lines Matching refs:lengths
75 * These lengths are sequentially for each tokenized string, not for the de-tokenized result.
77 * 32 lengths.
273 addLine(UChar32 code, const char *names[], int16_t lengths[], int16_t count);
306 int16_t lengths[4]={ 0, 0, 0, 0 };
311 lengths[0]=(int16_t)uprv_strlen(props.name);
312 parseName(names[0], lengths[0]);
328 lengths[3]=(int16_t)(limit-corr);
331 lengths[3]=(int16_t)uprv_strlen(corr);
333 parseName(names[3], lengths[3]);
337 addLine(props.start, names, lengths, LENGTHOF(names));
981 addLine(UChar32 code, const char *names[], int16_t lengths[], int16_t count) {
992 while(count>0 && lengths[count-1]==0) {
1003 /* add lengths of strings */
1005 length+=lengths[--i];
1017 if(lengths[i]>0) {
1018 uprv_memcpy(stringStart+length, names[i], lengths[i]);
1019 length+=lengths[i];
1047 /* store the line lengths first, then the strings */