/external/openfst/src/include/fst/ |
test-properties.h | 120 unordered_set<Label> *olabels = 0; local 133 olabels = new unordered_set<Label>; 145 if (olabels && olabels->find(arc.olabel) != olabels->end()) { 191 if (olabels) 192 olabels->insert(arc.olabel); 216 delete olabels;
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
test-properties.h | 118 hash_set<Label> *olabels = 0; local 131 olabels = new hash_set<Label>; 142 if (olabels && olabels->find(arc.olabel) != olabels->end()) { 185 if (olabels) 186 olabels->insert(arc.olabel); 210 delete olabels;
|
/external/srec/srec/crec/ |
srec_debug.c | 60 if (ftoken->word < rec->context->olabels->num_words) 61 p = rec->context->olabels->words[ftoken->word]; 111 if (wordids[i] < context->olabels->num_words) p = context->olabels->words[wordids[i]];
|
text_parser.c | 79 wdID = wordmap_find_index(context->olabels, copy_of_word); 164 wordID k, wdid = wordmap_find_index(context->olabels, p); 166 for (k = 1; k < context->olabels->num_slots; k++) 168 wdid = wordmap_find_index_in_rule(context->olabels, p, k);
|
word_lattice.c | 123 if (wtoken->word < rec->context->olabels->num_words) 124 p = rec->context->olabels->words[wtoken->word]; 160 if (wtoken->word < rec->context->olabels->num_words) 161 p = rec->context->olabels->words[wtoken->word]; 258 if (wtoken->word < rec->context->olabels->num_words) 259 w = rec->context->olabels->words[wtoken->word]; 315 if (wtoken->word < rec->context->olabels->num_words) 316 p = rec->context->olabels->words[wtoken->word];
|
srec_context.c | 150 if (context->olabels == NULL) return 0; 151 if (context->olabels->num_words < 2) return 0; 152 if (strstr(context->olabels->words[1], "enroll")) return 1; 176 rc = FST_LoadWordMap(&context->olabels, num_words_to_add, fp); 183 rc = FST_LoadGraph(context, context->ilabels, context->olabels, num_words_to_add, fp); 216 FST_UnloadWordMap(&context->olabels); 962 fst->olabels = omap; [all...] |
srec_results.c | 201 return rec->context->olabels->words[choice]; 307 if (rec->context->olabels->words[wtoken->word]) 308 p = rec->context->olabels->words[wtoken->word];
|
astar.c | 74 wordmap* wmap = context->olabels; 175 wordmap* wmap = context->olabels; 957 if (rec->context->olabels->words[wtoken->word]) 958 p = rec->context->olabels->words[wtoken->word]; [all...] |
/external/srec/tools/test_g2g/ |
test_g2g.c | 227 fst->olabels->num_words, fst->olabels->max_words, 228 fst->olabels->next_chars-fst->olabels->chars, 229 fst->olabels->max_chars, 240 if(wordid >= fst->olabels->num_words) { 242 fst->olabels->num_words, wordid); 299 pfprintf(PSTDOUT, "%s (W%d) ihmms ", fst->olabels->words[wordid], wordid); 325 pfprintf(PSTDOUT, "%s ", fst->olabels->words[wordid]); 328 rc = Parse( grammar, fst->olabels->words[wordid], PSTDOUT) [all...] |
/external/smack/src/org/xbill/DNS/ |
Zone.java | 333 int olabels; local 344 olabels = origin.labels(); 346 for (tlabels = olabels; tlabels <= labels; tlabels++) { 347 boolean isOrigin = (tlabels == olabels); 406 for (int i = 0; i < labels - olabels; i++) {
|
/external/srec/srec/include/ |
srec_context.h | 137 wordmap *olabels; /* word labels */ member in struct:srec_context
|
/external/srec/srec/ca/ |
syn_srec.c | 159 result = FST_DumpWordMap(fp, hSyntax->synx->olabels);
|
/external/srec/tools/parseStringTest/ |
parseStringTest.c | 119 wmap = pgrammar->syntax->synx->olabels; 144 wmap = pgrammar->syntax->synx->olabels;
|
/external/srec/srec/Grammar/src/ |
SR_GrammarImpl.c | 437 rc = impl->semgraph->load(impl->semgraph, impl->syntax->synx->olabels, filename, addWords); 697 wdids[nw] = wordmap_find_index(fst->olabels, word);
|