Searched refs:pLHS (Results 1 – 3 of 3) sorted by relevance
221 inline bool operator== (const Attribute& pLHS, const Attribute& pRHS)223 return ((pLHS.isWholeArchive() == pRHS.isWholeArchive()) &&224 (pLHS.isAsNeeded() == pRHS.isAsNeeded()) &&225 (pLHS.isAddNeeded() == pRHS.isAddNeeded()) &&226 (pLHS.isStatic() == pRHS.isStatic()));229 inline bool operator!= (const Attribute& pLHS, const Attribute& pRHS)231 return !(pLHS == pRHS);
209 bool mcld::sys::fs::operator==(const Path& pLHS,const Path& pRHS) in operator ==() argument211 return (pLHS.generic_string()==pRHS.generic_string()); in operator ==()214 bool mcld::sys::fs::operator!=(const Path& pLHS,const Path& pRHS) in operator !=() argument216 return !(pLHS==pRHS); in operator !=()219 Path mcld::sys::fs::operator+(const Path& pLHS, const Path& pRHS) in operator +() argument221 mcld::sys::fs::Path result = pLHS; in operator +()
97 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);