Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DSemaType.cpp5833 QualType desugared = type; in checkNullabilityTypeSpecifier() local
5834 while (auto attributed = dyn_cast<AttributedType>(desugared.getTypePtr())) { in checkNullabilityTypeSpecifier()
5853 desugared = attributed->getModifiedType(); in checkNullabilityTypeSpecifier()
5860 if (auto existingNullability = desugared->getNullability(Context)) { in checkNullabilityTypeSpecifier()
5867 if (auto typedefType = desugared->getAs<TypedefType>()) { in checkNullabilityTypeSpecifier()
5884 if (!desugared->canHaveNullability()) { in checkNullabilityTypeSpecifier()
5894 QualType pointeeType = desugared->getPointeeType(); in checkNullabilityTypeSpecifier()
/external/clang/lib/AST/
DType.cpp3491 QualType desugared = type.getSingleStepDesugaredType(context); in getNullability() local
3492 if (desugared.getTypePtr() == type.getTypePtr()) in getNullability()
3495 type = desugared; in getNullability()