Lines Matching refs:quoted
50 std::ostringstream quoted; in escape_xml() local
56 quoted << """; in escape_xml()
58 quoted << "&"; in escape_xml()
60 quoted << "<"; in escape_xml()
62 quoted << ">"; in escape_xml()
64 quoted << "'"; in escape_xml()
74 quoted << "&#" << static_cast< std::string::size_type >(*it) in escape_xml()
77 quoted << *it; in escape_xml()
80 return quoted.str(); in escape_xml()
93 std::ostringstream quoted; in quote() local
94 quoted << quote; in quote()
99 quoted << text.substr(start_pos, last_pos - start_pos) << '\\'; in quote()
103 quoted << text.substr(start_pos); in quote()
105 quoted << quote; in quote()
106 return quoted.str(); in quote()