Searched refs:Existed (Results 1 - 8 of 8) sorted by relevance

/external/llvm/lib/Support/
H A DToolOutputFile.cpp29 bool Existed; local
30 sys::fs::remove(Filename, Existed);
H A DLockFileManager.cpp114 bool Existed; local
115 sys::fs::remove(UniqueLockFileName.c_str(), Existed);
140 bool Existed;
141 sys::fs::remove(UniqueLockFileName.str(), Existed);
147 sys::fs::remove(LockFileName.str(), Existed);
166 bool Existed;
167 sys::fs::remove(LockFileName.str(), Existed);
168 sys::fs::remove(UniqueLockFileName.str(), Existed);
H A DFileOutputBuffer.cpp31 bool Existed; local
32 sys::fs::remove(Twine(TempPath), Existed); local
60 bool Existed; local
61 EC = sys::fs::remove(FilePath, Existed);
H A DGraphWriter.cpp90 bool Existed; local
91 sys::fs::remove(Filename, Existed);
/external/llvm/include/llvm/Support/
H A DFileSystem.h284 bool Existed; local
285 return create_directories(Path, Existed);
299 bool Existed; local
300 return create_directory(Path, Existed);
338 bool Existed; local
339 return remove(Path, Existed);
/external/llvm/lib/Support/Unix/
H A DPath.inc168 bool Existed;
169 error_code EC = sys::fs::create_directory(ResultPath.begin(), Existed);
172 if (Existed)
/external/clang/lib/Frontend/
H A DCompilerInstance.cpp1085 bool Existed; local
1086 if (llvm::sys::fs::remove(File->path(), Existed) || !Existed) {
1094 bool Existed; local
1095 llvm::sys::fs::remove(Dir->path(), Existed);
1185 bool Existed; local
1186 llvm::sys::fs::remove(ModuleFileName, Existed);
/external/llvm/lib/Support/Windows/
H A DSignals.inc320 bool Existed;
321 llvm::sys::fs::remove(FilesToRemove->back(), Existed);

Completed in 167 milliseconds