/external/openfst/src/include/fst/ |
D | map.h | 54 class MapFst : public ArcMapFst<A, B, C> { 61 MapFst(const Fst<A> &fst, const C &mapper, const MapFstOptions& opts) in MapFst() function 64 MapFst(const Fst<A> &fst, C* mapper, const MapFstOptions& opts) in MapFst() function 67 MapFst(const Fst<A> &fst, const C &mapper) in MapFst() function 70 MapFst(const Fst<A> &fst, C* mapper) : ArcMapFst<A, B, C>(fst, mapper) {} in MapFst() function 73 MapFst(const ArcMapFst<A, B, C> &fst, bool safe = false) 77 virtual MapFst<A, B, C> *Copy(bool safe = false) const { 78 return new MapFst(*this, safe); 85 class StateIterator< MapFst<A, B, C> > 95 class ArcIterator< MapFst<A, B, C> >
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
D | invert.h | 62 class InvertFst : public MapFst<A, A, InvertMapper<A> > { 67 explicit InvertFst(const Fst<A> &fst) : MapFst<A, A, C>(fst, C()) {} in InvertFst() 69 InvertFst(const InvertFst<A> &fst) : MapFst<A, A, C>(fst) {} in InvertFst() 78 : public StateIterator< MapFst<A, A, InvertMapper<A> > > { 81 : StateIterator< MapFst<A, A, InvertMapper<A> > >(fst) {} in StateIterator() 88 : public ArcIterator< MapFst<A, A, InvertMapper<A> > > { 91 : ArcIterator< MapFst<A, A, InvertMapper<A> > >(fst, s) {} in ArcIterator()
|
D | project.h | 79 class ProjectFst : public MapFst<A, A, ProjectMapper<A> > { 85 : MapFst<A, A, C>(fst, C(project_type)) {} in ProjectFst() 87 ProjectFst(const ProjectFst<A> &fst) : MapFst<A, A, C>(fst) {} in ProjectFst() 96 : public StateIterator< MapFst<A, A, ProjectMapper<A> > > { 99 : StateIterator< MapFst<A, A, ProjectMapper<A> > >(fst) {} in StateIterator() 106 : public ArcIterator< MapFst<A, A, ProjectMapper<A> > > { 109 : ArcIterator< MapFst<A, A, ProjectMapper<A> > >(fst, s) {} in ArcIterator()
|
D | encode.h | 339 class EncodeFst : public MapFst<A, A, EncodeMapper<A> > { 345 : MapFst<A, A, C>(fst, encoder, MapFstOptions()) {} in EncodeFst() 348 : MapFst<A, A, C>(fst, encoder, MapFstOptions()) {} in EncodeFst() 351 : MapFst<A, A, C>(fst) {} in EncodeFst() 364 class DecodeFst : public MapFst<A, A, EncodeMapper<A> > { 370 : MapFst<A, A, C>(fst, in DecodeFst() 375 : MapFst<A, A, C>(fst) {} in DecodeFst() 384 : public StateIterator< MapFst<A, A, EncodeMapper<A> > > { 387 : StateIterator< MapFst<A, A, EncodeMapper<A> > >(fst) {} in StateIterator() 394 : public ArcIterator< MapFst<A, A, EncodeMapper<A> > > { [all …]
|
D | map.h | 245 template <class A, class B, class C> class MapFst; variable 263 friend class StateIterator< MapFst<A, B, C> >; 453 class MapFst : public Fst<B> { 455 friend class ArcIterator< MapFst<A, B, C> >; 456 friend class StateIterator< MapFst<A, B, C> >; 457 friend class CacheArcIterator< MapFst<A, B, C> >; 464 MapFst(const Fst<A> &fst, const C &mapper, in MapFst() function 468 MapFst(const Fst<A> &fst, C* mapper, in MapFst() function 472 MapFst(const Fst<A> &fst, const C &mapper) in MapFst() function 476 MapFst(const Fst<A> &fst, C* mapper) in MapFst() function [all …]
|
D | push.h | 72 MapFst<Arc, Arc, RmWeightMapper<Arc> > in Push() 74 MapFst<Arc, GallicArc<Arc, stype>, ToGallicMapper<Arc, stype> > in Push()
|
D | fst-decl.h | 48 template <class A, class B, class C> class MapFst; variable
|
D | determinize.h | 483 typedef MapFst<A, ToArc, ToMapper> ToFst; 484 typedef MapFst<ToArc, A, FromMapper> FromFst;
|
/external/openfst/ |
D | NEWS | 79 * Added StateMap/StateMapFst; renamed Map/MapFst to ArcMap/ArcMapFst; 80 map/MapFst retained (but deprecated) (1.2.9)
|