Searched refs:toklen (Results 1 – 2 of 2) sorted by relevance
/external/svox/pico/tts/ |
D | com_svox_picottsengine.cpp | 604 static int get_tok(const char * str , int pos, int textlen, int *tokstart, int *toklen) in get_tok() argument 621 *toklen = pos - *tokstart; in get_tok() 636 static int get_sub_tok(const char * str , int pos, int textlen, int *tokstart, int *toklen) { in get_sub_tok() argument 652 *toklen = pos - *tokstart; in get_sub_tok() 662 *toklen = pos - *tokstart; in get_sub_tok() 665 *toklen = pos - *tokstart; in get_sub_tok() 685 int toklen, tokstart; /*legnth and start of generic token*/ in doCamelCase() local 692 toklen = 0; in doCamelCase() 701 while (get_tok(str, pos, textlen, &tokstart, &toklen)) { in doCamelCase() 705 while (get_sub_tok(str, tokpos, tokstart+toklen, &stokstart, &stoklen)) { in doCamelCase() [all …]
|
/external/libxml2/ |
D | rngparser.c | 58 int toklen; member 291 token->toklen = cur - ctxt->cur; in xmlCRNGNextToken() 292 token->token = xmlDictLookup(ctxt->dict, ctxt->cur, token->toklen); in xmlCRNGNextToken() 308 token->toklen = 2; in xmlCRNGNextToken() 310 token->toklen = 1; in xmlCRNGNextToken() 312 token->token = xmlDictLookup(ctxt->dict, ctxt->cur, token->toklen); in xmlCRNGNextToken() 315 ctxt->cur += token->toklen; in xmlCRNGNextToken() 328 token->toklen = cur - ctxt->cur; in xmlCRNGNextToken() 329 token->token = xmlDictLookup(ctxt->dict, ctxt->cur, token->toklen); in xmlCRNGNextToken() 347 token->toklen = cur - ctxt->cur; in xmlCRNGNextToken() [all …]
|