Searched refs:IntegerLiteral (Results 1 - 25 of 50) sorted by relevance

12

/external/clang/lib/StaticAnalyzer/Checkers/
H A DCStringSyntaxChecker.cpp69 if (const IntegerLiteral *IL = dyn_cast<IntegerLiteral>(E))
H A DTestAfterDivZeroChecker.cpp218 const IntegerLiteral *IntLiteral = dyn_cast<IntegerLiteral>(B->getRHS());
221 IntLiteral = dyn_cast<IntegerLiteral>(B->getLHS());
H A DIdenticalExprChecker.cpp446 const IntegerLiteral *IntLit1 = cast<IntegerLiteral>(Stmt1);
447 const IntegerLiteral *IntLit2 = cast<IntegerLiteral>(Stmt2);
/external/lldb/include/lldb/Core/
H A DClangForward.h75 class IntegerLiteral;
/external/clang/unittests/ASTMatchers/Dynamic/
H A DVariantValueTest.cpp71 EXPECT_TRUE(Value.getMatcher().hasTypedMatcher<IntegerLiteral>());
/external/clang/lib/Analysis/
H A DBodyFarm.cpp213 IntegerLiteral *IL =
214 IntegerLiteral::Create(C, llvm::APInt(C.getTypeSize(C.IntTy), (uint64_t) 1),
H A DCFG.cpp506 const IntegerLiteral *IntLiteral = dyn_cast<IntegerLiteral>(LHSExpr);
510 IntLiteral = dyn_cast<IntegerLiteral>(RHSExpr);
545 const IntegerLiteral *IntLiteral = dyn_cast<IntegerLiteral>(LHSExpr);
549 IntLiteral = dyn_cast<IntegerLiteral>(RHSExpr);
562 const IntegerLiteral *IntLiteral2 = dyn_cast<IntegerLiteral>(LHSExpr2);
565 IntLiteral2 = dyn_cast<IntegerLiteral>(RHSExpr2);
631 const IntegerLiteral *Literal
[all...]
H A DThreadSafety.cpp449 isa<IntegerLiteral>(Exp) ||
1638 else if (IntegerLiteral *ILE = dyn_cast_or_null<IntegerLiteral>(BrE))
1662 } else if (IntegerLiteral *ILE = dyn_cast<IntegerLiteral>(E)) {
H A DReachableCode.cpp43 return isa<IntegerLiteral>(Ex) || isa<StringLiteral>(Ex) ||
H A DThreadSafetyCommon.cpp44 return cast<IntegerLiteral>(CE)->getValue().toString(10, true);
/external/clang/lib/Edit/
H A DRewriteObjCFoundationAPI.cpp775 if (!isa<IntegerLiteral>(literalE) && !isa<FloatingLiteral>(literalE))
853 if (const IntegerLiteral *IntE = dyn_cast<IntegerLiteral>(literalE))
1096 if (isa<ParenExpr>(OrigArg) || isa<IntegerLiteral>(OrigArg))
1135 if (isa<ParenExpr>(OrigArg) || isa<IntegerLiteral>(OrigArg))
/external/clang/lib/AST/
H A DExpr.cpp676 IntegerLiteral::IntegerLiteral(const ASTContext &C, const llvm::APInt &V, function in class:IntegerLiteral
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 *I
[all...]
H A DASTDumper.cpp315 void VisitIntegerLiteral(const IntegerLiteral *Node);
1708 void ASTDumper::VisitIntegerLiteral(const IntegerLiteral *Node) {
H A DASTDiagnostic.cpp1542 if (isa<IntegerLiteral>(E)) return false;
1546 if (isa<IntegerLiteral>(UO->getSubExpr()))
H A DStmtProfile.cpp411 void StmtProfiler::VisitIntegerLiteral(const IntegerLiteral *S) {
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSValBuilder.h232 nonloc::ConcreteInt makeIntVal(const IntegerLiteral* integer) {
/external/clang/lib/StaticAnalyzer/Core/
H A DSValBuilder.cpp263 return makeIntVal(cast<IntegerLiteral>(E));
H A DBugReporterVisitors.cpp1307 if (const IntegerLiteral *IL = dyn_cast<IntegerLiteral>(Ex)) {
/external/chromium_org/v8/tools/gcmole/
H A Dgcmole.cc571 VISIT(IntegerLiteral);
620 IGNORE_EXPR(IntegerLiteral);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.commons.el_1.0.0.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/clang/include/clang/AST/
H A DExpr.h1213 /// \brief Used by IntegerLiteral/FloatingLiteral to store the numeric without
1218 /// to allocate IntegerLiteral/FloatingLiteral nodes the memory associated with
1264 class IntegerLiteral : public Expr, public APIntStorage { class in namespace:clang
1268 explicit IntegerLiteral(EmptyShell Empty) function in class:clang::IntegerLiteral
1274 IntegerLiteral(const ASTContext &C, const llvm::APInt &V, QualType type,
1281 static IntegerLiteral *Create(const ASTContext &C, const llvm::APInt &V,
1284 static IntegerLiteral *Create(const ASTContext &C, EmptyShell Empty);
1413 /// IntegerLiteral classes. Instances of this class always have a Complex type
/external/clang/lib/Sema/
H A DSemaChecking.cpp3157 // While we are here, check if the value is an IntegerLiteral that happens
3159 if (const IntegerLiteral *IL = dyn_cast<IntegerLiteral>(E)) {
4224 if (isa<IntegerLiteral>(RHS))
4226 else if (isa<IntegerLiteral>(LHS))
5124 if (IntegerLiteral *I
5125 = dyn_cast<IntegerLiteral>(BO->getLHS()->IgnoreParenCasts())) {
7063 const Expr *SizeExpr = dyn_cast<IntegerLiteral>(CTL.getSizeExpr());
7960 const IntegerLiteral *IL = cast<IntegerLiteral>(TypeExp
[all...]
/external/clang/lib/CodeGen/
H A DCGExprAgg.cpp1015 if (const IntegerLiteral *IL = dyn_cast<IntegerLiteral>(E))
/external/clang/lib/Rewrite/Frontend/
H A DRewriteModernObjC.cpp892 Expr *Zero = IntegerLiteral::Create(*Context,
2640 Expr *FlagExp = IntegerLiteral::Create(*Context,
2766 Expr *count = IntegerLiteral::Create(*Context,
2826 Expr *cnt = IntegerLiteral::Create(*Context,
2897 Expr *count = IntegerLiteral::Create(*Context,
2983 Expr *cnt = IntegerLiteral::Create(*Context,
5528 Expr *FlagExp = IntegerLiteral::Create(*Context, llvm::APInt(IntSize, flag),
7703 Expr *Zero = IntegerLiteral::Create(*Context,
/external/clang/include/clang/ASTMatchers/
H A DASTMatchers.h1155 /// Not matching Hex-encoded chars (e.g. 0x1234, which is a IntegerLiteral),
1172 IntegerLiteral> integerLiteral;
2548 /// Matcher<FloatingLiteral>, Matcher<IntegerLiteral>

Completed in 976 milliseconds

12