Home
last modified time | relevance | path

Searched refs:SecondDecl (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DODRDiagsEmitter.cpp637 DR.SecondDecl = SecondIt == SecondHashes.end() ? nullptr : SecondIt->first; in FindTypeDiffs()
642 DR.SecondDecl ? DifferenceSelector(DR.SecondDecl) : EndOfClass; in FindTypeDiffs()
664 if (DR.SecondDecl) { in diagnoseSubMismatchUnexpected()
665 Diag(DR.SecondDecl->getLocation(), diag::note_second_module_difference) in diagnoseSubMismatchUnexpected()
666 << DR.SecondDecl->getSourceRange(); in diagnoseSubMismatchUnexpected()
698 GetMismatchedDeclLoc(SecondRecord, DR.SecondDiffType, DR.SecondDecl); in diagnoseSubMismatchDifferentDeclKinds()
833 const NamedDecl *SecondDecl = std::get<1>(Pair); in diagnoseMismatch() local
834 if (computeODRHash(FirstDecl) == computeODRHash(SecondDecl)) in diagnoseMismatch()
837 assert(FirstDecl->getKind() == SecondDecl->getKind() && in diagnoseMismatch()
858 bool hasSecondArg = hasDefaultArg(SecondDecl); in diagnoseMismatch()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DODRDiagsEmitter.h122 const Decl *FirstDecl = nullptr, *SecondDecl = nullptr; member