Home
last modified time | relevance | path

Searched refs:Readable (Results 1 – 18 of 18) sorted by relevance

/llvm-project-15.0.7/lldb/unittests/Host/
H A DFileSystemTest.cpp193 TEST(FileSystemTest, Readable) { in TEST() argument
196 EXPECT_TRUE(fs.Readable("/foo")); in TEST()
197 EXPECT_TRUE(fs.Readable(FileSpec("/foo", FileSpec::Style::posix))); in TEST()
199 EXPECT_FALSE(fs.Readable("/qux")); in TEST()
200 EXPECT_FALSE(fs.Readable(FileSpec("/qux", FileSpec::Style::posix))); in TEST()
328 EXPECT_FALSE(fs.Readable(spec)); in TEST()
/llvm-project-15.0.7/lldb/include/lldb/Host/
H A DFileSystem.h107 bool Readable(const FileSpec &file_spec) const;
108 bool Readable(const llvm::Twine &path) const;
/llvm-project-15.0.7/lldb/source/Host/common/
H A DFileSystem.cpp154 bool FileSystem::Readable(const Twine &path) const { in Readable() function in FileSystem
158 bool FileSystem::Readable(const FileSpec &file_spec) const { in Readable() function in FileSystem
159 return file_spec && Readable(file_spec.GetPath()); in Readable()
/llvm-project-15.0.7/libcxx/docs/Status/
H A DRangesIssues.csv19 `P1878R1 <https://wg21.link/P1878R1>`__,Constraining Readable Types,|Complete|,15.0
H A DCxx20Papers.csv158 "`P1878R1 <https://wg21.link/P1878R1>`__","LWG","Constraining Readable Types","Belfast","|Complete|…
/llvm-project-15.0.7/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformRemoteDarwinDevice.cpp110 if (FileSystem::Instance().Readable(resolved_module_spec.GetFileSpec())) { in ResolveExecutable()
H A DPlatformAppleSimulator.cpp420 if (FileSystem::Instance().Readable(resolved_module_spec.GetFileSpec())) { in ResolveExecutable()
/llvm-project-15.0.7/lldb/source/Target/
H A DRemoteAwarePlatform.cpp152 if (FileSystem::Instance().Readable( in ResolveExecutable()
H A DPlatform.cpp850 if (FileSystem::Instance().Readable(resolved_module_spec.GetFileSpec())) { in ResolveRemoteExecutable()
/llvm-project-15.0.7/lldb/source/Expression/
H A DREPL.cpp196 if (!fs.Readable(pathTwine)) { in ReadCode()
/llvm-project-15.0.7/llvm/lib/Target/AArch64/Utils/
H A DAArch64BaseInfo.h633 bool Readable; member
/llvm-project-15.0.7/libcxx/docs/
H A DReleaseNotes.rst71 - P1878R1 - Constraining Readable Types
/llvm-project-15.0.7/llvm/lib/Target/AArch64/
H A DAArch64SystemOperands.td596 bit Readable = ?;
604 let Readable = 1;
611 let Readable = 1;
618 let Readable = 0;
H A DAArch64ISelDAGToDAG.cpp3092 if (TheReg && TheReg->Readable && in tryReadRegister()
/llvm-project-15.0.7/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64InstPrinter.cpp1545 return (Reg && (Read ? Reg->Readable : Reg->Writeable) && in isValidSysReg()
/llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptRuntime.cpp2435 if (!FileSystem::Instance().Readable(file)) { in LoadAllocation()
/llvm-project-15.0.7/llvm/docs/
H A DCodingStandards.rst655 Use ``auto`` Type Deduction to Make Code More Readable
/llvm-project-15.0.7/llvm/lib/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp3604 MRSReg = SysReg->Readable ? SysReg->Encoding : -1; in tryParseSysReg()