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

  /external/openfst/src/bin/
fstdraw.cc 66 ostream *ostrm = &cout;
70 ostrm = new fst::ofstream(argv[2]);
71 if (!*ostrm) {
76 ostrm->precision(FLAGS_precision);
108 FLAGS_show_weight_one, ostrm, dest);
110 if (ostrm != &cout)
111 delete ostrm;
fstprint.cc 59 ostream *ostrm = &cout;
63 ostrm = new fst::ofstream(argv[2]);
64 if (!*ostrm) {
69 ostrm->precision(9);
96 s::PrintFst(*fst, *ostrm, dest, isyms, osyms, ssyms,
105 if (ostrm != &cout)
106 delete ostrm;
  /external/openfst/src/include/fst/script/
print.h 38 ostream *ostrm; member in struct:fst::script::FstPrinterArgs
47 ostream *ostrm,
50 show_weight_one(show_weight_one), ostrm(ostrm), dest(dest) { }
60 fstprinter.Print(args->ostrm, args->dest);
63 void PrintFst(const FstClass &fst, ostream &ostrm, const string &dest,
draw.h 50 ostream *ostrm; member in struct:fst::script::FstDrawerArgs
68 ostream *ostrm,
74 show_weight_one(show_weight_one), ostrm(ostrm), dest(dest) { }
88 fstdrawer.Draw(args->ostrm, args->dest);
106 ostream *ostrm,
print-impl.h 56 void Print(ostream *ostrm, const string &dest) {
57 ostrm_ = ostrm;
  /external/openfst/src/script/
draw.cc 41 ostream *ostrm,
45 fontsize, precision, show_weight_one, ostrm, dest);
print.cc 26 void PrintFst(const FstClass &fst, ostream &ostrm, const string &dest,
32 &ostrm, dest);
  /external/openfst/src/include/fst/extensions/far/
print-strings.h 119 ofstream ostrm(filename.c_str());
120 if (!ostrm) {
126 ostrm << str;
128 ostrm << "\n";
  /external/openfst/src/include/fst/
add-on.h 51 bool Write(ostream &ostrm) const { return true; }
108 bool Write(ostream &ostrm) const {
110 WriteType(ostrm, have_addon1);
112 a1_->Write(ostrm);
114 WriteType(ostrm, have_addon2);
116 a2_->Write(ostrm);
string.h 246 bool PrintLabel(Label lab, ostream& ostrm) {
255 ostrm << symbol;
257 ostrm << lab;
label-reachable.h 85 bool Write(ostream &ostrm) {
86 WriteType(ostrm, reach_input_);
87 WriteType(ostrm, keep_relabel_data_);
89 WriteType(ostrm, label2index_);
90 WriteType(ostrm, FinalLabel());
91 WriteType(ostrm, isets_);
symbol-table.h 523 ostringstream ostrm; local
524 table->Write(ostrm);
525 *result = ostrm.str();
fst.h 936 ostringstream ostrm; local
937 fst.Write(ostrm, FstWriteOptions("FstToString"));
938 *result = ostrm.str();
  /external/srec/tools/grxmlcompile/
fst-io.h 57 void Print(ostream *ostrm, const string &dest) {
58 ostrm_ = ostrm;
156 ostream *ostrm = &std::cout;
159 ostrm = new ofstream(argv[2]);
160 if (!*ostrm) {
165 ostrm->precision(9);
190 fstprinter.Print(ostrm, dest);
198 if (ostrm != &std::cout)
199 delete ostrm;
grxmlcompile.cpp 915 ostream* ostrm = new ofstream( pclgFilename.c_str(), ios_base::out); local
    [all...]

Completed in 650 milliseconds