Searched refs:pos (Results 1 – 3 of 3) sorted by relevance
135 std::size_t pos = std::string::npos; in checkTag() local137 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() local163 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()
600 const auto pos = component_name.find_last_of(" "); in GetComponentName() local601 if (pos != std::string::npos) { in GetComponentName()602 component_name = component_name.substr(pos + 1); in GetComponentName()
1272 size_t pre = 0; size_t pos = 0; in CallFunction() local1275 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()