reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
41 return (getFlags() & SF_ClassMask) >> SF_ClassShift; 48 return getFlags() & SF_WeakExternal; 55 return getFlags() & SF_SafeSEH;include/llvm/MC/MCSymbolMachO.h
66 return getFlags() & SF_NoDeadStrip; 73 return getFlags() & SF_WeakReference; 80 return getFlags() & SF_WeakDefinition; 87 return getFlags() & SF_SymbolResolver; 98 return getFlags() & SF_AltEntry; 103 bool isCold() const { return getFlags() & SF_Cold; } 114 uint16_t Flags = getFlags();include/llvm/MC/MCSymbolWasm.h
51 return getFlags() & wasm::WASM_SYMBOL_EXPORTED; 58 return getFlags() & wasm::WASM_SYMBOL_NO_STRIP;lib/MC/MCSymbolELF.cpp
62 uint32_t OtherFlags = getFlags() & ~(0x3 << ELF_STB_Shift); 123 uint32_t OtherFlags = getFlags() & ~(0x7 << ELF_STT_Shift); 153 uint32_t OtherFlags = getFlags() & ~(0x3 << ELF_STV_Shift); 166 uint32_t OtherFlags = getFlags() & ~(0x7 << ELF_STO_Shift); 176 uint32_t OtherFlags = getFlags() & ~(0x1 << ELF_WeakrefUsedInReloc_Shift); 181 return getFlags() & (0x1 << ELF_WeakrefUsedInReloc_Shift); 185 uint32_t OtherFlags = getFlags() & ~(0x1 << ELF_IsSignature_Shift); 190 return getFlags() & (0x1 << ELF_IsSignature_Shift); 194 uint32_t OtherFlags = getFlags() & ~(0x1 << ELF_BindingSet_Shift); 199 return getFlags() & (0x1 << ELF_BindingSet_Shift);