/external/openfst/src/include/fst/script/ |
compose.h | 33 const Fst<Arc> &ifst2 = *(args->arg2.GetFst<Arc>()); local 36 Compose(ifst1, ifst2, ofst, args->arg4); 47 const Fst<Arc> &ifst2 = *(args->arg2.GetFst<Arc>()); local 50 Compose(ifst1, ifst2, ofst, args->arg4); 53 void Compose(const FstClass &ifst1, const FstClass &ifst2, 57 void Compose(const FstClass &ifst1, const FstClass &ifst2,
|
difference.h | 34 const Fst<Arc> &ifst2 = *(args->arg2.GetFst<Arc>()); local 37 Difference(ifst1, ifst2, ofst, args->arg4); 46 const Fst<Arc> &ifst2 = *(args->arg2.GetFst<Arc>()); local 49 Difference(ifst1, ifst2, ofst, args->arg4); 53 void Difference(const FstClass &ifst1, const FstClass &ifst2, 57 void Difference(const FstClass &ifst1, const FstClass &ifst2,
|
intersect.h | 34 const Fst<Arc> &ifst2 = *(args->arg2.GetFst<Arc>()); local 37 Intersect(ifst1, ifst2, ofst, args->arg4); 46 const Fst<Arc> &ifst2 = *(args->arg2.GetFst<Arc>()); local 49 Intersect(ifst1, ifst2, ofst, args->arg4); 52 void Intersect(const FstClass &ifst1, const FstClass &ifst2, 56 void Intersect(const FstClass &ifst, const FstClass &ifst2,
|
/external/openfst/src/script/ |
compose.cc | 25 void Compose(const FstClass &ifst1, const FstClass &ifst2, 27 if (!ArcTypesMatch(ifst1, ifst2, "Compose") || 30 ComposeArgs1 args(ifst1, ifst2, ofst, compose_filter); 34 void Compose(const FstClass &ifst1, const FstClass &ifst2, 36 if (!ArcTypesMatch(ifst1, ifst2, "Compose") || 39 ComposeArgs2 args(ifst1, ifst2, ofst, copts);
|
difference.cc | 24 void Difference(const FstClass &ifst1, const FstClass &ifst2, 26 if (!ArcTypesMatch(ifst1, ifst2, "Difference") || 29 DifferenceArgs1 args(ifst1, ifst2, ofst, compose_filter); 33 void Difference(const FstClass &ifst1, const FstClass &ifst2, 35 if (!ArcTypesMatch(ifst1, ifst2, "Difference") || 38 DifferenceArgs2 args(ifst1, ifst2, ofst, copts);
|
intersect.cc | 24 void Intersect(const FstClass &ifst1, const FstClass &ifst2, 26 if (!ArcTypesMatch(ifst1, ifst2, "Intersect") || 29 IntersectArgs1 args(ifst1, ifst2, ofst, compose_filter); 33 void Intersect(const FstClass &ifst1, const FstClass &ifst2, 35 if (!ArcTypesMatch(ifst1, ifst2, "Intersect") || 38 IntersectArgs2 args(ifst1, ifst2, ofst, copts);
|
/external/openfst/src/bin/ |
fstequal.cc | 53 FstClass *ifst2 = FstClass::Read(in2_name); 54 if (!ifst2) return 1; 56 bool result = s::Equal(*ifst1, *ifst2, FLAGS_delta);
|
fstcompose.cc | 62 FstClass *ifst2 = FstClass::Read(in2_name); 63 if (!ifst2) return 1; 65 if (ifst1->ArcType() != ifst2->ArcType()) { 90 s::Compose(*ifst1, *ifst2, &ofst, opts);
|
fstequivalent.cc | 63 FstClass *ifst2 = FstClass::Read(in2_name); 64 if (!ifst2) return 1; 67 return s::Equivalent(*ifst1, *ifst2, FLAGS_delta) ? 0 : 2; 84 *ifst1, *ifst2,
|
fstdifference.cc | 59 FstClass *ifst2 = FstClass::Read(in2_name); 60 if (!ifst2) return 1; 82 s::Difference(*ifst1, *ifst2, &ofst, opts);
|
fstintersect.cc | 60 FstClass *ifst2 = FstClass::Read(in2_name); 61 if (!ifst2) return 1; 83 s::Intersect(*ifst1, *ifst2, &ofst, opts);
|
/external/openfst/src/extensions/pdt/ |
pdtcompose.cc | 64 s::FstClass *ifst2 = s::FstClass::Read(in2_name); 65 if (!ifst2) return 1; 93 s::PdtCompose(*ifst1, *ifst2, parens, &ofst, copts, FLAGS_left_pdt);
|
pdtscript.cc | 41 const FstClass &ifst2, 46 if (!ArcTypesMatch(ifst1, ifst2, "PdtCompose") || 49 PdtComposeArgs args(ifst1, ifst2, parens, ofst, copts, left_pdt);
|
/external/openfst/src/include/fst/ |
intersect.h | 143 void Intersect(const Fst<Arc> &ifst1, const Fst<Arc> &ifst2, 151 *ofst = IntersectFst<Arc>(ifst1, ifst2, nopts); 155 *ofst = IntersectFst<Arc>(ifst1, ifst2, iopts); 159 *ofst = IntersectFst<Arc>(ifst1, ifst2, iopts); 163 *ofst = IntersectFst<Arc>(ifst1, ifst2, iopts);
|
difference.h | 160 void Difference(const Fst<Arc> &ifst1, const Fst<Arc> &ifst2, 168 *ofst = DifferenceFst<Arc>(ifst1, ifst2, nopts); 172 *ofst = DifferenceFst<Arc>(ifst1, ifst2, dopts); 176 *ofst = DifferenceFst<Arc>(ifst1, ifst2, dopts); 180 *ofst = DifferenceFst<Arc>(ifst1, ifst2, dopts);
|
compose.h | 699 void Compose(const Fst<Arc> &ifst1, const Fst<Arc> &ifst2, 707 *ofst = ComposeFst<Arc>(ifst1, ifst2, nopts); 711 *ofst = ComposeFst<Arc>(ifst1, ifst2, copts); 715 *ofst = ComposeFst<Arc>(ifst1, ifst2, copts); 719 *ofst = ComposeFst<Arc>(ifst1, ifst2, copts);
|
/external/openfst/src/include/fst/extensions/pdt/ |
compose.h | 434 const Fst<Arc> &ifst2, bool expand = false, 437 matcher2 = new PdtMatcher(ifst2, MATCH_INPUT, kParenLoop); 439 filter = new PdtFilter(ifst1, ifst2, matcher1, matcher2, &parens, 462 const Fst<Arc> &ifst2, 466 matcher2 = new PdtMatcher(ifst2, MATCH_INPUT, kParenList); 468 filter = new PdtFilter(ifst1, ifst2, matcher1, matcher2, &parens, 498 const Fst<Arc> &ifst2, 503 PdtComposeFstOptions<Arc, true> copts(ifst1, parens, ifst2, 506 *ofst = ComposeFst<Arc>(ifst1, ifst2, copts); 519 const Fst<Arc> &ifst2, [all...] |
pdtscript.h | 57 const Fst<Arc> &ifst2 = *(args->arg2.GetFst<Arc>()); local 69 Compose(ifst1, parens, ifst2, ofst, args->arg5); 71 Compose(ifst1, ifst2, parens, ofst, args->arg5); 76 const FstClass & ifst2,
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
difference.h | 128 void Difference(const Fst<Arc> &ifst1, const Fst<Arc> &ifst2, 133 *ofst = DifferenceFst<Arc>(ifst1, ifst2, nopts);
|
intersect.h | 118 void Intersect(const Fst<Arc> &ifst1, const Fst<Arc> &ifst2, 123 *ofst = IntersectFst<Arc>(ifst1, ifst2, nopts);
|
compose.h | [all...] |