Lines Matching defs:found
146 size_t found = std::string::npos;
149 found = str.find_first_of(del, start);
150 result.push_back(str.substr(start, found - start));
151 if (found == std::string::npos) {
154 start = found + 1;
563 std::size_t found = dLog.find_last_of("/");
564 if (found == std::string::npos) {
568 std::string destPath = dLog.substr(0, found);
687 std::size_t found = filePath.find_last_of("/");
688 if (found == std::string::npos) {
692 return GetDirSize(filePath.substr(0, found));