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.cpp639 DR.SecondDecl = SecondIt == SecondHashes.end() ? nullptr : SecondIt->first; in FindTypeDiffs()
644 DR.SecondDecl ? DifferenceSelector(DR.SecondDecl) : EndOfClass; in FindTypeDiffs()
666 if (DR.SecondDecl) { in diagnoseSubMismatchUnexpected()
667 Diag(DR.SecondDecl->getLocation(), diag::note_second_module_difference) in diagnoseSubMismatchUnexpected()
668 << DR.SecondDecl->getSourceRange(); in diagnoseSubMismatchUnexpected()
700 GetMismatchedDeclLoc(SecondRecord, DR.SecondDiffType, DR.SecondDecl); in diagnoseSubMismatchDifferentDeclKinds()
835 const NamedDecl *SecondDecl = std::get<1>(Pair); in diagnoseMismatch() local
836 if (computeODRHash(FirstDecl) == computeODRHash(SecondDecl)) in diagnoseMismatch()
839 assert(FirstDecl->getKind() == SecondDecl->getKind() && in diagnoseMismatch()
860 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