reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/Support/FileSystem.h
   99   others_all = others_read | others_write | others_exe,
  100   all_read = owner_read | group_read | others_read,
tools/llvm-objdump/MachODump.cpp
 2235     outs() << ((Mode & sys::fs::others_read) ? "r" : "-");
tools/llvm-objdump/llvm-objdump.cpp
 2057   outs() << ((Mode & sys::fs::others_read) ? "r" : "-");
unittests/Support/Path.cpp
 1784   EXPECT_EQ(fs::setPermissions(TempPath, fs::others_read), NoError);
 1785   EXPECT_TRUE(CheckPermissions(fs::others_read));