Searched refs:ExpandedFst (Results 1 - 15 of 15) sorted by relevance
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
H A D | expanded-fst.h | 28 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...] |
H A D | fst-decl.h | 34 template <class A> class ExpandedFst; 58 typedef ExpandedFst<StdArc> StdExpandedFst;
|
H A D | mutable-fst.h | 33 class MutableFst : public ExpandedFst<A> {
|
H A D | minimize.h | 124 CyclicMinimizer(const ExpandedFst<A>& fst) { 305 AcyclicMinimizer(const ExpandedFst<A>& fst) {
|
H A D | const-fst.h | 222 class ConstFst : public ExpandedFst<A> {
|
/external/openfst/src/include/fst/ |
H A D | expanded-fst.h | 35 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...] |
H A D | fst-decl.h | 49 template <class A> class ExpandedFst; 91 typedef ExpandedFst<StdArc> StdExpandedFst;
|
H A D | matcher-fst.h | 147 return ImplToFst<Impl, ExpandedFst<Arc> >::GetImpl(); 178 ImplToFst< Impl, ExpandedFst<Arc> >::SetImpl(impl, own_impl);
|
H A D | const-fst.h | 318 Impl *GetImpl() const { return ImplToFst<Impl, ExpandedFst<A> >::GetImpl(); } 321 ImplToFst< Impl, ExpandedFst<A> >::SetImpl(impl, own_impl);
|
H A D | minimize.h | 137 CyclicMinimizer(const ExpandedFst<A>& fst) { 318 AcyclicMinimizer(const ExpandedFst<A>& fst) {
|
H A D | edit-fst.h | 35 // ExpandedFst. The implementation uses copy-on-write semantics at the node 67 typename WrappedFstT = ExpandedFst<A>, 315 // copies of states from a wrapped ExpandedFst that have been modified in 368 // This class enables non-destructive edit operations on a wrapped ExpandedFst. 385 typename WrappedFstT = ExpandedFst<A>, 411 // Wraps the specified ExpandedFst. This constructor requires that the 412 // specified Fst is an ExpandedFst instance. This requirement is only enforced 452 // const Fst/ExpandedFst operations, declared in the Fst and ExpandedFst 688 typename WrappedFstT = ExpandedFst< [all...] |
H A D | mutable-fst.h | 41 class MutableFst : public ExpandedFst<A> {
|
H A D | compact-fst.h | 902 Impl *GetImpl() const { return ImplToFst<Impl, ExpandedFst<A> >::GetImpl(); } 905 ImplToFst< Impl, ExpandedFst<A> >::SetImpl(impl, own_impl);
|
/external/openfst/src/test/ |
H A D | fst_test.h | 109 // This verifies methods specfic to an ExpandedFst. 278 ExpandedFst<Arc> *efst = ExpandedFst<Arc>::Read(filename);
|
/external/openfst/src/include/fst/extensions/ngram/ |
H A D | ngram-fst.h | 731 ImplToExpandedFst<Impl, ExpandedFst<A> >::GetImpl();
|
Completed in 241 milliseconds