Searched refs:Exists (Results 1 - 25 of 44) sorted by relevance

12

/freebsd-10.0-release/contrib/llvm/lib/Support/
H A DLockFileManager.cpp32 bool Exists = false; local
33 if (sys::fs::exists(LockFileName, Exists) || !Exists)
190 bool Exists = false; local
196 if (!sys::fs::exists(LockFileName.str(), Exists) && !Exists) {
199 Exists = false;
206 if (!sys::fs::exists(FileName.str(), Exists) && Exists) {
/freebsd-10.0-release/contrib/llvm/tools/llvm-ranlib/
H A Dllvm-ranlib.cpp73 bool Exists; local
74 if (llvm::sys::fs::exists(ArchivePath.str(), Exists) || !Exists) {
/freebsd-10.0-release/contrib/bmake/mk/
H A Dsubdir.mk28 @Exists() { test -f $$1; }; \
31 if Exists ${.CURDIR}/$${entry}.${MACHINE}/[mM]akefile; then \
33 elif Exists ${.CURDIR}/$${entry}/[mM]akefile; then \
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/API/
H A DSBFileSpec.cpp68 SBFileSpec::Exists () const function in class:SBFileSpec
72 bool result = m_opaque_ap->Exists();
75 log->Printf ("SBFileSpec(%p)::Exists () => %s", m_opaque_ap.get(), (result ? "true" : "false"));
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Host/common/
H A DSymbols.cpp73 if (!dirspec.Exists() || !dirspec.IsDirectory())
93 if (file_spec.Exists())
H A DFileSpec.cpp541 FileSpec::Exists () const function in class:FileSpec
567 if (Exists())
574 if (tmp_file.Exists())
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBFileSpec.h37 Exists () const;
/freebsd-10.0-release/contrib/llvm/lib/Support/Windows/
H A DPath.inc693 bool Exists;
694 if (fs::exists(path, Exists) || !Exists)
868 bool Exists;
869 if (reuse_current && (fs::exists(path, Exists) || !Exists))
896 } while (!fs::exists(path, Exists) && Exists);
H A DPathV2.inc629 bool Exists;
630 if (error_code ec = exists(Twine(dir_to_create), Exists)) return ec;
631 if (!Exists) {
/freebsd-10.0-release/contrib/llvm/lib/Archive/
H A DArchive.cpp71 bool Exists; local
72 if (sys::fs::exists(newFile.str(), Exists) || !Exists) {
H A DArchiveWriter.cpp161 bool Exists; local
162 if (sys::fs::exists(filePath.str(), Exists) || !Exists) {
/freebsd-10.0-release/contrib/llvm/tools/llvm-ar/
H A Dllvm-ar.cpp329 bool Exists; local
330 if (sys::fs::exists(aPath.str(), Exists) || !Exists)
734 bool Exists; local
735 if (llvm::sys::fs::exists(ArchivePath.str(), Exists) || !Exists) {
/freebsd-10.0-release/contrib/llvm/lib/Support/Unix/
H A DPathV2.inc440 bool Exists;
441 if (error_code ec = exists(Twine(dir_to_create), Exists)) return ec;
442 if (!Exists) {
H A DProgram.inc366 bool Exists;
367 if (result == 127 && !llvm::sys::fs::exists(path.str(), Exists) && Exists)
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Host/
H A DFileSpec.h264 Exists () const;
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Core/
H A DFileSpecList.cpp193 if (path_spec.Exists ())
H A DSourceManager.cpp88 if (!file_sp || !file_sp->GetFileSpec().Exists())
393 if (!m_file_spec.Exists())
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/
H A DPlatformFreeBSD.cpp173 if (!resolved_exe_file.Exists())
179 if (!resolved_exe_file.Exists())
182 if (resolved_exe_file.Exists())
206 if (resolved_exe_file.Exists()) {
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Driver/
H A DToolChains.cpp251 bool Exists; local
252 if (AlwaysLink || (!llvm::sys::fs::exists(P.str(), Exists) && Exists))
379 bool Exists; local
380 if (llvm::sys::fs::exists(A->getValue(), Exists) || !Exists)
541 bool Exists; local
548 if (llvm::sys::fs::exists(P.str(), Exists) || !Exists) {
551 if (!llvm::sys::fs::exists(P.str(), Exists)
595 bool Exists; local
[all...]
H A DDriver.cpp1537 bool Exists; local
1538 if (!llvm::sys::fs::exists(P.str(), Exists) && Exists)
1544 bool Exists; local
1545 if (!llvm::sys::fs::exists(P.str(), Exists) && Exists)
1558 bool Exists; local
1559 if (!llvm::sys::fs::exists(P.str(), Exists) && Exists)
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp534 bool debugserver_exists = debugserver_file_spec.Exists();
542 debugserver_exists = debugserver_file_spec.Exists();
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Target/
H A DPlatform.cpp483 if (exe_file.Exists())
526 if (sym_spec.GetSymbolFileSpec().Exists())
H A DTargetList.cpp223 if (!file.Exists() && user_exe_path && user_exe_path[0] == '~')
259 if (cwd_file.Exists())
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Symbol/
H A DObjectFile.cpp51 const bool file_exists = file->Exists();
585 if (must_exist && !archive_file.Exists())
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/
H A DOperatingSystemPython.cpp63 if (python_os_plugin_spec && python_os_plugin_spec.Exists())

Completed in 149 milliseconds

12