HomeSort by relevance Sort by last modified time
    Searched defs:token_index (Results 1 - 9 of 9) sorted by null

  /external/srec/srec/crec/
priority_q.c 163 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, token->word, token->cost)
    [all...]
word_lattice.c 356 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, "WORD TOKENS AT END\n")
450 wtokenID token_index; local
491 wtokenID token_index; local
538 wtokenID pwi[MAX_WTOKENS_AT_FRAME], token_index; local
    [all...]
astar.c 307 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].word
571 wtokenID token_index; local
660 wtokenID token_index, btoken_index; local
    [all...]
srec.c 445 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/chromium_org/ui/base/l10n/
l10n_util.cc 641 int token_index = 0; local
648 if (token_index > 0 && (token_len < 1 || token_len > 8)) {
651 token_index++;
654 if (token_index == 0 && (token_len < 1 || token_len > 3)) {
  /external/srec/srec/include/
astar.h 74 wtokenID token_index; member in struct:partial_path_t
75 wordID word; /* quick access to word (wta[token_index].word) */
  /packages/providers/ContactsProvider/tests/assets/test1/
legacy_contacts.sql 58 CREATE TABLE peopleLookup (token TEXT,source INTEGER REFERENCES people(_id),token_index INTEGER);
68 CREATE TABLE peopleLookupWithPhoneticName (token TEXT,source INTEGER REFERENCES people(_id),token_index INTEGER);
  /packages/providers/ContactsProvider/tests/assets/testSynced/
legacy_contacts.sql 56 CREATE TABLE peopleLookup (token TEXT,source INTEGER REFERENCES people(_id),token_index INTEGER);
77 CREATE TABLE peopleLookupWithPhoneticName (token TEXT,source INTEGER REFERENCES people(_id),token_index INTEGER);
  /packages/providers/ContactsProvider/tests/assets/testUnsynced/
legacy_contacts.sql 39 CREATE TABLE peopleLookup (token TEXT,source INTEGER REFERENCES people(_id),token_index INTEGER);
47 CREATE TABLE peopleLookupWithPhoneticName (token TEXT,source INTEGER REFERENCES people(_id),token_index INTEGER);

Completed in 118 milliseconds