Home | History | Annotate | Download | only in AST

Lines Matching refs:IntegerLiteral

719 IntegerLiteral::IntegerLiteral(const ASTContext &C, const llvm::APInt &V,
724 assert(type->isIntegerType() && "Illegal type in IntegerLiteral");
730 IntegerLiteral *
731 IntegerLiteral::Create(const ASTContext &C, const llvm::APInt &V,
733 return new (C) IntegerLiteral(C, V, type, l);
736 IntegerLiteral *
737 IntegerLiteral::Create(const ASTContext &C, EmptyShell Empty) {
738 return new (C) IntegerLiteral(Empty);
2118 if (IntegerLiteral *IE =
2119 dyn_cast<IntegerLiteral>(BO->getRHS()->IgnoreParens()))
3369 const IntegerLiteral *Lit = dyn_cast<IntegerLiteral>(this);
3384 if (isa<IntegerLiteral>(this))