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

  /external/openfst/src/extensions/far/
compile-strings.cc 26 ifstream istrm(filename);
27 istrm.seekg(0);
30 while (getline(istrm, s))
32 istrm.seekg(0);
  /external/openfst/src/bin/
fstcompile.cc 55 istream *istrm = &std::cin; local
58 istrm = new fst::ifstream(argv[1]);
59 if (!*istrm) {
83 s::CompileFst(*istrm, source, dest, FLAGS_fst_type, FLAGS_arc_type,
88 if (istrm != &std::cin)
89 delete istrm;
  /external/openfst/src/include/fst/script/
compile.h 32 fst::istream &istrm; member in struct:fst::script::FstCompileArgs
45 FstCompileArgs(istream &istrm, const string &source, const string &dest,
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,
compile-impl.h 54 FstCompiler(istream &istrm, const string &source,
63 while (istrm.getline(line, kLineLen)) {
  /external/openfst/src/script/
compile.cc 26 void CompileFst(istream &istrm, const string &source, const string &dest,
32 FstCompileArgs args(istrm, source, dest, fst_type, isyms, osyms, ssyms,
  /external/valgrind/main/none/tests/amd64/
pcmpxstrx64.stdout.exp 5 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 $0x0A: xmm0 000000000000000000000000000000ff rcx 5555555555555555 flags 0000088
    [all...]
  /external/openfst/src/include/fst/extensions/far/
create.h 52 ifstream istrm(in_fnames[i].c_str());
54 while (getline(istrm, str))
compile-strings.h 51 StringReader(istream &istrm,
58 : nline_(0), strm_(istrm), source_(source), entry_type_(entry_type),
202 ifstream istrm(in_fnames[i].c_str());
204 while (getline(istrm, str))
215 ifstream istrm(inputs[i].c_str());
218 istrm, inputs[i], entry_type, token_type,
  /external/openfst/src/include/fst/
add-on.h 47 static NullAddOn *Read(istream &istrm) {
87 static AddOnPair<A1, A2> *Read(istream &istrm) {
90 ReadType(istrm, &have_addon1);
92 a1 = A1::Read(istrm);
96 ReadType(istrm, &have_addon2);
98 a2 = A2::Read(istrm);
label-reachable.h 72 static LabelReachableData<L> *Read(istream &istrm) {
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_);
fst.h 936 istringstream istrm(s);
937 return Fst<A>::Read(istrm, FstReadOptions("StringToFst"));
compact-fst.h     [all...]
  /external/srec/tools/grxmlcompile/
fst-io.h 150 int PrintMain(int argc, char **argv, istream &istrm,
152 Fst<Arc> *fst = Fst<Arc>::Read(istrm, opts);
212 FstReader(istream &istrm, const string &source,
220 while (istrm.getline(line, kLineLen)) {
370 istream *istrm = &std::cin;
373 istrm = new ifstream(ifilename);
374 if (!*istrm) {
396 FstReader<Arc> fstreader(*istrm, ifilename, isyms, osyms, ssyms,
406 if (istrm != &std::cin)
407 delete istrm;
    [all...]
grxmlcompile.cpp 771 std::ifstream istrm(ptxtFilename.c_str());
772 if(!istrm) {
778 fst::FstReader<fst::StdArc> reader( istrm, ptxtFilename, word_syms, prsr_syms,
    [all...]

Completed in 5492 milliseconds