Home
last modified time | relevance | path

Searched refs:BitsExpr (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/clang/lib/Sema/
H A DDeclSpec.cpp935 bool DeclSpec::SetBitIntType(SourceLocation KWLoc, Expr *BitsExpr, in SetBitIntType() argument
938 assert(BitsExpr && "no expression provided!"); in SetBitIntType()
949 ExprRep = BitsExpr; in SetBitIntType()
H A DTreeTransform.h6524 ExprResult BitsExpr = getDerived().TransformExpr(EIT->getNumBitsExpr()); in TransformDependentBitIntType() local
6525 BitsExpr = SemaRef.ActOnConstantExpression(BitsExpr); in TransformDependentBitIntType()
6527 if (BitsExpr.isInvalid()) in TransformDependentBitIntType()
6532 if (getDerived().AlwaysRebuild() || BitsExpr.get() != EIT->getNumBitsExpr()) { in TransformDependentBitIntType()
6534 EIT->isUnsigned(), BitsExpr.get(), TL.getNameLoc()); in TransformDependentBitIntType()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DASTContext.h1394 QualType getDependentBitIntType(bool Unsigned, Expr *BitsExpr) const;