Home | History | Annotate | Download | only in script

Lines Matching refs:strm

34   ifstream strm(filename.c_str());
35 if (!strm) {
45 while (strm.getline(line, kLineLen)) {
70 ostream *strm = &cout;
72 strm = new ofstream(filename.c_str());
73 if (!*strm) {
75 delete strm;
80 strm->precision(9);
82 *strm << s << "\t" << potential[s] << "\n";
84 if (!*strm)
87 bool ret = *strm;
88 if (strm != &cout)
89 delete strm;