Searched refs:pLHS (Results 1 - 3 of 3) sorted by relevance

/frameworks/compile/mclinker/include/mcld/MC/
H A DAttribute.h224 inline bool operator== (const Attribute& pLHS, const Attribute& pRHS) argument
226 return ((pLHS.isWholeArchive() == pRHS.isWholeArchive()) &&
227 (pLHS.isAsNeeded() == pRHS.isAsNeeded()) &&
228 (pLHS.isAddNeeded() == pRHS.isAddNeeded()) &&
229 (pLHS.isStatic() == pRHS.isStatic()));
232 inline bool operator!= (const Attribute& pLHS, const Attribute& pRHS) argument
234 return !(pLHS == pRHS);
/frameworks/compile/mclinker/lib/Support/
H A DPath.cpp208 bool mcld::sys::fs::operator==(const Path& pLHS,const Path& pRHS) argument
210 return (pLHS.generic_string()==pRHS.generic_string());
213 bool mcld::sys::fs::operator!=(const Path& pLHS,const Path& pRHS) argument
215 return !(pLHS==pRHS);
218 Path mcld::sys::fs::operator+(const Path& pLHS, const Path& pRHS) argument
220 mcld::sys::fs::Path result = pLHS;
/frameworks/compile/mclinker/include/mcld/Support/
H A DPath.h100 bool operator==(const Path& pLHS,const Path& pRHS);
101 bool operator!=(const Path& pLHS,const Path& pRHS);
102 Path operator+(const Path& pLHS, const Path& pRHS);

Completed in 89 milliseconds