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

References

include/llvm/ADT/Hashing.h
  409   if (first == last)
include/llvm/ADT/Optional.h
  284     return *X == *Y;
include/llvm/ADT/SCCIterator.h
   61              NextChild == Other.NextChild &&
  182     assert(VisitStack.back().NextChild == GT::child_end(visitingN));
include/llvm/ADT/STLExtras.h
  198   return adl_begin(RangeOrContainer) == adl_end(RangeOrContainer);
  490     return BaseT::operator==(RHS);
  833     if (Begin == End)
  862     if (Begin == End)
 1343     if (ValIt == ValEnd) {
include/llvm/ADT/StringExtras.h
  316   if (Begin == End)
include/llvm/ADT/iterator.h
  146     return !static_cast<const DerivedT *>(this)->operator==(RHS);
  154            !static_cast<const DerivedT *>(this)->operator==(RHS);
  263   bool operator==(const DerivedT &RHS) const { return I == RHS.I; }
include/llvm/ADT/iterator_range.h
   47   bool empty() const { return begin_iterator == end_iterator; }
include/llvm/ExecutionEngine/JITLink/JITLink.h
  674       return (SecI == RHS.SecI) && (SymI == RHS.SymI);
  692         SymI = SecI == SecE ? SymbolItrT() : SecI->symbols().begin();
lib/Analysis/CGSCCPassManager.cpp
  371   if (NewSCCRange.begin() == NewSCCRange.end())
lib/Transforms/Scalar/NewGVN.cpp
 3034   if (Filtered.begin() == Filtered.end()) {
tools/clang/include/clang/AST/StmtOpenMP.h
  209       assert(std::next(Clauses.begin()) == Clauses.end() &&
tools/clang/lib/AST/DeclCXX.cpp
 1657       assert(llvm::find(Convs, ConvDecl) == Convs.end() &&
tools/clang/lib/AST/TextNodeDumper.cpp
  740   if (I == E)
tools/clang/lib/CodeGen/CGExprCXX.cpp
  344     assert(CE->arg_begin() == CE->arg_end() &&
tools/clang/lib/CodeGen/CodeGenFunction.h
 4283     assert((Arg == ArgRange.end() || !CallArgTypeInfo ||
tools/clang/lib/CodeGen/ItaniumCXXABI.cpp
 1822   assert(CE == nullptr || CE->arg_begin() == CE->arg_end());
tools/clang/lib/CodeGen/MicrosoftCXXABI.cpp
 1909   assert(CE == nullptr || CE->arg_begin() == CE->arg_end());
tools/clang/lib/Sema/SemaCodeComplete.cpp
 5634     if (Ctors.begin() == Ctors.end())
tools/clang/lib/Sema/SemaExpr.cpp
 5595         ULE->decls_begin() == ULE->decls_end()) {
tools/clang/lib/Sema/SemaLookup.cpp
 2378         if (FirstD == FirstPath->Decls.end() &&
 2379             CurrentD == Path->Decls.end())
tools/clang/lib/Sema/SemaOverload.cpp
12322         ULE->decls_begin() + 1 == ULE->decls_end() &&
tools/clang/lib/Sema/SemaTemplate.cpp
 8506   if (Result == Candidates.end())
 9647     if (Result == TemplateMatches.end())
tools/clang/lib/Sema/SemaTemplateDeduction.cpp
 4972   if (SpecBegin == SpecEnd) {
 4980   if (SpecBegin + 1 == SpecEnd)
tools/clang/lib/Serialization/ASTWriter.cpp
 2697   if (PPRec.local_begin() == PPRec.local_end())
tools/clang/lib/Serialization/ModuleManager.cpp
  227   if (First == Last)
unittests/ADT/ImmutableMapTest.cpp
   25   EXPECT_TRUE(S.begin() == S.end());
unittests/ADT/ImmutableSetTest.cpp
   45   EXPECT_TRUE(S.begin() == S.end());
   61   EXPECT_FALSE(S2.begin() == S2.end());
unittests/IR/UserTest.cpp
   72   EXPECT_TRUE(P.value_op_begin() == P.value_op_begin());
   73   EXPECT_FALSE(P.value_op_begin() == P.value_op_end());
   88   EXPECT_TRUE(IP->value_op_begin() == IP->value_op_begin());
   89   EXPECT_FALSE(IP->value_op_begin() == IP->value_op_end());
usr/include/c++/7.4.0/bits/stl_algo.h
  509     { return __last == std::find_if_not(__first, __last, __pred); }
  526     { return __last == _GLIBCXX_STD_A::find_if(__first, __last, __pred); }
  864       if (__first == __last)
usr/include/c++/7.4.0/bits/stl_iterator.h
  304     { return __x.base() == __y.base(); }
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) {