Searched defs:RHS (Results 26 - 50 of 262) sorted by relevance

1234567891011

/external/clang/include/clang/AST/
H A DDeclContextInternals.h49 StoredDeclsList(StoredDeclsList &&RHS) : Data(RHS.Data) { argument
50 RHS.Data = (NamedDecl *)nullptr;
59 StoredDeclsList &operator=(StoredDeclsList &&RHS) { argument
62 Data = RHS.Data;
63 RHS.Data = (NamedDecl *)nullptr;
H A DGlobalDecl.h72 friend bool operator==(const GlobalDecl &LHS, const GlobalDecl &RHS) { argument
73 return LHS.Value == RHS.Value;
111 clang::GlobalDecl RHS) {
112 return LHS == RHS;
110 isEqual(clang::GlobalDecl LHS, clang::GlobalDecl RHS) argument
H A DRawCommentList.h171 bool operator()(const RawComment &LHS, const RawComment &RHS) { argument
172 return SM.isBeforeInTranslationUnit(LHS.getLocStart(), RHS.getLocStart());
175 bool operator()(const RawComment *LHS, const RawComment *RHS) { argument
176 return operator()(*LHS, *RHS);
H A DCharUnits.h211 const clang::CharUnits &RHS) {
212 return LHS == RHS;
210 isEqual(const clang::CharUnits &LHS, const clang::CharUnits &RHS) argument
H A DStmtIterator.h80 StmtIteratorImpl(const StmtIteratorBase& RHS) : StmtIteratorBase(RHS) {} argument
104 bool operator==(const DERIVED& RHS) const {
105 return stmt == RHS.stmt && DGI == RHS.DGI && RawVAPtr == RHS.RawVAPtr;
108 bool operator!=(const DERIVED& RHS) const {
109 return stmt != RHS.stmt || DGI != RHS.DGI || RawVAPtr != RHS
136 ConstStmtIterator(const StmtIterator& RHS) argument
[all...]
/external/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyUtil.h100 SimpleArray &operator=(SimpleArray &&RHS) { argument
101 if (this != &RHS) {
102 Data = RHS.Data;
103 Size = RHS.Size;
104 Capacity = RHS.Capacity;
106 RHS.Data = nullptr;
107 RHS.Size = RHS.Capacity = 0;
/external/clang/include/clang/Basic/
H A DABI.h76 bool Less(const VirtualAdjustment &RHS) const {
77 return memcmp(this, &RHS, sizeof(RHS)) < 0;
86 const ReturnAdjustment &RHS) {
87 return LHS.NonVirtual == RHS.NonVirtual && LHS.Virtual.Equals(RHS.Virtual);
90 friend bool operator!=(const ReturnAdjustment &LHS, const ReturnAdjustment &RHS) { argument
91 return !(LHS == RHS);
95 const ReturnAdjustment &RHS) {
96 if (LHS.NonVirtual < RHS
85 operator ==(const ReturnAdjustment &LHS, const ReturnAdjustment &RHS) argument
94 operator <(const ReturnAdjustment &LHS, const ReturnAdjustment &RHS) argument
153 operator ==(const ThisAdjustment &LHS, const ThisAdjustment &RHS) argument
158 operator !=(const ThisAdjustment &LHS, const ThisAdjustment &RHS) argument
162 operator <(const ThisAdjustment &LHS, const ThisAdjustment &RHS) argument
195 operator ==(const ThunkInfo &LHS, const ThunkInfo &RHS) argument
[all...]
/external/clang/lib/ARCMigrate/
H A DTransZeroOutPropsInDealloc.cpp70 // Remove the setter message if RHS is null
72 Expr *RHS = ME->getArg(0); local
74 RHS->isNullPointerConstant(Ctx,
/external/clang/lib/CodeGen/
H A DCodeGenTBAA.h151 const clang::CodeGen::TBAAPathTag &RHS) {
152 return LHS.BaseT == RHS.BaseT &&
153 LHS.AccessN == RHS.AccessN &&
154 LHS.Offset == RHS.Offset;
150 isEqual(const clang::CodeGen::TBAAPathTag &LHS, const clang::CodeGen::TBAAPathTag &RHS) argument
/external/clang/lib/StaticAnalyzer/Checkers/
H A DDebugCheckers.cpp165 const Table::MapEntryTy *const *RHS) {
166 return (*LHS)->getKey().compare((*RHS)->getKey());
164 compareEntry(const Table::MapEntryTy *const *LHS, const Table::MapEntryTy *const *RHS) argument
/external/llvm/include/llvm/ADT/
H A DArrayRef.h131 bool equals(ArrayRef RHS) const {
132 if (Length != RHS.Length)
134 return std::equal(begin(), end(), RHS.begin());
321 inline bool operator==(ArrayRef<T> LHS, ArrayRef<T> RHS) { argument
322 return LHS.equals(RHS);
326 inline bool operator!=(ArrayRef<T> LHS, ArrayRef<T> RHS) { argument
327 return !(LHS == RHS);
H A DPackedVector.h130 bool operator==(const PackedVector &RHS) const {
131 return Bits == RHS.Bits;
134 bool operator!=(const PackedVector &RHS) const {
135 return Bits != RHS.Bits;
138 const PackedVector &operator=(const PackedVector &RHS) { argument
139 Bits = RHS.Bits;
143 PackedVector &operator|=(const PackedVector &RHS) { argument
144 Bits |= RHS.Bits;
148 void swap(PackedVector &RHS) { argument
149 Bits.swap(RHS
[all...]
H A DSmallString.h57 void assign(StringRef RHS) { argument
59 SmallVectorImpl<char>::append(RHS.begin(), RHS.end());
63 void assign(const SmallVectorImpl<char> &RHS) { argument
65 SmallVectorImpl<char>::append(RHS.begin(), RHS.end());
84 void append(StringRef RHS) { argument
85 SmallVectorImpl<char>::append(RHS.begin(), RHS.end());
89 void append(const SmallVectorImpl<char> &RHS) { argument
280 operator =(StringRef RHS) argument
285 operator +=(StringRef RHS) argument
[all...]
H A DTinyPtrVector.h39 TinyPtrVector(const TinyPtrVector &RHS) : Val(RHS.Val) { argument
43 TinyPtrVector &operator=(const TinyPtrVector &RHS) { argument
44 if (this == &RHS)
46 if (RHS.empty()) {
54 if (RHS.size() == 1)
55 Val = RHS.front();
57 Val = new VecTy(*RHS.Val.template get<VecTy*>());
62 if (RHS.Val.template is<EltTy>()) {
64 Val.template get<VecTy*>()->push_back(RHS
71 TinyPtrVector(TinyPtrVector &&RHS) argument
74 operator =(TinyPtrVector &&RHS) argument
[all...]
/external/llvm/include/llvm/IR/
H A DUse.h73 void swap(Use &RHS);
105 Value *operator=(Value *RHS) { argument
106 set(RHS);
107 return RHS;
109 const Use &operator=(const Use &RHS) { argument
110 set(RHS.Val);
/external/llvm/include/llvm/Target/
H A DTargetOptions.h231 const TargetOptions &RHS) {
232 #define ARE_EQUAL(X) LHS.X == RHS.X
257 const TargetOptions &RHS) {
258 return !(LHS == RHS);
230 operator ==(const TargetOptions &LHS, const TargetOptions &RHS) argument
256 operator !=(const TargetOptions &LHS, const TargetOptions &RHS) argument
/external/llvm/lib/Analysis/
H A DPHITransAddr.cpp259 // Handle add with a constant RHS.
263 Constant *RHS = cast<ConstantInt>(Inst->getOperand(1)); local
275 RHS = ConstantExpr::getAdd(RHS, CI);
286 if (Value *Res = SimplifyAddInst(LHS, RHS, isNSW, isNUW, DL, TLI, DT)) {
294 if (LHS == Inst->getOperand(0) && RHS == Inst->getOperand(1))
301 BO->getOperand(0) == LHS && BO->getOperand(1) == RHS &&
421 // Handle add with a constant RHS.
/external/llvm/lib/Bitcode/Reader/
H A DBitstreamReader.cpp18 void BitstreamCursor::operator=(const BitstreamCursor &RHS) { argument
21 BitStream = RHS.BitStream;
22 NextChar = RHS.NextChar;
23 CurWord = RHS.CurWord;
24 BitsInCurWord = RHS.BitsInCurWord;
25 CurCodeSize = RHS.CurCodeSize;
28 CurAbbrevs = RHS.CurAbbrevs;
33 BlockScope = RHS.BlockScope;
/external/llvm/lib/Support/
H A DScaledNumber.cpp23 uint64_t RHS) {
27 uint64_t UL = getU(LHS), LL = getL(LHS), UR = getU(RHS), LR = getL(RHS);
22 multiply64(uint64_t LHS, uint64_t RHS) argument
/external/llvm/unittests/ADT/
H A DStringMapTest.cpp262 MoveOnly(MoveOnly &&RHS) : i(RHS.i) {} argument
263 MoveOnly &operator=(MoveOnly &&RHS) { argument
264 i = RHS.i;
/external/llvm/utils/TableGen/
H A DDAGISelEmitter.cpp75 // PatternSortingPredicate - return true if we prefer to match LHS before RHS.
82 bool operator()(const PatternToMatch *LHS, const PatternToMatch *RHS) { argument
84 const TreePatternNode *RHSSrc = RHS->getSrcPattern();
98 unsigned RHSSize = RHS->getPatternComplexity(CGP);
104 unsigned RHSCost = getResultPatternCost(RHS->getDstPattern(), CGP);
109 unsigned RHSPatSize = getResultPatternSize(RHS->getDstPattern(), CGP);
115 assert(LHS == RHS || LHS->ID != RHS->ID);
116 return LHS->ID < RHS->ID;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A DR600ISelLowering.cpp337 SDValue RHS = Op.getOperand(3); local
345 LHS, RHS,
393 SDValue RHS = Op.getOperand(1); local
400 // LHS and RHS are guaranteed to be the same value type
404 // necessary we need to convert LHS and RHS to be the same type True and
422 // XXX Check the value of LHS and RHS and avoid creating sequences like
425 RHS = DAG.getNode(ConversionOp, DL, VT, RHS);
431 return DAG.getNode(ISD::SELECT_CC, DL, VT, LHS, RHS, True, False, CC);
444 if (isZero(LHS) || isZero(RHS)) {
503 SDValue RHS = Op.getOperand(1); local
[all...]
H A DSIISelLowering.cpp313 SDValue RHS = Op.getOperand(3); local
321 LHS, RHS,
377 SDValue RHS = Op.getOperand(1); local
384 SDValue Cond = DAG.getNode(ISD::SETCC, DL, MVT::i1, LHS, RHS, CC);
/external/clang/include/clang/Rewrite/Core/
H A DRewriteRope.h82 void operator=(const RopePiece &RHS) { argument
83 if (StrData != RHS.StrData) {
86 StrData = RHS.StrData;
90 StartOffs = RHS.StartOffs;
91 EndOffs = RHS.EndOffs;
132 bool operator==(const RopePieceBTreeIterator &RHS) const {
133 return CurPiece == RHS.CurPiece && CurChar == RHS.CurChar;
135 bool operator!=(const RopePieceBTreeIterator &RHS) const {
136 return !operator==(RHS);
200 RewriteRope(const RewriteRope &RHS) argument
[all...]
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExprEngine.h471 SVal LHS, SVal RHS, QualType T) {
472 return svalBuilder.evalBinOp(ST, Op, LHS, RHS, T);
470 evalBinOp(ProgramStateRef ST, BinaryOperator::Opcode Op, SVal LHS, SVal RHS, QualType T) argument

Completed in 723 milliseconds

1234567891011