Searched refs:fst (Results 26 - 50 of 404) sorted by relevance

1234567891011>>

/external/openfst/src/script/
H A Dconnect.cc17 #include <fst/script/fst-class.h>
18 #include <fst/script/script-impl.h>
19 #include <fst/script/connect.h>
21 namespace fst { namespace
24 void Connect(MutableFstClass *fst) { argument
25 Apply<Operation<MutableFstClass> >("Connect", fst->ArcType(), fst);
33 } // namespace fst
H A Dinvert.cc17 #include <fst/script/fst-class.h>
18 #include <fst/script/script-impl.h>
19 #include <fst/script/invert.h>
21 namespace fst { namespace
24 void Invert(MutableFstClass *fst) { argument
25 Apply<Operation<MutableFstClass> >("Invert", fst->ArcType(), fst);
33 } // namespace fst
H A Dtopsort.cc17 #include <fst/script/fst-class.h>
18 #include <fst/script/script-impl.h>
19 #include <fst/script/topsort.h>
21 namespace fst { namespace
24 bool TopSort(MutableFstClass *fst) { argument
25 TopSortArgs args(fst);
27 Apply<Operation<TopSortArgs> >("TopSort", fst->ArcType(), &args);
37 } // namespace fst
H A Dverify.cc17 #include <fst/script/fst-class.h>
18 #include <fst/script/script-impl.h>
19 #include <fst/script/verify.h>
21 namespace fst { namespace
24 bool Verify(const FstClass &fst) { argument
25 VerifyArgs args(&fst);
27 Apply<Operation<VerifyArgs> >("Verify", fst.ArcType(), &args);
37 } // namespace fst
H A Darcsort.cc17 #include <fst/script/fst-class.h>
18 #include <fst/script/arcsort.h>
19 #include <fst/script/script-impl.h>
21 namespace fst { namespace
24 void ArcSort(MutableFstClass *fst, ArcSortType sort_type) { argument
25 ArcSortArgs args(fst, sort_type);
27 Apply<Operation<ArcSortArgs> >("ArcSort", fst->ArcType(), &args);
35 } // namespace fst
H A Dclosure.cc17 #include <fst/script/fst-class.h>
18 #include <fst/script/script-impl.h>
19 #include <fst/script/closure.h>
21 namespace fst { namespace
24 void Closure(MutableFstClass *fst, ClosureType closure_type) { argument
25 ClosureArgs args(fst, closure_type);
27 Apply<Operation<ClosureArgs> >("Closure", fst->ArcType(), &args);
35 } // namespace fst
H A Dreweight.cc17 #include <fst/script/fst-class.h>
18 #include <fst/script/script-impl.h>
19 #include <fst/script/reweight.h>
21 namespace fst { namespace
24 void Reweight(MutableFstClass *fst, const vector<WeightClass> &potential, argument
26 ReweightArgs args(fst, potential, reweight_type);
28 Apply<Operation<ReweightArgs> >("Reweight", fst->ArcType(), &args);
36 } // namespace fst
H A Ddecode.cc17 #include <fst/script/fst-class.h>
18 #include <fst/script/script-impl.h>
19 #include <fst/script/decode.h>
20 #include <fst/encode.h>
22 namespace fst { namespace
36 } // namespace fst
H A Dencode.cc17 #include <fst/script/fst-class.h>
18 #include <fst/script/script-impl.h>
19 #include <fst/encode.h>
20 #include <fst/script/encode.h>
22 namespace fst { namespace
37 } // namespace fst
/external/openfst/src/bin/
H A Dfstreweight.cc23 #include <fst/script/reweight.h>
24 #include <fst/script/text-io.h>
29 namespace s = fst::script;
30 using fst::script::FstClass;
31 using fst::script::MutableFstClass;
35 usage += " in.fst potential.txt [out.fst]\n";
48 MutableFstClass *fst = MutableFstClass::Read(in_fname, true); local
49 if (!fst) return 1;
52 if (!s::ReadPotentials(fst
[all...]
H A Dfstarcsort.cc25 #include <fst/compat.h>
26 #include <fst/script/arcsort.h>
32 using fst::script::FstClass;
33 using fst::script::MutableFstClass;
34 using fst::script::ArcSort;
38 usage += " [in.fst [out.fst]]\n";
51 MutableFstClass *fst = MutableFstClass::Read(in_name, true); local
52 if (!fst) return 1;
55 ArcSort(fst, fs
[all...]
H A Dfstconnect.cc24 #include <fst/script/connect.h>
27 namespace s = fst::script;
28 using fst::script::FstClass;
29 using fst::script::MutableFstClass;
33 usage += " [in.fst [out.fst]]\n";
45 MutableFstClass *fst = MutableFstClass::Read(in_name, true); local
46 if (!fst) return 1;
48 s::Connect(fst);
49 fst
[all...]
H A Dfstinvert.cc23 #include <fst/script/invert.h>
26 namespace s = fst::script;
27 using fst::script::FstClass;
28 using fst::script::MutableFstClass;
32 usage += " [in.fst [out.fst]]\n";
44 MutableFstClass *fst = MutableFstClass::Read(in_name, true); local
45 if (!fst) return 1;
47 s::Invert(fst);
48 fst
[all...]
H A Dfstclosure.cc23 #include <fst/script/closure.h>
29 using fst::script::FstClass;
30 using fst::script::MutableFstClass;
34 usage += " [in.fst [out.fst]]\n";
46 MutableFstClass *fst = MutableFstClass::Read(in_fname, true); local
47 if (!fst) return 1;
49 fst::ClosureType closure_type =
50 FLAGS_closure_plus ? fst::CLOSURE_PLUS : fst
[all...]
H A Dfstproject.cc23 #include <fst/script/project.h>
28 namespace s = fst::script;
29 using fst::script::FstClass;
30 using fst::script::MutableFstClass;
35 usage += " [in.fst [out.fst]]\n";
47 MutableFstClass *fst = MutableFstClass::Read(in_name, true); local
48 if (!fst) return 1;
50 fst::ProjectType project_type = FLAGS_project_output ?
51 fst
[all...]
H A Dfstencode.cc23 #include <fst/script/encode.h>
24 #include <fst/script/decode.h>
33 namespace s = fst::script;
34 using fst::script::FstClass;
35 using fst::script::MutableFstClass;
39 usage += " in.fst codex [out.fst]\n";
52 MutableFstClass *fst = MutableFstClass::Read(in_name, true); local
53 if (!fst) return 1;
57 flags |= FLAGS_encode_labels ? fst
[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/include/fst/script/
H A Dfstscript-decl.h22 #include <fst/fst-decl.h>
24 namespace fst { namespace
33 } // namespace fst;
H A Dtopsort.h20 #include <fst/script/arg-packs.h>
21 #include <fst/script/fst-class.h>
22 #include <fst/topsort.h>
24 namespace fst { namespace
31 MutableFst<Arc> *fst = args->args->GetMutableFst<Arc>(); local
32 args->retval = TopSort(fst);
35 bool TopSort(MutableFstClass *fst);
38 } // namespace fst
H A Dclosure.h20 #include <fst/script/arg-packs.h>
21 #include <fst/script/fst-class.h>
22 #include <fst/closure.h>
24 namespace fst { namespace
31 MutableFst<Arc> *fst = args->arg1->GetMutableFst<Arc>(); local
33 Closure(fst, args->arg2);
39 } // namespace fst
H A Dverify.h20 #include <fst/script/arg-packs.h>
21 #include <fst/script/fst-class.h>
22 #include <fst/verify.h>
24 namespace fst { namespace
31 const Fst<Arc> *fst = args->args->GetFst<Arc>(); local
32 args->retval = Verify(*fst);
38 } // 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...]
/external/openfst/src/include/fst/extensions/far/
H A Dfarlib.h24 #include <fst/extensions/far/far.h>
25 #include <fst/extensions/far/compile-strings.h>
26 #include <fst/extensions/far/create.h>
27 #include <fst/extensions/far/extract.h>
28 #include <fst/extensions/far/info.h>
29 #include <fst/extensions/far/print-strings.h>
/external/ipsec-tools/src/racoon/missing/crypto/rijndael/
H A Drijndael.h5 #include <crypto/rijndael/rijndael-api-fst.h>
/external/openfst/src/include/fst/extensions/pdt/
H A Dpdtlib.h25 #include <fst/extensions/pdt/pdt.h>
26 #include <fst/extensions/pdt/compose.h>
27 #include <fst/extensions/pdt/expand.h>
28 #include <fst/extensions/pdt/replace.h>

Completed in 229 milliseconds

1234567891011>>