HomeSort by relevance Sort by last modified time
    Searched defs:ExpandedFst (Results 1 - 2 of 2) sorted by null

  /external/srec/tools/thirdparty/OpenFst/fst/lib/
expanded-fst.h 28 class ExpandedFst : public Fst<A> {
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 from a file; return NULL on error
    [all...]
  /external/openfst/src/include/fst/
expanded-fst.h 35 class ExpandedFst : public Fst<A> {
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 from a file; return NULL on error
    [all...]

Completed in 43 milliseconds