Home | History | Annotate | Download | only in common

Lines Matching refs:tokenLengths

1306 calcNameSetLength(const uint16_t *tokens, uint16_t tokenCount, const uint8_t *tokenStrings, int8_t *tokenLengths,
1331 if(tokenLengths!=NULL) {
1333 tokenLength=tokenLengths[c];
1336 tokenLengths[c]=(int8_t)tokenLength;
1358 int8_t *tokenLengths;
1365 tokenLengths=(int8_t *)uprv_malloc(tokenCount);
1366 if(tokenLengths!=NULL) {
1367 uprv_memset(tokenLengths, 0, tokenCount);
1389 length=calcNameSetLength(tokens, tokenCount, tokenStrings, tokenLengths, gNameSet, &line, lineLimit);
1398 length=calcNameSetLength(tokens, tokenCount, tokenStrings, tokenLengths, gNameSet, &line, lineLimit);
1407 /*length=calcNameSetLength(tokens, tokenCount, tokenStrings, tokenLengths, gISOCommentSet, &line, lineLimit);*/
1414 if(tokenLengths!=NULL) {
1415 uprv_free(tokenLengths);