Home | History | Annotate | Download | only in script

Lines Matching refs:Concat

19 #include <fst/script/concat.h>
24 void Concat(MutableFstClass *ofst, const FstClass &ifst) {
25 if (!ArcTypesMatch(*ofst, ifst, "Concat")) return;
29 Apply<Operation<ConcatArgs1> >("Concat", ofst->ArcType(), &args);
32 void Concat(const FstClass &ifst, MutableFstClass *ofst) {
33 if (!ArcTypesMatch(ifst, *ofst, "Concat")) return;
37 Apply<Operation<ConcatArgs2> >("Concat", ofst->ArcType(), &args);
40 REGISTER_FST_OPERATION(Concat, StdArc, ConcatArgs1);
41 REGISTER_FST_OPERATION(Concat, LogArc, ConcatArgs1);
42 REGISTER_FST_OPERATION(Concat, Log64Arc, ConcatArgs1);
43 REGISTER_FST_OPERATION(Concat, StdArc, ConcatArgs2);
44 REGISTER_FST_OPERATION(Concat, LogArc, ConcatArgs2);
45 REGISTER_FST_OPERATION(Concat, Log64Arc, ConcatArgs2);