Searched defs:token_index (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/ui/app_list/search/
H A Dtokenized_string_char_iterator.h26 State(size_t token_index, int char_index);
28 size_t token_index; member in struct:app_list::TokenizedStringCharIterator::State
H A Dtokenized_string_char_iterator.cc13 TokenizedStringCharIterator::State::State() : token_index(0u), char_index(0) {}
15 TokenizedStringCharIterator::State::State(size_t token_index, int char_index) argument
16 : token_index(token_index),
74 current_token_ = state.token_index;
/external/srec/srec/crec/
H A Dsrec_debug.c43 void print_fsmnode_token(srec* rec, ftokenID token_index, char* msg) argument
49 if (token_index == MAXftokenID)
51 printf("%sftoken %d\n", msg, token_index);
54 ftoken = &rec->fsmnode_token_array[token_index];
55 printf("%sftoken %d rec %d@%d fsmnode %d cost %d word %d(%s) word_backtrace %d next_token_index %d ", msg, token_index, rec->id, rec->current_search_frame, ftoken->FSMnode_index, ftoken->cost, ftoken->word,
66 void print_fsmnode_token_list(srec* rec, stokenID token_index, char* msg) argument
70 while (token_index != MAXftokenID)
72 fsmnode_token* ftoken = &rec->fsmnode_token_array[token_index];
73 print_fsmnode_token(rec, token_index, "");
74 token_index
91 print_fsmarc_token(srec* rec, stokenID token_index, char* msg) argument
120 print_fsmarc_token_list(srec* rec, stokenID token_index, char* msg) argument
[all...]
H A Dpriority_q.c163 wtokenID token_index; local
166 token_index = pq->word_token_list;
167 while (token_index != MAXwordID)
169 token = &(word_token_array[token_index]);
170 token_index = token->next_token_index;
191 wtokenID token_index, return_token_index; local
204 token_index = pq->word_token_list;
205 while (token_index != MAXwordID)
207 token = &(word_token_array[token_index]);
208 printf("WORDADD PQ token %d word %d cost %d\n", token_index, toke
[all...]
H A Dsrec_tokens.c37 int count_fsmarc_token_list(srec* rec, stokenID token_index) argument
41 while (token_index != MAXstokenID)
43 fsmarc_token* stoken = &rec->fsmarc_token_array[token_index];
44 token_index = stoken->next_token_index;
191 int count_fsmnode_token_list(srec* rec, ftokenID token_index) argument
195 while (token_index != MAXftokenID)
197 fsmnode_token* ftoken = &rec->fsmnode_token_array[token_index];
198 token_index = ftoken->next_token_index;
H A Dword_lattice.c356 wtokenID token_index; local
374 token_index = wl->words_for_frame[i];
378 print_word_token_list(rec, token_index, "");
381 if (i == rec->current_search_frame && token_index != MAXwtokenID)
383 wtoken = &(rec->word_token_array[token_index]);
384 print_word_token(rec, token_index, "Final Top Choice: ");
414 wtokenID token_index; local
426 token_index = wl->words_for_frame[end_frame];
428 if (token_index == MAXwtokenID)
434 print_word_token_list(rec, token_index, "WOR
450 wtokenID token_index; local
491 wtokenID token_index; local
538 wtokenID pwi[MAX_WTOKENS_AT_FRAME], token_index; local
[all...]
H A Dastar.c307 if (wtoken->end_time > word_token_array[parp->token_index].end_time)
319 best_extend_token = word_token_array[ parp->token_index].backtrace;
340 wtokenID alt_token_index = alt_extension->token_index;
392 extended_parp->token_index = extend_token_index;
486 wtokenID token_index, srec* rec,
496 wtoken = &rec->word_token_array[token_index];
497 parp->token_index = token_index;
498 if (token_index != MAXwtokenID)
499 parp->word = rec->word_token_array[ token_index]
485 make_partial_path(AstarStack* stack, wtokenID token_index, srec* rec, int* pwhether_complete) argument
571 wtokenID token_index; local
660 wtokenID token_index, btoken_index; local
[all...]
H A Dsrec.c445 stokenID token_index; local
454 for (token_index = rec->active_fsmarc_tokens; token_index != MAXstokenID;
455 token_index = next_token_index)
458 token = &(rec->fsmarc_token_array[token_index]);
475 rec->best_token_for_arc[rec->fsmarc_token_array[token_index].FSMarc_index] = MAXstokenID;
477 free_fsmarc_token(rec, token_index);
553 ftokenID token_index; local
559 token_index = rec->active_fsmnode_tokens;
561 token = &(rec->fsmnode_token_array[token_index]);
631 stokenID token_index; local
2359 wtokenID token_index; local
[all...]
/external/srec/srec/include/
H A Dastar.h74 wtokenID token_index; member in struct:partial_path_t
75 wordID word; /* quick access to word (wta[token_index].word) */
/external/chromium_org/ui/base/l10n/
H A Dl10n_util.cc640 int token_index = 0; local
647 if (token_index > 0 && (token_len < 1 || token_len > 8)) {
650 token_index++;
653 if (token_index == 0 && (token_len < 1 || token_len > 3)) {

Completed in 197 milliseconds