Lines Matching refs:URL
28 StringRef URL(SVN_REPOSITORY); in getClangRepositoryPath()
30 StringRef URL(""); in getClangRepositoryPath()
36 if (URL.empty()) { in getClangRepositoryPath()
37 URL = SVNRepository.slice(SVNRepository.find(':'), in getClangRepositoryPath()
42 URL = URL.slice(0, URL.find("/src/tools/clang")); in getClangRepositoryPath()
45 size_t Start = URL.find("cfe/"); in getClangRepositoryPath()
47 URL = URL.substr(Start + 4); in getClangRepositoryPath()
49 return URL; in getClangRepositoryPath()
55 StringRef URL(LLVM_REPOSITORY); in getLLVMRepositoryPath() local
57 StringRef URL(""); in getLLVMRepositoryPath()
63 size_t Start = URL.find("llvm/"); in getLLVMRepositoryPath()
65 URL = URL.substr(Start); in getLLVMRepositoryPath()
67 return URL; in getLLVMRepositoryPath()