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

/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...]
/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

Completed in 218 milliseconds