Searched defs:MutableFst (Results 1 - 2 of 2) sorted by relevance

/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dmutable-fst.h33 class MutableFst : public ExpandedFst<A> { class in namespace:fst
39 virtual MutableFst<A> &operator=(const Fst<A> &fst) = 0;
68 // Get a copy of this MutableFst.
69 virtual MutableFst<A> *Copy() const = 0;
70 // Read an MutableFst from an input stream; return NULL on error.
71 static MutableFst<A> *Read(istream &strm, const FstReadOptions &opts) {
82 LOG(ERROR) << "MutableFst::Read: Not an MutableFst: " << ropts.source;
89 LOG(ERROR) << "MutableFst::Read: Unknown FST type \"" << hdr.FstType()
96 return down_cast<MutableFst<
[all...]
/external/openfst/src/include/fst/
H A Dmutable-fst.h41 class MutableFst : public ExpandedFst<A> { class in namespace:fst
47 virtual MutableFst<A> &operator=(const Fst<A> &fst) = 0;
49 MutableFst<A> &operator=(const MutableFst<A> &fst) {
84 // Get a copy of this MutableFst. See Fst<>::Copy() for further doc.
85 virtual MutableFst<A> *Copy(bool safe = false) const = 0;
87 // Read an MutableFst from an input stream; return NULL on error.
88 static MutableFst<A> *Read(istream &strm, const FstReadOptions &opts) {
99 LOG(ERROR) << "MutableFst::Read: Not an MutableFst
[all...]

Completed in 141 milliseconds