Lines Matching refs:fst2
37 void Union(MutableFst<Arc> *fst1, const Fst<Arc> &fst2) { in Union() argument
42 StateId start2 = fst2.Start(); in Union()
49 uint64 props2 = fst2.Properties(kFstProperties, false); in Union()
51 for (StateIterator< Fst<Arc> > siter(fst2); in Union()
56 fst1->SetFinal(s1, fst2.Final(s2)); in Union()
57 for (ArcIterator< Fst<Arc> > aiter(fst2, s2); in Union()
87 void Union(RationalFst<Arc> *fst1, const Fst<Arc> &fst2) { in Union() argument
88 fst1->Impl()->AddUnion(fst2); in Union()
115 UnionFst(const Fst<A> &fst1, const Fst<A> &fst2) { in UnionFst() argument
116 Impl()->InitUnion(fst1, fst2); in UnionFst()
119 UnionFst(const Fst<A> &fst1, const Fst<A> &fst2, const UnionFstOptions &opts) in UnionFst() argument
121 Impl()->InitUnion(fst1, fst2); in UnionFst()