• Home
  • Raw
  • Download

Lines Matching refs:inLabel

48     std::string inLabel;  in WriteForwardGraphFile()  local
59 inLabel=""; in WriteForwardGraphFile()
79 if (!p_Doc.findSortedLabel( arc[loc]->inputLabel, inLabel ) ) { in WriteForwardGraphFile()
82 inLabel = ss.str(); in WriteForwardGraphFile()
84 …outfile << arc[loc]->fromId << separator << arc[loc]->toId << separator << inLabel.c_str() << std… in WriteForwardGraphFile()
100 std::string inLabel, outLabel; in WriteForwardGraphWithSemantic() local
117 inLabel = ""; in WriteForwardGraphWithSemantic()
120 inLabel = Eps; in WriteForwardGraphWithSemantic()
125 inLabel = Eps; in WriteForwardGraphWithSemantic()
135 inLabel = Eps; in WriteForwardGraphWithSemantic()
139 inLabel = Eps; in WriteForwardGraphWithSemantic()
157 if (!p_Doc.findSortedLabel( arc[loc]->inputLabel, inLabel ) ) { in WriteForwardGraphWithSemantic()
158 inLabel = arc[loc]->inputLabel; in WriteForwardGraphWithSemantic()
174 …outfile << arc[loc]->fromId << Separator << arc[loc]->toId << Separator << inLabel.c_str() << Sep… in WriteForwardGraphWithSemantic()
187 std::string inLabel; in WriteHMMGraphFile() local
205 inLabel=""; in WriteHMMGraphFile()
270 std::string inLabel; in WritePhonemeGraphFile() local
279 inLabel=""; in WritePhonemeGraphFile()
322 if (!p_Doc.findLabel( -arc[loc]->inputLabel, inLabel ) ) { in WritePhonemeGraphFile()
325 inLabel = ss.str(); in WritePhonemeGraphFile()
327 …outfile << arc[loc]->fromId << separator << arc[loc]->toId << separator << inLabel.c_str() << sep… in WritePhonemeGraphFile()
342 std::string inLabel, outLabel; in PrintWithLabels() local
348 if (!p_Doc.findLabel( arc[loc]->inputLabel, inLabel ) ) { in PrintWithLabels()
349 inLabel = arc[loc]->inputLabel; in PrintWithLabels()
360 …std::cout << arc[loc]->fromId <<" " << arc[loc]->toId << " " << inLabel.c_str() <<" " << outLabe… in PrintWithLabels()