/external/openfst/src/script/ |
D | script-impl.cc | 29 if (a.ArcType() != b.ArcType()) { in ArcTypesMatch() 31 << ":\n\t" << a.ArcType() << " and " << b.ArcType(); in ArcTypesMatch()
|
D | prune.cc | 29 Apply<Operation<PruneArgs1> >("Prune", fst->ArcType(), &args); in Prune() 37 Apply<Operation<PruneArgs2> >("Prune", fst->ArcType(), &args); in Prune() 47 Apply<Operation<PruneArgs3> >("Prune", ifst.ArcType(), &args); in Prune() 55 Apply<Operation<PruneArgs4> >("Prune", fst->ArcType(), &args); in Prune()
|
D | shortest-distance.cc | 29 Apply<Operation<ShortestDistanceArgs1> >("ShortestDistance", fst.ArcType(), in ShortestDistance() 38 Apply<Operation<ShortestDistanceArgs2> >("ShortestDistance", ifst.ArcType(), in ShortestDistance() 46 Apply<Operation<ShortestDistanceArgs3> >("ShortestDistance", ifst.ArcType(), in ShortestDistance()
|
D | rmepsilon.cc | 30 Apply<Operation<RmEpsilonArgs1> >("RmEpsilon", ifst.ArcType(), &args); in RmEpsilon() 38 Apply<Operation<RmEpsilonArgs2> >("RmEpsilon", fst->ArcType(), &args); in RmEpsilon() 45 Apply<Operation<RmEpsilonArgs3> >("RmEpsilon", fst->ArcType(), &args); in RmEpsilon()
|
D | relabel.cc | 32 Apply<Operation<RelabelArgs1> >("Relabel", ofst->ArcType(), &args); in Relabel() 41 Apply<Operation<RelabelArgs2> >("Relabel", ofst->ArcType(), &args); in Relabel() 49 Apply<Operation<RelabelArgs3> >("Relabel", fst->ArcType(), &args); in Relabel()
|
D | fst-class.cc | 61 reg->GetReader(hdr.ArcType()); in ReadFst() 65 << hdr.ArcType() << "\" : " << read_options.source; in ReadFst() 125 : MutableFstClass(GetVFSTRegisterEntry(other.ArcType()).converter(other)) { in VectorFstClass()
|
D | concat.cc | 29 Apply<Operation<ConcatArgs1> >("Concat", ofst->ArcType(), &args); in Concat() 37 Apply<Operation<ConcatArgs2> >("Concat", ofst->ArcType(), &args); in Concat()
|
D | push.cc | 28 Apply<Operation<PushArgs1> >("Push", ofst->ArcType(), &args); in Push() 37 Apply<Operation<PushArgs2> >("Push", ifst.ArcType(), &args); in Push()
|
D | difference.cc | 30 Apply<Operation<DifferenceArgs1> >("Difference", ifst1.ArcType(), &args); in Difference() 39 Apply<Operation<DifferenceArgs2> >("Difference", ifst1.ArcType(), &args); in Difference()
|
D | shortest-path.cc | 30 Apply<Operation<ShortestPathArgs1> >("ShortestPath", ifst.ArcType(), &args); in ShortestPath() 40 Apply<Operation<ShortestPathArgs2> >("ShortestPath", ifst.ArcType(), &args); in ShortestPath()
|
D | compose.cc | 31 Apply<Operation<ComposeArgs1> >("Compose", ifst1.ArcType(), &args); in Compose() 40 Apply<Operation<ComposeArgs2> >("Compose", ifst1.ArcType(), &args); in Compose()
|
D | intersect.cc | 30 Apply<Operation<IntersectArgs1> >("Intersect", ifst1.ArcType(), &args); in Intersect() 39 Apply<Operation<IntersectArgs2> >("Intersect", ifst1.ArcType(), &args); in Intersect()
|
D | randequivalent.cc | 33 Apply<Operation<RandEquivalentArgs1> >("RandEquivalent", fst1.ArcType(), in RandEquivalent() 48 "RandEquivalent", fst1.ArcType(), &args_with_retval); in RandEquivalent()
|
D | connect.cc | 25 Apply<Operation<MutableFstClass> >("Connect", fst->ArcType(), fst); in Connect()
|
D | invert.cc | 25 Apply<Operation<MutableFstClass> >("Invert", fst->ArcType(), fst); in Invert()
|
D | topsort.cc | 27 Apply<Operation<TopSortArgs> >("TopSort", fst->ArcType(), &args); in TopSort()
|
D | verify.cc | 27 Apply<Operation<VerifyArgs> >("Verify", fst.ArcType(), &args); in Verify()
|
D | arcsort.cc | 27 Apply<Operation<ArcSortArgs> >("ArcSort", fst->ArcType(), &args); in ArcSort()
|
/external/openfst/src/extensions/pdt/ |
D | pdtscript.cc | 51 Apply<Operation<PdtComposeArgs> >("PdtCompose", ifst1.ArcType(), &args); in PdtCompose() 59 Apply<Operation<PdtExpandArgs> >("PdtExpand", ifst.ArcType(), &args); in PdtExpand() 81 Apply<Operation<PdtReplaceArgs> >("PdtReplace", ofst->ArcType(), &args); in PdtReplace() 89 Apply<Operation<PdtReverseArgs> >("PdtReverse", ifst.ArcType(), &args); in PdtReverse() 99 ifst.ArcType(), &args); in PdtShortestPath() 105 Apply<Operation<PrintPdtInfoArgs> >("PrintPdtInfo", ifst.ArcType(), &args); in PrintPdtInfo()
|
/external/openfst/src/bin/ |
D | fstcompose.cc | 65 if (ifst1->ArcType() != ifst2->ArcType()) { in main() 70 VectorFstClass ofst(ifst1->ArcType()); in main()
|
/external/openfst/src/include/fst/extensions/far/ |
D | farscript.h | 227 #define REGISTER_FST_FAR_OPERATIONS(ArcType) \ argument 228 REGISTER_FST_OPERATION(FarCompileStrings, ArcType, FarCompileStringsArgs); \ 229 REGISTER_FST_OPERATION(FarCreate, ArcType, FarCreateArgs); \ 230 REGISTER_FST_OPERATION(FarExtract, ArcType, FarExtractArgs); \ 231 REGISTER_FST_OPERATION(FarInfo, ArcType, FarInfoArgs); \ 232 REGISTER_FST_OPERATION(FarPrintStrings, ArcType, FarPrintStringsArgs)
|
D | far.h | 39 const string &ArcType() const { return arctype_; } in ArcType() function 48 arctype_ = fsthdr.ArcType().empty() ? "unknown" : fsthdr.ArcType(); in Read() 53 arctype_ = fsthdr.ArcType().empty() ? "unknown" : fsthdr.ArcType(); in Read()
|
/external/openfst/src/include/fst/extensions/pdt/ |
D | pdtscript.h | 277 #define REGISTER_FST_PDT_OPERATIONS(ArcType) \ argument 278 REGISTER_FST_OPERATION(PdtCompose, ArcType, PdtComposeArgs); \ 279 REGISTER_FST_OPERATION(PdtExpand, ArcType, PdtExpandArgs); \ 280 REGISTER_FST_OPERATION(PdtReplace, ArcType, PdtReplaceArgs); \ 281 REGISTER_FST_OPERATION(PdtReverse, ArcType, PdtReverseArgs); \ 282 REGISTER_FST_OPERATION(PdtShortestPath, ArcType, PdtShortestPathArgs); \ 283 REGISTER_FST_OPERATION(PrintPdtInfo, ArcType, PrintPdtInfoArgs)
|
/external/openfst/src/include/fst/script/ |
D | fst-class.h | 49 virtual const string &ArcType() const = 0; 83 virtual const string &ArcType() const { in ArcType() function 164 virtual const string &ArcType() const { in ArcType() function 165 return impl_->ArcType(); in ArcType() 194 if (Arc::Type() != ArcType()) { in GetFst()
|
/external/openfst/src/extensions/far/ |
D | main.cc | 98 string atype = hdr.ArcType(); in LoadArcTypeFromFar() 115 return hdr.ArcType(); in LoadArcTypeFromFst()
|