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 254 MutableFst<Arc> *mfst = static_cast<MutableFst<Arc> *>(fst); local
256 return mfst;
262 MutableFst<Arc> *mfst = MutableFst<Arc>::Read(stream, opts); local
263 if (!mfst) {
266 MutableFstClass *retval = new MutableFstClass(mfst);
267 delete mfst;
  /external/openfst/src/test/
fst_test.h 246 MutableFst<Arc> *mfst = MutableFst<Arc>::Read(filename); local
247 CHECK(mfst);
248 TestBase(*mfst);
249 TestExpanded(*mfst);
250 TestMutable(mfst);
251 delete mfst;
  /external/openfst/src/include/fst/
lookahead-matcher.h 640 static void Relabel(MutableFst<A> *fst, const L &mfst,
642 typename L::Impl *impl = mfst.GetImpl();
655 static void RelabelPairs(const L &mfst, vector<pair<Label, Label> > *pairs,
657 typename L::Impl *impl = mfst.GetImpl();
672 MutableFst<A> *mfst = 0; local
674 mfst = static_cast<MutableFst<A> *>(&fst);
676 mfst = new VectorFst<A>(fst);
682 reachable.Relabel(mfst, true);
690 reachable.Relabel(mfst, false);
698 *impl = new I(*mfst, name)
    [all...]

Completed in 83 milliseconds