Lines Matching refs:value
13 #include "src/ast/ast-value-factory.h"
228 // Magic comments are of the form: //[#@]\s<name>=\s*<value>\s*.* and this
243 LiteralBuffer* value;
245 value = &source_url_;
247 value = &source_mapping_url_;
253 value->Start();
262 value->AddChar(c0_);
268 value->Start();
662 bool Scanner::ScanDecimalAsSmiWithNumericSeparators(uint64_t* value) {
676 *value = 10 * *value + (c0_ - '0');
691 bool Scanner::ScanDecimalAsSmi(uint64_t* value, bool allow_numeric_separator) {
693 return ScanDecimalAsSmiWithNumericSeparators(value);
697 *value = 10 * *value + (c0_ - '0');
801 uint64_t value = 0;
803 if (!ScanDecimalAsSmi(&value, allow_numeric_separator)) {
808 value <= Smi::kMaxValue && c0_ != '.' && !IsIdentifierStart(c0_)) {
809 next().smi_value_ = static_cast<uint32_t>(value);
863 // if the value is 0).
1002 RegExpFlag flag = maybe_flag.value();