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

/external/clang/lib/AST/
H A DExpr.cpp583 FloatingLiteral::FloatingLiteral(ASTContext &C, const llvm::APFloat &V, function in class:FloatingLiteral
593 FloatingLiteral::FloatingLiteral(ASTContext &C, EmptyShell Empty) function in class:FloatingLiteral
600 FloatingLiteral *
601 FloatingLiteral::Create(ASTContext &C, const llvm::APFloat &V,
603 return new (C) FloatingLiteral(C, V, isexact, Type, L);
606 FloatingLiteral *
607 FloatingLiteral::Create(ASTContext &C, EmptyShell Empty) {
608 return new (C) FloatingLiteral(
[all...]
/external/clang/include/clang/AST/
H A DExpr.h1118 /// \brief Used by IntegerLiteral/FloatingLiteral to store the numeric without
1123 /// to allocate IntegerLiteral/FloatingLiteral nodes the memory associated with
1252 class FloatingLiteral : public Expr, private APFloatStorage { class in namespace:clang
1255 FloatingLiteral(ASTContext &C, const llvm::APFloat &V, bool isexact,
1259 explicit FloatingLiteral(ASTContext &C, EmptyShell Empty);
1262 static FloatingLiteral *Create(ASTContext &C, const llvm::APFloat &V,
1264 static FloatingLiteral *Create(ASTContext &C, EmptyShell Empty);
1289 static bool classof(const FloatingLiteral *) { return true; }
1296 /// like "1.0i". We represent these as a wrapper around FloatingLiteral and

Completed in 113 milliseconds