Lines Matching refs:fst2
37 template <class A> void Union(RationalFst<A> *fst1, const Fst<A> &fst2);
38 template <class A> void Concat(RationalFst<A> *fst1, const Fst<A> &fst2);
62 // Implementation of UnionFst(fst1,fst2)
63 void InitUnion(const Fst<A> &fst1, const Fst<A> &fst2) {
65 uint64 props2 = fst2.Properties(kFstProperties, false);
79 AddFst(-2, &fst2);
84 // Implementation of ConcatFst(fst1,fst2)
85 void InitConcat(const Fst<A> &fst1, const Fst<A> &fst2) {
87 uint64 props2 = fst2.Properties(kFstProperties, false);
102 AddFst(-2, &fst2);
192 friend void Union<>(RationalFst<A> *fst1, const Fst<A> &fst2);
193 friend void Concat<>(RationalFst<A> *fst1, const Fst<A> &fst2);