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

References

tools/clang/lib/Sema/SemaDeclObjC.cpp
 3567     for (unsigned I = 1, N = Methods.size(); I != N; ++I) {
 3568       if (!MatchTwoMethodDeclarations(Methods[0], Methods[I], MMS_strict)) {
 3568       if (!MatchTwoMethodDeclarations(Methods[0], Methods[I], MMS_strict)) {
 3580     for (unsigned I = 1, N = Methods.size(); I != N; ++I) {
 3582       if (!MatchTwoMethodDeclarations(Methods[0], Methods[I], MMS_loose) &&
 3582       if (!MatchTwoMethodDeclarations(Methods[0], Methods[I], MMS_loose) &&
 3583           !isAcceptableMethodMismatch(Methods[0], Methods[I])) {
 3583           !isAcceptableMethodMismatch(Methods[0], Methods[I])) {
 3599     Diag(Methods[0]->getBeginLoc(),
 3601         << Methods[0]->getSourceRange();
 3602     for (unsigned I = 1, N = Methods.size(); I != N; ++I) {
 3603       Diag(Methods[I]->getBeginLoc(), diag::note_also_found)
 3604           << Methods[I]->getSourceRange();