Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DSemaType.cpp5523 QualType desugared = type; in checkNullabilityTypeSpecifier() local
5524 while (auto attributed = dyn_cast<AttributedType>(desugared.getTypePtr())) { in checkNullabilityTypeSpecifier()
5543 desugared = attributed->getModifiedType(); in checkNullabilityTypeSpecifier()
5550 if (auto existingNullability = desugared->getNullability(Context)) { in checkNullabilityTypeSpecifier()
5557 if (auto typedefType = desugared->getAs<TypedefType>()) { in checkNullabilityTypeSpecifier()
5574 if (!desugared->canHaveNullability()) { in checkNullabilityTypeSpecifier()
5584 QualType pointeeType = desugared->getPointeeType(); in checkNullabilityTypeSpecifier()
/external/clang/lib/AST/
DType.cpp3483 QualType desugared = type.getSingleStepDesugaredType(context); in getNullability() local
3484 if (desugared.getTypePtr() == type.getTypePtr()) in getNullability()
3487 type = desugared; in getNullability()