OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HashStyle
(Results
1 - 3
of
3
) sorted by null
/frameworks/compile/mclinker/include/mcld/
GeneralOptions.h
37
enum class
HashStyle
: uint8_t {
254
HashStyle
getHashStyle() const { return m_HashStyle; }
257
return m_HashStyle ==
HashStyle
::GNU || m_HashStyle ==
HashStyle
::Both;
261
return m_HashStyle ==
HashStyle
::SystemV || m_HashStyle ==
HashStyle
::Both;
264
void setHashStyle(
HashStyle
pStyle) { m_HashStyle = pStyle; }
390
HashStyle
m_HashStyle;
/frameworks/compile/mclinker/lib/Core/
GeneralOptions.cpp
65
m_HashStyle(
HashStyle
::SystemV) {
/frameworks/compile/mclinker/tools/mcld/
Main.cpp
555
mcld::GeneralOptions::
HashStyle
style =
556
llvm::StringSwitch<mcld::GeneralOptions::
HashStyle
>(arg->getValue())
557
.Case("sysv", mcld::GeneralOptions::
HashStyle
::SystemV)
558
.Case("gnu", mcld::GeneralOptions::
HashStyle
::GNU)
559
.Case("both", mcld::GeneralOptions::
HashStyle
::Both)
560
.Default(mcld::GeneralOptions::
HashStyle
::Unknown);
561
if (style != mcld::GeneralOptions::
HashStyle
::Unknown) {
[
all
...]
Completed in 3813 milliseconds