Searched refs:FstClass (Results 1 - 25 of 98) sorted by relevance

1234

/external/openfst/src/include/fst/script/
H A Dcompose.h27 typedef args::Package<const FstClass&, const FstClass&,
41 typedef args::Package<const FstClass&, const FstClass&,
53 void Compose(const FstClass &ifst1, const FstClass &ifst2,
57 void Compose(const FstClass &ifst1, const FstClass &ifst2,
H A Ddifference.h28 typedef args::Package<const FstClass&, const FstClass&,
40 typedef args::Package<const FstClass&, const FstClass&,
53 void Difference(const FstClass &ifst1, const FstClass &ifst2,
57 void Difference(const FstClass &ifst1, const FstClass &ifst2,
H A Dintersect.h28 typedef args::Package<const FstClass&, const FstClass&,
40 typedef args::Package<const FstClass&, const FstClass&,
52 void Intersect(const FstClass &ifst1, const FstClass &ifst2,
56 void Intersect(const FstClass &ifst, const FstClass &ifst2,
H A Dconvert.h28 typedef args::Package<const FstClass&, const string&> ConvertInnerArgs;
29 typedef args::WithReturnValue<FstClass*, ConvertInnerArgs> ConvertArgs;
37 args->retval = new FstClass(*result);
44 FstClass *Convert(const FstClass& f, const string &new_type);
H A Dequal.h27 typedef args::Package<const FstClass&, const FstClass&, float> EqualInnerArgs;
38 bool Equal(const FstClass &fst1, const FstClass &fst2,
H A Dequivalent.h27 typedef args::Package<const FstClass &, const FstClass &,
39 bool Equivalent(const FstClass &fst1, const FstClass &fst2,
H A Dfstscript-decl.h27 class FstClass;
H A Dreverse.h27 typedef args::Package<const FstClass &, MutableFstClass *> ReverseArgs;
37 void Reverse(const FstClass &fst1, MutableFstClass *fst2);
H A Dsynchronize.h27 typedef args::Package<const FstClass &, MutableFstClass *> SynchronizeArgs;
37 void Synchronize(const FstClass &ifst, MutableFstClass *ofst);
H A Dunion.h27 typedef args::Package<MutableFstClass *, const FstClass &> UnionArgs;
37 void Union(MutableFstClass *fst1, const FstClass &fst2);
/external/openfst/src/script/
H A Dscript-impl.cc27 bool ArcTypesMatch(const FstClass &a, const FstClass &b,
H A Dfst-class.cc72 FstClass *FstClass::Read(const string &fname) {
75 return ReadFst<FstClass>(in, fname);
77 return ReadFst<FstClass>(cin, "standard input");
81 FstClass *FstClass::Read(istream &istr, const string &source) {
82 return ReadFst<FstClass>(istr, source);
98 FstClass *ifst = FstClass::Read(fname);
128 VectorFstClass::VectorFstClass(const FstClass
[all...]
/external/openfst/src/bin/
H A Dfstequal.cc17 // Modified: jpr@google.com (Jake Ratkiewicz) to use FstClass
29 using fst::script::FstClass;
50 FstClass *ifst1 = FstClass::Read(in1_name);
53 FstClass *ifst2 = FstClass::Read(in2_name);
H A Dfstconvert.cc17 // Modified: jpr@google.com (Jake Ratkiewicz) to use FstClass
29 using fst::script::FstClass;
45 FstClass *ifst = FstClass::Read(in_name);
48 FstClass *ofst = ifst;
H A Dfstcompose.cc17 // Modified: jpr@google.com (Jake Ratkiewicz) to use FstClass
35 using fst::script::FstClass;
59 FstClass *ifst1 = FstClass::Read(in1_name);
62 FstClass *ifst2 = FstClass::Read(in2_name);
H A Dfstdifference.cc17 // Modified: jpr@google.com (Jake Ratkiewicz) to use FstClass
33 using fst::script::FstClass;
57 FstClass *ifst1 = FstClass::Read(in1_name);
59 FstClass *ifst2 = FstClass::Read(in2_name);
H A Dfstequivalent.cc17 // Modified: jpr@google.com (Jake Ratkiewicz) to use FstClass
38 using fst::script::FstClass;
60 FstClass *ifst1 = FstClass::Read(in1_name);
63 FstClass *ifst2 = FstClass::Read(in2_name);
H A Dfstintersect.cc17 // Modified: jpr@google.com (Jake Ratkiewicz) to use FstClass
33 using fst::script::FstClass;
58 FstClass *ifst1 = FstClass::Read(in1_name);
60 FstClass *ifst2 = FstClass::Read(in2_name);
H A Dfstreplace.cc16 // Modified: jpr@google.com (Jake Ratkiewicz) to use FstClass
25 using fst::script::FstClass;
43 FstClass *ifst = FstClass::Read(in_fname);
47 typedef pair<Label, const s::FstClass* > FstTuple;
53 ifst = s::FstClass::Read(argv[i]);
H A Dfstconcat.cc17 // Modified: jpr@google.com (Jake Ratkiewicz) to use FstClass
29 using fst::script::FstClass;
55 FstClass *fst2 = FstClass::Read(in2_name);
H A Dfstepsnormalize.cc17 // Modified: jpr@google.com (Jake Ratkiewicz) to use FstClass
29 using fst::script::FstClass;
47 FstClass *ifst = FstClass::Read(in_name);
H A Dfstinfo.cc17 // Modified: jpr@google.com (Jake Ratkiewicz) to use FstClass
37 using fst::script::FstClass;
52 FstClass *ifst = FstClass::Read(in_name);
H A Dfstreverse.cc17 // Modified: jpr@google.com (Jake Ratkiewicz) Changed to use FstClass
32 using fst::script::FstClass;
50 FstClass *ifst = FstClass::Read(in_name);
H A Dfstsynchronize.cc17 // Modified: jpr@google.com (Jake Ratkiewicz) to use FstClass
27 using fst::script::FstClass;
44 FstClass *ifst = FstClass::Read(in_name);
H A Dfstunion.cc17 // Modified: jpr@google.com (Jake Ratkiewicz) - to use FstClass
31 using fst::script::FstClass;
59 FstClass *fst2 = FstClass::Read(in2_name);

Completed in 144 milliseconds

1234