Home
last modified time | relevance | path

Searched refs:AllFlags (Results 1 – 5 of 5) sorted by relevance

/external/llvm-project/llvm/tools/llvm-objcopy/COFF/
DCOFFObjcopy.cpp97 static void setSectionFlags(Section &Sec, SectionFlag AllFlags) { in setSectionFlags() argument
113 if ((AllFlags & SectionFlag::SecAlloc) && !(AllFlags & SectionFlag::SecLoad)) in setSectionFlags()
115 if (AllFlags & SectionFlag::SecNoload) in setSectionFlags()
117 if (!(AllFlags & SectionFlag::SecReadonly)) in setSectionFlags()
119 if (AllFlags & SectionFlag::SecDebug) in setSectionFlags()
122 if (AllFlags & SectionFlag::SecCode) in setSectionFlags()
124 if (AllFlags & SectionFlag::SecData) in setSectionFlags()
126 if (AllFlags & SectionFlag::SecShare) in setSectionFlags()
128 if (AllFlags & SectionFlag::SecExclude) in setSectionFlags()
/external/llvm-project/llvm/tools/llvm-objcopy/ELF/
DELFObjcopy.cpp73 uint64_t getNewShfFlags(SectionFlag AllFlags) { in getNewShfFlags() argument
75 if (AllFlags & SectionFlag::SecAlloc) in getNewShfFlags()
77 if (!(AllFlags & SectionFlag::SecReadonly)) in getNewShfFlags()
79 if (AllFlags & SectionFlag::SecCode) in getNewShfFlags()
81 if (AllFlags & SectionFlag::SecMerge) in getNewShfFlags()
83 if (AllFlags & SectionFlag::SecStrings) in getNewShfFlags()
85 if (AllFlags & SectionFlag::SecExclude) in getNewShfFlags()
/external/flatbuffers/include/flatbuffers/
Didl.h394 std::string AllFlags() const;
/external/flatbuffers/src/
Didl_gen_cpp.cpp1092 NumToStringCpp(enum_def.AllFlags(), in GenEnum()
Didl_parser.cpp1863 std::string EnumDef::AllFlags() const { in AllFlags() function in flatbuffers::EnumDef