Lines Matching refs:outLabel
100 std::string inLabel, outLabel; in WriteForwardGraphWithSemantic() local
121 outLabel = OpenBrace; in WriteForwardGraphWithSemantic()
126 if (!p_Doc.findRule( arc[loc]->outputLabel, outLabel ) ) { in WriteForwardGraphWithSemantic()
129 outLabel = "(" + ss.str() + ")"; in WriteForwardGraphWithSemantic()
131 outLabel = outLabel + CloseBrace; in WriteForwardGraphWithSemantic()
136 outLabel= Eps; in WriteForwardGraphWithSemantic()
143 outLabel = ss.str(); in WriteForwardGraphWithSemantic()
147 outLabel = ""; in WriteForwardGraphWithSemantic()
163 outLabel= Eps; in WriteForwardGraphWithSemantic()
167 outLabel = ss.str(); in WriteForwardGraphWithSemantic()
171 if ( outLabel.empty() ) in WriteForwardGraphWithSemantic()
174 …ator << arc[loc]->toId << Separator << inLabel.c_str() << Separator << outLabel.c_str() << std::… in WriteForwardGraphWithSemantic()
175 p_Doc.addOLabelToOList( outLabel); in WriteForwardGraphWithSemantic()
188 std::string outLabel; in WriteHMMGraphFile() local
213 if (!p_Doc.findLabel( arc[loc]->outputLabel, outLabel ) ) { in WriteHMMGraphFile()
216 outLabel = ss.str(); in WriteHMMGraphFile()
218 …mId << separator << arc[loc]->toId << separator << Eps << separator << outLabel.c_str() << std::e… in WriteHMMGraphFile()
225 if (!p_Doc.findLabel( arc[loc]->outputLabel, outLabel ) ) { in WriteHMMGraphFile()
228 outLabel = ss.str(); in WriteHMMGraphFile()
230 …d << separator << arc[loc]->toId << separator << ".wb" << separator << outLabel.c_str() << std::e… in WriteHMMGraphFile()
245 if (!p_Doc.findLabel( arc[loc]->outputLabel, outLabel ) ) { in WriteHMMGraphFile()
248 outLabel = ss.str(); in WriteHMMGraphFile()
252 outLabel= Pau; in WriteHMMGraphFile()
254 outLabel= Pau2; in WriteHMMGraphFile()
256 outLabel= Eps; in WriteHMMGraphFile()
271 std::string outLabel; in WritePhonemeGraphFile() local
287 if (!p_Doc.findLabel( arc[loc]->outputLabel, outLabel ) ) { in WritePhonemeGraphFile()
290 outLabel = ss.str(); in WritePhonemeGraphFile()
292 …mId << separator << arc[loc]->toId << separator << Eps << separator << outLabel.c_str() << std::e… in WritePhonemeGraphFile()
299 if (!p_Doc.findLabel( arc[loc]->outputLabel, outLabel ) ) { in WritePhonemeGraphFile()
302 outLabel = ss.str(); in WritePhonemeGraphFile()
304 …d << separator << arc[loc]->toId << separator << ".wb" << separator << outLabel.c_str() << std::e… in WritePhonemeGraphFile()
342 std::string inLabel, outLabel; in PrintWithLabels() local
354 if (!p_Doc.findTag( arc[loc]->outputLabel, outLabel ) ) { in PrintWithLabels()
355 outLabel = arc[loc]->outputLabel; in PrintWithLabels()
360 …c]->fromId <<" " << arc[loc]->toId << " " << inLabel.c_str() <<" " << outLabel.c_str() << std::… in PrintWithLabels()