Home | History | Annotate | Download | only in AST

Lines Matching refs:IntegerLiteral

641 IntegerLiteral::IntegerLiteral(ASTContext &C, const llvm::APInt &V,
646 assert(type->isIntegerType() && "Illegal type in IntegerLiteral");
652 IntegerLiteral *
653 IntegerLiteral::Create(ASTContext &C, const llvm::APInt &V,
655 return new (C) IntegerLiteral(C, V, type, l);
658 IntegerLiteral *
659 IntegerLiteral::Create(ASTContext &C, EmptyShell Empty) {
660 return new (C) IntegerLiteral(Empty);
1976 if (IntegerLiteral *IE =
1977 dyn_cast<IntegerLiteral>(BO->getRHS()->IgnoreParens()))
3089 const IntegerLiteral *Lit = dyn_cast<IntegerLiteral>(this);
3101 if (isa<IntegerLiteral>(this))