HomeSort by relevance Sort by last modified time
    Searched defs:ifst (Results 26 - 35 of 35) sorted by null

12

  /external/openfst/src/include/fst/script/
randgen.h 38 const Fst<Arc> &ifst = *(args->arg1.GetFst<Arc>()); local
48 RandGen(ifst, ofst, ropts);
54 RandGen(ifst, ofst, ropts);
60 RandGen(ifst, ofst, ropts);
66 void RandGen(const FstClass &ifst, MutableFstClass *ofst, int32 seed = time(0),
prune.h 97 const Fst<Arc>& ifst = *(args->arg1.GetFst<Arc>()); local
102 Prune(ifst, ofst, opts);
113 const Fst<Arc>& ifst = *(args->arg1.GetFst<Arc>()); local
117 Prune(ifst, ofst, w, args->arg4, args->arg5);
135 void Prune(const FstClass &ifst, MutableFstClass *fst,
139 void Prune(const FstClass &ifst, MutableFstClass *ofst,
rmepsilon.h 136 const Fst<Arc> &ifst = *(args->arg1.GetFst<Arc>()); local
143 Reverse(ifst, &rfst);
147 *ofst = ifst;
190 void RmEpsilon(const FstClass &ifst, MutableFstClass *ofst,
shortest-path.h 58 const Fst<Arc> &ifst = *(args->arg1.GetFst<Arc>()); local
73 ArcFilter>::Construct(ifst, &weights);
78 ShortestPath(ifst, ofst, &weights, spopts);
85 ArcFilter>::Construct(ifst, &weights);
90 ShortestPath(ifst, ofst, &weights, spopts);
97 ArcFilter >::Construct(ifst, &weights);
102 ShortestPath(ifst, ofst, &weights, spopts);
109 ArcFilter>::Construct(ifst, &weights);
114 ShortestPath(ifst, ofst, &weights, spopts);
121 ArcFilter>::Construct(ifst, &weights)
161 const Fst<Arc> &ifst = *(args->arg1.GetFst<Arc>()); local
    [all...]
map.h 57 const Fst<Arc> &ifst = *(args->args.arg1.GetFst<Arc>()); local
68 script::StateMap(ifst, ArcSumMapper<Arc>(ifst))));
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))))
    [all...]
  /external/openfst/src/script/
fst-class.cc 98 FstClass *ifst = FstClass::Read(fname); local
99 if (!ifst) return 0;
100 if (ifst->Properties(fst::kMutable, false)) {
101 return static_cast<MutableFstClass *>(ifst);
103 MutableFstClass *ofst = new VectorFstClass(*ifst);
104 delete ifst;
  /external/openfst/src/include/fst/extensions/pdt/
replace.h 91 const Fst<Arc> *ifst = ifst_array[fst_id].second; local
92 for (StateIterator< Fst<Arc> > siter(*ifst);
96 if (is == ifst->Start()) {
101 if (ifst->Final(is) != Weight::Zero()) {
103 ofst->SetFinal(os, ifst->Final(is));
104 fst_final[fst_id].push_back(make_pair(os, ifst->Final(is)));
106 for (ArcIterator< Fst<Arc> > aiter(*ifst, is);
  /external/openfst/src/include/fst/
mutable-fst.h 134 Fst<A> *ifst = Fst<A>::Read(filename); local
135 if (!ifst) return 0;
136 if (ifst->Properties(kMutable, false)) {
137 return static_cast<MutableFst *>(ifst);
139 Fst<A> *ofst = Convert(*ifst, convert_type);
140 delete ifst;
replace-util.h 281 const Fst<Arc> *ifst = fst_array_[i]; local
282 if (!ifst)
284 for (StateIterator<Fst<Arc> > siter(*ifst); !siter.Done(); siter.Next()) {
288 if (ifst->Final(s) != Weight::Zero())
291 for (ArcIterator<Fst<Arc> > aiter(*ifst, s);
  /frameworks/base/tools/aidl/
generate_java_rpc.cpp 789 IfStatement* ifst = new IfStatement; local
790 ifst->expression = new Comparison(new FieldVariable(THIS_VALUE, "callback"), "!=", NULL_VALUE);
791 dispatchMethod->statements->Add(ifst);
792 ifst->statements->Add(realCall);
944 IfStatement* ifst = new IfStatement; local
945 ifst->expression = new Comparison(_presenter, "!=", NULL_VALUE);
946 stopListeningMethod->statements->Add(ifst);
948 ifst->statements->Add(new MethodCall(_presenter, "stopListening"));
949 ifst->statements->Add(new Assignment(_presenter, NULL_VALUE));
    [all...]

Completed in 138 milliseconds

12