Lines Matching refs:URL
32 StringRef URL(SVN_REPOSITORY); in getClangRepositoryPath()
34 StringRef URL(""); in getClangRepositoryPath()
40 if (URL.empty()) { in getClangRepositoryPath()
41 URL = SVNRepository.slice(SVNRepository.find(':'), in getClangRepositoryPath()
46 URL = URL.slice(0, URL.find("/src/tools/clang")); in getClangRepositoryPath()
49 size_t Start = URL.find("cfe/"); in getClangRepositoryPath()
51 URL = URL.substr(Start + 4); in getClangRepositoryPath()
53 return URL; in getClangRepositoryPath()
59 StringRef URL(LLVM_REPOSITORY); in getLLVMRepositoryPath() local
61 StringRef URL(""); in getLLVMRepositoryPath()
67 size_t Start = URL.find("llvm/"); in getLLVMRepositoryPath()
69 URL = URL.substr(Start); in getLLVMRepositoryPath()
71 return URL; in getLLVMRepositoryPath()