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,
  101   all_write = owner_write | group_write | others_write,
tools/llvm-objdump/MachODump.cpp
 2236     outs() << ((Mode & sys::fs::others_write) ? "w" : "-");
tools/llvm-objdump/llvm-objdump.cpp
 2058   outs() << ((Mode & sys::fs::others_write) ? "w" : "-");
unittests/Support/Path.cpp
 1787   EXPECT_EQ(fs::setPermissions(TempPath, fs::others_write), NoError);
 1788   EXPECT_TRUE(CheckPermissions(fs::others_write));