HomeSort by relevance Sort by last modified time
    Searched refs:MapFst (Results 1 - 8 of 8) sorted by null

  /external/srec/tools/thirdparty/OpenFst/fst/lib/
invert.h 62 class InvertFst : public MapFst<A, A, InvertMapper<A> > {
67 explicit InvertFst(const Fst<A> &fst) : MapFst<A, A, C>(fst, C()) {}
69 InvertFst(const InvertFst<A> &fst) : MapFst<A, A, C>(fst) {}
78 : public StateIterator< MapFst<A, A, InvertMapper<A> > > {
81 : StateIterator< MapFst<A, A, InvertMapper<A> > >(fst) {}
88 : public ArcIterator< MapFst<A, A, InvertMapper<A> > > {
91 : ArcIterator< MapFst<A, A, InvertMapper<A> > >(fst, s) {}
project.h 79 class ProjectFst : public MapFst<A, A, ProjectMapper<A> > {
85 : MapFst<A, A, C>(fst, C(project_type)) {}
87 ProjectFst(const ProjectFst<A> &fst) : MapFst<A, A, C>(fst) {}
96 : public StateIterator< MapFst<A, A, ProjectMapper<A> > > {
99 : StateIterator< MapFst<A, A, ProjectMapper<A> > >(fst) {}
106 : public ArcIterator< MapFst<A, A, ProjectMapper<A> > > {
109 : ArcIterator< MapFst<A, A, ProjectMapper<A> > >(fst, s) {}
encode.h 340 class EncodeFst : public MapFst<A, A, EncodeMapper<A> > {
346 : MapFst<A, A, C>(fst, encoder, MapFstOptions()) {}
349 : MapFst<A, A, C>(fst, encoder, MapFstOptions()) {}
352 : MapFst<A, A, C>(fst) {}
365 class DecodeFst : public MapFst<A, A, EncodeMapper<A> > {
371 : MapFst<A, A, C>(fst,
376 : MapFst<A, A, C>(fst) {}
385 : public StateIterator< MapFst<A, A, EncodeMapper<A> > > {
388 : StateIterator< MapFst<A, A, EncodeMapper<A> > >(fst) {}
395 : public ArcIterator< MapFst<A, A, EncodeMapper<A> > >
    [all...]
push.h 72 MapFst<Arc, Arc, RmWeightMapper<Arc> >
74 MapFst<Arc, GallicArc<Arc, stype>, ToGallicMapper<Arc, stype> >
map.h 237 // MapFst default caching behaviour is to do no caching. Most
245 template <class A, class B, class C> class MapFst;
247 // Implementation of delayed MapFst.
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,
468 MapFst(const Fst<A> &fst, C* mapper
    [all...]
fst-decl.h 48 template <class A, class B, class C> class MapFst;
determinize.h 483 typedef MapFst<A, ToArc, ToMapper> ToFst;
484 typedef MapFst<ToArc, A, FromMapper> FromFst;
  /external/openfst/src/include/fst/
map.h 19 // Compatability file for old-style Map() functions and MapFst class
54 class MapFst : public ArcMapFst<A, B, C> {
61 MapFst(const Fst<A> &fst, const C &mapper, const MapFstOptions& opts)
64 MapFst(const Fst<A> &fst, C* mapper, const MapFstOptions& opts)
67 MapFst(const Fst<A> &fst, const C &mapper)
70 MapFst(const Fst<A> &fst, C* mapper) : ArcMapFst<A, B, C>(fst, mapper) {}
73 MapFst(const ArcMapFst<A, B, C> &fst, bool safe = false)
76 // Get a copy of this MapFst. See Fst<>::Copy() for further doc.
77 virtual MapFst<A, B, C> *Copy(bool safe = false) const {
78 return new MapFst(*this, safe)
    [all...]

Completed in 442 milliseconds