Searched defs:fst (Results 76 - 100 of 315) sorted by relevance

1234567891011>>

/external/openfst/src/script/
H A Drandequivalent.cc17 #include <fst/script/fst-class.h>
18 #include <fst/script/script-impl.h>
19 #include <fst/script/randequivalent.h>
21 namespace fst { namespace
61 } // namespace fst
H A Dreplace.cc17 #include <fst/script/fst-class.h>
18 #include <fst/script/script-impl.h>
19 #include <fst/script/replace.h>
21 namespace fst { namespace
45 } // namespace fst
H A Dshortest-distance.cc17 #include <fst/script/fst-class.h>
18 #include <fst/script/script-impl.h>
19 #include <fst/script/shortest-distance.h>
21 namespace fst { namespace
25 void ShortestDistance(const FstClass &fst, vector<WeightClass> *distance, argument
27 ShortestDistanceArgs1 args(fst, distance, opts);
29 Apply<Operation<ShortestDistanceArgs1> >("ShortestDistance", fst.ArcType(),
66 } // namespace fst
H A Dweight-class.cc19 #include <fst/arc.h>
20 #include <fst/script/weight-class.h>
22 namespace fst { namespace
45 } // namespace fst
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Depsnormalize.h26 #include "fst/lib/factor-weight.h"
27 #include "fst/lib/invert.h"
28 #include "fst/lib/map.h"
29 #include "fst/lib/rmepsilon.h"
31 namespace fst { namespace
66 } // namespace fst
H A Dfst.cpp0 // fst.cc
19 #include "fst/lib/fst.h"
22 #include "fst/lib/const-fst.h"
23 #include "fst/lib/vector-fst.h"
28 "Verify fst properties queried by TestProperties");
39 namespace fst { namespace
H A Dutil.h24 namespace fst { namespace
67 } // namespace fst;
/external/openfst/src/bin/
H A Dfstprint.cc23 #include <fst/script/print.h>
38 namespace s = fst::script;
39 using fst::ostream;
40 using fst::SymbolTable;
44 usage += " [binary.fst [text.fst]]\n";
56 s::FstClass *fst = s::FstClass::Read(in_name); local
57 if (!fst) return 1;
63 ostrm = new fst::ofstream(argv[2]);
73 fst
[all...]
H A Dfstrelabel.cc29 #include <fst/script/relabel.h>
30 #include <fst/script/weight-class.h>
31 #include <fst/util.h>
44 namespace s = fst::script;
45 using fst::SymbolTable;
46 using fst::SymbolTableTextOptions;
47 using fst::script::FstClass;
48 using fst::script::MutableFstClass;
53 usage += " [in.fst [out.fst]]\
71 MutableFstClass *fst = MutableFstClass::Read(in_name, true); local
[all...]
H A Dfstsymbols.cc24 #include <fst/script/fst-class.h>
25 #include <fst/script/script-impl.h>
26 #include <fst/script/verify.h>
27 #include <fst/util.h>
35 DEFINE_string(save_isymbols, "", "Save fst file's input symbol table to file");
36 DEFINE_string(save_osymbols, "", "Save fst file's output symbol table to file");
39 DEFINE_bool(verify, false, "Verify fst properities before saving");
42 namespace s = fst::script;
43 using fst
60 s::MutableFstClass *fst = s::MutableFstClass::Read(in_fname, true); local
[all...]
/external/openfst/src/extensions/far/
H A Dmain.cc30 #include <fst/extensions/far/main.h>
32 namespace fst { namespace
37 if (str == "fst")
53 return "fst";
118 } // namespace fst
/external/openfst/src/include/fst/
H A Dequal.h24 #include <fst/fst.h>
27 namespace fst { namespace
121 } // namespace fst
H A Dicu.h31 namespace fst { namespace
114 } // namespace fst
H A Dlock.h26 #include <fst/compat.h> // for DISALLOW_COPY_AND_ASSIGN
28 namespace fst { namespace
90 } // namespace fst
H A Dmapped-file.h23 #include <fst/fst.h>
30 namespace fst { namespace
81 } // namespace fst
H A Dreweight.h27 #include <fst/mutable-fst.h>
30 namespace fst { namespace
44 void Reweight(MutableFst<Arc> *fst, argument
49 if (fst->NumStates() == 0)
56 fst->SetProperties(kError, kError);
64 fst->SetProperties(kError, kError);
68 StateIterator< MutableFst<Arc> > sit(*fst);
75 for (MutableArcIterator< MutableFst<Arc> > ait(fst, state);
93 fst
[all...]
H A Drmfinalepsilon.h30 #include <fst/connect.h>
31 #include <fst/mutable-fst.h>
34 namespace fst { namespace
37 void RmFinalEpsilon(MutableFst<A>* fst) { argument
46 DfsVisit(*fst, &scc_visitor);
52 for (StateIterator<Fst<A> > siter(*fst); !siter.Done(); siter.Next()) {
54 if (fst->Final(s) != Weight::Zero()) {
56 for (ArcIterator<Fst<A> > aiter(*fst, s); !aiter.Done(); aiter.Next()) {
71 for (StateIterator<Fst<A> > siter(*fst); !site
[all...]
/external/openfst/src/include/fst/extensions/far/
H A Dcreate.h33 #include <fst/extensions/far/far.h>
35 namespace fst { namespace
85 } // namespace fst
H A Dequal.h22 #include <fst/extensions/far/far.h>
23 #include <fst/equal.h>
25 namespace fst { namespace
97 } // namespace fst
/external/openfst/src/include/fst/script/
H A Darcsort.h20 #include <fst/arcsort.h>
21 #include <fst/script/arg-packs.h>
22 #include <fst/script/fst-class.h>
24 namespace fst { namespace
33 MutableFst<Arc> *fst = args->arg1->GetMutableFst<Arc>(); local
37 ArcSort(fst, icomp);
40 ArcSort(fst, ocomp);
47 } // namespace fst
H A Dcompose.h20 #include <fst/script/arg-packs.h>
21 #include <fst/script/fst-class.h>
22 #include <fst/compose.h>
24 namespace fst { namespace
39 typedef fst::ComposeOptions ComposeOptions;
55 const ComposeOptions &opts = fst::script::ComposeOptions());
61 } // namespace fst
H A Ddeterminize.h20 #include <fst/determinize.h>
21 #include <fst/script/arg-packs.h>
22 #include <fst/script/fst-class.h>
23 #include <fst/script/weight-class.h>
25 namespace fst { namespace
34 explicit DeterminizeOptions(float d = fst::kDelta, argument
36 fst::script::WeightClass::Zero(),
37 int64 n = fst::kNoStateId, int64 l = 0)
51 fst
[all...]
H A Ddisambiguate.h20 #include <fst/disambiguate.h>
21 #include <fst/script/arg-packs.h>
22 #include <fst/script/fst-class.h>
23 #include <fst/script/weight-class.h>
25 namespace fst { namespace
34 explicit DisambiguateOptions(float d = fst::kDelta, argument
36 fst::script::WeightClass::Zero(),
37 int64 n = fst::kNoStateId, int64 l = 0)
51 fst
[all...]
H A Dencode.h22 #include <fst/script/arg-packs.h>
23 #include <fst/script/fst-class.h>
24 #include <fst/encode.h>
26 namespace fst { namespace
50 void Encode(MutableFstClass *fst, uint32 flags, bool reuse_encoder,
54 } // namespace fst
H A Dprint.h20 #include <fst/script/arg-packs.h>
21 #include <fst/script/fst-class.h>
22 #include <fst/script/print-impl.h>
24 namespace fst { namespace
32 const FstClass &fst; member in struct:fst::script::FstPrinterArgs
41 FstPrinterArgs(const FstClass &fst, argument
49 fst(fst), isyms(isyms), osyms(osyms), ssyms(ssyms), accept(accept),
55 const Fst<Arc> &fst local
73 PrintFst(const Fst<Arc> &fst, ostream &os, const string dest = �, const SymbolTable *isyms = NULL, const SymbolTable *osyms = NULL, const SymbolTable *ssyms = NULL) argument
[all...]

Completed in 184 milliseconds

1234567891011>>