Searched refs:splitPos (Results 1 – 4 of 4) sorted by relevance
81 std::size_t splitPos = str.find(SPLIT); in Parse() local82 if (splitPos == std::string::npos) { in Parse()85 std::string className = str.substr(0, splitPos); in Parse()
388 std::size_t splitPos = std::string::npos; in GetRelativePath() local392 splitPos = temp.find_last_of("/\\"); in GetRelativePath()393 if (splitPos != std::string::npos) { in GetRelativePath()394 temp = temp.substr(0, splitPos - 1); in GetRelativePath()401 return sources.substr(splitPos); in GetRelativePath()
550 std::size_t splitPos = std::string::npos; in GetRelativePath() local554 splitPos = temp.find_last_of(splitStr); in GetRelativePath()555 if (splitPos != std::string::npos) { in GetRelativePath()556 temp = temp.substr(0, splitPos - 1); in GetRelativePath()563 return sources.substr(splitPos); in GetRelativePath()
56 std::size_t splitPos = str.find("#"); in Parse() local57 if (splitPos == std::string::npos) { in Parse()60 std::string strData = str.substr(0, splitPos); in Parse()