Home
last modified time | relevance | path

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

/frameworks/compile/mclinker/include/mcld/MC/
DMCLDAttribute.h231 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);
/frameworks/compile/mclinker/lib/Support/
DPath.cpp169 bool mcld::sys::fs::operator==(const Path& pLHS,const Path& pRHS) in operator ==() argument
171 return (pLHS.generic_string()==pRHS.generic_string()); in operator ==()
174 bool mcld::sys::fs::operator!=(const Path& pLHS,const Path& pRHS) in operator !=() argument
176 return !(pLHS==pRHS); in operator !=()
179 Path mcld::sys::fs::operator+(const Path& pLHS, const Path& pRHS) in operator +() argument
181 mcld::sys::fs::Path result = pLHS; in operator +()
/frameworks/compile/mclinker/include/mcld/Support/
DPath.h107 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);