HomeSort by relevance Sort by last modified time
    Searched refs:isyms (Results 1 - 21 of 21) sorted by null

  /external/openfst/src/bin/
fstprint.cc 71 const SymbolTable *isyms = 0, *osyms = 0, *ssyms = 0; local
77 isyms = SymbolTable::ReadText(FLAGS_isymbols, opts);
78 if (!isyms) exit(1);
91 if (!isyms && !FLAGS_numeric)
92 isyms = fst->InputSymbols();
96 s::PrintFst(*fst, *ostrm, dest, isyms, osyms, ssyms,
99 if (isyms && !FLAGS_save_isymbols.empty())
100 isyms->WriteText(FLAGS_save_isymbols);
fstdraw.cc 78 const SymbolTable *isyms = 0, *osyms = 0, *ssyms = 0; local
84 isyms = SymbolTable::ReadText(FLAGS_isymbols, opts);
85 if (!isyms) exit(1);
98 if (!isyms && !FLAGS_numeric)
99 isyms = fst->InputSymbols();
103 s::DrawFst(*fst, isyms, osyms, ssyms, FLAGS_acceptor,
fstcompile.cc 64 const SymbolTable *isyms = 0, *osyms = 0, *ssyms = 0; local
70 isyms = SymbolTable::ReadText(FLAGS_isymbols, opts);
71 if (!isyms) exit(1);
87 isyms, osyms, ssyms,
fstsymbols.cc 64 const SymbolTable *isyms = fst->InputSymbols(); local
65 if (isyms) {
66 isyms->WriteText(FLAGS_save_isymbols);
99 SymbolTable *isyms = RelabelSymbolTable(fst->InputSymbols(), ipairs); local
100 fst->SetInputSymbols(isyms);
101 delete isyms;
  /external/openfst/src/include/fst/script/
print.h 33 const SymbolTable *isyms; member in struct:fst::script::FstPrinterArgs
42 const SymbolTable *isyms,
49 fst(fst), isyms(isyms), osyms(osyms), ssyms(ssyms), accept(accept),
57 fst::FstPrinter<Arc> fstprinter(fst, args->isyms, args->osyms,
64 const SymbolTable *isyms,
74 const SymbolTable *isyms = NULL,
77 fst::FstPrinter<Arc> fstprinter(fst, isyms, osyms, ssyms, true, true);
compile.h 36 const fst::SymbolTable *isyms; member in struct:fst::script::FstCompileArgs
46 const string &fst_type, const fst::SymbolTable *isyms,
52 isyms(isyms), osyms(osyms), ssyms(ssyms), accep(accep), ikeep(ikeep),
63 FstCompiler<Arc> fstcompiler(args->istrm, args->source, args->isyms,
84 const SymbolTable *isyms,
draw.h 36 const SymbolTable *isyms; member in struct:fst::script::FstDrawerArgs
54 const SymbolTable *isyms,
70 fst(fst), isyms(isyms), osyms(osyms), ssyms(ssyms), accep(accep),
82 FstDrawer<Arc> fstdrawer(fst, args->isyms, args->osyms, args->ssyms,
92 const SymbolTable *isyms,
print-impl.h 46 const SymbolTable *isyms,
51 : fst_(fst), isyms_(isyms), osyms_(osyms), ssyms_(ssyms),
compile-impl.h 56 const SymbolTable *isyms, const SymbolTable *osyms,
60 isyms_(isyms), osyms_(osyms), ssyms_(ssyms),
125 fst_.SetInputSymbols(isyms);
draw-impl.h 44 const SymbolTable *isyms,
58 : fst_(fst), isyms_(isyms), osyms_(osyms), ssyms_(ssyms),
  /external/openfst/src/script/
compile.cc 28 const SymbolTable *isyms,
32 FstCompileArgs args(istrm, source, dest, fst_type, isyms, osyms, ssyms,
draw.cc 27 const SymbolTable *isyms,
43 FstDrawerArgs args(fst, isyms, osyms, ssyms, accep, title, width,
print.cc 27 const SymbolTable *isyms,
31 FstPrinterArgs args(fst, isyms, osyms, ssyms, accept, show_weight_one,
  /external/srec/tools/grxmlcompile/
fst-io.h 49 const SymbolTable *isyms,
53 : fst_(fst), isyms_(isyms), osyms_(osyms), ssyms_(ssyms),
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/openfst/src/include/fst/
verify.h 38 const SymbolTable *isyms = fst.InputSymbols(); local
69 } else if (isyms && isyms->Find(arc.ilabel) == "") {
73 << isyms->Name() << "\"";
mutable-fst.h 80 virtual void SetInputSymbols(const SymbolTable* isyms) = 0;
336 virtual void SetInputSymbols(const SymbolTable* isyms) {
338 GetImpl()->SetInputSymbols(isyms);
fst.h 654 void SetInputSymbols(const SymbolTable* isyms) {
656 isymbols_ = isyms ? isyms->Copy() : 0;
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
verify.h 35 const SymbolTable *isyms = fst.InputSymbols(); local
66 } else if (isyms && isyms->Find(arc.ilabel) == "") {
70 << isyms->Name() << "\"";
fst.h 439 void SetInputSymbols(const SymbolTable* isyms) {
441 isymbols_ = isyms ? isyms->Copy() : 0;
mutable-fst.h 64 virtual void SetInputSymbols(const SymbolTable* isyms) = 0;
vector-fst.h 618 virtual void SetInputSymbols(const SymbolTable* isyms) {
620 impl_->SetInputSymbols(isyms);

Completed in 208 milliseconds