/external/srec/srec/include/ |
hmmlib.h | 34 int get_prons(const vocab_info* voc, const char* label, char* prons, int prons_len);
|
/external/srec/srec/ca/ |
voc_basi.c | 113 char prons[256]; local 117 pronCount = get_prons(&hVocab->voc, label, prons, sizeof(prons)); 128 pronCount = get_prons(&hVocab->voc, lower, prons, sizeof(prons));
|
/external/srec/tools/grxmlcompile/ |
vocab.cpp | 75 LCHAR prons[MAX_PRONS_LENGTH]; local 83 memset (prons, 0x00, sizeof(LCHAR)); 90 rc = SR_VocabularyGetPronunciation( p_SRVocab, c_phrase, prons, &len ); 96 std::cout <<"OUTPUT: " << prons << " num " << len << std::endl; 101 pron = &prons[0]+len_used; 124 { // returns number of prons 221 // Looks up all hmms for all prons
|
grxmlcompile.cpp | 659 LCHAR prons[MAX_PRONS_LENGTH]; local 706 rc = SR_VocabularyGetPronunciation(vocab, phrase, prons, &len); 713 pron = &prons[0]+len_used; 758 } // loop over multiple prons [all...] |
/external/srec/srec/clib/ |
voc_read.c | 165 int get_prons(const vocab_info* voc, const char* label, char* prons, int prons_len) { 235 *prons++ = *low++; 237 *prons++ = 0; 241 *prons++ = 0;
|
/external/srec/tools/dictTest/ |
dictTest.c | 45 LCHAR prons[MAX_PRONS_LENGTH]; local 47 rc = SR_VocabularyGetPronunciation(vocab, phrase, prons, &len); 48 // rc = vocab->getPronunciation(vocab, phrase, prons, &len); 56 pron = &prons[0]+len_used;
|