Home | History | Annotate | Download | only in src

Lines Matching refs:SWIsltsResult

66 static SWIsltsResult load_lquestions(LQUESTION ***pquestions, int *pnum_questions, PORT_FILE *fp);
67 static SWIsltsResult free_lquestions(LQUESTION ** questions, int num_questions);
68 static SWIsltsResult load_letter_mapping(PORT_FILE *fp, LM **ppLetterMap);
69 static SWIsltsResult free_letter_mapping(LM *lm);
70 static SWIsltsResult load_phone_mapping(PORT_FILE *fp, PM **ppPhoneMap);
71 static SWIsltsResult free_phone_mapping(PM *pm);
72 static SWIsltsResult load_outputs(char ***poutputs, char ***pinputs, int *pnum, PORT_FILE *fp);
73 static SWIsltsResult free_outputs(char **outputs, char **inputs, int num);
74 static SWIsltsResult load_trees(RT_LTREE ***ptrees, int *num_letters,
76 static SWIsltsResult free_trees(RT_LTREE **trees, int num_letters, LQUESTION **questions, int num_questions, LM *lm);
77 static SWIsltsResult load_allowable_cons_comb(LTS *lts, PORT_FILE *fp);
78 static SWIsltsResult free_allowable_cons_comb(LTS *lts);
79 static SWIsltsResult load_question_strings(LTS* lts, PORT_FILE* fp);
80 static SWIsltsResult free_question_strings(LTS* lts);
93 SWIsltsResult lts_for_word(LTS *lts, char *word, int word_len, char **output_phone_string, int max_phone_length, int *num_out);
179 static SWIsltsResult load_lquestions(LQUESTION ***pquestions, int *pnum_questions, PORT_FILE *fp)
183 SWIsltsResult nRes = SWIsltsSuccess;
234 static SWIsltsResult free_lquestions(LQUESTION ** questions, int num_questions)
236 SWIsltsResult nRes = SWIsltsSuccess;
253 static SWIsltsResult load_letter_mapping(PORT_FILE *fp, LM **ppLetterMap)
255 SWIsltsResult nRes = SWIsltsSuccess;
306 static SWIsltsResult free_letter_mapping(LM *lm)
308 SWIsltsResult nRes = SWIsltsSuccess;
325 static SWIsltsResult load_phone_mapping(PORT_FILE *fp, PM **ppPhoneMap)
327 SWIsltsResult nRes = SWIsltsSuccess;
378 static SWIsltsResult free_phone_mapping(PM *pm)
380 SWIsltsResult nRes = SWIsltsSuccess;
403 static SWIsltsResult load_outputs(char ***poutputs, char ***pinputs, int *pnum, PORT_FILE *fp)
405 SWIsltsResult nRes = SWIsltsSuccess;
471 static SWIsltsResult free_outputs(char **outputs, char **inputs, int num)
473 SWIsltsResult nRes = SWIsltsSuccess;
498 static SWIsltsResult load_trees(RT_LTREE ***ptrees, int *num_letters,
501 SWIsltsResult nRes = SWIsltsSuccess;
614 static SWIsltsResult free_trees(RT_LTREE **trees, int num_letters,
617 SWIsltsResult nRes = SWIsltsSuccess;
653 static SWIsltsResult load_allowable_cons_comb(LTS *lts, PORT_FILE *fp)
655 SWIsltsResult nRes = SWIsltsSuccess;
740 static SWIsltsResult free_allowable_cons_comb(LTS *lts)
742 SWIsltsResult nRes = SWIsltsSuccess;
757 static SWIsltsResult load_question_strings(LTS* lts, PORT_FILE* fp)
759 SWIsltsResult nRes = SWIsltsSuccess;
807 static SWIsltsResult free_question_strings(LTS* lts)
809 SWIsltsResult nRes = SWIsltsSuccess;
828 SWIsltsResult create_lts(char *data_filename, LTS_HANDLE *phLts)
830 SWIsltsResult nRes = SWIsltsSuccess;
907 SWIsltsResult free_lts(LTS_HANDLE hlts)
909 SWIsltsResult nRes = SWIsltsSuccess;
1531 SWIsltsResult lts_for_word(LTS *lts, char *word, int word_len, char **output_phone_string, int max_phone_length, int *pnum_out)
1533 SWIsltsResult nRes = SWIsltsSuccess;
1669 SWIsltsResult run_lts(LTS_HANDLE h, FSM_DICT_HANDLE hdict, char *input_sentence, char **output_phone_string, int *phone_length)
1671 SWIsltsResult nRes = SWIsltsSuccess;