Lines Matching defs:str
258 * @param [in,out] str string to be edited
262 void CullDistance::Utilities::replaceAll(std::string& str, const std::string& from, const std::string& to)
264 for (size_t start_pos = str.find(from, 0); start_pos != std::string::npos; start_pos = str.find(from, start_pos))
266 str.replace(start_pos, from.length(), to);
286 return temp_sstream.str();
1680 array_setters = static_array_setters_sstream.str();
2973 return stream.str();
3078 n_gl_clipdistance_array_items_string = temp_sstream.str();
3086 n_gl_culldistance_array_items_string = temp_sstream.str();
3096 static_write_shader_body_part = temp_sstream.str();
3168 vs_body_string = vs_body_sstream.str();