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

/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dexpanded-fst.h28 class ExpandedFst : public Fst<A> { class in namespace:fst
35 // Get a copy of this ExpandedFst.
36 virtual ExpandedFst<A> *Copy() const = 0;
37 // Read an ExpandedFst from an input stream; return NULL on error.
38 static ExpandedFst<A> *Read(istream &strm, const FstReadOptions &opts) {
49 LOG(ERROR) << "ExpandedFst::Read: Not an ExpandedFst: " << ropts.source;
56 LOG(ERROR) << "ExpandedFst::Read: Unknown FST type \"" << hdr.FstType()
63 return down_cast<ExpandedFst<A> *>(fst);
65 // Read an ExpandedFst fro
[all...]
/external/openfst/src/include/fst/
H A Dexpanded-fst.h35 class ExpandedFst : public Fst<A> { class in namespace:fst
42 // Get a copy of this ExpandedFst. See Fst<>::Copy() for further doc.
43 virtual ExpandedFst<A> *Copy(bool safe = false) const = 0;
45 // Read an ExpandedFst from an input stream; return NULL on error.
46 static ExpandedFst<A> *Read(istream &strm, const FstReadOptions &opts) {
57 LOG(ERROR) << "ExpandedFst::Read: Not an ExpandedFst: " << ropts.source;
64 LOG(ERROR) << "ExpandedFst::Read: Unknown FST type \"" << hdr.FstType()
71 return static_cast<ExpandedFst<A> *>(fst);
74 // Read an ExpandedFst fro
[all...]

Completed in 77 milliseconds