Searched refs:NewNumberLiteral (Results 1 – 5 of 5) sorted by relevance
/external/v8/src/parsing/ |
D | parser.cc | 398 *x = factory->NewNumberLiteral(x_val + y_val, pos, has_dot); in ShortcutNumericLiteralBinaryExpression() 401 *x = factory->NewNumberLiteral(x_val - y_val, pos, has_dot); in ShortcutNumericLiteralBinaryExpression() 404 *x = factory->NewNumberLiteral(x_val * y_val, pos, has_dot); in ShortcutNumericLiteralBinaryExpression() 407 *x = factory->NewNumberLiteral(x_val / y_val, pos, has_dot); in ShortcutNumericLiteralBinaryExpression() 411 *x = factory->NewNumberLiteral(value, pos, has_dot); in ShortcutNumericLiteralBinaryExpression() 416 *x = factory->NewNumberLiteral(value, pos, has_dot); in ShortcutNumericLiteralBinaryExpression() 421 *x = factory->NewNumberLiteral(value, pos, has_dot); in ShortcutNumericLiteralBinaryExpression() 426 *x = factory->NewNumberLiteral(value, pos, has_dot); in ShortcutNumericLiteralBinaryExpression() 432 *x = factory->NewNumberLiteral(value, pos, has_dot); in ShortcutNumericLiteralBinaryExpression() 438 *x = factory->NewNumberLiteral(value, pos, has_dot); in ShortcutNumericLiteralBinaryExpression() [all …]
|
D | pattern-rewriter.cc | 247 arguments->Add(factory()->NewNumberLiteral(language_mode, in VisitVariableProxy()
|
D | preparser.h | 427 PreParserExpression NewNumberLiteral(double number, in NewNumberLiteral() function
|
D | parser-base.h | 1619 ? factory()->NewNumberLiteral(index, pos) in ParsePropertyName()
|
/external/v8/src/ast/ |
D | ast.h | 3236 Literal* NewNumberLiteral(double number, int pos, bool with_dot = false) {
|