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

References

include/llvm/ADT/Optional.h
  290   return !(X == Y);
include/llvm/CodeGen/MIRYamlMapping.h
  231            LocalOffset == Other.LocalOffset && DebugVar == Other.DebugVar &&
include/llvm/DebugInfo/GSYM/FunctionInfo.h
  160          LHS.OptLineTable == RHS.OptLineTable && LHS.Inline == RHS.Inline;
  160          LHS.OptLineTable == RHS.OptLineTable && LHS.Inline == RHS.Inline;
include/llvm/Remarks/Remark.h
  124   return LHS.Key == RHS.Key && LHS.Val == RHS.Val && LHS.Loc == RHS.Loc;
  134          LHS.FunctionName == RHS.FunctionName && LHS.Loc == RHS.Loc &&
  135          LHS.Hotness == RHS.Hotness && LHS.Args == RHS.Args;
lib/Analysis/ScalarEvolution.cpp
 8641     Optional<APInt> Max = Min == SO ? UO : SO;
lib/IR/Attributes.cpp
 1168   assert((!OldAlign || !NewAlign || OldAlign == NewAlign) &&
 1688   return Alignment == B.Alignment && StackAlignment == B.StackAlignment &&
 1688   return Alignment == B.Alignment && StackAlignment == B.StackAlignment &&
lib/IR/DataLayout.cpp
  465              StackNaturalAlign == Other.StackNaturalAlign &&
  467              FunctionPtrAlign == Other.FunctionPtrAlign &&
lib/IR/Globals.cpp
  126   assert(MaybeAlign(getAlignment()) == Align &&
lib/IR/LLVMContextImpl.h
  443            DWARFAddressSpace == RHS->getDWARFAddressSpace() &&
  597            Checksum == RHS->getRawChecksum() &&
  598            Source == RHS->getRawSource();
lib/MC/MCDwarf.cpp
  551   return RootFile.Checksum == Checksum;
lib/Support/JSON.cpp
  189       return L.getAsInteger() == R.getAsInteger();
lib/Transforms/IPO/Attributor.cpp
 3355       return AccumulatedSimplifiedValue == QueryingValueSimplified;
lib/Transforms/Vectorize/VPlanSLP.cpp
  405       if (OperandsOpcode && OperandsOpcode == getOpcode(Values)) {
tools/clang/lib/AST/Interp/Interp.cpp
  153     if (S.P.getCurrentDecl() == ID)
  169     if (S.P.getCurrentDecl() == ID)
tools/clang/lib/CodeGen/CGExprConstant.cpp
  169   assert((FirstElemToReplace == LastElemToReplace || AllowOverwrite) &&
tools/clang/lib/Sema/TreeTransform.h
10669       ArraySize == E->getArraySize() &&
tools/clang/tools/extra/clangd/CodeComplete.cpp
 1634             if (PreferredType == CompletionType)
tools/clang/tools/extra/clangd/Protocol.cpp
  561          LHS.USR == RHS.USR && LHS.ID == RHS.ID;
tools/lldb/source/Plugins/ObjectFile/Breakpad/BreakpadRecords.cpp
  393   return L.Address == R.Address && L.Size == R.Size &&
tools/lldb/source/Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.cpp
  159     if (next_section == current_section)
tools/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteDarwinDevice.cpp
  301                 m_sdk_directory_infos[i].version.getMinor() ==
tools/lldb/source/Plugins/SymbolFile/DWARF/DIERef.h
   34     assert(this->dwo_num() == dwo_num && "Dwo number out of range?");
tools/lldb/source/Plugins/SymbolFile/DWARF/NameToDIE.cpp
   44     if (unit.GetSymbolFileDWARF().GetDwoNum() == die_ref.dwo_num() &&
unittests/ADT/OptionalTest.cpp
  408     return X == Y;
unittests/Support/JSONTest.cpp
  337   return L.S == R.S && L.I == R.I && L.B == R.B;
usr/include/c++/7.4.0/bits/stl_algobase.h
  800 	    if (!(*__first1 == *__first2))
usr/include/c++/7.4.0/bits/stl_pair.h
  449     { return __x.first == __y.first && __x.second == __y.second; }
usr/include/c++/7.4.0/tuple
 1372 	return bool(std::get<__i>(__t) == std::get<__i>(__u))
utils/unittest/googletest/include/gtest/gtest.h
 1392   if (lhs == rhs) {