Lines Matching refs:oss
103 std::ostringstream oss; \
104 oss << "Aborting in " << __FILE__ << ", line " << __LINE__ << std::endl; \
105 throw std::runtime_error(oss.str()); \
109 std::ostringstream oss; \
110 oss << (msg) << "in " << __FILE__ << ", line " << __LINE__ << std::endl; \
111 throw std::runtime_error(oss.str()); \
116 std::ostringstream oss; \
117 oss << "Assertion failed (" #condition ")\nin "; \
118 oss << __FILE__ << ", line " << __LINE__ << std::endl; \
119 throw std::runtime_error(oss.str()); \