Home
last modified time | relevance | path

Searched refs:underlyingType (Results 1 – 15 of 15) sorted by relevance

/external/llvm-project/mlir/tools/mlir-tblgen/
DEnumsGen.cpp41 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 …]
DSPIRVUtilsGen.cpp349 std::string underlyingType = std::string(enumAttr.getUnderlyingType()); in emitAvailabilityQueryForBitEnum() local
373 underlyingType); in emitAvailabilityQueryForBitEnum()
/external/llvm-project/clang/include/clang/AST/
DTypeProperties.td393 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 …]
DType.h4485 DecltypeType(Expr *E, QualType underlyingType, QualType can = QualType());
/external/clang/lib/Sema/
DSemaType.cpp5432 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/
DSemaType.cpp6574 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/
Ddocbase.kt217 override fun underlyingType(): Type? = NotAnnotatedTypeAdapter(this) in underlyingType() method
/external/doclava/src/com/google/doclava/
DConverter.java631 t = t.asAnnotatedType().underlyingType();
/external/llvm-project/mlir/include/mlir/IR/
DOpBase.td1121 string underlyingType = "";
1191 let underlyingType = "uint32_t";
1200 let underlyingType = "uint64_t";
1224 let underlyingType = "uint32_t";
/external/dokka/core/src/main/kotlin/Kotlin/
DDocumentationBuilder.kt637 node.appendType(underlyingType, NodeKind.TypeAliasUnderlyingType) in TypeAliasDescriptor()
/external/clang/lib/AST/
DType.cpp2897 DecltypeType::DecltypeType(Expr *E, QualType underlyingType, QualType can) in DecltypeType() argument
2906 UnderlyingType(underlyingType) { in DecltypeType()
DASTContext.cpp7613 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/
DType.cpp3419 DecltypeType::DecltypeType(Expr *E, QualType underlyingType, QualType can) in DecltypeType() argument
3429 E(E), UnderlyingType(underlyingType) {} in DecltypeType()
DASTContext.cpp9488 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/
DType.h3598 DecltypeType(Expr *E, QualType underlyingType, QualType can = QualType());