Home | History | Annotate | Download | only in script

Lines Matching refs:ifst1

25 void Compose(const FstClass &ifst1, const FstClass &ifst2,
27 if (!ArcTypesMatch(ifst1, ifst2, "Compose") ||
28 !ArcTypesMatch(*ofst, ifst1, "Compose")) return;
30 ComposeArgs1 args(ifst1, ifst2, ofst, compose_filter);
31 Apply<Operation<ComposeArgs1> >("Compose", ifst1.ArcType(), &args);
34 void Compose(const FstClass &ifst1, const FstClass &ifst2,
36 if (!ArcTypesMatch(ifst1, ifst2, "Compose") ||
37 !ArcTypesMatch(*ofst, ifst1, "Compose")) return;
39 ComposeArgs2 args(ifst1, ifst2, ofst, copts);
40 Apply<Operation<ComposeArgs2> >("Compose", ifst1.ArcType(), &args);