Home | History | Annotate | Download | only in data

Lines Matching refs:ostr

124    ** \param ostr the destination output stream
128 operator<< (std::ostream& ostr, const position& pos)
131 ostr << *pos.filename << ':';
132 return ostr << pos.line << '.' << pos.column;
229 ** \param ostr the destination output stream
234 inline std::ostream& operator<< (std::ostream& ostr, const location& loc)
237 ostr << loc.begin;
241 ostr << '-' << last;
243 ostr << '-' << last.line << '.' << last.column;
245 ostr << '-' << last.column;
246 return ostr;