/external/openfst/src/include/fst/script/ |
D | print.h | 33 const SymbolTable *isyms; member 42 const SymbolTable *isyms, in FstPrinterArgs() 49 fst(fst), isyms(isyms), osyms(osyms), ssyms(ssyms), accept(accept), in FstPrinterArgs() 57 fst::FstPrinter<Arc> fstprinter(fst, args->isyms, args->osyms, in PrintFst() 64 const SymbolTable *isyms, 74 const SymbolTable *isyms = NULL, 77 fst::FstPrinter<Arc> fstprinter(fst, isyms, osyms, ssyms, true, true);
|
D | compile.h | 36 const fst::SymbolTable *isyms; member 46 const string &fst_type, const fst::SymbolTable *isyms, 52 isyms(isyms), osyms(osyms), ssyms(ssyms), accep(accep), ikeep(ikeep), in istrm() 63 FstCompiler<Arc> fstcompiler(args->istrm, args->source, args->isyms, in CompileFst() 84 const SymbolTable *isyms,
|
D | draw.h | 35 const SymbolTable *isyms; member 53 const SymbolTable *isyms, in FstDrawerArgs() 69 fst(fst), isyms(isyms), osyms(osyms), ssyms(ssyms), accep(accep), in FstDrawerArgs() 81 FstDrawer<Arc> fstdrawer(fst, args->isyms, args->osyms, args->ssyms, in DrawFst() 91 const SymbolTable *isyms,
|
D | compile-impl.h | 55 const SymbolTable *isyms, const SymbolTable *osyms, 59 isyms_(isyms), osyms_(osyms), ssyms_(ssyms), 124 fst_.SetInputSymbols(isyms);
|
D | print-impl.h | 46 const SymbolTable *isyms, in FstPrinter() argument 51 : fst_(fst), isyms_(isyms), osyms_(osyms), ssyms_(ssyms), in FstPrinter()
|
D | draw-impl.h | 44 const SymbolTable *isyms, in FstDrawer() argument 58 : fst_(fst), isyms_(isyms), osyms_(osyms), ssyms_(ssyms), in FstDrawer()
|
/external/openfst/src/bin/ |
D | fstprint.cc | 71 const SymbolTable *isyms = 0, *osyms = 0, *ssyms = 0; in main() local 74 isyms = SymbolTable::ReadText(FLAGS_isymbols, FLAGS_allow_negative_labels); in main() 75 if (!isyms) exit(1); in main() 88 if (!isyms && !FLAGS_numeric) in main() 89 isyms = fst->InputSymbols(); in main() 93 s::PrintFst(*fst, *ostrm, dest, isyms, osyms, ssyms, in main() 96 if (isyms && !FLAGS_save_isymbols.empty()) in main() 97 isyms->WriteText(FLAGS_save_isymbols); in main()
|
D | fstdraw.cc | 80 const SymbolTable *isyms = 0, *osyms = 0, *ssyms = 0; in main() local 83 isyms = SymbolTable::ReadText(FLAGS_isymbols, FLAGS_allow_negative_labels); in main() 84 if (!isyms) exit(1); in main() 97 if (!isyms && !FLAGS_numeric) in main() 98 isyms = fst->InputSymbols(); in main() 102 s::DrawFst(*fst, isyms, osyms, ssyms, FLAGS_acceptor, in main() 109 if (isyms && !FLAGS_save_isymbols.empty()) in main() 110 isyms->WriteText(FLAGS_save_isymbols); in main()
|
D | fstsymbols.cc | 64 const SymbolTable *isyms = fst->InputSymbols(); in main() local 65 if (isyms) { in main() 66 isyms->WriteText(FLAGS_save_isymbols); in main() 98 SymbolTable *isyms = RelabelSymbolTable(fst->InputSymbols(), ipairs); in main() local 99 fst->SetInputSymbols(isyms); in main() 100 delete isyms; in main()
|
D | fstcompile.cc | 64 const SymbolTable *isyms = 0, *osyms = 0, *ssyms = 0; in main() local 67 isyms = SymbolTable::ReadText(FLAGS_isymbols, FLAGS_allow_negative_labels); in main() 68 if (!isyms) exit(1); in main() 84 isyms, osyms, ssyms, in main()
|
/external/srec/tools/grxmlcompile/ |
D | fst-io.h | 49 const SymbolTable *isyms, in FstPrinter() argument 53 : fst_(fst), isyms_(isyms), osyms_(osyms), ssyms_(ssyms), in FstPrinter() 167 const SymbolTable *isyms = 0, *osyms = 0, *ssyms = 0; 170 isyms = SymbolTable::ReadText(FLAGS_isymbols); 171 if (!isyms) exit(1); 184 if (!isyms && !FLAGS_numeric) 185 isyms = fst->InputSymbols(); 189 FstPrinter<Arc> fstprinter(*fst, isyms, osyms, ssyms, FLAGS_acceptor); 192 if (isyms && !FLAGS_save_isymbols.empty()) 193 isyms->WriteText(FLAGS_save_isymbols); [all …]
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
D | verify.h | 35 const SymbolTable *isyms = fst.InputSymbols(); in Verify() local 66 } else if (isyms && isyms->Find(arc.ilabel) == "") { in Verify() 70 << isyms->Name() << "\""; in Verify()
|
D | fst.h | 439 void SetInputSymbols(const SymbolTable* isyms) { in SetInputSymbols() argument 441 isymbols_ = isyms ? isyms->Copy() : 0; in SetInputSymbols()
|
D | mutable-fst.h | 64 virtual void SetInputSymbols(const SymbolTable* isyms) = 0;
|
D | vector-fst.h | 618 virtual void SetInputSymbols(const SymbolTable* isyms) { in SetInputSymbols() argument 620 impl_->SetInputSymbols(isyms); in SetInputSymbols()
|
/external/openfst/src/include/fst/ |
D | verify.h | 38 const SymbolTable *isyms = fst.InputSymbols(); 69 } else if (isyms && isyms->Find(arc.ilabel) == "") { 73 << isyms->Name() << "\"";
|
D | mutable-fst.h | 80 virtual void SetInputSymbols(const SymbolTable* isyms) = 0; 336 virtual void SetInputSymbols(const SymbolTable* isyms) { in SetInputSymbols() argument 338 GetImpl()->SetInputSymbols(isyms); in SetInputSymbols()
|
D | fst.h | 648 void SetInputSymbols(const SymbolTable* isyms) { in SetInputSymbols() argument 650 isymbols_ = isyms ? isyms->Copy() : 0; in SetInputSymbols()
|
/external/openfst/src/script/ |
D | print.cc | 27 const SymbolTable *isyms, in PrintFst() argument 31 FstPrinterArgs args(fst, isyms, osyms, ssyms, accept, show_weight_one, in PrintFst()
|
D | compile.cc | 28 const SymbolTable *isyms, in CompileFst() argument 32 FstCompileArgs args(istrm, source, dest, fst_type, isyms, osyms, ssyms, in CompileFst()
|
D | draw.cc | 27 const SymbolTable *isyms, in DrawFst() argument 43 FstDrawerArgs args(fst, isyms, osyms, ssyms, accep, title, width, in DrawFst()
|