Home
last modified time | relevance | path

Searched refs:configStr (Results 1 – 2 of 2) sorted by relevance

/third_party/glslang/StandAlone/
DResourceLimits.cpp285 std::string configStr(config); in DecodeResourceLimits() local
287 while ((pos = configStr.find_first_not_of(delims, pos)) != std::string::npos) { in DecodeResourceLimits()
289 const size_t token_e = configStr.find_first_of(delims, token_s); in DecodeResourceLimits()
290 const size_t value_s = configStr.find_first_not_of(delims, token_e); in DecodeResourceLimits()
291 const size_t value_e = configStr.find_first_of(delims, value_s); in DecodeResourceLimits()
295 const std::string tokenStr = configStr.substr(token_s, token_e-token_s); in DecodeResourceLimits()
296 const std::string valueStr = configStr.substr(value_s, value_e-value_s); in DecodeResourceLimits()
/third_party/flutter/skia/third_party/externals/angle2/src/tests/test_utils/
DANGLETest.cpp317 std::string configStr = strstr.str(); in RunSeparateProcessesForEachConfig() local
320 childArgs.push_back(configStr.c_str()); in RunSeparateProcessesForEachConfig()