Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
HDASTReader.cpp9619 auto SecondIt = SecondTemplateHashes.begin(); in diagnoseOdrViolations() local
9620 for (; FirstIt != FirstEnd; ++FirstIt, ++SecondIt) { in diagnoseOdrViolations()
9621 if (FirstIt->second == SecondIt->second) in diagnoseOdrViolations()
9639 const NamedDecl* SecondDecl = cast<NamedDecl>(SecondIt->first); in diagnoseOdrViolations()
9851 auto SecondIt = SecondHashes.begin(); in diagnoseOdrViolations() local
9856 while (FirstIt != FirstHashes.end() || SecondIt != SecondHashes.end()) { in diagnoseOdrViolations()
9857 if (FirstIt != FirstHashes.end() && SecondIt != SecondHashes.end() && in diagnoseOdrViolations()
9858 FirstIt->second == SecondIt->second) { in diagnoseOdrViolations()
9860 ++SecondIt; in diagnoseOdrViolations()
9865 SecondDecl = SecondIt == SecondHashes.end() ? nullptr : SecondIt->first; in diagnoseOdrViolations()