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

  /external/openfst/src/bin/
fstprint.cc 59 ostream *ostrm = &std::cout;
63 ostrm = new fst::ofstream(argv[2]);
64 if (!*ostrm) {
69 ostrm->precision(9);
93 s::PrintFst(*fst, *ostrm, dest, isyms, osyms, ssyms,
102 if (ostrm != &std::cout)
103 delete ostrm;
fstdraw.cc 68 ostream *ostrm = &std::cout;
72 ostrm = new fst::ofstream(argv[2]);
73 if (!*ostrm) {
78 ostrm->precision(FLAGS_precision);
107 FLAGS_show_weight_one, ostrm, dest);
115 if (ostrm != &std::cout)
116 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 49 ostream *ostrm; member in struct:fst::script::FstDrawerArgs
67 ostream *ostrm,
73 show_weight_one(show_weight_one), ostrm(ostrm), dest(dest) { }
87 fstdrawer.Draw(args->ostrm, args->dest);
105 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 108 ofstream ostrm(filename.c_str());
109 if (!ostrm) {
115 ostrm << str;
117 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 222 bool PrintLabel(Label lab, ostream& ostrm) {
231 ostrm << symbol;
233 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_);
fst.h 929 ostringstream ostrm; local
930 fst.Write(ostrm, FstWriteOptions("FstToString"));
931 *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 293 milliseconds