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

/external/openfst/src/include/fst/
H A Dintersect.h58 class IntersectFst : public ComposeFst<A> { class in namespace:fst
70 IntersectFst(const Fst<A> &fst1, const Fst<A> &fst2, function in class:fst::IntersectFst
76 FSTERROR() << "IntersectFst: input FSTs are not acceptors";
82 IntersectFst(const Fst<A> &fst1, const Fst<A> &fst2, function in class:fst::IntersectFst
88 FSTERROR() << "IntersectFst: input FSTs are not acceptors";
94 IntersectFst(const IntersectFst<A> &fst, bool safe = false) : function in class:fst::IntersectFst
97 // Get a copy of this IntersectFst. See Fst<>::Copy() for further doc.
98 virtual IntersectFst<A> *Copy(bool safe = false) const {
99 return new IntersectFst<
[all...]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dintersect.h41 class IntersectFst : public ComposeFst<A> { class in namespace:fst
49 IntersectFst(const Fst<A> &fst1, const Fst<A> &fst2) function in class:fst::IntersectFst
52 LOG(FATAL) << "IntersectFst: arguments not both acceptors";
60 IntersectFst(const Fst<A> &fst1, const Fst<A> &fst2, function in class:fst::IntersectFst
64 LOG(FATAL) << "IntersectFst: arguments not both acceptors";
71 IntersectFst(const IntersectFst<A> &fst) : ComposeFst<A>(fst) {} function in class:fst::IntersectFst
73 virtual IntersectFst<A> *Copy() const {
74 return new IntersectFst<A>(*this);
79 // Specialization for IntersectFst
[all...]

Completed in 85 milliseconds