Home | History | Annotate | Download | only in fst

Lines Matching full:mapper

32 void Map(MutableFst<A> *fst, C* mapper) {
33 ArcMap(fst, mapper);
37 void Map(MutableFst<A> *fst, C mapper) {
38 ArcMap(fst, mapper);
42 void Map(const Fst<A> &ifst, MutableFst<B> *ofst, C* mapper) {
43 ArcMap(ifst, ofst, mapper);
47 void Map(const Fst<A> &ifst, MutableFst<B> *ofst, C mapper) {
48 ArcMap(ifst, ofst, mapper);
61 MapFst(const Fst<A> &fst, const C &mapper, const MapFstOptions& opts)
62 : ArcMapFst<A, B, C>(fst, mapper, opts) {}
64 MapFst(const Fst<A> &fst, C* mapper, const MapFstOptions& opts)
65 : ArcMapFst<A, B, C>(fst, mapper, opts) {}
67 MapFst(const Fst<A> &fst, const C &mapper)
68 : ArcMapFst<A, B, C>(fst, mapper) {}
70 MapFst(const Fst<A> &fst, C* mapper) : ArcMapFst<A, B, C>(fst, mapper) {}