Home | History | Annotate | Download | only in lib

Lines Matching refs:strm

46   istream &Read(istream &strm) {
47 return ReadType(strm, &value_);
50 ostream &Write(ostream &strm) const {
51 return WriteType(strm, value_);
85 inline ostream &operator<<(ostream &strm, const FloatWeight &w) {
87 return strm << "Infinity";
89 return strm << "-Infinity";
91 return strm << "BadFloat";
93 return strm << w.Value();
96 inline istream &operator>>(istream &strm, FloatWeight &w) {
98 strm >> s;
107 strm.clear(std::ios::badbit);
111 return strm;