Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DTypeProperties.td660 def : Property<"attrKind", AttrKind> {
668 return ctx.getAttributedType(attrKind, modifiedType,
H A DType.h6200 AttributedType(QualType canon, attr::Kind attrKind, QualType modified,
6202 : AttributedType(canon, attrKind, nullptr, modified, equivalent) {}
6208 AttributedType(QualType canon, attr::Kind attrKind, const Attr *attr,
6264 static void Profile(llvm::FoldingSetNodeID &ID, Kind attrKind,
6267 ID.AddInteger(attrKind);
H A DASTContext.h1832 QualType getAttributedType(attr::Kind attrKind, QualType modifiedType,
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DType.cpp4280 AttributedType::AttributedType(QualType canon, attr::Kind attrKind, in AttributedType() argument
4285 AttributedTypeBits.AttrKind = attrKind; in AttributedType()
4286 assert(!attr || attr->getKind() == attrKind); in AttributedType()
H A DASTContext.cpp5480 QualType ASTContext::getAttributedType(attr::Kind attrKind, in getAttributedType() argument
5485 AttributedType::Profile(id, attrKind, modifiedType, equivalentType, attr); in getAttributedType()
5491 assert(!attr || attr->getKind() == attrKind); in getAttributedType()
5495 AttributedType(canon, attrKind, attr, modifiedType, equivalentType); in getAttributedType()