Lines Matching full:ostr
136 ** \param ostr the destination output stream
141 operator<< (std::basic_ostream<YYChar>& ostr, const position& pos)
144 ostr << *pos.filename << ':';
145 return ostr << pos.line << '.' << pos.column;
274 ** \param ostr the destination output stream
281 operator<< (std::basic_ostream<YYChar>& ostr, const location& loc)
284 ostr << loc.begin;
288 ostr << '-' << last;
290 ostr << '-' << last.line << '.' << last.column;
292 ostr << '-' << last.column;
293 return ostr;