HomeSort by relevance Sort by last modified time
    Searched full:prhs (Results 1 - 5 of 5) sorted by null

  /frameworks/compile/mclinker/include/mcld/MC/
MCLDAttribute.h 231 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/
Path.cpp 169 bool mcld::sys::fs::operator==(const Path& pLHS,const Path& pRHS)
171 return (pLHS.generic_string()==pRHS.generic_string());
174 bool mcld::sys::fs::operator!=(const Path& pLHS,const Path& pRHS)
176 return !(pLHS==pRHS);
179 Path mcld::sys::fs::operator+(const Path& pLHS, const Path& pRHS)
182 result.append(pRHS);
  /external/bison/src/
output.c 201 | Prepare the muscles related to the rules: rhs, prhs, r1, r2, |
211 unsigned int *prhs = xnmalloc (nrules, sizeof *prhs); local
222 prhs[r] = i;
229 r2[r] = i - prhs[r];
242 muscle_insert_unsigned_int_table ("prhs", prhs, 0, 0, nrules);
253 free (prhs);
  /frameworks/compile/mclinker/lib/LD/
DiagnosticInfos.cpp 34 bool operator<(const DiagStaticInfo& pRHS) const
35 { return (ID < pRHS.ID); }
  /frameworks/compile/mclinker/include/mcld/Support/
Path.h 107 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);

Completed in 170 milliseconds