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

References

tools/clang/lib/Sema/SemaCodeComplete.cpp
 5059   for (OverloadCandidate &Candidate : CandidateSet) {
tools/clang/lib/Sema/SemaInit.cpp
 9638       if (Candidate != Seq.getFailedCandidateSet().end() &&
tools/clang/lib/Sema/SemaOverload.cpp
  871   for (iterator i = begin(), e = end(); i != e; ++i) {
 1328          Cand != Conversions.end(); ++Cand)
 4576          Cand != CandidateSet.end(); ++Cand)
 8264                                          CEnd = CandidateSet.end();
 9148                                    CandEnd = CandidateSet.end();
 9596   std::transform(begin(), end(), std::back_inserter(Candidates),
 9627   Best = end();
 9631       if (Best == end() ||
 9637   if (Best == end())
 9660           Best = end();
 9666   if (Best == end())
11049   for (iterator Cand = begin(), LastCand = end(); Cand != LastCand; ++Cand) {
12466   for (auto I = CS.begin(), E = CS.end(); I != E; ++I) {
12886           for (OverloadCandidate &Cand : CandidateSet) {
13717   if (Best == CandidateSet.end())
usr/include/c++/7.4.0/bits/range_access.h
   68     end(_Container& __cont) -> decltype(__cont.end())
   69     { return __cont.end(); }