Home
last modified time | relevance | path

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

/external/openfst/src/include/fst/script/
Dfst-class.h287 MutableFst<Arc> *mfst = static_cast<MutableFst<Arc> *>(fst); in GetMutableFst() local
289 return mfst; in GetMutableFst()
295 MutableFst<Arc> *mfst = MutableFst<Arc>::Read(stream, opts); in Read() local
296 if (!mfst) { in Read()
299 MutableFstClass *retval = new MutableFstClass(*mfst); in Read()
300 delete mfst; in Read() local
/external/openfst/src/test/
Dfst_test.h287 MutableFst<Arc> *mfst = MutableFst<Arc>::Read(filename); in TestIO() local
288 CHECK(mfst); in TestIO()
289 TestBase(*mfst); in TestIO()
290 TestExpanded(*mfst); in TestIO()
291 TestMutable(mfst); in TestIO()
292 delete mfst; in TestIO() local
/external/openfst/src/include/fst/
Dlookahead-matcher.h639 static void Relabel(MutableFst<A> *fst, const L &mfst, in Relabel() argument
641 typename L::Impl *impl = mfst.GetImpl(); in Relabel()
654 static void RelabelPairs(const L &mfst, vector<pair<Label, Label> > *pairs,
656 typename L::Impl *impl = mfst.GetImpl();
671 MutableFst<A> *mfst = 0; in LabelLookAheadRelabeler() local
673 mfst = static_cast<MutableFst<A> *>(&fst); in LabelLookAheadRelabeler()
675 mfst = new VectorFst<A>(fst); in LabelLookAheadRelabeler()
681 reachable.Relabel(mfst, true); in LabelLookAheadRelabeler()
689 reachable.Relabel(mfst, false); in LabelLookAheadRelabeler()
697 *impl = new I(*mfst, name); in LabelLookAheadRelabeler()
[all …]