Home
last modified time | relevance | path

Searched refs:token_position (Results 1 – 12 of 12) sorted by relevance

/external/deqp/external/openglcts/modules/gl/
Dgl3cCullDistanceTests.cpp819 std::size_t token_position = std::string::npos; in iterate() local
901 while ((token_position = current_body.body_ptr->find(current_pair.token)) != std::string::npos) in iterate()
903 … current_body.body_ptr->replace(token_position, strlen(current_pair.token), current_pair.value); in iterate()
3130 std::size_t token_position = std::string::npos; in iterate() local
3151 …while ((token_position = vs_body_string.find(token_n_gl_clipdistance_entries)) != std::string::npo… in iterate()
3153 vs_body_string = vs_body_string.replace(token_position, strlen(token_n_gl_clipdistance_entries), in iterate()
3157 …while ((token_position = vs_body_string.find(token_n_gl_culldistance_entries)) != std::string::npo… in iterate()
3159 vs_body_string = vs_body_string.replace(token_position, strlen(token_n_gl_clipdistance_entries), in iterate()
3163 while ((token_position = vs_body_string.find(token_insert_static_writes)) != std::string::npos) in iterate()
3165 vs_body_string = vs_body_string.replace(token_position, strlen(token_insert_static_writes), in iterate()
Dgl4cStencilTexturingTests.cpp380 const size_t token_position = string.find(token, search_position); in replaceToken() local
383 if (std::string::npos == token_position) in replaceToken()
392 string.replace(token_position, token_length, text, text_length); in replaceToken()
394 search_position = token_position + text_length; in replaceToken()
Dgl3cGPUShader5Tests.cpp317 const size_t token_position = string.find(token, search_position); in replaceToken() local
319 string.replace(token_position, token_length, text, text_length); in replaceToken()
321 search_position = token_position + text_length; in replaceToken()
Dgl4cTextureViewTests.cpp6824 std::size_t token_position = std::string::npos; in initProgramObject() local
6827 while ((token_position = vs_body.find(token_texture_data_type)) != std::string::npos) in initProgramObject()
6829 vs_body.replace(token_position, strlen(token_texture_data_type), texture_sampler_data_type_glsl); in initProgramObject()
6832 while ((token_position = vs_body.find(token_texture_sampler)) != std::string::npos) in initProgramObject()
6834 vs_body.replace(token_position, strlen(token_texture_sampler), texture_sampler_glsl); in initProgramObject()
6837 while ((token_position = vs_body.find(token_texture_swizzle)) != std::string::npos) in initProgramObject()
6839 vs_body.replace(token_position, strlen(token_texture_swizzle), texture_swizzle_glsl); in initProgramObject()
6842 while ((token_position = vs_body.find(token_view_data_type)) != std::string::npos) in initProgramObject()
6844 vs_body.replace(token_position, strlen(token_view_data_type), view_sampler_data_type_glsl); in initProgramObject()
6847 while ((token_position = vs_body.find(token_view_sampler)) != std::string::npos) in initProgramObject()
[all …]
Dgl4cSparseTexture2Tests.cpp272 size_t token_position; in replaceToken() local
273 while ((token_position = string.find(token, 0)) != std::string::npos) in replaceToken()
275 string.replace(token_position, token_length, text, text_length); in replaceToken()
Dgl4cGlSpirvTests.cpp501 size_t token_position; in replaceToken() local
502 while ((token_position = string.find(token, 0)) != std::string::npos) in replaceToken()
504 string.replace(token_position, token_length, text, text_length); in replaceToken()
Dgl3cTextureSwizzleTests.cpp2158 const size_t token_position = string.find(token, search_position); in replaceToken() local
2160 string.replace(token_position, token_length, text, text_length); in replaceToken()
2162 search_position = token_position + text_length; in replaceToken()
Dgl4cShadingLanguage420PackTests.cpp1414 const size_t token_position = string.find(token, search_position); in replaceToken() local
1416 string.replace(token_position, token_length, text, text_length); in replaceToken()
1418 search_position = token_position + text_length; in replaceToken()
1436 const size_t token_position = string.find(token, search_position); in replaceAllTokens() local
1438 if (std::string::npos == token_position) in replaceAllTokens()
1443 search_position = token_position + text_length; in replaceAllTokens()
1445 string.replace(token_position, token_length, text, text_length); in replaceAllTokens()
Dgl4cMultiBindTests.cpp1601 const size_t token_position = string.find(token, search_position); in replaceToken() local
1603 string.replace(token_position, token_length, text, text_length); in replaceToken()
1605 search_position = token_position + text_length; in replaceToken()
Dgl4cEnhancedLayoutsTests.cpp1526 const size_t token_position = string.find(token, search_position); in replaceToken() local
1529 if (std::string::npos == token_position) in replaceToken()
1538 string.replace(token_position, token_length, text, text_length); in replaceToken()
1540 search_position = token_position + text_length; in replaceToken()
1558 const size_t token_position = string.find(token, search_position); in replaceAllTokens() local
1560 if (std::string::npos == token_position) in replaceAllTokens()
1565 search_position = token_position + text_length; in replaceAllTokens()
1567 string.replace(token_position, token_length, text, text_length); in replaceAllTokens()
Dgl4cGPUShaderFP64Tests.cpp1571 const size_t token_position = string.find(token, search_position); in replaceToken() local
1573 string.replace(token_position, token_length, text, text_length); in replaceToken()
1575 search_position = token_position + text_length; in replaceToken()
/external/deqp/external/openglcts/modules/common/
DglcTextureFilterAnisotropicTests.cpp65 size_t token_position; in replaceToken() local
66 while ((token_position = str.find(token, 0)) != std::string::npos) in replaceToken()
68 str.replace(token_position, token_length, text, text_length); in replaceToken()