Home
last modified time | relevance | path

Searched refs:pos (Results 1 – 3 of 3) sorted by relevance

/test/vts-testcase/kernel/api/qtaguid/
DSocketTagUserSpace.cpp135 std::size_t pos = std::string::npos; in checkTag() local
137 pos = ctrl_data.find(buff); in checkTag()
138 if (pos != std::string::npos) break; in checkTag()
140 return pos != std::string::npos; in checkTag()
160 std::size_t pos = std::string::npos; in checkStats() local
163 pos = stats_data.find(buff); in checkStats()
164 if (pos != std::string::npos) { in checkStats()
166 std::string match_data = stats_data.substr(pos); in checkStats()
169 return pos != std::string::npos; in checkStats()
172 return pos != std::string::npos; in checkStats()
/test/vts/compilation_tools/vtsc/
DVtsCompilerUtils.cpp600 const auto pos = component_name.find_last_of(" "); in GetComponentName() local
601 if (pos != std::string::npos) { in GetComponentName()
602 component_name = component_name.substr(pos + 1); in GetComponentName()
/test/vts/compilation_tools/vtsc/test/golden/DRIVER/
DBar.driver.cpp1272 size_t pre = 0; size_t pos = 0; in CallFunction() local
1275 while((pos=file_name.find_first_of('/', pre)) != string::npos){ in CallFunction()
1276 dir = file_name.substr(0, pos++); in CallFunction()
1277 pre = pos; in CallFunction()