Searched refs:with_dot (Results 1 – 5 of 5) sorted by relevance
/external/v8/src/ast/ |
D | ast-value-factory.h | 204 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);
|
D | ast-value-factory.cc | 298 const AstValue* AstValueFactory::NewNumber(double number, bool with_dot) { in NewNumber() argument 299 AstValue* value = new (zone_) AstValue(number, with_dot); in NewNumber()
|
D | ast.h | 3243 Literal* NewNumberLiteral(double number, int pos, bool with_dot = false) { 3245 local_zone_, ast_value_factory_->NewNumber(number, with_dot), pos);
|
/external/jsoncpp/ |
D | doxybuild.py | 80 options.with_dot = True 102 '%HAVE_DOT%': yesno(options.with_dot),
|
/external/v8/test/cctest/ |
D | test-parsing.cc | 1105 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()
|