Home
last modified time | relevance | path

Searched refs:StateMapFst (Results 1 – 3 of 3) sorted by relevance

/external/openfst/src/include/fst/
Darcsort.h120 class ArcSortFst : public StateMapFst<A, A, ArcSortMapper<A, C> > {
121 using StateMapFst<A, A, ArcSortMapper<A, C> >::GetImpl;
128 : StateMapFst<A, A, M>(fst, ArcSortMapper<A, C>(fst, comp)) {} in ArcSortFst()
131 : StateMapFst<A, A, M>(fst, ArcSortMapper<A, C>(fst, comp), opts) {} in ArcSortFst()
135 : StateMapFst<A, A, M>(fst, safe) {}
159 : public StateIterator< StateMapFst<A, A, ArcSortMapper<A, C> > > {
162 : StateIterator< StateMapFst<A, A, ArcSortMapper<A, C> > >(fst) {} in StateIterator()
169 : public ArcIterator< StateMapFst<A, A, ArcSortMapper<A, C> > > {
172 : ArcIterator< StateMapFst<A, A, ArcSortMapper<A, C> > >(fst, s) {} in ArcIterator()
Dstate-map.h183 template <class A, class B, class C> class StateMapFst; variable
202 friend class StateIterator< StateMapFst<A, B, C> >;
329 class StateMapFst : public ImplToFst< StateMapFstImpl<A, B, C> > {
331 friend class ArcIterator< StateMapFst<A, B, C> >;
339 StateMapFst(const Fst<A> &fst, const C &mapper, in StateMapFst() function
343 StateMapFst(const Fst<A> &fst, C* mapper, const StateMapFstOptions& opts) in StateMapFst() function
346 StateMapFst(const Fst<A> &fst, const C &mapper) in StateMapFst() function
349 StateMapFst(const Fst<A> &fst, C* mapper) in StateMapFst() function
353 StateMapFst(const StateMapFst<A, B, C> &fst, bool safe = false)
357 virtual StateMapFst<A, B, C> *Copy(bool safe = false) const {
[all …]
/external/openfst/
DNEWS79 * Added StateMap/StateMapFst; renamed Map/MapFst to ArcMap/ArcMapFst;