Searched refs:NewNumberLiteral (Results 1 – 5 of 5) sorted by relevance
/external/v8/src/parsing/ |
D | parser.cc | 412 *x = factory->NewNumberLiteral(x_val + y_val, pos, has_dot); in ShortcutNumericLiteralBinaryExpression() 415 *x = factory->NewNumberLiteral(x_val - y_val, pos, has_dot); in ShortcutNumericLiteralBinaryExpression() 418 *x = factory->NewNumberLiteral(x_val * y_val, pos, has_dot); in ShortcutNumericLiteralBinaryExpression() 421 *x = factory->NewNumberLiteral(x_val / y_val, pos, has_dot); in ShortcutNumericLiteralBinaryExpression() 425 *x = factory->NewNumberLiteral(value, pos, has_dot); in ShortcutNumericLiteralBinaryExpression() 430 *x = factory->NewNumberLiteral(value, pos, has_dot); in ShortcutNumericLiteralBinaryExpression() 435 *x = factory->NewNumberLiteral(value, pos, has_dot); in ShortcutNumericLiteralBinaryExpression() 440 *x = factory->NewNumberLiteral(value, pos, has_dot); in ShortcutNumericLiteralBinaryExpression() 446 *x = factory->NewNumberLiteral(value, pos, has_dot); in ShortcutNumericLiteralBinaryExpression() 452 *x = factory->NewNumberLiteral(value, pos, has_dot); in ShortcutNumericLiteralBinaryExpression() [all …]
|
D | pattern-rewriter.cc | 251 factory()->NewNumberLiteral(language_mode, RelocInfo::kNoPosition), in VisitVariableProxy()
|
D | preparser.h | 431 PreParserExpression NewNumberLiteral(double number, in NewNumberLiteral() function
|
D | parser-base.h | 1870 ? factory()->NewNumberLiteral(index, pos) in ParsePropertyName()
|
/external/v8/src/ast/ |
D | ast.h | 3243 Literal* NewNumberLiteral(double number, int pos, bool with_dot = false) {
|