Searched defs:ostrm (Results 1 - 10 of 10) sorted by relevance

/external/openfst/src/script/
H A Dprint.cc26 void PrintFst(const FstClass &fst, ostream &ostrm, const string &dest, argument
32 &ostrm, dest);
H A Ddraw.cc41 ostream *ostrm,
45 fontsize, precision, show_weight_one, ostrm, dest);
26 DrawFst(const FstClass &fst, const SymbolTable *isyms, const SymbolTable *osyms, const SymbolTable *ssyms, bool accep, const string &title, float width, float height, bool portrait, bool vertical, float ranksep, float nodesep, int fontsize, int precision, bool show_weight_one, ostream *ostrm, const string &dest) argument
/external/openfst/src/include/fst/script/
H A Dprint.h38 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,
41 FstPrinterArgs(const FstClass &fst, const SymbolTable *isyms, const SymbolTable *osyms, const SymbolTable *ssyms, bool accept, bool show_weight_one, ostream *ostrm, const string &dest) argument
H A Ddraw.h49 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,
52 FstDrawerArgs(const FstClass &fst, const SymbolTable *isyms, const SymbolTable *osyms, const SymbolTable *ssyms, bool accep, const string &title, float width, float height, bool portrait, bool vertical, float ranksep, float nodesep, int fontsize, int precision, bool show_weight_one, ostream *ostrm, const string &dest) argument
H A Dprint-impl.h56 void Print(ostream *ostrm, const string &dest) { argument
57 ostrm_ = ostrm;
/external/openfst/src/include/fst/
H A Dstring.h222 bool PrintLabel(Label lab, ostream& ostrm) { argument
231 ostrm << symbol;
233 ostrm << lab;
H A Dlabel-reachable.h85 bool Write(ostream &ostrm) { argument
86 WriteType(ostrm, reach_input_);
87 WriteType(ostrm, keep_relabel_data_);
89 WriteType(ostrm, label2index_);
90 WriteType(ostrm, FinalLabel());
91 WriteType(ostrm, isets_);
H A Dfst.h929 ostringstream ostrm; local
930 fst.Write(ostrm, FstWriteOptions("FstToString"));
931 *result = ostrm.str();
/external/srec/tools/grxmlcompile/
H A Dfst-io.h57 void Print(ostream *ostrm, const string &dest) { argument
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;
H A Dgrxmlcompile.cpp915 ostream* ostrm = new ofstream( pclgFilename.c_str(), ios_base::out); local
919 printer.Print( ostrm, pclgFilename);
920 delete ostrm;

Completed in 163 milliseconds