Home
last modified time | relevance | path

Searched refs:isFixedPointLiteral (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/Lex/
H A DLiteralSupport.h88 bool isFixedPointLiteral() const { in isFixedPointLiteral() function
93 return !saw_period && !saw_exponent && !isFixedPointLiteral(); in isIntegerLiteral()
96 return (saw_period || saw_exponent) && !isFixedPointLiteral(); in isFloatingLiteral()
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DLiteralSupport.cpp974 bool isFixedPointConstant = isFixedPointLiteral(); in NumericLiteralParser()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp3776 if (Literal.isFixedPointLiteral()) { in ActOnNumericConstant()