Lines Matching refs:escaped
186 //// @param escaped the output string where to write the resulting
187 //// string that contains the pre-defined characters escaped as
191 std::string& escaped)
197 escaped += "<";
200 escaped += ">";
203 escaped += "&";
206 escaped += "'";
209 escaped += """;
212 escaped += *i;
228 //// characters escaped as predefined entitites.
244 //// @param escaped the output string where to write the resulting
245 //// string that contains the pre-defined characters escaped as
249 std::string& escaped)
255 escaped += "-";
258 escaped += *i;
270 //// characters escaped as predefined entitites.
289 /// @param escaped where to write the resulting un-escaped string.
292 std::string& escaped)
303 escaped += '<';
310 escaped += '>';
318 escaped += '&';
327 escaped += '\'';
336 escaped += '"';
341 escaped += str[i];
347 escaped += str[i];
363 /// @return escaped where to write the resulting un-escaped string.
377 /// @param escaped where to write the resulting un-escaped string.
380 std::string& escaped)
391 escaped += '-';
396 escaped += str[i];
407 /// @return escaped where to write the resulting un-escaped string.