/freebsd/contrib/googletest/googlemock/test/ |
H A D | gmock-actions_test.cc | 265 EXPECT_TRUE(BuiltInDefaultValue<int*>::Exists()); in TEST() 266 EXPECT_TRUE(BuiltInDefaultValue<const char*>::Exists()); in TEST() 267 EXPECT_TRUE(BuiltInDefaultValue<void*>::Exists()); in TEST() 302 EXPECT_TRUE(BuiltInDefaultValue<unsigned char>::Exists()); in TEST() 303 EXPECT_TRUE(BuiltInDefaultValue<signed char>::Exists()); in TEST() 304 EXPECT_TRUE(BuiltInDefaultValue<char>::Exists()); in TEST() 306 EXPECT_TRUE(BuiltInDefaultValue<wchar_t>::Exists()); in TEST() 308 EXPECT_TRUE(BuiltInDefaultValue<unsigned short>::Exists()); // NOLINT in TEST() 309 EXPECT_TRUE(BuiltInDefaultValue<signed short>::Exists()); // NOLINT in TEST() 310 EXPECT_TRUE(BuiltInDefaultValue<short>::Exists()); // NOLINT in TEST() [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Host/common/ |
H A D | MonitoringProcessLauncher.cpp | 35 if (!fs.Exists(exe_spec)) in LaunchProcess() 38 if (!fs.Exists(exe_spec)) in LaunchProcess() 41 if (!fs.Exists(exe_spec)) { in LaunchProcess()
|
H A D | FileSystem.cpp | 137 bool FileSystem::Exists(const Twine &path) const { return m_fs->exists(path); } in Exists() function in FileSystem 139 bool FileSystem::Exists(const FileSpec &file_spec) const { in Exists() function in FileSystem 140 return file_spec && Exists(file_spec.GetPath()); in Exists() 239 if (Exists(absolute)) { in Resolve() 344 if (!Exists(result)) in ResolveExecutableLocation()
|
/freebsd/contrib/llvm-project/lldb/source/Symbol/ |
H A D | LocateSymbolFile.cpp |
|
H A D | LocateSymbolFileMacOSX.cpp |
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolLocator/DebugSymbols/ |
H A D | SymbolLocatorDebugSymbols.cpp | 186 if (FileSystem::Instance().Exists(module_spec.GetFileSpec())) { in LocateExecutableObjectFile() 236 if (FileSystem::Instance().Exists(exec_filespec)) { in LocateExecutableObjectFile() 408 if (FileSystem::Instance().Exists(dsym_directory)) { in LookForDsymNextToExecutablePath() 414 if (FileSystem::Instance().Exists(dsym_fspec) && in LookForDsymNextToExecutablePath() 430 if (FileSystem::Instance().Exists(dsym_fspec) && in LookForDsymNextToExecutablePath() 446 if (FileSystem::Instance().Exists(dsym_yaa_fspec)) { in LookForDsymNextToExecutablePath() 451 FileSystem::Instance().Exists(mutable_mod_spec.GetSymbolFileSpec())) { in LookForDsymNextToExecutablePath() 628 if (FileSystem::Instance().Exists(module_spec.GetFileSpec())) { in LocateMacOSXFilesUsingDebugSymbols() 678 if (FileSystem::Instance().Exists(exec_filespec)) { in LocateMacOSXFilesUsingDebugSymbols() 997 if (FileSystem::Instance().Exists(dsymForUUID_executable)) in GetDsymForUUIDExecutable() [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | DynamicLoader.cpp | 82 if (FileSystem::Instance().Exists(executable->GetFileSpec())) { in GetTargetExecutable() 243 if (FileSystem::Instance().Exists(module_spec.GetFileSpec()) && in LoadBinaryWithUUIDAndAddress() 244 FileSystem::Instance().Exists(module_spec.GetSymbolFileSpec())) { in LoadBinaryWithUUIDAndAddress() 254 if (FileSystem::Instance().Exists(module_spec.GetFileSpec())) { in LoadBinaryWithUUIDAndAddress() 263 if (!module_sp && FileSystem::Instance().Exists(module_spec.GetFileSpec())) in LoadBinaryWithUUIDAndAddress()
|
H A D | SourceManager.cpp | 57 if (!FileSystem::Instance().Exists(file_spec) && in resolve_tilde() 139 if (file_sp && !FileSystem::Instance().Exists(file_sp->GetFileSpec())) { in GetFile() 509 if (!FileSystem::Instance().Exists(m_file_spec)) { in CommonInitializer()
|
/freebsd/contrib/bmake/mk/ |
H A D | subdir.mk | 54 @Exists() { test -f $$1; }; \ 57 if ! Exists ${.CURDIR}/$$_dir/[mM]akefile; then \
|
/freebsd/contrib/llvm-project/lldb/source/API/ |
H A D | SBFileSpec.cpp | 86 bool SBFileSpec::Exists() const { in Exists() function in SBFileSpec 89 return FileSystem::Instance().Exists(*m_opaque_up); in Exists()
|
H A D | SBPlatform.cpp | 514 if (src.Exists()) { in Put() 536 if (src.Exists()) in Install()
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | ModuleCache.cpp | 135 if (FileSystem::Instance().Exists(sysroot_module_path_spec)) { in CreateHostSysRootModuleLink() 232 if (!FileSystem::Instance().Exists(module_file_path)) in Get() 260 if (FileSystem::Instance().Exists(symfile_spec)) in Get()
|
H A D | RemoteAwarePlatform.cpp | 41 if (!FileSystem::Instance().Exists(resolved_file_spec)) { in ResolveExecutable() 47 if (!FileSystem::Instance().Exists(resolved_file_spec)) in ResolveExecutable()
|
H A D | TargetList.cpp | 128 !FileSystem::Instance().Exists(module_spec.GetFileSpec())) in CreateTargetInternal() 274 if (!FileSystem::Instance().Exists(file) && user_exe_path.starts_with("~")) { in CreateTargetInternal() 299 if (FileSystem::Instance().Exists(cwd_file)) in CreateTargetInternal()
|
/freebsd/contrib/llvm-project/lldb/bindings/interface/ |
H A D | SBFileSpecExtensions.i | 14 exists = property(Exists, None, doc='''A read only property that returns a boolean value that indicates if the file exists.''')
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolLocator/Default/ |
H A D | SymbolLocatorDefault.cpp | 102 FileSystem::Instance().Exists(symbol_file_spec)) in LocateExecutableSymbolFile() 217 if (FileSystem::Instance().Exists(file_spec)) { in LocateExecutableSymbolFile()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/ |
H A D | FileSystem.h | 111 bool Exists(const FileSpec &file_spec) const; 112 bool Exists(const llvm::Twine &path) const;
|
/freebsd/contrib/googletest/googlemock/include/gmock/ |
H A D | gmock-actions.h | 203 static bool Exists() { return ::std::is_default_constructible<T>::value; } 216 static bool Exists() { return BuiltInDefaultValue<T>::Exists(); } 225 static bool Exists() { return true; } 235 static bool Exists() { return true; } \ 606 static bool Exists() { 607 return IsSet() || internal::BuiltInDefaultValue<T>::Exists(); 669 static bool Exists() { 670 return IsSet() || internal::BuiltInDefaultValue<T&>::Exists(); 690 static bool Exists() { return true; }
|
/freebsd/contrib/llvm-project/lldb/include/lldb/API/ |
H A D | SBFileSpec.h | 42 bool Exists() const;
|
/freebsd/contrib/llvm-project/lldb/tools/driver/ |
H A D | Driver.cpp | 131 if (file.Exists()) in AddInitialCommand() 212 if (!file.Exists()) { in ProcessArgs() 238 if (file.Exists()) { in ProcessArgs()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
H A D | CppModuleConfiguration.cpp | 127 if (!FileSystem::Instance().Exists(file_to_check)) in hasValidConfig()
|
/freebsd/contrib/llvm-project/lldb/source/Interpreter/ |
H A D | OptionValuePathMappings.cpp | 21 return FileSystem::Instance().Exists(path); in VerifyPathExists()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | CodeMoverUtils.cpp | 170 if (none_of(Conditions, [&](ControlCondition &Exists) { in addControlCondition() argument 171 return ControlConditions::isEquivalent(C, Exists); in addControlCondition()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/ |
H A D | Lua.cpp | 135 if (!FileSystem::Instance().Exists(file)) { in LoadModule()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/QemuUser/ |
H A D | PlatformQemuUser.cpp | 184 } while (FileSystem::Instance().Exists(socket_path)); in DebugProcess()
|