HomeSort by relevance Sort by last modified time
    Searched defs:ArcMap (Results 1 - 2 of 2) sorted by null

  /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);
67 script::ArcMap(ifst, IdentityArcMapper<Arc>()));
70 script::ArcMap(ifst, InvertWeightMapper<Arc>()));
73 script::ArcMap(ifst, PlusMapper<Arc>(w)));
76 script::ArcMap(ifst, QuantizeMapper<Arc>(delta)));
79 script::ArcMap(ifst, RmWeightMapper<Arc>()));
82 script::ArcMap(ifst, SuperFinalMapper<Arc>()));
85 script::ArcMap(ifst, TimesMapper<Arc>(w)));
88 script::ArcMap(ifst, WeightConvertMapper<Arc, LogArc>()))
    [all...]
  /external/openfst/src/include/fst/
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...]

Completed in 50 milliseconds