Home | History | Annotate | Download | only in AST

Lines Matching defs:IntegerLiteral

676 IntegerLiteral::IntegerLiteral(const ASTContext &C, const llvm::APInt &V,
681 assert(type->isIntegerType() && "Illegal type in IntegerLiteral");
687 IntegerLiteral *
688 IntegerLiteral::Create(const ASTContext &C, const llvm::APInt &V,
690 return new (C) IntegerLiteral(C, V, type, l);
693 IntegerLiteral *
694 IntegerLiteral::Create(const ASTContext &C, EmptyShell Empty) {
695 return new (C) IntegerLiteral(Empty);
2028 if (IntegerLiteral *IE =
2029 dyn_cast<IntegerLiteral>(BO->getRHS()->IgnoreParens()))
3185 const IntegerLiteral *Lit = dyn_cast<IntegerLiteral>(this);
3200 if (isa<IntegerLiteral>(this))