Home
last modified time | relevance | path

Searched refs:aiter2 (Results 1 – 3 of 3) sorted by relevance

/external/srec/tools/thirdparty/OpenFst/fst/lib/
Dequal.h63 ArcIterator< Fst<Arc> > aiter2(fst2, s2); in Equal()
64 for (size_t a = 0; !aiter1.Done() || !aiter2.Done(); ++a) { in Equal()
65 if (aiter1.Done() || aiter2.Done()) { in Equal()
71 Arc arc2 = aiter2.Value(); in Equal()
102 aiter2.Next(); in Equal()
Dminimize.h80 for (ArcIterator<Fst<A> > aiter1(fst_, x), aiter2(fst_, y); in operator()
81 !aiter1.Done() && !aiter2.Done(); aiter1.Next(), aiter2.Next()) { in operator()
83 const A& arc2 = aiter2.Value(); in operator()
/external/srec/tools/grxmlcompile/
Dgrxmlcompile.cpp474 for(fst::MutableArcIterator<fst::StdVectorFst> aiter2(&fst_, s2); in FstPushSlotLikeOLabels() local
475 !aiter2.Done(); aiter2.Next()) { in FstPushSlotLikeOLabels()
476 fst::StdArc arc2 = aiter2.Value(); in FstPushSlotLikeOLabels()
483 aiter2.SetValue( arc2); in FstPushSlotLikeOLabels()