Home | History | Annotate | Download | only in libclang

Lines Matching refs:Path

49   // Did we already compute the path?
56 char path[MAX_PATH];
59 GetModuleFileNameA((HINSTANCE)mbi.AllocationBase, path, MAX_PATH);
63 strcpy(w32path, path);
65 cygwin_conv_path(CCP_WIN_A_TO_POSIX, w32path, path, MAX_PATH);
67 cygwin_conv_to_full_posix_path(w32path, path);
71 llvm::sys::Path LibClangPath(path);
79 llvm::sys::Path LibClangPath(info.dli_fname);
93 static llvm::sys::Path GetTemporaryPath() {
94 // FIXME: This is lame; sys::Path should provide this function (in particular,
104 llvm::sys::Path P(TmpDir);
107 return llvm::sys::Path("");
118 std::vector<llvm::sys::Path> &TemporaryFiles) {
121 llvm::sys::Path SavedFile(GetTemporaryPath());