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

References

include/llvm/ADT/ArrayRef.h
  529     return !(LHS == RHS);
include/llvm/ADT/DenseMapInfo.h
  272     return LHS == RHS;
include/llvm/ADT/Optional.h
  372   return Y && X == *Y;
include/llvm/DebugInfo/CodeView/SymbolRecord.h
  178     return Data == Other.Data;
include/llvm/DebugInfo/CodeView/TypeHashing.h
  191     return LHS.RecordData == RHS.RecordData;
include/llvm/ObjectYAML/YAML.h
  102   return LHS.DataIsHexString == RHS.DataIsHexString && LHS.Data == RHS.Data;
lib/Analysis/InstructionSimplify.cpp
 4121         EV->getIndices() == Idxs) {
 4188     if (InsertValueIdxs.slice(0, NumCommonIdxs) ==
lib/DebugInfo/PDB/Native/GSIStreamBuilder.cpp
   47       return LHS.RecordData == RHS.RecordData;
lib/IR/ConstantsContext.h
  501            SubclassOptionalData == X.SubclassOptionalData && Ops == X.Ops &&
  502            Indexes == X.Indexes;
lib/IR/Instruction.cpp
  416     return IVI->getIndices() == cast<InsertValueInst>(I2)->getIndices();
  418     return EVI->getIndices() == cast<ExtractValueInst>(I2)->getIndices();
lib/IR/LLVMContextImpl.h
 1008     return Elements == RHS->getElements();
lib/IR/Type.cpp
  525   return elements() == Other->elements();
lib/Linker/IRMover.cpp
 1467   return IsPacked == That.IsPacked && ETypes == That.ETypes;
lib/Target/X86/X86ISelLowering.cpp
15046       cast<ShuffleVectorSDNode>(NewV1)->getMask() == Mask)
15063       cast<ShuffleVectorSDNode>(NewV2)->getMask() == Mask)
lib/Transforms/InstCombine/InstCombineVectorOps.cpp
  712     if (UserInsInst->getIndices() == FirstIndices) {
tools/clang/lib/AST/ExprConstant.cpp
  666       return LHS.Base == RHS.Base && LHS.Path == RHS.Path;
tools/clang/lib/AST/VTableBuilder.cpp
  484   return LT->getParamTypes() == RT->getParamTypes();
tools/clang/lib/CodeGen/TargetInfo.cpp
 8289       return llvm::makeArrayRef(Elems) == Ty->elements();
tools/clang/lib/Sema/SemaExprCXX.cpp
 2784         if (llvm::makeArrayRef(FuncParams) == Params) {
tools/lld/COFF/ICF.cpp
  171          a->checksum == b->checksum && a->getContents() == b->getContents() &&
tools/lldb/source/Plugins/Process/minidump/MinidumpParser.h
   46     return lhs.start == rhs.start && lhs.range_ref == rhs.range_ref;
tools/lldb/source/Plugins/Process/minidump/ProcessMinidump.cpp
  453             mod_bytes.take_front(dmp_bytes.size()) == dmp_bytes;
unittests/ADT/ArrayRefTest.cpp
  190   EXPECT_TRUE(ArrayRef<unsigned>() == ArrayRef<unsigned>());
unittests/Transforms/Utils/LocalTest.cpp
  785       return DVI->getExpression()->getElements() == Ops;
utils/TableGen/CodeGenSchedule.cpp
  838     return makeArrayRef(RW.Sequence) == Seq;
utils/TableGen/CodeGenSchedule.h
  148     return ItinClassDef == IC && makeArrayRef(Writes) == W &&
  149            makeArrayRef(Reads) == R;
utils/unittest/googlemock/include/gmock/gmock-matchers.h
  206   bool operator()(const A& a, const B& b) const { return a == b; }
 2560     if (lhs_stl_container == expected_)
utils/unittest/googletest/include/gtest/gtest.h
 1392   if (lhs == rhs) {