Home
last modified time | relevance | path

Searched refs:pRHS (Results 1 – 6 of 6) sorted by relevance

/frameworks/compile/mclinker/include/mcld/Script/
DOutputSectDesc.h80 bool operator==(const Prolog& pRHS) const {
82 if (this == &pRHS)
84 if (m_pVMA != pRHS.m_pVMA)
86 if (m_Type != pRHS.m_Type)
88 if (m_pLMA != pRHS.m_pLMA)
90 if (m_pAlign != pRHS.m_pAlign)
92 if (m_pSubAlign != pRHS.m_pSubAlign)
94 if (m_Constraint != pRHS.m_Constraint)
132 bool operator==(const Epilog& pRHS) const {
134 if (this == &pRHS)
[all …]
DInputSectDesc.h53 bool operator==(const Spec& pRHS) const {
55 if (this == &pRHS)
57 if (m_pWildcardFile != pRHS.m_pWildcardFile)
59 if (m_pExcludeFiles != pRHS.m_pExcludeFiles)
61 if (m_pWildcardSections != pRHS.m_pWildcardSections)
/frameworks/compile/mclinker/include/mcld/MC/
DAttribute.h189 inline bool operator==(const Attribute& pLHS, const Attribute& pRHS) {
190 return ((pLHS.isWholeArchive() == pRHS.isWholeArchive()) &&
191 (pLHS.isAsNeeded() == pRHS.isAsNeeded()) &&
192 (pLHS.isAddNeeded() == pRHS.isAddNeeded()) &&
193 (pLHS.isStatic() == pRHS.isStatic()));
196 inline bool operator!=(const Attribute& pLHS, const Attribute& pRHS) {
197 return !(pLHS == pRHS);
/frameworks/compile/mclinker/lib/Support/
DPath.cpp191 bool operator==(const Path& pLHS, const Path& pRHS) { in operator ==() argument
192 return (pLHS.generic_string() == pRHS.generic_string()); in operator ==()
195 bool operator!=(const Path& pLHS, const Path& pRHS) { in operator !=() argument
196 return !(pLHS == pRHS); in operator !=()
199 Path operator+(const Path& pLHS, const Path& pRHS) { in operator +() argument
201 result.append(pRHS); in operator +()
/frameworks/compile/mclinker/include/mcld/Support/
DPath.h97 bool operator==(const Path& pLHS, const Path& pRHS);
98 bool operator!=(const Path& pLHS, const Path& pRHS);
99 Path operator+(const Path& pLHS, const Path& pRHS);
/frameworks/compile/mclinker/lib/LD/
DDiagnosticInfos.cpp37 bool operator<(const DiagStaticInfo& pRHS) const { return (ID < pRHS.ID); } in operator <()