Searched defs:FloatingLiteral (Results 1 - 2 of 2) sorted by relevance

/external/clang/lib/AST/
H A DExpr.cpp647 FloatingLiteral::FloatingLiteral(ASTContext &C, const llvm::APFloat &V, function in class:FloatingLiteral
656 FloatingLiteral::FloatingLiteral(ASTContext &C, EmptyShell Empty) function in class:FloatingLiteral
662 FloatingLiteral *
663 FloatingLiteral::Create(ASTContext &C, const llvm::APFloat &V,
665 return new (C) FloatingLiteral(C, V, isexact, Type, L);
668 FloatingLiteral *
669 FloatingLiteral::Create(ASTContext &C, EmptyShell Empty) {
670 return new (C) FloatingLiteral(
[all...]
/external/clang/include/clang/AST/
H A DExpr.h1182 /// \brief Used by IntegerLiteral/FloatingLiteral to store the numeric without
1187 /// to allocate IntegerLiteral/FloatingLiteral nodes the memory associated with
1316 class FloatingLiteral : public Expr, private APFloatStorage { class in namespace:clang
1319 FloatingLiteral(ASTContext &C, const llvm::APFloat &V, bool isexact,
1323 explicit FloatingLiteral(ASTContext &C, EmptyShell Empty);
1326 static FloatingLiteral *Create(ASTContext &C, const llvm::APFloat &V,
1328 static FloatingLiteral *Create(ASTContext &C, EmptyShell Empty);
1379 /// like "1.0i". We represent these as a wrapper around FloatingLiteral and

Completed in 87 milliseconds