Searched refs:HashStyle (Results 1 – 4 of 4) sorted by relevance
37 enum class HashStyle : uint8_t { enum254 HashStyle getHashStyle() const { return m_HashStyle; } in getHashStyle()257 return m_HashStyle == HashStyle::GNU || m_HashStyle == HashStyle::Both; in hasGNUHash()261 return m_HashStyle == HashStyle::SystemV || m_HashStyle == HashStyle::Both; in hasSysVHash()264 void setHashStyle(HashStyle pStyle) { m_HashStyle = pStyle; } in setHashStyle()390 HashStyle m_HashStyle;
555 mcld::GeneralOptions::HashStyle style = in TranslateArguments()556 llvm::StringSwitch<mcld::GeneralOptions::HashStyle>(arg->getValue()) in TranslateArguments()557 .Case("sysv", mcld::GeneralOptions::HashStyle::SystemV) in TranslateArguments()558 .Case("gnu", mcld::GeneralOptions::HashStyle::GNU) in TranslateArguments()559 .Case("both", mcld::GeneralOptions::HashStyle::Both) in TranslateArguments()560 .Default(mcld::GeneralOptions::HashStyle::Unknown); in TranslateArguments()561 if (style != mcld::GeneralOptions::HashStyle::Unknown) { in TranslateArguments()
225 def HashStyle : Joined<["--"], "hash-style=">,
65 m_HashStyle(HashStyle::SystemV) { in GeneralOptions()