Home | History | Annotate | Download | only in script

Lines Matching refs:col

66       vector<char *> col;
68 SplitToVector(line, separator.c_str(), &col, true);
69 if (col.size() == 0 || col[0][0] == '\0') // empty line
71 if (col.size() > 5 ||
72 (col.size() > 4 && accep) ||
73 (col.size() == 3 && !accep)) {
80 StateId s = StrToStateId(col[0]);
88 switch (col.size()) {
93 fst_.SetFinal(s, StrToWeight(col[1], true));
96 arc.nextstate = d = StrToStateId(col[1]);
97 arc.ilabel = StrToILabel(col[2]);
103 arc.nextstate = d = StrToStateId(col[1]);
104 arc.ilabel = StrToILabel(col[2]);
107 arc.weight = StrToWeight(col[3], false);
109 arc.olabel = StrToOLabel(col[3]);
115 arc.nextstate = d = StrToStateId(col[1]);
116 arc.ilabel = StrToILabel(col[2]);
117 arc.olabel = StrToOLabel(col[3]);
118 arc.weight = StrToWeight(col[4], false);