Searched refs:NumBitsExpr (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | Type.cpp | 384 DependentBitIntType::DependentBitIntType(bool IsUnsigned, Expr *NumBitsExpr) in DependentBitIntType() argument 386 toTypeDependence(NumBitsExpr->getDependence())), 387 ExprAndUnsigned(NumBitsExpr, IsUnsigned) {} 399 Expr *NumBitsExpr) { in Profile() argument 401 NumBitsExpr->Profile(ID, Context, true); in Profile()
|
H A D | ASTContext.cpp | 4978 Expr *NumBitsExpr) const { in getDependentBitIntType() 4979 assert(NumBitsExpr->isInstantiationDependent() && "Only good for dependent"); in getDependentBitIntType() 4981 DependentBitIntType::Profile(ID, *this, IsUnsigned, NumBitsExpr); in getDependentBitIntType() 4989 DependentBitIntType(IsUnsigned, NumBitsExpr); in getDependentBitIntType()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | Type.h | 7678 bool IsUnsigned, Expr *NumBitsExpr);
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | TreeTransform.h | 1291 QualType RebuildDependentBitIntType(bool IsUnsigned, Expr *NumBitsExpr, 16294 bool IsUnsigned, Expr *NumBitsExpr, SourceLocation Loc) { in RebuildDependentBitIntType() argument 16295 return SemaRef.BuildBitIntType(IsUnsigned, NumBitsExpr, Loc); in RebuildDependentBitIntType()
|