HomeSort by: relevance | last modified time | path
    Searched defs:FloatingLiteral (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/
Expr.cpp 941 FloatingLiteral::FloatingLiteral(const ASTContext &C, const llvm::APFloat &V,
950 FloatingLiteral::FloatingLiteral(const ASTContext &C, EmptyShell Empty)
956 FloatingLiteral *
957 FloatingLiteral::Create(const ASTContext &C, const llvm::APFloat &V,
959 return new (C) FloatingLiteral(C, V, isexact, Type, L);
962 FloatingLiteral *
963 FloatingLiteral::Create(const ASTContext &C, EmptyShell Empty) {
964 return new (C) FloatingLiteral(C, Empty)
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Expr.h 1433 /// Used by IntegerLiteral/FloatingLiteral to store the numeric without
1438 /// to allocate IntegerLiteral/FloatingLiteral nodes the memory associated with
1629 class FloatingLiteral : public Expr, private APFloatStorage {
1632 FloatingLiteral(const ASTContext &C, const llvm::APFloat &V, bool isexact,
1636 explicit FloatingLiteral(const ASTContext &C, EmptyShell Empty);
1639 static FloatingLiteral *Create(const ASTContext &C, const llvm::APFloat &V,
1641 static FloatingLiteral *Create(const ASTContext &C, EmptyShell Empty);
1704 /// like "1.0i". We represent these as a wrapper around FloatingLiteral and

Completed in 58 milliseconds