Searched defs:RHS (Results 1 - 25 of 500) sorted by relevance

1234567891011>>

/external/python/cpython2/Include/
H A Dmetagrammar.h10 #define RHS 258 macro
/external/clang/lib/StaticAnalyzer/Core/
H A DCheckerHelpers.cpp79 const Expr *RHS = nullptr; local
84 RHS = Assign->getRHS();
92 RHS = VD->getAnyInitializer();
95 return std::make_pair(VD, RHS);
/external/clang/test/Index/
H A Dcxx-operator-overload.cpp5 Cls operator +(const Cls &RHS);
13 Cls Cls::operator +(const Cls &RHS) { while (1) {} } argument
/external/llvm/lib/CodeGen/
H A DMachineModuleInfoImpls.cpp27 static int SortSymbolPair(const void *LHS, const void *RHS) { argument
30 const MCSymbol *RHSS = ((const PairTy *)RHS)->first;
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DMachineModuleInfoImpls.cpp27 static int SortSymbolPair(const void *LHS, const void *RHS) { argument
30 const MCSymbol *RHSS = ((const PairTy *)RHS)->first;
/external/clang/include/clang/AST/
H A DTypeOrdering.h53 static bool isEqual(clang::QualType LHS, clang::QualType RHS) { argument
54 return LHS == RHS;
73 static bool isEqual(clang::CanQualType LHS, clang::CanQualType RHS) { argument
74 return LHS == RHS;
H A DBaseSubobject.h45 friend bool operator==(const BaseSubobject &LHS, const BaseSubobject &RHS) { argument
46 return LHS.Base == RHS.Base && LHS.BaseOffset == RHS.BaseOffset;
74 const clang::BaseSubobject &RHS) {
75 return LHS == RHS;
73 isEqual(const clang::BaseSubobject &LHS, const clang::BaseSubobject &RHS) argument
/external/clang/lib/Analysis/
H A DThreadSafetyLogical.cpp19 // to keep track of whether LHS and RHS are negated.
20 static bool implies(const LExpr *LHS, bool LNeg, const LExpr *RHS, bool RNeg) { argument
25 return implies(A->left(), LNeg, RHS, RNeg) &&
26 implies(A->right(), LNeg, RHS, RNeg);
35 return implies(A->left(), LNeg, RHS, RNeg) ||
36 implies(A->right(), LNeg, RHS, RNeg);
44 switch (RHS->kind()) {
50 return RNeg ? RightOrOperator(cast<And>(RHS))
51 : RightAndOperator(cast<And>(RHS));
57 return RNeg ? RightAndOperator(cast<Or>(RHS))
106 implies(const LExpr *LHS, const LExpr *RHS) argument
[all...]
/external/clang/test/SemaCXX/
H A Dwarn-self-assign.cpp22 #define RHS a macro
27 a = RHS;
28 LHS OP RHS; local
31 #undef RHS macro
H A Dunused.cpp13 APSInt &operator=(const APSInt &RHS);
16 APSInt& APSInt::operator=(const APSInt &RHS) { argument
17 APInt::operator=(RHS);
/external/llvm/include/llvm/MC/
H A DMCTargetOptions.h52 inline bool operator==(const MCTargetOptions &LHS, const MCTargetOptions &RHS) { argument
53 #define ARE_EQUAL(X) LHS.X == RHS.X
70 inline bool operator!=(const MCTargetOptions &LHS, const MCTargetOptions &RHS) { argument
71 return !(LHS == RHS);
/external/llvm/include/llvm/ObjectYAML/
H A DYAML.h58 friend bool operator==(const BinaryRef &LHS, const BinaryRef &RHS);
88 inline bool operator==(const BinaryRef &LHS, const BinaryRef &RHS) { argument
90 if (LHS.Data.empty() && RHS.Data.empty())
93 return LHS.DataIsHexString == RHS.DataIsHexString && LHS.Data == RHS.Data;
/external/llvm/include/llvm/Transforms/InstCombine/
H A DInstCombine.h40 InstCombinePass &operator=(InstCombinePass &&RHS) { argument
41 Worklist = std::move(RHS.Worklist);
42 ExpensiveCombines = RHS.ExpensiveCombines;
/external/llvm/lib/Transforms/Utils/
H A DCmpInstAnalysis.cpp72 Value *llvm::getICmpValue(bool Sign, unsigned Code, Value *LHS, Value *RHS, argument
/external/llvm/unittests/ADT/
H A DDenseSetTest.cpp37 static bool isEqual(const unsigned& LHS, const unsigned& RHS) { argument
38 return LHS == RHS;
40 static bool isEqual(const char* LHS, const unsigned& RHS) { argument
41 return (unsigned)(LHS[0] - 'a') == RHS;
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DSmallString.h38 SmallString(const SmallString &RHS) : SmallVector<char, InternalLen>(RHS) {} argument
55 const SmallString &operator=(StringRef RHS) { argument
57 return *this += RHS;
60 SmallString &operator+=(StringRef RHS) { argument
61 this->append(RHS.begin(), RHS.end());
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DSMLoc.h25 SMLoc(const SMLoc &RHS) : Ptr(RHS.Ptr) {} argument
29 bool operator==(const SMLoc &RHS) const { return RHS.Ptr == Ptr; }
30 bool operator!=(const SMLoc &RHS) const { return RHS.Ptr != Ptr; }
/external/libcxx/test/std/experimental/filesystem/class.path/path.member/
H A Dpath.compare.pass.cpp43 const char* RHS; member in struct:PathCompareTest
86 const path p2(TC.RHS);
87 const std::string R(TC.RHS);
88 const std::string_view RV(TC.RHS);
96 int ret3 = normalize_ret(p1.compare(TC.RHS));
/external/libcxxabi/test/
H A Dincomplete_type.sh.cpp32 AssertIncompleteTypeInfoEquals(std::type_info const& LHS, std::type_info const& RHS) argument
34 assert(&LHS != &RHS);
35 assert(strcmp(LHS.name(), RHS.name()) == 0);
/external/llvm/include/llvm/ADT/
H A DBitmaskEnum.h106 E operator|(E LHS, E RHS) { argument
107 return static_cast<E>(Underlying(LHS) | Underlying(RHS));
112 E operator&(E LHS, E RHS) { argument
113 return static_cast<E>(Underlying(LHS) & Underlying(RHS));
118 E operator^(E LHS, E RHS) { argument
119 return static_cast<E>(Underlying(LHS) ^ Underlying(RHS));
127 E &operator|=(E &LHS, E RHS) { argument
128 LHS = LHS | RHS;
134 E &operator&=(E &LHS, E RHS) { argument
135 LHS = LHS & RHS;
141 operator ^=(E &LHS, E RHS) argument
[all...]
/external/llvm/include/llvm/Analysis/
H A DProfileSummaryInfo.h87 ProfileSummaryAnalysis &operator=(const ProfileSummaryAnalysis &RHS) { argument
90 ProfileSummaryAnalysis &operator=(ProfileSummaryAnalysis &&RHS) { argument
/external/llvm/include/llvm/Support/
H A DLineIterator.h73 friend bool operator==(const line_iterator &LHS, const line_iterator &RHS) { argument
74 return LHS.Buffer == RHS.Buffer &&
75 LHS.CurrentLine.begin() == RHS.CurrentLine.begin();
78 friend bool operator!=(const line_iterator &LHS, const line_iterator &RHS) { argument
79 return !(LHS == RHS);
/external/llvm/include/llvm/Transforms/Scalar/
H A DReassociate.h42 inline bool operator<(const ValueEntry &LHS, const ValueEntry &RHS) { argument
43 return LHS.Rank > RHS.Rank; // Sort so that highest rank goes to start.
/external/llvm/lib/Support/
H A DDeltaAlgorithm.cpp32 changeset_ty LHS, RHS; local
36 ((idx < N) ? LHS : RHS).insert(*it);
39 if (!RHS.empty())
40 Res.push_back(RHS);
H A DStringRef.cpp41 static int ascii_strncasecmp(const char *LHS, const char *RHS, size_t Length) { argument
44 unsigned char RHC = ascii_tolower(RHS[I]);
52 int StringRef::compare_lower(StringRef RHS) const {
53 if (int Res = ascii_strncasecmp(Data, RHS.Data, std::min(Length, RHS.Length)))
55 if (Length == RHS.Length)
57 return Length < RHS.Length ? -1 : 1;
73 int StringRef::compare_numeric(StringRef RHS) const {
74 for (size_t I = 0, E = std::min(Length, RHS.Length); I != E; ++I) {
76 if (ascii_isdigit(Data[I]) && ascii_isdigit(RHS
[all...]

Completed in 781 milliseconds

1234567891011>>