/external/openfst/src/include/fst/script/ |
map.h | 30 Fst<typename M::ToArc> *ArcMap(const Fst<typename M::FromArc> &fst, 34 ArcMap(fst, ofst, mapper); 71 script::ArcMap(ifst, IdentityArcMapper<Arc>()))); 74 script::ArcMap(ifst, InvertWeightMapper<Arc>()))); 77 script::ArcMap(ifst, PlusMapper<Arc>(w)))); 80 script::ArcMap(ifst, QuantizeMapper<Arc>(delta)))); 83 script::ArcMap(ifst, RmWeightMapper<Arc>()))); 86 script::ArcMap(ifst, SuperFinalMapper<Arc>()))); 89 script::ArcMap(ifst, TimesMapper<Arc>(w)))); 92 script::ArcMap(ifst, WeightConvertMapper<Arc, LogArc>()))) [all...] |
/external/openfst/src/include/fst/ |
epsnormalize.h | 56 ArcMap(ifst, &gfst, ToGallicMapper<Arc, STRING_RIGHT_RESTRICT>()); 58 ArcMap(InvertFst<Arc>(ifst), &gfst, 65 ArcMap(fwfst, ofst, FromGallicMapper<Arc, STRING_RIGHT_RESTRICT>());
|
map.h | 20 // that have been renamed to ArcMap (cf. StateMap). 33 ArcMap(fst, mapper); 38 ArcMap(fst, mapper); 43 ArcMap(ifst, ofst, mapper); 48 ArcMap(ifst, ofst, mapper);
|
equivalent.h | 165 ArcMap(&efst1, QuantizeMapper<Arc>(delta)); 166 ArcMap(&efst2, QuantizeMapper<Arc>(delta)); 168 ArcMap(&efst1, &mapper); 169 ArcMap(&efst2, &mapper);
|
invert.h | 59 ArcMap(fst, InvertMapper<Arc>());
|
project.h | 78 ArcMap(fst, ProjectMapper<Arc>(project_type));
|
push.h | 138 ArcMap(ifst, &gfst, ToGallicMapper<Arc, stype>()); 164 ArcMap(fwfst, ofst, FromGallicMapper<Arc, stype>());
|
minimize.h | 544 ArcMap(*fst, &gfst, ToGallicMapper<A, STRING_LEFT>()); 548 ArcMap(&gfst, QuantizeMapper< GallicArc<A, STRING_LEFT> >(delta)); 561 ArcMap(fwfst, fst, FromGallicMapper<A, STRING_LEFT>()); 567 ArcMap(gfst, fst, &mapper); 572 ArcMap(fst, QuantizeMapper<A>(delta));
|
arc-map.h | 94 // The ArcMap functions and classes below will use the FinalAction() 112 void ArcMap(MutableFst<A> *fst, C* mapper) { 146 FSTERROR() << "ArcMap: non-zero arc labels for superfinal arc"; 191 void ArcMap(MutableFst<A> *fst, C mapper) { 192 ArcMap(fst, &mapper); 200 void ArcMap(const Fst<A> &ifst, MutableFst<B> *ofst, C* mapper) { 252 FSTERROR() << "ArcMap: non-zero arc labels for superfinal arc"; 293 void ArcMap(const Fst<A> &ifst, MutableFst<B> *ofst, C mapper) { 294 ArcMap(ifst, ofst, &mapper); [all...] |
encode.h | 469 ArcMap(fst, mapper); 474 ArcMap(fst, EncodeMapper<A>(mapper, DECODE));
|
/external/openfst/src/test/ |
algo_test.h | 434 ArcMap(T, &G, to_mapper); 435 ArcMap(G, &F, from_mapper); 613 ArcMap(T, &U, EpsMapper<Arc>()); 806 ArcMap(&path, RmWeightMapper<Arc>()); [all...] |