Home
last modified time | relevance | path

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

/external/llvm-project/clang-tools-extra/clang-tidy/bugprone/
DSizeofExpressionCheck.cpp311 const auto *DenomTy = Result.Nodes.getNodeAs<Type>("denom-type"); in check() local
316 CharUnits DenominatorSize = getSizeOfType(Ctx, DenomTy); in check()
328 } else if (NumTy && DenomTy && NumTy == DenomTy) { in check()
331 } else if (PointedTy && DenomTy && PointedTy == DenomTy) { in check()
334 } else if (NumTy && DenomTy && NumTy->isPointerType() && in check()
335 DenomTy->isPointerType()) { in check()