Lines Matching defs:SecondInit
331 const Expr *SecondInit = SecondVD->getInit();
332 if ((FirstInit == nullptr) != (SecondInit == nullptr)) {
337 << SecondName << (SecondInit == nullptr)
338 << (SecondInit ? SecondInit->getSourceRange() : SourceRange());
342 if (FirstInit && SecondInit &&
343 computeODRHash(FirstInit) != computeODRHash(SecondInit)) {
347 << SecondName << SecondInit->getSourceRange();
1161 const Expr *SecondInit = SecondParam->getInit();
1162 if ((FirstInit == nullptr) != (SecondInit == nullptr)) {
1167 << (I + 1) << (SecondInit == nullptr)
1168 << (SecondInit ? SecondInit->getSourceRange() : SourceRange());
1172 if (FirstInit && SecondInit &&
1173 computeODRHash(FirstInit) != computeODRHash(SecondInit)) {
1177 << (I + 1) << SecondInit->getSourceRange();
1757 const Expr *SecondInit = SecondParam->getInit();
1758 if ((FirstInit == nullptr) != (SecondInit == nullptr)) {
1765 << (I + 1) << (SecondInit == nullptr)
1766 << (SecondInit ? SecondInit->getSourceRange() : SourceRange());
1770 if (FirstInit && SecondInit &&
1771 computeODRHash(FirstInit) != computeODRHash(SecondInit)) {
1777 << (I + 1) << SecondInit->getSourceRange();
1905 const Expr *SecondInit = SecondConstant->getInitExpr();
1906 if (!FirstInit && !SecondInit)
1909 if (!FirstInit || !SecondInit) {
1913 << I + 1 << SecondConstant << (SecondInit != nullptr);
1917 if (computeODRHash(FirstInit) != computeODRHash(SecondInit)) {