Home | History | Annotate | Download | only in common

Lines Matching refs:tokenLengths

1320 calcNameSetLength(const uint16_t *tokens, uint16_t tokenCount, const uint8_t *tokenStrings, int8_t *tokenLengths,
1345 if(tokenLengths!=NULL) {
1347 tokenLength=tokenLengths[c];
1350 tokenLengths[c]=(int8_t)tokenLength;
1372 int8_t *tokenLengths;
1379 tokenLengths=(int8_t *)uprv_malloc(tokenCount);
1380 if(tokenLengths!=NULL) {
1381 uprv_memset(tokenLengths, 0, tokenCount);
1403 length=calcNameSetLength(tokens, tokenCount, tokenStrings, tokenLengths, gNameSet, &line, lineLimit);
1412 length=calcNameSetLength(tokens, tokenCount, tokenStrings, tokenLengths, gNameSet, &line, lineLimit);
1421 /*length=calcNameSetLength(tokens, tokenCount, tokenStrings, tokenLengths, gISOCommentSet, &line, lineLimit);*/
1428 if(tokenLengths!=NULL) {
1429 uprv_free(tokenLengths);