Searched defs:pRHS (Results 1 - 2 of 2) sorted by relevance

/frameworks/compile/mclinker/include/mcld/MC/
H A DMCLDAttribute.h231 inline bool operator== (const Attribute& pLHS, const Attribute& pRHS) argument
233 return ((pLHS.isWholeArchive() == pRHS.isWholeArchive()) &&
234 (pLHS.isAsNeeded() == pRHS.isAsNeeded()) &&
235 (pLHS.isAddNeeded() == pRHS.isAddNeeded()) &&
236 (pLHS.isStatic() == pRHS.isStatic()));
239 inline bool operator!= (const Attribute& pLHS, const Attribute& pRHS) argument
241 return !(pLHS == pRHS);
/frameworks/compile/mclinker/lib/Support/
H A DPath.cpp169 bool mcld::sys::fs::operator==(const Path& pLHS,const Path& pRHS) argument
171 return (pLHS.generic_string()==pRHS.generic_string());
174 bool mcld::sys::fs::operator!=(const Path& pLHS,const Path& pRHS) argument
176 return !(pLHS==pRHS);
179 Path mcld::sys::fs::operator+(const Path& pLHS, const Path& pRHS) argument
182 result.append(pRHS);

Completed in 106 milliseconds