HomeSort by relevance Sort by last modified time
    Searched refs:SR_Vocabulary (Results 1 - 15 of 15) sorted by null

  /external/srec/srec/Vocabulary/include/
SR_VocabularyImpl.h 43 SR_Vocabulary Interface;
71 ESR_ReturnCode SR_VocabularyCreateImpl(SR_Vocabulary** self);
75 ESR_ReturnCode SR_VocabularyLoadImpl(const LCHAR* filename, SR_Vocabulary** self);
79 ESR_ReturnCode SR_VocabularySaveImpl(SR_Vocabulary* self, const LCHAR* filename);
83 ESR_ReturnCode SR_VocabularyAddWordImpl(SR_Vocabulary* self, const LCHAR* word);
87 ESR_ReturnCode SR_VocabularyDeleteWordImpl(SR_Vocabulary* self, const LCHAR* word);
91 ESR_ReturnCode SR_VocabularyContainsWordImpl(SR_Vocabulary* self, const LCHAR* word, ESR_BOOL* result);
95 ESR_ReturnCode SR_VocabularyGetPronunciationImpl(SR_Vocabulary* self, const LCHAR* word, LCHAR* phoneme, size_t* len);
99 ESR_ReturnCode SR_VocabularyGetLanguageImpl(SR_Vocabulary* self, ESR_Locale* locale);
103 ESR_ReturnCode SR_VocabularyDestroyImpl(SR_Vocabulary* self)
    [all...]
SR_Vocabulary.h 2 * SR_Vocabulary.h *
32 * @addtogroup SR_VocabularyModule SR_Vocabulary API functions
46 * @param self SR_Vocabulary handle
54 * @param self SR_Vocabulary handle
65 * @param self SR_Vocabulary handle
73 * @param self SR_Vocabulary handle
77 SR_Vocabulary;
95 * @param self SR_Vocabulary handle
97 SREC_VOCABULARY_API ESR_ReturnCode SR_VocabularyCreate(ESR_Locale locale, SR_Vocabulary** self);
102 * @param self SR_Vocabulary handl
    [all...]
  /external/srec/tools/grxmlcompile/
vocab.h 34 #include "SR_Vocabulary.h"
51 SR_Vocabulary *getSRVocabularyHandle() { return m_hVocab; }
53 SR_Vocabulary *m_hVocab;
vocab.cpp 27 #include "SR_Vocabulary.h"
86 SR_Vocabulary *p_SRVocab = vocab.getSRVocabularyHandle();
grxmlcompile.cpp 43 #include "SR_Vocabulary.h"
581 SR_Vocabulary *vocab = 0;
    [all...]
  /external/srec/srec/Grammar/include/
SR_GrammarImpl.h 80 SR_Vocabulary* vocabulary;
122 SREC_GRAMMAR_API ESR_ReturnCode SR_Grammar_AddRuleFromList(SR_Grammar* self, SR_Vocabulary* vocabulary, const LCHAR* name);
203 SREC_GRAMMAR_API ESR_ReturnCode SR_Grammar_SetupVocabulary(SR_Grammar *self, SR_Vocabulary *vocabulary);
SR_Grammar.h 30 #include "SR_Vocabulary.h"
218 ESR_ReturnCode(*setupVocabulary)(struct SR_Grammar_t *self, SR_Vocabulary *vocabulary);
385 SREC_GRAMMAR_API ESR_ReturnCode SR_GrammarSetupVocabulary(SR_Grammar *self, SR_Vocabulary *vocabulary);
  /external/srec/srec/Vocabulary/src/
Vocabulary.c 21 #include "SR_Vocabulary.h"
25 ESR_ReturnCode SR_VocabularyCreate(ESR_Locale locale, SR_Vocabulary** self)
27 SR_Vocabulary* Interface;
52 ESR_ReturnCode SR_VocabularyLoad(const LCHAR* filename, SR_Vocabulary** self)
54 SR_Vocabulary* Interface;
65 ESR_ReturnCode SR_VocabularySave(SR_Vocabulary* self, const LCHAR* filename)
75 ESR_ReturnCode SR_VocabularyGetLanguage(SR_Vocabulary* self, ESR_Locale* locale)
85 ESR_ReturnCode SR_VocabularyDestroy(SR_Vocabulary* self)
95 ESR_ReturnCode SR_VocabularyGetPronunciation(SR_Vocabulary* self, const LCHAR* word, LCHAR* phoneme, size_t* len)
VocabularyImpl.c 21 #include "SR_Vocabulary.h"
46 * @param self SR_Vocabulary handle
49 ESR_ReturnCode SR_CreateG2P(SR_Vocabulary* self)
104 ESR_ReturnCode SR_DestroyG2P(SR_Vocabulary* self)
144 * @param self SR_Vocabulary handle
146 ESR_ReturnCode SR_VocabularyCreateImpl(SR_Vocabulary** self)
168 *self = (SR_Vocabulary*) impl;
173 ESR_ReturnCode SR_VocabularyDestroyImpl(SR_Vocabulary* self)
225 rc = SR_CreateG2P((SR_Vocabulary*)impl);
235 ESR_ReturnCode SR_VocabularyLoadImpl(const LCHAR* filename, SR_Vocabulary** self
    [all...]
  /external/srec/tools/dictTest/
dictTest.c 29 #include "SR_Vocabulary.h"
42 void doGetProns(SR_Vocabulary *vocab, LCHAR* phrase, size_t len, FILE* fout)
64 void doInputTestPhonemes(SR_Vocabulary *vocab, PFile* fin, FILE* fout)
113 SR_Vocabulary *vocab = 0;
  /external/srec/srec/Grammar/src/
SR_Grammar.c 153 ESR_ReturnCode SR_GrammarSetupVocabulary(SR_Grammar *self, SR_Vocabulary *vocabulary)
SR_GrammarImpl.c 153 SR_Vocabulary* vocab;
218 vocab = (SR_Vocabulary*) impl->vocabulary;
633 SREC_GRAMMAR_API ESR_ReturnCode SR_Grammar_SetupVocabulary(SR_Grammar *self, SR_Vocabulary *vocabulary)
  /external/srec/srec_jni/
android_speech_srec_Recognizer.cpp 45 #include "SR_Vocabulary.h"
377 checkEsrError(env, SR_GrammarSetupVocabulary((SR_Grammar*)grammar, (SR_Vocabulary*)vocabulary));
433 // SR_Vocabulary JNI implementations
443 SR_Vocabulary* vocabulary = NULL;
451 checkEsrError(env, SR_VocabularyDestroy((SR_Vocabulary*)vocabulary));
459 ESR_ReturnCode esr_status = SR_VocabularyGetPronunciation((SR_Vocabulary*)vocabulary, wo, rtn, &rtnLength);
597 // SR_Vocabulary
  /external/srec/srec/test/SRecTest/src/
SRecTest.c 52 #include "SR_Vocabulary.h"
136 SR_Vocabulary *vocabulary; /* The current vocabulary. */
    [all...]
  /external/srec/srec/test/SRecTestAudio/src/
SRecTestAudio.c 49 #include "SR_Vocabulary.h"
135 SR_Vocabulary *vocabulary; /* The current vocabulary. */
    [all...]

Completed in 1447 milliseconds