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

/frameworks/compile/mclinker/include/mcld/Script/
H A 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...]
H A 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/
H A DAttribute.h189 inline bool operator==(const Attribute& pLHS, const Attribute& pRHS) { argument
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) { argument
197 return !(pLHS == pRHS);
/frameworks/compile/mclinker/lib/Support/
H A DPath.cpp191 bool operator==(const Path& pLHS, const Path& pRHS) { argument
192 return (pLHS.generic_string() == pRHS.generic_string());
195 bool operator!=(const Path& pLHS, const Path& pRHS) { argument
196 return !(pLHS == pRHS);
199 Path operator+(const Path& pLHS, const Path& pRHS) { argument
201 result.append(pRHS);
/frameworks/compile/mclinker/include/mcld/Support/
H A 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/
H A DDiagnosticInfos.cpp37 bool operator<(const DiagStaticInfo& pRHS) const { return (ID < pRHS.ID); }

Completed in 1148 milliseconds