Searched refs:istrm (Results 1 - 17 of 17) sorted by relevance

/external/openfst/src/extensions/far/
H A Dstrings.cc30 ifstream istrm(filename);
31 istrm.seekg(0);
34 while (getline(istrm, s))
36 istrm.seekg(0);
/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/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/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/valgrind/main/none/tests/amd64/
H A Dpcmpxstrx64.stdout.exp5 istrm $0x4A: xmm0 000000000000000000ffffffffffffff rcx 5555555555555555 flags 00000881
6 istrm $0x0A: xmm0 0000000000000000000000000000007f rcx 5555555555555555 flags 00000881
15 istrm $0x4A: xmm0 ffffffffffffffffff00000000000000 rcx 5555555555555555 flags 000000c1
16 istrm $0x0A: xmm0 0000000000000000000000000000ff80 rcx 5555555555555555 flags 000000c1
25 istrm $0x4A: xmm0 0000000000000000ffffffffffffffff rcx 5555555555555555 flags 00000881
26 istrm $0x0A: xmm0 000000000000000000000000000000ff rcx 5555555555555555 flags 00000881
35 istrm $0x4A: xmm0 0000000000000000ffffffffffffffff rcx 5555555555555555 flags 00000881
36 istrm $0x0A: xmm0 000000000000000000000000000000ff rcx 5555555555555555 flags 00000881
45 istrm $0x4A: xmm0 0000000000000000ffffffffffffffff rcx 5555555555555555 flags 00000881
46 istrm
[all...]
H A Dpcmpxstrx64w.stdout.exp5 istrm $0x4B: xmm0 00000000000000000000ffffffffffff rcx 5555555555555555 flags 00000881
6 istrm $0x0B: xmm0 00000000000000000000000000000007 rcx 5555555555555555 flags 00000881
15 istrm $0x4B: xmm0 ffffffffffffffffffff000000000000 rcx 5555555555555555 flags 000000c1
16 istrm $0x0B: xmm0 000000000000000000000000000000f8 rcx 5555555555555555 flags 000000c1
25 istrm $0x4B: xmm0 0000000000000000ffffffffffffffff rcx 5555555555555555 flags 00000881
26 istrm $0x0B: xmm0 0000000000000000000000000000000f rcx 5555555555555555 flags 00000881
35 istrm $0x4B: xmm0 0000000000000000ffffffffffffffff rcx 5555555555555555 flags 00000881
36 istrm $0x0B: xmm0 0000000000000000000000000000000f rcx 5555555555555555 flags 00000881
45 istrm $0x4B: xmm0 0000000000000000ffffffffffffffff rcx 5555555555555555 flags 00000881
46 istrm
[all...]
/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;
H A Dcreate.h52 ifstream istrm(in_fnames[i].c_str());
54 while (getline(istrm, str))
H A Dfar.h66 ifstream istrm(filename.c_str());
67 fsthdr.Read(istrm, filename);
/external/srec/tools/grxmlcompile/
H A Dfst-io.h150 int PrintMain(int argc, char **argv, istream &istrm,
152 Fst<Arc> *fst = Fst<Arc>::Read(istrm, opts);
212 FstReader(istream &istrm, const string &source, argument
220 while (istrm.getline(line, kLineLen)) {
371 istream *istrm = &std::cin;
374 istrm = new ifstream(ifilename);
375 if (!*istrm) {
397 FstReader<Arc> fstreader(*istrm, ifilename, isyms, osyms, ssyms,
407 if (istrm != &std::cin)
408 delete istrm;
[all...]
H A Dgrxmlcompile.cpp771 std::ifstream istrm(ptxtFilename.c_str());
772 if(!istrm) {
778 fst::FstReader<fst::StdArc> reader( istrm, ptxtFilename, word_syms, prsr_syms,
/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 Dsymbol-table.h529 istringstream istrm(s);
530 return SymbolTable::Read(istrm, SymbolTableReadOptions());
H A Dfst.h943 istringstream istrm(s);
944 return Fst<A>::Read(istrm, FstReadOptions("StringToFst"));
H A Dcompact-fst.h1334 static UnweightedAcceptorCompactor *Read(istream &istrm) { argument

Completed in 1883 milliseconds