Lines Matching refs:path
98 const std::string path = uri.substr(kFileUriPrefixLength);
101 for (auto iter = path.begin(), end = path.end(); iter != end; ++iter) {
312 std::string UnderlinifyPath(std::string path) {
313 std::replace(path.begin(), path.end(), '-', '_');
314 std::replace(path.begin(), path.end(), '/', '_');
315 std::replace(path.begin(), path.end(), '\\', '_');
316 std::replace(path.begin(), path.end(), '.', '_');
317 transform(path.begin(), path.end(), path.begin(), ::toupper);
318 return path;