Lines Matching refs:pos
31 size_t pos = str.find(delimiter);
32 while (pos != std::string::npos) {
33 std::string item = str.substr(start, pos - start);
35 start = pos + 1;
36 pos = str.find(delimiter, start);
47 size_t pos = normalizedImport.find(SLASH_TAG);
48 if (pos != std::string::npos) {
49 pkgName = normalizedImport.substr(0, pos);
52 pos = normalizedImport.find(SLASH_TAG, pos + 1);
53 if (pos != std::string::npos) {
54 pkgName = normalizedImport.substr(0, pos);