Searched refs:pLHS (Results 1 – 3 of 3) sorted by relevance
231 inline bool operator== (const Attribute& pLHS, const Attribute& pRHS)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)241 return !(pLHS == pRHS);
169 bool mcld::sys::fs::operator==(const Path& pLHS,const Path& pRHS) in operator ==() argument171 return (pLHS.generic_string()==pRHS.generic_string()); in operator ==()174 bool mcld::sys::fs::operator!=(const Path& pLHS,const Path& pRHS) in operator !=() argument176 return !(pLHS==pRHS); in operator !=()179 Path mcld::sys::fs::operator+(const Path& pLHS, const Path& pRHS) in operator +() argument181 mcld::sys::fs::Path result = pLHS; in operator +()
107 bool operator==(const Path& pLHS,const Path& pRHS);108 bool operator!=(const Path& pLHS,const Path& pRHS);109 Path operator+(const Path& pLHS, const Path& pRHS);