Home | History | Annotate | Download | only in fst

Lines Matching defs:fst_

68       : fst_(fst), partition_(partition), flags_(flags) {}
74 const size_t xfinal = fst_.Final(x).Hash();
75 const size_t yfinal = fst_.Final(y).Hash();
82 if (fst_.NumArcs(x) < fst_.NumArcs(y)) return true;
83 if (fst_.NumArcs(x) > fst_.NumArcs(y)) return false;
87 for (ArcIterator<Fst<A> > aiter1(fst_, x), aiter2(fst_, y);
106 const Fst<A>& fst_;