Searched defs:istrm (Results 1 - 8 of 8) sorted by relevance

/external/openfst/src/bin/
H A Dfstcompile.cc55 istream *istrm = &cin; local
58 istrm = new fst::ifstream(argv[1]);
59 if (!*istrm) {
86 s::CompileFst(*istrm, source, dest, FLAGS_fst_type, FLAGS_arc_type,
91 if (istrm != &cin)
92 delete istrm;
/external/openfst/src/script/
H A Dcompile.cc26 void CompileFst(istream &istrm, const string &source, const string &dest, argument
32 FstCompileArgs args(istrm, source, dest, fst_type, isyms, osyms, ssyms,
/external/openfst/src/include/fst/script/
H A Dcompile.h32 fst::istream &istrm; member in struct:fst::script::FstCompileArgs
45 FstCompileArgs(istream &istrm, const string &source, const string &dest, argument
51 istrm(istrm), source(source), dest(dest), fst_type(fst_type),
63 FstCompiler<Arc> fstcompiler(args->istrm, args->source, args->isyms,
82 void CompileFst(istream &istrm, const string &source, const string &dest,
H A Dcompile-impl.h55 FstCompiler(istream &istrm, const string &source, argument
64 while (istrm.getline(line, kLineLen)) {
/external/openfst/src/include/fst/
H A Dadd-on.h47 static NullAddOn *Read(istream &istrm) { argument
87 static AddOnPair<A1, A2> *Read(istream &istrm) { argument
90 ReadType(istrm, &have_addon1);
92 a1 = A1::Read(istrm);
96 ReadType(istrm, &have_addon2);
98 a2 = A2::Read(istrm);
H A Dlabel-reachable.h72 static LabelReachableData<L> *Read(istream &istrm) { argument
75 ReadType(istrm, &data->reach_input_);
76 ReadType(istrm, &data->keep_relabel_data_);
79 ReadType(istrm, &data->label2index_);
80 ReadType(istrm, &data->final_label_);
81 ReadType(istrm, &data->isets_);
H A Dcompact-fst.h1334 static UnweightedAcceptorCompactor *Read(istream &istrm) { argument
/external/openfst/src/include/fst/extensions/far/
H A Dcompile-strings.h51 StringReader(istream &istrm, argument
58 : nline_(0), strm_(istrm), source_(source), entry_type_(entry_type),
217 istream *istrm = in_fnames.empty() ? &cin : local
220 while (getline(*istrm, str))
223 delete istrm;
240 istream *istrm = inputs[i].empty() ? &cin : local
245 *istrm, inputs[i].empty() ? "stdin" : inputs[i],
269 if (!inputs[i].empty()) delete istrm;
295 delete istrm;

Completed in 1039 milliseconds