HomeSort by relevance Sort by last modified time
    Searched refs:mfst (Results 1 - 3 of 3) sorted by null

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

Completed in 393 milliseconds