reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/ADT/Optional.h
  284     return *X == *Y;
  372   return Y && X == *Y;
include/llvm/ADT/SmallSet.h
  240       if (*I == V)
include/llvm/ExecutionEngine/Orc/RemoteObjectLayer.h
  212       if (RemoteSym == nullRemoteSymbol())
include/llvm/MCA/Instruction.h
  569   bool operator==(const InstRef &Other) const { return Data == Other.Data; }
  629   bool operator==(const WriteRef &Other) const { return Data == Other.Data; }
lib/Analysis/InlineCost.cpp
  524       if (FirstBaseAndOffset == BaseAndOffset)
 1381     if (TrueBaseAndOffset == FalseBaseAndOffset && TrueBaseAndOffset.first) {
lib/Analysis/LazyValueInfo.cpp
  543       assert(BlockValueStack.back() == e && "Nothing should have been pushed!");
lib/Analysis/MemoryBuiltins.cpp
  789     if (TrueSide == FalseSide) {
 1037   if (TrueSide == FalseSide)
lib/Analysis/ScalarEvolutionExpander.cpp
  791     while (E != OpsAndLoops.end() && *I == *E && Exponent != MaxExponent) {
lib/ProfileData/Coverage/CoverageMapping.cpp
  433       if (Loc && CompletedSegmentLoc == *Loc)
  438       if (CompletedSegmentLoc == CompletedRegion->endLoc())
  443         if (CompletedRegion->endLoc() == ActiveRegions[J]->endLoc())
  484       if (CurStartLoc == CR.value().endLoc()) {
lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp
 2175   if (Res == std::make_pair(-1, -1))
lib/Target/AMDGPU/R600EmitClauseMarkers.cpp
  154       if (CachedConsts[0] == BankLine) {
  163       if (CachedConsts[1] == BankLine) {
lib/Target/AMDGPU/R600InstrInfo.cpp
  376   if (Src[0] == Src[1])
lib/Target/WebAssembly/WebAssemblyISelLowering.cpp
 1403         return Swizzled == GetSwizzleSrcs(I, Lane);
lib/Transforms/Scalar/GVNHoist.cpp
  151   bool operator==(const CHIArg &A) { return VN == A.VN; }
tools/clang/include/clang/Serialization/ContinuousRangeMap.h
   67     if (!Rep.empty() && Rep.back() == Val)
  125         assert((A == B || A.first != B.first) &&
  127         return A == B;
tools/clang/lib/AST/ExprConstant.cpp
  558       if (LB != Temporaries.end() && LB->first == KV)
tools/clang/lib/Basic/DiagnosticIDs.cpp
  295         if (I != DiagIDs.end() && I->first == D)
tools/clang/lib/Sema/SemaTemplateDeduction.cpp
  778       if (PartialPackDepthIndex ==
  798       if (PartialPackDepthIndex ==
tools/clang/lib/Sema/TreeTransform.h
 6856       Cond.get() == std::make_pair(S->getConditionVariable(), S->getCond()) &&
 6913       Cond.get() == std::make_pair(S->getConditionVariable(), S->getCond()) &&
 6982       Cond.get() == std::make_pair(S->getConditionVariable(), S->getCond()) &&
tools/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp
  182     return Impl == RHS.Impl;
tools/clang/tools/extra/clang-tidy/cppcoreguidelines/SpecialMemberFunctionsCheck.h
   94     if (RHS == getEmptyKey())
   95       return LHS == getEmptyKey();
   96     if (RHS == getTombstoneKey())
   97       return LHS == getTombstoneKey();
   98     return LHS == RHS;
tools/clang/tools/extra/clang-tidy/readability/IdentifierNamingCheck.cpp
   54     if (RHS == getEmptyKey())
   55       return LHS == getEmptyKey();
   56     if (RHS == getTombstoneKey())
   57       return LHS == getTombstoneKey();
   58     return LHS == RHS;
tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h
  444       return LHS == RHS;
unittests/XRay/GraphTest.cpp
  102     auto Pred = [&](const EVT &EV) { return EV.first == u; };
  122           [&](const EVT &EVI) { return EVI.first == EV.first; });
  128           [&](const EVT &EVI) { return EVI.first == EV.first; });
  135                        [&](const EVT &EVI) { return EVI.first == EV.first; });
  141           [&](const EVT &EVI) { return EVI.first == EV.first; });
usr/include/c++/7.4.0/bits/predefined_ops.h
  106       { return *__it1 == *__it2; }
  241 	{ return *__it == _M_value; }
usr/include/c++/7.4.0/bits/stl_algobase.h
  800 	    if (!(*__first1 == *__first2))
usr/include/c++/7.4.0/bits/stl_function.h
  356       { return __x == __y; }
usr/include/c++/7.4.0/bits/stl_pair.h
  462     { return !(__x == __y); }
utils/TableGen/CodeGenDAGPatterns.cpp
  220     return *begin() == *VTS.begin();
utils/unittest/googlemock/include/gmock/gmock-matchers.h
  206   bool operator()(const A& a, const B& b) const { return a == b; }
utils/unittest/googletest/include/gtest/gtest.h
 1392   if (lhs == rhs) {