Searched defs:pLHS (Results 1 - 2 of 2) sorted by last modified time

/frameworks/compile/mclinker/include/mcld/MC/
H A DAttribute.h189 inline bool operator==(const Attribute& pLHS, const Attribute& pRHS) { argument
190 return ((pLHS.isWholeArchive() == pRHS.isWholeArchive()) &&
191 (pLHS.isAsNeeded() == pRHS.isAsNeeded()) &&
192 (pLHS.isAddNeeded() == pRHS.isAddNeeded()) &&
193 (pLHS.isStatic() == pRHS.isStatic()));
196 inline bool operator!=(const Attribute& pLHS, const Attribute& pRHS) { argument
197 return !(pLHS == pRHS);
/frameworks/compile/mclinker/lib/Support/
H A DPath.cpp191 bool operator==(const Path& pLHS, const Path& pRHS) { argument
192 return (pLHS.generic_string() == pRHS.generic_string());
195 bool operator!=(const Path& pLHS, const Path& pRHS) { argument
196 return !(pLHS == pRHS);
199 Path operator+(const Path& pLHS, const Path& pRHS) { argument
200 mcld::sys::fs::Path result = pLHS;

Completed in 81 milliseconds