/external/llvm-project/mlir/tools/mlir-tblgen/ |
D | EnumsGen.cpp | 41 StringRef underlyingType, StringRef description, in emitEnumClass() argument 47 if (!underlyingType.empty()) in emitEnumClass() 48 os << " : " << underlyingType; in emitEnumClass() 63 static void emitDenseMapInfo(StringRef enumName, std::string underlyingType, in emitDenseMapInfo() argument 67 if (underlyingType.empty()) in emitDenseMapInfo() 68 underlyingType = in emitDenseMapInfo() 93 os << formatv(mapInfo, qualName, underlyingType); in emitDenseMapInfo() 138 std::string underlyingType = std::string(enumAttr.getUnderlyingType()); in emitOperators() local 142 enumName, underlyingType) in emitOperators() 147 enumName, underlyingType) in emitOperators() [all …]
|
D | SPIRVUtilsGen.cpp | 349 std::string underlyingType = std::string(enumAttr.getUnderlyingType()); in emitAvailabilityQueryForBitEnum() local 373 underlyingType); in emitAvailabilityQueryForBitEnum()
|
/external/llvm-project/clang/include/clang/AST/ |
D | TypeProperties.td | 393 def : Property<"underlyingType", QualType> { 398 return ctx.getTypeOfType(underlyingType); 403 def : Property<"underlyingType", QualType> { 411 return ctx.getDecltypeType(expression, underlyingType); 419 def : Property<"underlyingType", QualType> { 427 return ctx.getUnaryTransformType(baseType, underlyingType, transform); 577 def : Property<"underlyingType", QualType> { 585 return ctx.getMacroQualifiedType(underlyingType, macroIdentifier); 632 def : Property<"underlyingType", Optional<QualType>> { 644 if (!underlyingType.hasValue()) { [all …]
|
D | Type.h | 4485 DecltypeType(Expr *E, QualType underlyingType, QualType can = QualType());
|
/external/clang/lib/Sema/ |
D | SemaType.cpp | 5432 SplitQualType underlyingType = type.split(); in handleObjCOwnershipTypeAttr() local 5450 while (!prevTy || prevTy != underlyingType.Ty) { in handleObjCOwnershipTypeAttr() 5451 prevTy = underlyingType.Ty; in handleObjCOwnershipTypeAttr() 5452 underlyingType = underlyingType.getSingleStepDesugaredType(); in handleObjCOwnershipTypeAttr() 5454 underlyingType.Quals.removeObjCLifetime(); in handleObjCOwnershipTypeAttr() 5458 underlyingType.Quals.addObjCLifetime(lifetime); in handleObjCOwnershipTypeAttr() 5495 type = S.Context.getQualifiedType(underlyingType); in handleObjCOwnershipTypeAttr() 5869 QualType underlyingType = typedefDecl->getUnderlyingType(); in checkNullabilityTypeSpecifier() local 5871 = AttributedType::stripOuterNullability(underlyingType)) { in checkNullabilityTypeSpecifier()
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaType.cpp | 6574 SplitQualType underlyingType = type.split(); in handleObjCOwnershipTypeAttr() local 6592 while (!prevTy || prevTy != underlyingType.Ty) { in handleObjCOwnershipTypeAttr() 6593 prevTy = underlyingType.Ty; in handleObjCOwnershipTypeAttr() 6594 underlyingType = underlyingType.getSingleStepDesugaredType(); in handleObjCOwnershipTypeAttr() 6596 underlyingType.Quals.removeObjCLifetime(); in handleObjCOwnershipTypeAttr() 6600 underlyingType.Quals.addObjCLifetime(lifetime); in handleObjCOwnershipTypeAttr() 6637 type = S.Context.getQualifiedType(underlyingType); in handleObjCOwnershipTypeAttr() 7094 QualType underlyingType = typedefDecl->getUnderlyingType(); in checkNullabilityTypeSpecifier() local 7096 = AttributedType::stripOuterNullability(underlyingType)) { in checkNullabilityTypeSpecifier()
|
/external/dokka/core/src/main/kotlin/javadoc/ |
D | docbase.kt | 217 override fun underlyingType(): Type? = NotAnnotatedTypeAdapter(this) in underlyingType() method
|
/external/doclava/src/com/google/doclava/ |
D | Converter.java | 631 t = t.asAnnotatedType().underlyingType();
|
/external/llvm-project/mlir/include/mlir/IR/ |
D | OpBase.td | 1121 string underlyingType = ""; 1191 let underlyingType = "uint32_t"; 1200 let underlyingType = "uint64_t"; 1224 let underlyingType = "uint32_t";
|
/external/dokka/core/src/main/kotlin/Kotlin/ |
D | DocumentationBuilder.kt | 637 node.appendType(underlyingType, NodeKind.TypeAliasUnderlyingType) in TypeAliasDescriptor()
|
/external/clang/lib/AST/ |
D | Type.cpp | 2897 DecltypeType::DecltypeType(Expr *E, QualType underlyingType, QualType can) in DecltypeType() argument 2906 UnderlyingType(underlyingType) { in DecltypeType()
|
D | ASTContext.cpp | 7613 QualType underlyingType = ET->getDecl()->getIntegerType(); in mergeEnumWithInteger() local 7614 if (underlyingType.isNull()) return QualType(); in mergeEnumWithInteger() 7615 if (Context.hasSameType(underlyingType, other)) in mergeEnumWithInteger() 7621 Context.getTypeSize(underlyingType) == Context.getTypeSize(other)) in mergeEnumWithInteger()
|
/external/llvm-project/clang/lib/AST/ |
D | Type.cpp | 3419 DecltypeType::DecltypeType(Expr *E, QualType underlyingType, QualType can) in DecltypeType() argument 3429 E(E), UnderlyingType(underlyingType) {} in DecltypeType()
|
D | ASTContext.cpp | 9488 QualType underlyingType = ET->getDecl()->getIntegerType(); in mergeEnumWithInteger() local 9489 if (underlyingType.isNull()) in mergeEnumWithInteger() 9491 if (Context.hasSameType(underlyingType, other)) in mergeEnumWithInteger() 9497 Context.getTypeSize(underlyingType) == Context.getTypeSize(other)) in mergeEnumWithInteger()
|
/external/clang/include/clang/AST/ |
D | Type.h | 3598 DecltypeType(Expr *E, QualType underlyingType, QualType can = QualType());
|