HomeSort by relevance Sort by last modified time
    Searched refs:Existed (Results 1 - 6 of 6) sorted by null

  /external/llvm/lib/Support/
ToolOutputFile.cpp 29 bool Existed;
30 sys::fs::remove(Filename, Existed);
LockFileManager.cpp 114 bool Existed;
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);
FileOutputBuffer.cpp 31 bool Existed;
32 sys::fs::remove(Twine(TempPath), Existed);
60 bool Existed;
61 EC = sys::fs::remove(FilePath, Existed);
GraphWriter.cpp 90 bool Existed;
91 sys::fs::remove(Filename, Existed);
  /external/llvm/include/llvm/Support/
FileSystem.h 276 /// @param existed Set to true if \a path already existed, false otherwise.
277 /// @returns errc::success if is_directory(path) and existed have been set,
279 error_code create_directories(const Twine &path, bool &existed);
282 /// directory existed or not.
284 bool Existed;
285 return create_directories(Path, Existed);
291 /// @param existed Set to true if \a path already existed, false otherwise.
292 /// @returns errc::success if is_directory(path) and existed have been set
    [all...]
  /external/clang/lib/Frontend/
CompilerInstance.cpp 430 bool existed; local
431 llvm::sys::fs::remove(it->TempFilename, existed);
443 bool existed; local
444 llvm::sys::fs::remove(it->TempFilename, existed);
    [all...]

Completed in 48 milliseconds