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

12

/external/clang/lib/StaticAnalyzer/Checkers/
H A DIdenticalExprChecker.cpp210 const FloatingLiteral *FloatLit1 = dyn_cast<FloatingLiteral>(LHS);
211 const FloatingLiteral *FloatLit2 = dyn_cast<FloatingLiteral>(RHS);
451 const FloatingLiteral *FloatLit1 = cast<FloatingLiteral>(Stmt1);
452 const FloatingLiteral *FloatLit2 = cast<FloatingLiteral>(Stmt2);
H A DRetainCountChecker.cpp1826 isa<FloatingLiteral>(E) ||
/external/lldb/include/lldb/Core/
H A DClangForward.h67 class FloatingLiteral;
/external/clang/lib/AST/
H A DExpr.cpp698 FloatingLiteral::FloatingLiteral(const ASTContext &C, const llvm::APFloat &V, function in class:FloatingLiteral
707 FloatingLiteral::FloatingLiteral(const ASTContext &C, EmptyShell Empty) function in class:FloatingLiteral
713 FloatingLiteral *
714 FloatingLiteral::Create(const ASTContext &C, const llvm::APFloat &V,
716 return new (C) FloatingLiteral(C, V, isexact, Type, L);
719 FloatingLiteral *
720 FloatingLiteral::Create(const ASTContext &C, EmptyShell Empty) {
721 return new (C) FloatingLiteral(
[all...]
H A DASTDumper.cpp316 void VisitFloatingLiteral(const FloatingLiteral *Node);
1716 void ASTDumper::VisitFloatingLiteral(const FloatingLiteral *Node) {
H A DItaniumMangle.cpp3081 const FloatingLiteral *FL = cast<FloatingLiteral>(E);
3123 if (const FloatingLiteral *Imag =
3124 dyn_cast<FloatingLiteral>(IE->getSubExpr())) {
H A DStmtProfile.cpp422 void StmtProfiler::VisitFloatingLiteral(const FloatingLiteral *S) {
H A DExprConstant.cpp7322 bool VisitFloatingLiteral(const FloatingLiteral *E);
7476 bool FloatExprEvaluator::VisitFloatingLiteral(const FloatingLiteral *E) {
8573 if (const FloatingLiteral *FL
8574 = dyn_cast<FloatingLiteral>(SubExpr->IgnoreParenImpCasts())) {
/external/chromium_org/v8/tools/gcmole/
H A Dgcmole.cc566 VISIT(FloatingLiteral);
618 IGNORE_EXPR(FloatingLiteral);
/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
1349 class FloatingLiteral : public Expr, private APFloatStorage { class in namespace:clang
1352 FloatingLiteral(const ASTContext &C, const llvm::APFloat &V, bool isexact,
1356 explicit FloatingLiteral(const ASTContext &C, EmptyShell Empty);
1359 static FloatingLiteral *Create(const ASTContext &C, const llvm::APFloat &V,
1361 static FloatingLiteral *Create(const ASTContext &C, EmptyShell Empty);
1412 /// like "1.0i". We represent these as a wrapper around FloatingLiteral and
H A DDataRecursiveASTVisitor.h2261 DEF_TRAVERSE_STMT(FloatingLiteral, {})
H A DRecursiveASTVisitor.h2283 DEF_TRAVERSE_STMT(FloatingLiteral, {})
H A DStmt.h191 friend class FloatingLiteral;
/external/clang/lib/CodeGen/
H A DCGExprAgg.cpp1018 if (const FloatingLiteral *FL = dyn_cast<FloatingLiteral>(E))
H A DCGExprScalar.cpp186 Value *VisitFloatingLiteral(const FloatingLiteral *E) {
/external/clang/include/clang/ASTMatchers/
H A DASTMatchers.h1183 FloatingLiteral> floatLiteral;
2548 /// Matcher<FloatingLiteral>, Matcher<IntegerLiteral>
H A DASTMatchersInternal.h1428 std::is_base_of<FloatingLiteral, T>::value ||
/external/clang/lib/Edit/
H A DRewriteObjCFoundationAPI.cpp775 if (!isa<IntegerLiteral>(literalE) && !isa<FloatingLiteral>(literalE))
/external/clang/lib/Sema/
H A DSemaChecking.cpp4857 if (FloatingLiteral* FLL = dyn_cast<FloatingLiteral>(LeftExprSansParen)) {
4861 if (FloatingLiteral* FLR = dyn_cast<FloatingLiteral>(RightExprSansParen))
5752 void DiagnoseFloatingLiteralImpCast(Sema &S, FloatingLiteral *FL, QualType T,
5946 if (FloatingLiteral *FL = dyn_cast<FloatingLiteral>(InnerE)) {
H A DSemaExprObjC.cpp371 isa<FloatingLiteral>(OrigElement) ||
H A DSemaStmt.cpp1315 void VisitFloatingLiteral(FloatingLiteral *E) { }
H A DTreeTransform.h6813 TreeTransform<Derived>::TransformFloatingLiteral(FloatingLiteral *E) {
/external/clang/lib/Serialization/
H A DASTReaderStmt.cpp462 void ASTStmtReader::VisitFloatingLiteral(FloatingLiteral *E) {
2150 S = FloatingLiteral::Create(Context, Empty);
H A DASTWriterStmt.cpp388 void ASTStmtWriter::VisitFloatingLiteral(FloatingLiteral *E) {
/external/clang/lib/Analysis/
H A DThreadSafety.cpp447 isa<FloatingLiteral>(Exp) ||

Completed in 625 milliseconds

12