HomeSort by relevance Sort by last modified time
    Searched refs:FstClass (Results 1 - 25 of 98) sorted by null

1 2 3 4

  /external/openfst/src/include/fst/script/
fstscript-decl.h 27 class FstClass;
compose.h 27 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,
difference.h 28 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,
intersect.h 28 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,
convert.h 28 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);
concat.h 27 typedef args::Package<MutableFstClass*, const FstClass&> ConcatArgs1;
28 typedef args::Package<const FstClass&, MutableFstClass*> ConcatArgs2;
46 void Concat(MutableFstClass *ofst, const FstClass &ifst);
47 void Concat(const FstClass &ifst, MutableFstClass *ofst);
equal.h 27 typedef args::Package<const FstClass&, const FstClass&, float> EqualInnerArgs;
38 bool Equal(const FstClass &fst1, const FstClass &fst2,
equivalent.h 27 typedef args::Package<const FstClass &, const FstClass &,
39 bool Equivalent(const FstClass &fst1, const FstClass &fst2,
map.h 51 typedef args::Package<const FstClass&, MapType, float,
53 typedef args::WithReturnValue<FstClass*, MapInnerArgs> MapArgs;
67 args->retval = new FstClass(*(fst =
70 args->retval = new FstClass(*(fst =
73 args->retval = new FstClass(*(fst =
76 args->retval = new FstClass(*(fst =
79 args->retval = new FstClass(*(fst =
82 args->retval = new FstClass(*(fst =
85 args->retval = new FstClass(*(fst =
88 args->retval = new FstClass(*(fst
    [all...]
verify.h 27 typedef args::WithReturnValue<bool, const FstClass *> VerifyArgs;
35 bool Verify(const FstClass &fst1);
fst-class.h 30 // FstClass which hides the arc types. This allows clients to load
45 // the only one) and FstClass serves as the base class for all
149 class FstClass : public FstClassBase {
152 static FstClass *Read(istream &stream,
155 FSTERROR() << "FstClass::Read: options header not specified";
163 return ReadTypedFst<FstClass, Fst<Arc> >(stream, opts);
167 FstClass() : impl_(NULL) {
171 explicit FstClass(const Fst<Arc> &fst) : impl_(new FstClassImpl<Arc>(fst)) {
174 FstClass(const FstClass &other) : impl_(other.impl_->Copy()) {
    [all...]
  /external/openfst/src/script/
script-impl.cc 27 bool ArcTypesMatch(const FstClass &a, const FstClass &b,
fst-class.cc 72 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 &other
    [all...]
  /external/openfst/src/bin/
fstequal.cc 17 // 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);
fstconvert.cc 17 // 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;
fstcompose.cc 17 // 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);
fstdifference.cc 17 // 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);
fstequivalent.cc 17 // 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);
fstintersect.cc 17 // 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);
fstreplace.cc 16 // 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]);
fstconcat.cc 17 // Modified: jpr@google.com (Jake Ratkiewicz) to use FstClass
29 using fst::script::FstClass;
55 FstClass *fst2 = FstClass::Read(in2_name);
fstepsnormalize.cc 17 // Modified: jpr@google.com (Jake Ratkiewicz) to use FstClass
29 using fst::script::FstClass;
47 FstClass *ifst = FstClass::Read(in_name);
fstinfo.cc 17 // Modified: jpr@google.com (Jake Ratkiewicz) to use FstClass
37 using fst::script::FstClass;
52 FstClass *ifst = FstClass::Read(in_name);
fstreverse.cc 17 // Modified: jpr@google.com (Jake Ratkiewicz) Changed to use FstClass
32 using fst::script::FstClass;
50 FstClass *ifst = FstClass::Read(in_name);
fstsynchronize.cc 17 // Modified: jpr@google.com (Jake Ratkiewicz) to use FstClass
27 using fst::script::FstClass;
44 FstClass *ifst = FstClass::Read(in_name);

Completed in 81 milliseconds

1 2 3 4