HomeSort by relevance Sort by last modified time
    Searched refs:pLHS (Results 1 - 3 of 3) sorted by null

  /frameworks/compile/mclinker/include/mcld/MC/
Attribute.h 189 inline bool operator==(const Attribute& pLHS, const Attribute& pRHS) {
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) {
197 return !(pLHS == pRHS);
  /frameworks/compile/mclinker/lib/Support/
Path.cpp 191 bool operator==(const Path& pLHS, const Path& pRHS) {
192 return (pLHS.generic_string() == pRHS.generic_string());
195 bool operator!=(const Path& pLHS, const Path& pRHS) {
196 return !(pLHS == pRHS);
199 Path operator+(const Path& pLHS, const Path& pRHS) {
200 mcld::sys::fs::Path result = pLHS;
  /frameworks/compile/mclinker/include/mcld/Support/
Path.h 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);

Completed in 623 milliseconds