OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MapFst
(Results
1 - 7
of
7
) 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
339
class EncodeFst : public
MapFst
<A, A, EncodeMapper<A> > {
345
:
MapFst
<A, A, C>(fst, encoder, MapFstOptions()) {}
348
:
MapFst
<A, A, C>(fst, encoder, MapFstOptions()) {}
351
:
MapFst
<A, A, C>(fst) {}
364
class DecodeFst : public
MapFst
<A, A, EncodeMapper<A> > {
370
:
MapFst
<A, A, C>(fst,
375
:
MapFst
<A, A, C>(fst) {}
384
: public StateIterator<
MapFst
<A, A, EncodeMapper<A> > > {
387
: StateIterator<
MapFst
<A, A, EncodeMapper<A> > >(fst) {}
394
: 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;
Completed in 44 milliseconds