OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:prhs
(Results
1 - 4
of
4
) 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
161
bool mcld::sys::fs::operator==(const Path& pLHS,const Path&
pRHS
)
163
return (pLHS.generic_string()==
pRHS
.generic_string());
166
bool mcld::sys::fs::operator!=(const Path& pLHS,const Path&
pRHS
)
168
return !(pLHS==
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/include/mcld/Support/
Path.h
105
bool operator==(const Path& pLHS,const Path&
pRHS
);
106
bool operator!=(const Path& pLHS,const Path&
pRHS
);
Completed in 205 milliseconds