Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Interpreter/
H A DCommandAlias.cpp209 auto desugared = ((CommandAlias *)underlying.get())->Desugar(); in Desugar() local
211 options->insert(options->begin(), desugared.second->begin(), in Desugar()
212 desugared.second->end()); in Desugar()
213 return {desugared.first, options}; in Desugar()
H A DCommandInterpreter.cpp1615 std::pair<CommandObjectSP, OptionArgVectorSP> desugared = in BuildAliasResult() local
1617 OptionArgVectorSP option_arg_vector_sp = desugared.second; in BuildAliasResult()
1618 alias_cmd_obj = desugared.first.get(); in BuildAliasResult()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaType.cpp7279 QualType desugared = type; in checkNullabilityTypeSpecifier() local
7280 while (auto attributed = dyn_cast<AttributedType>(desugared.getTypePtr())) { in checkNullabilityTypeSpecifier()
7299 desugared = attributed->getModifiedType(); in checkNullabilityTypeSpecifier()
7306 if (auto existingNullability = desugared->getNullability(S.Context)) { in checkNullabilityTypeSpecifier()
7313 if (auto typedefType = desugared->getAs<TypedefType>()) { in checkNullabilityTypeSpecifier()
7330 if (!desugared->canHaveNullability() && in checkNullabilityTypeSpecifier()
7331 !(allowOnArrayType && desugared->isArrayType())) { in checkNullabilityTypeSpecifier()
7342 if (desugared->isArrayType()) in checkNullabilityTypeSpecifier()
7343 pointeeType = desugared->getArrayElementTypeNoTypeQual(); in checkNullabilityTypeSpecifier()
7344 else if (desugared->isAnyPointerType()) in checkNullabilityTypeSpecifier()
[all …]
/llvm-project-15.0.7/clang-tools-extra/docs/
H A DReleaseNotes.rst71 - Hover displays desugared types by default now.
/llvm-project-15.0.7/clang/docs/
H A DInternalsManual.rst1321 fully-desugared ``ForStmt``, however.