Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSemaType.cpp5446 QualType desugared = type; in checkNullabilityTypeSpecifier() local
5447 while (auto attributed = dyn_cast<AttributedType>(desugared.getTypePtr())) { in checkNullabilityTypeSpecifier()
5466 desugared = attributed->getModifiedType(); in checkNullabilityTypeSpecifier()
5473 if (auto existingNullability = desugared->getNullability(Context)) { in checkNullabilityTypeSpecifier()
5480 if (auto typedefType = desugared->getAs<TypedefType>()) { in checkNullabilityTypeSpecifier()
5497 if (!desugared->canHaveNullability()) { in checkNullabilityTypeSpecifier()
5507 QualType pointeeType = desugared->getPointeeType(); in checkNullabilityTypeSpecifier()
/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDType.cpp3337 QualType desugared = type.getSingleStepDesugaredType(context); in getNullability() local
3338 if (desugared.getTypePtr() == type.getTypePtr()) in getNullability()
3341 type = desugared; in getNullability()