Searched refs:FloatingLiteral (Results 1 - 24 of 24) sorted by relevance

/freebsd-10.1-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DIdenticalExprChecker.cpp79 const FloatingLiteral *FloatLit1 = dyn_cast<FloatingLiteral>(LHS);
80 const FloatingLiteral *FloatLit2 = dyn_cast<FloatingLiteral>(RHS);
190 const FloatingLiteral *FloatLit1 = dyn_cast<FloatingLiteral>(Expr1);
191 const FloatingLiteral *FloatLit2 = dyn_cast<FloatingLiteral>(Expr2);
H A DRetainCountChecker.cpp1761 isa<FloatingLiteral>(E) ||
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DClangForward.h67 class FloatingLiteral;
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/AST/
H A DExpr.cpp713 FloatingLiteral::FloatingLiteral(const ASTContext &C, const llvm::APFloat &V, function in class:FloatingLiteral
722 FloatingLiteral::FloatingLiteral(const ASTContext &C, EmptyShell Empty) function in class:FloatingLiteral
728 FloatingLiteral *
729 FloatingLiteral::Create(const ASTContext &C, const llvm::APFloat &V,
731 return new (C) FloatingLiteral(C, V, isexact, Type, L);
734 FloatingLiteral *
735 FloatingLiteral::Create(const ASTContext &C, EmptyShell Empty) {
736 return new (C) FloatingLiteral(
[all...]
H A DASTDumper.cpp277 void VisitFloatingLiteral(const FloatingLiteral *Node);
1695 void ASTDumper::VisitFloatingLiteral(const FloatingLiteral *Node) {
H A DItaniumMangle.cpp3027 const FloatingLiteral *FL = cast<FloatingLiteral>(E);
3069 if (const FloatingLiteral *Imag =
3070 dyn_cast<FloatingLiteral>(IE->getSubExpr())) {
H A DStmtProfile.cpp330 void StmtProfiler::VisitFloatingLiteral(const FloatingLiteral *S) {
H A DExprConstant.cpp7270 bool VisitFloatingLiteral(const FloatingLiteral *E);
7424 bool FloatExprEvaluator::VisitFloatingLiteral(const FloatingLiteral *E) {
8500 if (const FloatingLiteral *FL
8501 = dyn_cast<FloatingLiteral>(SubExpr->IgnoreParenImpCasts())) {
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGExprAgg.cpp994 if (const FloatingLiteral *FL = dyn_cast<FloatingLiteral>(E))
H A DCGExprScalar.cpp186 Value *VisitFloatingLiteral(const FloatingLiteral *E) {
/freebsd-10.1-release/contrib/llvm/tools/clang/include/clang/AST/
H A DExpr.h1194 /// \brief Used by IntegerLiteral/FloatingLiteral to store the numeric without
1199 /// to allocate IntegerLiteral/FloatingLiteral nodes the memory associated with
1330 class FloatingLiteral : public Expr, private APFloatStorage { class in namespace:clang
1333 FloatingLiteral(const ASTContext &C, const llvm::APFloat &V, bool isexact,
1337 explicit FloatingLiteral(const ASTContext &C, EmptyShell Empty);
1340 static FloatingLiteral *Create(const ASTContext &C, const llvm::APFloat &V,
1342 static FloatingLiteral *Create(const ASTContext &C, EmptyShell Empty);
1393 /// like "1.0i". We represent these as a wrapper around FloatingLiteral and
H A DRecursiveASTVisitor.h2316 DEF_TRAVERSE_STMT(FloatingLiteral, { })
H A DStmt.h191 friend class FloatingLiteral;
/freebsd-10.1-release/contrib/llvm/tools/clang/include/clang/ASTMatchers/
H A DASTMatchers.h1099 FloatingLiteral> floatLiteral;
2423 /// Matcher<FloatingLiteral>, Matcher<IntegerLiteral>
H A DASTMatchersInternal.h1419 llvm::is_base_of<FloatingLiteral, T>::value ||
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Edit/
H A DRewriteObjCFoundationAPI.cpp775 if (!isa<IntegerLiteral>(literalE) && !isa<FloatingLiteral>(literalE))
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaChecking.cpp4365 if (FloatingLiteral* FLL = dyn_cast<FloatingLiteral>(LeftExprSansParen)) {
4369 if (FloatingLiteral* FLR = dyn_cast<FloatingLiteral>(RightExprSansParen))
5165 void DiagnoseFloatingLiteralImpCast(Sema &S, FloatingLiteral *FL, QualType T,
5375 if (FloatingLiteral *FL = dyn_cast<FloatingLiteral>(InnerE)) {
H A DSemaExprObjC.cpp368 isa<FloatingLiteral>(OrigElement) ||
H A DSemaStmt.cpp1273 void VisitFloatingLiteral(FloatingLiteral *E) { }
H A DTreeTransform.h6459 TreeTransform<Derived>::TransformFloatingLiteral(FloatingLiteral *E) {
H A DSemaExpr.cpp2960 return FloatingLiteral::Create(S.Context, Val, isExact, Ty, Loc);
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReaderStmt.cpp464 void ASTStmtReader::VisitFloatingLiteral(FloatingLiteral *E) {
1961 S = FloatingLiteral::Create(Context, Empty);
H A DASTWriterStmt.cpp393 void ASTStmtWriter::VisitFloatingLiteral(FloatingLiteral *E) {
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Analysis/
H A DThreadSafety.cpp454 isa<FloatingLiteral>(Exp) ||

Completed in 366 milliseconds