Lines Matching defs:string
304 /** Replace first occurance of <token> with <text> in <string> starting at <search_posistion>
306 * @param token Token string
309 * @param string String to work on
312 std::string& string)
316 const size_t token_position = string.find(token, search_position);
318 string.replace(token_position, token_length, text, text_length);
547 const std::string& fs = getFragmentShader();
548 const std::string& vs = getVertexShader(test_case.m_destination_type, test_case.m_source_type);
584 std::string GPUShader5ImplicitConversionsTest::getVertexShader(const glw::GLchar* destination_type,
618 std::string vs_body = vs_body_template;
694 std::string GPUShader5ImplicitConversionsTest::getFragmentShader()
707 std::string fs_body = fs_body_template;
1078 const std::string& vs = getVertexShader(test_case);
1113 std::string GPUShader5FloatEncodingTest::getVertexShader(const testCase& test_case) const
1145 std::string vs_body = vs_body_template;