Home
last modified time | relevance | path

Searched refs:with_dot (Results 1 – 5 of 5) sorted by relevance

/external/v8/src/ast/
Dast-value-factory.h204 explicit AstValue(double n, bool with_dot) { in AstValue() argument
205 if (with_dot) { in AstValue()
337 const AstValue* NewNumber(double number, bool with_dot = false);
Dast-value-factory.cc298 const AstValue* AstValueFactory::NewNumber(double number, bool with_dot) { in NewNumber() argument
299 AstValue* value = new (zone_) AstValue(number, with_dot); in NewNumber()
Dast.h3243 Literal* NewNumberLiteral(double number, int pos, bool with_dot = false) {
3245 local_zone_, ast_value_factory_->NewNumber(number, with_dot), pos);
/external/jsoncpp/
Ddoxybuild.py80 options.with_dot = True
102 '%HAVE_DOT%': yesno(options.with_dot),
/external/v8/test/cctest/
Dtest-parsing.cc1105 static void CheckParsesToNumber(const char* source, bool with_dot) { in CheckParsesToNumber() argument
1140 CHECK(with_dot == val->ContainsDot()); in CheckParsesToNumber()
1141 } else if (with_dot) { in CheckParsesToNumber()
1147 CHECK(with_dot == val->ContainsDot()); in CheckParsesToNumber()